Worked on map viewer

This commit is contained in:
Tiberiu Chibici 2015-03-13 17:36:12 +02:00
parent c71b8ddd3e
commit c96de53ec8
66 changed files with 1770 additions and 1440 deletions

63
.gitattributes vendored Normal file
View File

@ -0,0 +1,63 @@
###############################################################################
# Set default behavior to automatically normalize line endings.
###############################################################################
* text=auto
###############################################################################
# Set default behavior for command prompt diff.
#
# This is need for earlier builds of msysgit that does not have it on by
# default for csharp files.
# Note: This is only used by command line
###############################################################################
#*.cs diff=csharp
###############################################################################
# Set the merge driver for project and solution files
#
# Merging from the command prompt will add diff markers to the files if there
# are conflicts (Merging from VS is not affected by the settings below, in VS
# the diff markers are never inserted). Diff markers may cause the following
# file extensions to fail to load in VS. An alternative would be to treat
# these files as binary and thus will always conflict and require user
# intervention with every merge. To do so, just uncomment the entries below
###############################################################################
#*.sln merge=binary
#*.csproj merge=binary
#*.vbproj merge=binary
#*.vcxproj merge=binary
#*.vcproj merge=binary
#*.dbproj merge=binary
#*.fsproj merge=binary
#*.lsproj merge=binary
#*.wixproj merge=binary
#*.modelproj merge=binary
#*.sqlproj merge=binary
#*.wwaproj merge=binary
###############################################################################
# behavior for image files
#
# image files are treated as binary by default.
###############################################################################
#*.jpg binary
#*.png binary
#*.gif binary
###############################################################################
# diff behavior for common document formats
#
# Convert binary document formats to text before diffing them. This feature
# is only available from the command line. Turn it on by uncommenting the
# entries below.
###############################################################################
#*.doc diff=astextplain
#*.DOC diff=astextplain
#*.docx diff=astextplain
#*.DOCX diff=astextplain
#*.dot diff=astextplain
#*.DOT diff=astextplain
#*.pdf diff=astextplain
#*.PDF diff=astextplain
#*.rtf diff=astextplain
#*.RTF diff=astextplain

156
.gitignore vendored Normal file
View File

@ -0,0 +1,156 @@
## Ignore Visual Studio temporary files, build results, and
## files generated by popular Visual Studio add-ons.
# User-specific files
*.suo
*.user
*.sln.docstates
# Build results
[Dd]ebug/
[Rr]elease/
x64/
build/
[Bb]in/
[Oo]bj/
# Enable "build/" folder in the NuGet Packages folder since NuGet packages use it for MSBuild targets
!packages/*/build/
# MSTest test Results
[Tt]est[Rr]esult*/
[Bb]uild[Ll]og.*
*_i.c
*_p.c
*.ilk
*.meta
*.obj
*.pch
*.pdb
*.pgc
*.pgd
*.rsp
*.sbr
*.tlb
*.tli
*.tlh
*.tmp
*.tmp_proj
*.log
*.vspscc
*.vssscc
.builds
*.pidb
*.log
*.scc
# Visual C++ cache files
ipch/
*.aps
*.ncb
*.opensdf
*.sdf
*.cachefile
# Visual Studio profiler
*.psess
*.vsp
*.vspx
# Guidance Automation Toolkit
*.gpState
# ReSharper is a .NET coding add-in
_ReSharper*/
*.[Rr]e[Ss]harper
# TeamCity is a build add-in
_TeamCity*
# DotCover is a Code Coverage Tool
*.dotCover
# NCrunch
*.ncrunch*
.*crunch*.local.xml
# Installshield output folder
[Ee]xpress/
# DocProject is a documentation generator add-in
DocProject/buildhelp/
DocProject/Help/*.HxT
DocProject/Help/*.HxC
DocProject/Help/*.hhc
DocProject/Help/*.hhk
DocProject/Help/*.hhp
DocProject/Help/Html2
DocProject/Help/html
# Click-Once directory
publish/
# Publish Web Output
*.Publish.xml
# NuGet Packages Directory
## TODO: If you have NuGet Package Restore enabled, uncomment the next line
#packages/
# Windows Azure Build Output
csx
*.build.csdef
# Windows Store app package directory
AppPackages/
# Others
sql/
*.Cache
ClientBin/
[Ss]tyle[Cc]op.*
~$*
*~
*.dbmdl
*.[Pp]ublish.xml
*.pfx
*.publishsettings
# RIA/Silverlight projects
Generated_Code/
# Backup & report files from converting an old project file to a newer
# Visual Studio version. Backup files are not needed, because we have git ;-)
_UpgradeReport_Files/
Backup*/
UpgradeLog*.XML
UpgradeLog*.htm
# SQL Server files
App_Data/*.mdf
App_Data/*.ldf
#LightSwitch generated files
GeneratedArtifacts/
_Pvt_Extensions/
ModelManifest.xml
# =========================
# Windows detritus
# =========================
# Windows image file caches
Thumbs.db
ehthumbs.db
# Folder config file
Desktop.ini
# Recycle Bin used on file shares
$RECYCLE.BIN/
# Mac desktop service store files
.DS_Store

View File

@ -1,6 +1,7 @@
<?xml version="1.0" encoding="utf-8" ?>
<terrgenConfig>
<noiseOctaves>8</noiseOctaves>
<noiseNonLinearPower>2</noiseNonLinearPower>
<elevationScale>10</elevationScale>
<?xml version="1.0" encoding="utf-8" ?>
<terrgenConfig>
<noiseOctaves>8</noiseOctaves>
<noiseNonLinearPower>2</noiseNonLinearPower>
<waterNonLinearPower>1.3</waterNonLinearPower>
<elevationScale>0.01</elevationScale>
</terrgenConfig>

View File

@ -1,27 +1,27 @@
using System;
using System.Collections.Generic;
using System.IO;
using System.Linq;
using System.Text;
using System.Xml.Serialization;
using Assets.Scripts.Model.Config;
using TransportGame.Utils;
namespace TransportGame.Business
{
public static class ConfigurationManager
{
public static readonly string BiomeDirectory = "Assets\\Data\\Biomes";
public static readonly string ConfigurationDirectory = "Assets\\Data\\Config";
public static readonly string TerrGenConfigFile = "tergen.xml";
public static TerrainGeneratorConfig TerrGenConfig { get; private set; }
public static void LoadConfiguration()
{
// Load terrgen config
TerrGenConfig = XmlHelper.Deserialize<TerrainGeneratorConfig>(Path.Combine(ConfigurationDirectory, TerrGenConfigFile));
}
}
}
using System;
using System.Collections.Generic;
using System.IO;
using System.Linq;
using System.Text;
using System.Xml.Serialization;
using Assets.Scripts.Model.Config;
using TransportGame.Utils;
namespace TransportGame.Business
{
public static class ConfigurationManager
{
public static readonly string BiomeDirectory = "Assets\\Data\\Biomes";
public static readonly string ConfigurationDirectory = "Assets\\Data\\Config";
public static readonly string TerrGenConfigFile = "tergen.xml";
public static TerrainGeneratorConfig TerrGenConfig { get; private set; }
public static void LoadConfiguration()
{
// Load terrgen config
TerrGenConfig = XmlHelper.Deserialize<TerrainGeneratorConfig>(Path.Combine(ConfigurationDirectory, TerrGenConfigFile));
}
}
}

View File

@ -1,84 +1,81 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using TransportGame.Business;
using TransportGame.Model;
using TransportGame.Noise;
using TransportGame.Utils;
using TransportGame.Utils.Algorithms;
using UnityEngine;
namespace TransportGame.Generator
{
public class TerrainGenerator
{
public NoiseGenerator Noise { get; set; }
private System.Random random = new System.Random();
public TerrainGenerator()
{
Noise = new PerlinNoiseGenerator();
if (ConfigurationManager.TerrGenConfig == null)
throw new Exception("WTF?");
Noise.Octaves = ConfigurationManager.TerrGenConfig.NoiseOctaves;
Noise.NonLinearPower = ConfigurationManager.TerrGenConfig.NoiseNonLinearPower;
Noise.Scale = ConfigurationManager.TerrGenConfig.ElevationScale;
}
public Map Generate(int width, int height)
{
// Create map
Map map = new Map(width, height);
// Pick a random biome
map.Biome = PickBiome();
Logger.Info("Picked biome: {0}", map.Biome.Name);
// Generate elevation
GenerateElevation(map);
// Generate water level
float waterAmount = random.NextSingle(map.Biome.Moisture.Minimum, map.Biome.Moisture.Maximum);
map.WaterLevel = Mathf.Pow(waterAmount, 3) * (map.Biome.HeightRange.Maximum - map.Biome.HeightRange.Minimum) + map.Biome.HeightRange.Minimum;
DumpData(map);
return map;
}
private Biome PickBiome()
{
int biomeCount = BiomeManager.Biomes.Count();
int biome = random.Next(biomeCount);
return BiomeManager.Biomes.ElementAt(biome);
}
private void GenerateElevation(Map map)
{
for (int x = 0; x < map.Width; ++x)
for (int y = 0; y < map.Height; ++y)
map[x, y] = Noise.Generate(x, y, map.Biome.HeightRange.Minimum, map.Biome.HeightRange.Maximum);
}
private void DumpData(Map map)
{
StringBuilder builder = new StringBuilder();
for (int x = 0; x < map.Width; ++x)
{
for (int y = 0; y < map.Height; ++y)
{
builder.Append(map[x, y]);
builder.Append(';');
}
builder.AppendLine();
}
Logger.Info("Generated map: \n{0}", builder.ToString());
}
}
}
using System;
using System.Collections.Generic;
using System.IO;
using System.Linq;
using System.Text;
using System.Xml.Serialization;
using TransportGame.Business;
using TransportGame.Model;
using TransportGame.Noise;
using TransportGame.Utils;
using TransportGame.Utils.Algorithms;
using UnityEngine;
namespace TransportGame.Generator
{
public class TerrainGenerator
{
public NoiseGenerator Noise { get; set; }
private System.Random random = new System.Random();
public TerrainGenerator()
{
Noise = new PerlinNoiseGenerator();
if (ConfigurationManager.TerrGenConfig == null)
throw new Exception("WTF?");
Noise.Octaves = ConfigurationManager.TerrGenConfig.NoiseOctaves;
Noise.NonLinearPower = ConfigurationManager.TerrGenConfig.NoiseNonLinearPower;
Noise.Scale = ConfigurationManager.TerrGenConfig.ElevationScale;
}
public Map Generate(int width, int height)
{
// Create map
Map map = new Map(width, height);
// Pick a random biome
map.Biome = PickBiome();
Logger.Info("Picked biome: {0}", map.Biome.Name);
// Generate elevation
GenerateElevation(map);
// Generate water level
float waterAmount = random.NextSingle(map.Biome.Moisture.Minimum, map.Biome.Moisture.Maximum);
map.WaterLevel = Mathf.Pow(waterAmount, ConfigurationManager.TerrGenConfig.WaterNonLinearPower)
* (map.Biome.HeightRange.Maximum - map.Biome.HeightRange.Minimum) + map.Biome.HeightRange.Minimum;
DumpData(map);
return map;
}
private Biome PickBiome()
{
int biomeCount = BiomeManager.Biomes.Count();
int biome = random.Next(biomeCount);
return BiomeManager.Biomes.ElementAt(biome);
}
private void GenerateElevation(Map map)
{
for (int x = 0; x < map.Width; ++x)
for (int y = 0; y < map.Height; ++y)
map[x, y] = Noise.Generate(x, y, map.Biome.HeightRange.Minimum, map.Biome.HeightRange.Maximum);
}
private void DumpData(Map map)
{
XmlSerializer serializer = new XmlSerializer(typeof(Map));
using (StreamWriter writer = new StreamWriter(Path.Combine(Logger.LogsDirectory, "mapdump.map")))
{
serializer.Serialize(writer, map);
writer.Close();
}
}
}
}

View File

@ -1,21 +1,24 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Xml.Serialization;
namespace Assets.Scripts.Model.Config
{
[XmlRoot("terrgenConfig")]
public class TerrainGeneratorConfig
{
[XmlElement("noiseOctaves")]
public int NoiseOctaves { get; set; }
[XmlElement("noiseNonLinearPower")]
public float NoiseNonLinearPower { get; set; }
[XmlElement("elevationScale")]
public float ElevationScale { get; set; }
}
}
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Xml.Serialization;
namespace Assets.Scripts.Model.Config
{
[XmlRoot("terrgenConfig")]
public class TerrainGeneratorConfig
{
[XmlElement("noiseOctaves")]
public int NoiseOctaves { get; set; }
[XmlElement("noiseNonLinearPower")]
public float NoiseNonLinearPower { get; set; }
[XmlElement("elevationScale")]
public float ElevationScale { get; set; }
[XmlElement("waterNonLinearPower")]
public float WaterNonLinearPower { get; set; }
}
}

View File

@ -1,83 +1,146 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using UnityEngine;
namespace TransportGame.Model
{
public class Map
{
private float[,] grid;
/// <summary>
/// Gets or sets the water level
/// </summary>
public float WaterLevel { get; set; }
/// <summary>
/// Gets or sets the biome
/// </summary>
public Biome Biome { get; set; }
/// <summary>
/// Gets the heights array
/// </summary>
public float[,] Heights
{
get
{
return grid;
}
}
/// <summary>
/// Initializes the map
/// </summary>
/// <param name="width"></param>
/// <param name="height"></param>
public Map(int width, int height)
{
grid = new float[width, height];
}
/// <summary>
/// Gets or sets the cell at specified position
/// </summary>
/// <param name="x">X</param>
/// <param name="y">Y</param>
/// <returns>Cell</returns>
public float this[int x, int y]
{
get
{
return grid[x, y];
}
set
{
grid[x, y] = value;
}
}
/// <summary>
/// Gets width of map
/// </summary>
public int Width { get { return grid.GetLength(0); } }
/// <summary>
/// Gets height of map
/// </summary>
public int Height { get { return grid.GetLength(1); } }
/// <summary>
/// Returns true if specified cell is a water cell
/// </summary>
/// <param name="x">X</param>
/// <param name="y">Y</param>
/// <returns></returns>
public bool IsWater(int x, int y)
{
return grid[x, y] <= WaterLevel;
}
}
}
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Xml.Serialization;
namespace TransportGame.Model
{
[XmlRoot("map")]
public class Map
{
private float[,] grid;
/// <summary>
/// Gets or sets the water level
/// </summary>
[XmlElement("waterLevel")]
public float WaterLevel { get; set; }
/// <summary>
/// Gets or sets the biome
/// </summary>
[XmlElement("biome")]
public Biome Biome { get; set; }
/// <summary>
/// Gets the heights array
/// </summary>
[XmlIgnore()]
public float[,] Heights
{
get
{
return grid;
}
}
/// <summary>
/// Gets or sets the heights as raw bytes
/// </summary>
/// <remarks>
/// Bytes are stored as such:
///
/// Offset Size Content
/// ------------------------
/// 0 4 Width
/// 4 8 Height
/// 8 var 32bit floating point values
///
/// </remarks>
[XmlElement("heights")]
public byte[] HeightsRaw
{
get
{
List<byte> bytes = new List<byte>();
bytes.AddRange(BitConverter.GetBytes(Width));
bytes.AddRange(BitConverter.GetBytes(Height));
for (int x = 0; x < Width; x++)
for (int y = 0; y < Height; y++)
bytes.AddRange(BitConverter.GetBytes(grid[x, y]));
return bytes.ToArray();
}
set
{
int pos = 0;
int w = BitConverter.ToInt32(value, pos); pos += sizeof(int);
int h = BitConverter.ToInt32(value, pos); pos += sizeof(int);
grid = new float[w, h];
for (int x = 0; x < w; x++)
for (int y = 0; y < h; y++)
{
grid[x, y] = BitConverter.ToSingle(value, pos);
pos += sizeof(float);
}
}
}
/// <summary>
/// Initializes the map
/// </summary>
/// <remarks>
/// Warning: heights array will be null.
/// </remarks>
public Map()
{
}
/// <summary>
/// Initializes the map
/// </summary>
/// <param name="width"></param>
/// <param name="height"></param>
public Map(int width, int height)
{
grid = new float[width, height];
}
/// <summary>
/// Gets or sets the cell at specified position
/// </summary>
/// <param name="x">X</param>
/// <param name="y">Y</param>
/// <returns>Cell</returns>
[XmlIgnore]
public float this[int x, int y]
{
get
{
return grid[x, y];
}
set
{
grid[x, y] = value;
}
}
/// <summary>
/// Gets width of map
/// </summary>
[XmlIgnore]
public int Width { get { return grid.GetLength(0); } }
/// <summary>
/// Gets height of map
/// </summary>
[XmlIgnore]
public int Height { get { return grid.GetLength(1); } }
/// <summary>
/// Returns true if specified cell is a water cell
/// </summary>
/// <param name="x">X</param>
/// <param name="y">Y</param>
/// <returns></returns>
public bool IsWater(int x, int y)
{
return grid[x, y] <= WaterLevel;
}
}
}

View File

@ -1,85 +1,88 @@
using System;
using System.Collections.Generic;
using System.IO;
using System.Linq;
using System.Text;
namespace TransportGame.Utils
{
public static class Logger
{
private static string logFile = null;
public enum Level
{
Info,
Warning,
Error,
Critical
}
public static void Log(Level level, string format, params object[] args)
{
// Open log file if not opened
if (logFile == null)
{
// Create logs folder
if (!Directory.Exists("Logs"))
Directory.CreateDirectory("Logs");
// Create log file
logFile = String.Format("Logs\\{0}.log", DateTime.Now.Ticks);
}
lock (logFile)
{
using (var writer = new StreamWriter(logFile, true))
{
// Log to file
writer.Write("[{0}] ", Enum.GetName(typeof(Level), level));
writer.Write(DateTime.Now.ToString("%HH:%mm:%ss.%FFF"));
writer.WriteLine(": " + format, args);
writer.Close();
}
// Log to unity
switch (level)
{
case Level.Warning:
UnityEngine.Debug.LogWarning(String.Format(format, args));
break;
case Level.Error:
UnityEngine.Debug.LogError(String.Format(format, args));
break;
case Level.Critical:
UnityEngine.Debug.LogError(String.Format(format, args));
break;
}
}
}
public static void Info(string format, params object[] args)
{
Log(Level.Info, format, args);
}
public static void Warning(string format, params object[] args)
{
Log(Level.Warning, format, args);
}
public static void Error(string format, params object[] args)
{
Log(Level.Error, format, args);
}
public static void Critical(string format, params object[] args)
{
Log(Level.Critical, format, args);
}
public static void Exception(Exception ex)
{
Log(Level.Critical, "{0}: {1}\nStack trace:{2}", ex.GetType().ToString(), ex.Message, ex.StackTrace);
}
}
}
using System;
using System.Collections.Generic;
using System.IO;
using System.Linq;
using System.Text;
using TransportGame.Business;
namespace TransportGame.Utils
{
public static class Logger
{
public static readonly string LogsDirectory = "Logs";
private static string logFile = null;
public enum Level
{
Info,
Warning,
Error,
Critical
}
public static void Log(Level level, string format, params object[] args)
{
// Open log file if not opened
if (logFile == null)
{
// Create logs folder
if (!Directory.Exists(LogsDirectory))
Directory.CreateDirectory(LogsDirectory);
// Create log file
logFile = Path.Combine(LogsDirectory, String.Format("{0:s}.log", DateTime.Now).Replace(':', '_'));
}
lock (logFile)
{
using (var writer = new StreamWriter(logFile, true))
{
// Log to file
writer.Write("[{0}] ", Enum.GetName(typeof(Level), level));
writer.Write(DateTime.Now.ToString("%HH:%mm:%ss.%FFF"));
writer.WriteLine(": " + format, args);
writer.Close();
}
// Log to unity
switch (level)
{
case Level.Warning:
UnityEngine.Debug.LogWarning(String.Format(format, args));
break;
case Level.Error:
UnityEngine.Debug.LogError(String.Format(format, args));
break;
case Level.Critical:
UnityEngine.Debug.LogError(String.Format(format, args));
break;
}
}
}
public static void Info(string format, params object[] args)
{
Log(Level.Info, format, args);
}
public static void Warning(string format, params object[] args)
{
Log(Level.Warning, format, args);
}
public static void Error(string format, params object[] args)
{
Log(Level.Error, format, args);
}
public static void Critical(string format, params object[] args)
{
Log(Level.Critical, format, args);
}
public static void Exception(Exception ex)
{
Log(Level.Critical, "{0}: {1}\nStack trace:{2}", ex.GetType().ToString(), ex.Message, ex.StackTrace);
}
}
}

View File

@ -1,29 +1,34 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Xml.Serialization;
namespace TransportGame.Utils
{
public class Range
{
[XmlAttribute("min")]
public float Minimum { get; set; }
[XmlAttribute("max")]
public float Maximum { get; set; }
public Range()
{
Minimum = 0;
Maximum = 1;
}
public Range(float min, float max)
{
Minimum = min;
Maximum = max;
}
}
}
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Xml.Serialization;
namespace TransportGame.Utils
{
public class Range
{
[XmlAttribute("min")]
public float Minimum { get; set; }
[XmlAttribute("max")]
public float Maximum { get; set; }
public Range()
{
Minimum = 0;
Maximum = 1;
}
public Range(float min, float max)
{
Minimum = min;
Maximum = max;
}
public override string ToString()
{
return String.Format("[{0}, {1}]", Minimum, Maximum);
}
}
}

View File

@ -1,45 +1,45 @@
Microsoft Visual Studio Solution File, Format Version 11.00
# Visual Studio 2008
Project("{63D72051-E901-C069-F8AA-1B32AA0C43BB}") = "Game", "Assembly-CSharp-firstpass-vs.csproj", "{D8888F6A-ABE1-C49B-1A38-F65A81021668}"
EndProject
Project("{63D72051-E901-C069-F8AA-1B32AA0C43BB}") = "Game", "Assembly-CSharp-vs.csproj", "{DDFBC18F-9396-3137-9CFE-DEB2CDB74636}"
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Debug|Any CPU = Debug|Any CPU
Release|Any CPU = Release|Any CPU
EndGlobalSection
GlobalSection(ProjectConfigurationPlatforms) = postSolution
{D8888F6A-ABE1-C49B-1A38-F65A81021668}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{D8888F6A-ABE1-C49B-1A38-F65A81021668}.Debug|Any CPU.Build.0 = Debug|Any CPU
{D8888F6A-ABE1-C49B-1A38-F65A81021668}.Release|Any CPU.ActiveCfg = Release|Any CPU
{D8888F6A-ABE1-C49B-1A38-F65A81021668}.Release|Any CPU.Build.0 = Release|Any CPU
{DDFBC18F-9396-3137-9CFE-DEB2CDB74636}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{DDFBC18F-9396-3137-9CFE-DEB2CDB74636}.Debug|Any CPU.Build.0 = Debug|Any CPU
{DDFBC18F-9396-3137-9CFE-DEB2CDB74636}.Release|Any CPU.ActiveCfg = Release|Any CPU
{DDFBC18F-9396-3137-9CFE-DEB2CDB74636}.Release|Any CPU.Build.0 = Release|Any CPU
EndGlobalSection
GlobalSection(SolutionProperties) = preSolution
HideSolutionNode = FALSE
EndGlobalSection
GlobalSection(MonoDevelopProperties) = preSolution
StartupItem = Assembly-CSharp.csproj
Policies = $0
$0.TextStylePolicy = $1
$1.inheritsSet = null
$1.scope = text/x-csharp
$0.CSharpFormattingPolicy = $2
$2.inheritsSet = Mono
$2.inheritsScope = text/x-csharp
$2.scope = text/x-csharp
$0.TextStylePolicy = $3
$3.FileWidth = 120
$3.TabWidth = 4
$3.EolMarker = Unix
$3.inheritsSet = Mono
$3.inheritsScope = text/plain
$3.scope = text/plain
EndGlobalSection
EndGlobal
Microsoft Visual Studio Solution File, Format Version 11.00
# Visual Studio 2008
Project("{63D72051-E901-C069-F8AA-1B32AA0C43BB}") = "Game", "Assembly-CSharp-firstpass-vs.csproj", "{D8888F6A-ABE1-C49B-1A38-F65A81021668}"
EndProject
Project("{63D72051-E901-C069-F8AA-1B32AA0C43BB}") = "Game", "Assembly-CSharp-vs.csproj", "{DDFBC18F-9396-3137-9CFE-DEB2CDB74636}"
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Debug|Any CPU = Debug|Any CPU
Release|Any CPU = Release|Any CPU
EndGlobalSection
GlobalSection(ProjectConfigurationPlatforms) = postSolution
{D8888F6A-ABE1-C49B-1A38-F65A81021668}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{D8888F6A-ABE1-C49B-1A38-F65A81021668}.Debug|Any CPU.Build.0 = Debug|Any CPU
{D8888F6A-ABE1-C49B-1A38-F65A81021668}.Release|Any CPU.ActiveCfg = Release|Any CPU
{D8888F6A-ABE1-C49B-1A38-F65A81021668}.Release|Any CPU.Build.0 = Release|Any CPU
{DDFBC18F-9396-3137-9CFE-DEB2CDB74636}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{DDFBC18F-9396-3137-9CFE-DEB2CDB74636}.Debug|Any CPU.Build.0 = Debug|Any CPU
{DDFBC18F-9396-3137-9CFE-DEB2CDB74636}.Release|Any CPU.ActiveCfg = Release|Any CPU
{DDFBC18F-9396-3137-9CFE-DEB2CDB74636}.Release|Any CPU.Build.0 = Release|Any CPU
EndGlobalSection
GlobalSection(SolutionProperties) = preSolution
HideSolutionNode = FALSE
EndGlobalSection
GlobalSection(MonoDevelopProperties) = preSolution
StartupItem = Assembly-CSharp.csproj
Policies = $0
$0.TextStylePolicy = $1
$1.inheritsSet = null
$1.scope = text/x-csharp
$0.CSharpFormattingPolicy = $2
$2.inheritsSet = Mono
$2.inheritsScope = text/x-csharp
$2.scope = text/x-csharp
$0.TextStylePolicy = $3
$3.FileWidth = 120
$3.TabWidth = 4
$3.EolMarker = Unix
$3.inheritsSet = Mono
$3.inheritsScope = text/plain
$3.scope = text/plain
EndGlobalSection
EndGlobal

View File

@ -1,51 +1,51 @@
Microsoft Visual Studio Solution File, Format Version 11.00
# Visual Studio 2008
Project("{63D72051-E901-C069-F8AA-1B32AA0C43BB}") = "Game", "Assembly-CSharp-firstpass.csproj", "{D8888F6A-ABE1-C49B-1A38-F65A81021668}"
EndProject
Project("{63D72051-E901-C069-F8AA-1B32AA0C43BB}") = "Game", "Assembly-CSharp.csproj", "{DDFBC18F-9396-3137-9CFE-DEB2CDB74636}"
EndProject
Project("{63D72051-E901-C069-F8AA-1B32AA0C43BB}") = "Game", "Assembly-UnityScript-firstpass.unityproj", "{6F824ECF-F2BC-827E-A29D-FB10759A3283}"
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Debug|Any CPU = Debug|Any CPU
Release|Any CPU = Release|Any CPU
EndGlobalSection
GlobalSection(ProjectConfigurationPlatforms) = postSolution
{D8888F6A-ABE1-C49B-1A38-F65A81021668}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{D8888F6A-ABE1-C49B-1A38-F65A81021668}.Debug|Any CPU.Build.0 = Debug|Any CPU
{D8888F6A-ABE1-C49B-1A38-F65A81021668}.Release|Any CPU.ActiveCfg = Release|Any CPU
{D8888F6A-ABE1-C49B-1A38-F65A81021668}.Release|Any CPU.Build.0 = Release|Any CPU
{DDFBC18F-9396-3137-9CFE-DEB2CDB74636}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{DDFBC18F-9396-3137-9CFE-DEB2CDB74636}.Debug|Any CPU.Build.0 = Debug|Any CPU
{DDFBC18F-9396-3137-9CFE-DEB2CDB74636}.Release|Any CPU.ActiveCfg = Release|Any CPU
{DDFBC18F-9396-3137-9CFE-DEB2CDB74636}.Release|Any CPU.Build.0 = Release|Any CPU
{6F824ECF-F2BC-827E-A29D-FB10759A3283}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{6F824ECF-F2BC-827E-A29D-FB10759A3283}.Debug|Any CPU.Build.0 = Debug|Any CPU
{6F824ECF-F2BC-827E-A29D-FB10759A3283}.Release|Any CPU.ActiveCfg = Release|Any CPU
{6F824ECF-F2BC-827E-A29D-FB10759A3283}.Release|Any CPU.Build.0 = Release|Any CPU
EndGlobalSection
GlobalSection(SolutionProperties) = preSolution
HideSolutionNode = FALSE
EndGlobalSection
GlobalSection(MonoDevelopProperties) = preSolution
StartupItem = Assembly-CSharp.csproj
Policies = $0
$0.TextStylePolicy = $1
$1.inheritsSet = null
$1.scope = text/x-csharp
$0.CSharpFormattingPolicy = $2
$2.inheritsSet = Mono
$2.inheritsScope = text/x-csharp
$2.scope = text/x-csharp
$0.TextStylePolicy = $3
$3.FileWidth = 120
$3.TabWidth = 4
$3.EolMarker = Unix
$3.inheritsSet = Mono
$3.inheritsScope = text/plain
$3.scope = text/plain
EndGlobalSection
EndGlobal
Microsoft Visual Studio Solution File, Format Version 11.00
# Visual Studio 2008
Project("{63D72051-E901-C069-F8AA-1B32AA0C43BB}") = "Game", "Assembly-CSharp-firstpass.csproj", "{D8888F6A-ABE1-C49B-1A38-F65A81021668}"
EndProject
Project("{63D72051-E901-C069-F8AA-1B32AA0C43BB}") = "Game", "Assembly-CSharp.csproj", "{DDFBC18F-9396-3137-9CFE-DEB2CDB74636}"
EndProject
Project("{63D72051-E901-C069-F8AA-1B32AA0C43BB}") = "Game", "Assembly-UnityScript-firstpass.unityproj", "{6F824ECF-F2BC-827E-A29D-FB10759A3283}"
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Debug|Any CPU = Debug|Any CPU
Release|Any CPU = Release|Any CPU
EndGlobalSection
GlobalSection(ProjectConfigurationPlatforms) = postSolution
{D8888F6A-ABE1-C49B-1A38-F65A81021668}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{D8888F6A-ABE1-C49B-1A38-F65A81021668}.Debug|Any CPU.Build.0 = Debug|Any CPU
{D8888F6A-ABE1-C49B-1A38-F65A81021668}.Release|Any CPU.ActiveCfg = Release|Any CPU
{D8888F6A-ABE1-C49B-1A38-F65A81021668}.Release|Any CPU.Build.0 = Release|Any CPU
{DDFBC18F-9396-3137-9CFE-DEB2CDB74636}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{DDFBC18F-9396-3137-9CFE-DEB2CDB74636}.Debug|Any CPU.Build.0 = Debug|Any CPU
{DDFBC18F-9396-3137-9CFE-DEB2CDB74636}.Release|Any CPU.ActiveCfg = Release|Any CPU
{DDFBC18F-9396-3137-9CFE-DEB2CDB74636}.Release|Any CPU.Build.0 = Release|Any CPU
{6F824ECF-F2BC-827E-A29D-FB10759A3283}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{6F824ECF-F2BC-827E-A29D-FB10759A3283}.Debug|Any CPU.Build.0 = Debug|Any CPU
{6F824ECF-F2BC-827E-A29D-FB10759A3283}.Release|Any CPU.ActiveCfg = Release|Any CPU
{6F824ECF-F2BC-827E-A29D-FB10759A3283}.Release|Any CPU.Build.0 = Release|Any CPU
EndGlobalSection
GlobalSection(SolutionProperties) = preSolution
HideSolutionNode = FALSE
EndGlobalSection
GlobalSection(MonoDevelopProperties) = preSolution
StartupItem = Assembly-CSharp.csproj
Policies = $0
$0.TextStylePolicy = $1
$1.inheritsSet = null
$1.scope = text/x-csharp
$0.CSharpFormattingPolicy = $2
$2.inheritsSet = Mono
$2.inheritsScope = text/x-csharp
$2.scope = text/x-csharp
$0.TextStylePolicy = $3
$3.FileWidth = 120
$3.TabWidth = 4
$3.EolMarker = Unix
$3.inheritsSet = Mono
$3.inheritsScope = text/plain
$3.scope = text/plain
EndGlobalSection
EndGlobal

Binary file not shown.

Binary file not shown.

Binary file not shown.

View File

@ -1,5 +1,5 @@
Base path: E:/SDKs/Unity/Editor/Data
Pipe name: \\.\pipe\UnityShaderCompiler-32bit-1-11744
Pipe name: \\.\pipe\UnityShaderCompiler-32bit-1-3856
Cmd: getPlatforms
Unhandled exception: Readfile from pipe failed. GLE=The pipe has been ended.

View File

@ -1,23 +1,3 @@
Base path: E:/SDKs/Unity/Editor/Data
Pipe name: \\.\pipe\UnityShaderCompiler-64bit-1-11744
Cmd: getPlatforms
Cmd: compileSnippet
api=4 type=0 insize=3445 outsize=7018 kw=SHADOWS_DEPTH ok=1
Cmd: compileSnippet
api=4 type=1 insize=3445 outsize=1014 kw=SHADOWS_DEPTH ok=1
Cmd: compileSnippet
api=4 type=0 insize=3054 outsize=6645 kw=SHADOWS_DEPTH ok=1
Cmd: compileSnippet
api=4 type=1 insize=3054 outsize=1014 kw=SHADOWS_DEPTH ok=1
Cmd: compileSnippet
api=4 type=0 insize=141004 outsize=4386 kw=DIRECTIONAL SHADOWS_SCREEN LIGHTMAP_OFF DIRLIGHTMAP_OFF DYNAMICLIGHTMAP_OFF _TERRAIN_OVERRIDE_SMOOTHNESS ok=1
Cmd: compileSnippet
api=4 type=1 insize=141004 outsize=11666 kw=DIRECTIONAL SHADOWS_SCREEN LIGHTMAP_OFF DIRLIGHTMAP_OFF DYNAMICLIGHTMAP_OFF _TERRAIN_OVERRIDE_SMOOTHNESS ok=1
Cmd: compileSnippet
api=4 type=0 insize=141004 outsize=3996 kw=DIRECTIONAL SHADOWS_OFF LIGHTMAP_OFF DIRLIGHTMAP_OFF DYNAMICLIGHTMAP_OFF _TERRAIN_OVERRIDE_SMOOTHNESS ok=1
Cmd: compileSnippet
api=4 type=1 insize=141004 outsize=11357 kw=DIRECTIONAL SHADOWS_OFF LIGHTMAP_OFF DIRLIGHTMAP_OFF DYNAMICLIGHTMAP_OFF _TERRAIN_OVERRIDE_SMOOTHNESS ok=1
Cmd: compileSnippet
api=4 type=0 insize=14871 outsize=3492 kw=DIRECTIONAL SHADOWS_OFF LIGHTMAP_OFF DIRLIGHTMAP_OFF DYNAMICLIGHTMAP_OFF _TERRAIN_OVERRIDE_SMOOTHNESS ok=1
Cmd: compileSnippet
api=4 type=1 insize=14871 outsize=10106 kw=DIRECTIONAL SHADOWS_OFF LIGHTMAP_OFF DIRLIGHTMAP_OFF DYNAMICLIGHTMAP_OFF _TERRAIN_OVERRIDE_SMOOTHNESS ok=1
Base path: E:/SDKs/Unity/Editor/Data
Pipe name: \\.\pipe\UnityShaderCompiler-64bit-1-3856
Cmd: getPlatforms

View File

@ -1,6 +0,0 @@
[Info] 7:50:35 PM: Loading configuration...
[Info] 7:50:35 PM: Finished loading configuration.
[Info] 7:50:35 PM: Loading biomes...
[Info] 7:50:35 PM: Loaded biome 'Grassland' from file 'Assets\Data\Biomes\Grassland\Grassland.xml'.
[Info] 7:50:35 PM: Loaded biome 'Mountain' from file 'Assets\Data\Biomes\Mountain\Mountain.xml'.
[Info] 7:50:35 PM: Finished loading biomes.

View File

@ -1,7 +0,0 @@
[Info] 19:53:47.388: Loading configuration...
[Error] 19:53:47.413: Dummy error.
[Info] 19:53:47.559: Finished loading configuration.
[Info] 19:53:47.629: Loading biomes...
[Info] 19:53:47.667: Loaded biome 'Grassland' from file 'Assets\Data\Biomes\Grassland\Grassland.xml'.
[Info] 19:53:47.74: Loaded biome 'Mountain' from file 'Assets\Data\Biomes\Mountain\Mountain.xml'.
[Info] 19:53:47.793: Finished loading biomes.

View File

@ -1,6 +0,0 @@
[Info] 19:56:36.545: Loading configuration...
[Info] 19:56:36.727: Finished loading configuration.
[Info] 19:56:36.803: Loading biomes...
[Info] 19:56:36.919: Loaded biome 'Grassland' from file 'Assets\Data\Biomes\Grassland\Grassland.xml'.
[Info] 19:56:36.972: Loaded biome 'Mountain' from file 'Assets\Data\Biomes\Mountain\Mountain.xml'.
[Info] 19:56:37.307: Finished loading biomes.

View File

@ -1,6 +0,0 @@
[Info] 19:56:53.044: Loading configuration...
[Info] 19:56:53.082: Finished loading configuration.
[Info] 19:56:55.172: Loading biomes...
[Info] 19:56:55.23: Loaded biome 'Grassland' from file 'Assets\Data\Biomes\Grassland\Grassland.xml'.
[Info] 19:56:55.281: Loaded biome 'Mountain' from file 'Assets\Data\Biomes\Mountain\Mountain.xml'.
[Info] 19:56:55.309: Finished loading biomes.

View File

@ -1,6 +0,0 @@
[Info] 19:57:38.537: Loading configuration...
[Info] 19:57:55.445: Finished loading configuration.
[Info] 19:57:55.849: Loading biomes...
[Info] 19:57:56.118: Loaded biome 'Grassland' from file 'Assets\Data\Biomes\Grassland\Grassland.xml'.
[Info] 19:57:56.568: Loaded biome 'Mountain' from file 'Assets\Data\Biomes\Mountain\Mountain.xml'.
[Info] 19:57:56.804: Finished loading biomes.

View File

@ -1,6 +0,0 @@
[Info] 19:58:29.428: Loading configuration...
[Info] 19:58:35.373: Finished loading configuration.
[Info] 19:58:39.043: Loading biomes...
[Info] 19:58:46.043: Loaded biome 'Grassland' from file 'Assets\Data\Biomes\Grassland\Grassland.xml'.
[Info] 19:58:58.305: Loaded biome 'Mountain' from file 'Assets\Data\Biomes\Mountain\Mountain.xml'.
[Info] 19:58:58.553: Finished loading biomes.

View File

@ -1,6 +0,0 @@
[Info] 20:00:33.44: Loading configuration...
[Info] 20:00:33.51: Finished loading configuration.
[Info] 20:00:33.525: Loading biomes...
[Info] 20:00:33.578: Loaded biome 'Grassland' from file 'Assets\Data\Biomes\Grassland\Grassland.xml'.
[Info] 20:00:33.614: Loaded biome 'Mountain' from file 'Assets\Data\Biomes\Mountain\Mountain.xml'.
[Info] 20:00:33.618: Finished loading biomes.

View File

@ -1,6 +0,0 @@
[Info] 20:00:58.018: Loading configuration...
[Info] 20:00:58.094: Finished loading configuration.
[Info] 20:00:58.15: Loading biomes...
[Info] 20:00:58.163: Loaded biome 'Grassland' from file 'Assets\Data\Biomes\Grassland\Grassland.xml'.
[Info] 20:00:58.201: Loaded biome 'Mountain' from file 'Assets\Data\Biomes\Mountain\Mountain.xml'.
[Info] 20:00:58.269: Finished loading biomes.

View File

@ -1,6 +0,0 @@
[Info] 20:02:08.554: Loading configuration...
[Info] 20:02:08.623: Finished loading configuration.
[Info] 20:02:08.687: Loading biomes...
[Info] 20:02:08.765: Loaded biome 'Grassland' from file 'Assets\Data\Biomes\Grassland\Grassland.xml'.
[Info] 20:02:08.772: Loaded biome 'Mountain' from file 'Assets\Data\Biomes\Mountain\Mountain.xml'.
[Info] 20:02:08.777: Finished loading biomes.

View File

@ -1,6 +0,0 @@
[Info] 20:03:13.02: Loading configuration...
[Info] 20:03:13.072: Finished loading configuration.
[Info] 20:03:13.092: Loading biomes...
[Info] 20:03:13.124: Loaded biome 'Grassland' from file 'Assets\Data\Biomes\Grassland\Grassland.xml'.
[Info] 20:03:13.143: Loaded biome 'Mountain' from file 'Assets\Data\Biomes\Mountain\Mountain.xml'.
[Info] 20:03:13.201: Finished loading biomes.

View File

@ -1,6 +0,0 @@
[Info] 20:04:17.498: Loading configuration...
[Info] 20:04:17.548: Finished loading configuration.
[Info] 20:04:17.565: Loading biomes...
[Info] 20:04:17.584: Loaded biome 'Grassland' from file 'Assets\Data\Biomes\Grassland\Grassland.xml'.
[Info] 20:04:17.592: Loaded biome 'Mountain' from file 'Assets\Data\Biomes\Mountain\Mountain.xml'.
[Info] 20:04:17.597: Finished loading biomes.

View File

@ -1,7 +0,0 @@
[Info] 20:06:15.968: Loading configuration...
[Info] 20:06:16.049: Finished loading configuration.
[Info] 20:06:16.054: Loading biomes...
[Info] 20:06:16.084: Loaded biome 'Grassland' from file 'Assets\Data\Biomes\Grassland\Grassland.xml'.
[Info] 20:06:16.109: Loaded biome 'Mountain' from file 'Assets\Data\Biomes\Mountain\Mountain.xml'.
[Info] 20:06:16.114: Finished loading biomes.
[Info] 20:06:16.153: Picked biome: Grassland

View File

@ -1,7 +0,0 @@
[Info] 20:08:31.514: Loading configuration...
[Info] 20:08:31.572: Finished loading configuration.
[Info] 20:08:31.637: Loading biomes...
[Info] 20:08:31.669: Loaded biome 'Grassland' from file 'Assets\Data\Biomes\Grassland\Grassland.xml'.
[Info] 20:08:31.711: Loaded biome 'Mountain' from file 'Assets\Data\Biomes\Mountain\Mountain.xml'.
[Info] 20:08:31.716: Finished loading biomes.
[Info] 20:08:31.78: Picked biome: Grassland

View File

@ -1,7 +0,0 @@
[Info] 20:10:32.182: Loading configuration...
[Info] 20:10:32.209: Finished loading configuration.
[Info] 20:10:32.256: Loading biomes...
[Info] 20:10:32.286: Loaded biome 'Grassland' from file 'Assets\Data\Biomes\Grassland\Grassland.xml'.
[Info] 20:10:32.331: Loaded biome 'Mountain' from file 'Assets\Data\Biomes\Mountain\Mountain.xml'.
[Info] 20:10:32.335: Finished loading biomes.
[Info] 20:10:32.378: Picked biome: Grassland

View File

@ -1,265 +0,0 @@
[Info] 20:14:03.808: Loading configuration...
[Info] 20:14:03.888: Finished loading configuration.
[Info] 20:14:03.944: Loading biomes...
[Info] 20:14:03.977: Loaded biome 'Grassland' from file 'Assets\Data\Biomes\Grassland\Grassland.xml'.
[Info] 20:14:03.985: Loaded biome 'Mountain' from file 'Assets\Data\Biomes\Mountain\Mountain.xml'.
[Info] 20:14:03.99: Finished loading biomes.
[Info] 20:14:04.071: Picked biome: Grassland
[Info] 20:14:04.612: Generated map:
3.051827;2.62413;2.246742;2.042398;1.904018;2.584239;1.439506;1.37283;2.265557;3.531363;2.420111;1.926721;1.648502;2.014125;1.945413;1.933579;3.13372;2.839838;2.956267;2.326776;1.86725;2.193138;2.659558;2.977313;2.932185;1.263845;2.742916;2.861819;2.751572;2.196766;3.25611;1.734987;3.533415;2.262995;2.642278;2.722866;2.915232;2.160907;2.520771;2.564199;3.189966;1.735047;2.731657;2.847221;2.458076;2.162377;2.940238;2.307446;2.877796;2.051938;1.628229;1.727438;2.708637;3.13799;2.741295;2.436569;2.594423;2.441723;1.996719;2.401256;2.542274;1.337513;2.222964;1.453748;2.971893;2.856652;2.469401;1.806245;2.424136;2.622242;1.610216;2.796679;2.035386;3.12491;1.536339;2.584163;2.573905;1.443645;1.955213;2.243441;3.087157;3.143533;3.038054;2.083778;2.632595;2.297426;2.522976;2.710819;1.931718;2.060794;1.876781;2.194117;2.704599;1.415094;1.520203;1.371156;2.935071;1.663414;1.864941;2.260288;1.706996;2.186967;1.996598;2.24227;3.406159;1.746628;2.409597;2.397212;2.349828;1.554903;2.878561;1.774002;2.072383;2.113169;1.631973;2.342723;2.613116;2.639476;2.054165;2.707919;2.337065;1.457827;1.209968;2.356961;1.685276;1.133;1.439136;1.141891;2.707142;2.709595;2.511996;2.074771;1.79486;2.686727;1.467117;1.147104;1.964235;3.452024;2.277441;1.912983;1.657856;2.002089;1.707852;1.865246;2.626324;3.161372;3.035355;2.434177;1.59558;2.029187;2.859355;2.617201;2.692685;1.278799;2.284821;2.765997;2.545176;1.918047;3.028874;1.711077;3.248344;2.370726;3.018737;2.757258;2.905982;2.332882;2.61444;2.299682;2.896103;1.681196;2.648249;2.798963;2.57812;2.205575;2.694403;2.258117;2.432433;2.317369;1.705829;1.793735;2.465663;2.993862;2.946353;2.136672;2.409521;2.453169;1.62738;2.221974;2.434416;1.272309;2.085145;1.488476;2.796373;2.796998;2.814051;1.82121;2.460694;2.802748;1.634517;2.610099;1.954032;3.010312;1.549134;2.47289;2.701651;1.611729;1.801304;2.264962;2.709407;3.275642;3.123339;2.142766;2.438095;2.167365;2.655336;2.482273;1.923398;2.037207;1.595569;2.023644;2.593209;1.34845;1.406608;1.405334;2.760736;1.61852;2.16589;2.27782;1.737609;2.352665;2.023641;2.076083;3.300759;1.661782;2.425575;2.291489;2.738304;1.906959;2.24518;1.966677;1.749366;2.402528;1.651204;2.828048;1.800299;2.718711;1.729953;2.222048;2.13296;1.913513;1.087931;2.986181;1.450133;1.319799;1.50923;1.204909;
2.133465;2.45332;1.481516;1.833484;1.76123;1.922261;2.081361;2.9285;1.772894;2.613879;2.478081;1.223828;3.459656;2.019674;2.141615;1.928773;1.583768;1.567014;2.651754;3.038587;2.315745;2.676325;2.579124;1.249973;1.202352;2.756546;1.534886;1.824004;2.091085;2.816921;2.880406;1.722649;2.601579;1.90757;2.685699;2.558404;2.390335;2.565927;1.713076;2.215887;2.173059;2.49443;1.145578;1.782086;2.4241;2.417542;1.215337;1.226851;1.842972;2.312328;1.300024;1.416531;1.579162;1.971941;2.031404;1.444792;1.297114;1.337744;2.264219;1.91554;2.755195;1.84866;1.130488;3.262326;1.077553;1.930503;1.915151;1.374878;2.363667;2.267172;2.544472;2.197857;1.734765;1.926566;1.700118;1.357804;1.99004;3.354807;2.550574;1.670293;1.740912;2.855285;2.71235;3.402499;1.490695;2.481219;1.298828;2.362559;2.02187;1.691277;1.293301;1.698401;3.191595;1.84243;1.692838;2.393081;1.571246;2.511867;2.782046;2.83806;2.148427;1.632951;2.150514;2.979683;2.31384;3.46429;2.005861;2.204294;2.197394;2.160308;2.285438;1.736317;1.654567;1.975348;2.118462;1.851148;2.11851;2.853261;2.439558;2.093071;2.092172;2.895555;2.865944;2.14385;2.711692;2.303927;2.43449;2.784857;2.266875;2.357003;1.327481;1.816668;2.165478;1.986935;1.899195;3.037453;1.84938;2.59;2.716598;1.308188;3.468976;2.084772;2.370157;2.108695;1.830412;1.852538;2.729406;2.838896;2.222406;2.321824;2.330319;1.322147;1.339818;2.975396;1.800462;1.969342;1.967931;2.877212;2.934956;1.616114;2.703317;1.766046;2.563826;2.532053;2.8261;2.655183;1.599878;2.30678;2.201831;2.398333;1.361233;1.871914;2.391995;2.501285;1.429712;1.372997;2.060654;2.628939;1.391131;1.277715;1.476543;1.718392;1.83947;1.524168;1.400396;1.470684;2.634604;2.039534;2.621284;1.944772;1.181731;3.094255;1.10824;1.656496;1.749252;1.362963;2.792774;2.445982;2.550333;2.251184;1.704273;1.788524;1.785993;1.419637;1.997664;3.4469;2.884048;1.824224;1.90679;3.029464;2.764338;3.197162;1.388241;2.287371;1.247044;2.425308;2.088799;1.786726;1.420795;1.815259;3.047982;1.938356;1.756029;2.249534;1.608794;2.19788;2.581968;2.820916;2.558954;1.785191;2.15658;3.041817;2.279243;3.278358;2.099628;2.283138;2.655043;2.25909;2.678971;2.288747;1.449848;1.968682;2.474846;1.907146;1.990216;2.247594;2.192342;2.366031;2.2304;2.980568;2.442652;2.416283;2.669169;2.447499;2.90435;3.243524;
1.138312;1.844643;2.938654;1.501;1.443176;2.233412;1.408055;2.574669;1.928375;2.887027;1.970814;1.830971;2.692965;2.564703;2.882482;3.453785;2.101907;2.328295;2.398776;2.036268;2.648892;2.006291;1.500045;1.985734;2.873541;2.311978;2.653964;3.039369;2.326566;1.911314;2.499811;2.946109;2.659951;3.105419;2.361353;2.021079;2.540292;2.763772;2.754005;1.695828;1.536827;1.960394;2.346809;2.706344;2.164705;2.728839;1.776;2.806208;1.813103;1.710935;2.681204;1.639024;1.736653;1.600629;1.263511;1.448417;2.676217;2.703358;2.486121;2.251241;2.838117;1.411955;1.696055;2.219859;1.457319;2.037546;1.929098;2.330112;2.460141;1.591316;2.403002;2.003875;1.882523;2.732893;2.170842;2.414679;2.035257;1.960849;2.692808;2.223331;1.452785;2.103809;2.842605;2.140824;1.406893;1.52034;1.799347;2.49392;2.062618;1.992772;2.017337;1.794891;1.57662;1.358065;1.747682;1.518177;2.471558;2.959191;2.349248;1.892822;1.297141;2.948509;1.481122;1.162511;1.970477;1.487013;2.962473;2.881515;2.922783;1.730636;1.586777;1.932598;1.152259;1.941374;1.469642;2.795434;2.010233;1.276674;1.166846;2.355249;2.609488;3.44325;1.515042;1.833712;1.526805;2.860034;2.492965;1.254867;1.272952;1.922093;3.450677;1.437311;1.425445;2.48458;1.402857;2.512244;1.988599;2.990649;1.778642;1.447801;2.274766;2.453648;2.975588;3.393496;2.340108;2.41589;2.673498;1.895504;2.925309;1.997104;1.555315;1.77498;2.871719;2.635648;2.639155;2.585026;2.175392;2.112856;2.531806;2.900124;2.879215;3.216935;2.734677;1.958527;2.592002;3.127582;2.743412;1.654163;1.596238;2.037738;2.053798;2.230149;1.846179;2.670529;1.837618;2.737582;2.022146;1.781837;2.869952;1.50605;2.000387;1.639735;1.302428;1.259571;2.660121;3.046984;2.379626;2.063326;2.78455;1.66526;1.726509;2.207291;1.537895;2.086937;2.217101;2.184002;2.610667;1.891402;2.383134;1.959055;1.889464;2.779023;1.99387;2.180038;1.781788;1.946239;2.773953;2.189231;1.557279;2.141079;2.978662;1.914771;1.726419;1.578485;1.83694;2.245424;1.988316;2.249529;2.02708;1.628116;1.536845;1.607271;1.778598;1.508499;2.576222;3.019605;2.666285;1.761968;1.407135;3.353146;1.465538;1.12905;1.977631;1.521768;2.755357;2.625055;2.470119;1.362853;1.755746;1.751199;1.351675;1.648046;1.755116;2.679622;2.738764;1.431556;1.365701;2.97032;2.35299;3.010274;1.692104;1.932001;1.647617;3.090812;2.204627;1.255801;
2.713074;2.930636;3.324419;1.976212;2.563876;2.182191;2.100661;2.265878;2.166841;1.389621;1.496964;2.875771;2.050427;2.238276;2.661058;2.002191;2.351917;2.7325;3.105317;2.87933;2.098921;2.849133;2.407927;2.942046;2.611459;2.344792;2.332574;1.806494;2.812819;1.939818;1.967237;1.502874;2.457935;1.777828;2.502708;2.762212;1.438837;3.323946;1.390658;1.961827;2.206197;1.237619;1.367013;2.852851;2.860538;2.371608;2.454765;2.319505;1.15526;1.361763;2.568686;2.156034;1.739209;1.941908;2.255112;2.578566;1.781838;2.91469;2.183973;2.876924;2.514129;2.793163;2.25048;1.336481;1.959498;2.68072;2.253472;1.282773;2.387712;2.444091;2.26589;1.372026;1.754829;1.685192;2.223774;2.096044;1.577907;1.802616;1.887278;1.620006;1.673222;2.027072;1.860369;2.640917;2.194339;2.539138;2.315122;1.787444;3.102631;1.275045;1.894774;2.395506;2.219503;2.757972;2.183359;2.357004;1.663695;1.622348;1.906335;1.756218;1.936926;1.792619;2.380752;2.586237;1.869644;1.259457;2.483871;2.882424;3.209913;1.540285;2.415573;1.244576;2.152698;1.984171;1.415969;1.699947;1.732506;2.932371;1.455476;1.42237;2.549515;2.034179;2.685579;2.6559;2.353333;2.57965;1.656027;1.929565;2.704847;2.918633;3.57508;1.747217;3.229327;2.16559;2.140862;2.129424;2.102399;1.71185;1.556898;2.642178;1.958315;2.539701;2.559127;2.00383;2.23854;2.653308;3.584419;2.61219;2.432387;3.178704;2.336411;2.938547;2.648165;2.501124;2.223649;1.605857;2.425199;1.93718;1.998344;1.486609;2.549029;1.812432;2.698887;2.429148;1.937921;3.257428;1.423424;1.810236;2.223302;1.585889;1.400412;2.560354;2.726988;2.640449;2.343777;2.321143;1.130327;1.347212;2.98869;1.899619;2.016429;2.179357;2.188304;2.575169;1.882174;3.151276;2.064436;2.674387;2.227759;2.795047;2.359536;1.282781;2.133388;2.739796;2.355089;1.130341;2.837889;2.497108;2.320398;1.188543;1.697148;1.951486;2.211375;1.916611;1.568707;2.077193;1.857148;1.579024;1.726285;2.02373;2.139808;2.462349;2.339433;2.929059;2.260925;1.715913;3.136778;1.320347;1.73563;2.211145;1.951916;2.759935;2.291701;2.285409;1.825053;1.668321;2.000729;1.577152;2.345366;1.838139;2.43755;2.33177;1.810926;1.49094;2.471701;2.67219;2.972036;1.819418;2.381516;1.710723;3.09728;2.118901;1.352688;1.188597;2.187136;3.100942;1.771771;1.106978;2.800424;2.10896;2.282189;2.230314;3.165897;2.391077;2.04617;2.558408;
1.418408;1.56392;1.561686;2.503606;2.192421;1.729428;1.395935;2.824051;2.196685;2.854855;1.567269;2.803755;1.25716;2.986833;2.151616;1.474022;1.115067;2.27779;2.618778;1.44166;1.650477;3.173449;2.331257;2.234305;3.212695;2.520226;2.181827;1.411163;2.524895;2.90448;2.641684;3.218891;1.906838;2.523873;2.370215;1.810328;2.527067;2.407468;1.534303;2.180861;2.327727;2.325158;2.471241;2.891515;2.175162;2.200186;2.80461;3.037971;2.637005;2.890521;2.336414;2.267164;2.862269;3.110801;2.98589;2.7156;2.109071;2.373286;1.56023;1.904479;2.044742;2.583375;1.815064;2.631581;2.341754;1.440531;2.833709;1.559066;1.872271;2.23934;1.449068;1.681566;2.087373;2.548078;2.289341;2.851379;2.312461;1.6445;1.495134;2.859094;1.45298;2.589443;1.55143;2.525923;3.088244;2.53242;3.638848;1.766468;3.002454;2.234493;2.326242;2.214803;2.00968;2.085736;2.633435;2.288004;1.275379;2.407852;2.647316;2.143664;1.56254;1.980721;1.81341;2.650135;1.521453;1.876673;1.779067;1.945726;1.636995;1.651502;2.231476;1.692241;2.441783;2.980409;2.280786;2.304723;1.824882;3.367785;1.391116;1.818682;2.504256;1.899318;2.014117;2.429761;2.886625;1.709569;1.697972;1.958107;1.55881;1.563775;1.619429;2.596917;2.455708;1.637518;1.503273;2.397225;1.884237;2.980925;1.411282;2.752532;1.276002;2.62712;2.130522;1.394999;1.196664;2.328157;2.725645;1.500166;1.605067;3.208046;1.909965;2.121721;2.924696;2.538655;2.009435;1.367328;2.541158;2.77879;2.610786;3.602192;2.118276;2.484674;2.468322;1.872743;2.831139;2.28811;1.682731;1.786926;2.061728;2.408733;2.308666;2.827233;2.225041;1.888141;2.832614;2.901645;2.805821;2.901042;2.42925;2.327888;2.80854;3.125583;2.512046;2.570253;1.913291;2.350076;1.408971;1.908117;2.035428;2.563952;1.765826;2.967064;2.547533;1.328599;2.929712;1.472309;1.965748;2.116484;1.579313;1.425372;1.911178;2.706169;2.242573;2.868031;2.332152;1.463623;1.493993;2.715235;1.556967;2.488018;1.619364;2.406478;2.830342;2.538103;3.094043;1.747051;2.860071;2.277542;2.250525;2.219496;2.000527;2.069062;2.574131;2.602245;1.428324;2.26329;2.740166;2.042459;1.648108;1.866017;1.958843;2.326514;1.371544;2.013453;1.737894;1.960737;1.726563;1.845949;1.77267;1.457897;2.411443;2.853522;2.934477;2.817018;1.645461;3.104589;1.105625;1.864044;2.405107;1.688474;2.635963;2.42531;2.967316;2.067494;1.675974;1.68036;
2.75009;1.221846;2.726094;2.119257;1.21948;2.111001;2.090101;2.458489;3.128311;2.917744;1.954347;2.370829;1.629287;2.43647;2.522346;1.731397;2.423312;1.961369;2.064268;2.886819;1.967898;1.361012;1.502933;2.390656;1.253306;1.797306;2.931747;1.583617;2.085269;1.825985;2.995401;3.431075;1.109166;1.781692;2.092585;2.802006;2.054981;2.982177;2.559364;1.379285;2.35955;1.747666;2.820007;1.713203;2.353706;1.613313;2.391721;2.010607;1.69788;1.491889;3.107272;1.500113;1.464296;1.911673;1.648761;2.801896;2.359044;1.813108;2.139612;1.822811;2.30937;1.887173;1.471975;1.453886;3.129438;1.984441;2.086259;1.206011;1.652837;2.066857;1.533182;2.439311;3.163231;2.866918;2.388282;1.624024;1.638999;2.816566;2.643929;2.344622;1.783442;2.848563;2.890414;2.965008;2.774695;2.828896;1.48758;2.882745;1.947441;2.596833;3.667384;2.880663;2.366048;2.334064;3.314288;2.814876;1.194967;2.074986;2.281783;3.112224;2.689922;3.005493;2.891643;1.935434;2.680661;1.658992;2.038504;1.640713;2.969508;2.443161;1.899407;2.066657;2.697678;2.084751;2.850954;2.186293;1.636442;2.548769;1.836156;2.766336;2.420807;2.091844;1.953571;2.817512;2.056454;2.252882;2.853836;1.609713;2.561171;1.338223;2.670566;2.039281;1.304684;1.782606;2.017102;2.658702;3.237219;2.472766;1.756505;2.527027;1.771281;2.573834;2.731079;1.755799;2.545107;2.035532;1.833341;3.227486;2.22928;1.254609;1.313165;2.311536;1.364933;1.697509;2.936111;1.673506;1.991554;2.150284;2.789438;3.482642;0.9584116;1.870775;2.076182;2.699697;2.094496;2.50364;2.568564;1.561531;2.392888;1.366141;2.60615;1.84052;2.434363;1.655934;2.672719;2.080381;1.753649;1.55003;2.825377;1.749377;1.623026;1.753366;1.491276;2.766543;2.456056;1.705653;2.145811;1.994503;2.153958;2.170808;1.279129;1.560197;2.867799;2.071681;2.105228;1.111061;1.65448;1.769266;1.625254;2.671049;3.216078;2.509437;2.098737;1.818843;1.724742;2.860856;2.865222;2.512402;1.836678;2.921028;2.659061;3.264018;2.94714;2.757437;1.41811;2.837858;2.048012;2.608542;3.555915;3.095528;2.209639;2.648501;3.022486;2.962004;1.036132;2.164302;2.302618;2.958536;2.693046;2.644368;3.018543;2.142374;2.730398;1.390007;1.772589;1.836719;3.139236;2.596879;2.506063;2.057142;2.968084;1.907577;2.307503;2.946832;1.949456;2.343755;1.709564;2.262191;2.443545;2.383406;2.040641;2.707009;2.363096;2.142983;3.626979;1.723982;
2.416999;2.640959;2.650399;1.824837;2.444153;2.15217;1.673028;1.878361;2.696559;2.591968;2.053313;1.652496;1.764406;1.511595;1.748;2.376253;3.035249;3.045142;1.935736;1.209305;1.859579;2.431116;2.778039;2.594331;1.827799;2.569444;2.173978;2.413156;2.576134;3.126235;1.756063;3.291286;2.43055;2.627405;2.808136;2.831984;2.187657;2.538953;2.94464;2.709231;1.113416;2.41574;2.48381;2.488486;2.139596;2.580089;2.843785;2.487857;2.189854;2.231339;1.567312;1.634151;2.997273;2.630453;2.29267;1.928139;3.361601;1.632054;2.454823;2.031626;1.892827;2.752864;1.677686;2.636297;2.109549;2.786618;2.114516;2.264764;2.342863;2.080474;3.446051;1.892513;2.247038;2.095001;2.477745;2.502722;1.338585;1.349374;2.131966;2.191427;2.979299;2.907497;1.54466;1.845383;2.031526;2.24697;2.781048;2.064736;2.614131;1.948998;1.630345;2.364986;1.979923;1.45652;1.496749;2.825943;1.537119;1.739043;2.077188;1.610249;2.015656;2.021326;3.008458;3.20558;1.128726;2.341445;2.233361;2.411815;1.496624;2.371428;2.253556;1.852533;1.795324;2.111975;2.106825;1.529339;2.509353;1.737767;2.715597;2.356506;2.037696;1.518256;2.586365;1.261673;1.752493;1.685314;1.506718;2.744933;2.04165;2.494886;2.515651;1.66185;2.661463;2.149077;1.598926;2.246805;3.079413;2.832916;1.926491;1.582658;1.742139;1.493765;1.938069;2.574525;3.034092;2.937666;2.110055;1.346081;2.018114;2.23879;2.731534;2.974568;1.675303;2.935061;2.167969;2.218794;2.446201;2.659658;1.84554;3.243683;2.083305;2.422631;2.657604;2.68955;2.383179;2.519107;2.778579;3.221761;1.393798;2.59542;2.340859;2.469714;2.110365;2.545382;3.021251;2.728637;2.201014;2.127152;1.722373;1.821177;3.161087;2.456858;2.196106;2.292292;3.167921;1.913822;2.445517;1.853306;1.758618;2.464041;1.765535;2.579978;1.927376;2.639804;2.08579;2.124814;2.513209;2.123888;3.197705;2.166281;2.576863;2.160243;2.260727;2.449652;1.319155;1.41641;2.286117;2.404308;3.173336;2.855363;1.793007;2.031682;2.137813;2.149015;2.612602;2.27948;2.384285;2.15442;1.560899;2.172836;1.842546;1.249063;1.579807;2.768318;1.382275;1.624089;2.048638;1.493062;2.173813;2.064697;2.776745;3.559882;1.365834;2.411131;2.027497;2.360077;1.389218;2.308607;2.248014;1.717027;2.000114;1.696908;2.52065;2.054596;2.256153;1.435414;2.330089;2.768407;1.541068;1.483783;2.589928;1.762995;1.94789;1.793777;1.394407;2.269223;
3.393165;2.483942;2.211165;2.818495;2.888931;1.507512;2.531484;2.334769;2.198092;2.01064;2.648908;2.939087;2.156888;2.408002;2.000796;1.637755;2.421462;2.867475;2.46095;2.276591;2.335649;2.962565;1.634066;2.281688;2.396173;2.348719;2.833411;2.124143;2.812774;2.401378;2.133034;2.080607;2.548803;2.532552;1.511751;2.737746;1.505235;2.654683;1.645347;1.792032;2.093363;1.2695;2.139749;1.706341;2.255937;2.816885;2.789583;1.459635;2.792878;2.294196;2.648358;2.897422;2.432452;2.750268;1.903666;2.100571;2.829022;2.186532;1.707178;1.804892;2.868977;1.66856;1.592316;2.457384;2.241314;2.485444;1.896412;2.729149;3.570353;1.615591;2.304636;2.228512;2.073733;1.51846;2.509213;2.393301;1.472053;2.021617;1.978032;2.35867;2.546154;2.514777;1.790827;3.188984;2.459759;2.154079;1.245006;2.401443;1.640064;2.161398;1.877214;1.677865;2.642884;2.450528;1.939226;2.443425;1.849517;2.675371;1.548452;1.338809;1.796658;3.193466;2.50492;1.515219;1.124899;1.478926;2.000353;1.271139;2.07672;2.438665;2.789285;1.648009;1.774193;2.076946;2.751535;2.778591;3.146604;1.859865;2.640394;2.904759;2.71485;2.588123;3.38959;1.910527;3.270931;2.221843;2.570924;2.76816;3.615242;2.784941;2.448357;3.071197;3.18685;1.712312;2.737166;2.417192;2.137591;1.986757;2.283313;2.59519;2.020536;2.297739;2.083308;1.841935;2.145143;2.812872;2.389422;2.139389;2.235412;2.976487;1.731348;2.385952;2.410518;2.201414;2.627981;2.067247;2.7004;2.290704;2.429366;2.014095;2.683866;2.800896;1.720553;2.96014;1.741596;2.928125;1.764729;1.82063;1.974772;1.229229;1.815406;1.430606;2.125364;2.701712;2.812489;1.631791;2.470113;2.189029;2.600332;2.745831;2.379376;2.736468;1.966773;2.176453;2.817735;1.990682;1.569086;1.780027;2.937748;1.692316;1.853903;2.440003;2.357981;2.680603;2.074075;2.881411;3.712363;1.751769;2.396954;2.228826;2.051071;1.594764;2.263939;2.091324;1.457055;2.075191;2.001942;2.633018;2.22881;2.33882;1.701596;2.959604;2.23736;2.056945;1.261576;2.449496;1.719512;2.105454;1.829254;1.653926;2.709919;2.479445;2.227893;2.426179;1.956563;2.877813;1.710251;1.446102;1.898647;3.383976;2.602226;1.515546;1.108924;1.554317;1.782928;1.05405;2.450037;2.545619;2.39465;2.550132;1.106825;1.807209;2.240534;2.920479;2.673012;1.76853;2.264822;2.395342;2.825686;2.469762;3.233052;1.381184;2.778266;2.394337;2.485144;2.732645;
2.306942;1.289955;1.729322;2.707969;1.976461;1.806736;1.253245;2.301906;1.544705;1.269961;2.971213;1.503947;2.260664;1.744489;2.977346;3.235542;1.65445;2.25431;2.062503;2.331448;1.865144;2.45696;2.544794;1.519405;1.71519;1.611025;3.020586;1.884708;2.413405;1.568695;2.501664;2.5882;1.450749;0.9989606;2.693085;2.025205;1.526522;2.20119;1.509676;2.714251;2.718817;2.541046;3.18567;2.016344;3.032351;1.899468;1.674413;1.899874;3.422185;2.655428;1.819599;1.285411;1.916615;2.040337;1.652309;2.466079;2.692578;2.750558;2.629977;1.531257;2.085316;2.264303;2.408294;2.232623;1.551501;2.073136;2.615018;2.820415;2.599009;3.386201;1.383791;2.901944;2.226626;1.939988;3.620157;2.971806;2.40473;2.211891;3.273573;2.712337;1.652718;2.640825;2.347113;2.608885;2.361437;2.453027;3.016962;2.123809;1.954765;1.522786;2.127032;1.941199;2.95313;2.397365;1.973719;2.754907;2.298875;1.530124;2.579157;2.772982;1.681951;2.906479;1.878634;2.777788;2.669027;2.842716;2.987831;2.883951;2.904752;2.037662;3.479576;1.959584;2.994617;1.86164;2.430266;2.277541;1.551173;1.969979;1.934725;2.272565;2.767448;2.519436;2.061719;2.45418;2.188369;2.058659;2.306479;1.552924;2.259718;1.573815;1.990155;3.069128;1.946071;1.429576;1.557972;2.467502;1.816972;1.415197;3.013662;1.612009;2.21106;1.522433;2.778265;3.03884;1.420809;2.25005;1.995156;2.293454;1.610392;2.237475;2.416756;1.357073;1.725483;1.470417;2.783509;2.198692;2.371264;1.627981;2.565828;2.632756;1.429508;1.240308;3.020545;2.271204;1.555351;1.821769;1.830776;2.883487;3.109286;2.738422;3.24341;2.083701;3.058918;1.709392;1.519712;1.772725;3.127918;2.64104;1.775267;1.235154;1.730408;1.882643;1.551145;2.283769;2.747891;2.556748;2.431177;1.757045;2.136249;2.31589;2.430046;2.268693;1.595443;2.361155;2.846539;3.104065;2.619792;3.014081;1.671046;3.010133;2.593468;2.255768;3.63998;3.01156;2.439207;1.945502;3.009969;2.554079;1.514283;2.57088;2.216513;2.532769;2.139323;2.371445;2.852548;1.902291;2.012736;1.495902;1.9183;2.195233;3.013576;2.451053;1.993415;2.795599;2.352377;1.779472;2.809084;3.055227;1.698597;2.563151;2.211097;2.88431;3.069427;3.223256;3.005805;2.924785;2.01143;1.842618;3.154395;1.826999;2.536115;1.984915;2.383379;2.497278;1.257235;2.141082;1.942503;2.656038;2.745747;2.121579;2.027181;1.836132;2.081512;1.994238;2.956412;1.903674;
1.176756;2.92169;1.736777;2.200597;2.052473;2.521882;2.526575;2.224555;2.469303;2.20087;2.518487;2.882252;2.713389;2.839724;1.75297;2.287335;2.624537;1.780371;1.406023;1.852698;2.341781;2.36237;1.886017;1.433831;1.511158;2.665265;1.965929;2.172213;1.44707;1.527216;1.452069;1.953532;2.172813;2.021321;2.312927;2.167302;2.865666;1.668907;1.640128;2.524776;1.185458;1.215864;2.006705;1.774006;2.321514;2.703891;2.769549;1.460737;1.27404;1.784296;1.55989;1.926237;1.530763;2.36112;2.489662;1.727004;1.175841;3.040894;2.268536;2.655988;1.774645;2.034276;1.530454;2.15446;1.941782;1.572162;1.352857;2.110883;3.392226;1.705465;1.337549;2.906527;1.747358;2.908313;2.506762;2.864952;2.473781;1.917881;2.277448;3.043604;2.739531;2.75756;2.075307;2.20938;2.118185;2.176893;3.240548;1.998031;1.401882;2.137356;2.64268;2.460195;1.957525;2.246262;1.93371;2.627716;2.87947;3.285653;2.50477;2.19029;2.841942;1.881908;2.895188;2.42662;2.691694;1.717769;1.424669;2.093751;1.648808;2.292544;1.72042;2.203949;1.402358;2.454328;2.405087;1.685901;2.989969;1.335834;1.801077;2.227787;1.422966;1.798797;2.12315;2.236986;2.600143;2.1906;2.896226;1.152915;1.152128;2.909019;1.774455;2.329995;2.179636;2.641582;2.574908;2.209026;2.552233;2.301395;2.465181;2.512233;2.433239;2.750875;1.664198;2.156322;2.89193;1.970089;1.294301;2.023699;2.36238;2.616889;1.77514;1.552513;1.726751;2.695677;1.898947;2.054371;1.425936;1.511555;1.464337;1.916972;2.128304;1.988192;2.417097;2.297596;3.026054;1.82019;1.719178;2.52036;1.226934;1.2748;2.005209;1.490224;2.05903;2.683126;2.694171;1.358294;1.422884;1.95061;1.479631;2.095887;1.521196;2.67625;2.394039;1.859003;1.328422;3.043517;2.243235;2.644677;1.769645;2.089079;1.626254;2.104873;1.87188;1.646519;1.387506;2.243312;3.567709;1.827203;1.423559;2.791053;1.619326;2.962883;2.512243;2.6248;2.254982;1.91872;2.308188;2.881861;2.920923;3.10671;1.929601;2.39525;2.108284;2.443917;3.154132;2.045035;1.402651;2.109091;2.623701;2.449355;1.953111;2.303858;2.042205;2.573069;2.795304;3.392883;2.552848;2.325194;3.00379;2.009707;3.022305;2.32135;2.533243;1.759852;1.429559;1.889543;1.599565;2.424366;1.389391;2.752637;1.760094;2.519584;2.213901;1.364015;3.188197;1.778205;1.884609;2.140702;1.623937;1.573731;2.44255;2.431332;2.441383;2.370812;2.255813;1.56984;
2.286788;1.33678;1.091409;2.066841;3.214761;2.018448;1.722714;3.01856;1.582841;2.55553;3.078797;2.857264;2.643432;1.851816;2.030185;2.500194;3.180609;2.845447;2.878422;2.415008;2.31644;2.934116;2.557281;2.017721;1.452499;1.627921;2.578939;1.778824;2.292105;2.269175;2.034808;2.322043;2.729843;2.45401;2.71627;2.794052;3.017936;2.400277;2.770515;3.146197;2.787542;1.75375;1.817862;2.232369;2.136661;1.930532;1.780507;2.203954;1.806913;2.023426;2.330182;1.427485;3.010604;2.479209;1.8552;1.750493;1.532605;1.151612;2.159693;2.156714;3.23436;1.87744;2.768977;1.593063;1.521678;2.448143;1.399115;2.156491;1.87394;2.776862;2.925673;2.460235;3.003219;2.12529;3.147161;2.57755;2.661335;2.308699;1.316316;1.996162;3.051164;2.048507;2.02558;2.088881;2.626121;2.911152;1.451392;1.486859;1.898144;2.373646;1.806529;1.357137;1.663797;1.297076;1.353193;1.707774;2.046775;1.199541;2.498517;2.576394;2.999238;2.24057;1.472917;3.54554;1.657731;1.324089;2.369867;1.693362;2.646086;2.009214;2.520269;1.507574;1.789186;1.322872;1.374516;1.740395;1.613199;3.676636;2.217477;1.218507;1.656031;2.307158;2.375964;2.65319;2.296909;2.023831;1.51058;3.149077;2.397413;1.422443;1.182204;1.893527;3.048475;2.024796;1.809669;2.903095;1.77549;2.872096;3.007215;2.544189;2.25504;1.616466;1.974368;2.557621;3.293229;3.164757;2.700696;2.596561;2.46464;2.564032;2.403927;1.889107;1.557743;1.799992;2.77705;1.86418;2.277883;2.151119;1.788158;2.731217;2.85613;2.517998;2.749852;2.609172;2.926964;2.422123;2.856586;3.044304;3.05624;1.978887;1.684784;1.978976;1.849557;1.707215;1.714488;2.244742;1.879847;2.289005;2.08408;1.56063;3.228224;2.1945;1.711406;1.61937;1.629344;1.293276;2.251475;2.217999;3.391944;1.979209;2.576501;1.871453;1.528593;2.435433;1.410158;1.9641;1.807247;2.815302;3.016938;2.321131;3.094262;2.219253;2.889035;2.280068;2.44554;2.233052;1.328582;1.969906;3.023039;2.242664;1.782314;2.217438;2.836218;2.616874;1.32629;1.329623;1.859565;2.41626;1.825178;1.406285;1.777333;1.382339;1.219597;1.996326;2.054731;1.191163;2.513382;2.366265;2.914682;2.275687;1.53778;3.379069;1.725489;1.399027;2.146711;1.454186;2.253033;2.436222;2.453428;1.322393;1.96106;1.480987;1.191498;1.659843;1.624671;2.580103;2.603334;1.173933;1.39904;2.292361;3.030095;2.777821;1.825949;2.204773;1.731299;2.846563;
1.414426;1.848912;2.524357;1.939291;2.714189;2.728484;2.532539;2.036599;1.358889;1.88659;1.427416;1.67469;1.698317;3.592495;2.858394;1.699759;1.490101;2.680039;2.229832;2.764303;1.399325;2.879871;1.149224;2.496877;2.222783;1.452678;1.503579;2.20518;2.631279;2.079967;1.226715;2.922144;1.419474;2.300679;2.439655;3.328955;2.435347;1.917256;2.443411;2.526006;2.28402;3.161624;1.979017;2.488439;2.182941;2.267764;2.611141;2.164275;1.32013;1.486412;2.27369;2.064349;2.182303;2.310483;1.944117;2.280791;2.554492;2.604072;2.832758;3.113161;2.782739;2.81277;3.32963;3.294978;2.725296;2.493835;2.115666;2.691781;2.124374;2.154944;1.887918;2.913338;1.461367;2.492049;2.190774;1.638347;3.10106;2.12045;2.348775;2.081546;1.420491;1.531175;2.296084;2.619337;2.239428;2.849911;2.192479;1.445044;1.390046;2.359316;1.802797;2.454613;1.625303;2.989532;2.220245;2.305589;2.535259;1.851447;2.508691;3.188005;2.668062;2.70774;1.847111;1.942042;2.211544;2.179985;1.179822;2.104995;2.325557;2.443415;1.422857;1.701475;1.591366;1.909493;1.546378;1.722329;1.61498;1.373333;1.547399;1.799495;1.848291;1.398344;2.473418;2.642545;2.687701;2.439345;1.712852;3.507828;1.523891;1.738056;2.423608;1.91868;2.564265;2.951154;2.493569;1.816194;1.692638;1.525721;1.394751;1.731666;1.386294;3.549195;2.654295;1.801551;1.589058;2.830331;2.336466;2.681526;1.438636;2.626219;1.26905;2.635676;2.218184;1.550336;1.417346;1.982455;2.613676;2.053778;1.121638;2.939245;1.569424;2.254898;2.314112;3.23551;2.23862;2.09585;2.398901;2.255959;2.753243;2.778629;1.907077;2.50271;1.766275;2.224503;2.396412;2.279017;1.475431;1.644025;2.365979;1.965972;2.203059;2.048414;2.101465;2.413508;2.632428;2.793422;2.697766;2.7611;2.778813;2.839487;3.174973;3.177763;2.847146;2.453747;1.922142;2.450953;1.965287;2.444486;1.850419;2.528159;1.837004;2.271392;2.22848;1.608335;2.645221;2.164255;2.161953;2.084222;1.519412;1.697894;2.305247;2.355091;2.287262;2.663007;2.36208;1.478408;1.444798;2.667634;1.79795;2.143312;1.623176;3.017168;2.095155;2.207615;2.653844;1.81687;2.298446;2.92557;2.490484;3.031294;1.810825;1.62998;2.66972;1.973876;1.208189;2.07173;2.109899;2.609787;1.619958;1.698194;1.726054;1.865373;1.542538;2.022537;1.315089;1.552013;1.534164;1.715408;2.052431;1.592411;2.270343;2.181823;2.266883;2.345219;1.341628;2.813054;
1.745092;2.802987;2.648644;2.940569;2.283281;3.113775;1.930475;3.020916;1.986818;2.839849;3.106598;3.538027;2.692509;2.635873;2.283769;2.533206;1.427042;2.436883;2.369106;2.914325;2.653326;2.530132;2.81886;2.136768;2.025153;1.925694;1.516141;2.550843;2.813273;2.104583;1.755243;2.940213;3.086652;2.239445;2.919627;2.532373;1.747912;2.688396;1.5412;2.5955;2.138668;2.413202;2.218219;2.741164;2.571847;1.72461;2.494716;1.569224;3.013679;1.26997;2.114584;2.571033;1.740285;1.368035;1.967211;2.445772;2.760099;2.629673;2.284321;3.112196;2.2803;2.585037;2.376177;1.911545;2.697537;2.036283;2.14115;3.035497;1.754736;1.609023;1.638647;2.954389;1.340179;2.062493;2.774703;2.237704;2.799152;2.088537;2.089611;2.663542;1.269388;2.194508;2.00269;2.717436;1.998629;2.455266;2.095359;1.445863;1.728499;1.815528;2.189026;2.643078;2.358169;1.572621;2.146895;2.733644;1.857373;1.644811;2.930838;1.678865;1.684404;1.839254;1.2065;2.648809;2.160774;2.21706;2.317703;2.15788;2.598563;1.689644;1.079074;1.430575;3.491297;1.951514;1.67299;1.61995;2.000507;1.373197;1.40668;2.603112;2.564487;2.71288;2.508895;1.821995;2.078147;2.927697;2.378411;2.817842;1.436318;2.465593;2.645209;2.824701;2.094037;3.109278;1.85033;3.248282;2.06275;2.739066;2.994767;3.685763;2.955046;2.73072;2.482685;2.400445;1.457585;2.577679;2.691565;3.178396;2.821985;2.783992;2.748549;2.247088;2.025201;1.985599;1.34497;2.376744;2.93678;2.220898;1.717447;3.112712;2.707648;1.95014;2.814441;2.369564;1.56907;2.6376;1.50989;2.803802;2.258799;2.340079;2.045009;2.81963;2.815825;1.767851;2.762513;1.491188;3.118605;1.385185;2.345352;2.801222;1.876748;1.522717;1.968357;2.598291;2.818041;2.717887;2.004379;2.771849;2.279675;2.665842;2.402966;2.157752;2.369224;1.809257;2.026567;2.792079;1.571025;1.542688;1.661128;3.02452;1.386883;1.998065;2.635132;2.193455;2.927823;2.132797;2.40603;2.680843;1.356918;2.401595;2.202315;2.888338;2.139889;2.626574;2.158968;1.458314;1.720032;1.892656;1.962335;2.330837;2.35764;1.636444;2.172251;3.027531;1.586653;1.442026;2.796641;1.49965;1.504601;1.768971;1.225718;2.716107;2.219847;2.150946;2.190411;2.11499;2.395813;2.363135;1.663757;2.001169;3.103183;2.511608;2.266562;1.755446;1.984367;1.541327;1.119425;2.875623;2.256514;2.484412;1.974515;1.532289;2.275646;2.306052;2.272024;2.286407;
1.552365;2.628105;1.498425;1.90901;1.682862;1.161102;3.072355;2.952681;2.556318;2.581207;1.792187;2.642293;1.825905;1.757021;1.691508;2.717816;2.321078;1.511482;1.008498;2.166418;1.833478;1.049097;2.622183;2.419684;2.940715;1.930847;1.366952;1.888826;2.737212;2.344104;2.110304;1.362444;2.786192;2.153899;2.548081;2.307604;2.587671;1.199175;2.880173;2.258443;2.831977;3.264073;2.616564;2.504487;2.739983;2.478884;2.294476;1.225607;2.843905;2.17257;2.636519;3.028827;2.525842;2.72136;1.981639;2.130433;1.76286;1.866338;2.14418;3.353217;2.276643;2.116254;2.852594;2.789789;1.971673;2.686699;2.196708;2.126273;2.684875;1.610333;3.06726;2.713695;2.88563;2.173167;2.447269;2.760752;1.913904;3.372671;1.612815;2.202365;1.774639;2.191444;1.708648;1.892455;2.092582;1.523849;2.707613;2.445704;2.871228;1.594297;2.058856;2.251132;2.475242;2.299524;1.621579;2.129102;1.991869;1.603948;2.315426;1.644763;1.299071;1.106546;2.574222;1.524952;1.893549;2.602527;1.383123;2.382128;2.03364;2.324056;2.610003;1.245524;2.742388;1.926519;2.273399;2.419546;2.754837;2.445138;1.285976;1.873175;1.581646;2.977752;2.085292;2.76778;1.662101;2.99893;2.713226;1.818496;1.589114;2.658298;1.480095;1.955041;2.15616;1.483163;2.921661;2.934653;2.468591;2.849566;1.700224;2.761741;1.490937;1.649382;1.6201;2.453887;2.540901;1.46454;1.091594;1.985628;1.986075;1.079679;2.632765;2.342583;2.672965;2.208123;1.360679;1.970011;2.648004;2.462633;2.090344;1.429098;2.855885;2.197731;2.528834;2.307899;3.165765;1.547939;2.799623;2.300821;2.748493;3.58942;2.49876;2.570946;2.311151;2.377956;2.257145;1.084067;3.063141;2.130883;2.761057;2.752018;2.658254;2.7952;2.032383;2.104832;1.540611;2.15378;2.128393;3.357206;2.254283;2.315236;2.878571;2.913308;1.98769;2.582852;2.274802;2.109611;3.037293;1.875793;2.921661;2.877512;2.873705;2.518883;2.327871;2.79864;1.644078;3.331712;1.618219;2.034756;1.90715;2.014954;1.89714;1.660369;2.020592;1.459666;2.707565;2.528168;2.656127;1.929662;2.039187;2.254396;2.452957;2.506656;1.641867;2.237112;2.00885;1.523946;2.396624;1.630108;1.548337;1.328258;2.441824;1.648299;1.884745;2.979657;1.294498;2.417451;1.998156;2.970337;3.173336;1.264429;2.358895;2.516768;2.841026;1.994025;2.907921;2.549112;1.482437;2.068969;1.752102;2.795931;1.835181;2.128778;1.873252;2.468321;2.046377;1.745039;
2.881887;2.312043;1.93855;3.266964;2.107196;2.817082;2.556041;1.902932;2.693997;1.966293;2.43449;2.354648;2.218209;2.429575;1.879443;2.580524;1.596444;2.937876;1.744064;2.371863;2.174702;2.372535;2.682513;1.249756;1.711485;2.180257;2.455722;2.419135;2.369173;2.331174;1.960817;2.146039;2.894615;2.776729;1.846935;2.005905;1.970909;1.662934;2.877429;2.122694;1.64804;1.360729;2.819774;1.798471;1.712595;2.55655;1.575449;2.375609;1.931289;2.825906;3.317537;1.864305;2.681086;2.378181;2.905194;1.752794;2.7158;2.200784;1.938592;1.994804;1.47848;2.358753;2.010386;2.002172;2.098653;3.028095;2.140313;1.967153;1.548994;2.684139;1.766744;1.718675;1.757095;1.581905;2.294504;2.390522;1.973564;2.775055;1.466524;2.573942;1.643046;1.267284;1.823596;2.879524;2.93375;1.751032;1.812761;1.57707;1.673272;1.607198;2.397039;2.113479;2.438931;2.736056;1.304968;2.040419;3.077694;2.780785;2.647615;1.243626;2.679554;2.091424;2.753676;2.617639;3.265114;1.57578;3.225477;2.378805;2.390761;3.246973;2.778394;2.337998;2.548443;2.883215;3.128279;1.87552;2.97302;2.674382;2.876524;2.294059;2.529594;2.807194;2.521538;2.584103;1.613247;1.719706;1.971824;2.78717;3.027529;2.346544;2.12394;3.205638;2.192767;2.75167;2.739405;1.655761;3.01969;1.834479;2.613618;2.274318;2.420523;2.483577;2.028594;2.706531;1.5329;2.551608;1.544234;2.012828;1.961455;2.138096;2.666081;1.179519;1.503587;2.217688;2.125319;2.558531;2.495732;2.430549;1.908585;2.351427;2.971048;2.805445;2.073517;1.9999;2.032394;1.59066;3.010391;1.835015;1.856996;1.251166;3.076884;1.774212;1.875152;2.588848;1.670963;2.438014;1.790683;2.484814;3.105103;1.564374;2.398992;2.158018;2.834962;1.621428;2.371099;2.274162;1.694533;2.185184;1.470167;2.371973;1.911431;2.178658;2.116905;3.026711;2.267899;1.982051;1.645227;2.733208;1.876826;1.449578;2.064075;1.462725;2.475441;2.409072;2.061873;2.699871;1.517714;2.614591;1.474552;1.02426;1.570603;2.527573;2.692283;1.673489;1.762789;1.442031;1.48265;1.6696;2.077388;2.309949;2.428317;2.751159;1.225536;2.219348;3.099875;2.780148;2.789191;1.255946;2.805738;2.135527;2.890774;2.283674;3.679188;1.457335;3.439231;2.397928;2.533703;3.307778;2.954056;2.868203;2.52761;2.196795;2.667119;0.9664325;2.612875;2.846513;2.81406;2.581166;2.660111;3.033021;2.580058;2.683313;2.160507;1.715274;1.940715;3.786;
1.809922;2.258858;2.043079;1.577825;2.033783;1.769498;2.420485;2.190302;2.806489;1.57515;2.708991;2.681681;1.76674;1.478584;2.87007;2.277437;1.664528;2.210347;1.59702;3.052997;3.065611;2.782978;2.998147;2.088696;2.340607;1.657553;1.630011;1.94772;3.02639;2.54236;2.04729;1.583358;1.974862;1.742162;1.343406;2.477921;2.120962;3.07801;2.219075;1.641166;2.199673;2.624317;2.585639;2.442363;1.24496;2.645682;2.064741;2.955088;1.976436;2.865715;1.69382;3.818227;2.430358;2.809917;3.596878;3.052234;2.526425;2.413079;2.615734;3.074927;1.195731;2.211375;2.416073;3.018367;2.520808;2.162201;2.637993;2.308577;2.404782;1.683709;1.646531;2.233634;3.282253;2.210968;2.017408;2.876965;2.955266;1.978581;2.868943;3.200268;1.911746;2.979804;1.952529;3.183304;2.98445;2.967322;2.705483;2.758144;2.258062;1.792662;3.363073;1.966181;2.602921;1.825393;2.617043;2.736139;1.657093;1.777412;1.904687;2.408933;2.25194;2.974303;1.860183;2.362016;2.157791;2.504879;2.362962;1.741381;1.961639;1.760784;1.305378;2.84194;1.432042;1.277203;1.428256;3.308433;1.718169;2.075368;2.716799;1.803356;1.994652;1.893945;2.15284;3.347162;1.038099;2.107588;2.234536;2.850369;1.868992;2.557891;2.166086;1.480584;2.219988;1.318537;2.600951;2.211308;2.800901;1.398212;2.642573;2.699734;1.817368;1.651693;2.956681;2.112567;1.787269;1.975037;1.464436;2.843739;2.715303;2.538383;2.7949;2.187381;2.020909;1.687869;1.44207;2.058719;2.835784;2.831341;2.095771;1.641396;2.027341;2.027006;1.436018;2.303113;2.296821;2.491555;2.415135;1.639864;2.175118;2.420258;2.500271;2.408692;1.266956;2.896143;2.147542;2.767533;2.128374;2.593607;1.558646;3.551939;2.131375;2.553484;3.41185;3.172449;2.212854;2.446394;2.378215;3.113491;1.048547;2.469401;2.46709;3.054261;2.511059;2.463319;2.744767;2.125167;2.609396;1.313186;1.768211;2.258854;3.442506;2.016375;2.021146;2.774148;2.927955;2.194478;2.964802;2.961726;1.999687;2.68723;1.789389;2.923819;2.670218;2.784265;2.489716;2.90288;2.111492;1.814274;3.193558;1.997169;2.384346;2.060458;2.671204;2.770433;1.650036;2.051468;1.99636;2.221632;2.450972;2.474256;1.990308;2.388055;2.289083;2.297601;2.367863;1.6623;1.89451;1.871387;1.602114;2.238388;1.471756;1.401334;1.416756;2.426519;1.582259;1.650029;2.781703;1.784343;1.986898;1.519358;2.804473;2.836756;1.746119;2.231235;2.241609;2.445687;
2.482733;1.441652;1.249426;1.707932;2.231357;2.697647;2.4259;1.552747;2.807908;2.148887;2.901304;1.972151;1.559507;2.639318;1.629195;1.706076;2.530965;1.978128;1.207926;1.434565;3.090799;1.830362;1.684587;2.208658;1.84139;2.301844;1.984089;2.66791;3.19684;1.283454;2.423994;2.969239;2.889102;1.729663;2.298611;1.966943;1.817246;2.578338;2.006304;2.981693;2.55152;2.842002;2.117519;2.509266;2.631672;1.934847;1.597026;2.998371;1.674181;1.576744;1.736517;1.00384;3.020386;3.102098;1.775945;2.805421;2.0062;2.820666;1.712699;1.324236;1.850084;3.230641;2.386811;1.898317;1.521635;1.847333;1.292258;1.423577;2.215535;2.664097;2.592915;1.982258;1.791369;1.945513;3.032673;2.208035;2.298406;1.68746;2.355716;2.39565;2.444877;2.787017;2.78079;1.641923;3.664925;2.510979;2.653394;2.569723;2.994112;2.51028;2.403823;2.775587;2.812707;1.124857;2.478438;3.270087;2.924848;2.449241;2.338024;2.324902;2.418445;2.762866;2.006366;1.99431;2.341307;3.511649;2.943629;2.031549;2.547509;2.631084;2.022703;2.780721;2.369902;1.658757;2.477316;1.389991;2.96717;2.982837;2.180348;2.422576;2.483005;2.466772;1.740941;2.824227;1.852246;2.635251;1.595637;2.098714;2.280964;1.666407;1.351201;1.951659;2.386408;2.572508;2.576431;1.627451;2.692945;2.121998;2.606474;2.260503;1.621427;2.685277;1.744187;1.677333;2.447473;2.081482;1.012777;1.538246;3.139942;1.690792;1.853663;1.977486;1.693921;2.115197;2.014844;2.636607;3.309828;1.206645;2.382296;2.660839;2.628408;2.019263;2.423207;2.167508;1.924562;2.392898;2.070855;3.064862;2.409486;2.872137;1.86289;2.773587;2.678921;1.922221;1.650985;2.980373;1.588624;1.713855;1.505237;1.074372;3.046123;2.85325;1.894033;2.562839;1.833321;2.669601;1.746137;1.237927;1.922189;3.228673;2.39823;1.714194;1.394243;1.993415;1.372308;1.582734;2.378079;2.467489;2.602297;2.131401;1.819181;1.936569;2.828227;2.392123;2.347147;1.816761;2.474584;2.452562;2.420769;2.788712;2.46801;1.719471;3.749232;2.280551;2.731879;2.425105;2.970149;2.331324;2.539984;2.650759;2.901381;1.124196;2.490098;3.02768;2.747272;2.617665;2.445357;2.527884;2.588074;2.563333;2.014642;2.144504;2.373199;3.500368;2.742338;2.209311;2.299492;2.553391;1.700495;2.624069;2.475091;1.811987;2.116878;1.593701;2.553147;2.325857;2.732106;2.435101;2.595471;2.433305;1.832685;3.189384;1.890909;2.289388;1.656931;1.75855;
2.372264;1.502916;2.601297;2.90809;1.869155;1.986676;1.695291;2.637909;2.425122;2.587827;2.44991;3.065639;3.205036;1.742133;3.438506;1.704183;2.23439;2.076217;2.3187;2.65376;1.143351;2.111623;1.823823;2.568269;2.293576;2.731184;1.923587;2.197639;2.219972;2.107967;2.797355;1.958961;1.894345;1.777312;1.981663;2.863393;1.761129;1.081179;1.601698;2.996966;1.4818;1.877754;2.265352;2.502661;2.891395;2.295823;2.900851;3.069195;1.323196;2.460288;2.286899;2.841296;2.129883;2.776003;2.486969;1.660166;1.798411;1.968817;2.355849;2.261371;2.687509;1.941706;2.646181;2.325764;1.390034;1.190929;2.702179;2.056347;1.68377;1.198181;1.331656;2.50007;2.329318;2.19564;2.774255;2.201037;3.002613;1.607289;1.712482;1.679252;2.652587;2.981708;2.03183;1.557549;1.372589;1.912056;1.319718;2.45648;2.092623;2.672908;2.379648;1.504659;1.916502;2.207402;2.844247;2.475997;1.201842;2.532676;2.838688;2.907407;2.26546;2.374486;1.793569;3.437455;2.126531;2.63927;2.891112;3.831948;2.92258;2.69013;3.018152;2.778973;1.334625;2.872892;2.755067;2.941659;2.717899;2.522982;2.541666;2.026541;2.016601;1.90531;1.591626;2.040984;3.121383;2.512902;1.77576;2.530248;2.169383;1.569108;2.751966;2.900257;1.836795;2.107838;1.913434;2.722984;2.709949;2.708391;2.781399;2.789473;3.009424;1.449031;3.637588;1.614513;2.3511;1.971038;2.166667;2.535406;0.9966404;2.202461;1.658741;2.378322;2.214059;2.582397;1.905184;2.086923;2.205098;1.859275;2.564305;2.291124;1.764068;1.920878;2.151576;2.867666;1.759391;1.177156;1.736443;3.104048;1.747346;2.057231;2.615229;2.266934;2.728038;1.965295;2.967391;2.953961;1.428603;2.424556;2.162131;2.723198;1.921245;2.884938;2.191543;1.512029;1.744949;1.912709;2.362583;2.132114;2.705836;1.702456;2.444223;2.667216;1.24162;1.196632;2.820053;2.069088;1.678748;1.369788;1.567489;2.558331;2.59032;2.328147;2.937142;1.96068;2.880269;1.32882;1.784829;1.579482;2.746072;2.7734;1.849699;1.478484;1.203748;2.090106;1.206368;2.23856;1.975341;2.543509;2.193988;1.399567;1.932893;1.951698;2.635839;2.828023;1.064721;2.541018;2.960392;2.922543;2.260619;2.61362;2.066713;3.505814;2.3771;2.78439;3.058282;3.512713;2.957584;2.179528;3.173941;2.989487;1.714706;2.335361;2.30838;2.846502;2.209572;2.887179;2.929708;2.696001;2.058299;1.492044;2.13559;2.359199;2.681609;2.727647;1.755736;3.118339;
1.751541;2.64761;2.820524;2.42392;2.021849;1.308215;2.071147;2.795728;2.739864;3.036196;1.834663;2.413025;2.158975;2.227077;2.605577;2.181506;1.407392;1.964457;2.560405;2.196704;2.040241;1.964335;2.702917;2.27788;2.476601;2.346253;2.821323;2.367351;2.424043;2.163648;2.875382;2.541532;2.282195;2.03625;1.696076;2.360058;1.875856;1.902861;1.958914;2.95499;1.876837;2.530018;1.951337;1.651417;3.451367;2.028466;2.256636;1.823171;1.62136;1.437759;3.035934;2.548933;2.460415;2.287275;2.869787;1.303357;1.45452;2.711283;1.896566;1.971198;1.524338;2.532852;2.77109;1.691738;2.995939;2.160787;2.919711;2.370672;2.225199;2.103691;1.47613;2.225895;2.779536;2.166221;1.167573;2.017429;2.484994;2.495916;1.537585;1.661867;1.776808;2.546702;1.617764;1.909195;1.482959;1.338103;2.098844;1.762903;1.933294;1.163848;2.59943;1.962906;2.373352;1.989398;1.531578;2.967124;1.196934;1.58972;2.198193;1.917989;2.522802;2.273514;2.704185;2.109849;1.923341;1.846239;1.154131;1.830648;1.951275;3.415403;2.693321;1.357134;1.731023;2.544494;3.081256;3.000126;1.523492;2.301007;1.488749;2.48601;2.069124;1.651893;1.414111;1.958739;2.542728;1.578825;1.633285;2.28571;1.82852;2.778375;2.606071;2.463401;2.018117;1.244298;2.060242;2.559583;2.718004;3.303226;1.788037;2.264122;2.034371;2.020368;2.79548;1.967137;1.788012;2.128217;2.673693;2.548192;1.935593;1.760032;2.444804;2.253576;2.375645;2.459329;2.64399;2.224395;2.157421;1.994349;2.895732;2.477914;2.446079;2.141029;1.530815;2.425586;1.894907;1.795978;1.960582;2.805529;1.933561;2.771355;1.910754;1.55634;3.329412;1.806192;2.452631;1.676631;2.081097;1.60643;3.169194;2.927652;2.34945;2.074108;2.623964;1.328522;1.421142;2.870446;1.759248;2.049318;1.365489;2.396215;2.796238;1.663514;3.066679;2.226225;2.64613;2.354318;2.340163;2.013234;1.469726;2.096826;2.777272;2.348481;1.217533;2.123174;2.446165;2.286321;1.704281;1.544688;2.158907;2.723134;1.671587;2.160626;1.472105;1.193593;1.880454;1.793078;1.836745;1.239306;2.556612;2.041544;2.174178;1.86905;1.550259;2.930363;1.241712;1.646563;1.961644;1.90394;2.645249;2.180009;2.695476;1.98478;1.92135;2.015495;1.203762;1.932406;1.784514;2.612283;3.027663;1.523569;2.109464;3.226185;3.087335;2.847287;1.482128;2.800473;1.472113;2.191783;2.058694;1.232423;1.506308;2.169976;2.791716;1.640943;1.547971;2.310838;
1.649349;1.901482;1.619638;1.912699;1.492505;1.973761;1.652493;2.134623;2.388986;2.824091;2.253674;1.729029;2.504399;1.617602;1.484679;2.083311;2.24235;2.778025;2.512892;2.063284;2.03753;1.596402;1.428339;1.116694;1.834293;1.630635;2.450217;2.660768;1.147954;1.615854;2.612317;2.41082;3.300176;2.096442;2.570955;1.75744;2.25997;2.530927;1.682228;1.561738;2.158777;3.022062;2.028262;1.559746;2.788756;2.073887;2.744645;2.639263;2.930168;2.461844;1.657476;2.694134;2.806555;2.943167;2.496912;2.192105;2.53937;1.836416;1.901391;2.600467;1.747383;1.489434;1.367638;2.516062;2.042222;2.357356;2.563175;2.507719;2.175372;2.621512;3.072155;2.646504;2.688519;3.169912;2.529574;3.152692;2.108503;2.866812;2.096718;1.753951;2.564533;2.041768;2.172557;1.418021;3.181427;1.725363;2.090544;2.042299;1.699069;3.184804;1.523863;2.063435;1.46568;1.774503;1.407509;2.472443;2.726164;3.058614;2.684923;2.848924;1.432847;1.540456;2.748617;1.967778;2.263619;1.867527;2.761643;2.58516;2.034693;3.184148;2.105101;2.646168;2.874759;2.557098;2.449506;1.834555;2.267181;2.552093;1.559113;1.642324;2.325943;2.323685;2.194487;1.561271;1.398733;1.409997;1.836115;1.550376;1.404195;1.756227;1.820205;2.006649;1.466327;1.673206;1.678803;2.358173;2.39966;2.594088;2.255753;1.718436;2.566634;1.76523;1.27648;2.2285;1.979874;2.443948;2.515325;2.036756;2.310795;1.406524;1.500475;1.361343;2.029524;1.755836;2.633496;2.797683;1.096171;1.382303;2.532235;2.445744;2.916306;1.986227;2.847387;1.804469;2.192003;2.168815;1.702298;1.644221;2.130438;2.837588;2.041993;1.5124;2.799962;2.220512;2.437631;2.689325;2.628716;2.167928;1.688427;2.640532;3.114109;2.630617;2.593153;2.422676;2.767938;1.98778;2.095728;2.796844;1.770426;1.260163;1.367468;2.498335;1.828304;2.25546;2.747815;2.673889;1.957032;2.359618;3.11409;2.6682;2.567347;2.817364;2.486665;3.175716;2.225187;3.086674;1.897281;1.750232;2.380809;1.788619;2.127952;1.460569;3.312412;1.575256;2.191995;2.18779;1.812492;3.208902;1.651692;2.238794;1.487556;1.523365;1.40806;2.455002;2.479176;2.942486;2.874972;3.025908;1.257437;1.341295;2.789309;1.986612;2.153563;1.59941;2.717919;2.606381;2.229357;3.247402;2.271688;3.09242;2.672393;2.461646;2.177138;1.394074;2.333905;2.541177;2.285892;2.118848;2.321505;2.283822;2.10634;1.800638;1.534507;1.35297;2.255633;1.655087;
2.374131;1.579415;1.877305;2.205921;1.291479;1.350621;2.090709;2.454027;2.512029;1.205905;2.471231;1.883643;2.745988;2.669325;2.8792;2.305753;1.720407;2.620175;2.000878;2.796983;3.203529;2.486399;2.43279;2.317031;2.699046;2.911996;2.360538;1.173799;1.587658;2.463191;1.929786;2.486326;2.958217;2.339253;1.919118;2.665698;3.518327;3.215468;2.357811;2.381133;2.5073;3.055589;3.315819;2.748443;2.264091;1.661838;2.388776;1.498797;2.103967;1.450593;2.154525;1.437808;2.090977;2.150956;1.216542;2.965304;2.14178;1.759849;1.676741;1.326539;1.553064;2.55268;2.064769;2.284098;2.475995;3.040638;1.112031;1.614806;2.452122;1.77658;2.234834;1.356083;3.108041;2.202704;1.974528;3.023591;2.221999;2.575882;2.898165;2.538058;2.336603;2.024632;1.601739;2.828682;2.283098;1.663412;2.031037;2.428733;2.750817;1.65428;1.729155;1.394233;2.130238;1.50712;1.401994;1.905525;2.075707;1.809896;1.265916;1.983679;2.200641;2.976169;2.203362;2.207225;2.122917;1.620763;3.615241;1.286458;1.745714;1.939463;1.964108;2.095895;2.377196;2.246706;1.485789;1.52112;1.644999;1.453165;1.48209;1.825614;3.074055;2.048192;1.027914;1.341614;2.544228;2.663477;2.623088;1.359514;2.586481;1.46448;2.10813;2.488168;1.469136;1.145577;2.121756;2.534283;2.371528;1.077046;2.412878;2.230819;2.787348;2.475924;2.956616;2.510415;1.982891;2.522725;2.380465;3.075325;3.59956;2.35161;2.434078;2.517537;2.33985;2.737861;1.982143;1.142153;1.463988;2.380823;2.084981;2.361665;3.234755;2.210752;2.065313;2.913683;3.785945;2.846106;2.442018;2.457831;2.409575;2.870591;3.150529;3.11046;2.290436;1.479346;2.516401;1.692687;2.447204;1.391343;2.471412;1.62529;2.412046;1.987391;1.265337;3.230376;1.870225;1.639617;1.304952;1.335397;1.405607;2.542254;2.198839;2.154361;2.700777;2.775457;1.216763;1.655784;2.486231;1.498402;2.299844;1.503862;3.095135;2.108362;1.94956;3.491613;2.217159;2.460959;3.007945;2.776806;2.668843;1.858015;1.868075;2.888422;2.430575;1.514018;2.077715;2.792822;2.528356;1.592446;1.438847;1.403806;1.957009;1.499743;1.512748;1.787896;2.281807;1.607295;1.377591;2.029661;2.233063;2.613473;2.267803;2.395523;2.112134;1.54058;3.581573;1.598079;1.473064;2.162524;1.691896;2.596679;2.620938;2.246256;1.815323;1.600206;1.808054;1.586138;1.58486;1.813358;3.385217;2.245015;1.181873;1.100634;2.182582;2.597034;3.353784;1.586775;
1.851106;1.567813;3.176416;1.964483;2.217352;2.080971;1.9418;1.430121;3.401876;2.89871;3.014426;2.707205;2.852567;1.67415;1.385884;2.790201;1.698785;2.187046;2.162817;2.706084;2.80889;2.188069;3.317969;2.451081;2.706326;2.084281;2.388378;2.517854;1.837371;1.658352;2.831861;2.373249;1.538497;2.024705;2.438207;2.257232;1.606471;0.9261943;2.038681;1.907354;1.895699;1.611807;2.230838;1.690622;1.841933;1.954886;1.431837;1.713991;2.15102;2.118531;2.906335;2.08993;1.416815;2.789483;1.668239;1.478563;2.258047;1.507919;2.432587;2.965266;2.333928;1.570887;2.028108;1.780355;1.159797;1.741976;1.885345;3.21401;2.856056;1.547295;1.774871;2.588032;3.452905;3.028548;2.141639;2.400292;1.483962;2.792461;2.105415;1.476776;1.356599;1.95212;3.299937;1.894891;1.599266;2.511567;1.941421;2.925217;2.852226;2.13289;2.163889;1.575445;2.449403;2.221819;3.040476;3.130224;2.31949;2.375495;2.143272;2.05206;2.83434;1.328726;1.650269;1.317374;2.695523;2.031768;2.905098;2.346455;2.374938;2.530319;2.114888;2.986622;2.375347;2.131146;2.958613;2.345447;2.569609;2.248609;2.808333;1.881525;1.771675;1.814455;1.580333;2.333992;1.618758;2.35198;2.125437;2.450038;1.59043;1.72544;3.395671;2.266757;2.349587;2.100636;1.903277;1.60921;3.0239;2.890005;3.27956;2.826177;2.901642;1.548035;1.487646;2.274952;1.605085;2.308004;1.942875;2.804425;2.765687;2.264818;3.020412;2.203153;2.744431;2.11655;2.3049;2.303158;1.886206;1.729866;2.933371;2.237489;1.315657;2.219905;2.635309;2.527828;1.717905;0.9566242;2.05525;2.169844;1.622952;1.621806;2.453184;1.743736;1.868463;1.842618;1.573346;1.353138;2.026689;2.253043;2.641593;2.12166;1.353101;2.901567;1.495014;1.324501;2.272686;1.547929;2.339877;2.757871;2.367415;1.650741;2.051577;1.739869;0.9647363;1.916823;2.09445;3.485737;2.958825;1.681291;1.881894;2.883344;3.095067;3.198017;2.262991;2.547419;1.525012;2.646477;2.211454;1.207193;1.25501;2.074742;3.060684;1.88888;1.499763;2.739214;1.845495;2.697985;2.883271;2.312597;1.986881;1.425288;2.484745;2.316506;3.070137;3.076386;2.040809;2.578977;2.366893;2.270284;2.93785;1.453027;1.754234;1.530298;2.381455;2.170995;3.047333;2.49207;2.723346;2.023884;2.340558;2.66886;2.440307;2.929853;2.329417;2.841834;2.480393;2.424071;2.681071;1.725437;1.696963;1.839404;1.997932;2.029381;1.805627;2.732439;1.824745;2.541634;
2.044698;3.416852;3.230767;2.810721;2.572323;2.826558;2.639156;1.531197;2.658051;2.512613;2.643604;1.991185;2.252398;2.557685;2.605644;2.209976;1.505569;1.883981;2.579841;3.469136;2.226448;2.046717;2.26466;2.856554;2.18947;2.840705;3.07004;1.580726;2.763014;1.362228;2.6048;2.195446;2.248262;1.972604;2.397564;2.174692;1.697094;3.026958;1.670466;1.985581;1.410105;2.407165;2.811799;1.499009;1.497028;1.345874;2.078902;2.959542;2.433746;1.931849;2.261197;1.720806;2.535634;2.126089;2.264511;1.774756;1.695981;2.062381;2.932223;1.717592;1.64284;1.289386;2.686257;1.624892;1.245545;2.824137;1.830315;2.670058;1.970699;2.703566;3.325484;1.71783;2.446937;2.356383;2.642833;1.526328;2.335602;2.034098;1.937453;2.031354;1.508761;2.538087;2.431985;2.929548;1.676627;2.605986;2.374229;2.053106;1.960679;3.236914;2.237743;1.510655;2.096411;0.9417577;2.691174;2.330445;1.769781;2.32865;1.588195;2.32422;1.666482;1.39951;1.857648;2.609004;2.10168;2.022743;1.746608;1.727473;1.528529;0.9109588;2.107938;2.886196;2.149634;2.242165;1.31981;1.498408;2.673622;2.030862;3.129164;1.265519;2.485893;2.859327;2.62179;2.314627;3.284575;1.814097;3.15949;2.318528;2.097147;3.560272;3.03049;2.893156;2.808918;3.091625;3.096776;1.785;2.720599;2.405046;2.454973;1.970325;2.260877;2.485747;2.852268;1.989068;1.450783;1.699611;2.168237;3.177483;2.071758;1.858428;2.471614;3.119006;2.24112;2.917423;2.88693;1.617511;2.767397;1.51934;2.852444;2.233656;2.242798;2.074133;2.273479;2.291982;1.87002;3.26934;1.988146;2.244357;1.41384;2.301157;2.677485;1.523711;1.490108;1.277658;2.252262;2.642102;2.284376;1.776766;1.928803;1.533614;2.326566;1.947889;2.42213;1.930514;1.673082;2.162367;2.815655;1.74493;1.613785;1.550617;2.93813;1.646812;1.358958;3.013992;1.816868;2.785238;2.12741;3.005992;3.694424;1.814038;2.392225;2.149457;2.435628;1.524216;2.331837;2.061465;2.105058;1.75841;1.515953;2.421397;2.191226;2.669814;1.483423;2.475325;2.475261;2.066622;1.883227;3.237653;2.064971;1.536819;2.063633;1.167328;2.94335;2.357507;1.904563;2.501985;1.575579;2.432416;1.810889;1.620013;2.135913;2.728152;2.051065;1.831934;1.578861;1.72575;1.814689;1.557123;2.367703;2.82381;2.294614;2.151305;1.598323;2.110069;2.414696;2.546429;2.444448;1.800669;2.479437;2.414966;2.674495;1.901049;2.981895;1.625093;2.932711;2.191755;
2.664939;2.838605;1.308284;2.011978;1.471104;1.227904;1.461072;2.114697;2.772372;2.114221;1.538977;1.174402;2.546638;2.752687;2.618008;1.852741;3.08656;1.565596;2.46613;1.49015;1.358789;1.265386;2.272986;3.014489;1.647064;1.783686;2.347448;2.362158;2.743552;2.222473;2.253149;2.430864;1.698967;2.637488;2.976041;2.960684;3.243993;1.870965;2.213428;2.776448;1.995051;2.304959;2.045234;1.520825;1.494881;2.597243;1.933383;2.130517;2.783265;2.361911;2.187631;1.721058;2.732626;2.131908;2.592199;2.477008;2.622958;2.852504;2.74085;2.427995;2.471065;1.53286;1.624098;1.920087;2.491673;2.013446;2.102034;2.351229;2.318198;1.998083;1.348582;3.350262;1.821813;1.796939;2.030089;1.129462;1.711084;2.855765;2.227311;2.81813;3.169093;2.753801;1.480423;0.9577994;2.675992;1.606936;2.720618;1.779459;2.398313;3.25879;1.783911;3.332897;2.360028;2.260356;2.2121;2.659433;2.717316;1.898937;2.455765;2.937383;2.18841;1.192697;2.088009;2.921129;2.237035;1.334175;1.626275;1.684398;2.221878;1.697657;1.481197;1.549016;2.05123;1.774614;1.557646;1.298447;1.595787;1.820598;2.924934;2.634844;2.528963;1.444857;2.85298;1.139593;1.627403;2.003928;1.234831;2.546608;2.718567;2.661951;1.247486;1.967399;1.525872;1.117697;1.37135;1.774899;2.87519;2.064648;1.63306;1.051896;2.711957;2.718668;2.653573;1.584019;3.316985;1.649044;2.808514;1.965392;1.673622;1.422958;2.602717;3.350847;1.741727;1.698472;2.25684;2.003427;2.775879;2.41259;2.2856;2.433918;1.73333;2.490703;2.873885;2.847857;3.307855;1.750033;2.124344;2.36124;2.062955;2.278094;2.134385;1.343064;1.599204;2.583409;1.97322;1.842496;3.024377;2.461261;2.513042;2.204002;3.186457;2.324802;2.978986;2.78349;2.762928;2.740847;2.644907;2.248889;2.40401;1.680889;1.668621;2.010072;2.454176;2.014202;2.016374;2.122817;2.328708;1.92082;1.162853;2.9729;1.824618;1.693645;2.190382;1.123142;1.728767;2.838981;2.289652;2.5841;3.333909;3.019505;1.75044;1.228244;3.075674;1.82151;2.934402;2.108268;2.461193;3.033332;1.771615;3.122622;2.295372;2.439366;2.265001;2.765266;2.679229;1.899794;2.363961;2.681544;2.199467;1.133166;1.856122;2.56962;2.241128;1.245481;1.770802;1.677384;2.428904;1.779751;1.643516;1.522913;2.185871;2.265334;1.891591;1.798145;1.655355;2.191106;2.629684;2.842217;1.982962;1.535165;2.845143;1.15696;1.269709;2.671371;1.631456;2.567949;
3.096547;2.930888;2.836499;1.703873;2.622555;2.27094;2.813086;2.563277;2.070418;1.396786;2.259131;3.787247;2.729522;1.972499;2.221762;2.44483;1.950697;2.801914;2.842451;1.952996;2.517435;1.613008;2.788429;2.611028;2.461792;2.239152;2.654418;2.784276;1.593271;2.961961;1.880603;2.3265;2.068078;2.634017;2.041303;1.496475;1.691086;1.961541;2.598531;2.839008;2.851532;1.743623;1.957145;2.083946;2.309051;2.664249;1.408467;2.361237;1.683434;1.713631;2.3542;1.369058;1.574332;1.320831;3.063203;1.264422;1.620511;2.628814;1.509925;2.307407;1.504013;3.042848;2.910223;1.742275;2.758755;2.421437;2.862054;1.328261;2.750961;2.01632;2.029276;2.198729;2.098278;2.143459;2.388756;3.113631;1.779673;2.509008;2.139037;1.436669;1.359362;2.746375;1.983303;1.996075;2.020632;1.312561;2.721098;2.635504;2.212899;2.616803;1.900996;2.758901;1.502209;1.357262;1.771617;2.820481;2.948433;2.015376;1.083002;1.775643;1.923297;1.547288;2.560556;2.657774;2.712549;2.256932;1.286524;1.814977;2.268946;2.554082;1.897843;1.478791;2.174122;2.299356;2.285845;1.889683;3.203065;1.519056;3.809457;1.722314;2.509217;3.183252;2.712776;2.11813;1.883682;3.113715;2.395184;1.525665;2.964204;2.545974;2.691856;1.964091;2.878476;2.456741;3.067656;2.706611;2.112717;1.453927;2.412363;3.431126;2.485118;2.111863;2.491017;2.735895;1.988315;2.823974;2.791098;1.964164;2.584209;1.83427;3.158595;2.42764;2.719734;2.218602;2.744408;2.508417;1.39235;3.062783;1.628173;2.126441;1.923633;2.31718;1.907475;1.687513;1.865143;2.075843;2.760153;2.970487;2.865258;1.856515;2.095448;1.774216;2.056006;2.76375;1.565692;2.666766;1.700345;1.776815;2.31284;1.359798;1.610356;1.47412;3.377216;1.150653;1.811939;2.662539;1.582296;2.123376;1.393479;3.192844;2.663806;1.569501;2.704235;2.237228;2.740117;1.481827;2.808017;2.032484;2.140727;2.316088;2.108304;2.155717;2.455958;2.835306;1.667191;2.712858;2.398297;1.67671;1.456738;2.96366;1.977212;1.954607;1.925695;1.38346;2.980229;2.472224;2.433872;2.529124;1.906874;2.558077;1.391693;1.458609;1.580574;2.600095;2.892183;1.848177;1.008551;1.953209;1.970992;1.56204;2.685592;2.787343;2.724066;2.270105;1.33602;1.604901;2.271391;2.588573;2.172394;1.657265;2.277802;2.501737;2.452708;1.890903;2.555087;1.532286;3.074571;1.851233;2.50845;3.529469;2.880021;2.360668;1.931715;3.119358;2.96056;1.183209;
2.146803;2.448809;2.320289;2.820526;2.323819;1.418515;1.664065;2.666241;3.269858;2.776295;2.085891;2.418994;2.641163;1.79537;1.976863;3.015695;1.382825;2.169767;1.510781;2.525864;2.799966;2.136543;1.969102;2.253719;2.729042;1.234701;2.624721;1.916917;2.891227;1.609312;2.346735;2.611873;1.623686;1.597727;2.296623;3.026426;3.004005;2.880143;1.973169;2.591737;2.299117;2.426162;2.585644;2.145955;2.183649;1.760893;1.794687;3.094996;1.508471;1.603087;1.50669;2.730217;1.793883;1.713643;2.313803;1.591397;2.154532;1.729178;2.002074;3.402146;1.639947;2.463704;2.305527;2.368057;1.408101;2.641435;1.785345;2.030406;2.000341;1.456534;2.258892;2.644093;2.79094;2.082023;2.787765;2.507365;1.651213;1.421975;2.408523;2.127215;1.154294;1.511198;1.064562;2.645062;2.770594;1.867985;2.221478;1.842901;2.938611;1.179878;1.162417;2.247539;3.522554;2.366859;2.004534;1.627609;1.77518;1.783467;1.791679;2.982198;2.989984;2.715094;2.280493;1.841305;2.272524;2.834809;2.587022;2.948613;1.354178;2.350208;2.531425;2.954871;1.876489;3.396382;1.679427;3.074541;2.384999;2.381678;2.63448;2.782721;2.248933;2.26677;2.180182;2.905112;1.422303;2.535179;2.609491;2.3234;2.028552;2.82125;2.059722;3.067438;2.231683;1.639141;1.492332;2.801066;3.363134;2.734159;2.050808;2.569688;2.616364;1.830347;2.349461;2.843447;1.192039;2.256214;1.425125;2.710518;2.887262;2.268608;1.991538;2.304674;2.743375;1.227935;2.620182;1.926542;2.592789;1.609792;2.462408;2.34004;1.568698;1.973694;2.074686;3.294387;2.936967;3.200902;1.70899;2.740322;2.426203;2.471224;2.577491;2.301456;2.181413;1.803308;2.053462;2.926037;1.323749;1.744226;1.442381;2.926143;1.857017;1.835799;2.235244;1.638426;2.18635;1.789134;2.023575;3.198137;1.457789;2.455082;2.277919;2.212156;1.506127;3.003726;1.676816;2.228333;1.997323;1.687311;2.171227;2.662955;2.750886;2.070991;2.773264;2.479723;1.69917;1.4495;2.556405;2.087135;1.121646;1.565275;1.079966;2.813067;2.911935;1.995617;2.349171;1.785849;2.79547;1.189424;1.175464;2.082304;3.254269;2.358311;1.979766;1.498879;1.885824;2.083261;1.683648;3.221086;2.987425;3.026968;2.193427;1.857123;2.237247;2.821963;2.573912;2.918745;1.355513;2.394466;2.371237;2.409548;1.755158;3.737977;1.431785;2.496916;2.410123;2.540611;2.993626;2.947266;2.87971;2.371034;2.537087;2.570499;1.58391;2.797708;2.763912;2.70435;
2.500803;2.172631;2.058699;1.262508;1.621081;1.888991;2.625456;2.401035;2.003601;2.247933;1.698843;2.642921;3.242099;2.197079;2.902818;3.205311;2.840854;3.035446;2.25843;2.556972;1.993551;1.955083;2.392335;1.720949;2.489501;1.556051;2.885172;1.817973;2.128894;1.783404;1.591127;2.943139;1.866803;2.433433;1.74752;1.449189;1.137437;2.086651;2.924895;2.513276;2.350386;2.710812;1.258641;1.177473;2.477519;1.509844;2.023908;2.035241;2.89106;2.897272;1.73536;2.875345;1.775306;2.393969;2.380355;2.653044;2.618913;1.834767;1.907064;2.984289;1.629112;0.9817714;1.999309;2.465155;2.49497;1.057743;1.547509;1.493999;2.059234;1.205548;2.111351;1.747535;1.336312;1.585109;1.218253;1.980855;1.726004;1.856871;2.512659;2.97639;2.652659;1.68694;2.667717;1.407801;1.414333;2.450684;2.010316;2.370343;3.030469;2.362855;2.060668;1.974407;1.399806;0.9574923;1.753013;1.500464;3.028842;3.019986;1.466352;1.41215;2.101714;2.118732;3.649263;1.710855;2.267835;1.535205;2.279139;1.960649;1.164705;1.045779;1.91015;3.249308;2.000345;1.695583;2.284312;1.794356;2.307286;2.442007;2.669843;2.299811;1.786573;2.681338;2.32804;2.838886;2.557662;1.695678;2.237949;2.552727;2.559939;2.238248;2.304585;1.197012;1.454504;2.342316;2.771781;2.387433;2.399933;2.740093;1.911644;2.932251;3.231355;2.189298;2.54512;2.725657;2.680407;2.900279;2.072661;2.529432;2.015036;2.004063;2.549578;1.602028;2.309582;1.751554;2.684095;1.70043;1.958187;1.717213;1.470075;3.246646;1.986464;2.491937;1.974866;1.399391;1.015096;2.526608;3.094778;2.588682;2.86922;3.245258;1.449398;1.399177;2.499842;1.480527;1.743578;1.705934;2.790541;2.802577;1.580219;2.847621;1.799034;2.456427;2.557397;2.565081;2.492113;2.078249;1.751999;2.641229;1.555843;1.042624;1.952646;2.806;2.590221;1.110427;1.788982;1.44714;1.878443;1.536197;2.14516;1.73692;1.660737;1.94794;1.44173;2.093255;1.822839;1.969147;2.29584;2.63595;2.514336;1.632025;2.50695;1.392463;1.422966;2.503193;2.06438;2.205062;2.799158;2.579738;1.940747;1.697942;1.332043;1.01799;1.709305;1.769316;3.133561;3.109451;1.701589;1.367161;1.919135;2.551175;3.693623;1.700851;2.685013;1.893265;2.581284;2.073479;1.243675;1.349294;1.861877;2.475395;1.540987;1.624122;2.939615;1.924723;2.275131;2.228849;2.677007;1.94399;1.74755;1.966007;2.754713;2.789936;2.607183;1.937454;2.462155;2.473214;
2.047805;2.215927;2.015557;1.632392;3.187703;1.99219;1.464456;2.149688;1.940769;2.416817;2.343188;2.405798;2.191653;1.625655;2.02165;1.661792;1.754939;1.870653;2.691219;2.446126;1.351869;1.759865;2.76995;3.081208;2.884309;1.823239;2.958861;1.484996;2.449286;2.096419;1.223922;1.568521;2.049656;3.158885;2.036699;1.747128;3.074925;2.487753;2.94641;2.871971;2.791302;2.539617;1.893431;2.016994;2.375834;2.762152;2.881885;2.529611;2.546474;1.823691;2.705183;2.618106;2.277795;1.580481;1.620769;2.967636;2.667657;2.081805;2.653942;2.399551;2.452464;2.020407;3.057533;2.095891;2.17562;2.268779;2.146272;3.153689;3.024679;3.212704;1.912709;1.801338;2.49243;1.689741;1.821351;1.697489;3.395497;1.57707;2.831466;2.494258;1.712005;3.308999;1.36923;2.007725;1.816867;1.647274;1.568879;3.089689;2.497499;2.657664;3.062794;2.751285;1.464389;1.338577;2.329478;1.749542;2.178751;2.021002;2.811722;3.083724;2.33716;3.440861;2.41158;2.843237;2.645283;2.747359;2.652353;1.426265;2.004369;2.347293;2.01717;1.494594;2.34197;2.085865;2.682259;1.542324;1.839291;1.730203;2.477346;1.878201;2.00045;1.622139;1.736878;1.812282;1.911562;1.294854;1.726733;1.878048;2.24778;2.107115;2.062121;1.612831;3.009397;1.848812;1.127792;2.247685;1.904812;2.331192;2.26893;2.472818;2.410048;1.546807;1.948203;1.898948;1.967528;1.816876;2.680106;2.397115;1.48314;1.510443;2.978791;2.845776;2.741159;1.900027;2.85167;1.552106;2.64547;1.822728;1.202605;1.357677;2.220905;3.081628;2.104914;1.684924;2.859242;2.306582;2.451826;2.842155;2.704998;2.502536;1.837662;2.035403;2.550562;2.637177;2.771096;2.707475;2.801002;1.788544;2.730581;2.544136;2.437125;1.307554;1.782287;2.625487;2.529989;2.183689;2.588326;2.451799;2.469785;1.842644;3.009879;2.008224;2.263273;2.156824;2.275878;2.978449;2.797842;3.188669;1.525593;1.767683;2.365969;1.708679;1.749727;1.705747;3.406645;1.607112;2.708683;2.858856;1.841797;3.205488;1.434945;1.870763;1.949024;1.492276;1.736054;2.727972;2.320863;2.836153;2.971391;2.807256;1.478543;1.194637;2.288829;1.669635;2.267506;1.915493;2.960958;2.910511;2.139216;3.415969;1.975073;2.801056;2.516048;2.771583;2.566858;1.434108;2.244265;2.42824;2.722647;1.683237;2.005891;2.123746;2.339689;1.206105;1.667474;1.438909;2.432048;1.617691;1.700346;1.535336;1.619505;1.945015;1.984629;1.852724;1.89599;2.032362;
2.646623;2.238545;2.616376;2.538766;1.22753;1.175349;3.107118;1.956228;2.741976;2.122052;2.551641;2.212665;2.073487;2.543789;2.274579;2.04643;2.397321;2.452652;2.588359;1.671762;1.745851;2.390384;1.877855;1.6743;1.486301;2.305566;2.548964;1.455983;1.194633;1.779284;2.223283;1.773759;1.852961;2.189492;1.961646;2.141019;2.014865;1.942475;1.918085;2.664933;3.059304;2.944002;2.432831;1.359941;2.928244;1.430096;1.653767;2.080758;1.990321;2.735462;2.709379;2.872859;1.913854;1.660167;1.613544;1.250683;1.58446;1.416392;3.165041;2.994226;1.709213;1.268242;2.335835;2.206719;3.234293;1.486431;2.525077;1.287163;2.111651;1.958442;1.717355;1.502544;2.696187;3.387834;1.799663;1.303216;2.754267;1.645697;2.998779;2.073701;2.618911;2.28455;1.784168;2.183122;2.290151;2.478517;2.87102;2.294971;1.837171;1.975549;2.422824;2.909293;1.712913;1.482782;1.792714;2.492041;2.387428;2.862868;2.772818;2.662887;2.564929;2.600822;3.252687;2.741182;3.192565;2.846105;2.619351;2.700741;2.817532;2.82138;2.312907;1.505825;2.613835;2.076768;2.246058;1.756788;2.618412;1.795893;2.245944;1.877451;1.583672;2.986762;2.080974;2.167032;2.159087;1.598796;1.299331;2.254032;2.889067;2.13046;2.695819;2.443406;1.32699;1.305521;2.951655;2.018911;2.682796;1.869016;2.33612;2.227816;2.163897;2.571583;2.361366;2.087877;2.306674;2.244765;2.591618;1.828813;1.733635;2.214141;1.704135;1.567854;1.663205;2.429195;2.81017;1.462246;1.340187;2.090097;2.382037;1.942343;2.088787;2.094118;1.946073;2.002916;2.125762;2.067794;1.840704;2.735274;3.044514;2.665508;2.141451;1.336112;3.02218;1.420771;1.77568;2.15406;1.955728;2.533284;2.634072;3.059021;1.900484;1.480944;1.504982;1.182183;1.813074;1.527304;3.366117;2.813294;1.796366;1.498679;2.381532;2.377393;3.349825;1.386085;2.58296;1.291718;2.338174;2.065981;1.678588;1.604576;2.589516;3.166538;1.574768;1.168652;2.740389;1.63495;3.03075;2.130903;2.414391;2.073888;1.786399;2.501759;2.390303;2.240098;2.769738;2.260967;2.000919;2.171327;2.630847;2.731673;1.800253;1.731847;1.832673;2.674078;2.486704;2.72372;2.833588;2.670116;2.814111;2.725382;3.199116;2.879304;3.076252;2.644365;2.3466;2.506025;2.68063;2.385833;2.015952;1.639598;1.961736;1.509379;2.395683;1.666298;2.065754;1.890696;2.65887;2.213098;1.567186;3.752423;2.106364;2.023717;1.957033;1.946405;1.592638;2.636539;
2.077418;2.473441;2.061305;2.574121;2.65408;2.389311;2.1104;2.827105;2.91159;2.234088;2.183168;2.420497;2.410132;2.441308;3.128492;2.302317;2.179501;2.057665;2.056766;1.705118;2.522146;1.946196;2.973006;1.734165;2.476574;2.326273;1.903907;2.746142;1.533637;2.143836;1.55329;1.757942;1.540679;2.500858;2.609516;2.85346;2.397061;2.447452;1.907661;1.36432;2.617131;1.29279;1.967837;1.958123;2.344079;2.396445;2.341152;3.068161;1.84865;2.35776;2.183322;2.069258;2.665757;1.807142;2.369995;2.310185;1.967549;1.140208;2.220954;2.057102;2.738444;1.487909;1.525602;1.720517;2.832698;1.568575;1.484146;1.775415;1.639943;1.755226;1.454527;2.020762;1.633557;1.959246;1.934174;2.398314;2.055542;1.396764;3.385613;1.146327;1.719461;2.346799;1.539873;2.354771;2.942338;2.914461;2.144527;1.671175;1.758816;1.480807;2.076981;1.51403;2.745108;2.777779;1.302191;1.851182;2.841584;2.481354;2.754383;1.730673;2.31745;1.420983;3.051746;2.094478;1.483202;1.09251;1.737967;2.974565;1.574879;1.393582;2.970511;1.814349;2.484849;2.480437;2.248212;1.671705;1.858928;2.486019;2.807395;2.214272;2.971739;1.741796;2.333559;2.05576;2.527141;2.802913;2.227362;1.308753;1.953743;2.076456;1.81379;2.693015;2.6582;2.360133;2.133112;3.092636;2.800257;2.236449;2.337061;2.609936;2.438662;2.411243;2.903482;2.268528;2.261221;1.827131;2.161402;1.728426;2.31024;2.010891;2.62977;1.470651;2.527584;2.221046;1.76179;2.899076;1.563508;2.371541;1.74739;1.557582;1.449108;2.117724;2.334377;2.922015;2.399622;2.445436;1.984031;1.598737;2.520253;1.30932;2.108344;2.083961;2.357433;2.394067;2.192492;3.085349;1.905541;2.125016;2.282908;2.041216;2.404012;1.889921;2.106791;2.050158;1.9945;1.077294;2.059613;2.212096;2.745213;1.634685;1.658725;1.470747;2.518402;1.313241;1.360438;1.930864;1.687858;1.744789;1.556713;2.24545;1.502067;1.955765;2.159134;2.621421;2.079831;1.337687;3.124811;1.112032;1.621647;2.173002;1.716225;2.439294;2.7259;3.007807;1.934712;1.404718;1.726109;1.388904;2.004473;1.647396;2.752981;2.976955;1.426035;1.59168;2.52777;2.157293;2.585962;1.884187;2.37536;1.411521;3.199946;2.323054;1.358764;1.089913;1.952474;3.222611;1.968924;1.705814;2.762882;1.614257;2.351412;2.471225;2.673388;2.285545;1.265706;2.627534;2.827651;2.473438;2.71213;2.343606;2.398741;2.336004;2.526162;2.726379;2.266133;1.431069;
2.422319;2.528042;1.619648;2.577238;1.931656;1.145316;1.828509;2.83535;2.309393;1.425684;1.904468;1.830127;2.055961;1.436415;2.543706;2.38637;2.800242;2.19415;1.568033;1.598643;2.254591;2.217532;2.374321;1.453163;2.345994;2.292519;2.315623;2.22809;2.696134;1.422677;3.222626;2.336462;2.202543;3.103224;3.222231;2.998551;2.47504;3.197457;3.0508;1.626397;2.823992;2.380213;2.986491;2.451663;3.071687;2.743201;2.816283;2.116248;1.944806;1.958796;2.123645;3.040202;2.882178;2.171511;2.435806;3.087826;1.94915;2.271509;2.092736;1.391959;2.819884;1.433713;2.789336;3.008798;2.657854;2.171365;2.2655;2.219218;2.094508;2.589151;1.914525;2.356119;1.483085;1.914397;2.953194;1.508476;2.123479;1.907408;2.571671;2.575941;2.888159;1.742625;2.404391;1.702778;2.195287;2.352332;1.928921;2.298837;1.683421;1.585525;2.209916;1.755637;1.319506;1.115963;2.800452;1.675085;1.595228;2.598787;1.851901;2.788858;2.036081;3.147232;3.344882;1.583055;2.701285;2.227908;2.808568;1.986415;3.092092;2.25149;2.140196;1.919347;1.898168;2.74635;2.243727;2.320844;2.056603;2.988739;2.740545;1.856134;1.565638;2.617634;1.538479;1.743348;2.050524;1.319472;2.955221;3.167182;2.581871;2.808956;1.608168;2.386925;1.986252;1.161044;1.951071;2.861922;2.304918;1.754249;1.74106;1.757158;2.115376;1.451703;2.535538;2.349946;2.504909;1.96914;1.539632;1.322566;2.12654;2.33404;2.60174;1.358297;2.513098;2.438416;2.282293;2.642995;2.677888;1.57355;3.311018;2.473037;2.293708;3.403586;3.263077;2.843094;2.513498;3.192414;3.145603;1.622192;2.761001;2.799111;2.843303;2.420884;3.12398;2.740828;2.754727;2.02825;1.632602;1.777995;2.144816;2.676425;2.690196;2.301866;2.614857;2.885225;2.026873;2.453694;2.115182;1.707392;2.822542;1.690628;2.873063;3.119844;2.800065;2.418666;2.293794;2.196171;2.133676;2.527345;1.942241;2.367838;1.456577;2.192638;2.788188;1.453176;2.228427;2.00681;2.514348;2.440294;2.545105;1.568489;2.421054;1.525564;2.032371;2.432503;2.039916;2.141294;1.776865;1.652603;2.212708;2.108516;1.321374;1.344479;2.884424;1.75891;1.705883;2.86941;1.877392;2.763712;2.074764;3.07997;3.381573;1.593343;2.665547;2.527984;2.647593;1.923434;2.755196;1.926055;2.344176;1.780535;1.378233;2.594707;2.308777;2.482172;1.648273;3.351306;2.81414;1.70489;1.237562;3.377827;1.985485;2.094983;2.145889;1.319885;3.027314;2.390691;
2.849345;1.805153;3.256615;2.205159;2.031183;2.320292;1.825356;2.426712;2.269276;2.630476;2.136341;3.003264;2.667944;1.809763;1.266987;2.336242;2.340888;1.649214;1.783448;1.579747;2.612111;2.205131;2.224494;2.025167;1.441159;2.364189;2.138813;1.350614;1.500714;3.129712;2.585471;1.974521;1.500537;2.080198;1.938964;1.628626;2.402714;2.930667;2.527592;1.946131;1.689873;2.027834;2.724736;1.973308;2.92066;1.330307;2.604847;1.949534;3.088696;2.388876;2.742997;1.821295;2.592437;2.094313;2.889317;2.670312;2.869999;2.863488;2.623105;2.697352;2.322451;1.642004;2.927915;3.158834;2.918956;2.215535;3.163767;2.473904;2.921951;2.504335;1.789456;1.539005;2.296551;3.190125;2.905057;2.560412;2.875157;2.796982;1.742841;2.318617;3.22042;1.626863;2.488237;1.867118;2.731395;2.316022;2.438454;1.731611;2.111474;2.339427;2.262621;3.065195;1.47935;2.718856;1.868026;2.449664;2.429627;1.627761;2.050063;1.9682;2.37963;3.155811;2.531613;1.458153;2.406291;2.236977;2.754011;2.258961;2.252349;2.146617;1.850407;1.363851;3.229866;1.705752;1.245532;1.458689;2.374309;1.515548;2.089381;2.466601;1.840868;3.177856;1.893905;3.064468;2.767979;1.707288;2.380501;2.46705;2.75633;1.486384;3.262123;2.014803;1.86899;2.212025;1.421104;2.131233;2.382282;2.456967;2.096879;3.151034;3.113438;1.491575;1.18803;2.425499;2.277741;1.424749;1.939705;1.601584;2.726235;2.434285;2.217077;2.202635;1.518258;2.737622;1.912391;1.862238;1.501095;3.097042;2.205144;1.694006;1.425542;1.756481;1.934656;1.424233;2.211762;2.828925;2.068999;1.662634;1.769764;1.898927;2.658739;2.046389;3.352571;1.071992;2.501084;2.032051;3.038079;2.114372;2.938114;1.82193;2.719036;2.30766;2.916073;2.874301;3.000396;3.269587;2.373507;3.128002;2.24306;1.618161;2.612401;2.810651;2.785364;1.98949;3.166519;2.352234;2.655146;2.315605;1.504468;1.37221;2.360896;3.017292;2.763789;2.427966;3.194342;2.426513;1.731532;2.417069;3.138457;1.495934;2.68217;1.989311;2.804314;2.442864;2.592186;1.998412;2.196847;2.697892;1.970243;3.523388;1.416806;2.688134;1.618656;2.14436;2.308884;1.434982;2.053076;1.859964;2.140313;2.943481;2.191275;1.296005;2.473182;2.092767;2.617411;2.135461;2.291321;1.898691;1.869342;1.468719;3.11559;1.404691;1.346004;1.546351;2.676148;1.672801;2.437373;2.877186;1.709694;2.714313;1.72546;2.696841;3.064842;1.347753;2.07688;2.178866;
2.68911;2.022189;2.265516;1.406217;1.26783;1.289468;1.985783;2.287255;1.631045;2.070216;2.183598;2.019911;1.820452;1.327833;1.705555;2.130322;3.125241;2.962634;2.507607;1.251513;3.426327;1.677885;1.345201;2.482056;1.666958;2.264496;2.862603;2.965139;1.683136;1.978394;2.042745;1.438903;2.095428;1.643318;2.950967;2.338214;1.693969;1.34119;2.125512;2.560839;3.113774;1.549037;2.903318;1.825219;2.078415;2.310931;1.642767;1.657523;2.289165;3.035531;1.919737;1.602554;2.550613;1.909169;2.298167;2.781581;2.351369;2.251487;1.690239;1.956257;2.361688;2.61955;3.553267;2.164341;3.109339;1.829018;1.980393;2.310102;1.721774;1.234291;1.648979;3.081181;2.237472;2.88888;3.328588;2.584383;2.59701;2.143689;3.107852;2.416278;3.293726;3.000071;2.711059;2.437016;3.098418;3.195277;2.035007;2.024035;2.284668;1.732423;2.5584;2.018146;2.611366;2.355275;2.947793;2.191917;1.997822;2.895489;1.744898;1.789555;2.119593;1.528643;1.206224;2.363738;2.780953;2.408076;3.012964;2.933794;1.220978;1.74098;2.864968;2.009281;2.452154;1.822749;2.560346;2.625876;1.993598;3.150127;2.086381;2.521194;2.196568;2.481575;2.26529;1.302583;1.706939;2.261039;2.3277;1.498763;2.609306;1.949709;2.498967;1.390572;1.31301;1.506904;2.130373;2.054116;1.617716;2.073394;2.320386;1.786885;2.069025;1.679908;1.590277;2.133165;2.815293;3.056949;2.469363;1.241532;3.214251;1.65912;1.529713;2.161944;1.711324;2.344219;2.631856;2.571367;1.714835;2.116087;1.877961;1.472763;1.987882;1.617538;3.20209;2.256371;1.714946;1.512403;2.200485;2.29677;3.058658;1.597195;3.055428;1.559216;2.312749;2.707095;1.473007;1.675515;2.00502;3.192206;1.891344;1.571311;2.34783;1.835779;2.47447;2.460771;2.382488;2.383797;1.518368;1.794823;2.257697;2.527924;3.378295;2.207057;2.929641;1.781628;2.290248;2.327086;1.7524;1.358988;1.673693;2.885468;2.152047;2.778918;3.346999;2.473161;2.725236;2.347452;2.912851;2.439018;2.903033;3.129601;2.791951;2.500887;2.887009;3.041572;2.154223;1.827517;2.275568;1.710895;2.227932;1.854775;2.501891;2.269145;2.78865;2.235523;1.85441;2.836449;2.036505;1.805151;2.153499;1.667685;1.227393;2.193331;2.685741;2.308375;3.030565;2.81638;1.421952;1.586966;2.386256;2.290048;2.076912;1.930478;2.277546;3.038771;2.06608;2.757439;1.871941;2.185784;2.35539;2.376433;2.262539;1.399107;1.726259;2.263212;1.929081;1.340502;
2.049405;2.020127;2.854568;1.938457;2.77797;2.296532;2.138804;2.641502;1.87237;2.45442;2.22496;2.009226;1.587852;2.345153;2.831111;2.542519;1.566117;1.32689;2.077147;1.958948;1.879496;1.586005;1.505975;1.559767;1.262456;1.283118;1.449064;1.77881;2.611078;2.020906;2.299553;2.59526;1.407078;3.317319;1.32963;1.108489;1.843812;1.834705;2.271863;2.891953;2.330528;1.491708;1.733016;1.356174;1.980271;1.45896;1.555319;3.199071;2.550986;1.560476;1.700741;2.760541;2.470331;3.227298;1.414382;2.797792;1.26898;2.490354;2.136564;1.390971;1.540836;2.050647;3.326938;1.793486;1.126254;2.520635;1.685038;2.420839;2.715993;2.296125;2.015865;1.84781;2.391097;2.858343;2.353592;2.936419;2.24214;2.547049;2.618031;2.631938;2.91744;1.615455;1.609857;1.474266;2.725113;2.027222;2.104888;2.298555;1.727334;1.74669;2.113555;2.953427;2.750993;2.096767;2.218491;2.832867;2.825658;3.025314;2.455991;1.450002;1.319751;2.323397;1.66731;2.414966;1.55255;2.159766;1.781353;2.045119;2.653243;1.294661;2.68733;2.066997;2.251786;1.871189;1.638066;1.634271;2.451761;3.085029;2.323094;3.002084;2.425727;1.513268;1.601108;2.764604;1.879251;2.402544;2.248735;2.536243;2.233714;1.708893;2.507793;1.854589;3.226724;2.526759;2.261767;2.709257;1.75759;2.223073;2.355318;1.981825;1.486442;2.39682;3.227551;2.860719;1.887594;1.419304;2.005983;1.741969;1.78914;1.473447;1.559082;1.625846;1.265606;1.311841;1.611729;1.809133;2.373705;2.101702;2.309114;2.573017;1.608732;3.004521;1.123926;1.052333;2.246062;2.048905;2.30951;2.978921;2.249281;1.375085;1.874598;1.343878;1.885427;1.506731;1.762796;3.56068;2.979175;1.726999;1.659195;2.505649;2.359266;3.07063;1.384665;2.891388;1.286822;2.612107;2.360618;1.497112;1.440975;2.151546;3.41516;1.669419;1.157598;2.205711;1.529817;2.404824;3.174322;2.475487;2.021393;1.896864;2.35552;2.68933;2.455212;3.027301;2.250059;2.627082;2.956424;2.824267;3.131022;1.746866;1.650115;1.340109;2.585844;1.851834;2.039459;2.360599;1.789646;1.843397;2.276648;3.107189;2.618058;2.198687;2.291683;2.676457;2.876146;2.679328;2.268625;1.437607;1.645493;2.503701;1.67323;2.471085;1.524611;2.013213;1.870633;2.121177;2.384622;1.661677;3.000653;1.825315;1.925261;2.304729;1.156513;1.593388;2.117547;2.920652;2.882042;3.141172;2.174084;1.813325;1.307291;2.814102;2.051483;2.678892;1.997944;3.095888;
1.492118;2.434196;1.528362;1.408227;2.129152;1.487904;2.863344;1.98057;2.322269;2.818239;1.262689;2.408911;1.945711;2.102232;2.097986;2.666547;1.711447;2.107313;2.125046;2.002169;2.434412;2.425322;3.086448;2.254459;3.414288;2.608253;2.035153;1.481187;2.943552;1.637998;1.924317;1.5214;1.440456;2.823458;2.649277;2.071326;2.51206;1.871721;2.729015;2.050529;1.446939;1.608861;2.892115;2.311692;1.948113;1.117201;2.115384;1.92364;1.395654;2.918335;2.371844;2.472928;2.251593;1.163643;2.203896;2.495778;2.489262;2.348471;1.782888;2.546991;2.877142;2.524124;2.243834;2.745933;1.63659;2.817689;2.012461;2.267765;2.514028;2.773543;2.927485;2.568874;2.308565;2.302356;1.27776;2.697791;2.502642;2.315294;2.726067;2.665995;2.071028;2.90403;2.205817;2.047714;1.636588;2.614611;3.674416;3.158251;2.724857;2.717854;3.082883;1.885946;3.043813;2.719264;2.140917;2.189293;1.794107;2.911819;2.439583;2.469185;2.248921;2.57668;2.824412;2.118171;3.16476;1.602186;2.424365;1.642495;2.667017;2.020317;1.766634;1.734092;1.680313;2.92032;2.326044;2.591398;1.811264;1.921757;2.395219;2.084053;2.373465;1.912559;2.642926;1.638447;2.138746;2.992618;1.644827;1.131968;1.48117;2.505828;1.651666;1.303456;2.19144;1.915318;2.818187;1.949409;2.262334;2.876209;1.117025;2.07666;1.853293;2.27977;2.142255;2.54256;1.740891;2.118013;2.083749;1.81525;2.784736;2.61513;3.104361;2.057314;3.26882;2.870201;2.028737;1.27733;3.120912;2.059804;1.947848;1.491493;1.488941;2.888783;2.811117;1.967654;2.606561;2.313723;2.699491;2.099207;1.464569;1.650366;2.678511;2.017937;1.882731;1.226448;2.17789;1.870004;1.466772;2.968884;2.336923;2.265585;2.593538;1.301985;2.237924;2.34571;2.4223;2.63331;1.784695;2.346236;2.822938;2.858948;2.278913;2.731427;1.722081;2.8756;2.30676;2.123083;2.666211;3.165213;2.90562;2.517524;2.316018;2.344718;1.143181;2.448804;2.220416;2.299115;2.807786;2.628126;2.195629;2.947724;2.326042;1.826378;1.980097;2.690251;3.72808;2.876849;2.638921;3.016324;3.09511;1.714397;2.988193;3.067073;2.175151;2.176908;1.883462;2.971549;2.762532;2.318839;2.393103;2.955329;2.802897;2.072118;3.173349;1.638198;2.237518;1.450376;2.073309;2.532192;1.468241;1.73024;1.578384;2.674304;2.205709;3.021419;1.823801;2.778221;2.133562;2.139332;2.408708;1.89506;2.098197;1.541591;1.785231;2.540087;2.246727;1.098719;
2.319598;2.02233;1.341731;1.958701;1.904787;1.592437;2.576763;2.268081;2.542076;2.388749;1.459018;1.828062;2.731338;2.344601;2.510967;1.177611;2.360407;1.995379;2.465362;2.398824;2.833762;1.211035;3.193653;1.863221;2.481201;2.687145;3.440891;2.963736;2.641776;2.306504;3.029519;1.283816;1.99613;2.787235;2.630704;2.616462;1.946539;3.193208;2.33876;2.283669;1.616661;1.880393;2.277557;3.108763;2.872878;1.527997;2.94351;2.864528;1.787067;2.506117;2.588047;1.988398;2.484745;1.379186;2.810928;2.616271;2.805598;2.20472;2.540309;3.041054;2.005332;3.08597;2.044632;2.243607;1.508039;2.683294;2.405038;1.634969;2.06057;2.256962;2.625578;2.722044;2.568714;1.942831;2.185551;2.058402;2.581086;2.346483;1.911133;2.069605;1.544499;1.39961;2.628898;2.00776;1.510779;1.126776;2.773207;1.509606;1.661728;2.297099;2.074636;2.716034;2.288417;2.148503;3.464693;1.222148;1.693989;2.662812;2.700637;2.006624;2.039514;2.666515;1.548939;2.184426;1.555902;2.704658;2.279493;2.348671;2.019728;1.974399;2.776189;1.728372;1.245924;2.719012;2.018235;2.013093;1.775454;1.01749;2.734674;2.736966;2.477589;2.413737;1.683161;2.956927;1.693169;1.422669;2.181432;2.792313;2.409976;2.090124;1.518083;1.840296;2.45056;1.749705;2.627687;2.287912;2.439639;2.678373;1.405081;1.618794;2.788997;2.63348;2.423378;1.184596;2.297469;2.031742;2.908691;2.281309;3.127969;1.617219;3.11113;2.010174;2.436738;2.758036;3.133153;2.678256;2.37254;2.315276;3.072234;1.198965;2.052344;2.918193;2.900598;2.428918;2.460174;3.388925;2.379622;2.177771;1.502882;2.1854;2.221837;2.783571;2.876765;1.744999;2.825823;2.761323;1.73209;2.568171;3.080617;1.8616;2.749824;1.767323;2.734667;2.677107;2.758104;2.289064;2.310555;2.833081;1.75051;3.08798;2.14881;2.174081;1.660872;2.741774;2.509805;1.462076;2.480297;2.307698;2.684422;2.460733;2.498774;2.227925;2.17296;1.880921;2.569328;2.658411;1.88097;2.023458;1.59533;1.396504;2.959189;1.852174;1.63161;1.390923;2.714077;1.44397;1.686792;2.357806;1.907783;2.519734;2.016503;2.150168;3.601075;1.17107;1.856692;2.72116;2.812727;1.8146;2.458175;2.721624;1.594983;1.951143;1.502424;3.039378;2.267656;2.159152;1.634309;2.902573;2.368351;1.794008;1.700344;2.581849;1.794889;1.798727;1.580724;1.454918;2.080661;2.908146;2.03051;2.196697;2.016508;2.283016;1.951395;1.598871;2.023838;2.812912;
1.90397;2.832998;2.32441;1.785259;2.641356;1.98992;1.777308;2.206937;1.763395;1.233165;1.447046;3.007438;1.660545;1.627042;2.616627;2.011339;2.426631;1.85051;2.216597;2.79676;1.534934;2.493152;2.540644;2.951312;2.182989;2.657635;2.180016;1.91602;2.391157;1.871333;2.864407;2.050683;2.128465;1.66676;2.63664;2.04075;1.906009;1.601019;2.109449;1.981214;1.824347;1.842561;1.309425;2.748616;2.970869;2.690588;2.2754;1.789365;2.301698;1.972663;1.038065;1.89116;2.945156;2.516383;1.614605;1.261902;1.981176;1.728703;1.696165;2.333528;2.526427;2.815376;2.044312;1.283188;1.597663;2.922077;2.326973;2.51888;1.753659;2.808674;2.443921;2.437403;2.355217;2.65155;1.800296;3.60398;2.375771;2.476378;2.93538;3.446244;2.327061;2.382632;2.276483;2.435481;1.618888;3.090055;2.813169;3.162992;2.738782;2.850842;2.83143;2.676;2.610875;1.987135;1.945984;2.202155;2.638111;2.307036;2.068527;1.955193;3.027129;2.216159;1.99686;3.080991;1.92434;2.561554;1.663942;2.601092;2.739346;3.014266;1.903891;2.557056;2.164606;1.938238;2.315284;1.800176;2.370868;1.80481;1.638883;2.193044;1.616553;1.85219;2.002797;2.172668;2.62089;2.872672;1.623213;2.164403;1.952976;2.631159;2.435674;1.734551;2.751915;2.05087;1.873935;2.013043;1.56027;1.358697;1.462886;3.096785;1.654369;1.478152;2.437185;1.953134;2.389697;1.72451;2.302923;2.682464;1.342038;2.698818;2.025347;3.009913;2.004902;2.727646;2.161734;1.949459;2.343125;1.892327;2.677206;2.450884;2.213332;1.522614;2.656291;1.936607;1.984584;1.619082;2.263653;1.795428;1.652663;2.013639;1.262402;2.782824;2.949685;2.458678;2.161493;1.763047;2.318313;1.857943;1.047412;1.783039;2.674673;2.678404;1.257236;1.324881;1.858297;1.800174;1.618321;2.337849;2.515948;2.795432;1.992602;1.520414;1.768583;2.762501;2.413922;2.408749;1.844509;2.671031;2.612158;2.126474;2.167659;2.812696;1.758808;3.623065;2.395607;2.253523;2.934466;3.28801;2.458413;2.28602;2.358587;2.318537;1.434032;3.096456;2.33656;3.136714;2.60264;2.89926;2.747873;2.681308;2.600335;1.97111;1.895437;2.510645;2.856368;2.166202;2.150664;1.858877;3.146255;2.094832;2.149093;2.730968;1.755072;2.720775;1.624164;2.617933;2.270795;2.31999;1.9649;2.254124;2.083806;1.621969;2.614526;1.444245;2.068799;2.40996;1.783;2.445422;1.298559;2.207411;1.763961;2.325071;2.67091;2.47351;1.56811;2.418154;
2.558202;1.454405;3.158765;1.781353;1.559473;2.713185;1.614143;2.094581;2.261241;2.697218;1.911799;2.07877;1.721107;1.168426;1.829799;1.743491;3.270859;2.282843;1.34455;1.361447;2.798149;2.878587;3.313158;1.954041;2.118267;1.559565;2.072006;2.208585;1.2265;1.215111;2.050039;2.851548;1.777905;1.17916;2.685653;2.098559;2.169853;2.245572;2.735274;2.291764;1.941894;2.341666;2.206538;2.482149;3.243567;1.951841;2.409574;1.755434;2.088676;2.6164;1.638354;1.823393;1.407878;2.371989;2.537695;2.32301;2.417579;2.518177;2.381664;2.556218;3.529329;2.067817;3.256387;2.668423;2.626281;2.762444;2.923496;3.202417;2.080795;2.173878;2.247981;1.535457;2.116332;1.79062;2.924653;2.283119;2.622514;2.002512;1.545687;2.992854;2.093865;1.786178;1.844596;1.38969;1.623637;2.727724;2.936313;2.952171;2.207111;2.578107;1.169295;1.452159;2.236851;1.38942;2.181258;1.561708;2.457364;2.217563;2.207187;3.530599;1.530558;2.153408;2.612659;2.516282;2.741811;1.596585;1.783437;2.284941;2.3272;1.149604;2.101082;1.964421;2.075342;1.513384;1.178379;2.15969;1.871806;1.507813;2.050097;1.809076;1.791167;1.804535;1.741257;1.97248;1.771298;2.14511;2.706615;2.799896;2.240751;1.543751;3.274918;1.718299;1.485977;2.353089;1.782482;2.282656;2.419218;2.287745;1.779464;2.383322;1.838157;1.142016;2.027257;1.74443;3.290919;2.366665;1.254176;1.62281;2.913062;2.791955;3.327334;1.901053;2.36168;1.520622;2.127114;2.493814;1.156721;1.387561;1.874949;2.871709;1.530086;1.272246;2.797281;1.983294;2.081661;1.943823;3.020895;2.549301;2.095984;1.979757;2.058151;2.762179;3.385679;1.942282;2.685462;1.799597;2.085659;2.722548;1.531498;2.069833;1.455566;2.316206;2.596957;2.313975;2.655368;2.484806;2.432026;2.758958;3.33595;2.363855;2.966788;2.812192;2.386911;2.864481;2.946017;3.046533;2.082664;1.868272;2.359182;1.720341;2.159505;1.510672;2.603495;2.513216;2.730126;2.039515;1.71634;3.182472;2.15136;1.842959;1.660822;1.596688;1.756229;2.657214;2.838348;2.906655;2.313959;2.589734;1.106907;1.605916;2.084408;1.633792;1.946213;1.672081;2.226935;2.309085;2.227766;3.366819;1.532979;1.849215;2.733325;2.751417;2.791961;1.332905;1.535526;2.515251;2.546612;1.384571;2.312929;2.443212;3.022332;1.404925;1.69361;1.824089;2.560797;1.883503;2.211086;1.75043;1.969088;1.413975;1.887736;1.766992;1.480055;2.728051;2.093584;2.594762;
1.697831;1.860105;2.576662;2.115339;2.125617;2.015148;2.685108;2.937294;1.565031;2.189641;2.575576;3.04698;2.022138;2.320962;1.921728;1.377063;1.821406;1.897262;2.903985;1.932754;2.010535;1.91242;2.986107;2.667451;1.394688;1.183848;2.526328;2.019987;2.293722;2.081283;1.637563;2.285805;3.048251;1.96163;2.608265;1.712593;2.352187;1.58398;1.40126;1.54341;2.949436;2.471864;2.008995;1.222017;1.477396;1.782619;1.367444;2.556095;2.445477;2.251187;2.036992;1.619964;1.422562;2.562847;2.421638;1.903715;1.543145;1.942808;2.860363;2.141123;2.237349;3.635448;2.000835;3.046115;2.518479;2.601792;2.901087;3.268313;2.215246;2.728114;2.94479;2.67542;1.66265;2.520771;2.915266;2.84079;2.693022;2.296752;2.538177;2.112777;2.131184;1.94639;2.073613;1.865916;2.458405;2.804642;2.447279;2.747999;2.569319;1.488977;2.492878;2.798745;2.36497;2.858238;2.17628;2.357663;2.907579;2.078525;2.334547;2.034278;2.087324;1.640365;2.862319;1.370401;2.320887;1.60038;2.505817;1.865462;1.146218;1.704137;2.125203;2.467404;2.477917;2.094584;1.561713;2.133076;1.412727;2.481116;2.202438;1.563493;2.082653;1.376851;2.187419;1.85739;1.544152;1.526423;1.847236;2.672318;1.585216;1.69093;2.45189;1.791411;2.242849;2.164561;2.568311;3.238799;1.907886;2.218027;2.396726;2.755806;2.012264;2.383782;2.316404;1.652643;2.04809;1.764695;3.125768;1.950228;2.092424;1.884298;2.913742;2.90581;1.301618;1.287533;2.482635;1.688309;2.185762;1.777284;1.907596;2.303139;2.828895;1.780503;2.533057;1.458235;2.452036;1.693608;1.27718;1.738806;3.349671;2.501676;1.902361;1.076143;1.455253;1.818596;1.662017;2.863641;2.621685;2.1413;2.279435;1.653095;1.456668;2.545693;2.308562;2.052212;1.38308;2.109535;2.877036;1.957792;2.091059;3.302386;2.096188;2.985335;2.318837;2.460077;2.867117;3.099912;2.380579;2.777271;2.715717;2.999291;1.948104;2.592878;2.679681;2.784041;2.66525;2.383996;2.705581;2.321699;2.295557;1.90376;2.359586;2.05341;2.574921;2.694762;2.289614;2.995243;2.341675;1.669566;2.407024;2.589229;2.214561;2.56466;2.27575;2.305044;2.692843;1.952649;2.303976;1.902468;2.247964;1.679209;2.636619;1.605505;2.656175;1.65847;2.287654;1.820069;1.279281;1.841072;2.591826;2.988143;2.940211;2.744127;1.848133;2.433243;1.758463;2.005213;2.57207;1.58412;2.133058;1.63124;1.646771;2.322235;1.543826;1.281637;1.817719;2.314122;
3.417021;2.698601;2.215044;2.459957;2.29438;2.507466;2.402396;2.767191;1.979583;1.909438;2.079107;2.319973;1.679862;1.358817;2.619523;1.847543;2.885433;2.097604;1.800614;2.842365;1.543664;1.670594;2.08557;1.419375;1.3259;2.556355;2.309513;3.149518;2.791027;2.472229;1.31221;1.843483;2.962703;1.868992;1.822175;1.958327;2.717459;2.734072;1.975629;2.589074;2.333939;2.197204;2.866101;3.002808;2.14049;1.480172;2.143202;2.415084;2.49122;1.862534;2.134826;2.45137;2.070005;1.418806;1.650233;1.4863;2.119986;1.788786;1.904978;1.540113;1.517842;1.538719;1.196546;1.886022;2.02259;2.165444;2.108557;2.653439;2.138149;1.401563;2.993611;1.42225;1.461133;2.456488;1.595491;2.950408;2.210987;2.113798;1.8486;1.770626;2.097713;1.204041;1.98027;1.597468;2.792931;2.212221;1.7813;1.321409;2.382197;2.881632;2.574358;1.92009;2.78233;1.374723;2.285758;2.374422;1.771183;1.475305;1.734515;3.198482;1.991652;1.557591;2.746711;1.520316;2.918451;2.323831;2.891806;2.592009;1.484955;2.014901;2.845508;2.547333;3.664808;2.571641;2.44376;2.482477;2.070567;2.472914;2.317621;1.267577;1.742256;2.777967;2.366098;1.981974;2.509393;2.04938;2.061007;2.568969;3.668522;2.722252;2.416407;2.803543;2.467807;2.601143;2.641432;2.714936;2.040848;2.056889;1.808152;1.869114;1.780019;1.390228;2.615853;2.001482;2.607229;1.813121;1.709208;2.7958;1.392453;1.550302;2.230758;1.399457;1.435829;2.594763;2.180897;2.898395;2.965477;2.513927;1.53468;1.745227;3.18568;1.909132;1.99682;2.214269;2.889904;2.851956;2.215079;2.514093;2.379526;2.380641;2.525558;2.435585;2.226336;1.527736;2.149524;2.591716;2.252275;1.59273;2.037256;2.381794;1.905303;1.300475;1.807198;1.46646;2.277341;1.817991;1.790011;1.517144;1.568087;1.561537;1.425042;1.870781;2.133751;2.347797;2.296179;2.803279;2.24864;1.528912;3.098542;1.422255;1.441976;2.552741;1.401185;2.613989;2.19273;2.168575;1.872189;2.009317;1.810881;1.083265;1.886677;1.436218;2.555833;2.114;1.800957;1.356893;2.477556;2.816458;2.517959;1.894557;2.851175;1.396285;2.59882;2.357423;1.876204;1.626577;1.905823;3.362957;2.099166;1.691679;2.848371;1.520407;2.892472;2.417613;2.628933;2.278147;1.468099;2.176973;3.100693;2.868731;3.312449;2.247044;2.338655;2.51176;2.148127;2.348597;2.191091;1.544238;2.186746;3.104391;2.538618;2.014263;2.45018;3.002132;2.614024;2.116205;
1.762969;3.313301;2.683828;1.350939;1.175105;2.696769;2.362545;3.222956;1.754085;2.165814;2.007446;2.569592;2.318899;1.58907;1.310904;2.068996;3.57236;1.930903;1.624289;2.860347;1.979671;2.596674;2.046849;2.468941;2.474807;1.380135;2.392913;2.603463;2.778471;2.830253;2.150721;2.075119;2.068051;2.31379;2.738386;1.853492;1.198717;1.850254;2.236192;2.284587;2.22023;2.516986;2.542776;2.718167;2.287483;3.680549;2.48819;2.462837;3.136811;2.632514;2.998197;2.079184;3.278575;1.886803;1.571804;1.9749;1.894459;2.001135;1.740331;2.385848;1.392349;2.581131;2.39481;1.343102;3.130911;1.960015;2.231404;1.939193;1.346794;1.848193;2.37635;2.778798;2.770701;2.329228;3.43779;1.464183;1.509666;2.921114;1.761611;2.348361;2.169292;2.597593;2.865707;2.421738;3.578152;2.217401;2.160616;2.479501;2.689309;2.206037;1.809702;1.927574;2.467806;1.760381;1.400954;1.676063;2.065274;2.294163;1.439102;1.315503;1.436775;2.4125;1.404122;1.741145;1.605367;1.787743;2.130991;1.844638;1.466669;1.922925;2.14689;2.210143;2.774269;2.300086;1.563298;2.4842;1.903513;1.338656;2.00547;1.273548;2.627254;2.333035;2.387761;1.915127;1.320094;1.808096;1.62113;1.586541;1.752435;3.464055;2.894319;1.628538;1.323522;2.537165;2.853136;3.355792;2.113547;2.561431;2.104218;2.564818;2.253378;1.331416;1.149444;1.914771;3.266865;1.716973;1.483957;2.843625;1.925421;2.686083;1.99771;2.209928;2.564386;1.402364;2.246358;2.818035;2.716463;2.842554;2.10807;2.109983;2.019181;2.489095;2.936782;2.116629;1.321118;1.665916;2.632851;2.379387;2.588429;3.004744;2.646467;2.654814;2.192766;3.215577;2.194361;2.31231;2.8277;2.43548;2.812276;2.042131;3.184948;1.909027;1.480083;1.759885;1.953134;2.077301;1.620033;2.665955;1.434292;2.636343;2.416268;1.370945;3.193303;2.240873;2.44573;2.17576;1.361611;1.576024;2.748891;2.884896;3.178219;2.673889;3.457071;1.492275;1.537285;2.613863;1.569523;2.201059;2.010328;2.528737;2.721405;2.348554;3.303269;2.139889;2.022124;2.23989;2.757192;2.173397;1.617648;2.180839;2.523477;1.806663;1.417397;1.707691;2.116111;2.597886;1.61225;1.512137;1.452027;2.100684;1.693646;1.825896;1.919003;2.091741;2.146247;1.877105;1.574624;1.674391;2.611386;2.631716;2.172345;2.110272;1.341138;2.682046;1.154707;1.370689;2.027727;1.609901;2.24878;2.163829;2.367711;1.765936;1.540128;1.51035;1.40718;1.918859;
1.345263;2.045818;1.811386;2.213956;2.825488;2.644814;1.789764;1.867838;1.490596;1.146031;1.709468;1.465021;3.40014;2.487288;1.126389;1.386929;2.907706;2.453866;3.260696;1.845857;2.52002;1.200151;2.634309;1.874956;1.606018;1.176929;1.786237;2.831564;2.195845;1.452078;2.184632;1.81551;2.377409;2.734413;2.133068;1.874461;2.05908;2.228317;2.322004;2.842692;3.153283;2.007676;2.279673;2.697535;2.872653;2.900935;2.163909;1.654165;1.95043;2.429921;2.581378;2.539556;2.892387;1.987767;2.519609;2.76006;3.422605;2.344474;2.740055;2.866082;2.884928;2.918012;2.812796;2.619231;1.712467;1.728778;2.129577;1.550075;2.31173;1.708681;2.340599;2.042482;2.356082;1.886519;1.467947;2.842846;1.98626;1.941175;1.61095;1.271338;1.563933;2.434203;2.833004;2.895565;2.495244;2.160228;1.462145;1.317054;3.015069;1.38718;1.916733;1.93425;3.016735;2.560205;1.832872;3.021123;1.746135;2.64781;1.874632;2.205831;2.782145;1.596555;1.517439;2.787425;2.302739;1.330209;2.014093;3.086046;3.036957;1.72123;1.723214;1.74228;2.32074;1.681456;1.938806;1.821364;1.825138;1.426595;1.643876;2.124492;2.118856;2.081615;2.532933;2.866148;2.487359;1.771693;3.164374;1.32218;1.108823;2.150445;1.726382;2.361973;2.884335;2.786716;1.783769;1.870266;1.462483;1.161509;1.693612;1.426492;3.050779;2.493057;1.325261;1.197294;2.857092;2.807623;2.929173;2.033455;2.458255;1.397116;2.448321;2.027681;1.727418;1.140305;1.750888;3.023727;2.140576;1.505692;2.441353;1.678479;2.114711;2.943952;2.078041;2.020517;2.141699;2.367121;2.2277;2.861663;3.168094;2.106041;2.290505;2.659604;2.574364;2.917057;2.333115;1.450345;1.926951;2.867735;2.314293;2.762775;2.817722;2.243168;2.234924;2.950312;3.623388;2.371003;2.725799;2.854354;2.878696;2.983654;2.941751;2.564641;1.646869;1.806405;2.17321;1.663621;2.456504;1.830726;2.454226;1.94618;2.207435;1.930919;1.472243;2.603662;1.790843;1.942081;1.63652;1.16766;1.701706;2.76242;2.6624;3.107439;2.484104;2.426358;1.404497;1.355481;3.016534;1.364708;1.900555;1.92461;3.0115;2.621611;1.938206;2.962565;1.680629;2.743707;1.916326;2.340887;2.941878;1.714515;1.610067;2.674816;2.156649;1.367554;2.019887;2.836735;2.556362;1.670515;1.340522;1.942614;2.492939;1.871408;1.447569;2.287825;1.894252;1.932496;1.86987;1.763192;2.14471;1.777874;2.366738;2.514729;2.64745;1.777207;3.435043;1.300695;
1.567474;1.362529;2.439128;2.284557;2.55585;1.015622;2.37564;2.911353;2.675407;2.493795;2.647151;1.515354;3.481088;1.970375;2.330812;2.595742;3.970375;1.998224;2.511468;2.677706;2.782063;1.740771;2.142095;2.550814;2.417089;2.281444;2.541105;2.693965;2.256297;2.339103;2.458529;1.645974;1.978132;2.550168;2.008176;1.922652;2.881102;2.606705;2.280292;2.821985;2.562091;1.764461;2.482062;1.69274;2.794861;2.879515;2.789128;1.850863;2.689913;2.1028;1.535638;2.955305;1.843897;2.247704;2.077438;2.309888;2.45064;1.272207;1.572918;1.959918;2.681392;2.170212;2.58868;1.538611;2.368953;1.519687;2.14371;2.15765;1.916238;1.723642;1.730484;1.982054;2.553686;1.946013;1.14743;1.343471;2.924464;1.196493;1.439338;2.090533;2.324013;1.964099;1.889235;2.593713;3.171567;1.5902;1.993336;2.312088;2.348562;1.897073;2.618585;2.420805;1.512495;1.92277;2.32433;2.391634;2.085799;2.080078;1.365936;2.634232;2.905751;1.644263;1.802578;2.962214;1.933271;1.862752;1.71474;1.448078;2.676317;2.930175;2.387584;2.002928;2.050891;2.196744;1.442518;1.26808;1.870233;2.880002;2.93205;1.669256;1.616599;1.709524;1.637262;1.623666;2.838237;2.181452;2.335577;2.31337;1.546419;1.345866;2.422073;2.057294;2.468999;1.069065;2.562299;2.758887;2.764575;2.657987;2.356643;1.398816;3.093587;1.783222;2.230615;2.446158;3.917622;2.137681;2.200764;2.816246;3.011884;1.516981;2.078206;2.369697;2.403316;2.344631;2.506751;2.958281;2.294213;2.282486;2.180759;1.876868;2.023635;2.516354;1.992962;1.737408;2.816334;2.655765;2.477175;2.76423;2.738304;1.900213;2.209319;1.597318;2.480428;2.621892;2.699846;1.774837;2.706953;2.279449;1.301459;3.102309;2.035514;1.99984;2.03252;2.193343;2.494623;1.344969;1.553197;2.018101;2.824931;2.279507;2.402628;1.812212;2.377714;1.509937;2.15779;1.965457;1.848626;1.754172;1.800805;1.857626;2.637636;2.035807;0.9941318;1.131042;2.697923;1.142197;1.452115;2.063467;2.299608;2.154661;1.654786;2.737211;3.402004;1.374949;1.846287;2.11499;2.305525;1.935074;2.641455;2.486174;1.620868;2.026278;2.148182;2.73062;2.093909;2.06939;1.377134;2.422144;2.822488;1.674587;1.874304;2.810294;2.006295;1.951327;1.526068;1.227954;2.244637;2.425097;2.002202;2.089113;2.079558;2.322422;1.521764;1.034296;1.710388;2.856253;2.527337;1.657533;1.67259;1.950578;1.802398;1.398209;2.894723;2.469938;2.243587;2.354697;
1.595564;2.182157;1.867174;3.187663;2.184732;2.815058;2.686075;1.730344;2.013477;2.644435;2.353421;1.415518;3.261921;2.412045;2.237459;2.286027;1.460138;2.096796;2.273636;2.515146;1.822693;3.238299;2.882144;1.570455;1.01145;2.402719;2.118257;1.827731;1.671661;1.616596;2.912421;2.676416;1.886668;2.023792;1.621349;2.878652;2.189888;1.598423;1.415137;3.468836;2.159839;1.984419;1.283287;1.915489;2.100068;1.804948;2.516128;2.96066;2.103729;1.651786;1.571933;2.132035;2.452742;2.389591;3.034749;1.099501;2.170932;2.028035;2.861329;2.60418;3.029487;1.919129;2.946162;2.326047;2.453677;2.802808;3.019116;3.342623;2.839346;2.74809;2.267091;1.885344;2.32733;3.042739;2.547685;2.082057;3.449985;2.747586;3.10198;2.542898;1.678282;1.391507;2.218273;3.384148;2.547292;2.466236;2.796321;2.646434;1.366482;2.10034;3.013889;1.807957;2.400033;1.857422;2.763815;2.303462;2.080299;1.726717;2.090969;2.853154;2.19477;3.068051;1.521246;2.796263;1.434673;2.256495;2.098069;1.479107;2.073083;2.160937;2.380337;2.98231;2.165855;1.276961;2.419019;2.281609;2.26988;2.125708;2.526;1.915093;1.52509;1.560667;2.98582;1.700357;1.395158;1.614454;2.359588;1.452764;1.791203;2.146609;1.615249;3.071981;2.068434;2.987683;2.640128;1.548239;2.537973;2.309202;2.399436;1.43121;3.029459;2.32568;2.08626;2.221079;1.63404;2.318341;2.1894;2.357947;1.884744;2.916112;3.063961;1.702493;1.087851;2.629861;2.097909;1.58684;1.816397;1.551868;2.781124;2.392592;2.071099;2.032477;1.404705;2.715535;2.039178;1.711352;1.375983;3.060651;2.659198;1.737753;1.326602;1.892272;1.869457;1.712688;2.334548;2.772463;2.311206;1.867385;1.529341;1.967048;2.51432;2.067485;3.222422;1.136859;2.282151;2.257351;2.875464;2.283277;3.02552;1.94173;2.800681;2.227777;2.568981;2.760394;2.786642;3.073753;2.654743;3.074536;2.225873;1.578267;2.795862;2.798362;2.587981;2.048388;2.968321;2.798046;2.886593;2.545904;1.785342;1.550835;2.227057;3.082867;2.598001;2.293058;2.987349;2.691913;1.420935;2.391914;3.007388;1.542367;2.397475;1.879645;2.623956;2.205801;2.187596;1.693533;1.899218;2.60522;2.03374;3.412446;1.488261;2.419451;1.808079;2.046836;2.135644;1.451025;2.012313;2.016062;2.299726;2.794199;2.623013;1.569291;1.967092;1.762913;1.989982;2.305787;1.899445;2.037081;1.493554;1.861353;2.553872;1.429934;1.300595;1.607274;3.232717;1.515829;
1.1685;1.926052;2.74123;2.642206;2.54631;2.567827;2.53514;2.429996;2.533723;3.310995;2.56726;2.811337;2.225103;2.627249;2.363093;2.33031;2.456412;1.71356;2.054055;2.377963;2.277762;1.633566;1.573257;2.65487;1.640676;2.30724;2.102113;1.842722;2.537375;1.717341;2.185592;1.789;1.62129;1.23722;2.472461;2.737868;3.247891;2.87774;2.881222;1.272402;1.685009;3.260515;2.064081;2.396824;1.758278;2.541988;2.50454;2.15463;3.093501;2.345319;2.931234;2.848859;3.064873;2.335521;1.595535;1.902132;2.700526;2.235943;1.263066;2.148479;2.315125;1.979333;1.580319;1.381389;1.566442;2.644459;1.814985;2.064018;1.79289;1.791823;1.750563;1.6827;1.93486;1.669105;2.246758;2.83216;2.125729;2.291215;1.158303;2.509791;1.254691;1.14623;2.497242;1.798469;3.058567;1.906599;2.140557;1.627768;1.555521;1.365252;1.228877;2.295551;1.296713;3.049442;2.712608;1.355382;1.799322;2.129599;2.432754;2.788794;2.147857;2.862641;1.522073;2.197179;2.608137;1.853509;1.568972;2.295829;2.920405;1.62458;1.446136;2.580472;2.109106;2.967947;2.811668;2.797663;2.718619;1.591717;2.165301;2.310467;2.804039;3.128952;1.781333;2.117471;2.017807;1.816272;2.584927;2.125541;1.037988;1.719327;2.631837;2.316653;2.227615;2.549343;2.468459;2.434909;2.645575;3.127631;2.488125;2.984061;2.448951;2.719196;2.762246;2.330436;2.690953;1.906838;2.256889;2.397618;2.31339;1.826531;1.540829;2.572805;1.661461;2.308712;1.919347;1.726278;2.638774;1.820306;2.323671;2.043234;1.494017;1.080958;2.277378;2.351469;2.868049;2.810341;2.86552;1.274083;1.813245;3.1012;1.916475;2.507667;1.947163;2.591734;2.976982;2.186499;3.419517;2.588377;3.087515;2.852389;3.105439;2.522305;1.61696;1.861992;2.784401;2.253997;1.071709;1.867297;2.3144;2.050123;1.601874;1.59196;1.318794;2.384805;1.709782;1.86446;1.607181;1.722026;1.773706;1.735718;1.990653;1.611153;2.12099;2.782273;2.23795;2.337567;1.396448;2.526781;1.341724;1.29719;2.719815;1.938266;3.232804;2.058167;2.204745;1.640967;1.547276;1.432201;1.06033;2.005162;1.29625;3.138072;2.740702;1.564694;1.533038;1.897938;2.310826;2.556672;1.944211;2.775097;1.543565;2.258497;2.672718;1.793056;1.464264;2.251513;3.284052;2.120846;1.734966;2.572334;2.058998;2.948011;3.048132;2.567683;2.49731;1.412532;2.226798;2.821596;2.728667;3.211085;2.415669;2.509034;2.467152;2.469819;2.640288;1.793261;
2.263285;2.757216;2.330501;2.331024;2.493487;1.964805;2.53473;1.709721;1.455948;2.416328;3.080123;2.402321;2.263498;2.494865;2.64213;1.915579;2.126157;2.667544;1.990393;2.446079;2.102451;2.410856;3.082251;3.068444;2.593927;2.378047;2.61042;1.778294;2.751295;1.95349;2.994474;1.633332;1.921009;2.523797;1.841838;2.156024;1.438271;2.205673;2.279532;3.282598;1.979564;2.468077;1.976549;1.819858;2.624133;1.365045;2.184573;1.330851;1.547013;2.15494;1.638243;1.29211;1.385097;2.373631;1.657952;1.564183;2.016604;1.839039;2.925458;2.044612;2.281693;2.654072;1.260391;2.477963;1.97873;2.558338;1.57519;2.288396;2.087824;1.286845;2.162508;1.763818;2.186592;2.383471;2.323848;1.579838;2.783952;2.529733;1.57013;1.514304;2.535658;1.742476;1.809334;1.722911;1.675563;2.389997;2.868231;2.672889;2.854123;1.798228;2.553875;1.660489;1.217154;1.862918;3.681837;2.379395;1.531058;1.593822;2.032197;2.154019;1.022973;2.308736;2.229898;3.211004;2.636752;1.79144;1.781553;2.048477;2.741006;2.12743;1.531075;2.12034;2.456131;2.141185;2.094709;2.518205;1.693547;2.833762;2.489267;2.2975;2.734872;3.321831;2.867274;2.668653;2.284695;2.400553;1.197539;2.701032;2.389307;2.766278;2.300958;2.232344;2.4513;1.82009;2.734597;1.597628;1.677283;2.258757;3.111469;2.693867;2.160968;2.782514;2.648626;1.951677;2.236482;2.667829;1.708669;2.434933;1.860077;2.543945;3.030002;2.953541;2.719371;2.364789;2.506454;1.739153;2.805357;2.025852;2.843054;1.747308;2.054724;2.550183;1.819418;2.014163;1.405237;2.077533;2.531182;3.194747;2.244483;2.328462;1.996096;2.030362;2.498428;1.602266;2.236355;1.398733;1.624305;2.169859;1.377293;1.242039;1.159319;2.529335;1.657024;1.521876;2.108322;1.840973;2.806436;2.024004;2.300641;2.682179;1.114157;2.550074;1.947244;2.648669;1.644643;2.251659;2.099093;1.182234;2.452276;1.649314;2.395093;2.220928;2.43606;1.8468;2.667776;2.767144;1.556378;1.534102;2.447543;1.809138;1.624519;1.762078;1.469388;2.535641;2.916389;2.554973;2.887912;1.777432;2.536701;1.641918;1.231735;1.886394;3.4297;2.449998;1.50414;1.665288;2.11196;2.118376;1.031536;2.167773;2.524859;3.055762;2.8663;1.650907;1.88089;2.351142;2.298557;2.515663;1.235716;2.618127;2.513286;2.361389;2.163885;2.603314;1.501334;2.689727;2.102814;2.895338;3.172356;3.296747;3.170894;2.324946;2.297199;2.60952;1.155807;2.699952;
2.671253;1.958415;2.847168;2.155108;1.337766;1.596058;3.001451;1.998393;1.65251;1.298211;1.737733;1.825387;1.532818;2.870825;2.985358;2.839462;1.920153;1.365411;1.560652;2.467566;2.516286;3.194344;1.592137;2.054275;2.435753;2.78721;2.690426;2.514678;1.535264;3.225234;2.487371;3.316543;3.227483;3.524148;2.629701;2.642807;2.182861;2.716643;1.01739;2.123941;2.183728;2.170712;1.952816;2.199651;2.686703;2.939546;2.027872;1.391129;1.810107;2.295606;3.232796;2.638057;1.794275;2.485109;3.098536;1.502169;2.509;2.359725;1.555823;2.374302;1.528432;3.052443;2.399803;2.718667;2.321302;2.721298;2.767473;1.993508;2.927067;1.707014;2.714796;1.379071;2.264608;2.264228;1.512549;1.735496;1.872672;2.837972;3.153914;2.947988;1.575435;2.11012;1.817065;2.22897;2.726898;2.466403;2.543776;1.466633;1.837442;3.071451;1.986138;1.154873;1.396995;2.607075;1.831967;2.393654;2.664489;2.062879;2.459539;2.075601;1.96175;2.994557;0.9742581;1.762166;1.731803;2.016905;1.400566;2.150388;2.130351;2.007959;1.793989;1.533204;2.385179;2.256541;2.477461;1.701314;2.245562;2.378495;1.704945;1.003803;2.962482;1.713943;1.429678;1.834068;1.055204;3.127356;2.123009;2.461393;2.862063;2.00012;2.500412;1.808415;1.351645;1.597309;3.43539;2.292535;1.751177;1.743133;1.617113;1.979856;1.764414;2.567326;2.876942;2.942639;2.086848;1.490671;1.671716;2.003887;2.40403;3.11919;1.326392;2.094105;2.719707;2.966225;2.655675;2.645738;1.487386;3.164698;2.293723;3.386383;3.363001;3.569703;2.345213;2.302325;2.17889;2.689553;1.236578;2.397295;2.244572;2.735784;1.875404;2.422724;2.970947;2.609418;1.894727;1.41865;1.899357;2.4945;3.460805;2.177557;1.662722;2.434347;2.671247;1.49046;2.710626;2.562424;1.576096;2.482151;1.496171;3.137865;2.210936;2.740985;2.476075;2.75592;2.469218;1.799128;2.926895;1.639368;3.007;1.614796;2.35077;2.730095;1.428304;1.898628;2.1718;2.63002;2.988928;2.945747;1.691671;2.296319;1.983673;1.910724;2.568874;2.361223;2.108613;1.468971;2.033187;3.183577;1.98981;1.230917;1.366211;2.686923;1.6675;2.415436;2.830213;2.093637;2.178747;1.877732;1.961669;2.905631;1.15235;2.028183;1.807318;2.458466;1.319463;2.332171;2.862046;1.693283;2.336739;1.71357;2.65693;2.076585;2.27264;1.741998;2.074402;2.4463;1.412737;1.166325;2.816841;1.767753;1.722904;1.89738;1.127667;2.492011;2.314158;2.459323;
2.767571;2.478029;1.593756;2.454453;1.369196;2.710902;1.443407;2.375242;2.060952;1.040774;1.683293;1.271281;2.806856;2.372313;2.730812;2.115139;2.46708;2.208284;2.507919;2.652715;1.90614;2.35091;1.620745;2.193645;2.799166;1.811952;1.863408;1.552035;2.923762;1.431875;2.067404;2.147428;1.76712;2.23464;1.785432;2.447753;3.254;1.230707;1.847096;2.430683;2.786296;1.889286;2.199313;1.866008;1.747646;2.275954;2.390471;2.707668;2.387756;2.563092;2.042582;2.453108;2.773253;1.305712;1.363947;2.633458;1.538849;1.614747;1.720388;1.509521;2.786777;1.908447;1.831896;2.486752;2.114565;2.541199;1.649202;0.9921706;1.42177;3.283843;1.989233;1.885244;1.296695;1.353736;1.853284;1.143472;2.967546;2.243528;2.47455;2.446564;1.710329;2.04694;2.693288;2.5011;2.55839;1.761751;2.17573;2.791879;2.7857;2.475534;3.674887;1.869975;3.435944;2.20274;2.870621;2.522139;3.150526;2.272338;2.319826;2.462296;2.91023;1.327407;1.938316;2.753771;2.905334;2.458134;2.346499;2.607639;2.527318;2.528003;2.336792;2.05838;2.535232;3.029272;2.852942;1.785247;2.834861;2.357893;1.48606;2.116167;2.57553;1.4871;2.163949;2.019986;2.776546;2.273432;2.419682;2.253858;2.708233;2.307618;1.652115;2.457333;1.688775;2.863242;1.490563;2.419038;2.084414;1.018337;1.754829;1.432332;2.965382;2.171785;2.476483;1.93411;2.595507;2.061674;2.484879;2.450125;1.951901;2.271216;1.235672;1.909338;2.954817;1.673226;1.545667;1.859867;2.982849;1.662806;2.286322;2.255902;1.711327;2.094387;1.838826;2.397;3.719124;1.34789;1.921176;2.450848;2.791203;1.881985;2.26123;2.013453;1.848366;2.096842;2.162216;2.503323;2.534201;2.40209;2.023552;2.233202;2.841582;1.239077;1.033771;2.321688;1.671218;1.481584;1.41708;1.613823;2.756018;2.173484;2.119446;2.612505;2.029057;2.513601;1.706593;1.047289;1.689892;3.359641;2.183561;2.004913;1.278943;1.34048;1.850251;1.112105;2.992386;2.075299;2.327409;2.260777;1.811587;2.012778;2.679363;2.413069;2.569471;1.605198;1.861911;2.58658;2.932044;2.300839;3.147819;1.985994;3.402834;2.486825;3.229124;2.648885;3.047109;2.246379;2.388661;2.548842;3.289883;1.375745;2.131161;2.898136;2.879852;2.440399;2.343938;2.561034;2.697619;1.827236;1.596256;1.520026;2.253018;3.473872;2.514697;2.049005;3.058511;2.369499;1.463018;2.150364;2.51651;1.892714;2.816557;1.937053;2.450287;2.34314;2.451526;1.781683;
3.326511;2.088445;2.884235;1.867348;2.801666;2.183075;1.113121;1.367118;2.143992;3.278878;1.462801;1.697568;2.639815;1.967019;2.614403;2.744468;2.56093;2.26036;1.551031;2.435536;2.435766;2.826023;3.476155;2.362282;2.468861;2.113705;2.073883;2.842513;1.544616;1.653026;1.764192;2.476801;2.344641;2.787055;2.809267;2.734817;2.620941;2.364617;2.705649;2.437194;2.374246;2.83047;1.771358;2.618351;2.365252;2.886741;2.163604;1.637752;2.071984;1.753648;2.204733;1.539568;2.257626;1.995679;2.767426;2.016034;1.719521;3.22564;1.959424;2.078898;2.419388;1.904093;1.710823;3.212104;2.940977;2.93154;2.969382;2.99421;1.566085;1.498566;2.141915;1.5697;2.220047;2.080005;2.230048;2.723562;2.172339;3.428438;2.313581;2.532447;2.44634;2.327632;2.136863;1.647262;1.719174;2.861181;2.388021;1.565875;2.15899;2.389496;2.457363;1.407659;1.229136;2.038076;2.284465;1.705091;1.816729;2.161881;1.907588;1.966253;1.911175;1.666755;1.420403;2.004076;2.306212;2.785405;1.728819;1.31873;2.714175;1.69937;1.569411;2.099955;1.682061;2.282446;2.412706;2.044571;1.546658;1.954073;1.763975;0.9937363;1.63845;2.077957;3.042776;2.749249;1.913866;1.905202;2.939429;3.056759;3.174876;2.083546;2.519403;1.646839;2.754185;2.261263;1.249129;1.581314;2.509559;3.258378;1.73981;1.527192;2.87671;2.077938;2.647819;2.934637;2.632295;2.016716;1.65078;2.225998;2.616707;3.259466;3.379696;2.066051;2.266985;2.268642;1.992292;2.991114;1.552299;1.942204;1.733392;2.298162;2.178715;2.833748;2.436711;2.40289;2.537123;2.382839;2.831051;2.702119;2.723562;2.872434;2.070617;2.350675;2.557459;2.956324;2.126047;1.801437;2.115638;1.582891;2.328965;1.355408;2.411404;2.302661;2.616612;1.758946;1.534477;3.480272;1.884948;2.38642;2.286601;1.991307;1.711389;3.009644;2.708253;2.953447;2.698106;2.753454;1.510247;1.471716;2.206153;1.859481;2.516346;1.967811;2.44093;2.665803;2.236094;3.293552;2.310555;2.73613;2.449664;2.108691;2.364613;1.536632;1.863747;3.166848;2.200698;1.406654;1.914511;2.44509;2.255207;1.663204;1.134985;2.12896;2.285145;1.558995;1.634937;2.181284;1.691508;1.772748;1.849382;1.639035;1.472822;2.330545;2.608147;2.655975;1.915131;1.27942;3.32176;1.740303;1.320618;2.381905;2.083411;2.451954;2.478084;1.898993;1.695489;2.43647;1.450895;1.21833;1.411724;2.036995;3.346585;2.328098;1.527857;1.361517;2.497246;2.629358;
2.004119;1.382164;1.813971;2.78151;3.080459;3.100586;2.822786;3.388167;1.506672;1.727023;2.763344;1.99707;2.625956;2.091233;2.675156;2.687558;1.995767;3.254951;1.864813;2.975834;2.435199;2.823847;2.260795;1.697623;1.694009;2.173671;1.815132;1.480152;1.847086;2.477778;2.922069;1.423707;1.444488;1.342125;2.212148;1.997734;1.522438;1.950987;1.636219;1.66525;1.550624;2.204354;1.836344;2.509463;2.938392;2.341661;2.332625;1.583498;2.477517;1.523829;0.948132;2.300672;1.528696;2.90237;2.371949;2.237473;1.464351;1.436394;1.717165;0.9944895;1.652688;1.751034;3.455562;2.174303;1.793055;1.393699;2.767652;2.913924;3.651494;2.243634;3.003132;2.144867;2.656808;2.506699;1.655017;1.540615;2.385087;3.285876;1.754769;1.716734;2.801509;2.153129;2.259176;3.111215;2.738562;2.588425;1.738531;2.193794;2.276967;2.281606;2.690166;2.279333;2.025105;2.331961;2.629777;2.576715;2.162864;1.144725;1.544331;2.855252;2.059577;2.701766;2.543556;2.425606;2.087983;3.123261;3.262825;2.555095;3.005095;2.389487;2.436112;2.975927;2.404872;3.056921;1.423447;1.875021;1.903573;2.259086;2.461608;1.828233;2.258229;1.445594;2.864408;1.984274;1.394263;3.158936;1.983579;1.922325;1.869213;1.61634;1.55491;2.609594;2.943086;3.068556;2.585899;3.049004;1.338433;1.517644;2.835208;1.947484;2.504278;2.070496;2.719125;2.891249;2.3015;3.278284;1.836918;2.63051;2.686599;2.889974;2.822052;1.95958;1.590107;2.091609;2.036553;1.550081;1.790958;2.43963;2.736582;1.697221;1.374894;1.639092;1.961275;1.861826;1.453283;1.933208;1.387899;1.441334;1.417146;2.043237;1.92166;2.467668;2.832404;2.328368;2.271986;1.74479;2.838427;1.603805;0.9454549;2.001786;1.722914;2.974107;2.830488;2.541816;1.38309;1.430192;1.957704;1.120391;1.687487;1.736496;3.329389;2.383721;1.543268;1.658522;2.587124;2.822187;3.517015;2.168824;2.628968;1.869169;2.529567;2.328505;1.683919;1.586493;2.402188;3.289164;1.757009;1.775966;2.948512;2.205415;2.351519;2.835492;2.972413;2.595184;2.10442;2.471804;2.221597;2.267716;2.921628;2.468002;2.064548;2.315083;2.520952;2.804355;1.888388;1.38583;1.410886;2.764441;1.959812;2.619508;2.201224;2.131897;1.976161;2.924004;3.30433;2.614191;2.550349;3.141713;2.436459;2.943277;2.582948;3.123901;2.346042;1.748883;2.275374;1.82469;2.181404;2.015181;2.418774;1.477547;2.432181;2.609105;1.49598;2.702044;1.989762;2.057028;
1.852342;1.997963;2.120414;1.837918;1.579615;1.19781;2.652151;1.917406;2.110244;2.755287;1.407697;2.72957;1.978384;2.703921;3.27149;1.153296;2.479454;2.281493;2.731252;1.731451;2.305588;1.885935;1.88671;2.116405;2.072707;2.843494;2.048437;2.540395;1.199946;2.68991;3.126646;1.607502;1.431804;2.906167;1.707011;1.53501;1.697769;1.063538;2.190437;2.900448;2.516825;2.810617;1.354571;2.456228;1.686282;1.438273;1.795957;3.071337;2.48307;2.029968;1.128691;1.834971;1.587995;0.9634979;2.696537;2.918818;2.904495;1.874343;1.657799;1.67808;2.252251;2.452168;2.82249;1.619744;2.553674;2.945984;2.008375;2.592095;3.307441;1.520857;3.174884;2.558639;2.954614;3.392689;2.454886;2.849009;2.674618;3.162349;2.815266;1.071338;2.700427;2.603876;2.582626;2.325367;2.309641;2.491394;2.635078;2.551736;2.05261;2.140491;1.961224;2.96721;2.095453;2.198873;3.05942;2.546036;1.854872;2.921549;2.394033;1.764302;2.306329;1.510828;2.23226;3.048068;3.022041;2.45278;1.970276;2.47587;1.861766;3.289327;1.712124;2.553925;1.617873;2.430732;1.852643;1.428492;1.391774;1.354791;2.921506;3.00676;2.675776;1.404065;2.42007;1.581318;2.279946;2.482586;2.09847;2.326003;1.437212;2.075243;2.162832;1.630067;1.35274;1.262738;2.678404;1.988547;1.94194;2.639263;1.393989;2.645493;1.765696;2.788635;3.529445;1.327801;2.722164;2.46174;2.673304;2.144753;2.258465;2.182172;2.209575;2.179626;1.924999;2.772539;2.057247;2.199077;1.574992;2.881992;2.873524;1.602565;1.121336;2.987238;1.745293;1.365429;1.482495;1.101202;2.227521;3.085421;2.416212;2.690399;1.347604;2.410918;1.514678;1.47703;2.005675;3.421953;2.787452;2.233088;1.097524;2.260698;1.552473;1.183819;3.102274;3.0588;2.790361;1.846913;1.673289;1.45713;2.538789;2.465702;2.592582;1.634618;2.170696;3.020079;2.199065;2.332318;3.065907;1.469142;3.228693;2.624577;2.829205;3.252007;2.454347;2.875097;2.24808;3.022674;3.087729;1.300049;3.062567;2.826695;2.701334;2.76115;2.321121;2.708639;3.045157;2.576436;1.943272;2.105084;1.985969;2.671615;2.372266;2.212268;2.819818;2.56529;1.530676;2.996207;2.601768;1.551777;2.105507;1.459753;2.277382;3.120676;2.895062;2.334153;1.969738;2.501291;1.722319;2.83115;1.810632;2.581275;1.673547;2.390472;1.977708;1.466409;1.427734;1.913976;2.550598;2.586487;2.218123;1.900655;2.403062;1.975012;2.225879;2.58644;1.810899;2.102179;
1.625553;2.400554;1.900462;2.348569;2.445428;1.849757;3.485421;1.864567;1.616957;1.98804;1.403118;1.657898;2.613413;3.083325;2.693645;2.787999;3.165802;1.57244;1.610029;2.450513;1.431389;2.19076;1.892264;2.554629;2.875564;2.132506;3.337167;2.381652;2.286883;2.738856;2.743199;2.686257;1.85983;1.720731;2.023192;2.211366;1.206042;2.421005;3.044599;2.114863;1.62864;1.569305;2.140618;2.229665;1.561589;2.014455;2.095246;1.660425;1.834452;1.728992;1.982104;1.369535;2.100628;2.09195;2.014055;1.868522;1.223123;3.040657;1.457366;1.627135;1.632941;1.693232;2.673421;2.213843;2.119941;1.642895;2.000699;1.651707;1.641517;2.269094;2.165975;3.403125;1.88123;1.507107;1.389035;2.662525;2.640526;3.373275;1.677832;2.736848;1.720441;2.72606;2.367158;1.378563;1.166391;2.104929;2.897696;1.976359;1.573007;2.665837;1.888865;2.658119;2.33863;2.862159;2.329579;1.828088;2.245902;2.275965;2.332372;3.104858;2.08603;2.752285;2.745052;2.054687;2.563445;2.05111;1.850777;1.622993;2.548373;2.627613;2.629763;2.418248;2.309249;2.375067;2.941156;2.708526;2.499713;2.371222;2.419337;2.499371;2.328857;3.136772;2.513695;2.504289;1.629253;1.905623;1.877669;1.791078;1.610896;2.581174;2.19749;2.10484;2.450554;1.907047;2.967703;2.113654;1.782384;2.045499;1.36627;1.738281;2.702068;3.18326;2.41714;2.927952;3.242606;1.614934;1.457422;2.305533;1.551441;2.253215;2.14061;3.133496;2.854578;2.570771;3.141625;2.481034;2.681837;2.504954;2.553928;2.595932;1.818084;1.915812;2.351948;1.930098;1.183442;2.464777;2.554147;2.251748;1.759709;1.661443;2.106534;2.277161;1.589164;2.075949;1.833896;1.679585;1.892745;1.791338;1.842336;1.245391;2.235742;2.105685;2.271053;2.264053;1.209317;3.585166;1.354883;1.773623;1.946831;1.504793;2.562122;2.17501;2.194992;1.777118;2.184284;1.385206;1.530193;2.199935;1.768278;3.4053;2.089463;1.576553;1.395188;2.819204;2.660683;3.504164;1.502434;2.81027;1.887841;2.734953;2.074844;1.231007;1.192793;2.012016;3.222502;2.243594;1.617551;3.147742;1.811128;2.844518;2.712593;2.615482;2.226674;1.79293;2.324186;2.433567;2.531351;2.735168;1.961166;2.67605;2.295727;2.056499;2.806765;2.132076;1.858804;1.746113;2.365659;2.474483;2.080134;2.332723;2.473833;2.197918;2.289949;2.794384;2.946558;2.395701;2.671966;2.507411;3.071645;3.013115;2.166654;1.860148;1.798588;1.904528;1.64284;1.805866;
2.407966;1.735796;1.37248;1.914123;2.453939;2.057581;1.635788;1.360598;1.868721;1.543701;0.9410331;2.086079;2.807296;2.156945;2.352854;1.157601;1.37845;2.521189;1.957077;2.599519;1.103581;2.301091;2.440019;2.651795;2.424644;3.45887;1.626015;3.142599;2.453633;2.104732;3.31877;2.792582;2.814335;2.670711;2.828934;2.971304;1.575809;2.805951;2.058939;2.25894;1.961611;2.375438;2.590866;2.781542;2.324156;1.522427;1.842859;2.117902;3.143739;2.093983;1.773691;2.297903;2.937877;2.282234;2.379252;2.742296;1.655614;2.710085;1.447818;3.040246;2.350553;2.34373;1.979361;2.142549;2.304739;1.700881;3.138696;2.091215;2.091143;1.642185;2.167712;2.514026;1.586625;1.603798;1.392183;2.201991;2.896996;2.101447;1.907174;1.995137;1.533729;2.347779;2.127809;2.113041;1.774323;1.877784;1.594565;2.847538;1.859419;1.688394;1.545125;2.786368;1.843755;1.4306;2.585737;1.722088;2.630539;2.051797;2.693923;3.449986;1.60084;2.781787;1.891206;2.274387;1.566899;2.361897;2.071351;2.126681;2.045863;1.469041;2.491527;2.246733;2.58413;1.445553;2.446424;2.233229;1.903119;1.960781;2.981897;1.981183;1.37856;1.79294;0.9712458;3.043531;2.248242;1.928763;2.14229;1.845477;2.34092;1.779953;1.359741;2.044496;2.389888;2.023638;1.584208;1.493523;1.853246;1.409567;0.9985738;2.546238;3.032412;2.044795;2.350051;1.348912;1.382709;2.186089;2.06614;2.862077;1.030442;2.432022;2.744302;2.497282;2.186117;3.159563;1.413272;3.266535;2.218577;2.073152;3.048775;3.415601;2.778882;2.738569;2.710866;3.070457;1.511027;2.718849;2.047658;2.426636;1.984153;2.227574;2.597043;3.25397;2.51744;1.398672;1.890116;2.407484;3.212117;1.80487;1.812024;2.52806;2.816937;2.370681;2.750314;2.619711;1.501438;2.463382;1.194385;3.124607;2.156634;2.269223;1.874855;2.584213;2.385818;1.781109;3.091789;2.179971;2.032595;1.455853;2.158373;2.576046;1.613838;1.451553;1.408973;2.607408;3.156897;1.955052;2.062859;2.177284;1.675972;2.069251;2.236196;2.339968;1.695812;1.824871;1.9028;2.608027;1.702774;1.464191;1.29475;2.86786;1.672577;1.373126;2.465971;2.12096;2.716978;2.140524;2.650604;3.564509;1.549753;2.538404;1.88238;2.334202;1.593841;2.177039;2.09193;2.526013;2.381288;2.119298;2.323348;1.953827;2.336105;1.383969;3.02263;3.034953;1.599883;1.427832;2.317435;1.469642;1.24556;1.450627;1.094119;2.392276;2.149885;2.492173;2.802354;1.951951;
2.814385;2.44798;2.372966;2.10539;2.137441;1.808715;3.113714;2.397487;1.784356;2.922743;2.93484;2.2203;2.406442;3.323443;1.600129;2.33119;1.360587;2.92109;2.605383;2.777374;2.581557;2.330192;2.762621;1.670069;2.70087;1.85993;2.807432;2.000322;2.669448;1.995258;1.585817;1.964753;2.14547;2.639096;2.327355;3.338573;1.879858;2.498077;2.094832;2.195363;2.432487;2.122406;2.383948;2.171603;2.464498;3.07163;1.713156;1.207749;1.277005;3.020005;1.304657;1.9913;2.822865;1.915807;2.380215;1.363841;2.24702;2.849632;1.299601;2.546113;2.616794;2.169298;1.786475;2.32069;2.280708;1.704599;2.114791;2.213138;2.689111;1.681008;2.528771;1.51176;2.356993;2.667914;1.946892;1.722998;2.524945;2.279097;1.522462;1.620325;0.9088789;2.866825;2.584341;2.482595;2.669984;1.562929;2.950754;1.494378;1.387518;1.747588;3.400257;3.024023;2.093959;1.115833;1.839072;1.911882;1.685347;2.612818;2.291551;3.372529;2.183328;1.617049;1.957403;2.346916;2.384207;2.730155;1.566461;3.080088;3.4123;2.906536;2.337808;2.615559;1.450512;3.473505;1.855758;2.721766;3.086168;3.314674;2.701798;2.187884;2.508642;2.080737;1.566466;2.902337;2.606028;2.218165;2.543813;2.282745;2.748649;2.594326;2.781455;2.277981;2.082582;1.727117;3.279697;2.397956;1.70635;2.821344;3.051803;2.063615;2.314362;3.222162;1.619196;2.036402;1.376716;2.693783;2.720737;2.570047;2.426553;2.032068;2.993864;2.063139;3.005839;1.643553;3.095474;2.241875;2.52533;1.820627;1.859336;1.762227;2.105818;2.809562;2.736451;3.493038;1.827179;2.429633;2.2903;2.253133;2.3492;2.054952;2.482843;1.972865;2.356402;3.004933;1.773506;1.031008;1.277709;2.805516;1.38007;1.766244;2.614952;1.665762;2.642456;1.763595;2.504731;2.596755;1.491018;2.715109;2.410939;2.054869;2.02003;2.210046;2.302546;1.810668;2.420333;2.327795;2.727093;1.616702;2.587833;1.534087;2.157596;2.638083;1.907732;1.51634;2.396511;2.270948;1.530462;1.504812;0.9495596;2.620852;2.602234;2.219779;2.566483;1.330401;3.073838;1.883147;1.494376;1.586352;3.532831;3.207948;1.911171;1.03414;2.076709;1.811521;1.704938;2.743761;2.610271;3.513722;2.218549;1.553914;2.010169;2.374648;2.184556;2.69998;1.532188;2.801687;2.560002;2.827215;1.878291;3.200174;1.744084;2.696826;1.850521;2.95765;2.86676;3.177893;3.181343;2.692693;3.235046;2.341477;1.298038;2.884381;2.599163;3.128112;2.932934;2.792638;
1.251795;1.595626;1.702002;1.983712;1.574826;2.356949;2.772733;2.782592;2.67251;1.792901;3.67616;1.740588;2.085081;2.358674;1.843911;2.690853;2.667805;2.888916;1.973765;1.749823;1.756532;1.577517;1.884336;1.512312;3.131255;2.758749;1.788224;1.79177;2.903886;2.320509;2.825454;1.620361;2.426775;1.246827;2.540599;2.196416;1.543619;1.280045;1.895923;2.700813;2.029927;1.022659;2.906226;1.789321;2.554656;2.326171;2.997788;2.29934;1.863666;2.440738;2.443353;2.514384;3.157411;1.99251;2.444349;1.740767;1.992529;2.3488;2.174561;1.442739;1.708357;2.219228;2.428199;2.6223;1.960182;2.104297;2.286169;2.462614;2.782264;2.607622;2.922361;2.662057;2.987548;2.918122;3.441477;2.984787;2.72161;1.84438;2.603463;2.120393;2.331586;1.831259;2.620241;1.544964;2.584833;2.489883;1.666825;2.714042;1.839558;2.240055;2.196895;1.563019;1.846295;2.167939;2.7694;2.564688;2.623206;2.409289;1.392526;1.47595;2.844132;1.795094;2.235182;1.687846;3.089213;2.082519;2.524799;2.823382;2.139744;2.251895;2.937732;2.785084;2.757164;1.927797;1.86946;2.3993;2.228522;1.324655;2.347849;1.804029;2.593063;1.147454;1.438886;1.62517;2.268989;1.540449;1.600372;1.834104;1.433351;1.605695;1.707512;1.87964;1.440398;2.801695;3.061583;2.682768;2.776752;1.660652;3.339324;1.418801;2.083032;2.57373;2.10047;2.706787;2.851175;2.924165;1.781802;1.72117;1.768919;1.63386;1.986412;1.483773;3.63783;2.42327;1.564812;1.4427;2.97741;2.257774;2.675944;1.576701;2.611984;1.249623;2.598314;2.130098;1.392915;1.590424;2.084908;2.57187;2.070435;0.9231908;2.668028;1.505278;2.534312;2.517275;3.264927;2.257774;1.943799;2.510766;2.285324;2.501092;3.122997;2.06967;2.510424;1.661817;2.320256;2.074311;1.979777;1.257853;1.728773;2.217313;2.088158;2.492892;2.126381;2.171305;2.382276;2.561921;2.650741;2.946486;3.104671;2.597703;3.014054;2.791996;3.067647;2.78233;2.702796;2.058116;2.627432;2.01395;2.420782;1.952136;2.499124;1.671292;2.626084;2.487691;1.683695;2.68083;2.136047;2.009786;1.910661;1.370813;1.867576;2.166815;2.405455;2.437568;2.815021;2.481604;1.467662;1.553575;2.711209;2.078766;2.395042;1.637371;3.116251;1.976769;2.206039;2.62722;2.517986;3.212062;2.277898;2.623122;2.481158;1.627246;2.065269;2.643767;2.109529;1.32278;2.451725;2.16535;2.62968;1.439948;1.148299;1.780153;2.188183;1.56795;1.449267;2.021981;
1.843371;1.473371;1.37077;1.320031;1.464195;3.045398;2.372339;1.836699;0.9506024;2.111125;2.736443;2.928345;1.381216;2.395599;1.728619;2.384819;2.014796;2.049505;1.504001;2.160891;2.323854;1.793864;1.39745;2.874677;1.988371;2.757132;2.260547;3.153902;2.798513;2.029871;2.400546;2.453691;2.365139;3.137522;2.545545;2.133715;2.616174;2.225304;2.514804;2.039116;1.211946;1.534981;2.396283;2.582973;2.140227;2.257477;2.003414;2.372907;1.82221;3.710636;2.669994;2.274139;2.69669;2.595176;2.959626;2.785604;2.611871;2.203486;1.988242;2.159196;1.883096;2.247339;2.080599;2.029476;1.859806;1.97768;2.059991;1.28106;2.771595;1.724861;1.970759;2.066103;1.075174;1.149982;2.489859;2.465454;2.274508;2.565034;2.997855;1.34553;1.451193;3.17472;2.045425;2.650285;1.414189;2.710258;2.845767;2.395263;3.35846;2.444;2.203771;2.894557;3.200253;2.72583;1.92501;1.836769;2.49781;2.055593;1.859645;2.127344;2.921237;2.49031;1.469883;1.571204;1.586917;2.038887;1.628683;1.863288;1.799425;1.468652;1.374545;1.743927;1.310786;1.980499;2.465238;2.368254;2.765669;2.376774;1.673562;2.717631;1.377524;1.463366;2.386431;1.795359;2.496024;2.595925;2.77731;1.476326;2.079144;1.545788;1.265256;1.468127;1.460036;3.2797;2.800934;1.989956;1.126216;2.25217;2.664305;2.775716;1.68341;2.462759;1.703309;2.039653;2.360206;1.717324;1.565067;2.130099;2.278181;1.651354;1.264833;2.493191;1.87502;2.650887;2.22656;2.937825;2.841072;2.04137;2.253097;2.54754;2.620727;3.269582;2.391716;2.268484;2.595343;2.444831;2.981172;2.177683;1.393274;1.676946;2.308949;2.389299;2.4842;2.341001;1.985426;2.029586;2.170072;3.255265;2.753554;2.217126;2.660491;2.412753;2.799435;2.410984;2.501558;2.105445;1.958125;2.162087;1.832649;2.247348;1.961838;2.206363;2.015559;2.21801;1.921919;1.285939;2.70329;1.967093;2.225954;2.275751;1.195977;1.205977;2.47679;2.496552;2.515853;2.651861;2.998227;1.15606;1.697424;2.910207;2.119018;2.451873;1.355029;2.579204;2.519796;2.116594;3.152918;2.24924;2.245179;2.898058;3.135393;2.725825;1.811729;2.005328;2.678894;2.300612;1.72931;2.133763;2.852066;2.77975;1.692193;1.754766;1.733856;2.113355;1.618824;1.891087;2.252066;2.062536;1.365342;1.4223;1.715042;1.450082;2.279853;2.375262;2.452905;2.044322;1.33841;2.67505;1.253187;1.408066;2.445203;2.00896;2.754953;2.624988;2.793165;2.006649;
2.174778;2.077487;1.442896;1.206751;2.256405;1.230116;2.113508;2.120466;1.722615;2.786399;1.750391;2.275232;3.193776;1.696294;2.507389;2.424492;3.182788;2.17858;2.901584;2.362951;1.885597;1.993761;1.600993;2.660078;2.283443;2.597325;1.521219;2.762363;2.720504;1.899338;1.244345;3.135854;1.809786;2.022317;1.992186;1.540849;2.331942;2.604244;2.234673;2.609546;1.725318;2.713633;1.857157;1.639216;1.889014;3.194943;2.515365;1.854639;1.244579;1.795755;1.812288;1.045579;2.298224;2.78288;2.323838;2.353198;1.672715;1.567201;2.197902;2.615413;2.129829;1.530168;2.039135;2.514038;2.157439;2.568244;3.095945;1.559413;2.912879;1.981946;3.066146;2.508859;2.917931;3.029229;2.465628;2.311224;2.673699;1.673423;2.941107;2.748882;3.128567;2.592339;2.934882;2.855533;2.612487;2.395753;1.815378;1.927714;2.203743;3.34643;2.393582;2.102825;2.684878;2.890937;1.611791;2.970089;2.580747;1.982055;2.725687;2.047743;2.610176;2.669089;2.56663;2.333479;2.519158;2.943711;1.998035;3.208981;1.826575;2.582338;1.76099;2.406554;1.921247;1.502638;1.670641;1.519506;2.430954;3.032965;2.896488;2.163923;2.648933;1.894387;1.957976;2.542531;1.754035;2.400236;1.423165;1.542388;2.42588;1.716364;1.470175;1.148837;2.294299;1.25589;1.930488;1.876893;1.559206;2.6089;1.860907;2.231894;2.984484;1.631994;2.389855;2.593868;3.289093;2.296615;2.71012;2.483475;1.983391;2.450417;1.950009;2.888381;2.500986;2.727407;1.585331;2.723922;2.848592;1.903873;1.220513;2.779597;2.0021;1.706839;2.012424;1.426161;2.333962;2.57644;1.975837;2.3215;1.535472;2.596644;1.966565;1.557622;1.702738;3.041387;2.326222;2.019968;1.295611;1.951194;1.666179;1.109432;2.385538;3.247671;2.675469;2.587471;1.840399;1.713454;2.279988;2.652338;2.353529;1.56768;2.070031;2.195907;2.474699;2.332676;3.160857;1.417843;2.752973;1.862275;2.725957;2.22805;2.667411;2.777889;2.505251;2.306992;2.587122;1.646095;2.808178;2.948995;3.334057;2.914678;2.785958;2.923409;2.549717;2.714101;2.096397;2.14231;2.393813;3.417936;2.394986;2.136646;2.935285;2.943222;1.639293;2.624042;2.926843;1.776325;2.786693;1.88568;2.45886;2.530665;2.256258;2.063556;2.286892;2.696671;2.033786;3.20524;1.599254;2.438814;1.600602;2.633944;2.439278;1.357512;1.916192;1.524776;2.791253;2.60802;2.547009;1.625606;2.868359;1.879827;2.545619;2.53713;1.834547;2.118644;1.705374;1.698431;
2.284357;2.068815;2.469806;2.012298;2.862891;2.313048;2.698299;2.571101;2.037795;2.765501;2.128987;2.066798;2.894778;1.526339;2.076193;2.999956;2.298203;1.543177;1.869517;2.220721;2.714901;1.14575;1.452971;1.926495;2.150721;1.472563;1.699417;1.376678;1.176223;1.734777;1.689864;2.155484;1.364286;2.23848;2.635831;2.625961;2.3397;1.668692;3.530309;1.405458;0.970665;2.55005;1.489674;1.955261;2.730165;2.64266;1.896429;1.404387;2.000321;1.292387;1.542379;1.25243;3.239654;2.326543;1.547379;1.662956;2.056281;2.64862;3.129633;1.757655;2.358685;1.751578;2.666885;2.430692;1.077858;1.665955;2.237132;3.317422;1.863969;1.323282;3.065964;1.669304;2.630903;2.796196;2.351594;2.011582;1.908829;2.069459;2.79851;2.843946;3.102752;2.355902;2.034051;2.014567;2.396056;2.097416;1.746649;1.67235;1.682886;2.231936;2.16235;2.139357;1.91424;2.267852;2.273328;2.786642;2.428645;2.578737;2.46164;2.716871;2.573023;2.949662;2.873004;2.83855;1.72243;2.088072;1.765661;1.464567;2.338662;1.802612;2.787622;1.330657;2.564494;2.176471;1.23849;2.471615;1.846202;1.888069;1.520916;1.823325;1.197745;2.760569;2.719596;2.31585;2.412739;3.00709;1.843823;1.766714;2.052364;2.070946;2.114751;1.999857;2.694106;2.457306;2.339539;3.025272;2.566808;2.514663;2.187754;2.280007;2.564703;1.5732;2.361247;3.132124;2.265989;1.3133;1.594903;2.263294;2.778462;1.170832;1.159278;2.131998;2.380428;1.525885;1.656741;1.277134;1.213054;1.823857;2.114174;2.153971;1.22856;2.319504;2.30793;2.622728;2.220326;1.798941;3.016486;1.75855;1.382056;2.392567;1.56305;2.175807;2.431465;2.71383;2.071947;1.499255;1.988494;1.136531;1.314205;1.287155;3.299892;2.366399;1.169048;1.858693;2.300592;2.805239;3.103175;1.495637;2.463564;1.833164;3.03012;2.53903;1.083532;1.650096;2.031165;3.28627;1.806595;1.439748;2.811727;1.940222;3.094261;2.572433;2.437953;2.056927;1.710535;2.119707;2.852063;3.099885;3.31097;2.04886;1.862052;2.037268;2.506255;2.135463;1.505923;1.761802;1.760987;2.320123;2.135902;1.849187;2.009764;2.360461;2.610696;2.902651;2.438047;2.559025;2.246144;2.688679;2.506573;3.122225;2.628191;3.188831;2.101759;1.895365;1.841322;1.503379;2.06477;1.490872;2.423415;2.062735;2.17255;2.25144;1.664453;2.961293;1.576837;2.005179;1.715541;1.509512;1.358077;2.484548;2.453283;2.467853;2.211818;2.436942;1.542233;1.589616;
2.878091;1.510086;1.995394;1.395933;1.706422;2.013795;2.568647;2.111902;2.269666;1.63658;2.204465;1.612761;1.674572;1.6869;2.681939;2.780344;1.871402;1.621292;1.6883;1.107845;1.317567;2.43982;1.996541;2.818871;1.894338;1.090242;1.781196;2.010252;2.982158;2.412128;1.49989;2.889904;2.467804;2.469473;2.564421;3.029298;1.815574;3.213748;1.813641;2.727631;3.051522;3.131009;2.693727;2.211589;3.093621;3.340148;1.901576;2.524736;2.2748;2.480082;2.194866;2.297271;3.258497;2.165382;1.785575;1.921676;1.715407;2.270419;2.498718;2.398535;1.676569;2.83912;3.140692;2.017183;2.593141;2.135108;2.008605;1.958157;2.110383;2.203321;2.479389;2.321247;1.857692;2.251562;1.963166;1.659081;3.251526;1.460282;2.197758;1.793195;2.245518;2.607912;1.256918;1.07288;1.632876;2.450431;2.252527;2.83171;1.527524;1.869749;1.900711;1.945706;2.810821;1.600877;2.070829;2.035226;1.671002;2.528104;2.002387;1.387001;1.581771;2.880259;1.3087;2.001462;2.483983;1.809344;2.425042;1.946647;2.882546;3.509633;1.718814;2.073105;2.055919;2.295008;1.52816;2.362653;2.731318;1.590875;1.536191;1.899039;2.621069;2.531511;2.219252;1.648861;2.48877;2.852581;2.330099;1.542566;3.24845;1.649656;1.856973;1.386562;1.518123;2.226798;2.438949;1.949316;2.166442;1.786906;2.171509;1.661264;1.503429;1.380698;2.683079;2.40976;1.980259;1.451005;1.698527;1.293924;1.194622;2.774311;1.936723;2.65329;1.898121;1.276692;1.865273;2.02332;3.034528;2.119633;1.523844;2.640587;2.894451;2.635824;2.407395;3.045641;1.642174;3.44028;1.716477;2.632498;3.025255;3.333963;2.66639;2.301817;2.89357;2.871201;1.919751;2.228222;2.452159;2.302167;2.215059;2.563458;3.067934;2.48947;1.745701;1.836284;1.767651;2.571484;2.60756;2.236089;1.797256;2.699484;3.291576;1.860556;2.984234;2.310149;1.8978;1.975645;1.907916;2.380632;2.252035;2.151708;1.761888;2.367399;1.981712;1.586978;3.149431;1.272027;2.314399;1.591921;2.380891;2.446366;1.295465;1.260953;1.485915;2.783246;2.098011;2.638001;1.507078;2.091202;2.0382;1.80032;2.966608;1.496937;2.193646;1.878412;1.987548;2.719098;1.891701;1.402291;1.407266;3.083176;1.144992;1.844785;2.372883;1.914029;2.445587;1.869427;2.316805;2.450569;1.288399;1.6742;2.111253;2.169159;1.384529;2.152686;2.378983;2.238369;1.810532;1.741606;2.634801;2.470817;2.583713;1.976847;2.832806;2.473195;1.76581;1.265569;
1.999309;1.366238;1.741714;1.675765;1.26381;1.600456;1.621668;3.135989;2.280487;1.02534;1.558693;2.331346;2.763174;2.830414;1.418466;2.081644;1.472045;2.152643;2.354963;1.374633;1.207877;2.184505;2.39795;1.993916;1.15344;2.570415;2.131255;2.651701;2.646044;3.030412;2.388014;1.857607;2.361783;2.097661;3.228998;3.559446;2.427528;2.765579;2.359284;2.686418;2.978597;1.966625;1.364241;1.456472;2.286213;2.375362;2.217944;2.963599;2.149107;1.987062;2.676399;3.526859;2.944007;2.561123;2.386101;2.243046;3.224342;3.23438;3.065942;2.211377;1.758725;2.551852;1.637046;2.155119;1.459989;2.157807;1.792233;2.667127;2.089982;1.265454;2.933909;2.118511;1.885666;1.274783;1.668466;1.448655;2.946915;2.351119;2.292624;2.268255;2.943356;1.208155;1.537439;2.708404;1.585918;2.324506;1.439835;2.884375;2.403793;1.875513;3.461471;2.190744;2.811378;2.957391;2.682875;2.428698;1.856237;1.467092;2.898038;2.572385;1.647765;2.316345;2.639111;2.82166;1.763137;1.388145;1.587046;1.879839;1.610457;1.736955;1.74726;1.991615;1.577463;1.350042;1.904257;2.131388;2.741452;2.137941;2.455972;2.122946;2.016137;3.207688;1.672114;1.685074;2.357819;1.955658;2.146214;2.811277;1.997355;1.356654;1.485957;1.683951;1.293784;1.326447;1.754498;3.29694;2.423534;1.032887;1.632651;2.764651;3.036597;2.611768;1.415474;2.342732;1.456326;2.007844;2.253486;1.362086;1.08868;1.756191;2.534826;2.123695;1.267663;2.306389;2.062822;2.638694;2.966725;2.921559;2.345074;1.846321;2.329961;2.129838;2.902174;3.510773;2.431383;2.380508;2.510969;2.696201;3.095487;2.022753;1.443172;1.762721;2.48363;2.155749;2.193774;3.151926;2.129834;1.866376;2.603824;3.479555;2.745398;2.049098;2.523685;2.276949;3.413424;2.960501;3.022502;2.168668;1.865932;2.559154;1.591422;2.311833;1.365923;2.144038;1.600855;2.540453;2.082403;1.116402;3.112719;2.116238;1.938196;1.363899;1.738808;1.745457;2.985838;2.280969;2.256217;2.612848;2.821988;1.08178;1.531745;2.582174;1.432148;1.981203;1.554891;2.910058;2.522089;1.717727;3.393065;2.148275;2.947582;2.965237;2.625368;2.595029;1.750887;1.45581;2.654318;2.44805;1.641841;2.113027;2.809859;2.81918;1.814876;1.481141;1.656542;2.216357;1.588895;1.624639;1.842694;2.218376;1.499658;1.346757;1.374882;1.489559;1.95166;2.0172;2.443063;1.936823;1.45919;2.976576;1.887256;1.413964;2.636167;1.957946;2.736853;2.58753;
2.367512;2.484583;2.158723;2.715094;1.797553;1.736228;2.126804;2.036221;2.625729;1.497634;1.514846;1.23204;2.279274;1.196709;1.739786;2.20417;1.597056;2.652548;1.42247;2.677842;3.439085;1.096167;2.293126;2.569245;3.030176;1.879087;2.307448;2.277429;2.047743;2.313423;1.945096;2.509688;2.426311;2.411201;2.074787;2.808532;2.540734;1.472101;1.716065;2.970817;1.870302;2.077188;1.806165;1.557584;2.091776;2.538421;2.34312;2.131146;1.715313;2.586547;1.794248;1.176778;1.755466;2.495716;2.219842;1.926003;1.737578;1.821924;1.547561;1.571856;2.552482;2.543267;2.636401;2.684852;1.667934;2.3083;2.381243;2.510278;2.263469;1.03414;2.745388;2.649446;2.635628;1.948961;3.295936;1.694995;2.674179;1.679443;2.560395;2.674167;2.961074;2.571617;1.850131;2.680497;2.894751;1.115025;2.443087;2.987;3.184634;2.209308;2.28193;2.999561;2.820053;2.526839;2.001216;1.709009;2.566213;3.019445;2.827503;1.917428;2.450173;2.419281;2.089055;2.621233;2.761578;2.098821;2.491385;1.957396;2.048145;2.485631;2.75857;1.814481;2.510825;2.480219;1.715932;2.562581;1.528454;2.159682;1.461203;2.62945;2.652456;1.599491;1.307113;2.028619;2.539309;2.849552;2.920464;2.096494;2.415504;2.28964;2.186886;2.871793;1.723286;1.708977;1.830832;1.969512;2.665174;1.483657;1.649119;1.162775;2.492373;1.122458;1.761515;2.29685;1.645315;2.715032;1.585683;2.596177;3.351831;1.189386;2.265707;2.762722;2.926107;2.098402;2.133918;2.386169;2.136412;2.386986;2.12141;2.388632;2.510119;2.231202;2.016426;2.906784;2.435213;1.413135;1.491182;2.88713;1.941751;2.079339;1.87659;1.442348;2.284588;2.390738;2.424209;2.254534;1.811424;2.666338;1.909956;1.111619;1.692742;2.59193;2.256844;2.125218;1.703694;2.05382;1.349334;1.521953;2.549008;2.575953;2.716279;2.54213;1.602725;2.105182;2.391285;2.76694;2.275356;0.9722891;2.500927;2.633427;2.626866;2.013045;3.426787;1.451069;2.785819;1.559001;2.525077;2.793922;2.906438;2.621642;2.035064;2.745131;2.941453;1.166458;2.524077;3.305432;3.038055;2.534347;2.067784;2.931185;2.816518;2.560245;2.070777;1.596202;2.485044;2.787266;2.838574;2.14314;2.462649;2.324961;1.876433;2.606154;2.752474;2.16601;2.60544;1.695063;2.384317;2.280808;2.382819;1.868016;2.688756;2.007037;2.04105;3.127209;1.567206;2.477915;2.139343;2.490181;2.658371;1.689095;1.819814;2.164632;2.701225;2.569549;3.142101;2.060193;
1.899168;2.642116;3.086713;2.116886;2.445158;2.157978;1.568154;2.258179;2.013305;3.045;2.948428;2.279005;2.326314;2.546406;2.489676;1.658917;2.860403;1.90925;2.655363;1.62885;2.211929;2.031674;1.012287;1.831686;1.939524;2.580611;2.149981;3.062212;1.407893;1.95682;1.506722;2.406202;2.528594;1.846696;2.501641;1.658727;2.119855;2.350183;1.481107;1.37099;1.88695;3.036129;1.723001;1.49817;2.730024;2.07624;2.627519;1.780469;2.083894;3.321913;1.201785;2.611511;2.338937;2.284828;1.430066;2.635951;2.206679;1.866521;2.46125;1.970721;2.371543;1.709866;2.335322;1.978994;2.749766;2.63225;1.852184;1.584816;2.588755;1.436284;1.399429;1.451471;1.586964;2.899446;2.962407;1.957374;2.571054;1.86445;2.394607;1.665511;1.426346;1.732985;3.120738;2.265017;1.809294;1.19125;1.266182;1.957446;1.516046;2.770667;2.123982;3.063432;1.927768;1.373489;1.526762;2.764987;2.790119;2.462608;1.626499;2.266845;2.671805;2.482495;2.032747;3.162949;2.284005;3.678614;2.475114;2.111022;3.397151;3.425911;2.874129;2.402533;2.241318;2.999649;1.156363;2.887467;2.59574;2.321277;1.955109;2.917066;2.59867;2.769479;2.586736;1.947888;1.714412;2.001333;3.134933;2.862028;1.964741;2.481477;2.731212;1.744771;2.140034;2.328931;1.380821;2.032433;2.12121;2.782378;2.832441;2.418567;2.158582;2.253568;2.343822;1.842446;3.245104;2.137933;2.756718;1.68426;2.469812;1.926139;0.9594923;2.003719;1.98621;2.738318;1.978316;2.899239;1.450394;2.201386;1.728015;2.404993;2.623964;1.727453;2.186914;1.293652;1.8353;2.556664;1.344254;1.238711;1.999246;2.795532;1.629663;1.572644;2.532862;1.836746;2.526512;2.015818;2.393378;3.640498;1.264191;2.620735;2.55878;2.194836;1.4015;2.896028;2.236823;2.015215;2.269325;1.860846;2.395668;1.891851;2.535853;1.919059;2.654713;2.552016;1.673805;1.311675;2.327054;1.59033;1.298794;1.271141;1.632674;2.636769;2.939696;2.117774;2.392451;1.575866;2.229343;1.835984;1.535657;2.021357;3.350581;2.386738;2.05433;1.119498;1.271825;2.125416;1.487059;2.922087;2.029925;2.926047;1.950446;1.536996;1.690392;2.693987;2.695386;2.385026;1.460438;1.937642;2.406852;2.683685;1.911817;2.893827;2.339729;3.381956;2.455411;2.277595;2.747986;3.136134;2.599362;2.973;3.116162;3.189424;1.245198;2.500281;3.173779;2.58813;1.900401;2.905455;2.428522;2.883129;2.440533;1.591009;1.522855;2.554386;3.135778;2.466836;
2.722466;1.911691;2.246817;2.434907;3.517726;2.460134;2.097987;2.805769;2.881534;1.811912;2.642486;2.915059;2.194357;2.785422;2.034117;2.395833;2.522028;2.446957;2.416134;2.239714;2.820816;1.755363;2.766915;1.629153;2.35247;1.618931;2.405316;1.7761;1.965336;1.496546;1.684228;2.380206;3.353082;2.504475;2.163641;2.613948;2.04929;2.222458;2.582171;1.724642;2.311307;1.487909;1.511169;2.420036;2.144151;1.477049;1.430549;2.492961;1.415975;1.943868;1.99143;1.578673;2.948154;1.871174;2.003229;2.904878;1.571154;2.389825;2.380152;2.742804;2.352771;2.625197;2.602142;1.895251;2.548269;1.775151;2.867212;2.217391;2.748855;1.652602;2.68919;2.712615;1.800819;1.406291;2.674408;2.060033;2.2027;1.80026;1.606137;2.336257;2.544772;1.990703;2.502284;1.529764;2.772941;1.814934;1.271782;1.604371;2.988141;2.290352;1.886054;0.9324081;2.319494;1.483792;1.218366;2.411605;3.276164;2.430174;2.548413;1.587157;1.799432;2.316395;2.602992;2.177087;1.527421;2.338676;2.130676;2.43543;2.761916;2.947471;1.659214;2.758847;1.932927;2.603544;2.504361;2.64912;2.971771;2.340172;2.367455;2.592712;1.683686;2.581776;2.795454;2.912859;2.864096;2.689952;3.151739;2.639797;2.803216;2.215686;1.979936;2.244443;3.52286;2.38779;1.948041;2.668757;3.030977;1.723499;2.806661;2.925048;1.91989;2.677949;1.873065;2.351531;2.624309;2.450724;2.383118;2.174689;3.014117;2.023881;3.353986;1.683176;2.600306;1.662943;2.3478;1.886952;1.793086;1.445772;1.668494;2.354972;3.368718;2.841583;1.945848;2.463101;2.03229;2.128153;2.360899;1.593471;2.391393;1.407398;1.683836;2.483625;1.857413;1.382361;1.26012;2.389503;1.429704;1.980439;2.01402;1.540762;3.095346;2.162682;2.457296;2.912983;1.706102;2.480384;2.380377;2.859172;2.182632;2.691268;2.583951;1.839173;2.602536;2.055959;2.609251;2.188788;2.733436;1.526875;2.410346;2.5649;1.89337;1.252819;2.879643;2.081448;1.969623;1.791223;1.426346;2.199617;2.604023;2.023337;2.521616;1.586361;2.920795;2.05131;1.595186;1.625012;3.201692;2.278588;1.867684;1.00118;2.150647;1.534214;1.20598;2.349119;3.337746;2.757667;2.305453;1.563496;1.787018;2.167857;2.328847;2.04574;1.61281;2.140085;2.314162;2.459337;2.814991;3.176722;1.990432;2.680999;2.150798;2.694073;3.292784;3.077318;2.453009;2.09909;3.209057;2.270464;1.550705;2.163995;2.73395;2.980543;2.258882;2.482178;2.476544;2.335098;
1.909965;3.105993;1.948512;1.469908;1.135733;2.35304;1.895108;1.563862;2.31477;2.015531;2.890575;1.628182;2.345886;2.502398;1.334317;2.446128;2.337271;2.832628;1.296816;2.567226;2.048476;1.749847;2.111305;2.071606;2.772117;2.18577;2.490469;1.995179;2.615978;2.069396;1.884796;1.625259;2.909551;1.581716;2.149191;1.642017;1.310088;2.022756;3.123136;2.335309;2.318057;2.104003;2.401597;1.996581;1.576599;1.486758;3.418882;3.201305;1.930442;1.74108;1.347577;1.992939;1.582148;2.690656;2.562708;2.46596;2.862675;1.350183;2.421304;2.98376;2.539887;2.123286;1.637132;2.540576;2.780405;3.010547;2.456468;3.126235;1.405691;2.957294;2.44137;2.130734;2.934139;3.37165;2.989457;2.353903;2.612871;2.205618;1.336692;2.837512;2.688425;2.966509;1.71401;2.380152;2.587548;2.544231;2.149079;1.978669;1.99241;2.315515;3.2468;3.221018;2.004472;2.095054;2.879135;2.16508;2.970232;2.146755;2.301206;2.351113;1.665089;2.160926;2.851646;2.512918;1.989994;2.706642;2.484114;2.104797;3.15769;1.404937;2.643337;2.174754;2.271228;2.495696;1.015935;1.790862;2.020748;2.770308;2.898531;2.164715;2.383031;1.861562;2.279558;2.370218;2.445796;1.763877;2.340332;1.784654;2.048209;3.057112;1.857985;1.498729;1.228351;2.406246;1.781352;1.492785;2.698406;1.847212;2.649492;1.649772;2.50123;2.473163;1.031295;2.254372;2.507209;2.84625;1.361377;2.606201;2.001233;2.122968;2.134291;1.872259;2.811399;2.075022;2.199502;1.991697;2.742611;2.295346;1.807819;1.527579;3.06808;1.565507;2.045191;1.628151;1.397936;2.089496;3.002515;2.225186;2.679917;1.955482;2.163009;1.974197;1.680622;1.478791;2.932967;2.982476;2.103441;1.749325;1.414845;2.003384;1.5504;3.137213;2.621404;2.248676;2.924319;1.261274;2.136271;2.722273;2.579109;2.35179;1.636597;2.426838;2.90617;3.124421;2.352294;3.262667;1.455258;2.931449;2.459563;2.130647;3.305826;3.172032;2.650968;2.127578;2.646597;2.205738;1.098049;2.640616;2.862968;3.113689;1.796253;2.528832;2.493181;2.873603;2.325002;1.883296;2.018379;2.189703;2.84218;2.949255;2.040148;2.322058;2.879543;2.060284;3.101332;2.243213;2.201241;2.469763;1.719747;2.138828;2.872422;2.512934;2.299048;2.528249;2.177277;1.891845;2.863098;1.930792;2.531432;1.469072;2.377001;2.170031;1.517013;1.968866;1.731887;2.615606;2.976763;2.234264;1.74267;1.567406;2.229177;2.075957;2.534487;2.109641;1.984141;2.015978;
3.421264;1.325374;1.438434;1.887305;1.739922;2.749512;1.890789;2.45331;1.809293;1.825681;1.39394;1.625563;1.7138;1.57594;3.346586;2.952161;1.787524;1.717483;2.980745;2.545217;3.270113;1.751086;2.941702;1.808969;2.587934;1.908778;1.30248;1.792276;2.304722;2.7787;2.047056;1.771229;3.21617;1.985996;2.974375;2.202577;2.661129;2.09687;1.782296;2.246871;2.762956;2.932625;3.021888;2.579778;1.957599;1.715719;2.685354;2.090995;2.037561;1.322845;1.577588;2.395581;2.730012;2.230391;2.941617;2.80531;1.966034;2.166562;2.897671;2.329835;3.138201;2.29372;2.253416;2.699334;3.278074;2.688999;1.892158;1.436879;2.243193;2.228642;1.794998;1.58624;2.762459;2.114741;2.16373;2.396834;1.536094;3.147024;2.021755;2.321409;2.341784;1.598032;1.581478;2.341486;2.736368;2.61659;3.000411;2.915567;1.486786;1.286841;2.468502;2.046608;2.791438;1.753853;2.786704;2.873012;2.590601;3.037175;2.197159;2.092;2.401676;2.488106;2.550907;1.541079;2.257889;2.84731;2.139742;1.471662;1.822201;2.176063;2.76727;1.089084;1.659095;1.588348;1.930841;1.430083;2.115778;1.594396;1.713174;1.743739;1.689023;1.876774;1.914264;2.056161;3.002996;2.144271;2.031966;1.265874;3.628023;1.354448;1.401675;2.224981;1.583182;2.795706;1.824265;2.176389;1.853643;1.916027;1.57492;1.392905;1.933937;1.841172;3.184296;3.053272;1.91607;1.462397;3.217863;2.675481;3.569656;2.104335;2.611955;1.541534;2.918464;2.172921;1.67108;1.580661;2.373935;2.938611;2.011289;1.654985;3.368395;2.06633;2.907517;2.501193;2.429323;2.078368;1.652993;1.96632;2.782755;3.110457;3.280244;2.230608;2.162754;1.939826;2.467005;2.193948;2.15388;1.136638;1.756194;2.496879;2.981433;2.563976;2.547906;2.48847;2.234558;2.501529;3.442685;2.262907;3.054725;2.205676;2.251339;2.556716;3.379756;2.757195;1.93363;1.765383;2.04098;2.159511;1.624429;1.41814;2.738582;2.11278;2.264241;2.258549;1.615726;3.239272;1.865076;2.430866;2.422495;1.375223;1.85348;2.544966;3.000782;2.919557;2.551637;2.684313;1.687151;1.421945;2.840417;1.984584;2.71267;1.677584;2.784421;2.726501;2.681199;3.110323;2.241903;2.485643;2.192214;2.415763;2.346777;1.375944;2.236417;2.845702;2.239771;1.364562;2.143934;2.45589;2.14708;1.305304;1.711761;1.508512;2.180732;1.936633;1.739751;2.021194;1.418517;1.358985;1.516266;2.389319;1.76009;2.64594;2.686236;2.398993;2.11511;1.332679;
2.413571;2.125239;1.999796;1.873328;2.370628;2.394808;1.164614;1.81536;1.944232;2.483404;2.783598;2.237122;2.204633;2.180171;2.237329;2.354823;2.80425;1.95629;2.597683;2.180759;1.747265;2.455725;1.489929;1.471249;1.457838;3.282046;1.547606;1.492782;2.841753;2.005733;2.930944;1.576596;2.023363;2.798441;1.556488;2.931394;2.29119;2.731742;1.372252;2.575393;1.799156;1.88471;1.620948;1.63664;2.522313;1.859624;2.437587;1.558032;2.807041;2.52995;1.49594;1.218793;2.733278;2.034592;1.965083;1.805841;1.151902;2.518366;2.959763;1.726751;2.799232;1.577192;2.2755;1.96825;1.061491;2.233145;2.30798;2.726323;1.867264;1.464234;1.596452;1.871889;1.367015;2.437893;2.777039;2.156272;2.578025;1.49778;2.081069;2.815543;2.925498;2.481889;1.692317;2.909145;2.435245;2.485766;2.155894;3.253389;1.710375;3.799778;2.183337;2.124712;3.311847;3.418993;3.132464;2.087909;2.356998;2.613993;1.451504;3.181328;2.568193;2.906105;1.810541;2.502034;2.212342;2.440815;1.752949;1.500779;1.54853;1.697162;2.763716;2.310361;2.258523;2.525114;2.261443;1.57534;2.776487;2.765577;1.718781;2.116092;1.322605;2.195482;2.847749;2.051704;2.375447;2.277212;2.151228;2.014507;2.706673;2.142624;1.959255;1.595987;2.574914;2.451375;1.563628;2.077031;1.807745;2.391106;3.05377;2.313311;2.11618;2.140124;2.172741;2.697808;2.685745;2.234581;2.298262;2.035142;1.679231;2.431487;1.330793;1.257732;1.31354;2.995827;1.603229;1.457582;2.745661;1.989471;2.862708;1.737759;2.350883;2.906687;1.553008;2.592699;2.527721;2.801385;1.725817;2.901225;1.709008;1.877605;1.854875;1.713385;2.448968;1.830391;2.268629;1.843383;2.709494;2.931914;1.291023;1.113148;2.64028;2.016406;1.692021;1.572315;1.037233;2.345944;3.067815;1.775301;2.817755;1.57947;2.27805;2.031636;1.152701;2.285947;2.400981;2.468204;2.060728;1.469396;1.946837;2.129247;1.323533;2.423506;3.011201;2.339887;2.621443;1.484336;1.983416;3.053186;2.603841;2.831927;1.552074;2.817934;2.326154;2.406892;1.841708;2.911738;1.609315;3.579661;2.217313;2.178523;3.333189;3.42223;3.136677;2.153258;2.492891;2.671125;1.526109;2.901977;2.795352;2.913267;2.183572;2.798371;2.157768;2.426448;1.940711;1.654673;1.967026;1.70392;2.729458;2.979889;1.593556;2.700252;2.404366;1.70316;2.653878;2.281508;1.512681;2.390311;1.433048;2.269402;2.425992;2.318324;2.336421;2.419524;2.594878;2.40685;
1.310631;1.934959;2.028487;1.918737;2.020252;2.083332;2.01686;1.407751;2.638331;2.085641;1.635405;1.543853;1.41616;1.241566;2.629276;2.790327;2.579074;2.622094;2.906352;1.031601;1.572126;2.562494;1.986941;2.126591;2.303204;3.088776;2.825961;2.255396;2.849708;1.929002;2.407689;2.320826;2.408048;3.040533;1.840563;1.490073;2.906829;2.259696;1.771554;1.571007;2.261089;2.312963;1.588979;1.556196;1.559191;2.146206;1.730913;1.910793;1.348973;1.753767;1.382301;1.395083;1.562427;1.443994;2.305888;2.097419;2.874066;2.647404;1.21465;2.531939;1.624768;1.79251;2.687562;1.591464;1.908764;2.478538;2.864464;1.313942;1.959908;1.534492;1.278353;1.662063;1.229222;3.558747;2.112886;1.227055;1.573669;2.596789;2.809077;3.048618;1.721748;2.3881;1.564363;2.058011;2.157314;1.602614;1.562054;2.133203;3.49568;2.107835;1.649565;2.765467;1.835079;2.580543;2.499038;2.490148;2.182001;2.31054;2.281979;2.19059;2.899086;3.348362;2.668768;1.909432;1.978039;2.139665;2.743189;2.10227;1.524196;1.894244;2.516858;2.417643;1.864909;2.672601;1.934353;1.924638;2.216041;3.00642;2.249877;2.452927;2.63448;2.594242;2.215474;1.980419;2.910201;2.177327;2.247677;1.967451;1.543091;1.790011;1.965041;1.887638;1.773804;2.193583;1.875287;1.480607;2.612286;2.095629;1.71832;1.629006;1.610727;1.543329;2.646935;2.734279;2.383538;2.815893;2.738318;1.048176;1.624412;2.767858;1.788808;2.272647;2.04617;2.746623;2.77157;2.013347;2.935235;1.974769;2.652555;2.339565;2.801289;2.846408;1.780306;1.483366;2.636683;2.34015;1.65036;1.720632;2.318865;2.320648;1.677952;1.670303;1.789526;2.50756;1.761477;1.916551;1.249689;1.94358;1.273628;1.415059;1.618171;1.605549;2.110383;2.299509;2.645652;2.365458;1.185448;2.343888;1.51992;1.695185;2.956955;1.626769;2.299625;2.297015;2.96275;1.279515;1.786377;1.503129;1.181285;1.728053;1.26102;3.559414;2.223716;1.380354;1.626381;2.803022;2.858897;3.083266;1.642313;2.602462;1.574707;2.047212;2.276564;1.67006;1.407908;2.237836;3.225806;1.851403;1.622643;2.569537;1.723648;2.464107;2.759001;2.534873;2.598518;2.136131;2.369734;2.146772;2.687296;3.302662;2.527627;1.980656;2.018211;2.140918;2.869207;2.302585;1.462763;1.680046;2.69677;2.27727;1.908414;2.497466;2.153015;2.039511;2.683434;3.252619;2.523291;3.078505;2.376222;2.220285;2.427991;2.082915;3.076649;2.378713;1.974635;1.967569;
2.312316;2.72824;2.432758;1.764686;3.344996;1.663716;2.523282;1.867134;2.760917;2.521284;1.512582;2.401994;2.146028;1.994231;1.415385;1.715823;2.836983;3.100095;1.651201;1.512368;1.461228;2.354072;1.612538;2.028175;1.658747;1.710641;2.243138;1.830034;2.124112;1.84839;2.224849;2.507558;3.052094;2.175503;1.369887;3.685695;1.523429;1.243164;2.047376;1.545213;2.85548;2.151542;2.450506;2.164186;1.861723;1.468119;1.252338;1.385169;1.566674;3.341186;2.55825;1.665216;1.193704;2.489548;2.151948;2.917639;1.68505;2.877093;1.624179;2.86007;1.949843;1.595312;1.265646;1.849287;3.568294;1.974536;1.518754;2.356705;2.381922;2.173832;2.476931;2.287114;2.461487;1.662264;1.999631;3.022575;2.452044;3.040645;2.24633;1.979987;2.452166;2.996844;3.031715;2.18745;1.250512;2.014909;2.563144;2.737181;2.195891;2.464653;2.83909;2.292233;2.792352;3.352243;2.212856;2.405553;2.890747;2.311089;2.550586;3.181014;2.857776;1.813726;1.533821;2.015041;2.066316;1.948074;1.532691;2.855925;1.805599;2.103954;1.824999;1.034274;2.755473;1.998385;2.308588;2.03347;1.239559;1.594497;2.148661;2.535312;2.419811;2.85576;2.919741;1.48676;1.061792;3.151695;1.668271;2.03497;2.185524;2.713489;2.680868;1.862331;3.764705;2.146062;2.436619;2.256786;2.747485;2.577038;1.604408;2.374858;1.994478;2.159945;1.629297;1.781946;2.601744;2.901586;1.622775;1.49953;1.454978;2.521165;1.759646;2.11515;1.64783;1.571749;2.161339;1.588504;1.87572;2.056625;2.211578;2.561198;2.87319;2.207188;1.576024;3.763438;1.778441;1.64663;1.962358;1.787153;2.797683;2.251006;2.579739;2.094635;1.678404;1.593843;1.437737;1.364109;1.392928;3.158629;2.558179;1.633064;1.180924;2.608677;2.322429;2.904351;1.67389;2.717989;1.582514;2.634317;1.691402;1.783019;1.30946;1.936039;3.52673;1.945617;1.611907;2.386547;2.5882;2.57761;2.398013;2.434733;2.481517;1.727976;2.158351;3.049312;2.226627;3.27014;2.567885;1.995918;2.357681;2.754588;2.868214;2.120431;1.163525;2.015443;2.765654;2.575522;2.254327;2.292491;2.832989;2.090654;2.482259;3.621979;2.27159;2.50449;2.854516;2.279877;2.672003;3.215717;3.084416;2.184023;1.472595;2.153869;2.085669;2.019238;1.672904;2.882305;1.45413;2.322869;2.116033;1.516743;3.617692;1.933789;1.812314;1.550902;1.411589;1.424075;2.529644;2.108458;2.664928;2.945014;2.498505;1.17285;1.626982;2.942431;2.059792;2.680937;
2.223231;2.112544;1.851906;2.347283;2.308287;1.853032;1.489538;2.70773;1.542191;1.762369;1.405169;1.376248;2.649351;2.852893;2.647605;2.672903;1.786838;2.948094;1.611569;0.9454756;1.744305;2.79776;2.613663;1.233938;1.629479;1.467777;1.46515;0.9701084;2.922662;2.521848;2.387709;2.21312;1.201738;1.826374;2.898196;2.251212;2.507931;1.837235;2.725257;2.491811;2.205377;2.375184;3.061357;1.865829;3.323518;1.978775;3.215526;2.87319;3.632548;2.96221;2.383439;2.158064;2.791239;1.230439;2.489275;2.802346;2.682035;2.206707;2.052753;2.352532;2.853314;2.093959;1.535569;1.764713;2.110028;2.587544;2.60487;1.72658;2.152933;3.161926;1.845448;2.536071;2.290249;1.821615;2.199188;1.809627;2.708653;2.952717;2.701941;2.604409;2.418709;2.932185;1.796208;2.450304;1.862693;2.618149;1.849971;1.7318;2.589127;1.21066;1.361339;1.470059;2.943506;2.838461;2.391043;2.03614;1.962725;1.969145;2.765566;2.17952;1.938561;2.974787;1.872161;1.991055;2.229459;1.952613;1.44047;1.567347;2.948261;1.375515;2.157753;2.505423;2.171719;2.937859;1.88861;2.218228;3.17735;1.417107;2.070161;2.790485;3.104898;1.713812;2.313951;1.977796;2.094166;2.035978;1.55347;2.653014;2.007899;2.234664;1.884588;2.304429;2.006926;1.813582;1.507857;2.709105;1.415522;1.774716;1.653997;1.605773;2.603946;2.670054;2.679689;2.671059;1.669526;2.80316;1.62815;0.9593388;1.715016;3.109178;2.402389;1.505246;1.940394;1.488785;1.797885;1.017961;2.858524;2.611176;2.224764;2.304797;1.067807;1.951249;2.836933;2.156454;2.177114;1.75985;2.804571;2.490247;2.09286;2.409653;3.323507;2.08706;3.259121;1.793407;3.316854;2.907989;3.529384;2.836013;2.329333;2.163183;2.753352;1.407362;2.348288;3.242869;3.137721;2.249126;2.368919;2.393841;2.83124;2.135478;1.497086;1.757471;2.035687;2.76821;2.618106;1.648453;1.862773;2.892182;1.912921;2.423186;2.183627;1.816961;2.438336;2.012688;2.691679;2.724633;2.923273;2.530695;2.449029;2.83973;1.808969;2.46191;1.847625;2.711625;1.730644;1.981519;3.046489;1.214145;1.634216;1.503262;2.921205;2.887644;2.342846;2.029114;1.890939;2.127841;2.779332;2.092232;1.663852;2.714177;1.940012;1.891905;2.124159;1.948466;1.635291;1.757211;3.027572;1.565475;1.884294;2.27913;2.048249;2.826985;2.417898;2.860053;3.182147;1.308859;1.717386;2.84674;2.993797;1.51324;2.977843;1.97329;2.162892;2.424942;1.532126;2.328345;
3.16411;1.660951;3.118382;2.29987;2.26181;2.633712;1.85276;2.124906;2.799747;2.305454;1.527063;2.166259;2.131886;2.978837;1.668363;1.60165;1.607413;2.501645;1.969234;2.073594;2.000932;1.625299;1.777796;1.626899;1.583838;1.740435;2.535079;2.73863;2.121753;2.813741;1.805688;3.652573;1.139653;1.132769;2.254574;2.10461;2.899192;2.530353;2.813605;1.544285;1.803087;1.467122;1.577617;1.428525;1.503942;2.763884;2.332876;1.346398;1.063012;2.806832;2.908834;2.558377;1.459917;2.588295;1.600706;2.702874;1.703138;1.11298;1.083969;2.560668;2.496458;2.147588;1.373432;2.285911;1.911055;1.957381;3.250522;2.534571;1.93292;1.746719;2.555785;2.893517;3.036123;3.104445;2.379548;2.628487;1.864066;2.603473;2.790156;1.866796;1.309959;1.958706;2.985059;2.576837;2.575825;2.420331;2.408021;2.078817;2.375345;3.045939;2.90435;2.780737;2.105878;2.968673;3.203188;3.085752;2.249742;1.621559;1.774857;2.665504;1.955844;2.2334;2.043539;2.331246;1.962777;2.023502;2.563088;1.283561;2.80881;1.701605;2.047818;1.618354;1.041531;1.686665;2.929454;2.302584;2.248505;2.803485;3.026558;1.730242;1.392626;2.333154;1.653359;2.441715;1.529427;3.068426;2.330025;1.516303;2.962338;1.808037;3.160364;2.31941;2.248959;2.521621;1.813525;1.878423;2.878642;2.107425;1.542034;2.137047;2.474656;3.041293;1.806809;1.408976;1.67169;2.650821;1.848166;2.146037;2.099854;1.441308;1.803162;1.646422;1.960686;1.880414;2.941206;2.636186;2.187279;2.611269;1.698083;3.150952;1.03229;1.267319;2.294343;2.075426;2.883106;2.44831;2.830802;1.380035;1.873704;1.32521;1.587621;1.368268;1.781031;2.854;2.54491;1.205584;1.101542;2.981947;2.751987;2.578292;1.509802;2.37776;1.662222;2.781518;2.073908;1.236867;1.348281;2.365764;2.503118;2.038737;1.235845;1.997398;1.827071;2.099204;3.20038;2.490711;2.006337;1.670287;2.421895;2.633378;2.989609;2.944839;2.252252;2.50778;2.153207;2.745134;2.953794;1.799174;1.401486;2.072426;2.736116;2.585236;2.743928;2.207196;2.336477;2.117664;2.68032;3.300072;3.164001;2.577464;2.112954;2.840343;2.992085;2.748895;2.159451;1.75087;1.738743;2.620516;2.030631;2.146773;1.924751;2.09831;1.926277;1.895054;2.431956;1.199724;3.217037;1.911922;2.616165;1.416099;1.255215;1.573896;2.365476;2.799902;2.615088;2.43312;2.862956;1.336613;1.409734;2.640308;1.733588;2.338756;1.795201;2.938755;3.033179;1.627392;
1.697357;2.612389;2.893928;2.177005;2.024094;2.693904;2.584828;1.894783;2.474262;2.104455;2.59451;2.259474;2.231622;2.332678;1.646757;1.687228;2.254786;2.945008;2.637824;2.597852;2.287346;2.366672;2.248598;2.816526;2.607347;1.976815;1.872546;1.851976;2.228314;2.351346;1.647974;1.352986;1.723031;2.245912;1.41388;1.336;2.062086;1.901588;2.589708;1.868086;1.960912;3.059641;1.050456;2.273395;2.212016;2.947367;1.713044;2.690148;1.994009;2.053897;1.790603;1.616535;2.951139;2.232252;2.875857;1.599122;3.032014;2.385563;1.512529;1.088849;2.991287;1.73937;1.730948;1.699249;1.310003;2.483741;2.763306;1.725344;2.255768;2.128396;2.640513;1.828271;1.114041;2.001772;2.996458;2.887236;1.776452;1.399754;2.065672;1.706506;1.836305;2.843987;2.356999;2.350208;2.629764;1.545501;2.207379;2.857166;2.788376;2.44535;1.186521;2.399345;2.910315;2.247061;2.474699;2.976244;2.126555;2.676486;1.997026;1.85061;2.431522;3.296352;2.795559;2.344677;2.129398;2.705307;1.202829;2.361779;2.535349;2.907422;2.360297;2.85587;2.572542;2.721158;1.965502;1.476381;2.220379;2.294415;3.248443;2.149137;2.463649;2.038272;2.311521;1.33815;2.838419;2.809753;1.671197;2.81972;1.539756;2.794385;2.936654;2.249244;2.259639;2.723549;2.757706;2.016394;2.770752;2.156028;2.885628;1.976846;2.217888;2.233494;2.12743;1.792824;2.191982;2.636428;2.587235;2.169321;2.177602;2.289063;2.150868;2.674917;2.745051;1.644494;1.834425;1.538669;2.128464;2.506082;1.748828;1.663159;1.514521;2.406397;1.482193;1.42811;2.277259;1.901975;2.704523;1.962113;2.174151;3.121348;1.280238;2.039322;2.181652;2.81194;2.155754;2.760847;1.862879;1.8297;1.7987;1.297743;2.778175;2.171134;2.713227;1.447745;3.08794;2.053037;1.524177;0.9621305;2.829307;1.928188;1.654334;1.979122;1.128617;2.723399;2.90415;1.978462;2.551329;2.047857;2.708566;1.976774;1.261491;2.089483;3.259072;2.790877;1.75101;1.341722;2.336531;1.701706;1.710277;2.649175;2.408127;2.11647;2.53778;1.427594;2.023801;2.719631;2.820312;2.147391;1.127141;2.209964;2.750644;2.46183;2.382994;3.344176;1.893666;2.925768;2.116916;2.113057;2.738103;3.196867;2.865647;2.513319;2.331575;2.807815;1.37115;2.275311;2.392053;2.662111;2.477533;2.45685;2.482574;2.118272;2.127128;1.604536;1.803104;1.903008;2.82584;2.544307;1.914281;1.998364;2.314977;1.853269;3.086238;2.950392;1.552579;2.337994;
1.794108;1.741986;1.29781;2.46793;2.748937;2.618933;2.287365;1.603398;1.511736;2.198471;2.403132;2.534496;1.224489;2.672606;2.783201;2.824635;2.522583;2.990241;1.601717;3.392778;1.649506;2.990235;2.730711;2.949181;2.429659;2.764814;2.689339;3.168094;1.802197;2.36342;2.330433;2.340917;2.012738;2.758387;2.247246;2.049055;2.063737;1.928738;1.630161;1.906881;2.619178;2.164491;2.291829;2.171236;2.421446;2.010909;2.780037;2.370584;1.998607;2.909913;1.968392;2.687975;2.808911;3.230322;2.292042;3.232479;2.69436;2.007221;3.207611;1.917164;3.068808;1.961342;1.941469;2.12043;1.627948;1.652657;1.652227;2.485497;2.923192;2.618;2.016657;2.216078;1.76017;2.145142;2.369437;1.695383;2.107259;2.036726;1.99172;2.591727;1.91453;1.375062;1.318629;3.062547;1.067185;2.044801;2.380772;1.632963;2.412288;2.236314;2.549858;3.357525;1.781725;2.029743;2.001136;2.140155;1.553261;2.445463;1.72074;1.522004;1.874105;1.804785;2.524817;1.792087;2.070367;1.597308;2.732022;2.046461;1.503616;1.547471;2.88776;1.430775;1.958383;2.043396;1.567697;3.003279;3.048424;2.836263;2.849699;2.242977;2.431257;2.134212;1.42071;1.950031;3.658971;2.810147;1.508693;1.242504;2.086446;1.748224;1.408991;2.869142;2.867286;2.755872;2.497261;1.544349;1.708985;2.191858;2.356709;2.34705;1.264755;2.619922;2.984457;2.760549;2.401465;2.784357;1.546733;3.334433;1.592227;2.730665;2.977901;2.706315;2.135455;2.90828;2.450094;2.880858;1.860771;2.327983;2.291944;2.211936;2.311713;2.791114;2.383577;2.362372;2.152428;2.06372;1.828129;1.821548;2.853889;2.182429;2.227005;1.9523;2.449473;1.982212;2.992569;2.312916;1.908502;2.703823;1.909384;2.608502;2.747241;2.948787;2.551709;2.978747;2.40349;2.126541;2.947962;1.862979;3.035486;1.917903;1.924526;2.086678;1.829593;1.799582;1.769477;2.685743;2.979381;2.832959;2.081467;2.192892;1.890316;2.074998;2.377942;1.682478;2.031862;2.00597;2.191345;2.631087;1.759346;1.339433;1.270705;2.830786;1.000932;1.869274;2.477741;1.511267;2.07232;2.270294;2.394485;3.285856;1.757113;1.985536;1.984861;2.106346;1.751234;2.623658;1.84111;1.679664;1.91994;1.983969;2.598335;1.771336;2.212298;1.536971;2.742076;2.033059;1.769637;1.557659;2.680408;2.058277;1.357136;1.887575;1.21577;3.143745;2.712455;2.626763;2.458642;1.798134;2.535967;2.026585;1.31936;1.415184;3.136511;3.002853;1.443428;1.218816;
1.877368;1.512626;3.083276;2.629757;1.670833;1.445671;2.110845;2.159613;2.984927;1.312767;2.435686;1.127915;2.15996;1.841413;1.667608;1.687456;2.309773;3.260869;1.61729;1.215312;2.121777;1.698456;2.789099;2.322164;2.63941;2.065773;1.823;2.39524;2.559075;2.395756;2.812703;2.673544;2.132352;2.051824;2.396291;2.910838;1.605896;1.587445;1.699035;2.623462;2.450465;2.613221;2.769255;2.377266;2.624862;2.467322;3.239228;2.719142;3.170639;2.691432;2.521102;2.335778;2.221754;3.029383;2.306721;1.840687;2.771259;1.993598;2.295749;1.975245;2.870673;1.58076;2.223921;2.212533;1.641257;2.690482;1.916941;2.247147;2.262205;1.542106;1.156566;2.212594;2.824409;2.16402;2.623675;2.158884;1.233108;1.165056;2.849918;2.096666;2.466923;1.87447;2.195997;2.360423;1.907533;3.083435;2.299903;2.33171;2.637538;2.438591;2.79442;1.748159;1.852166;2.24633;1.889664;1.813581;1.768825;2.260142;2.681535;1.743742;1.301946;1.989177;2.414289;1.887913;1.94674;2.11485;2.045816;1.684349;1.936136;1.764634;1.703761;2.643371;2.831728;2.588622;2.259643;1.251343;2.820081;1.766017;1.677093;2.380835;2.061891;2.764594;2.80573;2.926548;1.826802;1.614035;1.591232;1.356026;1.624738;1.272407;2.990847;2.391857;1.71116;1.667023;2.204589;2.51449;2.983599;1.517748;2.844292;1.134334;2.060045;1.806516;1.859343;1.780555;2.210241;3.001096;1.649639;1.31428;2.252866;1.68201;2.92804;2.357459;2.58239;2.209773;1.892588;2.435251;2.212484;2.450434;2.965089;2.671489;1.826872;1.812258;2.302266;2.593929;1.615093;1.76504;1.717439;2.993695;2.416344;2.961603;3.198297;2.331619;2.483111;2.369525;3.417927;2.85701;3.029747;2.510559;2.567065;2.447281;2.335543;2.940353;2.371692;1.888577;2.689597;2.185801;2.379026;2.07731;2.619165;1.659646;2.426196;2.210393;1.457088;2.54214;1.863394;1.939211;2.130193;1.627917;1.148587;2.555163;2.785759;2.364145;2.948247;2.20617;1.229732;1.168149;3.093163;2.217592;2.449709;1.831703;2.273081;2.438674;1.878992;2.876084;2.331869;2.387715;2.55602;2.529454;2.795287;1.844903;1.651223;2.340905;2.076487;1.812202;1.577514;2.124933;2.61821;1.474413;1.202231;2.087161;2.40278;2.205908;1.914775;2.313341;2.333603;1.727061;1.194253;1.829029;1.852232;2.781147;2.54204;2.75306;2.425038;1.534238;2.620631;1.835893;1.684687;2.773449;2.04325;2.346467;2.765949;2.24728;1.729712;1.557659;2.137791;1.684975;
2.359304;1.701043;2.178387;2.52901;2.642284;2.616546;1.562019;2.859726;2.081825;2.746997;2.323166;2.97055;1.853486;2.993603;2.027307;3.085472;3.690846;3.098619;2.509398;2.043435;2.606973;2.884648;1.775768;2.610351;1.904258;2.653312;2.640177;2.588072;2.114286;2.23007;2.095859;1.971123;2.456511;2.278746;3.616973;2.190954;2.231186;2.250903;3.012819;1.513324;2.282117;2.140586;1.707561;2.213284;1.618737;2.414858;2.546907;2.213001;1.988007;2.563851;2.906816;1.87884;2.929929;1.437373;2.246542;2.027128;1.503761;2.268428;1.264072;1.385152;1.801539;2.084416;3.310082;2.078616;1.850365;2.567818;2.102509;2.283757;2.657422;1.907243;2.18459;2.110073;1.464185;2.743869;1.731433;1.550114;1.462411;2.629116;1.597208;2.048341;2.756406;1.829277;2.290143;1.590759;2.318913;3.117018;1.648349;2.486959;1.681599;2.526144;1.961552;2.695223;1.744194;1.466931;2.082294;1.783642;3.114886;2.384662;2.705975;1.486934;2.9124;2.247539;1.911556;1.290733;2.579662;1.470818;1.612042;1.665056;1.264551;2.480445;2.83478;1.913117;2.158873;2.004365;2.845051;1.763973;1.255383;1.511492;3.028271;2.986111;1.303545;1.48766;1.664313;1.658799;1.313229;2.301723;3.298775;2.079309;1.942969;1.525112;2.127127;2.529401;2.567652;2.367282;1.544629;2.784453;1.970471;2.624542;2.17557;3.427139;1.657768;3.157679;2.337135;3.135012;3.260442;2.907946;2.392928;1.965143;2.392059;2.591918;1.988555;2.737007;2.119606;2.731746;2.582884;3.121662;2.048392;2.448418;2.252939;1.946778;2.086311;2.150216;3.600019;2.201377;2.195426;2.028011;2.889177;1.470121;2.212127;2.110707;1.605851;2.623939;1.452849;2.571811;2.780288;2.259883;1.692481;2.470202;2.811024;1.807001;2.693537;1.236055;2.379033;2.143687;1.712654;2.420148;1.244478;1.626674;1.785699;2.286838;3.335102;2.154803;1.689253;2.329458;2.188513;2.27151;2.678124;1.702763;2.280056;1.946701;1.284481;2.650411;1.624426;1.73271;1.34937;2.77814;1.661358;2.195594;2.60358;1.664697;2.307058;1.50641;2.16335;2.817193;1.948003;2.48921;1.758632;2.626793;1.932878;3.028288;1.729471;1.637419;2.103147;1.854341;2.905732;2.155198;2.804326;1.477049;2.935192;2.024979;2.001898;1.163733;2.34008;1.402632;1.509508;1.854209;1.274252;2.764511;2.451492;2.739475;2.283033;1.618188;2.824708;1.215307;1.273261;1.517933;3.13658;2.885203;1.496002;1.283724;1.947818;1.8265;1.20152;2.485795;2.612199;2.628013;
2.561942;2.435682;2.169386;3.018533;2.319698;2.704266;2.985981;3.005545;2.442592;2.851562;3.148541;1.905493;1.903641;1.807868;1.515751;2.03576;1.882309;2.473899;2.275287;2.805338;2.370158;1.525115;2.954439;1.644705;2.241332;2.202976;1.719578;1.229727;2.473531;2.362051;2.414391;2.967032;2.804343;1.15995;1.580543;2.595447;1.993813;2.082423;1.900915;3.023351;2.738787;1.864855;2.739053;1.656129;2.694612;1.81662;2.574248;2.135447;1.328686;1.526333;2.300731;2.149657;1.347968;2.125583;2.218711;2.029165;1.62203;1.27146;1.566677;2.221475;2.056999;1.292239;1.8942;2.090105;1.952564;1.806822;1.449261;1.65346;2.248868;2.643946;2.865282;2.683497;1.353531;3.167273;1.632255;1.39729;2.210561;1.317055;2.013208;2.316145;2.565837;1.661698;2.16338;1.885614;1.434351;1.773596;1.70056;2.809841;2.603723;1.672301;1.629954;2.398023;2.347057;2.532923;1.41449;2.697204;1.652587;1.969165;2.376039;1.355465;1.599197;1.9179;3.030269;2.211568;1.661788;2.441422;1.727784;2.38677;2.62916;1.759506;2.201512;1.351407;1.937021;2.096535;2.455365;3.239601;2.177779;2.435834;2.15103;1.949832;2.818022;1.652878;1.312414;1.625807;3.100651;1.675271;2.419597;2.78445;2.395363;2.574096;2.207323;2.698321;2.478935;2.594113;3.127204;2.872162;2.255786;2.90517;3.10876;2.218219;2.06065;1.871978;1.472067;2.007899;2.089606;2.415632;2.152159;2.838224;2.673747;1.726357;3.147865;1.755657;2.307186;2.036053;1.589096;1.299843;2.500383;2.167108;2.09294;2.693704;2.7101;1.248302;1.613135;2.325518;2.165763;1.954859;2.026475;2.985554;2.62796;1.905452;2.71114;1.979528;2.915173;1.85527;2.537019;2.162066;1.549351;1.507986;2.185385;2.179753;1.5824;2.37018;2.406322;2.208036;1.726189;1.169174;1.449281;2.142335;2.17101;1.270645;1.693897;1.913222;1.838056;1.935146;1.505297;1.44322;2.414195;2.488786;2.890553;2.558715;1.21332;3.154652;1.648899;1.547008;2.502534;1.474911;2.072126;2.401876;2.824689;1.659826;2.081079;1.918562;1.662237;1.988114;1.764558;2.925093;2.643118;1.509913;1.547089;2.316498;2.468863;2.503268;1.242133;2.496341;1.547284;2.103761;2.447578;1.166303;1.739179;1.786617;3.056215;2.098981;1.50592;2.431126;1.744854;2.582391;2.751335;2.439171;2.184396;1.257885;2.375872;2.09607;2.389627;3.018345;2.275518;2.005961;2.53169;1.892736;2.479167;1.640407;1.808524;1.724115;2.549732;1.840277;2.697321;2.499285;
2.561954;2.468037;1.685913;1.930769;2.607759;2.726382;2.82951;1.429031;2.433405;2.497826;2.822933;2.256431;2.576975;1.991873;3.285273;2.325647;2.80127;3.226958;3.138476;2.384165;2.144819;2.597045;2.394466;1.64758;2.93874;2.637581;2.878074;2.02675;2.372536;3.075068;1.877775;2.820883;1.38267;1.339632;1.92637;3.602452;2.529898;2.235694;3.039965;2.436179;1.910692;2.590936;2.512809;1.881772;1.941066;1.875758;2.463068;3.091121;2.722309;2.038116;2.500014;2.364347;2.069543;2.42655;1.552193;2.885262;2.118171;1.950922;2.636712;1.573725;2.092356;2.011702;2.810942;3.08958;2.604261;2.104677;2.38963;2.324181;2.464814;2.692949;2.250147;2.293348;1.921634;1.819913;2.948107;1.871524;1.402224;1.759615;3.015118;1.669148;2.128327;2.811206;1.761955;2.256286;1.825172;2.475794;2.922683;1.767822;2.898375;2.378814;2.729501;1.65576;2.452372;2.577976;1.352842;2.285177;1.550362;2.059217;2.015764;3.035399;1.712185;2.814249;3.044497;1.451297;1.507056;2.741858;1.833632;1.856921;1.542175;1.369773;2.617177;2.883963;2.438185;2.436248;1.793029;2.439667;2.020794;0.9346683;1.852221;3.377249;2.936858;1.273686;1.837039;1.925133;2.019609;1.48904;3.096528;2.836219;2.697523;2.557104;1.533951;2.372803;2.646378;2.644939;2.673067;1.815146;2.417478;2.236498;2.853771;2.224595;2.759063;1.656842;3.433729;2.26012;2.710694;3.161395;3.035108;2.706048;2.091306;2.770935;2.595384;1.645838;2.770683;2.33943;3.026077;2.043466;2.356738;2.68183;2.166327;2.438928;1.459206;1.441667;1.783333;4.132195;2.529571;2.142237;2.869185;2.791522;1.860662;2.374162;2.554798;1.812052;2.052329;1.534483;2.569725;2.898738;2.632727;2.005084;2.442401;2.661148;2.007762;2.543151;1.715607;2.76881;1.975805;1.713361;2.81585;1.562274;1.91942;1.785489;3.147477;2.87799;2.6137;2.185251;2.289746;2.666636;2.452386;2.759664;2.11174;2.626267;1.831881;1.687821;2.971585;1.793215;1.371002;1.551494;3.119094;1.671506;1.966583;2.720694;1.7665;2.463586;1.7573;2.763095;3.156444;1.667278;2.684656;2.171189;2.89118;1.644048;2.265785;2.320994;1.589993;2.103854;1.558511;2.139006;1.925055;3.425129;1.702648;2.882427;2.884181;1.718553;1.428522;2.579248;1.853082;1.779226;1.665601;1.2694;3.202817;2.880917;2.300118;2.108739;1.785842;3.322958;1.577864;1.40576;1.837729;3.263206;3.193535;1.45977;1.662888;1.534899;1.656931;1.415772;2.589595;2.216513;
2.931717;3.180387;2.328257;2.56611;2.167773;2.148357;2.916988;2.097268;1.453116;1.955037;2.621209;2.451793;2.45699;2.854004;2.094965;2.168979;2.374201;3.184471;2.149831;2.819848;2.882344;2.602622;3.073288;2.662285;2.781382;2.232681;1.636892;2.588968;1.478416;1.880964;1.282574;2.899869;1.86612;2.574021;2.476798;1.397719;3.142543;1.607914;1.985218;2.200802;1.235086;1.322295;2.316883;2.927102;2.729903;2.483226;2.391343;1.24726;1.641973;2.04644;1.632011;2.45241;2.030395;2.310538;2.92325;2.368379;3.378106;2.114749;3.02825;3.310232;2.574296;3.100297;1.5967;2.144439;2.902987;2.100611;1.504856;2.093357;2.313086;2.393248;1.719951;1.646015;1.697156;2.271973;1.808927;2.137464;1.984102;1.860271;1.571392;1.626808;1.792104;1.734204;1.969525;2.727768;2.687817;2.290189;1.610151;2.961114;1.452403;1.478176;2.079556;2.212547;2.171848;2.295857;2.069918;1.973079;1.960264;1.798402;1.482364;1.409369;1.672604;2.765503;2.392341;1.590553;1.165474;2.270916;2.328571;3.408525;1.900368;2.294052;1.277781;2.330114;2.403457;1.111843;1.145746;2.135452;3.07444;1.454446;1.375497;3.065191;2.22072;2.826591;3.076329;3.109232;2.738398;1.994364;2.266718;2.827859;3.074336;3.228325;2.216863;2.48204;1.997979;2.551523;2.465878;1.972142;1.381823;2.180707;2.864902;2.402071;2.661852;2.597235;2.035703;1.959655;2.523805;3.398356;2.074638;2.785058;2.976216;2.783163;2.611328;2.6706;2.814728;2.272434;1.596304;2.484892;1.914687;1.731103;1.479574;2.888812;2.01177;2.630179;2.270683;1.29498;2.918706;1.919583;1.658421;2.070041;1.199359;1.52492;2.459502;2.820779;2.932556;2.20665;2.383408;1.112421;1.812901;2.235144;1.50696;2.403466;2.108693;2.438645;2.541087;2.409482;3.47885;2.169734;2.890198;2.996575;3.029484;2.860223;1.716231;2.118988;2.903458;2.124173;1.40061;2.10984;2.231976;2.749416;1.448764;1.581927;1.582512;2.60594;1.962377;1.905462;2.066141;1.621239;1.472941;1.459068;1.82682;1.883202;1.897021;2.842502;2.904389;2.398852;1.360898;3.076055;1.448954;1.579665;1.992933;1.958122;2.591565;2.090686;2.205602;1.949407;1.960537;1.820856;1.379004;1.423397;1.603827;3.14836;2.070315;1.528219;1.07073;2.605584;2.502373;3.114481;1.703491;2.709738;1.527643;2.796237;2.011009;1.511336;1.410239;2.240436;3.109418;1.581092;1.091556;3.36031;1.934575;2.593225;2.480783;2.726864;2.96434;1.487763;2.162534;2.295619;
1.618913;1.722862;2.958314;2.910736;1.8808;1.47277;2.111363;2.23688;1.388194;2.770715;2.366103;2.39246;2.105847;1.552552;1.926423;2.155529;2.235854;2.160361;1.192128;2.711894;3.003232;1.910697;2.73403;3.229217;1.955171;3.051961;2.142066;2.960105;3.072111;3.092617;2.541653;2.125919;2.863203;2.272303;1.631765;2.487524;2.137012;2.230713;1.964903;2.934499;2.687365;3.049623;1.707318;1.477158;1.771547;1.66563;2.540575;2.172329;2.458748;2.066436;2.896432;2.174905;2.83145;2.420187;1.422029;2.595362;1.586608;2.871058;3.134042;3.053834;1.929268;2.923773;3.169668;1.826281;3.309187;1.588718;2.440844;1.960857;2.220811;2.298316;1.624802;2.201943;1.87018;2.773495;2.288388;2.439043;1.711423;2.329579;2.026171;1.99729;2.44954;1.502978;1.694275;1.769132;2.188412;1.920157;1.960288;1.595423;1.703821;2.581715;1.491028;1.971299;2.693989;1.769905;2.538383;1.703638;2.81693;2.547832;1.564088;2.1458;1.927458;2.268126;1.426431;2.989204;2.293978;2.279038;1.486189;1.444224;2.602757;1.813341;2.157105;1.52966;3.373192;1.922194;1.68883;1.660895;3.099244;1.674371;1.334643;1.786268;1.42372;2.87575;2.987866;2.715887;2.286598;2.218019;2.820393;1.832384;1.725625;1.730017;2.925033;2.800443;1.84415;1.347775;2.294112;2.108363;1.604342;2.601741;2.393465;2.683548;2.006897;1.780972;1.931806;2.193746;2.348833;2.160682;0.9765539;2.700223;2.712102;2.029358;2.684867;3.111239;2.064206;3.036966;2.04798;2.909631;3.129242;3.183381;2.402236;2.255613;3.025814;2.297411;1.610701;2.335029;2.096701;2.101819;2.199045;2.851398;2.994577;2.89423;1.725482;1.667447;1.66855;1.926588;2.596321;2.258754;2.555818;2.081111;2.54577;2.109854;2.504324;2.577366;1.421195;2.540715;1.668015;2.873501;3.010798;3.028637;1.946694;2.953269;2.935127;1.88826;3.268433;1.660068;2.527116;1.926861;2.232433;2.157767;1.877186;2.073781;2.063364;2.597931;2.39975;2.768224;1.620602;2.557619;2.010545;2.020018;2.362947;1.564934;1.515593;1.808817;1.951821;2.050926;2.000135;1.504626;1.72995;2.556787;1.477911;1.951061;2.715661;1.79279;2.329786;1.76346;2.780375;2.637984;1.634159;2.110226;1.939205;2.128429;1.664174;2.839487;2.508408;2.120164;1.577035;1.700031;2.778385;2.656022;2.646865;1.718298;2.688701;2.791401;1.786343;1.555797;3.058329;1.958768;1.534493;1.977289;1.585715;2.697181;2.687157;2.083282;2.533219;1.765378;2.139696;1.758305;
2.727463;2.067038;2.435832;3.430669;1.368896;2.365854;1.898703;2.268207;1.784989;2.466731;2.029886;1.604343;1.786792;2.030947;2.174954;2.114473;2.185545;1.624607;2.197949;2.552124;1.85418;1.473054;3.34225;1.286028;1.461511;2.016644;1.383109;2.373555;2.430466;3.034369;2.430994;2.187048;3.115939;2.074674;1.793903;1.505871;2.996847;2.262874;1.810994;1.510748;1.75547;1.395634;1.543942;2.985098;2.655468;2.913373;2.253868;1.254357;1.897775;2.635108;2.399018;3.205918;1.622033;2.863946;2.909919;2.423561;2.271248;3.002533;1.969541;3.329585;1.773881;2.454923;3.106502;2.89033;2.904312;2.745472;2.478195;2.989784;1.370632;2.614319;2.377618;2.380682;2.304972;2.572521;2.422246;2.394124;2.045074;2.085917;1.472883;2.202192;2.835784;2.402653;1.714323;2.361328;2.995117;2.093349;3.215097;2.042415;1.526402;2.865351;1.661514;2.299417;2.430912;3.039286;1.999027;2.844658;2.851048;2.002595;3.347148;1.334627;2.413086;1.538468;2.257064;2.404022;1.553943;1.335119;1.95065;2.843293;2.628841;2.687525;1.707758;2.046574;1.93173;2.542864;2.347308;2.290854;2.546347;1.999213;1.769329;2.29812;1.891559;1.6476;1.670683;3.014269;1.216754;1.749366;2.33506;1.596678;2.920201;2.109889;2.115999;2.989334;1.382911;2.367345;2.246902;2.580925;1.887343;3.067658;1.899291;1.749359;2.036152;1.777092;2.082567;2.203634;2.363157;1.760988;2.329397;2.080219;1.758001;1.422127;2.951789;1.317594;1.683173;2.169316;1.358176;2.500935;2.370173;2.975723;2.239598;2.243829;3.249121;2.109658;1.560352;1.251782;2.992196;2.238111;2.09987;1.742599;1.810009;1.855183;1.475146;3.24408;2.938147;2.58482;2.113379;1.280496;1.989136;2.847905;2.595973;2.696077;1.497078;2.809383;2.49634;2.408698;2.463204;3.230625;1.992284;3.45708;1.739114;2.531591;2.891084;2.913341;3.077138;2.780247;2.196415;2.750618;1.370513;2.530442;2.651555;2.687479;2.391892;3.067657;2.315316;2.585087;2.357171;1.908199;1.360837;2.200256;2.991024;2.601076;1.876257;2.033412;2.82939;1.99654;2.723337;2.045174;1.705249;2.973685;1.664871;2.406222;2.390249;3.125451;1.827051;2.868399;3.022388;2.032902;3.018167;1.176942;2.412995;1.474918;2.524231;2.713162;1.625516;1.698449;1.854718;3.05177;3.031371;2.611418;1.665826;2.502217;2.238943;2.41867;2.41536;1.262322;2.284215;2.13605;1.720243;2.58576;2.00477;1.821481;1.718647;3.12153;1.697336;1.74515;2.301152;2.370925;
2.774019;2.396739;1.308635;2.215626;2.647185;2.103459;2.093087;2.935896;3.053012;2.050106;2.552017;1.701012;1.905796;2.39926;3.792702;3.076163;2.386747;3.354294;2.62439;2.183721;2.756757;2.68204;2.140485;2.787199;1.611463;2.529181;3.027456;2.550042;1.926726;2.449541;2.704693;1.858912;3.384179;1.756416;2.464947;1.473378;1.871532;2.183968;1.252737;1.985338;2.105996;2.476257;2.775046;2.23247;1.689181;2.413707;1.833413;2.529121;2.629155;1.881105;1.954672;2.305638;1.917707;2.700901;2.139799;1.463265;1.333463;2.677249;1.570198;2.032939;2.060838;1.523286;2.263807;1.909789;2.790091;2.61399;1.277327;1.792187;2.297729;1.954996;1.502891;2.815408;2.578611;1.356512;2.221445;1.967669;2.750268;2.25901;3.110077;2.166904;3.174931;3.208375;1.71216;1.683309;2.881957;2.124424;2.045628;1.983529;1.365533;2.696553;3.343848;2.592007;2.365843;1.852158;2.740403;1.801987;1.577001;1.788961;3.017405;2.203561;1.543802;1.510888;1.562525;1.898083;1.779342;2.404077;2.827666;2.464352;2.085358;1.69713;1.588531;2.862048;2.610095;2.312637;1.267312;3.002864;2.638865;2.798116;2.349221;2.808986;1.74947;3.051277;1.889477;3.147021;2.436488;2.953027;2.739945;2.524935;2.714852;2.229131;1.361633;2.218465;3.085207;2.237724;2.149945;2.984721;3.081609;2.018449;2.639883;1.886539;2.036903;2.197495;3.491954;2.857044;2.513116;3.173091;2.600832;2.000305;2.811702;2.596821;1.694134;2.465531;1.730013;2.364782;2.618342;2.940591;1.974737;2.748981;2.954388;1.959953;3.306824;1.632384;2.527628;1.434079;2.227999;2.339138;1.313933;2.003617;2.110198;2.467898;2.844507;2.39338;1.788216;2.229192;1.634294;2.331789;2.782742;1.743605;1.936069;2.092623;1.974571;2.60463;1.720544;1.233407;1.456818;2.50496;1.281063;2.1537;2.034399;1.760991;2.582293;2.020184;2.691738;2.585999;1.327893;1.866009;2.635442;2.01358;1.672394;2.961241;2.553554;1.343243;2.218124;1.926454;2.774183;2.09019;2.944847;1.992274;3.312365;3.165569;1.701062;1.611232;2.893717;1.952155;1.741707;1.811101;1.468555;2.514088;2.842018;2.728291;2.338381;2.113371;3.090923;1.909362;1.504085;1.765936;3.095839;2.285474;1.823478;1.562431;1.736136;2.018252;1.759411;2.386539;2.824856;2.419051;2.059399;1.468394;1.710954;2.278528;2.685573;2.720277;1.383751;2.303958;2.783839;2.281045;2.409766;2.784908;1.742088;2.570481;2.502398;2.652647;3.472434;3.098733;2.74783;2.145304;
2.291453;2.720472;2.740782;3.418242;2.429366;1.91197;2.049722;2.398253;1.504727;2.608196;2.697506;2.19861;1.822491;2.590764;2.386533;2.165832;2.156543;2.282726;1.419872;2.175453;3.476255;2.791021;2.212664;2.360569;2.771468;1.811579;2.780725;2.667945;2.068323;2.090762;2.253837;3.271288;3.041352;2.678397;2.285028;2.608562;2.605779;1.973171;2.750328;2.001788;2.586248;1.987795;2.228438;2.470983;1.394738;1.573815;2.011741;2.555088;2.3421;2.363508;1.567767;1.966297;2.237376;2.509539;2.070771;2.117626;2.328412;1.919797;1.726821;2.211442;2.005818;1.789021;1.606719;2.760249;1.710596;2.042099;2.169918;1.886819;2.308117;1.634403;2.03404;2.607024;1.480954;2.398988;2.486465;1.9617;1.469128;2.737264;2.022311;1.507133;1.907464;2.122264;2.001759;2.116881;2.839473;1.943744;2.846787;2.242489;1.819996;1.394549;3.062769;1.644557;2.030958;1.679221;1.66547;3.381232;3.035753;2.408344;2.449728;1.723887;2.624979;2.020921;1.284987;2.076829;3.276455;2.969066;1.864571;1.366412;1.781326;1.814044;1.570752;2.655853;2.356978;2.413646;1.863984;1.161193;1.945082;2.657961;1.993216;2.639652;1.344668;2.900088;2.334096;2.675399;2.477901;3.557615;1.860178;3.040452;2.165927;2.714804;2.38553;3.117661;2.385219;1.985088;2.232956;2.679566;1.813264;2.589714;3.069332;2.00432;2.020058;2.717605;2.418474;2.335105;2.222098;2.037889;1.51539;1.977698;3.69185;3.22188;2.135851;2.064427;2.557315;1.95514;2.68606;2.812055;2.077133;2.41442;2.219004;3.065466;2.85198;2.724225;1.950341;2.28466;2.522261;1.989829;2.876758;2.242502;2.950295;2.022906;2.562618;2.211229;1.543137;1.625211;1.97553;2.758548;2.388524;2.164611;1.672807;1.75743;2.390528;2.852462;1.940606;1.8539;2.112216;2.117261;1.656904;2.528283;1.885079;1.873587;1.607268;2.572809;1.534246;2.060389;1.938962;1.696742;2.24022;1.606357;2.096652;2.976933;1.724657;2.278383;2.708876;1.912728;1.521639;2.616882;2.019484;1.665163;1.910399;1.913449;2.222377;1.991211;3.024441;2.197046;2.641908;2.05111;1.59613;1.437096;2.836576;1.919909;1.909395;1.761808;1.666049;3.174164;2.799353;2.428821;2.203996;1.543018;2.552471;1.990387;1.334868;2.40895;3.634559;2.835386;2.057876;1.326392;1.58876;1.53041;1.200926;2.645533;2.489546;2.364621;2.012956;1.182154;1.695453;2.530745;2.522308;2.653066;1.427713;2.863736;2.439897;3.031077;2.522537;3.153702;1.926227;2.628448;
1.896042;1.392721;2.912988;2.107881;2.707753;1.796916;1.500056;3.010938;1.929562;2.052675;2.0676;1.543028;1.696136;2.282087;3.116812;2.538874;2.130687;3.102227;1.537585;1.72718;1.989983;2.244655;1.750926;1.530893;2.187518;2.711339;1.959662;2.770929;2.458927;1.933082;2.698113;2.537564;2.367298;1.483358;2.45937;2.95196;2.442768;1.167434;2.366443;2.968621;2.782933;1.546627;1.199332;2.057479;2.410132;2.078571;2.108389;1.775046;1.464273;1.981865;1.663004;2.202354;1.847446;2.467413;2.380105;1.974606;2.018901;1.584162;2.711022;1.312306;1.534312;2.22063;1.732289;2.33754;2.427698;2.058438;1.997051;1.962906;1.946807;1.161018;1.782769;1.802239;2.9566;2.544235;1.678281;1.436073;2.850023;2.319334;3.483133;1.756478;2.060795;1.642401;2.502773;2.429139;1.021419;1.873959;1.660892;2.555538;1.338343;1.403297;2.436838;1.567425;2.862704;2.030241;2.848017;2.323237;1.64412;2.058901;3.039058;3.012012;3.342332;1.90575;2.771168;2.706748;2.464176;2.718132;1.802184;1.672599;1.637503;2.908299;2.66021;2.406931;2.357968;2.602167;2.093508;2.883826;3.293296;2.764821;2.845781;2.344998;2.129898;2.741797;2.565434;2.755494;2.169879;1.711176;1.917416;1.75758;1.764857;1.627688;2.582004;1.958609;2.579019;1.772483;1.328757;2.691759;1.738411;1.82373;2.129718;1.499509;1.598529;2.260348;3.164127;2.736956;2.446223;3.125007;1.512265;1.466633;2.217836;2.303652;2.248585;1.780126;2.069224;2.619596;2.189481;2.866311;2.3941;1.899404;2.519995;2.898695;2.277965;1.794798;2.194439;2.786235;2.354956;1.15369;2.065739;2.666947;2.603096;1.412167;1.268465;2.019651;2.314235;2.066048;2.050759;1.945585;1.744569;2.072929;1.659458;1.910148;2.060378;2.53359;2.839397;2.261101;1.923283;1.577648;3.011236;1.456374;1.567848;2.204255;1.643297;2.5545;2.135517;2.3778;1.844159;1.887744;1.848955;1.107382;1.497339;1.550309;2.822287;2.364687;1.707385;1.480378;2.868712;2.322096;3.486289;1.816385;2.187143;1.688106;2.599918;2.186252;1.166101;1.879712;2.018912;2.854939;1.295972;1.392408;2.657361;1.724521;2.909564;2.014494;2.73472;2.539633;1.406005;2.378326;2.850645;2.918722;3.214901;1.836767;2.413305;2.395951;2.342565;2.532468;1.833064;1.720477;1.771703;2.747261;2.718466;2.805337;2.905924;2.327061;1.966134;2.631961;3.226448;2.933362;3.255704;3.061515;2.173013;2.241052;3.245726;3.12347;1.80605;1.889161;1.896938;2.252648;
1.953377;2.963315;1.815879;2.12449;2.224435;1.030211;1.481143;2.06369;2.790812;3.00385;2.164384;1.932679;2.096424;2.032483;2.351632;2.544859;1.837061;2.62779;1.429578;1.770306;2.202822;1.232245;1.641334;1.734279;2.902947;1.219605;2.061352;2.288619;1.394829;2.143733;2.09826;2.573029;3.120752;1.708255;1.850086;2.563096;2.800797;1.555041;2.518235;2.696921;2.124927;2.402488;1.475575;2.824119;2.331716;2.819498;1.864603;2.248149;2.695917;1.770486;1.482006;2.632985;1.57571;1.392204;1.861708;1.473542;2.826946;3.066427;2.180426;2.355449;1.516293;2.549713;2.195985;1.341504;1.797804;3.449521;2.34902;1.625363;1.228568;1.398416;1.494022;1.692427;2.833812;2.812495;1.948405;2.252445;1.484991;2.042062;2.343886;2.433547;2.423298;1.735506;1.879355;2.549166;2.270575;1.81433;3.107247;1.96957;3.361794;1.727197;2.773447;2.626259;2.690253;2.378459;2.601891;2.637643;2.585319;1.762924;1.920115;2.864388;2.716558;2.183114;2.499866;3.273646;2.721474;2.519653;1.471472;1.957064;2.443629;3.652398;2.551992;1.573726;2.740079;2.627666;1.883081;2.435836;2.259947;1.55202;2.84681;1.959347;2.78353;2.986255;2.644078;1.943703;2.382728;2.501735;2.035641;2.885449;1.526343;3.057287;1.855198;1.900545;1.953536;1.090497;1.500824;2.137462;2.596648;2.88268;2.147381;1.86204;1.877229;2.106041;2.571084;2.801096;2.046767;2.820983;1.387741;2.187974;2.156767;1.473771;1.94333;1.791552;2.727641;1.17329;2.07019;1.965282;1.797195;2.315564;1.891869;2.566782;2.653369;1.770542;1.889931;2.342515;2.522224;1.600515;2.557987;2.875387;2.032562;2.29144;1.468303;2.775519;2.129116;2.873659;2.078182;2.549489;3.012707;1.960501;1.44626;3.13856;1.540327;1.654752;2.201241;1.573478;2.714362;3.031315;2.198186;2.092237;1.752939;2.563513;1.993768;1.355043;1.478968;3.529661;2.554896;1.421082;1.083148;1.348844;1.531005;1.746133;2.711021;2.684539;1.947925;2.275649;1.171884;1.930131;2.593045;2.772641;2.766954;1.918255;1.980815;3.004559;2.281957;2.000386;3.551278;1.991278;3.221447;1.695408;2.802857;2.348624;3.002758;2.39239;2.381309;2.65724;2.199764;1.821024;2.106606;2.591725;2.498215;2.12163;2.547601;3.348878;2.601043;2.3994;1.471007;1.979673;1.900224;2.915122;2.924821;2.176429;3.10607;3.368292;1.93076;2.44799;2.234061;2.353101;2.823902;1.698872;2.771248;2.411574;2.769883;2.154066;2.623956;2.579285;1.940371;2.913343;
2.124764;1.72293;1.276947;2.751477;2.290602;3.067181;1.698849;2.401845;1.239646;2.754688;2.460604;1.552164;1.005769;2.414527;2.958943;1.545117;1.790425;2.838449;2.162787;2.191165;2.921288;2.123411;1.854076;1.182339;2.287855;2.524426;2.498847;3.207916;1.623734;2.419816;2.289513;2.029844;2.671729;2.274664;1.325487;2.096815;2.425637;2.593094;2.647338;2.7992;2.273344;2.111093;3.309957;3.027813;2.653076;3.10163;2.595557;2.466013;3.06129;2.906879;2.89663;2.426951;1.782951;1.997479;1.403154;1.936878;1.881598;2.157299;1.635407;2.524545;1.937229;1.296057;2.856112;1.41985;1.671443;2.160609;1.466971;1.778883;2.325411;3.016409;2.747001;2.886276;2.489045;1.741557;1.795364;2.806759;1.457593;2.625549;1.83393;2.365041;2.759766;2.460127;3.631268;1.933255;3.078376;2.327769;2.216532;2.054036;1.768165;1.843427;2.399786;2.196534;0.9421499;2.270262;2.485484;2.293181;1.418837;1.762279;1.773836;2.733116;1.626294;2.191319;2.080178;2.136207;1.669812;1.679348;2.469661;1.701658;2.390001;2.856757;2.527599;2.200076;1.597696;3.308894;1.689144;1.935487;2.451649;1.797614;2.193227;2.776575;2.715971;1.875198;1.599404;1.83234;1.498351;1.448521;1.415815;2.519445;2.108192;1.876333;1.522428;2.487202;2.295763;3.140676;1.34374;2.683584;1.385082;2.822113;2.411719;1.630043;1.061127;2.502923;2.668771;1.649742;1.848299;2.895444;1.985307;2.054192;3.091758;2.184905;2.099982;1.58559;2.269141;2.999465;2.330037;3.323094;1.959008;2.200273;2.116893;1.951427;2.621646;2.498173;1.593943;1.82318;2.393541;2.638388;2.191454;2.95636;2.427738;2.217749;3.26754;3.083119;2.688981;3.177824;2.303689;2.489352;3.136461;2.987555;2.727133;2.260713;1.907596;2.0109;1.618938;2.339235;1.864465;2.619479;1.526733;2.706236;2.277886;1.13189;2.741033;1.388786;1.738157;2.314149;1.624752;1.501871;2.19254;2.936589;2.296585;2.888279;2.727745;1.816151;1.802358;2.967567;1.472579;2.74117;1.650334;2.433328;2.970747;2.468576;3.266925;1.757748;3.121176;2.230009;2.50169;2.326308;1.815373;2.247532;2.31206;2.366265;1.184573;2.051176;2.379152;2.253784;1.481196;1.901277;1.947882;2.386987;1.51627;2.123354;1.691634;2.138056;1.867256;1.752685;2.478931;1.827674;2.493849;2.820378;2.713173;2.684808;1.752962;3.546104;1.270531;1.288501;2.444775;1.858829;3.042259;3.387025;2.711241;1.839485;1.523926;2.091081;1.638707;1.3907;1.786773;2.652841;
2.427573;1.630542;1.142212;1.898058;1.941006;1.442144;1.678776;1.248353;2.150379;1.477052;1.274363;1.767588;1.862493;2.363356;2.827593;2.491321;2.309188;1.674362;2.456692;1.508463;1.407255;2.251629;1.655336;2.755056;2.845464;2.880266;1.885993;1.543131;1.731084;1.211298;1.663164;1.582685;3.630299;2.505056;1.167484;1.589994;2.56329;2.75828;2.293584;1.397406;2.326555;1.614792;2.739151;2.139634;1.522228;1.18296;2.123574;2.56711;1.834674;1.112253;2.288237;1.578806;2.257767;2.374463;2.069387;2.4122;1.852271;1.982803;2.137578;2.880741;3.585693;2.41609;2.077101;1.792037;2.100999;2.744101;1.457105;1.581725;1.346197;2.474512;2.089072;1.788604;2.927369;1.904989;1.910018;2.451385;3.097217;2.700973;2.693731;2.709364;2.363453;3.000737;2.269628;2.768199;2.11886;2.083885;2.087741;2.268755;2.511164;2.225983;2.873774;1.708925;2.5412;2.082043;1.343535;2.833242;2.321381;2.06673;1.588616;1.672415;1.59596;3.046877;1.953949;2.453271;2.332486;3.016822;1.681678;1.378708;2.825807;1.548637;2.306566;1.579601;2.453433;2.200249;1.739406;2.5799;1.810209;2.553904;2.394031;2.619519;2.62326;1.280286;1.424579;2.793097;2.228952;1.616406;1.711049;2.39889;2.360251;1.673248;1.13064;2.028039;1.884088;1.413658;1.626572;1.375928;2.133726;1.345833;1.341194;2.193152;2.046612;2.24579;2.824534;2.768563;2.3147;1.403488;2.578709;1.709974;1.324502;2.381165;1.907537;2.597517;2.586551;2.607731;1.656299;1.630336;1.534595;1.18737;1.473704;2.059457;3.590018;2.570789;1.092086;1.662744;2.480479;2.671927;2.281677;1.529943;2.351099;1.493297;2.745502;2.556255;1.679389;1.074182;2.174281;2.88499;1.886997;0.9044552;2.331749;1.77052;2.151903;2.464663;2.41635;2.297317;1.688977;1.772634;1.827016;2.962875;3.345202;2.340433;1.970012;2.197729;2.178443;2.845754;1.425202;1.659035;1.299304;2.244507;2.079904;1.840976;2.964292;1.738722;1.929676;2.878201;3.365759;2.53465;2.878179;2.920967;2.539267;2.684703;2.381525;3.027097;2.032982;2.028124;2.438473;2.055532;2.328565;1.967366;2.528293;1.772872;2.33951;2.012586;1.2576;3.338996;2.402623;2.155776;1.555391;1.752435;1.544951;2.791903;1.944977;2.51538;2.365332;2.807412;1.700226;1.703581;2.721812;1.708655;2.077401;1.989074;2.54259;2.100244;1.912104;2.877301;1.768002;2.86244;2.523855;2.604529;2.910957;1.436553;1.604856;2.440206;1.891193;1.564789;2.310185;2.697848;
1.621877;1.856252;2.412177;2.928325;2.804245;2.70347;1.611376;3.361278;1.900303;1.418688;2.600808;2.170692;3.090124;2.865541;2.711782;1.802653;1.604486;2.010524;1.510992;1.844012;1.833311;3.386449;2.92798;1.461194;1.625658;2.403475;2.048754;2.916113;1.937287;2.51748;1.509881;2.973871;2.315878;1.536433;1.318714;2.012019;3.319567;1.458029;1.459268;2.299884;1.708593;2.311985;2.991226;2.892321;2.865767;1.964149;1.866901;2.468875;2.442832;2.895093;2.208675;2.066974;2.055474;2.23003;2.827287;1.692197;1.443404;1.516539;2.107095;2.609159;2.086897;2.34998;2.360466;2.489639;2.072048;3.411654;2.632665;3.018139;2.872427;2.778026;2.962096;2.847469;3.512714;2.012232;2.152164;2.718353;2.455376;2.343875;1.862054;2.354405;1.57983;2.723061;2.440229;1.539284;3.229219;2.156396;2.44247;1.83558;1.830241;1.320376;2.141273;2.503693;2.858477;2.413012;2.865102;1.690999;1.489605;2.69983;1.626659;2.239096;1.955761;2.071023;2.867662;1.774961;3.051464;1.817573;3.205206;2.918945;3.099878;2.918978;1.522826;1.843989;2.425377;2.099807;1.651148;1.8937;2.299653;2.480063;1.936053;1.653691;1.805264;1.933425;1.596381;2.384159;1.438471;1.584722;2.127602;1.747228;1.572038;1.98389;2.823864;3.1313;2.741319;2.603417;1.731363;3.361873;1.819669;1.348257;2.710859;2.015833;2.985524;2.771469;2.736465;1.54463;1.621997;1.822729;1.599137;1.675821;1.703065;3.024957;3.165906;1.830203;1.864089;2.156591;2.295842;3.206337;1.81481;2.32083;1.777035;2.723438;2.274674;1.667132;1.630749;2.132322;3.249442;1.405852;1.623133;2.359004;1.638909;2.241559;3.101882;2.662229;2.749108;1.910888;1.929878;2.213176;2.443807;2.685169;2.306477;1.837554;1.878642;1.959569;3.112482;2.134557;1.651342;1.333651;2.349034;2.780201;1.903514;2.230819;2.62786;2.37499;2.092866;3.561049;2.972379;3.151791;2.911679;2.69518;3.025991;2.878081;3.268319;1.986336;2.110981;2.457088;2.328747;2.335611;1.8709;2.214724;1.633323;2.483474;2.457617;1.3339;3.115292;1.881632;2.554565;2.264019;1.952675;1.180737;2.246741;2.671293;2.644208;2.292149;3.15992;1.596694;1.508027;2.832911;1.896822;2.354411;1.989103;1.999491;2.931455;1.799089;2.825024;1.792969;3.156098;2.648101;3.283871;2.502731;1.630214;1.778775;2.702262;2.507247;1.354426;2.093399;2.239141;2.146878;1.830364;1.507374;1.729812;1.959457;2.01595;2.076115;1.614621;1.899345;1.826899;1.824883;
1.629257;3.440809;1.720259;3.217939;2.348835;2.570997;3.286847;3.393283;3.007279;2.109647;2.598333;2.657449;1.443458;2.490849;2.904327;2.568679;1.822213;2.856114;3.166345;2.967001;2.052517;1.603089;1.5527;2.112882;3.40027;2.887145;2.404956;2.544235;3.158178;1.554322;2.726114;2.203277;1.54451;2.408144;1.482832;2.362087;2.699387;2.462347;2.362351;2.102437;2.083879;1.799046;3.395422;2.042081;2.601998;1.360843;1.864567;2.480239;1.211244;1.897451;1.668386;2.119133;2.970739;2.093204;2.308209;1.848509;1.814796;2.503934;2.678733;1.825653;2.575804;1.703419;2.100704;2.842175;1.270531;1.617049;1.290632;2.585934;1.642898;1.917686;2.688583;2.003541;3.075289;1.615061;2.490165;2.835054;1.548004;2.230861;2.672095;2.525351;1.468384;2.673813;2.495869;1.966876;1.741732;1.651767;2.356666;2.140703;2.789212;2.013737;3.151105;2.27504;2.001985;1.10601;3.099626;1.527248;1.34361;1.519674;1.101625;2.198494;2.593971;2.263812;2.621108;1.395489;2.221068;1.588168;1.859891;1.828833;3.098158;1.985657;1.496472;1.592894;1.543676;1.873388;1.342694;2.095892;2.774955;2.109305;2.815887;1.061856;1.99916;2.455499;2.524131;2.272386;1.813272;2.434469;2.505623;2.586422;1.835491;3.455606;1.725847;3.084994;2.183967;3.034662;3.600774;3.282943;3.117699;1.966001;2.316441;2.255975;1.441687;2.711747;3.224191;2.584247;1.974291;2.891162;2.921902;2.929654;2.065904;1.659883;1.645482;2.079124;3.927358;2.543697;2.144676;2.124656;3.234834;1.503056;2.579291;2.152317;1.692954;2.412029;1.527002;2.293294;2.49885;2.886316;2.572785;1.988857;2.12492;1.666286;3.137544;1.737802;2.581466;1.507898;2.076453;2.437062;1.27601;1.959254;1.53826;2.106932;2.937361;2.172271;2.372431;1.767125;2.128134;2.220248;2.462043;1.616883;2.600859;1.701741;1.78532;2.707385;1.404995;1.675853;1.363088;2.687672;1.5422;2.209758;2.863561;1.947763;3.10218;1.521587;2.173778;2.637831;1.533823;2.465342;2.696377;2.409062;1.539341;2.819471;2.377696;2.109096;1.775623;1.649981;2.376717;2.111219;3.151732;1.795734;2.806325;2.04185;2.024142;1.105207;2.713851;1.429522;1.48185;1.577216;1.168562;2.293013;2.467099;2.581095;2.793989;1.349629;2.244003;1.495993;1.587828;1.671647;3.48362;3.13117;1.584118;1.705176;1.734732;2.013751;1.730578;3.253288;2.803258;2.766601;2.168701;1.556241;1.993535;2.04552;2.576054;1.862677;1.590226;2.214912;2.303676;2.452416;
2.025468;2.474313;1.63339;2.825195;2.297993;1.666592;2.443695;2.228903;2.460025;2.135738;2.667914;2.313174;1.699272;2.246159;2.172096;2.381134;1.548868;2.496171;2.751336;1.983317;1.625404;1.464251;2.180792;2.525013;1.58407;2.242915;1.659405;2.126419;1.780812;1.753347;1.823401;2.020325;2.353739;2.747637;3.262213;2.249233;1.441335;2.418033;1.144036;1.693185;2.00146;1.552037;2.749015;2.780005;2.23854;1.606582;1.409556;1.652479;1.411406;2.126458;1.746098;2.482663;2.487189;1.325378;1.549057;2.605217;2.754791;3.082478;1.828247;2.360173;1.611651;2.362584;1.707028;1.464508;1.562304;1.989065;2.634142;2.070798;1.214963;2.022791;1.512521;2.841568;2.442171;2.23679;2.19919;1.375773;2.251098;2.70899;2.260936;3.169291;2.481076;2.571654;2.392806;2.043265;2.679403;1.879267;1.866096;1.913138;2.530337;2.818206;2.12461;2.905276;2.470066;2.310863;2.409682;3.306322;2.503985;2.695255;3.177392;2.66529;2.774795;2.019485;2.479918;2.309745;1.607099;2.036968;1.850842;2.070735;1.491288;2.429066;1.43705;2.281948;2.234642;1.595169;3.177261;1.455508;1.928964;1.712688;1.426729;1.299941;2.595597;2.690185;2.814147;2.407137;2.986986;1.45855;1.055518;3.008975;2.272385;2.56777;1.51801;3.040128;2.292897;1.840937;2.878412;2.397506;2.738129;2.277465;2.596681;2.17783;2.032937;2.311079;2.143706;2.036246;1.8534;2.128054;2.833714;1.953822;1.587244;1.335783;2.014301;2.168332;1.483075;2.14719;1.630304;1.949682;1.814793;1.764035;1.695194;2.105565;2.608726;2.871307;3.087754;2.387548;1.425885;2.646651;1.465043;1.819654;2.232681;1.694772;2.655417;2.578938;2.590034;1.677162;1.394473;1.368196;1.719376;1.785356;1.813796;2.423078;2.45243;1.195961;1.433781;2.243375;2.641468;2.966314;1.799372;2.363196;1.565006;2.362594;1.59962;1.615327;1.705318;2.230067;2.477697;2.077;1.169884;2.284451;1.73705;3.086556;2.622605;2.314621;2.186909;1.399029;2.49123;2.798199;2.261258;2.874661;2.800068;2.334162;2.472351;1.869521;2.597734;1.77041;1.604017;1.665004;2.352355;2.608768;2.165272;2.908785;2.413125;2.310858;2.282735;3.531208;2.685289;2.974819;3.006299;2.672473;2.70739;2.280923;2.766337;2.531229;1.754949;2.111402;1.840331;2.100035;1.850516;2.629367;1.54527;2.209768;2.539633;1.64327;3.345121;1.47911;1.610817;1.73544;1.222892;1.44677;2.042017;2.812914;2.806365;2.43235;2.494526;2.035005;1.424298;3.032169;
1.659708;1.672353;2.841299;1.337579;2.205809;1.634116;3.002059;2.916287;2.488899;2.828438;2.209403;3.246801;2.62011;2.670621;2.394023;1.541127;2.232569;2.664082;2.413683;1.613369;2.15432;2.234206;2.390585;1.337362;1.380873;1.591956;2.287856;1.996415;1.499395;1.54798;1.543737;1.528609;1.752951;2.27626;1.439838;2.397688;2.556441;2.736563;2.317503;1.504647;3.290181;1.642079;1.177698;2.405575;1.723851;2.844126;2.188972;2.730882;1.711498;1.493893;1.718789;1.094499;1.790081;1.579156;3.151489;2.136176;1.255845;1.385986;2.155178;2.37206;2.416703;2.175464;2.011343;1.78554;2.800524;2.409119;1.594727;1.060764;2.199549;3.09303;2.238262;1.632482;3.123368;1.817861;2.774441;3.06662;2.627546;2.512375;1.686727;1.993336;2.858139;2.6703;3.510766;2.541661;2.617709;2.144786;2.290599;2.486232;1.832201;1.375773;1.893722;2.965406;1.853001;2.057953;2.287486;2.249747;2.39726;2.915412;2.681489;2.73476;2.81979;3.014568;2.663615;2.65203;3.127174;3.032472;1.865552;1.820672;2.044923;2.174954;1.780428;1.865547;2.388645;1.337506;2.342944;1.863912;1.675493;3.027141;2.255037;1.835447;1.740247;1.490272;1.187778;2.280039;2.298996;3.225323;2.229236;2.857109;1.879887;1.35004;2.879541;1.276693;2.243225;1.663713;2.783152;2.629537;2.291603;2.649472;2.33337;3.195188;2.430824;2.589672;2.279221;1.676747;2.321742;2.794443;2.239344;1.713219;2.258765;2.716237;2.813253;1.500607;1.551144;1.694141;2.366333;1.963756;1.594865;1.552074;1.517178;1.283117;1.942298;1.940745;1.457051;2.254074;2.558556;2.708061;2.053767;1.287949;3.025906;1.55136;1.265142;2.30651;1.54612;2.699353;2.012776;2.930747;1.771253;1.63595;1.57658;1.159807;1.867235;1.933706;3.558942;2.359648;1.401673;1.523718;2.236469;2.40723;2.654629;2.220148;2.042029;1.519126;3.160473;2.181143;1.64141;0.9445925;2.060891;2.943067;1.949061;1.407577;2.863985;1.624383;2.816462;3.061744;2.541725;2.478865;1.586434;2.164266;3.054692;2.997309;3.347703;2.605719;2.554875;2.446533;2.605019;2.729172;2.005857;1.421757;1.894971;3.005545;2.061972;2.102103;2.320227;1.949962;2.73122;2.664702;2.742002;2.546953;2.662427;2.867342;2.347246;2.363723;2.867752;2.781654;1.900103;1.817853;2.093734;1.993266;1.703826;1.960463;2.548495;1.574249;2.380888;1.961158;1.24863;3.291754;1.698697;1.968458;1.739608;1.729983;1.29929;2.53143;2.35203;3.231068;2.775731;2.380462;
1.800264;2.778139;1.880335;2.780977;1.704691;2.524701;2.605474;1.917599;1.264644;2.999191;1.912657;1.358007;1.747758;1.258089;2.233689;2.93266;1.702702;2.509284;1.832089;2.750973;1.792225;1.179678;1.794414;2.969705;2.766375;1.31553;1.362039;1.993799;1.733251;1.12005;2.396843;2.938349;2.911826;2.347336;1.990944;2.344294;2.818404;2.90477;2.904148;1.530273;2.429816;2.720569;2.707186;2.290749;2.929387;1.452106;3.290948;2.319635;2.249865;3.334905;3.364714;2.844281;2.537834;2.647672;2.754632;1.412671;2.204096;2.606953;2.482412;2.592573;2.494884;2.657034;2.44366;2.187308;1.537473;2.002212;1.663025;3.301088;2.428891;1.755597;2.330749;2.988166;1.663454;2.658699;2.517294;1.499114;2.302572;1.580286;2.406385;2.75388;1.904236;2.102844;2.281844;2.555655;1.751586;2.484879;1.56666;2.628254;1.968359;1.775549;2.139864;1.751975;1.73603;1.408776;2.520416;2.782827;2.78687;2.088331;2.706706;2.562786;2.638566;2.909404;1.969731;2.380352;1.794692;1.886517;2.730732;1.767068;1.372668;1.296206;2.958244;1.557479;1.424581;2.914494;1.910376;2.630943;1.90414;2.427249;2.655303;1.546588;2.173904;2.347554;2.194392;1.782883;2.536797;2.175871;2.119692;2.001862;1.595012;2.78061;1.572289;2.766349;1.575034;2.675318;2.25316;2.312345;1.687861;2.737723;1.968379;1.531823;1.493509;1.300666;2.529015;3.063354;1.674989;2.213603;1.560347;2.798333;1.843936;1.205127;1.46619;3.223595;3.026111;1.365954;1.323861;1.873623;1.7779;1.191848;2.897642;2.936582;2.711902;2.43029;1.707389;2.34124;2.687234;3.075835;2.439994;1.897852;3.059604;2.557823;2.805797;2.528981;2.619671;1.504984;3.52093;2.441117;2.237321;3.081507;3.023348;2.896491;2.591181;2.690179;2.240998;1.593505;2.456793;2.762353;2.458855;2.272084;2.602716;2.757303;2.791858;2.29014;1.544247;1.984823;1.486127;3.270013;2.363333;1.889373;2.109785;3.347195;2.035744;2.440623;2.606616;1.538294;2.084251;1.624233;2.456064;3.005823;2.068088;1.813353;2.099444;2.581215;1.845986;2.526276;1.339146;2.740098;2.052752;1.854297;2.113554;1.490392;1.827054;1.481963;2.875028;2.898757;2.796942;2.070596;2.480499;2.535408;2.571269;3.080802;1.767961;2.701977;2.181504;1.703578;2.824632;1.809676;1.16624;1.342707;2.68235;1.367363;1.493233;2.796701;1.473163;1.976452;1.907949;2.483082;3.015821;1.66986;2.794726;2.453641;2.552415;1.522967;2.751168;2.419563;2.259088;2.356509;
1.524041;2.524911;2.600562;3.21819;2.103006;2.456144;1.653829;2.113929;2.002947;1.437299;1.270089;1.995425;2.67464;2.16923;1.888023;2.56026;1.540264;2.461591;2.745879;2.632036;2.036884;1.209344;1.756436;2.900056;2.538841;3.293094;1.907273;2.396257;1.956427;2.390317;2.416932;1.514583;1.437703;1.521545;2.290733;1.731159;2.489931;2.250518;2.058135;2.063644;2.854454;3.233731;1.942959;2.651459;2.924473;2.685503;3.043169;2.901403;2.774785;2.357248;1.890673;1.581986;2.243891;1.425971;2.014551;2.612885;1.663964;2.037652;2.431646;1.437987;3.076783;1.871648;1.834624;2.082227;1.48022;1.344169;2.597049;2.747997;3.158903;2.61243;3.142039;1.218836;1.280876;2.837521;1.725971;2.378093;1.6182;3.063611;3.254118;2.001664;2.693676;1.991725;2.739805;2.522475;2.139985;2.018274;1.383668;2.43184;2.529353;2.434268;1.280215;2.261315;2.236678;2.314054;1.329613;1.12616;1.668191;2.130734;1.475206;1.402838;1.894584;1.427942;1.64677;1.582338;2.123476;1.889402;1.766582;2.827052;2.823564;2.436461;1.659094;3.320287;1.462025;1.638942;2.427334;1.215052;2.929511;1.762674;2.798457;1.848511;1.72093;1.678778;1.613305;1.556973;1.887281;3.03334;2.586398;1.479855;1.796599;2.704481;2.442186;3.203952;1.893362;2.690822;1.550091;1.951264;1.90605;1.578383;1.245104;2.049337;2.457133;1.819948;1.888979;2.205181;1.639165;2.250668;2.758917;2.914945;1.883287;1.448017;1.700358;2.732072;2.54322;3.611709;1.994242;2.410522;1.998888;2.09919;2.447314;1.335644;1.767375;1.652704;2.142458;1.74352;2.286122;2.440715;1.95454;1.981006;2.829051;3.439936;1.919753;2.750167;2.730061;2.266846;3.06615;2.582872;2.97032;2.183878;1.909419;1.804121;2.086244;1.691097;1.972184;2.513151;1.715424;2.32336;2.539032;1.312849;3.239533;1.758603;1.950361;1.923044;1.779058;1.483767;2.470839;2.768706;2.910054;2.805196;2.885413;1.09687;1.201539;2.967382;1.743363;2.29161;1.546416;2.788025;3.395723;1.788674;2.841755;1.850875;2.796579;2.806806;1.971243;2.321299;1.263158;2.252581;2.503024;2.686077;1.393481;2.10436;2.375873;2.188735;1.428377;1.010316;1.984482;2.306361;1.380425;1.418216;1.703121;1.571839;1.462466;1.443381;2.020849;1.996347;1.784124;2.733834;2.822147;2.645299;1.573079;3.151991;1.620604;1.524992;2.432487;1.601058;2.693866;2.756424;2.750408;1.543037;1.75432;1.953491;1.657776;1.87802;1.536359;2.853928;2.735594;1.006807;
1.882826;2.493512;2.082722;2.154184;1.824998;1.824705;2.23644;1.576094;1.166754;1.490795;2.952495;1.103337;1.53914;3.067754;1.587555;2.537582;1.731086;2.832192;3.324852;1.319405;1.974412;2.345347;2.656974;1.72903;2.885493;2.439559;2.146559;2.247215;2.065473;2.73643;2.229549;2.805651;1.722597;2.599295;2.7662;1.866384;1.827083;2.894201;1.446033;1.589548;2.0349;1.060186;2.899746;2.644907;2.142405;3.23111;2.072319;2.730019;1.568877;1.479342;1.841163;3.13558;2.472955;2.21227;1.24619;1.952308;1.694417;1.160241;3.021726;2.880618;2.598099;1.99667;1.236904;1.740686;2.254756;2.564229;2.709153;1.536207;2.628887;2.256618;2.354365;2.322943;2.876333;1.693411;3.563177;1.846494;2.448273;3.622839;2.74332;2.630903;2.370407;2.845926;2.963724;1.432819;2.348442;2.545478;2.675303;2.455553;2.9562;2.731622;2.906429;2.597057;2.324476;1.909994;2.360255;3.228039;2.715831;1.960884;2.62755;3.067256;2.344492;2.518199;2.14528;1.689632;3.024633;1.414774;3.074372;2.553611;2.612182;2.788887;2.853579;2.668655;1.64845;3.218843;1.89727;2.647252;1.767286;2.477239;2.220195;1.58876;1.71922;1.414958;2.792889;2.771771;2.702632;1.496434;1.790834;1.92236;1.88093;2.480558;1.802097;2.163465;1.860981;1.531257;2.391972;1.690783;1.269692;1.499891;3.053961;1.407184;1.744842;2.839945;1.58439;2.825045;1.714037;2.665733;3.204066;1.307113;1.821154;1.900701;2.800953;1.850022;3.064586;2.182527;2.077879;2.235241;2.349866;2.63304;2.188066;2.791778;1.695436;2.635099;2.464351;1.831185;1.830428;2.499946;1.565298;1.597075;2.131711;1.101501;3.014312;3.052529;2.333643;2.97409;2.048958;2.910889;1.552417;1.375468;1.781053;3.090987;2.291216;1.738406;1.346154;1.983947;1.832228;0.9986356;2.978602;2.831843;2.728061;2.00313;1.197288;1.881806;2.137479;2.549217;2.472619;1.440442;2.620387;2.056011;2.514819;2.320562;2.941126;1.795892;3.665637;2.1798;2.483762;3.535632;2.703482;3.001083;2.261622;2.650099;2.955817;1.341417;2.160471;2.185591;2.831334;2.479255;3.087232;2.540483;2.843775;2.550798;2.448472;1.916301;2.306336;3.419378;2.58808;1.947838;2.395739;2.931346;2.337425;2.306009;2.29949;1.687712;3.092283;1.508644;3.170805;2.943535;2.634774;2.682354;3.02945;3.073122;1.859688;2.773172;1.523235;2.902761;1.988213;1.745307;2.548788;1.701968;1.897532;1.569151;2.14757;2.419697;2.889263;1.604805;2.417287;2.301295;
2.466147;2.880334;2.538953;1.685589;2.787994;2.417963;2.944121;3.541318;2.004834;2.560557;1.769097;2.340006;2.042479;1.534767;1.178563;1.701174;2.062037;2.387038;1.788649;2.437807;2.227685;2.302679;2.334053;3.518023;2.256248;3.138411;2.830716;2.509051;2.822559;2.481722;2.538686;2.152156;1.56074;2.183819;2.051678;2.23082;1.652741;2.222249;2.268649;2.986477;2.3502;1.736333;3.422585;2.24568;2.420101;2.12278;1.318029;0.9711289;2.087867;2.677668;2.825224;2.910206;3.037362;1.052205;1.438345;2.684911;1.940472;2.221756;2.249185;3.052422;3.122406;2.073748;3.444516;2.450274;2.556247;2.87037;2.91943;2.29441;2.197673;1.802385;2.831977;2.404168;1.334105;2.321434;2.069088;2.67302;1.139458;1.048047;1.373702;2.220482;1.398729;1.90758;1.3096;1.460746;1.503982;1.682883;1.520955;1.874784;2.071495;2.929113;2.9076;2.554979;1.583595;2.661258;1.388129;1.568696;2.183532;1.637471;2.67065;2.541252;2.289628;1.443402;2.175924;2.206464;1.57684;1.80494;1.890283;3.868952;2.970063;1.635181;1.322471;1.820872;2.283084;3.078792;1.834224;2.5292;1.652241;1.994557;2.098471;1.568899;1.505373;2.29546;3.17799;1.96914;1.702433;2.640624;2.262511;2.739192;2.515124;2.670133;2.569489;1.809522;2.69531;2.385785;2.593935;3.453168;2.03932;2.542271;1.913971;2.244169;2.244459;1.450523;1.196459;1.782711;2.116824;2.446331;1.97113;2.359916;2.15757;2.436934;2.30639;3.743825;2.166572;3.420074;2.638151;2.623123;2.926496;2.557894;2.73957;2.040164;1.628098;2.012687;1.993644;2.318477;1.567851;2.149663;2.008899;2.902568;2.430212;1.738299;3.519276;2.106867;2.627173;1.987917;1.379019;1.054985;2.193767;2.758842;2.969957;2.807206;2.954676;1.114997;1.468159;2.919239;1.904654;2.477111;2.008814;2.982723;3.118564;2.103273;3.535733;2.314016;2.475365;2.64333;2.930548;2.540063;2.209386;1.720426;2.583602;2.38891;1.327873;2.391327;2.173029;2.364278;1.212729;0.9533722;1.347864;2.329724;1.361258;1.950699;1.465889;1.508561;1.537697;1.745937;1.584997;2.128734;1.953611;3.301687;2.665194;2.491903;1.580947;2.695539;1.446162;1.4607;2.10871;1.467715;2.681409;2.800151;2.301689;1.370762;1.958808;2.192631;1.569962;1.867287;1.989795;3.496306;2.166622;1.69215;1.300539;2.828393;2.67609;2.640164;2.201481;2.148364;1.694412;2.932502;2.304186;1.375058;1.442248;2.122647;3.35342;2.211942;1.393851;2.652244;2.304004;2.875761;
2.824382;2.029292;1.487405;1.827418;2.990188;2.315899;2.401898;2.889959;1.970004;2.218401;2.835379;3.178854;2.643026;2.434962;2.754327;2.943987;2.247153;2.353903;2.155495;2.122946;1.821504;1.885231;1.634222;1.7314;1.892864;2.403593;2.150359;2.20707;2.141889;1.363185;2.724905;1.545419;1.738643;2.050653;1.521029;1.361489;2.132801;2.630177;2.576206;2.582109;2.52818;1.951656;1.703407;2.166104;2.163569;2.804881;1.796199;2.719149;2.590549;2.212597;3.120113;2.23301;1.95613;2.828304;2.113184;2.76605;1.815326;2.080464;2.425221;2.338186;1.176573;2.336237;2.378819;2.335782;1.708205;1.557884;1.738755;2.220546;2.14448;1.81038;1.847476;1.985187;1.408266;1.696974;2.034856;1.688669;2.441629;2.445126;2.801775;2.785003;1.403446;2.576568;1.055135;1.433778;2.224077;1.53381;2.177537;2.048403;2.790975;1.647457;2.137093;1.518464;1.469009;1.593182;1.532162;2.797925;2.429592;1.727446;1.357628;2.348228;2.25326;2.928156;1.69565;2.456156;1.406454;3.092537;2.27747;1.103174;1.593345;2.537469;2.919136;1.819967;1.453227;2.533671;1.754444;2.51436;1.89006;2.878874;1.841235;2.307922;2.288573;2.808607;2.182392;3.171484;1.753788;2.695296;2.337937;1.969137;2.904226;1.888821;1.243952;1.482954;2.651691;2.49288;2.168639;2.633798;2.076757;1.99511;2.72166;3.343306;2.464034;2.148801;2.600802;3.186877;2.58951;2.607111;2.246907;2.186139;2.056181;1.783623;1.56695;1.898764;1.938988;2.555877;1.978679;2.069047;2.194238;1.568501;3.019888;1.54445;1.817876;1.924891;1.277949;1.032868;1.847346;2.848361;2.394659;2.399324;2.657908;1.75974;1.610608;2.255471;1.988455;2.525326;1.712857;3.008272;2.93438;2.473943;3.220184;2.24154;2.157601;2.728077;2.078428;3.03232;1.842676;2.23729;2.234735;2.218363;1.193584;2.548182;2.581172;2.270628;1.633464;1.496301;1.566065;1.894859;1.906917;1.982847;1.731568;1.77328;1.451344;1.497483;2.01604;1.837878;2.267661;2.112885;2.62277;3.004228;1.511892;2.925758;1.19049;1.530947;2.494906;1.452242;2.184934;2.220151;2.751596;1.764679;2.042742;1.422205;1.488814;1.768927;1.696075;2.726502;2.341245;1.662569;1.206297;2.012939;2.010507;3.146322;1.585362;2.219712;1.450254;2.821054;2.258572;1.224465;1.577309;1.781992;2.905234;2.13548;1.59528;2.610032;1.50748;2.873024;2.77932;2.884285;1.984582;2.042648;2.190585;2.797266;2.600442;2.7309;1.876984;2.399924;1.934599;2.443722;
2.615159;2.065013;2.317847;1.58092;1.847068;1.791684;1.207348;1.433233;1.437845;2.784024;2.220071;1.398968;1.412143;1.912128;2.58667;3.539395;1.830193;2.548939;1.311089;2.345675;2.221341;1.07528;1.089906;1.661252;2.872261;1.973712;1.531285;2.629993;2.331521;2.68655;2.803674;2.861882;2.735731;1.761567;2.655546;2.93853;2.550009;2.741533;2.560788;2.363777;2.239132;1.927589;2.579246;1.996766;1.811332;1.805307;2.978655;2.507598;2.451495;2.614875;2.528168;2.280875;3.164952;2.894844;2.235044;2.555347;2.585381;2.60611;2.229641;2.10472;2.802659;1.567428;1.541217;2.424336;2.089311;1.779132;1.671548;2.243319;2.073681;2.849696;2.051199;1.320987;2.627729;1.786457;1.815101;1.690609;1.516336;0.9499093;2.734367;3.228157;2.715358;2.705576;2.437161;1.17259;1.552382;2.208674;1.582578;1.899385;1.926271;2.895484;2.838449;2.053595;3.504907;2.141749;2.762181;2.726724;2.970605;2.573935;2.179069;2.252787;2.5824;1.807343;1.801436;2.111674;2.548416;2.358742;1.436007;1.609636;2.186581;2.169209;2.104193;1.953677;1.82987;1.708142;1.819991;1.63975;2.222889;1.488677;2.403613;2.310531;2.534426;2.302815;1.074156;2.400019;1.316202;1.050521;1.96852;2.054555;2.694314;2.380522;2.046647;1.428202;1.850789;1.730025;1.094269;1.335797;1.543964;2.674165;2.370759;1.40589;1.193777;1.823264;2.404634;3.485503;1.917473;2.552783;1.286798;2.279118;2.393239;1.287517;1.468871;1.715801;3.145461;2.022277;1.485464;2.764521;2.143556;2.618371;2.783363;2.834207;2.749857;2.046007;2.413639;2.778457;2.531041;2.636678;2.340455;2.20977;2.317968;1.835796;2.803395;2.054564;1.548618;1.700459;2.730337;2.403834;2.469549;2.657263;2.553612;2.23526;3.317395;3.254855;2.71336;2.562949;2.757704;2.700641;2.229859;2.206807;2.616673;1.618574;1.527224;2.360857;2.138476;2.060244;1.476023;2.214548;2.060292;2.683818;1.808634;1.218531;2.739285;1.612917;1.984848;1.710014;1.324062;0.9433478;2.498154;3.067177;2.776551;2.7436;2.456241;1.222206;1.663493;2.468685;1.941227;1.921838;2.098457;2.882256;2.815902;2.155064;3.296621;2.202243;2.743514;2.660255;3.029258;2.910673;1.954862;2.224581;2.567524;1.676425;1.574656;1.982347;2.658372;2.159281;1.587319;1.629083;1.384445;1.999949;1.569011;1.710691;2.123949;1.729751;1.542757;1.59414;1.559443;1.532373;2.670138;2.073099;2.476732;1.963537;1.493802;2.949327;1.828472;1.270447;2.195771;1.571041;
2.039498;2.902232;2.7543;1.986629;2.72895;1.685926;2.7101;2.847893;2.581621;2.025826;2.424394;2.583791;1.7084;3.214457;2.227676;2.58153;2.131927;2.619911;2.393679;1.315566;1.881044;1.900048;2.263235;2.52554;2.985464;1.560128;2.850912;1.854903;2.025502;2.584352;1.928755;2.042419;1.593365;1.550299;2.521967;1.629974;1.64075;1.419327;2.499426;1.2127;1.486264;2.243771;2.04728;2.09304;2.078234;2.488632;2.96183;1.385187;2.464041;2.26724;2.415834;1.734715;2.987659;2.418055;1.567114;1.798185;1.906564;2.653276;2.558903;2.905452;2.056499;2.831086;2.686596;1.967265;1.539792;2.896552;1.947054;1.831435;1.937491;1.388197;2.555991;2.708704;2.217697;2.288411;1.849541;2.89201;1.624797;1.429037;2.138274;3.063541;2.897491;2.012259;1.411671;1.455025;2.018826;1.429754;2.214873;2.22074;2.933854;1.934541;1.878378;1.858558;2.343454;2.562363;2.634628;1.379581;2.311031;2.101496;2.470411;2.034883;3.456596;1.779515;2.84007;1.765036;2.303853;2.744279;3.489785;2.279999;2.587444;2.64281;2.652647;1.406634;2.723656;2.453419;2.683892;2.145149;2.975564;2.984372;2.34372;1.807921;1.831283;1.772417;2.386349;3.332601;2.829017;2.464946;2.780763;2.970037;2.182272;2.854987;2.646466;2.020112;2.871519;1.731008;2.57372;2.75169;2.985942;1.857068;2.204047;2.61097;1.841333;3.181311;1.830449;2.384432;2.294362;2.633013;2.481111;1.343508;1.835784;2.288096;2.287031;2.304908;3.026224;1.466787;2.53897;1.851546;2.137111;2.836167;1.850876;1.932735;1.711227;1.534253;2.4092;1.616158;1.738893;1.475321;2.391644;1.133715;1.77863;2.090307;1.827473;2.07012;2.197418;2.478321;2.510847;1.242567;2.65901;2.276647;2.505623;1.74446;2.943971;2.842278;1.613086;1.613371;1.956932;2.528032;2.265633;2.647498;2.091808;3.094038;2.685911;1.867336;1.633739;3.008269;1.854433;1.9362;1.995609;1.370507;2.574605;2.708606;2.542282;2.124494;1.585466;2.640526;1.651415;1.429133;1.833338;2.858814;3.07859;2.133791;1.486398;1.571764;1.935573;1.679174;2.393417;2.119631;2.965349;1.819694;1.573841;1.653563;2.382016;2.812792;2.635018;1.29619;2.426839;2.196943;2.366795;2.145368;3.535153;1.759466;2.860803;1.76505;2.63554;2.56463;3.124231;2.058129;2.436656;2.246434;3.038129;1.29998;2.688193;2.751007;2.468182;2.702137;2.912243;3.254725;2.154404;2.585442;1.813318;1.418481;1.946612;3.604475;3.076099;1.937793;2.826632;2.520013;
2.717915;2.566912;2.877066;1.452695;2.820359;2.646414;3.092754;2.488643;2.505898;2.738665;2.313334;2.549354;1.334461;1.121351;1.951886;2.677531;2.107355;2.383651;2.626054;2.350776;1.406392;1.882696;2.676344;2.04336;2.184383;1.60528;2.247414;2.5754;2.412093;1.931077;2.367527;2.101939;2.060377;3.134943;1.949296;2.581929;1.70782;2.042784;2.343846;1.518477;1.673548;1.560209;2.462115;3.232721;2.689185;1.806874;2.616117;2.090613;2.462785;2.774354;1.923391;2.479211;1.88238;1.83294;2.542396;1.531796;1.618521;1.356925;2.597032;1.094292;2.185348;2.915037;2.040661;2.832098;2.28277;2.601732;3.148516;1.339202;2.673131;2.446044;3.035684;1.879698;2.647495;2.481404;1.806043;2.2889;1.448516;2.067926;1.957403;2.045193;1.523211;3.043693;2.447071;1.376186;1.032043;2.251008;2.0555;1.979357;1.511601;1.337688;2.411718;2.506071;2.434029;2.377336;1.756176;2.279952;1.975334;1.571018;1.799255;2.9635;2.372453;1.569919;1.532366;1.624632;1.607952;1.220049;2.44638;2.722679;2.583168;2.295191;1.649501;1.847765;2.626376;2.7644;2.60868;1.442592;2.553484;2.456793;2.095441;1.665909;3.432445;1.895015;3.380165;1.674914;2.85566;3.250437;3.509413;2.622778;2.902529;2.607312;2.824981;1.750653;2.619791;2.691738;3.007508;2.209676;2.558045;2.849072;2.544889;2.255727;1.529495;1.346695;1.828421;2.773865;2.246737;2.081314;2.848896;2.476028;1.605091;2.248382;2.362274;1.758454;2.488857;1.848225;2.724408;2.320412;2.482888;2.064758;2.32905;1.975131;2.182569;3.23567;1.895244;2.904455;1.52317;2.024523;2.195208;1.289505;1.688965;1.690627;2.695833;2.840338;2.92876;2.036677;2.400661;2.193556;2.590507;2.501527;2.120105;2.582243;2.092092;2.136431;2.177369;1.300148;1.862956;1.624525;3.11425;1.048577;2.11578;2.815672;2.038684;2.685968;2.367752;2.66882;3.201949;1.656928;2.45195;2.373594;2.812587;1.696292;2.624122;2.479279;1.897969;2.153812;1.525873;2.142831;1.803289;2.148008;1.588437;2.733019;2.782788;1.533172;1.196781;2.532616;1.687184;1.789656;1.713579;1.475369;2.779481;2.437386;2.360514;2.288399;1.754363;2.149645;2.054544;1.623748;1.839766;3.42879;2.164298;1.512564;1.375111;1.454955;1.589839;1.218997;2.553257;2.576277;2.296669;1.829036;1.203667;2.322691;2.17721;2.659712;3.078233;1.632334;2.385198;2.777306;2.734169;1.70244;3.119762;1.652472;3.614745;2.270407;2.857303;3.229207;3.092385;2.959956;
2.501945;2.537986;1.583076;3.654872;1.379006;1.190346;2.233554;1.341469;2.866989;2.607517;2.597515;1.488418;2.11336;1.414193;1.685359;1.748013;1.463195;3.005999;2.913761;1.552344;1.400928;2.809886;2.971194;3.400612;2.001269;2.384998;1.443066;2.599743;2.249864;1.554982;1.295912;2.477353;3.292407;1.759747;1.167354;2.680325;1.874843;2.894746;2.042702;2.304262;1.853749;1.885446;2.049196;3.099318;2.719481;3.257218;2.153889;2.076435;2.023637;1.646224;2.772217;1.959045;1.231022;1.273348;2.747833;2.312758;1.953038;2.404766;2.752909;2.227283;2.104203;3.365873;2.996035;3.109555;2.571928;2.661247;2.527554;3.143914;2.473769;1.64141;1.879859;1.616899;2.149645;2.05394;1.766544;2.210251;1.934469;2.105532;2.472846;1.617637;3.017917;1.70828;2.25739;1.957139;1.441516;1.66727;2.981754;2.9594;2.727265;2.411787;2.542545;1.48061;1.503191;2.665694;1.616272;2.847961;2.279605;2.596097;2.006273;1.990224;2.917779;2.496299;2.01918;2.172786;1.973426;2.541187;1.606477;2.267488;2.356184;2.282763;1.317742;1.987908;2.47693;1.917536;1.607398;1.391495;1.629036;1.922159;1.668047;1.703975;1.41574;1.598422;2.273962;1.763087;1.532456;1.988366;2.768788;2.898375;2.800298;2.557132;1.546982;3.263292;1.535758;1.230453;2.774649;1.567601;2.700798;2.512928;2.858634;1.550682;2.02673;1.382031;1.629413;2.045012;1.378001;3.348609;2.596106;1.429889;1.340145;2.783957;2.744792;3.071734;1.831469;2.142022;1.496769;2.553083;2.164362;1.540633;1.250655;2.678353;3.706909;1.845925;1.164301;2.357092;2.089294;2.966623;2.46944;2.612935;1.762292;1.878348;2.311166;3.2046;2.64325;3.218576;1.995303;2.403872;1.941005;1.973228;2.490538;1.824476;1.168936;1.258971;2.423237;2.047488;1.80273;2.236399;2.857116;2.282245;2.120176;3.369151;2.998931;3.189068;2.712942;2.719014;2.624777;2.866454;2.695651;1.647023;2.258421;1.856626;2.095102;2.040745;1.954201;2.396104;1.972058;2.089655;2.36635;1.798818;2.691145;2.000544;2.094949;1.882469;1.357938;1.602791;2.610253;2.634071;2.599141;2.237139;2.579166;1.525478;1.517504;2.668509;1.619277;2.924171;2.413359;2.653185;2.093767;1.770769;3.159507;2.503121;2.411959;2.449448;1.921971;2.526536;1.786367;2.455791;2.491506;1.696557;1.498037;2.543258;2.629964;2.445624;1.715664;1.245628;1.896755;2.431386;1.580021;1.851882;1.428787;1.543709;2.020161;1.636757;2.125769;1.933665;2.7266;2.643314;
2.644594;2.921225;2.178661;1.453746;2.983703;2.299706;2.845002;2.42688;3.187559;1.840333;3.138998;1.543194;2.625025;2.349022;3.819333;2.684785;2.425225;2.384963;3.179352;1.136237;2.711519;2.591631;2.600074;2.277189;2.930681;2.899187;2.558702;2.564528;2.106832;1.825409;2.459953;2.70947;2.256422;2.501037;2.722258;2.657371;1.705118;2.675584;3.237797;1.61355;2.163585;1.535081;2.650016;2.719469;1.860427;1.761899;2.138114;2.468628;1.622968;3.334795;1.591406;2.535726;1.612445;2.025221;2.346921;0.9886053;1.931122;1.875332;2.286301;2.244348;2.829311;1.752212;2.099111;1.828361;2.428935;2.87639;1.405667;2.350213;1.974364;1.734302;2.702025;1.873325;1.560572;1.539968;2.699542;0.9864635;1.988146;2.032271;2.254848;2.453601;1.718849;2.273648;3.238502;1.173454;2.482142;2.301538;2.467666;1.823451;2.884236;2.403933;1.712847;2.162048;2.161237;2.825008;2.453249;2.091043;1.448779;3.027899;2.609102;1.65513;1.140343;3.037191;2.29496;1.676619;1.499237;1.24644;2.740858;2.625103;1.930779;2.334429;1.596267;2.64819;1.658677;1.795668;1.548737;3.172238;2.352377;1.749396;1.298042;1.283397;1.90446;1.283739;2.411853;2.031272;2.793751;2.193002;1.514286;1.798239;2.970594;2.742468;2.112842;1.426786;2.682526;2.415513;2.676507;2.522304;3.158837;1.849751;3.253397;1.628217;2.88764;2.757945;3.840734;2.629993;2.235781;2.569928;3.003437;1.153632;2.779967;2.798195;2.372765;2.428138;2.639956;2.568011;2.507011;2.305944;2.180376;1.870027;2.707208;2.729572;2.637348;2.32526;2.648814;2.648537;1.499795;2.763113;3.073343;1.765184;2.220036;1.541373;2.76449;2.869512;2.11128;2.090632;2.172161;2.475348;1.513926;3.594664;1.474605;2.562637;1.669001;2.21581;2.149731;1.128732;1.744896;1.639289;2.246218;2.067489;2.6903;1.656088;2.337763;1.866072;2.867302;2.68056;1.474727;2.30421;1.800222;1.700985;2.560163;1.943389;1.596312;1.540439;2.824557;1.124287;2.047322;2.215177;2.299602;2.484871;1.639526;2.482899;3.253322;1.165306;2.609857;2.38228;2.272983;1.920189;2.639782;2.129515;1.685453;1.989203;2.040077;2.703228;2.710689;2.131919;1.791369;2.827734;2.702823;1.617169;1.009043;2.993721;2.164335;1.743444;1.534176;1.247424;2.866748;2.84826;2.802589;2.614077;2.133471;2.605616;1.488007;1.533746;1.536549;2.796175;2.928591;1.894763;1.59262;1.88207;1.980036;1.19074;2.378211;2.236095;2.569613;2.161473;1.875842;1.808578;
2.589851;2.306079;1.40579;1.903662;1.803239;2.208289;2.258774;2.63125;1.422024;2.611058;2.160046;2.608567;2.329643;1.898268;1.915879;1.92311;1.941046;2.493707;1.869335;1.611936;1.566959;2.68133;1.515489;2.030726;2.479403;2.194944;2.362083;1.898276;2.757914;3.133576;1.723266;2.044658;2.880891;2.709007;1.519657;2.419802;1.930515;1.715513;2.371793;1.423833;2.237038;1.673044;2.538165;2.039509;3.168975;2.158582;1.91962;1.147527;2.818107;1.709306;1.286308;1.889786;1.409739;2.39672;2.006632;2.418745;2.275121;1.796756;2.571956;2.248082;1.741873;1.335356;3.411929;2.893677;2.00291;1.385444;1.814471;2.018535;1.602906;2.436549;2.286453;2.800294;1.776237;1.776824;1.979025;2.934382;2.313445;2.571066;1.250051;2.673547;2.612272;2.437264;2.574858;3.23351;1.832299;3.342592;2.003443;2.944845;2.809803;3.425408;2.215714;2.154206;2.766997;2.650558;1.646226;2.156619;3.096783;3.063494;2.027641;2.382626;2.291669;2.448712;2.454856;1.423195;1.488189;1.564012;3.184839;2.662816;2.394794;2.211794;2.732521;1.511017;2.399688;2.559012;1.534081;2.599865;1.868145;2.590637;2.111661;2.637975;1.91091;2.23364;2.323495;2.101022;2.962284;1.539946;3.041045;2.088766;2.455592;2.292587;1.59577;2.004938;2.11463;2.759146;2.176767;3.090139;1.412353;2.667783;2.269572;2.580251;2.171719;2.059952;2.163416;1.993025;1.747394;2.316146;1.839214;1.598832;1.560598;2.859529;1.658214;2.117943;2.466108;2.037178;2.27816;1.652181;2.473869;3.402946;1.711653;2.093138;2.707187;2.744425;1.736311;2.482772;2.216277;2.184357;2.280162;1.656267;2.18587;1.76088;2.66972;1.971977;2.928464;2.310402;2.147527;1.128328;2.583399;1.579576;1.286369;1.855687;1.395953;2.513691;2.171384;2.406847;2.262204;1.671454;2.519492;2.048522;1.498159;1.50748;3.483719;3.001964;1.971828;1.36129;1.916083;2.046068;1.772832;2.86283;2.210602;2.963176;1.793217;1.844734;2.136994;2.960689;2.094738;2.782347;1.492568;2.691995;2.51478;2.21943;2.424509;3.152127;1.72679;3.343346;2.182945;2.777289;2.875915;3.221828;2.21036;1.958993;2.458423;2.890912;1.697002;2.250367;3.059315;3.027621;2.135968;2.412574;2.495003;2.875999;2.377179;1.54008;1.504583;1.627836;3.385671;2.688253;1.538971;2.755701;3.030813;1.859196;2.323396;3.000392;1.566774;2.519511;1.962663;2.735112;2.470243;2.342782;1.900804;2.722717;2.429261;1.931501;2.959801;2.137088;2.630074;1.737187;
2.45342;2.553958;2.853323;2.155383;1.390787;2.957412;2.631316;2.572657;2.63569;2.57024;1.536824;2.958657;2.227837;2.92171;3.298474;3.338072;3.043991;2.479192;2.836946;2.759558;1.34639;2.386043;2.712868;2.434236;2.667628;2.17746;2.665906;2.515819;2.339081;2.060249;1.523033;1.812672;2.785381;1.964148;2.274959;2.823373;2.456279;2.162195;2.122009;2.356989;1.696679;2.667885;1.534284;2.91928;2.351128;3.220659;2.509574;2.599802;2.59397;1.843575;2.994929;1.583115;2.102615;1.296815;2.101631;2.091604;0.9853946;1.354066;2.082576;2.8116;3.124799;2.892685;1.945693;2.584494;2.359841;2.26143;2.738643;1.493127;2.189315;2.212264;1.926896;2.628926;1.902998;1.213371;1.259988;2.626894;1.439594;2.150888;2.664335;1.988235;2.753708;2.004583;2.738457;3.095038;1.244196;2.280067;2.166078;2.400573;1.899519;2.250358;2.356611;1.783017;2.060982;2.139989;2.117337;1.917801;1.985986;1.216438;2.7301;2.869745;1.486554;1.760535;2.18142;1.56679;1.652852;1.889809;1.07564;3.016639;2.30318;2.978573;2.689595;2.103453;2.624375;1.707396;1.481655;1.718696;2.617241;2.24801;1.662627;1.68259;1.632204;1.486727;1.952935;2.948936;2.996241;2.707859;2.465712;1.784003;2.226947;2.688121;2.893849;2.114377;1.159338;2.907717;2.655751;2.574075;2.469294;2.585076;1.796451;3.290925;2.18621;2.736728;3.334192;3.335908;2.890177;2.346392;2.858836;2.783116;1.320658;2.674217;2.49767;2.809764;3.061459;2.202983;3.108566;2.592479;2.281742;2.141202;1.393578;1.89576;2.579425;2.093625;2.220712;2.717189;2.129167;2.078343;2.192158;2.355543;1.598197;2.704339;1.721314;3.194311;2.297009;2.983004;2.599111;2.632816;2.506824;1.744271;2.934144;1.587432;2.06973;1.478255;1.97237;2.474291;1.268519;1.3873;2.400744;2.85669;3.101697;2.94161;1.902465;2.575765;2.281195;2.430584;2.752208;1.420578;1.896775;1.987783;1.99592;2.514046;1.805947;1.209526;1.442387;2.870311;1.427222;1.956965;2.884076;1.923816;2.785964;1.928228;2.754114;3.107984;1.231873;2.36731;2.036913;2.693006;2.293767;2.25506;2.711489;1.819523;2.042328;2.182862;2.072124;1.911013;1.913781;1.34187;2.743771;2.769509;1.247419;1.561573;2.254709;1.479038;1.562389;1.88567;1.244722;3.2778;3.084097;2.58847;2.962549;2.258467;2.410496;2.207575;1.433442;1.962308;2.656197;2.383675;1.23856;1.350933;2.140625;1.788993;1.977946;2.221427;2.532675;2.362124;2.503017;1.453177;
1.919018;1.505635;2.904942;2.838478;2.648055;1.692884;2.134349;1.90469;1.477305;1.834693;1.834518;3.331091;2.76765;1.751861;1.482406;2.632765;2.570987;3.168463;1.512474;2.386503;1.668235;2.499652;2.356163;1.666486;1.119244;2.564189;3.171002;2.203395;1.32246;3.034122;2.170106;2.480031;2.37046;2.600132;2.170643;2.213334;1.858549;2.218799;2.979412;3.239913;1.935319;1.974074;1.867061;2.279657;2.446017;2.272439;1.56528;1.596812;2.307281;2.332412;2.214228;2.539874;2.090563;2.589332;2.899498;2.872651;2.10715;3.256344;2.283003;3.067943;2.715113;3.376657;3.206726;2.035743;1.543832;1.872302;2.323935;2.622882;1.710427;2.513155;2.218261;2.70403;2.34359;1.459576;3.47951;1.989034;2.149265;2.026073;1.410573;1.298066;2.315863;2.713312;2.358655;2.509572;2.816826;1.426256;1.835088;2.734895;1.526089;2.519793;2.064877;3.021086;2.3559;2.393592;3.332356;1.987441;2.191331;2.440887;2.600167;2.958885;1.270022;1.553638;3.053286;2.318509;1.265843;1.662297;2.312798;2.483521;1.330797;1.653219;1.847828;1.870664;1.449224;1.743989;1.773777;1.787375;1.390147;1.959755;2.276281;1.613178;2.291567;3.174545;2.506585;2.473997;1.539618;3.558557;1.591064;1.16697;1.762599;1.6459;2.945655;2.860365;2.634202;1.603301;2.092332;1.671923;1.534643;1.658647;1.851006;3.294964;3.156297;1.799728;1.613008;2.383882;2.652009;3.336049;1.406658;2.464134;1.758548;2.270282;2.385262;1.686169;1.439185;2.733445;3.62326;2.11159;1.374299;2.823813;2.052052;2.070027;2.214424;2.802136;2.20983;2.183563;1.845718;2.142065;2.997239;3.000189;2.008318;1.809021;1.878026;2.203465;2.796052;2.354101;1.739734;1.443027;2.363789;2.492254;2.077719;2.559677;2.150049;2.378888;2.981993;2.953612;2.517441;3.465851;2.659938;2.854222;2.722061;3.239902;2.994658;1.764091;1.468426;2.011147;2.281732;2.578435;1.779573;2.421357;2.093756;2.452986;2.302598;1.35092;3.325323;1.884308;2.458863;2.151149;1.527539;1.241699;2.436953;2.846847;2.13803;2.51782;2.992347;1.263883;1.772624;2.77933;1.772309;2.751327;2.284544;2.809029;2.363386;2.278584;3.117051;1.71909;2.102213;2.599071;2.55659;2.911661;1.33046;1.48157;2.907821;2.086438;1.236456;1.546202;2.188409;2.366453;1.974697;1.270399;2.36969;1.810607;1.494311;1.822206;2.084854;2.051794;1.619454;1.873042;1.877536;1.636449;2.273219;2.723524;2.605946;2.452296;1.462365;3.651942;1.227787;1.205628;
1.672093;1.06959;1.883714;1.811635;2.38375;2.098274;1.769848;1.624681;2.581583;2.76546;3.165429;2.410915;3.100965;1.781648;2.297834;1.582585;1.210186;1.676652;2.338515;3.639271;2.214762;1.18308;2.58224;1.935496;2.199545;2.92909;2.859142;2.805765;2.089171;2.196016;2.581047;2.564688;3.332885;2.266623;2.593193;2.111394;2.659891;2.343546;1.976981;1.556344;1.391449;2.858983;1.900599;2.392905;2.13298;2.040433;1.894202;2.74074;2.806668;2.747046;2.366208;2.728571;2.544563;2.791097;2.646055;3.418574;1.620759;2.188868;2.426985;2.05891;2.383215;1.563322;2.523643;1.528589;2.506565;1.827269;1.540481;2.956807;1.355049;1.871052;2.291021;1.642336;1.576059;2.846296;2.993641;3.213913;3.243739;3.159536;1.486387;1.129236;2.460618;1.9347;2.55955;2.086888;3.177456;2.324459;2.147863;3.288267;1.861161;2.734996;2.784895;2.719799;2.856019;1.592403;2.177444;2.55383;2.313909;1.389505;2.204937;2.119636;2.707072;1.289023;1.535145;1.787802;1.970894;2.008424;1.465818;1.548145;1.380494;1.451936;1.533419;1.929471;1.503593;2.515301;2.223289;2.415824;2.27259;1.746616;2.792051;1.658078;1.086107;2.44549;1.924626;2.470546;2.575394;2.441395;1.654793;1.728167;1.515839;1.187044;1.918289;1.87751;2.63877;2.124351;1.913421;1.737486;2.884162;2.824489;3.486025;2.118864;3.084816;1.695067;2.860067;1.684984;1.164423;1.445915;2.291006;3.128673;2.106842;1.128341;2.477521;1.818582;2.326071;2.521316;2.81189;2.416829;1.992447;2.345544;2.706946;2.985516;3.040462;2.427688;2.685512;2.226712;2.903502;2.343875;2.077496;1.642321;1.571876;2.918596;2.20564;2.1528;2.103202;1.927982;2.358426;2.812199;2.650874;2.486751;2.375626;2.309292;2.38419;2.722618;2.490242;3.195722;1.661636;1.870929;2.44164;1.883233;2.238792;1.742504;2.43101;1.794436;2.253243;2.033482;1.646154;3.285388;1.586136;1.795499;2.354483;1.783292;1.750499;2.950657;3.255987;3.112454;3.209373;3.071992;1.717418;1.125396;2.31456;1.774628;2.612935;1.867101;3.076321;2.179252;1.966909;3.140811;1.887183;2.419393;2.69342;2.517967;2.697774;1.773895;2.091529;2.895252;2.07085;1.570553;2.330908;2.399816;3.030011;1.227025;1.587232;1.935491;2.165495;2.096839;1.650955;1.478463;1.824514;1.886072;2.292458;1.558658;1.473486;1.978868;3.206657;2.262478;2.020216;1.412551;3.180372;1.45697;1.630838;2.182486;1.53318;2.121076;2.3595;2.523248;1.588185;1.627988;
2.397298;1.830902;2.667117;2.099344;3.179988;2.005326;2.045819;2.204781;2.724972;1.177798;2.990958;2.121551;2.914934;2.441222;2.642756;2.963707;2.249736;2.213988;1.958703;1.458806;1.673008;3.164944;2.727374;1.837803;2.31339;3.047899;2.308836;3.11175;2.92961;2.081187;2.919579;2.104589;2.693272;2.530364;2.14249;1.764933;2.660464;2.6605;1.775617;3.220855;1.386669;2.403267;1.902606;2.106693;2.462995;1.575577;1.820298;2.169674;2.468853;2.985669;2.882749;1.747681;2.195126;2.20254;2.298356;3.100102;1.675784;2.546344;1.952542;1.697808;3.076132;1.566226;1.367307;1.051987;2.280805;1.232463;1.962471;1.976025;2.057088;2.0205;1.789932;2.171899;3.287452;1.250468;2.682434;1.549713;3.118545;1.929082;2.776501;2.463557;1.770246;1.992014;1.926823;2.438839;1.642061;2.61164;2.128123;2.287749;2.495031;2.086338;1.857067;3.025494;2.113683;2.066795;2.123607;1.546294;2.797549;2.493439;1.954705;2.209321;2.161736;2.664405;1.984737;1.469587;1.392475;3.065073;2.621044;1.438545;1.625845;1.902924;1.964587;1.687477;2.704092;2.661499;2.841789;2.327757;1.507409;2.109028;2.694417;2.894675;2.132401;1.743796;2.53566;2.267867;3.016429;1.986469;2.79057;1.276101;2.733314;1.837153;2.825607;2.47053;3.307059;2.125274;2.244587;2.135453;2.987594;1.172887;2.939102;1.950387;2.976941;2.39097;2.838813;2.897963;2.135395;2.037251;1.897814;1.42071;1.615397;2.897717;2.974415;1.647315;2.026725;3.198396;2.087725;2.827298;3.004209;2.047853;2.87648;1.982417;3.037292;2.561543;2.275738;2.056493;2.760924;2.818522;1.981994;3.109674;1.558727;2.422063;1.843552;1.89115;2.491315;1.550257;1.992901;2.114443;2.368546;2.776757;2.811202;1.683797;2.140738;1.971177;2.558372;2.851901;1.448301;2.68048;1.751308;1.64696;3.042818;1.527358;1.353094;1.028275;2.518218;1.359646;2.090158;2.154967;2.104168;2.209758;1.851032;2.148957;3.464323;1.196979;2.691446;1.5374;3.026733;1.899231;3.011186;2.501852;1.621113;1.948993;1.868765;2.232605;1.559699;2.412746;2.219856;2.143424;2.149252;2.119128;1.724968;2.957642;2.086908;2.022096;2.106841;1.517603;3.061005;2.673168;2.082945;2.39845;2.210841;2.881094;2.049991;1.45081;1.509205;2.981154;2.630854;1.427335;1.379219;1.659403;1.760688;1.861199;2.328749;2.53178;2.585736;1.97657;1.273707;1.707783;2.454706;2.613235;2.835122;1.240823;2.836057;2.513378;3.317217;2.461259;2.580007;1.932324;
2.086645;1.651664;2.021248;1.768884;2.231387;3.122718;2.642478;2.409487;1.292609;3.07525;1.379637;1.141845;2.023061;1.815744;2.211166;2.992014;2.569803;1.487682;1.840608;1.804588;1.028437;1.418572;1.39966;2.972943;2.478079;1.629027;1.334758;2.515782;2.558674;2.668258;1.570064;2.615373;1.303468;2.763605;2.209129;1.30674;1.352516;2.589577;2.541863;1.800571;1.363379;2.523544;1.857278;2.066627;2.058651;2.500544;2.535322;2.023223;2.622644;2.687306;2.874436;3.108228;2.139466;2.472815;2.4151;2.593403;3.071759;1.897967;1.248011;1.629005;2.762964;2.11652;1.84392;2.553934;2.587445;1.963609;2.726743;3.263795;2.61564;3.253151;2.675288;2.646803;2.478628;2.742739;2.743101;1.57038;1.423594;2.28417;1.476963;2.63874;1.638592;2.062148;1.856264;2.52067;1.871528;1.370486;2.746546;1.894117;2.148668;2.091485;1.418303;1.38073;2.378712;2.35424;2.413881;2.821378;2.425775;1.612286;1.476267;2.463215;1.78428;2.783065;1.586606;2.772877;2.505769;2.086963;3.095103;1.696025;1.90612;2.22929;2.735003;2.951784;1.891173;1.813813;2.727969;2.278919;1.566982;2.206019;2.825412;2.940818;1.83198;1.663917;1.571444;2.252208;1.668374;1.803468;1.48118;1.722102;1.819823;1.400175;1.946364;1.574824;2.278042;3.444267;2.747248;2.783381;1.291792;3.38495;1.691013;1.148369;1.926413;1.781054;2.431138;3.115427;2.464875;1.314062;1.875115;1.924816;1.120334;1.403543;1.498476;3.012776;2.422803;1.757186;1.394398;2.556752;2.212167;2.7259;1.684379;2.613328;1.067288;2.484485;2.118802;1.097525;1.361027;2.815035;2.564367;2.109218;1.338018;2.866002;2.211365;2.024169;1.933353;2.402041;2.693672;2.142264;2.494768;2.506701;2.92351;3.236724;2.251204;2.392438;2.481439;2.650112;2.985713;2.085624;1.309607;1.721786;2.51639;2.20761;2.028448;2.551622;2.354927;1.837274;2.662709;2.890528;2.473633;3.37719;2.663149;3.020125;2.442509;2.9674;3.074679;1.610826;1.419976;2.288457;1.653452;2.774061;1.624663;2.017389;1.927192;2.601572;1.8433;1.233446;2.781326;1.944556;2.075117;2.175706;1.418919;1.466827;2.150275;2.450991;2.624398;2.819641;2.200915;1.498488;1.429304;2.141127;1.66728;2.898678;1.577279;3.15543;2.469562;2.284093;3.446809;1.738961;2.600642;2.334445;2.493921;2.720782;1.569383;2.150855;2.24537;1.906721;1.063048;2.050353;2.989606;2.741376;1.49914;1.923342;1.450821;2.455639;1.479522;1.702042;2.264361;2.082987;
2.390771;2.454082;2.934102;1.104785;2.300074;2.083858;2.726698;1.905971;2.207297;2.793911;2.025833;2.055402;1.674395;2.560088;2.008113;2.388843;1.829466;2.935024;2.454016;1.903814;1.28037;2.311198;1.954717;1.977575;1.390123;1.008725;2.315035;2.246983;2.021423;2.557979;1.864777;2.374444;1.850376;1.287426;1.775489;2.814392;2.104776;1.918497;1.67915;1.712652;1.511063;1.831718;2.442403;2.679557;2.639122;2.322596;1.591388;1.810925;2.384737;2.451346;2.931878;1.579942;2.856558;2.573491;2.840239;2.616909;2.967732;1.45287;3.490046;2.212115;2.743868;3.107214;3.312119;2.491023;2.642812;2.694364;2.313085;1.196159;2.5293;2.300986;2.853992;2.58906;2.45593;3.229513;2.655462;2.544974;1.633323;1.737841;2.236317;2.907748;2.475226;2.342668;2.474319;2.972765;1.784107;2.12244;2.575653;2.251411;2.181399;1.278929;2.293613;2.394002;2.387631;2.356736;2.816405;2.168273;1.757303;2.97857;1.7381;2.535035;1.322414;2.459511;2.565803;1.450166;1.65806;2.30144;2.436549;2.902129;2.539351;1.97381;2.398905;1.764688;1.945559;2.428482;2.012031;2.263927;1.930718;1.762408;2.95405;2.057623;1.599367;1.464676;2.873696;1.750922;1.790965;2.752712;1.852549;2.339763;1.971392;2.241786;2.87445;1.104988;2.230403;1.862203;2.703784;1.844642;2.092725;2.670474;1.888246;2.437764;1.488698;2.711784;2.31658;2.43229;1.530494;2.749524;2.338804;1.828306;1.131083;2.050202;2.177475;2.087989;1.574914;1.057252;2.261397;2.745725;1.957076;2.791286;2.013046;2.347825;1.531037;1.191346;1.763623;2.826235;2.069977;1.713285;1.587232;1.666703;1.454325;1.804144;2.320545;3.129447;2.426136;2.476379;1.776989;1.853213;2.060052;2.359785;2.835616;1.514156;2.623122;2.301767;2.988746;2.749095;3.25838;1.574717;3.457427;2.514633;2.724397;3.353125;3.33707;2.574475;2.449505;2.450154;2.403259;1.187321;2.549418;2.075948;2.963042;2.407775;2.221595;3.128129;2.522629;2.777316;1.513786;1.85922;2.312165;3.082517;2.330645;2.155895;2.491844;2.857077;1.647918;1.876549;2.946869;2.253527;2.268961;1.350766;2.262586;2.708308;2.370475;2.5714;2.840574;2.246254;1.601068;2.72153;1.817101;2.522149;1.337728;2.226557;2.670377;1.315377;1.467251;2.216004;2.310192;3.150009;2.20454;2.172551;1.98904;1.899102;1.780408;2.434244;2.028765;1.921118;1.512724;1.882989;2.49252;2.081585;1.435068;1.310733;3.153983;1.865852;1.860553;2.14066;2.271494;2.177642;
2.404332;1.809074;2.067179;2.332104;2.341803;1.991248;2.758758;1.850435;2.92942;2.170046;1.519799;0.9396268;2.213759;1.487463;1.727828;1.340824;1.572762;1.974525;2.672551;2.112536;2.61044;1.412221;2.955944;1.167979;1.819593;2.114611;3.588587;2.727741;1.637905;1.202725;2.018179;1.609172;1.17097;2.639584;2.798558;2.246704;2.036706;1.64893;2.352763;2.837759;2.725988;2.88078;1.697584;2.717142;2.730659;2.457316;1.771865;2.640213;1.833973;3.186173;2.370607;2.632161;2.547881;2.778969;2.808261;1.90861;2.925677;3.135814;1.710998;3.067368;2.355944;2.4228;2.577474;2.473018;2.973123;2.505376;2.411339;2.293857;1.54895;2.078128;3.518154;2.551804;2.275634;2.29483;2.490715;1.470684;2.105393;2.085263;1.831414;1.833133;1.894146;1.9906;2.585245;2.331178;2.327515;1.999599;3.173828;1.293242;3.780776;2.072898;3.015295;2.138125;2.060969;2.030304;1.559474;1.583381;1.715151;2.531248;2.93258;2.22562;1.661474;2.41005;2.589135;2.796589;2.677893;2.11046;2.418224;1.978481;1.764424;2.158942;1.140883;1.078838;1.573304;2.683869;1.65587;1.98665;1.967394;1.518752;2.763144;1.575285;2.808509;3.202704;1.575109;2.57601;2.244327;2.21281;1.724161;2.371513;2.242856;1.928613;2.104161;2.051845;2.501832;1.896851;2.894492;1.746179;2.724533;2.216883;1.492153;1.162765;2.382754;1.545636;1.681208;1.318214;1.76257;1.922516;2.538868;2.141165;2.928551;1.605935;3.149425;1.261704;1.878908;1.951138;3.39901;2.831686;1.659742;1.064865;1.725379;1.409612;1.110298;2.772142;2.841928;1.996289;2.210503;1.535606;2.492158;2.801243;2.615466;2.931231;1.675577;3.127329;2.952576;2.502199;1.741043;2.669779;2.091583;3.159651;2.253412;2.665541;2.866622;3.057452;3.01886;2.082125;3.064923;2.973958;1.588256;2.97424;2.477818;2.393264;2.343017;2.28026;2.831325;2.656194;2.483518;2.045171;1.686696;1.940798;3.546071;2.430251;2.092733;2.28413;2.511207;1.624184;2.390477;2.282701;1.887673;1.909468;2.117268;1.988557;2.495105;2.367876;2.615465;2.226791;3.261044;1.371741;3.828117;1.891632;2.902254;2.061174;2.175172;2.00382;1.378315;1.430379;1.607767;2.683649;3.012051;1.981437;1.804135;2.262559;2.61305;2.669893;2.479034;2.100924;2.43835;2.156925;2.232371;1.872447;1.92824;1.309723;2.021625;2.616099;1.284835;2.239987;2.449446;1.913892;3.120806;1.907569;2.390805;2.734079;1.384175;2.690065;2.780958;1.995183;1.536471;2.535466;
1.318205;1.799815;1.526937;1.001765;1.462339;1.317774;2.699065;2.408047;1.646327;1.412922;2.20366;2.101345;2.99665;2.108476;2.342327;1.353729;2.384696;2.009072;1.393572;1.309194;2.041464;2.595472;1.791796;1.843743;3.014278;2.187346;2.652506;2.171106;2.845612;2.29695;1.561676;2.312759;2.385957;2.706601;3.444112;2.408616;2.39507;2.408653;2.710033;2.480682;2.396446;1.674276;2.125915;2.854406;1.905266;2.084045;2.89538;2.583043;2.349715;2.169445;3.594717;2.813463;3.098739;2.729776;2.82047;2.878861;3.056893;3.052611;2.471164;1.812466;2.975241;1.955659;2.001051;1.889514;2.261965;1.820998;2.214095;1.864444;1.330882;2.558303;1.518208;2.132061;2.271281;1.309879;1.258383;2.04408;2.860164;2.847939;2.388616;2.522307;1.3061;1.236315;2.367113;1.647433;2.084495;1.322024;2.490485;3.171456;2.418633;3.262371;2.141454;2.31861;2.758398;2.376587;2.178959;1.541408;1.745648;2.490617;2.344035;1.570638;2.208763;2.426853;2.811919;1.470544;1.797495;1.907808;2.589299;1.980901;1.646737;1.36752;2.000937;1.856397;1.803686;1.517902;1.959861;2.601048;2.836678;2.486632;2.645575;1.569093;3.298349;1.400488;1.965797;2.338734;2.280274;2.371204;2.544158;2.409602;1.415831;1.875948;1.382413;1.326285;1.491345;1.261175;2.546495;2.90225;1.633243;1.218099;2.230871;2.070635;3.19282;1.763494;2.467982;1.303832;2.301348;1.957357;1.324931;1.550245;1.989199;2.769207;1.966057;1.842015;2.844044;1.916673;2.794526;2.188437;2.828285;1.959069;1.825662;1.968279;2.486136;2.850912;3.251936;2.844848;2.394815;2.311386;2.549098;2.839006;2.34039;1.500873;2.164507;2.768396;2.015558;1.723554;3.010976;2.407428;2.266706;2.135306;3.525486;3.136274;3.022955;2.85326;3.039218;2.762681;2.885369;2.753568;2.644546;1.800205;2.768282;1.732863;2.286407;1.724911;2.270725;1.896054;2.117998;2.172182;1.321802;2.623101;1.40504;2.453334;2.173624;1.198126;1.273704;1.962211;2.815552;2.58158;2.481306;2.525185;1.180204;1.176497;2.37231;1.825107;2.011848;1.534009;2.70651;3.036432;2.223754;3.018464;2.284799;2.304776;2.560263;2.130277;2.477274;1.393199;1.754258;2.578351;2.246141;1.854088;2.197988;2.489958;2.658107;1.739379;1.711639;1.772495;2.61235;1.900631;1.42929;1.366585;2.123155;1.617024;1.430707;1.636846;1.904129;2.680853;2.916715;2.566483;2.244657;1.159719;2.945624;1.555122;1.360318;2.4793;2.108198;2.55885;2.406027;2.53079;
1.214599;1.97768;1.920744;1.307918;2.147989;1.915991;2.556824;2.215972;1.742242;1.929694;2.1891;2.373498;2.395354;1.258985;2.512655;2.181774;2.822114;2.486056;2.846704;1.556262;3.553653;1.911193;3.003487;3.12695;3.681596;2.874047;2.144954;2.159922;2.2579;1.758064;2.440772;2.653373;2.639938;2.318377;2.611772;3.084064;2.619616;2.364039;2.095767;1.930466;2.283391;2.852361;2.415969;2.137613;2.456457;2.380812;1.652352;2.790349;2.230279;1.887694;2.731616;1.580467;3.00306;2.830491;3.017429;2.342582;2.949994;2.550384;1.747418;3.028541;1.861036;2.38693;1.829764;1.939012;2.105542;1.597212;1.846518;1.582287;2.044074;2.066371;2.531244;1.677577;2.667232;2.042539;1.987624;2.476795;1.880344;2.03164;1.810506;1.377698;2.809623;1.895903;1.321265;1.174464;2.998379;1.289472;1.987475;2.593725;2.152859;2.799708;1.642576;2.254153;2.700045;1.639237;2.300832;2.399636;2.706454;1.93642;2.670986;2.442258;1.794212;2.12059;2.025578;2.72969;2.446738;2.306737;1.706561;3.063401;2.561405;1.457714;1.249677;2.853889;1.708715;1.96361;1.898745;1.104959;2.852715;3.083985;2.337341;2.616389;2.321386;2.737513;1.572176;1.125015;2.263853;2.788018;2.842029;1.427437;1.306919;2.015373;1.819705;1.247993;1.978999;2.297536;2.135819;2.087213;1.664219;2.153773;2.412269;2.324734;2.597737;1.090499;2.447778;1.971908;2.984903;2.675192;2.75996;1.530335;3.657677;2.06629;2.547153;3.135853;3.719909;2.919098;2.098394;2.065148;2.790228;1.613346;2.709694;2.642862;2.812655;2.371639;2.400119;2.93046;2.415624;2.738846;1.75971;1.808045;2.234866;3.146377;2.561559;2.04704;2.648936;2.110199;1.64581;2.58686;2.428689;2.068877;2.568986;1.541115;3.09801;2.972041;2.629082;2.383367;3.044154;2.610707;1.642882;2.729091;2.250671;2.176942;1.957424;1.91487;2.105942;1.617725;1.730947;1.596591;1.967882;2.398036;2.199914;1.612796;2.523159;2.359616;2.148324;2.226696;1.960279;1.781498;1.704765;1.22377;2.852942;2.051331;1.261921;1.250054;3.226765;1.371283;1.709497;2.701266;2.148629;2.938715;1.565638;1.997463;3.165698;1.466669;2.443602;2.37358;2.70677;1.959669;2.531728;2.460671;1.722963;2.457223;1.730307;2.647736;2.308706;2.643757;1.855796;2.785149;2.698106;1.705997;1.117966;2.564318;2.343001;1.837653;1.423889;1.053015;2.414641;2.941294;1.876043;3.004048;2.369504;2.401167;1.568899;1.354442;1.634445;3.300398;2.575704;1.452845;
1.714973;2.853071;2.703189;3.013811;2.677651;2.3948;1.197215;1.768427;2.214161;2.118058;1.805016;1.296432;2.931402;2.535152;1.658446;2.494388;1.706246;2.110003;2.257126;2.60154;2.619686;1.280377;1.937258;2.536038;2.036038;1.382138;1.762099;2.739874;2.630248;1.267866;1.189722;2.033913;2.069989;1.992367;1.883629;2.083686;1.862318;1.341884;1.163048;1.774581;1.878405;2.547668;2.518372;2.403166;2.564995;1.472289;3.002171;1.357347;1.590478;2.24761;2.076483;2.664926;2.558215;2.340044;2.06575;1.854917;1.500724;1.268652;1.904111;1.569033;3.140969;2.791359;1.459336;1.815773;2.984111;2.735677;2.763486;2.040446;2.445643;1.146616;2.141421;2.486778;1.246048;1.698427;1.657501;2.342574;2.015134;1.546731;2.321597;1.52504;2.487902;2.21239;2.426613;2.379675;1.880933;1.816568;2.523604;2.660667;2.947336;2.274049;2.012248;2.604612;2.532807;2.524759;1.799093;1.772369;1.827798;2.733366;2.362452;2.670128;2.565863;2.011723;1.637248;2.661723;3.366738;2.725673;2.604819;2.405567;2.707224;2.792104;2.831918;2.775937;2.4469;1.840631;2.438834;1.998849;2.057328;1.544311;3.004114;1.876456;2.285581;2.05285;1.56769;3.010472;1.998178;2.45144;1.62579;1.934988;1.824937;2.862257;2.671485;2.90141;2.634324;2.234974;1.33586;1.654412;2.485288;1.970997;1.829057;1.51276;2.814676;2.824885;1.663661;2.535432;1.805168;2.11015;1.956549;2.589931;2.348268;1.377761;1.895868;2.431691;2.147157;1.372135;1.676876;2.691377;2.683089;1.326233;1.09501;2.160862;2.208659;2.015826;1.860976;1.944361;1.824851;1.242479;1.344632;1.710199;2.136569;2.406039;2.540344;2.644165;2.440719;1.718093;3.062785;1.425799;1.668783;2.262737;1.781394;2.592688;2.247767;2.494537;2.0647;1.808833;1.579824;1.270355;1.808333;1.551028;3.16315;2.820205;1.301698;1.877622;2.945497;2.828994;2.855216;2.005804;2.458014;1.048117;2.429716;2.350585;1.404572;1.561846;1.752409;2.665261;1.916452;1.73342;2.304904;1.544867;2.400687;2.287245;2.211886;2.425492;1.66208;1.943727;2.568736;2.543103;2.981528;2.250758;1.997017;2.58139;2.55378;2.552096;1.624249;1.833419;1.798436;2.826643;2.44837;2.630469;2.57959;1.88045;1.891209;2.520681;3.625437;2.551887;2.724568;2.732549;2.520073;3.065097;2.44656;2.569643;2.296387;1.432496;2.272663;1.810088;1.755692;1.63251;2.565118;2.225004;2.431679;2.061763;1.172768;3.373887;2.064782;2.245989;1.593211;1.894407;
2.276773;1.993991;1.656877;1.973451;1.952977;1.465193;1.332208;1.433881;1.518827;2.122112;2.127918;2.133289;1.76564;1.876495;2.919236;1.743948;1.193491;2.648115;1.508598;2.5731;2.362081;2.343843;2.028411;1.616101;1.372298;1.23117;1.898006;1.576785;2.870373;2.586607;2.027772;1.566621;2.144845;3.035383;3.673837;1.961095;2.584133;1.455606;2.447654;2.144986;1.21096;0.9436747;2.227506;2.322232;2.221843;1.661811;2.936588;1.678924;2.610335;2.389086;2.686139;2.595778;1.621561;2.613935;3.185438;2.770327;3.032835;2.661166;2.771907;2.189446;2.56857;2.27857;1.972682;1.746378;1.762703;2.926451;2.231857;2.495198;3.001867;2.050627;1.982406;2.11484;2.938194;2.605793;2.134953;2.2422;2.04667;3.042867;2.714913;3.167448;1.769718;2.017638;1.781977;1.833443;1.874884;1.506485;2.900506;1.59081;2.001275;1.912571;1.538563;2.805714;1.633386;1.921645;2.473392;1.764816;1.045929;2.915632;3.095059;2.71645;2.531262;2.563286;1.459787;1.326929;2.366518;1.280888;2.33462;1.42671;2.88474;2.771055;2.224807;2.857012;2.157982;2.285086;2.559962;2.822259;2.366607;1.992515;2.041924;2.58028;2.088168;1.992544;2.350193;2.610669;2.803562;1.24183;1.356636;2.118115;2.453029;2.035838;1.39498;1.642314;1.969828;1.46632;1.626213;1.684525;1.613472;2.681545;1.994174;2.299953;2.013647;1.632808;2.812237;1.825006;1.325588;2.821449;1.617846;2.09937;2.253489;2.27957;1.727087;1.651459;1.587253;1.351095;1.868703;1.680828;2.80491;2.532487;1.85335;1.614859;2.255399;3.077555;3.336103;1.669494;2.579771;1.435756;2.781711;2.419598;1.256309;1.327181;2.144741;2.551218;2.480936;1.416113;2.776107;1.709145;2.717214;2.59188;2.894349;2.139433;1.49673;2.561909;2.752218;2.75443;3.253934;2.876184;2.798784;2.292959;2.526788;2.352461;1.801847;1.764406;1.89773;2.962239;1.964884;2.27716;3.001646;1.976415;2.233151;2.404469;3.036196;3.103709;2.034665;2.42705;2.358798;2.827453;2.562191;3.165128;1.892719;2.199774;1.947024;1.546129;1.744367;1.424597;2.434659;1.593238;2.205246;2.001293;1.541723;2.923448;1.600152;1.990284;2.281703;1.783654;1.150563;2.952062;2.779035;2.489391;2.531123;2.481053;1.676073;1.558948;2.454625;1.637011;2.229579;1.5754;2.573909;1.997723;1.585597;2.955709;1.960887;2.534948;2.351594;2.933013;2.301786;1.658641;2.047537;2.972309;1.982872;1.984298;2.3505;2.850396;2.530721;1.383095;1.654579;2.105695;
2.287441;1.395845;1.554947;2.697419;1.275935;1.88063;2.09853;1.507853;2.396214;1.456746;2.076942;3.181036;1.420597;2.226424;2.158939;2.277882;2.190168;2.957607;1.997298;1.680696;1.853758;1.706399;2.547469;2.177369;2.297737;1.593627;2.937665;2.810951;1.669849;1.393523;2.487785;1.37446;1.865915;1.564166;1.394866;2.3437;2.54803;2.387213;2.688518;2.166152;2.917859;1.735062;1.592151;1.70735;3.281995;2.96443;2.144922;1.674577;1.75858;1.627032;1.626705;2.845044;2.653579;2.085959;2.602995;1.847453;2.172012;2.670163;2.990215;2.791998;1.44538;2.391098;2.723546;2.249094;2.802317;2.710488;1.676644;2.84011;1.78989;2.650475;2.31994;2.550399;2.451406;1.868292;2.387021;2.908317;1.49019;2.276856;2.322212;2.217242;2.633204;2.851337;2.27389;2.339327;2.043377;1.735966;1.732761;1.923255;2.861056;2.20364;2.344506;3.163862;2.658241;1.822691;2.33709;2.03943;1.92312;2.059823;1.716302;2.074113;2.549755;2.639244;2.317926;2.828374;2.815936;1.798532;3.397525;1.877399;2.864381;1.98064;2.471574;2.485285;1.515559;1.483114;2.034131;2.609186;2.640167;2.287261;1.68471;2.272124;2.615829;2.259578;2.690701;2.250363;2.291301;2.009559;2.205752;2.552048;2.233421;1.268771;1.612478;2.700063;1.584794;2.008012;2.155443;1.542621;2.421434;1.430243;2.156342;3.432839;1.533785;2.032471;1.933498;2.089944;2.31126;2.787757;1.9768;1.520252;1.898865;1.638577;2.058364;1.894245;2.438811;1.463878;2.535069;3.220173;1.714587;1.621442;2.727307;1.461488;1.8086;1.447257;1.442005;2.293895;2.961134;2.549412;2.77779;2.185077;2.92293;1.728027;1.644907;1.848467;3.419311;2.75956;1.929008;1.5148;1.884561;1.499445;1.609779;2.607813;2.720397;2.001475;2.138443;1.587999;2.328615;2.49834;2.585814;2.933102;1.423271;2.686664;3.071676;2.368709;2.703757;2.681997;1.734385;2.932655;2.089114;2.718711;2.529401;2.689103;2.427089;1.852674;2.383626;2.858221;1.507692;2.107368;2.179663;2.040608;2.758463;2.811136;2.261143;2.25418;2.05328;1.580601;1.454188;1.753562;3.00925;2.039207;1.927776;3.314117;2.62915;2.081822;2.661417;2.153505;1.842515;2.035121;1.775454;2.153436;2.905622;2.707315;2.528341;2.97446;2.790966;1.783325;3.394494;1.837929;2.41106;1.459606;2.292665;2.140131;2.157131;1.668277;1.664208;2.025156;2.435588;2.997084;1.258695;2.257374;2.567111;2.435957;2.376388;2.249044;2.626352;1.480187;1.923082;2.294729;
1.593698;1.704379;3.169594;2.886431;2.271365;2.504236;1.707982;2.575899;1.556384;1.068727;1.737661;2.766152;2.748876;1.720282;1.497333;1.489529;1.989495;1.227542;2.831204;2.611526;2.167054;2.326875;1.704929;2.067037;2.514068;2.833749;2.820684;1.379239;2.844693;1.923913;2.567055;2.660396;3.377409;1.862384;2.949203;2.611377;2.956213;2.76245;2.407659;2.232056;2.20748;2.777617;2.065012;1.410113;1.824763;2.676173;2.509846;2.578719;2.55002;2.853906;2.352872;2.137147;1.612652;1.40794;2.317037;3.258175;2.49048;1.671388;2.790996;2.337929;1.891494;2.523987;3.200507;2.175135;2.445002;2.10773;2.887607;2.957969;2.660188;2.483327;2.528086;2.613125;1.801125;2.567755;1.954172;2.063908;2.162412;2.487056;2.355021;1.293574;2.023473;1.721004;2.67602;2.560495;2.303293;2.027929;2.588391;2.186006;2.45162;3.074527;2.325528;2.119452;2.200919;1.59045;2.499586;1.976579;1.788434;1.630789;2.396003;1.804508;2.121403;2.478397;1.3895;2.205943;1.72538;2.891325;2.584437;1.281133;1.871617;2.459682;2.433784;2.129714;2.520918;2.474149;1.529954;1.81736;1.526061;2.050302;2.263848;2.20548;1.423197;2.390631;2.539995;1.559139;1.216421;2.671695;2.234024;1.868089;1.489373;1.699978;2.786619;2.610336;2.228778;2.588118;1.875598;2.866542;1.869999;1.057112;2.038313;2.547219;2.990321;1.824145;1.522609;1.630413;2.052478;1.049946;2.96525;2.394534;2.337985;2.721352;1.637589;1.790547;2.310305;3.012531;2.725428;1.483304;2.855162;2.234897;2.529814;2.475348;3.177787;1.900629;2.5673;2.287321;2.867202;2.782237;2.526084;2.485631;2.544701;2.819195;2.38701;1.215581;1.99384;2.743114;2.469349;2.783051;2.59845;2.635066;2.480993;1.919262;1.743081;1.66734;2.17923;2.928931;2.266706;1.855893;2.702007;2.663296;1.774411;2.624289;3.201216;2.009327;2.233315;2.12631;2.620313;2.718735;2.587251;2.448806;2.597876;2.983205;2.068906;2.443021;2.151759;2.013577;2.22589;2.372416;2.351937;1.440235;2.026494;1.533613;2.930006;2.422219;2.470199;2.286241;2.393208;1.997094;2.190611;3.137458;2.129066;2.430492;2.07441;1.670878;2.500234;1.81923;1.608169;1.647641;2.153166;1.619362;2.05626;2.444644;1.44138;2.547624;1.987766;2.759524;2.811026;1.242316;2.530229;1.951779;2.921142;1.776875;2.939767;2.184431;1.826022;1.798589;1.66527;2.500897;2.332987;2.269849;1.802101;3.083516;2.637161;1.568872;1.265059;2.659383;1.657245;1.543453;
1.546134;2.345296;3.120218;2.811574;3.081469;2.517338;2.561738;2.527293;2.479039;2.281238;1.79146;1.478804;1.829091;2.678793;1.95725;2.657285;2.845609;2.290073;1.892984;2.642115;2.92723;2.715485;1.902722;2.110171;2.04432;2.981751;2.524961;3.138072;1.859371;1.885866;2.12246;1.52129;1.951575;1.192724;2.935653;1.812046;2.219488;1.789143;1.677889;3.194309;1.621433;2.014707;2.417868;1.523236;1.283311;2.716073;3.12818;2.941566;2.557804;2.876575;1.477728;1.805037;2.483237;1.441907;2.203145;1.361521;3.054948;2.684946;2.000035;2.669046;2.469103;2.230415;2.866356;2.676178;2.519603;1.716492;2.159443;2.620981;2.211768;1.805328;2.305775;2.883799;2.658786;1.234163;1.427049;1.661941;2.242666;1.779694;1.609885;2.135556;2.13974;1.733549;1.353112;1.865049;1.626242;2.565657;2.079836;2.202513;1.791955;1.630399;2.949059;1.652426;1.280866;2.443123;1.582112;2.392556;2.445951;1.965587;1.982217;1.704403;1.616754;1.117827;1.90487;1.825601;2.558905;2.363488;2.032627;1.421209;2.202698;2.768203;3.361602;2.053195;2.573819;1.587647;2.360254;2.501722;1.363019;1.198924;2.56621;2.59475;1.931981;1.491578;2.838381;1.756936;2.853098;2.247813;2.937904;2.631309;1.428058;2.647406;2.777445;2.638576;2.944403;2.488563;2.336677;2.235625;2.26185;2.039708;1.849487;1.436046;1.727802;2.655354;1.994967;2.85982;3.208659;2.309794;1.864828;2.317523;3.202183;2.780533;2.420005;2.401097;1.930088;2.885514;2.784895;3.239527;1.803012;1.852669;1.964881;1.803504;1.870606;1.473433;2.645508;1.682734;2.135907;1.772123;1.426424;2.881163;1.484795;1.860858;2.515592;1.490607;1.213531;2.701712;3.057867;3.159953;2.924406;2.986238;1.474341;1.541629;2.729105;1.492742;2.645612;1.601022;2.937148;2.676476;2.25894;2.872912;2.511549;2.214075;2.751612;2.907844;2.221834;2.009017;2.000339;2.534029;2.10747;1.738291;1.979609;2.562689;2.531395;1.110146;1.453873;1.709466;2.259157;1.782079;1.61201;2.201538;2.268528;1.780621;1.42474;1.653162;1.807483;2.57257;2.47821;2.481004;1.742937;1.618667;3.191093;1.813624;1.312235;2.425917;1.498006;2.611947;2.153538;2.277835;1.83063;1.634418;1.528571;1.065144;1.610416;1.572112;2.434845;2.190629;2.065382;1.46526;2.464497;2.841034;3.410967;2.244627;2.523772;1.263708;2.584011;2.254207;1.815604;1.355816;2.463238;3.206068;1.796085;1.491301;2.413005;1.803204;2.511189;2.034338;2.816992;2.856436;
1.682771;2.836102;2.760204;2.710583;2.739299;2.654474;2.666356;3.083909;2.614563;1.831114;1.789913;1.985094;3.440741;2.096549;1.560478;2.163853;2.040417;1.535597;2.653838;2.359028;1.611373;1.899497;1.334514;2.927446;2.795064;2.384544;1.756605;2.289458;2.130912;1.789722;2.84476;1.690624;2.465619;1.912554;2.510637;2.413484;1.734822;1.507694;1.700441;2.660773;2.57949;2.459836;1.450905;2.104686;2.261986;2.497541;2.702737;1.825731;1.990916;2.032779;1.631217;2.556117;1.834017;1.399421;1.543282;2.65777;1.171562;1.976944;2.233972;1.644779;1.997746;2.169228;2.948795;3.357539;1.559358;2.582601;2.121534;2.594972;2.129395;2.824078;2.357531;2.448692;2.281762;1.819322;2.512428;1.894482;3.100677;1.607349;2.18388;2.148794;1.185948;1.120073;2.622339;1.571754;1.407291;1.417233;1.093167;2.975563;2.781915;2.061257;2.153163;1.610293;2.31644;1.879813;1.356004;1.662595;2.737603;2.720078;2.010654;1.585568;1.9435;1.69133;1.341706;2.855022;2.565096;2.408324;1.810801;1.285637;2.354951;2.855304;2.665137;2.504379;1.310277;2.819612;2.179261;2.591954;2.521365;3.263411;2.130208;3.197334;1.723235;2.746582;2.818938;2.678462;2.269896;2.863176;2.695559;3.072005;1.288272;2.92778;2.808354;2.456937;2.437744;2.750499;2.693004;3.173862;2.42683;1.736681;1.774317;1.913427;3.158311;2.171085;1.740023;2.400351;2.260674;1.683839;2.596442;2.837505;1.571752;2.196553;1.607929;3.001469;2.622895;2.319468;1.764547;1.966271;2.621925;1.946935;2.603643;1.685563;2.052411;1.978516;2.557033;2.19983;1.517199;1.552428;1.733289;2.838111;2.477783;2.347569;1.443695;2.062716;2.062627;2.548512;2.958455;2.098092;2.264181;2.235924;1.59361;3.05435;1.795739;1.662524;1.853468;2.791307;1.099528;1.948808;2.251852;1.426309;2.268045;2.181972;2.713769;3.378943;1.263583;2.652109;2.317416;2.335299;1.936571;2.75338;2.404113;2.513257;2.171871;1.716797;2.511884;1.915726;2.640136;1.508208;2.424386;2.467955;1.429615;1.267697;2.741819;1.933166;1.416174;1.582103;1.362375;3.002108;2.654431;2.026549;2.178988;1.394769;2.606969;1.892209;1.19817;1.67816;2.340532;2.792234;2.201401;1.384642;1.759593;1.637214;1.376873;2.925357;2.448375;2.290899;1.810283;1.303936;1.462064;2.30139;3.169095;2.219954;1.717063;3.235408;2.468262;2.564904;2.473952;3.719536;1.572636;3.297823;1.905096;2.826834;3.027368;2.958353;2.965872;2.58199;2.926383;2.54323;
1.818393;1.770491;1.55152;2.26803;2.72865;2.186749;1.972367;1.118819;2.319062;1.125955;1.836518;2.379357;1.484974;2.166434;2.152767;2.717837;1.974156;1.646679;1.600749;1.279175;1.455186;1.421714;2.499152;2.093869;1.11614;1.200955;2.845641;2.549851;2.874305;1.675841;2.348706;1.482215;2.375207;1.960749;0.9764426;1.490965;2.305932;3.448103;2.250342;1.559398;2.551724;2.223042;2.86401;2.846751;2.675355;2.621684;2.177619;2.287546;2.308504;3.017276;3.250034;2.296962;1.818006;2.204715;2.341433;2.580257;1.794949;1.454975;1.810676;2.509291;2.325069;2.631708;2.737712;2.827178;2.331507;2.461683;2.986408;2.545966;3.07612;2.434609;2.256298;2.546818;2.092989;2.279293;2.435402;1.761033;1.856081;1.601405;1.88052;1.966031;2.666016;1.731573;2.650619;2.116739;1.271904;2.853672;1.456053;1.854845;1.288337;1.235831;1.760133;2.50063;2.458684;2.637508;2.465644;2.725461;1.307734;1.339375;2.107145;1.911098;2.685723;2.295871;3.125554;3.014262;2.063549;3.514028;2.320765;2.724218;2.744206;3.006786;2.984839;1.678363;1.68938;2.973975;2.450457;1.61495;1.593613;2.733268;2.715709;1.898093;1.333876;2.164316;2.366935;1.835946;2.095815;1.812296;1.651495;1.999275;1.802817;1.926104;1.820667;2.028542;2.73436;2.249329;1.588359;1.313707;2.516144;1.16941;1.793991;2.475084;1.552022;2.250587;1.906517;2.856467;2.034665;1.690094;1.448392;1.174957;1.57628;1.472297;2.783395;2.621048;1.103116;1.534774;2.664972;2.652493;3.31523;1.494272;2.173924;1.415383;2.32805;2.168684;1.208612;1.261873;2.274744;3.50032;1.831889;1.677241;2.715021;2.332511;2.824461;2.900182;2.71137;2.691702;1.911097;2.310079;2.373577;3.099401;3.070392;2.135303;1.943743;2.218847;2.617845;3.041688;1.778256;1.838368;1.696221;2.690396;2.69678;2.395536;2.625177;2.783365;2.410235;2.625446;3.209815;2.212465;2.923122;2.362967;1.85016;2.548697;2.312214;2.364574;2.443451;1.888711;1.872952;1.69192;1.694626;2.028384;2.873158;1.738616;2.340776;1.93288;1.299377;2.745349;1.688738;2.11396;1.328711;1.570165;1.685108;2.681468;2.841591;2.401054;2.359841;2.682581;1.367666;1.460926;2.296474;1.623749;2.543888;2.2263;2.644968;3.016449;2.282306;3.619831;2.329655;2.882857;2.215973;2.566645;2.258585;2.042158;2.306519;3.210519;1.898967;1.333903;1.63922;2.19245;2.964171;1.395913;1.506272;2.132099;2.411221;1.704231;2.040298;1.946061;1.255158;1.512718;
2.514093;2.186128;1.611928;2.365644;2.706447;2.376969;1.293221;2.039406;2.775876;2.77557;1.298681;1.362255;1.896151;2.283735;1.81572;1.702039;1.591932;1.926263;1.570899;1.203534;1.465817;1.77037;1.762105;2.738224;2.863049;2.202837;1.854923;3.46416;1.656264;1.196446;2.538267;1.75784;2.373638;2.191914;2.894655;1.579354;1.87964;1.494013;0.9317362;1.744857;1.784529;2.736904;1.88313;1.149827;1.310161;2.255538;2.656231;3.036577;1.51751;2.408187;1.279318;2.204637;1.970366;1.144342;1.219033;2.279546;2.952248;1.719676;1.89147;2.554121;2.196672;2.517445;2.695518;2.700844;1.990784;1.463125;2.170181;3.027481;2.735954;3.468819;2.017417;2.368516;2.312774;2.673364;2.373974;1.931333;1.584495;1.855989;2.603537;2.190761;2.127355;2.917237;2.232908;1.852797;2.217425;3.589967;1.976246;3.03275;2.926751;2.518077;3.27657;2.986393;3.148057;1.833433;2.061615;2.350126;1.762386;1.934342;1.978092;2.468014;1.849629;2.466269;1.682497;1.515866;3.312341;1.633833;1.570172;1.495383;1.258568;1.307951;2.509038;2.696883;2.270946;2.551436;2.442994;1.262072;1.395017;2.361274;2.011482;2.282799;1.588809;2.344055;2.821177;2.035101;3.216487;1.978987;2.687306;3.165935;2.445227;2.235581;1.598166;2.510261;2.639421;2.340688;1.247427;2.201142;2.757082;2.594846;1.366109;1.738449;2.081877;2.168473;1.813303;1.932204;1.596379;1.63492;1.668828;1.384359;1.38137;1.885315;2.021802;2.581096;2.603086;1.965603;1.627309;3.594353;1.464224;1.172593;2.302948;2.258402;2.340922;2.253355;2.775285;1.651813;1.808942;1.430773;0.9241419;1.892705;1.806195;2.578053;1.888337;1.460048;1.456147;2.104459;2.712969;3.38145;1.565141;2.097411;1.31192;2.430112;1.871589;1.207155;1.488256;2.168072;2.745052;1.524562;1.60013;2.631313;2.009372;2.440149;2.573416;3.193935;2.066031;1.53754;2.131273;3.134015;2.669069;3.19566;2.008392;2.42884;2.345792;2.475737;2.395816;2.311935;1.778054;1.71868;2.784986;2.381404;2.294332;2.605803;2.343924;2.065586;2.129587;3.51655;2.317598;2.785591;2.729289;2.242757;2.907017;3.070541;2.92313;1.768241;1.954899;2.812359;1.833113;2.020446;1.941058;2.564955;1.794797;2.237589;1.674155;1.564859;3.351678;1.480746;1.588039;1.832856;1.192382;1.630284;2.316329;2.575743;2.392558;2.917478;3.086717;1.376202;1.560563;2.568822;1.720503;1.944935;1.828057;2.486869;2.546291;2.159656;3.525486;1.76253;2.332026;2.712458;
3.118016;2.491365;1.639773;1.998067;2.347686;2.138749;2.183317;1.77667;2.745931;2.012351;1.399762;3.143368;2.200959;1.598205;1.537363;2.914808;1.575356;2.115416;2.357643;1.627087;2.837188;1.58176;3.045058;2.982951;1.688529;2.255462;2.235114;2.405179;2.154641;2.733872;1.92588;2.110363;2.371233;1.894174;2.353302;2.420103;2.938488;1.736576;2.638881;2.14757;1.666426;1.526933;2.803747;2.207982;1.549746;2.123064;1.745143;2.594769;2.250048;2.190883;2.468786;2.237239;2.13129;1.762106;1.04351;1.632529;3.090671;3.037631;1.338786;1.571715;1.6474;1.591357;1.248073;2.110878;2.902571;2.611857;1.968362;1.253603;1.913261;2.24132;2.095893;2.208835;1.979869;2.581172;2.274129;3.119559;2.782544;3.263557;1.677714;3.125419;2.065851;2.990126;3.031111;2.856431;2.843494;2.089641;3.227055;2.51488;1.768692;2.366626;2.567563;2.598596;2.670409;2.711996;2.47301;2.65703;2.561915;1.987481;1.695795;2.399209;3.282697;2.421256;2.009162;2.23623;2.752452;1.905896;2.728517;2.921149;1.695753;2.792788;2.09645;2.548716;2.09746;2.589431;2.261482;3.057161;2.083454;1.771574;2.878613;2.203471;2.963326;2.103347;2.098716;2.851975;1.271792;1.537115;1.930542;2.059539;3.049182;2.638641;1.981705;2.166287;2.290322;2.049846;2.323038;1.777012;2.649544;1.928034;1.48059;2.956881;2.113128;1.528253;1.556279;2.584113;1.593025;1.922538;2.466963;1.469709;2.674601;1.33791;3.287673;3.500967;1.931636;2.01631;2.492456;2.669734;2.025366;2.528853;2.226012;1.900337;2.329433;2.038981;2.764445;2.551768;2.872496;1.67951;2.857823;2.204732;1.597695;1.469663;2.910774;2.007756;1.46436;2.067727;1.806101;2.332613;2.251029;2.008895;2.57203;1.998486;1.951198;1.522698;1.21943;2.067277;3.391652;2.77641;1.532932;1.705142;1.484956;1.493691;1.444317;2.00549;2.927084;2.742751;2.263379;1.340177;1.945288;2.166881;2.14977;2.235827;1.797571;2.551649;2.23167;2.839455;2.647744;3.253868;1.686162;2.964337;2.127002;2.738932;3.050378;2.57421;2.736699;1.819348;3.355658;3.012298;1.88904;2.178401;2.68288;2.769374;2.463469;2.583924;2.747219;2.538554;2.585944;2.101867;1.971304;2.518416;3.325806;2.343765;2.062688;2.26332;2.537708;1.880538;2.683087;2.650433;2.210668;2.521418;1.887453;2.789421;2.671143;2.403579;2.037876;2.33497;2.278944;1.506021;3.566137;1.801342;2.716836;1.781543;2.463897;2.524541;1.266313;1.473981;1.971505;2.219759;
1.179502;1.619099;1.340693;2.407055;2.180596;1.464242;2.136643;1.885229;1.939569;1.418336;2.074861;1.94559;2.135034;2.161659;2.576344;2.051211;1.694674;2.762568;1.14779;1.78982;2.573816;1.575034;1.991529;1.962781;2.386055;1.720995;2.019377;1.977217;1.44867;1.542465;1.50977;2.80798;2.407384;1.174596;1.394233;2.691828;2.53948;2.54272;2.107147;2.302505;1.66739;2.450727;2.494035;1.714841;1.31948;1.735369;2.56894;2.005964;1.622133;2.670693;2.018788;3.097641;2.937564;2.768351;2.293813;1.728579;2.348922;2.784048;3.109082;2.958107;2.356458;2.407225;2.373585;2.004125;2.319651;2.050663;1.143997;1.784956;3.065704;2.007424;2.850114;2.691207;2.730863;1.979485;2.950503;3.234809;2.446392;2.246346;2.922702;2.302285;2.97086;2.439935;2.379709;2.254469;2.023;2.03166;1.609902;1.614036;1.66635;2.435531;2.196989;2.605483;2.170228;1.269928;3.192614;1.768353;1.870135;1.52633;1.459066;1.503748;2.498663;2.29048;3.138896;2.339019;3.080776;1.35877;1.815391;2.893422;1.801213;1.841781;1.695067;2.955322;3.025438;2.194582;3.190631;2.397983;2.902275;2.743526;2.703891;2.508768;2.008987;2.018598;2.664874;1.844587;1.587897;2.136037;2.431202;2.079554;1.356099;1.628842;1.345326;2.292209;2.022066;1.818351;2.391362;1.803254;2.028773;1.300804;1.823657;1.604538;2.133058;2.367219;2.878177;2.065295;1.841656;2.796552;1.002462;1.760799;2.588661;1.631042;2.096441;1.930432;2.830791;1.458177;1.781342;1.60977;1.500699;1.491149;1.401147;2.750562;2.59184;1.177306;1.437051;2.618296;2.345167;2.973084;2.306198;2.18345;1.704081;2.295453;2.273823;1.437035;1.304897;1.900826;2.816563;1.967158;1.696959;2.743792;1.875464;3.0827;2.90424;2.859179;2.357676;1.649933;2.70355;2.484615;2.875365;2.690761;2.380399;2.405277;2.037681;1.891325;2.500127;2.116813;1.212252;1.869596;2.927653;2.305839;3.030259;2.626366;2.756155;1.875944;2.60524;3.023903;2.428591;2.481483;2.947997;2.191318;3.07145;2.579032;2.264436;2.406389;2.059397;2.029683;1.626346;1.588467;1.948951;2.195309;1.910813;2.355607;2.193265;1.2691;2.801071;1.663185;2.032594;1.58399;1.535928;1.58204;2.374248;2.609377;3.327891;2.279405;3.107718;1.273688;1.546789;2.694799;2.04514;2.269862;1.754254;2.382935;3.397684;1.959695;2.658954;1.849907;2.81849;2.871799;2.609747;2.132459;2.241966;1.714084;2.679776;1.830561;1.499402;2.357709;2.769252;2.699455;
2.402846;3.042001;2.693011;1.789216;2.714792;1.820308;2.845094;1.838976;2.514609;1.70109;2.238321;2.468115;0.9427843;2.03315;1.447493;3.404897;2.660775;3.007187;1.638007;2.550797;1.859341;2.704525;2.865104;1.85995;2.488935;1.943071;1.790428;2.678284;1.962512;1.819848;1.615404;2.982232;1.190142;1.674789;2.859783;1.661067;2.594643;1.222167;2.444849;3.754914;1.195605;1.870209;1.935877;2.739712;1.732773;2.131058;1.855337;1.615849;2.000801;2.11552;2.913732;1.890774;2.454765;1.618496;2.589924;2.372058;1.351027;1.464901;2.497169;1.587177;1.415215;1.948781;1.391495;2.398496;2.534218;2.402852;2.942758;1.445407;2.759483;1.634753;1.365908;1.744817;3.104907;2.528368;1.738169;1.335739;1.306572;2.053244;0.9933338;3.160026;2.616989;2.778761;2.005995;1.706026;1.585426;2.849936;2.981447;2.335734;1.69249;2.724234;2.351547;2.5285;2.514122;3.691957;1.76934;3.289938;1.822231;2.139054;3.372481;3.127943;2.725225;1.706308;2.832611;3.228136;1.264679;2.154945;2.149266;2.689481;2.429581;2.214097;2.310671;2.267077;2.324884;1.993851;2.012903;1.902259;3.179737;2.457502;1.827408;2.021341;2.122774;1.97747;2.32706;2.265656;1.451493;2.788042;1.644796;2.432699;2.6708;3.145706;2.544328;1.960725;2.70949;2.002754;3.312524;1.992073;2.79539;1.828104;2.173173;2.327951;1.195079;2.095481;1.42421;2.989845;3.055583;2.60188;1.701752;2.517277;1.818763;2.529282;2.67372;1.555782;2.361928;1.854134;1.760103;2.479404;1.998319;1.830929;1.494929;3.085543;1.373367;1.771644;2.696763;1.780173;2.574095;1.386161;2.904926;3.941898;1.375715;2.026647;1.857504;2.540048;2.04346;2.212292;1.838029;1.334892;2.364508;1.775472;3.001058;1.838808;2.420255;1.475241;2.440333;2.02745;1.272034;1.385241;2.4633;1.589638;1.371442;1.948752;1.294747;2.590416;2.715528;2.667058;2.77744;1.450548;2.69153;1.870746;1.579637;1.937719;3.307891;2.611143;1.727292;1.358591;1.49088;2.131063;0.9935487;2.86585;2.944257;2.531824;2.078931;1.547585;1.522765;2.71565;2.647681;2.060698;1.547528;2.51848;2.394209;2.531746;2.456554;3.691895;1.660867;3.514205;1.977374;2.38886;3.196326;3.135658;2.658624;1.947222;3.13814;3.488824;1.396164;2.231545;2.137979;2.72276;2.217875;2.92791;2.710145;2.326429;2.351054;1.609964;1.568381;2.107528;2.850769;2.700819;2.25789;2.506028;2.365779;1.667154;2.176322;2.345786;1.671095;2.889792;1.615736;2.424102;
2.525178;1.798715;2.939074;2.120897;1.912527;1.467004;2.516604;1.984272;2.043433;1.96701;1.239298;2.957535;2.941801;2.435173;2.746783;1.545045;2.412924;1.87619;1.59802;1.646916;2.469472;2.361076;1.773446;1.266941;1.461352;1.535167;1.420376;2.847131;2.024712;2.336453;1.796402;1.81955;1.761547;3.064645;2.254258;2.722505;1.354934;2.348809;2.445183;2.20499;2.621288;2.927626;1.365695;2.783444;2.250877;2.556879;3.002931;2.91701;3.205014;2.301027;2.288482;2.55469;1.615995;2.327401;2.40252;2.720047;2.579059;2.510197;2.609253;1.998547;2.292527;1.510434;2.086795;2.515913;3.041129;2.311984;2.161314;2.291979;2.997541;2.167296;2.39617;2.821296;2.152741;2.643344;1.65639;2.984268;2.786982;2.855572;2.581738;2.122124;2.268962;1.760775;3.188496;1.746538;2.237823;1.834187;2.399094;2.179255;1.208254;1.556004;1.842775;2.65443;2.09113;2.512276;1.380141;2.678294;1.834706;2.90189;2.246113;2.039799;2.270616;1.789843;1.743328;2.081249;2.014694;1.583818;1.261477;2.232287;1.534497;1.770999;2.499128;1.730977;2.995482;1.713148;2.171786;3.080051;1.691789;2.200407;2.502953;2.997169;2.184565;2.705272;2.276305;1.532407;2.414026;1.544939;2.940006;2.293305;2.79492;1.463962;2.977692;2.043559;1.947646;1.495521;2.316954;1.748786;1.86516;1.818524;1.332319;2.907863;2.741099;2.358359;2.624109;1.680803;2.505497;1.985702;1.45671;1.747612;2.581423;2.856065;2.140093;1.425802;1.636214;1.635581;1.482195;2.807965;2.135356;2.341839;1.767683;1.550844;1.951242;2.673361;2.275882;2.569285;1.356599;2.322565;2.174174;1.940925;2.386126;2.80624;1.459664;2.676798;2.047044;2.419738;2.795992;3.123405;3.286609;2.476465;2.124039;2.65379;1.689495;2.753876;2.759725;2.97127;2.786214;2.694545;2.69864;2.030752;2.524316;1.547819;2.117983;2.197789;3.415627;2.088913;2.215703;2.119593;2.835475;2.042217;2.096704;2.523049;1.938472;2.409081;1.688814;2.979452;2.698514;2.819869;2.457353;2.298334;2.444455;2.028008;3.033331;1.799559;2.179927;2.113873;2.720511;2.40685;1.349946;1.60497;1.844017;2.692307;2.312687;2.561176;1.405543;2.350354;2.128116;2.651935;2.30162;1.878017;2.129791;1.676953;1.489381;1.826821;1.807686;1.404178;1.289844;2.229156;1.596534;2.12463;2.962247;1.798457;2.9075;1.882617;2.69173;3.145951;1.290842;2.268995;2.378278;2.389533;2.178828;2.70847;2.338786;1.780122;2.569096;1.8204;2.645609;2.280983;
1.919573;2.514138;2.853867;1.701846;2.14645;1.734406;2.339396;2.624507;2.464488;1.909586;1.715061;2.061835;2.615498;2.546093;1.684472;2.41553;1.920781;1.927669;2.920047;1.825743;1.426338;1.632608;2.959263;1.390788;1.795143;2.289676;1.984588;2.048423;1.270523;2.136089;2.216069;1.169836;2.606645;2.285455;2.436665;1.430126;2.214719;2.387976;2.170706;1.627338;1.334595;2.203168;1.893642;2.156318;1.660275;2.242266;2.064483;1.627667;1.594886;2.820689;2.061306;1.460241;1.556372;1.320436;2.648793;2.472239;1.85367;2.262877;2.064494;2.942415;1.729098;1.520302;1.700077;3.464484;2.448297;2.024331;1.592831;1.913195;2.087079;1.30885;2.163431;2.633623;2.440061;2.220902;1.070154;1.895865;2.829581;2.433076;2.531239;1.48323;2.315644;2.677023;2.819277;2.430383;3.120652;1.997694;3.243363;2.113858;2.697753;2.723805;3.3885;2.348029;1.7048;2.28961;2.095363;1.128825;2.651252;2.6294;2.337378;2.018392;2.312743;2.842973;2.687127;1.933098;1.603225;1.548057;1.821283;2.909813;2.414319;1.649312;2.060481;2.485805;2.026456;2.857428;2.691434;1.613163;2.27027;1.748249;2.214593;2.663974;2.363794;2.115832;2.829819;2.52777;1.874636;3.356387;2.096234;3.055905;1.707525;2.516007;2.471266;1.690297;2.001235;1.859871;2.006817;3.082963;3.043274;1.702023;1.768022;2.274788;2.302766;2.60676;1.942788;2.534208;1.891375;1.669518;2.574092;1.8643;1.472604;1.662487;2.533481;1.566178;2.005462;2.355722;1.938449;1.926751;1.308856;2.234855;2.698355;1.168653;2.417682;2.367143;2.121853;1.427771;2.098838;2.543407;1.772226;2.005672;1.810577;2.05699;1.976296;2.387683;1.429343;2.307905;2.247595;1.729626;1.584376;2.588226;1.796136;1.49765;1.598172;1.350444;2.145714;2.709705;2.085952;2.407821;2.043078;2.600474;1.818992;1.596376;1.992283;3.593476;2.456847;2.006685;1.419844;1.88959;2.026557;1.424768;1.950821;2.971175;2.886803;2.022014;1.128691;1.939942;2.587099;2.48758;2.582343;1.669543;2.496044;2.349184;2.616146;2.455222;3.246182;2.034751;2.912179;2.21428;2.796367;2.82114;3.355447;2.043687;1.794943;2.382656;2.419557;1.203019;2.661075;2.609308;2.127553;1.994135;2.249989;3.012535;2.450623;2.223828;1.969697;1.382796;1.898146;2.96447;2.615474;2.042485;2.726686;2.664438;2.213737;2.261556;2.309286;1.877984;2.701616;1.555458;2.196603;2.928685;2.743647;1.995017;2.532338;2.238968;2.102927;2.826931;1.776136;3.304182;
2.019501;2.449367;2.289345;2.345502;2.780285;1.911443;2.606763;2.170326;1.988697;2.844193;1.487256;1.030228;1.80307;2.911105;1.61247;1.636983;2.652478;2.091797;2.878296;1.601558;2.806561;2.884732;1.469656;2.417933;2.235381;2.358682;2.096262;2.374346;2.021325;2.009158;1.990506;2.136544;1.963538;1.688594;2.376955;1.264387;2.258769;2.604583;1.826815;1.159702;2.11132;1.433978;1.649645;1.686636;1.24476;2.535157;2.567756;2.149998;2.188949;1.688807;2.446213;1.126826;1.392082;1.888852;3.146136;2.70702;1.408667;1.127789;1.734022;1.559841;1.239093;2.282169;2.541604;2.910432;2.341589;1.613275;2.109268;2.501898;2.736132;2.440633;1.760628;2.824265;2.80791;2.859443;1.920208;2.484921;1.808465;3.234857;2.105491;2.128718;3.233301;3.339113;3.00237;2.047793;2.996703;2.607793;1.524806;2.858212;2.760152;2.567458;2.784453;2.711269;2.513455;2.658573;2.218867;2.145719;1.389207;1.657831;2.744305;2.050396;1.743422;2.788162;3.043725;1.769441;2.209585;2.172697;1.810249;2.489603;1.59952;2.454121;2.329706;2.511605;1.963914;2.43009;2.345373;1.116656;3.064625;1.904327;2.520199;1.840757;1.931988;2.297771;1.562943;1.514731;1.771999;2.277448;2.728185;2.703831;2.331137;2.625876;2.140778;2.333171;2.538442;2.118979;2.476289;2.005309;1.892082;3.040955;1.460052;1.069036;1.625318;2.504089;1.613303;1.355717;2.781363;1.897727;2.891531;1.82377;2.625488;3.247243;1.418581;2.264593;2.239286;2.62916;2.187056;2.38847;2.064142;1.742983;2.017961;1.922965;2.345701;1.826586;2.226004;1.274923;2.064938;2.808928;1.7294;1.097934;2.089477;1.572287;1.628236;1.765531;1.119133;2.129067;2.588736;1.877197;2.362848;1.542711;2.467581;1.315405;1.268511;2.192163;3.093318;2.605427;1.456073;1.342662;1.824714;1.429349;1.343038;2.157192;2.677372;2.721664;2.713653;1.765845;1.995809;2.521616;2.504975;2.627092;1.570004;2.636878;2.68983;2.989703;1.938515;2.396484;1.732589;2.951703;2.219567;1.908996;3.395174;3.156174;3.061843;2.30468;2.796366;2.950648;1.398283;2.663517;2.732677;2.825775;2.950137;2.53908;2.660736;2.524156;2.345798;1.984621;1.678833;1.81312;2.6146;2.068935;1.56003;2.987885;2.791325;1.622276;2.104866;2.287185;1.827969;2.402152;1.540109;2.440627;2.832433;2.526784;2.021055;2.323553;2.684483;1.750752;2.643276;1.706441;2.274506;2.067207;1.976081;2.24334;1.921025;1.846764;2.130635;2.933064;2.589019;2.351199;
2.325229;2.215403;1.549668;1.961994;1.642406;2.8241;2.029817;2.818127;1.685323;2.769207;2.455029;1.297862;1.055751;2.511674;1.846809;1.514878;1.459388;1.117496;2.621403;2.677335;2.224064;2.538178;2.181917;2.626112;1.421007;1.610228;2.2399;3.206382;2.763591;2.080056;1.577215;1.932967;1.615531;0.8825312;2.911228;2.388281;3.263107;2.586573;1.534829;1.742256;2.861289;2.026114;2.806391;1.406951;2.185912;3.052278;2.770221;2.370548;2.947273;1.865158;3.456091;2.512395;3.03281;2.872517;2.937112;2.833424;2.55486;2.858981;2.455998;1.738875;3.282901;2.45132;2.511586;2.028737;2.604744;2.722772;2.266483;2.478837;1.676203;2.016368;1.922093;3.712471;2.607082;1.928985;2.609209;2.237754;1.73162;2.222152;2.594352;1.599998;2.233315;1.424657;2.542109;2.810039;2.621977;2.202041;3.038875;2.706161;1.61788;3.124821;2.141344;2.814363;2.115239;2.41311;2.525761;1.47696;1.783107;1.326848;2.980768;2.518241;3.370464;2.042606;2.407048;2.090515;2.64743;2.05302;2.291745;2.131569;1.679589;2.032773;2.810557;1.576526;1.386535;1.707348;2.793714;1.743926;2.12215;2.082655;1.675024;2.611808;2.109282;2.429446;2.728441;1.610933;3.142751;2.28747;2.211136;1.596627;2.322828;2.2033;1.308812;1.970573;1.676508;2.456385;2.177988;2.97093;1.808448;2.781747;2.547299;1.625414;1.22732;2.306283;1.843499;1.738925;1.443738;1.013849;2.51403;2.659801;2.061448;2.07505;2.312567;2.775275;1.547433;1.402926;2.169339;3.19214;3.091237;1.990201;1.542244;1.921259;1.589264;0.9034392;2.601487;2.348521;3.267555;2.214674;1.657454;1.75009;2.975936;2.082991;2.919076;1.707991;2.379206;2.802479;2.743244;2.539166;2.92469;1.748282;3.373619;2.472589;2.831228;2.328773;3.089474;2.871679;2.723384;2.602119;2.417024;1.701159;3.428677;2.458448;2.454859;2.180661;2.478616;2.707292;2.050724;2.35685;1.669402;1.827019;2.06713;3.709394;2.668841;2.038174;2.696952;2.603025;1.761629;2.153844;2.555655;1.891258;2.127754;1.287115;2.534843;2.681529;2.423184;1.868445;3.204949;2.731197;1.715115;2.920429;2.087507;2.766366;2.2335;2.420166;2.469829;1.607094;1.679914;1.31611;2.733662;2.395315;3.361964;1.851985;2.570014;2.088326;2.710798;2.165697;2.375065;2.488755;2.033124;1.659677;2.379982;1.571826;1.209754;1.203977;2.411709;1.245987;1.586956;1.738487;1.485268;2.166746;1.882257;2.068023;3.064012;1.829188;2.541942;2.19459;2.743983;2.144079;
3.0641;1.411514;2.197593;2.399855;3.16478;2.557102;2.926207;2.861426;2.75956;2.624217;1.871963;1.72922;2.154368;3.278967;2.602062;2.064167;2.510409;2.593842;1.945667;2.496849;2.248317;1.442182;2.744161;1.504225;3.29002;2.614305;2.569356;2.643402;2.74506;2.64875;1.675958;3.382217;1.896017;2.472234;1.76382;2.423639;2.39326;1.693533;1.683624;1.559658;2.668096;3.05822;2.240811;1.521898;1.777476;1.874192;1.864601;2.459967;1.88514;1.911579;1.677423;1.676487;2.651789;1.619846;1.137332;1.581365;3.312794;1.22162;1.80342;3.086592;1.805259;2.672078;1.894598;3.069577;3.443783;1.278674;1.920324;1.85748;2.777689;1.892105;2.724827;2.256976;2.016413;2.210902;1.902255;2.856672;2.142558;2.64265;1.742573;2.629442;2.456153;1.509649;1.504076;2.362725;1.506733;1.348631;1.805886;1.153625;3.171792;2.560904;2.191061;3.176213;2.221188;2.668236;1.70301;1.761373;2.035408;2.917189;2.373913;1.751986;1.283744;2.033855;1.566634;1.159492;2.857487;2.790843;2.156012;2.08997;1.150933;1.685595;2.005406;2.368378;2.538126;1.244653;2.300071;2.176153;2.431583;2.032367;2.673662;1.966356;3.53354;2.107717;2.266714;3.659722;3.090427;2.878875;2.557301;2.932089;3.118472;1.265754;2.225927;2.546992;3.066109;2.524183;2.577238;2.781598;2.799927;2.606049;2.020851;1.646983;2.361812;3.155619;2.628635;2.153562;2.570507;2.655518;2.135819;2.418171;2.17776;1.548825;2.714176;1.652797;3.18145;2.871834;2.386222;2.760955;2.847585;2.727531;1.839892;3.241594;1.97019;2.290066;1.71004;2.514836;2.290881;1.630249;1.461053;1.499183;2.753308;3.060937;2.319088;1.408072;1.955565;1.747716;1.937042;2.59231;1.985713;1.980138;1.789333;1.598436;2.574434;1.697576;1.163866;1.762252;3.266051;1.412699;1.588985;3.016713;1.802341;2.705738;1.962398;2.916981;3.349806;1.128791;1.929341;2.079013;2.790855;1.808112;2.481439;2.242191;2.008754;2.279215;2.001887;2.537258;2.242627;2.491129;1.713484;2.748107;2.406284;1.547923;1.671223;2.423306;1.540373;1.405169;1.875615;1.354491;3.025611;2.909898;1.981428;3.106049;2.218052;2.702716;1.767218;1.646926;1.963192;2.689201;2.384053;1.967896;1.292777;1.947456;1.383368;1.149465;2.848227;2.86834;2.262111;1.818645;1.897663;1.537777;2.018873;2.038693;2.88541;1.614813;2.479997;2.619705;2.432347;1.97141;2.90633;1.817442;3.122292;2.556252;2.390337;3.661983;3.051732;2.453838;2.428414;3.079605;
2.20306;2.517317;2.92457;2.750729;3.504159;1.728564;2.681548;2.051356;2.619478;2.818292;3.505979;2.889025;2.61007;3.099974;2.446109;1.492723;2.282934;2.327401;2.653223;2.452242;2.437681;3.173687;2.207046;2.446809;1.903069;1.538576;2.390887;2.84295;2.414827;1.70803;2.128749;2.542556;2.156838;2.302187;2.993062;1.708417;2.498013;1.502494;2.838519;2.489418;3.197871;2.01352;3.283181;2.723837;2.08771;3.235076;1.506897;2.396288;1.533294;1.964316;1.894203;1.636039;1.787362;1.45606;2.189354;3.062593;2.997197;1.900914;2.541644;2.437553;2.664041;3.045198;1.99159;2.384831;1.606878;1.663696;2.904582;2.066667;1.68736;1.473816;2.218003;1.53617;1.969175;2.474649;1.992697;2.7925;2.146759;3.150855;3.029395;1.430888;2.311465;2.07099;2.371573;1.888306;2.350816;2.679057;1.420328;2.118659;2.030449;2.108429;2.180429;2.180006;1.572408;2.209953;2.034573;1.562317;1.747811;2.323601;1.977801;1.524722;1.855985;1.061251;2.716324;2.436192;2.88041;2.165746;2.281196;2.712311;1.8951;1.720107;1.507549;2.852449;2.529731;1.380041;1.016532;1.74052;1.788686;1.132446;2.096776;3.201591;3.051393;2.463495;1.487489;2.032551;2.822135;3.090194;2.839421;1.403399;2.274053;2.360265;2.578642;2.324355;3.13732;1.881938;2.435211;1.836528;2.742846;2.565882;3.379341;3.046155;2.432449;2.776155;2.301842;1.666972;2.62813;2.578729;2.754145;2.520338;2.707925;3.041414;2.128803;2.644711;1.94966;1.660548;2.209345;2.686395;2.470296;1.936903;2.390336;2.541207;2.244935;2.16873;2.647902;1.337773;2.188394;1.668424;2.647922;2.310188;3.343413;1.818627;3.153957;2.823998;1.915768;2.934436;1.430613;2.668091;1.800171;2.210792;1.972356;1.643308;1.980077;1.384446;2.153924;3.342145;3.032356;2.050824;2.346586;2.315299;2.689533;3.286494;2.177075;2.318892;1.53437;1.599962;2.680149;1.753146;1.477545;1.629776;2.090942;1.350621;2.019934;2.232582;1.974169;2.98353;1.983843;2.77219;2.843098;1.589155;2.449935;2.384995;2.572465;1.999542;2.628935;2.570953;1.426259;2.29301;1.996914;2.240645;2.08515;2.064469;1.592836;2.416094;2.222801;1.508978;1.672955;2.248167;1.794289;1.25724;1.636437;1.194119;2.576371;2.200911;2.942795;1.939693;2.262377;2.900752;1.481543;1.518224;1.678547;3.599091;2.896864;2.056501;1.608237;1.643078;2.208669;1.163641;2.51249;2.482458;2.428029;1.900692;1.167487;1.860575;2.566651;3.143646;2.413302;1.221606;
2.62587;1.819359;3.4034;2.091545;2.705232;1.898417;2.333485;2.415793;1.526306;1.639607;1.717509;2.813626;3.071712;2.131924;1.688814;2.366933;1.999016;2.473211;2.684483;1.673818;2.697797;1.736263;1.772366;2.058386;1.830157;1.594824;1.290712;2.299026;1.916241;1.668931;2.715037;1.597135;2.240979;1.87066;2.972739;2.978371;1.217103;1.913088;2.024592;2.254684;1.829767;2.570963;1.954218;1.624116;2.203981;1.619345;2.703987;1.680747;2.867013;1.923785;2.507522;2.304212;2.31276;1.110143;2.787985;1.583048;1.951894;1.950103;1.231253;2.107489;2.575688;2.541202;2.732605;2.192518;2.768876;1.91046;1.793134;1.93459;3.389373;2.683643;2.033612;1.577444;1.785528;1.876265;1.280851;2.961145;2.884597;1.92674;2.198038;1.648487;1.781295;2.654522;2.670814;2.217793;1.910595;2.655806;2.603636;2.203858;2.415783;3.231153;1.544268;2.688029;2.560219;2.287735;3.245853;3.023604;2.359581;2.500579;3.004925;2.496047;1.277888;2.253259;2.559255;2.281027;2.420595;2.826016;2.318017;2.378548;2.313242;1.538982;1.844058;1.613486;3.521406;2.559648;1.754091;2.118702;3.264645;1.438392;2.971294;2.235885;2.111286;2.751199;1.533741;2.201838;2.512871;2.756937;2.343617;2.663575;2.705552;2.115569;3.072711;1.915346;2.709927;1.834681;2.1754;2.289105;1.635873;1.555248;1.850031;2.823493;2.745641;2.037657;1.542587;2.323168;2.09028;2.476574;2.649407;1.617875;2.886815;2.002844;2.247834;2.119176;2.049686;1.638296;1.24856;2.424945;1.746331;1.615077;2.695108;1.576489;2.253812;2.163284;2.716594;2.817249;1.204029;1.825778;1.829271;2.104483;1.901049;2.46478;2.14984;1.67623;1.913275;1.520134;2.467766;1.596072;2.886387;1.960088;2.532865;2.25849;2.443268;1.336942;3.319259;1.588992;2.10197;2.032054;1.231487;2.209559;2.397689;2.606324;2.714019;2.132185;2.825482;2.201222;1.590511;1.907919;3.372282;2.522877;1.792164;1.465417;1.877639;1.698306;1.423977;2.986738;2.617103;1.917398;1.98691;1.534114;1.830804;2.692089;2.690784;2.28596;2.033586;2.939986;3.058254;2.227987;2.608144;3.217254;1.527727;2.803844;2.382828;2.350343;3.225673;2.953601;2.41193;2.83244;2.740712;2.466394;1.267446;2.10691;2.287532;2.146681;2.527727;2.607271;2.509134;2.402106;2.426053;1.681533;1.480088;2.29048;3.659285;2.641844;1.55415;2.769855;2.618603;1.65074;2.462119;2.709014;2.183876;2.161966;1.93608;2.345068;2.512299;2.270956;2.127878;2.427494;
1.401043;3.162373;2.048728;2.821636;2.485174;2.858975;2.123345;2.639737;2.375667;1.593778;3.385618;1.984079;2.818328;1.683121;2.761303;2.650314;1.443957;2.001848;1.349344;2.364255;2.870084;2.57028;1.99236;1.965745;2.455459;2.627033;2.838831;1.725361;2.15922;1.83457;2.018313;2.334532;1.567276;1.287437;1.807597;2.82716;1.909135;1.512896;2.912962;1.631902;2.335759;1.696869;2.400135;3.324707;1.475937;1.964991;1.95194;2.720324;1.55793;2.464445;1.982947;2.081318;2.325318;1.362709;2.646975;2.374374;2.7418;1.721627;3.143708;3.066796;2.15927;1.420521;2.206856;2.112676;1.45703;2.142444;1.577324;2.811556;2.599155;2.575311;2.260503;1.89446;2.625305;1.595861;1.879173;2.187352;3.50413;2.460897;2.223825;1.820906;1.706549;1.986197;1.067966;2.200522;2.861152;2.541837;2.265153;1.095633;2.164136;2.909563;2.714453;2.406301;1.381985;2.429241;2.533636;2.142468;2.047081;2.57293;2.014999;2.998941;2.677355;2.47547;3.136895;2.670864;2.286522;2.111917;2.390062;2.97888;1.597376;2.049318;2.265299;2.731231;2.017189;2.435712;2.257464;2.670516;2.494874;1.460585;1.988929;2.069391;3.398305;2.431908;2.136929;2.740391;3.202899;2.026039;1.942082;2.821532;1.519479;3.11316;1.955844;2.861064;2.621164;2.918219;2.002539;2.546923;2.763731;1.44471;3.124385;2.007798;2.988347;1.659624;2.316808;2.450819;1.578174;2.013183;1.415161;2.401463;2.814419;3.018778;2.014545;1.771655;2.492375;2.505619;2.527727;1.722192;2.274587;2.047774;1.938595;2.217162;1.68415;1.272781;1.712379;2.808859;2.01473;1.570729;2.796341;1.540034;2.698815;1.563768;2.161701;3.295918;1.576601;1.955866;1.589436;2.519177;1.713733;2.474118;2.064349;2.091841;2.286809;1.685307;2.706645;2.161225;2.802075;1.621142;2.817852;2.801742;2.195369;1.608376;2.206199;2.009072;1.54842;2.238624;1.494121;2.940916;2.666219;2.551248;2.277858;1.894345;2.977347;1.45948;1.612978;1.969474;3.543114;2.461064;1.91273;1.664102;1.846184;2.106823;1.133069;2.343405;2.761886;2.870874;2.44569;1.02494;2.191141;2.768457;2.345793;2.172332;1.41157;2.673087;2.533977;2.038224;2.156113;2.678371;1.92158;3.132649;2.746356;2.451861;3.158499;2.670836;2.616865;1.954691;2.089358;2.72456;1.482191;2.43279;2.412311;2.63999;2.531713;2.518277;2.360439;2.317341;1.884727;2.253613;1.937158;2.058398;3.010462;2.860897;1.849875;2.750579;3.085415;1.913588;2.292702;2.382257;
3.081323;2.186883;2.102378;2.353165;2.045205;2.456503;1.300878;1.741453;2.026786;3.297098;2.598692;2.013793;1.25405;1.56132;1.967215;1.676111;2.407205;3.269272;2.539001;1.948383;1.378978;1.581655;2.844369;2.356556;2.031466;1.218782;1.876554;2.308396;2.757264;2.232174;2.949059;1.544389;2.96106;2.046951;2.80416;2.629553;2.945473;2.388475;2.111497;2.729354;2.466193;1.220613;2.01498;2.812847;2.77451;2.152934;3.085531;2.401578;2.25071;2.358873;1.672816;1.562761;1.802263;2.776316;2.996451;2.438354;2.7797;2.832994;1.667382;2.568798;2.696377;2.104699;2.843026;2.17179;3.273983;2.241282;2.286326;2.047261;2.779896;2.688425;1.559486;3.392025;2.083899;2.981109;1.926387;2.430332;2.328009;1.392282;2.100247;2.038352;2.55356;3.349703;2.502768;1.624912;2.177063;1.799976;2.759097;2.127768;1.419073;2.058807;1.342257;1.486146;2.964754;1.813865;1.324851;1.253607;2.540939;1.370322;1.888699;2.066492;1.758762;2.460611;1.624663;2.396817;2.88499;1.320073;1.928125;2.102885;2.795644;1.833857;3.04055;1.920199;1.646565;2.284805;1.573625;2.042011;1.753026;2.352424;1.765879;2.715412;3.015022;2.056421;1.609774;2.641437;1.839498;1.843873;2.076745;1.633713;3.277633;2.224269;2.057656;2.727912;1.875104;2.5009;1.246063;1.509222;2.07381;3.418462;2.843549;1.753615;1.443435;1.825785;1.843495;1.752423;2.555898;2.913462;2.75778;2.062453;1.575729;1.918355;2.520802;2.049841;2.325169;1.431552;2.313972;2.067221;2.832943;2.375958;2.906057;1.436088;3.107257;2.12854;2.739358;2.954775;2.701357;2.368999;1.970584;2.419241;2.485011;1.336363;2.226941;2.447818;3.017795;2.403198;2.851093;2.511714;2.372869;2.107928;1.856439;1.644711;2.007485;3.147118;2.59912;2.143633;3.097174;3.214349;2.086273;2.498398;2.619038;2.020406;2.840654;2.044201;3.375668;2.303626;2.331988;2.435945;2.554283;2.612731;1.400825;3.144092;2.063269;2.978919;2.021311;2.291199;2.425827;1.453902;1.940453;2.140896;2.637801;3.023461;2.841969;1.795054;2.413459;2.052644;2.329646;1.930933;1.614825;2.228837;1.619748;1.433286;2.883555;1.736292;1.323248;1.157578;2.630726;1.419631;1.930283;2.457666;1.580228;2.388943;1.462648;2.189766;2.860826;1.319067;2.023154;1.974581;2.057504;1.780298;2.399112;2.51701;2.156852;2.160684;2.17297;2.367081;2.658758;2.410456;1.650537;2.610662;2.853106;1.706917;1.464814;2.583452;1.835886;1.483052;1.83084;1.318448;
2.85403;2.398961;1.647828;2.652898;1.90608;2.00898;1.721535;2.591987;1.83583;2.938967;1.968032;1.674641;3.454707;1.540272;2.330874;1.48015;1.423185;1.095835;2.248949;2.692335;2.981401;2.188788;2.783514;1.271107;1.346091;2.443956;1.952937;2.067747;2.410356;2.221904;3.262911;2.292038;3.00064;2.110349;2.150482;2.590372;2.438316;2.343071;1.35643;1.853641;2.749527;1.696082;1.188089;2.295478;3.089267;2.613056;1.671471;1.617763;2.164328;2.384273;1.934184;1.860183;1.372281;1.484181;2.000185;2.174921;2.003609;1.919516;2.044205;2.314225;2.646959;1.978456;1.683024;3.712682;1.650755;1.661377;1.986274;2.024813;2.484559;2.52103;2.466933;1.877764;1.611787;2.008901;1.213294;1.705177;1.866377;2.70843;2.884032;1.330871;1.643282;2.002095;2.159398;2.960881;2.026567;2.206751;1.697789;2.374098;2.033727;1.325945;1.583966;1.820249;3.463852;1.392457;1.952542;3.177879;2.027005;2.626972;2.07433;2.808844;2.211287;1.578042;1.900499;2.541535;2.784125;2.453417;1.937861;2.644633;2.753314;2.324047;2.853622;2.298921;2.104873;1.941142;2.724896;2.297078;1.893728;2.410558;2.307055;2.550629;2.636066;3.309112;2.342459;2.482512;2.755944;2.343304;3.1373;3.456022;3.172247;2.417282;1.611044;2.32076;2.090014;2.061163;2.200701;2.902805;1.703528;2.838293;2.196287;1.740596;3.344181;1.506852;2.265548;1.754377;1.339167;1.30611;1.970932;2.530286;2.892605;2.165948;2.564874;1.073287;1.207495;2.197593;2.015273;2.026171;2.321992;2.204783;3.190864;2.485526;3.396909;2.204626;2.146339;2.272787;2.682066;2.407783;1.707917;2.131494;2.637894;1.689352;1.389442;2.386208;3.007984;2.578458;1.532131;1.908189;2.078843;2.7748;1.700146;1.729117;1.306687;1.468657;1.724746;1.917924;1.851331;1.769419;2.134138;2.370246;2.664872;1.980971;1.685198;3.799521;1.764103;1.707087;2.072566;1.803412;2.706916;2.527987;2.898073;2.135465;1.564606;1.995853;1.369626;1.868878;1.903304;2.69042;2.768931;1.495658;1.404609;2.317541;2.000587;2.868868;1.927236;2.132472;1.420492;2.083698;1.923295;1.197296;1.612897;1.86996;3.485558;1.394489;1.955843;3.258352;2.153238;2.684395;2.163279;2.546927;2.422345;1.583465;2.282079;2.840077;2.722942;2.43902;2.134963;2.84769;2.213913;2.512849;2.471288;2.325773;1.861007;2.105851;2.259946;1.98323;2.111488;3.011998;2.566272;2.123269;2.259958;3.216093;3.019889;2.76433;2.90438;2.792161;3.376054;2.967752;
1.24095;2.546673;3.166628;1.887005;1.26928;2.669569;2.488228;2.448044;2.283532;2.402075;2.378441;1.822311;1.611595;2.094801;2.382449;3.300435;2.175999;2.646457;2.116777;2.410197;2.337758;1.693941;1.502122;1.188224;3.013678;2.352065;2.169079;2.240444;2.415666;2.07796;2.396339;2.976003;2.732305;3.190422;2.201673;2.497424;2.936612;2.600161;2.909672;2.042232;1.995455;2.469805;1.959821;1.453904;1.812318;1.998743;2.336905;2.506347;2.308882;1.271969;3.484033;1.492353;2.249038;1.73989;1.430205;1.35122;2.825413;2.900524;2.664134;2.941564;3.146862;1.682358;1.662231;2.070944;1.412264;2.753947;1.84855;2.74372;2.317818;2.199679;3.72416;1.915713;2.111711;2.222233;2.60828;2.527427;1.332545;1.798522;2.174875;2.037127;1.349896;2.330191;2.224766;2.469064;1.23923;1.39482;1.755589;1.61267;2.067027;1.962413;1.603378;1.304234;1.920512;1.712289;1.657112;1.543156;2.39734;3.000146;1.99315;2.311405;1.61821;2.938422;1.581197;1.533257;2.434552;1.903641;2.637083;1.716627;2.800542;1.312553;2.114296;1.688775;1.441422;1.442505;1.886061;2.557295;2.601827;1.514924;1.14292;2.6996;2.549298;2.972491;1.708487;2.473094;1.687494;2.759267;2.671025;1.182791;1.467106;2.379616;3.086868;1.856149;1.075594;2.794068;2.330886;2.543754;2.259164;2.412599;2.477991;1.914579;1.818673;2.481723;2.399425;3.23952;1.996533;2.840922;1.97356;2.435479;2.401118;1.861615;1.330652;1.29785;2.718498;2.054604;2.121363;1.99918;2.494141;2.125456;2.640454;2.997071;3.149992;2.99148;2.135675;2.488862;2.665106;2.686459;2.753887;2.2124;2.049685;2.477787;2.058436;1.564155;2.060011;2.347961;2.372496;2.51312;2.178459;1.434328;3.310145;1.513016;2.315745;1.916858;1.27722;1.514258;2.599169;2.605037;2.620853;2.738565;3.000164;1.588199;1.875309;2.111068;1.750844;2.562407;1.927626;2.693998;2.128802;2.162139;3.557282;1.98656;2.153255;2.222799;2.73119;2.745331;1.381072;1.970824;2.218835;2.06563;1.279708;2.541969;2.237051;2.457236;1.329939;1.45783;1.592004;1.703717;1.860912;1.715274;1.576875;1.17079;1.806397;1.617774;1.869836;1.578297;2.832833;2.800914;2.075167;2.266502;1.461031;2.895665;1.473095;1.597188;2.479018;1.904855;2.760591;1.897953;2.164992;1.614221;1.624341;1.507466;1.190287;2.263754;1.595259;2.607927;2.806562;1.956795;1.223125;2.789389;2.585315;3.08322;1.713595;1.996521;1.69203;2.899033;2.820525;1.35199;
3.076093;2.736573;3.087233;2.45527;2.100138;1.939401;2.578366;2.21404;1.397263;1.292388;1.692645;2.606042;2.491005;2.250506;2.220155;2.464143;2.688451;2.710654;2.894121;2.667317;2.972513;2.3659;1.931967;2.703083;2.306221;3.108716;1.906933;1.536778;2.578655;1.903142;1.969754;1.474021;2.377371;1.480067;1.936584;2.459732;1.386128;2.606888;1.742303;1.699843;1.669263;1.453568;1.073225;3.084369;2.93457;2.374217;2.351116;3.146969;1.463867;1.618031;2.649324;2.039596;2.676974;1.72756;2.027553;2.390901;2.102382;3.361145;2.351982;2.693315;2.984501;2.760901;2.701102;1.744769;2.366881;2.582016;2.076605;1.781127;1.911791;2.387969;2.767596;1.456222;1.049333;1.482887;2.315951;1.840823;2.109403;1.797766;1.527993;2.045936;2.006334;2.114398;1.708407;2.571482;2.996701;2.310445;1.848709;1.741676;2.684981;1.775154;1.395158;2.059579;2.112127;2.727071;2.189213;2.22599;1.574857;1.399086;1.465698;1.628349;1.823204;1.44642;2.832829;2.344076;1.260515;1.382075;1.988378;3.094323;3.439093;1.542208;2.316123;1.782594;2.538538;2.370252;1.525896;1.711152;2.60598;2.909151;1.459473;1.277661;2.790399;2.064376;2.955928;2.456521;2.799859;2.782593;1.998393;2.588255;2.929241;2.722005;3.365404;2.569711;2.435174;2.458025;2.490778;2.636678;1.387505;1.33256;1.789513;2.577453;2.327578;2.426721;2.486131;2.543552;2.459653;2.525366;2.856287;2.650345;2.963977;2.533672;2.092758;2.803934;2.293407;2.920374;1.831343;1.316132;2.304451;2.114484;1.957339;1.515228;2.219825;1.506278;2.180231;2.523218;1.629776;3.178261;1.663899;1.952997;1.625105;1.535517;1.159353;3.001192;2.703306;2.533315;2.602661;3.115124;1.296131;1.491883;2.649414;2.004167;2.657966;1.82708;2.193146;2.379074;2.089967;3.188936;2.301826;2.474449;2.662654;3.006115;2.76502;1.829077;2.333084;2.549004;2.185213;1.806998;2.096975;2.810152;2.684083;1.574323;1.062394;1.544983;2.486594;1.861672;1.900809;1.975123;1.794985;2.062079;1.92101;1.911852;1.586358;2.498961;2.861333;2.311069;2.02129;1.613383;2.749614;1.629471;1.390909;1.868802;1.84368;2.970792;2.247705;2.321216;1.548169;1.374876;1.558008;1.653121;2.005033;1.778788;2.749338;2.493428;1.275605;1.442109;2.147707;3.121736;3.164365;1.843207;2.633033;1.727087;2.488631;2.185079;1.360053;1.279296;2.720168;3.539526;2.046824;1.068992;2.983358;1.688917;2.540667;2.225118;2.975823;2.870567;1.602871;2.819039;
1.146364;1.436955;1.992499;2.808389;2.88661;1.572283;1.19618;2.65088;2.851244;3.228487;1.441883;2.614194;1.771872;2.385239;1.915407;1.440953;1.398999;2.488921;2.985187;1.267424;1.475186;2.468643;1.655412;1.825597;2.0927;2.361002;1.853878;1.617505;2.537349;2.424965;2.440396;2.735842;2.118519;2.050473;2.107832;2.403685;2.807111;1.683451;1.272386;1.902901;2.568911;2.497109;2.299884;2.649196;2.752983;2.0498;2.0425;2.903198;2.996514;3.199503;3.055299;2.336671;2.754054;2.605299;2.67046;1.897872;1.718078;2.246783;1.862524;2.062866;1.940281;2.681187;1.824231;2.511627;1.876923;1.182142;3.45378;1.673843;2.352976;2.226234;1.225645;1.715369;2.828388;2.964008;2.348443;2.795222;2.957685;1.313634;1.189374;2.854198;1.644272;2.604259;1.82549;2.11949;2.639108;2.059763;2.694131;1.538815;1.981323;2.129658;2.140457;2.568917;1.962247;1.801057;2.288928;1.966144;1.341451;1.823086;2.291803;2.588863;1.61521;1.438271;1.512071;2.569852;1.783155;2.131029;1.716586;1.826036;2.076127;1.613793;1.443759;1.667797;2.637501;3.133536;2.904183;2.193402;1.57182;2.998228;1.400625;1.562158;2.701847;1.845263;2.901116;2.647309;2.75152;1.844182;1.713896;1.584867;0.9931809;1.538123;2.026315;2.761367;2.548651;1.536239;1.21266;2.651696;2.678002;3.24539;1.693706;2.926981;1.734868;2.218553;1.942633;1.439338;1.29524;2.355881;3.007701;1.28361;1.448253;2.761571;1.488287;2.152374;2.442898;2.3876;2.225892;1.679322;2.477623;2.512678;2.275765;2.837708;1.939409;2.182722;2.05563;2.30579;2.456613;1.609561;1.326836;1.901604;2.447393;2.532382;2.527667;2.911492;2.694397;1.861126;2.123355;2.938082;2.902797;3.068248;2.993903;2.341917;2.716401;2.859993;2.524493;2.26317;2.086205;2.289538;2.164029;2.101517;1.922088;2.728299;1.782384;2.503023;1.806859;1.305289;3.469013;1.596977;2.049316;2.001028;1.280819;1.62282;2.709795;2.957999;2.59521;3.046149;2.939942;1.163085;1.337637;2.776912;1.66922;2.517124;1.838276;2.130204;2.621145;2.142723;2.549849;1.774621;2.383574;2.134231;2.47925;2.612697;1.944045;1.840405;2.241906;1.959269;1.282226;1.975949;2.304327;2.493702;1.365497;1.25901;1.573188;2.457111;1.689143;2.126632;1.928557;2.030426;1.714491;1.62133;1.790586;2.116785;2.210399;2.489733;2.329121;2.225263;1.505666;2.800385;1.130131;1.888877;2.434837;1.792901;2.656401;2.290448;3.310214;2.109489;1.788006;1.287254;
2.969893;1.739017;2.618563;2.555697;1.47793;1.794558;1.944274;2.839734;2.734216;2.753024;2.313896;2.222676;1.846128;2.400134;2.404475;2.07548;1.615466;1.460919;1.613947;2.147324;1.363229;1.73414;1.678631;2.459026;0.9783241;1.423759;2.538296;1.996102;2.127332;1.871864;2.261144;3.199911;1.324959;1.841705;2.223297;2.155232;1.537736;2.883209;2.408919;2.002648;1.679952;1.655879;2.67997;1.986809;2.33866;1.704949;2.735787;2.701057;1.770691;1.611596;3.058906;1.927898;1.930245;1.968866;1.710456;2.875591;2.671846;2.425203;2.123169;1.667116;2.74333;2.07489;1.564487;1.594821;3.202733;2.582686;2.133385;1.549854;1.767397;1.766147;1.630563;2.822157;2.838047;2.722892;2.863997;1.63223;1.827928;2.595162;2.544466;2.712952;1.033842;2.241775;2.485892;2.243628;1.888627;3.433826;1.885589;2.980709;1.684213;2.208549;3.288898;3.646277;2.413544;2.265817;2.532747;2.580297;1.366174;2.166726;2.542184;2.398712;1.967428;3.045486;3.00703;2.688176;2.075777;1.645559;1.958761;2.017121;2.997814;2.49244;2.201278;2.739654;2.715537;2.253306;2.938131;2.666033;2.0008;2.746915;2.148775;2.956658;3.091778;3.078854;2.279897;2.236092;2.640373;2.046416;3.05851;1.401528;2.775007;1.88933;2.656957;2.576537;1.467759;1.702353;1.90448;2.553715;2.812662;2.536259;2.332267;2.193352;2.166097;2.456187;2.5704;1.85515;1.680108;1.575192;1.504281;2.221236;1.444967;1.543954;1.703297;2.482873;1.279004;1.550354;2.944103;1.908993;2.192924;1.707423;2.140606;2.731674;1.208974;2.012314;2.262956;2.125858;1.526068;2.795644;2.424953;1.815162;1.748012;1.505016;2.693105;1.915723;2.681189;1.77578;2.964941;2.499878;1.820237;1.744911;2.89808;1.945158;1.987422;1.785931;1.773953;2.956595;3.131558;2.606456;2.487185;1.510587;2.750316;1.967996;1.417456;1.3555;3.093709;2.745325;2.09296;1.515733;1.837675;1.689331;1.524077;2.565558;2.792922;2.573716;2.724275;1.537495;2.114256;2.736474;2.700764;2.631187;1.115261;2.363297;2.259248;2.251426;2.032826;3.179174;1.822263;3.027088;1.942408;2.425635;3.564674;3.412926;2.421119;2.153958;2.345501;2.273172;1.296;2.315902;2.499097;2.356209;2.042479;2.94424;2.862683;2.437817;2.038095;1.530059;1.844424;1.911753;2.996125;3.071008;2.617584;2.720496;2.451579;2.39351;2.887408;2.2153;1.916907;2.271033;2.258647;2.964318;3.038623;3.033156;2.409081;3.11832;2.29535;2.023595;3.068141;1.765944;
3.227439;1.867812;2.320506;1.669471;2.007498;1.301507;1.535956;1.813679;2.851011;2.131603;1.362549;1.649883;2.013991;1.830893;1.070648;2.300704;2.420197;2.610792;2.104242;1.48214;1.728845;2.340735;3.134965;2.510459;1.539574;2.412111;2.110806;2.718962;2.190497;2.801459;1.44704;2.775107;2.705513;2.621978;3.351878;3.281882;2.669049;2.322936;2.602074;2.868477;1.651265;2.842409;2.561271;2.41841;1.956943;2.989051;2.508004;2.473361;2.127494;2.070305;2.013186;2.574552;3.439482;2.835382;2.435807;2.787746;2.875598;2.143988;2.469546;2.973895;1.941996;2.430459;1.900617;2.105651;3.154896;1.939918;1.827693;1.937436;1.838398;1.366243;3.222982;1.714568;2.443024;1.52197;1.681055;2.31958;1.569525;1.723807;1.533768;2.264366;2.629239;2.427026;1.702077;2.022094;1.817576;2.317564;3.113435;1.871822;2.320331;1.644764;1.546055;2.481769;1.656405;1.299895;1.367257;2.40744;1.896932;1.729994;2.619508;1.794094;2.377849;1.964488;2.647132;3.116495;1.637333;2.606207;2.330645;2.156724;1.346597;2.845057;2.150966;1.891559;1.877828;1.95047;2.69162;2.263828;2.80581;2.043174;2.815706;2.654757;1.847613;1.442852;2.62607;2.027316;1.805665;1.841727;1.557758;2.575534;3.009197;2.021591;2.358495;1.732735;2.242213;1.321754;1.670038;1.932912;3.169032;2.183101;1.575334;1.409999;2.001123;1.742756;1.464312;2.424018;2.355531;2.320428;2.058952;1.163353;1.633639;2.263127;3.019666;2.377232;1.645914;2.043179;2.069997;2.336433;2.091412;2.969627;1.541687;3.212218;2.442712;2.795003;3.456727;3.425278;2.913071;2.323266;2.717208;2.984788;1.847326;2.901852;2.91356;2.176996;1.928426;2.852615;3.038346;2.541269;1.992144;1.845191;2.021876;2.167781;3.252607;2.766361;2.286409;2.586869;2.929964;1.829455;2.484329;2.761972;1.811847;2.652677;1.820344;2.41582;2.869874;2.152227;1.942642;2.205064;2.106067;1.301796;3.298174;1.858529;2.659087;1.598537;1.879029;2.233509;1.54565;1.659305;1.768321;2.258928;2.478186;2.247324;1.745659;1.80584;1.741282;2.172574;2.894757;1.760982;2.349373;1.402189;1.478091;2.289143;1.536429;1.464344;1.299355;2.739242;1.677497;1.931366;2.756651;2.052555;2.681084;1.88777;2.71539;3.310549;1.815107;2.70679;2.562655;2.07433;1.624541;2.217971;2.129044;2.163664;1.85479;1.536967;2.389231;2.012913;2.697541;2.096407;2.377223;2.422221;1.363389;1.131898;3.115181;1.298635;1.911086;2.150697;1.719303;2.569916;
2.906607;2.715541;2.477827;2.330185;3.065021;1.335899;2.313851;2.527745;2.205736;2.281982;2.263488;2.230955;2.11309;1.817741;1.535425;2.101069;2.177084;2.959681;2.172872;1.56524;2.617402;2.843148;1.631737;2.522597;2.431023;1.654911;2.502484;1.795036;2.508773;2.137454;2.425026;2.435227;2.568351;2.57891;1.584292;2.434443;1.695315;2.243573;1.422456;1.932543;2.141776;1.420847;1.993125;2.09043;2.72483;2.729857;2.810385;2.082602;2.63502;2.523744;2.637997;2.809423;1.626511;1.925678;1.963378;2.0034;2.750206;1.462149;1.62811;1.733785;3.207044;1.626198;1.940715;2.582054;1.869618;2.442369;2.110043;2.3468;3.653209;1.317221;2.131681;2.286753;2.20439;1.920386;2.191008;1.622425;1.647534;1.607061;1.442386;2.834611;2.318103;2.332423;1.517818;2.434589;2.652772;1.907927;1.269534;2.511954;1.779578;1.650859;1.659027;1.265899;2.617298;2.332301;2.2037;2.781582;1.926247;2.504526;1.573645;1.178377;1.888332;2.588566;2.340034;1.558625;1.285333;1.850126;1.890823;1.451979;2.765363;2.526802;2.793908;2.265892;1.705338;2.095387;2.678191;2.76779;2.097259;1.094958;2.914647;2.473111;2.360649;2.098699;3.205964;1.809254;3.518859;2.100596;2.652569;2.879741;3.275078;2.723314;2.630574;2.720096;3.189837;1.434522;2.524783;2.453295;2.442382;2.275398;2.218421;2.055146;2.165965;1.77486;1.685566;2.045769;2.064626;2.754766;2.108712;1.52574;2.545494;2.590451;1.823879;2.298527;2.136919;1.766287;2.272055;1.580601;2.578121;2.103917;2.385763;2.303673;2.904544;2.610388;1.699157;2.774926;1.775698;2.388874;1.60777;1.846643;2.35439;1.43531;1.932673;1.875744;2.754614;2.696499;3.023906;2.028499;2.531359;2.331978;2.569577;2.728268;1.579743;1.709763;2.20423;1.804891;2.456455;1.564211;1.44483;1.682399;3.173027;1.586589;1.923777;2.544831;2.085125;2.620137;2.242371;2.541461;3.715864;1.470849;2.198315;2.263212;2.349645;1.853961;2.199154;1.609827;1.58099;1.579827;1.612869;2.875681;2.146974;2.28585;1.466337;2.228538;2.547798;1.738499;1.340604;2.360608;1.489556;1.680039;1.534302;1.222144;2.587492;2.2848;2.186618;2.743054;2.145867;2.684645;1.688916;1.317546;1.934243;2.802207;2.410841;1.539284;1.397573;1.785054;1.899155;1.440713;2.876282;2.295917;2.703624;1.892984;1.22935;2.186802;1.97439;2.574182;2.366578;1.425019;2.503785;2.606963;2.77743;2.05385;2.943845;1.482546;3.620785;2.272666;2.717968;2.873321;
2.420853;2.024714;1.365771;2.299959;2.184585;1.85745;1.505852;2.609814;1.579898;2.031529;2.660085;1.698602;2.380831;1.431895;2.102325;3.561923;1.677423;2.412638;2.32166;1.871263;1.389668;2.606058;2.070186;2.071581;2.399631;2.015965;2.723738;2.12943;2.692264;1.897965;2.627591;2.81827;2.138721;1.459758;3.130795;1.643947;2.000059;2.037728;1.198704;2.688696;2.267424;2.061213;1.841386;1.393874;2.406801;1.999014;1.052034;2.105266;2.752633;2.494765;1.430392;1.375594;1.422452;2.186858;1.203745;3.219453;3.098979;2.710202;2.230439;1.414953;1.820908;2.483011;2.28892;2.536299;1.675166;2.719751;2.067863;2.426723;3.103345;3.834468;1.709467;3.185328;2.342599;3.088;3.35392;3.083409;2.512595;1.804821;2.309605;3.014935;1.705964;2.557042;2.518124;2.142638;2.036664;2.931905;2.57273;2.712567;2.761612;2.104316;1.938336;2.058915;3.242486;2.735128;1.986581;2.986076;3.11855;1.926784;2.877241;2.352354;2.306113;2.934492;1.5364;2.687205;2.235096;2.604634;1.733785;2.005009;2.175562;1.984012;2.440811;2.162956;2.345367;1.579381;1.871209;2.426409;1.202726;2.305254;1.59705;3.268888;3.033068;2.893906;1.952514;2.150259;1.666959;2.30932;2.369013;1.773835;2.132754;1.745284;1.304165;2.077537;2.230877;2.107651;1.58545;2.998016;1.578995;2.284783;3.086029;1.70624;2.276012;1.401438;2.317258;3.696477;1.592772;2.190004;2.360185;1.993628;1.496192;2.5859;2.190327;2.104863;2.345137;2.158202;2.808424;2.167105;2.336527;1.946826;2.774886;2.816147;1.832877;1.258928;3.023083;1.408176;2.010406;2.238256;1.214173;3.063151;2.234683;2.371764;2.194021;1.359044;2.271162;1.911046;1.154892;2.226662;2.621587;2.320865;1.465071;1.461513;1.513825;2.11131;1.250713;3.282602;3.01255;2.933584;2.312535;1.501512;1.62182;2.581593;2.49401;2.533996;1.489146;2.570698;2.012148;2.106422;2.948487;3.969034;1.699766;3.593678;2.30749;3.326112;3.719561;3.139981;2.507789;1.808632;2.529057;3.159465;1.691752;2.507172;2.600626;2.217277;2.007213;2.729795;2.606395;2.772862;2.678143;2.188792;1.939056;2.163764;2.974814;2.839337;2.177968;2.984288;2.862864;1.802188;2.811527;2.037854;2.172829;3.053177;1.527221;3.063995;2.200908;2.82434;1.999397;2.051668;1.916825;1.544426;3.298449;2.308256;3.236755;1.371362;1.950421;2.246033;1.714683;1.797044;1.665803;2.746351;2.987956;2.894144;2.033087;2.583065;1.587208;2.109359;2.352655;1.848926;
1.316972;2.893722;2.472854;2.107533;1.603803;2.45158;2.697656;2.310608;2.45159;1.799229;2.263297;2.818536;2.525192;2.671512;1.227526;2.232445;2.681163;1.917212;1.473482;1.447501;2.849891;2.45621;1.12723;1.126491;1.559508;1.934681;1.766181;1.518312;2.14461;1.665723;1.390443;1.911008;2.289783;1.758315;2.505703;2.647739;2.661332;2.39932;1.666888;2.499404;1.489243;1.069485;2.879207;1.851083;2.648464;2.092172;2.673531;1.66853;2.23538;1.839828;1.378238;1.714165;1.917273;3.174632;2.566627;1.827561;1.257911;2.417937;2.90485;2.640804;1.583522;2.496947;1.557731;2.503733;1.851929;1.652112;1.881239;2.036594;2.720658;1.662669;1.421523;3.025734;1.63443;2.361674;2.284586;3.134231;2.264594;1.856635;2.007998;2.845327;2.48717;3.064718;2.023577;1.780502;2.518762;2.284554;2.164737;1.647427;1.358946;1.425411;2.443777;2.026397;2.724918;2.502629;2.085351;2.45559;2.767477;3.207001;2.534187;2.702212;2.580086;2.616031;2.722831;2.423121;3.088266;1.562204;2.184297;2.481128;1.921185;1.761599;1.854739;2.337786;2.18482;2.75941;2.024986;1.509609;3.454011;1.930475;2.074332;2.314231;1.54795;1.442406;2.738954;2.537383;2.355116;2.833562;2.8279;1.516451;1.011065;2.662587;2.418281;2.107758;1.546043;2.210819;2.675461;2.24296;2.330984;1.700293;2.117886;3.263432;2.296303;2.826634;1.471545;2.274451;2.316401;1.767578;1.384469;1.381768;2.625065;2.186946;1.298085;1.210192;1.754875;2.001359;1.719315;1.932744;2.07847;1.85501;1.518861;1.887135;1.932846;1.645717;2.491603;2.659227;2.622183;2.169142;1.575312;2.443831;1.43292;1.04844;2.746766;2.227957;2.435093;2.238253;2.912581;1.709131;1.921405;1.760621;1.31249;1.645612;1.726928;2.871996;2.707894;1.938294;1.449505;2.574414;2.875098;2.97044;1.568738;2.717875;1.574856;2.587396;1.690708;1.46214;1.962646;2.025056;2.741522;1.472243;1.498786;2.82949;1.444345;2.275092;2.161502;3.391516;2.123436;1.982024;2.079903;3.018238;2.342236;2.850535;2.039429;1.691229;2.356436;2.029162;2.506096;1.649237;1.428239;1.501195;2.411746;2.316343;2.706588;2.723694;2.106155;2.538533;2.570486;2.940069;2.629398;2.688908;2.601457;2.375597;2.830526;2.247926;2.825731;1.491956;2.064749;2.710708;1.653993;1.685586;1.580775;2.330919;1.447989;2.314105;2.080605;1.19412;2.864666;2.034075;1.925198;1.887274;1.543761;1.726798;2.393629;3.230049;2.786847;2.879102;2.745997;1.214405;
2.41145;1.442105;1.22013;1.949056;3.364646;1.873068;1.752809;3.059259;1.502026;2.449533;2.422437;2.182168;2.531239;1.755004;2.514365;2.820281;2.571373;2.871976;2.464367;2.229299;2.203398;2.304413;2.606702;2.115303;1.411315;1.874052;2.963792;2.106018;2.534034;2.260268;2.531554;2.036224;2.090754;2.830262;2.877639;2.379811;2.792044;1.924618;2.760695;2.659044;2.815403;1.700516;1.965852;1.626581;2.208553;2.1644;1.886519;2.587131;1.583022;2.125588;2.364296;1.194672;2.673391;1.72342;2.332088;1.251591;1.34922;1.87264;3.111413;3.000319;2.874641;2.685675;3.202713;1.770764;1.511766;2.451197;1.427001;1.992003;2.044553;2.683576;3.057642;2.459779;2.732555;1.902523;2.263034;2.071757;2.604197;2.263379;1.676351;2.090261;2.317024;1.947208;1.558471;1.873564;2.567949;2.356876;1.554554;1.541461;1.72426;2.523985;1.927473;1.767334;1.918138;1.338652;1.758033;1.364665;1.446361;1.392736;2.602804;2.142864;2.798231;1.803296;1.559582;3.06787;1.616456;1.206035;2.415941;1.283015;2.742164;2.26317;2.639674;1.715971;1.512516;1.333393;1.364068;1.45225;1.386035;2.76786;3.131888;1.023076;1.469514;2.903241;3.086774;3.403869;1.98386;2.706222;1.792261;2.805125;2.24966;1.548852;1.248464;1.69359;3.555873;1.781418;1.861392;2.92464;1.356315;2.499041;2.387341;2.515964;2.711673;1.818012;2.458127;2.787319;2.812298;2.808988;2.335913;2.258683;2.496168;2.550037;2.78866;2.240697;1.463419;1.720199;2.791575;2.197447;2.560942;2.069633;2.202246;1.810916;2.009411;2.967467;2.921616;2.12187;2.994925;1.802026;2.911525;2.6237;2.703064;1.739329;1.942164;1.947209;2.408566;2.206535;1.854712;2.616398;1.822959;2.103937;2.247259;1.217195;2.99966;1.944141;2.524342;1.392819;1.444301;1.748049;2.945097;2.908222;3.009103;2.654574;2.940719;1.608255;1.41115;2.600399;1.482649;1.760742;2.202372;2.527198;3.083672;2.340464;2.531765;1.892781;2.282568;2.253232;2.920245;2.468891;1.730193;2.171721;2.56314;1.945188;1.488663;1.906478;2.869983;2.603009;1.61577;1.627055;1.756278;2.323539;1.83731;1.697437;2.028368;1.317164;1.565341;1.222902;1.347891;1.506359;2.677704;1.903397;2.982496;1.67603;1.578155;2.935102;1.462811;1.19883;2.436058;1.427463;2.90488;2.535453;2.796768;1.93018;2.250719;1.364458;1.644155;1.541242;2.009648;2.739228;2.70802;1.085286;1.480289;2.646256;2.828786;3.668078;1.659294;2.054931;1.302984;2.805337;
1.400694;1.146622;2.09829;1.809251;2.617227;2.290254;2.315527;1.36893;1.721081;1.671303;1.709142;1.56678;1.419893;3.082793;2.470775;1.51394;1.459095;2.139349;2.899321;3.248332;1.674376;2.302647;1.80667;2.359545;2.507456;1.510488;1.70632;2.26966;2.731975;1.609085;1.202865;3.154821;1.87897;2.492761;2.698893;2.846823;2.444995;1.979988;2.616584;2.707484;3.087255;3.311376;2.540039;2.284519;2.162531;2.620113;2.698543;1.745667;1.320618;1.901328;2.489166;2.388627;2.457597;2.383409;2.683761;2.600909;3.02101;3.095011;2.867572;2.719576;2.621836;2.41693;2.83082;2.557993;2.805913;1.741341;1.564295;2.457901;2.056686;1.727129;1.696719;2.126344;1.942923;2.340109;2.628696;1.493822;2.922727;1.690165;2.027321;1.714887;1.462073;1.193042;2.759559;3.002696;2.604553;2.229845;3.06621;1.360528;1.717244;2.532939;2.106263;2.474219;1.865712;2.367863;2.216555;2.223159;3.153485;2.076307;2.616188;2.641366;2.719596;2.718187;1.991752;2.02745;3.048146;2.367873;1.737081;1.881987;2.510992;2.740393;1.511029;1.124347;1.602563;2.432845;1.602896;1.954764;1.887437;1.383907;2.239394;1.865763;2.031538;1.398539;2.815327;2.587125;2.342647;1.82031;1.708111;2.651481;1.501094;1.207712;1.927999;2.237291;2.655949;2.215882;2.174452;1.747358;1.70751;1.458961;1.732876;1.540056;1.55587;2.662912;2.599867;1.46141;1.394066;2.085949;2.799606;3.622047;1.627242;2.466657;1.981692;2.357925;2.352417;1.287051;1.820333;2.287278;2.715215;1.328628;1.435809;2.750155;1.967987;2.63133;2.52909;3.319499;2.444738;1.891894;2.458491;3.08129;3.023586;3.065586;2.582206;2.207642;2.279933;2.213835;2.810179;1.601847;1.258575;1.869376;2.431613;2.686756;2.390158;2.498882;2.897243;2.490539;2.85051;2.793844;3.054117;2.704552;2.427785;2.168497;3.168422;2.365861;2.81567;1.814753;1.483691;2.809496;2.045394;1.780442;1.576958;2.4472;1.852682;2.1899;2.65082;1.423957;2.877628;1.486471;2.112783;1.717261;1.328688;1.134293;2.765171;3.240973;2.523272;2.502801;3.305415;1.272596;1.553679;2.318585;2.248445;2.459928;1.703417;2.122017;2.517351;2.044415;3.165054;2.156478;2.512708;3.005459;2.707638;2.784949;1.862643;2.341148;2.936024;2.21684;1.755971;1.803767;2.293467;2.471377;2.035192;1.369135;1.459538;1.76369;1.583985;1.936834;1.447354;1.912713;2.04037;1.552333;1.662887;1.516503;2.189625;2.659208;2.519161;1.885127;1.464008;2.667069;
1.835203;2.24439;2.046582;2.386778;2.588586;3.092407;1.552307;2.937327;1.900103;2.73591;2.667167;3.681724;2.337577;2.603089;2.408931;2.566055;1.3294;2.085796;2.799277;2.587847;2.052748;2.215074;3.06772;2.649037;2.291135;1.639224;2.218597;2.308412;2.482843;2.815137;1.95986;2.49072;2.876658;1.999782;2.823115;2.920225;1.976707;1.946847;2.087643;2.267504;3.208243;2.614553;2.357831;2.235942;2.748664;1.661772;3.072484;1.841747;2.348787;1.893723;2.393594;2.438133;1.480211;2.077193;2.27582;2.798238;3.082385;2.097049;1.779151;2.668615;2.015937;2.515084;1.896599;1.867026;3.015152;1.634099;1.522988;2.259267;1.91367;1.582321;1.31027;2.662906;1.287302;1.915856;2.382409;2.388874;2.421744;2.057039;2.392333;2.837671;1.311954;1.9376;2.300714;2.192787;1.388566;2.13178;2.335243;1.704449;1.997448;1.486295;3.044636;2.433326;2.042435;2.19132;2.562032;2.430972;1.856175;1.506922;2.726486;1.80622;1.802359;1.22617;1.715819;2.130557;3.264384;2.345726;2.482875;1.743727;2.759912;1.62532;1.619207;1.803051;2.977205;2.800836;1.833647;1.349093;1.619612;2.070505;1.383067;2.847855;2.909254;2.147375;2.13747;1.513552;2.212993;2.54303;2.004327;2.45658;1.948236;2.284763;1.942267;2.305516;2.402848;3.572654;1.228433;2.788151;1.818525;3.001814;2.912971;3.620847;2.537671;2.358335;2.345397;2.33776;1.441712;2.259353;2.713322;2.554671;2.131997;2.381768;2.606341;2.656968;2.321212;1.673309;2.171292;2.210666;3.039698;2.631133;2.201566;2.480536;3.056832;2.049271;2.602889;2.770809;1.800049;2.288254;1.752266;2.134659;3.150676;2.896353;2.501685;2.143288;2.95206;1.43703;3.063559;1.677149;2.55229;2.075189;2.241518;2.389196;1.547093;2.198701;1.940314;2.842799;3.178619;2.15178;1.673656;2.388;2.42071;2.299405;2.026531;1.843338;3.015631;1.654847;1.4182;2.276353;1.839973;1.874093;1.075146;2.581123;1.187823;2.223303;2.558049;2.143373;2.512348;1.805288;2.270546;2.614773;1.341608;2.094694;2.222187;2.295642;1.545326;2.236611;2.033047;1.791832;1.993374;1.588034;2.939554;2.166328;2.449843;1.991048;2.712568;2.404747;1.856436;1.527439;2.585768;1.82206;1.730946;1.485118;1.444987;2.058226;3.104638;2.685486;2.662235;1.535422;2.446639;1.430294;1.321996;1.247059;3.089158;2.35006;1.278567;1.225421;1.64402;1.815688;1.104382;3.297669;2.594777;2.373057;2.564699;1.71019;2.042068;2.663366;2.631712;2.511996;
1.600209;2.907799;1.966281;1.452348;1.907491;1.005801;2.823028;3.089572;2.279108;2.447446;1.91853;2.109125;1.838858;1.424181;1.422534;3.285315;2.677028;1.62098;1.465217;1.952111;2.101208;1.266226;2.815073;2.200964;2.441444;2.385569;1.748232;2.090279;2.040792;2.751644;2.862749;1.339022;2.371864;2.244595;2.916429;2.804959;2.615853;1.395009;2.489753;2.57428;2.336305;3.578311;2.656217;2.570968;2.061589;2.221168;2.350433;1.021275;2.607607;2.34725;2.468723;1.849576;2.723675;2.179048;2.407162;2.137429;2.261312;2.035985;1.867893;3.516349;2.660737;2.189597;2.80663;2.863526;2.151934;2.744143;2.744642;1.534942;2.684072;1.320547;2.71057;3.031239;2.733797;2.14758;2.494651;2.110453;2.010695;3.062544;1.438907;2.813328;2.215685;2.12419;2.279438;1.583321;2.125485;1.664722;2.794187;2.390897;2.515312;2.105654;2.422884;2.36004;1.896479;2.855491;2.402749;2.185607;1.757862;1.514083;2.655758;1.947325;1.132829;1.194142;2.110609;1.934591;1.601387;2.998893;1.338716;2.336747;1.5285;2.208373;2.793246;1.100094;2.65054;1.903106;2.107647;1.282306;2.678714;1.809044;1.586583;1.857523;2.408824;2.841439;1.733523;2.887919;2.031212;2.884785;2.429557;1.840787;1.706777;2.916777;1.93892;1.374836;1.870928;0.9031469;3.034013;2.938202;2.554422;2.288904;1.942977;2.383;1.746634;1.64324;1.427445;3.332332;2.800955;1.620888;1.224861;1.942281;1.858882;1.363023;2.765246;2.103781;2.563337;2.372156;1.663038;2.048177;2.087347;2.837236;2.714748;1.442389;2.520144;2.26949;2.888225;2.642921;2.571413;1.293617;2.752383;2.496616;2.623263;3.410087;2.678781;2.820041;1.950333;2.520916;2.4041;1.080763;2.707608;2.362708;2.145948;1.789477;2.403026;2.328218;2.406029;2.087938;2.358178;2.038142;1.773042;3.489369;2.681156;2.215154;2.586274;2.941064;2.119163;2.837603;2.836062;1.504915;2.697032;1.214679;3.033784;2.880674;2.96632;1.993641;2.610787;2.417266;1.912123;3.323075;1.425771;2.840234;2.133424;2.19755;2.071479;1.620734;1.892413;1.786542;2.841666;2.279521;2.546907;2.083245;2.406168;2.337939;1.914633;2.884559;2.199995;2.253344;1.729069;1.583706;2.746808;1.913478;1.141957;1.093511;2.397716;1.814631;1.781291;2.816465;1.424945;2.659168;1.439817;2.429264;3.00679;1.135265;2.536998;2.194225;2.268792;1.535466;2.727062;1.915372;1.948049;2.243055;1.938326;2.525711;1.911478;2.397847;2.118276;2.797039;2.551553;1.887834;
2.389548;1.809567;2.287762;3.169935;1.83084;2.164843;1.909545;1.354586;2.474485;1.720127;2.420898;2.227862;2.300962;2.17141;2.336219;2.231915;1.453983;2.650915;1.628479;3.217147;1.843397;2.516932;2.234099;1.220657;1.669283;1.813656;2.574051;2.487697;2.707154;2.257765;2.568227;2.367388;2.540745;2.83977;2.208872;2.435778;1.819074;1.826653;2.554624;1.76572;1.194725;0.9925615;2.845863;1.474496;1.865745;2.220905;2.084746;2.808474;2.011427;2.621607;3.082873;1.815367;2.350698;2.500629;3.059812;1.68347;2.872231;2.302989;1.815622;1.999958;1.624446;2.6918;1.827667;2.281067;1.608537;2.424991;2.393504;1.809624;1.348244;2.226907;1.279919;1.177859;1.642496;1.439243;2.252318;2.347659;1.910106;2.284878;1.826792;2.240191;1.429268;1.065754;1.612432;3.687239;2.594997;2.046279;1.493965;1.519394;1.694233;1.370232;2.483528;2.260897;2.616351;2.435941;1.762594;2.270733;2.61884;2.818866;2.952731;1.511158;2.549863;2.462709;2.497759;2.189314;2.691169;1.249543;3.219001;2.083642;2.412277;2.638242;3.380252;2.783453;2.548036;2.65256;2.779186;1.745493;2.67354;3.012635;2.675828;2.352779;3.267839;3.061363;2.694826;2.49008;1.739914;2.06241;1.719783;2.926416;2.570278;1.849154;1.977814;2.746317;1.847142;2.16587;2.258816;1.598629;2.59514;2.226737;2.277848;2.39823;2.582908;1.908309;2.240771;2.323669;1.599617;2.823983;1.741693;2.684717;1.747599;2.449947;1.917422;1.25154;1.905765;1.958319;2.539643;2.618081;2.643571;2.206875;2.371441;2.426602;2.660947;2.880564;1.948821;2.109454;1.815415;1.804407;2.895672;2.01564;1.239772;1.385042;2.75221;1.658053;2.103766;1.935335;1.949884;2.847522;2.105378;2.833844;3.305653;1.437347;2.19989;2.449749;2.635536;1.671083;3.087501;2.503306;1.837385;2.098943;1.591253;2.772061;1.663375;2.301664;1.737636;2.457578;2.116729;1.624679;1.348095;2.149543;1.482864;1.396363;1.715973;1.814873;2.149277;2.53672;2.212017;2.09874;1.701913;2.23824;1.540015;1.199203;1.769609;3.274674;2.441031;1.950652;1.165387;1.521768;1.882303;1.445482;2.487542;2.366708;2.574244;2.513145;1.601379;2.292095;2.782955;2.854688;2.644255;1.343065;2.549723;2.38212;2.778375;2.484681;2.785073;1.601549;3.095449;2.262564;2.959657;3.081077;2.872074;2.505843;2.000239;2.552321;3.063884;1.125829;2.212025;2.500525;2.548419;2.39243;3.199628;2.837488;2.593694;2.094917;1.707872;2.319688;1.659245;3.654961;
1.429546;2.645659;2.386947;1.43584;1.664873;1.566466;2.341668;1.928491;2.355041;1.594295;2.24908;2.299448;2.04987;1.502195;2.978733;1.674221;1.621714;1.94589;1.320795;2.558066;2.412885;2.291047;2.980609;2.166024;2.797849;1.980724;1.592929;1.847964;3.203708;2.540097;1.96996;1.342821;2.07005;1.412638;1.151497;2.758103;2.434632;2.557039;1.840121;1.653803;2.107057;2.642729;2.700069;2.671601;1.567846;2.773619;3.031258;3.021369;2.54909;3.846714;1.7274;3.288902;2.219712;2.357813;3.646407;2.869781;2.301523;2.302613;2.471184;2.439765;1.615871;2.404168;2.185183;1.965331;2.030323;2.403764;2.995431;1.996085;2.066299;1.62354;1.438748;1.89262;3.000815;2.234865;1.75315;2.633597;3.364518;1.99544;2.879471;2.428831;1.830325;2.530619;1.622554;2.520563;2.410481;2.634741;2.501435;2.754806;2.912915;2.129246;3.493827;1.999084;2.809839;1.813412;2.439298;2.369623;1.710049;1.341389;1.651404;2.528198;2.647479;2.638658;1.375036;2.293085;2.245961;2.524036;2.631879;2.071342;2.401047;1.855052;2.010844;2.855159;1.888831;1.835885;1.437302;2.656116;1.598155;1.83597;2.432409;1.338293;2.232285;1.62826;1.893425;2.784647;1.579646;2.321784;2.264009;1.909398;1.386904;2.469574;2.458098;1.43774;2.015547;1.683123;2.401587;1.967782;2.380038;1.566566;2.33167;2.514212;2.185654;1.343865;2.71265;1.513672;1.726135;1.808596;1.304132;2.359147;2.464581;2.212602;2.449245;1.88366;2.953297;1.835759;1.300374;2.182359;3.265874;2.845078;2.183707;1.428857;2.009658;1.301649;1.194363;2.704051;2.838788;2.724816;1.914102;1.670344;2.111367;2.634046;2.768641;2.847423;1.663189;2.575572;2.7735;2.805379;2.700322;3.649134;1.709956;3.033448;2.280859;2.267938;3.092387;2.543997;2.462647;2.143258;2.104887;2.571782;1.59249;2.700518;2.498103;2.077246;1.946562;2.376939;3.072444;2.07379;2.386937;1.677038;1.604662;2.01236;2.973905;2.21778;1.75024;2.585938;3.39079;1.836981;2.72048;2.24379;1.934997;2.492754;1.611789;2.432149;2.421236;2.442492;2.16427;2.550943;3.062428;1.967667;2.980609;2.118878;2.779927;2.071905;2.770413;2.492466;1.63409;1.321469;1.709437;2.615698;3.009881;2.706722;1.53815;2.424806;2.223667;2.506015;2.629211;2.029872;2.069108;1.536278;1.460341;1.947207;1.821248;1.315799;1.434094;2.854177;1.721593;1.753562;2.159041;1.313752;2.469206;2.044614;2.098295;3.011036;1.339242;2.482672;2.592196;2.721792;
2.721685;1.406509;1.899928;2.111388;2.461003;2.819963;2.494237;1.741444;2.545879;1.817403;2.249404;2.78367;1.476536;2.298467;1.575971;1.698164;2.302658;1.405123;1.206314;1.63729;2.120228;1.647754;1.417667;2.644837;1.644715;2.639422;1.673051;2.936878;2.677094;1.748088;2.706264;2.614826;2.741512;1.611994;2.587859;2.576905;1.595345;1.763007;1.613259;2.702138;1.511633;2.264633;1.83128;3.196974;2.557079;1.801397;1.728588;3.01007;2.198865;1.889203;1.7075;1.094773;2.461924;2.828839;2.561653;2.839927;2.150776;2.234301;1.803578;1.246801;1.86568;3.562124;3.070052;2.224891;1.815475;1.687129;1.841285;1.694731;2.478482;2.834159;2.651523;2.194567;1.760653;1.733816;2.583898;2.762309;2.321543;1.69285;2.30782;2.458328;2.340681;1.967858;2.64525;1.757722;2.635019;2.340231;2.304241;3.038637;2.973537;2.998174;2.264521;2.750278;2.454214;1.850731;2.781246;2.976932;2.910545;2.172523;2.500417;2.856612;2.193321;1.956145;1.603701;1.766907;1.515014;3.002226;2.833691;2.37562;2.605635;2.834983;2.185925;2.869878;3.126541;1.852843;2.318124;1.406516;2.447687;2.762577;2.738567;2.393365;2.610676;2.252909;1.727212;3.195024;1.682757;3.045507;2.151938;2.476067;2.5847;1.402464;1.606028;1.87623;2.41669;2.909175;2.69634;1.981807;2.942853;1.802192;2.589602;2.563998;1.654869;2.418505;1.602181;1.848385;2.370273;1.214586;1.294194;1.46643;2.289362;1.982357;1.35658;2.33079;1.480644;2.811993;1.599704;3.087829;2.687277;2.045268;2.668022;2.431399;2.561963;1.647589;2.230954;2.255067;1.530136;1.778822;1.710456;2.980455;1.792754;2.302191;2.135187;2.900415;2.75654;1.856393;1.695007;3.230519;2.243853;1.711966;1.816895;0.9404922;2.622481;3.191953;2.416646;2.533123;1.943195;2.446872;1.732183;1.487264;1.74941;3.681098;3.070746;2.05716;1.633728;1.703756;1.62915;1.514874;2.408097;2.797272;2.722985;2.534739;2.025514;1.631596;2.810389;2.704032;2.387297;1.598506;2.304768;2.659019;2.343931;1.767104;2.897804;1.643483;2.813336;2.617146;2.1203;2.815145;2.685342;3.060324;2.07071;3.103115;2.320519;1.937414;2.78193;2.783087;2.67926;2.191967;2.252206;2.62237;2.127074;1.926171;1.6594;2.073993;1.761469;2.867893;3.070731;2.322654;2.744764;2.365526;2.2908;2.469867;2.955168;1.96701;2.741349;1.523621;2.621924;2.852474;2.981215;2.657185;2.143008;2.613746;1.894118;3.347616;2.045406;3.09444;2.148011;2.618332;
2.728926;1.431771;2.315964;2.799026;1.831773;2.304051;1.449099;3.057875;2.498607;2.579798;2.262951;2.972441;2.912665;1.468162;3.474946;2.192243;2.503189;2.023039;2.222195;2.945465;1.482857;1.86555;1.31645;2.667311;2.278744;2.994022;1.92421;2.325993;2.037086;2.487073;2.350404;2.07766;2.292671;1.472442;2.078291;2.766218;1.815477;1.439294;1.737686;3.268925;1.577423;2.100861;2.157944;1.631792;2.880724;1.922775;2.868055;2.788442;1.461761;2.834606;2.004527;2.598727;1.341597;2.783406;2.208862;1.411343;1.743217;1.454301;2.610644;1.977792;3.10355;1.474189;2.935114;2.410541;1.800046;1.052929;2.242419;1.912724;1.663707;1.568665;1.237036;2.892702;2.289253;2.135366;2.436092;2.011202;2.642644;1.32851;1.704738;2.265862;3.122074;2.796878;1.790346;1.733317;1.758167;1.808728;1.004226;2.53783;1.974152;2.871637;2.246686;1.514704;1.684987;2.572534;2.353674;2.721016;1.651224;2.062138;2.76694;2.747256;2.34504;3.063352;2.097348;3.709522;2.132453;2.8419;2.625343;2.606222;2.831658;2.263861;2.940313;2.621863;1.599973;3.148325;2.274252;2.633816;1.831566;2.689631;3.035605;2.191575;1.919041;1.441598;2.041766;2.062129;3.598287;2.217448;2.096818;2.494836;2.571266;1.66954;2.021974;2.626434;1.726592;2.276564;1.281358;2.736155;2.280523;2.322189;2.328047;2.911704;2.784648;1.450852;3.525551;2.376545;2.844349;2.041267;2.191618;2.602165;1.68047;1.919565;1.752235;2.993228;2.158029;2.897216;2.151871;2.413465;1.978226;2.448967;2.18442;2.405443;2.204839;1.782688;1.835361;2.605883;1.739962;1.424032;1.4816;2.952049;1.442693;1.943692;2.250319;1.598014;2.77569;1.910696;2.800746;3.001172;1.741896;2.943475;2.000584;2.280595;1.523853;2.853863;2.651876;1.65501;1.654515;1.448068;2.905319;2.153806;3.151115;1.46091;2.818987;2.630653;1.549811;1.28453;2.080229;1.838551;1.573417;1.506219;1.001459;2.571083;2.171159;1.971201;2.4711;2.063449;2.660543;1.33057;1.706925;2.333813;3.27725;2.856583;1.872599;1.529281;1.946426;1.814534;1.286365;2.83616;1.922687;2.85606;2.458547;1.669198;1.720938;2.554878;2.250837;2.954662;1.412626;2.381684;2.587297;2.658206;2.238585;2.975723;1.787766;3.344154;2.019336;2.652035;2.662552;2.665757;2.954362;2.410543;2.51209;2.878425;1.386865;2.478023;2.271959;2.795645;2.174308;2.464199;2.831167;2.713948;1.970401;1.58454;1.650366;1.938056;2.797928;2.401425;1.565557;2.551505;
2.567374;2.449851;2.71751;2.756176;2.70738;1.766043;2.123884;2.286731;2.592882;3.406095;2.258843;2.424815;2.326362;2.474181;2.633142;1.926414;1.349927;1.995251;2.727418;2.207711;2.413514;2.215739;2.19596;2.591138;2.502726;2.699453;2.039205;2.836863;2.000124;2.746408;3.010692;2.52837;3.296056;2.284277;2.057297;2.146655;2.120189;2.181711;1.66368;2.377011;2.041222;2.370023;2.407976;1.223291;2.801402;2.002147;2.235311;1.586415;0.9744438;1.218894;2.258793;2.15635;2.824367;2.443318;2.201896;1.309275;1.359385;2.482839;1.593119;1.780352;1.846839;3.147621;2.455194;1.863339;3.856546;1.948405;2.5907;2.653012;2.987871;2.83098;1.506516;1.863717;2.578454;2.44522;1.596683;2.179173;2.962596;2.988397;1.554775;1.443292;1.594094;2.542936;1.575273;1.880474;1.839418;1.666039;1.640417;2.135308;1.910624;1.389802;1.946618;2.556057;2.210576;2.77223;1.626608;2.957399;1.830612;1.777365;2.391632;1.689165;2.849918;2.730634;2.337449;1.711914;2.042603;1.680982;1.597244;1.50313;1.694702;3.636977;2.66472;1.15681;0.9675527;2.214276;2.095986;2.527677;1.848735;2.607162;1.447821;2.58856;1.900281;1.338007;1.278877;1.474099;3.52545;2.211668;1.216211;2.53782;2.073908;2.535109;2.765288;2.500355;2.407638;1.844525;2.147674;2.36428;2.405943;3.276846;2.241318;2.345538;2.095204;2.555097;2.864909;2.149906;1.530133;2.163752;2.669227;2.671309;2.364968;2.535709;2.543091;2.660806;2.339957;2.630185;2.047761;2.475718;2.476623;2.940368;2.762489;2.522181;2.815345;2.356313;2.099317;1.945439;1.878837;2.235457;1.696173;2.544784;1.950859;2.259848;2.398685;1.191344;2.579024;2.047812;2.468391;1.840941;1.16826;1.377291;2.2145;2.615773;2.776818;2.787328;2.569644;1.403489;1.281703;2.451296;1.608224;1.552742;2.107059;3.162968;2.241167;1.879292;3.382504;2.008838;2.806707;2.390376;2.758618;2.760196;1.543799;1.920098;2.461551;2.326124;1.59625;2.201954;2.512843;2.852642;1.758686;1.706855;1.874783;2.763055;1.668176;2.274037;1.849571;1.844415;1.966865;2.157804;1.80523;1.361329;1.971176;2.282509;2.494587;2.787279;1.453277;2.978147;1.508747;1.835783;2.599275;1.48156;2.626253;2.661753;2.383793;1.766474;1.938591;1.58312;1.596757;1.522912;1.929135;2.842336;2.935136;1.406201;1.319174;2.672605;2.392718;3.170402;1.80143;2.736592;1.961005;2.654533;1.867772;1.323522;1.607448;2.179295;3.578032;2.202776;1.334736;2.480308;
1.712739;1.607006;1.231083;1.422697;1.762829;2.318149;1.961461;2.281876;2.224468;2.40377;2.635465;1.270438;2.573882;1.316454;1.507145;2.569631;2.098444;2.939763;2.771276;2.628283;1.685705;1.515599;1.794631;1.457249;1.811308;1.714722;2.747602;2.113352;1.37081;1.47666;2.759614;2.122289;3.314619;2.030915;2.506477;1.658722;2.874948;2.484879;1.716196;1.608091;2.407608;3.26278;2.541246;1.515375;2.357819;2.107227;2.718076;2.93907;2.210349;2.087986;1.659644;2.073342;2.09331;2.784158;2.989865;1.92736;1.924037;1.608089;2.474964;2.60966;1.38629;1.335057;1.501108;2.436481;2.086563;2.102624;2.126331;2.067029;2.438765;3.273128;3.486725;2.877237;2.353784;2.594095;2.822087;2.502107;2.295137;2.460753;2.126696;2.11043;2.382712;2.257997;2.476799;2.016458;2.674244;1.832038;2.527637;2.558171;1.546821;3.159008;1.674369;1.570152;1.825688;1.628365;1.518902;2.088476;2.70969;3.069555;2.685486;2.871542;1.876724;1.687255;2.790181;2.07648;2.358196;1.945294;3.236816;2.509121;1.777074;3.225052;2.085046;2.839647;2.13597;2.252959;2.516467;1.433873;1.582411;2.633716;2.117786;1.565176;1.543121;2.347617;2.445598;1.559245;1.3154;1.312889;1.894754;1.469562;1.697623;1.755415;1.472006;1.23441;1.767419;2.382569;1.578574;2.556852;2.417571;2.467074;2.584471;1.340641;2.661919;1.38223;1.302324;2.704475;2.160815;2.997678;2.569606;2.477937;1.815852;1.567811;2.036669;1.901944;1.794707;2.10962;2.570123;2.206887;1.680175;1.306542;2.569876;2.042167;3.25887;2.242445;2.871004;1.416562;2.840111;2.529235;1.35349;1.727726;2.566299;3.395123;2.504;1.554426;2.391636;2.170047;2.419292;2.964604;2.274033;2.156396;1.532;1.9199;2.228078;2.800036;3.301213;2.328735;1.906753;2.010002;2.340835;2.794288;1.67645;1.168442;1.418085;2.395818;2.161076;2.254173;2.315472;1.767687;2.30275;3.189974;2.976955;2.879234;2.585937;2.685023;2.830751;2.653868;2.313894;2.572658;1.928702;2.175014;2.578751;2.266038;2.177608;1.837107;2.714015;1.745454;2.831474;2.860995;1.59103;3.681572;1.601215;1.714103;2.157558;1.443762;1.43611;2.050961;2.795664;3.252211;2.898699;2.516671;1.758476;1.62769;2.337216;2.078295;2.591671;2.024215;3.247313;2.661458;2.015193;3.702948;1.804182;2.536373;2.902736;2.620107;2.447534;1.357151;1.848571;2.052542;1.70741;1.665108;1.635084;2.673824;2.537674;1.64194;1.464696;1.456215;1.736257;1.501403;
2.676232;1.458154;2.258045;2.323025;1.578647;1.538755;2.080632;2.735399;1.984555;1.6374;2.191771;1.968553;2.740742;2.605209;3.027774;2.051521;1.892846;2.666327;2.322107;2.803782;2.880731;2.283634;1.787149;1.819778;2.225919;2.844923;1.493747;1.609736;1.565707;2.613387;2.201993;2.245671;2.351756;2.754453;2.019191;3.118008;3.253051;2.721015;2.635939;2.177332;2.323704;2.749121;2.175868;2.358453;2.130521;1.995257;1.825433;1.54058;2.405921;2.309876;2.812906;1.808702;2.712629;2.689316;1.561632;3.167638;1.961674;1.738082;1.677258;1.65656;1.701669;2.571072;2.747657;2.061171;2.633535;2.721668;1.349343;1.561452;2.627962;2.123526;2.205524;1.753659;2.596948;2.890487;1.810412;3.2351;2.149553;2.631069;2.886106;2.36115;2.393056;1.938488;1.821135;2.637058;1.83213;1.613113;1.430168;2.124849;2.348107;1.692358;1.066369;1.947041;2.038777;1.720289;1.517897;1.773848;1.460636;2.046951;1.289015;2.194685;1.813044;2.648957;2.452547;2.222085;2.024123;1.482536;2.519838;1.084264;1.570658;2.411438;1.346096;2.23315;2.549302;3.131215;1.967935;1.739905;2.012701;2.030054;2.126165;1.680471;2.975752;1.939133;1.115702;1.725814;2.720589;2.612942;3.085702;1.632347;2.605164;1.498593;2.241751;2.466353;1.527556;1.50959;2.022435;2.922222;1.968668;1.499297;2.279111;2.41615;2.963156;2.482001;3.024653;2.303499;1.897696;2.32145;2.440851;3.076447;2.761842;2.413937;2.048621;1.692113;1.997431;2.574401;1.290256;1.698867;1.379156;2.578077;1.983207;2.807364;2.319191;2.823277;1.9197;3.219489;3.159831;2.63543;2.623155;2.342138;2.348419;2.589911;2.181466;2.794749;2.315622;1.853318;1.872519;1.788893;2.465799;2.005731;2.86115;2.013447;2.59651;2.785161;1.864578;3.035983;1.793474;1.541896;1.403621;1.718838;1.537318;2.492952;2.624366;2.494542;2.719977;2.822824;1.318701;1.638221;2.562418;1.911021;2.196087;1.805618;2.631929;2.68484;1.829493;3.722658;2.374081;2.467082;3.076987;2.558917;2.569962;1.686242;1.921524;2.889803;1.752367;1.564025;1.722582;1.918823;2.171599;1.468084;0.8602921;2.015098;1.858579;1.657159;1.42653;2.178151;1.525087;2.135499;1.259153;2.286154;1.758762;2.411757;2.442473;2.281321;2.054899;1.336887;2.542458;1.374173;1.895488;1.951063;1.647078;2.642745;2.813668;2.799075;1.717481;1.728062;1.750528;1.733613;1.973182;1.784921;3.252421;2.725725;1.075747;1.907289;2.249544;2.660986;2.66299;1.843258;
1.920744;1.663743;2.882218;2.377007;1.884531;1.926044;1.171719;1.273843;2.317391;2.281449;2.944366;2.930726;2.702857;1.315488;1.378573;2.600484;1.462783;2.23024;2.160669;3.085296;2.192308;2.387725;3.256305;1.965934;2.560738;2.715119;2.465643;2.862046;1.827169;1.728984;2.733556;1.885272;1.880998;2.26258;2.631854;2.502171;1.701292;1.072401;1.71824;2.326734;1.668501;1.828783;2.030569;2.014814;1.958299;2.079935;1.857174;1.800348;2.265282;2.266088;2.213104;2.771075;1.677447;3.366035;1.153166;1.341094;2.879033;1.905126;2.070624;2.466632;2.955957;2.115525;1.432584;1.510537;1.1668;1.867687;1.763204;3.699597;2.34018;1.511591;1.215823;2.399823;2.495231;2.490157;2.12314;2.737758;1.407584;2.262531;2.090724;1.321331;1.099723;2.018598;3.441533;2.186216;1.051261;2.859765;2.124941;2.416451;2.847667;2.870785;2.27931;1.956962;2.478745;2.243219;2.931632;2.54029;2.663058;2.662329;2.446769;2.257205;2.81047;1.603215;1.559916;1.689272;2.560257;2.365666;2.72199;2.855121;2.548556;2.607476;2.619298;3.072408;2.425602;2.306799;2.378737;3.030954;2.768526;2.904765;2.591495;2.36868;2.572481;1.977957;1.556203;2.219386;1.926954;2.76906;1.708332;2.06917;1.8668;1.784483;3.330276;2.560178;1.833172;1.841726;1.274655;1.274133;2.228914;2.191613;3.061083;2.750755;2.605428;1.252097;1.396489;2.28868;1.47981;2.032073;2.265376;2.867073;2.049679;2.085791;3.507036;2.390371;2.858229;2.452076;2.735578;3.150009;1.708281;1.566761;3.089046;1.687065;1.84379;2.420596;3.065697;2.63602;1.651167;1.027659;1.895752;2.386217;1.599728;1.766056;2.121801;1.82376;1.862167;2.025166;1.920042;1.583146;2.266267;2.080936;2.310912;2.504599;1.518124;3.031807;1.337747;1.737531;3.16977;1.699475;2.310472;2.633096;2.736928;2.002681;1.642323;1.421594;1.18236;1.978622;2.042974;3.847285;2.375587;1.450571;1.256939;2.427955;2.290039;2.46116;2.082121;2.475771;1.312192;2.254465;2.100154;1.21734;1.14446;1.81319;3.46206;1.940233;0.986727;2.541975;2.229535;2.90448;2.99984;2.663083;2.388035;2.105524;2.279522;2.126881;3.229546;2.424476;2.687555;2.794466;2.775622;2.372873;2.850369;1.540276;1.607121;1.712828;2.353301;2.337405;2.676615;2.587557;2.668024;2.213314;2.189971;2.873798;2.479156;2.304626;2.408868;2.303983;2.399786;2.231463;3.04341;1.769586;1.977401;1.668695;1.440008;2.293558;1.688324;2.345039;1.884515;2.762296;
2.030107;2.666566;2.621312;2.442577;2.728612;2.525452;2.290675;1.258709;2.366901;2.226875;2.760909;2.12678;3.006512;2.673534;2.006383;2.003499;2.140308;1.597297;2.326898;3.305674;2.875405;2.318594;2.257049;2.143722;1.551176;2.761098;3.037132;2.213316;2.692071;2.003905;2.807879;2.718903;2.591299;2.415781;2.596741;2.603911;2.139647;2.700298;1.659738;2.816846;1.997061;1.792202;2.318319;1.766407;1.802707;1.894874;2.617841;2.465132;3.217062;2.016334;2.465458;1.998106;2.683477;2.533918;1.755458;1.887274;1.816188;1.669234;3.087896;1.594084;1.221458;1.53828;3.279912;1.352379;1.351797;2.140612;1.431813;2.137856;2.015079;2.564129;2.917344;1.26009;2.131075;1.944866;2.785876;1.490101;3.105896;2.20864;1.593583;1.885349;2.298282;2.197842;2.252431;2.588776;2.149442;3.08172;2.352536;1.286526;1.330382;2.985124;2.232714;1.953107;2.037328;1.54508;3.134122;2.933372;2.227032;2.802219;1.810211;2.576898;2.012523;1.289752;1.833925;3.282634;2.764736;1.350114;1.381002;1.841503;1.839793;1.428246;2.876893;2.457202;3.067391;2.327641;1.531287;1.606799;2.717782;2.585732;2.428731;1.164143;3.036046;2.016434;2.659546;1.914019;2.738954;1.798872;3.102637;1.854756;2.259869;2.679066;2.627789;2.326875;2.550922;2.984502;2.554163;1.191893;2.465338;2.078962;2.469892;1.769453;3.004167;2.901617;2.273726;2.017417;2.305112;1.623163;2.117892;3.266192;2.891094;2.386444;2.368648;2.10991;1.913441;2.425303;2.743523;1.823454;2.762831;1.945353;2.659008;2.662408;2.782543;2.419667;2.655058;2.531597;1.961604;3.143283;1.836903;2.684995;2.037198;1.659786;2.106189;1.484272;1.785655;2.067598;2.867754;2.422092;3.322094;2.079915;2.306793;1.986109;2.651632;2.620847;1.81138;1.805055;2.129523;1.439298;2.854992;1.399511;1.238712;1.536723;2.882803;1.26001;1.490369;2.208185;1.508055;2.230394;1.903457;2.900048;3.099568;1.215845;2.153425;1.842246;2.450686;1.348099;3.085835;2.441845;1.612275;1.785062;2.386856;2.329957;2.140322;2.751392;2.186955;3.079286;2.372405;1.263709;1.584071;2.718508;1.94414;1.737608;2.05965;1.544166;2.7463;2.797458;2.404007;2.880156;1.895711;2.67908;1.901027;1.531644;1.979038;3.211941;2.790262;1.265308;1.148103;1.68376;2.203572;1.632441;2.646672;2.32486;2.72903;2.398387;1.127639;2.027397;3.087765;2.425063;2.400251;1.041575;2.626281;2.206313;2.150787;2.23959;3.423702;1.43088;2.686045;2.157451;
2.166535;2.629735;1.870729;1.267897;1.775209;1.400369;1.553437;1.75264;3.054641;2.561633;1.391031;1.682881;1.743091;2.448833;3.094091;2.045378;2.536465;1.278893;2.678362;2.539447;1.210389;1.231193;1.933301;3.354926;2.051212;1.071006;2.275918;1.742846;2.702813;2.770984;3.246916;2.088638;1.813844;2.104048;2.600285;2.162966;2.562026;2.15299;2.054434;2.038332;1.739285;2.333397;1.590189;1.31996;1.356651;3.265685;2.405849;2.128732;2.504713;2.694404;2.384506;2.518895;3.019088;2.845308;2.982737;2.86245;2.073999;2.947734;2.233393;3.101228;2.295211;2.272336;2.139282;2.089663;2.010362;1.838205;2.801489;1.539748;2.696457;2.216876;1.43726;2.890153;2.051777;2.211227;1.859676;1.628988;1.066157;2.546433;2.667867;3.05462;2.611231;2.368838;1.645823;1.826556;2.466228;1.56857;2.347495;2.04321;2.881369;2.263712;1.72168;2.588506;2.322437;2.813466;3.197649;2.300904;2.861998;1.450866;2.115572;2.143037;1.63545;1.419877;1.933631;2.162649;1.965649;1.355841;1.223648;1.472719;2.052577;2.245359;1.897993;1.547513;1.813057;2.06428;1.724418;2.001376;1.816368;2.483772;2.769437;2.342292;1.778787;1.5129;2.39154;1.768619;1.49246;2.645591;1.538492;2.837121;2.421329;2.726219;1.747158;1.412895;1.770921;1.560927;1.90347;1.902172;3.363348;2.716978;1.339775;1.567499;2.08077;2.517194;3.060007;1.726721;2.922263;1.019679;2.759705;2.506001;1.177693;1.113909;1.77668;2.941761;1.936065;1.005246;2.241712;1.583155;2.744806;2.784653;3.075139;2.17524;2.038502;2.212444;2.444949;2.298589;2.541609;2.368963;2.47783;2.176695;1.955217;2.507769;1.519233;1.182526;1.633034;3.366064;2.386134;1.804273;2.909847;2.308728;2.463567;2.458859;2.980804;2.654287;2.822039;2.48256;1.975842;2.834268;2.201369;3.104667;2.239371;2.272305;2.018903;2.269047;2.17219;2.070157;2.640245;1.545053;2.629289;2.490385;1.6563;3.136971;2.217386;2.28868;1.848425;1.654213;1.233235;2.633014;2.668218;2.765512;2.938148;2.141282;1.711949;1.66248;2.387919;1.469364;2.052447;1.786529;2.691236;2.076511;1.758212;2.59179;2.267121;2.813411;3.051234;2.489061;3.055627;1.657816;1.976544;2.149425;1.58395;1.64034;2.187423;2.37694;2.128771;1.416739;1.215136;1.497373;2.635311;1.873271;1.540811;1.959087;2.065081;1.976905;1.508831;1.845677;1.700598;2.348307;2.780672;2.08948;2.036656;1.271946;2.382226;1.614701;1.549977;2.565252;1.507931;3.022501;
2.65676;2.826021;2.298132;2.003043;2.391902;2.547561;2.657025;1.993118;2.159021;1.946086;1.761443;2.977235;3.006295;1.938927;2.878057;2.690514;2.206881;2.634273;2.591958;1.189764;2.124075;1.689355;2.648777;2.824381;2.507177;2.327067;2.607484;2.772447;1.80091;3.301868;1.896191;3.064746;1.803773;2.326736;2.323802;1.677942;1.576108;1.642374;2.57248;3.048496;2.672262;2.008974;2.224872;1.979562;2.788085;2.905534;2.265951;2.172881;2.196459;1.852746;2.451703;1.337138;1.647622;1.190298;2.7647;1.34399;1.49038;2.570213;1.86997;2.388924;1.244412;2.164145;2.780741;1.541828;2.344539;2.326229;2.320882;1.5936;2.514689;2.277651;1.89728;1.673156;2.187429;2.81303;1.875948;2.383521;2.004511;2.471473;2.784173;1.626359;1.574484;2.580434;1.774849;1.223433;1.669961;1.381613;2.583404;2.849827;2.255847;2.711622;1.861155;2.747098;1.704028;1.590527;1.786802;3.628165;2.63114;1.747836;1.291251;1.972866;1.800532;1.265355;2.534625;2.860568;2.537771;2.557441;1.505222;1.717653;2.743999;2.790482;2.876967;1.330526;2.75254;2.460135;2.381933;1.852167;3.307235;1.378776;3.564683;2.171117;2.316575;3.286147;3.182876;2.418517;1.91061;2.143117;2.540298;1.25533;2.933264;2.402061;2.332294;1.927905;2.431157;2.585097;2.451766;1.757091;1.975663;1.798407;1.872017;2.927399;2.803365;1.870451;2.752453;2.86875;2.295451;2.76375;2.411094;1.275575;2.227993;2.111681;3.093041;3.059261;2.734687;2.450328;2.691009;2.7338;1.905344;3.308271;1.866683;2.712818;1.99567;1.987516;2.345756;1.558131;1.577904;1.620442;2.294302;2.736523;2.434771;1.908641;2.344379;1.889789;2.560683;2.759216;2.086676;2.351499;2.264095;2.010501;2.28139;1.409094;1.721831;1.500395;3.146985;1.522229;1.648814;2.756712;1.945758;2.424122;1.416653;2.20885;2.816725;1.295122;2.674687;2.102454;2.377232;1.450418;2.366438;2.14938;1.631908;1.445393;1.971395;2.571193;1.910444;2.379217;1.929591;2.438266;2.654945;1.781057;1.721219;2.901954;1.659575;1.267874;1.619999;1.625663;2.916559;3.109283;2.448015;2.776142;1.862404;2.785629;1.904572;1.629484;1.815689;3.244722;2.98036;1.55511;1.33342;1.813815;1.675376;1.170729;2.226365;2.560855;2.304753;2.327705;1.536194;1.714907;2.031242;2.451729;2.968712;1.915771;2.936812;2.874055;2.500235;1.89242;3.022699;1.925136;2.929472;2.53306;3.219954;2.890741;2.706368;2.168696;2.176908;2.54766;2.485605;1.550324;
2.672722;2.77029;3.165822;2.855203;2.105128;1.700422;1.954533;1.745249;2.941526;2.810188;2.161193;2.516996;2.706274;1.726657;2.525748;2.448832;1.754183;2.786422;1.893846;2.923106;2.423181;2.629575;2.573049;2.265266;2.693925;1.46226;3.068568;1.346932;1.901712;1.600764;2.220923;2.019034;1.669733;1.356852;1.921769;2.277232;2.821508;2.499233;2.386238;1.653188;2.10738;2.318065;2.497733;1.772568;2.10822;1.532937;1.746859;2.303175;1.333733;1.608562;1.760577;2.135929;1.248192;1.996083;3.279242;2.068897;2.544936;2.159693;3.035592;3.701282;1.343519;2.320697;1.76204;2.279636;1.839616;2.97456;2.535134;2.059827;1.798187;1.74212;2.595969;1.727213;2.48826;2.111087;2.874712;2.606966;1.703041;1.360945;3.01136;1.655874;1.495521;2.031896;1.389571;3.051346;2.396107;2.330687;2.860893;1.853247;2.902024;1.402239;1.463496;1.626105;2.419808;2.356478;1.888358;1.16767;1.82337;1.528425;1.462567;2.238976;2.808005;2.345651;2.723161;1.066651;2.081823;2.7178;2.499034;2.507732;1.294939;2.085584;2.47453;2.182555;1.681034;3.404358;1.94696;2.441754;1.748309;2.712726;3.154946;3.611094;2.886892;2.83927;3.199959;3.017964;1.387837;2.493904;2.375129;2.499938;2.421394;2.772251;2.76212;2.84024;1.961343;1.824672;1.651636;2.122507;3.571032;2.557121;2.220595;2.751734;2.38799;1.776679;2.83999;2.568316;1.726086;2.474174;1.617358;2.97184;2.483373;2.667459;2.177138;2.487667;2.950259;1.515134;3.01113;1.248621;1.948546;1.686413;2.703712;2.01748;1.519205;1.419959;1.643408;2.27426;2.690513;2.658187;1.967464;2.034358;2.696203;2.168059;2.592528;1.982888;1.846896;1.587292;1.915608;2.424166;1.324123;1.434238;1.516204;2.181124;1.285655;2.032939;2.716504;2.286594;2.815927;2.301346;3.009611;3.316489;1.422894;2.414468;2.059314;2.384494;1.847028;2.953161;2.315597;2.035332;1.742042;1.875476;2.362548;2.002508;2.939208;1.917296;2.970155;2.658609;1.516141;1.401784;3.067078;1.852419;1.641162;1.747656;1.248094;3.07917;2.506256;2.3707;2.55039;1.947348;3.004271;1.47232;1.441802;1.374606;2.526981;2.45086;2.196713;1.243108;1.831518;1.513116;1.29762;2.213424;2.738813;2.499896;2.48504;1.285229;2.496799;2.497315;2.588934;2.558491;1.619542;2.127417;2.427688;2.907228;2.320032;3.319956;1.785176;3.278759;2.409391;2.142994;3.146003;3.160498;2.980943;2.238628;2.44415;2.209223;1.135745;2.584973;3.030888;3.119526;
2.536785;2.608123;1.946332;1.653013;2.084757;2.550366;2.651283;1.981069;2.269752;2.484422;2.188499;2.461411;2.823435;2.995725;3.451628;2.693751;2.205016;2.558232;2.794082;2.54959;1.779919;1.317063;1.86247;2.166645;1.90844;1.963275;2.231431;1.792429;2.181948;2.236785;1.452981;2.687354;1.806226;1.854571;1.561626;1.056251;1.460873;2.255649;2.377386;2.412695;3.008139;2.887426;1.009032;1.404796;2.967127;2.043133;2.462286;2.086232;2.743354;2.895558;2.098694;2.214699;2.415257;1.70678;2.784993;2.603445;2.325022;1.402367;2.168411;2.462907;2.045639;1.602531;1.81613;2.749985;2.530602;1.367416;1.450183;1.91638;2.578107;1.743724;2.134552;1.392139;1.555067;1.784473;1.637533;1.824015;1.424313;2.595984;3.025003;2.484169;2.039292;1.336267;3.247312;1.402301;1.235251;1.728737;1.527364;2.888867;2.385154;2.858989;1.514567;1.947647;1.442691;1.296512;1.607865;1.319523;2.951449;2.370682;1.296557;1.024658;2.534203;2.288965;3.034319;1.628073;2.914658;1.668813;1.938506;2.250953;1.507318;1.496397;2.336656;3.313704;1.877733;1.694303;2.698702;1.281504;3.030069;1.74735;2.851563;2.241836;1.696749;2.181056;2.919691;2.482821;3.341376;2.265195;2.214953;2.324616;2.88471;2.790165;1.809541;1.642664;1.876076;2.789261;2.519686;1.823555;2.166452;2.668535;2.155473;2.521201;2.599845;2.582614;3.452847;2.3292;2.322662;2.343112;2.807122;2.828071;1.636333;1.565489;1.804915;2.021627;1.912047;2.210685;2.325076;1.804704;2.226424;1.955415;1.476452;2.447137;2.173455;1.999057;1.439743;1.065883;1.305843;2.446081;2.266069;2.323228;2.982055;3.082354;0.9923035;1.476878;2.771351;1.680386;2.482831;1.817645;2.937636;2.703237;2.118489;2.476144;2.251579;1.995659;2.735312;2.503833;2.385814;1.640895;2.269692;2.298205;2.1786;1.498088;1.931169;2.566582;2.916849;1.508155;1.356374;1.933643;2.353873;1.901861;1.924106;1.261536;1.467518;1.88768;1.654443;1.748361;1.357067;2.343002;3.161438;2.246329;2.168254;1.221486;3.309151;1.616189;1.107868;2.009854;1.400733;2.693113;2.359618;3.131235;1.63739;1.802138;1.554783;1.203169;1.716177;1.193869;3.367335;2.5557;1.207894;1.037776;2.312049;2.470253;2.782316;1.487039;2.794197;1.769332;1.956841;2.167838;1.506331;1.661141;2.234233;3.145714;2.056765;1.578547;2.704183;1.677164;2.790307;2.737112;2.803054;1.90403;1.729902;2.492721;2.979409;2.884282;2.868476;2.110524;2.353173;1.720224;
2.218275;2.527666;2.56854;1.3417;2.871296;1.405122;1.307551;2.244133;1.46719;2.555115;2.925052;2.155582;1.512174;2.359919;1.496248;1.472134;1.618068;1.958359;3.416584;2.522292;1.235902;1.487216;2.743585;2.693046;3.437521;1.81125;2.877676;1.54385;2.843775;2.309882;1.596501;1.653318;2.141175;3.02329;1.864327;1.61015;3.129287;2.044439;2.249892;2.570451;3.111934;1.926774;2.023268;2.220464;2.320812;3.471756;3.355619;2.501707;2.126651;2.396935;2.52151;2.538476;1.837606;1.763009;1.451198;2.777889;2.280536;1.886784;3.033897;2.515179;2.25573;2.101456;2.595639;2.185841;2.351064;2.584095;2.715525;2.743829;2.716794;2.453761;1.732866;1.88806;1.951247;1.805823;2.337814;1.488194;2.534386;2.301667;2.20249;2.261013;1.576847;3.42527;1.898784;2.076715;1.682161;1.384046;1.549114;2.701287;3.013979;2.643206;2.979783;2.830986;1.772878;1.510378;2.834089;1.839105;2.273064;1.912828;2.608566;2.900858;2.38456;2.91571;1.785924;2.543226;2.957652;2.10829;2.805562;1.598077;1.953801;3.004652;2.41644;1.473227;1.940122;2.6962;2.49942;1.481373;1.446111;1.920984;2.212602;2.039654;1.920436;1.191941;2.069004;1.827743;1.829899;1.518787;1.374172;2.202638;2.21593;2.514738;2.255533;1.348796;2.91633;1.149523;1.426989;2.380708;1.582217;2.567161;3.02569;2.572399;1.716236;2.160964;1.493269;1.693106;1.601587;1.820335;3.293844;2.505274;1.115465;1.138173;2.889858;2.844072;3.632661;1.590957;2.797623;1.533972;3.176008;2.215139;1.561316;1.642492;2.110919;3.061883;1.618198;1.577533;3.133643;1.715404;2.397863;2.579964;3.231449;1.982249;2.119115;2.594915;2.519857;3.20499;3.325921;2.674849;2.107475;2.264189;2.451139;2.498463;1.681463;1.3432;1.558868;2.815769;2.439904;1.679251;2.990562;2.469778;2.376838;2.108056;2.537965;2.343433;2.231313;2.569016;2.478848;2.615408;2.708132;2.244401;1.870712;1.885866;2.004725;1.911518;2.420907;1.788619;2.570664;2.232138;2.166847;2.604951;1.488353;3.210078;1.892504;1.966449;1.523712;1.122409;1.668319;2.726301;3.146176;2.455501;2.916213;2.782847;1.881282;1.515961;2.774822;1.984002;2.156355;1.899931;2.377747;2.76881;2.377411;2.687055;1.926668;2.540811;3.024608;2.222453;2.897671;1.909206;1.973494;2.893884;2.578526;1.777304;2.168736;2.289704;2.067131;1.674064;1.646613;1.284222;2.540649;2.167661;2.10864;1.333786;1.519468;1.544088;1.984016;1.627948;1.928743;2.607054;
2.535782;2.990073;2.896588;2.556259;1.894745;1.123423;2.928231;2.14292;2.037919;2.099685;2.211063;2.494718;1.542589;2.453743;1.659579;2.518754;2.099704;2.577019;1.979462;1.557965;1.90789;2.551604;1.882459;1.832301;1.799731;2.875533;2.792527;1.469098;1.500703;1.54075;2.097928;2.027854;1.603044;1.674168;1.830531;1.867675;1.492403;1.515183;2.170075;2.843773;2.677796;2.820882;2.472195;1.99007;3.248666;1.513876;1.270077;1.724376;1.500449;2.56783;2.71471;2.909869;2.088946;1.274484;1.743669;1.45883;1.772231;1.657645;3.49849;2.945602;1.854491;1.333037;2.86355;2.970872;3.11134;2.108942;2.800525;1.299663;2.964452;1.891246;1.585035;1.666352;1.998366;3.359786;1.515696;1.521682;2.136429;1.573482;2.285411;2.548703;2.307171;2.404706;1.285654;2.053104;2.475288;2.642531;2.876687;2.479119;2.183802;2.505574;2.660575;2.928063;2.075935;1.265745;1.680299;2.791608;2.102472;2.2687;2.616591;2.357027;1.970486;2.102185;3.578449;2.922553;2.802567;2.72514;2.660286;3.564199;3.13195;2.938583;1.854496;1.205124;2.047355;1.931095;2.250994;1.785807;2.822634;1.393698;2.575125;2.435827;1.513641;3.471439;1.948592;2.223293;2.219528;1.452183;1.724694;2.686261;2.585266;2.776119;2.929104;2.708045;1.818575;1.101639;2.579139;2.073914;2.07263;2.083437;2.372627;2.39574;1.718858;2.347198;1.680814;2.617404;2.154697;2.638496;2.17122;1.495948;1.842938;2.692826;1.857638;1.995914;1.719668;3.145328;2.601461;1.557058;1.576754;1.600972;2.280887;1.919305;1.671303;1.524876;1.775735;1.947835;1.411792;1.455357;1.916321;2.761904;2.763162;2.823492;2.55438;1.859592;3.487933;1.400429;1.329984;1.835461;1.590316;2.647194;2.856586;2.806745;2.020354;1.343534;1.776487;1.632761;1.738087;1.879083;3.197157;2.877346;1.851534;1.356843;2.946768;2.82078;3.022046;1.915126;2.811412;1.48599;2.978054;1.807272;1.400755;1.653651;1.990741;3.443878;1.604767;1.291116;2.236356;1.457074;2.252081;2.665552;2.258846;2.45295;1.440521;2.109602;2.518354;2.721441;2.964521;2.769823;2.0628;2.850899;2.429033;2.860712;2.072903;1.289528;1.744082;2.64703;2.029066;2.068191;2.627236;2.606456;1.981673;2.01433;3.298557;2.906622;2.793397;2.801726;2.778;3.206992;2.305219;3.014927;1.828532;2.04529;2.420209;1.587104;2.655997;1.468177;2.877525;2.192561;2.802486;2.192722;1.450338;3.25814;2.086469;2.480844;1.864995;1.4608;1.760942;2.821517;
1.967439;2.844189;2.453792;2.506958;3.033085;2.463683;2.559416;2.823117;2.72053;2.497607;3.058662;2.513795;2.727087;2.407809;2.862537;3.146222;1.739275;1.549901;1.814657;1.974038;2.026347;1.42251;2.171267;1.465685;2.528678;2.228257;1.858208;2.75174;1.725542;1.8152;1.488431;1.15709;1.124574;2.910218;2.759216;2.664593;2.249376;2.473356;1.455666;1.244519;2.448021;2.23264;2.608935;1.56795;3.086613;3.026019;1.969466;3.122318;2.026628;2.563033;2.581634;2.716441;1.878319;1.892596;1.580919;2.934396;2.075165;1.459281;1.767801;2.594636;2.052428;1.669642;1.32439;1.468704;2.70436;1.866246;1.819562;1.719849;1.940732;1.81903;1.831267;2.017246;1.491567;2.206329;2.76227;2.491487;2.349115;1.371379;3.108878;1.761057;1.331382;1.801919;1.331158;2.669399;2.404632;2.264354;1.47318;1.407732;1.803;1.402632;2.028887;1.51845;2.999935;2.401632;1.242814;1.232913;2.26466;2.889251;2.90817;1.58435;2.172274;1.440722;2.472015;1.945327;1.356536;1.966818;2.343168;2.48872;2.192724;1.882299;2.549736;1.855992;2.690412;2.690947;2.6522;2.257916;1.212703;2.586057;2.159059;3.412667;3.105608;2.381418;1.848659;2.303146;1.885816;3.08216;2.015252;1.258135;2.03456;2.677093;2.137842;2.100729;2.692499;2.646156;2.318891;2.570069;2.846228;2.260337;2.940455;2.660506;2.545458;2.123482;2.706294;3.397023;2.042122;1.756181;1.898283;2.035183;2.273364;1.334419;2.093666;1.619723;2.582342;2.37457;1.698586;2.597753;1.77248;2.050922;1.708406;1.156181;1.188432;2.759921;2.428234;2.196072;1.956092;2.68502;1.320116;1.118775;2.575564;2.027153;2.493883;1.644161;2.876747;2.735497;1.882113;3.431544;2.331849;2.843539;2.672741;2.725806;2.075753;1.810823;1.550833;3.208164;2.104438;1.590981;1.605771;2.468455;2.074811;1.849507;1.47641;1.417057;2.610047;1.798706;1.642868;1.434973;1.715211;1.991861;1.715984;1.803748;1.535786;1.978109;2.740448;2.672103;2.178545;1.125687;2.920115;1.936182;1.436958;2.095561;1.48269;2.801356;2.685826;2.165058;1.47922;1.550489;1.771408;1.510842;1.937015;1.422284;3.028127;2.616331;1.390836;1.185582;2.179338;2.805062;2.684695;1.311439;1.93419;1.594885;2.338589;1.735716;1.399453;1.751689;2.324094;2.66936;2.17391;1.240941;2.536697;2.174428;2.882349;2.769402;2.346406;2.598375;1.941928;2.591242;2.314059;3.08834;2.991279;2.370973;2.234873;1.930122;2.013485;2.765704;1.642145;1.642618;
2.469123;2.180505;1.647528;2.365174;1.921419;1.570318;1.541034;2.798182;2.301346;1.674827;1.234909;1.695568;1.755601;1.007598;2.708785;2.912539;2.747412;2.338818;1.299135;1.582511;2.552374;1.962282;2.003498;1.028285;2.563733;2.608104;2.735106;2.272266;3.433897;1.808639;3.193673;2.253674;2.915471;3.139272;3.701989;3.065856;2.196394;2.232574;3.075404;1.502734;2.441583;2.239108;2.61957;2.538408;3.135696;2.719204;2.88394;2.323006;1.894699;1.733666;2.194854;3.05194;3.170865;1.79503;2.235671;2.551766;1.727539;2.547565;2.017584;1.256388;2.609908;1.36772;2.184168;2.913566;2.707154;1.849795;2.298142;2.022815;2.083961;3.210792;1.620272;2.322422;1.476837;2.201152;2.101402;1.38664;1.818132;1.407232;2.737823;3.121787;2.834759;1.87151;2.068164;1.686281;2.489232;2.088824;1.596385;1.755163;1.868754;1.849384;2.61978;1.79498;1.849038;1.460203;2.773467;1.605099;2.209392;2.631782;2.219634;2.853851;1.784125;2.190595;3.370655;1.461096;2.327516;2.091447;2.453041;2.064577;3.156366;2.22981;2.199229;2.11648;1.848672;2.478512;2.316907;2.331167;2.301537;2.543914;2.841855;1.596659;1.427178;2.811098;1.455667;1.367294;1.718711;1.077928;2.238993;2.889156;2.546409;2.503727;1.420019;2.177557;1.925376;1.5124;1.413085;2.661705;2.435452;1.589554;1.347655;1.703229;1.511322;0.9431246;2.522711;2.863969;2.854229;2.342089;1.274769;1.528128;2.736315;2.245083;2.507236;1.071381;2.822419;2.663614;2.673585;2.39746;3.205111;1.752558;3.172055;2.229137;2.930105;3.515209;3.41548;2.902353;2.17882;2.138174;2.833522;1.380586;2.523818;2.140088;2.845323;2.603457;2.786963;2.590179;2.639808;2.223267;1.910455;1.768137;2.218569;2.999286;3.323371;2.080564;2.713838;2.559312;1.868892;2.641111;2.017884;1.335472;2.43071;1.415605;2.167555;2.843952;2.763129;2.136068;2.067951;1.99554;2.070563;3.03471;1.405573;2.186051;1.560714;2.008032;2.283664;1.404171;1.607107;1.39925;2.501574;2.963622;2.897127;1.903075;2.085742;1.745786;2.629347;2.341667;1.956331;1.776703;2.038383;1.838873;2.598222;1.889844;1.698762;1.510307;2.754817;1.554206;2.260057;2.97197;1.993408;2.822137;1.771784;2.04633;3.057692;1.35398;2.432589;1.903882;2.649537;2.086529;2.174395;2.058157;1.651309;1.863323;2.14407;2.504433;2.002636;2.276845;1.625369;2.60071;3.131044;1.400368;1.383964;2.434821;1.938516;1.788834;2.298094;1.300567;2.480938;2.309763;
2.699608;2.147922;2.8721;2.545738;1.907371;1.989182;1.896795;2.664814;2.024259;2.210417;1.816172;2.774683;2.390506;1.819616;1.696453;2.519953;2.102643;1.979663;1.916225;1.266655;2.808778;2.556027;2.003214;2.283228;2.085939;2.145097;2.26435;1.244624;1.530569;3.065202;2.648861;1.666845;1.127094;1.603297;1.590036;1.341956;2.92011;2.670565;2.403717;2.003858;1.303664;1.724022;2.637548;2.054384;2.786069;1.479727;2.504839;2.426338;2.815164;2.22244;2.976524;1.619839;3.362382;2.215163;2.361833;2.680522;3.025722;2.83762;2.792733;3.022813;2.9056;1.505106;2.701633;2.967879;2.767244;2.593752;2.78494;2.83368;2.773286;2.160167;1.860193;1.729722;2.049848;2.725824;2.529515;2.349479;2.587002;2.809703;2.241047;2.501669;2.939894;1.955227;2.644647;1.52522;2.932687;2.675536;2.20641;1.970865;2.879342;2.121516;2.391652;2.904272;1.509197;2.659079;1.922038;2.105504;1.947188;1.209521;1.6908;1.6517;2.894624;2.885621;2.40772;1.508222;1.940534;1.917263;2.666317;2.345553;2.134342;2.335399;1.766344;1.76694;2.950037;1.565631;1.40446;1.279037;3.113269;1.618566;1.671537;2.078226;1.910429;2.624758;1.994637;2.700052;3.545138;1.789579;2.46502;2.499091;2.863078;2.107398;2.761925;2.583195;2.026732;2.038649;1.782713;2.571557;2.383603;2.034214;1.626243;2.80272;2.547286;1.795181;1.352265;2.325523;2.263989;1.990936;1.994509;1.293928;2.753713;3.00333;2.02546;2.073659;2.119975;2.035522;1.987466;1.241933;1.627939;3.339074;2.557418;1.567904;1.226526;1.586936;1.500812;1.329357;3.050368;2.747224;2.297889;1.901913;1.578212;1.589838;2.387298;2.031768;2.923754;1.47181;2.091721;2.236587;3.023323;2.231626;3.076072;1.629124;3.316043;2.621759;2.418217;2.453734;3.089025;2.708185;2.486118;2.75971;2.947452;1.698301;2.700907;2.844843;2.892667;2.699473;2.674013;2.963542;2.842546;2.138134;1.875939;1.729611;2.362211;2.546649;2.219046;2.123463;2.620514;2.809881;1.928705;2.317269;3.12231;2.074923;2.746543;1.644551;2.832177;3.012855;2.384636;1.875649;2.910478;2.001281;2.046431;2.646641;1.540107;2.91393;1.922335;2.002174;2.053562;1.282148;1.605319;1.751305;2.966353;2.860127;2.426652;1.508201;2.245738;1.767601;2.348141;2.12052;1.997553;1.963784;2.083421;1.647365;2.913135;1.804948;1.249646;1.716299;3.048501;1.819061;1.512274;2.90684;1.892076;2.189773;1.594523;2.945296;3.821107;1.345094;2.508214;2.087809;
2.577838;2.468956;2.601421;1.524911;1.732425;1.714904;2.596876;1.952257;1.754311;1.783945;1.561441;2.00545;1.126993;1.16331;1.551779;1.784568;2.137177;2.87229;2.256331;1.162933;2.565414;0.9326072;1.59902;2.585357;1.418858;2.31662;2.20504;2.547553;1.688405;1.4165;1.572558;1.173653;1.815431;1.935995;3.051375;2.521472;1.369058;1.189364;2.518862;2.645566;2.848291;1.518236;2.454507;1.853922;2.429912;2.138749;1.673386;1.391771;2.178858;3.210496;1.946827;1.589002;2.617604;1.919774;2.399164;2.1876;2.777317;2.258336;1.584761;1.80552;3.091402;3.20212;3.499514;2.460133;2.989505;2.254971;2.294944;2.461248;2.257386;1.651449;2.209851;2.690025;2.3814;2.548735;2.547941;2.567892;1.752656;1.933367;2.899363;2.047046;2.276809;2.909136;2.449326;2.312756;2.282862;2.12574;2.345022;2.117406;1.992405;1.77792;1.938856;1.676448;2.617864;1.738019;2.376788;1.861359;1.724683;3.280119;1.822315;1.950329;1.754145;1.366253;1.506667;2.445141;2.530377;2.369548;2.555348;2.970245;1.493523;1.591884;2.905357;1.715499;2.337968;1.958926;2.591636;2.608546;2.052926;3.163759;1.693804;1.962208;2.882237;2.702188;2.83876;1.261531;2.366836;2.801704;2.426308;1.595574;2.757652;2.50867;2.551647;1.829281;1.576165;1.752032;2.519185;1.705884;1.798079;1.873507;1.75248;1.74583;1.306874;1.393006;1.442122;1.863284;2.277411;2.539424;2.462831;1.251429;2.831386;1.19492;1.358859;2.26359;1.665942;2.606723;2.677276;2.293857;1.747737;1.531495;1.541199;1.079495;1.930287;2.015365;2.983761;2.840137;1.204308;1.175632;2.364731;2.340396;2.868513;1.647027;2.687897;1.559962;2.657915;2.388211;1.501959;1.475908;2.299078;2.916561;2.144542;1.671629;2.863793;2.230072;2.045118;1.908946;3.094658;2.600113;1.993729;1.746578;3.008551;3.097947;3.496881;2.324213;3.086707;2.317503;2.340692;2.885795;2.05455;1.592239;2.020171;2.469747;2.359344;2.54671;2.656939;2.424819;1.837663;2.005859;2.71106;2.149805;2.356393;2.605674;2.785001;2.514923;2.524787;2.399601;1.950523;1.921062;2.223186;1.936166;2.269733;1.620275;2.541596;1.662103;2.37464;1.743927;1.798793;3.356171;1.863166;2.330832;1.575852;1.312985;1.350804;2.235965;2.507751;2.368201;2.664575;2.817379;1.277702;1.208114;2.302146;2.173993;1.915356;1.871026;3.059512;2.861578;1.902229;3.52611;2.272343;2.001834;2.596329;2.410944;3.054059;1.784307;2.368328;2.781992;2.081772;1.860802;
2.436931;2.354329;3.032623;2.481804;2.418737;2.190033;2.503962;1.811596;2.045215;2.202579;2.578924;1.869255;1.836038;1.779521;2.771002;2.407789;1.311633;1.477317;2.06568;2.260369;1.821403;2.072577;2.064836;2.004637;1.809012;1.46479;1.67104;1.827764;2.407058;2.712334;2.394959;2.724286;1.713003;2.920357;1.093745;1.578018;2.31985;2.127745;2.013171;2.172387;2.046631;1.885002;1.596004;1.99536;1.44232;1.810589;1.651872;2.730875;2.309886;1.038381;1.630448;2.53901;2.388721;2.408594;1.867781;2.693809;1.18555;2.57482;2.639221;1.362041;1.071944;2.267902;3.383601;2.0425;1.417855;2.892014;1.822506;3.024018;2.361264;2.189709;2.371317;1.166464;2.586061;2.585733;2.717282;2.766702;2.535753;1.956055;2.56066;2.494735;2.565867;1.780705;1.599729;1.737246;2.655203;2.573086;2.757927;2.832688;2.358335;1.957326;2.37989;3.016475;2.541732;2.800177;2.312174;2.967499;3.2528;2.646767;2.131291;1.981126;1.726667;2.651767;1.446808;1.761883;1.322547;2.628308;1.642372;2.816069;2.023941;1.627021;2.813743;1.69421;2.025538;1.29442;1.569115;1.464939;2.370426;2.285875;2.602209;2.507968;2.123052;1.353271;1.917113;2.639039;1.467235;2.528253;2.225637;3.069726;2.731615;2.37248;2.982648;2.160919;2.625399;2.244502;3.075795;2.072887;1.905435;2.115543;2.839309;1.938902;1.755707;1.743585;2.699732;2.754339;1.231027;1.719979;1.799612;2.112099;1.752144;2.050353;1.877145;1.754071;1.647744;1.275539;1.728738;1.788687;2.318756;2.693415;2.333292;2.934878;2.015414;3.031079;1.090791;1.33242;2.557749;2.189433;2.436961;2.472381;1.950477;1.877905;1.828125;2.080011;1.386953;1.781809;1.51337;3.104626;2.221545;1.301137;1.416187;2.385483;2.301923;2.388808;1.601957;2.406881;1.069108;2.400496;2.741276;1.405096;1.083355;2.270594;3.386682;2.10704;1.523041;2.952222;1.905203;2.752025;2.578153;2.196193;2.79436;1.371328;2.526205;2.570927;2.948886;2.974195;2.578765;1.940754;2.452271;2.718575;2.265292;2.078856;1.463461;1.666936;2.541325;2.492827;2.401112;2.514603;2.239299;1.800315;2.415323;3.080373;2.56033;2.803059;2.315766;3.04528;3.412199;2.704405;2.22144;1.762186;1.913728;2.658796;1.781964;2.011839;1.280484;2.613406;1.824205;3.025485;2.149494;1.138881;3.074533;2.209517;2.164144;1.734022;1.676102;1.315164;2.691265;2.838485;2.491961;2.686747;2.139019;1.302964;1.684687;2.483952;2.048824;2.466518;2.187825;2.807059;
1.657175;3.033169;1.227771;1.81074;2.851837;1.749299;2.853612;1.849729;2.750069;3.375891;1.470808;1.611052;2.273948;1.848879;2.263927;2.555853;2.299186;1.549873;2.319426;1.451108;2.6171;1.976674;2.443591;1.768236;3.026519;2.783272;1.755858;1.575585;2.926041;1.765643;1.910878;1.494206;1.193101;3.026292;2.888176;2.221974;2.209202;1.968558;3.154586;1.626799;1.099463;1.58515;3.22624;2.526497;1.222896;1.139389;1.514594;1.865253;1.387935;3.014864;2.377642;2.666317;2.007371;1.315777;1.844093;1.807801;2.80597;2.596993;1.27836;2.164726;2.679816;2.448637;2.111207;2.918532;1.809066;3.459222;1.665002;2.771654;3.29467;3.12632;2.917776;2.419385;2.73494;2.808538;1.486938;1.84882;2.87294;2.0488;2.914858;2.555263;2.712981;2.242036;2.403707;1.48994;1.786791;2.147741;2.969657;2.577189;2.379405;2.896209;2.736579;1.992314;3.025655;2.882819;2.126742;2.156711;1.516706;3.117743;2.66913;2.633477;1.962902;2.690008;3.257086;1.687079;2.639419;1.578489;2.73104;1.824366;1.804112;2.050025;1.221912;1.678736;1.671848;3.016881;2.331871;2.789335;1.592957;2.115862;1.806026;1.754913;2.53011;1.645176;1.979977;1.344066;1.897391;2.455704;1.705751;1.284782;1.917049;2.850593;1.178298;1.780518;2.557515;1.850351;2.684931;1.933045;2.72332;3.388366;1.549309;1.697875;2.518751;2.213372;2.280476;2.502282;2.114602;1.699501;2.169392;1.47074;2.684115;2.157484;2.22346;1.901436;2.730695;2.458809;1.712954;1.37437;3.012346;1.809446;2.129503;1.509145;1.474147;2.832618;2.812514;2.213899;1.974584;2.043739;2.992288;1.779042;1.13981;1.591547;3.352425;2.671193;1.427778;1.406498;1.543273;1.871095;1.287242;3.262196;2.23438;2.693913;2.07042;1.470231;1.669792;1.995657;2.580523;2.317821;1.248434;1.991099;2.544577;2.33476;2.350528;2.966129;2.189876;3.244136;1.740091;2.721678;3.068543;3.081536;2.770287;2.498923;2.78219;2.809175;1.580086;2.035841;2.943991;2.232434;2.965714;2.587173;2.613086;2.449857;2.416475;1.480755;1.895391;2.225761;2.755698;2.691958;2.157867;2.594187;2.701922;1.826535;2.881977;2.759784;2.366879;2.198219;1.866814;2.914578;2.763911;2.585533;1.789383;2.649106;3.101102;1.754109;2.685709;1.579595;2.856704;2.011154;2.649536;2.312579;1.696782;1.644871;1.500481;2.674322;2.316906;2.437432;2.072706;2.275439;2.15079;2.445297;2.617104;1.539662;1.949504;1.511592;1.713498;2.422331;2.088295;1.293521;
2.899923;1.662782;1.339718;2.016859;1.769087;1.242887;2.204804;2.495037;1.966767;2.491127;1.505833;2.139835;2.318277;2.619729;2.217743;1.439368;2.885551;2.268213;2.705867;2.367506;3.095541;1.742931;3.159187;2.265871;2.556056;3.314132;2.757204;2.596284;2.436143;2.73469;2.916098;1.249139;3.080024;2.788062;2.217747;2.252915;2.176736;2.574502;2.853799;1.819533;1.566803;1.355547;2.181244;3.398724;3.023944;1.754125;2.756292;2.390588;1.865638;2.474344;2.019732;1.848699;2.500362;1.676454;1.969193;2.551073;2.267097;2.163889;2.486517;3.01316;2.17713;2.490628;1.988991;2.769549;1.982185;2.266498;2.402007;1.687904;1.919446;1.836933;2.250145;2.970438;1.990189;2.035412;2.242507;2.388338;2.180054;2.622015;1.656501;2.412706;1.974415;1.629546;2.876717;1.979041;1.703614;1.641659;2.741181;1.874304;1.723172;2.87931;1.551992;2.364732;2.097462;2.562559;3.343273;1.188339;2.701805;2.663665;2.281973;1.689957;2.274952;2.103942;1.97287;1.731068;1.50707;2.066717;2.183162;2.601596;2.146661;2.230335;2.594416;1.365034;1.311735;2.685958;1.520467;1.872534;1.788625;1.274821;2.132438;2.597157;2.001328;2.143554;1.789562;2.904119;1.843765;1.179143;2.075713;3.580717;2.75739;1.651431;1.52501;2.120703;2.077604;1.664187;2.123867;2.942557;1.955186;2.54678;1.597275;2.113937;2.160717;2.809589;2.483579;1.500207;2.648332;2.099;2.669287;2.351517;3.086829;1.887338;3.363904;2.358284;2.542563;3.119572;2.666157;2.306931;2.169841;2.986926;2.900988;1.287095;2.900327;2.823994;2.477976;2.313691;2.479567;3.142492;2.753203;2.081145;1.52403;1.434723;2.303322;3.311383;2.789113;1.891239;3.028122;2.362843;1.67562;2.317741;2.01981;1.814975;2.481992;1.774512;2.132432;2.538855;2.254205;2.026162;2.434939;2.781396;1.903581;2.723792;2.043894;2.875511;1.951267;2.235575;2.51871;1.713092;2.104992;2.209327;2.174905;3.138127;2.008162;2.108053;2.410471;2.412078;1.967906;2.835338;1.934051;2.430234;1.88978;1.452355;2.717668;1.915484;1.601932;1.642185;2.950492;1.741124;1.775026;2.692918;1.54751;2.159979;1.82998;2.798974;3.415467;1.258184;2.666812;2.630219;2.396806;1.715192;2.477557;2.501261;1.903298;1.859738;1.523566;2.139987;2.349965;2.626736;1.341399;2.776386;2.885266;1.696856;1.255487;3.137719;1.553012;1.804432;1.881131;1.37675;2.492708;2.30432;1.990982;2.623156;1.882524;2.704185;1.841803;1.707764;1.738767;3.115381;
2.583001;2.365456;2.890199;1.470627;2.192313;2.164567;1.976689;2.512175;2.008427;1.200098;1.268583;2.6264;1.524838;2.027738;2.77984;1.934332;2.866098;1.895193;2.754818;3.080959;1.256182;2.028328;2.388627;2.191293;2.003656;2.158537;2.139527;1.817794;2.107504;2.031427;2.229184;1.826689;2.090637;1.285449;2.795449;2.898778;1.388001;1.63389;2.184612;1.477816;1.657374;1.985276;1.146156;2.9863;2.469744;2.956213;2.725093;2.057379;2.721224;1.733129;1.470502;1.663533;2.615826;2.03565;1.674611;1.355799;1.241841;1.379771;1.620665;2.917378;2.951358;2.661358;2.429449;1.872622;2.22391;2.446872;2.893089;2.142275;1.391759;3.01548;2.676863;2.757199;2.637092;2.603095;1.600614;3.185684;2.212921;2.965632;3.108128;3.34488;2.757676;2.433274;2.821641;2.701445;1.332271;2.569766;2.653097;2.373938;2.537333;2.333019;2.785346;2.559903;2.314063;2.151961;1.429421;1.969775;2.596041;1.85402;2.209498;2.796633;2.363688;2.254765;2.070012;2.444125;1.752792;2.729353;1.479222;2.832376;2.259048;3.29505;2.316996;2.875589;2.572043;1.700833;2.942628;1.578272;2.076427;1.401551;1.981625;2.627631;1.336888;1.459451;2.317835;2.776959;3.042053;2.78433;1.975559;2.572371;2.350311;2.494769;2.930898;1.436655;1.89914;2.12224;1.997859;2.512968;1.863463;1.210412;1.505416;2.939895;1.490525;1.874286;2.812619;1.932461;2.716723;1.779334;2.776449;3.106167;1.231338;2.294619;2.18698;2.548021;2.346613;2.183972;2.537912;1.883291;2.053103;2.111773;2.071966;1.910097;1.912736;1.39059;2.735282;2.791173;1.145007;1.561108;2.255781;1.476672;1.560057;2.01674;1.308538;3.264402;2.414271;2.728718;2.818364;2.086761;2.63195;1.636889;1.428004;1.66796;2.579134;2.261474;1.559448;1.667039;1.557492;1.413319;1.902673;2.963308;2.92891;2.708296;2.381118;1.865194;2.147584;2.622705;2.907032;2.055198;1.16064;2.752393;2.758111;2.639521;2.522623;2.597464;1.805412;3.4532;2.197577;2.737128;3.345118;3.26117;2.789958;2.349073;2.837532;2.713539;1.319517;2.662333;2.509933;2.664789;2.990093;2.337805;3.170069;2.603606;2.294292;2.194951;1.392313;1.962894;2.51339;2.008149;2.221796;2.697693;2.059409;2.028813;2.141419;2.334208;1.659595;2.724376;1.676435;3.085599;3.032991;2.884032;2.570809;3.056364;2.360348;2.200108;2.874515;1.812053;2.111138;1.509087;1.515799;2.208628;1.800287;1.759057;2.345072;2.072501;2.574804;2.433578;2.008962;2.171709;
2.036869;1.199338;3.564172;1.79034;1.440767;2.215897;2.059615;2.694023;2.489076;2.788607;1.953197;1.927925;1.807899;1.617956;1.706615;1.699055;2.830657;2.768743;1.183328;1.311974;2.7322;2.468736;3.414798;1.996424;2.223099;1.838847;2.621438;2.523055;1.284751;1.840795;2.357027;3.009881;1.709874;1.457141;2.586207;2.250059;2.261936;2.070041;2.944924;2.591586;1.517631;1.998262;2.227804;2.718418;2.777243;2.60747;2.414853;1.97434;1.992906;2.468152;1.896578;1.47639;1.410683;2.858303;2.691016;2.114437;2.219153;2.834207;2.064491;3.073356;3.18885;3.145274;3.212412;2.478689;2.098036;2.405989;3.313671;3.21454;1.943494;1.731359;2.769094;2.054047;2.337296;1.865013;2.975492;2.125098;2.729461;2.579752;1.4328;2.934557;1.745092;2.218453;1.654585;1.339863;1.57349;2.329069;3.032117;3.004182;2.314344;2.933555;1.589746;1.709342;2.315219;2.053944;2.497562;1.679492;2.377223;2.593343;2.117142;3.726279;1.608065;1.981564;2.817601;2.830032;2.232684;1.315367;1.802544;2.511851;1.934936;1.66381;2.105998;2.195682;1.979843;1.401172;1.398827;1.780397;1.875059;1.900115;2.204612;1.694351;1.778327;2.273036;1.734164;2.057585;1.670002;2.76568;2.738489;2.167115;1.876041;1.324695;3.608942;1.80779;1.430725;2.113303;2.018652;2.415635;2.563948;2.570418;1.970079;1.900622;2.12467;1.664035;1.846838;1.500293;2.916019;2.925248;1.089701;1.369884;2.847422;2.240749;3.449941;2.017917;2.666148;1.98235;3.033593;2.425;1.335835;1.677756;2.233925;2.556318;1.577753;1.609313;2.628968;2.220043;2.247781;1.995948;2.96265;2.377672;1.582353;1.832181;2.239783;2.635157;3.149462;2.694894;2.630426;1.802905;2.045449;2.632504;1.770403;1.491499;1.459623;2.636975;2.770513;2.183979;2.63973;3.029884;2.423643;2.859446;3.196381;3.013339;3.000154;2.177934;2.009976;2.563053;3.263242;3.165317;2.017157;1.655313;2.629779;1.836033;2.296362;1.741916;2.833043;2.016803;3.077034;2.720649;1.550668;2.849494;1.850411;2.33935;1.470678;1.34589;1.705343;2.120209;2.951669;3.050743;2.615424;3.182971;1.78317;1.550787;2.322639;1.94751;2.311647;1.433589;2.284362;2.756313;2.077838;3.673258;1.675983;1.900061;2.677931;2.572993;2.193597;1.212325;1.69293;2.394106;2.698318;1.279683;2.660931;2.130573;2.032479;1.471368;1.676479;2.044313;2.139957;1.814743;1.812497;1.718196;1.762165;1.894045;1.816969;2.037795;1.5895;2.848075;2.254557;2.219678;
1.431879;1.464653;2.78638;1.89433;1.97994;1.496878;2.84671;3.380615;1.559978;2.46924;2.452381;3.268358;2.159012;3.090681;2.059115;1.38027;1.795937;2.069382;2.762104;2.460452;3.110021;1.543203;2.71094;2.719182;1.343849;1.621977;2.814747;2.064978;2.1052;1.592585;1.481836;2.434976;2.896054;2.354269;2.839776;1.808957;3.009637;1.551881;1.633072;1.911608;2.840516;2.898511;1.425913;1.47441;1.473435;1.665213;1.063182;2.778715;2.318286;2.904973;1.934741;1.617572;1.981294;2.667423;2.519697;3.018717;1.065779;3.055152;2.53004;2.751651;2.429309;2.749358;1.780043;2.720063;2.192353;2.129393;3.123012;2.992185;2.066657;2.118423;3.114199;3.099446;1.657666;2.819707;2.783768;3.054883;2.85069;3.062256;2.695806;2.116838;2.103845;2.120425;1.953771;2.38515;3.661636;2.352984;2.198993;2.800725;2.500336;1.975806;2.779102;2.851858;2.173448;2.279545;1.996086;2.509041;2.758979;2.48223;2.553847;2.139249;2.709079;1.607696;3.189854;1.718511;2.224335;1.946941;1.848747;2.174577;1.142719;1.589362;1.741108;2.686124;2.349875;2.72676;1.472352;2.130397;1.969754;2.584028;2.260218;2.232062;1.730321;1.842007;1.899205;2.433224;1.710099;1.313472;1.478812;2.753531;1.287789;1.601176;2.827994;1.961681;2.213083;1.518586;3.028233;3.542707;1.797408;2.524643;2.735213;2.926893;2.145689;2.975843;2.593157;1.476146;1.740293;1.811811;2.710179;2.044155;2.981868;1.480311;2.603798;2.580454;1.443317;1.322201;2.767591;1.733476;2.008086;1.719984;1.577596;2.845434;2.623924;2.518368;2.936349;1.915812;3.268431;1.552151;1.724541;2.006771;3.09595;2.958534;1.691649;1.287304;1.448704;1.563782;1.417348;2.850665;2.176899;2.637118;1.943259;1.298769;1.84009;2.600489;2.367708;2.809532;1.098976;2.677271;2.545003;2.54795;2.283477;2.985397;1.702386;3.071137;1.955878;2.351566;3.272732;3.322676;2.349908;2.037983;3.188119;3.292004;1.83645;2.923586;3.03695;2.955988;2.818481;2.976082;3.00405;2.111581;1.96896;1.952683;2.000445;2.149757;3.553006;2.206873;2.015848;2.664767;2.53048;1.709008;2.687721;2.645088;2.035689;2.495729;1.913861;2.847548;2.492951;2.722345;2.689283;2.420679;3.032133;1.538365;3.264741;1.863365;2.430783;2.034005;2.055986;2.09184;1.549479;2.042265;2.544928;2.245043;2.312196;2.166907;2.289315;1.986544;1.735304;2.173862;2.610867;1.997682;2.40341;1.614735;1.510497;2.086501;1.535045;1.373687;1.41588;2.626682;
2.491822;2.326497;2.870384;1.836912;2.681304;2.066495;2.42707;2.437068;1.996421;1.580041;2.643538;1.384492;2.395668;1.918182;2.648522;1.959918;2.251415;2.315897;1.575744;2.749514;1.365515;2.120729;2.07754;1.223004;1.302126;2.861542;3.234769;3.252404;3.15363;3.023655;1.816315;1.685629;2.679525;1.665842;1.836597;1.43082;2.876582;2.709249;2.074116;3.265063;1.550765;2.268057;2.506196;2.278371;2.662874;1.902077;2.184074;2.939942;2.183555;1.580258;2.177488;2.308347;2.350698;1.705078;1.466982;2.24456;2.10348;1.912803;1.949092;1.578866;2.047971;1.616141;1.5279;1.346437;1.327408;1.833571;2.74894;2.004365;2.512418;1.077523;3.021003;1.188543;1.475476;2.080914;2.094201;1.880099;3.022978;2.799944;1.872859;1.880688;1.562829;1.370739;1.74406;1.528004;2.551682;2.726461;1.773686;1.132252;2.350248;3.20514;3.546966;2.000665;3.144636;1.793161;2.938056;2.194817;1.553769;1.295467;1.748568;2.512825;2.12819;1.53888;2.862575;2.047558;2.033214;2.396693;2.530303;1.922585;1.924774;2.502704;2.892623;3.085701;3.289381;2.237929;2.489369;2.338517;2.351285;2.846661;2.168851;1.798615;1.369207;3.037793;2.317809;1.996489;3.074497;2.066694;2.166369;1.914824;2.833805;2.333692;3.034612;2.184792;2.798127;2.188728;2.642989;2.363975;2.221853;1.574563;2.594816;1.24676;2.451947;1.874125;2.844616;1.90652;2.137028;2.135058;1.521177;2.697079;1.313715;1.903287;2.293659;1.068568;1.089422;3.007426;2.972025;2.961401;3.231325;2.983742;1.782357;1.576486;3.022695;1.69116;1.960117;1.694448;2.981008;2.868693;2.29671;3.153116;1.732431;2.286319;2.438352;2.053986;2.692319;1.874249;2.372769;2.875595;2.089285;1.429304;2.115367;2.23484;2.294405;1.502285;1.676115;2.034139;1.84762;2.029291;1.748042;1.529847;2.020806;1.576655;1.512875;1.319595;1.509921;1.988015;2.899693;2.18456;2.564422;1.216876;3.100229;1.171589;1.594736;2.011744;2.102165;1.866535;2.932597;2.763958;2.06646;1.914168;1.422905;1.33509;1.688844;1.365711;2.448748;2.523154;1.857515;1.031415;2.015029;3.245748;3.36347;1.945559;3.111956;1.751541;2.918328;2.160607;1.751619;1.425887;1.869967;2.714266;2.176913;1.704573;2.940835;2.025382;2.173776;2.322551;2.539941;1.909618;1.655536;2.222202;2.644012;3.319114;2.873959;2.11911;2.250103;1.986482;2.056954;2.377074;1.954357;1.578287;1.942226;2.360275;2.605379;2.227228;3.378093;2.550464;1.981331;2.703409;
2.029694;2.850812;2.726629;1.502995;1.41536;2.878824;2.597775;3.167335;1.515476;2.602152;1.455523;2.133765;1.758412;1.434749;1.074664;2.493033;3.064854;1.583017;1.543516;2.618572;1.350647;2.203045;2.112481;2.617833;2.394066;1.762856;2.324611;2.596265;2.670928;2.834854;2.070544;2.53534;2.216002;2.609395;2.860774;1.743262;1.432446;2.148543;2.279789;2.418962;2.248385;2.641152;2.197606;1.965972;1.995466;2.941193;2.720006;3.23065;3.041846;2.440367;2.934067;2.690548;2.610433;2.182112;1.904628;2.595034;2.223593;2.206284;1.698421;2.464839;1.9597;2.388606;1.783721;1.478952;3.483156;1.608299;2.270166;2.120281;1.603309;1.999645;2.612577;2.726963;2.468519;2.780939;2.701638;1.140016;1.064956;2.710871;1.486196;2.798806;1.778049;2.191333;2.757846;2.199686;2.711851;1.855015;2.228297;2.628697;2.605;2.683566;1.750197;1.921354;2.366538;1.764234;1.336438;2.091977;2.213169;2.588612;1.528188;1.222918;1.691664;2.751456;1.438658;1.858682;1.62932;1.892545;1.816079;1.235699;1.234828;1.400023;2.362652;2.940211;2.685052;2.120776;1.517084;3.148826;1.403453;1.589036;2.562692;2.045849;2.855373;2.683051;2.569302;1.84126;1.626451;1.683404;1.255939;1.700688;1.766664;2.517307;2.63929;1.324276;1.452669;3.188373;2.702002;3.59363;1.514592;2.887796;1.774713;2.142325;1.668497;1.404261;1.229824;2.605806;2.950046;1.403702;1.574957;2.762969;1.455693;2.184515;2.233827;2.65523;2.339636;1.896021;2.402896;2.637849;2.316653;2.8945;2.201522;2.533326;1.904469;2.338384;2.757853;1.500202;1.441204;2.354326;2.301103;2.774765;2.215783;2.99125;2.581415;1.924566;1.872137;2.83428;2.883936;3.380626;2.904006;2.268407;2.983645;2.81019;2.733709;2.106647;1.96359;2.651761;2.150476;2.408265;1.770154;2.578671;1.752949;2.485314;1.965284;1.477193;3.2125;1.494164;2.211771;1.821625;1.492559;2.097143;2.600582;3.105712;2.432474;3.007129;3.030772;1.174515;1.061828;2.715541;1.66322;2.938121;1.763538;2.145185;2.844155;2.275303;2.67785;1.69499;2.259635;2.688058;2.52395;2.778856;1.750881;2.022684;2.138702;1.84812;1.494205;2.090481;1.998635;2.443863;1.480399;0.9993044;1.577793;2.866417;1.429777;2.174128;1.60015;2.080481;2.087699;1.272387;1.804336;1.483606;2.138973;2.709671;2.298752;2.484057;1.16316;2.708411;0.9291514;1.45735;2.719176;1.880082;2.435696;3.009944;2.414394;2.025618;1.44006;1.585461;1.983672;2.05943;
1.932829;2.223682;1.671295;2.232392;2.620303;2.471588;2.091938;1.997796;1.413636;1.849949;1.926344;1.797647;2.807403;2.528861;1.395367;1.33086;2.48504;2.883579;2.887497;1.842104;2.43051;1.235718;2.688556;2.329983;1.025113;1.020034;1.823591;2.664712;1.696807;1.53383;2.632515;1.6158;2.652941;2.453883;2.714725;2.075755;1.390133;2.587686;3.185849;2.5915;2.742753;2.552136;2.131892;2.331166;2.344627;2.67056;1.997737;1.366849;1.669042;2.434551;2.664557;2.463561;2.915268;2.442858;2.605862;2.85133;2.931525;2.282259;2.988493;2.646009;2.66063;2.693864;2.829808;2.506832;2.368726;1.892253;1.977503;1.565471;2.126931;1.570112;2.685103;2.178137;2.259058;2.765577;1.669392;3.299339;1.540161;1.97798;1.930178;1.217706;1.25841;2.861899;2.485885;2.890977;2.406424;2.207894;1.502947;1.702324;2.194976;1.216083;1.955315;1.796687;2.426471;2.668376;2.244837;2.761852;1.983409;2.371886;2.422147;2.423849;1.994002;1.902805;2.22889;2.538632;1.953901;1.779405;1.875291;2.693119;2.493312;1.544831;1.575258;1.447081;2.012868;1.685315;2.01102;1.757173;1.843393;1.815714;2.087845;2.157545;1.81351;2.140999;2.757243;2.988002;2.267193;1.725146;3.07217;1.340798;1.557967;2.021659;1.626484;2.232623;2.546328;2.229822;2.072398;1.934929;1.32242;1.749608;1.79238;2.156231;2.565768;2.679844;1.654802;1.363338;2.134369;2.69938;2.762336;1.767853;2.223238;1.047002;2.94914;2.449703;1.1846;1.068604;1.775965;3.205632;1.638033;1.715674;2.808147;1.593855;2.267586;2.320527;2.700047;2.085927;1.36188;2.34842;3.058752;2.534906;2.666122;2.519569;2.018146;2.751965;2.144134;2.835281;2.205072;1.403621;1.399354;2.343306;2.572825;2.38124;2.679394;2.178314;2.748189;2.98924;3.220435;2.434353;2.958314;2.97596;2.641457;2.923156;2.852873;2.590545;2.185913;1.688536;2.060945;1.555358;2.145383;1.385225;2.790909;2.012131;2.034552;2.671818;1.564424;3.563181;1.424148;2.107336;2.000688;1.331705;1.155945;2.655056;2.503451;2.776907;2.24782;1.956951;1.789464;1.704165;2.282807;1.286157;1.926675;2.07027;2.409176;2.896493;2.266419;2.849774;1.8172;2.143137;2.515249;2.411249;2.012795;1.698602;2.326428;2.359232;1.746269;1.704378;1.764645;2.932093;2.161659;1.721203;1.246765;1.569034;1.844821;1.690115;2.02775;1.456832;1.435543;1.938076;1.702958;2.182079;1.638269;1.953984;3.031926;3.137581;2.345406;1.248622;3.605534;1.218779;
1.660652;1.953158;2.678771;3.064326;2.423899;1.373394;2.827186;2.550105;2.863827;1.964273;2.901373;1.214192;2.679888;1.755867;2.674135;2.356535;3.301296;1.972944;2.275319;2.336058;2.774864;1.153579;3.004838;1.933361;3.234807;2.537885;2.874996;2.898364;2.28075;2.166153;2.107605;1.596569;1.764584;3.012802;2.763561;1.606807;2.273839;2.986974;2.343045;2.887106;2.610947;1.971146;2.83413;1.805467;2.786523;2.354698;2.044587;1.941478;2.704375;2.450198;1.988171;3.255131;1.376242;2.256691;1.893706;1.789008;2.535858;1.725271;2.020948;2.28252;2.322969;2.418147;2.834915;1.749237;2.482888;2.140197;2.368577;2.916887;1.802224;2.181405;2.118804;1.685991;2.73768;1.481776;1.316693;1.060774;2.194313;1.030647;1.711726;1.876389;1.819078;1.938907;1.685119;2.257618;3.163726;1.031552;2.82817;1.726211;3.155179;2.131357;2.957222;2.614601;1.532325;1.766229;1.983504;2.332044;1.866277;2.499804;1.999536;2.262107;2.295835;1.948912;1.858363;3.028956;1.975747;2.074967;2.009359;1.552376;2.668131;2.400576;1.703046;2.09719;2.063444;2.551561;1.882074;1.466971;1.39908;2.890138;2.973826;1.464035;1.754794;2.002083;1.979907;1.789285;2.456375;2.288239;2.519138;2.058792;1.526868;2.077075;2.720676;2.741725;2.586605;1.295081;2.964648;2.427329;2.661212;2.008633;2.862951;1.466197;2.865453;1.818891;2.616128;2.326413;3.573566;1.920797;2.151958;2.366135;3.102298;1.329184;3.199973;2.05332;3.313446;2.358306;2.705418;3.005454;2.306282;1.979618;1.808137;1.397818;1.68992;3.154311;2.806659;1.396177;2.457273;2.833754;2.482156;2.850272;2.502808;2.012917;2.805674;2.142495;3.010654;2.398638;2.011468;1.966842;3.015386;2.426948;1.88097;3.29224;1.612989;2.508303;2.067326;1.957119;2.665607;1.60577;1.887352;2.202283;2.443997;2.38864;2.588755;1.587742;2.353456;2.279757;2.440118;2.635544;1.950574;2.040647;2.14048;1.587465;2.536698;1.47318;1.331604;1.191712;2.485166;1.170779;1.766129;1.95361;2.037857;1.936891;1.612498;2.293735;3.498048;1.196455;2.910532;1.816723;3.198439;1.947496;2.845285;2.529432;1.63101;1.741533;1.77848;2.145531;1.754187;2.651271;2.06525;2.015873;2.463018;1.816514;1.878632;2.897042;1.805478;2.065512;2.027709;1.71088;3.237255;2.097919;2.642241;2.414692;2.572796;2.485494;1.484953;1.685736;1.809721;3.426568;3.344466;1.784943;1.428142;1.635443;1.765094;1.884547;3.016458;2.066839;2.291138;2.21174;
1.44956;2.443426;1.559446;2.029139;1.574848;2.188663;2.849572;1.399009;2.4895;2.098263;2.192242;1.261725;2.611645;2.667838;1.63362;1.913089;1.567827;2.298787;1.9987;2.202991;1.754149;2.146265;2.602484;2.13601;1.702697;3.005019;1.772322;1.511677;1.948874;1.418913;2.436293;2.681711;2.074891;2.483656;2.162688;2.723314;1.94462;1.60417;2.043372;3.167877;3.108725;2.171879;1.800524;1.95818;1.542634;1.262944;2.964414;2.773463;2.621635;1.8701;1.692391;2.139097;2.759124;2.612299;2.801915;1.577772;2.873815;2.784343;2.966636;2.263506;3.98954;1.906273;2.964917;2.261107;2.271637;3.097898;2.623763;2.152885;2.137236;2.130004;2.417666;1.538879;2.837099;2.454733;2.379518;1.894355;2.780221;3.02057;2.382636;2.149052;1.793592;1.556885;1.946578;3.020324;2.466321;1.527668;2.521042;3.368005;2.155423;2.665675;2.597903;1.493552;2.730236;1.645261;2.300527;2.308452;2.277708;2.153271;2.700491;2.698547;1.949198;3.076054;2.170506;2.526702;2.22397;2.456156;2.74719;1.516586;1.51947;1.563374;2.816847;2.794506;2.690924;1.46972;2.567955;2.288945;2.564938;2.336079;2.34712;2.368944;1.876186;1.762705;3.271896;1.671485;1.899094;1.382421;2.829012;1.334472;1.551666;2.53224;1.413137;2.481103;1.604916;2.115972;2.692829;1.78132;2.473173;1.85947;2.219112;1.237755;2.794952;2.278308;1.738895;1.853981;1.500391;2.243421;1.916057;2.51255;1.705897;2.304705;2.811736;2.134469;1.575373;2.686199;1.888483;1.526063;1.934721;1.156367;2.763452;2.309703;2.168381;2.621975;2.010975;3.186021;1.944391;1.524976;1.903951;3.57123;3.044833;1.973723;1.836054;1.887054;1.642033;0.986104;3.081367;2.591377;2.533914;1.838412;1.644994;2.421695;2.68764;2.733126;3.019957;1.492073;2.707582;2.499089;3.156326;2.249801;3.749297;1.686393;3.310199;2.080693;2.280416;3.195563;2.519058;2.482696;2.125724;2.189164;2.274283;1.813519;2.727827;2.300829;2.40057;1.815573;2.73624;2.746062;2.475211;2.151709;1.645513;1.489666;1.951292;3.259287;2.387244;1.754953;2.738361;3.228814;1.971682;2.445653;2.755553;1.482453;2.533133;1.441454;2.606788;2.126241;2.287541;2.234901;2.59534;3.066433;1.939076;3.147048;2.035633;2.875588;2.128353;2.302289;2.770932;1.446454;1.310898;1.562374;2.961521;2.49894;2.230577;1.586797;2.504101;2.363847;2.641072;2.413494;1.970449;1.858874;1.612609;1.935693;2.474632;1.790637;1.742352;1.526543;2.683248;1.425039;
1.132665;1.781342;2.836578;2.024458;2.075648;1.959462;2.37524;2.28864;2.863266;3.237882;2.198634;2.498217;2.516032;2.381689;2.726388;2.300801;2.922077;2.221028;1.65665;2.075239;2.146154;1.962719;2.137532;2.861404;2.266999;2.840618;2.13514;1.124093;2.656365;1.989646;2.006989;1.928499;1.401612;1.561052;2.573401;3.029847;2.942491;2.568774;2.935837;1.7045;1.643891;2.447241;1.809306;2.52658;1.889326;2.328075;2.425071;2.318596;2.709685;2.284799;2.814361;2.403552;2.958003;2.817185;1.994206;2.13593;2.923379;2.271152;1.418441;2.05903;2.662644;2.421408;1.564607;1.125038;1.524721;2.474469;1.89278;1.522831;1.401951;1.290388;1.618144;1.565098;2.223996;1.617472;1.902946;2.517897;2.410306;2.062356;1.416507;2.47887;1.593071;1.567319;2.056992;1.536814;2.905827;2.260889;2.791544;1.790136;2.166542;1.782014;1.254264;1.483383;1.382137;3.40892;2.513153;1.477116;1.567423;2.548643;2.532973;3.083474;1.900968;2.55446;1.561815;2.755119;2.556925;1.254699;1.347988;2.422801;3.088569;1.45452;1.385871;2.759591;1.794353;2.899874;2.697319;2.356605;2.618091;1.993246;2.239309;2.657626;3.037557;3.216149;2.10327;2.060144;2.77878;1.966813;2.687479;1.557945;1.221828;1.81733;2.713528;1.949672;1.909689;2.34528;1.970128;2.157191;2.762921;3.526611;2.422304;2.448115;2.723469;2.147837;2.65877;2.084909;3.08749;2.400012;1.590679;2.04554;2.227169;2.119807;1.755507;2.869646;2.296916;2.885433;2.088737;1.056203;3.231383;1.83545;2.2515;1.91954;1.528204;1.604811;2.363343;2.877617;2.726045;2.95889;2.535396;1.589588;1.602758;2.720111;1.935583;2.428026;2.058576;2.060567;2.417143;2.133446;2.92795;2.483715;2.64925;2.354965;3.052244;2.958406;1.680998;2.174883;3.017117;2.328096;1.324418;1.813487;3.125072;2.209874;1.682817;1.106667;1.525062;2.499986;1.775747;1.536864;1.338977;1.555069;1.35556;1.502548;2.092612;1.900892;2.060253;2.265677;2.500697;1.810268;1.32316;2.270838;1.62573;1.708916;1.982778;1.623112;3.130726;2.36881;2.460163;1.879662;2.162299;1.893255;1.187148;1.276617;1.720564;3.157943;2.662268;1.456689;1.567663;2.575305;2.397409;3.104159;1.827609;2.922719;1.303957;2.672781;2.415775;1.506272;1.480969;2.17608;3.238507;1.702541;1.246974;2.474974;2.443104;2.746358;2.124802;2.280458;2.199185;1.87886;1.788326;3.048224;3.092564;2.850658;2.099478;2.366854;2.075937;2.400624;2.428679;1.584485;
2.945746;2.79228;2.346912;3.036382;2.62506;2.175956;1.929952;2.261079;1.452547;2.476598;2.692701;2.036253;2.280302;2.656624;2.402306;1.449573;2.177156;2.263146;1.688686;2.635003;1.984119;2.002687;2.583594;2.507631;2.165012;2.496164;2.348621;2.142201;3.207046;1.686423;2.313134;2.117314;2.1879;2.54929;1.583868;2.163342;2.029238;2.081828;1.979657;2.755402;1.848072;2.467817;2.019107;2.127711;2.648899;1.815897;2.142704;1.679074;1.938214;2.571864;1.98283;1.671062;1.462847;2.283011;1.675801;1.875695;2.110903;1.557306;2.852254;1.695951;2.739841;3.360191;1.321517;2.714126;2.620099;2.591872;1.588492;2.987882;2.208538;1.458735;1.607316;2.323072;2.182796;2.443163;1.9888;1.28605;2.802707;2.692496;1.386674;1.103485;2.591553;1.418667;1.521989;1.882307;1.570087;1.983592;2.388112;2.151242;2.403528;1.900909;2.29463;2.013007;1.526124;1.602203;2.921477;2.956979;1.77015;1.61415;1.760769;2.161393;1.529314;2.181971;1.933451;2.689774;2.484572;1.79124;1.821962;2.374444;2.766335;2.682195;1.496004;2.554507;2.943193;2.55691;2.482253;3.03767;1.779407;2.734645;2.511112;2.672056;2.844295;2.939308;2.794814;2.268051;2.74309;3.074163;1.257195;2.947418;3.089723;2.801077;2.317012;2.923831;2.582138;2.023667;2.105059;2.131861;1.67392;2.317098;2.721649;2.305501;2.177469;2.952948;2.408687;1.48086;2.289053;2.263038;1.429859;2.623581;1.748852;2.123962;2.535869;2.403823;2.279883;2.482443;2.249707;2.099576;3.265339;1.753572;2.180295;2.2468;2.330402;2.575816;1.563101;2.021333;1.99012;1.957543;2.214555;2.675031;2.104211;2.328457;2.038787;2.354818;2.522581;2.087832;2.193959;1.755114;2.024559;2.588044;1.694731;1.613962;1.230537;2.43564;1.674855;1.829351;2.204527;1.559193;2.734754;1.67723;2.760559;3.391834;1.171725;2.789627;2.583925;2.682723;1.658219;2.94593;2.220294;1.347353;1.8583;2.191502;2.391075;2.278781;2.092636;1.527837;2.686106;2.937113;1.37378;1.12036;2.502524;1.478733;1.352968;1.92308;1.370719;2.116371;2.43202;2.045665;2.434415;1.87962;2.278363;1.992599;1.542414;1.623995;2.697446;3.035683;1.741256;1.686012;1.835049;2.125726;1.539915;2.045163;2.208637;2.547981;2.707484;1.6509;1.922333;2.699371;2.577116;2.949888;1.219766;2.356775;2.777888;2.071311;2.314584;2.803883;1.499719;2.851608;2.111236;3.085115;3.007012;2.949972;2.257926;2.584855;2.821034;2.843554;1.228566;2.897283;
2.548979;2.082519;2.424596;2.131726;1.688101;1.491823;2.505799;2.128641;1.51901;1.398759;1.358926;1.477194;1.142183;2.974545;2.627302;2.998157;1.921344;1.67137;1.506084;2.443516;2.224729;2.24709;1.72174;2.32286;2.021848;2.132295;2.479934;2.795454;1.488659;3.163056;2.626119;2.966051;2.547772;3.623038;3.15954;2.461128;2.650689;2.716624;1.410372;2.557059;2.44684;2.014808;2.43989;2.016395;3.151999;2.917109;2.633214;1.528713;1.908681;1.91443;3.207615;2.936192;1.996371;2.924763;3.128717;1.934819;2.336924;2.928685;2.138678;2.431999;2.077173;2.180739;2.734212;3.082034;2.207671;2.866722;2.350783;1.971074;3.435677;1.598791;2.244726;1.487757;2.108085;2.396043;1.16047;1.396534;1.437964;2.940732;2.785754;3.109845;1.576705;2.486377;1.757926;2.206291;2.422999;1.643791;2.70712;1.695015;1.480613;2.381429;1.805607;1.347635;1.352575;2.550888;1.951308;2.097364;2.05057;2.138697;2.972747;1.91502;2.406432;2.994485;1.359514;2.158481;1.966872;1.866716;1.817148;1.969245;2.546761;1.989476;2.365702;1.677481;2.498142;1.87877;2.455424;1.942367;2.471012;2.808956;1.727542;1.362475;2.775062;2.203394;1.990184;1.884729;1.518321;2.244135;2.438236;2.807858;2.735533;2.12497;2.105181;1.78707;1.703755;1.492675;2.903769;2.432003;1.613853;1.858808;1.252297;1.616504;1.343235;2.665161;2.526023;3.104354;2.088236;1.809356;1.615033;1.982591;2.119363;2.183822;1.445215;2.365389;2.281321;2.288918;2.446164;2.933568;1.441607;3.102768;2.427083;3.032287;2.668138;3.669098;2.846927;2.133049;2.64627;2.68948;1.666523;2.856132;2.511127;2.56014;2.353232;2.230137;3.45923;2.588391;2.481367;1.557557;2.000229;2.096397;3.43478;2.449446;1.857588;2.869715;2.699513;1.921538;2.531481;3.154048;2.162294;2.541031;2.039616;2.253039;2.532401;3.105969;2.358486;2.902144;2.076565;1.777838;3.435441;1.533344;2.511067;1.732178;2.19122;2.874393;1.086848;1.54319;1.701383;2.729032;2.631025;3.107546;1.692921;2.688133;1.92188;1.889927;2.274303;1.558201;2.257761;1.697522;1.656749;2.480313;1.80903;1.429602;1.322348;2.629879;1.781481;2.117897;2.196078;2.169914;2.6632;1.72517;2.406296;2.905551;1.5685;2.451827;2.047267;2.292111;1.724619;2.143289;2.255242;1.343855;1.704879;1.753304;2.285724;2.105936;2.251447;2.034429;2.404767;2.409672;1.732705;1.651135;2.653467;2.194722;1.990467;2.089208;1.319378;2.432726;2.832632;2.793555;
3.130928;2.307516;1.770484;3.01506;1.439368;2.776293;1.467199;1.796073;2.060034;1.035621;1.3664;1.816776;2.445649;2.631411;2.483305;1.590041;2.590386;2.344876;2.010316;2.397878;1.691779;2.016471;1.909348;1.857466;2.512367;1.42002;1.61533;1.790719;2.672369;1.382172;1.625105;2.02524;1.903344;2.197361;1.752024;2.198935;2.808174;1.37783;2.409351;2.469986;2.81213;1.711322;2.778978;2.088887;2.070822;2.239239;2.181366;2.684806;1.999075;2.312759;2.019708;2.91028;2.563936;1.302697;1.657127;3.100426;1.97334;1.936785;2.097618;1.634936;2.673769;2.498026;2.449209;2.392142;2.433461;2.368567;1.828892;1.358929;1.493424;3.356173;2.017142;1.373639;1.295826;1.347957;1.519938;1.663136;2.595938;2.496127;2.239139;1.879018;1.813263;2.178587;2.176632;2.253824;2.309268;1.474125;2.508138;2.410881;2.499536;2.013396;3.322878;2.131004;3.16324;2.141281;2.344777;2.389595;3.331597;2.234807;2.281734;2.212743;2.489472;1.480003;2.51346;2.795654;2.931638;2.254521;2.944094;2.869859;2.913168;2.489352;2.130181;2.038479;2.134227;2.756634;2.825913;2.178144;2.623158;2.353793;1.791719;2.536844;3.129543;1.796936;2.584904;2.164569;2.663775;2.913228;3.122283;2.163778;3.067667;2.143268;1.831835;3.017812;1.766604;2.930904;1.514707;1.833997;2.083417;1.013296;1.430939;2.008206;2.593763;2.420432;2.240896;1.433684;2.721929;2.193918;1.989747;2.205416;1.735111;1.94292;1.489264;1.596715;2.659781;1.297698;1.320621;2.120111;2.729172;1.60941;1.819749;2.130595;1.845453;2.058374;1.804806;2.150701;3.241081;1.501696;2.493899;2.490192;2.817107;1.704337;2.848539;2.244681;2.180186;2.061663;1.963577;2.48143;2.13325;2.160144;2.000844;2.670286;2.629623;1.236117;1.291078;2.761415;2.122737;1.790872;1.761296;1.743321;2.643669;2.799939;2.77988;2.515453;2.341677;2.34194;1.889175;1.423173;1.767746;3.432901;2.212762;1.475922;1.278163;1.334696;1.517229;1.625307;2.619022;2.318511;2.099204;1.716704;1.917454;2.143465;2.164161;2.170263;2.319795;1.331241;2.170506;2.22042;2.638173;1.856362;2.822877;2.25463;3.131498;2.421426;2.66962;2.512949;3.225231;2.209074;2.349861;2.29465;2.841245;1.531087;2.732382;2.940904;2.906159;2.237491;2.941273;2.821009;2.455837;1.900422;1.964327;1.727103;2.885027;3.007095;2.386586;1.647721;2.419252;3.073174;1.351413;2.521256;3.076235;1.954584;2.277026;2.163275;3.02414;2.267609;2.784136;1.927382;
2.794784;2.04912;3.024242;1.739782;2.664491;2.173055;1.326765;1.553277;2.044257;2.494895;1.849964;1.262723;2.888212;1.942615;2.59698;2.365938;2.979471;2.182266;1.938574;2.391386;2.388789;2.780945;3.412248;2.370768;2.331504;2.571497;2.523779;2.645635;2.007347;1.09411;1.793503;2.862782;2.581346;2.433191;2.358306;2.826262;2.830864;2.425514;2.558269;2.259484;2.584746;2.789417;1.833342;2.62621;2.122443;2.874734;2.027905;2.149288;2.083451;2.14543;1.902283;1.712714;2.302001;1.514272;2.813638;2.37773;1.413537;2.528215;1.899438;1.75241;1.823086;1.417887;1.941812;2.916008;2.442308;2.88488;3.111112;2.831745;1.464104;1.490521;2.435042;1.76858;2.11848;1.466434;2.702455;2.164085;2.398182;3.396452;2.297513;2.169377;2.85568;2.248358;2.587788;1.610981;1.67981;2.816072;2.33545;1.572773;2.030565;2.874655;2.94484;1.270193;1.645133;1.41121;2.317801;2.027706;2.025795;1.851696;1.539463;2.043926;2.091075;1.717954;1.314193;1.843221;2.513733;2.744588;1.790013;1.324368;2.453519;1.69007;1.454164;2.674581;1.692418;2.726685;2.095814;2.243423;1.583468;1.478068;1.800918;1.252094;1.340118;1.526434;2.967947;2.3716;1.388262;1.418872;3.239866;2.768337;2.655947;2.044237;2.650214;1.526958;2.618374;2.251453;1.475232;1.780715;2.401472;2.477067;2.159596;1.116245;3.135602;2.053094;2.630594;2.542677;3.056317;1.943105;2.049564;2.183913;2.568117;3.211012;3.317103;2.073965;2.135337;2.741868;2.433506;2.789002;2.016166;1.331654;1.762397;2.670701;2.407212;2.476877;2.018199;2.488704;2.743775;2.444058;2.680298;2.51457;2.948664;2.831084;2.137413;2.3581;2.304497;2.9441;1.99152;2.336171;2.127248;1.956269;2.017655;1.518273;2.457339;1.782883;2.661565;2.097745;1.246249;2.754027;1.826151;2.035525;1.708173;1.49331;1.942364;2.723509;2.23074;2.90661;2.833419;2.597779;1.410124;1.463804;2.503544;2.07521;2.408112;1.372551;2.933976;2.112539;2.465005;3.262255;2.294468;2.358143;2.85927;2.0334;2.837647;1.501696;1.822772;3.119087;2.150242;1.413182;1.793686;2.935517;2.723217;1.513388;1.536012;1.487028;2.318425;1.868293;1.833633;1.869651;1.346099;1.846559;2.026403;1.689872;1.364659;2.156605;2.828518;2.616214;1.979387;1.284896;3.200415;1.274077;1.835925;2.277247;2.038511;2.422091;2.440105;2.222563;1.725216;1.864026;1.86264;1.300709;1.708457;2.088942;3.072906;2.383601;1.440189;1.409904;2.536495;2.369782;
1.68097;1.424092;1.775677;2.551368;2.624644;2.920576;2.836618;2.865747;1.550588;1.129571;2.412483;1.924549;2.471309;2.017985;2.423409;2.898224;2.219097;2.947161;1.762923;2.511431;2.372353;2.809355;1.763116;1.378767;1.511662;2.715899;1.966306;1.732363;1.858444;2.563561;2.467119;1.208383;1.167711;1.172169;2.6538;1.788108;1.655294;1.342985;1.882666;1.725346;1.528517;1.65192;2.177812;2.537045;2.302195;2.808256;2.794271;1.678347;2.814049;1.525716;1.383416;2.798491;1.725673;2.248698;2.527552;1.966988;1.968964;1.77501;1.682403;1.122262;2.047241;1.419461;3.465821;2.572766;1.488226;1.435511;2.72033;2.678108;3.154037;2.091013;3.018002;1.733639;2.715128;1.77375;1.386215;1.476981;2.238093;3.194025;1.552422;1.885902;3.064991;1.903922;2.146822;2.635936;2.672066;2.57459;1.306157;1.829056;2.064715;2.836027;2.873477;2.589934;2.037149;2.415242;2.199168;2.28399;1.820897;0.9882036;1.916649;2.603505;2.213649;1.976272;2.848696;2.498025;2.062317;2.458119;3.713145;2.582928;2.361283;2.86061;2.907433;3.105445;2.736594;3.059595;1.947559;2.326806;2.122689;1.68729;2.619891;1.584527;2.875942;1.785245;2.819383;2.163168;1.758336;2.707699;1.991408;2.297863;1.557737;1.661247;1.519494;2.386713;2.498435;2.889618;2.599872;2.554583;1.379844;0.9614012;2.47968;1.875738;2.353503;1.997682;2.465698;3.109577;2.540953;2.969153;1.7357;2.195247;2.620667;2.875552;2.262549;1.615729;1.413648;2.623736;2.196374;1.807963;1.802244;2.524872;2.296989;1.46121;1.105274;1.450577;2.378307;1.659668;1.583223;1.328243;1.615694;1.497344;1.39594;1.512899;2.270606;2.494884;2.208401;2.793653;2.727839;1.844263;3.197978;1.605861;1.38014;2.467966;1.931599;2.312071;3.000039;2.252899;1.874621;1.768124;1.920513;1.255775;2.085907;1.406432;3.33953;2.800004;1.261544;1.704008;2.541382;2.590206;3.029243;2.018818;2.643055;1.486795;2.586379;1.62442;1.412654;1.521803;2.254567;3.19722;1.554508;1.947938;3.218759;1.953237;2.236805;2.382832;2.903038;2.581515;1.625476;2.083575;2.012073;2.820547;3.112451;2.7908;2.076661;2.398135;2.099802;2.498456;1.569875;1.212951;1.767641;2.516835;2.110254;1.906013;2.485855;2.199897;1.951101;2.281769;3.757371;2.642198;2.632082;2.934639;2.953354;3.339895;2.684982;2.602733;2.151279;2.08833;2.679456;1.872516;2.515837;2.069302;2.709594;1.784942;2.395492;2.214475;1.492268;2.472883;1.892086;2.508545;
1.960907;1.976404;2.69654;1.725443;1.731634;1.531038;2.702782;1.99302;1.965966;2.475765;1.780549;2.347324;2.096454;2.052037;2.654583;1.185652;1.664674;1.93676;2.628518;1.60051;2.344896;1.72167;1.409093;2.229872;2.110544;2.20736;1.693434;2.353082;1.429699;2.64396;2.551361;1.62839;1.204672;2.732461;2.009004;1.747696;2.119231;1.245875;2.426754;2.768423;2.148194;2.418161;1.491122;2.367684;2.081824;1.506013;1.99218;3.063108;2.387435;1.949764;1.34312;1.835701;2.038986;1.441426;2.665863;2.535328;2.268397;2.431178;1.333776;1.830207;2.03516;3.073103;2.731752;1.766493;2.68065;2.91943;2.569777;2.45804;3.525747;1.893629;3.230402;2.645733;2.783255;3.081463;2.940075;2.458152;2.811468;2.453583;2.245386;1.102453;1.846371;2.234455;2.482597;2.17319;2.348758;2.301938;2.064373;2.676058;2.090035;1.593745;1.614097;2.764457;2.395605;2.157254;2.49067;2.572307;1.594999;2.747377;2.749407;1.991824;2.79369;1.726767;2.470766;2.912686;2.616706;2.087129;2.134288;2.386971;2.276324;3.391372;1.903834;2.546422;1.540859;2.342893;2.124746;1.429137;1.815782;1.912607;2.889298;2.617223;2.066863;1.890909;2.024822;1.729309;2.06143;3.10716;2.0204;2.50123;1.532961;2.053056;2.744134;1.524332;1.493676;1.60417;2.72961;2.06546;1.803639;2.365757;1.764993;2.269335;1.877322;2.125785;2.887272;1.362307;1.864165;2.102824;2.571397;1.998518;2.297049;2.004997;1.689693;2.294535;1.961294;2.144766;1.701232;2.025265;1.836491;2.834332;2.323299;1.623424;0.9215428;2.811195;2.050529;1.566623;1.877935;1.28657;2.465965;2.949257;2.055468;2.30686;1.483813;2.323157;1.890756;1.545652;2.212542;3.413097;2.685843;2.148817;1.309015;2.261307;1.998615;1.70828;3.069082;2.665791;2.167716;2.399966;1.3476;1.599324;2.307898;3.088269;2.505725;1.782027;2.288015;2.993301;2.784928;2.205494;3.276318;1.835818;3.284891;2.712829;2.661745;2.947586;2.939487;2.482343;2.373815;2.330722;2.489167;1.334195;2.147589;2.441078;2.598885;2.594874;2.360229;2.510814;2.428781;2.701235;1.979735;1.563244;1.636467;2.479668;2.690912;2.170532;2.275028;2.591659;1.295595;2.819892;2.971728;1.765802;2.572287;1.672082;2.518407;2.983724;2.498802;1.977916;2.133725;2.411882;1.400252;2.785017;2.333151;2.259548;1.97967;2.723176;2.410222;1.40907;1.775581;2.265292;2.232986;2.708213;2.265599;1.957595;2.202037;1.955572;2.726862;2.813935;2.220874;2.026536;
1.91504;2.584807;1.573326;2.554644;2.449718;1.240319;2.700895;1.488923;1.620118;1.639148;1.717882;1.539292;2.209404;2.403694;2.466791;2.701292;2.896255;1.323224;1.389964;2.387146;1.48989;1.931121;1.563736;2.242907;2.000102;1.778606;3.602556;2.143455;2.472997;2.480289;2.447556;2.546405;1.589769;1.964733;1.96747;2.327055;1.70172;2.392036;2.984826;2.667248;1.547962;1.663825;2.017136;2.520548;1.806264;2.099697;2.214612;1.607235;1.502961;1.975635;1.931963;1.7802;1.730019;2.543845;2.412589;2.289357;1.443609;3.054942;1.581013;1.302471;2.186007;2.092703;2.587122;2.977853;2.448712;1.795901;1.664383;1.82496;1.645174;1.587839;1.558221;2.8885;1.88454;1.205581;1.702049;2.511436;2.234422;2.660812;1.499897;2.651301;1.523315;2.394494;2.09832;1.331062;1.219401;1.850765;2.487496;1.703684;0.9461427;2.268231;2.089503;2.406019;2.527005;2.597904;2.057796;1.713045;1.948084;2.555372;2.272515;3.241668;2.724513;2.721392;2.68831;2.599615;2.461967;2.158971;1.736088;1.872477;2.858468;2.724844;2.763294;2.353971;1.935313;2.66273;2.88001;3.275125;2.093799;2.850911;2.85432;2.982703;2.629677;3.151051;2.675284;2.09713;2.181583;2.328245;1.805549;2.484048;1.899055;2.772149;1.844283;2.300065;2.455129;1.287559;2.247995;1.712545;1.785504;1.691494;1.67676;1.616472;2.291025;2.492292;2.202666;2.839504;2.969448;1.362171;1.248251;2.243966;1.61239;1.989999;1.790176;2.787491;1.982655;2.180416;3.398902;2.237647;2.883123;2.258272;2.269063;2.458569;1.551232;2.172874;2.291842;2.038467;1.674942;2.43556;2.499637;2.820707;1.675709;1.758708;1.983967;2.570839;1.835878;2.162406;1.945763;1.626131;1.555554;2.042195;1.794043;1.638235;1.852726;2.559024;2.693054;2.7251;1.428642;3.60043;1.474185;1.433831;2.54685;1.882701;2.477759;2.932883;2.529378;1.93616;1.832185;1.544398;1.533808;1.530084;1.22411;2.890501;2.092841;1.267817;1.708779;2.663474;2.25293;2.777127;1.334396;2.723631;1.680839;2.402774;1.823702;1.186128;1.246304;1.763734;2.78898;1.952368;0.980786;2.714082;2.007686;2.583463;2.915004;2.363273;1.96124;1.679085;2.021083;2.722259;2.468976;2.863889;2.581644;2.6456;2.244061;2.601647;2.700403;2.242071;1.743778;2.004382;2.318768;2.306682;2.066425;2.781522;2.592475;2.886797;2.279181;2.869197;2.146029;2.297943;3.108905;2.343426;2.869619;3.112151;2.722353;1.956189;2.124934;2.479542;1.389901;1.937817;
2.478402;2.384995;2.112044;3.083157;2.211076;2.854139;2.570037;2.314544;2.918625;2.959026;2.00312;2.376778;2.860224;2.759482;1.561771;2.126915;1.83916;2.90213;2.410254;2.009705;1.966345;2.763069;2.097891;2.784348;1.733475;2.067404;3.141316;2.350794;3.513185;2.377999;2.32107;1.990492;1.628983;1.305564;1.94941;1.631905;2.537023;2.225848;2.04562;1.733973;1.549915;2.39281;1.228561;1.922387;1.346424;1.753846;2.814274;3.059844;1.904903;2.352848;2.686779;2.23514;1.7013;1.554405;2.320965;2.811157;1.74972;2.308296;2.321546;1.588129;2.018861;1.727268;1.573536;2.688272;2.170837;1.447398;1.891652;2.98551;1.694043;2.104109;1.254919;1.581714;2.384086;2.857143;1.676525;2.593671;1.863563;1.87554;1.734078;1.294986;2.692897;1.626538;2.446671;1.331836;1.203843;2.120646;2.140437;2.981157;2.757995;2.349706;2.704313;2.008128;2.724546;1.613151;2.701165;1.846939;2.352755;1.562196;2.690608;1.881754;2.334964;1.362403;0.9219854;2.732811;2.873987;2.36031;0.9171374;1.401316;2.829442;1.773337;2.395659;3.160701;2.01783;1.669406;1.496754;2.144344;2.442002;1.912676;1.989636;2.766054;2.196258;2.333884;2.35878;1.712145;1.867246;1.471114;2.689945;2.329296;2.410029;2.436637;2.096287;3.247952;2.150535;2.814369;2.505311;2.486643;2.899353;2.772326;2.086655;2.866337;3.087341;2.632634;1.55953;2.383348;1.84394;2.541809;2.531202;2.241522;1.868338;2.906218;2.38044;2.625883;1.532566;1.837789;2.842868;2.458255;3.230795;2.344322;2.096294;2.521143;1.601899;1.353079;1.851676;1.705546;2.454777;2.148506;2.03436;1.881369;1.570111;2.244434;1.232768;2.318087;1.494363;1.620934;2.872666;3.405999;1.958224;2.045787;2.733934;2.462132;1.609604;1.627473;2.687351;2.687211;1.591076;2.081312;1.997465;1.649119;1.839474;1.663346;1.480579;3.180263;2.249383;1.521416;1.855338;3.09131;1.6415;1.892603;1.247803;1.63108;2.417607;2.652708;1.694888;3.032017;2.073006;1.737495;1.882723;1.442479;2.880367;1.396216;2.562816;1.513126;1.139355;2.064307;2.495133;2.736154;2.566411;2.084021;2.369591;2.077235;2.515585;1.552038;2.578808;2.259065;2.434366;1.63967;2.647386;1.96652;2.273306;1.193866;0.9158129;2.79846;2.910637;2.175549;0.9308041;1.72855;2.729758;2.145744;2.207443;3.029442;2.132555;1.967837;2.008785;2.292361;2.659533;2.099909;1.700303;2.392781;2.476074;2.476393;2.108032;1.826543;2.104365;1.285351;2.334484;1.942817;
2.164187;2.575938;1.562073;2.239066;1.579228;2.148196;1.629181;1.70762;3.645811;2.07794;1.969838;2.724654;3.032474;1.960013;1.808408;2.04071;1.859066;2.58044;2.244906;2.311116;2.11502;1.227452;2.301446;1.660723;1.901603;2.833231;2.018593;2.833917;2.829864;2.687761;2.308244;2.700649;2.899383;3.091551;2.39868;3.576095;2.644565;2.929914;2.479488;1.997927;2.25177;2.376606;2.667831;1.674746;2.555833;2.217368;3.020376;2.511494;2.213479;2.474381;1.681994;3.122408;1.180968;2.587339;2.107681;1.305073;2.299454;2.584748;1.750493;2.477821;1.360327;1.622587;2.338488;2.148795;2.889954;2.651753;2.423493;2.409705;2.28634;2.256074;2.207387;1.922594;3.225244;2.338861;1.942137;3.070539;3.106714;2.117388;2.740227;2.649378;2.305781;2.920047;3.032668;2.110792;2.475419;2.754234;2.598307;1.615168;2.665802;2.433261;1.940636;2.563377;3.127406;1.809775;1.317753;2.714471;1.618767;1.894687;1.784493;2.571559;1.664587;1.467857;1.507339;1.115334;2.570549;1.905896;2.541447;3.159209;1.662054;1.823104;1.820347;2.451639;1.133568;1.334865;2.447249;2.663416;2.08748;1.680517;1.567885;2.996923;2.060706;1.997407;1.599322;3.513989;1.623027;1.219045;1.925652;2.579511;2.106904;2.725657;1.896194;2.416943;1.532243;2.059095;1.750171;1.707956;3.534616;1.992246;2.065512;2.551228;2.929223;1.882463;1.82892;1.765632;1.878255;2.366932;2.351611;2.122783;1.97497;1.013857;2.512975;2.052501;2.159093;2.564383;2.2635;3.120494;2.681419;2.484513;2.635792;2.462337;2.853143;3.275809;2.81361;3.73577;2.581978;2.855649;2.691849;2.053074;2.171758;2.30502;2.772258;1.500979;2.445836;2.160807;3.100407;2.253692;2.214452;2.280729;1.767397;2.839129;1.047926;2.295387;2.354812;1.696496;2.560028;2.344241;1.971551;2.644655;1.213099;1.523952;2.60447;2.042453;2.914412;2.783631;2.749716;2.529178;2.321339;2.181388;2.262669;1.947783;2.991356;2.310761;1.902914;2.792697;2.964183;2.109586;2.751021;2.501239;2.370359;2.671878;3.051939;1.869217;2.375844;2.442537;2.713832;2.018252;2.813101;2.242349;2.041056;2.733012;2.903115;1.705437;1.519863;2.594707;1.637879;2.00641;2.066849;2.694922;1.695325;1.407661;1.553747;1.134489;2.363169;1.880538;2.497608;2.877417;2.172167;1.605181;1.625972;2.687819;1.564485;1.202401;2.214406;1.992571;2.283155;1.422158;2.084923;2.524583;1.856044;1.684153;1.919969;3.149436;1.616836;1.162894;1.966563;2.758462;
1.526013;2.940541;2.271742;2.934301;2.626936;2.057773;2.034118;2.505323;2.110894;2.211741;2.147272;2.829783;1.717627;2.207891;2.020977;1.968411;1.611771;1.301871;2.228322;3.047294;2.83715;1.154014;1.455921;2.350879;1.607975;2.280843;3.458843;2.731761;1.707679;1.590174;2.339128;2.503919;2.109225;1.448282;2.746744;2.709139;2.749649;1.831397;2.031126;1.652929;1.749983;2.450727;2.222054;2.954004;2.503897;1.723151;2.258817;2.217401;2.811101;2.785398;2.415869;3.141032;2.990638;2.304431;2.595792;2.677722;2.736667;1.515803;2.619537;1.752922;2.628763;2.532171;2.640297;1.898969;2.140991;2.78662;2.058819;1.390387;2.386245;2.362903;2.571962;3.272416;3.095127;1.795372;2.434064;1.881723;1.479916;1.466986;2.046464;2.26015;2.936727;2.379272;1.458355;1.657009;2.892369;1.534908;2.046937;1.091514;1.743404;2.478722;3.55191;2.28593;2.647627;2.715351;2.710742;1.689699;1.808011;2.133493;2.482541;1.882098;2.474273;1.641129;2.08933;1.515858;2.103278;1.300595;2.993291;2.728875;1.757727;1.568512;2.566071;2.017829;1.999892;1.563562;1.510169;2.486931;2.952938;1.961855;2.579175;1.78106;2.19625;1.832441;1.577206;2.819118;1.515913;2.557147;1.759211;1.08933;1.726035;2.953667;2.277771;2.807352;2.452644;2.474008;2.282825;2.410683;2.203911;2.06434;1.891582;2.415088;1.715855;2.415588;2.289261;1.982208;1.755189;1.325233;2.023897;3.009391;2.852734;1.202025;1.545817;2.315464;1.976467;1.976637;3.145011;2.296545;1.764129;1.538063;2.203427;2.449715;2.282099;1.451291;2.806712;2.635367;2.547298;2.199181;2.226636;1.552297;1.787568;2.295453;2.014482;2.585555;2.483793;1.888037;2.491367;2.17659;2.909338;2.860039;2.258834;3.125987;2.957015;2.387364;2.6637;2.579612;3.11846;1.29709;2.405383;1.548578;2.654046;2.530172;2.285322;1.789211;2.31451;2.863644;2.150046;1.465204;2.264637;2.685786;2.743228;3.200874;3.122051;1.696829;2.121454;1.721709;1.466079;1.658127;2.067639;2.150216;3.036742;2.516654;1.368427;1.787605;2.93586;1.53319;2.065473;1.070506;2.032213;2.236325;3.185328;2.052276;2.673066;2.714139;2.350961;1.586934;1.967805;2.201565;2.582499;1.96957;2.350474;1.912658;2.244032;1.467942;2.125549;1.217384;2.645334;2.536085;1.998785;1.965285;2.638775;1.550209;2.304559;1.366335;1.151942;1.928131;2.86842;2.070553;2.487248;1.466397;2.439554;1.542895;1.588675;2.801773;1.429477;2.799172;2.048414;1.549142;
1.6262;2.520411;2.594612;1.79828;1.858242;1.67223;1.609714;1.763244;2.304677;2.258677;2.573424;2.012036;0.8817971;2.094025;1.332034;2.362574;2.911145;2.4741;2.850379;2.684027;2.182256;2.830605;2.661698;2.4523;3.19856;2.813019;3.115369;2.417877;3.160583;2.976345;2.695197;2.663087;1.818322;2.403605;1.61203;2.50947;1.790337;1.911002;2.496406;3.080251;2.425159;1.37203;2.179141;1.682885;2.581712;2.177953;1.197321;2.244773;2.122801;2.412593;2.725183;1.339694;1.894609;2.484947;2.460864;2.510133;2.289408;2.879714;2.451798;1.955239;2.083392;2.814422;2.065626;2.303446;2.2492;2.407146;2.989246;2.120517;2.230263;2.645859;2.461164;2.312952;2.688704;3.122705;2.337539;2.295161;2.529796;2.262314;1.332922;2.992954;2.524162;2.04038;2.316769;2.988915;1.525697;1.694143;3.08211;1.260953;2.072658;1.980797;1.971438;1.406641;1.653402;1.709069;1.604032;2.815168;1.665558;2.015466;3.051934;1.643528;1.485674;0.9625751;2.668291;1.87439;1.315786;2.156641;1.794164;2.507434;1.960795;1.367271;2.152984;1.582697;1.869045;1.869379;3.363934;1.694505;1.480139;1.650599;2.731799;1.364923;2.035271;1.846866;2.21875;1.143243;1.776479;2.374888;1.599401;2.932712;1.847893;2.614887;2.448709;1.970214;1.853856;1.847278;1.965712;1.913219;2.573799;2.404686;2.503535;1.885682;1.126286;2.157275;1.309703;2.01909;3.323483;2.107832;2.934274;2.64964;2.138278;2.651256;2.477353;2.101028;3.054358;2.705797;3.075326;2.229104;3.205981;2.990511;2.538902;2.760762;2.04325;2.519367;1.490232;2.655394;1.773276;2.114775;2.961101;3.24982;2.678995;1.506473;2.09594;1.527216;2.958121;2.260067;1.183425;1.911227;2.496976;2.048442;2.809658;1.296008;1.864307;2.306648;2.315104;2.155249;2.186219;2.767578;2.418239;1.95797;2.030208;2.814388;1.947369;2.491598;2.420191;2.671583;2.822608;2.126742;2.169216;2.943926;2.745401;2.534285;2.877817;3.214622;2.324923;2.325086;2.783878;2.343963;1.333171;2.706852;2.845746;1.829602;2.395103;2.77795;1.464239;1.590979;2.74259;1.061155;1.911892;1.805945;2.010517;1.409062;1.606781;1.709027;1.500833;3.0229;1.814021;2.25815;2.884474;1.649122;1.436608;1.145501;2.965057;2.074238;1.449837;2.233271;1.783854;2.539571;1.771098;1.938871;2.53914;1.632351;1.892517;1.498318;2.781173;1.888537;1.258548;1.851044;3.253068;1.767848;2.273352;1.547417;2.071622;1.200364;2.018602;2.468868;1.570746;2.923272;
1.976056;2.590109;2.780061;1.990397;2.792039;3.25422;2.145134;2.391758;3.421883;2.18764;1.62441;2.649999;2.836389;2.112077;2.936933;2.063733;1.761692;1.471825;2.849863;1.372996;1.32764;1.660602;2.100454;1.278767;1.244045;1.116357;1.384205;2.791826;1.462792;2.137121;2.040766;2.107853;1.314415;2.050549;2.219403;1.580857;1.261745;2.294554;1.975488;2.017383;2.055074;1.613916;2.146756;1.549156;1.898461;1.817605;2.908378;1.784849;1.850566;1.845487;2.892688;1.756579;2.772641;1.651695;2.358059;1.492568;2.426066;2.010734;1.682849;2.511197;1.888332;1.916234;2.600776;2.946659;1.634635;1.633245;1.926412;1.579216;2.596971;2.491508;2.426882;2.038232;1.72322;1.992601;1.548691;1.887795;3.281624;2.215821;3.323182;2.082867;2.381953;2.477217;2.691634;2.649997;2.694004;2.517441;3.372847;2.246185;2.778821;2.301678;2.612061;2.590871;1.743617;2.469859;1.022271;3.210751;1.524349;3.105687;2.395941;2.872447;2.620578;1.786148;2.636919;1.172294;2.927866;2.696281;1.197477;2.023406;2.108399;2.144571;2.268636;1.410983;2.344405;2.402995;2.211711;2.617315;3.034267;2.507056;2.801779;2.652545;3.015699;2.831859;2.120229;2.060794;2.729702;1.847677;2.787261;2.709951;2.215463;2.184965;2.817623;1.915498;2.834439;3.296627;1.961123;2.132492;3.189992;2.030888;1.730664;2.602993;2.639379;2.040582;2.810037;2.220188;1.840919;1.568999;2.660055;1.465067;1.410057;2.07952;2.497956;1.438346;1.405765;1.202219;1.44524;2.753044;1.557057;2.142272;2.010149;1.817822;1.478936;1.732916;2.24086;1.464629;1.263351;2.268617;1.7327;1.765167;1.847486;1.524121;2.264174;1.469859;1.711658;1.702273;2.704782;1.947065;1.912691;2.002939;2.707426;1.838915;2.868664;2.013792;2.712058;1.680103;2.627103;2.176069;1.754784;2.547282;2.099214;1.958314;2.635581;2.601493;1.912099;1.446657;1.977779;1.436696;2.446278;2.357265;2.12544;1.785981;1.532106;1.789924;1.580049;1.883965;3.185565;2.184384;3.181856;2.257473;2.561682;2.792432;2.549227;2.715215;2.630443;2.843404;3.752076;2.477163;2.991674;2.36115;2.61354;2.628294;1.946413;2.518346;1.044149;2.850675;1.792756;2.84691;2.453259;2.679841;2.469121;1.673377;2.3223;0.983412;2.677162;2.460247;1.225119;2.020425;2.181011;2.532102;2.710811;1.47197;2.266645;2.602968;2.736158;2.678091;2.488125;2.580232;2.669779;2.082946;3.008959;2.835131;2.180545;2.346577;2.894446;2.147862;2.500817;2.696555;
2.818219;2.797239;2.230597;2.320908;3.019624;1.589172;1.521479;1.299569;1.385375;2.386579;2.141729;1.811659;2.885504;1.717241;1.499553;1.92395;1.4374;3.154942;1.668469;2.754501;1.90135;1.562747;1.878526;2.647253;2.497516;2.461752;2.513905;1.922713;1.213779;2.020269;1.164497;2.131655;1.966773;2.512831;1.850181;2.193457;1.791294;2.430259;1.833119;1.07024;1.999121;2.470782;2.345043;1.052456;1.772025;2.60107;1.412037;2.47965;3.519289;2.70568;2.154872;1.567861;2.339416;2.472114;2.197665;1.624603;2.334668;2.476511;3.081527;2.615208;1.737919;1.916239;1.450101;2.884878;1.820405;2.914803;3.060025;2.482042;3.079726;1.944248;2.268948;2.654466;2.16624;2.811311;2.135922;2.32645;2.758696;2.59144;2.578333;1.463505;2.22837;1.951169;2.784436;2.623973;2.41777;2.526781;2.51363;2.491134;2.594232;1.307702;2.371714;2.439567;1.579041;2.658904;1.904249;1.700758;2.166559;1.881424;1.327973;1.509858;1.555681;2.391477;2.859862;2.153831;1.430659;1.301664;2.297102;1.583844;2.265192;1.078515;1.464988;2.360423;3.066662;2.27357;2.818249;2.698043;2.185226;1.587538;1.427875;2.727383;2.290764;1.759524;2.698575;1.783147;1.708599;1.849479;1.96822;1.628211;2.559974;2.79921;1.893942;2.307418;2.846913;1.709362;1.255735;1.627641;1.826955;2.153832;2.200865;2.011602;2.556525;1.767128;1.743797;2.030018;1.411977;2.822093;1.409623;2.801814;1.95471;1.591984;1.542647;2.887254;2.744545;2.530218;2.461942;1.804892;1.251253;2.11635;1.520633;2.130058;1.8031;2.598452;1.577259;2.19054;1.687235;2.587039;1.46857;1.38079;2.573563;2.315832;2.436922;1.21587;1.533161;2.67173;1.564147;2.605133;3.503668;2.478109;1.883546;1.606616;2.390601;2.513111;1.741784;1.818134;2.594512;2.628038;3.055349;2.293444;1.828039;2.001533;1.720855;3.00269;1.827778;2.89362;2.818339;2.455146;3.006112;2.084991;2.051082;2.993311;2.588254;2.58696;2.2183;2.375249;2.51934;2.647681;2.629909;1.648611;2.405403;1.672848;2.582588;2.649779;2.528411;2.568436;2.223141;2.60005;2.690953;1.375408;2.344075;2.129146;1.665839;2.759101;2.21385;1.791558;2.175439;1.864435;1.171031;1.488888;1.50429;2.547197;2.615702;2.460145;1.777889;1.150512;2.383327;1.624236;2.460162;1.400473;2.034039;2.534572;3.296097;1.745808;2.426861;3.037575;2.608771;1.404087;1.413437;2.995153;2.664923;1.649507;2.408268;1.541987;1.926843;1.462307;1.658461;1.810747;
2.62218;1.959286;2.68945;2.58997;2.457716;2.570608;2.435621;2.8534;2.998773;2.425225;2.348137;2.091898;2.522872;2.900875;2.67442;2.22768;1.573314;2.629605;2.162945;2.228281;2.858197;2.328795;2.168333;2.696585;2.478833;2.387196;1.724026;2.041227;2.475096;2.32923;3.019416;2.93561;1.577314;1.709014;1.493554;1.047376;1.376262;1.879242;2.38794;2.14271;2.009619;1.333153;1.528347;2.455916;1.58089;2.512276;1.360798;1.751537;2.375378;2.967284;2.005989;1.756092;3.138608;2.797017;1.795077;2.062155;2.131837;2.215433;1.81369;2.390182;1.542892;1.542038;1.61758;1.838786;1.558949;2.723973;2.776471;1.805436;2.384555;2.7781;2.134314;2.189887;1.603258;1.728923;2.009218;2.143557;2.113394;2.761532;1.898111;1.39191;1.937787;1.721458;3.369217;1.209291;2.899706;1.789361;1.455788;2.044165;2.848282;2.450978;3.103003;2.377807;2.024861;1.886114;2.160783;1.967103;2.017326;1.414658;2.389709;1.407211;2.298306;2.154011;2.444037;1.314087;1.10606;2.202574;2.624027;2.730174;1.284541;1.612867;2.880584;1.649411;2.278207;2.928875;2.299901;1.184962;1.772396;2.66714;2.536057;2.204749;1.379564;2.541099;2.670742;2.357352;1.984793;1.381591;1.760734;1.55456;2.975725;2.117477;2.528214;2.577011;2.230664;2.810428;2.309559;2.66371;2.879858;2.607169;2.313923;2.147046;2.31177;2.494601;2.675494;1.897363;1.672927;2.41144;2.17442;2.489093;2.675438;2.655597;2.106197;2.53451;2.482944;2.659259;1.806456;2.054325;2.522452;2.04191;3.053209;2.684289;1.921597;1.847823;1.374412;1.056967;1.225916;2.053398;2.276373;2.058446;1.988309;1.466626;1.507743;2.550932;1.438889;2.108104;1.376083;1.506211;2.556392;2.772555;2.025343;1.989698;2.951621;3.163662;1.755236;1.973608;2.190066;2.512833;1.906415;2.227973;1.658639;1.439619;1.726248;1.689392;1.865056;2.921193;2.646067;1.822193;2.169098;2.976803;1.923881;2.025267;1.514343;1.830534;2.027945;2.061476;2.031304;2.500405;2.006499;1.215382;2.063549;1.590833;3.4322;1.408456;2.702694;2.075181;1.332225;1.880044;2.82037;2.703508;3.277773;2.216733;2.15727;1.773171;2.286065;1.812989;2.36353;1.558372;2.268778;1.422576;2.086987;2.329977;2.218431;1.187705;1.032341;2.317836;2.645352;2.638558;1.231358;1.601931;3.436849;1.661716;2.33972;2.811798;2.635819;1.836026;1.455696;2.431955;2.289572;2.45196;1.416863;2.483841;3.133161;2.767498;2.36339;1.901388;1.649292;1.290153;
2.488597;1.751029;1.255221;2.564606;1.638363;2.883452;1.326329;2.161139;2.593878;3.11548;2.081477;2.201699;2.459494;2.404603;1.845087;1.679313;2.152016;1.974105;1.753578;2.51189;1.797276;1.771339;2.154374;1.787449;1.110038;2.719357;2.965131;1.882221;2.204494;2.978629;1.951011;2.097733;1.282444;1.012079;2.681218;2.404646;2.393392;2.910977;1.856014;1.627766;2.100121;1.146395;3.410858;1.306054;2.184038;2.268506;1.582416;1.799486;2.479032;2.687932;2.927335;2.575801;2.731681;1.538646;2.048334;1.848154;2.663033;1.993335;2.177475;2.146899;3.255383;2.087042;2.186793;1.174484;1.441896;2.381312;2.297631;2.783339;1.270677;2.020095;2.918065;2.333624;2.454006;2.977661;2.390157;1.423446;1.535003;2.126028;2.846302;2.032948;1.473463;2.143728;2.54104;2.821283;2.258432;1.558115;2.114317;1.505461;2.261428;1.961718;2.869971;2.69439;2.45195;2.95253;2.288004;2.564404;2.671268;1.623972;3.093698;2.525668;2.949213;2.781949;2.57104;2.576449;1.797632;1.925004;2.301948;2.435299;2.422312;2.855026;2.551196;2.444835;2.468969;2.676496;1.517906;2.534902;3.152441;1.833642;3.022106;2.813865;2.4862;2.097561;1.506331;1.661426;2.488561;1.805371;2.117589;2.441787;2.486113;1.740271;1.039468;2.574413;1.672423;2.511759;1.446603;2.295202;2.746106;3.12878;2.166505;2.622755;2.717963;2.203731;1.841779;1.914798;2.133003;1.835517;1.665963;2.494907;1.651404;1.388283;2.284208;1.910871;1.222091;2.447822;2.883862;1.871313;2.498107;2.870908;1.912094;2.085536;1.259052;1.034461;2.384315;2.36475;2.397202;2.515568;1.990626;1.635338;2.198503;1.189275;3.534973;1.596632;2.377252;2.05389;1.562042;1.94677;2.458325;2.547248;2.851474;2.535494;2.540545;1.148333;2.17589;1.879074;2.835031;1.779854;2.140786;2.104969;3.400553;2.09362;2.133882;1.290734;1.348455;2.366836;2.080358;2.653985;1.264756;1.830567;3.096159;2.331184;2.513937;3.112957;2.474167;1.717566;1.563265;2.059225;2.805763;2.359709;1.387961;1.974218;2.533775;2.692513;2.074216;1.279677;2.253209;1.524149;2.376128;1.80049;2.80759;2.647431;2.579153;2.960334;2.234784;2.735007;2.544619;1.61209;2.841854;2.402557;2.941261;2.558708;2.739377;2.574019;1.849914;2.034159;2.385452;2.816134;2.84349;2.409365;2.141814;2.438981;2.231053;2.035197;1.240018;1.925982;2.491648;1.511662;2.765267;2.351119;2.239171;1.762761;1.758168;1.882967;1.957435;1.722964;2.639657;3.109269;
2.461323;2.527152;1.543235;1.328989;1.855812;2.690299;1.751355;1.539125;2.602185;2.301429;2.548881;1.838781;1.658975;2.59127;1.681848;1.671152;1.584111;2.835454;1.939584;1.334263;1.733585;2.525269;1.996483;2.312037;2.319784;2.585095;1.275687;2.666859;2.349565;1.955873;2.952519;2.248182;2.328867;2.168168;2.359989;1.855011;1.873884;1.994734;1.682818;2.074354;2.432805;2.949915;1.36211;1.175434;1.428858;1.684508;1.317513;2.933233;2.099286;2.710989;2.374696;2.349034;2.524616;2.238442;2.308506;3.195408;3.028708;2.732394;2.396683;3.627299;2.500667;2.728055;2.461639;2.682039;3.021598;1.364898;2.444477;1.559754;3.106265;2.853329;2.874836;2.704127;2.076632;2.724767;1.507213;2.839401;2.719886;1.665206;2.253379;1.916016;2.204773;2.127869;1.606149;1.648618;2.196293;2.183653;2.617636;2.3802;3.315585;2.590392;2.238663;3.15742;2.955744;2.238673;2.412778;2.567821;2.451559;2.399726;2.297264;1.988247;2.604002;2.757932;2.108435;2.157084;3.3408;2.528158;1.718239;2.913706;1.689894;1.723153;1.79868;2.521835;2.019448;2.224199;2.213727;1.462091;1.401417;2.361969;1.190037;2.055562;2.253483;2.028899;1.183049;1.786625;1.461469;1.604404;2.734077;2.065036;2.510078;2.330776;1.566994;1.439042;1.780437;2.656531;1.483889;1.48073;2.641388;2.284417;2.72214;1.753948;1.841596;2.481748;1.703224;1.751683;1.631924;2.899921;2.129446;1.276918;1.671697;2.66577;1.970919;2.495394;2.228763;2.841216;1.147646;2.784926;2.444487;2.023652;3.168855;2.133809;2.410994;1.997792;2.297715;1.934901;1.783421;1.926001;1.460303;2.00452;2.514202;2.952583;1.423288;1.075669;1.58897;1.564717;1.378516;3.077588;2.205346;2.792517;2.507507;2.256473;2.449152;2.329656;2.346245;3.450475;2.984021;3.014724;2.148444;3.551513;2.497233;2.762065;2.53884;2.539526;2.933611;1.209889;2.454649;1.763279;3.120188;2.749968;2.624683;2.687941;2.06886;2.800548;1.596038;2.520983;2.832489;1.545389;2.220284;2.017503;2.157538;2.173265;1.778727;1.699286;2.23687;2.255438;2.701452;2.665207;3.166089;2.941327;2.026707;3.087466;2.952126;2.270265;2.489091;2.429238;2.372241;2.193376;2.307238;2.217846;2.616859;2.657167;1.894916;2.1434;3.330786;2.601943;1.813092;2.59164;2.575065;1.57366;1.811435;2.181243;2.330424;2.71092;2.390309;1.829367;1.401997;2.296218;1.346878;1.903242;1.927627;2.469376;1.272815;1.788205;1.434897;1.291403;2.600754;2.189124;
1.585617;2.495943;2.194012;2.9796;2.189659;2.627057;1.844768;2.372325;1.546563;1.395038;2.882068;2.919367;2.96533;1.854749;1.732559;2.977127;1.702092;2.390893;3.050498;2.645169;1.617993;2.184159;2.263146;2.789171;2.355139;1.440714;3.053407;2.366868;2.379019;1.82915;1.230101;1.539601;1.723434;2.309117;2.260275;2.426393;2.8038;1.767727;2.833196;1.933591;3.057851;2.42212;2.860156;3.021662;3.042289;2.505713;2.285788;2.291167;2.335745;1.157137;1.960964;2.004035;2.420118;2.02493;2.181983;2.539792;2.778704;2.50546;2.746909;1.695405;2.244229;2.975067;2.091088;3.242321;2.332535;1.901347;2.273023;1.936814;1.622449;1.647748;1.428493;2.25397;2.746343;2.498367;1.902975;1.656274;2.795986;2.324431;2.2812;1.417741;1.933666;2.378675;2.90259;2.260032;2.365102;3.413666;2.111385;1.845784;1.928035;2.146687;2.618592;1.665193;2.298369;1.426276;1.280011;1.643787;2.158638;1.203854;2.725238;2.227288;1.751082;1.682712;2.823837;1.538394;2.212172;1.157766;1.988322;2.459036;2.81501;2.207589;2.278756;1.659257;1.706647;1.54776;1.137776;3.012741;1.475199;2.211233;1.610683;1.966559;2.177081;3.009398;2.650806;2.873101;2.631404;2.964689;1.920912;2.246855;1.645931;2.339569;1.895847;2.535111;1.901801;2.815378;1.641461;2.140853;1.641685;1.219208;2.767358;3.077309;2.7758;1.606296;1.611491;3.221226;2.001815;2.645538;3.158643;2.715876;1.839477;2.074667;2.183905;3.000205;2.406938;1.558819;2.847782;2.224216;2.434077;2.065748;1.430767;1.538553;1.802278;2.175457;1.961712;1.980339;2.475168;1.947341;2.642781;1.776029;3.200207;2.207885;2.73963;3.127108;2.833961;2.242004;2.191605;2.557102;2.66263;1.348003;2.040469;2.01208;2.643559;1.940315;2.146613;2.794913;2.812562;2.677144;2.543972;1.593708;2.267631;3.213622;2.281048;3.165359;2.245004;1.833169;2.075005;1.633715;1.416845;1.81243;1.326893;2.027952;2.806229;2.255113;1.88487;1.804121;2.609607;2.000904;2.119928;1.575298;2.060488;2.714404;3.124404;2.381576;2.64404;3.291493;2.118614;2.008751;1.895361;2.28008;2.514076;1.564413;2.323053;1.592785;1.430171;1.589063;2.075357;1.149732;2.509048;1.901313;1.538027;1.849004;2.681104;1.352654;2.266885;0.9941613;1.970755;2.638614;2.305414;1.978044;2.487937;2.239;2.010417;2.260179;1.759858;2.884098;1.85864;2.25474;1.977358;1.412826;1.656069;2.38352;2.217139;2.667916;2.384912;3.017048;1.5735;2.01516;
2.43366;2.019203;3.038135;2.874892;2.741915;2.442937;2.787094;2.624222;2.589796;1.451229;1.959859;2.916645;2.351801;2.552097;2.481436;2.15162;2.018387;1.787135;1.649106;1.520613;2.107454;2.314608;2.337428;2.045674;1.847689;1.590201;2.428397;1.470069;3.082023;1.250184;2.00422;2.474829;2.793173;2.286488;2.946033;2.914588;2.338439;1.414205;1.806682;2.230793;2.689406;1.884591;2.122267;1.688695;1.721159;1.448435;1.881968;1.024579;2.814484;2.511966;1.600564;1.806353;3.246433;1.26474;1.748726;1.287304;1.633117;2.4421;2.268172;1.330736;2.474417;1.838048;1.917824;2.019407;1.612443;3.200633;1.798412;2.81061;1.946318;1.62384;1.972579;2.805343;2.753836;2.653339;2.189432;2.660822;1.974621;1.703904;1.711621;2.633222;1.635721;2.611236;1.84887;2.267283;2.598779;2.246847;1.404165;1.114941;2.719059;2.938196;2.247641;1.109555;2.13288;2.691188;2.03529;2.27983;2.725155;2.564522;2.210095;1.541987;2.189144;2.308142;2.131057;1.571246;2.832597;2.880713;2.377071;2.06549;1.784782;1.493052;1.675057;2.185162;2.193694;2.677592;2.455808;1.931167;3.338412;1.704627;2.997425;2.375241;2.75185;3.001661;2.441593;1.853675;2.425596;2.861653;2.776104;1.648172;2.510393;2.330661;2.726161;2.667647;2.746642;2.370563;2.614068;2.49211;2.731944;1.371929;2.101254;2.92669;2.067631;2.448858;2.303483;2.109903;2.110087;1.789994;1.621639;1.467314;2.274888;2.620932;2.879268;2.106277;2.068238;1.63361;2.370449;1.571096;2.865483;1.203632;1.987103;2.449113;2.807497;2.608883;2.691068;2.755225;2.320303;1.339281;1.622446;2.081404;2.775681;1.79384;2.32593;1.741828;1.465455;1.35469;1.685791;0.9587074;2.83368;2.553424;1.620824;1.765898;3.400725;1.506107;2.174302;1.292666;1.77063;2.533708;2.268489;1.412091;2.300017;1.893494;1.902259;1.961522;1.655709;3.573948;1.595481;2.778443;1.933371;1.499336;1.734897;2.655258;2.867949;2.440875;2.375394;2.685086;1.754428;1.69512;1.525938;2.488127;1.683179;2.648496;1.865492;2.3362;2.741903;2.508811;1.742882;1.132123;2.922912;2.924943;2.227675;1.184401;1.971246;2.759057;2.019318;2.219097;2.781392;2.900467;1.984369;1.518699;2.175471;2.159992;1.883772;1.460091;2.948392;2.659818;2.570559;2.087446;1.884036;1.633506;1.329104;2.963328;2.302798;2.761647;2.218123;2.554807;2.684713;1.935145;2.485911;2.862194;2.834636;2.384612;2.943103;1.98528;2.425034;2.366086;2.540841;1.463633;
1.885405;2.055775;2.043488;2.735544;2.37672;2.677477;2.615688;2.855601;2.561967;2.127023;3.03963;2.731874;2.176455;2.304495;2.762831;2.578794;2.555705;2.884698;1.539616;2.441776;2.762383;2.130198;2.697839;2.727186;2.721643;2.45496;3.420354;1.859897;1.766789;2.151849;2.802097;1.647096;2.365798;2.271584;2.047667;1.526387;3.030035;1.245996;2.005638;1.674672;1.864962;1.19578;1.251306;1.578781;1.461623;2.104954;1.610303;2.397917;2.416348;1.796614;1.268738;1.791389;2.768403;1.025853;1.593698;2.72086;2.249585;2.486494;2.15517;1.986541;2.859562;1.658026;1.282219;1.968054;2.60367;2.28994;1.579696;2.030871;2.871895;2.021033;2.300629;1.88943;2.519313;1.211686;2.834673;2.502874;2.047136;2.928412;2.350449;2.609349;2.351385;2.746843;1.2993;1.550595;2.053957;1.757373;2.383338;1.891444;3.090961;2.008917;1.684915;1.867509;1.798485;1.71892;3.153266;1.851075;2.927223;2.242872;2.897331;2.431873;2.969652;2.521341;3.239207;2.202077;2.845496;2.174653;2.850753;2.87459;2.671856;1.924939;1.952485;2.802895;1.291007;2.61227;1.568152;2.981633;2.921428;2.089373;2.901456;1.937371;2.822724;1.325876;2.68026;2.749269;1.879882;2.399672;1.510623;2.427853;2.022412;2.016133;1.950724;2.774368;2.509749;2.734819;2.481411;2.759033;2.964396;1.954245;2.792379;2.759693;2.326165;2.276987;2.318208;2.382061;2.73328;2.898302;1.609868;2.479586;2.707778;2.540114;2.723646;2.497678;2.760502;2.337637;3.077988;1.856607;1.871291;2.382268;2.708024;1.548752;2.508911;2.252102;1.946239;1.512948;3.162695;1.298531;1.909073;1.58159;2.190767;1.084483;1.080879;1.558962;1.561807;2.095509;1.282753;2.209302;2.609472;1.804874;1.334014;1.801153;2.72637;1.308019;1.640073;2.492335;2.304214;2.365428;1.886901;1.774386;2.901082;1.86051;1.281719;1.868105;2.72537;2.389339;1.49643;2.141032;2.942368;1.999723;2.318137;1.889313;2.864401;1.09324;2.505415;2.269413;2.076959;2.928594;2.030291;2.420947;2.514814;2.888387;1.371009;1.670897;1.969986;2.03265;2.568436;1.798191;3.123218;1.891963;1.397317;1.662104;1.832213;1.924966;3.153646;1.75427;3.057328;2.341388;2.785091;2.552423;3.042299;2.497514;3.26116;2.202051;3.212725;2.015064;2.521413;2.624861;2.522254;2.297099;2.089135;2.710455;1.708466;2.697751;1.654168;2.607744;2.257672;3.021074;2.838856;1.926735;2.47029;1.647186;2.357535;2.759473;1.790133;2.27715;1.821569;2.021719;
3.172295;1.736016;2.243355;2.203732;2.354324;2.423059;2.169777;2.418269;2.978214;2.731669;2.337238;2.959026;2.936676;2.08649;2.556431;3.426481;2.049905;2.42674;2.310879;2.419682;1.827847;2.094259;2.906949;1.616085;1.068178;2.176956;0.9876141;1.535443;1.953138;2.050791;1.40035;1.248543;1.395683;1.400773;2.794257;1.516688;2.155796;2.389472;1.574045;1.563264;1.353963;2.359499;1.16426;1.519451;2.58752;1.955439;2.902365;1.591002;1.506525;2.724624;1.664992;1.472555;1.532913;2.713682;2.14224;1.697754;1.977852;3.178786;1.611512;2.61101;2.018792;2.785077;1.609909;2.655744;2.592811;1.457549;2.542064;1.67979;2.420442;2.45791;2.124493;1.970508;1.957874;1.921977;1.784375;2.413362;2.242467;2.488172;2.173861;1.61048;1.894733;2.343598;1.519389;2.766071;1.903795;2.675477;3.075139;2.209425;2.113103;2.244951;2.118285;2.463548;2.870578;3.216491;2.113787;2.701219;2.358288;2.525907;2.500191;1.704453;2.462352;1.360009;2.517503;1.82628;2.38504;2.529097;2.161467;2.5534;2.00397;2.519675;1.653865;2.224496;2.41561;1.565556;1.943331;1.696287;1.882591;2.132628;1.438084;1.903887;3.036928;2.849681;2.97662;2.799936;2.90394;2.966563;2.624907;2.967849;3.371437;1.769344;2.197151;2.566832;2.171551;2.467155;2.098813;2.143124;3.03516;2.842236;2.569735;2.641735;3.222959;2.390601;2.415114;3.535227;2.187292;2.121607;2.519805;2.546616;2.053375;2.47925;2.579734;1.363926;1.283876;2.45844;1.311228;1.339975;2.016914;2.188702;1.370767;1.151365;1.496606;1.468405;2.729571;1.765962;1.947715;2.369992;1.452713;1.330842;1.367916;2.519408;1.32665;1.254526;2.822639;2.194272;2.675132;1.680875;1.606763;2.454398;1.848195;1.552135;1.722609;3.080408;1.808466;1.453402;2.246992;3.582031;2.023721;2.540029;1.951947;2.687983;1.608124;2.514448;2.683388;1.507907;2.5902;2.033457;2.210239;2.385558;1.938596;1.782656;1.937879;1.920219;1.875776;2.274723;2.338489;2.570321;2.011235;1.701767;1.967392;2.072081;1.786058;2.986769;2.125252;2.981705;2.620747;2.008757;2.350583;2.422352;2.463543;2.395352;2.790687;3.11291;2.111761;2.559363;2.444816;2.592698;2.548001;2.061267;2.250229;1.306864;2.314785;1.646138;2.363074;2.527705;2.262015;2.411813;1.387681;2.456826;1.190753;2.86378;3.026418;1.46311;2.604001;1.993627;2.817786;2.187899;1.334186;1.816343;2.874417;2.435372;2.778271;2.740226;2.899401;2.503625;2.347484;2.537055;
2.163342;2.7397;1.596541;2.057147;2.53268;1.771358;1.700488;1.847192;2.957708;2.281117;1.246208;2.101776;3.584464;1.587852;2.932968;1.543273;2.606956;1.034522;2.0927;1.954448;1.972239;2.69762;2.097003;2.142518;2.286039;2.553614;2.019625;1.555415;2.342172;1.397964;3.079373;2.668353;2.533538;1.94148;1.210103;2.070503;1.596265;1.510416;2.512074;1.939438;3.19676;2.010242;2.166919;2.940769;3.108507;2.783958;3.194268;2.94492;3.676757;2.403516;3.284882;2.551322;2.048434;2.134137;2.639633;3.250156;1.656722;3.088529;1.462587;2.373528;2.731729;2.36359;3.057682;2.275674;2.919973;1.720738;2.147154;2.961424;1.400088;2.357035;2.017879;2.283353;2.212925;1.675746;1.526955;2.623448;2.637807;2.141711;2.952148;2.403488;2.864358;1.640133;2.181263;2.429973;2.379098;2.118665;2.62713;2.002654;2.350976;2.36977;2.227425;2.291584;2.951626;1.91058;3.190135;3.66209;2.460631;2.283025;2.644739;2.021757;1.688817;2.169735;2.078524;1.768494;2.682695;2.072122;1.421417;1.609941;3.007193;1.438442;1.828236;2.055437;2.901331;1.586454;1.521323;1.39914;1.21084;2.435124;1.951218;2.436031;2.684455;1.785026;1.30944;1.326185;2.57487;1.235965;1.706272;3.244456;2.441479;2.759277;1.560337;1.765996;2.744055;1.820379;2.176896;2.110952;2.789111;2.192528;1.429122;2.175589;3.471864;1.553916;2.859633;1.823041;2.492792;1.239091;1.824838;1.816752;1.900142;2.672257;1.907821;1.883196;2.104283;2.30164;2.083008;1.519384;2.255079;1.384391;3.009393;2.876812;2.898657;2.031948;1.206996;1.787669;1.794594;1.56246;2.983105;2.223426;3.076299;2.002914;2.436088;3.043347;3.026971;2.748244;3.000485;3.332582;3.565077;2.795557;2.977596;2.397417;1.968116;2.115515;2.321696;2.934193;1.518524;2.897315;1.538807;2.430258;2.749926;2.366338;3.060611;2.34377;3.070103;1.767251;2.236836;2.692328;1.568193;2.363762;2.409468;2.566675;2.157582;1.663831;1.701757;2.825597;2.681673;2.125699;2.835682;2.623284;2.546251;1.926737;2.021635;2.346686;2.27137;2.045896;2.279175;1.736709;2.232127;2.196677;2.261708;2.347321;2.971665;1.912961;3.194355;3.74844;2.599518;2.336579;2.745055;1.800518;1.873869;2.176094;2.476777;2.018903;2.622643;2.058892;1.590909;1.769197;2.442152;1.587704;1.524813;2.080824;2.613639;1.735614;1.179269;1.15687;1.386233;3.039194;2.19011;2.019004;2.305315;1.716959;1.826467;1.533972;2.71858;1.56721;1.883396;2.772041;
1.970767;2.159502;2.723209;1.81238;2.32562;1.846585;3.190645;1.991441;1.964187;1.203636;1.458516;2.57562;2.044972;2.031148;1.129778;1.823965;2.991311;2.146685;2.370249;3.035545;2.197246;1.568561;1.713552;1.911865;2.916008;2.41412;1.654378;2.320675;2.730224;2.42427;2.149478;1.498055;1.79381;1.845366;2.200827;1.930924;2.878954;2.5499;2.3675;2.60034;2.134574;2.659628;2.627558;1.556809;2.782958;2.046135;2.721228;2.383319;2.573349;2.251596;1.770356;1.878869;2.037975;2.35899;2.41798;2.334168;2.453966;2.684258;2.41071;2.832433;1.786826;2.218828;2.953521;1.715944;2.646239;3.017912;2.153729;2.177513;1.404784;1.716358;2.363406;1.724433;2.071007;2.318655;2.761438;1.737045;1.16085;2.31383;1.495161;2.429214;1.254552;2.245599;2.41467;3.178441;1.856069;2.546682;3.048077;1.962331;2.123112;1.957299;2.432402;2.160547;2.04687;2.56059;1.712956;1.607305;1.748682;2.053749;1.103004;2.643852;2.715959;1.810778;2.242572;2.789175;1.833301;2.017475;1.362118;0.9904379;2.525387;2.10226;2.321934;2.373507;1.664653;1.491299;2.084751;1.242265;3.29129;1.581859;2.176533;1.883236;1.466814;1.755688;2.677117;2.587316;3.015949;2.523832;2.819742;1.51781;2.253308;2.005892;2.649281;1.782143;2.060612;1.95037;3.012133;2.077855;1.941591;1.21109;1.536694;2.685098;2.277446;2.412397;1.141478;1.778753;2.780227;2.32217;2.218553;3.063911;2.258685;1.730059;1.530058;2.050272;2.625776;2.112629;1.61274;2.075007;2.813613;2.47555;2.380991;1.513013;2.135061;1.694831;2.134842;1.923397;2.610191;2.635367;2.227186;2.791921;2.19065;2.667911;2.741553;1.670825;3.087999;2.399304;2.759623;2.389924;2.435553;2.466001;1.647042;1.902045;2.101498;2.564347;2.217765;2.546995;2.243439;2.400302;2.369547;2.633303;1.676716;2.110491;3.235412;1.752485;3.103003;2.817241;2.239017;2.133242;1.258523;1.683217;2.230856;1.791683;2.11215;2.319234;2.887864;1.918462;1.206172;2.508734;1.531647;2.460329;1.186922;2.453582;2.427468;3.16502;1.966723;2.631577;2.831259;2.062637;1.914146;1.710492;2.399733;1.987762;1.929005;2.444712;1.929128;1.643165;2.123271;1.8895;1.164228;2.595814;2.511144;1.777247;2.113467;2.875174;1.871914;2.018725;1.45128;1.129264;1.924217;2.479814;1.807073;2.15743;1.393721;2.324292;1.77848;1.27748;3.520999;2.032732;2.286434;1.958114;1.494013;1.841333;2.683422;2.099617;3.021952;2.65767;2.973235;1.708588;
1.869633;2.436537;1.97857;2.525318;2.071935;1.264315;2.020193;2.166945;1.967842;2.384758;2.765498;2.629575;2.905125;2.313892;2.355936;2.887968;2.487101;2.819326;2.140704;2.396247;2.782585;2.332591;1.640921;2.864759;2.241269;2.64971;2.456774;2.878005;2.493735;2.404922;2.906161;1.800811;1.791515;1.824689;2.006496;2.124178;2.540077;2.161368;1.756669;1.21733;2.453655;1.330772;1.390226;2.239983;2.363387;1.234967;1.295607;1.662618;1.517624;2.774158;1.783209;2.469618;3.060391;1.499027;1.012359;1.368168;2.667092;1.770105;1.737256;2.60375;2.542166;2.588774;2.01138;1.871225;2.87555;1.77874;1.821337;2.088505;2.913855;1.620933;1.599406;1.849496;2.463776;1.574018;2.568569;1.857335;2.857568;1.345506;1.956583;2.429502;2.029601;3.352546;1.745502;2.40913;2.673093;2.469217;1.365508;2.101184;1.428457;2.078479;2.101392;1.846937;2.876224;1.970948;1.283293;1.507095;1.476004;1.38015;2.542524;2.309238;3.190131;2.176265;2.477361;2.45433;2.13616;2.549859;2.444889;3.014438;3.456665;1.904699;2.707499;2.864753;2.431062;2.724972;2.456034;2.85466;1.848082;2.508076;1.430948;2.573106;2.830896;2.911208;2.988948;1.757894;2.751293;1.688551;2.860843;2.773084;1.75554;2.422791;2.202457;2.641361;2.404798;1.688968;1.942751;2.585261;1.956258;2.439216;2.88894;2.600856;2.728415;2.492525;2.629699;2.973883;2.267232;2.630296;2.108182;2.380162;2.774326;2.499198;1.789358;2.968554;2.228637;2.476054;2.370872;2.572906;2.224212;2.641807;2.891076;1.846327;1.655107;1.853778;2.254374;2.183204;2.866416;2.684161;1.677939;1.432912;2.400054;1.409232;1.488023;2.169185;2.156332;1.350431;1.483984;1.639493;1.346743;2.608188;1.783282;2.430617;3.040066;1.591826;1.130323;1.359224;2.653107;1.645755;1.694188;2.388632;2.245832;2.826386;2.066589;1.958501;2.838285;1.751357;1.92314;2.116512;3.141473;1.971789;1.536073;1.9823;2.483768;1.637974;2.748116;1.878278;2.613894;1.499503;2.257295;2.44709;1.943779;3.09618;1.622111;2.338953;2.545328;2.469863;1.514371;1.96003;1.475704;1.920585;2.096176;1.666523;2.561438;2.178926;1.328167;1.585626;1.45017;1.356105;2.663656;2.338721;3.429256;2.580062;2.399323;2.6071;2.155791;2.631173;2.621228;3.041495;3.181103;2.237896;3.049341;2.794373;2.382211;2.526006;2.24472;2.287966;1.944358;3.095116;2.012645;2.273343;3.025222;2.461912;2.571233;1.563254;2.925765;1.757058;2.3835;3.011739;
2.63273;1.121616;2.970276;1.642908;1.594431;1.896573;2.366431;2.883685;2.893623;2.577137;1.935016;1.708439;2.629978;1.599903;2.34846;1.841804;2.577847;2.281151;2.516961;1.623369;2.24636;1.375076;1.10485;1.738722;2.258166;2.212837;1.061127;1.777479;3.318802;1.582887;2.180351;2.666368;2.286953;1.52169;1.661069;2.84706;2.937759;2.033807;1.51325;2.933016;2.559907;3.056756;2.093595;1.871542;2.06092;1.329254;2.101351;1.591608;2.854772;3.089707;2.723508;2.569492;2.153908;2.501865;2.736174;2.027074;2.648496;2.767751;2.342936;2.49439;2.819787;2.675688;1.481077;2.337594;1.529717;2.118077;3.00173;2.346711;2.595043;2.932449;2.135555;2.802258;1.732474;2.402397;2.411734;2.178483;3.586608;2.510407;1.770779;2.367163;1.553938;1.880446;1.74619;1.293029;2.420912;2.587126;2.244968;1.162136;1.059602;2.305896;1.410806;2.430346;1.607624;1.676173;2.26153;2.812624;1.944494;2.199815;2.955016;2.733484;1.949106;1.877453;2.217052;2.779037;1.757763;2.881071;1.787611;1.942459;2.142255;1.489396;0.9967503;2.420249;2.783638;2.266697;2.348042;2.663553;1.886027;1.811935;1.415131;1.548694;2.701982;2.70766;2.170951;2.636404;1.841413;1.754124;1.819572;1.351723;2.397758;1.211196;3.011532;1.60699;1.345958;1.856966;2.389589;2.884535;2.719077;2.59224;2.225135;1.962992;2.584853;1.463935;2.378597;1.839978;2.436287;2.153863;2.537639;1.641681;2.213095;1.595782;0.9691308;2.057953;2.621419;2.238589;1.346715;1.842253;3.250444;1.653902;2.024897;2.766945;2.100705;1.635903;1.614765;2.740429;2.578929;1.95251;1.572579;2.931404;2.438605;3.095769;2.311169;2.092992;2.010273;1.178205;2.183351;1.617464;2.763316;2.960747;2.665559;2.574992;2.120625;2.751571;2.588397;2.404064;3.101248;2.815182;2.679723;2.536874;2.797846;2.722753;1.443395;2.329293;1.466529;2.281883;3.015933;2.255531;2.27562;2.673092;2.20819;2.683612;1.639934;2.396988;2.661722;2.400636;3.567067;2.300537;1.950727;2.296827;1.578195;1.806515;1.758696;1.301401;2.403709;2.680003;2.113435;1.36816;1.358758;2.310653;1.688199;2.472934;1.591153;1.714138;2.214792;2.8044;1.873052;2.367428;2.969235;2.635677;1.673761;1.671794;2.29093;2.661747;1.664432;2.875958;2.003798;2.153093;1.774787;1.496588;1.287925;2.955467;2.344703;1.724964;1.834157;2.69865;1.81358;1.659096;1.143131;1.873996;2.434786;2.644288;1.960172;2.280257;2.302804;2.012754;1.895674;1.078034;
2.909166;2.681198;2.55154;2.899216;2.765499;2.346816;2.536773;2.854992;2.699521;1.509723;2.77673;1.883236;2.403951;2.670712;2.361928;2.491681;2.005472;2.103669;2.340788;1.071209;1.613461;2.980325;2.360233;2.984872;1.988928;1.698443;2.142751;1.907036;1.167038;1.68373;1.665595;2.420334;2.345027;2.108437;1.629363;1.208834;2.290466;2.120881;2.603347;1.633254;1.605896;2.361328;3.135901;2.015565;2.417263;2.910866;2.532722;1.963999;1.886168;2.868139;2.974195;1.969607;2.684428;2.025349;1.921574;1.926763;1.856824;1.623391;2.275624;2.403318;1.980262;2.407725;2.791396;1.552076;1.96582;1.47629;1.920209;2.57902;2.638164;1.923345;2.775697;1.989573;1.884895;1.893418;2.023858;3.208387;1.319845;2.641135;1.886872;1.516555;1.285092;2.373574;2.546637;2.246573;1.855722;2.646908;2.095565;2.214422;1.468389;2.077152;1.968823;2.953437;1.683777;2.433184;2.041436;2.247219;1.387361;1.196023;2.467677;2.345752;2.271564;1.726841;2.082777;3.391751;1.656396;2.323417;3.291932;2.489137;1.686318;1.646959;2.755056;2.705219;2.115586;2.09041;3.090087;2.636633;2.773794;2.481348;1.969975;2.001112;1.896521;2.911136;1.89862;2.165837;2.794423;2.503571;2.579775;1.697657;2.716317;2.867086;2.589442;2.92141;2.75158;2.2412;2.49129;2.568184;2.77747;1.350355;2.796852;1.856252;2.767271;2.729822;2.526403;2.249677;2.077423;2.240364;2.208322;1.123596;1.70228;2.729282;2.389466;3.011138;2.409081;1.836463;2.516823;1.821915;1.215749;1.527966;1.562376;2.015521;2.189846;2.290718;1.66334;1.18686;2.276221;2.045876;2.620015;1.464386;1.672454;2.180475;3.15011;1.943962;2.765306;3.003195;2.753381;1.793023;1.937294;3.045102;2.815641;1.987052;2.751781;1.839746;1.98884;1.993172;2.243093;1.772278;2.651975;2.214604;1.986198;2.292468;2.593782;1.316115;1.880609;1.59986;1.881866;2.53495;2.723875;1.843147;2.636214;1.775105;1.848154;1.769371;1.906682;3.074999;1.564712;2.783676;2.02179;1.45558;1.375689;2.498571;2.317175;2.254376;1.998684;2.423929;2.028777;2.254423;1.710083;2.287835;2.18345;2.743809;1.690105;2.317215;1.873698;1.961251;1.316639;1.307494;2.425228;2.303723;2.352154;1.650814;1.962942;3.109777;1.622753;2.185779;3.143197;2.371932;1.685271;2.122725;3.21833;2.686007;1.883389;2.225571;3.037914;2.188774;2.675128;2.030281;2.075086;2.007408;1.854988;2.866918;2.016855;3.034855;2.439009;2.478324;2.58868;2.096334;
2.763595;1.362597;2.062328;1.545595;2.018891;1.281241;2.718047;1.747931;2.169072;1.835027;1.733907;1.705128;1.570333;2.512097;2.045891;2.194492;1.248749;1.694745;2.855557;1.773547;2.405068;3.029279;2.961085;1.800694;1.834649;2.39778;2.381703;2.337386;1.695142;2.362767;2.288996;2.258971;2.680691;1.617072;1.893424;1.606279;2.514045;1.856309;2.524319;2.736652;2.410221;3.030391;2.144415;2.514694;2.154865;2.691978;2.526475;2.737057;2.129386;2.797661;2.891952;3.094382;1.765961;2.580196;2.176138;2.608046;2.599443;2.885155;2.249391;3.112696;2.767926;2.446188;1.650488;1.68819;3.344655;1.566115;2.764977;2.120577;1.529216;1.761839;1.936885;1.487316;1.478231;1.425327;1.866073;2.582922;2.73186;1.685607;1.237782;2.383483;1.730696;2.413363;1.257247;1.739257;2.425209;2.969413;2.710707;2.570436;3.089816;2.312772;1.602179;1.932783;2.544057;2.300951;1.639201;2.126289;2.299437;1.622515;1.940544;1.639987;1.402709;2.792074;2.468125;1.90671;2.158245;2.997809;1.78862;1.580387;1.093348;1.68711;2.23693;2.707532;1.600942;2.58749;1.888822;1.980054;2.120885;1.658736;3.190584;1.413101;2.850647;1.75325;1.353037;1.985756;2.707805;2.575281;2.641531;2.195738;2.561929;1.494386;2.098151;1.606489;2.254253;1.30133;2.895485;1.865017;2.447538;1.882831;1.972955;1.461105;1.558972;2.408671;2.578313;2.314964;1.202422;1.462465;2.802757;1.423017;2.292533;2.940901;2.849061;1.688139;1.95057;2.029992;2.338341;1.983768;1.608116;2.517409;2.407648;2.654905;2.419131;1.753547;1.972428;1.707058;2.751033;1.856604;2.637739;2.850287;2.645947;3.091758;2.467728;2.268397;2.124935;2.562581;3.058673;2.808469;1.993975;2.534921;2.902365;2.646748;1.632795;2.514373;2.035058;2.413874;2.651145;2.51829;2.263501;2.895793;2.612109;2.669108;1.575742;1.967029;3.050987;1.757435;2.905957;2.400169;1.77414;1.688549;1.995273;1.621596;1.647316;1.499454;2.074363;2.492052;2.700331;1.621832;1.44934;2.377905;1.608564;2.234177;1.294743;1.53914;2.336954;2.804986;2.506928;2.440259;3.123316;2.023327;1.532978;1.763248;2.394829;2.518125;1.56477;2.43876;2.057159;1.817706;2.058827;1.88748;1.637719;2.700466;2.53405;2.059133;2.36167;3.105615;1.992552;1.509972;1.345111;1.213161;2.214957;3.031112;1.579764;2.107313;1.636886;1.745971;2.026962;1.70673;2.72277;1.245058;2.240417;1.408619;1.709895;1.265657;2.836732;2.938027;2.850728;2.19057;
1.644678;3.206405;2.224175;2.795341;2.892411;2.456492;2.31819;2.43918;2.201075;2.987476;2.264597;2.611825;1.943015;2.493922;2.054823;2.942982;2.423084;2.212687;2.264137;1.032927;2.724457;2.045637;2.458574;2.584099;2.574481;2.440683;1.793359;2.656674;1.426564;2.158732;2.338392;1.594521;2.362727;2.11545;2.043578;1.798905;1.513047;1.563515;2.151996;2.328809;2.322918;2.771936;2.955985;2.871224;2.479688;2.718606;2.856009;2.170467;2.8134;2.852612;2.465415;2.641366;2.193075;1.739237;2.860909;2.734944;2.440272;2.073518;3.520004;2.481461;2.65354;3.217046;2.032331;1.773618;2.281681;2.572834;2.146542;2.544096;3.176435;1.541293;1.360358;2.597159;1.254313;1.887622;1.406684;1.629067;1.343436;1.052229;1.125818;1.668867;2.739674;1.669174;1.908232;2.315374;1.691494;1.551524;1.381303;2.288872;1.372699;1.319532;2.362465;1.922102;2.486615;1.388186;1.545368;2.741837;1.76102;1.65751;1.484119;2.513427;1.81001;1.070024;1.657179;2.654436;1.707957;2.690089;1.927562;2.578779;1.571447;2.422651;2.10566;1.828057;3.552298;2.152979;2.515833;2.628097;2.228673;1.367361;2.099215;1.643637;1.526323;1.993134;2.222386;2.868896;2.219923;1.437487;1.856138;1.730371;1.924574;3.21485;2.369012;3.220963;3.013698;2.589603;2.529315;2.366056;2.437478;2.979942;2.219519;2.421303;1.993732;2.443651;2.227963;2.877466;2.30436;2.036006;2.198633;1.000886;2.651083;1.832184;2.693208;2.357251;2.271547;2.575552;1.599145;2.394324;1.478974;2.125027;2.299839;1.488418;2.685603;2.143968;2.173763;2.093153;1.589038;1.685188;2.378626;2.234416;2.544132;2.792122;2.882265;2.618619;2.508105;2.685316;3.071224;2.115228;2.706254;2.648494;2.399286;2.562694;2.138714;1.534358;3.150202;2.502135;2.16405;2.194731;3.247939;2.41991;2.622607;3.161237;2.014997;1.742791;2.51914;2.755206;2.279991;2.746616;3.234876;1.707128;1.413692;2.572068;1.364452;1.821771;1.413213;1.616443;1.283414;1.030214;1.27699;1.700414;2.553348;1.629811;1.850455;2.114544;1.607884;1.399125;1.455394;2.144509;1.11955;1.345634;2.213158;1.868097;2.457565;1.351595;1.531069;2.703586;1.97127;1.804622;1.596122;2.714892;1.854965;1.208893;1.71685;2.629178;1.836982;2.611505;1.935974;2.563758;1.655244;2.196778;2.027299;1.495037;2.848299;2.245689;1.835594;2.439476;2.506058;1.733407;1.752945;1.75319;1.864735;1.949498;2.005245;2.453232;2.300894;1.580505;1.910795;1.725407;
3.329636;2.861154;2.148301;2.113943;2.70081;3.12472;1.454326;2.751919;2.070012;3.091176;2.828766;2.639464;2.60898;1.405846;2.220211;1.688619;2.884066;2.838881;1.542216;1.831099;1.698745;2.409893;2.082058;1.724349;2.302158;2.768742;2.712836;2.688825;2.886787;2.868843;2.632077;2.631908;2.994655;2.729331;2.498367;2.290046;2.589207;2.459337;2.159591;2.629676;1.766999;2.547161;1.834496;1.876315;2.320405;3.266652;1.754558;2.530043;2.744061;1.96944;1.60203;2.366934;2.140324;2.426483;2.094242;3.151859;2.177492;1.549854;2.655875;1.315528;1.678237;1.814827;1.770468;1.460606;1.575153;1.545934;1.144877;2.395806;2.561219;2.797714;2.636002;1.764412;1.62778;1.733651;2.707793;1.419631;1.349628;1.906667;1.702017;2.818636;2.085243;1.68522;2.512311;1.29719;1.521897;1.945631;2.745692;2.092528;1.742494;2.17948;3.347775;1.793144;2.708039;1.803694;2.459464;1.600801;2.543735;2.119248;2.135796;2.850025;2.336467;2.625595;1.912816;2.530608;1.434752;1.641355;1.234627;1.207009;2.0685;2.368132;1.925484;2.062746;1.202156;1.70905;1.495342;1.694494;2.626424;2.617613;2.74231;3.19791;2.866343;2.827931;2.502296;2.655831;2.58993;2.555549;3.003308;2.274213;2.990185;2.527027;2.070856;1.900939;2.752255;3.446887;1.532568;3.150189;2.068979;3.401836;3.267513;2.648983;2.499199;1.375669;2.440943;1.781652;2.772728;2.596922;1.573644;1.952164;1.816313;2.39051;2.202539;1.754725;2.248788;2.935015;2.797353;2.731141;2.517975;2.928844;2.779496;2.629856;2.630586;2.451993;2.402248;2.01013;2.600977;2.679172;2.180337;3.000132;1.73811;2.891168;2.186499;1.83587;2.187259;3.153925;1.886692;2.662961;2.613222;1.81528;1.638719;2.479231;2.252084;2.346869;2.156049;3.214345;2.105143;1.719857;2.745391;1.399036;1.487338;1.899246;1.951371;1.458858;1.394937;1.434075;1.103518;2.077625;2.420718;2.912826;2.623953;2.071477;1.598535;1.913172;3.037292;1.458098;1.346107;1.910583;1.89111;2.958437;2.069526;1.644782;2.594719;1.355407;1.496453;1.781657;2.780467;2.145525;1.676324;2.265437;3.348721;1.891079;2.463916;1.888502;2.671918;1.599493;2.313342;1.988476;2.079232;2.502716;2.202296;2.737923;1.902573;2.89662;1.407387;1.816681;1.460244;1.243272;1.816638;1.8858;2.694261;2.204692;1.860384;1.492413;1.566159;1.5442;3.360855;2.073999;2.832073;2.681641;2.822495;2.828243;2.593706;3.13458;2.49056;2.345193;2.984964;2.358922;
2.463899;2.995473;3.371165;1.286511;1.607932;2.807514;1.898696;2.881801;2.655234;2.25792;1.473081;1.96303;2.613313;2.76942;1.683509;2.01307;2.815745;2.426001;2.612286;1.678372;2.060581;1.718232;1.133506;2.084742;1.704716;2.124372;2.4762;1.788922;3.012126;2.180284;2.187902;3.01519;2.772084;2.743529;2.937321;2.281632;2.55;2.68277;2.855134;1.135874;2.415581;1.358997;2.915364;2.462008;2.603352;1.902199;2.54936;2.395042;3.18674;1.428805;2.000761;2.640906;2.420608;3.249107;2.438871;2.40789;1.987334;1.590676;1.715849;1.443899;1.468598;2.430893;2.650871;2.633059;1.539548;1.794495;3.275057;1.709596;2.241553;1.291256;1.783702;3.098544;2.670873;1.920857;2.287176;3.453389;2.534863;1.916451;1.666072;2.695757;2.34768;1.675041;2.362354;1.33893;1.890745;1.689408;1.384876;1.210279;2.44056;2.159112;1.700209;1.844646;3.049086;1.797668;1.600123;1.57582;1.790573;2.489329;2.779615;1.937683;2.675757;1.867061;1.786239;1.602186;1.782992;2.610562;1.789391;2.707666;1.967064;1.135065;2.00264;2.524166;2.941275;2.854041;2.096582;2.418931;2.005094;2.43623;1.932077;3.016443;1.844244;2.550909;1.961341;2.349104;1.759278;2.600686;1.568318;1.498276;2.038055;2.760225;3.307395;1.286687;1.550098;2.549431;1.880083;2.806194;2.529657;2.14692;1.356236;2.337013;2.380371;2.927319;1.967388;2.052969;2.44161;2.257299;2.493306;1.607533;1.870099;1.494301;1.304819;2.198068;1.908714;2.194215;2.42065;2.236637;2.933647;2.396109;2.348268;2.985184;2.377836;2.602415;2.922054;2.292297;2.511682;2.439042;2.734882;1.098512;2.3437;1.33526;2.782084;2.893972;2.391845;2.041605;2.782913;2.443638;2.809556;1.359108;1.921379;2.555648;2.206117;2.942853;2.576624;2.534755;2.22641;1.718056;1.693;1.690168;1.454362;2.648941;2.673197;2.718837;1.392876;1.596261;3.382194;1.699027;2.260494;1.124128;1.870128;2.899913;2.426247;1.842853;2.164021;3.723204;2.385387;2.043812;1.731626;2.864131;2.206931;1.517708;2.379479;1.261667;1.750465;1.470846;1.660408;1.21183;2.533127;2.252157;1.67351;2.121728;3.029695;1.985742;1.618353;1.642401;1.632832;2.254843;2.879289;1.926419;2.69752;1.66484;1.873665;1.460341;1.58491;2.519516;1.681348;2.947272;1.696668;1.074243;1.717678;2.516938;2.074664;2.401012;2.152981;2.014571;1.562619;2.552524;1.788141;2.526165;1.839683;2.925003;1.670838;3.01687;2.134664;2.644318;1.507705;1.198259;
1.578218;2.439172;1.565141;2.35923;3.042206;2.288406;3.009262;2.528267;2.149539;2.537627;2.123104;2.144866;2.921126;2.25007;2.62231;2.7539;2.31054;1.262003;2.444484;1.840631;2.4627;2.408073;2.599587;2.466562;2.441846;2.772978;2.867182;1.335746;2.191012;2.381639;2.310529;2.696118;2.023405;1.785682;2.443239;1.40181;1.608805;1.223383;1.785058;2.163976;2.609193;2.173755;1.970984;0.9424592;2.879503;1.708379;2.672196;1.326928;1.497892;2.134864;2.996515;1.897954;2.31082;2.908943;2.87036;1.176495;1.757242;3.00327;3.098634;2.116789;2.693048;1.91852;2.157701;2.016281;1.810751;1.329557;2.091733;2.305962;2.069136;2.080114;3.223564;1.971996;1.501418;1.31283;1.340674;1.960717;2.595693;1.73714;2.595184;1.825525;1.634429;1.762416;1.531435;3.033438;1.468961;2.483124;2.104149;1.670433;1.808176;3.074084;2.930464;2.643377;2.357165;1.893169;1.821981;1.980569;1.484266;2.194844;2.09793;2.177586;2.128787;1.951737;2.161479;2.211475;1.668007;1.170802;2.609191;2.125927;2.945342;1.285067;1.805803;2.869935;1.590725;2.063201;3.098303;2.261981;1.595045;1.717478;3.151186;2.072145;2.228791;2.095829;3.299333;2.88438;3.014777;2.310123;2.065919;2.002687;1.447868;2.577427;1.59721;2.077266;3.224169;2.186983;3.151029;2.406024;1.974498;2.588013;2.090255;2.475899;3.114728;2.321341;2.564872;2.72133;2.5392;1.220367;2.316557;1.867339;2.771695;2.659023;2.781301;2.601823;2.510233;2.585117;2.697839;1.408758;2.216038;2.185842;1.996437;2.435864;1.943396;1.895;2.483773;1.205562;1.763665;1.126052;1.906735;2.132103;2.50109;2.217609;1.947265;1.18996;3.107271;1.745836;2.634315;1.347911;1.73152;2.113165;2.864569;1.926315;2.614819;3.193712;3.083233;1.313536;1.865522;2.844918;2.932664;2.039547;2.823243;1.892247;1.943659;1.84261;1.700471;1.440023;2.158995;2.056602;2.227883;1.942718;3.250288;1.86532;1.353574;1.30474;1.35572;2.137365;2.911238;1.917736;2.662073;1.901702;1.842131;1.760493;1.462242;3.075279;1.699445;2.735602;2.175272;1.759489;1.84096;2.85244;2.819039;2.557736;2.479193;1.867598;1.625714;1.80899;1.384491;2.336911;2.165229;1.936129;2.289882;1.819242;2.183334;2.098972;1.51187;1.163703;2.630096;2.310759;3.113691;1.491945;1.935969;3.145149;2.345775;2.101634;3.513638;2.372438;2.259552;1.695112;2.72593;2.160138;2.242061;1.878541;3.032602;3.127872;2.611455;1.712071;1.537879;2.002938;
2.503569;1.480544;1.30111;1.478884;2.592691;1.379085;1.278561;1.870834;2.096905;2.361876;2.175041;1.697681;2.217571;1.779953;1.6911;1.763246;2.921237;1.417281;1.657947;2.070797;2.986103;1.541312;2.9658;1.580415;2.865338;1.435635;2.75913;2.177528;1.662755;2.931553;1.521049;2.725798;2.285004;2.551632;1.872795;1.802574;1.870246;2.007955;2.564487;2.342093;3.072257;1.961995;1.756926;1.726964;1.637508;2.113952;3.146003;1.947896;2.91613;2.785169;2.545175;2.659937;2.756439;2.448241;3.537161;2.934001;3.601043;2.32572;3.335825;2.662651;2.491038;2.094274;2.253952;2.485242;1.443416;2.215388;1.536323;2.964521;2.798741;2.285728;2.43523;1.424817;2.772272;1.307108;3.055111;2.570756;1.393263;2.240946;1.999151;2.164848;2.341051;1.225087;1.987135;2.870313;2.402935;2.271176;3.245607;2.490954;3.033691;2.258407;3.064983;2.845977;2.100142;2.240856;2.060687;2.453443;2.653489;2.633298;2.097305;2.962905;2.680397;2.334378;2.790994;3.060726;2.576133;2.350096;3.55142;1.868596;1.849298;2.499802;2.613943;1.543116;2.416541;2.808967;1.703408;1.595031;2.943925;1.238696;2.273202;1.857445;2.359893;1.219225;1.823267;1.425494;1.319332;2.165442;2.156817;1.921016;2.63721;1.549854;1.16778;1.868052;2.631231;1.32151;1.1743;2.30933;2.081923;2.108086;2.201805;1.669859;2.386727;1.464593;1.798183;1.706519;2.828916;1.373881;1.582755;2.371233;2.923045;1.676009;3.188908;1.57909;2.699433;1.218029;2.903609;2.194786;1.649684;2.548307;1.781714;2.350631;2.383062;2.691805;1.731807;2.182404;1.870021;1.919234;2.408;2.690606;3.008744;1.773892;1.792026;1.66021;1.739871;1.750762;3.266451;1.795799;2.823572;2.746468;2.486974;2.974059;2.68499;2.565257;3.781642;2.816701;3.414667;2.065678;3.536794;2.647786;2.301984;1.863483;2.556222;2.295916;1.450416;2.298095;1.456453;3.349501;2.785566;2.346998;2.29132;1.689509;2.664269;1.195475;3.078958;2.478843;1.362179;2.005409;2.084023;2.167515;2.171422;1.165544;1.991898;3.103381;2.324889;2.546577;3.49158;2.371456;2.814944;2.056267;3.236018;2.830648;1.927728;2.001878;2.351056;2.26548;2.664103;2.723489;2.004763;3.347828;2.668526;2.396276;2.637763;3.443579;2.473143;2.199641;3.578407;1.790658;1.663228;2.243114;3.290549;1.827833;2.240093;2.086214;1.683898;1.578967;2.387279;1.741325;2.072802;1.544671;1.961283;1.329501;1.327506;1.478993;1.452686;2.236014;1.881589;1.934263;
2.248889;1.599838;1.484318;1.498685;2.56028;2.179544;2.40788;1.702895;1.218421;1.999619;1.504772;2.150596;2.770972;2.189615;2.879681;2.399573;2.362478;2.156275;2.720061;2.575872;2.623661;2.195127;3.52581;2.447851;3.106358;2.31474;3.056877;2.562643;1.724657;2.964719;1.288732;2.520233;1.815066;2.813644;2.87581;2.98889;2.849866;1.32409;3.117736;1.185481;3.248926;2.631718;1.539415;2.164641;2.217496;2.092504;2.489778;1.602454;1.532815;2.616929;2.717004;2.62116;2.563869;2.976651;3.032027;2.401427;2.92672;2.194096;1.900816;2.973157;2.189178;2.366686;1.851185;2.549134;2.60983;2.480928;2.232901;2.038539;2.759203;3.266899;1.915618;2.051994;2.907037;2.148244;1.740958;2.898424;2.549696;2.150903;2.353034;2.511479;1.624726;1.161718;2.768795;1.268186;1.422787;1.405928;2.209646;1.403041;1.444461;1.113941;1.829955;2.956806;1.432896;2.558995;2.480399;1.640006;1.736187;1.501576;2.642351;1.516697;1.489926;1.828567;2.386412;2.088286;2.27792;1.783187;2.530519;1.724062;2.075861;1.51122;3.406419;1.864751;1.278129;2.03164;3.163075;1.735128;2.408722;2.10968;2.445732;1.529863;2.611018;1.618694;1.579897;3.035642;2.232085;2.259338;1.724839;2.488158;2.373835;1.633953;1.395683;1.434438;2.37558;2.585506;1.999865;1.589775;1.153274;2.227839;1.690749;2.104129;2.988462;1.96564;2.810177;2.178983;2.51144;2.332681;2.635339;2.542773;2.713156;2.361082;3.029825;2.455474;3.141363;2.355211;3.001305;2.459599;2.193452;2.775808;1.486061;2.50999;1.958747;2.87229;2.653496;2.837706;2.63692;1.608062;2.704628;1.089981;3.190994;2.914419;1.65606;2.073491;2.400555;1.839315;2.481745;1.44918;1.698023;2.829521;2.554817;2.57041;2.651658;3.121766;2.642709;2.442719;3.020511;2.250072;1.79172;2.67653;2.610207;2.157612;1.979577;2.521443;2.610276;2.506477;2.105626;2.054771;2.670565;3.68075;1.628893;1.98028;2.75654;2.473131;1.891556;2.627331;2.642641;1.893287;2.232264;2.302053;1.657706;1.28405;2.682584;1.346688;1.581416;1.491297;1.915973;1.482424;1.440996;1.202245;1.748696;2.661692;1.777145;2.342186;2.628553;1.618478;1.73644;1.522057;2.503851;1.531214;1.425063;2.142048;2.064926;2.016683;2.144806;2.080891;2.711563;1.516973;1.805573;1.323269;2.968971;1.298781;1.35169;1.650783;2.418525;1.594687;2.43828;1.852484;2.070068;1.863952;2.313401;1.815302;1.949762;3.311513;2.060512;2.37256;2.309586;2.543969;
2.810295;2.801461;1.557124;2.086056;2.178431;1.72613;2.533863;1.785796;1.768877;2.445593;2.616167;2.212563;2.951585;2.662023;2.172616;2.319153;2.808654;2.495354;2.095711;2.653102;2.777957;2.082527;2.777136;2.345865;1.864001;2.947805;2.801395;2.603387;2.067528;3.281811;2.605362;2.126682;2.754595;1.721203;2.032662;2.730891;2.11779;1.529066;1.888033;3.01971;1.59539;1.828372;2.191018;1.35852;1.454515;1.44487;1.678821;1.028633;1.553924;1.286645;1.32243;2.079316;2.138294;1.757898;2.517562;1.560183;1.775038;1.724719;2.280333;1.796225;1.605909;2.668354;2.17366;2.520885;2.048438;1.738358;2.538494;1.401188;1.936695;1.359138;3.107347;2.195688;1.503288;1.796278;3.135839;1.373449;2.767244;1.71532;2.180523;1.511744;2.608843;1.823352;1.66415;3.235214;2.202974;1.955821;2.533433;2.237384;1.725224;2.002155;1.944595;2.059535;1.818579;2.603446;3.203874;1.810954;1.465807;1.644167;1.95212;2.051688;2.51343;1.814504;2.377885;3.034673;2.292249;3.243805;2.072714;2.562041;2.708932;2.378177;2.805817;1.879048;3.534129;2.215512;2.257441;1.808008;2.423738;2.204796;1.339695;2.55748;2.23768;2.904257;2.314785;2.991788;2.733307;1.944158;2.549873;1.560056;2.950963;2.810273;1.532786;1.992948;2.139346;1.590794;2.733951;1.67117;2.012357;2.287112;2.644702;2.49287;2.834428;2.958639;2.178684;2.358684;2.935556;2.49524;1.806147;2.64164;2.498215;2.206161;2.727648;2.245498;1.970695;2.932894;2.693269;2.556376;2.114384;3.375225;2.464262;2.25645;2.914216;1.743012;2.009128;2.57104;2.077822;1.422825;2.117586;2.935545;1.833963;1.7087;2.211516;1.541147;1.361312;1.688462;1.724224;1.088332;1.631335;1.298096;1.089222;2.015564;1.855328;1.892131;2.516403;1.517942;1.860976;1.726705;2.175403;1.776957;1.621781;2.696559;1.980278;2.593668;2.016467;1.812904;2.626442;1.372506;1.947705;1.251702;3.452766;2.06783;1.676942;1.655737;3.265886;1.62297;2.651391;1.911639;2.164345;1.531484;2.519515;1.891366;1.487184;3.288598;1.965569;2.087683;2.578652;2.129686;1.751407;1.980305;1.929623;2.038892;1.836357;2.631204;2.969054;1.872659;1.439525;1.716686;2.030291;2.016942;2.527016;1.689942;2.682067;2.883944;2.506549;3.05396;2.179679;2.899157;2.590435;2.60729;3.019821;1.924952;3.402925;2.528687;2.424008;2.106368;2.469817;2.322039;1.673147;3.006562;1.785432;2.585306;2.519753;2.492811;2.833989;1.872529;2.675058;1.603234;
1.235359;2.162606;1.757833;2.566603;2.502244;1.32506;0.9056135;1.076737;2.501384;1.465395;1.283581;2.197888;1.829198;2.345592;1.612486;1.389926;2.220807;1.471696;1.520188;2.278499;2.991991;2.01644;1.288561;1.58505;2.932229;1.697164;2.607594;1.523846;2.486152;1.737313;2.691399;2.367258;1.873944;3.335453;2.208968;2.466535;2.427506;2.610361;1.664827;1.848763;1.386174;1.166572;2.465058;2.265401;2.636966;1.67483;1.769587;2.125408;1.8413;1.797551;3.007705;2.58777;3.353803;2.915017;3.109714;2.574279;2.950433;2.745583;3.015261;2.542551;3.014552;2.594522;2.701409;2.282108;2.358206;2.012456;2.019969;2.828488;1.39589;2.309835;1.289569;2.121701;2.603036;2.718656;2.375055;1.546222;2.24782;1.300039;2.589955;2.226358;1.252647;1.915605;1.840473;2.821312;2.283112;1.655437;1.812546;2.243261;2.474586;2.56432;2.604605;2.477349;2.518318;2.561063;3.010038;2.979247;2.211904;2.765728;2.605296;2.318412;2.504434;2.525743;1.987362;2.745325;2.060634;1.676304;2.643124;3.052092;2.174205;1.924595;3.477623;2.337921;1.900538;2.433012;2.634661;2.173667;2.649025;3.017416;1.85314;1.438179;3.145288;1.700997;1.833342;1.844074;1.925132;1.685845;1.214613;1.266312;1.366232;2.205863;1.487535;2.186945;2.521296;1.325863;1.150708;1.295411;2.622684;1.935506;1.180011;2.367127;2.081468;2.071808;1.533357;1.462529;2.399974;1.601346;1.629637;1.834236;2.869594;1.95653;1.050969;1.620214;3.243104;1.837195;2.572963;1.626253;2.425236;1.692708;2.489856;2.42647;1.977371;3.379652;1.948911;2.138084;2.423278;2.583754;1.942204;2.104301;1.434664;1.589324;2.37795;2.491633;2.918588;1.428134;1.645514;2.159394;1.931236;1.974004;3.2278;2.132164;3.173183;2.860061;2.681863;2.558956;3.168561;2.96392;3.043289;2.654006;2.969272;2.67333;2.500836;2.30271;2.513995;2.042152;1.766398;2.596021;1.395739;2.23103;1.493249;2.411785;2.695327;3.226774;2.269211;1.700346;2.574396;1.160605;2.440841;2.224413;1.356458;2.093176;2.008147;2.461961;2.138841;1.569541;1.448558;2.246145;2.700845;2.666893;2.608716;2.588053;2.477011;2.64021;2.798176;3.003709;2.362932;2.801212;2.316053;2.109024;2.504295;2.44412;2.238477;3.07496;2.142905;2.080562;2.531281;3.267863;2.695288;2.305159;2.962236;2.084323;1.432259;2.337497;2.911958;1.47452;2.190046;2.504832;1.747622;1.46916;3.078471;1.535348;1.749934;1.506594;1.891419;1.918923;1.163871;1.759141;
1.208143;2.659862;1.965023;2.140323;1.233851;1.434761;2.553646;3.000263;1.995809;2.183463;2.571098;2.356465;2.118512;1.897587;2.89317;2.36247;1.717779;2.717149;1.62298;1.737313;1.476049;1.572824;1.674939;3.046169;2.755796;2.039744;2.252361;2.6221;1.802425;1.823265;1.646863;1.474174;2.654603;2.295998;1.537128;2.582999;1.644783;1.727219;1.481165;1.556255;3.241575;1.515943;2.585527;1.861333;1.533964;1.931036;3.170819;3.040118;2.790203;2.99152;2.287715;1.871256;2.361972;1.623636;3.019057;1.651508;2.177974;1.826465;2.417322;1.757427;2.566607;1.271418;1.191033;1.938446;2.465988;2.576269;1.643425;1.485912;2.768246;1.505957;2.215721;2.898008;2.486236;1.575001;1.515243;2.639326;3.201431;2.364302;1.991502;2.428811;2.508906;2.873401;2.044691;1.533583;1.53341;1.537248;2.800116;2.125603;2.883433;3.010752;2.605361;2.940398;2.273652;2.591177;2.910007;2.281335;3.098733;2.212062;1.969258;2.600993;2.464152;2.628614;1.003154;2.464251;2.170997;2.556073;2.603544;2.798207;2.514646;2.737015;2.942493;2.893778;1.717526;2.518168;2.635029;2.088034;3.184179;2.603821;2.03815;1.608305;1.539877;1.231084;1.194026;1.542004;2.566048;2.526701;2.573898;1.293543;1.168968;2.483296;2.029629;2.142641;1.538067;1.546497;2.616202;3.049221;2.018826;2.150991;2.659352;2.573817;2.256516;1.71909;2.631026;2.170995;1.825201;2.554457;1.604504;1.57409;1.516541;1.507945;1.283139;2.709483;2.910087;1.892595;1.901678;3.017768;1.849129;2.082972;1.842769;1.564255;2.586154;2.153876;1.586592;2.530699;1.979735;1.865584;1.547613;1.572303;3.24692;1.509368;2.652638;2.008552;1.628286;1.766394;2.907064;2.823446;2.948325;2.81759;2.267635;1.679837;2.425035;1.549204;2.516998;1.406734;2.334788;1.684851;2.0552;1.869735;2.537117;1.489276;1.424794;2.049604;2.373587;2.548494;1.700595;1.553056;3.137552;1.557498;2.420526;3.045741;2.461746;1.560664;1.512538;2.591614;3.227062;2.191528;1.85966;2.243771;2.631208;2.833045;2.032604;1.464792;1.541991;1.39126;2.442682;1.947005;3.032199;2.818013;2.164956;3.085313;2.246753;2.898489;3.270691;2.401897;2.996183;2.186461;2.032584;2.689732;2.814191;2.696549;1.143141;2.600731;2.149079;2.537938;2.600892;2.749973;2.174667;2.346767;2.26761;1.97956;1.653552;1.901733;2.630912;2.263735;3.357702;2.505759;1.788831;1.581386;1.737617;1.595911;1.357769;1.711511;2.256747;2.69456;2.922604;1.974593;
2.91599;2.583845;1.937641;1.76435;2.510857;1.942566;2.430762;1.350633;2.068467;2.510349;3.068053;2.513264;2.248303;3.076735;2.290879;1.750703;1.643012;2.209946;2.174243;1.938688;2.08395;1.984817;1.447363;1.831842;1.616713;1.615149;2.378164;2.921749;1.492359;2.412515;3.176982;1.989574;2.146555;1.282111;1.559416;2.583368;2.402427;1.638393;2.28793;1.879744;1.251389;1.596414;1.533822;3.722004;1.504423;2.496289;2.285518;1.711007;2.186259;2.803651;2.427013;2.076089;2.106076;2.544716;2.058777;2.761825;2.134233;2.047242;1.733981;2.393891;1.852054;2.95278;2.46841;2.793585;1.985364;1.339159;2.760625;2.959737;2.535916;1.601975;1.807145;2.89142;2.019378;2.33659;3.19623;2.610658;1.539866;1.924133;2.279403;2.518025;1.959925;1.424668;2.226396;2.83169;2.133874;2.475613;1.426692;1.695497;1.321424;2.777073;1.803525;2.581874;2.460596;2.806482;3.050976;2.454314;2.850484;2.530048;2.086421;2.842291;2.505887;2.013983;2.342696;2.679328;2.017034;1.255907;2.472802;2.105129;2.519269;2.636178;2.770741;2.740252;3.114623;2.566089;2.270193;1.047775;1.857105;2.92582;2.139921;3.181805;2.558572;1.899997;1.975334;1.775571;1.322603;2.023649;2.185487;2.55672;2.773901;2.578404;1.640535;1.550013;2.465873;2.016766;2.630098;1.563274;2.427706;2.492466;3.463351;2.304759;2.467171;3.215378;2.322457;1.903181;1.700202;1.96923;2.291695;1.752351;2.251657;2.350545;1.385631;1.572146;1.454081;1.750739;2.290557;3.072315;1.499963;2.759597;3.135535;1.83;1.988029;1.313877;1.285323;2.261113;2.322251;1.65364;2.403407;2.113008;1.508248;1.627973;1.812942;3.401449;1.658287;2.560957;2.246879;1.87817;2.231118;2.586787;2.55711;1.861422;2.254767;2.889678;1.928998;2.459391;1.927471;2.250927;1.663991;2.723003;1.736217;3.061189;2.469032;2.60524;1.795083;1.353977;2.499418;2.720429;2.464714;1.574273;1.866224;3.280073;2.302375;2.217675;3.447598;2.554013;1.593503;1.823461;2.27637;2.72109;1.962899;1.254658;2.45857;2.686175;2.294633;2.760203;1.282773;1.529632;1.131755;2.836897;1.631032;2.924068;2.326729;2.912993;3.051695;2.278603;2.621651;2.551027;1.860251;2.608648;2.435045;1.983566;2.409921;3.054631;2.299981;1.169564;2.694551;2.055285;2.655836;2.184156;2.888493;2.349804;2.943504;2.699767;2.689235;1.148974;2.009263;3.018531;2.354952;3.484868;2.095938;2.232468;2.153482;1.889852;1.646026;2.063491;2.181507;2.701359;
2.457791;2.051455;2.378031;2.891116;2.724867;2.041818;2.107225;2.890602;1.93097;2.415854;2.180254;2.514084;2.738603;2.231975;2.495085;3.204385;2.37793;2.433285;2.610439;3.636858;2.191849;2.241922;2.377189;2.095165;1.393373;2.520849;2.536888;1.92283;2.441718;2.768042;1.67829;1.608125;2.802688;1.046505;1.968405;2.022295;2.228936;1.392032;1.660749;1.837702;1.524715;2.851907;1.567454;2.109685;2.803965;1.847627;1.738691;1.274087;2.580652;1.956777;1.323909;2.654414;1.752038;2.711518;1.66841;1.290896;2.163444;1.399852;1.86425;1.613812;3.655521;1.572693;1.660193;1.667563;3.123169;1.352458;2.209762;1.946788;2.456796;1.298865;2.087318;2.390916;1.572197;2.938861;1.836856;2.51558;2.447669;2.178641;2.209907;2.326327;1.815481;1.864669;2.255544;2.702427;2.72728;1.850436;1.053451;1.930715;1.362178;1.991747;2.99381;2.044506;2.92697;2.7047;2.457464;2.964155;2.83277;2.251974;3.132571;2.852675;3.281456;2.318451;3.496258;3.055068;2.438611;2.592927;1.842608;2.166072;1.460311;2.777532;2.007466;2.485178;2.799788;3.187029;2.253809;1.803377;2.169686;1.65391;2.90478;2.354403;1.152909;1.819965;2.270391;2.245226;2.868549;1.201663;1.867973;2.516314;2.307952;2.334281;2.079676;2.715678;2.595886;2.01596;1.903581;2.578068;1.739854;2.166783;2.244157;2.458252;2.614514;2.210621;2.537993;3.42643;2.710721;2.453272;2.577289;3.254206;2.43077;2.301099;2.952098;2.385088;1.299337;2.432087;2.797348;2.002434;2.377236;2.727833;1.538502;1.897946;2.705485;1.310384;1.732186;1.885553;2.145176;1.377024;1.410625;1.602135;1.392306;2.668284;1.646325;2.071254;2.700352;1.835786;1.686373;1.41915;2.948833;2.047405;1.320704;2.332781;1.959487;2.781066;2.05608;1.524358;2.064495;1.393738;2.114483;1.773169;3.707128;1.558976;1.573147;1.851446;2.790588;1.613409;2.04878;1.871952;2.346805;1.242099;1.777591;2.09938;1.474598;2.745703;1.867272;2.573973;2.464895;2.181279;2.212397;2.395172;1.934259;1.913476;2.347754;2.44607;2.960577;1.856306;1.341999;2.191983;1.319485;1.978775;3.237639;2.223387;2.974294;2.686594;2.352361;3.207805;2.517376;2.585385;2.941235;2.761915;3.155302;2.242297;3.092956;2.724366;2.31754;2.411715;1.873803;2.220375;1.54858;2.939997;1.656612;2.73521;2.515719;2.512678;2.251336;1.937593;2.541078;1.478284;2.704747;2.894808;1.192653;1.980071;1.85676;2.115489;2.159723;1.338069;1.368849;2.573144;
3.454391;1.943145;2.158712;1.720648;1.918907;1.773436;1.511446;1.985158;2.391507;3.015061;1.85747;1.678524;2.772793;1.990713;2.647396;1.4245;1.668303;2.843132;3.149782;2.095236;2.706319;2.648695;2.377558;2.021029;1.869282;2.178258;2.137493;1.933598;2.019563;2.007459;1.961604;1.644877;2.276855;1.689665;2.634941;2.426798;2.132866;2.137239;2.50969;1.632222;1.962532;1.393283;1.554729;2.09225;2.434545;2.204376;2.822115;1.489169;1.282024;1.602932;1.139339;2.531842;1.645846;2.478666;1.597321;1.312402;1.750311;2.531738;2.382288;2.079533;2.310765;2.733888;1.767537;2.208122;2.293993;2.407322;1.845376;2.644907;2.197975;2.876541;1.864969;2.040727;1.372535;1.747302;2.648762;2.866985;3.0297;1.786798;1.900766;2.959635;1.735594;2.662729;3.000374;2.496476;1.9802;1.718918;2.345786;2.969228;2.268499;1.458054;2.332374;2.749963;2.325064;2.783189;1.902011;1.696704;1.955902;2.897762;1.92844;2.467967;2.888059;2.453771;2.350418;1.946807;2.765887;2.651286;2.307693;2.353377;2.614462;2.740917;2.729511;2.128587;1.903221;1.216509;1.772576;1.528676;2.722539;2.488488;2.417154;2.260926;2.352064;2.304475;2.226438;0.8806508;2.413591;3.072119;1.840592;2.96109;2.877544;2.019193;2.201108;1.519858;1.667765;1.852116;1.53135;2.057495;2.212112;2.893532;1.84158;1.612677;2.519872;2.063361;2.879776;1.617544;1.868005;3.043614;3.087222;2.54744;2.654898;2.997525;2.73824;2.082612;1.728982;2.116081;2.146252;1.637585;2.498249;2.173767;1.762287;1.639886;1.880517;1.751698;2.682466;2.212543;1.890771;2.190438;2.549561;1.771738;1.873947;1.309115;1.547265;2.050406;2.227549;2.252279;3.083293;1.736066;1.503042;1.783867;1.107945;3.027809;1.609595;2.825074;1.912644;1.406726;1.662009;2.499885;2.40075;1.832912;2.600824;2.748193;1.586679;2.225486;1.931941;2.474445;2.028357;2.382683;2.001998;2.805186;1.906425;2.099705;1.287609;1.646857;2.648203;2.893105;2.574673;1.682184;2.125562;3.332286;2.027982;2.887867;3.128084;2.947098;1.990734;1.900029;2.733265;2.995743;2.153527;1.428885;2.359252;2.465939;2.616121;2.798266;1.714186;1.712427;1.622685;2.972221;2.115339;2.215604;2.662875;2.388497;2.396893;2.00496;2.644635;2.528005;2.307111;2.37811;2.903352;2.057989;3.003066;2.462543;2.385324;1.56158;2.046099;2.036707;2.665048;2.61527;3.068572;2.322512;2.316037;2.285527;2.653624;1.441073;2.457001;3.061478;1.985965;2.899015;
1.322133;2.231534;1.657116;1.58026;2.939058;2.410682;2.550742;2.362755;2.241839;1.710796;2.101419;1.582142;1.468879;2.092757;2.252086;2.705328;2.116552;1.748233;2.117495;1.857507;1.744868;2.785023;2.124677;3.097404;2.641344;2.575583;2.409972;2.148289;2.625924;3.27039;2.810793;2.675406;2.501069;3.315035;2.534429;2.683445;2.700726;2.537708;2.99367;1.65181;2.834873;1.864315;3.392265;2.694767;2.464046;2.892459;1.847002;2.965348;1.137737;2.323336;2.489728;1.213403;1.787369;2.041459;2.012799;1.980289;1.058243;1.242213;2.603105;2.595122;1.999972;2.469172;2.466724;2.338572;1.969749;2.466639;2.212941;1.877813;2.56623;3.116992;2.565747;2.805773;2.108789;1.974959;3.004207;2.273281;1.905419;2.284547;3.132931;2.42084;2.382966;3.55306;2.536192;2.002303;2.279923;2.459154;1.950752;2.738083;2.538996;1.708155;1.230986;2.179103;1.469936;1.937188;1.862514;1.699929;1.468787;1.684674;1.426975;1.641295;3.104532;2.272822;2.487354;2.923583;1.817436;1.557579;1.926724;2.520944;1.325795;1.598935;2.556966;2.244169;2.032762;1.578505;1.803866;2.242219;1.289006;1.892607;1.86522;3.145304;1.4712;1.35625;1.813542;3.413728;1.639436;2.158251;1.619984;2.286574;1.308604;2.40585;1.934604;1.38147;2.944605;2.476382;2.110875;2.64244;2.43568;1.764265;2.055912;1.660376;1.535566;2.175481;2.000049;2.843642;2.179188;1.792959;1.94169;1.731467;1.877238;2.855643;2.387357;3.732194;2.621288;3.05495;2.243943;2.242586;3.048062;3.01468;2.619272;2.585354;2.452673;3.583834;2.900913;2.372841;2.666965;2.582532;2.507731;1.773032;3.006856;1.964675;3.349209;2.746759;2.498614;2.965981;1.602232;2.990995;1.183555;2.39547;2.332814;1.096713;1.91206;2.055059;2.269641;2.38688;1.045434;1.598169;2.465499;2.779245;2.345717;2.240584;2.359964;2.298739;2.042165;2.630563;2.405814;1.593049;2.426656;3.035858;2.131317;2.807745;2.328819;2.054397;3.013146;2.41804;1.922513;2.392416;2.891586;2.489977;2.579015;3.563145;2.233321;1.823597;2.316656;2.35867;2.218722;3.05108;2.595549;2.097706;1.168379;2.348123;1.769145;1.735334;1.770711;1.666098;1.532262;1.820673;1.5835;1.375857;2.951895;2.203601;2.060796;2.925735;2.023074;1.628279;1.934825;2.673632;1.532396;1.940454;2.245008;1.975423;2.781638;1.888164;1.745334;2.146183;1.530091;1.405631;1.481736;3.286435;1.561025;1.606836;1.892719;3.535368;1.805673;2.340959;1.473624;2.326277;
2.661724;2.427814;2.338493;3.243876;2.380904;2.447082;3.146535;1.756349;1.912419;2.524834;2.123518;1.888668;2.705385;2.705777;2.139645;1.202159;2.666244;1.756529;1.468842;1.738003;1.792701;1.336957;1.057793;1.18689;1.511679;2.93221;1.479075;2.519057;2.349204;1.594267;1.293945;1.437079;2.414868;1.768005;1.128845;2.965772;2.097605;2.553444;1.686453;1.36624;2.313411;1.880401;1.356012;1.442359;3.14478;2.007499;1.089606;1.458497;3.393454;2.321728;2.815212;1.856988;2.908918;1.765176;2.436331;2.156237;1.896737;2.731713;1.814147;2.670375;2.758844;2.747011;1.966804;1.274268;1.672852;1.792795;2.204534;2.565379;2.725538;2.181587;1.457967;1.812186;1.774744;1.872935;2.591206;2.235883;3.243492;2.564133;2.821788;2.437918;2.458014;2.911491;2.748444;2.601743;2.794802;2.468872;2.341653;2.265456;2.495844;2.744449;1.878471;2.89694;1.240022;2.706198;1.500464;2.696967;2.34852;3.118836;2.222612;2.180626;2.576086;1.662218;2.459034;2.271375;1.340644;2.39952;1.697699;1.835374;2.403723;1.614745;1.332101;2.291454;2.625663;3.04797;2.856232;2.569921;2.823726;2.823207;3.129446;2.576237;1.940631;1.945902;1.842759;2.649426;2.697278;2.631589;2.168095;2.489655;2.590623;2.479956;2.321695;3.412906;2.317849;2.410309;3.074624;1.9067;1.896824;2.352607;2.2095;2.327559;2.926387;2.580184;2.137021;1.396759;2.671998;1.478856;1.563585;1.954024;1.699177;1.437083;1.261011;1.084234;1.324471;2.657467;1.276622;2.630255;2.119364;1.566714;1.127566;1.892674;2.381867;1.823229;1.054773;3.064765;2.022882;2.470557;1.67623;1.497414;2.33807;1.749138;1.360431;1.787589;3.368837;1.865118;1.126052;1.700355;3.464497;2.016777;2.863474;2.064375;2.788624;1.842985;2.811382;2.047859;1.731406;2.484271;1.529075;2.749291;2.548438;2.666242;1.862711;1.619431;1.741888;1.875069;2.165318;2.663519;2.658781;1.96612;1.450297;1.864999;1.803682;1.708137;2.614024;2.644096;3.518025;2.402278;3.010564;2.63881;2.637263;2.600373;2.871463;2.852828;2.69608;2.408051;2.712026;2.05255;2.313765;2.456668;1.601344;2.979824;1.100409;2.626867;1.409634;3.190658;2.430062;3.227914;2.183347;2.271803;2.511307;1.475475;2.448951;2.331258;1.365715;2.213197;1.716278;2.207395;2.801962;1.242305;1.63146;2.706083;2.893694;2.720414;2.55276;2.555732;2.511615;2.471615;2.943223;2.704916;2.165178;2.733484;1.791421;2.873202;2.228601;2.679792;1.816264;2.748408;
1.511987;2.842631;2.440747;3.285479;2.567482;1.908425;2.248343;1.329797;2.375929;2.040494;1.553879;2.42921;2.096972;1.992116;2.226807;1.370115;1.415503;2.405395;2.763756;3.005195;2.278188;3.055293;2.950252;1.961611;2.719624;2.907077;1.946006;2.822698;2.352206;2.002754;2.669838;2.268214;2.590288;3.030483;2.497566;2.346244;2.78128;2.655905;2.315952;2.337065;2.958419;2.180522;2.139965;2.61383;2.71353;2.195465;2.716651;2.840426;1.861235;1.23451;2.357795;1.830237;1.95901;1.985241;1.655736;1.31386;1.984675;1.454158;1.032554;2.470641;2.187937;2.590018;2.236061;1.550655;1.203402;1.699809;2.522888;2.044896;1.365089;2.618623;1.909448;2.34623;1.70709;1.31059;2.98433;1.952039;1.842381;1.468703;3.125842;1.717878;1.037008;1.771184;3.589114;2.242688;2.184119;2.17995;2.863333;1.289657;2.502291;2.31917;1.846352;3.472289;2.099061;1.943564;2.425176;2.127266;2.070844;1.939359;1.774354;1.806278;2.426445;1.865902;2.73608;1.834591;1.400342;1.909233;2.112325;2.047599;3.179001;2.429148;3.395106;2.61096;2.470426;2.299716;2.323285;3.121777;3.041987;2.830466;2.915678;2.674855;3.969302;2.292118;2.279686;2.38209;2.236779;2.726233;1.377787;2.240213;1.463902;2.99982;2.853981;3.500247;2.507127;1.824511;2.389756;1.330104;2.286331;1.955584;1.638979;2.265615;2.011262;1.913928;2.249562;1.146518;1.432253;2.199415;2.882015;2.789875;2.132745;2.712412;3.189134;2.385605;3.025955;2.634662;2.186596;3.108723;2.217045;1.827855;3.021288;2.050274;2.546592;3.212939;2.920623;2.475912;2.717087;2.58522;2.521336;2.39668;2.866602;2.111977;2.233595;2.395559;2.600154;2.139187;2.792578;2.565819;1.862127;1.098884;2.458715;1.614933;1.786513;1.73059;1.875553;1.706513;2.227253;1.27523;1.203856;2.637238;2.000087;2.464994;2.496311;1.460521;1.219205;1.805715;2.855525;2.155067;1.392163;2.53811;1.960888;2.374047;1.538131;1.289577;2.935662;1.731842;1.733005;1.462206;3.13737;1.599005;1.080463;1.579124;3.610076;1.993454;2.090648;1.903677;2.984545;1.652227;2.645063;2.132879;1.944334;3.669273;1.916064;1.835381;2.69679;2.021397;2.092453;2.05237;2.055936;1.9099;2.463529;1.797951;2.798485;1.859133;1.248421;1.883851;2.072377;1.822017;3.311972;2.049345;2.903844;2.428203;2.524468;2.297468;2.352963;2.383436;2.655104;2.166415;3.393887;2.035816;3.220809;1.958184;2.138495;2.458664;1.979234;2.305703;1.536369;2.95893;
1.340924;2.119577;2.201364;1.6082;1.682958;2.522955;1.190065;1.576608;1.658517;1.713893;1.477092;1.369189;1.689456;1.465125;2.07068;1.608471;2.780439;2.490108;2.028818;1.645581;1.757656;2.7739;1.238496;1.024278;2.143099;2.469723;2.929461;2.049646;1.800499;2.645951;1.942139;1.847504;1.769836;3.322475;1.833443;1.614164;2.116428;2.788137;1.778336;2.809417;1.93892;1.94463;1.377565;2.625887;2.085691;1.94649;3.176591;1.634344;2.886368;2.438226;2.750827;1.762816;2.176599;1.855581;1.623861;2.089752;2.413282;2.349939;2.179154;1.33418;1.725301;1.892546;2.10988;2.929038;1.59008;2.67652;2.081797;2.090802;2.8108;2.606124;2.392675;2.616854;2.505893;2.743887;2.504288;2.576175;2.97198;2.529894;2.158916;2.142243;3.235808;1.248128;2.923975;1.86461;3.020607;2.925526;2.451672;2.152014;1.577135;2.906161;1.784123;2.849318;2.842472;1.495655;2.722276;2.263016;2.239864;2.538271;1.474376;1.813779;2.907367;2.255695;2.636656;2.858496;2.823117;2.140296;2.26372;2.684679;2.636895;2.015504;2.683952;2.104761;2.843025;2.570957;2.715565;1.837312;2.985046;2.697834;2.130196;2.152466;3.71569;1.774706;2.494451;2.715886;1.842812;1.863957;2.371483;2.363613;1.528635;2.130763;2.207088;1.514615;1.543874;2.981834;1.381817;1.501753;1.74108;1.584442;1.266407;1.085729;1.687698;1.635182;2.34214;1.620945;2.96785;2.522378;1.833982;1.617759;1.769926;2.848067;1.321512;1.000947;2.565577;2.15273;2.641236;1.675187;1.85845;2.578606;1.818668;1.800986;1.928478;3.327032;1.882496;1.557336;1.939374;3.237999;1.961564;2.677742;1.97847;1.806593;1.215211;2.279205;2.067345;2.121501;3.451307;1.599335;2.985898;2.508094;2.583081;1.75155;2.147927;1.930076;1.677663;2.003188;2.772565;2.075532;1.984229;1.156714;1.745795;1.890818;1.793918;2.79233;1.740084;2.752017;2.173526;2.182327;2.67868;2.944699;2.557962;2.55292;2.530124;2.621735;2.187047;2.388343;2.952357;2.779073;2.180664;2.03525;3.340751;1.348163;2.796043;2.002995;3.065048;2.923152;2.471958;2.122473;1.852371;2.643176;1.527225;2.58772;2.868832;1.494754;2.361708;2.143832;2.417342;2.61247;1.551637;1.899665;2.773041;2.572238;2.810107;2.792551;2.848915;2.033161;1.962528;2.493482;3.068954;2.256601;2.462015;1.982413;2.517647;2.645372;2.167901;2.285393;3.371925;2.533671;2.103592;1.984628;3.260749;1.953228;2.002907;3.10138;2.411185;1.489137;2.009267;2.703363;
1.566526;1.927862;2.646387;1.954839;1.81695;2.562949;1.584984;1.627661;1.817077;1.788208;1.405917;2.901233;1.882674;1.823171;2.034891;3.170453;1.766234;1.737395;1.64438;1.883908;2.184443;2.540761;1.819241;2.778262;1.992102;1.331515;1.537436;1.323696;3.274944;1.668282;3.162081;1.707291;1.627838;1.599573;2.783885;2.086159;2.104371;2.313546;2.006413;1.597221;1.794933;1.719274;2.183246;1.724676;2.237252;2.295356;2.519227;1.921111;2.2665;1.81937;1.478294;2.658392;2.619032;2.934984;1.672434;1.878296;2.506862;1.976408;1.967835;3.534176;2.78515;2.239548;1.74441;2.822115;2.364477;2.118779;1.964335;2.350269;2.815653;2.586567;2.198366;1.716933;1.857659;1.667077;2.400527;2.010038;1.970626;2.592912;2.277745;2.891512;2.078441;2.288398;2.829601;2.754205;2.444267;2.479873;2.307532;2.586604;2.803313;2.158171;1.191177;1.840618;2.05419;2.622165;2.987749;2.093782;2.476092;2.133097;2.43648;2.218699;1.06075;1.955368;2.502431;1.718062;2.562692;2.407796;1.678745;1.889529;1.489341;1.898489;1.734262;1.536542;2.29645;2.749506;2.581161;1.837878;1.455368;2.703303;2.01976;2.300289;0.9834762;1.871139;2.151842;3.480204;2.327334;2.92847;2.753204;2.849163;1.783949;2.010611;2.498665;2.133947;1.812315;2.778638;1.938066;1.771887;2.056873;1.918376;1.354384;2.749095;2.233026;1.882221;2.007268;2.770417;2.09043;1.43284;1.708248;1.855117;2.140442;2.370997;1.66741;2.4035;1.878651;1.258072;1.509344;1.185019;3.321153;1.678892;2.992594;1.785674;1.84101;1.69426;2.623075;2.219389;2.085871;2.537239;2.425065;1.719963;2.014191;1.869396;2.099966;1.567039;2.588537;2.379634;2.499052;1.613552;2.652627;1.505103;1.54068;2.596707;2.583384;2.740923;1.552662;1.573134;2.398828;1.8837;1.937781;3.537848;2.723603;2.239518;1.635877;3.029981;2.539716;2.367297;1.829705;2.356823;2.747008;2.881365;2.467426;1.908328;2.015394;1.734416;2.387742;2.038048;2.195589;2.680273;2.278071;2.610424;2.371146;2.064838;2.916104;2.551847;2.366311;2.354715;2.015092;2.296721;2.615819;1.97548;1.221597;1.843385;2.002187;2.622111;2.846279;2.273438;2.656417;2.382562;2.287107;2.225196;1.019354;2.212703;2.790073;1.909609;2.748487;2.488725;1.668772;1.917438;1.991204;1.557973;1.393779;1.9463;2.579041;2.648637;2.316102;1.689109;1.351733;2.561952;2.029376;2.049988;1.177318;1.602306;2.143106;3.263004;2.398949;2.844083;2.712354;3.034973;
1.574811;2.574592;2.494855;1.528524;2.378725;1.646058;1.762067;1.521826;1.607531;3.305495;1.169014;2.530192;2.300194;1.396948;2.117437;2.601068;2.872594;2.772823;2.290274;1.740418;1.509956;2.249524;1.833263;2.627964;1.861645;2.581358;1.842612;2.845398;2.109489;2.465845;1.496263;1.706643;2.586118;2.709179;2.441482;1.519828;1.707583;2.63788;1.741485;2.67659;2.97765;2.85502;1.771232;1.762244;2.987595;2.927313;2.572941;1.592149;3.089504;2.545492;2.702607;1.805107;1.851407;1.436855;1.39495;2.38246;1.427285;2.507318;2.782688;2.081212;2.048412;1.720423;2.313009;2.735493;2.23415;2.685437;2.36259;2.005345;2.392096;2.685934;2.782901;1.097475;2.540387;2.202171;2.185469;2.448794;2.732517;2.145674;2.736233;2.497118;2.751505;1.350495;1.935079;1.940442;2.058535;3.108384;2.548206;2.21198;2.104933;1.862743;1.535067;1.953207;1.717849;2.377653;2.632184;3.129663;1.750056;1.500783;2.552846;2.046484;2.592954;1.305956;1.841867;2.90566;2.913823;2.419327;2.776333;2.962172;2.986272;2.009049;2.24771;2.451206;2.817303;1.783015;2.415341;1.495187;2.041041;1.453639;2.073986;1.463684;2.370974;2.684827;1.927158;1.99407;2.261271;1.356807;1.597875;1.273931;1.789078;2.170754;2.530219;1.46301;2.417652;1.676292;1.595501;1.316553;1.449871;3.112144;1.259406;2.484266;2.123132;1.338918;2.0099;2.776363;2.973521;2.905622;2.120457;1.843892;1.597766;2.733243;2.205754;2.854695;2.058372;2.711096;1.91293;2.806245;2.222394;2.471379;1.470062;1.446746;2.814934;2.342086;2.463983;1.405909;1.709451;2.610065;1.514015;2.384797;2.726648;2.735165;1.878029;1.6776;2.752026;2.780441;2.381663;1.745554;3.169624;2.729849;2.523637;1.888559;1.930021;1.775789;1.670079;2.617933;1.582414;2.691562;2.874973;2.114074;2.267817;1.760306;2.345838;2.403317;2.556691;2.444583;2.419441;1.844316;2.24756;2.54648;2.459397;0.9145939;2.30714;1.988822;2.22269;2.444432;2.644925;2.114741;2.608135;2.687965;2.944429;1.585704;1.814628;1.996307;2.003023;3.469484;2.879158;2.441234;2.2907;1.916282;1.536204;1.985716;1.919185;2.425229;2.667224;2.774297;2.036875;1.322608;2.612004;1.88443;2.442313;1.209794;1.580566;2.603527;2.663738;2.196027;2.818344;2.958563;2.240658;1.723114;2.3287;3.226462;3.003631;2.137541;2.534408;1.531336;1.818773;2.013501;1.597199;1.763381;3.28364;2.32908;1.560779;1.768001;2.549882;1.682213;1.554658;1.571012;
3.170508;2.942292;1.837085;2.097337;2.780434;1.762836;2.723861;2.517485;2.285713;2.147207;1.960412;2.578858;2.631085;2.14801;1.808084;2.616752;2.724574;3.071727;2.496196;2.10963;1.584261;1.530651;2.993953;1.752262;2.585675;2.28645;2.363457;2.228393;1.489836;2.250289;2.59391;1.956479;2.958152;2.347191;2.325603;2.368858;2.775714;2.279951;1.972056;1.606447;1.836773;2.60241;2.545455;2.38193;2.1965;2.211023;2.313973;2.123737;1.147129;2.161234;3.088466;1.599322;2.849108;2.872202;2.692987;2.463051;1.721026;1.720822;2.217032;2.334041;2.198461;2.393775;1.9847;1.612868;1.49405;2.808301;1.992201;2.79918;1.179709;1.664242;2.66258;2.588518;2.148429;2.795907;3.131161;2.6107;1.640622;1.675369;2.684562;2.323408;1.587723;2.949208;1.864115;2.07045;1.56336;1.644279;1.671264;2.372712;2.693543;1.554355;2.076666;2.441522;1.183509;1.564829;1.395858;1.126976;2.291231;2.267872;1.81672;2.247406;1.979625;1.571235;2.192397;0.9820009;3.322572;1.59764;2.612886;1.797701;1.264883;1.422496;2.735352;2.090026;1.939366;2.448439;2.52185;1.395312;1.978158;1.911027;2.737145;2.267648;2.909626;2.260189;3.199413;2.451221;2.183123;1.553698;1.307666;2.545055;2.895892;2.945078;1.532667;2.084503;2.614105;1.88925;2.362977;2.966894;2.844285;1.927353;2.017126;2.816371;2.317068;2.203687;2.07475;2.740219;2.689574;2.744143;2.177279;2.151037;1.632729;1.559524;2.564887;1.948495;2.836971;2.353119;2.313208;2.101384;1.531058;2.351553;3.113751;1.954949;2.756618;2.429966;2.018301;2.365827;2.645798;2.431883;1.593193;1.982473;2.388898;2.443321;2.641143;2.624798;1.929581;2.276207;2.507604;2.239982;1.138218;1.958375;2.761839;1.638462;2.905566;2.91638;2.185508;2.700086;1.945092;1.847508;2.194836;2.030649;2.299679;2.488996;2.299487;1.701254;1.500731;2.78751;1.798151;2.770613;1.134318;1.79464;2.426114;2.923254;2.568782;2.572185;3.230737;2.662381;1.457279;1.720649;2.737185;2.555206;1.737683;2.604575;1.699649;2.093381;1.652571;1.677913;1.436044;2.479033;2.792082;1.628092;2.050809;2.13097;1.25881;1.641911;1.662605;1.201108;2.300364;2.249213;1.63232;2.221803;1.921599;1.69792;1.979298;1.192137;3.84186;1.429677;2.704794;1.840714;1.585784;1.457028;2.68643;2.799926;2.621391;2.376773;2.337148;2.042572;2.677696;1.438347;2.728796;1.91365;3.003849;1.728253;2.443979;1.72881;1.863822;1.625988;1.804453;3.169897;
2.750422;3.049405;2.66905;2.006823;2.134156;2.420394;2.950082;1.50797;2.242779;1.899115;1.622409;1.663134;1.51244;1.839148;3.11993;2.666083;1.533499;1.869375;2.875109;1.586299;1.437595;1.014312;1.16517;2.708604;2.574763;2.157987;2.195746;1.761713;1.55692;1.893023;1.426954;2.668508;1.522516;2.455859;1.576923;1.074758;1.836792;2.398576;2.412529;2.36005;2.581827;2.376045;1.25172;2.300472;1.998396;2.681015;1.983028;2.823642;1.925215;2.718963;2.104519;1.507198;1.773198;0.8168309;2.821087;2.730322;2.415758;1.07609;1.852964;2.87554;1.782197;2.658469;2.919674;2.773465;1.967888;1.668474;2.649497;2.698503;2.497315;1.7853;3.159368;2.263792;2.503754;2.423972;1.510883;1.759117;1.137405;2.794785;2.250815;2.406723;2.39027;2.07211;2.739869;1.948149;2.229613;2.123638;1.947387;2.973653;2.578421;2.469774;2.219737;2.767259;2.152423;1.275334;2.066352;1.589905;2.522606;2.232793;2.208878;1.751579;2.666792;2.238101;2.544465;1.36126;2.317934;2.889265;1.61226;3.353347;2.870303;2.188734;2.328355;1.937599;1.624756;1.921756;1.800409;1.524578;2.78463;1.881068;2.009406;1.530371;2.56442;1.752744;2.815922;1.242572;2.038074;2.609038;3.079679;2.253241;3.112547;3.24646;2.508525;1.995497;1.923164;2.653509;2.810777;1.371168;2.140565;2.060831;1.594239;1.712384;1.350374;1.518933;3.120921;2.303705;1.632267;1.686471;2.888671;1.807523;1.309196;1.233776;1.119641;2.546402;2.579461;2.417381;2.288945;1.773921;1.594896;1.635093;1.450214;2.429156;1.861063;2.621717;1.454431;1.084473;1.662428;2.594831;2.300381;2.271575;2.557665;2.553167;1.233079;2.392462;1.838325;2.262905;2.00147;2.509661;2.088507;2.532702;2.124341;1.724154;1.633363;1.020155;2.771083;2.62829;2.477717;1.286197;1.946675;2.697346;1.906441;2.523441;3.065062;2.589267;2.310115;1.823574;2.522147;2.71898;2.276704;1.94527;2.902158;2.096362;2.392322;2.544019;1.527128;1.684835;1.077399;2.532052;2.36871;2.172715;2.529726;1.928546;2.796695;2.198895;2.057285;2.434065;1.80405;2.774995;2.551872;2.723246;2.367928;2.59327;2.288877;1.18277;2.188909;1.451669;2.908132;2.412451;2.092677;1.768715;2.438773;2.417401;2.314162;1.232572;2.21065;3.021062;1.628988;3.251725;2.868838;2.386919;2.22627;1.809446;1.791361;1.798342;1.805076;1.953673;2.555021;2.903348;1.968813;1.253638;2.60506;2.032823;2.874622;1.530921;1.672821;2.442945;3.242409;1.659153;
1.953968;1.878807;2.844552;2.441001;2.658928;2.20971;1.548933;1.655093;1.276929;2.642777;2.093613;2.194878;2.250454;2.84989;2.417191;2.183597;2.536455;2.899721;2.45149;2.613739;2.382363;2.220342;2.631113;2.617531;2.90646;1.439808;2.613778;1.979277;2.853171;2.643279;2.719998;2.420367;2.432414;2.355711;2.56049;1.583289;2.414141;2.820412;1.752883;3.014011;3.038751;1.604933;2.524427;1.579905;1.225985;2.347589;1.96211;2.591893;2.295164;2.746343;1.779842;1.374327;2.460029;2.052784;2.192455;1.528191;1.815355;2.263333;3.378837;2.218442;2.597235;2.6472;2.274011;1.513948;1.658964;2.495272;2.684125;1.798957;2.417387;1.602863;1.449117;1.828755;1.507703;1.287262;2.903322;2.139664;1.717448;2.495784;2.528;1.779131;1.782237;1.711468;1.684289;2.413153;2.517451;1.835791;2.771743;1.965481;2.121539;1.884618;1.744532;3.233515;1.775999;2.73711;2.13348;1.503514;1.871444;2.729195;2.692993;2.908698;2.869951;2.293819;1.489059;2.321381;2.185132;2.103538;2.204693;2.555288;1.714872;3.042696;2.406821;2.357087;1.311065;1.556054;2.598283;2.714983;2.557366;1.646369;1.648515;3.359259;1.885336;1.843175;3.478278;2.571494;1.847977;1.507397;2.216704;2.616837;1.951446;1.867722;2.514889;2.450791;2.701478;1.885575;1.678308;1.772097;1.384374;2.655082;2.17946;2.615525;2.497562;2.630394;2.41328;2.450354;2.515795;2.731276;2.348288;2.596628;2.213561;1.788337;2.774264;2.765728;3.086095;1.244209;2.538129;1.968278;3.185468;2.541441;2.674011;2.407264;2.400158;2.389793;2.270547;1.550947;2.417967;2.431428;1.883768;3.024312;3.156866;1.655597;2.631358;1.898043;1.371772;2.129172;1.939417;2.768075;2.275241;2.604118;1.720799;1.344928;2.278822;1.597534;2.324356;1.55632;1.957833;2.035457;3.333097;2.175816;2.727073;2.654607;2.220049;1.645561;1.558622;2.480454;2.448851;1.695265;2.409218;1.434548;1.575399;1.826595;1.554756;1.376734;2.995838;2.497146;1.747335;2.423361;2.489803;2.085598;1.688074;1.56038;1.678375;2.294173;2.32274;1.532387;2.930449;1.986825;2.232681;1.726657;1.695973;3.182051;1.884498;2.744622;2.082101;1.634787;1.765689;2.713783;2.458384;2.776467;2.862109;2.091535;1.617807;2.319072;2.242736;2.217572;2.28643;2.945054;1.733388;2.931244;2.568407;2.737744;1.500048;1.251359;2.157242;2.97319;2.821663;1.061695;1.933317;3.523116;2.071898;2.018506;2.753561;2.232691;2.002909;1.616214;2.908035;3.056056;
2.234637;2.921119;2.824493;2.584858;1.985682;1.848017;2.890065;2.449487;2.894008;2.913814;1.552854;2.052668;1.277567;1.120201;1.383895;1.755734;1.769084;2.598531;2.027393;1.569905;1.410019;2.476179;1.578959;2.88061;1.353395;2.213272;3.038419;3.229971;2.150146;2.216999;2.843657;2.78305;1.563205;1.738051;2.825224;2.736455;1.541129;2.216376;2.223087;2.2;1.805088;1.938999;1.621796;3.061459;2.74402;2.003915;1.768328;1.908149;1.363119;1.905878;1.593117;1.588957;2.597776;1.99851;1.881921;2.514238;1.836188;1.696564;2.145926;1.628659;3.436719;1.436557;2.749257;2.193469;1.435469;2.092546;3.101184;2.373895;3.219405;1.9993;2.462298;2.102437;2.12077;2.024097;2.069612;1.953759;2.031612;1.427506;2.118305;1.948088;1.837764;1.411541;1.074665;2.260435;2.419894;2.536927;1.225652;2.043542;2.930178;2.007822;2.863715;3.305409;2.741687;1.558077;1.669437;2.728994;2.402341;2.207262;1.880436;2.575025;2.247559;2.330099;2.735106;2.143313;1.967114;1.666158;2.698173;2.606784;3.029401;2.953999;2.192358;2.042426;1.961119;2.778393;2.906372;2.319833;2.943469;2.040994;2.207899;2.88355;2.679078;2.928052;1.54282;2.613354;2.291076;2.50597;2.950189;2.674262;2.281227;2.709688;2.856245;2.736928;1.907479;1.820168;2.543088;2.376213;2.935725;2.894619;1.68862;1.962476;1.438398;1.04866;1.403282;1.838694;1.819891;2.660215;2.221299;1.507208;1.354249;2.615428;1.556223;3.085439;1.284338;2.450666;2.838853;3.35912;2.240978;2.289218;3.056036;2.655629;1.630618;1.585873;2.757048;2.833307;1.459193;2.143893;1.966156;2.128064;1.875295;1.941163;1.688489;2.899094;2.964263;1.87306;1.838891;2.024915;1.448836;1.974335;1.702224;1.512995;2.521216;2.084747;1.916009;2.741045;1.80143;1.920506;1.911396;1.578008;3.432693;1.461265;2.830808;2.064775;1.375026;1.899504;3.112641;2.623523;3.233579;1.912935;2.231213;2.088168;2.112915;2.089483;2.17348;1.691241;2.129086;1.316735;2.086221;2.05041;1.794661;1.448559;1.216632;2.319698;2.462477;2.614254;1.283217;2.308216;2.789747;2.318115;2.623302;3.233823;2.738206;1.58445;1.733019;2.586067;2.323833;2.009548;1.889465;2.835449;2.259508;2.237553;2.491128;2.129672;1.959436;1.726157;2.816718;2.30266;2.217772;3.030483;2.164111;3.102386;2.326178;2.362646;3.364374;1.955913;2.999328;2.988443;2.418574;2.618652;2.594816;2.732531;1.665774;2.89191;1.93071;2.517263;2.99788;2.808843;
2.467064;2.445379;1.52484;1.926055;2.879996;2.500069;2.680105;2.96134;2.312222;2.518198;2.475946;2.523674;2.842515;1.745923;2.67351;2.643741;1.854844;2.040789;2.040073;2.123287;2.514136;2.221788;1.960534;2.069039;3.271903;2.070078;2.788713;2.762015;1.930616;1.721376;1.918272;2.265177;1.569302;2.892114;2.613226;1.66173;1.171963;2.42801;1.351856;1.545559;1.730179;2.66032;1.630375;1.097304;1.681237;1.843815;2.565678;1.792756;2.20569;2.633877;1.807873;1.530822;0.9496165;2.670836;1.045397;1.820071;2.537437;2.083785;2.284033;1.92135;1.346313;2.75573;1.749452;1.625689;2.042781;3.281607;1.928191;1.521791;2.254803;3.239203;1.92419;2.901972;1.616101;2.512205;1.600213;2.188879;2.136964;1.687828;3.327796;2.321266;2.143775;1.899763;2.04615;1.795269;1.761551;1.429699;1.446884;1.930001;2.433966;2.563323;2.211822;1.323416;1.819365;1.611977;1.515654;2.722355;1.862146;3.352511;2.546878;2.388564;2.207137;2.477045;2.441919;2.996347;2.491056;3.712903;2.560789;2.389636;2.736341;3.061543;2.37528;2.362378;2.786346;1.505643;2.54254;1.7393;1.966126;2.83617;2.113173;3.239904;1.931661;2.924036;1.086812;2.710864;2.034978;1.815968;2.417907;1.777511;2.541103;2.291162;1.278374;1.571811;2.548072;2.684039;2.433279;2.702153;2.427528;2.280452;2.370451;2.670143;2.657066;1.505257;2.52237;2.87416;2.166545;2.277065;2.129386;2.186209;2.788525;2.11149;1.886644;2.251435;3.332101;2.211702;2.593136;2.607218;1.980289;1.951253;2.166975;2.263906;1.644577;2.742292;2.291403;1.296497;0.963114;2.637766;1.221349;1.405047;1.837661;2.43556;1.539695;1.161208;1.527317;1.618645;2.465837;2.028838;2.523645;2.918135;1.884242;1.537854;1.091424;2.573526;1.020959;2.036978;2.569795;2.240608;2.099326;1.812987;1.364453;2.985496;1.923555;1.571327;1.96092;3.191844;1.746167;1.254585;2.011176;3.468524;1.805972;2.644711;1.662115;2.26826;1.583613;2.35837;1.974427;1.413933;3.132398;2.521712;2.277202;2.200975;2.233041;1.903769;2.003346;1.351025;1.452871;2.096565;2.397238;2.708897;2.115852;1.233742;1.841335;1.788702;1.678686;2.651794;1.784855;3.261775;2.338031;2.050533;1.967095;2.677967;2.30932;2.734761;2.549096;3.414992;2.540847;2.566704;2.715408;2.225582;2.36272;2.720022;2.98162;1.564604;2.243641;2.039514;2.870987;2.841691;2.266532;2.924399;1.841565;2.91257;1.387089;2.304872;2.167168;1.57537;2.007711;2.229373;
3.345067;1.911591;1.994385;2.735689;2.236351;2.014569;2.06892;2.22232;1.583878;2.350752;2.339502;1.611751;1.459097;1.999599;1.455122;2.14576;1.828706;2.106018;1.29952;1.249493;1.521545;1.12467;2.204791;1.494077;2.166648;2.781273;1.963885;1.586149;1.886425;2.70741;1.657997;1.633902;2.998582;2.241982;2.958801;1.997195;1.601162;2.181752;2.0735;1.854273;1.786715;2.721772;1.903274;1.592091;2.443417;3.134331;2.218449;2.774394;1.931442;2.641963;1.641298;2.345988;2.530882;1.576618;2.822001;1.683521;2.12514;2.284839;2.106471;1.265299;1.817108;1.306387;1.338279;2.667814;2.390461;2.163243;1.607401;1.09487;2.002155;1.990259;1.610518;2.795336;1.862695;3.151014;2.178687;2.342254;2.616768;1.887969;2.817982;3.543335;2.766794;3.251313;2.040491;2.645538;2.605162;2.0775;2.007104;1.816719;2.630973;1.482574;2.756393;1.880707;3.006021;2.498911;2.716047;2.809203;2.134338;2.660016;1.731274;2.721139;2.531293;1.141673;2.630116;1.985069;2.155742;1.987844;1.429459;2.022858;2.94989;2.47846;2.981107;2.865355;2.826856;2.595831;2.531209;2.363869;3.112981;1.910906;2.724345;2.124963;2.321418;2.620075;2.057557;1.548089;2.465799;1.929153;1.802164;2.668713;3.434101;2.215607;1.743472;2.533417;2.240443;1.949584;1.919721;2.100587;1.695061;2.250156;2.49428;1.619026;1.237233;1.908983;1.319368;2.103768;1.91562;2.109736;1.275524;1.201054;1.664323;1.341621;2.731474;1.545649;2.404488;2.839302;1.912264;1.690825;1.717902;2.639455;1.642431;1.613019;3.013422;2.561329;2.70327;1.865662;1.58616;2.088445;1.875773;1.718302;1.85716;2.612486;2.09639;1.643693;2.136782;2.995692;2.004992;2.665293;1.947349;2.684477;1.661813;2.299852;2.667321;1.84488;3.356365;1.689652;2.281614;2.373477;2.106776;1.344658;1.668112;1.353196;1.325282;2.601219;2.443078;2.471983;1.415881;1.074828;1.989024;1.852155;1.396489;2.645523;1.956751;2.919082;2.364202;2.365023;2.362304;1.878722;2.578223;3.374695;2.828414;3.292874;2.057951;2.719941;2.748458;2.329675;2.408493;1.838631;2.831562;1.473163;2.734282;1.977779;2.813543;2.564324;2.697594;2.74174;2.184144;3.001966;1.532192;2.690172;2.516592;1.038207;2.354556;1.859876;2.256911;1.805092;1.580356;2.044586;2.004019;2.297812;2.336832;2.569492;3.189373;2.62234;2.202648;2.309616;2.31739;1.960419;3.007398;1.897775;2.266261;2.257196;2.624956;1.994415;3.151083;2.223211;2.019766;2.11318;
2.441413;2.926666;2.039829;1.693808;2.047689;1.652969;1.76968;3.190161;2.071836;2.676969;2.565905;2.691736;2.403844;2.550735;3.088792;2.970316;2.875476;3.456075;2.379189;2.79052;2.69422;2.474458;2.060661;2.152404;2.953927;1.119346;3.141027;1.656034;2.267852;2.571086;2.695334;2.376657;1.587752;2.46183;1.388844;2.460922;2.818516;1.447109;2.139361;1.729416;1.887944;2.174989;1.642712;1.376288;2.71897;2.458286;2.465317;2.516376;2.956654;2.642624;2.247762;2.645609;2.868855;2.120083;2.318407;2.0496;2.253138;2.555359;3.177984;2.422779;3.004415;2.734336;2.475651;2.756619;3.374193;2.443361;2.527291;3.437697;2.370727;1.865334;2.272002;2.715233;1.894267;2.170783;2.64101;2.05878;1.478612;2.779082;1.71457;1.708921;2.054956;2.404766;1.465781;1.177552;1.594692;1.59549;2.167465;1.577279;2.614035;2.363524;2.256038;1.479984;1.310386;2.562468;1.530954;1.344251;2.276013;1.867893;2.435047;1.61673;2.012559;2.60114;1.571532;1.524329;1.478331;2.895025;2.079565;1.277213;2.252517;3.022854;1.647847;2.4754;2.075105;2.47115;1.466089;2.143131;2.485421;1.916343;2.946858;1.461131;2.32122;2.359599;2.793483;1.817367;2.072711;1.995418;1.770173;2.400131;2.596643;2.879341;1.946848;1.724465;2.170462;1.697661;1.659561;3.088073;2.435219;2.482688;2.339171;2.719434;2.560499;2.521254;2.617929;2.758902;3.063665;3.470958;2.466339;2.831015;2.639733;2.91428;2.083558;1.949083;2.994417;1.040588;2.813324;1.652995;2.385513;2.82184;2.603086;2.25822;1.705374;2.441547;1.305539;2.443851;2.946512;1.503684;2.039588;1.634804;2.21567;2.02394;1.446532;1.357788;2.855006;2.448079;2.055618;2.323064;3.169888;2.65264;2.334377;2.657473;2.826064;2.51823;2.374273;1.85192;2.307809;2.432608;2.850308;2.18786;3.046969;2.992706;2.474956;2.638089;3.512544;2.546001;2.421673;3.580583;2.434796;1.844864;2.2894;2.715094;2.194971;2.011215;2.323552;1.847573;1.503974;2.77926;1.442837;1.557125;2.207916;2.537317;1.541886;1.282677;1.520805;1.858253;2.344144;1.492222;2.643707;2.236517;1.921135;1.297783;1.339199;2.812751;1.53122;1.261947;2.390905;1.957889;2.332242;1.715289;2.072442;2.576935;1.586835;1.524307;1.746137;2.710421;1.799752;1.112643;2.112027;2.597839;1.954259;2.333434;2.044187;2.769875;1.30767;2.699719;2.427513;2.134125;2.734142;2.166781;2.300954;1.948337;2.316163;2.019346;2.284954;1.524641;1.806705;1.997595;
1.807205;1.820097;2.785135;2.56112;3.100476;2.467943;2.768063;1.988665;2.25032;1.866462;2.292911;2.197933;1.81951;1.294228;2.406027;1.756984;1.911721;1.619758;1.340986;2.150576;2.211818;2.048413;1.632486;2.107719;2.648752;1.54259;2.195566;3.083906;2.378957;1.589161;1.6942;2.186929;2.845804;2.337732;1.805686;2.573651;2.562061;2.376732;2.258025;1.712995;1.596424;1.190279;2.378538;2.265486;2.577715;2.518046;2.633678;2.707954;2.192055;2.658292;2.843644;2.467739;2.785712;2.614508;2.17784;2.242563;2.625252;2.444531;1.281842;1.967548;2.250407;2.822469;2.77154;2.807717;2.761328;2.461241;2.418881;2.398677;1.834002;2.320292;3.230335;2.22464;3.077752;2.764796;1.913135;2.213835;1.237781;1.153245;1.646044;1.329316;1.87106;2.697819;2.371132;1.314174;1.128198;2.095016;2.06987;2.820975;1.139317;1.666179;2.389546;2.826025;2.149906;2.409535;2.882187;2.257427;1.997677;2.111372;2.631987;2.321151;1.7667;2.2642;1.887505;1.700773;1.68353;1.588994;1.439413;2.850723;2.672423;1.853503;2.336198;2.664442;1.892869;2.023582;1.447757;1.587675;2.417641;2.766182;1.467999;1.898283;2.080268;2.006679;2.132086;1.041369;3.462377;1.77247;2.90374;1.945598;1.958249;1.854365;2.733847;2.951591;2.889888;2.512038;2.686872;1.739946;2.300064;1.958161;2.523682;1.925774;2.046222;1.535587;2.268319;1.835078;2.044669;1.372439;1.501554;2.270398;2.459197;2.428905;1.389198;1.818213;2.982953;1.781001;2.667286;2.804179;2.449237;1.710462;1.661644;2.05768;2.989161;2.42487;1.753759;2.895499;2.334742;2.357304;2.112221;1.469259;1.61157;1.304615;2.608369;1.939193;2.812396;2.78814;2.417437;2.824828;2.312633;2.391463;3.081599;2.570451;3.039508;2.974684;1.841186;1.960313;2.934021;2.799632;1.652013;1.905996;2.179801;2.724719;2.769197;2.66238;2.854777;2.526551;2.465842;2.818008;1.651645;2.250009;3.000114;2.024748;3.052671;2.762687;2.007735;2.081137;1.309379;1.209385;1.504942;1.412368;1.943268;2.405895;2.701579;1.467612;1.300079;2.36695;1.700339;2.593607;1.315376;1.819476;2.75544;2.752948;2.080847;2.319996;2.879826;2.127909;2.07738;2.172472;2.681039;2.734712;1.587756;2.195472;1.712547;1.527094;1.665087;1.58789;1.521679;2.701003;2.380891;1.437518;1.798892;3.229071;1.514715;1.934162;1.802227;1.786306;2.254031;3.105667;2.009335;1.937186;1.838719;1.757004;2.319269;1.52021;3.464044;1.756797;2.526067;2.237556;
2.008133;1.952405;1.462651;2.058279;1.60664;1.980787;2.346488;1.942605;1.9925;1.487636;2.510418;1.50104;2.863986;1.164655;2.133249;2.634519;2.81838;2.179488;2.85308;3.208781;2.461858;1.889444;2.198752;2.798053;2.746698;1.62273;2.425594;1.848587;1.764138;1.744846;1.465135;1.651011;2.705024;2.573687;1.439977;2.050224;2.542863;1.973147;1.31339;1.183261;1.025127;2.445597;2.387522;2.255152;2.447545;1.809753;1.61535;1.566705;1.327175;2.34456;1.615885;2.585255;1.690022;1.076121;1.964272;2.834313;2.352188;2.472767;2.928422;2.386738;1.489487;2.647007;2.225654;2.897923;1.889067;2.857561;1.793779;2.959907;1.913486;1.869613;1.542021;1.005045;2.87627;2.725069;2.688547;1.186104;2.007458;2.741949;2.129315;2.680139;3.152642;2.482641;2.065917;1.863489;2.663951;2.841384;2.658816;2.08328;2.823032;2.244598;2.629059;2.266567;1.72741;1.825549;1.2983;2.986909;2.351731;2.548558;2.035627;2.246885;2.554839;2.347701;2.004322;2.373159;1.758574;2.901455;2.649397;2.515891;2.298885;2.694944;2.416403;1.355578;2.264323;1.412454;2.748435;2.389077;2.410375;1.820699;2.396657;2.300172;2.088813;1.275716;2.598474;2.603737;1.760513;3.2974;2.917611;2.344213;2.276123;1.969562;1.427844;1.767035;1.775278;2.032546;2.899867;2.212882;1.854603;1.416783;2.767545;1.563495;2.763078;1.135563;2.070147;2.996486;2.699672;2.472937;2.538915;3.031611;2.3809;1.868159;2.00431;2.500511;2.547151;1.423714;2.49514;1.809265;1.688384;1.729612;1.416989;1.815821;3.081889;2.677693;1.436587;1.76883;2.791661;2.032569;1.659579;1.407205;0.9574138;2.437514;2.669668;2.345089;2.375255;1.780981;1.478421;1.852702;1.260421;2.731946;1.402617;2.430315;1.61714;1.062909;1.691408;2.53979;2.186943;2.301996;3.035872;2.443624;1.502932;2.649915;2.228153;2.974703;2.01019;2.917412;1.875829;2.690881;2.109206;1.875605;1.886521;1.195801;2.813126;2.70987;2.918948;1.323257;2.045749;2.723828;2.03058;2.911972;2.818451;2.832601;1.910647;1.790642;2.549883;2.757011;2.308696;1.811844;2.692651;2.076224;2.666296;2.321998;1.742749;1.827874;1.300993;3.06494;2.487553;2.60512;2.123751;2.013305;2.781341;2.354312;2.395716;2.661919;1.710019;2.885795;2.879055;2.714033;2.432739;2.054474;2.658624;1.820225;2.410516;1.870239;2.88911;2.196496;2.733641;2.316922;2.291191;2.47163;2.104578;1.226984;2.326802;2.449734;2.39273;3.226898;2.874571;2.115506;
1.92632;1.786836;2.28444;2.011063;2.88544;2.566876;2.389198;2.84054;2.296324;2.736344;2.782395;1.63755;2.652159;2.018655;2.751112;2.443138;2.536982;2.348091;1.639294;1.934854;2.040165;2.438813;2.435606;2.443078;2.60864;2.902266;2.398091;2.886283;1.674181;2.149238;2.871437;1.751817;2.742304;2.986994;2.175813;2.070754;1.513005;1.512168;2.306531;1.568247;2.046223;2.261186;2.622257;1.672306;1.025285;2.067625;1.451586;2.465726;1.276507;2.239177;2.588257;3.137086;1.903537;2.351802;2.996644;1.799685;1.954621;1.878818;2.452893;2.103786;1.972812;2.400295;1.590133;1.487707;1.731726;2.074046;1.069431;2.665169;2.851048;1.751104;2.224017;2.810631;1.835019;1.968725;1.362541;0.9441212;2.546698;2.173857;2.395686;2.54249;1.672369;1.551444;1.962532;1.198037;3.3003;1.590493;2.522369;1.91878;1.701803;2.085978;2.559655;2.806606;3.092865;2.640422;2.691541;1.42744;1.989853;2.17539;2.614662;1.806074;2.16898;1.997148;3.337965;2.003601;1.901366;1.277839;1.556201;2.451568;2.216722;2.313103;1.159528;1.82505;2.80246;2.257353;2.286966;3.246;2.271133;1.732896;1.596494;2.049376;2.790568;1.985192;1.662466;2.054875;2.81192;2.627396;2.218483;1.520985;2.206023;1.647694;2.216855;1.979284;2.589589;2.689235;2.234717;2.943871;2.272363;2.747959;2.890319;1.725114;2.91654;2.398975;2.769194;2.391;2.343376;2.531834;1.513804;1.957555;2.09981;2.639416;2.215701;2.599463;2.335024;2.571097;2.348209;2.611564;1.740004;2.197724;3.138096;1.767991;3.160725;2.794602;2.110207;2.062959;1.319978;1.578148;2.168063;1.717787;2.101133;2.268824;2.736137;1.790403;1.213552;2.422571;1.479663;2.472444;1.180016;2.453003;2.438688;3.167013;1.964945;2.556853;2.773264;1.987129;1.767237;1.64255;2.41137;1.932672;1.857024;2.287561;1.798679;1.521744;2.104699;1.908279;1.129775;2.616167;2.640975;1.717627;2.095492;2.896309;1.87376;1.969258;1.451768;1.079053;2.613618;2.362895;2.441811;2.57432;1.59414;1.725096;1.974071;1.189802;3.447319;1.657728;2.325497;2.017979;1.515285;1.830917;2.526144;2.609169;2.947584;2.522729;2.960891;1.461244;2.388231;2.006245;2.708485;1.766406;1.986377;1.961925;3.180036;2.076588;1.940688;1.278833;1.65141;2.66737;3.144656;2.591201;1.623039;1.789894;2.579388;1.962916;2.272168;2.865333;2.837704;1.877915;1.921548;2.79027;2.881788;1.868933;1.634676;2.260875;2.587162;2.592945;2.651762;1.530496;
2.042211;1.820477;1.401446;1.744392;2.382171;2.474417;1.501444;2.477694;1.334512;2.104482;1.998894;1.761895;2.926472;1.557611;2.33342;1.901537;1.550274;1.616859;2.951892;2.77253;2.656824;2.307645;2.376714;1.911154;2.293487;2.124154;2.257166;1.807216;2.749221;1.934274;2.927294;1.9028;2.91026;1.684831;1.142576;2.353081;2.36143;2.330952;1.688408;1.337079;2.794173;1.437109;2.539377;3.314424;2.951683;1.541157;2.005825;2.344085;2.667429;2.167312;1.355496;2.919333;2.605314;2.453697;1.691483;1.724031;1.412406;1.350651;2.434427;2.224791;2.785429;2.227183;2.407632;2.9149;2.289114;2.509727;2.729449;2.574925;2.841241;2.661855;1.872997;2.804105;2.051938;2.901989;1.400297;2.645367;1.806549;2.568444;2.11237;2.604612;2.396333;2.351577;2.802681;2.754822;1.681663;2.209684;2.506138;2.430753;3.053522;2.868601;1.703028;1.964411;1.8383;1.560457;1.962976;1.536126;2.754238;2.854126;2.357177;1.571845;1.185091;2.447702;2.085189;2.095266;1.146935;1.33466;2.64852;3.14477;2.465338;2.220421;3.14405;2.234275;1.763581;1.738743;2.217223;2.723691;1.89712;2.397392;1.343259;1.732796;1.440612;1.469318;1.398494;2.916543;2.457972;1.650396;2.286668;3.06226;1.92257;1.808655;1.591035;1.841251;2.737391;3.055806;1.434426;2.922989;1.324965;2.155709;2.104608;1.738577;2.748669;1.704426;2.605779;1.970757;1.377746;1.474544;2.914344;2.755446;2.648327;2.472961;2.554577;1.995484;2.280695;1.969025;2.175433;1.567388;2.465432;2.146908;2.912155;1.94958;2.735661;1.712789;1.331397;2.415185;2.676436;2.872779;1.61124;1.562595;2.736954;1.5186;2.670965;3.22818;2.719731;1.669841;2.238653;2.316612;2.439221;2.020911;1.35556;2.876915;2.586563;2.572036;1.843013;1.71399;1.402233;1.242315;2.383394;2.026294;2.474812;2.447955;2.467999;3.023582;2.255879;2.477182;2.853762;2.606012;3.06606;3.106635;1.804408;2.967097;2.070187;2.988602;1.53366;2.670349;1.613914;2.77962;2.424405;2.622822;2.302999;2.137695;2.645722;2.679743;1.580649;2.210293;2.706445;2.278745;3.122422;2.682559;1.698333;1.778201;1.588471;1.746086;2.018385;1.615399;2.718908;2.819499;2.473864;1.596183;1.332524;2.8749;2.013647;2.236593;1.161332;1.393665;2.831932;3.172402;1.595752;2.765294;3.463624;2.653712;1.698365;2.105373;2.256462;2.641437;1.992206;2.536549;1.632181;1.495458;1.431834;1.870187;1.48104;2.716283;2.455591;2.266627;1.932281;2.63343;
2.706139;2.60264;2.802098;1.675795;2.406356;2.543263;2.365093;2.45374;3.033464;1.703683;2.327229;2.485715;2.321247;2.81918;3.497931;2.534223;2.701595;3.188754;2.284489;1.894243;2.120469;2.465846;1.979705;2.392295;2.944796;1.528718;1.461809;2.550877;1.370208;1.87582;1.597848;1.947801;1.210355;1.020581;1.61481;1.705816;2.263581;2.182938;1.836761;2.411259;1.764571;1.616425;1.246238;2.904607;1.346339;1.870786;2.759478;2.298393;2.679015;1.698501;1.767618;2.354965;1.416657;1.319909;1.768782;2.764553;1.423862;1.118815;2.002234;3.400883;2.033102;2.655023;1.991852;3.005814;1.790766;2.325583;2.406985;1.430997;2.894743;2.36193;2.415702;2.473213;2.839444;1.521412;1.67013;1.689944;1.83722;2.544711;2.414547;2.897231;2.01044;1.54214;1.993643;1.690448;1.512831;2.939585;2.001579;2.846853;2.778302;2.245773;2.531239;2.398541;2.490919;3.401221;2.103762;2.947544;1.817078;2.241842;2.54552;2.648647;1.994685;2.5768;2.183092;1.302615;2.628314;2.038528;2.176178;3.009491;2.246756;3.114818;1.981503;2.850332;1.497549;2.520202;2.552244;1.267399;1.829231;1.607459;1.972186;2.445976;1.275284;1.577413;3.138835;2.743895;2.810791;2.919318;2.832799;3.129372;2.467468;2.738596;2.841426;1.639085;2.098197;2.49782;2.387967;2.455162;2.854566;1.715905;2.644095;2.790898;2.278995;2.637806;3.53439;2.532828;2.556478;3.0383;2.303732;1.913517;2.087852;2.759049;1.796476;2.765056;3.357562;1.550076;1.79379;2.628319;1.326511;1.953149;1.465;2.034106;1.07561;1.114748;1.56887;1.623503;1.949753;2.098972;1.902025;2.409886;1.66373;1.644805;1.415181;3.179562;1.305572;1.690745;2.853076;2.329664;2.589932;1.60355;1.72069;2.360225;1.389454;1.503151;1.65033;3.202216;1.7602;1.149024;2.314233;3.450459;2.014478;2.701906;1.948113;2.9964;1.722344;2.49708;2.419704;1.359994;2.556789;2.129782;2.492915;2.361828;2.720617;1.517108;1.879195;1.886252;1.823242;2.333381;2.623945;2.819361;2.038017;1.475259;2.007004;1.700017;1.499238;3.03853;1.877494;3.164559;3.251217;2.250467;2.898579;2.440849;2.47041;3.455211;2.058696;2.939122;1.748042;2.411018;2.558722;2.552382;1.716021;2.334839;2.25641;1.222711;2.513909;2.034225;2.414071;3.270342;3.018177;2.715499;2.216515;3.030124;1.337172;3.120775;2.488921;1.477633;1.861644;1.722329;1.507952;2.042501;1.728572;1.888324;3.170551;2.044353;2.362555;2.559873;2.872777;2.685714;
1.449374;1.494155;2.512244;1.750143;1.395969;1.332112;1.700498;2.709693;1.858849;2.337051;2.849002;1.939358;1.514143;1.677187;2.54371;1.535875;1.467735;2.560327;1.822047;2.199407;1.971235;1.564846;2.759293;1.917022;1.398195;2.199645;3.070268;2.068254;1.24627;2.259302;3.400131;1.804915;2.438943;1.816821;2.36954;1.871516;2.011029;1.692026;2.064651;3.365773;1.663394;1.978145;1.955998;2.511482;1.568516;2.0262;1.749183;1.631129;1.98461;2.257245;2.556779;1.847161;1.277977;2.073683;2.155947;1.541291;2.722768;2.577333;2.743563;3.122168;2.64622;3.240241;2.853671;2.533098;2.61607;2.22932;3.607464;2.7717;2.896163;2.436906;2.982346;2.572951;2.333983;2.772179;1.636113;2.928957;1.934711;2.839577;2.534285;2.521279;2.550298;1.998362;2.442928;1.378576;2.650685;2.317049;1.808929;2.531441;1.866348;2.562361;2.558842;1.886039;1.60298;3.00873;2.761058;2.444578;2.419116;2.652405;2.650729;2.665601;2.066477;2.145264;2.31284;2.691509;2.071485;1.863913;2.240461;2.483781;1.793695;2.9438;2.753087;1.909087;2.063868;2.990184;2.222052;2.166325;2.59274;2.230688;2.179555;2.200941;2.674042;2.453528;2.677142;2.775919;1.844934;1.7345;2.749025;1.211699;1.313731;1.634001;2.550086;1.767213;1.385741;1.25313;1.663098;2.4304;1.923627;2.138539;2.870372;1.911518;1.805437;1.724052;2.714216;1.346897;1.52912;2.711266;1.705883;2.273982;2.06918;1.384754;2.791006;1.938004;1.753721;2.357243;3.516171;1.979103;1.296857;2.078221;3.252109;1.457462;2.28098;1.986118;2.4103;1.844388;1.997538;1.625297;2.079791;3.12113;1.731701;1.813242;1.967368;2.431466;1.851428;2.103159;1.933464;1.475259;2.037372;2.414335;2.409753;1.864296;1.324461;1.886034;2.227468;1.600589;3.187454;2.764482;3.155574;2.906536;2.653082;3.106308;2.653824;2.228953;2.517627;2.3806;3.554837;2.726008;2.985935;2.346526;2.837699;2.328219;2.293077;2.621641;1.530935;2.801573;2.228984;2.987308;2.690275;2.442478;2.677294;2.113187;2.218299;1.38469;2.821028;2.108739;1.746915;2.574195;2.137661;2.795794;2.802747;1.719294;1.609156;2.879612;2.565398;2.145897;2.325433;2.81719;2.606728;2.620785;2.143377;2.060424;2.186465;2.440989;2.033842;1.740851;2.118059;2.366701;2.530863;2.424685;3.382756;1.848255;2.117735;3.092538;2.568624;2.456131;2.902794;2.137872;1.789935;2.228041;2.654214;2.059078;2.780085;2.752797;1.760618;1.800039;2.264347;1.250998;
2.282855;2.66325;2.217923;1.950308;1.678237;2.126116;2.137518;2.861823;2.590489;1.922065;1.655002;3.306619;1.726612;2.032754;1.501442;1.683437;1.215717;1.732479;1.61258;1.776545;3.029441;1.497641;2.289587;2.695673;1.495035;1.698967;1.637933;3.038766;1.700839;1.415498;2.415698;1.863978;2.791515;1.785902;1.968566;2.355363;2.105808;1.505659;1.864136;3.021861;1.508061;1.581518;1.434487;3.20228;1.464818;2.296886;1.380516;2.669761;1.237301;2.62695;1.651077;1.903814;3.019576;2.040515;2.155862;2.779099;1.942627;2.107544;1.953829;1.842117;1.850159;1.992601;2.25647;2.329156;1.897366;1.161792;2.019336;1.602305;1.264824;2.78848;2.529511;3.561445;2.782357;2.850952;2.929462;3.002641;3.121014;3.456262;2.487025;2.582597;2.263947;3.350413;2.803061;2.780355;2.879528;2.021614;2.737106;1.59967;2.41164;2.030279;2.986896;2.857809;3.137591;2.466412;2.056441;2.425147;1.598322;2.589516;2.776399;1.16133;2.590498;1.902161;2.455416;2.301675;1.29006;1.948467;2.27379;2.341899;2.082612;2.429205;2.342696;2.761996;2.008869;2.85947;2.247839;2.046058;2.585268;2.491225;1.966456;2.913011;2.083667;2.206939;2.815976;2.542145;2.407516;2.338478;3.104323;2.240618;2.099283;2.846513;2.255303;2.017955;1.892701;2.152707;2.294432;3.010486;2.893954;1.971978;1.889539;2.962265;1.714832;1.940716;1.962257;1.789408;1.169694;1.497666;1.573337;1.425096;2.902354;1.436263;2.19068;2.556935;1.599797;1.392636;1.602757;2.632746;1.613793;1.536536;2.538243;2.225726;2.524478;1.928746;2.04906;2.476519;2.322563;1.505934;1.96159;3.140931;1.696012;1.626301;1.701328;2.922956;1.440253;2.177735;1.781127;2.740992;1.134617;2.372067;1.658905;1.556026;2.843988;1.982038;2.015261;2.578286;1.987725;1.796187;1.967347;1.67616;1.723179;2.194268;2.168927;2.65482;1.677845;1.327339;2.140072;1.846472;1.488394;2.696076;2.596174;3.767646;3.01263;2.9554;3.189044;2.904603;3.087307;3.364674;2.783423;2.57679;2.12394;3.138672;2.858913;2.52572;2.783288;1.886351;2.532322;1.497331;2.441251;1.759695;2.892135;2.650818;2.971622;2.691084;1.972973;2.758126;1.397453;2.834644;2.917543;1.370973;2.906607;1.826679;2.521176;2.468853;1.448377;2.035563;2.503024;2.256005;2.620755;2.982272;3.262843;2.314792;1.974126;2.28541;3.235657;1.904788;2.315573;2.089064;2.294288;2.644626;2.816564;1.957675;2.338066;2.187555;2.199131;2.418508;3.013027;2.126685;
1.363964;2.672478;2.043327;0.9020046;2.074949;2.602584;1.694574;2.315664;1.873963;2.192861;1.738748;1.812461;2.331395;1.923528;3.317191;2.16158;2.167615;2.304493;2.739443;1.559308;1.407514;1.934396;1.941625;2.156399;2.129709;3.012466;2.380997;1.876786;2.288501;2.045393;2.049114;3.376396;2.152028;2.930218;2.081186;2.036063;2.790766;2.606852;2.709751;3.145542;2.103567;2.876411;2.298435;2.77439;2.565274;2.628492;2.495678;2.71692;2.702162;1.640591;2.936697;1.638908;2.499179;2.858474;2.59884;3.345491;1.65823;2.921655;1.68317;2.320603;3.115757;1.246279;2.190636;1.542332;1.810181;1.904669;1.541677;1.252782;2.772865;1.861109;2.428587;2.245665;2.782188;2.309167;2.482024;1.85462;3.080208;2.280452;2.583272;2.455396;2.06434;2.298384;2.623114;1.851684;2.238195;2.555598;2.697401;2.240088;2.944343;2.810008;2.627936;3.47716;2.398865;2.141025;2.722579;2.731365;2.022009;2.343771;2.138396;1.369843;1.613988;2.576208;1.525253;1.784001;1.324357;2.087015;1.407707;1.095531;1.548493;1.648824;2.735554;2.221169;2.300648;2.692533;1.815785;1.506285;1.410676;2.623027;1.610851;1.725873;2.152286;2.43715;2.417865;1.580386;2.08409;2.265099;1.652846;1.330486;1.620184;2.680195;2.18209;1.15047;2.177136;2.738886;1.876076;2.243738;2.092873;2.18631;1.69884;1.653712;2.386773;1.879253;3.536255;2.105326;2.056111;2.124102;2.667532;1.520079;1.354596;1.726456;2.151408;1.948968;1.855337;3.161984;2.155875;1.656728;2.354612;2.012427;2.012724;3.220962;2.461404;2.963762;2.212708;2.348562;2.893759;2.763182;2.963759;3.034852;2.314641;2.896867;2.232975;2.525309;2.594583;2.596121;2.696755;2.654888;2.597958;1.486709;2.864669;1.577199;2.441237;2.593898;2.875278;3.086617;1.432238;3.065107;1.496307;2.261092;3.08223;1.211635;2.172638;1.513594;2.02233;2.062019;1.655079;1.396053;2.827484;2.04292;2.499675;2.222337;2.945088;2.236271;2.490694;1.841149;2.988968;2.247988;2.809814;2.49363;1.903035;2.252154;2.555298;1.672568;2.141859;2.358888;2.800555;2.097295;2.567605;2.848037;2.470331;3.404387;2.370334;2.095522;2.70359;2.693185;2.246878;2.518114;2.272432;1.519588;1.656455;2.789345;1.582522;1.763303;1.438254;2.017865;1.414898;1.085747;1.308172;1.422932;2.494323;2.419945;1.955455;2.562375;1.612395;1.226574;1.184969;2.173277;1.426927;1.51035;2.857673;1.834882;2.711108;1.786097;2.335246;2.7699;1.491641;1.998882;
1.96795;1.617463;1.605083;2.60712;1.815844;2.970055;2.755363;2.296498;2.294383;2.015975;2.590336;2.179384;1.874777;2.716115;2.208495;2.841874;2.586708;2.277773;2.694151;1.448128;1.801627;1.491686;2.039464;2.472298;2.587221;2.402626;2.415502;2.346658;2.429507;1.198088;1.825429;2.780742;2.017332;3.430391;2.829159;1.783863;2.015595;2.147756;1.203979;1.759625;1.597504;2.349267;2.474721;2.150229;1.360821;1.374579;2.648879;2.235445;2.776434;1.405769;2.048729;2.818403;3.024008;2.312501;2.837665;3.430195;2.961817;1.8149;1.72308;2.579917;2.796581;1.720505;2.069229;1.816443;2.023666;1.455611;1.770871;1.538485;2.761343;3.159576;1.872259;2.118085;2.491963;1.755752;1.843087;1.085702;1.155284;2.381529;2.246643;2.353552;2.509406;1.399568;1.863136;1.947383;1.167625;2.820141;1.30871;2.500632;1.947016;1.552464;1.889799;2.602725;2.35575;2.236328;2.072153;2.470998;1.650611;2.544694;1.918778;2.386328;1.800032;3.257681;1.567022;2.583659;2.057347;2.408256;1.435555;1.035034;1.822475;2.291837;2.570013;1.815711;1.922901;2.795205;1.961907;2.605439;3.177718;2.752123;2.026338;2.164816;2.883327;2.953987;2.204674;1.857536;2.568149;2.603233;2.43967;2.227144;1.708795;1.368569;1.53844;2.369894;1.857927;3.284504;2.86229;2.661652;2.293516;2.269088;3.011237;2.188088;1.781864;2.673281;2.427457;2.962433;2.481189;2.061265;2.736144;1.555931;1.922694;1.476519;2.158598;2.508762;2.530857;2.558534;2.495626;2.386256;2.092171;1.236411;1.948079;2.778886;1.720341;3.11801;2.726861;1.53776;2.026081;2.354029;1.219879;2.065008;1.570052;2.680811;2.88096;2.10691;1.259328;1.301549;2.810138;2.36072;2.644454;1.275656;2.090233;2.940654;3.156707;2.235309;2.910148;3.49553;2.87735;1.999142;1.795242;2.696347;2.548476;1.802726;2.264445;1.814494;1.818668;1.347131;1.71934;1.285762;2.61538;3.281834;1.862107;2.453344;2.455747;1.936385;2.116585;1.119376;1.152025;2.385906;2.463151;2.481446;2.492162;1.362737;1.934195;2.018569;1.145352;2.621989;1.332755;2.558535;1.877036;1.625139;1.890513;2.720446;2.12845;2.330647;2.267527;2.469371;1.466087;2.401194;1.865187;2.069482;1.682511;3.382666;1.557755;2.953356;2.024555;2.619686;1.678102;1.068633;2.502263;2.398703;2.336833;1.635876;1.598215;3.210047;1.556628;2.206555;2.439608;2.577843;2.165417;1.994296;2.461576;3.296124;2.061256;2.042516;2.332648;2.480813;3.420823;2.634979;
2.421324;2.545072;1.694924;1.449791;1.858181;1.570286;1.715939;2.795191;2.290469;2.292536;2.297107;2.879037;1.635748;1.846394;1.298616;1.374261;2.427846;2.88842;1.783593;2.701782;1.681962;1.446436;1.961281;1.751956;2.399143;1.070211;2.230811;1.528305;1.228239;1.818724;2.660353;2.356411;2.740255;2.209311;2.398229;1.683456;1.798181;1.932151;2.94351;1.662014;2.354388;2.191276;2.504706;2.258843;2.261216;1.571905;1.415288;2.353415;2.575248;2.450076;1.696328;1.811797;3.25597;1.90677;2.656252;3.314702;2.282027;1.623561;2.023915;2.618145;2.618441;2.183073;1.931508;2.425558;2.963378;2.61914;1.902833;1.352664;1.685813;1.315378;2.642642;2.234512;2.368813;3.127595;2.531717;2.886062;1.942973;2.461136;2.762425;2.079776;2.504424;2.975609;2.136765;2.733943;2.324397;2.135909;1.372723;2.65806;1.475427;1.805997;2.252671;2.361628;1.919376;2.557054;2.725876;2.204522;1.39563;1.922814;2.526363;1.89128;2.522628;2.753222;2.145977;1.998014;1.589925;1.91787;1.615115;1.933999;2.312142;2.575918;2.815995;1.509228;1.285959;2.610344;1.92222;2.677155;1.681666;1.951245;3.117997;3.578769;2.271755;2.569461;3.358706;3.045972;1.819028;2.001382;2.596619;2.494422;1.998596;2.329235;1.649347;1.449405;1.79484;1.378794;1.696965;2.721683;2.174804;2.181771;2.151111;3.32968;1.452176;1.976017;1.548958;1.407042;2.080938;2.704726;1.685355;2.610917;1.509549;1.241568;2.183598;1.856737;2.641023;1.120732;2.178619;1.944911;1.177939;2.016582;2.837187;2.32961;2.347843;2.082823;2.384108;1.692011;1.765484;1.726191;2.820843;1.61747;2.28427;2.161556;2.381696;2.674414;2.064215;1.699193;1.590827;2.401301;2.236869;2.358487;1.623028;1.740684;3.005704;1.673934;2.799384;3.464316;2.538614;1.75263;1.999471;2.946405;2.599421;2.389953;1.950573;2.507915;2.758465;2.378445;1.984701;1.343265;1.702245;1.146643;2.747617;2.066329;2.138777;3.027836;2.402056;3.133157;1.812389;2.605192;2.846655;2.227976;2.358981;2.76462;2.153053;2.623046;2.168567;1.889213;1.647099;2.660357;1.547593;1.891175;2.221923;2.673865;1.903997;2.780457;2.749655;2.283144;1.256794;1.71743;2.621429;1.88015;2.543761;2.506412;2.241704;1.839228;1.403199;1.839946;1.512552;2.137284;1.993284;2.802453;2.370752;1.633719;1.152388;2.61618;1.938584;2.303409;1.293167;2.077963;2.6435;3.610241;2.075201;2.364247;3.661041;3.196654;1.888975;1.485282;3.088303;2.326729;
2.833222;1.930675;2.066686;3.276138;1.654968;1.839422;1.689916;1.505555;2.6267;2.300034;1.732033;1.88707;1.4508;1.354219;1.849578;1.114986;3.2648;1.051589;2.507854;1.677879;1.515884;1.413245;3.284335;1.939058;3.310406;2.707776;2.68802;1.945074;2.23264;1.69378;2.727146;1.693453;2.318182;1.842363;2.759557;1.725748;2.077237;1.600206;1.824893;2.896404;2.754444;2.970926;1.644532;1.816598;3.169233;1.62882;1.880746;2.678992;2.661158;1.890011;2.020515;2.807835;2.048722;1.903478;1.880878;2.178616;2.913562;3.034828;2.62879;2.182329;1.57426;1.385217;2.743821;1.861952;2.754085;2.727441;2.309222;3.066117;1.897483;2.59442;3.004825;2.137125;2.87925;2.342511;2.034688;1.922342;1.993399;1.972459;1.435074;1.656675;1.943636;1.772342;2.332682;2.145766;2.273533;2.049868;3.013386;1.968689;1.943829;2.394453;3.008552;2.320632;2.896843;2.121508;2.135952;2.002753;1.501916;1.471034;1.924206;1.432327;2.049039;2.637789;3.165632;1.992436;1.591741;2.857243;2.080684;2.784893;1.424956;1.485653;1.999072;2.567937;2.310163;2.505375;3.209214;2.628874;1.388745;1.594442;2.760294;2.140342;2.062111;2.773343;1.945194;1.960443;1.711576;1.526121;1.440333;2.348846;2.658621;2.054;2.103092;2.942448;1.789431;1.749045;1.796677;1.411602;2.433257;2.348295;1.702505;2.199334;1.588698;1.409513;1.801171;1.094226;3.537013;1.013664;2.378027;1.703485;1.760028;1.607331;3.488626;2.059194;3.390478;2.522465;2.52429;2.033964;2.258549;1.529193;2.384813;1.488298;2.233145;1.953126;2.802044;1.507251;2.251995;1.488816;1.948346;2.859262;2.643291;3.022074;1.622746;2.155591;3.408224;1.665105;1.848895;2.708415;2.970501;1.869353;1.911954;2.84239;2.334772;2.135363;2.054382;2.363513;3.052467;2.875553;2.475945;2.103889;1.674165;1.362906;2.501738;1.695212;2.617675;2.884705;2.379868;2.777486;2.049627;2.440701;3.030628;2.026012;2.67304;2.3317;2.053213;2.097291;2.271042;2.164606;1.484923;1.729282;2.169574;1.770414;2.247098;2.18098;2.558222;2.279821;3.098387;2.065269;1.977819;2.199324;2.895641;2.240433;3.031958;2.094432;1.922987;1.830193;1.401542;1.587743;1.988684;1.237839;2.207147;2.483377;3.192073;1.885723;1.439308;2.846144;2.099359;2.995881;1.848192;1.250059;3.007573;2.917875;2.84738;2.440043;2.683568;2.918973;1.797887;1.998528;3.117962;2.524926;1.706637;2.338632;1.732584;2.060262;2.183486;1.346408;1.269368;2.511998;
2.056539;2.518443;2.259945;0.9627196;1.745712;2.220369;1.799615;2.924959;2.817652;1.974011;1.897645;1.206146;1.388882;1.961584;1.643214;2.123276;2.254854;2.305393;1.624444;1.245454;2.371127;1.388643;2.372521;1.881046;2.151773;2.955822;3.111331;1.752289;2.79176;2.911785;2.237022;1.790347;1.573513;2.485032;2.86582;1.912199;2.585172;1.884577;1.978576;1.629016;2.085928;1.639489;3.066922;2.656453;1.451875;1.770314;3.056313;1.957961;1.900039;1.067926;1.773688;2.460227;3.00692;1.843644;2.69097;1.916733;1.976146;2.156586;1.753336;2.932827;2.076756;2.698015;1.711441;1.495064;1.550577;2.761687;2.145828;2.199294;2.152861;1.876924;1.607835;2.453438;2.208724;2.368517;1.664001;2.057436;2.004304;2.692536;1.881056;2.157705;1.389202;1.332191;2.376461;2.634209;2.533772;1.007759;1.822482;3.70637;2.266943;2.784438;3.089436;2.289481;2.139282;1.751009;2.272446;2.385377;2.05984;1.761305;2.891824;2.796154;2.887717;2.229645;2.046888;1.78805;1.84679;2.954183;2.242224;2.614128;2.445503;1.813371;2.951367;2.192368;2.76948;2.386132;2.605021;3.105855;2.958345;2.086205;2.996622;2.70424;2.812449;1.398782;2.961691;1.888487;2.971486;2.476504;2.552721;2.186361;2.177585;2.608791;2.083035;1.281085;1.776889;2.146499;1.675006;3.467108;2.800224;1.742355;1.923625;1.183315;1.523483;1.629175;1.748788;2.05977;2.173919;2.250113;1.550261;1.480707;2.314769;1.51608;2.57223;1.879319;2.008284;2.639378;3.265912;1.768511;2.774929;2.529149;2.551067;1.488431;1.655145;2.623513;2.690433;2.302631;2.585113;1.798401;1.841304;1.922;2.033617;1.467668;3.113796;2.574178;1.548761;1.439169;3.175181;1.804916;1.82556;1.044092;1.724896;2.762406;2.932494;1.945104;2.904585;1.822468;1.838688;1.906147;1.900278;2.917224;1.904462;2.435152;1.976056;1.349061;1.557832;2.853942;2.05124;2.532514;2.141308;1.932483;1.491311;2.797255;2.112437;2.217384;1.681613;1.975297;1.966988;2.433726;1.96341;2.160367;1.259263;1.270068;2.381668;2.857676;2.453613;1.193839;2.007928;3.56028;2.078406;2.559462;3.261145;2.275732;1.965235;1.540539;2.576892;2.20009;2.069193;1.835203;2.782977;3.170421;2.875396;2.290146;1.915975;2.083331;1.759751;2.785192;2.263679;2.521791;2.179002;1.812221;3.099282;1.931794;2.302423;2.534488;2.540853;3.192737;3.040149;2.159564;2.569077;2.157225;2.487837;1.553218;2.206259;2.015073;2.774561;2.668286;2.414251;2.302059;
1.493474;2.541859;2.684574;2.265714;1.518929;0.9886015;2.655318;1.818439;2.946274;1.537212;1.560087;2.517536;2.930747;1.864409;2.550831;2.593716;2.864814;1.940377;1.649643;2.357188;2.949916;1.668759;2.893635;1.915677;2.037863;2.010375;1.569229;1.039279;2.121624;2.896899;1.73282;2.113214;2.732863;1.784125;1.905763;1.638659;1.680138;2.389412;3.02892;2.168694;2.849619;1.666872;1.681801;2.078732;1.358513;2.729307;1.26687;2.845299;1.709226;1.493174;1.918296;2.478507;2.972853;2.998166;2.79153;2.338818;2.103192;2.364724;1.792995;2.448081;1.879865;2.464631;1.866144;2.144897;1.920855;2.380912;1.474664;1.107655;2.15593;2.064898;2.536591;1.34892;2.138772;2.973888;1.55277;2.518871;3.118069;2.268045;1.881;1.491885;2.922319;2.688936;1.995206;1.508045;2.973937;2.375611;2.980511;2.346528;2.069688;1.893139;1.35129;2.327192;1.582191;2.805555;2.600409;2.387715;2.802912;2.141764;2.527723;2.739365;2.372813;2.788424;3.016415;2.50179;2.914363;2.373639;2.395459;1.61581;2.289493;1.619826;2.366795;2.666877;2.33521;2.408917;2.589969;2.082007;2.792981;1.69771;2.102915;2.760446;2.408836;3.278676;2.379959;1.755342;2.626789;1.361463;1.62743;1.428172;1.596093;2.584395;2.563884;2.185624;1.376895;1.268052;2.225907;1.701741;2.844807;1.737596;1.748641;2.467146;3.154684;1.658233;2.485788;2.364947;3.029535;2.107481;1.583191;2.324527;3.044174;1.814267;2.446303;1.922663;2.066519;2.047587;1.52882;0.973982;2.638856;2.710238;1.960834;2.104102;2.909063;1.830538;1.725061;1.526857;1.517185;2.766573;2.622197;2.038604;2.79534;1.892874;1.802997;1.989852;1.502857;2.43893;1.261398;2.640078;1.883862;1.654443;1.781848;2.4287;3.066747;3.144246;2.418748;2.379339;2.182777;2.422306;1.686478;2.17964;2.271374;2.251175;1.995046;2.119502;1.921238;2.405943;1.371582;1.119628;2.077662;2.396449;2.204898;1.290897;2.009969;3.354124;1.69517;2.266601;3.220764;2.003286;1.773189;1.331519;2.966495;2.873454;1.922125;1.593543;3.201407;2.486203;2.637752;2.448867;2.065544;2.007743;1.281594;2.066251;1.942992;2.578314;2.752057;2.361722;2.803237;2.16621;2.392305;2.758862;2.290773;3.172621;2.653534;2.423356;2.763538;2.715344;2.571694;1.415538;2.418508;1.880883;2.184208;2.387345;3.067986;2.269429;2.029942;2.010567;2.359864;1.59242;1.666868;3.158281;2.457793;2.909425;2.376019;2.038917;1.945143;1.725857;1.427706;1.453655;
2.868778;1.656951;1.773487;3.356695;1.856822;2.196044;2.666645;2.983803;1.55014;2.004892;2.233362;2.001411;2.362151;1.769517;2.249215;2.092133;2.310975;1.984534;1.613766;1.902718;1.6874;1.928055;1.703326;2.430927;2.485826;2.253423;2.436858;2.474076;2.770369;2.427237;2.107254;3.006861;2.580821;2.522417;2.706642;3.080115;2.658895;1.088748;1.733183;1.83609;2.521683;2.711504;2.532672;2.154535;2.648957;2.431206;2.437389;1.436312;2.157131;2.619392;2.263361;3.208013;2.568137;1.691384;2.420012;1.710963;1.280938;1.547251;2.041647;2.288105;2.603438;2.997413;1.581671;1.754285;3.136455;1.912623;2.367934;1.691739;1.819838;2.232667;2.441371;2.47376;2.189157;3.317477;1.998294;1.313608;2.056391;2.501538;2.120261;1.466055;2.327416;1.525742;1.416851;1.770325;1.800583;1.017052;2.291377;2.322381;1.68772;1.956475;2.46049;1.958368;1.860862;1.325115;1.35425;2.764124;2.735047;2.081726;2.660177;2.016916;1.895945;1.586061;1.013741;3.264045;1.661104;2.934273;1.857744;1.303674;1.977249;2.771798;2.550364;2.528667;2.75397;2.331604;1.937883;2.387477;1.870382;2.251425;2.112143;2.653601;1.66361;2.407396;2.361108;2.178238;1.675638;1.742197;2.288856;3.174865;3.010835;1.663727;1.747564;3.237164;1.820516;2.043345;2.870921;2.835773;1.778488;1.861947;2.26052;2.267308;2.257388;2.013663;2.255726;2.130306;2.426517;1.984417;1.361296;1.89213;1.47107;2.047374;1.664224;2.329352;2.608708;2.240713;2.336883;2.427106;2.824477;2.508632;1.981061;3.161435;2.736445;2.548234;2.67912;2.909655;2.614116;0.999503;1.953161;1.771039;2.820122;2.565123;2.554773;2.382393;2.522503;2.745216;2.492602;1.507141;2.24912;2.63514;1.95448;3.128141;2.257093;1.823242;2.418614;1.667148;1.354536;1.548973;1.942485;2.266351;2.623636;3.027303;1.417373;1.815087;3.096864;1.990777;2.452902;1.660208;1.830511;2.094346;2.748579;2.33793;2.397732;3.125455;2.102374;1.557862;1.956692;2.737513;2.10431;1.485496;2.243087;1.588011;1.253947;1.809873;1.586601;1.112739;2.334392;2.212631;1.713618;1.934875;2.443645;1.938237;1.878845;1.344939;1.203146;2.840234;2.699104;2.163226;2.751303;1.982465;1.907747;1.469747;1.215528;3.10765;1.844244;2.753851;1.959083;1.547133;1.817961;3.043814;2.185256;2.332176;2.593842;1.86912;1.789929;2.180996;1.583189;2.357652;1.74683;3.06502;1.788667;2.416942;1.869937;2.488523;1.73645;1.569829;2.250262;3.122892;
1.79179;1.772012;2.845793;1.682657;2.983815;1.549766;1.03771;1.427308;2.455967;2.421457;2.085808;1.925355;1.791015;2.068545;2.221321;2.171314;2.1624;2.009324;2.100119;1.866419;2.344068;1.896126;2.4848;1.28182;1.010014;2.179676;2.850442;2.329973;1.210809;1.73204;3.792626;2.082933;1.999959;3.631095;3.014795;1.943808;1.758422;2.592835;2.598553;2.128721;1.6671;2.087457;2.816904;2.195387;2.66777;2.063062;2.03621;1.296626;2.671412;1.71203;2.477622;2.853886;2.190902;3.02796;2.561494;2.583082;2.621092;2.659211;3.101492;2.798026;2.537036;2.240641;2.702334;2.978035;1.509653;2.718754;1.797129;2.618668;2.865714;2.285551;1.861814;2.026808;2.287473;2.561712;1.078198;1.754127;2.147634;2.333583;3.2161;3.014347;1.710001;2.368326;1.314277;1.316826;1.579023;1.597566;2.781888;2.376769;2.224827;1.433123;1.538965;2.444229;1.593761;2.412745;1.912758;2.185638;2.239473;3.485345;2.688197;2.540601;2.976454;2.578313;1.75167;1.829098;2.242427;1.911118;1.944066;1.920496;1.999829;1.844002;1.95786;1.513319;1.404302;2.29793;2.469077;1.996101;1.868017;3.021793;1.667629;1.729626;1.411683;1.873508;2.709781;2.704058;2.107496;2.264836;1.666816;2.159076;1.948102;1.811808;2.499107;1.3776;3.004401;1.551542;1.298564;1.677182;2.576243;3.017333;1.954117;2.083706;2.040424;1.812197;2.127939;2.261503;2.338766;2.160993;2.228927;1.466025;2.235904;1.838997;2.149763;1.313109;1.195748;2.338778;2.815349;2.455938;1.168185;1.687737;3.552631;2.13852;2.106751;3.677228;2.70962;1.653116;1.754815;2.566696;2.94234;2.402198;1.720691;2.64209;2.724289;2.41815;2.950591;1.787799;1.902945;1.323218;2.77951;1.884351;2.677746;2.373805;2.045387;2.972351;2.174572;2.567605;2.827492;2.874298;3.130514;2.914889;2.495512;2.313919;2.501725;3.001564;1.634799;2.753253;1.558436;2.395178;2.865498;2.207165;2.105043;2.31054;2.37404;3.055583;1.007277;1.918048;2.467098;2.14543;3.049684;3.012084;1.830944;2.565329;1.456536;1.075199;1.459439;1.513204;2.326091;2.379735;2.439624;1.510057;1.542128;2.554196;1.560938;2.489582;1.744658;2.206595;2.391428;3.525162;2.394258;2.321175;2.976307;2.495836;1.987885;2.099876;2.328219;2.341283;1.848322;2.092417;1.742709;1.224895;1.361637;1.585088;1.246241;2.548275;2.264709;2.089364;1.8103;2.606904;1.672666;2.053219;1.325181;1.865492;2.710023;2.947984;1.872003;2.454312;1.995366;2.146497;
2.37843;1.392623;1.447058;2.337873;2.248121;1.940553;2.139761;1.4377;1.592726;1.353843;1.123469;3.082192;1.414766;2.340238;1.667918;1.202296;2.168521;2.998192;2.170458;2.466304;2.166511;2.102188;1.874274;2.255566;1.625403;2.125566;1.89147;2.863369;1.750356;2.566845;1.937034;1.83157;1.582037;1.112756;2.483824;2.279021;2.320549;1.461183;1.985374;3.371657;2.109063;2.432752;3.258832;2.328311;1.939014;1.953775;2.925817;2.815931;2.288455;1.573203;2.793557;2.755775;2.68067;1.846053;2.115332;2.01241;1.731635;2.638745;2.284209;2.746442;2.628181;2.088787;2.766246;1.981652;3.192303;2.346413;2.279051;2.529321;2.424991;2.446909;2.048329;2.12726;2.346796;1.071971;2.098705;2.178617;2.705525;2.405114;2.304742;2.039833;3.029636;2.780902;2.186523;1.248304;1.836777;2.643213;2.140443;3.047066;2.455949;1.836;2.401001;2.213817;1.578555;1.683084;1.588806;1.910678;2.639305;2.202743;1.691521;1.185623;2.390983;1.849507;2.657907;1.586779;2.058049;2.559057;3.378839;2.208818;2.929802;3.393734;2.813825;2.070488;1.8578;2.10159;2.695123;1.811976;2.444735;1.530439;1.689944;1.840431;2.208199;1.478041;2.530303;2.8348;1.849711;2.238748;3.275795;1.633371;2.322828;1.265337;1.502231;2.340203;2.652223;2.070046;2.19645;1.471318;1.613753;1.328294;1.182256;3.331121;1.527579;2.14066;1.470145;1.066727;2.288847;2.826605;2.148998;2.270952;2.215218;2.026952;1.45808;1.966825;1.744861;1.975289;1.571574;3.277246;1.795994;2.872378;2.148412;1.931637;1.52915;1.014172;2.546494;2.229731;2.715738;1.588977;2.061588;3.394724;2.113887;2.424419;3.334444;2.493456;2.044964;1.787805;2.671989;2.607331;2.431676;1.447391;2.771257;2.522185;2.748075;1.766961;1.698251;1.74081;1.872238;2.467951;1.932852;2.886405;2.598338;2.3656;3.117012;2.094025;3.08705;2.319911;2.346289;2.616697;2.771384;2.512488;2.24542;2.254095;2.323005;1.060149;2.095522;2.135289;2.729091;2.230827;2.162738;1.870562;3.163888;2.741203;2.174023;1.186317;1.846166;2.450646;1.829469;2.832457;2.59339;1.686186;1.979038;2.339787;1.556156;1.932428;1.858068;2.021142;2.544729;2.177193;1.750249;1.245777;2.735961;1.90656;2.882903;1.696659;2.036711;2.540909;3.375818;2.165986;2.471359;2.699627;2.622855;1.756564;2.561936;2.320777;2.266619;1.331753;2.248144;2.1194;1.263212;1.827055;2.163586;1.621416;2.225797;2.833286;2.152012;1.67789;2.929605;1.429015;
2.214049;2.154534;2.165789;2.817465;2.642414;2.208238;1.53765;2.824763;2.531649;2.25917;2.32581;1.5176;1.86651;1.404542;2.659021;1.619965;2.942444;2.418929;2.493812;2.799827;1.744792;2.760131;2.824427;2.469911;2.701272;3.057556;2.588202;2.450943;2.732225;2.054725;1.391337;2.512516;2.061143;2.632324;2.310186;2.935592;2.616005;2.308134;2.011131;2.160765;1.300491;2.084155;1.92105;1.979509;2.332181;2.673141;1.958633;2.500542;1.637527;1.660228;1.573456;1.56417;2.128335;1.994751;2.743071;1.839232;1.341167;2.168929;1.890938;2.106481;1.340693;1.741704;3.213223;3.35107;1.931001;2.788733;3.505172;2.851201;1.748674;1.944744;2.463963;2.586262;1.814948;2.042825;1.941825;1.280468;2.062645;1.865194;1.452627;2.169892;2.849755;1.671516;2.103798;2.56738;1.462407;1.984126;1.669501;1.578037;2.456081;3.200837;2.170772;2.417478;2.171189;1.56168;1.914126;1.73123;3.517516;1.636009;2.308054;2.235765;1.743824;1.651138;2.092157;2.263105;2.53448;2.643147;1.841994;1.595501;1.893014;2.063609;2.529352;2.11702;2.561514;2.130519;2.216973;1.936761;2.076362;1.220698;1.436015;2.276312;2.365109;2.360451;1.393508;1.712062;2.806903;1.89211;3.150451;3.371769;2.090465;2.149322;1.851236;2.544666;2.595766;2.286793;1.696363;3.129014;2.927841;2.243006;2.672448;1.35616;2.066972;1.499062;2.692324;1.766875;3.018811;2.166523;2.619804;2.574831;1.898099;3.18804;2.737122;2.166928;2.490059;3.244046;2.497656;2.588421;2.743193;2.376379;1.363969;2.33293;1.905672;2.677352;1.973586;2.59118;2.531875;2.326141;2.119428;2.410563;1.562148;2.120851;2.232457;1.747157;2.523542;2.740988;1.922894;2.701975;1.676202;1.494049;1.678432;1.37848;2.277381;2.301342;2.592877;1.594201;1.178388;2.379136;1.818197;2.41586;1.242416;1.825189;3.213933;3.144474;1.74341;2.810098;3.210017;2.616415;1.689634;1.914209;2.532868;2.954499;2.08372;1.931737;2.138803;1.240889;2.124652;1.766097;1.450205;2.35868;2.853341;1.486917;2.329649;2.428915;1.595993;2.239715;1.513503;1.41817;2.194832;3.26504;1.981109;2.748942;2.045554;1.641386;1.914696;1.584178;3.262784;1.652887;2.069839;2.029111;1.684812;1.623608;2.155711;2.609024;2.850528;2.517196;2.034033;1.552147;2.554863;1.601085;3.025284;1.765415;2.983404;1.86241;2.570932;1.917658;2.238269;1.573458;1.491035;2.341635;2.846915;3.04886;1.465936;1.722179;2.880387;1.881875;2.457724;2.930363;
1.589433;1.764682;1.62777;2.564497;2.491963;2.14678;2.274671;2.919175;1.795758;1.489282;1.300383;1.509717;2.54273;2.78472;1.629183;2.96837;1.943826;1.736359;1.526494;1.503756;2.984586;1.579446;1.864771;1.515;1.03706;2.040885;2.609852;2.91949;2.563543;2.392127;2.21752;1.555905;2.150679;1.30908;2.912951;1.884125;2.425452;1.37919;2.744577;2.223585;2.076952;1.404172;1.847866;2.753798;2.426526;2.850666;1.758663;1.960878;2.817286;2.111221;2.500624;3.663174;2.355312;1.571975;1.785359;1.986971;2.955214;2.273112;1.821153;2.341407;3.010352;2.460259;2.622225;1.779129;1.754487;1.48541;2.74456;1.956998;2.502282;3.096137;2.578527;3.063868;2.236892;2.108075;2.556884;2.246981;2.779594;2.865201;2.11555;3.006425;3.142643;2.462567;1.092214;2.305002;1.816314;2.853092;1.923796;2.03587;1.726081;2.587827;2.298054;2.746161;1.319817;2.095774;2.422595;1.9192;3.025743;1.960212;2.2466;2.068584;1.639552;1.100571;1.952513;1.938632;2.009502;2.305847;3.229858;1.831378;1.1784;2.695341;2.101305;2.906858;1.468919;2.071695;2.51903;3.68813;1.998201;2.207771;3.441524;2.330108;1.87652;1.841669;2.79096;2.302216;2.1835;2.259138;2.047699;1.921017;1.470052;2.028466;1.382605;2.398891;2.368659;2.120451;2.062334;2.604653;1.61149;1.295813;1.350176;1.466219;2.422161;2.760563;1.663624;3.183049;2.246565;1.754001;1.501121;1.261111;3.262322;1.629342;2.376921;1.762609;0.9560491;1.961877;2.87443;3.016957;2.496392;2.354482;2.056711;1.841805;2.066373;1.602624;2.623759;1.751786;2.338343;1.364461;2.420196;1.963304;1.921718;1.276373;1.933703;2.709482;2.329499;2.835737;1.706341;2.140579;3.202344;2.205514;2.496023;3.282928;2.59523;1.625262;2.185762;2.273904;2.839136;2.265501;2.068863;2.532588;3.0572;2.443096;2.512526;1.968905;1.507559;1.758335;2.564804;1.881964;2.391266;3.008151;2.232894;2.732594;2.120174;1.944984;2.592747;2.302186;2.79795;2.868227;2.117986;3.084619;3.298323;2.518609;1.156661;2.068733;2.007582;2.86038;2.307602;2.303936;1.677979;2.573038;2.51227;2.952881;1.351657;2.079839;2.318247;2.116194;2.69947;2.272047;2.085027;1.991407;1.550742;1.048301;1.654247;1.677123;1.89974;2.135147;3.271116;1.881337;1.371773;2.76702;2.140298;3.134046;1.431533;1.69929;2.749647;3.38608;2.539395;2.418836;3.322365;2.910607;1.742701;1.841433;2.369353;2.354944;1.886177;2.045181;1.94728;2.114147;
2.571847;2.608297;2.718797;1.430107;3.142081;1.797193;2.641947;3.17791;2.973829;2.577794;1.758766;2.49967;1.726869;2.16389;2.054872;1.19829;1.850609;1.679887;2.341204;2.148047;1.297107;1.295298;2.059626;2.864554;2.816518;2.385622;2.19681;2.391925;1.772858;2.518262;2.520452;2.008769;2.32301;2.349694;2.501105;2.699616;2.838152;1.716336;2.417232;2.564297;2.249164;2.5016;2.734725;2.155079;2.522836;3.306847;2.107041;1.731613;2.011876;2.859615;1.784179;2.49443;2.726262;1.682193;1.438737;2.412429;1.156165;1.908401;1.620499;2.050767;0.9812439;1.83665;1.666804;1.737776;2.729073;2.084701;2.247999;2.729635;2.048793;1.71538;1.581983;3.123875;1.696424;1.471135;2.458311;1.983049;3.187849;1.654144;1.358712;2.155611;1.294641;1.416729;1.669735;2.851802;1.653522;1.135762;1.440307;3.564093;1.997709;2.379097;1.41709;2.139588;1.1953;2.462494;1.990183;1.639929;2.786952;2.050174;2.446259;2.447539;2.83649;1.599314;1.620995;1.918222;1.732143;2.283458;1.94128;2.467636;2.275148;1.736894;1.992983;1.759211;1.450318;3.307199;1.831303;3.213413;2.785759;2.578412;2.931564;2.507972;2.125027;3.270541;2.462658;2.662677;2.129173;3.479404;2.660262;2.862371;2.078142;2.696695;2.765955;1.247349;2.818608;1.877102;2.668113;3.269855;2.774263;2.466232;1.743633;2.418695;1.529449;2.24058;2.260038;1.375613;2.061055;1.835116;2.286953;2.60527;1.26182;1.543125;2.396089;2.938346;2.644542;2.321226;2.206058;2.060876;2.224046;2.705206;2.293804;2.002754;1.922448;2.422771;2.546718;2.472963;2.55763;1.764565;2.456392;2.738739;2.154574;2.38872;2.724904;2.112123;2.312699;3.366426;2.3335;1.996611;2.286489;3.099687;1.744262;2.986439;2.679409;1.970115;1.738743;2.540015;1.084836;1.881068;1.635795;1.805912;1.173245;1.848379;1.491316;1.753184;2.332768;2.147196;2.449509;2.463135;1.859741;1.660379;1.620182;3.196746;1.601857;1.379091;2.457773;2.004783;2.720622;1.553548;1.549742;2.47526;1.54872;1.582186;1.765344;3.33214;1.663149;1.283829;1.747131;3.593137;1.889909;2.341797;1.438057;1.889972;1.406416;2.476677;1.797942;1.655386;2.386182;2.112878;2.656215;2.196252;2.613367;1.546701;1.659629;1.97595;1.636472;2.169154;1.940747;2.492962;1.399453;1.311426;2.431733;1.522285;1.876809;3.755908;2.096994;3.183636;2.736055;2.985506;2.270493;2.597414;2.326324;3.357838;2.657718;2.941603;2.804346;3.168915;2.889386;2.35308;
1.828929;1.754323;1.607659;1.475347;3.196367;1.308885;2.277984;1.482073;0.9963096;1.469323;3.032856;2.646664;2.278065;2.093446;2.130121;1.937577;2.529921;1.633577;2.467543;1.64496;2.219938;1.471632;2.20279;1.755428;1.70816;1.283804;1.680377;2.491953;2.567129;2.463661;1.283393;1.770293;2.761025;1.774463;1.914769;3.203419;2.738587;2.1435;2.192838;2.653492;2.571676;2.460641;2.136154;2.911609;2.721126;3.027965;2.622038;1.591126;1.409244;1.694428;2.679007;2.043371;2.025984;2.701451;2.24346;2.677985;2.088386;2.515385;2.808891;2.189052;2.619894;3.044233;2.402866;3.014421;2.447777;2.529842;1.240013;2.278453;2.108711;2.264028;2.313726;2.388672;1.642347;2.107209;2.879015;2.544035;1.251851;1.709202;2.302525;2.19511;3.295351;2.438508;2.030459;1.91712;1.439951;1.328759;1.357941;1.515772;1.740951;2.193978;2.933991;1.647941;1.445029;2.526864;1.506052;2.555755;1.280077;1.874409;2.323304;3.351511;2.568934;3.170329;3.590091;2.901623;1.732718;2.089694;2.761886;2.790219;1.980549;2.924979;2.164013;1.667785;1.394132;2.032999;1.767908;2.72941;2.159632;2.010501;2.257381;3.34497;1.683639;2.332483;1.416286;1.510994;2.698169;2.729599;1.813646;2.956329;1.812384;1.908997;1.881814;1.283517;3.202073;1.357484;1.863197;1.704624;1.126356;1.518591;2.978586;2.747422;2.360918;2.176151;1.885407;2.054066;2.597608;1.676583;2.278207;1.526505;2.368867;1.523164;2.469831;2.239949;1.691406;1.627927;1.542552;2.593288;2.984676;2.242375;1.155314;1.696999;2.709412;1.972224;2.235092;2.862978;2.704947;2.185192;1.779907;2.806541;2.73481;2.57528;2.101832;2.965257;2.757867;3.103603;2.329076;1.609748;1.459633;1.755822;2.516311;1.890909;2.158921;2.717628;2.514029;3.147697;2.06969;3.011936;2.665669;2.358414;3.013622;2.789805;2.297512;2.969173;2.528428;2.69582;1.385404;1.96359;1.982372;2.19496;1.902197;2.390491;1.837165;2.189238;2.887765;2.697043;1.265714;1.802673;2.096313;2.260967;3.525214;2.446864;1.760475;1.742347;1.469173;1.255175;1.582945;1.75082;1.787834;2.632799;2.83689;1.795336;1.741809;2.295537;1.423617;2.514235;1.339379;2.017719;2.521904;2.967186;2.430261;3.088479;3.073591;2.903768;1.933635;2.171462;2.771585;2.950738;1.536403;2.491439;1.553406;2.030591;1.958816;2.229259;1.304958;2.3601;2.212645;1.550967;2.484195;2.66591;1.876624;2.299174;1.450493;1.39179;2.635181;2.893226;1.397343;2.357873;
2.472925;2.09964;2.415276;3.342945;2.639408;3.410437;2.229746;2.937973;2.799353;2.697913;2.125671;2.243737;2.918118;1.563456;2.885531;1.691669;2.640898;2.851179;2.534125;2.041433;1.579798;2.82816;1.094763;2.893047;2.848259;1.4307;2.721976;2.270461;2.553884;2.104455;1.71922;1.695761;2.454494;2.345466;2.861773;2.521481;2.833577;2.412865;1.680065;2.63098;2.869793;1.94254;2.0032;1.886102;2.126617;2.346121;2.655702;2.056486;2.308122;2.456343;2.058839;2.242664;3.080742;1.767791;1.983973;3.306617;1.910794;1.800752;2.829299;2.476952;2.235116;2.512775;2.855244;1.868324;1.265234;2.301341;1.294652;1.964013;1.831145;2.413821;1.193266;1.497622;1.591981;1.62329;2.412446;1.8635;2.444841;2.786989;1.69687;1.384886;1.342271;2.723005;1.458635;1.09481;2.164708;2.361547;1.977241;2.105763;1.90006;2.377856;2.188709;2.092651;2.012784;2.783799;1.993836;1.503549;1.698078;2.725349;1.924933;2.470575;1.859085;2.393655;0.9277809;2.367821;2.281593;1.750268;2.451249;1.463299;2.102631;2.138677;2.439247;1.713208;1.38553;1.662182;1.515988;1.904643;2.078461;2.219821;1.879328;1.442101;1.600441;1.464998;1.826598;3.06763;2.132498;3.015776;2.631645;3.181765;2.404264;2.148464;2.397737;3.513823;2.572663;3.367481;2.169222;3.1322;2.78036;2.519702;2.211403;2.720007;3.147631;1.468423;2.882215;1.921805;2.646472;2.494479;2.657614;2.274476;1.491827;2.973416;1.301305;2.732103;2.588869;1.24077;2.444367;2.376053;2.314119;2.072873;1.52638;2.188179;2.42073;2.409386;2.742708;2.612815;2.74629;2.332618;1.669824;2.81194;2.896751;1.809062;2.00839;2.27873;2.311697;2.19199;2.712185;2.342161;2.366291;2.142726;2.099808;2.470022;2.956569;1.845929;2.323684;3.172175;1.744451;1.600931;2.470064;2.552978;2.046149;2.435553;2.729534;2.281914;1.325364;2.394433;1.26464;2.049998;1.776501;2.186886;1.186328;1.545668;1.619394;1.47013;2.434464;2.237661;2.683925;2.618134;1.843945;1.537277;1.475554;2.422415;1.54862;1.259718;2.07793;2.302072;2.318678;1.900686;1.741631;2.110535;1.888694;2.163184;1.833768;2.70333;1.888916;1.87742;1.767519;2.827375;1.888405;2.567563;1.804116;2.168448;0.9215912;2.428954;2.314264;1.591686;2.473564;1.797315;2.017119;2.545825;2.249178;1.617147;1.480922;1.959831;2.030858;2.044478;2.279123;2.421064;1.598362;1.17625;1.840292;1.578451;1.606844;3.220396;2.385141;2.747349;2.280204;2.727262;
3.023289;1.738222;2.243709;1.222756;2.814338;2.267663;1.134009;2.200213;2.448072;2.485137;1.903132;1.841552;2.280937;2.704727;2.438948;2.86363;2.839114;3.044478;2.635099;2.116637;2.822804;2.226976;2.50167;2.352001;2.614927;2.145964;2.499023;2.481115;2.312427;3.018752;2.127884;2.555548;2.836067;3.17046;2.101447;2.559554;3.41173;1.967663;1.698233;1.794559;2.376444;1.938021;2.626451;2.919294;1.569767;1.733864;3.054573;1.363209;1.411596;1.594042;1.965947;1.734181;1.163496;1.363499;1.096205;2.531598;1.935216;2.791238;2.210951;1.922687;1.489989;1.312612;2.188668;1.203101;1.651886;2.466965;1.915273;2.297256;1.820601;1.433226;2.090515;1.534251;2.270835;1.789208;2.842313;2.417771;1.806713;1.938961;3.146505;1.908061;2.687094;2.009201;2.553458;1.256722;2.553086;1.728961;2.248879;2.762041;2.16407;2.207957;2.347727;2.389293;2.132114;1.900854;1.512609;1.884637;2.597085;2.401757;2.42689;2.23414;1.703908;1.876531;1.860813;1.430041;3.073489;2.165895;3.39374;3.026127;2.421908;2.859226;2.85066;2.538367;2.585219;2.52598;3.126018;2.872806;2.612532;2.461739;2.399248;2.732498;2.641195;2.955199;1.26305;3.257616;1.637005;2.473595;2.536767;2.068531;2.954773;1.861897;2.641174;1.354932;2.751012;2.176475;1.23514;2.200523;2.357111;2.392242;1.998015;1.699051;2.191854;2.613437;2.462687;2.535519;2.86246;2.812532;2.75121;1.936372;2.660519;1.936082;2.722123;2.814207;2.915463;1.913665;2.771704;2.749158;2.178776;2.803057;2.442947;2.323373;2.790721;3.356785;2.490696;2.695199;3.340405;1.907098;1.875011;1.846676;2.294894;1.873759;2.730242;2.688337;1.484072;1.683719;3.135211;1.174755;1.412646;1.439234;2.058028;1.524999;1.031367;1.154117;1.276571;3.066476;2.17549;2.541461;2.458736;2.069973;1.335707;1.224054;2.446222;1.123869;1.670391;2.594223;2.206424;2.413942;1.851846;1.373826;2.144323;1.556761;2.075289;1.764642;2.794821;2.171966;1.698417;1.931496;3.158071;1.782665;2.756772;1.804284;2.571144;1.071997;2.451946;1.483943;2.356444;3.28225;2.296982;2.026282;2.458053;2.553159;1.947649;1.793883;1.728633;1.785068;2.621278;2.52734;2.754447;2.349221;1.735007;1.808384;1.912339;1.451718;2.846321;2.138856;3.343054;2.75047;3.030147;2.584931;2.606238;2.778005;3.217996;2.342287;2.862416;2.174363;2.83057;2.146739;3.029943;2.282627;2.408751;2.571281;1.549553;2.906868;1.630801;2.393568;2.583592;2.229128;
1.888823;2.742317;2.117496;1.845645;1.782075;2.296203;2.174845;2.770509;1.769291;1.510641;2.950878;3.458721;2.028076;2.292543;2.96082;2.393325;2.076817;1.681671;2.329529;2.894824;2.11033;2.223002;1.421067;1.287741;1.436685;1.53818;1.731003;2.79128;2.37878;1.568245;1.899788;2.521987;1.53034;1.401242;1.345593;1.669938;2.224742;2.281155;2.203688;2.303479;2.025114;1.599746;2.180337;1.698695;3.061531;1.121493;2.214372;2.109197;1.587721;2.031536;2.693673;2.921839;3.059971;2.414173;2.382764;1.85752;2.400222;1.9178;2.733742;1.701588;2.575865;1.863837;2.696028;1.899714;1.97906;1.531896;1.014808;2.529812;3.05947;2.419516;1.728228;1.947497;3.375646;1.563159;2.871235;3.154833;2.351454;1.449868;2.056597;2.446767;2.906167;2.004116;1.45466;2.943724;2.943407;2.545033;1.936248;1.224292;1.653644;1.35291;3.081821;2.046553;2.593241;2.424677;2.339017;2.641894;1.979084;2.091663;2.53397;2.178068;2.665163;2.477416;2.8538;2.313331;3.046228;2.488324;1.815625;2.619508;1.814705;2.050909;2.434198;2.803398;2.651189;2.720008;2.633343;2.706321;1.657029;2.310063;2.734331;2.046277;3.569746;2.501052;2.115894;1.849235;1.885253;1.483565;1.673561;1.403234;2.110029;2.755217;2.123546;1.744618;1.6384;2.735641;2.43099;2.67035;1.854477;1.3901;2.650705;2.997674;2.026294;2.505105;3.284173;2.408833;2.238761;1.708349;2.120836;2.857026;2.123242;2.290166;1.509457;1.261131;1.785981;1.291113;1.5119;2.350395;2.445481;1.517283;1.778275;2.468248;1.678108;1.403828;1.387625;1.611679;2.042561;2.689684;2.406939;2.184165;2.065906;1.47513;1.975138;1.421859;3.039433;1.255434;2.445361;2.070004;1.661769;2.094897;2.527655;2.906725;3.025283;2.499053;2.447635;1.775749;2.759;1.671097;2.515285;1.500352;2.600892;1.862122;2.337193;1.789935;2.146019;1.58914;1.079151;2.63039;2.921561;2.746122;1.869117;1.892397;3.40376;1.471302;2.530786;2.946594;2.334003;1.639925;2.077824;2.332329;3.005664;2.130361;1.364847;3.116966;2.987278;2.542819;1.954281;1.202036;1.935211;1.175457;2.741045;1.825809;2.618422;2.42353;2.005728;2.512989;2.146114;2.159068;2.634951;2.272089;2.536621;2.808653;3.03414;2.254045;3.073023;2.372698;1.547008;2.43069;2.059399;2.501333;2.505335;2.246865;3.000166;2.457859;2.153034;2.122261;1.59369;2.427521;2.639987;1.707945;3.877935;2.160662;2.129121;1.835259;1.788476;1.669084;1.955514;1.919416;
2.382099;1.638756;2.023339;1.274554;2.240072;1.329329;1.309164;1.486669;1.454422;2.532688;1.950634;2.420691;1.911333;2.025025;1.101084;2.168834;2.503056;1.860324;1.298965;2.723018;1.833048;2.913717;1.919185;1.704079;2.733568;1.964669;1.825974;1.8611;3.172442;2.236342;1.560464;2.165023;2.74601;1.618791;3.000587;1.600189;2.626644;0.944118;2.283859;2.606625;1.572495;2.431812;1.590615;2.4892;2.220926;2.099261;1.533946;1.58674;1.751252;1.963987;2.684231;2.022478;2.594378;1.698786;1.434535;1.694961;1.429411;1.884536;2.829297;1.752647;2.621061;2.885804;2.489988;2.22791;2.360303;2.788153;3.392471;2.062964;3.312383;2.260842;2.93433;2.391544;2.494949;2.413662;2.194522;2.513839;0.947643;2.923813;1.358491;3.447544;2.629636;2.905165;2.360731;2.139749;2.271038;1.581667;2.887526;2.460855;1.682982;2.490723;1.892331;2.165064;2.510774;1.766092;1.951628;2.710198;2.20568;2.273539;2.96042;2.602607;2.728507;1.588137;2.771235;2.974676;1.87197;2.124932;1.928853;2.373603;2.722603;2.137671;1.795245;2.374267;2.651939;2.456332;3.032842;3.047564;2.375144;2.132214;2.902774;1.542913;1.390269;2.319712;2.437834;1.671623;2.080981;2.938512;1.61224;1.441655;2.649366;1.71511;1.894598;1.420121;2.234515;1.48539;1.632262;1.624043;1.670021;2.687058;1.889388;2.281148;2.264087;2.087067;1.080803;1.840153;2.887232;1.544663;1.355932;2.688641;1.792393;2.731039;1.76376;1.412958;2.600735;1.875144;1.794899;1.695305;3.217755;2.248454;1.441833;2.253006;3.021765;1.714034;2.83373;1.717271;2.606086;1.088807;2.72957;2.762003;1.778403;2.609656;1.519229;2.298228;2.571378;2.180223;1.517942;1.308316;2.093202;1.636886;2.768256;1.968872;2.559012;1.551854;1.324035;1.405185;1.348367;1.793951;2.792668;1.755233;2.561365;2.885769;2.35998;2.413012;2.53539;3.072224;3.214794;2.069104;3.237892;2.536971;3.243976;2.61652;2.677239;2.494553;2.182299;2.545152;1.105509;3.016536;1.358743;3.139956;2.95767;2.652545;2.439799;1.961844;2.195918;1.482039;2.559216;2.178318;1.538437;2.29416;1.930622;2.168066;2.453246;1.766048;1.837619;2.914088;2.376052;2.530863;2.795527;2.609643;2.661867;1.820837;3.073523;3.225121;2.031236;2.201;1.918163;2.404872;2.498343;2.839661;2.149069;2.435075;2.680292;2.027981;2.481082;3.30566;2.092212;2.359365;3.43909;1.969436;1.588019;1.98261;2.283497;1.740396;2.342232;3.043172;1.583534;1.434966;
2.71762;2.304999;1.900828;1.445695;1.615009;2.60562;1.72127;2.765434;3.123358;2.459038;2.503641;2.465677;2.850244;2.908188;2.498362;2.299428;2.549224;2.416608;2.744624;2.536785;2.11523;1.245112;2.306862;1.749247;2.20333;2.222314;2.542452;2.534677;2.105355;2.275962;2.10663;1.846283;1.932907;3.366661;1.875653;3.165304;2.379114;1.857107;1.96775;1.309929;1.800963;1.606212;1.420894;2.051844;2.623541;2.576404;1.700675;1.364682;3.35762;1.761486;2.31741;1.448122;1.995025;2.374881;2.877667;2.337802;2.769498;2.956255;2.504682;1.423198;1.893339;2.087183;2.84004;2.300875;2.452392;1.591903;1.815933;1.548006;1.962187;1.54535;2.406283;2.679251;2.23713;2.320214;2.60044;1.963135;1.932379;1.545973;1.63912;1.79665;2.4265;1.837326;2.739711;1.683506;1.393996;1.798976;1.523588;2.807646;1.264598;2.272264;1.915353;1.626359;1.255035;2.464456;2.038376;3.147238;2.092677;2.730613;1.548459;2.496192;1.766385;2.540096;1.848985;2.054822;2.21832;2.556927;1.820134;1.996418;1.517133;1.380118;2.488349;2.616303;3.222154;1.304592;1.577493;2.996602;2.204714;2.482254;3.325834;3.010094;2.166931;2.008527;2.600852;2.148603;2.492859;1.500386;3.076138;2.687918;2.996803;1.923489;1.932137;1.38193;1.647159;2.643723;1.556585;2.48625;2.902243;2.293477;2.63549;2.420399;2.652706;2.823339;2.380244;2.464635;2.644212;2.540312;2.558903;2.661301;2.218987;1.611089;2.72247;1.935195;2.417145;2.343621;2.625281;2.497787;2.218116;2.280516;2.075052;1.575722;2.131057;2.955364;1.895422;2.999747;2.381427;1.834245;1.725925;1.10842;1.606996;1.517191;1.516634;1.960421;2.403111;2.438386;1.545451;1.507155;3.44071;1.91495;2.151954;1.522844;2.076702;2.806077;3.268083;2.571249;2.984034;3.156836;2.592174;1.450395;2.104492;2.131089;2.876405;1.997119;2.7898;1.407764;1.865816;1.406935;1.831495;1.44002;2.106165;2.388822;2.018592;2.101079;2.641027;1.959229;1.858833;1.519733;1.540322;1.959066;2.607871;2.110103;2.596021;1.735569;1.348382;2.076059;1.781783;3.065214;1.409469;2.331357;1.916623;1.656035;1.427936;2.512888;2.069225;2.790846;2.4053;2.488313;1.594607;2.316867;1.642446;2.405258;1.58716;1.802066;2.000829;2.327214;1.854179;1.993456;1.578835;1.693973;2.950284;2.699303;3.13109;1.452813;2.024583;3.061713;1.743364;2.555253;3.182308;2.401244;2.161226;2.011305;2.667924;2.440071;2.650393;1.77173;2.775104;2.6746;
2.82302;2.662687;2.797146;2.027975;2.692452;1.545563;2.187483;1.814844;2.368066;1.853584;2.040894;2.11809;2.585159;1.459616;1.248016;2.661657;2.781444;2.736877;1.730493;1.972032;3.121933;2.144395;2.686269;3.061317;2.393815;1.688799;1.950218;2.220561;1.996152;1.993664;1.228616;2.313013;2.817777;2.71423;2.178738;1.492591;1.571342;1.567243;3.127746;1.409777;2.077181;2.357451;1.947982;2.305002;1.996469;2.060539;2.097135;2.070805;2.917967;2.747457;2.682299;2.136174;2.304888;2.442472;1.441212;2.213886;1.498334;2.314348;2.893825;2.791053;2.299536;2.74455;2.477833;2.700178;1.40116;2.401368;2.938525;2.272976;3.40949;2.336507;1.658299;2.15047;1.64588;1.571398;1.285738;1.796557;2.463483;2.580121;2.520051;1.700047;1.3077;2.684248;2.009666;2.719408;1.475308;2.078284;2.702799;3.143473;2.092527;2.253266;3.207808;2.41044;1.244211;1.547295;1.865998;2.06981;1.810764;2.544366;1.666638;1.461424;1.453258;1.884474;1.557769;2.177601;2.158236;1.616198;1.789256;2.361125;1.592086;1.4545;1.094784;1.361174;2.505262;2.825849;2.133982;2.189308;1.527134;1.703983;1.528042;1.605052;2.942793;1.49136;2.914021;1.827791;1.477671;2.022606;3.09246;3.020623;2.563696;2.665284;2.417962;2.014692;2.528168;1.66407;1.864961;2.200036;2.937019;1.650127;2.099139;2.334838;2.273787;1.505893;1.471325;2.785856;2.745517;2.428129;1.466524;2.01141;3.189094;2.178547;2.280229;3.320042;2.63673;1.746566;1.904967;2.094732;2.043638;2.08942;1.593997;2.311067;2.620619;2.803133;1.881355;1.489615;1.473483;1.69363;2.644845;1.764029;2.662936;2.206607;2.032182;2.545063;1.742227;2.123861;2.281919;2.185337;2.903165;2.518045;2.378201;2.180682;2.35507;2.483225;1.076729;2.439773;1.708586;2.461384;2.868911;2.458299;2.403028;2.846445;2.828201;2.814194;1.40763;2.382145;2.701785;2.247241;3.332011;2.490559;1.472841;2.456472;2.01614;1.404842;1.349827;1.839472;2.237594;2.636239;2.571043;1.899123;1.444108;2.355952;1.838755;2.745678;1.562006;2.116077;2.401249;3.265675;2.179484;2.341872;3.175651;2.101938;1.321389;1.623948;2.172591;2.169854;1.818884;2.524601;1.490227;1.440793;1.403602;2.022979;1.378997;2.485542;2.580417;1.447236;1.865448;2.410383;1.756115;1.824901;1.592906;1.494233;2.71295;2.233643;1.795222;2.495779;1.88395;1.513914;1.513167;1.811682;3.364363;1.390144;2.612301;1.583366;1.68105;1.616865;2.701277;3.267376;
1.596214;2.717291;2.057382;2.74714;2.938061;2.508097;3.006229;2.164032;2.833411;1.525155;2.216068;1.897991;1.646233;2.595884;2.199522;2.064176;2.414322;1.672071;2.012033;2.321664;2.772344;2.393591;2.579303;2.815731;2.760134;2.240081;3.151901;2.514126;1.894678;2.877048;2.266137;2.481691;1.907538;2.137869;1.873277;2.026539;2.118424;2.312285;2.590842;2.694788;1.796504;1.863738;3.094753;1.985474;1.640057;2.264123;2.489697;1.781317;2.304346;2.355392;1.60873;0.9183203;2.675003;1.595919;1.77144;1.820911;1.757388;1.097615;1.43126;1.350035;1.285167;2.44237;1.900281;2.578567;2.810334;1.769006;1.640938;1.477803;2.918649;1.537866;1.860576;2.938712;2.334783;2.814112;1.441812;1.245923;2.638125;1.969523;1.83459;1.410286;3.158792;2.160846;1.627112;1.625994;3.511242;1.717469;2.653816;2.025728;2.677391;1.434398;2.771031;2.191656;1.605815;3.232342;1.798602;2.623126;1.752067;2.076666;1.552151;1.344784;1.52666;1.774605;2.478983;2.056195;2.178292;1.562074;1.459594;1.925334;1.5952;1.52095;2.867658;1.936993;2.83496;2.442524;2.321856;1.754562;2.57787;2.686856;2.818211;2.516935;2.736554;2.152623;3.052086;2.181594;2.300007;2.016659;2.329044;2.670791;1.875355;2.903174;1.91627;2.733966;2.688758;2.745595;2.866135;1.999298;2.718325;1.670358;2.182979;1.951503;1.477117;2.212237;2.200254;1.746618;2.538561;1.499125;2.022889;2.587862;2.592094;2.725259;2.51185;2.650062;2.764946;2.504147;3.263194;2.529758;1.936738;2.556508;2.295322;2.250743;2.285122;2.292528;1.739091;2.039942;1.930178;2.505327;2.475081;2.59995;1.776318;2.020902;3.065229;2.07195;1.495527;1.881017;2.510249;1.533566;2.483377;2.181994;1.625625;1.08932;2.501834;1.875874;1.732286;1.737569;1.810249;1.309664;1.513638;1.228835;1.390988;2.31302;2.017914;2.401073;3.216631;1.928609;1.541049;1.492967;2.679739;1.686584;1.664462;2.747502;2.227221;2.943347;1.457682;1.183535;2.546313;1.750006;1.941174;1.232558;3.318812;2.014186;1.67097;1.855727;3.294101;1.997702;2.48603;1.862363;2.650336;1.629039;2.936323;2.037127;1.723962;3.083946;1.91306;2.444671;2.075644;2.250051;1.454997;1.359804;1.355376;1.93464;2.251734;1.897302;2.074328;1.659372;1.475512;1.848522;1.535783;1.510089;3.422109;1.950163;2.90362;2.335639;2.659042;2.530865;2.192796;2.451283;2.55829;2.780427;2.788835;2.100023;3.545085;2.576737;2.706258;2.635747;2.200403;2.320312;
2.070198;2.593544;1.571583;1.719143;1.55672;2.137553;2.216454;2.62858;2.527476;1.857636;1.423941;1.491659;1.453635;1.557933;3.204729;1.991757;2.698941;2.068231;2.552952;2.676445;2.340259;2.682794;3.485439;2.649467;2.795921;2.48065;3.407883;2.593801;2.622092;2.670331;2.507083;2.869082;1.37651;1.907514;2.241275;2.404533;3.206013;3.048007;2.689032;1.678041;2.993511;1.079879;2.871441;2.310655;1.270204;2.671077;2.218672;2.325142;2.152659;1.613623;2.006305;2.886704;3.032273;2.280059;2.541507;2.858735;2.875064;2.381472;2.321431;2.976937;2.654117;2.428431;2.14447;1.979433;2.394735;2.550444;1.753443;2.902071;2.359002;2.423947;2.361109;3.792241;2.196498;2.136103;2.975278;1.620246;1.714539;1.977056;2.784499;1.676746;2.276257;2.131818;1.623163;1.494086;2.472103;1.41575;2.115158;1.826336;1.761522;1.496552;1.736836;1.451378;1.710335;2.756444;2.067312;2.420122;2.504579;1.209124;1.777497;1.351227;3.158018;1.548422;1.540609;2.450169;2.5034;2.092694;2.2033;1.545832;2.441851;1.966785;1.969255;1.754683;3.080911;2.109451;1.60504;2.308913;3.687349;1.441131;2.516447;1.955614;3.002714;1.450046;2.0053;2.352443;2.531941;3.096468;1.677789;2.08173;2.067697;2.58064;1.328922;1.727159;1.589478;1.818709;2.370573;2.775898;2.677715;1.867642;1.495275;1.842241;1.653922;1.39656;3.200361;2.246261;2.677737;1.926471;2.447301;2.65888;2.173172;2.205328;3.649747;2.79894;2.972116;2.221336;3.321999;2.581884;2.941592;2.567655;2.463059;2.854127;1.352349;1.938303;1.970288;2.364401;3.210651;2.642753;2.850433;1.68603;3.110707;1.121266;2.985956;2.693033;1.418916;2.437436;2.194648;2.491523;2.133462;1.505141;1.94331;2.843764;2.830925;1.798477;2.68323;2.897555;3.05363;2.147233;2.28402;2.927525;2.785351;2.435526;2.092077;2.129532;2.273863;2.535463;1.564318;2.769954;2.350932;2.215891;2.521573;3.789129;2.253216;2.250927;3.068925;1.933117;1.744401;1.912656;2.744405;1.974621;2.169675;1.962789;1.617357;1.400787;2.279189;1.150976;2.254077;1.846912;1.86292;1.356167;1.688385;1.416966;1.816839;2.763982;2.01674;2.585932;2.381994;1.198873;1.587895;1.261592;3.149791;1.383056;1.671521;2.447797;2.565031;2.206437;2.285011;1.852059;2.864612;1.600088;1.611723;1.750147;2.814221;1.545249;1.319272;1.730043;2.96958;1.157512;2.282672;1.573411;2.730782;1.174177;2.294109;2.614676;1.995978;2.988024;2.145288;2.700933;
2.417228;2.540498;2.377945;2.049168;3.082689;2.650842;2.907655;1.54472;2.49888;2.122543;2.379254;2.568257;2.518276;2.458811;2.553534;2.542245;2.317446;1.373629;2.100986;2.508426;1.986396;2.691342;2.886057;1.85701;2.726738;1.834688;1.329784;2.016829;2.034685;2.552394;2.398152;2.928771;1.89763;1.323908;2.525252;1.870102;2.453834;1.551642;1.783735;2.34063;3.110182;2.387183;2.197815;2.590968;2.0492;1.654158;1.401526;2.460625;2.467848;1.56617;2.334416;1.713439;1.779607;1.553209;1.409915;1.525403;3.166954;2.097308;1.875012;2.553935;2.751498;1.953572;1.866906;1.697194;1.792145;2.194491;2.422127;1.619614;2.903711;2.029309;1.894735;1.987363;1.637955;3.264289;1.534099;2.812375;1.904358;1.595534;1.755096;2.533521;2.467233;2.519686;2.33597;2.064094;1.507119;1.942152;1.909375;2.131121;2.353547;2.611708;1.718289;3.167009;2.554186;2.494133;1.358738;1.687739;2.880282;2.502556;2.322308;1.373393;1.734761;3.188277;1.696006;2.127218;3.432318;2.724199;1.350021;1.525574;2.20648;2.392953;1.766446;1.660368;2.724256;2.345021;2.44972;1.983474;1.636162;1.580154;1.217774;2.859462;2.200183;2.371375;2.477554;2.726072;2.593576;2.24715;2.736598;2.915536;2.46615;2.343195;2.406428;2.184363;2.984484;2.617877;2.559836;1.486462;2.537617;2.105683;2.545887;2.467723;2.742525;2.352193;2.580213;2.642176;2.376012;1.418268;2.297658;2.428539;1.919638;2.836859;2.855547;2.021946;2.628302;2.050892;1.198396;2.119583;2.123396;2.629781;2.593868;2.798326;1.972259;1.191253;2.460155;1.949896;2.349645;1.491402;1.554602;2.266185;3.202086;2.389071;2.27464;2.442245;2.240439;1.535425;1.464698;2.593282;2.583218;1.627954;2.465444;1.63414;1.715906;1.629664;1.439624;1.702951;3.121213;2.345012;1.655628;2.490406;2.747896;1.982368;1.934214;1.584225;1.724532;1.99669;2.432252;1.826889;2.917173;1.942291;1.692723;1.973491;1.631053;3.347186;1.623702;2.495521;1.998766;1.478297;1.725903;2.650025;2.417251;2.569064;2.54319;2.120742;1.540764;2.009883;1.981059;2.401236;2.227868;2.964036;1.53325;3.096946;2.550827;2.527472;1.416157;1.575749;2.794257;2.291731;2.33234;1.565274;1.745261;3.079863;1.505096;2.113628;3.422173;2.80077;1.434246;1.295134;3.204226;2.216178;1.779002;1.386482;3.083603;2.843857;2.635448;2.407863;1.636954;1.526246;1.376243;2.679152;1.878649;2.845566;2.606943;2.727969;2.558249;1.873648;2.603245;3.062678;
2.360694;2.598024;3.082969;2.547279;2.943403;2.642032;1.776731;2.547181;2.345792;2.161896;2.813157;2.795865;2.369677;3.294085;2.297315;2.393606;2.317571;2.907939;2.284956;2.526712;2.933977;2.515103;1.642018;2.497991;2.55268;1.595125;2.83877;2.421631;1.604128;1.155411;2.152405;1.326529;2.066253;1.514051;2.374101;1.240067;1.594392;1.109302;1.600299;2.384758;2.372425;1.97849;3.302234;1.961982;1.664151;1.718583;2.19452;1.367756;1.342369;2.21484;1.82258;2.662397;1.777644;1.366892;2.242858;2.009511;2.118373;1.820619;3.308143;2.181821;1.562584;2.17568;3.151772;1.881513;2.478891;1.740195;2.75641;1.732231;2.511915;2.12337;1.47454;3.057945;2.091821;2.176216;2.414028;2.725713;1.933433;2.163956;1.557478;1.85148;2.276027;1.997539;2.444152;1.922293;1.283884;2.253318;1.433237;1.921211;3.08463;1.848989;3.359962;2.299293;2.264418;2.208559;2.107882;2.506833;3.503743;2.192601;3.39665;1.975909;3.044252;2.077666;2.766598;2.200265;2.702816;2.23828;1.908761;2.764191;1.936498;2.971452;2.261708;2.53925;2.62728;1.502712;2.130744;1.456948;2.519251;2.060232;1.107474;2.839662;2.456829;2.486317;2.205196;1.546787;2.002738;3.130553;2.680406;2.588034;2.43412;2.438431;2.727579;2.136727;2.607761;2.831238;1.576659;2.30774;2.462518;1.941864;2.700701;2.94921;2.200501;2.961058;2.157901;2.613662;2.665599;3.188089;2.379088;2.594794;3.229851;2.397822;1.574245;2.698574;2.606497;1.719563;2.641482;2.276201;1.649326;1.345637;2.415958;1.325966;2.153429;1.405777;2.067539;0.92733;1.34911;1.252606;1.45781;2.209907;2.498607;1.785172;3.172707;2.046533;1.51093;1.502073;2.102778;1.575336;1.593567;2.475549;1.898958;2.671145;1.969871;1.297653;2.206745;2.237618;2.148504;1.96721;3.085132;2.066243;1.582121;2.38035;3.384045;1.822996;2.38863;1.674997;2.537894;1.446285;2.254386;2.309785;1.371287;2.793702;2.144127;1.949601;2.393631;2.914483;1.778987;1.852223;1.424735;2.030941;2.413447;2.306123;2.648033;2.034511;1.491446;2.154265;1.439195;2.087403;3.043265;1.97293;3.241429;2.180593;2.288921;2.414634;2.299398;2.439142;3.397419;2.11934;3.154774;1.669628;2.761136;2.262008;2.62534;1.976961;2.763259;2.008366;1.891551;2.954392;1.518449;2.704329;2.470043;3.245845;3.001193;2.205322;2.956851;1.367995;3.013425;2.102198;1.414566;2.165344;1.901195;1.920886;1.811594;1.397306;1.788631;3.184323;2.267098;2.339172;
1.451337;1.967243;3.516815;2.094755;2.575524;3.129616;2.597408;1.897013;1.848131;2.547683;2.51867;2.641599;1.93837;2.180087;2.537405;2.815828;2.100461;1.786932;1.864756;1.305376;3.030794;1.924578;2.543097;2.11391;2.45925;2.697074;1.905031;2.201885;3.296107;2.147862;3.064507;2.588988;2.146587;2.569523;2.954727;2.419786;1.238445;2.014851;1.738958;2.333821;2.649971;2.646389;1.900015;2.308338;2.524238;2.354151;1.593223;1.587598;2.994943;2.244773;2.799456;2.311584;2.623386;1.661227;1.728651;1.286323;2.008978;1.950768;2.092163;1.993493;2.592889;1.851243;1.626826;2.962439;1.839242;2.691588;1.742778;2.055527;2.901398;3.156066;2.303556;2.781986;3.130318;2.715069;1.70865;2.158171;2.830916;1.90019;1.836781;2.715967;1.703785;1.886476;1.774137;1.367024;1.816492;2.516015;2.44987;1.396336;2.304196;2.75886;1.494785;1.456262;1.768106;1.259165;2.587911;2.524588;1.713691;2.586778;2.152263;1.572241;1.585371;1.160815;2.957049;1.323714;2.655533;1.966756;1.13891;1.717286;2.637938;2.219364;2.786643;1.966152;2.631757;1.769257;2.002256;1.540162;3.037522;1.388995;2.983147;1.579867;3.08711;2.400936;2.052049;1.109764;1.278243;2.731109;2.818158;2.71409;1.510174;2.275507;3.180865;1.917777;2.579905;3.0489;2.42982;1.784566;1.968567;2.443047;2.679724;2.650879;1.680955;2.085008;2.357065;2.767718;2.193527;1.790373;1.835994;1.25548;3.230978;2.205784;3.106571;2.175053;2.712808;2.754364;1.854655;2.324887;3.07167;2.086968;3.043321;2.562707;2.159137;2.910671;2.699382;2.274272;1.22525;1.92555;1.558237;2.180844;2.736188;2.53878;2.093458;2.370359;2.212059;2.233779;1.413145;1.505351;3.014732;2.283991;2.826234;2.265285;2.762254;1.936641;2.151835;1.291591;2.161703;2.032855;2.092955;2.092796;2.414286;1.906886;1.612493;2.89224;1.88543;3.034786;1.543106;2.028032;2.885586;2.981514;2.046092;2.632536;3.251905;2.500096;1.873372;2.180028;2.565984;1.890913;1.644238;2.568578;1.752213;1.918166;1.790421;1.420652;1.936464;2.792805;2.891411;1.415554;2.492151;2.746017;1.478514;1.541828;1.62123;1.30572;2.569899;2.460655;1.758349;2.924132;1.929594;1.548723;1.573741;1.056465;2.664404;1.221856;2.767692;1.785;1.274008;1.737311;2.758362;2.39004;2.334569;2.706909;2.751014;1.837548;1.788452;2.101631;2.415933;1.597788;2.473155;1.981063;3.174572;1.853268;2.513489;1.212166;1.277781;2.247757;2.58108;2.475816;
1.498263;3.203622;2.371276;2.562122;1.36229;1.590966;2.374519;2.894105;2.524146;1.343089;2.104261;3.290097;1.955619;2.408998;3.800696;2.855747;1.727609;2.107252;2.036697;2.439584;2.537365;1.633837;2.947808;2.210381;3.191646;2.549939;1.894375;1.578279;1.385821;2.420321;2.056114;2.147949;2.365227;1.928507;3.148669;2.079707;3.043344;2.416698;2.544859;2.498696;2.407481;2.074463;2.410873;2.62076;2.699244;1.169708;2.094343;1.976703;2.249222;2.53918;2.154766;2.581382;2.765017;1.898937;2.700542;1.682571;2.265615;2.591096;2.51747;3.447989;2.949356;2.044571;1.570776;1.915535;1.134327;2.054109;2.009021;2.517875;2.441299;2.845287;1.480002;1.548846;2.512203;1.550751;2.950514;1.873592;2.076838;2.384208;3.438498;2.441097;2.492396;3.203036;2.024272;1.485252;2.127146;2.544226;2.461494;1.433415;2.927708;2.10068;1.968808;1.628167;1.710465;1.382434;2.676499;2.248105;1.73654;1.655497;3.165106;1.603648;2.276634;1.346574;1.699823;2.095446;2.475757;1.73673;2.48401;2.005588;1.892215;1.510099;1.261966;3.354587;1.299737;2.476869;1.576853;1.655515;2.052195;2.071206;2.81443;2.772318;2.61173;2.047891;1.881475;2.534959;2.225448;2.681647;1.374236;2.73848;1.620234;3.153512;2.270845;2.599601;1.46294;1.635138;2.246054;2.796422;2.924318;1.20654;1.899671;3.32166;2.097238;2.379959;3.27549;2.648304;1.873986;2.118395;2.117296;2.477266;2.484732;1.99495;2.974458;2.003861;3.234362;2.430332;1.642121;1.575964;1.478189;2.663372;1.97505;2.035234;2.508135;1.910103;3.022477;2.063843;3.176559;2.490045;2.435279;2.384255;2.776456;1.927006;2.172151;2.596045;2.834884;1.162397;1.717627;1.805626;2.435493;2.548471;2.239492;2.592905;2.723257;2.277042;2.760114;1.503577;2.320974;2.467476;2.22707;3.166584;2.991521;2.268779;1.570222;1.816946;1.215128;2.148307;1.914976;2.64037;2.506308;2.819992;1.49405;1.54874;2.85682;1.416354;2.61439;1.67237;2.106876;2.384372;3.04881;2.258986;2.660573;3.35574;2.113541;1.60304;2.041676;2.873409;2.649548;1.352385;2.959105;1.981044;1.656836;1.43677;1.743361;1.567815;2.67685;2.141287;1.837075;1.740284;3.047744;1.701813;2.340297;1.329175;1.715737;2.095419;2.819047;1.594434;2.177257;1.797928;1.766567;1.841501;1.372058;3.253696;1.71854;2.560061;1.663123;1.380399;1.502851;2.999104;2.752998;2.759701;2.273621;2.442841;1.612689;2.544693;2.127861;2.55241;1.671565;2.306186;

View File

@ -1,265 +0,0 @@
[Info] 20:14:39.1: Loading configuration...
[Info] 20:14:39.167: Finished loading configuration.
[Info] 20:14:39.177: Loading biomes...
[Info] 20:14:39.204: Loaded biome 'Grassland' from file 'Assets\Data\Biomes\Grassland\Grassland.xml'.
[Info] 20:14:39.211: Loaded biome 'Mountain' from file 'Assets\Data\Biomes\Mountain\Mountain.xml'.
[Info] 20:14:39.216: Finished loading biomes.
[Info] 20:14:39.273: Picked biome: Mountain
[Info] 20:14:39.734: Generated map:
45.21794;160.731;132.7672;78.59435;79.95192;85.80247;92.5536;163.2391;68.44164;113.5083;102.7903;117.4791;67.86721;162.5556;163.4338;174.2891;69.73193;161.7788;75.69981;167.5328;86.35374;131.4753;77.07567;73.85426;117.4278;60.29146;120.3077;94.72454;99.81862;88.81313;146.9531;131.8913;96.69722;122.4889;122.6233;104.7087;98.3571;141.9299;170.4437;142.6718;124.234;128.6751;60.1398;71.97839;41.45088;84.03912;53.98579;88.28683;55.65348;86.88497;88.52307;55.69264;85.08086;112.6694;44.04787;67.01788;61.71569;134.9906;113.5115;111.0879;171.5846;109.3633;144.1723;121.3142;64.94896;100.2447;87.38006;126.7513;86.18365;154.2178;59.63116;98.20567;138.0812;114.1078;87.86566;104.7815;123.295;166.4033;130.3058;85.32003;89.94369;82.20677;96.86886;111.1894;109.9598;111.4709;53.44627;64.16885;60.6408;76.8409;119.3649;100.9273;51.85281;66.51806;131.3814;96.72544;70.17125;128.9112;75.69273;39.06353;142.325;123.4648;73.77505;93.37084;131.3721;114.9235;85.29971;114.2063;51.49052;77.16217;95.21188;164.0943;85.88125;119.1207;147.816;104.8357;108.6987;141.1357;151.6239;165.5192;146.2827;76.07906;124.6201;149.5294;106.6603;158.2353;164.8429;221.2246;63.33829;182.7288;144.8506;79.32785;81.62805;102.9355;93.85675;164.6076;73.83594;132.6977;113.1274;134.9045;76.05753;188.799;173.8405;174.7606;75.79858;151.1831;72.83713;172.073;101.1563;131.7771;91.81959;76.31296;122.0586;51.82714;114.6511;106.1527;107.7934;94.66813;144.7751;143.6064;116.0739;141.4605;132.4;103.0891;98.44321;158.8849;170.8254;141.6131;126.131;149.0317;67.75572;83.755;47.2168;99.19329;59.6016;87.05102;58.66158;79.46483;84.77016;56.89194;100.3507;109.1417;54.93485;67.97153;63.49067;124.4092;99.92929;114.9772;180.4826;123.0375;138.0468;135.5452;75.44572;112.4729;96.31544;126.9211;84.95029;170.3656;56.97464;95.31544;141.4389;135.271;90.03687;112.5905;131.8129;196.5862;135.0287;86.48653;87.78555;71.00981;93.58496;114.7372;125.6363;106.7694;62.36367;63.45831;62.39964;68.90734;105.4249;104.636;56.7949;77.27113;128.3579;112.6562;76.99291;162.7555;62.19773;63.5871;132.8499;170.3158;76.53486;65.57793;170.2703;125.7203;79.22413;134.0429;76.13584;73.42419;97.49077;194.9059;90.0896;156.752;126.0823;117.3524;83.0001;137.8318;160.7672;122.6673;162.9564;69.47952;154.565;122.04;96.27451;158.7983;198.6788;187.0405;
142.7836;110.9556;161.724;48.09898;140.9951;58.89106;127.151;208.0286;134.258;72.933;95.79553;92.85668;134.1365;132.1802;113.8918;97.63443;144.7719;114.3496;168.8229;93.59138;139.5145;64.13094;111.4462;135.3974;161.2683;208.3531;99.20117;103.1946;101.3211;123.904;124.9894;81.40362;183.0978;51.33773;86.2159;49.61968;113.6266;116.2372;67.82339;122.9611;131.5747;144.1146;70.79742;104.0854;81.36018;123.5703;110.089;107.7104;141.6192;81.09324;126.58;54.35731;58.25405;91.35126;89.78413;76.61657;70.95696;100.2063;147.7802;112.8277;98.64756;130.8606;67.98208;80.60818;97.48335;140.119;115.8864;105.2442;77.41958;65.72041;78.07829;147.5657;82.1963;61.27061;78.57561;145.1611;101.4482;109.8002;72.25576;51.59094;84.80934;114.7008;93.8575;112.3308;172.1747;104.5704;119.132;120.6937;101.0144;94.69244;114.1753;157.1684;101.7484;113.6004;67.34842;217.5497;161.0148;73.55108;73.67255;55.58517;65.09735;46.03471;82.14984;162.7295;155.933;85.15826;64.79914;141.8573;75.18911;141.6599;116.9499;100.8745;126.6508;183.6095;51.50063;62.8598;120.1553;84.25783;79.83095;113.3886;147.9094;129.9057;203.2158;147.9838;98.61034;146.4681;58.62768;99.31906;153.806;107.1083;138.6568;45.68993;157.371;56.33056;125.5829;203.9576;141.947;65.0938;101.3923;69.14661;149.5376;160.5643;109.9104;98.07584;149.6964;113.7355;162.1408;100.9508;148.1835;68.03728;108.3493;151.432;192.5274;177.5451;99.66778;89.57749;109.223;146.1028;124.0777;68.96962;188.4641;47.61517;73.38016;48.84905;126.7312;111.9845;68.30511;121.3659;133.7197;131.7973;79.93242;81.54839;92.08804;150.5199;108.2333;112.7474;142.0982;80.38148;126.1995;64.68652;63.59343;96.38699;88.87071;92.93748;81.08925;88.00539;164.6667;113.0089;106.4012;149.2038;67.95313;64.21174;107.3156;131.5031;104.6028;109.5271;88.03106;69.18187;82.79307;142.1533;76.51413;60.75843;96.04415;127.2846;113.3425;131.1117;71.41309;51.48349;90.60006;111.6234;97.07404;132.9467;180.8859;118.7158;123.2127;137.3747;113.0384;82.84645;129.0732;157.3823;109.6206;130.7321;106.572;185.6048;168.1561;92.94601;65.82777;60.88575;90.44595;70.71271;89.00983;114.6918;150.2126;66.00857;84.84568;119.6857;94.1123;156.3547;116.3125;108.4914;109.5171;193.0021;44.98369;82.6799;124.8242;83.75536;110.4654;136.7763;157.464;173.0783;147.2286;120.0335;89.40759;157.2846;58.51233;131.2038;
137.7886;108.2868;54.20778;64.36205;93.30241;76.86391;77.25099;142.6083;89.45187;71.99686;77.3842;159.8912;99.43574;189.8236;168.959;118.9365;112.871;168.2409;84.3175;85.26936;151.6233;89.87324;105.4428;109.9506;141.6553;137.6337;141.4935;119.1168;75.96032;106.9298;75.05148;148.6727;130.9028;126.7276;174.2593;42.33683;133.7222;75.61947;122.7685;152.8515;104.2242;91.0349;71.15453;94.31288;133.2461;146.1376;124.0029;161.3549;109.1241;117.3378;193.1685;92.78841;135.7888;79.9803;147.8;156.4492;183.1906;187.1295;67.59691;82.49929;68.82526;153.2216;174.2942;64.68862;161.5009;85.44237;63.43336;52.98305;138.2419;154.8356;58.07623;103.055;79.39777;109.3214;75.2308;108.4332;101.9075;162.1943;155.7953;123.0926;137.1624;66.75017;172.848;82.85417;77.24345;105.2429;109.6112;82.36976;78.51822;89.98101;105.2144;86.84613;78.18765;107.4759;76.45487;95.341;97.64692;153.4198;135.3874;105.062;67.09938;98.22488;68.2221;92.67358;51.07077;80.65479;66.73232;162.4731;95.31246;118.4169;75.19727;88.68739;78.4743;100.0081;102.4047;120.0098;131.3705;160.416;132.3084;129.2454;103.5857;81.48921;99.51965;155.1491;66.99741;139.4789;114.3817;187.5354;136.6871;128.0286;60.11139;69.93681;78.33531;79.28138;64.38677;153.238;92.77308;80.07034;64.60924;143.8032;86.61132;171.5648;173.3044;106.6307;142.0008;153.0379;68.95695;77.68366;121.1195;107.4881;83.89616;95.57959;145.1397;127.7026;151.2976;122.6307;71.20972;110.4645;76.08749;142.6246;126.084;147.5087;180.433;47.37461;114.8145;82.25415;99.26476;161.7804;105.6006;99.91705;57.403;82.93587;118.311;135.4631;121.1292;147.9373;135.3986;103.5211;167.362;88.01968;107.0837;100.2169;115.6135;140.1547;183.3095;181.5739;73.66732;87.06461;67.53407;158.3136;187.6028;66.31992;147.1393;103.9889;66.82407;59.18996;129.8364;154.2284;50.37632;117.5719;79.9071;125.3174;61.68453;94.61774;92.68987;151.7869;163.5121;118.9511;157.1473;57.43164;147.9578;79.03107;63.51655;119.4339;93.28437;76.42236;78.59524;86.13792;112.7545;91.52858;76.81103;111.7473;85.09831;79.28733;98.4433;178.8893;133.5647;113.457;66.54913;67.15856;92.17921;127.2848;61.31845;97.15275;75.49507;143.3193;93.43475;117.5341;109.1247;59.07056;100.4264;99.18296;78.51971;142.208;164.1787;145.6533;132.701;131.7709;119.7624;92.97777;132.8691;171.6647;66.93996;139.5397;76.82478;195.4482;
90.29214;95.31652;141.8098;102.8256;101.8049;90.26276;157.2591;62.05534;66.66061;73.24194;103.7713;130.3644;100.0406;172.5821;128.2654;142.1044;96.73483;81.21638;69.43777;93.136;136.6674;79.95266;154.2291;52.08423;82.31774;142.9922;127.0282;95.87966;99.51648;114.1415;169.6227;100.7407;80.77389;100.2853;113.3989;97.41262;78.86538;95.81719;161.4253;72.89912;88.53715;81.36771;72.64036;124.1776;151.8541;53.0906;88.96182;75.21078;80.28911;94.64105;112.3907;115.0381;80.16344;128.0878;161.1054;84.52365;73.45592;149.388;128.6949;110.5025;169.5401;56.931;64.91579;126.726;176.4666;116.4943;191.7197;166.1398;163.176;105.3883;192.6119;181.8414;164.119;165.5742;61.44072;152.0176;145.6912;103.4239;178.1813;166.5092;178.6329;59.80925;114.8211;131.5303;88.23979;80.29732;83.44441;94.67417;148.029;76.84341;122.2903;113.7506;128.0163;71.94701;168.6397;133.4177;174.663;78.73766;198.9803;67.78324;125.4412;77.50613;179.8762;110.75;106.6919;158.344;50.85216;125.6739;157.4946;106.3788;116.0321;90.70578;119.9778;133.8617;104.0701;170.4374;167.8429;87.5879;167.0474;193.1346;113.7594;146.0629;156.8655;85.53239;123.036;46.51498;77.6506;83.20316;83.27158;87.98549;111.6801;98.45105;95.74595;83.94584;148.0519;64.1671;56.17439;85.16601;104.3901;129.4038;113.563;178.5397;137.9089;144.3901;101.7318;76.59367;63.89615;95.5097;138.9823;79.93663;148.6204;51.92699;79.08475;149.986;140.8141;89.29;104.8525;117.4586;200.6199;102.5426;75.98209;97.59968;84.93513;89.85338;72.34017;91.74773;147.9122;74.72466;78.63701;99.33553;71.95521;120.0489;166.6464;58.49013;94.14809;77.55328;88.93536;94.8553;104.3061;115.9568;82.35598;131.0735;151.7291;85.03239;70.88693;153.3821;144.4528;109.1398;166.6983;54.75471;77.48918;129.849;159.1521;121.7141;165.0654;164.905;153.5546;94.65392;188.0751;171.5116;145.8942;179.9946;62.81743;156.2415;150.8719;104.6852;174.9044;171.253;180.5698;65.91508;115.8079;140.5197;90.40618;76.83036;83.51925;85.80014;144.3724;79.71888;137.6625;112.368;125.5485;69.49786;147.8346;176.4941;133.573;77.12234;166.3167;73.74937;114.3549;95.65993;126.823;128.9162;81.63554;152.5714;84.49777;112.3079;168.4156;123.9141;76.27648;96.13539;134.4018;136.7009;116.2805;115.5545;122.8676;96.66434;132.4275;133.3134;122.6256;127.2567;139.4277;52.12469;85.23783;62.56214;71.23754;90.41342;
99.36808;156.5768;146.9898;178.0619;78.425;118.2063;65.29983;117.4903;143.5059;76.42099;135.6031;67.07925;88.01073;59.26299;126.9477;131.7706;42.92383;125.5507;113.566;122.6436;87.15578;85.6246;120.9519;153.5797;132.1747;143.4421;197.8685;59.22917;172.1707;67.39554;123.2024;126.6252;72.31699;87.41833;102.396;116.2998;140.1802;135.5998;143.6552;155.7395;105.5924;102.9825;80.47993;154.8786;156.7298;125.4241;102.1939;86.07793;89.93104;141.5977;90.05235;89.4968;60.75477;141.9961;79.9873;95.13861;70.66398;67.85149;64.05578;90.67342;102.5959;105.6444;171.5902;112.9435;119.0862;145.6322;80.26752;80.6072;110.6339;201.1033;63.95864;96.91812;83.09837;201.48;113.794;82.33923;92.35931;77.80479;77.51199;63.89593;61.76473;164.6834;128.426;75.40112;96.06389;139.4411;110.9835;158.5401;142.9386;131.0172;171.0524;147.055;93.39035;75.15611;196.6543;112.0129;67.6523;111.9201;181.667;162.0546;181.493;175.3255;124.6724;136.4313;95.45102;151.3579;111.2143;120.8584;214.2998;60.99292;169.2326;70.58014;143.2446;195.3679;147.8784;80.60297;67.88121;77.84622;105.7847;107.8941;100.5835;131.2751;112.073;90.83017;149.4441;77.52443;125.9662;72.56448;122.1103;150.1408;145.2829;184.9586;84.94845;108.1925;62.91978;107.7182;122.9513;60.53374;143.2174;63.6753;79.1653;66.60316;115.7421;134.7854;46.82037;113.9272;102.1171;104.293;89.44056;84.21395;122.4063;142.6949;123.2328;156.8121;183.2933;52.70541;164.9379;73.42809;106.4397;137.7701;89.11735;85.54806;102.0639;121.141;145.1947;123.1033;133.8644;140.8762;86.44892;87.57618;88.48196;149.1611;142.167;134.0068;87.57557;85.97956;95.36473;133.5805;81.66348;73.8028;62.13498;138.5663;76.86597;84.10349;64.13908;76.64238;62.95658;88.25538;85.72195;105.2245;153.6734;125.3002;135.5814;136.678;77.91931;86.52976;111.5493;183.5804;62.73903;96.07993;66.33419;173.8838;131.4049;83.86813;70.94389;77.74969;66.14781;65.11996;62.9859;149.2013;115.8661;62.65957;94.53244;134.1279;114.4399;158.1541;133.5907;143.1241;169.2519;143.9711;77.32597;74.80204;167.5802;121.9172;112.4612;120.9675;147.9326;131.4541;133.3879;145.0551;113.7473;129.1803;51.27183;111.1702;160.8118;132.161;139.9281;53.96425;136.1983;49.31964;143.4549;183.4665;138.094;78.70367;80.30794;87.21068;116.2305;117.8705;97.47131;145.5035;120.8781;74.20424;174.6167;74.09161;130.5312;99.96688;
60.75498;119.8635;70.78797;169.4018;137.9248;93.73468;188.1777;59.57356;99.32121;113.165;141.1131;87.06248;115.7628;104.4921;133.7878;155.8878;113.1741;107.6694;78.2485;163.9611;162.8016;139.5366;133.885;133.3611;79.89189;107.958;49.81919;87.49937;65.01796;100.5661;73.22723;96.5513;54.34531;73.63429;91.54231;128.4567;52.31909;98.32415;88.01198;173.64;94.68474;81.05937;124.6899;124.8549;120.6395;113.4764;99.14765;99.23553;128.3832;101.9056;91.62173;172.1869;90.33791;91.76505;155.9676;155.4708;97.29266;80.78251;105.5096;217.5866;121.0973;58.88405;94.72861;93.12329;89.34019;80.78872;98.16444;139.605;113.567;90.53017;113.789;78.62234;87.74275;109.186;94.91366;80.26038;104.73;74.52784;88.95667;156.613;75.43203;45.75767;125.9905;137.2177;69.27695;97.92278;145.31;119.9382;93.54128;143.4404;72.24824;96.18228;109.6162;170.7646;98.47302;146.3418;119.0054;134.6306;102.0564;154.0442;156.2341;221.9134;187.8886;113.8349;117.8471;108.1968;71.64042;167.8457;153.8837;189.8256;79.67812;146.3102;179.6406;78.145;106.6985;76.58938;145.3186;155.6405;88.64803;139.9469;122.295;106.5852;49.47446;185.5474;145.334;151.9583;73.67146;154.9681;80.36952;128.9658;71.24249;163.8902;127.7791;86.39354;182.4488;54.36637;104.2758;118.99;163.0214;82.10212;111.6455;118.7872;112.9262;135.6088;107.7907;126.9008;96.48627;129.0383;175.9467;134.8833;135.1487;117.3036;74.67727;111.6471;48.17736;80.06709;60.19736;107.4212;62.47834;78.26705;72.65933;81.33116;87.21349;118.3206;44.75497;86.26353;87.71531;162.7643;99.5937;87.06509;139.7399;114.2601;114.2675;123.1332;84.86732;84.54689;123.8607;122.8173;106.3572;134.7879;99.20248;84.44833;162.2623;139.8279;96.69043;88.21867;90.78805;194.6315;110.5548;70.69302;87.73792;74.13795;102.6576;81.75117;92.61407;138.6575;96.99828;74.24982;108.9339;73.05234;96.57922;118.9556;100.1343;66.38158;95.15126;89.77847;80.52722;136.5913;64.18737;54.28673;141.8569;112.7418;72.48757;85.30184;146.1622;108.3099;92.95071;153.2996;60.1614;81.13464;99.59763;190.4956;88.73677;125.4494;133.0382;134.0238;102.5638;162.2757;146.0935;173.7707;140.4239;63.8503;155.998;146.2936;101.5839;166.9178;158.1848;176.4362;69.41411;140.0798;170.7498;79.37901;112.9583;77.82147;146.4357;157.4285;68.40936;127.3365;118.5219;111.2639;73.23282;138.1829;145.0066;186.2861;51.87683;145.8705;
136.0167;122.552;170.062;52.3005;199.7515;213.7572;179.1697;48.79546;183.4612;61.81253;147.8247;63.36895;173.8347;104.4585;97.69073;137.9154;96.86562;119.2651;113.4647;111.0493;86.02265;150.8293;138.4998;118.4978;129.0398;134.6348;146.983;78.32623;166.4141;173.403;106.2354;98.75996;113.9788;51.09977;100.7004;46.76958;69.99564;70.54068;90.66608;74.36738;114.9484;60.49128;63.9039;65.29649;112.4394;88.66566;60.25493;88.89677;137.4207;108.3929;83.71097;150.5757;91.17155;142.7716;114.8951;59.64905;78.02389;88.66096;110.1543;112.7554;117.7368;83.93449;57.64162;124.2333;129.7693;98.32671;136.6911;98.71706;216.7879;162.0475;95.98756;68.06956;94.24925;89.71988;93.03586;88.01654;157.3963;75.97837;84.77554;72.27005;114.4693;110.8296;101.234;60.46146;74.9703;123.8706;112.0021;92.1444;135.2997;94.117;61.23655;118.6383;156.4384;73.77776;59.8039;103.2604;98.43157;70.43285;126.8503;54.6452;72.47159;108.28;171.5007;112.176;163.9405;127.1336;108.1879;72.34666;153.1198;209.5802;156.6997;172.3489;84.74632;122.5948;122.0804;86.79581;117.8698;140.3791;185.8267;48.92271;157.1134;126.0333;77.40646;114.315;75.59328;115.9524;113.5445;77.1502;150.4427;104.8054;139.6217;60.08592;180.8852;186.1114;170.1808;71.97999;187.6828;59.11843;157.6306;73.67237;163.0276;99.79801;119.398;129.993;99.34591;108.8067;118.7119;113.6008;83.92115;121.394;128.6886;120.1297;149.8972;135.2867;154.9943;78.74887;195.5207;159.4285;102.6776;114.7298;121.7317;40.33738;76.46041;50.20641;57.69308;56.41999;80.91767;98.53662;114.2623;58.55989;70.28085;71.28558;102.8145;85.91679;75.25659;81.20653;136.0763;98.40895;88.40215;150.1122;88.19289;114.9077;103.3067;59.64827;91.78025;80.42581;123.0977;112.3443;135.4747;73.37774;56.17813;146.4531;148.532;81.95712;119.7532;107.8807;191.9612;148.3851;83.0274;84.27511;94.52139;78.71142;106.0689;96.83004;138.9519;72.51763;103.9803;68.33537;122.7699;99.41639;117.8714;63.37583;70.6154;104.8492;97.40201;85.11812;153.2367;85.62268;70.97784;118.2167;176.7899;63.90248;64.02196;180.0891;117.9756;62.04418;127.3188;85.83085;59.84583;95.35443;173.7477;104.7635;170.2314;115.1876;113.7131;72.73564;135.126;157.4729;158.0861;181.0649;79.26994;148.7347;129.3594;100.4787;148.98;168.4246;182.2985;67.384;151.667;164.068;72.36654;114.5696;103.7538;78.2558;119.4968;78.78908;
72.05157;119.705;177.118;122.0081;76.17793;52.1857;103.1555;133.6293;109.7855;182.4286;83.52959;104.269;67.83719;161.8946;92.70648;136.3116;84.22751;99.42814;119.4276;127.7305;146.8312;95.41138;77.85399;73.86777;153.7081;187.0864;41.78792;181.087;81.9006;61.69725;75.23029;125.7448;181.167;50.5041;82.58737;113.3705;118.0781;82.29889;107.9923;69.06808;157.8819;163.2969;152.1082;137.394;58.098;121.457;94.24067;58.87164;149.9076;98.51219;83.90273;106.8258;87.54218;140.2533;105.4989;123.5847;165.3284;105.1824;71.06939;102.6034;140.127;104.8198;157.1413;78.94727;97.07278;87.19501;125.4413;62.6621;72.69651;48.42595;166.3971;103.6458;90.48981;122.2763;39.61238;59.92499;61.49595;92.93095;120.681;153.3112;144.6796;127.5674;111.4034;64.22954;59.06862;125.5399;135.8809;73.0276;142.0706;105.0375;138.6417;172.8226;102.6148;49.33678;82.24341;68.58855;97.71748;75.99397;113.1996;121.8456;77.67786;82.41982;155.1615;66.71349;178.2118;162.9718;135.0387;124.4135;144.8472;45.53547;87.06527;119.305;140.826;96.32832;112.3973;182.0509;136.3218;151.8495;120.3929;116.1581;154.5139;86.01048;124.9064;164.0773;112.7644;155.0196;80.66868;133.1508;76.27722;138.9511;159.6492;119.7155;64.10292;67.31422;86.29591;146.8311;117.2012;164.373;81.41447;115.2958;75.31734;173.9045;77.10271;137.7681;90.91994;108.914;130.2279;131.2506;150.314;79.09169;67.85813;74.49046;155.4534;163.8373;50.82169;213.1416;78.97679;68.54199;72.60715;111.335;180.7143;62.93692;69.87264;104.7124;102.9051;97.31807;88.14574;78.38963;160.5969;146.4299;148.4255;143.1731;65.05907;127.8077;76.51916;60.61697;155.0557;108.0214;92.75932;105.5373;92.00823;116.3076;91.63741;125.5231;160.0487;93.72127;84.3276;119.6588;139.3014;120.0494;157.9754;73.39407;94.00978;90.07726;106.3904;60.27662;58.61957;61.43314;147.4461;111.8514;90.10188;114.0647;38.98643;61.92605;70.79134;104.4249;104.2651;164.8312;146.3346;122.9658;118.1436;67.47518;60.42857;104.6965;125.5487;71.99049;137.1793;93.58811;156.9346;194.7626;101.9085;59.9473;81.50579;92.96317;84.02453;74.24983;123.5247;108.6937;46.01808;102.849;146.6946;93.83405;189.3406;132.8298;96.99875;148.0313;170.5521;91.09811;50.18187;145.636;121.1159;100.573;123.2231;133.8844;151.0669;169.2715;95.31063;110.3589;128.892;65.10325;145.666;118.5279;139.939;174.3766;81.5552;118.8807;
102.2264;98.8111;167.5621;48.55549;86.66643;148.0523;134.4674;94.82156;93.03892;133.3793;188.4202;147.7601;90.93422;122.8284;58.51825;106.7659;94.15967;150.7577;159.3001;78.0317;82.53487;102.4809;100.7272;149.5311;146.5423;76.97218;78.19097;94.5064;102.1029;87.12144;100.5983;85.84102;46.2628;138.1241;159.1812;74.96216;106.9725;162.3768;125.9765;66.30562;117.8867;56.07595;77.47198;115.1058;163.5304;95.15186;158.0372;122.9038;120.5735;90.35764;143.3865;198.9234;205.6443;146.5929;84.4181;160.7005;141.3331;61.00391;101.0711;144.1001;194.8985;69.49066;132.7997;160.4159;64.35817;94.47868;94.96082;76.88149;149.5709;79.80047;135.3094;117.7879;117.0243;86.74828;182.7305;197.2984;197.6603;111.3544;143.1888;92.73449;148.6726;119.3737;174.1344;99.73016;94.16492;181.2226;82.14021;161.4792;152.0329;141.8598;98.16246;117.3919;147.4887;127.4246;106.4486;147.116;116.4697;91.47888;168.2893;163.4215;155.8555;153.758;139.4331;46.71651;83.03682;52.24402;81.47929;75.46858;96.44968;67.92269;115.8367;73.6403;67.51884;72.56013;114.1507;70.99019;75.66214;66.33831;122.2656;106.8476;134.4925;119.9756;86.97021;137.679;108.9002;73.58939;71.65843;118.7564;117.3271;93.65916;174.193;52.017;88.96925;167.185;131.3314;98.79928;105.6941;126.3096;197.3754;152.1752;88.2085;104.6035;46.43008;118.7107;97.29857;138.3745;161.6467;66.71857;66.23197;107.7699;89.25682;122.6536;182.595;85.03532;95.5408;118.3974;108.7644;79.28422;102.7915;101.8984;52.25666;131.7091;163.5934;77.11305;107.6759;177.2567;121.7713;68.01517;126.7335;51.51033;82.86547;116.6555;158.613;75.70715;137.0655;133.7504;120.6548;81.13062;144.7576;178.071;180.1596;148.4705;73.46523;130.8632;170.8752;62.28887;116.9292;164.8766;190.4588;61.06557;129.0693;170.6447;71.10381;92.75763;106.0371;88.14694;155.2796;90.14829;130.6134;124.1244;124.339;74.29498;187.211;192.9097;179.0544;88.49066;117.3021;93.6416;148.3423;112.6706;185.8342;94.55455;80.69729;183.0517;71.09303;135.8161;182.6195;143.8113;113.7981;136.2124;143.6299;115.9195;106.2161;162.6107;128.9702;69.48879;151.0266;152.8443;134.0464;140.1748;101.3781;61.44945;86.27344;68.63885;76.33522;109.5056;89.65063;84.30546;92.09346;71.0168;55.08588;56.82741;137.3316;71.19584;73.28153;64.02995;116.6773;128.5569;97.1484;119.6515;86.20925;139.9568;81.54185;94.5818;92.1152;109.9793;
174.3922;137.7318;109.0606;95.09332;72.33011;160.2023;151.5725;72.44878;150.6054;47.7816;59.67629;87.12261;149.9437;144.0926;47.05447;130.4122;132.2712;124.9949;80.34021;104.5543;69.49352;149.6122;120.1549;170.9005;181.3348;64.26774;188.6691;65.52719;92.04745;127.0025;99.09215;99.40704;97.69721;103.0878;143.9652;74.88803;93.40199;175.7961;86.90661;66.94426;100.2165;171.6244;112.9696;130.3899;78.02665;100.8221;96.45286;109.1136;92.1203;46.3259;55.71897;148.6341;93.4145;95.53335;108.6988;73.76271;98.15485;73.9823;61.93601;95.94704;179.771;126.8741;106.0026;105.1616;106.6778;55.02676;135.7057;158.4743;71.81416;147.4435;83.24602;198.0371;139.952;59.46882;42.71032;87.41161;90.6198;65.58985;63.46415;163.0828;163.4919;82.46039;78.07447;148.2036;67.15582;167.5941;126.1335;152.1123;169.2018;151.0293;83.13343;55.69283;154.3575;105.7995;94.18347;120.6635;175.6424;152.0942;182.8909;102.1888;90.91698;175.1843;80.59846;106.4291;137.2576;133.8431;137.0117;53.57701;133.2044;78.21608;152.472;158.1577;167.895;62.54684;53.15664;67.69416;126.0935;123.1532;149.5249;115.2382;148.75;95.66103;117.234;63.09698;155.0464;59.24449;85.27493;108.9637;196.7735;148.0955;91.68298;107.3594;66.10177;142.8127;131.5834;77.39115;142.5238;39.97746;49.78792;67.6641;145.8972;131.06;46.67287;117.1458;139.0288;143.0154;65.57508;80.3776;69.52188;149.9247;113.1464;152.8376;169.7549;73.95754;167.9901;48.87078;86.72452;99.41339;97.57976;88.59275;109.2085;110.3823;128.8975;88.07104;84.96076;156.7942;73.63157;72.88284;89.16942;155.2126;104.1267;109.4047;73.89726;89.55417;97.86269;101.3427;94.1916;57.36926;46.81161;126.082;93.07409;96.16727;104.0556;65.54476;89.59137;92.9602;61.19092;87.40543;180.2358;108.9176;99.77055;96.01283;112.4041;59.35547;122.3284;178.5273;62.7915;128.8789;70.15165;203.709;130.8759;56.81668;43.49578;76.58551;91.80339;63.88005;60.94893;156.0818;158.7898;95.68501;68.38541;126.6273;65.19073;167.0583;120.9787;136.5563;157.8972;177.6856;82.26976;49.23261;154.7883;89.46143;82.87427;86.92238;181.9377;166.8806;160.584;153.8908;86.50542;119.8707;68.0463;93.3135;141.3178;142.3557;164.894;40.54332;128.9949;60.74753;119.8306;156.9122;164.1887;92.54081;55.8378;96.6976;102.7088;106.1022;131.5002;123.0956;159.2764;96.6739;124.9504;83.06496;126.409;49.09981;102.6823;124.9574;
63.50158;154.6279;86.99286;194.2523;85.71774;84.797;120.8622;169.6419;160.7888;95.22169;96.34915;76.30402;175.6076;180.7621;91.12487;140.6318;54.04487;79.07677;73.50688;133.8775;132.2546;76.39346;109.7882;111.3166;108.6794;72.82717;91.55148;83.0029;132.0279;100.677;153.162;114.6605;70.98787;135.2705;62.79527;91.7033;93.76775;97.81123;126.2038;65.88876;106.5068;134.8779;119.6116;70.91305;111.2027;84.847;107.3579;68.82832;163.4789;142.2423;123.5531;70.11739;85.63947;56.67434;125.7566;47.45807;75.63111;79.06108;159.2286;103.4508;110.0168;95.19344;97.8568;87.65658;63.46177;98.20511;117.0296;227.8633;153.9661;95.94056;119.5352;99.41408;73.3603;126.5904;179.5074;79.3363;149.0605;100.9266;227.522;125.1373;74.74274;75.98456;82.62157;78.86874;70.54054;93.6309;156.5848;128.566;72.1966;77.6831;152.6746;76.18429;136.9675;107.9133;135.5721;95.79862;168.3769;61.05956;56.40657;159.3091;90.2455;90.07587;151.8258;129.1331;153.8399;173.9381;163.6678;66.04918;101.6364;73.44067;148.9239;98.84901;122.7014;203.1641;48.78938;140.2175;93.18588;111.3193;207.9422;111.688;88.6959;104.6939;79.28756;149.8071;123.878;127.431;161.1386;172.4036;80.44466;165.9244;101.124;165.9367;97.62825;78.85816;113.3611;168.0856;179.9864;104.2239;117.4596;91.12663;176.65;177.2752;90.16649;131.6441;47.91294;95.92628;67.23027;139.9984;162.5443;88.90635;133.6625;120.5874;120.9397;95.34339;85.33147;87.92189;110.8042;90.70373;152.514;130.7665;85.75046;145.3435;72.15831;73.21113;105.3821;96.00586;110.9989;63.62008;119.8823;145.3488;140.6319;86.12291;112.0132;86.6842;100.3034;63.21943;150.1555;163.0836;113.5929;77.52223;110.3894;70.51112;144.0362;54.16259;82.2122;99.36759;139.7654;109.9082;98.30669;88.28348;100.266;106.9432;79.39693;101.0888;134.2339;197.5341;156.719;91.91489;102.0272;92.68945;82.71043;134.5001;194.2613;92.99503;159.7061;105.9787;221.5591;123.0487;67.61406;86.11795;77.96618;86.32719;84.26412;108.7673;173.3659;134.7243;78.62886;97.81826;133.6284;81.73958;123.8634;100.5477;102.2373;153.5742;158.0878;67.40812;89.98392;110.6635;120.6049;64.8946;86.4644;134.1329;177.2642;200.3312;144.3268;72.73343;111.9477;104.9553;119.1507;91.88021;121.3505;175.842;60.74768;140.2614;66.68775;154.7599;164.3688;149.6536;71.20016;107.5355;107.599;153.7346;108.119;106.9137;112.6705;108.7536;
109.5533;109.8169;83.57362;101.9535;140.0449;106.8158;138.2038;119.1045;109.7809;97.78031;103.39;128.649;88.34393;116.362;65.52709;56.81672;177.1435;115.8658;88.19093;97.77584;110.5335;142.9857;117.9125;82.29543;128.8765;45.85935;111.6477;86.95609;148.1478;126.2624;67.46465;83.61823;110.6887;71.21788;104.1759;150.5545;61.35336;62.94206;96.56084;73.11225;102.1919;115.9363;86.78715;72.5712;109.5018;136.0394;77.5135;90.27676;174.0511;152.0524;57.00748;145.1415;76.93615;94.86616;152.3192;140.4054;100.7794;142.9335;157.101;145.9244;120.0638;198.6716;201.8835;203.5312;201.938;64.12041;105.1891;135.1385;87.02287;132.251;165.9307;207.9504;82.59422;152.1266;163.0268;92.27904;88.52186;59.96716;107.532;113.266;89.90516;111.3408;109.0127;115.8182;67.99508;129.925;158.091;169.4231;98.07246;109.9885;95.61115;145.775;119.3025;151.6337;97.72057;100.0375;178.3679;55.5624;111.8859;146.8351;117.1378;73.76469;111.5194;101.2468;129.9922;113.0192;143.3982;164.8524;71.84729;154.3907;182.0536;133.3438;160.7737;169.9795;40.81995;94.31178;68.2914;110.4045;91.52872;82.59172;69.46517;112.2673;82.35523;81.931;104.061;144.0087;89.90367;74.20513;99.12044;98.08725;86.21185;95.45995;147.5505;104.8732;144.6595;108.6723;106.9464;90.8784;107.6151;142.4232;109.4232;124.1594;75.28117;51.89363;168.5305;116.1722;91.30037;89.3009;113.247;157.9123;112.7475;95.40108;112.0749;52.88973;111.9775;88.35685;143.2741;114.9287;71.60515;70.48146;102.3398;65.79723;105.2171;138.5462;65.21251;63.48163;98.55067;64.5612;102.0267;114.2316;89.32198;80.38864;131.2723;147.7656;85.35493;84.74998;171.2055;159.1739;58.75935;132.9351;79.61308;109.8434;142.9048;158.3438;98.46384;162.3065;147.9829;136.8615;115.5636;183.4899;207.497;180.3461;197.4166;56.53259;109.7969;127.2797;84.67125;136.7897;170.8293;190.3912;90.4493;150.4881;157.9415;93.64095;108.083;67.29065;115.6109;105.2483;92.50799;113.9789;115.0771;108.1723;64.44411;151.312;150.6504;186.1526;95.78826;127.0626;88.52779;136.7168;114.8167;138.4086;117.5752;91.24215;166.9188;39.90142;151.1288;110.1738;122.099;97.92935;94.8728;112.9952;148.1715;113.4805;106.3693;172.9605;78.47208;158.7767;142.3976;123.5499;158.059;108.1602;68.04038;76.6832;39.90103;76.575;94.83839;109.6379;76.46985;74.61694;56.80293;86.12466;77.58691;101.1865;61.91364;58.88725;
107.8764;200.8947;121.6026;155.9782;174.9339;87.49947;77.03251;172.4939;193.2222;198.757;188.157;64.5454;151.2407;89.80188;52.79918;162.3325;156.9622;170.4944;68.63914;149.4787;138.9208;69.99535;74.14967;103.6174;131.3251;116.5584;91.21534;97.91554;103.826;126.9635;86.55755;154.9722;183.3923;165.2662;84.16811;167.0862;71.96737;97.5047;82.97031;169.1048;109.2028;100.9433;181.6929;47.45967;160.1076;142.9438;100.6829;88.37727;103.4515;141.9621;103.8867;103.9808;126.7009;130.7939;90.17321;166.1643;135.1976;143.1031;127.6759;160.3832;62.81679;95.5719;51.15687;95.51041;75.96675;111.3245;86.13451;106.9409;108.204;51.77578;76.00076;137.4614;85.20695;86.82911;87.80151;111.9865;133.183;63.6679;116.2732;129.67;138.7144;88.15863;79.93067;87.09258;92.18757;122.9576;87.17166;173.2798;88.04713;55.37483;163.8848;101.9563;85.06794;104.0059;147.6765;162.6333;152.6302;78.91026;96.09238;81.45253;92.32578;63.67829;111.682;140.8804;83.41233;85.73116;104.0719;64.08939;153.4708;136.1779;55.16514;80.01434;93.20661;116.6395;86.47091;97.74763;68.37123;61.13144;133.238;152.5052;57.17469;92.1935;140.5577;140.5907;76.94358;129.9872;55.67445;89.82913;100.4061;169.3407;123.369;146.9436;150.6433;114.076;79.46317;174.7724;203.6304;183.0249;165.318;71.58058;168.7039;101.9209;70.63295;177.233;164.1055;175.603;83.51463;143.2065;127.0833;77.54385;79.91679;110.528;147.4494;112.218;90.08199;92.48507;106.013;119.6494;82.5983;148.6651;169.7915;140.5228;86.64399;156.882;54.46012;123.701;80.62537;167.4593;115.1869;93.11007;162.126;53.20615;175.0882;155.9782;119.4641;96.76568;109.0855;151.2519;124.2082;98.61452;114.6885;139.4251;91.8223;171.3105;149.2177;142.6065;130.1163;152.9141;60.39754;91.71759;46.07199;90.53629;61.44478;93.15379;88.59177;99.73747;86.80965;64.96615;69.05022;137.6998;88.86267;79.44118;75.55241;120.446;140.6209;74.69566;132.9267;139.7449;136.5535;97.51342;97.8176;83.03397;82.32404;122.6982;83.62116;180.5062;99.42717;55.06324;166.6469;96.0192;82.24875;99.98343;128.1261;165.1536;149.8022;75.70191;77.79865;61.99258;102.316;76.45974;110.9085;135.7872;77.7654;101.6247;59.95645;80.47195;127.2043;175.8441;55.16365;91.11858;124.2898;102.6714;70.61163;110.6422;89.63722;49.46334;132.345;163.4518;83.51761;77.72053;113.7361;107.8089;73.57774;119.2409;87.85486;93.31847;
137.0414;107.5785;90.95728;137.3134;107.0373;133.7369;98.32545;71.02592;99.67915;129.8855;123.0329;135.5408;111.7762;45.95046;52.19432;170.6256;134.6226;81.13982;114.3119;115.2801;148.6716;102.3895;69.6913;117.0753;68.54652;117.104;85.05712;126.1506;108.4847;103.8803;93.50848;74.24074;78.70737;113.9432;174.1684;57.72198;54.91556;93.76798;95.68063;97.23028;144.0248;70.71307;80.92875;161.4739;165.7292;53.39989;61.55104;113.0687;141.8219;50.2887;174.5717;79.15497;68.84415;152.8316;141.9116;125.1778;158.2613;164.6698;151.557;110.2489;145.5935;190.6358;139.9003;130.9632;88.47195;144.0201;128.4118;76.03001;150.9382;165.8965;159.979;57.21466;165.8593;170.6716;84.85465;143.9996;55.36794;88.18398;107.5657;93.46487;137.6901;111.4378;140.9146;66.82487;151.0259;140.6764;133.5027;97.48569;153.5388;84.23353;142.2028;107.126;127.8646;142.876;110.1221;135.3163;63.944;132.5903;175.8629;105.3145;73.76305;108.9347;117.169;130.5795;144.2809;107.5648;172.2961;119.3328;173.8741;148.7452;108.8801;101.8336;141.7268;42.30992;136.5418;65.92825;74.96062;120.494;60.45171;71.6746;117.427;94.56735;89.57589;99.95737;115.1063;88.52547;51.76129;53.02342;136.2338;103.7408;77.23004;164.1752;96.26491;144.2444;87.161;82.12531;93.39903;115.6043;134.7846;137.4689;104.3157;57.63368;60.972;164.596;125.6736;91.68605;125.5081;114.8428;160.8498;125.2977;55.35504;93.94297;74.68287;107.8781;88.89367;134.0802;106.1611;120.6073;100.542;72.0213;77.77474;110.6066;148.6531;71.39629;45.87453;97.77068;88.2924;108.5941;136.5372;61.17645;86.10948;158.1273;154.1008;62.21624;74.38007;109.7072;133.8966;60.18343;181.9272;77.60841;76.33696;175.4615;125.4328;102.7019;166.823;165.7711;146.1707;110.9964;149.4471;206.4712;143.8843;129.3176;83.87503;128.8042;104.3295;91.89342;127.5147;171.9689;161.4888;69.1778;155.7737;165.2713;86.57508;135.082;52.59042;94.92429;120.1322;91.51049;125.4783;115.1021;144.8043;65.63842;153.0937;163.1618;127.3768;81.22269;161.9734;85.02525;136.9868;107.8629;131.4775;156.6275;113.5064;132.4585;59.7262;112.8344;101.4215;152.9432;87.97115;132.411;145.4797;128.2687;123.2695;138.6262;146.9099;119.1349;114.2958;170.0533;138.9124;147.0633;143.0536;47.36496;106.4632;63.45868;55.77902;104.8947;68.33756;63.85779;137.4986;58.84906;75.80882;87.03269;143.4088;53.97661;87.84589;80.23719;
110.0972;87.97034;82.32578;104.3775;120.0064;124.5068;88.78706;140.125;91.73759;158.1317;52.8542;81.2536;128.106;171.6827;142.8555;79.52161;92.12327;69.47736;200.2249;161.442;50.42418;160.2176;58.14999;85.73528;65.35075;115.3275;118.9724;58.80273;122.793;119.1901;96.53509;93.74537;115.6186;122.0018;101.6377;110.1908;92.57165;152.8953;58.54641;173.5305;81.67815;91.12515;130.3648;79.40731;90.00987;100.4262;109.9242;144.6597;112.8674;120.2862;168.8475;64.82339;62.94464;118.3499;154.8086;119.9732;137.8763;95.05439;81.47017;71.15068;116.7194;74.85269;101.0806;60.25819;192.4418;61.85117;62.40726;65.46508;69.55321;74.48894;100.6728;81.22076;120.0523;178.3711;103.835;104.3709;121.7018;89.76554;57.86775;114.1569;170.9845;67.29224;180.0542;87.77854;157.3932;154.9457;87.65708;76.64133;76.39236;60.64241;57.42351;83.43333;164.9032;129.7836;54.25331;102.9506;179.8649;114.7798;113.2435;108.6676;84.76283;146.3404;159.4266;81.01008;78.1552;149.3258;123.131;76.069;112.9781;168.4971;155.3359;195.6718;160.8766;92.52312;151.727;58.99629;91.23992;147.7163;144.27;185.8517;59.13427;150.2764;58.32933;129.1655;163.099;138.1717;93.16969;64.6436;128.0619;91.6335;109.8382;120.1375;129.4832;124.9622;90.60078;160.3697;97.50827;149.6434;55.84748;95.50371;123.1645;144.2809;150.7184;88.78844;106.8146;54.78867;183.1689;169.0409;48.5525;142.7037;70.93008;107.8473;61.2276;101.3215;113.9967;79.0404;119.5728;115.1931;81.65123;100.422;128.3843;127.1107;130.4701;120.3096;99.18373;155.6529;57.16748;190.5389;83.6748;85.59718;134.8697;88.53455;84.99863;81.24697;114.0319;155.2012;124.9531;100.6587;153.4474;67.36489;60.17801;104.0643;171.8241;144.0984;131.926;87.4311;71.19108;83.41098;108.8291;74.57666;87.72488;60.6225;200.2807;65.22074;85.50673;80.74541;74.8793;70.91121;90.41273;95.28492;126.6139;177.8658;100.3618;106.6963;111.0641;74.57299;62.45067;116.6296;177.7445;52.57774;164.3022;98.97734;152.4007;131.0844;92.04704;98.48639;71.97923;54.58271;48.84866;96.6694;155.4986;129.4201;57.63131;74.76294;191.225;98.46959;134.0123;156.5379;103.0046;106.9418;156.2857;79.31176;86.71423;159.0517;80.6389;99.1806;85.23115;121.5186;159.6956;195.7025;150.5471;116.4513;124.7243;75.49388;122.267;112.233;185.7854;169.5278;58.06495;148.5661;82.34591;158.8004;164.8005;119.6883;81.28929;56.67592;
173.9038;79.9553;101.8348;104.4506;121.2103;97.23262;85.54429;77.20105;52.13446;94.32803;91.83926;101.1569;112.2794;85.16933;97.33912;58.49585;99.93486;115.6359;163.055;86.30859;72.64568;76.49851;92.07249;107.2205;152.6409;88.59375;67.61435;127.4246;131.1283;70.15283;89.99373;155.0371;152.7616;60.89067;169.5427;57.90334;53.44099;130.1074;182.364;96.91638;162.5009;113.1325;126.4809;85.81451;136.8214;178.7378;201.5152;170.6887;58.79181;138.1811;114.0233;87.18493;134.7136;155.1569;156.7649;74.11518;132.0943;129.5295;70.33237;104.1364;72.83997;103.2779;108.2244;76.22272;177.9919;116.1757;124.0486;71.95144;123.0378;136.5503;187.1936;62.13316;127.9685;76.24639;143.2286;82.03605;141.114;127.0545;110.3699;123.4215;80.78693;140.4233;163.9842;160.5314;92.15848;94.37265;132.8118;136.4117;151.5639;146.9174;150.9627;87.97173;155.0437;176.913;136.9717;155.4305;161.9142;52.81024;126.3105;55.5041;58.37229;82.60184;109.8242;65.95039;109.6387;60.89343;74.47289;77.75161;110.9426;73.8194;86.37474;87.8079;96.2492;112.1252;65.80446;188.458;91.3363;132.289;91.66315;96.81789;67.4678;82.42926;113.6876;95.66779;127.0545;67.71019;58.808;142.5952;163.9651;95.04269;106.58;119.6809;130.0511;119.0317;88.4952;58.99928;58.87638;98.79974;89.8824;106.3809;119.8222;104.4412;97.93359;63.05982;97.06467;114.4872;136.4363;118.4215;59.63714;83.11301;101.9678;116.4701;143.7865;87.9129;69.78392;121.7144;131.4148;79.40179;96.3894;162.1587;137.2414;73.7947;174.1811;64.29842;59.35281;150.5179;182.9517;76.1188;167.9523;118.1967;123.4295;85.33083;145.1685;201.1067;199.1781;179.7811;54.37297;136.9996;91.72533;114.7473;118.7819;159.8392;166.6788;82.75742;123.6974;124.2817;71.35509;96.23114;69.96036;109.8553;120.3604;74.67622;163.1457;120.4955;127.4586;70.45552;125.2617;158.5173;179.4627;49.55115;136.0942;76.87241;138.6112;82.97879;145.149;140.8343;113.6279;122.7929;76.92232;125.6887;136.4207;183.5208;73.92671;98.88092;134.7223;154.864;142.5595;141.3295;152.4593;80.71852;150.8292;185.4902;161.1131;148.7514;124.6864;39.56521;126.5205;61.28692;70.08611;71.80105;83.06543;69.10618;101.7005;74.16532;48.0223;109.9475;101.569;88.25973;59.04656;55.03218;128.4766;131.7664;68.47238;209.5015;80.37798;121.6856;85.08921;99.01746;61.14042;111.2224;113.759;104.3691;136.1956;67.30815;78.11721;172.4773;
54.00565;107.2935;98.98373;81.31976;143.973;90.07882;54.22998;99.99046;144.6379;56.83977;87.163;130.3587;104.0843;93.74828;113.0965;95.44814;66.2953;97.90282;147.4337;92.12117;154.1592;116.7751;140.7395;105.1783;161.1838;165.3814;189.5508;122.3429;77.47146;152.589;118.476;68.88605;129.7158;146.4387;218.6359;62.57251;146.6186;142.8366;95.59511;112.7016;100.6064;135.2582;149.6216;94.0757;142.6295;115.9146;163.1332;85.67792;125.8833;129.851;123.5011;55.11654;123.4962;66.90257;97.73596;64.38416;152.2519;141.0647;112.4004;131.7704;55.91768;138.2799;108.1931;143.1097;76.40456;128.5235;133.612;118.5494;149.3143;144.6168;134.8115;69.66801;166.1621;149.1685;144.8791;130.1629;114.7075;70.48747;82.92822;79.5907;72.23154;60.87605;74.91791;61.96146;104.676;64.1628;88.63203;97.4285;126.6411;60.79924;92.31493;51.87071;126.3482;115.3754;89.06365;124.0719;101.8726;125.3938;125.8634;73.84424;85.57952;95.54697;149.8146;112.7965;166.3234;85.55389;88.73222;178.5546;143.7754;85.88593;145.2119;126.4277;141.1214;88.01724;61.16442;62.82204;55.92607;84.1049;69.12237;90.8073;148.4588;116.8473;102.3802;64.08862;83.47519;106.8714;125.8272;85.11868;63.85096;111.6364;92.57008;83.63573;129.9801;80.59708;43.711;115.7248;139.4739;47.21118;94.82333;140.7308;106.8624;73.73379;109.4704;84.37959;76.50095;90.92348;166.6838;93.08114;162.0907;119.7529;157.2047;112.8635;189.446;174.7855;205.8759;123.1865;88.38583;124.4301;141.9928;69.46774;137.7621;151.173;206.743;62.67688;130.4541;126.4908;80.48993;127.1512;91.74817;120.1405;159.0712;100.7283;144.6787;89.72819;158.0665;73.76196;136.127;122.1617;140.3273;54.45912;131.2605;66.18906;110.9416;69.02647;177.0956;152.2419;116.3332;123.8707;64.34148;118.5972;126.9074;147.0578;77.00882;127.6384;125.0957;120.5959;131.3649;126.8666;112.7122;79.28577;156.1468;135.2195;145.3382;131.1665;115.3386;55.21522;76.36855;70.26674;74.52971;52.22397;88.76887;62.63353;110.3369;62.55043;97.46848;101.049;149.3805;68.20717;95.88132;46.95988;138.8621;97.46197;108.0432;154.9982;102.0182;164.7113;104.4949;102.5435;87.69196;102.0867;114.9144;124.8297;122.336;75.46304;91.66851;141.1753;115.7162;62.12286;91.69876;125.0126;202.965;129.6183;63.75111;82.62392;80.96967;113.2788;99.73006;140.061;140.7669;113.4047;82.35545;64.348;77.62417;105.9901;144.2978;90.20251;
58.36821;118.6929;74.2324;96.91985;109.1359;127.5619;131.5944;77.11803;91.39071;94.39115;164.1855;139.8252;61.33795;146.1072;51.47161;91.25534;71.67629;139.301;159.7071;60.39613;96.05582;106.6466;93.46648;83.95441;111.7008;80.67267;117.8422;132.5417;127.5657;142.8309;49.28968;184.4459;58.40473;73.49007;127.1039;102.9239;111.3997;66.17686;125.0479;171.4089;126.0073;96.5667;159.6253;69.3193;100.1163;79.85952;161.2425;112.431;151.2449;69.79411;118.5811;64.26441;95.95982;55.68857;70.08696;97.64346;191.437;86.96262;83.06419;101.6372;87.89875;60.52806;102.7723;113.9941;83.08681;145.4185;118.4032;102.4729;99.22094;57.32883;44.29915;105.7857;178.3017;85.21447;134.7756;71.03999;177.4621;139.4072;67.55171;82.83237;81.98183;88.1587;75.81622;67.30967;130.3041;111.8669;49.82858;84.79839;179.4265;67.38367;119.7369;125.0585;115.4588;134.0116;137.9446;96.69528;51.87674;136.9575;110.3898;88.5996;130.4215;117.4924;173.1288;220.4117;172.0748;81.61203;148.7958;56.22197;144.3408;122.3054;133.0396;158.3645;70.33015;113.9635;74.3875;99.72933;157.1351;117.5072;69.04794;110.9137;114.1448;108.968;109.7145;128.6735;134.1653;111.42;92.34055;166.2137;67.95792;118.4585;51.5713;84.23485;106.6392;135.6452;123.4567;65.0894;87.3632;85.86618;163.7221;126.0001;62.16387;161.2378;46.08685;94.1194;70.43026;122.2216;119.9312;51.45074;99.68172;111.6709;84.2349;86.5647;116.31;61.51848;107.5057;100.7016;114.1674;148.0568;39.11394;171.7325;63.84502;71.93595;101.256;92.14411;107.3662;71.5203;119.2765;154.9524;116.17;86.96208;165.404;62.01369;99.75607;90.72491;154.0547;120.334;144.9961;57.70275;89.22855;59.51843;99.19855;59.63773;63.70166;104.866;181.0911;75.12714;86.10541;86.60783;76.8016;61.09037;88.55216;99.06232;95.10749;140.7257;97.05042;96.79603;95.13788;68.94714;43.93488;90.02573;156.0946;85.03361;149.9523;70.27729;176.9247;149.2071;63.54996;85.01179;82.56903;72.69586;55.43353;66.65307;133.7436;126.4858;47.63976;88.6394;169.4149;57.02007;123.3826;108.3215;102.6856;134.8477;128.0289;76.69153;92.32638;172.4199;71.8119;88.83106;126.2368;162.7488;151.1034;203.4344;128.4144;108.9868;127.055;61.12412;111.9574;132.2991;121.8465;211.6019;73.86761;127.2258;58.68454;141.2854;204.4276;117.4763;76.70175;68.27124;118.9954;118.0418;125.2556;133.4008;101.1411;143.5124;60.88493;136.6395;
124.6066;66.99429;68.65224;94.29398;167.7005;111.5808;130.8952;94.20653;105.1231;69.09359;127.0919;81.7968;107.4903;57.78653;145.7177;85.18504;105.1407;85.04331;56.25636;103.3817;78.0056;70.83086;142.677;152.4453;147.2977;104.5494;126.5891;100.0516;54.3733;133.2255;177.6025;75.50025;143.7596;111.5325;133.984;172.4035;101.8955;73.11948;115.4362;67.02009;58.76794;99.6426;151.9174;158.9967;95.07433;104.5999;196.406;113.1838;171.8838;137.3512;95.60184;165.8396;174.9461;60.7703;95.59184;180.6666;123.7304;91.89159;133.3304;143.5734;118.6935;153.3382;124.3313;69.21104;136.7653;58.62641;110.6938;137.9299;129.6488;152.3169;56.80982;156.5356;93.23885;107.5215;190.8668;150.0663;111.4868;58.58414;81.64307;108.9401;141.4783;127.6636;109.5006;161.1582;71.99994;133.3249;105.7061;117.764;90.99949;86.21;141.7947;176.961;130.2566;102.2178;99.11018;71.5258;167.9543;184.1349;38.80777;186.7674;72.19413;89.06217;90.70318;109.8964;127.6292;77.39536;115.3306;144.9401;143.5012;100.8838;127.4082;99.54286;159.1922;126.1002;88.46674;157.2397;51.50185;172.4357;73.70418;90.05664;123.4517;98.43132;92.37321;82.51625;86.42749;114.1786;91.07697;71.5122;150.7701;76.33218;73.95757;89.43262;153.5592;136.9113;123.547;95.05762;112.4572;78.84148;130.8843;79.12711;103.7;55.3296;149.8729;67.30552;107.4597;81.59261;44.47535;82.02411;54.38307;91.74052;119.3495;128.0871;136.4225;94.00172;107.17;101.6447;58.32418;129.2695;160.9893;65.99329;167.4603;123.0275;137.6053;166.7357;90.18034;98.5126;101.3344;66.41046;62.58395;111.1057;153.5723;156.4761;91.49674;105.9574;192.9185;93.18404;172.1454;131.6265;78.5517;142.4781;138.5921;83.498;71.59187;155.0496;110.7903;86.17616;112.4452;147.6141;128.9725;149.9352;119.8361;65.69466;150.791;68.12328;113.5244;133.7499;127.1024;177.373;55.55288;164.0853;97.26588;125.7093;193.8116;145.6466;111.7733;60.13519;87.34492;96.10284;133.1438;123.6102;90.78014;139.0435;56.50078;156.0237;91.37859;104.0003;79.95216;80.67358;120.2279;181.4438;141.0145;99.44289;84.62104;71.89262;173.5628;138.0692;60.31202;205.1263;52.58668;66.1885;57.74754;115.0489;126.8339;95.05787;116.7255;128.5992;132.9175;95.21718;106.14;83.43678;137.6646;104.279;131.9341;127.3324;50.14788;182.9028;59.17882;74.63351;124.2229;77.75917;63.30006;103.5354;75.38013;143.7058;74.49387;86.18396;
44.71049;138.0934;78.98497;106.1211;128.6015;75.34991;102.2252;84.98234;101.143;147.2114;97.44035;103.1664;131.0874;80.15271;74.75137;85.31956;146.5547;138.8826;158.8398;63.23265;86.87051;83.16759;100.7368;79.02976;68.88347;95.58028;153.6275;62.14013;94.16724;90.5368;82.19067;70.78756;99.51685;115.6575;141.3849;166.9402;161.8326;87.16862;156.4889;87.65351;84.47785;85.81274;162.982;53.94432;148.7684;70.19085;155.0942;129.0429;84.80323;94.34986;111.3222;79.88833;71.44443;96.27744;149.8743;121.9797;103.0724;110.053;131.0945;56.36931;123.7742;119.2642;112.1368;121.4541;136.7101;52.74869;74.21248;175.5725;116.6674;70.5296;120.1069;166.8908;148.3055;187.085;131.6233;92.58071;142.0769;75.75051;126.386;126.1055;125.0656;166.0688;72.20268;115.989;72.72435;132.8079;152.9724;155.3384;76.87248;105.0262;87.53928;86.44353;126.5072;138.8308;147.9767;125.3452;111.5777;178.1258;102.7467;130.9426;104.2739;78.12987;159.6188;176.8315;188.7605;66.68783;91.37094;49.72423;178.2976;137.446;57.41776;137.8208;71.1032;80.80414;74.04016;146.6463;142.5151;76.39248;118.9166;121.4263;136.5337;91.50875;82.50919;60.8549;100.7547;96.18457;120.867;133.8971;44.42239;136.4117;68.78068;91.29425;127.4873;78.233;88.25941;80.23011;82.40475;155.7703;97.49334;106.9116;142.2069;81.40739;85.70086;84.11687;151.7173;104.2465;126.8297;71.82868;86.5869;77.11002;104.8998;91.42915;55.293;84.38528;149.3211;57.71553;93.0784;80.71722;88.90568;71.17496;101.212;119.4786;125.5346;144.0237;158.8005;92.72362;135.0886;82.338;69.55168;97.75691;161.25;54.50205;158.8699;73.69489;166.8819;128.4347;92.92101;70.72627;83.91763;88.01895;71.57632;92.27054;151.3051;138.1791;86.81628;95.52364;128.8983;56.24375;114.3954;101.8133;111.4754;123.035;129.4826;61.04603;69.93488;160.6182;113.9456;69.96242;109.2345;147.2691;124.0126;193.3191;132.9945;100.334;142.8832;74.13767;127.9704;126.5932;125.8007;142.9803;56.87112;133.5487;72.73791;120.8053;163.9805;160.7608;62.92862;90.84805;85.74623;86.28802;117.0233;119.9483;112.259;152.1313;83.26642;135.6094;73.52136;111.047;61.07172;104.0077;147.0462;176.1664;142.3956;83.73244;101.2295;83.90567;161.0657;193.3633;68.44486;177.2182;65.24926;54.60302;55.93083;132.9243;136.037;95.95855;114.9813;121.9611;119.5276;99.37957;130.6378;69.85962;129.2302;87.8907;160.5311;176.0596;
59.66032;131.3708;107.2461;66.09255;109.6319;183.4157;203.2177;89.13049;124.9081;132.7989;78.26348;80.9174;100.2489;103.3108;122.5108;93.20547;106.7607;107.5189;131.112;55.6465;133.1516;162.3757;122.0715;78.46375;151.8063;73.43044;163.9659;63.32806;197.9105;86.90417;90.08521;169.6066;69.33889;153.2504;118.361;162.9969;109.0724;143.0212;113.8175;161.329;102.9234;143.1403;124.667;85.83944;130.4841;167.1684;99.62164;167.2284;101.3003;43.2394;82.2562;61.61337;89.49995;78.22411;85.29742;86.73408;118.2246;89.14233;66.50916;96.09237;162.0115;44.36265;53.92342;62.08189;110.8443;107.9505;77.60437;123.9527;85.42658;156.7918;117.7158;92.37743;70.36199;86.91985;112.3814;76.84476;182.6098;72.37205;66.59648;169.6362;114.4127;88.37776;110.6535;100.0097;145.4141;127.5346;50.2865;84.59537;70.41774;96.40852;101.0996;77.68906;185.242;66.19252;74.02827;97.34457;95.44281;149.5128;121.0399;98.94451;96.47749;126.9632;76.69016;107.3595;104.8557;96.67254;45.58196;119.786;130.1549;75.8429;55.87607;160.9041;101.331;75.03181;126.5706;61.52715;107.8626;149.0412;156.9236;87.11713;149.3826;145.6916;113.6859;88.9685;193.0339;130.9275;135.3218;132.6755;61.7141;139.283;120.5414;68.89445;108.0107;162.0757;202.3444;73.06735;148.8401;133.9266;74.05386;85.27702;120.6474;111.9915;135.3725;82.02267;115.4529;122.5671;135.9506;46.11718;156.3484;193.009;125.3872;54.3787;133.2324;67.01888;145.1442;46.16668;206.3639;90.8763;79.35983;152.0195;69.10616;165.8654;133.5555;166.5023;104.3451;122.5032;107.5524;135.922;122.808;148.4683;121.8174;89.91966;150.8612;175.8763;106.2016;148.7947;109.5911;55.7566;87.93787;51.45721;107.9875;98.53109;83.58609;59.18921;101.8681;81.54998;61.73246;80.06238;154.6017;42.1358;46.78981;52.80961;106.2816;112.6366;87.81512;129.3173;78.27543;133.3623;118.6125;83.46856;87.0814;86.96796;117.3542;86.48038;189.9203;71.56635;73.35886;153.0766;118.705;100.32;114.7382;88.85428;164.4437;151.108;53.83458;66.35217;57.93249;88.50249;95.18867;63.34929;177.3127;63.46605;62.64213;67.15517;75.78185;119.367;161.0204;94.4173;79.35528;79.40617;92.55506;82.44389;162.4309;90.60433;72.06564;125.2973;168.5663;69.50299;70.83095;117.4496;116.7975;86.7879;179.6607;66.16524;77.31718;144.4133;172.9798;101.966;122.642;145.1943;98.81935;82.84506;199.8188;189.6777;184.7001;129.3923;
53.20641;189.3078;57.1362;71.60867;64.33722;157.4331;139.0382;76.87987;101.3096;146.8866;91.4819;59.44294;128.4673;81.54874;132.128;135.6256;118.3028;128.8311;54.41568;146.2845;76.03309;99.19321;93.83574;118.7254;66.23634;78.14159;69.45647;142.2898;106.9122;103.0743;146.8736;105.9385;73.83464;69.47783;158.2484;146.886;112.6544;90.15041;71.7529;95.55311;92.52512;102.8307;92.66795;62.49472;163.2502;71.62508;119.2987;83.32462;38.5841;57.95687;83.33216;112.2276;117.8444;140.3835;138.4803;129.7665;134.2169;88.37674;55.6651;88.35825;180.8809;48.79132;167.8256;115.4647;172.2506;183.904;81.82502;60.78823;80.95195;108.4655;67.33521;93.79227;129.1224;155.1449;62.72165;70.92512;193.6859;70.51865;132.2186;144.642;115.0448;120.2025;152.3649;59.09561;79.39186;182.2874;79.67511;105.0012;77.27866;137.2373;122.152;188.7469;145.9468;89.3498;138.58;99.1588;124.835;113.8959;132.9729;177.4833;52.08247;165.9311;63.35516;143.5383;141.1484;173.3891;107.4391;73.00081;100.6884;93.37052;141.7166;132.315;105.3503;121.2787;99.07554;183.5342;96.01118;131.2949;99.85372;125.478;172.6777;169.9494;161.7981;76.10725;87.00457;60.7671;152.2656;181.6602;63.39034;193.4664;53.23759;77.67696;80.61497;146.2436;156.7455;98.46606;93.36483;144.6171;102.9032;66.22083;122.711;89.95031;112.2967;139.246;147.3659;141.7036;68.30856;147.6475;84.02934;120.345;107.4395;127.4959;78.1856;81.09622;97.33826;166.5455;88.64003;111.3706;109.9861;100.7849;85.41571;72.50451;145.4827;149.5224;131.524;77.43181;88.2467;117.8441;85.00437;102.088;99.44047;65.90286;154.2355;75.41569;104.4435;87.53976;56.68697;68.31551;95.66722;112.0001;126.6294;160.4723;159.8007;140.6696;157.6266;95.94196;70.00055;99.65907;152.2511;60.58949;134.7919;108.8153;176.9346;178.4037;71.78221;69.24143;91.91274;89.29476;79.47438;118.0395;124.8872;157.4755;62.01423;69.01739;178.8668;81.30251;122.8319;148.6995;133.894;126.1604;167.4621;65.49349;81.77287;197.4287;91.87855;116.9729;95.26865;146.631;142.9929;205.1068;120.3553;105.0901;107.7115;103.7105;100.0142;134.5719;144.5518;210.924;76.40781;129.6278;70.35577;170.5808;128.8674;155.295;86.48583;69.59014;107.967;98.88141;106.029;139.6545;165.5025;106.6853;112.8023;188.2276;100.949;124.4485;71.9997;125.0878;125.3242;196.8837;194.4198;108.6212;80.35933;67.58019;125.4366;148.454;
203.1083;145.2557;96.76974;196.4902;54.12227;137.3562;129.6264;145.8894;93.97748;116.645;117.8167;129.9839;96.12457;97.77675;164.129;70.23736;163.7279;161.2054;131.6546;131.162;110.7019;54.92703;102.0953;76.28049;78.55939;104.0352;56.2462;57.96281;92.69852;83.37682;73.62352;89.78785;139.8005;84.91093;74.91715;65.3811;102.4651;123.2789;80.10255;151.2983;97.96106;143.7857;80.36486;107.393;87.70683;72.51915;136.6881;86.97819;206.4322;62.13631;50.85457;156.9972;131.0139;110.1186;111.4648;95.13721;209.1427;160.8237;89.50451;82.17668;73.06895;79.15631;100.4216;89.62369;169.7069;111.8697;74.44333;119.8499;75.50362;121.5447;137.5936;97.42058;79.78152;111.754;85.57471;95.60283;104.1;57.15651;79.73908;106.8391;140.7228;64.78278;75.42609;138.6685;105.3551;66.76994;148.7187;99.76083;80.51985;165.6299;111.7679;83.86783;141.6188;148.7093;124.0085;95.28853;165.1199;201.1984;161.2233;142.4545;59.72391;141.7075;113.2002;92.32533;129.2875;185.5995;144.7545;88.74102;157.626;115.7199;87.14413;91.82032;102.9423;98.63702;94.28843;75.53474;147.4014;119.9408;154.3205;45.16467;199.1047;200.3026;179.1409;74.49422;158.0193;60.50575;157.1815;72.67881;184.1317;143.3217;93.76595;182.4356;51.82119;111.0847;130.3673;139.7892;111.8094;128.4004;105.5594;128.9801;99.39469;97.60014;171.0345;78.26338;136.391;156.42;118.7351;123.3749;128.4667;42.31009;124.2451;72.759;81.19511;109.8554;53.17925;63.23207;100.5256;86.2445;75.33669;90.47328;118.7224;84.08553;71.15547;53.32558;97.57037;100.2699;77.37131;140.4064;112.158;158.0127;70.17562;101.1761;89.92957;73.79469;139.8938;94.42683;170.7749;59.15975;43.07385;145.0916;149.2225;92.5684;131.551;89.7775;209.4571;155.9263;90.76048;87.6179;74.86169;80.98103;103.9864;93.8082;157.202;109.5418;80.11016;107.5011;69.66542;105.559;130.3521;81.8298;93.529;113.9701;79.69475;91.5715;100.5383;57.47221;83.59515;119.0242;121.0355;60.71415;74.98036;132.1444;119.5925;58.33707;167.65;87.163;80.71409;160.6545;113.17;89.36388;144.1104;151.2065;111.1987;99.56262;159.6035;212.8522;176.015;139.4495;63.33292;133.4881;92.23979;90.71686;136.2628;157.6459;182.5954;43.8894;138.7672;125.0664;116.7155;81.37247;98.28835;120.8272;127.2198;61.80426;130.0183;120.6745;135.963;68.98284;187.5754;200.0415;150.9422;70.81527;168.0378;70.80315;118.0034;106.062;
83.63351;107.9983;124.9959;72.97655;106.8967;127.9873;109.3389;172.5694;138.6386;94.86112;159.2345;153.3299;97.20724;62.27363;167.9516;86.72328;96.1346;77.23972;171.1104;125.4796;149.0236;115.4183;99.57008;144.7413;76.08124;126.3784;124.8151;159.562;177.1582;48.43761;209.5623;74.2589;122.5432;136.6395;102.7493;76.6529;67.96439;71.57072;88.41423;98.96895;128.233;132.2603;145.4697;85.10828;164.5984;83.16775;136.1825;96.00773;102.2341;114.1006;156.6207;149.6612;77.40012;80.15553;63.84375;121.9595;151.5152;41.83031;138.0484;72.74017;53.7731;71.68059;123.7125;135.6815;74.85801;92.22697;115.5091;115.9926;105.7895;81.97842;111.5657;161.1473;135.3527;102.0305;174.2385;64.41784;188.3566;63.00287;97.41223;91.28574;109.4676;71.23813;99.72335;84.15317;115.8156;85.20113;103.1815;146.2946;91.95451;79.4875;80.74519;199.8965;131.8529;108.234;126.5075;83.50892;81.09213;97.0172;53.25546;68.16132;65.81721;129.7908;58.5103;80.59991;89.27003;71.87134;86.61615;85.85774;96.23425;103.234;162.1088;156.4144;124.8918;135.9479;101.9219;68.06669;113.0818;151.1657;67.83787;132.6637;106.5772;152.9185;125.9534;95.92088;46.34457;87.0798;56.06591;74.76154;76.77252;127.2684;145.6396;61.00817;104.9642;148.2027;102.6771;172.7282;171.4611;92.94461;160.0264;166.9168;83.82609;61.99389;168.0453;85.88262;104.0774;104.7823;194.0963;136.0726;157.2433;122.1636;108.9783;170.8039;99.45086;131.1732;119.0329;170.684;169.212;47.37049;178.085;77.18077;108.6708;157.7127;120.3195;59.48713;66.41386;83.41641;79.97549;98.79702;153.8395;130.1761;145.4094;89.86703;147.0705;79.61787;133.6499;96.11458;107.3072;147.202;178.3192;155.7421;85.05838;82.42281;69.52859;147.1994;176.4125;48.7496;133.9973;74.45329;51.25373;75.40577;103.5708;147.8656;61.88649;96.0202;130.4917;99.80256;100.8638;96.3036;107.1031;157.2013;158.3905;106.3008;176.8296;66.66217;172.9247;64.56135;98.93327;98.08271;111.7387;84.96382;113.8114;93.74258;121.8599;89.15363;115.6175;169.9512;111.5595;88.92909;77.65391;202.7298;127.8907;112.8007;73.09223;71.8843;88.67593;143.1954;58.99062;53.03415;94.70243;162.5353;92.17421;85.21961;93.51441;52.47768;58.39313;87.30894;65.09857;120.3562;192.1524;142.417;137.8122;146.0627;106.6935;87.15717;120.1842;163.0664;70.97582;169.84;81.01539;187.3664;137.8848;83.53443;46.46279;62.31657;59.8206;70.8745;
78.15945;64.47131;198.8925;92.94738;146.9314;118.3575;116.8139;92.23334;191.987;44.48969;48.5744;136.874;92.54111;96.05869;131.8467;160.3915;143.6685;182.6769;152.4782;79.45068;159.9328;95.3381;94.99737;87.41418;125.8495;135.4892;50.85392;116.585;43.15878;105.8862;165.0091;136.2425;87.80238;64.39606;108.5818;124.3148;101.2616;163.4507;111.1113;122.2298;91.03697;124.6804;71.64176;147.5702;59.07832;85.53378;144.5146;139.902;147.9526;78.64928;77.34641;77.01462;120.804;186.3432;50.72447;118.2086;82.52005;67.54659;91.00888;111.9023;165.2828;89.94643;109.5329;97.26582;133.1509;61.49938;132.6662;92.63284;131.6011;114.5179;132.2015;103.5207;88.88892;125.183;51.34001;82.14432;116.8214;111.7644;119.6188;100.7082;100.193;138.1807;107.5942;76.25714;156.1235;108.9352;61.16021;53.00857;155.9256;106.3732;119.2193;64.36877;61.32618;66.28636;114.6021;81.4194;82.37554;55.67747;164.1752;81.38338;74.78158;115.1288;59.70922;66.13648;91.46144;75.24219;100.0044;181.3968;119.6351;101.1475;134.5638;71.75906;64.72691;115.1457;131.1601;83.23837;99.00398;95.83736;158.362;119.9687;115.529;59.71096;98.11479;59.09304;88.90005;104.3745;144.8022;116.8497;97.66687;71.96965;184.9621;86.63503;144.4383;140.3978;116.2645;92.97812;199.3945;60.69521;62.3051;136.7408;114.7262;118.0753;135.3746;164.1491;152.1095;197.2427;144.4755;90.09949;150.8951;82.29752;96.33165;100.4874;143.1315;145.1776;49.60006;118.345;54.06475;103.5795;172.1662;152.376;102.3802;71.6622;96.77444;114.3971;97.42941;183.9632;109.4639;120.9224;91.60406;150.9377;87.73521;144.8103;76.17223;102.3214;147.5254;141.4119;152.6201;88.61622;71.07785;85.74898;113.5757;163.2719;51.29842;131.4079;92.27152;68.25092;86.10789;106.8374;173.0602;86.10674;109.614;102.0554;150.5497;71.74116;128.0112;93.46469;131.7161;131.5676;130.0683;106.0697;88.18507;142.2068;62.90475;76.04086;129.1747;128.7523;116.4212;93.45358;103.6888;155.9359;107.9071;94.36037;152.7274;91.2924;61.55921;64.89011;169.2269;107.2526;113.5991;60.54152;66.09851;62.99606;134.0186;57.40692;92.5922;52.54741;184.4336;100.8398;111.3374;119.9782;51.7432;81.85106;71.73426;87.33742;115.4092;191.125;123.4467;105.3573;143.9124;81.31253;85.03321;114.0143;130.21;67.13762;103.3278;69.62493;143.6976;155.6763;108.9978;70.53649;90.38258;79.46169;75.67515;93.84472;132.6552;138.4591;
84.72112;60.01649;100.8152;120.5324;78.93523;148.9599;55.76007;86.82507;147.0313;100.6826;102.8803;117.4674;117.8026;158.3817;163.1015;104.2709;82.68667;57.6002;130.8891;83.99965;140.8686;128.5653;96.29189;91.26737;88.74892;59.44779;164.0403;130.3371;62.66484;50.21965;112.2775;97.03988;95.64594;130.6364;88.40627;63.02615;128.9987;112.4724;86.76209;96.54222;123.2926;86.64481;63.5212;122.6697;51.2991;73.10884;96.77764;139.4225;91.30049;170.6617;149.0305;123.9159;95.5593;148.7358;162.1707;217.4638;151.3451;57.79667;144.9165;116.4563;77.02119;110.272;174.2226;145.58;82.44775;115.4234;141.5274;72.89778;82.87425;88.72821;92.4478;160.8748;78.59152;94.12657;110.5443;125.9455;65.37039;140.013;207.8932;190.9137;79.05888;139.0279;100.4711;127.7289;115.2115;153.1297;128.3889;106.5924;160.4512;36.51332;158.1192;118.9113;106.4556;57.58886;133.1872;126.1319;139.1297;130.2291;139.6828;137.0936;87.38766;129.0573;191.9144;149.5394;108.6354;85.8853;40.313;77.60506;37.4863;65.52752;62.68411;51.852;77.73906;122.0523;81.79857;53.6055;79.19632;137.4679;50.92678;94.44089;58.26859;111.8444;124.7686;74.61998;124.6237;85.56469;140.2769;78.33543;107.6801;73.1614;95.05157;117.2374;88.84728;170.1246;57.23357;87.78199;129.9402;109.6303;82.91162;102.6774;115.362;145.5723;172.9425;78.79114;103.9802;61.18503;123.8967;60.9688;135.1402;152.4544;85.34823;79.9322;79.42029;61.28394;152.7564;105.6745;48.06416;48.89706;112.7384;97.09486;114.4189;147.7615;87.13;62.54766;139.8649;130.2627;90.47591;98.92986;102.8834;93.94101;51.51456;110.6544;48.70297;64.14111;106.432;114.2855;109.7499;176.5047;147.3999;101.4404;90.48368;174.872;150.2973;205.9606;138.9664;66.87524;151.7056;106.3524;65.47646;118.3427;168.7425;148.1128;94.17465;130.0235;141.2437;73.09824;89.66299;103.5195;96.14713;160.0049;65.32597;111.3886;104.1551;121.5994;67.24805;138.3589;215.1079;163.8804;90.63081;142.7051;100.255;105.7536;107.4819;178.2135;117.702;95.52983;147.6976;43.79967;165.2071;108.699;92.80068;63.46075;148.7942;96.35479;126.042;122.2232;113.0293;115.5743;60.16793;174.4807;169.9173;149.5946;124.7058;145.4724;56.34573;102.51;53.57745;85.12505;77.99243;84.10709;60.36094;111.863;74.2261;45.92623;73.06797;117.8827;51.44514;82.85734;80.41631;122.1741;100.9981;87.05109;141.6744;100.4095;171.2549;116.5954;
145.0457;146.6849;95.39964;66.19627;103.1967;94.55379;85.23283;94.36279;115.708;135.1257;93.55022;150.0806;113.4827;168.0208;77.47934;81.71592;139.9406;158.1993;171.3423;94.15452;90.36476;59.70447;181.4312;169.1836;50.76657;151.4653;50.76458;82.74316;61.36856;104.9721;130.2896;84.02586;109.4533;119.0307;86.97005;99.26248;105.7699;121.7901;111.2332;91.90286;89.00193;171.131;59.68434;177.7591;102.8925;97.73406;179.0853;72.97127;102.7245;96.2224;137.8997;158.8556;109.3307;106.8801;159.6884;64.64566;63.84624;110.4651;156.373;114.7463;121.6574;86.69855;81.25338;82.20454;93.21242;84.98542;87.66974;59.28836;179.685;63.45433;72.10471;63.25179;67.33372;79.4762;98.57295;88.10645;136.0117;186.6924;134.5676;89.62567;127.7265;92.04844;73.2773;117.2763;170.3158;57.69544;174.488;101.6669;162.3996;145.285;76.69245;72.20467;64.59248;57.69625;59.32162;94.41552;140.0638;142.0954;45.98809;101.669;167.702;115.5102;127.9403;103.4832;80.33639;157.7948;162.4913;89.61302;93.39934;158.8927;158.6503;73.99888;125.1358;178.3554;161.9783;175.1982;164.5633;83.58783;173.8802;47.10041;87.17973;166.5339;136.9384;170.9831;58.95873;142.0199;65.61379;124.8186;155.9806;146.2191;114.8491;76.9864;118.7194;74.30041;93.87732;109.1801;136.3022;114.2851;101.9366;136.7391;87.87066;147.1125;73.35786;90.92365;143.66;173.7241;149.2532;74.09602;107.2373;46.35112;207.0634;152.5677;46.04067;165.0871;64.74479;95.83843;61.20608;93.58472;124.3652;79.28422;115.3974;118.1565;102.3436;113.1495;120.5986;103.3959;113.4594;104.8661;104.9707;147.3628;64.7989;164.4529;78.56921;86.16071;165.0989;82.4102;103.8157;107.2097;116.3588;136.373;127.894;92.15528;175.8532;55.13066;55.4847;118.7648;167.9829;131.1463;130.1775;79.00889;79.18819;82.00667;100.8913;79.17077;107.1555;69.77913;185.782;48.75313;71.6147;70.64001;79.52629;62.03687;97.42108;76.6471;116.0539;174.4763;125.7622;105.1495;131.4413;97.18565;60.86765;97.67146;180.4088;45.44407;187.6804;85.85129;148.8884;154.7765;84.8845;85.32728;70.83979;51.45613;54.53477;102.9997;124.541;110.1021;65.84938;98.69163;182.2805;80.77655;124.0464;131.3042;96.88042;98.2315;210.6728;71.54212;67.87055;177.6473;109.9866;84.26447;140.6126;169.5267;164.1665;136.1588;153.4314;82.45564;175.7595;79.21507;93.20544;124.4039;164.5089;150.4136;64.20706;125.3725;63.29769;161.6553;
106.4832;124.4881;64.87955;130.5381;129.2797;110.4483;189.2465;48.41726;187.6714;96.82964;115.519;134.7094;142.148;103.415;102.6309;98.92213;130.8985;111.8153;133.0362;145.0146;156.2056;100.1774;174.6993;91.84249;188.0106;64.9638;88.84402;136.1608;187.0786;128.6004;105.5157;78.9745;75.33138;134.956;141.7817;69.29828;168.6613;76.94242;61.60147;62.82199;126.9803;142.1028;60.77417;76.89671;105.4316;114.9479;85.70569;84.11552;73.05314;110.9061;106.6026;128.6977;135.2366;53.55251;196.913;81.68754;73.0757;103.5903;87.90678;80.91356;95.65038;72.62161;127.0964;108.0409;108.9278;124.2391;70.89203;89.5402;99.54507;128.6403;146.473;114.7138;102.9569;105.8934;78.56556;92.81194;77.85904;94.58022;100.3518;165.7252;86.80995;84.9514;88.16643;84.57131;98.93838;91.78165;108.6266;123.9112;197.7797;105.861;111.078;133.5603;104.9225;49.23386;135.817;143.5673;71.05739;120.6815;76.73973;183.1078;164.9637;95.9168;50.93535;75.34331;68.79332;69.78689;84.10406;117.5813;120.0126;72.24774;89.77357;153.098;61.3002;121.635;136.2224;90.16413;131.4916;161.4948;88.29926;69.2804;143.5123;94.99129;71.03049;115.5752;180.843;127.8843;173.7874;135.4644;107.6724;118.3208;72.96526;140.6538;162.2585;123.2189;205.5567;46.61726;181.2;77.14304;129.9658;154.973;152.4483;105.6142;111.3087;117.1134;116.2154;101.801;155.9657;116.1303;165.5488;112.2171;162.0187;79.69391;182.4096;62.82866;85.41605;166.7961;202.3722;145.1648;112.4294;75.53683;78.19879;134.2229;151.3421;73.71803;204.0512;90.0815;68.20607;60.36007;124.5032;124.0956;70.18095;89.61137;112.8739;120.249;90.83255;101.7371;65.70081;106.4625;126.122;99.97866;144.4981;64.55302;179.4826;70.91168;80.86385;106.6785;77.57233;95.74906;106.5594;84.58448;133.4667;102.2231;117.6153;119.9786;80.74809;97.62137;118.928;149.4053;158.7769;109.138;109.5548;90.67677;82.98416;99.09559;84.17316;98.73646;104.8235;187.6983;83.17887;78.1914;109.5498;64.114;99.37881;109.3811;97.51526;108.3191;210.465;108.9866;99.42092;152.4429;116.3341;59.16432;126.0377;197.5268;93.05107;161.6862;117.507;207.0496;186.9979;105.4551;76.11154;61.82234;102.8091;59.59422;88.48579;108.2647;167.9999;63.90504;98.17374;152.9224;75.45156;146.541;147.3359;96.60632;119.4941;198.9457;50.03986;77.01688;137.9469;73.51422;106.0869;140.3409;151.7147;189.6315;173.8914;124.6099;
141.7796;196.5765;58.04277;162.715;46.91982;49.13025;60.73903;138.9665;115.3904;73.51775;92.22504;116.6375;114.8492;65.30166;84.61773;96.99656;116.8199;124.9635;134.4329;149.1256;48.44696;167.5291;67.04124;88.03085;108.1535;78.27602;126.947;81.40009;75.75931;124.8048;94.59593;104.2788;124.952;75.24509;101.1098;86.77543;203.3688;110.3663;124.9411;66.06261;85.78022;63.77146;123.9801;73.40141;74.57935;93.14621;141.4062;83.05228;93.92055;109.9162;81.54308;76.76582;77.75359;94.13269;79.63481;164.6831;158.6587;97.98577;114.1547;96.28418;75.31213;102.8237;130.0222;49.87189;138.1356;115.3007;167.6256;150.0624;65.92487;46.4461;80.28912;85.8792;54.36057;85.17561;117.2739;132.9518;77.61398;65.69706;140.6821;91.64094;137.801;128.1475;116.6424;134.598;134.514;88.08669;75.09929;152.4103;97.63956;67.95331;146.0684;150.3821;125.3366;158.3596;130.4142;97.07252;131.91;66.39147;146.4249;127.3263;173.6618;156.985;60.4661;123.0173;72.16348;103.97;183.3917;139.6431;85.4076;96.93779;84.4134;101.3547;118.7172;151.7761;125.9218;140.3961;94.02673;184.3032;72.50088;135.6503;109.3728;94.57725;120.6074;157.7654;166.6385;83.42747;80.15463;58.35669;169.3828;202.2129;57.78981;167.8168;48.57453;71.96242;56.1352;160.8267;120.2054;61.11523;101.2805;137.2411;143.0023;65.54523;87.48016;84.90947;116.8724;118.5507;119.8605;156.5473;59.44733;199.6187;89.84344;86.80382;119.7962;85.62282;115.8367;70.23132;76.7739;129.3795;110.3844;115.2744;147.3866;81.60001;101.8659;89.87413;202.4735;141.6287;112.5606;78.69269;88.30071;54.77193;137.0764;89.51874;95.36594;91.78873;139.3254;69.60662;93.80583;107.8046;71.94998;81.98964;90.89805;117.0635;99.44938;159.5441;170.2129;109.9715;107.0606;83.73975;71.8336;109.6903;144.8071;57.53158;152.518;125.4093;168.5337;155.2873;65.7184;61.26748;65.8308;101.6808;55.07842;74.59136;131.5828;154.0505;93.6761;66.66758;135.1088;77.45313;129.2215;128.1643;105.0588;142.5973;152.102;102.4105;89.03863;149.2607;106.7464;77.98914;138.0278;134.5955;120.8372;166.8544;150.8499;80.7434;158.6053;83.03179;104.6769;106.3163;143.1697;219.3923;65.44439;155.5222;66.2963;92.20734;148.5193;162.8278;111.7998;75.87679;127.4509;97.20092;107.8151;143.5621;108.644;150.3566;72.58246;167.1049;98.21791;181.2829;94.38181;94.98994;119.9071;166.2171;133.0193;105.2157;80.9959;60.88762;
143.246;71.92386;55.3827;99.86008;156.0061;95.26273;164.5799;123.0248;113.3507;99.81506;131.124;190.6769;144.3485;138.9598;80.92832;154.8937;125.6082;72.9368;155.7653;188.3068;191.4923;72.10111;202.6834;133.1514;118.449;113.4498;75.86654;109.1849;151.7949;62.67969;167.2306;109.7389;125.3411;58.28096;143.7224;186.0234;170.5008;97.84753;175.4378;88.34352;151.1016;75.65569;197.9257;131.2747;72.84073;129.0514;57.0319;129.5775;101.4211;106.2943;62.28341;88.6748;120.732;162.0874;161.2096;128.1546;150.326;90.20199;127.6731;211.4658;129.3902;135.0566;152.8048;58.0126;108.1764;68.95863;60.50343;65.56911;91.92609;72.50724;101.6398;62.2971;66.1357;81.49647;106.8012;85.66251;52.71147;67.01613;132.6735;126.9943;96.09183;147.3112;126.2616;158.8043;119.5767;88.01873;112.4592;82.23803;173.0784;107.1161;146.5913;76.69328;77.65439;130.0637;175.5778;85.96131;111.2881;113.5699;155.6202;147.7099;88.81998;113.2262;76.5035;107.5855;99.90424;89.25894;177.1751;101.023;54.48941;70.82528;76.2575;107.3714;124.9203;54.89854;51.69004;90.47033;80.63177;99.14883;136.2778;89.89859;67.75098;102.7868;132.0241;88.61504;63.57957;146.6498;124.2645;67.15153;125.3012;61.90334;65.11213;117.2092;162.821;80.69597;146.2038;137.7747;120.5811;82.64439;126.7163;195.0712;154.3919;145.6201;73.31705;141.6658;152.5618;69.20919;166.6167;217.3679;180.1377;58.74442;165.1781;147.2095;118.1526;79.53507;103.113;108.0836;124.4031;67.91212;156.3465;96.73245;108.2162;49.71592;152.7683;202.4633;174.8801;78.73209;161.3721;99.42154;159.5206;61.7135;186.0606;129.9661;78.22404;130.1003;53.4937;119.1106;127.0044;103.7945;65.34061;107.5413;110.6983;137.1946;132.4288;143.7183;149.3352;67.94058;151.7076;200.9725;109.8068;137.2943;137.9138;49.47545;88.60463;52.22514;64.59583;75.72209;88.33025;56.63357;99.68786;74.95644;70.36876;73.35114;94.39478;80.1566;61.47873;64.07172;123.0002;117.8829;116.7818;132.7342;128.0343;184.1365;102.2649;70.43529;97.22761;98.58929;172.015;82.71933;172.2708;70.42703;62.66414;132.2598;105.8884;80.25295;80.28065;118.7875;161.0589;152.9135;77.06246;95.60669;84.50097;128.6492;96.25639;98.2905;123.4526;101.8965;70.46723;100.3538;87.83605;103.1609;134.3674;53.64183;55.16539;119.7983;96.78041;93.09942;106.4769;106.0358;80.40559;119.6432;168.4311;94.07239;67.85593;163.4442;107.6238;67.55378;
186.4455;152.02;81.97433;135.0406;85.10897;100.5503;92.77751;125.7303;50.57024;145.7944;54.90879;178.5616;146.9399;107.6052;89.79841;64.61163;66.02366;75.27652;89.65281;143.3308;124.5245;61.38117;107.1789;118.5036;69.7038;191.7736;113.5068;92.99897;134.8434;172.7567;54.02911;55.31599;139.2271;124.6544;94.87191;108.4995;159.8906;122.7484;140.5632;107.2339;109.7079;128.6049;65.1967;102.3122;124.8038;168.5683;153.3804;44.88792;144.2835;73.30499;115.0953;167.5118;130.6346;58.02092;110.498;103.2252;101.4803;127.4038;120.3761;138.5464;125.0031;60.86808;127.3123;87.03117;168.6033;95.77011;72.49127;145.6223;164.4911;217.3948;80.14634;67.94746;51.70265;156.0081;117.5695;73.55099;163.1831;82.52416;101.1776;62.59201;127.9766;152.942;74.72238;103.304;114.307;107.1063;116.8123;74.16502;75.06781;171.5878;113.0625;118.2246;155.1918;67.74287;127.6679;60.402;81.22478;138.9227;106.5564;82.37704;92.95618;89.48456;115.1871;78.12216;111.4163;122.8919;81.35931;73.06777;87.30212;193.8884;114.1702;118.6985;81.57935;81.56529;77.23289;105.1815;72.8157;70.52282;111.9399;179.6583;78.74606;97.38969;86.90535;92.76585;62.53403;55.70854;82.85634;128.731;197.3002;149.7415;105.9013;142.6251;88.1019;92.7279;126.5388;131.6837;59.29911;134.5201;59.27933;220.2092;169.2406;101.7737;80.13829;72.24092;69.28268;67.00362;97.06351;141.2117;128.6584;78.61346;115.8169;130.0862;75.89715;174.7829;130.9832;113.8873;129.1525;163.1353;63.88216;69.7785;142.6946;123.3825;119.05;109.5226;161.7675;116.0341;176.5179;108.6134;118.296;119.0766;69.82888;128.3973;144.2719;163.378;137.5855;50.21439;144.6493;65.12386;123.6823;161.6559;133.8606;75.39739;116.4265;112.4579;108.9842;119.546;130.0615;150.6597;114.6506;57.74784;144.6451;98.59499;164.6707;94.31521;93.92181;157.2467;165.7694;199.2675;98.96548;71.03247;60.50271;152.2085;115.7216;88.50047;179.2601;81.92986;90.34697;63.71951;121.6507;140.6018;81.78629;107.3093;116.801;123.0861;113.4629;84.18439;81.53963;162.4438;122.4539;129.4335;143.6312;64.44888;143.6637;97.24613;70.98125;123.1659;104.462;130.8382;55.34637;120.5727;181.7649;107.1991;83.53398;110.4183;88.22932;80.26194;102.4798;198.1817;135.9844;146.0972;68.71651;85.85049;69.26173;85.76336;74.90421;99.6861;95.84826;143.7457;72.81367;84.08401;99.19236;63.3331;81.78372;81.77792;79.6467;138.1187;
97.42091;150.8546;54.35848;63.28767;144.0604;129.766;83.61506;94.19245;110.3584;161.9017;106.5319;99.75047;72.19128;90.13206;121.5157;78.83371;80.82214;128.2697;97.97444;97.38083;97.60436;89.65708;95.52747;128.8082;76.78002;70.37962;119.446;95.37341;78.95991;183.003;68.63838;50.54932;163.6365;144.1699;52.40789;102.8495;119.4166;117.0846;73.87523;124.5836;68.54917;84.31486;145.2545;161.4242;89.6077;144.4503;139.7799;118.8531;73.8844;124.9488;176.1757;153.9977;144.9096;51.72812;109.9978;99.92651;69.46006;107.995;162.7736;207.4376;74.67851;162.0352;137.79;81.17886;99.08556;100.9704;92.21148;139.4484;80.77139;132.0737;119.437;109.0013;66.09294;156.8027;143.7375;201.8741;64.99603;195.7611;92.97344;134.5797;64.69172;166.4133;133.6676;127.5268;174.6084;71.26842;111.93;123.5887;130.0263;87.40342;137.6703;126.7643;114.7272;185.0708;108.2045;129.9203;113.0041;176.2619;142.5681;172.5374;114.1076;124.8535;58.98067;80.63937;54.08468;85.63944;96.48564;83.19317;65.39301;101.2526;72.86492;76.562;68.38598;124.4797;79.3504;74.37157;71.74202;90.7252;104.9317;90.37797;152.2583;90.03652;133.0217;120.449;98.2389;71.74456;94.31705;108.0708;96.64417;174.9344;58.62503;72.78162;141.3441;146.3087;95.43902;88.77282;129.8539;187.5183;99.46095;90.24003;85.40434;90.76369;123.1156;86.34109;89.18817;163.4113;113.8421;121.0546;105.3976;92.22168;116.2136;150.7671;93.47858;85.6601;119.8404;99.13863;94.9579;152.762;69.67648;42.43602;156.0065;167.2009;55.76899;108.2961;116.9299;128.5408;82.50919;118.018;79.72523;103.2149;136.1896;142.4297;104.2938;140.969;138.8204;129.1808;79.21267;159.73;196.9138;177.5936;156.6883;51.02311;129.5369;120.4795;85.2403;122.345;161.4503;208.9231;86.81518;128.7025;144.8966;64.68396;94.64456;107.8144;96.16442;134.0049;73.59869;145.2538;123.4291;108.5572;79.58035;176.8785;133.3778;182.6657;74.39803;185.7593;96.78842;136.7228;70.96085;189.6663;151.1936;137.1656;179.5514;71.16035;124.6772;153.1118;151.3195;100.3618;136.4534;127.9261;129.6609;149.3158;146.1903;149.378;100.2005;172.2023;147.0012;179.1621;145.5336;128.5298;50.39936;107.6801;58.69205;77.87399;61.98285;77.41928;82.99326;101.1878;64.13234;57.91962;94.57973;114.5773;80.71293;70.92157;64.74252;131.5676;136.7781;93.89104;197.85;89.7739;120.8986;74.16968;107.2339;63.98756;112.0372;108.8654;
64.86168;114.5946;119.8606;129.9948;140.8876;81.86854;95.59901;89.90274;129.3806;64.18071;115.3966;129.8162;97.3322;98.83757;64.38346;87.55231;123.5093;143.17;90.0967;92.99831;115.7365;107.625;86.49726;140.0356;73.82122;49.08081;148.5183;106.531;63.75131;95.18278;170.4792;145.2446;75.98489;145.1506;61.30412;60.63805;100.1177;144.3015;85.2078;160.7673;114.1265;124.5926;79.15726;132.3653;144.4379;157.3453;157.3447;101.8979;108.382;128.4059;93.03174;167.6803;139.8871;149.7077;51.33624;148.076;126.291;82.1441;126.5607;62.26027;95.92663;139.572;73.43135;144.8313;97.47376;143.7904;70.14664;122.7358;185.4883;178.2412;87.28265;183.3892;106.6442;106.2348;97.64903;163.592;130.5221;110.7939;129.1203;67.22519;143.8703;147.8275;149.1684;110.9333;133.2786;142.4874;127.4553;143.8735;123.1121;114.963;109.1915;131.4653;161.0536;137.4884;164.2218;151.5335;61.5868;110.6044;48.66071;59.63366;60.13414;75.60101;61.35029;110.7109;58.39669;72.35565;77.23228;108.5647;52.5997;56.86093;74.13052;155.8126;89.25485;89.67445;158.8842;134.7963;133.5625;76.00671;75.10625;87.05417;83.14116;116.6833;114.4354;123.5389;63.5953;86.66344;135.706;163.7972;86.26522;133.2807;131.3539;130.9444;143.1152;98.62521;96.93116;90.92485;136.7621;78.79745;126.334;148.1098;107.0988;119.5196;70.97994;87.88953;131.5434;133.2162;86.96921;96.39154;132.7847;107.9014;102.084;143.4175;77.50378;41.47695;142.2233;118.6339;70.1553;101.2408;168.1327;157.526;93.26189;165.7423;68.2718;59.40707;100.2046;161.3936;85.47773;159.6434;115.945;144.6356;87.86131;148.1766;155.0385;177.8498;166.8338;100.5699;112.5642;119.3496;89.18343;169.7566;159.2891;145.637;63.04169;149.4919;128.8247;73.93726;112.1949;65.18035;102.6081;154.9676;69.07879;160.344;110.2445;158.366;78.17517;122.9029;183.6769;195.571;84.06234;179.4317;109.5975;126.6864;99.93721;173.3144;139.282;135.6537;133.8219;68.26106;141.1373;132.6729;145.0865;114.4771;150.4848;137.1653;141.0389;142.8086;125.6128;105.2108;95.87767;135.6934;169.6777;152.7717;131.7611;167.9839;76.43457;107.9361;39.57486;56.08612;85.0014;83.84807;59.95645;88.86352;69.38247;82.43198;75.7026;100.3795;73.03455;68.52834;84.2429;120.0257;129.6149;92.64498;183.0083;111.9663;142.1982;76.0118;63.48228;82.91412;104.1457;144.204;80.27129;153.1819;94.13123;65.45623;143.4502;124.5125;
95.0478;113.9846;119.596;124.7173;41.68356;133.5088;186.2289;145.9;63.09013;152.097;70.51877;154.0308;56.13718;168.0484;87.3629;79.96164;167.6839;64.27275;139.2272;116.5305;144.4216;104.8848;140.5805;97.39434;140.9589;127.4176;153.92;156.3244;95.68178;126.3235;165.6956;114.3938;172.1345;107.5381;49.58296;80.75814;48.66773;94.56465;93.35962;97.24496;69.44534;117.4576;79.56907;67.82772;92.20529;121.6815;38.88435;45.6816;65.45602;98.59547;84.24873;68.38359;111.0993;81.21454;152.1702;107.044;101.5062;79.73438;82.17776;138.3849;90.91821;167.2451;62.28982;88.09199;168.4569;118.1701;87.94081;99.09296;83.87077;131.8928;137.6889;69.15723;85.91467;60.9753;79.35921;91.78521;76.71998;144.0661;58.91579;69.52072;95.43295;84.69924;121.629;105.7802;87.83619;80.81477;115.369;69.16305;114.6576;118.3352;88.59022;61.79092;139.5308;117.4326;66.79013;72.99337;174.6197;102.8515;65.82873;110.8388;58.99852;88.24251;136.8387;180.5956;108.443;154.3985;135.9845;109.3245;102.8631;161.4836;124.4774;139.2395;148.8562;54.41479;106.6212;107.4586;58.60663;115.6181;179.3167;213.3161;98.23601;123.584;140.2994;89.62671;96.3503;115.4811;100.8389;133.9292;104.074;110.086;99.86916;120.816;50.79453;129.6331;184.3295;142.4982;68.39258;140.6794;75.32113;122.9885;66.25129;199.8692;83.8855;80.36243;172.9772;63.81528;133.1563;124.7211;153.2441;109.8605;137.1063;111.0633;170.2702;103.5973;154.4915;139.4479;103.3648;148.7292;164.6456;99.55853;177.3387;102.1191;39.97385;79.77419;57.3676;90.73282;93.92464;95.82687;71.00603;106.3644;89.2368;49.89934;103.6044;148.4345;37.7847;48.98201;65.78177;97.8105;83.93843;79.91447;118.4284;85.96652;150.9803;126.1921;113.5586;68.89363;94.88627;138.5857;98.36778;187.9035;62.26212;70.90904;181.3076;110.2689;78.14866;103.2501;94.90161;136.7779;143.9272;65.4679;80.10313;60.46435;96.91027;77.69055;87.1065;168.3402;58.1551;69.39599;101.5698;82.05763;125.2869;125.8116;94.08893;93.30429;119.3853;81.92167;127.4457;105.046;101.7677;61.92506;148.7245;134.8408;43.53465;86.09631;156.0609;125.9363;72.0036;144.4133;78.79357;83.82639;133.9398;172.3055;91.33921;170.0468;122.4125;113.7143;96.78313;142.0153;141.726;148.5984;143.3734;78.21723;149.3698;141.9271;67.58906;140.902;193.1833;202.9315;94.2101;171.3657;139.342;108.2089;112.4616;82.96637;98.42825;125.4322;
50.86063;107.1976;64.18571;86.02166;94.81778;90.71781;100.0668;114.3024;77.81155;68.13676;57.04408;151.7434;59.62092;90.65081;90.20023;149.9722;123.2179;112.5554;166.3587;116.2002;135.7607;78.31841;92.30022;75.99435;111.1138;125.6337;99.85654;136.1384;60.47216;59.94069;153.5578;150.1303;110.6345;90.62827;127.5936;161.0693;157.4344;48.24508;84.03127;62.31395;100.9793;74.4987;94.17088;163.8945;68.7067;91.37085;108.9535;78.90077;129.3932;131.7465;81.98232;97.76333;94.72717;95.80392;122.4536;152.6273;114.6746;87.92591;99.66397;139.3712;60.61283;99.46122;163.4991;106.4231;75.34729;146.8616;78.78876;87.04201;134.7746;174.0262;127.1143;157.0161;145.4131;114.3109;67.34723;188.825;158.0484;198.1933;180.1025;90.54081;160.9852;147.145;97.67841;144.383;153.1679;152.1141;71.70892;125.3071;162.5306;74.15176;97.94001;74.53277;94.27715;115.9406;73.88865;140.8976;149.1762;105.5461;74.69456;149.9812;184.7637;124.8837;60.28777;133.063;77.01646;114.8958;71.58072;192.8637;93.14712;102.9747;172.585;50.09804;167.9748;118.5824;116.4875;111.4013;85.75798;153.0959;128.6425;134.1808;168.9958;168.2884;69.90709;160.3601;155.7089;158.9934;163.6211;118.1093;50.19035;126.8505;70.59355;92.44386;79.71388;93.34003;85.34953;123.8482;80.90895;76.00144;46.15519;136.0759;49.78181;78.1726;93.38686;136.1229;153.5791;100.1917;144.4664;107.3108;106.9788;94.81128;72.22389;64.13879;114.2025;116.1598;108.1155;139.888;56.24173;62.5943;155.0381;144.0523;106.2082;108.3237;132.8841;170.761;136.8575;53.57259;64.8014;68.06075;102.3342;82.55347;78.23986;148.7805;58.10726;82.97267;106.2609;69.6057;157.8782;117.0803;65.49252;92.86676;71.03227;117.8444;93.33387;136.5385;114.7687;84.13091;107.007;145.2865;59.4015;103.5719;176.3966;108.5126;65.64371;170.8939;82.56257;94.94915;126.4768;173.3825;115.5915;174.8229;146.102;130.6555;54.56654;170.4435;146.5156;186.6707;188.3925;86.99396;182.5795;133.1398;79.20757;139.3218;133.5643;169.0842;58.62903;117.9455;162.6414;70.66689;105.2194;78.87511;92.76492;120.3755;87.0443;126.6285;136.8972;137.2716;50.79575;181.9579;114.6216;163.2476;51.29955;160.1878;82.87881;112.1911;80.65257;144.6733;78.68307;98.27208;191.9622;85.03828;148.8981;102.781;89.82053;113.0115;91.99205;108.9735;95.87701;117.6205;138.6807;122.3395;71.11808;165.891;121.516;150.8138;128.683;152.2081;
104.871;119.6086;137.9249;138.4375;137.4094;98.31771;119.2953;102.8227;111.658;62.54717;186.6137;123.9038;133.5565;77.33685;84.32408;84.51816;123.6624;87.81016;63.47563;70.81978;156.387;92.96293;84.40218;74.07569;62.01228;83.26608;67.48872;92.48627;92.86127;135.8906;105.3789;98.24422;96.94306;88.11044;113.6992;133.2184;151.4056;77.24072;120.9683;76.69914;210.7902;97.90687;80.02678;68.97145;93.08829;71.0566;65.94804;87.19928;133.3859;102.194;84.32794;84.82583;189.4152;107.736;131.0946;110.3361;133.9141;167.4446;185.5919;84.91695;82.45402;128.2712;98.47498;86.86628;133.2314;179.5672;185.5549;172.5863;181.5819;95.31966;111.7083;104.42;157.2627;98.45937;154.9766;159.0588;70.11806;146.179;81.75381;128.4088;191.7667;137.6432;62.04636;73.10532;92.13583;129.3125;103.1606;123.0641;114.8265;144.9483;70.85019;146.9899;72.50658;119.2406;65.2315;85.71654;114.72;154.8588;217.0309;95.07822;87.20234;83.10258;127.0666;148.8866;85.67138;118.5007;56.69136;69.43526;87.65188;125.9137;142.9183;71.28257;109.2885;88.75767;120.5211;81.80448;135.2709;120.5495;106.6003;101.9869;141.0317;185.2078;90.62315;169.4321;81.24107;64.14072;128.8489;98.36849;97.29491;111.3718;108.2341;133.364;130.3508;91.71741;111.2889;105.5281;97.95763;73.59524;187.4441;122.9775;149.1111;81.33906;92.17112;86.27248;129.3051;82.99604;58.18157;72.89619;158.8568;92.94372;80.26187;73.8784;59.21128;88.61787;77.63261;86.02141;98.01816;139.5079;130.0862;100.0237;91.68655;85.59421;85.19507;124.3526;142.3102;73.59147;109.3101;78.57133;195.3551;117.5296;79.30758;65.9034;104.7445;77.28277;70.42359;89.72019;144.4663;102.4166;77.34525;85.61489;192.7775;110.4757;122.6503;110.9173;130.4374;171.6717;204.4239;83.72292;80.47584;124.9939;113.8322;89.45516;118.2453;186.0339;159.3489;171.3278;171.4244;85.12508;108.2598;96.6289;139.4339;109.6484;157.1586;163.3787;73.72596;147.6779;79.53905;132.5787;193.7735;146.8293;62.77231;79.84488;94.34924;124.9025;103.2438;112.9161;111.6087;148.8877;82.65949;145.4176;70.65231;116.0815;81.28922;92.19607;97.1852;166.7511;129.9783;104.8311;92.96156;74.67181;161.5451;172.4006;52.38898;185.4417;87.9836;88.5893;69.15279;152.8587;176.281;62.99977;107.8561;123.1638;97.10461;120.4488;135.4252;120.2663;141.0042;136.2236;150.4951;164.1276;83.92084;134.3896;90.0267;91.83142;120.6114;63.54941;
89.79533;57.91304;66.99802;63.9646;89.07291;115.836;132.1336;146.6478;98.90724;157.9852;73.03648;81.79149;106.3704;84.27078;128.5242;79.45412;155.2415;70.21977;73.24847;177.2908;137.2978;74.44112;140.0056;107.0444;185.9227;155.615;76.87627;78.66543;83.93724;114.5327;111.2263;105.3311;137.8624;72.42354;97.41275;95.48566;87.97007;159.8218;173.0833;63.89103;96.79262;92.19743;66.47076;113.624;165.2092;73.35957;78.08504;93.51563;129.4299;59.257;84.96316;155.4295;136.5107;97.6803;136.6456;69.50021;68.81618;132.1814;149.6723;93.91938;158.5406;140.2288;118.3843;67.05338;126.6522;161.6661;167.1268;144.8234;53.20907;145.6042;167.8908;73.83121;128.8084;188.6515;131.8714;64.76904;190.1773;137.0179;85.98885;79.40952;93.53032;112.7196;135.904;97.13554;142.2053;97.0125;161.4628;52.45081;177.4165;199.8786;146.8391;62.51463;191.1043;98.62212;166.3931;84.1171;168.7644;106.7273;116.0153;164.3551;72.26276;175.2489;165.8999;104.7684;115.4906;112.1793;85.90279;145.8798;178.4663;129.5094;164.0857;58.67709;153.9235;145.2847;126.1127;125.1381;147.187;74.2878;95.03338;50.41354;60.50834;94.87894;79.90484;64.29671;90.96823;78.98663;57.43454;69.65195;111.4669;54.02553;65.84779;68.12065;96.01875;105.919;128.7398;135.7163;81.97369;134.7381;78.65329;78.02419;96.62443;92.97575;117.2465;81.8047;162.5686;61.59941;64.11322;155.0679;140.1627;73.12112;141.5687;97.99648;175.2811;169.5303;67.89591;71.11186;78.91051;122.3575;95.32963;115.5164;160.7251;70.72211;97.0889;99.87694;91.95166;146.2291;162.3195;54.50504;78.50491;77.65372;73.76036;108.7345;150.2482;79.95683;65.37781;93.4131;135.9327;54.11188;76.82068;134.5071;138.5757;94.8392;132.5564;60.11788;62.37924;144.3453;147.9895;91.45815;137.3804;139.745;103.586;76.64794;143.6466;152.2241;163.7307;152.7262;53.84448;130.7536;165.9111;73.09985;107.7056;161.9812;150.7811;66.12582;158.8337;136.9448;73.99541;80.77341;95.03168;99.97691;122.9743;82.5942;140.3407;92.58934;165.6263;52.22891;166.9842;214.7695;145.1712;60.50962;167.7983;98.21648;119.4494;74.72308;169.2825;118.7018;105.6204;153.9545;44.51763;158.6294;120.9662;119.6517;61.43787;83.91512;142.8685;137.8322;115.0751;185.4079;117.3088;58.43106;125.6899;175.9055;112.8735;137.7559;104.9874;50.65769;101.6748;49.08569;75.73544;97.21725;75.04053;69.49729;83.37273;65.63711;51.1278;92.38963;
79.39378;96.56976;132.5794;86.33269;92.5584;74.93603;205.1216;90.49879;65.00188;108.4512;79.389;65.39528;92.99911;70.31026;121.4917;172.4726;125.8611;117.6613;121.3729;122.9677;62.68823;112.7272;127.4646;96.55301;127.3098;74.51883;155.2457;162.9812;80.67606;56.8073;73.53206;78.24529;46.73966;79.98564;125.3788;125.6581;97.23609;102.4682;145.2174;112.0349;108.3907;121.2298;134.537;119.4281;153.32;61.1115;79.40977;150.0693;91.92563;88.26895;118.7771;151.0822;174.9571;175.4408;143.6942;137.4857;117.4549;58.49884;136.761;173.5051;170.9649;180.6779;72.69852;155.7723;73.41852;157.6087;199.7187;148.4031;108.5473;89.98067;128.8045;123.5463;82.12727;153.3425;151.8503;132.5845;99.4797;122.2018;84.04727;145.5743;82.74101;106.6598;142.5017;202.9829;157.1177;95.69678;66.88758;94.34079;135.0529;129.1415;60.29961;183.229;62.21431;57.73325;56.84322;129.885;116.3154;70.01543;93.95513;100.5335;152.1602;105.2752;102.2857;114.6151;90.71227;108.1383;155.2954;137.9409;60.28711;129.8699;72.91402;72.25244;99.76559;117.5405;114.5111;56.49596;134.7708;124.7027;114.0695;132.9133;117.2199;73.82932;82.05506;109.333;185.334;156.7525;138.027;68.29787;101.618;104.748;133.1967;82.42084;84.28553;68.39347;199.1179;84.0509;69.0218;114.1466;96.01748;61.11491;89.31738;82.12441;101.6449;151.0998;120.1806;137.7221;143.8565;93.01295;70.94614;108.5572;128.688;82.96253;120.7042;77.58349;152.3407;152.789;75.29568;61.98748;62.75994;61.88106;63.82024;87.99952;120.3038;115.6352;86.81688;90.14777;144.8363;103.3336;113.6386;128.5505;150.1534;109.0713;146.1257;68.25063;66.68797;131.8711;88.10504;107.7989;135.4787;116.1948;187.2123;165.2659;149.7386;122.8001;116.7932;64.8512;119.9238;153.0751;158.3932;200.958;66.59105;130.9006;85.53429;158.9518;191.7673;147.4261;92.36349;73.75224;123.6356;116.5381;90.68318;164.8816;158.4351;114.5587;90.14997;141.5313;75.8596;126.2957;70.94271;119.4897;159.3459;172.9542;161.9345;83.22509;67.46619;84.06128;134.3431;138.5048;49.30518;162.2166;54.7258;69.43153;52.36233;123.6716;123.7497;91.18582;106.5531;111.9907;116.8239;99.46071;98.35813;125.192;141.6927;140.8158;127.1214;159.2625;81.33653;167.6477;65.27963;93.35044;105.236;134.9566;123.7015;98.23096;138.8848;157.4414;109.2444;115.9545;136.6136;71.99481;94.46434;98.63153;157.4278;111.8773;150.2317;79.62689;
50.81342;67.4493;86.67808;93.39703;129.8963;83.71317;157.2699;76.14771;136.1862;87.76833;70.73672;84.10598;127.902;114.5759;106.0498;166.9774;100.5722;57.91494;130.0574;123.0412;101.3919;112.9206;112.5543;162.2847;102.7302;54.63463;94.87506;53.37222;103.3772;70.84275;109.9079;150.5485;70.89768;114.385;120.7983;95.41177;163.0427;182.7918;62.96824;64.94875;111.1816;108.9396;100.9065;111.9967;84.91883;70.01003;134.2041;170.4207;90.432;109.8623;165.3916;142.0221;98.81216;147.2643;62.37032;80.96372;111.7254;156.5871;104.6938;171.3791;152.8304;135.9872;93.10628;143.7973;143.8376;166.8743;165.1032;53.09103;162.9353;107.7069;97.29143;119.302;164.8221;172.7363;56.35934;151.0568;194.7008;69.56837;107.6466;100.76;140.8409;119.2605;56.13322;120.5679;129.3501;124.6553;70.12451;162.8671;138.6763;138.3718;74.96195;125.7535;84.68453;116.1435;85.06005;170.1673;89.30974;133.3;187.7003;69.14834;175.1619;171.018;115.855;84.74256;124.1761;153.1769;130.1283;109.858;140.3816;151.6757;91.017;175.1254;199.1763;149.3523;160.6839;154.2349;74.11089;83.32368;45.17586;81.61008;80.22248;74.83551;83.4786;116.7117;103.1531;68.6742;84.2364;132.7225;59.77302;54.46254;65.37366;103.7121;114.7741;66.77007;148.8655;104.5543;139.8286;84.55232;77.56725;95.91919;118.6573;109.691;128.6295;158.2538;103.1036;50.69999;135.669;125.7291;99.11255;87.66567;103.7349;164.199;121.4292;55.05039;101.3306;53.72309;126.5662;62.01651;106.2886;170.1255;77.0393;97.96756;94.09068;100.2945;143.9538;159.5808;54.89038;87.64683;110.5069;106.3423;108.8808;119.7997;76.5826;67.56984;156.1825;159.7061;89.342;99.80927;171.9596;141.572;95.71018;118.9419;53.91328;80.96284;128.077;145.577;117.3214;170.8723;172.953;122.4532;91.24373;167.6335;163.5576;145.3235;146.4325;59.86544;141.5124;96.62395;84.24036;140.4762;165.182;157.322;66.59784;162.5378;174.1223;66.25859;129.1632;96.10412;150.0323;107.4095;68.68359;124.6692;123.6094;105.5713;58.67833;153.4799;156.8289;128.0296;85.70154;125.3194;99.82251;103.6628;84.07475;206.3943;106.3347;77.28992;123.036;63.52335;109.2887;139.558;135.7519;99.58695;124.5265;121.1904;120.8829;126.6972;143.158;105.6964;120.1506;142.9262;154.8311;138.2387;126.3852;135.7457;70.8315;78.46766;44.9512;86.1555;65.56272;83.94352;55.88382;100.8725;101.8863;39.95292;86.88148;122.9461;
106.0396;73.21095;96.75343;129.6207;152.4639;47.21735;175.8371;74.33845;87.76509;92.39132;143.389;98.11901;54.95425;122.8759;115.5518;97.92307;91.67274;94.2625;72.10545;108.6623;115.8689;142.7067;172.2573;65.23211;184.3289;62.36632;61.44594;91.72699;111.1;87.83797;88.88126;112.2517;161.1486;94.05529;84.68681;121.9352;92.17283;60.71538;85.01991;155.7987;161.934;132.9198;106.5247;93.13838;72.69446;112.7106;66.41604;88.97154;73.03536;117.6054;60.94689;93.28806;108.531;74.22257;59.49298;104.3467;114.6131;154.4845;145.6051;119.7458;90.45914;116.4478;65.43873;91.17403;147.0275;148.2502;99.78371;113.0783;89.69358;155.2051;158.679;99.8362;86.45746;99.21868;84.59282;44.63722;66.08747;153.1985;129.3547;50.41333;102.4747;161.4033;67.73825;120.993;127.6536;132.124;153.6289;161.7851;96.2672;54.59378;118.1083;86.70891;96.67762;99.6778;150.1157;154.178;204.6395;138.1743;81.65174;112.5146;86.66902;93.27838;120.4455;133.3598;206.2131;58.87178;178.948;80.80909;115.9508;165.6275;124.8778;98.38743;82.63017;72.3808;99.49492;116.451;157.8082;108.7142;96.23072;111.1094;181.18;110.3225;139.9118;83.21205;79.36224;144.6272;132.7488;185.6988;111.1567;88.42476;83.95876;127.2666;135.1674;61.65255;153.6062;84.2686;94.41254;79.68422;140.6124;108.8335;61.70779;133.3636;98.05443;99.15923;98.65133;103.5129;80.54722;111.9167;118.9647;122.5754;157.2301;65.81829;186.2427;49.27475;72.30421;114.9229;107.6902;95.97024;86.02802;98.66116;160.7216;110.7728;71.80479;112.9497;78.82796;73.70438;67.52377;169.6508;164.6835;117.7473;103.4465;97.90705;80.45766;118.8313;51.68693;91.11422;76.64188;127.9751;68.52808;92.08428;113.4974;57.10812;49.20529;106.1285;110.2243;140.5246;164.3379;138.1183;89.79606;132.472;65.97732;85.19874;143.2522;152.0012;82.87721;109.8658;73.97354;177.8807;140.1861;107.8926;86.07829;91.83587;83.67696;46.36653;75.71162;167.861;112.3379;57.10828;103.8684;156.2221;73.01587;125.4327;129.6492;110.7166;142.6297;160.2397;92.24842;46.43163;135.036;102.4406;95.99207;114.542;172.0114;125.9202;190.5779;135.5531;100.4473;146.5345;57.8629;110.6461;117.2469;121.3904;204.4743;57.85758;129.1717;91.79176;114.9401;171.995;124.2458;103.5486;67.08841;109.9636;128.9997;120.917;113.8726;94.92692;130.8838;79.94631;178.8683;95.21577;164.6641;100.5287;90.18991;127.4659;143.7156;133.0906;
80.02556;131.6092;88.90066;90.21894;75.45496;101.2804;69.91792;53.15847;67.33673;129.6389;127.3244;120.6685;163.4419;122.9751;146.7992;79.24402;70.17591;97.88127;80.9591;145.5778;90.23623;163.56;69.14061;78.16492;135.6123;107.9115;89.77702;115.8482;88.39311;186.8124;124.1752;82.25129;63.92524;60.49202;95.73492;96.10082;97.69476;132.4072;87.07688;61.2408;72.54082;96.02063;96.28253;161.798;62.96015;89.48324;121.2519;70.36963;106.8696;176.0734;95.3693;84.95174;169.7624;125.2345;74.02892;108.12;166.7895;136.6278;59.27695;116.3296;86.76472;96.97167;140.2254;174.1995;116.4654;181.94;146.3909;137.1401;81.49904;140.1129;181.2127;143.3052;162.7911;86.80105;162.5987;162.3208;103.8968;167.4772;183.1957;161.4226;61.05726;158.3548;120.5202;89.66102;87.82701;99.30644;109.5501;143.2572;74.53147;116.9685;115.9218;146.5735;54.94084;179.6209;172.3855;178.9164;53.75603;133.0827;67.27174;137.6186;70.52685;154.9155;117.4269;68.60033;134.284;80.46864;107.0867;167.2216;122.9488;107.4866;145.7389;109.5692;143.6071;160.4966;146.3187;151.4192;100.1794;141.161;159.5091;129.796;188.5115;148.4322;53.30075;96.72563;69.36739;86.98674;85.78552;104.1996;93.44794;125.6536;93.74663;94.92045;77.60832;117.2078;67.66788;56.15159;78.16552;122.6723;134.7039;124.668;159.7858;104.7412;127.252;89.5816;72.89079;87.95737;82.63251;129.9667;73.15156;170.2285;59.7013;59.10329;170.3721;117.4247;108.3036;142.159;94.59863;175.2504;126.6105;97.98386;70.93897;56.2725;99.16349;98.53416;98.36697;145.8755;83.58669;62.88419;79.51509;90.01633;102.2849;163.6343;59.92324;70.66019;102.9749;78.63274;106.9461;163.0947;96.48814;71.52471;146.6845;126.9704;63.79634;83.92125;198.7611;138.5475;71.55677;135.0679;83.81103;86.9698;136.3914;184.8521;125.4818;179.5486;160.0696;152.0568;85.72696;153.7219;175.7717;150.2859;171.3984;74.3438;166.8268;158.3424;90.53384;139.1405;153.7461;162.6187;60.84569;150.6197;130.2856;84.7572;74.8383;100.6617;96.73043;119.1498;96.36716;118.7411;132.8631;167.5214;52.59566;165.9102;135.9982;185.3547;66.2467;139.6485;99.6978;129.3759;81.23903;210.7426;89.93861;72.25497;180.9143;40.72067;156.549;121.8841;118.8535;96.43125;78.02038;144.068;108.6459;108.2138;127.1073;148.3415;88.59206;162.3602;119.2434;97.90444;172.6856;119.5161;48.47078;96.29832;53.62356;73.94534;64.60428;68.33916;
70.87763;63.64688;112.9512;124.9493;57.06061;73.13415;146.8792;108.9975;69.31544;124.6142;93.30523;93.62512;120.4719;160.9127;73.18123;150.1754;157.2733;84.28203;73.93235;166.6697;184.3734;170.7865;166.2486;95.86407;172.1881;94.07247;106.3288;140.2667;212.0282;225.1663;55.75346;126.8571;162.3434;112.0668;114.5598;94.4834;139.58;122.4942;103.5295;138.3008;141.7594;156.3565;70.23776;163.1412;213.2328;145.7699;49.48784;186.583;105.3874;97.13618;90.61604;152.8598;116.0723;96.89776;160.8708;86.58109;170.0588;135.9524;101.978;82.93908;108.2874;126.2416;108.9658;114.1757;129.786;148.9604;68.18393;137.2341;155.5369;122.7024;137.4737;118.4883;53.78334;82.34628;67.14874;85.80717;70.8711;78.75845;49.46942;95.32728;102.0193;42.09312;59.29557;122.1125;73.87643;68.84451;73.81846;147.4407;142.3323;58.1665;158.6292;94.46957;175.885;121.3518;70.07376;66.70466;115.6347;163.6364;111.653;158.3435;92.59256;64.26546;180.7466;142.1589;111.2885;119.7177;110.6154;157.9444;160.2539;59.8619;62.26654;87.01234;134.532;69.38743;99.44852;106.1681;83.47543;80.52005;87.25469;96.04375;150.9645;162.6907;52.06765;60.60151;95.09508;79.84726;69.82459;102.9621;85.38769;70.75282;95.23989;138.9512;51.54702;61.54248;127.2141;115.045;63.86655;111.799;80.81741;73.40643;116.8518;147.1163;72.70997;135.9149;164.631;99.19135;59.79276;135.7226;184.4247;171.1154;157.9931;82.46373;160.9055;105.7279;90.94693;115.3276;203.9084;187.8716;54.62047;114.6002;177.0897;119.667;101.1636;109.2252;129.2164;106.7223;88.99014;146.7813;128.5597;140.7104;63.30317;139.5589;206.3697;132.1536;50.49913;176.3771;107.6021;112.8631;79.15005;129.9763;115.6928;97.53617;155.2112;77.65745;158.7252;161.2939;101.0213;75.01156;108.6483;108.3316;102.646;104.6341;136.0944;156.0296;58.8027;155.9364;142.1157;105.8217;120.4869;122.8847;48.21474;79.22008;68.1327;75.08419;71.91825;76.88378;47.25175;89.99273;98.31219;51.68205;50.89301;102.6056;71.81467;68.50128;69.88763;132.132;131.9802;75.11996;157.4353;85.99553;176.3448;103.8054;68.32351;67.87475;86.14842;160.0406;64.62392;179.1601;59.74184;49.44518;180.4126;146.2284;83.21741;122.6334;80.56557;124.4631;112.4848;78.13209;59.71688;86.84001;92.81683;75.3575;85.27882;118.1329;86.32384;107.662;86.32095;84.57139;108.4642;134.9986;47.08804;79.17965;109.3833;72.23473;83.01393;133.1231;
89.63055;129.2777;169.3734;93.09663;77.3202;166.0332;106.6904;103.0551;91.27003;129.8822;160.3962;178.7527;113.7396;117.2557;123.4978;76.79321;107.0758;110.9265;168.6939;194.1597;66.03788;130.8334;58.84665;105.2353;166.0936;117.8375;79.13009;70.8125;114.7677;102.9121;124.3778;101.5688;92.43328;112.9552;73.75707;149.5535;71.09942;166.1266;97.57668;88.38313;120.7209;133.6045;140.337;86.9053;65.51004;67.61583;161.8407;158.5115;53.97721;135.19;92.27039;79.99256;45.93375;140.7164;120.1923;72.78463;119.1822;103.5535;110.951;93.88159;130.8416;107.4882;155.1362;121.8769;102.7301;152.6525;71.13473;185.2717;90.16576;92.6912;129.9663;121.2925;77.24483;68.59263;122.4001;141.7524;78.7738;118.28;131.8474;78.83584;69.68268;81.01218;197.6042;151.0694;148.3896;70.59104;82.14436;66.00264;115.9706;61.33912;81.19601;64.02625;173.609;71.47009;93.5377;59.07412;45.23444;64.65089;66.02766;86.14429;106.7921;198.985;158.0979;105.1895;111.1833;70.7753;59.94013;116.2955;113.8699;62.84745;139.6813;83.16873;149.1631;139.8845;107.2625;78.1287;74.14869;102.8873;64.57945;98.78737;160.8483;141.7564;56.79732;101.8986;173.5993;94.40526;175.1097;151.4395;109.5681;139.6291;188.8757;73.83217;88.64024;157.6758;99.65485;101.8513;105.8648;140.3682;187.3265;201.0839;114.5658;114.447;122.3864;70.19791;98.36974;130.7395;159.1089;201.5107;87.89031;147.0584;76.64364;114.264;181.1733;146.0737;73.35217;75.35747;95.04262;92.82587;123.7939;116.7586;109.1805;122.1754;83.87721;125.6501;81.25672;163.7711;84.2659;85.75242;134.9354;144.0268;163.0349;103.6641;66.13247;69.25694;153.1518;149.938;46.44184;155.526;83.69135;87.88904;64.4796;162.0847;138.0768;81.03481;127.4086;126.6261;94.80902;100.0377;118.0413;100.1374;158.1658;144.447;122.7618;156.2427;84.67778;158.03;92.27526;88.73502;111.6808;113.8524;86.83199;74.44656;134.6339;159.8273;86.56282;123.7441;127.3176;77.17993;62.80568;91.46512;190.3677;161.3272;168.0195;83.80852;94.41652;70.43552;124.0862;79.36031;67.47802;69.12714;158.8145;65.50011;102.5924;75.54903;87.62057;79.9043;88.94598;92.62916;135.4627;143.0184;157.5889;131.087;128.5744;81.46175;88.00169;138.0923;154.2045;89.9024;162.7284;71.50709;200.2995;177.9279;124.2105;88.38913;108.6268;99.62802;84.68045;91.21094;109.458;175.6721;83.43166;89.93336;109.9602;96.58249;158.884;131.5935;
106.3775;149.8386;59.47978;114.7133;128.4285;138.4967;57.11723;127.1428;107.2858;110.7461;128.9351;111.7738;154.0491;59.47677;123.4021;176.4491;137.2044;147.9563;111.4681;78.23938;125.768;65.45833;70.78315;108.2266;81.31607;75.93864;95.78806;73.25327;76.94874;86.75799;99.88799;98.8924;67.77443;55.87731;93.79019;118.1064;117.7465;161.9698;93.79056;164.7808;102.9724;93.46909;68.41406;126.6788;145.3176;60.99886;114.4745;60.79937;56.54115;135.7156;108.4266;68.21963;92.36115;106.1692;191.9964;149.0958;67.93638;65.52233;73.58694;93.23901;126.6262;101.5959;141.3647;104.9029;84.60995;78.95644;75.56172;107.181;136.7873;75.24128;44.72597;111.9677;69.35058;71.72036;139.1615;75.56808;72.50605;92.40797;111.041;72.50517;78.72866;155.8885;100.2259;95.45528;175.4358;72.13902;71.60779;160.3148;137.5751;99.40971;149.8802;145.9414;127.3611;97.11937;131.6941;224.8826;160.7994;135.201;50.44464;143.1929;162.9382;92.10406;126.2106;197.7714;172.1618;79.99348;132.5826;193.2134;98.18783;61.76385;62.15063;93.90599;111.4224;74.44129;109.06;79.46533;115.967;72.98706;173.207;212.2431;146.3589;68.66785;148.91;64.29115;178.8864;70.86678;173.1024;116.9594;96.10297;136.0734;61.7085;107.8274;135.6174;136.2802;61.29088;116.3481;104.4871;103.3865;133.6492;124.6469;181.5201;65.08513;136.6555;167.6736;129.6383;148.2962;114.9594;70.68308;128.6561;75.67581;66.79003;123.1723;68.09148;84.90883;96.09261;74.54408;73.44764;77.40871;104.9128;84.55703;61.27706;51.08808;94.77827;107.4991;123.0701;162.8347;95.75179;151.8101;102.8065;91.93912;70.66669;136.943;170.247;68.93098;123.9632;56.27943;54.92427;142.4481;110.8376;59.93542;95.29199;121.9819;181.4084;167.5646;66.0376;78.83773;67.38956;86.02381;122.0034;90.82532;146.0683;88.45553;81.69227;70.51023;79.47464;100.1951;133.8349;78.67409;47.28638;99.18613;76.56332;70.59669;134.4662;76.80098;90.30202;101.4482;119.2482;66.11977;81.16554;159.0072;106.0442;88.52597;169.7031;88.28293;66.62942;176.5991;134.8672;115.6723;140.9772;136.878;122.7248;86.59544;150.0263;132.3736;195.4112;146.5227;75.44644;135.9141;147.9806;99.74935;135.2477;181.5095;181.684;60.25493;165.4711;142.5594;115.9172;99.77414;71.18178;96.53465;111.48;74.45241;139.8854;119.3518;151.0156;59.95809;153.2795;206.2243;174.9787;82.02466;187.2348;76.73479;169.7354;74.46497;153.659;94.7559;
183.4721;100.9364;173.8167;122.1795;100.1283;139.2061;188.5843;62.83986;75.38962;135.8088;118.8477;66.23289;96.02265;154.1133;148.5876;194.4869;123.8853;93.82208;111.9923;84.7011;116.4836;103.8072;118.1866;196.2659;46.9679;131.0614;46.13834;106.0854;163.6529;134.9705;77.68675;75.19651;129.9178;137.5959;106.3611;138.5772;109.545;109.0215;101.4214;139.7324;70.61837;134.3867;97.84141;80.4166;110.1995;169.9238;158.0876;67.99087;104.9205;65.21245;164.0429;182.8499;57.15537;127.4245;72.64351;108.4534;86.88169;134.9475;129.6246;54.58139;117.0005;137.8876;142.9018;106.383;138.7746;101.9749;155.5774;114.9261;116.9836;165.0599;92.35017;144.855;81.07941;71.62183;127.0139;75.16527;85.6633;86.09701;107.9009;157.2084;102.2068;96.6737;110.5241;94.84323;79.2874;76.80205;157.881;155.2604;112.8056;67.82304;55.72943;65.82755;113.0031;70.53181;76.92871;69.80571;214.0986;99.30004;85.04214;96.68207;59.1589;65.51279;105.9482;78.69474;100.1522;163.3974;154.1611;96.6901;103.5892;92.09908;70.2233;101.1523;188.0355;70.0962;169.807;104.9027;151.9355;121.1143;95.54755;101.9825;110.5182;80.26453;61.61968;62.96568;147.4094;148.0905;86.12997;104.1633;173.6819;78.96204;175.9276;114.1931;81.97363;172.2587;192.3776;64.22546;81.93807;122.8611;100.8489;73.35328;110.0362;169.8615;177.6259;210.7748;130.2341;97.62293;130.7907;79.98962;105.6673;112.9514;125.438;205.744;56.79438;126.4582;45.33298;100.4223;166.3957;127.426;73.93831;70.82302;118.5118;115.1065;109.1421;129.2985;87.66069;136.6324;98.82707;138.237;75.44616;125.3242;83.63106;87.84725;122.6849;184.1094;181.4185;75.37181;110.5937;71.55622;189.3461;175.7106;49.18554;135.9456;74.12444;112.6186;98.18938;134.4652;132.0835;50.26128;113.6902;133.25;134.3139;101.1297;118.8764;84.61865;158.8739;107.454;94.69135;188.024;84.67136;145.0997;84.64643;64.92706;112.188;82.1237;91.64852;98.84923;123.9641;168.2825;100.3531;106.4587;131.3988;90.60576;70.16026;76.59705;153.09;162.1046;125.6411;67.47815;57.34497;61.07446;109.7502;67.22629;91.28504;86.36799;144.7875;75.19991;78.13485;85.5654;42.97982;104.9822;86.9622;104.6574;133.3255;187.2698;113.8739;137.9669;144.0393;101.1636;61.19107;135.0651;188.6318;81.4179;159.8161;90.5283;155.2144;172.5192;107.4428;100.7867;114.9445;82.97575;64.86282;86.52354;156.0965;113.8817;94.43156;100.2029;
84.49926;207.7592;154.6242;131.5424;106.0493;80.31982;61.43659;125.1868;134.1767;90.72066;156.9707;100.3871;199.9129;103.4816;83.02451;66.80177;103.2446;75.40386;75.76917;85.24867;130.4736;96.18221;66.31871;145.0952;143.5531;94.01773;146.714;148.3879;92.83054;112.6842;145.807;76.13342;81.96552;143.5247;130.8006;53.68391;94.98352;139.1846;177.9055;167.256;145.3422;95.11078;155.272;99.8485;90.59785;96.28728;134.6355;158.7005;60.94215;129.0912;88.13761;111.7321;185.6392;141.9506;85.23793;102.5334;84.05699;146.5319;121.1765;126.1535;90.89581;132.3033;98.47404;150.7572;63.65835;186.1084;100.4209;121.0256;127.8278;155.157;133.5467;92.39907;72.70836;84.69315;181.3428;182.2531;72.26784;123.5978;63.32225;70.80326;94.23033;138.6429;159.7065;71.44601;109.0524;86.30312;95.81625;135.6637;95.1646;92.96561;144.2238;148.3316;99.54633;131.6714;57.5805;160.182;85.95506;88.54533;150.0015;62.87511;83.2843;74.947;117.8568;127.3793;112.5227;93.32951;161.9506;116.4238;53.62452;63.50803;166.6171;120.3792;125.6004;79.86713;111.4424;68.72993;137.4265;94.75063;66.57796;76.52721;153.9245;110.9846;92.39075;85.28188;48.74023;89.90095;99.0939;86.65186;83.86967;202.3985;136.5591;157.8714;95.33828;88.51276;52.67633;139.7876;126.8744;78.84644;170.2078;102.0589;189.8991;120.6904;93.99786;63.04561;95.42696;85.57624;84.93602;84.88125;141.9032;118.4295;52.34774;119.194;152.3747;85.76501;151.7433;156.9895;90.68208;130.0797;154.5581;73.88565;81.01373;139.7769;108.8237;66.89713;82.96513;144.0522;167.7771;182.0625;137.82;83.99554;162.4171;97.22057;82.05533;108.0106;153.3188;154.7133;55.78619;144.6771;93.38608;109.8932;197.8189;163.7884;72.58106;82.29721;90.32723;147.5709;116.3653;126.9529;93.94597;145.5481;101.8211;148.9912;59.76831;168.7534;79.26894;140.8434;106.3507;161.0313;134.9264;107.4483;66.08416;80.90179;183.8539;172.2029;69.08952;131.5548;73.04473;69.10358;84.1769;142.7267;163.8458;70.21907;110.8106;104.0954;90.63758;116.3455;101.8289;93.79724;138.9706;149.1984;102.7372;144.8853;81.94758;136.6455;52.02347;108.0285;81.33971;99.92621;80.63399;126.1944;80.14695;169.4636;116.8364;100.7365;121.5887;88.13209;76.07797;75.3905;193.9064;141.248;140.798;86.41207;87.69494;78.61681;96.51206;64.49813;88.82718;87.00291;188.089;72.80563;80.74197;96.57689;55.87439;76.35719;101.8446;90.80712;
99.49581;164.0833;64.49819;83.04926;98.82555;146.8224;112.4129;150.869;152.3016;143.8343;66.49883;188.5172;154.1541;167.5282;163.9886;83.15897;114.1179;149.6972;77.02596;135.7171;156.3453;170.8038;79.19059;159.2131;174.3456;85.21891;90.06367;60.28677;138.0055;130.1663;80.06728;111.915;131.0704;121.4195;45.10619;125.5331;135.6704;129.0165;69.95836;129.5525;72.45547;167.785;71.9843;150.8739;115.5441;95.49191;126.6292;79.23528;107.8395;132.453;128.5447;96.60757;103.4618;109.4699;137.0779;140.7152;113.2681;163.2693;78.2715;166.7525;219.4112;121.8048;116.4241;141.649;91.31999;120.4091;55.13515;80.62876;60.82592;82.08514;94.2843;105.8605;88.1087;82.09963;64.68494;166.1012;58.88385;63.63653;77.02311;145.581;99.59352;115.1682;140.8663;99.44797;131.1487;97.5464;103.8666;94.82846;121.75;122.77;97.84512;128.7372;97.66728;64.73114;149.429;120.7909;112.6126;102.8534;86.8603;122.7124;101.3452;60.35152;90.5373;52.76252;90.66221;110.3661;100.3474;134.6207;88.7108;80.13663;66.46956;108.8968;110.792;113.4912;63.60653;84.15083;86.23051;68.03852;115.3959;167.4009;64.98957;71.5491;104.8639;168.8909;95.14542;73.39489;110.1953;129.306;116.6088;169.0675;89.07328;97.16537;107.4437;147.3118;114.4584;171.8554;159.717;135.7446;69.84981;209.9255;148.7329;140.4732;172.415;92.63372;130.4128;127.729;66.58983;142.6947;153.0402;152.7028;94.00585;188.892;167.574;73.24309;85.73971;80.7618;134.5904;125.9876;66.56784;119.1993;144.6409;126.5163;64.91378;136.3185;143.651;131.5506;68.45023;144.3025;74.33669;160.2531;75.34164;163.3609;109.8568;76.815;131.0352;87.08519;119.6599;111.8137;115.1546;99.70482;99.90602;95.74823;153.1155;166.7511;107.881;153.2288;68.20308;185.2632;208.5419;121.4526;102.0559;142.2073;96.74428;125.0929;76.95609;97.4988;65.81304;78.32724;84.36395;121.8374;93.74253;81.75695;61.94983;169.0313;51.55853;50.95601;82.297;148.3716;104.7683;95.63882;126.9753;111.3463;126.5948;78.81976;108.6405;118.9739;116.1615;114.0805;86.54619;145.0608;90.46136;64.47447;149.6965;149.2574;123.3808;108.3154;149.3392;195.1397;137.9318;54.84789;100.1453;95.75365;107.573;93.98391;105.4489;146.689;102.3121;100.7602;106.7292;118.9555;155.5395;149.1548;81.07706;83.95438;79.89991;94.09755;119.7261;148.5163;59.50464;71.66193;113.9499;135.4817;61.82641;77.20689;132.7316;117.1241;
117.3335;96.30638;119.8714;67.81638;150.2674;51.52817;164.9408;79.40987;75.40746;137.1349;153.6458;189.8651;64.70235;102.9426;91.50734;156.0972;130.0671;85.32217;135.2626;74.34727;76.42912;66.61935;116.313;133.1176;52.26065;119.3601;97.06085;114.8871;64.12106;99.29288;109.7945;128.3774;145.0013;111.0392;157.5375;77.94546;125.3041;78.97314;102.7158;104.6398;69.56678;82.32202;67.50043;102.9237;103.5206;76.14964;85.52435;124.8618;101.3786;96.93056;75.80241;156.9968;134.5004;104.5859;107.6481;72.74234;86.84714;118.973;62.75558;94.36703;67.2086;140.8479;67.13883;94.84116;81.33623;57.19922;68.64037;81.77485;94.81173;76.17552;209.7526;128.7262;91.62236;129.926;83.10992;92.55941;92.75607;185.9345;88.70284;147.7919;72.40155;237.0455;124.729;109.874;70.87151;81.73755;76.03442;58.14308;66.96226;162.3851;112.4024;74.85511;70.60045;153.6611;100.6336;151.3034;153.6577;111.982;143.1851;199.5768;55.75198;75.8236;180.9809;84.81637;56.92293;104.9112;129.4303;147.0054;141.1888;108.1173;72.9775;129.487;85.04291;137.065;91.37651;163.6269;156.9708;45.8767;189.0693;65.32236;125.3306;171.2366;122.4024;91.79772;69.65956;88.10815;108.1353;116.7821;109.2029;112.8083;125.0172;80.19246;160.0999;67.69488;169.0446;60.93308;83.47623;142.526;151.1084;197.0054;70.45757;124.0306;92.09037;163.4999;126.7922;84.34361;111.1213;104.3397;63.06944;72.79963;127.4114;143.4034;47.13611;118.5787;99.65421;109.4742;64.32143;110.242;116.8474;134.865;129.8911;128.2477;162.0098;85.33838;134.2742;95.03902;103.157;82.98039;73.14911;86.65014;65.2763;102.3939;110.7973;90.9791;84.00424;132.6555;95.549;95.94144;57.84552;193.337;118.5817;108.4363;115.8894;81.30639;80.0647;113.9459;63.72187;86.84923;64.44369;148.512;76.76605;93.11517;71.40505;60.24211;71.18282;80.17956;96.76514;92.78983;201.5644;110.3037;98.51714;130.7428;79.60158;93.56062;96.03285;202.5299;91.62607;147.1039;68.74553;217.7793;100.852;129.0261;55.00694;85.93684;77.48159;70.39303;61.02342;156.5077;113.6942;68.17654;67.76591;161.6618;84.4028;159.3398;117.6374;99.91571;125.1245;154.3717;55.90691;49.98013;171.1781;97.34081;96.96054;125.3698;160.2938;191.4774;183.1044;151.7384;100.5136;117.9742;87.59173;101.2633;111.9212;176.7517;132.6738;51.75503;137.6221;58.08638;134.1878;183.2183;149.8468;83.1616;75.19247;112.9998;133.8421;121.0844;
130.5174;155.664;62.57837;158.4562;187.7519;103.9941;117.1985;77.90971;118.6827;158.9078;81.41982;160.8845;118.4011;117.0005;43.44018;149.0444;143.9017;122.8915;50.33473;116.955;56.50697;132.598;86.54453;184.1889;89.72858;101.4157;133.374;44.47004;148.0899;138.3109;120.4138;89.81002;95.63595;115.1821;126.3013;127.2311;137.503;153.6649;74.78847;135.104;155.0119;129.7993;154.4578;108.079;67.68667;95.6554;44.70487;97.3929;78.89574;86.6637;53.50032;124.2335;84.31378;84.92622;54.62617;159.077;43.51933;92.32136;64.50715;113.2898;94.58708;100.6655;118.1996;120.72;119.4201;89.06316;78.16956;94.71625;136.4927;161.4269;123.918;144.5736;81.23849;89.11196;162.851;173.5026;95.54053;94.69769;87.78894;154.4435;118.9617;56.04982;60.40763;46.70935;76.79172;90.4734;114.1768;159.3663;64.67983;85.66116;78.13692;64.89426;139.2029;133.781;71.3197;70.94611;88.29471;90.86824;90.43093;127.5602;88.5478;72.47949;117.6801;121.1906;60.35797;79.67719;174.9973;108.0748;88.38669;126.5305;56.36761;86.82561;137.695;151.5784;93.33553;177.2861;157.157;141.2172;73.73146;205.1661;160.8685;216.7635;153.381;61.95742;130.6558;117.0453;74.61715;157.6713;145.5932;160.8845;57.49706;161.681;171.7235;93.78667;101.4725;91.86891;114.0113;142.5117;88.82687;172.3889;121.3665;94.50381;41.20781;135.1316;158.7672;115.0595;61.82634;118.0394;61.35067;135.7737;99.56015;194.3197;111.107;108.811;147.1198;44.98115;163.0424;111.5706;144.1134;90.474;102.562;119.3851;117.3021;127.3799;121.864;136.6923;61.50284;150.8833;143.9671;114.9989;164.0565;115.2014;69.10056;72.02053;42.07159;84.65887;87.04704;80.40341;64.75852;123.2455;90.74974;84.12209;64.60432;166.3278;57.23836;101.4042;67.4947;105.9739;105.4542;83.98266;137.7265;124.3483;120.1752;88.32668;71.68853;96.54646;119.3565;142.6406;102.7712;158.2915;74.28246;78.40834;163.3378;174.6611;96.11656;76.84779;81.03587;141.3411;121.9059;47.76119;72.90504;47.29311;81.65102;88.55684;124.1778;163.9875;81.19845;94.41441;81.42074;59.38696;152.3232;114.4335;73.47473;56.44106;95.5914;89.77467;112.3617;154.6446;75.36676;59.41636;139.6163;162.6748;50.42496;90.8846;131.8527;152.9482;89.90412;143.5548;75.51152;64.71442;163.2736;123.2514;94.9944;139.6397;144.3693;103.2127;65.64824;192.2105;176.3952;218.2668;143.4109;51.47276;130.8329;93.06131;83.13669;97.22004;
85.25408;142.9718;104.1848;111.9931;108.0278;86.40205;131.3931;144.2082;63.45163;65.32603;92.95872;68.70586;96.15487;110.1892;83.34325;52.02862;132.8448;133.2694;64.28809;90.21236;164.4815;100.3996;80.29845;162.3036;93.53832;69.12744;100.4716;158.9089;131.1506;121.1146;119.9979;145.8221;64.81062;150.2148;193.8857;154.2551;178.0565;51.32605;142.6784;152.6471;77.55668;165.2382;187.0081;183.1533;98.76976;180.6166;118.0885;85.62011;128.9043;119.5918;139.9448;115.2761;77.21005;141.1022;118.0661;163.5983;96.60098;176.1465;175.5721;170.2482;109.0971;137.036;60.11081;162.1443;65.01186;178.0548;128.3868;119.8336;184.6237;62.63193;136.6077;145.8273;129.4332;73.93694;95.24199;86.11321;137.2233;112.3004;132.4417;124.4348;89.72729;154.1462;149.7121;130.9236;154.3031;99.30339;56.16356;115.6289;88.91447;61.35152;50.20575;72.68418;96.68967;80.59476;61.05507;92.39166;52.14728;117.5208;76.85081;56.08731;86.09155;85.2027;109.7107;117.9401;151.1626;118.2505;146.6393;93.13895;113.8323;117.0725;74.54277;139.4249;123.5839;174.771;67.91041;51.19154;148.6473;149.6901;84.40855;147.6633;143.8409;165.4506;139.4401;69.62801;110.2883;59.66491;66.51972;93.80009;96.77146;142.7187;76.95702;98.31953;105.5532;93.07224;123.274;127.5738;60.10132;58.27049;92.60267;59.11879;97.1919;123.3738;76.45568;54.19769;131.1435;116.5797;40.08636;79.19595;169.2207;105.2724;71.76417;165.927;97.75761;51.49549;90.93803;123.8328;117.5602;125.9306;103.7915;134.5431;70.53504;147.9894;161.6167;140.9914;172.9473;56.04427;136.5088;137.1406;69.88205;152.5968;193.2587;171.151;98.41202;196.7824;111.9491;92.53384;123.1405;103.5866;107.8777;108.8888;80.11798;147.3484;109.7331;172.9092;89.29333;159.119;179.9812;150.6198;96.69135;137.8814;49.35992;144.2351;75.6918;172.8579;106.1083;113.688;179.0385;74.7515;135.9675;127.2128;110.6218;73.76846;108.0645;85.27328;136.7507;121.1132;126.8139;127.1029;90.34155;133.4594;120.4245;130.0072;158.0439;113.103;53.83824;120.107;81.90932;51.48246;52.57614;60.0673;85.03256;81.24342;66.60966;69.65191;88.96998;140.1058;48.14143;70.2942;77.66412;88.88776;123.1315;75.67281;133.9937;111.6749;131.7517;82.3159;109.9818;88.67528;68.79043;153.4469;83.35957;156.0164;38.91117;55.94651;187.8267;106.9167;88.89427;118.004;93.5862;132.1158;138.8925;73.48676;83.12286;43.93967;67.90513;97.68918;
108.7075;119.204;52.88764;75.31129;106.3454;97.30677;85.122;151.0851;64.29604;44.95348;106.8207;165.1897;70.43459;85.82919;150.7905;151.6698;85.94164;125.4469;54.305;96.03351;133.2388;135.0841;112.5944;179.3048;114.8448;159.4334;98.8204;142.4151;167.2151;152.2703;195.4745;62.72882;102.391;110.9077;78.38108;170.7943;174.4298;127.7855;108.1472;162.4733;190.0119;80.57578;90.92338;76.19109;137.3024;110.0789;118.9143;166.5065;118.4423;179.2281;51.56654;168.8835;192.6874;155.8687;102.0533;182.7782;83.89635;147.7314;61.79797;136.4041;132.8446;88.20181;136.9747;61.54999;129.6308;118.0772;103.4455;88.20075;113.2073;134.5036;115.7061;142.4713;110.5392;109.8919;70.56985;182.0204;163.7018;130.5604;135.8066;151.947;72.99413;86.84688;46.28194;92.11287;76.93862;71.49972;75.22378;118.5096;61.12034;92.06821;90.25267;107.8621;60.54819;56.44243;86.38917;100.4455;86.41002;78.44815;142.7196;131.9062;133.1468;70.02792;108.0306;91.06423;134.0069;119.2411;91.41428;134.7303;88.28329;54.57295;190.0368;145.6606;96.78749;148.6568;79.24517;153.1225;117.2197;99.33099;91.35007;73.94136;95.70404;91.40252;65.33363;116.5788;108.6061;71.33509;70.97591;78.65553;133.2263;131.5622;57.55293;70.9679;95.13667;121.0402;79.21903;152.1734;70.05896;52.88258;110.2963;161.3808;67.36506;82.82619;155.0222;127.4707;88.03963;121.2545;42.73997;75.48978;101.7042;163.4416;91.9918;152.8092;105.2667;146.3493;81.75385;144.3093;174.0913;148.0388;178.0253;54.09147;122.5341;122.3712;81.15652;165.1532;158.9917;160.7465;94.51259;161.5234;196.8257;90.91537;92.20457;74.44936;132.9961;111.4714;116.2041;142.0421;118.6594;172.68;39.26656;145.3006;154.4299;191.184;77.19784;157.0061;73.30397;140.46;47.86293;140.3433;143.7067;85.62547;132.2543;58.23653;143.2948;131.4056;106.1824;84.86465;110.8287;158.1065;113.9093;149.6779;114.9201;128.2713;72.36487;177.1495;164.049;132.8709;143.1326;136.7133;67.04321;83.50938;34.41806;75.59267;60.88507;88.3611;63.21891;104.7011;52.13103;86.34371;73.22619;111.3681;67.95071;54.38531;49.86095;92.70158;124.0496;120.9109;153.5282;102.989;130.0777;86.77171;68.47597;100.7687;122.0987;152.2649;134.9653;150.0154;71.33198;81.99859;168.863;152.7223;77.62289;120.8877;101.0549;179.1635;129.6026;70.58174;73.96348;72.54379;70.79546;86.77859;78.10863;125.4418;100.0586;61.8179;74.5413;73.84988;
173.9266;141.7428;94.66871;161.6798;119.9864;102.1187;124.0477;168.4454;192.7822;77.71907;171.0836;163.1508;77.69021;122.5599;63.7903;96.74003;156.1401;91.5335;143.0901;115.9243;143.713;62.44118;141.1416;156.2146;186.9895;105.5471;153.4031;91.73166;94.85985;62.25754;146.8975;136.8592;86.41651;158.362;73.34916;151.2918;141.5544;92.74447;83.27211;124.6021;118.8506;101.7914;137.5156;152.9867;104.2289;113.6648;172.8942;154.7347;120.378;130.9632;184.8422;51.0644;82.60693;52.53377;87.05617;95.78732;98.15154;62.43634;135.325;74.75102;96.69818;74.20222;127.394;54.77815;77.83819;53.46222;138.8546;130.0746;91.04755;178.0187;92.02947;153.2657;114.6052;93.94984;101.2669;108.6218;131.257;125.9206;130.2969;59.11977;91.81626;151.6071;138.2497;86.05737;124.4044;112.4751;141.5123;130.3495;94.31155;120.5438;68.9453;109.6282;62.60864;88.4416;134.9388;100.595;78.92585;83.87432;86.74314;135.5443;139.5524;52.89125;64.25969;117.2773;94.24728;74.92182;135.6396;91.88708;43.70749;170.448;160.7785;58.35484;80.7517;108.6168;135.1409;74.23125;118.6388;59.36316;86.53651;161.4774;154.9779;79.34625;183.3776;134.4057;142.7547;66.95801;159.6275;151.8503;173.3675;140.0329;83.4686;143.2548;118.9111;105.4677;108.6114;161.7125;166.5487;83.96625;171.1525;167.8592;86.29832;124.1081;73.92917;95.44804;161.4688;63.87728;112.799;127.4725;143.3427;57.20622;146.0552;173.4492;164.1161;93.76019;149.0988;86.34331;93.76701;54.16283;155.8303;137.3976;87.99664;162.8279;62.06444;129.5164;138.7196;98.47167;67.87399;118.2486;101.0115;114.7655;135.925;153.9249;112.7112;118.1122;185.3279;154.0685;130.0142;102.8282;148.9715;57.60433;82.74875;49.58507;88.14745;110.2;82.30504;51.61949;133.0935;74.60643;88.42983;60.58308;126.689;55.84152;72.40871;61.81343;132.9801;117.2493;88.64497;177.117;82.54451;134.4877;93.38131;98.38245;102.4701;117.007;132.032;123.8387;131.9055;59.45388;92.44627;129.5852;116.6841;101.2684;124.4222;101.4521;152.1074;135.3205;78.79179;105.3176;67.35509;109.453;55.99157;73.50973;160.8978;107.667;88.58749;81.35342;77.44437;123.6936;104.028;78.64688;63.68038;85.77549;100.1832;60.9706;136.5845;86.09225;78.41017;106.093;169.7483;79.02852;85.85858;98.60812;100.1207;90.92396;129.7363;79.09924;93.21164;158.5972;154.9413;87.99206;152.9621;108.6499;90.05589;87.09041;196.7495;197.0636;
67.73259;122.6216;132.0638;193.8591;135.3874;75.17017;79.79959;84.42191;124.0621;127.2052;65.40051;126.126;54.25219;82.84817;42.63968;140.7123;105.7245;76.18336;111.7435;100.8487;123.1418;86.83665;101.4289;126.8498;170.7587;107.1711;153.5164;170.972;106.0074;162.2309;67.73487;79.95081;136.237;111.4868;104.1393;107.3421;123.9513;166.9206;125.2151;129.3681;121.5087;56.37933;80.56618;72.33862;164.4951;149.5969;137.2001;104.6888;85.12724;93.10397;106.5551;60.04569;58.96752;59.53952;132.4641;105.2226;81.89953;100.0186;66.61452;74.91017;99.8674;79.1785;137.3541;200.0523;123.1858;140.5483;117.7139;112.0558;58.32436;102.8774;140.829;74.00581;113.5697;68.16191;165.9905;110.0955;83.50621;83.33734;53.47502;87.34133;48.49467;93.24696;150.1167;115.3833;82.19213;94.96805;153.1053;111.8084;188.0522;116.1355;131.309;149.6783;241.707;81.06979;67.55943;142.5818;128.6085;108.6342;129.8251;182.3802;179.3395;215.7767;152.2282;109.5467;120.5737;51.78792;114.7668;102.8313;154.8837;202.7849;62.17809;158.6682;76.96319;161.8755;169.3199;105.7043;81.2568;84.75848;74.99027;105.2403;92.3876;132.3898;111.2769;112.7875;96.71291;132.3242;95.13915;154.1729;69.91443;130.2688;146.7731;198.6233;133.5839;61.7388;79.25016;68.81545;147.9099;128.3107;61.55692;131.5463;69.50845;90.6345;50.35843;126.8975;114.3695;88.92979;116.2133;87.8584;145.4863;109.5877;104.4522;95.63466;151.0161;99.39636;135.3223;141.895;112.2178;167.6417;58.47981;68.02673;135.9107;122.2832;118.4203;110.1903;118.9084;144.6907;118.6395;106.7303;143.0381;59.74127;78.27869;76.08813;187.2836;157.8404;144.9037;90.21615;92.741;111.1002;113.0086;50.02542;74.13716;77.4053;130.3293;74.61755;68.38783;91.96633;61.83394;60.84238;94.06842;76.19389;125.8181;183.1096;118.3733;145.8883;130.2164;117.1592;52.44263;84.07891;141.8097;66.05556;134.5703;68.20453;172.0226;121.5728;88.47304;82.47259;59.55168;75.57914;51.30292;105.5035;154.8684;103.3766;96.64406;115.4472;159.2513;90.66962;167.2632;107.4417;124.5602;129.4907;232.6372;78.0494;86.34065;127.0841;131.055;117.0684;155.843;166.2807;131.7981;137.0771;109.9858;84.93449;160.9441;82.41895;85.30132;133.5872;187.5143;169.1178;44.28646;111.9466;59.13161;128.3773;190.1;133.0518;98.52668;97.79674;102.811;92.77502;107.5625;136.4149;94.163;137.8174;92.23084;130.2387;94.71366;123.3158;
86.22069;125.7109;124.27;147.8897;107.9716;173.9738;98.95782;165.3069;142.6452;177.1684;116.0987;146.8092;55.42903;101.1346;59.50006;85.2052;52.19327;97.60488;52.00103;94.77056;59.30294;65.37183;80.45529;142.2706;70.46468;85.15611;63.33741;121.1487;112.6874;113.9887;180.6178;87.59283;102.5443;79.93661;75.47041;75.5497;75.74768;119.7532;72.4479;151.8451;82.92408;94.19934;152.8845;125.964;89.83861;97.88013;145.1022;154.7446;120.9308;72.93633;74.23424;76.03374;95.40378;68.45571;75.19953;148.5312;59.93055;90.28001;73.20358;78.25576;145.8688;100.736;94.75806;71.24632;80.77435;101.9009;95.39987;144.8227;71.32668;96.63069;141.8881;149.6065;49.65743;116.5773;139.8078;148.5992;80.58087;136.5007;61.39322;84.67627;96.22047;178.7309;82.93187;132.3585;121.2026;124.9271;88.36125;172.8101;170.1313;185.4598;160.3476;80.36951;143.6744;140.2874;102.4111;117.5738;134.5382;161.7649;64.13666;123.8388;122.6392;80.48053;76.90061;86.51711;120.7979;161.1266;91.65574;132.4005;115.3673;107.837;84.4047;151.0072;192.739;170.3335;72.83369;161.6239;81.07976;130.1991;69.81847;186.7143;104.9706;113.1114;154.6915;69.07428;130.2405;117.9898;121.6087;78.64715;99.07706;129.0976;118.5167;156.5502;128.7965;162.1933;113.9818;196.3434;133.1973;174.6435;128.9275;157.3652;51.68676;110.4669;46.44555;88.07024;72.03945;108.843;65.61636;95.86327;66.39;82.73081;93.08298;151.8615;82.78147;88.21688;90.07242;143.6123;93.92247;122.6954;139.4117;82.90746;116.1254;83.18136;66.75162;77.43111;91.3495;105.0074;89.02235;179.6523;75.81982;93.47153;161.5508;130.781;83.20033;102.2944;128.6586;160.463;151.6518;84.5055;85.91631;75.83395;103.3212;82.67464;91.11658;160.1913;75.88547;97.92459;89.52259;88.91096;120.2844;117.4098;70.38567;66.04428;83.99184;97.8173;84.52973;157.7208;81.63654;78.5883;159.2825;179.8638;47.0444;118.5988;138.7506;145.832;71.12708;151.354;55.05202;87.78737;113.5198;185.9801;94.16359;141.8518;124.1404;137.5138;101.1896;188.0771;196.3692;196.3546;184.106;91.16311;118.2925;159.8491;82.63488;127.2378;156.4049;171.4919;79.7737;135.5919;131.459;100.0715;100.5893;127.7289;86.71226;128.6738;91.66747;114.298;94.60863;112.8292;68.0107;165.6453;205.5511;159.7854;92.54195;184.933;94.82691;148.6905;87.01365;166.8042;149.4095;99.14456;178.9064;84.64366;95.3705;131.0206;85.14934;75.17121;
135.0831;71.40924;90.02132;157.1546;79.94102;135.6818;136.7283;100.6982;118.1683;136.5619;55.99759;50.5069;130.6339;71.13149;75.021;139.4876;178.0727;132.662;168.0957;120.2401;74.93898;160.5298;52.98993;96.71017;123.5179;160.3816;157.7066;53.22674;173.7402;81.14158;119.9228;217.1454;136.7467;116.6508;97.78162;98.99831;107.184;129.14;162.7082;142.0872;147.4668;88.69806;136.4725;84.60363;147.7099;72.40626;120.1772;143.1126;188.1963;190.3004;71.88116;77.41394;81.26096;186.5038;123.2954;66.07934;147.0459;85.31517;58.44157;66.8057;155.4811;153.836;94.9691;99.97163;117.9947;116.4092;80.83781;109.5184;91.5562;112.8124;136.3964;126.5501;136.0469;55.08786;123.2534;55.66874;77.4328;83.69058;86.45738;117.3879;101.9783;90.78676;121.36;87.05832;84.9026;154.0474;64.57516;71.85204;86.4407;207.544;114.7017;119.8766;109.9802;96.76766;73.46726;146.3817;67.69501;111.7299;83.1401;163.0958;77.41065;98.89806;116.1398;90.23132;89.0507;95.21735;71.25048;111.2388;184.133;128.6111;135.6136;142.5878;80.40076;84.7401;88.08252;131.1233;96.66298;144.9594;82.613;179.9118;134.1892;106.2053;51.16784;82.617;98.10406;79.18597;119.9677;135.4029;119.699;70.05561;87.1128;144.6306;77.13866;109.5753;137.5084;95.66232;138.0643;149.2688;47.64778;49.88947;134.4331;70.98833;79.69905;150.6969;149.5176;128.3275;153.4389;112.8073;89.67371;138.3764;69.26627;92.7607;126.8118;167.5999;152.5349;58.28908;184.3828;83.97991;122.0815;218.1893;115.9117;115.6858;93.46715;84.03555;102.1745;105.5629;158.8192;131.5584;164.7647;99.95251;123.0855;79.10326;150.5773;73.68925;123.1591;152.6061;154.2292;185.0674;62.56155;69.13572;95.72522;163.4348;144.3907;61.63913;147.3094;81.75849;59.45729;71.72029;158.0912;156.3757;98.43665;104.3884;107.6075;114.0344;86.73865;97.72864;85.11536;97.43227;129.1869;108.6857;153.832;56.64703;116.1758;52.60279;74.3653;84.07249;90.47073;130.1446;85.32915;85.95814;120.7944;81.9052;97.72964;141.0909;77.24317;61.22496;86.64197;201.9701;116.1219;126.4304;112.1772;98.78408;108.1891;112.0951;53.94604;108.6731;75.52702;147.7803;112.5561;65.15485;65.37889;46.00317;104.4485;69.93189;97.49715;83.46732;151.2567;111.9786;108.387;130.6489;97.11409;57.18583;93.82674;130.3738;75.60372;101.798;113.829;171.9975;160.5119;115.8334;72.30902;78.62282;109.4722;81.18139;107.8592;131.3149;
158.3798;59.67016;137.5187;173.8832;96.37694;75.86479;100.036;128.5251;153.589;75.76513;112.0423;94.92408;164.6652;47.41438;195.918;187.0457;166.2505;88.16097;114.3249;75.30084;132.9515;94.4978;177.5599;115.3251;92.00059;176.724;44.04864;120.6988;156.7383;109.8222;101.3888;113.0842;139.9717;106.5375;108.0007;134.9531;154.658;104.5067;132.2526;188.9626;94.08489;106.8504;108.3692;75.46301;105.4446;58.19741;87.68904;82.73363;95.83218;46.07283;70.29832;77.13842;60.79015;73.36604;124.7128;65.96611;52.28745;92.01889;120.15;116.0709;81.7257;118.5587;143.1473;117.3492;91.41017;82.95399;82.48018;118.6753;149.0338;75.89306;163.5296;88.73661;91.41751;137.7943;112.8985;80.39305;136.027;87.14935;199.8147;132.9581;85.8395;112.5851;48.70241;97.0749;84.17617;120.661;150.052;86.80956;82.76682;94.63696;58.05745;115.5868;155.8221;55.802;79.65037;89.34653;107.7759;86.78259;110.8089;77.96925;75.75356;144.9278;111.7768;85.28704;56.25241;109.9201;95.33394;100.884;145.7561;64.85046;86.59518;132.2594;182.0138;97.34776;129.4199;147.0124;119.4439;83.90639;165.8674;205.0416;167.2861;205.2771;71.16754;147.7523;110.739;64.84124;159.9179;154.2935;148.902;74.21615;159.1652;155.1015;94.53188;91.59048;93.68628;128.6859;188.0769;74.06251;112.7067;105.6805;147.0997;47.15503;196.004;185.8075;176.6573;117.4664;133.2666;83.54254;140.7022;100.6021;190.0703;138.7294;117.5691;182.4002;40.64148;130.4015;149.2695;108.191;79.86816;116.6799;125.1238;125.2482;126.0201;111.8008;152.2948;118.7193;121.8912;188.752;116.2088;104.9801;108.3198;79.94678;91.51398;55.21894;85.64271;82.82997;100.7521;67.88511;85.08668;81.50365;67.58454;75.5302;132.617;84.86068;67.30384;102.1535;116.3726;118.2323;78.61278;123.3361;121.4135;128.6987;77.01135;86.55345;95.2115;102.2922;143.1764;89.69811;158.1171;85.8147;110.5119;142.7498;114.9861;82.89802;122.9623;88.98064;201.9906;141.1358;87.85189;129.6848;58.68781;107.3551;89.34046;125.3562;164.976;105.2362;101.4151;104.9149;55.44078;117.7437;151.5122;59.09434;67.06476;93.87074;117.6105;76.30878;156.7879;90.83733;71.19421;104.6026;107.8221;76.41698;84.31689;149.0287;129.3409;102.9087;141.1477;54.95609;86.77174;110.4821;142.2178;133.8574;171.1418;156.331;106.3603;68.13843;155.9922;185.2959;173.2989;185.9468;68.84402;142.5759;121.4454;70.63014;112.702;149.8841;
96.6015;142.3776;191.5323;72.11012;104.3145;58.9854;125.8938;144.8094;50.77431;150.5404;50.85605;100.7463;78.91927;136.2427;127.4308;92.81013;74.29756;139.4955;111.4327;82.38579;87.47572;105.9387;107.3806;147.2475;108.3928;119.2946;65.13959;141.8563;74.43024;92.89587;114.1;86.07497;90.89325;92.81324;109.1029;174.8702;121.1658;76.82858;109.1657;62.14738;57.59436;56.69279;134.0174;113.66;98.69097;84.92572;109.0219;99.94507;94.6983;68.23069;75.32747;52.80741;186.1432;86.84373;100.6989;91.54894;58.75547;70.9053;89.72588;74.25923;96.23422;178.3112;110.7207;107.1238;90.7581;70.06416;86.53962;90.50027;170.0768;60.24957;114.1329;78.72192;163.718;145.9111;70.56674;97.75196;100.8886;87.0581;63.94571;122.1212;106.919;150.2802;60.61205;77.84157;130.3907;103.2322;118.9851;150.7333;101.8645;114.1951;164.8205;67.90668;80.77737;161.0891;107.5154;82.30325;111.1637;156.5672;147.0488;204.0926;149.1762;70.96628;109.4756;52.06602;94.30685;100.4138;112.2449;156.4478;45.65385;152.9448;99.43094;153.6125;153.8145;143.4886;75.75914;65.07833;108.4302;100.9207;126.4915;149.9027;122.0106;125.4001;87.50035;127.4196;76.44696;144.7012;60.65068;97.54258;118.1575;153.4255;177.8681;66.56462;102.2159;74.83329;125.3114;145.7281;54.62039;179.2986;64.87449;100.644;99.49892;162.246;130.9208;95.69122;80.39347;152.2659;104.6081;93.22618;80.82799;92.18275;108.7896;164.0643;124.4754;128.3982;63.70833;143.8113;88.55817;90.7328;120.0782;99.00576;105.7045;101.5003;97.26948;163.0691;116.9694;91.09563;107.5176;61.20444;58.04684;74.80605;155.7144;111.249;120.4651;101.6527;111.6524;101.2367;98.42894;77.53676;69.14554;60.08029;177.1423;71.34708;101.4921;103.1916;67.02636;71.62688;84.86002;70.14412;102.1899;172.8879;110.8022;112.1474;105.2158;80.96931;82.78803;91.32253;170.2075;72.77882;112.1514;80.94672;162.7623;164.2472;84.02397;91.08315;112.3905;102.1218;61.61361;114.1187;110.5293;168.7734;60.84696;96.12195;127.2887;86.07808;119.5414;170.3571;112.6676;115.1063;158.2004;63.97408;86.2413;155.9364;77.93014;101.5368;110.9102;182.1143;142.1864;159.0628;123.5975;93.28324;122.0759;45.86143;124.1771;139.7655;164.592;181.5634;78.39255;186.6896;91.5443;137.2479;176.9798;136.8929;97.61211;65.84936;94.83575;116.0112;98.48239;124.7338;113.2153;108.2775;100.4082;168.0458;100.1022;123.5214;78.03537;114.9007;
139.6341;56.57425;124.6248;185.5219;136.2119;60.8127;90.25987;98.35001;147.877;88.16119;115.2303;108.2818;138.6162;84.78149;139.1541;110.6627;103.6033;66.6152;113.7905;114.7411;198.0291;141.9132;104.8409;114.4226;63.38931;164.0874;187.896;79.02441;183.4148;84.28841;62.49186;72.90618;142.9222;155.0533;86.69928;88.44926;93.91876;114.9121;96.15314;117.8662;127.393;140.4576;149.0783;143.2581;168.0646;74.34296;121.8291;89.67455;66.15426;116.0972;101.5828;119.4492;121.364;110.398;158.2049;110.0781;88.39838;98.9255;76.75977;63.61227;87.471;124.7991;153.9891;110.4871;85.22731;70.93042;73.74269;121.0169;76.22108;56.80441;83.32146;167.2234;110.7247;58.42557;63.72396;51.10821;76.88341;72.82794;81.97002;137.9394;138.6204;117.3632;122.1776;98.67892;117.4601;55.55787;131.8153;189.1607;61.3106;135.7384;98.12068;184.7829;162.7197;97.6377;58.15993;81.61129;92.00821;80.19459;103.2732;115.502;109.7375;72.66622;99.74912;173.2868;112.8838;144.471;146.2474;120.3593;145.7672;162.8623;51.99555;69.68581;142.5863;107.7267;89.51651;117.2074;192.904;181.8114;186.9089;136.9186;72.68059;111.2835;75.65405;89.30025;113.1138;109.1378;190.9592;49.1537;168.7363;69.36058;118.2063;181.4249;149.148;74.57917;92.14306;99.36141;130.7418;96.54423;94.01982;94.10353;135.9801;75.47231;148.272;84.36211;127.2999;70.47051;107.2691;87.50974;191.227;166.9458;93.41341;101.6788;55.54969;167.126;175.7856;60.10819;157.7571;82.56552;62.84247;72.95477;165.6947;173.6654;85.43523;87.88317;103.2195;132.8788;100.0613;120.4937;106.6406;149.7002;130.3422;130.256;163.3472;65.29129;132.6429;69.76311;81.99288;120.9268;100.237;97.40388;115.6318;133.0531;146.481;101.9306;79.00015;110.7008;81.72193;56.20457;75.13724;133.3758;148.8397;112.6949;97.14373;82.46961;73.53791;121.2751;82.7371;68.7532;86.8353;166.3365;94.86451;72.17957;58.89586;48.35349;78.91862;71.63638;86.52315;115.1155;153.8153;120.7437;121.9393;79.48898;109.6542;71.045;120.9837;174.3231;53.52774;149.4798;103.7207;171.9961;145.727;105.2404;74.72614;67.36506;75.02925;47.85206;93.36267;140.2453;147.6214;58.0237;98.44813;186.9866;67.48866;119.5244;94.90916;92.94305;104.7961;182.0825;83.66549;61.6911;168.726;117.1878;75.61285;99.05944;175.892;138.8795;197.8742;126.7405;74.88638;141.6552;71.93567;105.3599;127.1702;120.2374;156.452;70.26473;
114.6851;97.25294;114.8793;128.6988;55.44319;102.8949;65.70366;71.68495;119.8419;155.1924;97.18361;81.69449;131.9675;92.2995;88.28854;115.0284;92.37172;48.66799;146.7648;123.8286;63.80331;78.18111;135.7631;119.082;68.17744;148.8517;76.48971;55.77339;136.6678;153.8494;136.0211;137.9223;108.1097;112.3795;86.72165;140.9005;147.9534;184.9003;133.2533;46.69561;140.4062;101.1716;104.6008;117.5627;206.8033;202.0386;81.70341;169.4351;187.6697;100.3673;137.893;121.645;86.90927;141.4185;102.5016;171.4699;137.4643;124.532;55.45577;157.1777;172.1189;164.6988;95.76379;184.2175;92.591;156.9758;90.38374;153.8111;93.00735;116.4424;136.9846;57.83979;136.7516;161.2401;171.1017;99.95981;142.7845;114.6814;129.5054;109.1955;142.2423;129.7061;99.55752;138.5929;172.4056;124.0433;139.1924;132.2427;52.77153;110.7013;71.03902;52.77152;81.51913;78.81578;97.88931;87.24063;51.89068;66.30154;73.37304;107.2223;58.04818;81.72591;57.26714;90.45549;116.8322;73.41892;183.95;90.02835;165.4839;113.1757;90.84198;113.6839;135.696;163.9754;116.1996;168.9959;66.3477;64.17988;193.6396;155.4449;100.4102;110.6956;109.7051;182.3474;139.8976;72.02097;107.2726;91.30294;124.431;96.86794;136.1158;143.5908;66.96206;81.70873;73.33701;84.68555;140.7978;132.8204;105.741;71.91485;104.1931;76.97135;83.88067;125.897;95.39866;57.43714;126.3599;100.6569;78.09341;62.77636;158.079;105.2294;62.69041;162.3857;93.46954;66.59359;136.4055;139.9831;129.9558;131.8075;114.018;111.5192;102.0614;157.3738;165.4109;162.0613;135.7105;56.06549;160.3071;83.11622;111.3547;106.7727;171.6138;185.2256;72.34078;183.6435;189.1439;111.5716;116.339;102.0903;103.5454;124.399;115.5499;155.7467;125.0581;133.335;62.4537;176.2786;182.2258;154.0327;93.52061;183.9213;100.2447;149.0363;110.1539;170.4475;97.40815;96.18446;136.3089;64.91377;153.9119;135.9426;169.583;87.72794;122.3163;105.1516;120.87;126.2662;146.1611;135.7913;84.99748;117.2027;182.5595;105.739;151.001;114.111;45.19573;119.0056;78.93115;64.06953;88.51964;71.49234;80.21466;83.99036;92.18225;60.54067;69.26427;146.3395;64.02975;52.40068;89.78886;99.9921;97.53396;95.93074;132.8516;103.656;109.9548;87.05425;118.0818;70.58544;133.8168;141.8347;68.39058;127.4167;103.6495;70.53692;173.8355;95.24384;67.70462;138.7632;113.7588;141.7299;112.1973;54.48169;84.48928;63.94898;
120.5811;161.4889;71.92259;111.3884;70.03905;96.47867;57.01813;83.89259;92.93174;132.0679;82.25961;51.16141;65.60723;129.1759;84.22955;77.09061;93.61726;152.3946;130.3383;116.0968;190.579;90.79114;119.8407;117.4069;82.32253;79.72787;119.8614;132.5029;121.6461;151.5036;90.86154;78.23578;139.7655;114.5581;86.06471;97.07372;116.6373;123.1712;128.8706;59.87973;90.61266;59.90405;81.64523;83.59657;120.8283;104.4948;109.1793;82.42255;104.82;73.49097;100.0304;136.103;87.13168;54.57478;94.18568;105.5272;67.0312;105.1795;111.4214;38.46545;135.8773;109.0974;80.04474;112.6033;122.0042;147.3922;87.66472;153.5362;90.4743;91.37885;95.76569;156.7093;114.519;177.6225;153.9506;106.5615;73.87257;160.7905;207.6255;178.6189;178.2315;94.9515;155.2088;149.9469;120.0149;115.4201;148.8517;204.6842;60.80127;136.6836;183.015;94.87837;121.096;89.05052;139.4223;148.1223;69.54974;118.1904;107.2339;113.2996;72.9944;112.294;164.9211;140.115;72.68879;137.2631;67.43912;141.2965;98.40124;127.6657;142.551;115.8257;168.5791;52.81166;125.668;106.4485;159.1714;81.72321;95.9118;125.7505;109.2365;108.8905;154.2279;119.1694;103.9181;140.9691;193.4715;162.333;121.8442;154.4466;80.42223;120.7598;94.81595;108.4446;66.12155;81.51694;88.38119;108.8856;94.51583;63.92163;72.66381;131.6486;92.10679;93.24759;81.25893;140.6561;153.033;90.43109;200.8905;102.2774;109.3718;103.614;78.61791;77.35781;115.873;162.745;134.0382;169.4581;97.28426;74.82167;143.6503;113.8754;93.53961;102.3029;146.3555;139.6674;138.3401;57.47601;88.50847;48.42413;92.49328;96.83285;128.7881;109.5667;114.9553;99.88276;95.96531;69.87645;118.9551;106.5288;94.59972;65.68143;82.24899;93.22647;74.49865;108.2911;99.74594;48.88809;148.823;123.6571;85.11623;106.6623;131.1886;142.7483;98.58897;164.0643;108.9932;109.0021;105.7619;150.1806;121.4718;157.7408;160.1117;113.2872;80.0261;166.1961;214.0363;201.4046;173.0119;87.79668;183.2013;122.2381;120.4999;135.0626;135.7936;184.4951;67.92252;140.2321;167.9604;110.8915;133.3338;102.2487;150.7061;131.6608;66.82037;122.2795;146.28;164.5471;81.73798;123.2022;149.1817;161.9982;73.58914;106.4776;70.82307;125.9544;86.49331;142.3532;111.6715;124.525;117.7662;85.55291;134.7902;140.2183;161.9123;113.944;110.3211;101.2948;108.9268;94.34641;150.5734;162.9032;106.5602;131.4569;193.5302;173.6946;
128.5104;102.7144;143.7545;63.95366;50.46592;108.3267;153.3092;79.38424;105.5556;112.1422;190.3811;146.2456;71.89691;84.97726;69.41961;96.7237;61.54764;93.98571;130.4907;122.4812;43.04555;94.96561;115.325;84.8218;116.135;135.4853;145.6894;152.4714;176.9461;78.1918;69.53668;152.7744;82.49031;118.7877;137.1233;112.3048;114.6338;141.0529;125.6763;79.19064;100.2039;56.42302;87.38606;119.3415;159.1849;192.8679;57.14267;149.635;70.28588;109.6976;209.6801;109.1023;75.69955;75.21351;72.83239;131.2162;107.3304;114.3698;111.5656;147.5505;71.14366;149.4092;72.07677;120.1957;86.30788;86.391;155.7632;131.6958;131.8432;88.74118;98.73492;81.8367;120.9827;179.9237;67.30952;162.6869;59.82424;96.3755;64.18951;157.5389;140.8987;72.79061;97.87679;105.1737;79.50143;103.9039;79.83628;94.47131;103.8724;122.7481;154.0762;167.0091;80.70663;158.3567;71.15742;86.43511;99.20591;124.6787;113.4002;54.89493;73.8881;113.0181;98.01376;84.99027;105.9052;62.2065;52.89291;78.88372;193.5249;145.2595;126.7889;70.57906;81.88059;66.79133;131.6977;57.46199;82.78261;86.9753;155.6116;89.67326;91.62442;86.94357;55.19607;77.20207;66.51962;94.41479;109.9123;157.5327;154.8596;106.8004;143.357;67.16646;52.17762;141.1582;145.9455;96.09554;110.1701;96.67471;203.2963;169.2203;94.50803;85.25047;72.02181;84.64822;61.5926;88.43749;116.1403;129.2169;53.44427;119.4595;144.7188;83.61205;128.1964;145.0805;133.7668;137.0375;178.5146;81.81679;83.168;166.017;100.9009;126.7417;138.0043;115.8272;113.9581;176.1247;113.2639;92.96076;102.9333;47.96753;98.43175;139.6765;188.9854;190.9054;55.82914;131.3767;70.19389;107.5904;194.1167;115.3144;88.67273;95.83114;91.83469;126.6268;116.8697;127.2911;104.5537;131.9174;67.76392;157.6637;83.18647;131.9359;97.75108;95.16963;156.6386;136.5933;131.5511;108.8365;82.62342;97.27779;122.0525;164.3814;78.24972;185.9436;74.01806;97.55024;60.44319;138.7512;132.2217;72.80332;87.29124;112.2582;93.1477;119.4143;94.1901;91.9951;113.2591;136.1175;145.815;150.3491;77.10422;166.8515;84.81239;67.3158;99.81274;128.8797;93.41151;98.27126;88.03297;138.1382;89.20543;98.30682;111.7573;49.18912;88.45016;96.66543;209.3211;133.0779;147.6062;87.36079;95.65633;87.48115;115.9655;57.97855;99.28506;62.97837;181.7639;100.209;74.40988;87.77166;49.33947;55.61508;92.98948;120.1579;136.5347;154.2172;
128.2173;220.2651;179.7747;75.17048;131.2044;205.6245;83.09248;122.57;86.28783;123.8279;119.1163;88.41831;101.3248;150.5528;120.5933;63.52079;122.1891;174.571;163.8663;72.91862;164.6391;93.40871;158.0627;96.97206;163.8236;159.9573;99.61908;129.08;53.20412;109.3624;115.0537;122.2756;77.87444;97.09126;84.35954;120.6573;156.2022;176.8042;134.1486;85.4149;153.0999;146.6484;162.4993;125.7696;132.1459;72.67675;88.89687;66.32844;65.64371;69.49812;65.24071;68.8606;85.39206;80.74822;70.31966;67.52079;149.9706;55.82655;82.41472;69.66511;99.9057;118.175;92.31633;179.3235;98.31554;201.9191;106.8297;92.40296;81.73316;149.6113;115.4222;122.6676;151.3985;74.7254;69.70202;173.3223;99.18321;133.1076;100.8816;110.9503;134.2793;145.3035;85.9419;86.70787;85.39054;120.7207;91.4671;114.6588;140.1841;115.7527;92.80568;73.05582;66.90255;107.1503;119.1545;66.50819;66.30789;92.72496;61.51758;82.42551;166.3355;121.5437;52.73258;120.9871;139.0111;50.68724;113.143;142.1853;115.8628;97.34489;131.0969;70.23528;87.18144;109.8321;135.9225;121.3082;118.9775;120.0375;96.37096;90.00513;191.0511;124.9641;218.4765;148.2817;44.36942;149.071;112.0046;93.75542;111.2863;202.4644;197.0012;90.31359;137.4561;183.9304;70.18236;137.287;92.59924;104.614;114.9177;91.41675;109.7668;157.4933;111.2672;55.17021;148.7988;168.7916;174.9939;91.39421;154.1123;78.1061;125.1462;109.0151;163.46;119.1271;130.537;127.88;37.54289;116.2497;106.0633;108.5434;64.51423;85.9475;91.32386;133.9624;160.3838;150.7441;121.866;96.30778;161.5587;126.9626;151.7662;124.4865;139.3635;73.47195;84.47098;58.91714;86.51243;67.48854;68.37025;85.59201;76.98054;63.47866;51.77847;78.93515;148.981;38.64924;101.9286;63.69915;82.79507;120.2687;80.82702;164.0564;79.70267;172.4596;112.2456;104.3874;78.34459;126.3821;113.3415;140.1957;157.7694;66.93488;59.753;165.4519;111.0842;128.9444;92.46989;102.4449;158.5536;130.8289;87.40558;105.671;70.86606;99.96084;77.78481;133.8321;139.2272;90.32925;113.4498;66.94321;53.04638;109.1445;144.0919;87.74129;73.25911;77.45876;98.87721;80.71565;122.958;82.21203;68.60909;119.6279;123.1055;72.83035;73.12223;170.7269;113.226;74.30178;120.8858;57.95592;79.54871;94.35397;164.3034;115.679;155.8336;129.2959;119.5244;116.3736;195.6722;157.6995;205.6102;158.7468;74.93671;120.3795;123.7223;88.35459;
96.84001;204.0887;109.6318;98.01499;63.84964;100.515;86.4075;72.10437;84.8197;163.7587;101.624;43.85799;94.57381;197.4393;73.11913;151.0614;102.8514;129.5795;104.6429;155.069;64.19402;74.28725;182.8741;89.11746;76.30448;114.1155;159.5488;133.9407;149.5951;121.1112;96.77229;108.8443;69.01286;104.4349;91.9985;135.1338;144.6787;54.12479;131.9561;92.54794;137.7178;154.363;115.8484;57.02174;59.83663;122.944;97.99478;101.7482;116.679;138.1807;104.1969;75.8322;151.8142;83.0472;129.8492;95.98148;88.04638;161.3072;202.7168;152.9447;70.46132;85.19247;86.28011;170.0186;178.1477;78.45078;121.0057;70.98449;73.96352;93.25431;157.8508;144.4903;66.26202;119.8407;95.35427;89.46905;97.04237;131.4597;78.61974;146.7646;102.1139;143.589;115.667;55.92583;146.2056;78.14641;122.981;102.2644;85.48455;91.01564;100.5421;100.486;119.474;86.94517;102.6353;118.738;84.54751;69.69231;59.11969;152.7269;109.1763;128.8306;78.17933;105.6556;87.71353;97.00614;64.11426;57.65481;58.99359;193.162;66.59812;84.11751;77.25166;73.56925;62.23803;67.65102;91.81045;138.4692;165.1812;164.8839;111.0669;140.1247;129.6414;73.40706;86.58253;146.2236;99.68515;169.2682;104.7103;201.4515;137.0826;104.4751;66.43954;92.68729;119.0905;76.62778;96.02136;151.781;107.536;65.59914;112.6351;189.5164;64.43089;162.5961;106.9138;118.6549;112.6552;152.8459;67.16725;93.1346;194.1214;99.1957;82.77785;101.0865;180.148;158.7983;143.6143;113.0816;109.8218;128.7773;71.46419;103.2753;115.8466;136.2578;146.4579;49.69531;166.8705;93.82784;147.3198;143.8915;121.9928;76.87112;73.54543;118.5212;85.45799;109.677;117.0127;126.863;112.3925;71.89646;155.2837;103.6091;136.2821;104.8893;95.04514;152.4499;215.2298;165.6589;62.74462;81.49352;100.6467;186.0378;174.1047;77.13451;148.2892;79.16779;74.82154;81.51792;183.8616;148.9733;76.17873;116.5134;93.69074;105.8859;109.5266;130.7093;69.10886;148.4884;96.47179;131.6401;124.4167;58.88295;149.0244;91.87688;119.5437;113.9744;92.38183;84.39003;109.4089;110.8398;109.3581;83.20795;122.2911;150.8527;96.12201;97.43785;112.5396;166.7805;143.2214;153.9682;113.9691;70.1983;106.6062;124.6691;62.54879;99.62665;89.63579;168.0048;102.4296;121.3873;112.061;85.25285;85.13605;91.05445;89.82954;137.0618;167.8384;167.5591;141.3819;112.5826;74.24987;98.20458;98.06506;130.1635;64.79687;141.554;
67.44401;55.69595;116.6005;152.5161;67.41496;75.88883;109.1162;116.4782;60.56379;80.26758;73.65036;118.4053;107.7631;117.6327;118.0533;63.97622;180.5052;62.10588;67.35458;108.7529;78.37739;75.71036;88.81937;73.25253;106.8989;79.86772;113.7422;117.2168;71.05039;104.4849;89.02971;157.5298;170.8838;102.743;105.4045;124.5405;76.36279;90.01437;82.19628;94.51355;78.8375;158.4449;91.65474;92.90719;90.96384;82.49809;83.57751;104.0755;106.5256;96.37063;188.845;115.9036;97.02508;134.1994;100.8848;47.0909;116.4876;118.1533;76.2683;118.2922;76.51804;208.8407;146.5712;129.9409;62.9874;75.47676;68.67698;95.01678;89.12807;107.6592;133.262;70.18553;66.6475;130.0814;69.45743;138.89;119.6758;115.5012;104.3061;167.4403;93.19279;70.30045;128.1751;110.6483;72.89643;98.77052;167.3364;104.6399;140.9722;111.5123;104.0713;118.573;65.58447;153.1116;123.9745;137.5954;210.4541;48.76666;176.3299;116.7143;127.1393;140.8697;156.969;96.69794;80.9465;95.60992;127.1052;115.8708;137.1322;142.843;135.6449;118.6227;182.2983;95.43301;178.3444;83.81395;92.55171;143.0188;202.7406;150.0143;104.4647;70.88266;75.08582;132.8559;154.531;58.62448;166.1962;85.4166;66.80062;70.6835;122.805;167.0935;65.55771;88.65734;122.5685;110.4377;75.20377;98.5833;67.80267;108.0057;123.782;118.3654;119.6349;70.75517;192.9004;87.21107;80.60078;133.7166;85.36783;78.07025;108.7972;90.02018;126.4444;96.09718;114.1415;121.3694;86.26265;81.97735;90.21546;142.9343;163.0796;122.3258;110.1353;130.5456;74.36879;100.0942;91.2859;88.80212;90.7838;184.0004;84.49648;78.62627;105.7551;79.88158;82.83975;113.7523;112.9007;127.1837;210.2761;136.5045;106.6953;133.0647;119.6256;61.49769;136.6851;133.1425;75.36334;119.4147;88.79768;170.7395;153.8979;108.8238;59.45691;81.40919;72.09407;90.53293;81.58505;119.5893;137.4769;69.82925;80.18875;148.4207;62.31497;123.0393;132.3204;107.849;108.3447;169.83;100.6882;85.67995;145.3485;119.6387;76.10248;98.6433;182.846;131.9319;163.1103;126.0913;103.0136;119.6968;76.98688;120.7634;101.7534;116.2568;204.4488;71.18686;143.8679;112.3587;109.1712;149.7612;129.3715;83.04204;62.91558;119.2955;87.02744;108.1456;141.0746;110.491;134.4157;112.6935;150.9066;93.4956;126.7977;91.02314;91.21381;137.5756;179.0337;177.9474;107.0208;103.8893;63.0881;171.3057;188.6335;57.99627;125.7736;76.29091;
53.9437;159.2568;109.2605;72.16478;116.8794;69.07874;60.77986;152.9265;126.4661;84.70898;138.3622;114.3388;129.4906;89.84518;152.5245;197.2779;163.9369;167.2984;65.77206;175.9696;133.65;62.53002;93.65179;135.6387;136.7049;62.51058;133.9028;108.9115;65.96056;103.038;113.1482;129.3923;109.5861;76.92924;123.437;88.5872;152.7263;58.25242;165.4836;185.2011;139.9087;69.88831;157.6439;54.40168;105.3741;84.23667;123.3944;124.3412;80.63132;134.2336;79.22635;112.0448;146.3468;112.0681;58.56887;107.9881;101.8438;141.9803;132.6205;160.381;157.7412;93.9994;150.5595;193.347;104.5703;153.032;117.6699;53.0265;83.43606;59.80984;65.28772;105.2385;64.37876;56.97377;97.33047;65.35954;75.53967;78.06441;123.9661;80.40681;74.65306;82.7019;112.0573;144.0714;100.4013;123.7866;68.54011;115.1274;68.43046;74.72675;83.41241;73.08408;108.5817;99.40649;188.7043;82.6753;56.34653;150.2369;120.5411;67.32245;132.7356;104.6104;176.6487;143.6654;62.86143;78.94717;77.03136;79.0258;62.32282;101.4969;104.7087;92.2359;71.35353;63.21911;98.81641;107.2224;167.1736;60.70171;59.00474;95.43813;76.48934;94.02939;120.8225;110.8776;80.00514;149.0977;129.9828;98.56363;73.60014;181.1677;120.2519;72.86569;118.9026;84.52559;61.84605;154.2505;133.7726;101.3813;150.323;131.5361;140.7338;109.6043;162.5989;197.7773;173.1785;156.5336;63.10836;180.6166;151.9213;62.73567;109.8502;138.9596;141.7077;53.88188;127.9363;121.1374;72.48191;109.3319;111.2448;140.9926;130.161;92.11321;133.2519;87.09159;152.8285;69.28113;165.8671;183.9857;141.9291;85.07924;169.8423;64.69238;114.4683;99.40275;131.8208;122.8686;84.24738;124.979;75.68303;113.7359;166.172;108.5432;71.03565;109.1909;104.1204;131.1228;117.9045;165.0474;166.2773;106.7062;144.2984;211.2093;117.7837;168.0576;128.0041;53.13633;82.2226;70.01762;62.50665;102.2458;66.67786;72.19179;99.61494;71.55648;82.23783;99.13357;128.5737;81.53933;72.68807;71.47004;108.5232;148.106;115.4041;118.8295;78.59296;114.175;70.29807;66.9061;71.83036;76.24503;115.683;112.4622;185.0773;97.44948;62.47583;186.6169;103.3378;98.58694;123.5908;148.0349;180.9054;108.6017;90.54511;87.93731;71.26332;95.66016;89.19625;97.20302;107.0978;115.6677;75.19393;91.33363;81.20391;119.8768;134.8881;58.54171;64.75886;63.66996;88.67082;86.67575;150.3323;87.40002;71.04585;149.6442;160.2054;76.22296;
177.5076;98.12336;123.9487;115.0998;51.26162;84.14549;57.13591;104.2993;81.49259;68.19819;88.19077;100.2003;85.71322;84.06606;59.92301;105.6829;77.09897;97.73814;80.89232;124.0695;113.37;73.94642;162.3788;109.85;143.9157;131.2624;97.36959;102.8661;135.1419;108.1864;80.65075;184.1999;92.31119;51.826;176.1469;105.2969;76.12318;97.73027;109.6882;190.1838;144.7866;95.30293;73.75263;72.6923;87.10899;83.51205;85.437;116.3756;79.42614;96.99955;66.70274;66.90031;89.77036;110.5851;66.09779;57.44605;86.19603;82.25224;97.9766;148.5385;85.91326;55.04009;104.2583;138.7718;75.75491;60.91069;125.4856;98.99649;70.64382;112.5946;62.41731;105.2463;141.7271;126.2697;109.3917;134.2121;152.5103;145.3409;66.84558;139.05;183.9108;215.4032;162.3188;66.74532;137.8535;93.9932;89.73845;142.9842;186.6428;208.5433;72.85051;153.9238;192.57;69.38291;78.9935;119.0201;132.0618;109.9538;95.74056;99.6293;102.1706;108.6757;57.71225;185.3492;201.0599;177.924;55.97191;147.017;68.0494;135.6753;65.63186;147.2941;108.2899;114.8758;126.824;60.58107;105.1525;115.7466;120.1609;86.79684;111.5659;98.14286;149.8864;143.8239;144.681;146.7333;67.12004;133.1509;189.773;94.50584;103.8605;111.3522;61.32325;81.07883;56.07817;101.4333;87.51045;60.61409;93.54741;75.50764;98.12975;106.9668;57.04347;106.1611;80.69848;97.17008;76.28349;132.5142;121.2056;78.13841;158.6233;124.3467;173.527;107.0506;97.81956;89.27464;144.2662;128.9795;79.91203;165.258;96.12943;48.08281;157.5816;104.171;86.9174;93.83955;110.2839;188.2082;147.0442;85.32327;83.06636;54.08965;98.21545;105.8942;83.79633;121.6277;79.78197;96.21725;66.42905;78.30861;96.37373;116.1249;65.30154;71.68988;97.32896;71.23547;111.8111;148.7465;93.15896;67.14767;104.2225;116.9677;84.45034;55.27659;113.7322;103.1516;80.79556;117.1116;66.64012;100.6832;134.234;125.534;129.8454;117.0456;167.0193;169.718;66.03516;138.8736;192.3929;211.1781;166.5403;82.83562;145.6596;107.4274;93.28465;161.0925;202.8654;190.7721;84.8427;154.1355;203.345;82.90298;121.101;95.72189;138.5366;133.4151;86.76681;106.6848;133.4016;145.1774;63.4843;133.7997;194.5571;149.7016;74.6983;124.4288;86.10336;150.0642;65.15463;156.4694;92.49361;122.3296;116.4718;80.06339;109.523;115.1576;157.182;107.3962;119.8837;136.0725;102.4388;116.2899;133.4863;157.5594;66.9966;169.7191;
127.5876;85.44144;74.08485;52.98865;118.2834;97.1868;91.69552;147.148;52.05833;87.09821;77.02431;91.25875;135.0627;180.9893;98.27194;76.66048;80.78635;82.90635;101.4555;153.2493;85.12732;49.424;150.8288;132.186;56.9379;74.59768;115.7821;109.723;60.03842;115.2541;68.99207;106.902;132.9964;132.2661;101.7213;120.6047;119.2707;126.2081;75.64746;140.8215;143.359;185.8642;149.414;71.1101;161.5277;157.6925;78.53146;181.1475;146.543;214.1817;100.3491;157.4503;140.948;89.71387;148.4848;112.5196;130.3096;154.924;69.03349;132.3686;111.6358;137.0248;79.90018;162.6495;180.6986;172.0921;65.45254;125.0325;84.43323;150.2743;65.67787;165.5114;78.34008;96.57114;143.4214;72.32457;141.2616;172.4194;154.032;85.5009;104.4939;111.1478;140.6836;146.997;125.5313;125.0571;98.59544;140.0811;155.4158;116.4608;105.2432;116.1699;41.99223;77.5289;51.00349;98.25488;91.65569;65.3601;72.40914;77.38206;54.76633;80.07555;58.11536;100.4116;47.29215;75.23942;65.43214;120.5285;125.7731;117.9187;132.5629;130.6234;146.3401;112.1465;94.49352;87.29143;71.01268;159.8103;117.7143;164.0578;85.66706;83.05978;140.3055;139.8821;87.4702;120.467;147.7767;177.2377;126.5188;103.0914;80.96378;58.04644;101.3197;99.89982;77.62254;157.9517;54.60278;95.95322;64.27198;79.20914;120.0422;163.1589;101.5997;66.86259;105.6827;72.36066;84.53429;143.0042;62.68023;62.68998;124.8122;116.3887;59.16057;67.33265;124.6543;113.0975;55.8319;118.9157;69.98789;101.7931;128.1329;153.5004;106.4577;129.0005;101.4383;134.742;57.45892;149.3955;144.9813;198.4543;129.1469;61.28352;145.0526;146.5885;76.25046;166.9263;176.7591;195.3865;82.01317;151.2089;111.6541;111.0821;116.2092;98.7678;130.4098;149.8728;75.16666;138.135;109.9897;141.8425;88.99004;165.2303;165.4881;198.0318;68.89607;134.4753;77.89301;149.6761;57.47216;183.7808;78.84599;111.6382;124.4619;61.12774;130.3703;161.6836;161.7056;82.05516;122.0237;99.0215;118.323;141.8897;107.8477;140.4859;83.14467;132.2914;155.5241;112.0828;112.7844;121.5759;40.98502;81.16302;58.10555;81.94652;92.4273;82.32355;71.07776;84.60966;54.26931;52.31168;80.36543;136.3267;57.1711;91.20011;74.11174;104.1146;123.6147;117.0378;176.5771;94.03951;175.8232;111.2726;71.61209;106.3618;95.61767;145.0762;118.0847;166.9017;100.4314;94.65488;179.4527;155.5851;87.40454;120.5236;104.5788;184.9324;
89.00893;112.3663;222.4412;168.8488;167.4874;101.7813;114.1885;81.63725;108.9268;70.84358;69.01741;83.04338;171.8569;99.64417;116.743;91.96438;68.34359;74.55223;66.36333;81.67802;117.7767;141.9692;135.2929;89.92266;127.5281;75.99488;63.24121;115.728;132.6877;73.03008;139.0759;63.41544;186.985;158.3863;136.913;61.4548;76.95694;70.92071;83.86991;76.75023;137.8123;126.3268;55.13348;89.79662;167.1402;64.44451;166.8239;106.1822;107.682;142.962;147.147;95.34662;92.04379;150.9554;124.3281;105.1336;101.2491;159.4046;154.7454;218.9771;163.0391;78.39436;115.8461;81.1374;138.1731;143.5976;180.7304;207.9698;87.48926;178.3095;94.02533;139.0791;167.6143;139.5723;73.97535;84.57323;113.0766;141.5826;161.0796;132.5808;125.3448;116.7944;62.33392;137.2314;89.24989;119.5928;79.04094;84.7014;141.012;149.3037;149.1873;84.85622;77.34905;77.9595;164.4849;116.8736;72.25108;161.479;101.6997;63.65652;66.30769;127.5581;150.2226;68.16288;106.7751;119.1955;91.5811;80.57481;122.5241;75.97116;159.5659;98.85789;130.2079;157.5539;49.40752;188.0745;95.59659;89.9099;130.308;115.0277;79.44091;95.8248;121.9629;170.4695;122.5581;83.45094;132.4209;92.06422;82.04851;104.3702;184.247;163.2562;159.7155;95.06077;106.3468;84.04937;95.39993;82.57422;69.53568;82.27431;189.4394;104.1793;125.9461;93.81116;72.55603;70.1069;60.94009;83.91704;119.942;141.9429;130.0183;89.70484;123.4966;81.1129;73.08528;108.4698;138.8347;75.6873;167.2676;64.861;179.6584;154.9844;105.4243;55.49036;70.52876;67.42396;74.19781;78.62264;125.3873;148.4966;54.54821;86.27967;182.638;70.37933;173.8999;108.9807;117.662;143.204;137.8634;96.19396;94.4105;154.1924;116.0905;105.7005;98.22906;163.5296;171.9809;217.0571;160.2526;75.83688;132.4558;83.64009;122.9034;149.3866;154.8803;206.588;80.48334;164.2602;90.86373;130.0642;149.1907;152.8368;75.48523;87.73107;117.6461;143.0578;157.9647;136.8174;126.9682;125.2678;63.06154;146.4103;91.42858;115.3533;79.11378;76.31958;137.4437;153.3014;166.1184;83.66263;75.43348;75.40918;143.9462;157.3836;46.80513;159.1621;78.7651;69.44209;58.31743;150.5773;102.1375;82.56316;81.70831;114.1941;135.2801;69.94731;132.1782;90.89336;112.2277;104.5228;145.2171;160.6328;57.9261;130.1536;62.51269;99.1029;99.96577;70.12309;86.87737;80.71539;106.6476;121.6117;84.8401;104.5421;124.0039;99.64092;
82.99606;140.7917;121.2653;96.95522;125.2095;153.3145;126.0554;45.7566;147.2118;198.198;136.8483;72.24379;175.8842;65.47016;130.3889;76.20362;119.2348;139.6692;100.0721;163.8413;69.85927;114.2276;162.7995;151.161;91.85571;133.0421;161.2428;108.0067;151.8319;131.0536;180.2553;95.19307;123.9652;155.9258;155.3586;148.8537;138.6844;84.19672;139.4441;72.00911;95.61083;107.4892;72.65641;60.80318;122.4868;68.50399;86.77355;74.84879;127.9878;90.92317;91.10255;85.88177;102.124;101.4784;86.7645;153.8029;81.35964;146.8689;78.82452;90.77679;96.09668;91.68131;132.5828;82.36568;154.7856;99.03918;62.76954;171.224;134.3631;130.413;104.1456;78.77628;156.6044;157.7821;53.5496;76.85466;99.3602;97.19205;86.70017;98.05406;103.3483;108.6816;87.02081;92.65117;93.44907;108.3507;160.6305;83.36806;76.4652;116.2972;116.3421;71.74043;167.9852;88.91278;88.09342;139.0624;115.1928;65.41012;104.3043;158.4463;132.0439;109.0118;178.2755;72.98492;98.21347;164.6808;134.0133;82.82616;189.7919;139.0907;140.5957;82.00339;170.6156;197.9349;185.2637;156.5715;59.91456;123.0082;113.4269;75.22334;100.2676;187.4712;147.4571;74.52685;139.8213;138.183;74.08145;92.79675;103.8767;134.6977;119.7286;102.0448;133.4104;141.8681;122.7293;39.73409;126.3569;172.0329;144.4909;68.71009;163.2962;73.18151;119.0472;78.51635;125.6672;127.4024;89.35389;142.4941;71.90128;112.591;164.4734;140.353;84.40508;145.9165;148.1044;99.12823;145.0548;139.4332;159.8735;104.8994;145.6909;153.4317;154.9639;154.3111;143.6642;74.41359;129.7904;62.00946;77.42428;91.72424;80.26338;57.2447;109.6631;74.89737;73.36269;74.76717;134.4553;84.52734;82.67419;70.51456;103.9042;98.58211;83.50419;139.6615;74.34678;159.6763;77.60462;88.35737;79.79031;91.29021;116.8934;92.96472;173.5166;91.67986;60.69504;179.8078;135.3717;116.3797;102.5877;78.02077;133.239;133.4781;65.82938;78.33199;77.09548;97.13047;74.65536;99.56898;104.9262;96.17612;76.73911;78.4632;91.93869;103.6733;164.7834;83.08824;69.67062;127.7192;114.858;69.59141;146.1817;88.52766;69.01854;150.074;171.9367;72.3681;79.16209;128.2063;91.55564;85.44601;165.1622;67.70808;53.30172;122.6284;188.0122;92.22633;120.2671;128.3669;110.6445;58.93895;170.8451;185.9544;174.2922;153.9199;71.62091;134.7113;124.2348;83.58985;97.16035;204.4032;157.5325;59.54585;164.202;133.5868;77.59177;123.4981;
52.38645;62.5013;103.5964;121.6704;113.6854;143.6064;132.2855;133.1796;66.79548;68.59448;98.01418;102.5903;133.2189;94.64386;165.4483;90.71381;55.12515;128.7243;128.5462;100.9953;114.908;118.9126;165.6765;130.4574;93.78558;94.61394;62.63474;111.8986;70.13831;127.1306;136.3506;78.8726;64.69604;88.33354;108.1105;128.1261;116.4228;101.474;86.1665;152.4657;69.25944;74.68794;111.1889;108.8862;46.23877;151.1684;152.704;76.68398;109.33;109.267;113.7565;97.1744;167.846;91.08072;76.57021;144.7484;161.0363;70.1773;142.7681;184.3441;113.0822;71.23586;170.5373;206.4569;151.5987;154.9478;67.22364;143.5458;160.1962;87.6841;169.0692;158.3972;127.9131;55.66373;176.6936;162.6126;91.17336;88.12656;87.00617;133.8086;120.2296;69.09239;132.1671;117.7486;143.9795;78.5745;155.2123;164.1237;175.5461;76.21953;154.5586;93.66806;118.2311;91.48963;155.6257;108.8285;85.47124;167.6503;84.44611;128.2839;118.9799;170.8406;109.0479;168.121;92.81693;106.9683;119.324;170.2583;118.0775;96.16821;160.7015;160.4402;156.2873;124.1396;141.9292;51.07665;134.3701;73.50819;81.16923;83.06683;84.07446;50.82841;79.65823;97.18557;56.81189;74.09123;124.2466;67.94869;70.70874;69.11456;104.1671;117.0035;104.4986;134.4758;127.4851;125.3418;70.87655;73.12389;116.4039;97.20868;128.8251;108.2684;142.1301;75.40296;51.39346;149.6715;151.678;74.03168;125.9948;114.6148;167.0779;114.5855;88.13616;98.04589;60.79538;103.4793;65.14212;134.8139;121.5183;62.43471;84.56429;96.74614;103.4191;117.9877;104.9912;89.20322;85.87796;142.2959;73.47386;80.44134;125.4258;99.00554;42.33831;162.2728;134.838;63.83847;105.1676;130.887;130.1326;69.63579;179.8502;83.78006;81.0042;129.6787;160.2613;77.11931;125.5531;163.266;102.9027;84.17061;161.1118;177.6598;168.8066;156.2796;62.64445;142.585;140.3953;71.67448;163.1396;150.4483;138.5384;62.69915;183.7912;142.5788;82.25144;104.6483;78.67197;115.3537;105.9143;79.48962;148.4064;95.16399;148.592;67.31434;156.093;150.4707;174.7367;83.45079;136.6243;78.82681;107.817;106.0764;143.3207;90.92252;97.42333;166.9731;84.90776;135.8051;110.1522;128.9599;73.70934;105.8315;126.9753;144.8646;157.2107;169.3237;121.8488;86.70865;145.9763;153.9127;148.0022;125.6936;149.1352;52.08373;135.4444;74.73852;61.85953;73.41982;80.95111;54.07489;109.1807;63.86914;56.60722;98.58815;95.37369;61.97097;
135.4785;94.04999;189.8842;71.44125;187.5586;111.5953;119.9031;92.68332;189.9435;134.4691;98.60535;68.251;80.32914;139.1196;147.4129;49.97459;192.4401;61.99808;58.13746;60.95419;131.7017;174.9468;91.66059;96.66756;113.2274;110.6147;90.9027;94.58491;105.2032;137.3046;100.1469;91.84386;130.2902;62.22906;152.6775;56.49314;74.42805;103.544;104.7372;98.85676;100.4473;88.75869;125.1412;90.45117;92.16634;162.9756;75.00645;94.69799;103.0147;165.2097;124.2944;132.0779;73.85931;84.34461;107.5784;85.6764;63.65051;69.03195;56.43354;174.8758;59.80327;106.1042;77.56948;44.64397;75.52723;89.75717;111.4454;100.6085;228.077;165.5803;146.7014;95.38989;111.922;61.01962;121.5472;133.0624;86.17703;122.7815;87.262;153.1705;175.9653;83.44099;42.31302;70.88795;80.21606;85.09971;115.8783;141.9272;132.5244;77.69762;91.06319;144.5554;106.7346;150.8337;105.109;79.59953;107.8122;156.9576;60.99136;52.65497;141.1421;85.46239;100.8172;125.3502;170.3777;145.2634;156.9726;122.1446;88.81842;164.2497;67.73746;125.6916;147.418;125.0834;169.0882;60.02388;130.9282;52.32718;142.4921;133.6701;139.3469;65.32855;68.89318;104.476;102.7165;118.7819;113.4531;106.4502;149.8805;78.59035;157.6185;80.50839;169.2882;91.88242;112.589;123.8102;194.2279;130.4908;106.6374;78.93835;73.0297;133.7429;173.8095;45.2454;195.9385;54.52671;61.90084;62.86182;129.0999;143.1217;83.72926;98.16352;132.8089;111.2147;97.22002;95.05973;128.5739;124.9128;96.67109;107.2508;138.573;50.28838;122.4334;60.27557;61.72189;86.26978;94.2494;126.4827;99.79682;86.42358;133.9998;97.48486;83.46294;159.2535;91.62594;86.74174;101.8532;152.8304;129.985;131.6605;71.17914;63.27802;96.38565;85.6916;76.12934;61.78898;65.8001;174.3638;72.62378;94.19076;75.87024;58.32981;89.99134;74.15039;96.20566;109.8575;202.5927;151.7665;130.5683;114.415;112.2186;52.00421;136.3829;143.8507;72.67866;118.3712;106.7321;147.4173;186.222;73.57893;53.29278;74.04078;75.70914;69.46931;101.0189;133.1734;150.2823;69.99811;102.8634;144.09;123.6532;136.5612;110.6776;148.3493;128.2251;144.3039;61.31639;83.33187;123.2835;74.02501;102.5417;117.5073;176.7898;132.4736;163.6139;122.6499;75.24803;118.547;68.65002;133.1506;140.166;151.4747;177.6361;71.48679;163.6183;69.94702;139.4046;163.223;134.2204;93.41328;64.14327;104.7194;135.1741;80.58339;119.403;108.3738;
84.66193;62.72284;156.031;139.3062;52.08129;115.415;78.67562;86.17437;65.27499;175.864;100.215;50.6279;79.80046;119.3304;120.3896;79.68574;105.1825;90.22808;118.2619;96.26237;110.4285;161.3024;62.38707;154.4951;71.96922;110.5398;89.43199;114.5197;106.6616;73.04429;107.851;127.9389;141.4343;77.13205;112.6957;82.31506;81.81675;85.16544;181.7784;103.5291;162.7417;114.1403;106.3334;77.46191;96.25188;49.0063;99.46291;48.29163;199.3929;85.55672;81.23051;115.143;52.99356;84.96824;87.57696;113.4921;140.2935;199.8791;124.57;133.5681;87.42841;63.60629;91.55;104.9943;160.6138;73.07633;144.3498;77.67876;164.8267;109.5076;98.43902;80.19363;82.9362;108.6201;40.63498;69.885;107.0136;133.2257;74.92725;73.28779;164.1288;99.09989;137.4671;101.901;101.627;150.1578;156.6632;73.74479;75.54866;175.0567;76.39998;111.5119;125.5793;129.1454;151.3367;160.4343;183.9049;82.02583;113.8825;71.03774;127.2125;122.7279;147.0701;144.1126;84.76398;181.988;89.47911;123.3005;149.8332;96.06104;103.8141;54.67534;130.4491;131.7846;113.838;159.2178;104.8523;116.5648;74.63712;185.3895;103.3981;154.4366;85.54506;134.094;95.70651;143.7981;193.3154;72.18095;89.25334;76.87051;139.6936;136.8438;42.18161;137.4334;64.06303;96.86141;71.04265;158.1569;97.89855;58.4017;87.8987;129.6454;102.4968;80.79845;112.6552;99.29604;129.031;99.30754;113.4342;139.8436;53.48452;155.4211;73.18534;92.85754;102.4432;140.2832;103.3213;80.45763;104.6875;113.3968;141.0416;92.34814;97.77423;74.94616;69.26077;100.4266;155.7376;114.8966;165.5257;100.1162;103.2606;81.81503;105.1552;53.05487;81.21579;49.87136;205.3325;94.44617;89.96815;113.7845;56.46867;66.57313;74.99625;115.3713;135.4333;183.9546;141.9394;152.9353;86.77657;75.584;92.18684;98.57466;156.6668;75.71692;123.8564;75.02015;143.2475;128.6782;83.99506;87.43031;82.56484;100.8888;40.00097;72.04465;119.1713;146.9216;62.11948;81.31704;165.8913;95.04916;144.9434;105.9787;103.4083;127.2737;145.5539;72.70257;71.99342;160.1798;90.12547;129.2645;124.7979;145.9932;150.3355;196.7339;164.9279;80.21339;124.238;61.08435;85.54424;147.4082;138.83;182.8893;92.49141;150.0485;59.09801;146.8171;175.9588;158.6998;63.07475;72.92419;111.507;136.7416;124.7313;114.4124;117.8305;131.8876;55.19931;178.0436;82.64959;125.9272;102.8626;93.27087;120.8569;162.4624;194.6865;61.78088;
47.98082;72.96017;87.63519;123.2661;100.9247;83.29652;90.38653;68.25056;59.09561;102.2798;110.3714;131.506;202.6174;174.7387;100.9584;117.8465;98.90481;113.3562;130.9343;143.9322;67.68456;155.8199;101.1914;206.2987;152.2322;100.4821;72.35026;79.58521;96.71693;65.28706;62.34291;136.0655;114.2026;79.67706;103.9952;166.4575;113.9411;160.6609;139.8158;99.68521;113.8903;150.0727;70.10533;62.93412;160.0983;94.56433;94.60088;103.0136;149.6947;159.407;156.5453;155.6613;119.0033;123.8686;91.25356;132.8882;141.1512;112.759;136.0153;44.34705;172.6353;69.0244;118.8899;183.2672;107.5713;78.09022;85.57924;60.54382;131.5789;109.2724;132.2199;116.3673;114.7545;109.9887;184.4253;106.373;185.2359;118.6639;90.06351;142.3622;177.7601;218.2457;95.54771;71.70883;65.65149;179.1873;172.5427;76.66831;169.1681;83.4279;81.7476;74.65648;164.0371;140.4693;53.09562;109.7407;100.4514;123.438;93.70229;102.6406;114.4405;144.4029;128.028;109.192;129.3437;62.04279;154.7167;65.85021;104.0967;107.8556;107.14;94.34216;81.40524;102.2638;121.5925;104.7771;108.2863;125.1662;91.31723;71.42224;124.3482;142.7438;119.9031;126.9487;99.19731;74.30755;73.70001;134.0336;58.48307;68.54461;92.44993;128.75;103.4098;97.80546;87.81014;71.624;69.26701;96.10174;117.2364;135.6902;198.5415;152.8586;84.87891;130.4002;102.1121;102.6591;133.0636;128.4121;53.00721;162.3479;89.68535;174.4812;188.9448;109.6681;89.05939;101.632;103.2012;58.52472;64.08215;156.1219;123.5037;74.82547;107.5705;169.6552;114.6659;175.482;135.3665;101.7639;122.5904;142.541;75.23009;64.08853;155.2307;75.18009;78.55535;112.9787;149.7719;147.0732;157.9817;137.2817;99.81731;125.6106;79.83761;105.8789;170.6751;114.5036;154.3192;56.18421;168.4584;60.62854;115.3617;194.1894;116.2432;76.52624;96.10966;70.58424;136.9365;121.3275;127.5783;122.6659;121.999;95.90537;188.9265;103.1571;167.2389;95.01921;69.79997;143.4856;177.399;209.1481;104.2635;67.33061;54.49197;181.0061;156.3524;59.33026;201.3555;84.92597;96.06671;89.80693;159.9663;128.3761;52.9314;123.1761;112.0832;97.64993;80.93962;94.29472;95.86993;131.2491;91.68899;131.1831;133.3756;79.80883;147.5965;97.85251;97.02844;128.2699;84.35746;91.36958;67.69155;83.40671;145.4828;105.0269;105.4346;121.9878;86.49657;89.35455;88.55657;142.3903;119.0093;129.1363;73.17622;95.39574;94.42799;124.6984;
107.4341;67.02103;140.9707;144.9296;83.91215;146.3367;115.1134;155.2331;62.92618;119.2116;149.9025;171.053;89.9556;164.0604;55.32619;171.1887;95.6435;175.2162;110.7994;105.5841;120.6289;82.67557;126.3839;180.0471;158.5549;81.32124;147.8515;108.4085;129.5437;144.6688;140.9641;143.0948;97.62539;154.0562;175.5186;99.54884;126.9427;174.827;60.704;86.7588;70.47098;81.86677;64.52359;78.80278;64.82386;116.1266;81.07154;67.58304;97.18827;82.47018;51.54369;63.49181;80.05908;119.5797;132.0273;102.1753;177.6784;93.29311;109.148;78.89361;90.55672;80.22421;90.08382;123.4544;122.1476;128.1406;90.23087;76.88624;159.6579;149.3577;88.14833;133.5577;113.784;119.3312;97.83903;74.67412;99.49392;71.44216;76.31725;107.0026;130.4373;151.918;76.1273;81.87223;63.49496;107.7242;116.3433;177.0659;98.37782;59.79735;115.2325;69.33229;86.52216;134.5012;94.84702;63.19966;149.0539;137.6577;73.29416;59.5315;138.7549;163.895;79.03542;130.0847;81.58908;73.33464;96.5842;142.9527;87.54274;156.3168;151.5334;108.9044;112.1754;127.8957;134.2615;136.7839;169.7554;74.91386;154.1931;122.5037;96.07224;145.8754;129.1087;139.8034;77.26495;121.0639;129.089;69.5379;125.1601;74.31029;121.1035;159.9835;77.19818;129.7233;97.79105;162.4238;57.74607;106.6792;133.9459;143.3;86.83766;150.1175;54.92276;155.9405;101.4085;196.4474;93.32153;81.27757;120.6669;82.89772;119.2;161.4852;147.746;92.17661;129.5974;86.63719;123.2219;115.1016;139.169;130.0591;109.1417;162.9478;158.8377;114.6676;117.0654;155.8698;49.69989;93.49384;61.26585;70.65474;57.87912;62.69868;61.0704;104.0016;82.37209;61.49872;99.32414;97.00929;42.99123;49.07407;79.74117;120.2807;126.9054;92.45229;166.0894;114.4713;108.1582;71.16676;90.88674;66.08576;84.34617;113.5244;128.2698;134.7031;79.38685;91.03514;146.056;130.6689;74.65767;138.2227;105.6153;115.5618;99.02601;64.69494;100.7339;69.65723;73.55661;101.3462;126.2411;169.6925;66.56385;66.05328;61.5846;107.2948;111.3947;160.2494;89.80429;76.97177;114.2152;62.10124;86.84476;115.9925;83.49677;39.5433;154.8575;151.7417;59.43882;100.242;133.292;110.5647;66.61076;115.5391;84.72624;79.66991;120.2013;121.0883;84.13653;131.1656;118.9986;107.8713;109.1497;169.527;138.5031;176.9249;142.4305;61.75489;135.8803;130.601;104.5671;147.1255;137.2005;168.8566;57.47854;106.3577;150.3202;82.42477;
88.76576;116.3487;133.8619;162.7791;144.2156;73.72261;147.6742;92.77029;144.2136;89.08607;111.473;134.303;187.0099;193.7921;123.2779;76.55618;55.9083;154.0359;150.4212;60.30016;148.851;77.43778;82.13752;69.03043;125.0197;121.7238;62.37458;89.77866;119.5244;89.79132;108.3701;74.44915;95.82568;109.042;111.246;128.9314;124.8951;70.95239;194.9234;52.62362;88.41488;116.9648;110.3149;64.45448;69.04726;99.47583;175.047;85.93582;97.06924;140.8297;82.64015;63.91358;83.84424;127.6564;145.392;99.57341;82.09729;93.27921;87.92311;136.8435;85.16336;79.83546;106.0726;174.2262;61.58817;98.28725;91.99059;100.0503;93.89104;69.3754;96.38475;129.8922;174.6348;148.5535;141.3416;124.6228;97.51555;85.76801;161.1331;134.6688;55.71588;146.0923;83.64076;170.1686;148.6938;98.75669;80.82803;83.19606;79.58644;58.03695;86.08981;119.7408;128.5925;51.70999;108.0465;113.5447;88.52222;128.6537;116.442;118.4064;121.0035;178.3398;101.6004;55.48903;157.3292;105.1527;110.535;82.70886;120.135;141.2148;210.88;106.0388;79.94827;159.2606;65.89924;107.3696;150.9842;120.0725;206.9271;45.10576;154.6362;98.41204;117.2518;209.2644;139.5075;78.61472;112.7715;127.5333;108.612;126.1661;151.243;136.9585;159.5399;68.18701;139.3956;91.63708;162.4329;97.8213;134.1161;153.7265;188.0457;190.1629;122.1573;69.95633;49.66877;177.2248;141.3631;64.43659;180.8859;90.02975;102.9694;76.38614;138.1575;150.4166;57.26925;94.87115;99.35878;80.37837;107.8155;87.51319;112.8651;118.0931;123.5865;106.8238;138.2545;69.41605;175.9333;50.6047;100.6465;126.747;130.5539;78.97483;69.6721;101.4544;165.9938;79.63855;86.86786;161.5578;74.52145;71.00177;108.3565;148.0448;165.0242;109.195;88.94816;115.2363;73.62318;144.2556;74.90009;73.51836;108.5803;201.0243;77.29959;101.1722;107.3106;80.31845;96.04346;65.95858;80.73398;122.1887;188.9088;157.1119;154.4663;141.6042;106.161;90.4301;156.1213;132.5019;49.58548;160.0208;78.95632;181.0453;168.3432;114.2866;93.00491;88.1641;86.33301;75.59796;71.94562;126.6806;115.9056;46.65139;78.53937;175.8426;81.10642;137.7981;162.9806;77.0773;155.8108;142.0692;49.79512;58.78292;181.0083;125.8812;94.74882;90.16958;131.3238;183.8302;175.1358;98.81642;78.85851;135.1832;79.69088;107.408;116.6516;165.051;163.4664;70.24332;131.2273;101.1677;151.2144;213.9017;122.7511;62.69265;72.93147;73.81065;
213.8811;66.68414;108.1907;132.9189;77.35678;141.4008;166.2765;204.1418;93.5086;159.7048;152.5819;83.70664;87.82117;61.56801;106.1077;115.4332;102.1293;115.7809;111.1705;119.3294;62.46896;136.8406;157.5389;168.9401;112.1663;114.9716;88.27409;136.8598;118.9778;148.8169;94.17476;95.63319;185.968;52.62225;113.4476;149.992;110.2039;76.64272;115.5568;100.6522;138.1062;112.708;133.9625;156.1952;72.02209;153.728;181.4034;138.8056;163.6413;160.3476;39.63417;103.1757;65.86787;93.53161;98.85588;71.43983;70.23315;94.33525;89.47231;90.0979;110.2078;158.7237;86.14577;89.85973;100.4612;110.9254;81.22343;102.5831;152.7996;100.7991;140.6217;123.9503;96.98657;89.37886;108.884;140.7701;87.36477;115.7248;70.41156;57.24063;165.8327;112.1255;86.51196;96.58339;115.0055;138.3451;118.7092;84.46317;112.8075;42.1496;120.6393;94.66928;148.8882;127.7507;68.33146;85.13987;107.9114;74.41909;101.6065;146.6248;67.21262;60.48407;97.46255;72.91171;93.671;114.6105;92.85583;81.46727;112.24;139.6997;78.82336;85.64816;170.3508;157.1185;57.28329;130.5838;82.69308;108.3965;143.3149;158.1197;96.03099;160.9638;145.4288;136.8731;115.3477;185.5459;210.5256;179.7739;199.2005;57.60717;111.1881;125.5115;82.96648;139.1696;173.3435;190.3983;90.88336;150.8377;157.705;94.89408;108.8401;67.28351;118.4211;108.3655;95.6072;116.0743;114.6482;109.9636;64.51242;151.4584;151.5446;187.4913;96.51795;125.9478;88.56532;138.6221;114.6158;136.5061;99.05472;81.55293;175.0855;47.97305;114.525;138.0191;115.3603;77.24508;117.725;90.57207;137.8972;111.024;137.106;167.5706;89.86559;166.1962;193.298;131.9412;160.8706;167.6497;41.09171;92.93642;68.3497;108.4154;91.29411;84.38912;68.3023;110.1893;82.62465;83.00772;105.898;145.1859;89.82598;74.68939;97.2796;100.87;85.27847;95.75122;149.6783;104.7664;145.1341;110.482;105.4836;88.12395;104.7355;142.451;106.804;125.8163;76.97684;51.58346;169.361;114.7727;91.92334;89.61249;110.3731;160.3882;112.2735;96.3911;110.3567;52.95384;112.6658;87.39783;143.8719;115.6364;85.08447;77.04147;99.04832;56.09094;139.1418;109.9916;70.98317;82.52704;81.94425;82.93032;109.1928;115.0751;63.59779;87.19605;120.4837;143.8733;53.56156;77.83602;167.5561;97.95227;88.89064;109.6795;51.0716;74.90427;147.4489;194.8084;104.2373;115.125;110.6953;142.2782;87.37238;136.4296;166.3137;155.4396;
67.99183;115.9098;95.47341;74.4097;141.2493;46.80386;66.13397;83.86518;143.1609;85.37622;92.9472;67.56538;124.0611;82.19542;60.36012;180.7202;92.21451;143.6027;90.80717;85.03714;77.31139;83.50372;102.8162;117.6709;170.4021;57.91746;75.42149;119.271;119.3173;82.40366;141.6606;115.4299;179.1423;145.3175;79.35921;96.30513;62.44493;71.45776;87.91146;106.3493;131.7741;82.28937;106.437;62.08397;105.9149;129.4032;105.701;73.45795;59.35822;126.5591;69.88904;62.93898;124.7241;83.84062;63.60275;139.8836;109.305;73.52037;78.04213;173.241;126.0223;73.67322;130.5653;84.54751;76.68547;165.7938;171.3327;104.32;196.6196;105.3657;125.0043;96.25412;186.6354;195.1954;197.966;150.3741;84.01179;102.605;91.0914;111.6206;129.0799;165.6492;164.4006;72.29511;137.7146;136.6071;72.95493;120.4726;105.3754;94.19531;139.0748;59.8018;124.5693;103.5507;171.2784;67.00402;180.4053;180.9383;168.3411;83.5605;143.5527;60.14672;146.1159;84.64621;159.4492;115.6176;120.4565;122.4075;89.75289;135.3959;111.8608;138.3113;81.01839;154.6088;115.0127;90.13036;110.9303;140.3054;143.0473;102.3376;140.1319;177.0005;131.1706;154.6915;135.8089;51.18277;84.41681;69.49142;62.09135;92.26604;97.04003;68.20648;119.5104;66.6954;68.39072;85.45929;152.1416;75.16421;77.11369;74.75793;139.942;93.79482;79.34521;196.4238;97.71148;148.2986;107.8076;80.31704;68.54541;91.71315;109.5924;125.0285;188.7063;54.85977;74.38908;113.265;121.6772;76.52795;136.5926;109.9888;165.7143;122.1803;81.76437;88.59766;46.21807;94.09577;85.50195;105.0391;138.3475;75.21885;91.58965;68.63547;118.1778;141.8127;124.9343;81.11655;63.65084;135.3412;86.7205;58.78046;112.8044;90.76674;64.99307;144.6015;121.9462;73.1645;79.9526;165.4748;122.5858;70.29401;122.3623;79.87148;62.09135;143.4407;174.7912;97.20689;167.3702;123.8635;116.0433;96.45361;192.0274;184.0363;179.3424;160.1524;89.94002;116.4858;105.8956;120.9816;126.9957;178.385;189.6614;68.60163;125.5971;136.3337;69.70997;126.5103;117.7926;93.7888;141.6202;55.27564;121.1528;99.53712;150.1703;68.62515;177.3296;176.063;143.8156;63.83332;155.9465;72.58511;145.231;80.70879;151.604;133.9658;72.53684;144.6926;69.95577;174.9553;111.8587;152.7972;110.1492;138.4598;96.59941;102.5282;137.6245;122.3107;142.122;111.3391;179.9658;156.7087;105.3083;120.1987;131.3248;44.52586;123.1972;72.56446;
170.0943;82.29026;99.76415;77.31947;118.8249;127.2378;90.06665;114.265;131.4755;170.8117;59.41764;194.2082;129.7169;113.591;54.8348;166.9876;81.9426;121.0452;79.50173;165.8328;105.9298;76.84452;147.8395;93.93779;132.3572;150.9605;127.6303;108.4062;90.94547;136.5321;128.5125;118.6838;126.7894;122.0365;114.296;128.417;134.318;125.5651;148.002;147.2694;66.05641;83.73051;82.86649;108.1871;100.8517;65.04611;52.80264;76.06503;85.32645;43.15824;97.83247;132.4059;55.65949;91.05468;65.03763;141.5249;121.4951;114.2198;179.0358;133.2749;131.6234;106.7364;62.10062;66.90154;123.1437;136.6081;107.1336;140.5221;82.37657;69.92197;144.4637;115.1088;107.9;134.651;115.6258;219.0504;92.38682;51.57279;63.2191;76.55127;104.3153;83.88889;109.6755;139.365;82.8827;64.82866;71.84033;109.6841;120.163;140.737;78.69963;98.15891;72.12591;109.8329;95.88609;116.4191;84.64957;59.61172;164.9176;114.5926;54.97565;79.06197;147.7122;132.4565;88.61456;113.4333;99.17024;110.8316;148.1327;137.1047;83.98975;116.3008;144.3278;100.2483;113.8378;170.2247;164.7612;229.1891;132.4125;70.0991;160.8495;150.2669;104.7673;171.3243;160.8056;205.567;52.97514;119.6452;169.2109;78.94077;85.36714;97.78483;107.4612;137.4911;79.37289;128.2261;124.235;154.3673;67.66528;196.5281;121.6757;131.5994;63.82138;161.0416;75.00007;133.8603;88.88695;165.3172;116.2426;96.84679;126.553;73.34084;140.8191;140.4561;132.3247;115.7737;88.81913;155.6281;136.7432;115.8937;125.6118;118.5944;93.81989;148.4533;119.9395;130.1834;138.7559;161.1754;61.00866;73.32536;88.10842;105.4488;91.8271;74.74921;64.7347;73.32882;79.21012;52.36523;103.3597;130.4008;62.4092;108.6938;54.03292;117.5501;129.0107;115.1374;173.1773;134.0966;135.2887;118.665;64.76437;65.72688;117.7093;121.8;85.24509;161.8185;65.33012;73.88337;145.8986;131.84;99.79586;129.8591;117.6327;208.0185;88.78855;56.75658;72.93395;74.78349;93.72273;87.07207;113.1102;137.6492;84.41638;80.36038;67.36581;92.38857;127.6377;141.7598;74.83176;98.86426;74.8457;121.9288;99.04575;113.7695;79.78585;46.62746;93.15173;164.084;67.32707;99.23145;179.3116;130.1291;72.32668;145.2778;80.15449;110.6408;93.62051;157.5905;110.5892;164.3521;145.6667;107.9525;86.53593;166.2421;135.6408;207.4703;143.9675;62.37116;184.2059;104.1437;89.83175;154.2652;193.9752;150.6925;89.42507;159.1141;
157.9026;105.0947;78.88685;104.7877;175.273;64.35587;73.02367;136.5315;106.5;95.98153;78.64746;128.6364;147.7327;183.9274;117.0907;88.14091;144.5863;75.92362;160.8012;132.5928;128.8287;181.5902;46.43144;172.0583;67.62428;117.9371;152.2005;114.4517;105.4631;79.07999;77.39974;128.9541;130.1845;166.3088;93.07455;116.8511;60.43512;159.1538;73.65956;163.1396;91.77026;106.0482;142.3889;141.7509;154.984;101.3221;93.87741;82.52596;164.9563;171.7022;83.70752;122.4485;56.84328;104.0192;63.48687;118.7854;141.439;79.42752;92.76493;95.67068;113.4437;88.52052;130.7941;79.56039;159.6801;97.67359;88.9522;115.2076;74.53716;148.5225;84.47844;77.90846;121.3369;101.2426;70.66552;78.37777;109.9293;135.8865;85.86701;104.7716;158.2855;83.34541;114.5887;86.15215;160.4267;149.0376;125.5269;98.78248;80.92063;70.98091;106.9467;67.44374;101.0826;71.86305;137.6632;99.58276;112.2458;117.2256;47.63469;57.70977;58.14526;103.1398;107.0942;186.5756;144.0718;112.5097;134.8436;78.09824;68.79688;127.0897;158.0655;88.2569;162.8495;86.29897;191.2753;113.8206;70.98836;79.86874;83.76015;84.67377;64.80264;86.56487;112.9233;123.6883;63.52098;91.63783;165.7212;73.85534;179.2932;109.0975;105.8748;120.5612;186.6833;64.67694;74.68361;156.5267;112.7149;89.38282;82.28494;146.4219;142.4431;155.5267;124.2299;97.87357;162.8653;60.53272;145.5738;139.4729;125.8241;162.9058;57.93287;202.8583;63.43187;103.7561;146.5593;142.0996;102.4944;75.83371;64.1394;136.7482;143.7154;172.2706;120.7614;127.2476;65.79516;161.9621;72.12119;179.6404;93.88539;100.0654;147.0909;153.8632;148.4027;82.05624;97.67852;90.5197;179.5087;148.0873;72.98753;125.9155;54.21175;90.65153;74.55237;142.7939;135.4115;72.47266;81.77317;109.8097;105.6668;88.22034;115.5367;79.9789;166.8276;101.8965;116.1783;135.2168;80.04733;143.4525;75.10285;91.69441;127.9331;100.862;67.80544;80.39457;99.83137;117.032;91.43056;107.141;164.7921;66.8672;102.0955;97.24985;155.3858;125.6549;130.7697;123.398;76.37669;64.41192;95.11815;79.39325;93.74934;71.5926;143.0138;71.89706;121.2566;100.7359;61.41174;93.7766;73.40636;70.55863;104.5226;183.9936;155.6131;120.9722;90.16822;101.4958;47.5734;86.79363;162.4631;88.27754;152.4558;109.4553;160.7946;136.3405;98.62356;54.42131;116.0171;73.77737;63.68299;85.26803;145.5314;152.7208;64.58452;76.70847;149.7414;65.32082;
219.0029;118.1989;83.17695;126.6051;52.58762;85.40011;144.9751;131.2287;146.1811;52.90994;162.8479;71.52989;111.7046;177.1422;148.3795;59.13017;88.91911;88.35077;144.4418;132.8549;135.4314;92.76053;141.9691;104.6644;173.5586;91.03877;154.9992;79.68169;96.56448;131.1723;170.9794;172.1817;110.1755;67.80657;93.8973;132.9028;116.3902;63.64672;182.0888;67.52288;80.64196;57.58691;132.8853;138.9956;57.04659;101.5367;138.4532;121.6088;70.66603;100.9417;86.11018;128.5764;125.7425;111.5966;135.9229;71.8347;136.96;58.89623;69.93755;117.0293;80.3123;83.01582;63.17482;91.95886;177.2179;101.2721;92.79305;145.3682;64.71227;56.77732;111.129;151.4965;109.3681;123.1385;93.41689;91.56752;73.09615;125.5673;78.76408;57.043;86.04749;163.9752;105.5141;122.9017;94.35229;50.28867;92.06145;96.35829;106.9808;123.1441;189.3917;139.8634;115.8072;126.3312;92.31821;85.17646;140.1218;141.8925;94.8741;130.7436;65.09183;175.0997;180.4245;83.9289;71.29147;72.16276;82.25071;68.38577;75.50986;143.5362;148.0888;83.52839;68.89133;149.6747;63.57309;177.8066;121.659;104.4409;129.6457;187.5281;53.23349;53.60999;130.2703;97.48606;69.6732;110.0641;138.4916;133.6078;207.8384;136.4201;87.46157;143.3468;58.46071;105.8984;148.8183;107.1231;157.3236;56.27866;160.2524;75.92403;119.2267;204.5137;149.1269;63.71832;86.21125;87.36123;119.4406;172.1154;117.425;100.0305;154.1983;113.8017;164.0996;90.35699;158.2889;75.17079;96.80902;143.7266;179.7591;179.6808;97.05361;81.39553;97.34399;142.5246;125.0305;78.14735;182.6696;50.36742;84.48717;61.21629;129.7725;138.361;62.4791;118.5698;136.5222;129.3004;65.80988;99.93899;66.88058;161.6635;110.3575;115.5749;145.159;80.34256;128.4073;55.37529;70.95742;108.6396;77.28714;88.92335;72.52318;90.25941;162.4047;105.3079;95.74541;143.2386;66.32784;71.23296;105.1911;131.4506;116.8894;123.9337;89.69508;92.56339;76.00822;139.2684;81.52005;56.61591;82.05751;148.02;83.65479;143.1131;75.89294;53.59381;93.65319;111.9601;99.43789;118.0328;191.0675;130.6771;112.1687;133.595;112.313;80.25114;105.659;119.5718;95.05619;139.5423;77.43153;159.2018;145.6013;87.4842;64.9192;86.5527;54.30604;98.75325;67.81284;163.418;111.5041;51.65538;96.51422;172.2447;66.19585;198.2628;108.9579;95.04414;121.8044;190.5845;47.63047;77.24711;130.3467;106.2679;76.48357;109.5513;167.3919;162.5783;
126.7117;79.04957;174.4837;75.78074;145.9569;82.47718;154.6637;91.62284;109.9785;143.5846;69.1457;122.5526;115.1767;148.8549;66.58891;147.5149;98.70898;96.0594;129.7347;122.0552;137.8595;71.85577;172.4509;192.8294;130.413;127.2962;153.1013;36.24419;109.9292;65.54488;74.23271;63.91582;76.32475;56.85415;138.6556;65.91795;71.5917;70.96613;133.3889;74.99059;86.77333;89.95957;128.9585;123.5244;97.51852;151.6892;126.1191;176.5383;71.08731;57.0394;64.52692;78.1142;104.5594;84.84949;113.8134;59.03149;63.12774;188.5892;148.5734;75.05152;99.57768;116.197;134.2355;144.0373;61.09701;95.64618;83.42228;95.56259;96.39803;109.6791;134.9599;66.53809;96.75624;77.12218;98.71762;119.2329;116.2893;84.84301;54.67634;125.9881;77.37209;67.71291;127.5638;76.02959;61.01449;113.9477;159.7812;85.8789;83.59982;130.9866;151.0971;57.69464;151.4093;72.05859;78.20375;103.4565;151.7897;86.93793;190.0572;118.9929;125.3471;78.0679;177.7171;190.2923;191.924;182.7077;88.01073;158.6365;131.2665;77.2083;164.6577;184.739;152.7486;42.55547;133.9697;119.3129;67.55579;84.84995;69.25219;99.41454;146.7723;116.5599;153.3894;90.72536;132.7145;53.69663;145.2481;193.3516;141.5787;82.7908;165.9365;78.01142;131.8622;73.41022;136.5206;106.7055;105.4901;128.0115;75.98996;132.6104;118.1144;123.3207;63.8231;133.6701;111.0874;89.15719;147.8333;123.1554;145.3642;74.19296;190.6442;203.1826;155.9598;135.556;167.8129;36.70142;122.8746;47.58037;93.07545;64.4724;82.52836;59.82417;129.2248;66.01949;60.43531;59.58613;115.4344;86.85154;78.56683;77.70559;137.7493;131.1228;99.2258;121.4865;121.676;159.2336;78.83816;51.98825;76.84312;77.32512;111.7087;84.03985;128.0372;63.47484;79.45908;201.4793;153.0899;69.11967;110.7201;98.21723;154.9958;147.998;61.63748;94.8829;76.72242;97.40092;82.08869;94.29597;112.8479;75.9444;89.15063;67.18849;99.09669;120.1936;116.9247;67.99717;49.3754;114.1822;79.74998;58.56977;145.4587;76.77386;65.35404;111.7956;171.5736;89.28008;102.2512;141.7603;155.6503;52.50877;165.0801;58.06016;96.04622;131.8461;151.9674;120.1238;163.5716;154.7908;127.901;83.98963;139.4995;205.8306;144.4222;167.8153;90.93515;123.5297;104.5234;54.77724;107.2769;183.0276;216.8632;72.70472;137.785;146.0902;94.85152;114.1433;99.88599;150.7035;139.1248;113.1215;128.6348;91.03393;125.3092;53.07252;165.046;200.9764;
116.4279;135.2735;125.4872;129.0318;115.8293;40.17749;77.28903;53.43408;85.14484;105.049;91.53396;66.50799;104.5898;70.88459;51.76415;92.73179;126.7018;73.68483;89.8697;61.7007;112.1513;108.7141;71.7026;152.0627;113.7555;126.8406;88.398;90.86997;88.79726;96.19209;106.347;128.8251;130.8905;61.00384;82.84191;171.6314;152.8765;71.27791;140.7008;150.9122;191.7524;124.3667;87.41007;70.59669;92.06358;98.71648;78.56841;85.35377;160.4859;70.00437;119.4743;61.38666;72.36795;104.9269;126.3637;97.65501;94.03967;103.3142;73.62393;94.49567;167.326;67.82249;75.17061;153.3835;97.7709;49.37447;69.34512;129.1199;107.7742;48.88475;104.3898;65.45038;99.8486;142.7996;149.288;82.84097;152.5046;132.9174;91.70358;102.5785;155.8975;188.2283;187.4795;129.355;67.54684;121.6791;93.39495;81.89018;161.6719;143.2576;145.9799;66.314;153.1718;149.2903;63.0515;132.1814;66.23106;98.62483;145.9861;88.50034;154.816;86.47382;156.1642;96.38738;197.6398;150.9393;165.6416;51.6511;183.4511;77.51342;126.4692;71.93515;178.847;82.32408;102.9834;115.747;55.97059;116.2218;118.9142;166.393;105.145;105.6707;105.5999;115.6626;148.3817;116.0239;143.7691;94.10038;129.822;135.0228;95.40747;114.3201;113.2701;44.76915;71.07881;43.51245;81.26252;96.03234;91.17618;57.08734;105.6895;81.52525;46.36246;95.63672;125.0367;61.41494;60.73867;52.6506;116.0743;113.7882;63.63855;155.5794;118.4108;102.4814;79.46611;64.8844;77.69599;100.4803;91.11746;118.2558;138.9707;59.5857;62.25949;157.6218;148.1493;76.82443;134.5562;135.5047;179.5792;113.4162;91.6952;63.22858;91.73517;110.7488;73.56925;92.27321;154.043;57.89107;90.00635;56.74876;75.18713;110.3284;117.7204;104.8851;86.83146;90.37498;76.48872;80.02547;151.873;68.41763;63.08562;135.9792;110.7762;46.65604;53.25303;122.7376;103.517;59.65437;103.8302;53.18948;83.41616;142.5654;165.2396;82.0172;152.0064;142.4904;87.03094;105.0022;156.7068;165.2904;154.5157;128.4442;70.02945;136.9065;90.38924;85.6655;152.1758;127.9485;150.0025;54.28961;138.4029;150.1727;56.40766;108.5975;111.1835;129.0268;101.0026;88.73167;150.2536;125.822;135.2834;85.2756;150.6197;187.4564;142.6559;56.35401;146.6815;85.50935;115.562;109.071;184.4622;93.65084;84.3429;160.237;85.44809;116.191;128.8956;113.0059;109.8024;114.6089;120.8565;120.1466;113.5316;148.7311;103.7109;72.20634;
76.04429;145.2853;122.3974;142.9708;81.00813;69.81914;87.13097;125.6969;88.01163;63.00038;85.31952;178.7141;115.9888;76.68253;81.05096;67.62382;91.22515;78.39455;82.9919;147.6593;166.0655;110.5621;145.0468;99.65144;97.28262;61.62098;126.1225;166.6629;54.1488;155.0531;110.0321;176.1467;153.1886;119.7571;41.7638;108.3372;85.83125;73.95129;121.9524;122.8763;123.7876;82.27055;103.0357;184.5432;118.4286;159.6879;176.337;143.4602;167.9449;174.4155;54.78608;91.04259;157.2527;90.858;116.4347;140.0957;179.9474;161.8278;197.6269;128.9028;69.35068;117.2988;71.66335;87.25685;127.7011;117.3125;165.0169;66.49701;133.6123;60.77552;125.6982;175.8817;158.9227;62.14776;89.97607;108.5353;148.4709;93.81636;116.7475;110.5241;163.2073;82.82915;143.0723;108.8766;124.8572;63.97958;119.4548;100.7614;178.1681;140.0719;98.44869;94.33598;51.5663;171.6651;166.5944;56.34125;171.4478;93.79147;49.73152;93.96647;130.8559;159.417;91.17418;83.12136;108.7916;120.2314;96.60757;130.2437;118.8837;146.2271;156.7764;131.5957;183.9213;70.33652;110.0692;74.93958;62.88124;131.4758;96.5688;99.35212;94.86124;105.3143;132.4482;97.69358;85.73072;114.419;74.20352;52.27168;96.75001;158.9182;129.4508;136.952;71.25193;90.1234;81.1492;126.6885;94.74026;72.32024;88.42156;174.7585;112.0521;73.84006;84.16388;51.8218;93.38129;75.10257;68.53711;121.8795;130.5946;136.349;121.5123;80.16745;88.49075;53.58604;106.7293;168.7184;58.10027;150.7752;97.04529;161.4695;177.6182;131.6777;43.8007;103.8454;75.09509;99.48053;107.4356;122.049;129.3072;92.70635;104.3916;181.8341;114.4438;161.3561;173.037;120.8326;168.1967;167.9787;42.08657;73.95569;122.8786;118.25;89.7589;117.6533;164.2684;154.2131;172.0063;132.733;77.25803;114.3248;68.26049;83.30293;141.2655;130.5988;168.469;63.60453;131.0272;76.95393;123.8251;183.879;164.1672;76.14557;92.00146;104.7816;148.8015;95.77647;123.547;97.59096;154.2463;79.57053;121.5482;90.84487;104.1496;79.97781;104.1912;88.06203;162.5675;132.9896;80.6264;97.61664;58.4142;168.0634;147.6397;56.66687;177.1139;61.86224;73.7632;107.1137;103.9213;128.242;58.1235;87.61018;108.0574;142.0222;97.8846;114.7789;109.2687;139.3881;133.0779;112.9708;160.7235;54.30166;158.0543;54.78082;61.38419;140.6351;79.82719;83.11612;95.53737;83.88972;97.09441;120.4593;74.72951;143.9755;59.31625;64.9146;
42.68955;73.39214;87.48689;84.92075;101.7695;113.159;139.3636;69.42635;84.81351;165.3296;85.08937;142.9908;130.5292;104.9153;130.0472;173.1394;53.71445;74.09669;180.4228;77.38811;85.53752;108.4771;137.6073;163.3378;159.961;165.8244;91.67511;107.43;78.05581;113.0942;147.3182;134.2488;193.6627;79.62199;181.2497;66.39587;162.7536;134.488;174.4334;83.47273;89.95951;67.07739;126.1277;97.045;150.8355;98.01422;120.3901;76.86352;143.2181;119.6329;179.9052;82.65228;107.4615;140.0121;178.9649;151.7796;124.3011;107.4245;59.0227;109.5624;133.9345;48.79879;148.2437;60.24806;51.53351;54.97437;136.2441;157.0933;84.00687;84.38232;121.1524;122.1552;80.60321;115.8761;88.75375;125.0888;131.9854;121.2792;158.1294;68.91119;135.1341;66.17725;101.1888;86.54189;97.23906;94.70919;70.60851;124.9783;124.6178;133.0476;97.19604;100.8747;96.74585;81.67001;114.1361;162.4032;164.2301;152.636;100.054;76.87328;109.8635;91.08232;95.04025;85.54455;90.30233;131.731;92.42972;69.05346;111.478;56.47871;73.70716;73.0417;89.99792;124.9251;174.1032;150.6542;125.9354;122.1438;104.1507;73.30807;135.7898;163.7943;56.64361;94.18227;66.19564;133.974;138.6611;81.86082;42.41389;72.14812;76.72517;71.73025;100.7983;116.6806;122.9529;65.12811;67.7356;174.388;85.15224;147.386;141.6162;106.347;144.3648;171.4327;56.85959;49.44996;146.1762;86.88409;85.26932;101.5384;142.4397;180.9501;138.8604;150.9639;88.36908;101.5798;77.06195;102.0851;156.2646;134.8027;196.0269;82.78149;163.2289;52.26385;159.7368;141.3645;151.7752;78.28712;74.53297;77.68402;124.6219;97.78054;161.0018;102.1461;130.8022;76.40974;153.7141;92.80053;144.5312;90.92957;107.6429;135.1687;180.5058;169.7909;106.3808;93.07588;57.55214;109.3874;124.1709;37.88469;147.4831;61.363;47.134;63.43862;130.4257;142.9659;81.69968;83.76186;110.2317;105.4568;62.97929;120.7932;89.88041;134.0758;132.7626;119.2362;159.901;69.27187;135.8982;51.92077;82.87088;101.7939;97.25474;84.61757;78.14869;129.8468;106.6737;117.0252;95.30618;100.7067;88.4754;67.3481;83.06715;192.7136;129.4416;113.4941;71.24637;61.82067;65.36658;118.8757;85.39767;85.08209;59.23925;155.2939;102.3438;108.5411;97.94401;94.03194;86.13656;102.3954;83.39626;91.724;145.6572;136.7413;119.8503;146.5899;100.4699;73.72367;118.8316;174.2696;97.46485;105.3088;89.61182;124.1518;180.945;115.4561;
64.30344;84.22592;100.1289;96.15984;109.0422;127.0738;163.5986;103.6739;129.8368;74.19749;132.6413;61.36982;115.6198;114.6793;150.0684;172.761;64.84647;80.9612;69.04638;136.5561;127.4697;53.71051;122.6384;75.39956;74.25529;68.24073;162.2753;115.7964;92.83343;75.63672;102.9427;127.743;88.37327;118.1601;82.37737;162.7431;152.7312;152.6454;144.9958;100.1886;123.8133;75.7096;77.69411;118.1179;78.82071;96.69756;59.72143;134.3758;102.2763;82.22103;81.75659;141.9202;98.26974;78.21603;93.16683;195.9693;154.538;150.9027;83.20768;107.5313;119.8464;83.16232;53.1913;69.33476;64.81294;152.0769;71.5607;71.51773;77.22564;74.85839;98.37488;92.01716;75.4911;103.373;150.1315;106.5318;147.714;115.5167;79.94804;77.21122;94.85848;147.7655;66.67623;119.4296;72.17648;169.6366;110.811;91.44219;64.45062;78.64646;94.88821;48.27503;127.0467;110.84;117.0418;82.76665;94.07009;182.6282;77.13813;176.2347;165.2218;140.2254;125.5377;195.8164;49.16214;77.78481;128.858;95.71213;78.84044;124.576;115.5507;165.0445;143.9651;132.3506;82.64281;121.6926;105.9013;138.6326;130.5258;124.4722;172.2726;66.86283;137.3827;76.39805;165.2951;128.3347;98.8144;62.71448;66.4302;90.58915;112.9993;99.51332;107.4173;109.4122;162.8002;86.27868;154.1857;75.03184;127.1358;65.17204;137.4677;123.8265;164.2907;157.4298;71.6542;94.09166;72.57909;121.3551;150.1789;71.88563;125.9506;51.82633;61.42788;62.05681;143.5458;92.11144;98.65943;79.35921;91.47105;112.556;88.11095;129.2741;95.14078;166.2322;147.1193;131.4219;137.9027;80.38332;145.5148;79.58693;75.4426;122.9016;94.83119;103.3626;64.8541;117.9202;110.6066;99.18642;87.43202;126.2578;117.593;98.52192;91.36941;153.2265;135.7502;140.9735;77.85432;90.53176;113.4855;80.10281;46.10801;59.5145;61.3353;157.6296;81.37835;75.60625;70.4341;58.96212;99.1948;83.12611;92.77729;103.4255;155.8707;117.8265;154.2962;114.4981;87.34171;66.17755;98.77035;163.0965;69.85532;107.2084;85.75608;196.6709;116.0486;72.43118;52.53244;71.52213;89.16451;37.12599;120.495;107.3035;102.6026;55.14708;74.5592;149.1324;109.6294;170.175;142.557;89.96331;145.6276;161.5914;90.5638;72.35172;171.329;100.6451;109.2857;116.4117;136.6686;120.9907;162.295;147.8239;126.4322;128.1811;75.65801;134.1705;145.2038;142.1073;143.4589;66.52611;120.9883;70.73166;171.578;186.5543;141.567;60.46362;
92.52029;166.9709;71.8877;78.22195;78.82198;202.1989;137.9733;140.9649;85.8455;111.9957;66.35763;88.28146;94.03197;66.05892;73.8929;170.4426;77.28368;76.60251;74.42429;61.83539;84.2439;98.06645;71.70135;140.8968;133.509;124.5777;79.3467;122.2408;91.23219;72.59489;126.4004;175.9721;69.17052;111.827;78.22915;184.6243;123.9286;99.82228;54.41096;94.75519;61.60704;99.06886;103.4117;118.79;136.9023;60.26345;113.866;143.5724;55.66254;116.452;133.0294;139.7144;135.4751;138.3746;73.66833;84.02908;176.0138;100.1475;69.50643;91.1333;182.1926;117.0785;209.6593;169.5488;93.76092;173.2779;70.35375;110.256;122.8747;184.2164;175.2838;64.63985;144.0234;91.29305;120.8868;150.5465;170.1032;69.35966;73.09903;100.4376;116.4351;102.915;117.9481;103.05;146.5396;109.8615;125.8183;105.7853;102.656;67.96503;78.37995;140.7366;171.5941;152.0829;90.90387;106.5878;77.33338;135.7872;142.999;60.69436;139.349;81.72457;63.97718;78.86446;105.5567;175.8445;94.75697;94.8438;123.7903;92.81807;106.8442;98.99905;83.26551;114.3615;138.3225;149.3816;161.8171;63.17129;178.7456;92.76548;123.2756;123.9431;93.5117;81.22771;86.9437;89.25322;135.7811;124.949;105.8221;170.8706;67.52816;84.55412;96.74866;189.4825;155.6176;169.7275;78.55247;109.9901;76.13844;96.50842;89.13798;73.64074;59.25255;174.485;101.0875;86.59335;90.55748;62.71866;92.65244;119.0982;83.64803;150.442;150.2762;128.2741;108.9904;144.8012;74.43349;79.57554;92.36459;169.3043;80.40022;115.6588;69.3476;187.5589;143.681;86.40149;68.88852;116.967;55.50559;98.32242;110.5604;123.4692;128.6778;63.73763;99.35583;149.0824;77.06347;130.9584;148.5233;139.4435;144.8797;158.3077;89.43031;92.85391;202.6854;108.1908;85.42899;102.6049;153.4547;135.0042;172.5245;161.4704;97.22499;167.9402;61.0654;121.5451;136.2979;158.9502;194.5611;85.00563;139.5485;93.08291;119.9039;147.7612;156.2341;80.05769;66.16389;103.8234;135.3935;108.4332;131.2741;111.4459;149.7681;121.6836;141.042;117.8005;123.247;74.62173;95.23746;154.9098;143.741;172.4242;66.2721;111.3051;58.09016;158.2838;154.9977;80.84876;177.661;56.91436;71.01115;99.21114;94.97411;157.6192;75.14828;90.95052;131.8469;98.31286;76.19724;105.361;137.4931;100.204;154.4609;153.6188;168.209;58.45038;140.7108;92.43005;83.85241;147.0892;118.6707;114.7222;80.30082;97.47186;110.5183;97.69521;
119.9247;98.08645;99.60292;119.9413;86.36662;140.3471;78.29218;105.289;93.76684;87.87655;127.7613;139.0061;45.96265;43.78225;127.1567;70.8411;97.05538;134.515;88.87022;57.461;103.4244;129.5653;67.30318;103.807;142.3483;151.6935;54.30088;117.9281;60.44574;90.09921;128.9602;169.2374;115.0804;173.9268;137.8959;113.1104;70.08311;169.03;158.256;172.1951;157.4986;72.15336;122.3267;148.0008;85.14274;101.703;173.5848;149.8283;112.301;132.3952;118.0607;84.46784;95.91293;106.2049;109.6397;110.1175;118.7838;167.6642;137.8333;127.3984;66.36403;125.435;194.1214;138.9048;100.4733;191.4875;67.2897;178.6819;66.92495;158.0452;116.173;132.712;167.8901;77.15815;131.7522;142.8314;94.99595;54.99189;142.9609;97.64784;130.1622;133.0844;125.1562;128.657;70.61338;136.408;169.2094;170.8203;133.6293;176.9789;35.71679;83.41036;55.12689;89.32479;83.36744;91.75023;76.10155;126.5077;69.19926;62.04612;64.12447;125.3964;61.58763;78.87839;70.06597;127.4296;94.99062;112.2697;161.1673;76.44473;145.9518;87.80705;100.8678;73.44723;64.9759;120.7289;113.4194;151.8746;87.96709;49.96815;206.1262;164.5755;110.7954;114.2513;117.2773;133.2872;155.1544;66.5937;105.4563;96.49889;96.5423;109.0329;83.45284;113.7719;78.88275;100.1382;111.5745;98.12566;114.9771;137.9805;48.2273;43.66994;133.2258;78.89159;76.30056;130.1501;78.30431;52.3594;120.619;109.7464;85.50829;99.71366;145.8828;158.7159;51.28408;125.4071;66.78801;93.08881;131.1984;170.1591;96.03822;172.748;132.7632;97.0745;66.04382;141.8852;154.4209;160.5838;175.3591;82.33698;109.6708;140.696;87.32303;103.2225;177.1649;159.5384;86.44641;128.0364;106.0258;75.81026;111.576;88.9834;129.58;104.3632;119.0207;162.663;139.3908;134.1519;68.07305;127.7293;199.0656;144.1025;90.90668;188.4381;72.68251;163.5297;61.43529;139.7375;109.5269;114.4015;187.5868;79.00141;124.431;137.8943;91.595;55.30156;148.1087;109.3115;111.2564;127.2242;124.5818;122.3756;82.35101;124.2326;189.3649;154.2044;133.8795;171.8347;36.51125;88.89163;56.68548;91.26252;72.92727;95.94509;72.3716;135.7825;79.0019;60.06839;67.86216;117.6718;46.40845;77.39218;75.22511;104.4626;126.0614;60.84626;142.0912;84.07523;183.5873;77.59704;96.26148;92.74962;92.73139;103.1883;98.23816;152.7;74.24944;74.89066;194.3923;164.339;88.87668;109.6841;125.9294;148.375;116.2479;98.68331;
157.4299;106.9384;68.35295;87.42439;87.59566;79.74617;104.0752;126.588;138.6121;69.51387;105.2058;71.77094;113.3643;112.6405;151.0062;59.38329;78.88409;65.31133;97.97147;68.99618;112.0131;70.0797;62.62258;136.6354;134.4737;73.01331;80.60734;158.4858;128.3923;63.3354;198.6934;74.13992;72.49644;96.00816;122.4543;94.88881;135.7412;106.7185;93.26194;67.99471;155.7168;195.6617;185.7151;156.9075;74.58035;135.1694;116.8431;100.2426;137.5511;156.0328;168.6017;64.47282;137.1594;144.4482;77.29456;80.90459;88.83749;88.54803;122.5458;91.51363;109.2743;113.6669;127.4547;67.05428;161.478;159.6914;151.2081;78.25437;183.7769;63.49651;156.4611;107.1501;177.2777;91.70998;123.3142;143.0851;89.05965;120.1063;148.4186;104.2881;100.9311;93.56316;134.0242;99.25622;113.3351;116.7472;135.8391;95.10056;161.4426;167.8554;129.0016;159.924;135.4391;44.55805;143.4985;56.71351;76.29049;67.28473;60.2421;61.84462;93.4491;54.21222;46.39134;64.87984;121.7624;75.14825;79.81693;73.78661;122.1753;101.2136;83.98907;175.1479;108.9907;166.946;107.6663;81.04839;84.57635;98.25076;131.7278;100.1902;174.4387;59.8445;58.09755;164.7989;104.7368;93.00592;87.93204;126.2075;147.9811;126.1428;83.84731;74.26301;85.8371;95.85042;97.59644;126.7475;171.4626;67.88342;105.8496;81.16165;98.87399;112.2405;151.0817;58.6865;86.10172;90.82713;115.5601;76.89446;119.1365;75.34978;70.13859;162.015;165.0587;76.67779;75.97408;169.5767;121.6412;62.09814;168.054;77.05674;61.92742;113.8086;141.5966;75.65076;133.5278;121.0759;84.59481;67.86846;183.8447;193.1278;185.6504;163.3444;62.943;130.6097;114.4791;100.3486;143.4332;194.4031;191.117;68.46878;147.2749;147.4785;83.54303;101.7018;108.1236;98.49474;118.7306;93.43395;105.67;118.3457;106.9973;75.69747;142.1376;164.6707;168.2845;65.06501;177.266;76.17303;151.1679;103.9369;203.5125;95.76086;125.4955;146.4205;78.55132;122.2545;150.2947;111.5446;103.1122;109.205;150.2823;109.6484;119.3152;121.3663;150.0559;114.3457;187.112;181.4557;125.0863;162.4594;131.423;47.50506;86.13564;47.21033;83.65144;106.4905;66.33254;47.48042;127.3658;76.02538;76.78414;69.03124;126.7111;55.2831;52.83535;75.13237;86.70881;118.1739;105.9719;160.3169;121.0815;178.1352;112.569;101.7725;90.73333;107.8888;136.0865;132.798;141.2474;82.04892;66.28757;148.4304;104.9145;67.3448;92.61887;121.1416;
158.1339;60.62996;138.5368;132.9547;170.6199;144.7153;89.84338;53.43618;85.49113;113.8269;118.4138;50.92771;141.3991;80.9173;90.88036;76.79304;123.4252;144.7733;81.94398;82.37178;140.3023;134.1098;66.06658;67.72079;78.75687;92.72491;110.6092;93.14837;104.2292;50.60533;146.6644;74.84309;90.81795;98.14085;106.1303;100.3485;72.1702;128.2819;125.6471;92.21971;108.5795;107.4508;70.72865;79.95874;65.98956;151.5564;148.9493;109.6008;76.2465;78.36322;78.04589;118.755;50.10299;103.3184;62.87811;123.2847;96.06946;84.89127;112.4305;51.67902;97.42393;104.5654;100.0543;98.05424;192.8566;102.5394;148.844;112.0686;90.51534;62.00943;118.2785;104.6663;91.07364;105.2771;65.01422;164.8161;141.9112;109.6084;84.82598;98.54728;76.3762;68.46863;95.02586;107.5607;151.3096;90.57421;69.48009;108.4827;77.83211;114.646;123.8664;89.71551;102.8135;141.1124;70.2672;80.75476;157.0956;83.49092;91.07964;109.9507;130.4855;180.8485;165.2068;119.8356;100.3759;113.9124;65.64108;124.3425;108.9993;127.2342;202.0221;47.80153;141.9881;74.96774;115.7972;192.5311;98.34109;92.78591;68.57449;77.70705;143.6003;110.3223;152.8913;94.39861;170.7475;103.1403;165.3864;75.02393;185.4105;67.91113;126.9535;125.385;167.9329;169.0051;89.35148;53.99484;90.46088;138.9975;139.3566;50.85494;168.5427;101.2173;93.83137;79.41575;131.2474;157.7777;76.10696;93.21128;131.8483;118.5727;67.17277;79.27171;92.54774;100.7707;108.7418;94.73378;120.8353;49.01215;153.4321;86.93127;105.6233;107.0682;94.46378;91.45883;68.93994;146.54;123.8784;91.07027;109.2004;131.9153;86.71333;77.93858;83.99214;173.6492;152.0214;110.9532;79.5977;88.31506;71.75102;129.5443;45.48688;86.34663;63.50517;136.7396;106.5696;85.68063;106.9756;48.25582;103.4157;100.4221;100.1318;102.863;213.6874;115.6492;143.911;112.9834;90.61068;74.71178;116.2612;107.2293;90.36118;120.9338;77.95473;156.1216;155.4948;126.4376;82.13668;91.37237;79.43217;81.12563;95.31992;128.8802;147.9666;74.55543;69.9053;125.2216;87.30953;115.559;118.1364;85.18655;108.9663;136.2925;85.63573;56.84905;171.0908;79.64781;106.319;132.3964;177.6101;186.9137;151.7671;140.6991;79.65269;128.6908;78.22638;132.4187;112.639;131.9506;213.4413;55.65367;171.3984;74.05537;114.9046;167.5939;102.6506;67.02768;59.04639;106.8985;136.3078;124.8751;143.1996;119.7454;152.214;92.67462;152.3864;92.52126;
151.7678;48.90665;68.85778;144.2623;110.6869;92.2486;93.3033;134.7742;146.2656;99.50165;80.87296;90.33761;73.59743;98.2429;111.5381;143.3466;134.5476;69.00739;114.3914;86.84327;120.7826;114.8521;150.5284;76.10986;74.03057;69.24313;121.6821;82.925;118.4868;63.67925;66.81831;140.5723;145.6662;62.58325;84.44801;147.6583;125.5729;62.35928;172.4256;79.91402;63.33449;87.57294;131.1355;84.3651;118.5223;123.5953;93.9853;73.0872;143.8343;192.6803;186.7474;157.3977;78.96068;129.5908;114.0518;118.1351;126.766;153.2386;178.723;65.39492;140.2218;122.7385;86.45872;81.14436;99.23298;83.8954;127.1465;73.99677;111.7194;118.7787;112.7386;82.51225;140.2837;122.0314;147.6082;66.72697;154.6782;69.4989;167.4914;108.632;169.2794;100.1099;123.0742;143.2152;100.9757;122.6651;149.7236;130.3391;90.90313;75.24101;136.6487;106.9713;113.4804;98.49294;155.4516;97.70748;174.1307;160.3119;132.9032;138.8999;139.7107;46.43983;125.4448;72.98001;61.39898;45.2025;59.16586;53.62515;73.64381;58.55856;55.10868;47.68423;131.5859;83.99271;79.05808;56.47673;122.3068;129.4908;75.73941;181.5704;86.84492;139.1053;104.026;68.89235;69.84195;86.78017;130.4523;86.37614;182.0494;60.84068;64.10862;140.6522;122.377;109.0414;95.21783;135.9577;129.227;108.3957;63.27861;77.43035;71.68004;88.20118;119.7165;113.1669;161.382;72.93037;107.8526;63.39203;115.4833;137.4739;136.7702;65.78567;65.53759;71.22193;111.9759;63.51605;98.05421;62.18291;67.18083;140.6398;168.6481;74.60007;83.20055;146.9266;136.293;75.76641;177.6458;82.08006;48.97393;94.902;113.6021;74.45918;114.5661;111.8393;103.5112;55.23273;166.7858;198.888;184.9212;131.9255;74.35049;154.0481;104.1314;109.6891;115.4593;167.8132;186.2539;57.88095;124.481;131.2453;82.6112;83.03805;112.0605;96.40689;126.8776;74.19874;119.58;135.8029;116.82;81.8896;122.3546;141.5856;140.2103;63.5739;157.5594;68.335;173.9734;88.49339;186.0293;103.2339;122.835;119.8847;93.74797;145.2153;138.1644;118.0741;81.36887;85.5563;143.2434;97.29718;99.36693;106.1282;172.2779;71.73935;159.4507;151.4154;106.9392;117.2332;104.624;75.05534;107.7886;73.01858;73.61804;90.5741;78.30588;74.61971;95.62204;77.15466;69.51432;78.77513;108.6461;75.5779;71.61664;48.58663;114.661;110.5046;76.37127;165.3625;113.4905;150.5991;82.43021;80.85556;82.74374;101.7259;160.3808;126.3619;
52.60777;124.2847;165.5197;58.60402;142.3743;66.79928;136.3188;99.97124;89.85096;65.76646;88.67555;74.31113;87.51788;106.3018;132.5971;105.4648;80.94461;83.66283;160.6175;95.10518;146.8959;116.4557;138.9722;151.018;155.6477;68.78218;49.44331;166.6577;89.29745;65.28429;109.1022;169.1591;156.9218;179.928;103.3952;109.676;137.4101;101.1599;104.3679;94.72307;105.2498;196.5141;49.20229;174.7382;101.8921;147.8598;248.582;108.0517;93.14899;85.62685;126.0275;137.3193;121.8733;138.7333;138.193;106.8675;71.81262;188.0092;73.86324;123.0322;74.0444;103.5569;119.7747;155.1124;139.1524;103.0014;95.61697;59.56871;173.7942;123.4383;45.29734;113.6854;74.81017;76.88749;88.03539;129.9563;159.6936;83.2197;102.8043;89.15857;125.8424;87.89449;106.6665;98.4403;146.7268;107.086;167.0475;170.8801;62.94577;156.2139;56.50281;95.58303;93.37318;72.57308;87.99884;94.5966;109.7673;147.2883;73.47924;115.7936;149.1985;115.6023;70.54165;62.12457;131.5309;156.6779;125.5685;107.0417;113.7366;93.63815;173.1754;62.30832;88.73042;91.9265;170.7961;85.15494;117.2399;80.24291;94.82507;47.93095;60.79739;124.8813;109.5527;170.195;132.4776;107.1906;104.6865;80.18498;59.28096;123.8504;190.8281;68.78735;160.5194;49.96662;147.2196;115.2282;108.1207;51.50722;96.85621;64.99988;65.21256;89.80202;127.1825;115.8821;83.77972;95.04736;139.2361;74.94616;168.2056;97.46839;161.5404;135.3641;147.2983;78.0764;63.26167;185.0124;89.08549;56.36573;103.6773;162.3796;164.0239;178.839;120.0874;124.2634;154.2518;84.46258;106.5439;107.8866;122.5683;171.0013;53.86759;161.5265;77.6804;133.5295;232.0391;119.4557;94.18846;95.99831;105.4619;116.4893;141.4395;121.8813;153.2808;94.53433;62.92699;198.7912;81.90748;139.9946;80.72305;95.13625;117.2645;154.8405;148.5009;96.58966;115.9235;70.08322;179.7913;102.552;44.90914;123.5209;87.63442;59.75223;86.94702;115.9534;138.0018;75.13228;95.12669;104.6435;129.5299;92.91602;91.57545;80.55379;156.1053;90.13042;179.9607;150.1778;54.64482;166.0503;63.56382;110.5989;100.8553;65.55285;82.14673;103.1889;96.07781;114.6787;98.11528;112.6146;162.9664;80.85358;67.65802;84.0531;152.4835;97.35057;168.3013;87.19706;85.35466;108.157;122.1339;71.7556;101.8341;85.61974;173.0429;58.68183;107.8743;79.13368;96.2142;80.2911;65.846;88.80943;134.346;149.6745;140.289;92.79594;101.7555;110.1819;
146.5432;125.6079;58.7274;114.5643;121.7189;84.61414;93.19003;85.27251;124.7783;155.6591;108.3711;91.47673;157.4749;90.13986;189.4253;77.30249;100.0621;109.8811;92.54754;116.1866;101.2106;115.4076;156.8003;109.4789;138.0646;114.1818;73.29848;84.14799;101.0277;136.1732;159.8775;121.5703;90.70497;73.66508;78.69505;127.841;80.60303;85.19872;59.98549;144.9066;82.27747;99.85469;81.02493;47.1476;67.7822;88.3337;93.62421;98.34786;143.2355;121.15;99.43468;119.6036;80.0435;55.46242;151.3122;166.9291;60.59819;121.3892;80.96688;154.5311;154.1777;64.97517;60.00401;89.68925;83.93588;55.97911;73.54434;149.3434;146.2574;43.60137;99.4856;136.6642;107.1509;167.4923;124.9518;93.27411;142.0465;196.323;100.9494;77.11559;155.3368;94.52795;81.04991;139.3095;184.2271;160.5061;196.8606;144.448;116.7092;107.963;73.20202;132.0201;145.9172;115.1403;202.874;56.74822;150.3654;62.84642;118.6467;183.1015;157.7767;86.42461;61.79699;84.9158;102.9797;122.3562;127.0474;99.19212;120.1442;89.89987;157.3393;88.26104;110.7972;64.24723;102.1903;100.9237;159.0985;154.2214;102.8927;84.90594;66.31168;140.7302;129.7222;60.30243;181.974;55.11975;72.666;70.88573;147.9247;119.4101;66.42524;124.0494;153.7751;95.84582;104.7274;82.86385;119.4868;130.3996;122.3683;108.2846;168.2973;92.21073;201.1504;93.48059;87.27067;99.94906;111.8144;90.51031;108.7619;128.3141;144.791;96.17461;133.2544;111.342;70.1869;108.5636;112.3475;153.2213;168.3614;117.3051;93.83976;73.11782;85.84956;133.8318;105.5919;99.00571;66.49937;141.1536;80.27299;84.85553;91.83295;57.209;73.77579;93.00177;98.97849;117.343;132.8516;116.4962;118.3054;91.99309;87.20771;66.65488;136.0744;151.3601;67.70798;124.7303;71.06174;174.7949;167.9483;76.31539;64.40542;84.39574;91.58228;53.13148;83.57713;159.7291;169.5693;56.01493;109.6693;130.5719;113.8797;148.203;130.5084;99.57309;150.5319;202.2913;105.4342;92.32173;150.4665;87.38942;101.5999;112.6527;184.8279;183.5312;181.7987;127.5716;126.4994;111.1192;63.79961;150.7971;159.3219;130.0853;190.8813;92.26767;181.6861;93.27015;168.2845;207.0429;179.3408;95.4901;89.27219;70.5204;143.8369;108.7296;132.42;90.6507;168.1556;80.56411;168.3991;88.12771;129.5696;82.66489;111.8451;107.733;145.8729;190.8638;61.16366;93.44864;62.54618;114.2905;175.8662;78.52499;152.7508;97.73989;72.73329;63.09653;
165.8993;88.276;146.9681;77.94123;97.39774;130.2549;113.5851;93.82848;62.46081;95.68134;104.4952;115.1843;133.698;91.87296;113.4806;88.45044;144.3339;88.37658;152.4344;78.7548;74.52423;141.3722;155.7377;161.0337;79.75026;69.64133;102.0633;145.6534;119.2812;52.55;144.274;71.04797;65.12421;62.4835;162.1983;138.4063;93.22501;80.19948;113.026;87.91376;83.73383;76.32652;103.7128;134.2475;123.3304;154.404;131.1977;68.58598;152.9527;86.60177;102.7833;117.0665;86.77551;94.92224;55.24181;97.97763;158.2079;86.7452;101.8543;146.61;94.13278;69.86019;69.89608;140.9314;139.3887;166.0774;83.15514;93.97486;61.05767;90.15067;65.33999;88.48005;59.62135;155.4704;71.6057;93.57372;98.08198;46.33567;69.58553;90.16451;90.47474;109.6812;178.7163;133.1009;88.13033;136.0181;92.84651;72.75437;109.8024;125.0956;99.04688;131.8932;68.25002;158.4796;135.7988;91.98505;63.19649;71.35157;103.1072;66.32114;112.3987;121.8177;134.3335;49.14795;87.58951;123.8878;98.01202;148.9384;138.1763;139.6233;121.2358;150.0553;71.08511;82.62872;162.712;109.21;91.88132;140.2965;134.1419;141.5181;211.52;128.9268;87.6452;126.9806;78.23478;113.2617;119.4196;126.7577;195.6648;92.07098;146.5583;81.47338;99.76637;166.0523;107.2527;111.9147;66.01874;81.44165;114.1116;135.6544;163.9659;92.16108;116.801;76.92054;144.4028;82.99903;136.8906;84.17378;88.02922;170.9485;189.6254;159.3652;89.7963;76.56703;92.12558;130.5779;120.5696;55.52917;163.6403;80.16627;81.58574;68.28769;163.1563;142.3138;92.61574;107.1234;101.2715;102.3929;86.23048;66.4362;115.7168;155.7667;149.7141;152.6486;129.2034;56.41656;152.8169;84.73058;91.97674;123.4982;100.6291;117.9303;71.93304;94.0174;169.746;98.043;95.15965;131.0282;90.23892;75.53966;80.84248;153.6214;153.8346;178.167;83.79508;98.11891;60.85893;110.3968;52.36712;104.5091;60.373;141.0476;82.87669;111.3993;116.0445;47.15132;65.68258;76.09628;83.54902;109.6968;164.306;141.0562;102.4695;153.6865;108.2793;70.58335;119.4475;138.589;92.44582;117.1366;64.94054;166.9776;156.6369;76.10954;82.05231;88.56821;68.6367;51.4213;88.15513;177.4128;141.7054;70.39378;81.1129;111.0155;73.01248;172.8531;171.2632;114.0893;171.9364;144.9917;62.70835;76.59808;142.9845;118.0149;70.69899;125.3449;168.4211;188.0564;190.4568;129.4085;87.0483;134.5743;55.79475;138.4401;120.4459;130.4751;
127.5559;150.5514;46.86538;125.5338;76.14628;80.81149;128.7771;86.37447;87.16705;100.3939;80.00182;150.2218;83.08807;87.21507;152.298;100.4977;77.39133;75.58828;195.5264;146.2382;149.9493;84.26273;127.5461;74.25285;151.9697;83.26859;68.17815;69.6278;175.4338;58.5746;118.2333;86.74474;57.83264;70.86344;77.16565;102.3637;128.4555;206.6084;151.532;125.2741;129.4614;85.36198;94.5069;128.2835;113.6142;54.58672;118.2183;80.90993;132.1892;118.9716;67.71951;45.19581;87.82249;106.3447;86.3353;80.79419;148.4876;133.6407;52.74175;122.1318;147.9857;88.86762;157.9177;134.0703;120.1049;147.5887;141.1057;54.97709;82.61462;149.6478;100.7835;72.56609;107.8518;161.8859;131.5866;199.9685;106.9154;89.08963;150.0745;86.80578;118.6004;120.5154;172.9049;190.5103;78.00946;153.9295;95.72632;111.8828;218.728;135.4814;82.09191;81.91657;101.9888;92.56817;154.5291;127.3552;111.4188;136.1861;81.894;170.3648;106.6344;176.5916;85.95416;106.6116;144.3813;149.2057;202.5503;102.7985;54.39394;60.7689;137.1367;132.9852;53.54913;129.3407;52.61864;65.35854;68.61079;143.2301;136.8477;73.96545;112.3465;95.24557;112.5594;110.0208;82.36899;98.43905;130.0578;113.8992;110.6697;135.9078;55.86785;144.8895;80.92583;67.44265;112.5919;98.78716;93.50948;83.18022;76.58427;154.1118;90.74821;92.52282;141.7942;89.91825;98.83595;71.80187;207.6647;171.9689;139.911;69.76295;98.17258;84.83517;151.6195;54.64576;94.11618;68.74723;145.8842;63.64332;109.1171;75.24302;46.40611;61.39257;83.83242;114.6462;132.2502;178.3531;138.4594;138.397;137.249;70.51088;86.36521;126.9877;120.3136;55.27617;113.1058;72.70148;161.2006;116.3377;70.90726;58.92326;79.28902;86.37291;65.63795;93.23836;147.5029;106.2022;68.55951;114.1892;126.9866;90.68451;142.7733;120.9153;99.42986;122.5708;147.3201;64.30473;79.20762;126.4157;98.83987;86.18265;113.2393;150.3181;117.7736;191.5079;119.2587;85.6897;139.7747;79.30212;141.4743;107.3669;174.9784;218.1671;64.15681;130.361;81.71635;130.8315;217.5323;107.8477;101.5695;75.43599;84.69243;94.42233;89.69228;120.3857;80.39167;141.894;85.85216;175.9498;93.71169;154.4021;94.41931;127.584;139.9891;160.8189;144.7745;103.6797;70.35867;88.30999;152.5244;128.2946;59.79387;127.4078;56.12458;90.59447;83.56422;135.94;106.9807;88.66477;128.4863;111.4958;146.3454;116.0923;87.22677;112.281;113.0199;114.423;
79.37898;84.13321;68.56865;103.4896;85.18983;175.5359;70.11865;43.24415;100.607;145.7625;38.0759;85.17998;147.1807;145.1491;106.5145;117.6028;59.32744;90.44747;127.3116;161.489;97.07147;137.9155;159.4621;92.81574;65.79379;213.3103;152.0101;149.8201;158.2074;72.46743;120.0415;104.9358;73.01942;161.0093;186.4368;165.5028;77.57027;122.3552;119.0023;65.50156;114.6743;83.3661;96.94901;116.4712;84.59979;159.8913;100.5625;112.4339;62.01825;158.6278;147.9932;146.3279;74.41934;117.4381;114.5414;141.9732;67.8094;177.9888;102.3052;121.5016;144.4386;45.88401;109.9943;137.8971;148.8386;100.4964;83.288;132.8713;124.2919;180.2639;129.9969;115.4586;64.51632;155.4598;124.9564;153.0071;147.146;149.5892;85.3979;90.14107;56.28785;92.02914;82.12346;81.13322;71.49608;97.48495;104.7598;48.39758;57.84782;168.3367;59.02068;64.21312;75.20624;114.0381;90.62982;81.51524;141.5917;125.6213;156.5734;80.60533;89.65639;71.03867;82.70558;103.5843;111.7643;138.8474;65.62984;65.12144;160.4425;153.8842;76.05404;100.6767;109.6907;151.7191;119.7508;64.39123;89.26552;61.68673;146.8957;103.0049;95.46391;139.4618;80.26285;116.7808;69.47478;58.38938;115.1826;151.0246;86.52908;82.44393;90.59699;110.1269;88.18755;165.1418;99.81812;46.76409;112.7872;134.476;41.72604;114.6225;169.531;138.3686;95.97141;127.8051;62.42231;81.35992;136.134;159.2201;100.7199;163.2099;169.9759;103.0954;71.81422;195.352;172.1317;176.049;152.0551;66.28741;134.5285;124.5228;75.54033;159.5687;219.8046;166.7464;78.87449;115.6477;152.2618;66.57899;123.4504;75.71942;102.5767;144.2047;100.7667;154.8419;87.85699;120.761;62.26166;146.4843;157.7307;140.8403;76.85435;141.6747;120.588;152.7643;73.96781;168.6785;111.2487;132.8613;133.2937;43.18032;126.1442;152.3598;145.1452;99.00586;106.1595;143.9851;125.4035;163.7924;153.6933;119.4696;74.30611;151.6668;123.051;174.2633;162.4316;148.7887;75.4726;91.49309;52.11955;82.51492;89.52125;84.68713;73.47128;112.7556;101.5893;56.55235;63.54541;159.281;65.85798;72.54068;67.22655;109.7521;104.1814;123.6111;127.9566;110.661;154.0323;128.6028;52.807;98.99003;140.2746;136.7183;83.83535;125.5677;71.81429;71.92259;180.8019;157.7115;94.03343;126.0221;94.68739;157.5435;109.772;49.41332;91.57638;89.12487;128.3712;76.29787;88.92033;123.4433;92.08678;83.41573;89.69498;85.01933;111.3926;161.179;
145.5756;104.3919;123.4685;122.7652;108.2794;80.3485;152.7064;149.6294;169.0008;156.4561;51.21667;178.505;104.7914;107.0133;154.744;162.9607;144.034;64.13407;167.4853;161.9138;98.65628;103.779;63.37202;108.4133;140.787;86.07192;155.7045;125.7895;122.894;99.24432;129.3856;154.7045;191.2281;78.3581;132.6014;98.95312;107.35;73.98151;153.6255;96.97376;96.76022;158.7034;81.90287;140.5722;122.5216;123.4084;91.93157;112.4904;102.1222;94.15978;131.9867;120.7207;121.7262;65.16048;122.1065;134.9139;115.9923;108.1222;124.4964;78.18311;100.9852;66.01737;69.34547;77.47975;79.77596;83.55613;80.85612;76.91383;66.31331;73.14364;124.845;49.65021;69.31905;74.70637;93.82068;154.5947;79.67378;188.1411;120.0608;145.9573;76.11706;89.31539;104.3817;128.5706;153.7292;108.018;129.7213;63.91975;75.87355;160.186;161.9411;103.9978;108.6406;166.0232;133.2674;128.1543;96.73554;105.4123;56.29736;135.7362;69.95672;93.94864;139.3207;64.65041;82.313;93.92538;103.1899;130.1894;125.6779;72.43777;71.22853;107.8977;80.68071;89.91933;154.4705;90.47094;59.42733;98.23547;124.2706;64.23711;86.32104;129.4139;113.3329;100.3225;160.6139;55.79027;76.94272;100.2682;144.6192;124.5855;129.8431;135.8607;105.9132;93.47579;168.5401;142.7547;192.9137;181.6594;46.35572;165.6626;120.5861;107.7157;156.554;173.6782;155.1283;89.61148;188.0305;192.0901;106.4809;106.5389;80.40425;128.6251;163.0967;102.8914;156.1716;130.09;142.6683;77.3431;130.8142;140.2437;182.9671;95.56802;137.9012;104.3136;104.9833;83.14461;165.9646;91.18732;109.9496;184.279;75.14407;122.8689;139.5984;120.2035;91.15771;122.5423;108.366;124.642;149.9978;141.7279;132.53;64.37048;142.6445;158.6343;136.1485;122.4805;123.3394;79.09615;115.0241;45.43458;74.41297;61.3866;75.79635;89.79216;84.5603;72.88509;59.82985;83.03219;128.9257;49.35062;83.11662;88.75079;85.48813;137.8455;90.04939;178.3385;124.3908;148.1889;82.90501;106.5539;119.932;138.248;158.3695;107.8849;143.418;85.59539;92.32971;177.5705;160.621;105.0504;123.185;132.2594;175.1105;147.4839;84.91817;102.2782;59.09573;141.6191;94.97724;97.14124;125.9508;89.06652;87.97495;85.78423;67.37869;122.9404;149.6727;72.38297;62.5977;85.52372;108.9492;81.53391;156.3692;86.66158;53.07298;140.5812;158.7416;67.20411;121.3859;129.099;102.1651;58.57405;172.0604;48.97613;93.02154;101.0337;
49.93266;153.2014;84.74706;103.4931;88.49863;179.5713;123.0792;119.8807;182.0695;49.00865;145.7058;125.2243;143.3946;97.56313;92.29738;115.7013;122.2225;140.4879;158.8693;165.0132;98.36976;181.3342;162.0997;141.5612;116.3655;117.0376;73.85552;74.97955;55.89941;90.34804;99.88643;97.10146;70.99073;106.168;63.29075;52.00693;54.39521;116.6529;53.2363;77.14868;57.7046;119.4344;108.5323;73.92425;123.2698;89.94131;142.6782;128.6599;61.758;92.72857;112.4187;168.5995;77.19685;128.8229;52.56591;68.86892;136.2153;128.5361;116.4289;87.15723;96.39619;169.95;115.9411;79.59451;71.52625;77.20174;108.5649;62.27597;115.565;159.3253;97.62746;109.6372;112.3853;65.46658;145.6666;134.3192;86.86001;78.02972;80.85198;86.25747;97.47351;146.6977;104.7788;80.20592;145.1572;168.0283;67.2154;94.20853;128.8585;105.963;99.80875;117.9707;69.69993;85.29444;153.3505;173.2499;107.9986;162.51;120.7235;95.30249;62.81213;152.5618;155.9156;184.8692;135.7456;71.15965;146.7959;108.5581;65.06985;112.5626;178.1948;219.0296;53.48876;146.9785;160.6507;117.0982;92.08135;69.27738;102.4193;135.547;71.57812;118.3254;129.0061;109.2078;58.66083;177.9975;145.2194;181.4116;68.89883;174.7108;94.45231;104.3202;90.25669;204.0056;124.5872;121.0405;190.8107;61.87256;157.9653;143.1797;155.2091;118.1167;100.17;116.0838;130.2195;130.6383;154.7142;169.5141;114.1281;181.6844;183.207;144.9534;120.9846;105.1128;69.44187;85.17905;61.915;96.24755;98.09847;107.1839;87.72324;123.8862;70.37209;50.86249;54.45612;132.0615;53.45387;76.36497;59.00469;139.0636;118.6924;85.84634;133.0905;105.5916;151.7287;127.1618;64.92759;85.06456;108.1901;170.6725;91.76787;125.0416;64.40814;69.83017;138.8462;118.216;102.6677;90.60605;103.0937;186.897;110.4549;91.19659;82.52225;87.97586;118.4998;62.39499;114.136;175.7317;94.21989;106.5822;115.4165;81.71475;148.4583;143.142;94.03222;99.09447;84.5812;87.43034;95.22629;131.6026;101.3623;83.22337;163.0909;162.2445;77.17397;93.34718;131.4166;96.60893;87.09878;121.9776;75.41179;97.41767;122.0426;190.8103;127.4008;159.2722;106.1426;90.80341;88.17975;164.1875;153.6888;156.2871;152.2467;81.15512;144.6841;100.3731;87.61047;128.7571;193.6954;176.1667;85.5805;150.7748;184.9039;95.89159;99.27464;69.28226;88.7634;130.3685;91.15263;146.0288;92.54556;137.1736;88.10627;146.9611;153.2268;139.9276;
95.16386;103.3475;139.0741;65.46523;46.10182;84.93697;95.51153;81.70997;118.0548;82.83015;50.63115;150.1583;103.774;69.04572;61.75576;121.2698;135.3326;76.1086;147.2606;56.38886;94.70243;146.4328;181.1082;86.6013;169.1885;131.4087;138.3608;99.03186;171.8655;148.4182;173.3139;139.83;98.3837;115.7273;111.1442;63.86576;117.8579;192.3699;192.3123;88.96495;145.4687;169.9649;95.78691;95.05844;108.2894;113.2405;93.66937;60.13257;123.0976;95.00469;101.8222;44.42895;114.1649;140.9315;164.6037;85.75342;177.8078;72.33453;111.4705;84.99883;150.0067;131.8247;92.06239;177.7053;73.99064;117.4748;131.1631;108.3353;62.29867;91.92817;120.4354;118.9965;131.0271;124.6433;107.5193;92.61636;120.703;170.7902;98.82594;113.0364;143.0948;59.35423;97.50786;38.38874;93.59987;87.20948;94.25262;57.73444;131.5482;63.63426;72.23527;77.48579;133.9406;52.79952;71.49566;63.19576;144.7168;92.06977;78.01732;118.6204;88.16582;150.9747;104.3886;108.839;91.90856;104.3524;133.6293;89.12663;175.7001;74.36028;41.17279;126.3908;124.8151;72.2892;83.04381;98.65419;127.5526;110.6666;77.74519;113.875;98.44734;82.15402;79.75304;105.614;131.1583;115.4316;77.69679;83.78039;104.1878;99.64252;117.7516;62.64093;55.65843;81.86346;94.15036;79.16778;125.2755;74.45505;54.72303;119.5301;117.3935;89.93562;58.83197;121.782;140.0881;75.60741;141.0186;62.12727;101.8751;152.3083;177.1407;99.52328;201.178;107.1827;138.8971;85.70513;182.136;172.6161;172.2302;123.3926;102.3242;110.0991;96.50331;62.98951;131.2016;186.8954;193.1008;87.61535;147.7316;156.545;106.3625;73.58858;120.6344;139.0854;91.95107;63.92425;123.5405;94.23048;101.4839;53.80894;121.5966;147.1766;163.3458;102.9816;193.65;62.02789;126.1965;85.15614;159.5338;150.2331;92.02871;152.9089;82.58698;109.5973;119.1403;112.68;71.85271;96.01392;126.2743;114.1413;123.8263;123.9123;127.8048;78.45537;133.6471;197.1361;97.84003;112.8774;150.588;57.1463;100.7858;50.80113;100.051;100.1663;97.88607;69.43795;145.2219;53.99468;84.17864;77.63599;142.9511;64.67046;47.34908;75.42524;127.8684;113.974;84.72733;153.2771;112.0463;145.1809;101.8586;102.425;76.22082;117.2842;120.1785;93.09446;167.7255;61.35016;51.33049;135.3147;119.7988;99.39528;121.1932;131.7806;140.652;135.4302;86.96388;106.3225;94.41707;121.8313;79.03165;125.7108;149.8522;82.92448;75.58253;77.08907;
73.99844;124.0361;122.8958;134.206;153.104;153.2241;172.4639;96.89871;160.7817;155.0195;109.8395;164.9592;124.5211;78.52717;120.9033;84.32641;85.1543;98.07529;93.86387;83.6143;94.60195;57.29899;75.45053;64.68452;133.0546;59.55876;67.92694;62.95148;102.8312;100.2872;87.71935;162.0044;122.6244;114.5972;105.8627;82.36803;105.7836;71.97019;126.7567;91.04365;145.2121;62.34735;64.87449;187.3019;114.9857;93.67688;144.586;103.9873;165.3106;128.9696;81.47168;116.6504;66.69839;114.2876;118.5437;116.0388;171.5788;114.2524;63.53946;88.39426;83.20415;146.0211;154.1124;57.52925;68.12608;103.8566;94.80634;92.02625;145.5895;104.1137;78.75636;132.8128;143.4589;57.85529;65.48664;172.6818;111.6307;92.51731;162.1836;89.74271;94.95544;148.9232;170.5415;113.6891;131.8825;117.4387;124.6357;68.59541;175.5887;156.0576;168.4296;145.1811;57.22985;124.1556;106.9404;89.03433;168.3643;140.7135;190.0449;70.75816;164.2766;123.0709;73.40759;83.11779;84.73094;96.05131;123.853;112.6188;109.7606;121.0388;157.9008;48.57567;190.432;150.6861;142.5653;96.69219;119.8226;113.3398;141.6793;82.27583;199.6789;147.4847;80.82088;162.0078;64.0704;161.5665;164.0371;108.8219;73.19745;145.1413;131.7141;142.1971;133.7306;156.6352;152.9487;105.7039;165.2443;166.7626;94.49757;148.6143;110.1277;66.94093;124.5914;74.03395;110.6704;86.57391;77.61752;76.093;70.84578;71.52238;57.4099;53.78473;136.4412;53.08702;74.76096;65.51369;97.30253;103.7048;88.8418;155.7006;117.9563;134.417;110.6936;89.33091;89.03177;78.4487;102.8448;97.96244;146.8449;69.72604;51.77173;171.1263;101.1547;85.16499;141.485;93.28292;197.3156;114.4815;65.04166;111.2869;47.07893;138.2587;89.91563;102.0666;171.6939;109.9205;69.42887;93.1177;81.78388;150.9929;166.6414;59.06819;58.91562;124.2109;98.94174;100.1518;136.9601;103.6158;69.74472;149.2281;144.1432;69.64069;52.89308;155.124;101.9732;84.6993;170.0552;86.21165;111.6977;134.8315;145.8244;109.203;113.7404;132.4041;107.1822;63.17776;175.7039;150.9831;177.935;151.2172;56.05299;128.7434;122.6578;77.76949;155.303;177.0232;150.5575;93.20516;98.61308;161.1739;63.45198;104.8194;90.87464;93.5797;135.7007;76.60941;94.00742;115.9356;176.4577;83.05125;170.0828;132.8018;112.8801;98.19262;127.1717;75.89823;107.1748;69.42645;166.5962;104.703;82.1226;167.5668;42.89583;153.32;129.052;141.6392;
163.361;138.9064;187.4359;99.54543;117.7557;82.12217;86.5471;154.0104;140.525;117.2193;81.92409;63.35684;160.4267;123.9489;89.11719;109.7639;125.0195;188.6181;109.4638;70.7118;81.99476;78.256;92.99574;68.9937;101.1484;146.8871;68.27272;85.66755;63.16604;60.76655;96.12627;116.1893;58.9286;71.44569;151.6481;101.6512;87.48779;141.3608;77.70982;51.1367;162.3144;95.04388;55.02092;85.28593;159.1474;114.6111;76.80777;139.4499;69.76064;58.46953;142.0708;144.845;132.2052;175.3435;121.8033;99.7746;100.889;192.7977;185.9228;193.2369;178.3662;53.9257;137.2365;127.8368;101.1192;160.5773;205.8405;174.0387;106.8251;149.0944;126.3166;115.8914;142.0379;65.64092;125.4066;118.4359;96.04923;126.8086;125.7994;129.3932;76.29483;164.1886;140.4495;145.9329;69.50816;169.2188;69.91434;126.0375;78.25779;176.873;95.90246;94.98371;132.6698;49.56096;111.6589;118.1877;116.8037;81.11024;160.4573;125.5341;126.7559;147.4294;115.2776;133.7503;117.2566;115.165;142.7989;126.3271;157.7943;130.8577;63.45218;100.6818;65.26549;57.77772;85.03773;76.02507;100.4462;127.1387;59.11538;53.44444;86.29013;158.0312;86.95791;83.23953;81.73472;92.85123;129.3254;98.3268;153.857;130.0053;152.5013;95.24941;111.2334;76.10161;79.72251;157.2983;125.0903;132.1841;82.48249;62.67361;177.4174;129.0051;97.18007;111.7806;130.6947;181.507;102.4658;72.79612;83.80307;78.2364;88.63157;68.80291;97.56144;153.97;78.48697;79.43912;67.42879;63.19249;119.7832;118.1431;54.84766;69.16694;118.4005;93.93674;80.62459;136.4058;68.41075;52.66713;148.805;114.3925;54.43624;81.85934;174.2784;122.4821;81.63267;142.6542;77.83652;58.62436;132.9513;145.889;135.0387;178.831;113.6511;100.3268;97.8743;197.3316;204.7711;191.4335;175.451;51.8082;155.2655;130.9734;88.12096;166.6957;178.186;172.7749;99.06831;136.2722;122.6478;107.6754;125.1207;74.83205;127.3702;122.1675;100.2642;128.2048;123.0484;133.5788;77.56251;174.2077;141.5406;155.3937;71.43239;164.1685;69.98283;115.765;75.60534;181.2218;109.5675;93.72063;130.1573;47.53184;132.3956;125.7756;99.10378;89.77763;87.16105;136.7052;133.6805;136.1253;148.2159;156.082;77.62756;181.2628;190.4521;151.7563;132.5993;158.3013;86.26557;90.78985;64.15961;86.08044;65.57027;113.4133;100.5791;126.8479;85.34855;78.91123;93.72594;138.6075;80.39514;59.28408;90.54633;125.6645;121.0725;63.51588;
81.53831;120.562;82.29914;141.6134;62.54667;143.8099;116.7242;96.63415;121.1208;176.1419;137.5773;83.59819;102.5971;56.25902;141.706;121.606;60.63646;149.1294;73.23342;84.70013;74.24878;107.1845;161.4161;65.3496;118.6851;137.6148;117.3146;77.26083;117.76;106.3104;159.7083;132.233;125.4806;133.9797;79.44759;166.261;72.83438;119.9566;150.7632;86.19753;125.0252;79.95975;82.6912;169.2081;129.6837;87.28186;162.8181;59.15729;73.39251;80.42645;177.9869;144.3957;142.4944;104.3262;85.0341;85.07651;98.80148;76.19875;76.33465;65.83597;168.0475;88.87318;87.56717;74.25796;45.73452;71.75909;81.67241;82.51039;96.21732;178.6237;179.6324;102.8613;112.6181;100.3421;47.36467;102.4805;196.9321;63.39266;132.6609;66.76154;182.769;142.293;95.23696;76.65153;88.26996;62.75103;82.41171;73.20249;158.3094;154.7232;68.04166;74.94139;186.1734;108.0958;172.6062;137.7544;116.9117;128.809;189.2999;78.99631;76.98878;197.2539;130.6455;65.71346;146.1577;152.7067;116.7954;199.7432;182.2485;87.40179;162.1828;52.36176;119.8275;109.9826;137.5597;164.6016;70.74037;174.7708;66.21346;119.9605;146.5671;151.5331;83.09141;67.97233;84.68552;120.8816;96.60632;127.8246;102.245;114.9392;81.03164;147.7445;68.38098;132.7433;113.5214;87.77479;102.2743;151.5339;145.2322;79.78316;93.03451;63.42642;129.8714;124.5231;65.24777;136.4447;64.10837;69.56078;76.35352;105.5993;163.0829;58.31191;110.1945;150.7035;106.1489;69.78099;111.8009;113.8705;140.5593;143.6309;147.3333;131.6686;79.1654;172.0259;76.45527;108.2208;140.7184;75.22186;104.0909;66.44861;90.79388;163.236;116.4783;94.48016;144.2399;59.08475;78.30933;74.4181;166.1249;124.2452;144.5958;101.3893;81.8068;74.64635;91.05727;85.49874;75.13428;63.77797;146.2397;88.48815;74.90895;84.33803;56.1602;65.51595;79.30359;88.50124;97.07111;162.1322;177.5844;101.9978;92.94727;81.16619;58.95123;104.1854;165.0118;63.34295;117.655;68.01258;184.8653;127.9288;84.46592;63.7999;86.80218;59.20378;85.39379;72.94031;148.4634;167.8567;66.90786;72.74458;163.1798;107.6711;124.7223;125.6551;117.343;141.9327;175.9542;71.8378;48.2431;179.5967;91.16956;77.60351;84.29333;119.3884;182.0226;190.3069;118.1161;134.2153;115.7006;52.12938;95.08451;136.8148;123.7164;179.0284;42.57561;137.3227;71.77562;117.9074;169.791;154.4844;78.12955;73.31664;77.36283;104.2206;88.37248;158.0585;
91.73035;127.4836;129.9982;102.4642;120.131;96.1284;165.7527;131.74;93.4719;171.9941;85.05544;137.7715;76.79911;64.0574;121.5017;93.70361;87.92635;88.13025;110.9637;179.7281;93.48062;104.4502;110.69;116.5238;72.95968;73.67046;156.2889;153.3475;116.0035;75.96474;74.77617;87.12302;87.59015;62.63346;71.38584;68.2565;195.7301;97.32134;87.654;115.3936;43.84011;66.63963;102.4934;77.80512;100.7741;155.789;144.6842;117.387;105.4616;90.25659;76.34644;111.3368;180.1456;73.3675;138.9878;127.676;152.0166;114.7451;111.5846;100.8305;103.745;82.81671;78.05476;88.21967;134.1678;154.8458;91.75786;101.6227;185.1696;100.8951;182.6357;141.4742;80.26587;150.7744;215.0054;68.27076;81.77654;118.3465;97.6599;86.37326;115.318;161.6635;166.0322;210.1246;128.9582;106.1313;109.1893;102.1429;104.2669;104.6808;142.0481;204.9532;52.17247;128.1702;56.93316;135.5385;150.9648;131.2162;77.39244;64.70676;129.2704;138.3932;115.5796;158.3089;83.74371;118.0106;113.4302;143.2503;76.44977;122.8424;82.75776;85.01772;111.6692;193.1455;189.3408;57.71386;115.1363;66.92739;161.3345;186.5896;47.20875;134.3548;74.26574;94.96772;81.82935;151.2205;144.9276;55.32981;115.5201;136.8672;130.6465;98.17824;110.67;88.69344;160.3842;123.9357;98.28801;179.1332;102.2596;131.5135;73.47144;75.35334;101.6455;78.13093;83.19623;105.5988;132.5232;143.0606;103.5055;100.4247;111.836;101.5516;67.98718;76.70242;153.3754;143.4634;109.5518;81.92959;63.9029;69.79781;110.4908;69.74754;67.58341;60.91304;180.8202;85.31242;87.36297;106.569;47.20583;72.0801;116.1794;69.48915;94.97499;167.0588;127.3084;101.3543;101.3742;109.9949;89.86171;81.69848;192.5743;66.83071;144.94;113.5481;151.2636;123.5762;96.42941;85.40825;94.00495;96.7211;71.72146;69.7698;150.3835;156.1772;86.39435;100.8145;163.8322;83.66308;176.4707;133.9675;88.72668;162.2182;222.8276;55.52167;73.33904;137.3799;88.81773;71.68061;101.3074;177.3747;184.1766;179.5512;133.3253;92.97414;109.9282;91.43477;103.6433;113.1271;124.8779;182.6933;45.33511;145.3362;52.44864;129.1897;159.4183;159.6828;88.86288;73.95969;96.88268;131.7145;111.4022;170.6984;132.9486;152.0509;89.55624;164.9638;99.95511;159.6499;74.61054;107.7893;117.4525;215.3014;201.1078;99.83482;118.9412;91.42123;155.5862;166.3892;59.7874;131.876;86.09258;85.01272;63.66827;107.2114;157.4272;65.57014;
111.6166;121.9943;83.27757;68.22857;172.6167;81.18155;149.3858;104.8863;103.4937;122.8572;151.6138;67.05194;92.91283;129.6965;105.9219;98.58134;146.0572;134.0147;119.6675;158.2555;148.5298;95.31675;133.6746;75.52404;87.80744;102.7364;152.4455;141.7742;59.69759;132.1618;77.9694;145.2764;149.3883;163.1949;120.1311;83.5437;127.1379;158.2373;104.9943;124.6697;126.5991;163.3705;100.4859;132.5386;85.01951;161.047;86.31458;128.5907;165.0048;194.3365;183.3614;102.73;106.9352;78.59297;140.2737;153.3395;47.84705;155.2409;71.21529;86.36259;86.33149;145.0022;150.2789;61.57227;76.09383;109.9632;117.6762;64.57252;123.4027;78.02707;144.179;108.8595;119.2759;147.4146;53.08387;155.5116;103.1094;70.09298;123.4893;109.1673;119.9457;73.0847;69.39057;122.3322;117.9328;95.09695;139.4441;95.39673;57.90959;76.80964;176.3038;109.2371;139.8644;72.67617;94.34917;91.89325;88.43777;95.29632;100.7073;76.81429;203.4331;115.5713;85.05257;89.17138;72.59821;109.7394;91.49185;72.34193;122.2874;193.6952;142.8211;138.5216;149.1742;104.4405;86.96433;131.2573;177.8008;57.39528;110.9917;87.92297;171.1886;135.5549;105.1171;79.58332;112.5582;77.17755;75.24467;96.11112;124.7387;104.2984;62.41841;77.10303;155.1263;64.5149;141.2109;137.8579;106.6737;119.0569;161.5337;77.65016;85.05933;124.508;128.4629;91.89164;149.1071;122.9173;125.0412;161.3203;145.766;72.2438;124.0593;76.84698;105.1446;103.3147;160.5952;142.3553;77.59152;120.0098;74.9062;164.4996;158.2484;143.4645;93.49197;88.13016;110.3489;136.6967;94.49339;155.4843;125.8688;160.197;108.4398;141.0251;76.66893;157.3472;104.0825;119.2905;163.534;180.8899;190.2595;102.3618;103.7053;58.30978;127.4493;153.3598;58.74067;144.2791;81.69302;86.00286;101.6099;131.0153;147.9101;77.48539;90.60974;92.60927;102.0009;72.02268;104.8568;68.63868;128.1892;129.1245;119.582;133.2022;63.033;167.1575;88.29047;66.77057;146.4653;104.3188;128.4391;63.8748;83.27376;126.4631;112.4542;78.52867;123.0943;88.24507;69.83739;69.15538;192.5822;108.8325;159.1415;62.87754;93.31131;118.9781;105.3831;49.11053;55.16159;70.87923;131.842;89.99342;102.2133;104.3833;72.86623;82.95277;83.76707;86.1197;124.8797;141.1973;178.8056;110.0653;111.1722;95.18214;62.27536;114.2465;172.701;53.37739;110.6394;92.63858;149.4332;147.7227;73.81467;66.60451;111.2347;46.49764;77.74571;87.81954;
106.995;118.7647;213.0385;150.4583;71.26939;129.8304;171.6596;89.76827;119.9444;109.5343;123.4607;95.54776;67.39854;159.4839;114.0972;117.2;73.06943;144.1633;135.6779;132.8932;66.30272;175.4834;98.87039;123.4051;101.5302;144.7202;84.91459;76.96989;170.0122;62.21083;135.9373;147.0875;151.3263;76.83381;97.17044;100.7569;129.4333;109.7734;138.0255;123.8323;108.0004;154.7375;191.8666;142.7156;117.9384;132.0117;56.77605;114.4856;60.47972;51.86572;56.63403;79.67699;85.27126;113.1836;55.55759;89.84523;95.91364;164.5552;52.24789;59.70626;54.43412;117.9062;90.13585;116.2286;187.1953;102.5606;187.1354;78.23423;86.82101;72.95362;115.2053;142.4251;126.0842;171.6986;78.18917;49.17066;129.9141;154.6116;88.80256;91.36019;131.62;171.189;107.2656;56.98008;79.08154;87.73837;120.8496;80.11591;134.8278;115.4913;58.56202;70.16713;95.56756;75.77655;121.2703;137.952;94.94887;75.38004;85.32133;68.88067;95.83198;110.8102;83.24964;52.5899;156.7525;131.1629;83.15317;91.49685;124.0579;118.3326;72.70314;158.3283;76.44372;59.57588;106.9945;150.7429;122.4048;137.0953;95.61469;149.7672;102.1655;188.4981;168.6864;178.734;131.3123;83.13116;114.0503;146.6307;112.1284;137.9682;193.8478;147.8829;59.5852;153.1315;149.6958;100.6546;127.7095;95.6622;120.8807;106.1083;74.84927;171.3798;96.69732;118.5486;79.31908;155.5682;147.1961;136.467;68.63633;153.0683;87.57443;124.2328;102.9736;124.377;97.60421;98.32666;165.788;69.06618;132.3827;131.4634;150.9202;92.02177;83.35266;92.58582;113.506;127.0145;115.4634;136.2368;110.2705;138.3333;187.7313;148.6031;127.7727;138.605;43.21563;116.9111;63.77049;58.83566;63.96663;78.54759;89.66458;91.78013;45.63647;91.51798;91.90244;150.1368;63.6965;72.8721;53.92003;134.0273;90.76775;109.4689;182.9322;105.6845;163.6929;75.56606;71.36697;88.74289;99.53275;152.0172;125.6262;161.9416;77.30874;50.98484;143.2763;169.34;74.80604;100.3006;133.1988;165.8518;113.8813;60.0394;80.65386;70.4685;111.1172;79.02946;130.0639;103.4697;70.64936;84.3847;94.88597;88.80279;141.0256;111.2998;85.45048;73.4473;104.5129;95.98687;65.39193;129.6733;80.59407;45.17817;155.2369;129.6469;50.51039;103.1608;123.0124;123.724;72.22108;164.8578;61.52594;94.03572;137.5202;155.8183;84.13683;121.5552;130.1652;113.1748;100.4314;168.5807;195.7663;203.7323;145.1409;70.25124;124.2313;100.3697;
78.48824;198.9483;155.0453;111.4903;114.6516;92.21911;164.1197;107.7605;66.00584;97.16556;82.67876;129.4379;93.21738;121.1912;136.5125;67.35891;70.13383;100.0513;69.27148;136.5833;121.4326;79.41745;66.41901;107.0007;67.6421;65.29823;132.2458;90.47163;42.48188;145.4984;130.0558;75.95982;60.9166;127.5908;117.8052;88.4268;133.9926;66.59176;82.92342;94.45274;130.6223;109.8263;118.307;160.2443;108.9151;100.8774;184.6123;151.4601;199.6014;202.7371;77.28471;176.3737;164.11;76.3203;148.0341;205.3321;198.1363;81.09015;121.2286;125.4919;102.3387;122.7795;96.24491;130.9192;152.1197;110.3692;147.186;131.555;133.7136;53.11495;162.0876;141.8903;153.1702;91.73556;175.8503;112.8328;159.0033;103.9598;171.1653;105.9205;86.77448;167.0912;46.55844;136.1543;117.7608;143.4415;82.13902;121.5165;99.34824;106.2381;135.0965;146.9537;119.5894;104.2212;154.8738;187.3818;103.9393;117.3535;120.677;59.89033;92.85217;56.83037;84.5723;53.56;66.02418;85.61132;79.03908;98.03236;69.03084;93.02683;153.9329;63.45346;89.40241;92.1925;126.7608;131.3069;110.2096;140.8728;101.558;145.2442;140.9033;97.58913;79.98919;95.82617;152.2319;112.0225;159.3282;94.1739;91.77563;191.6267;161.4247;116.703;117.2993;107.466;160.6381;111.9765;76.72927;91.15038;88.6283;133.5759;90.45589;103.096;117.7015;76.92742;72.83868;90.01764;70.82262;121.4761;101.4692;84.09707;57.16307;84.45878;92.77466;72.7423;154.5311;113.8889;46.81479;135.3122;132.5625;91.11958;67.75872;121.4312;121.6086;90.76158;134.7785;76.25018;79.5052;96.47642;139.9283;103.3973;124.9373;162.0832;104.9069;80.82014;161.9017;163.4944;199.6906;188.7959;78.29494;156.7723;141.4326;77.68902;133.3897;171.3859;232.857;82.57063;138.5413;144.9272;99.12866;111.4911;93.0731;140.1751;162.4002;108.5084;160.9009;146.1728;139.1141;61.61522;156.9439;148.8368;161.5226;78.91562;180.2463;109.52;142.363;81.91257;142.7421;106.8898;86.52218;159.1431;52.69998;130.0954;102.6386;145.0693;71.09188;99.40136;124.342;107.9278;153.3393;167.9279;116.1172;93.84222;120.4965;193.9693;121.0532;123.524;163.0282;54.49601;105.0876;92.33406;61.52127;56.79476;99.75745;44.40201;122.1926;64.15725;65.97081;82.76286;84.04576;90.27039;62.33104;53.81036;108.9262;128.442;98.0386;162.0512;70.01956;111.3782;127.2679;74.4387;74.04649;95.40085;128.4217;97.15153;129.918;60.2681;
69.78078;161.9946;143.4158;119.0999;124.442;122.2287;62.14303;87.25247;51.71865;67.49191;103.7195;94.13591;68.24531;109.2689;49.30489;71.97806;91.63316;84.0966;59.11271;76.45375;79.46851;115.7238;121.0414;120.5287;184.4828;74.01789;170.2487;98.60255;114.8175;123.6972;80.63016;110.377;112.8126;179.5522;81.32435;77.99419;189.7013;124.1558;107.9832;119.2061;142.0913;183.0819;139.1761;76.55158;115.6661;67.40642;70.93702;109.2907;132.677;101.7729;92.48895;79.58199;86.81304;82.52075;131.2175;159.1866;100.0886;71.05267;76.37305;80.20017;80.22991;148.2557;77.70093;47.01839;118.358;146.6041;51.18022;72.37373;137.4782;114.4447;80.81218;126.4278;63.88122;61.83564;136.1993;161.108;92.45485;148.6033;103.6155;116.5346;113.6118;114.5609;151.0648;170.6903;170.3261;67.18751;146.1107;154.4909;110.2495;92.3656;178.6247;158.0041;92.65153;181.8649;129.1985;66.65069;118.2186;111.9625;124.3247;141.0817;109.3456;124.3922;134.6211;143.633;81.62305;162.8238;169.5267;151.8714;94.50471;137.0148;57.86571;154.0041;106.5976;140.1835;111.7853;74.82616;153.3683;62.74237;134.5296;147.2364;151.8615;106.7953;89.15092;99.11145;115.5986;127.0328;115.0603;106.836;84.19527;173.2526;123.382;132.7864;116.2208;107.0952;49.61288;92.64191;47.03181;58.14513;90.53004;73.85714;65.54539;97.98653;48.91728;62.21363;97.26159;98.97622;46.55567;56.00163;79.49926;115.9837;114.013;105.4399;172.7967;84.39861;150.6365;77.90276;108.8775;96.45946;79.25896;98.97391;125.1776;189.161;70.10471;91.44879;177.5793;108.2639;93.12904;127.0632;128.884;166.0963;129.321;60.69258;110.6501;58.27358;72.14565;101.5119;135.1516;117.8417;80.91019;63.32393;86.48189;83.10075;126.1113;146.9979;91.43064;89.68155;75.55934;72.41479;80.54659;128.761;72.36465;40.97503;124.395;153.6354;43.10035;86.12965;124.8759;98.16138;67.92396;130.9516;57.79795;59.12217;137.5867;146.2828;93.66553;146.0642;100.3849;110.6256;109.6806;130.0428;137.474;147.4643;167.1879;66.84618;140.5584;138.8181;101.1529;113.4577;177.379;146.9963;92.99182;160.1994;126.7991;67.82689;88.38851;109.0064;74.34772;160.7816;73.3339;103.3919;134.34;147.7063;57.87438;166.2071;131.7481;119.079;58.81172;164.0751;55.40156;153.7748;69.88902;148.6174;96.72964;84.92205;157.2207;86.9322;133.3695;132.9451;109.2248;84.60401;82.59641;122.5244;131.3008;117.381;131.8295;137.5231;
52.65779;77.65147;127.2746;183.9461;110.7328;161.7545;137.0592;143.7351;63.35426;133.2156;186.8294;182.8282;138.7109;89.3944;131.7961;122.4455;76.57139;120.7064;200.4378;196.3517;78.23414;129.2413;131.4275;62.85298;99.91665;74.74149;107.9923;125.2776;106.3772;121.4501;121.4872;101.4874;47.18842;130.2422;147.7834;148.7599;59.23082;179.7156;95.98524;115.2396;72.67481;133.0858;93.97414;101.0707;123.3646;63.05761;143.2834;139.7276;117.3422;71.27156;143.2882;121.9557;87.89031;142.8214;119.8325;140.8984;102.0401;135.3021;160.3873;145.3354;167.0476;148.3053;79.87796;96.10105;42.97759;82.17566;79.13911;102.6772;89.12696;109.6026;84.11378;92.19336;58.45394;103.4548;83.62361;76.77793;52.87228;133.0553;109.7554;83.30634;136.4158;97.20684;166.7642;108.0811;100.8414;69.71954;92.86636;107.9087;102.1245;137.9526;74.92927;63.7541;175.3315;116.4814;93.89598;80.08001;88.26546;146.3695;110.1957;68.63358;78.57558;91.09341;123.5466;75.36765;97.65014;113.4829;74.01265;89.22034;57.47306;79.28352;129.0981;130.7684;57.81651;72.70702;115.1876;100.0184;79.09335;167.8326;87.55097;69.15614;155.5614;144.5507;52.33974;97.46593;162.721;132.2662;104.7801;157.5858;68.198;85.71461;144.2398;156.3921;124.2631;153.5134;129.0577;142.3801;75.6174;143.8438;215.7947;205.3418;139.6287;86.94242;130.6569;114.037;69.2515;141.3003;189.9115;203.766;101.8896;145.3641;157.4617;69.87695;111.7337;97.5715;101.223;131.3042;87.38982;110.4525;120.8879;116.6753;59.3653;140.1169;161.959;124.8947;68.56491;177.2668;82.77824;112.2905;83.79636;143.498;112.6922;119.0355;124.2114;64.6405;135.1239;131.6406;106.1148;86.20176;132.4909;131.6802;112.9517;164.3368;137.7077;152.2967;109.6991;161.5329;140.8308;152.9967;152.5206;139.6393;82.04601;116.2736;56.2605;84.81495;93.39276;82.6402;91.25713;105.2979;69.5148;85.76385;66.82587;110.6086;93.76102;90.19532;59.295;138.8551;105.6435;81.58484;126.7408;108.6033;160.0774;116.7875;117.1328;82.854;105.8833;113.5523;109.7856;164.4229;61.76272;68.86152;160.4405;108.8161;102.9564;99.11697;144.7369;168.9129;139.3074;74.40265;103.4456;54.71796;123.0648;97.5522;113.9823;126.9061;104.8696;108.3973;87.02219;109.3807;151.3098;116.0338;91.07274;100.772;132.7279;111.5859;114.5949;163.6626;110.7321;62.8417;105.1044;178.7813;78.00977;85.77206;101.3384;134.841;92.31822;137.3271;
170.8388;83.23246;75.22415;60.62224;139.6839;162.1231;34.33829;162.8872;67.94965;64.08344;71.54521;108.4349;152.5066;48.05725;75.75247;125.7619;116.3105;98.05471;83.58135;118.329;153.8017;134.4627;113.808;181.3629;71.57274;160.905;67.48321;86.28481;120.5446;106.4664;74.05519;121.0678;101.1924;109.3363;81.55099;107.3486;168.6922;98.05705;70.59618;100.7636;187.6113;142.7584;109.2551;111.0076;97.33916;49.36219;83.60268;60.9174;62.69909;54.65244;128.8975;61.10399;72.919;84.17803;84.12675;92.28117;80.63022;70.59511;120.4198;160.303;182.1908;116.2538;117.9572;107.5576;68.20313;106.1285;135.6398;57.71556;135.6555;88.4912;128.0939;154.4735;75.76762;52.11149;87.20461;68.66942;79.6165;59.447;109.9422;144.0966;65.39085;97.00709;126.2334;107.3533;175.1579;136.8038;100.7433;170.382;157.2413;69.32416;72.92066;165.6966;107.2029;97.02506;90.22882;200.5569;137.9071;150.0743;108.7635;94.97323;174.7121;83.44604;107.2719;144.6218;144.0234;184.7407;49.17084;196.4167;82.00073;87.42751;135.7424;110.9459;68.62022;65.72108;74.25094;82.13438;100.6384;144.8668;133.3489;171.6138;82.53372;146.9918;83.41447;121.9369;116.0156;91.65305;137.2828;168.467;157.7091;73.03667;77.69724;55.65077;147.1626;159.7344;37.5771;150.6168;65.71691;58.53271;75.06725;121.1329;179.8859;53.14218;86.22069;118.3807;109.3741;98.29139;86.61128;108.9715;157.0109;148.9558;108.7154;200.619;59.18786;173.8899;67.71307;87.68652;116.1326;96.07026;78.35135;105.1319;93.19834;102.5632;82.45023;97.26631;175.0556;98.73398;72.29025;90.67676;187.3835;140.8889;112.1036;120.6583;117.9635;56.55127;91.75036;56.39981;61.01172;58.92355;131.5288;53.26359;75.53758;98.32589;77.15719;106.9632;78.55695;84.42491;112.4219;150.7988;176.6112;104.686;122.2094;90.87287;65.57821;96.27475;140.8465;52.62664;132.7135;92.20667;132.3985;139.3918;83.30921;51.17035;83.50305;69.86739;98.25522;66.7598;118.1233;135.0353;67.63779;99.43706;132.7665;99.96645;169.4426;158.7281;94.81559;187.2083;154.3405;83.03799;66.72729;156.0314;102.933;86.4833;105.4615;113.8481;170.0723;161.9599;144.2814;89.07099;159.2087;90.7264;115.612;130.765;152.758;154.0466;69.91755;145.3452;98.30351;131.8182;148.9583;113.8015;68.66546;65.73153;100.0207;122.6179;133.4467;126.2494;115.9386;166.206;104.3435;166.2593;112.6498;138.8667;108.6694;95.73895;120.0309;141.5854;
118.4937;108.6936;113.5514;92.6785;119.2304;105.8695;117.2095;125.74;93.00253;67.08447;100.9696;144.7322;114.8463;131.8339;84.945;105.1231;79.9612;114.6697;56.33601;84.71095;72.10622;134.7296;63.83808;112.1518;76.29454;53.00854;50.94462;62.82398;87.12223;117.7153;164.6939;128.8982;155.3147;132.3551;80.93777;72.84594;105.433;123.4818;82.85485;118.9823;70.63475;162.2253;162.8097;72.09023;54.19073;89.50239;75.06994;48.9348;107.6687;123.8396;141.1883;91.9252;82.32961;126.2936;89.45201;191.213;150.248;116.8827;129.7348;143.3038;82.9035;87.83593;185.6827;128.3072;117.7191;122.3133;186.8222;136.8407;158.7394;150.493;120.3502;124.95;86.94186;98.97692;135.9847;119.8094;161.6417;60.611;157.1061;89.11343;133.963;164.4893;109.1752;90.53665;76.74323;82.87163;104.0846;137.446;118.3618;95.7631;94.01755;65.59361;152.4145;86.3443;142.576;76.07597;149.2879;146.8272;152.7893;165.4066;78.71993;71.2455;90.54025;134.041;133.4589;54.50018;174.9902;53.81273;65.85865;75.20656;129.8584;122.2949;96.65623;99.32193;147.896;135.1803;71.67575;87.19911;96.13747;179.7254;156.7689;129.3992;143.3272;48.89527;171.0298;86.32157;103.7493;138.9042;110.6656;85.82276;115.2619;85.72331;99.31082;134.9106;120.2363;127.6927;100.2598;58.09881;84.4306;155.1763;130.1647;146.4694;107.2617;117.2001;85.06846;118.8894;69.89513;79.97739;63.64317;145.1018;69.21394;119.3739;88.67687;50.07342;50.11069;58.47137;89.09766;110.6387;159.1894;123.1343;142.8344;110.2886;83.37131;66.15331;83.96423;152.7487;80.54214;117.6114;75.46555;152.2764;144.3159;79.14864;63.07515;99.90551;91.43832;55.23597;113.4044;132.5488;164.7506;86.86107;72.69469;134.7595;91.11494;196.7692;164.9819;116.4161;132.2173;136.2257;80.08012;84.11398;175.8363;122.521;99.45725;103.1979;190.4401;128.6614;132.5538;172.4512;111.5912;125.1928;90.6305;91.11102;120.6292;128.5686;169.8539;71.41089;176.4199;97.51814;131.8184;177.2049;129.9465;86.37405;67.76164;82.65598;100.2178;143.9301;131.4768;95.33707;96.13174;60.8339;148.5776;82.65444;161.8618;93.31834;92.52905;117.1286;143.4872;150.7461;59.8427;112.2049;73.08453;167.3792;171.3823;68.65962;131.8693;85.54725;98.8072;83.45006;117.5017;159.3403;97.08387;112.7181;138.582;118.7912;73.93329;131.5038;108.0683;178.1368;162.0324;132.8356;148.2516;69.87668;180.3775;60.73443;112.8419;134.3248;
81.5534;107.1298;117.7512;105.6869;116.1435;113.3289;112.7288;161.7563;57.90395;180.3083;85.11289;100.6089;139.2962;63.92981;84.9389;86.85957;126.2404;130.6244;115.8799;99.64034;132.2576;59.25484;73.64993;142.8866;163.2672;143.6624;140.0918;100.0479;69.4511;69.40186;94.52706;73.69798;89.36623;68.27502;198.4296;53.75669;76.46233;80.81628;84.62711;74.31226;90.64751;91.36787;133.2263;207.7913;106.5772;86.48578;106.0711;78.0395;71.91138;95.68537;173.6827;55.92481;148.7831;95.16911;174.7667;174.8651;84.26547;89.99262;88.31409;71.00704;46.74294;88.60081;148.6699;130.1222;50.08216;123.0294;182.4693;106.1779;139.5765;127.1101;89.45848;143.3788;156.4373;80.93192;94.82721;183.4326;119.3202;64.23637;102.8289;150.0147;179.9525;181.0915;161.205;95.01168;143.1512;53.9593;100.4764;182.9882;135.2606;173.9608;73.68473;175.735;52.38392;116.7441;155.2538;136.7568;102.9022;80.71307;126.9615;81.63937;107.6555;123.1122;130.0143;126.2987;97.68066;144.0072;107.6726;181.7564;54.83305;76.8514;121.2261;147.1659;153.1917;79.96912;107.0171;53.66563;173.2232;183.4423;49.92715;159.9739;68.27143;99.33412;73.49468;125.4697;108.8699;80.71552;114.8213;111.6973;80.90746;103.2772;102.0407;129.4008;104.8652;123.0268;100.762;178.2696;53.15775;163.4617;94.9726;102.2626;130.9408;77.60139;96.06053;82.56738;117.5764;143.9372;127.1585;99.28457;143.7754;76.96243;58.85977;117.1482;172.6406;133.4027;145.0249;107.1424;67.57637;83.20665;101.6162;71.5093;88.35253;65.67903;171.0916;66.975;65.68597;84.53028;77.69718;84.27467;84.74841;80.51923;139.879;203.9767;97.27919;97.61164;122.7524;75.2497;66.29839;109.1882;181.0245;54.65685;159.7198;113.1877;156.3866;148.0479;90.53588;90.7932;84.22686;71.61698;48.92191;99.50856;152.7908;128.4905;46.62019;108.9626;153.4865;124.7859;117.0527;132.433;90.61581;161.9768;146.6881;77.26202;96.6685;173.3375;115.21;69.99796;115.1457;147.5108;165.9396;185.7691;165.3658;93.63851;145.1872;68.20452;95.16011;160.3871;143.1748;175.0782;69.95548;176.6938;54.68918;129.2181;193.9055;115.0885;65.35513;99.32446;64.60336;123.2608;104.6043;186.9253;90.25221;168.2075;101.7369;153.2234;75.31566;145.9054;77.50296;89.8612;144.6805;170.152;169.9305;86.51814;83.77432;62.4407;126.8457;140.2133;69.4089;174.9702;91.59595;63.4309;63.14761;139.0951;119.4118;67.91127;117.7809;116.4084;
88.12073;94.73797;78.96651;94.63219;92.13586;170.5694;147.387;118.0026;133.8312;108.6289;57.13794;135.2265;135.1212;68.81047;141.561;103.5439;143.9141;171.8948;85.24972;68.154;71.17213;75.26963;70.6053;97.06466;160;125.9515;62.61258;62.5028;179.6261;85.20874;132.2175;111.2581;128.234;121.1326;139.5667;53.04998;50.58842;129.9919;98.35369;65.62647;103.8034;194.2157;139.4938;161.2832;135.5697;88.82809;111.1036;88.86501;92.6745;122.4604;147.2443;191.5247;53.54789;146.2822;82.64465;140.8134;149.101;160.1703;77.01433;88.09206;138.5525;104.4534;99.46926;141.8872;157.5025;152.3376;81.78448;151.8932;66.04796;145.8953;101.8197;104.2374;145.0251;179.5443;151.4568;120.985;75.65572;64.77761;155.6676;181.6388;48.42764;182.2569;64.55084;69.28265;62.80695;133.2636;156.1985;79.28229;120.1027;105.442;108.0313;68.14169;130.5959;87.55216;117.0258;111.1773;149.2518;132.8469;50.11507;115.8482;49.88131;75.90157;117.9688;73.81544;82.5717;109.4612;102.0841;135.589;107.1127;92.75022;107.8513;106.2104;65.38425;68.38185;161.0133;151.5594;115.6763;68.32757;113.7392;112.4685;88.18018;84.54927;59.8717;96.55459;204.1466;74.27187;65.79697;96.29246;104.2997;98.5451;105.996;109.6613;100.5142;171.1054;149.6964;136.6352;140.7624;101.6;60.23309;153.4507;130.0907;51.88003;149.4486;114.0385;162.2067;148.2536;74.26913;73.09563;68.94786;63.42197;84.63799;120.5291;153.5153;111.3167;58.98195;83.34312;175.6982;81.8673;114.6885;118.5097;141.6805;126.2254;173.1008;60.12965;55.53302;132.5345;96.53674;76.23238;106.0193;186.0854;144.1327;174.1877;129.4328;70.82799;115.2779;97.1227;103.7031;102.6168;132.9119;195.8291;50.99846;130.3459;95.20511;166.8735;142.9107;150.2682;66.99628;101.7;129.903;104.1607;86.21844;142.4503;164.6176;157.5971;107.9924;174.7536;71.27561;140.8742;91.46264;120.0894;152.189;179.0342;147.2402;123.4885;67.32991;51.95558;163.1787;184.7124;52.08698;157.4106;55.26718;79.25315;59.67202;111.2085;162.0378;101.4913;114.5526;97.43385;96.10095;80.1688;122.2025;87.28418;117.2558;138.5529;161.6271;139.0417;99.62157;186.4619;76.4251;69.716;128.8579;123.4966;98.71154;93.14677;107.2156;147.7007;122.0238;114.8153;157.8846;116.147;100.6375;96.60931;188.1839;151.2957;108.325;94.43742;118.0385;97.09134;81.77123;84.67191;66.78324;71.7422;153.6785;78.1063;83.44928;85.82137;
120.5073;67.03876;139.3438;136.8798;127.3489;88.22755;153.4217;59.62375;74.80273;65.17723;73.90336;99.30564;59.95688;88.47398;124.1013;77.47565;56.09341;105.6142;108.528;72.39612;72.72788;66.77947;103.2919;109.7698;68.67406;170.5477;84.58738;145.5455;74.37508;81.23936;100.5585;101.4004;153.5308;88.08868;157.2766;81.81581;52.7562;167.9355;156.5309;81.3529;85.69461;99.9946;138.3545;128.2939;48.73754;64.47623;56.11069;93.64273;100.2719;124.5476;127.8258;73.65207;87.54833;64.15666;107.5651;104.6119;134.7005;78.19601;64.65396;117.5672;79.66885;72.83039;111.1571;88.64532;50.16311;117.7577;121.997;62.53439;84.65836;99.93429;154.1561;71.95018;114.249;82.07953;76.17171;157.9157;130.2883;132.2322;173.5763;147.6584;106.0188;130.151;142.076;198.3567;183.1492;155.8631;68.05199;130.2872;98.52967;106.3649;115.9296;181.3625;147.714;72.93768;161.8403;158.8623;104.4039;98.52942;95.82926;137.3798;113.0743;93.53139;162.0461;97.8964;100.5672;58.82885;133.9189;167.8436;126.1655;57.00111;129.5008;76.45681;143.8514;100.4302;126.4824;129.6284;88.47618;128.4465;95.51669;125.1411;129.5545;127.1375;79.87661;127.7318;106.1149;115.1605;120.404;138.6149;112.2235;80.94249;144.8515;154.3002;136.4059;109.0499;157.3323;43.74293;82.82076;68.89944;72.16988;104.4724;65.47759;108.1304;124.7944;82.73191;53.93253;104.5002;86.98605;102.0431;59.67614;72.96808;113.797;119.1179;62.80538;169.6582;87.03642;139.41;74.58077;91.16156;107.3332;107.1556;137.9445;103.508;161.7271;89.43905;58.64127;191.026;157.0492;62.37489;89.65388;104.7424;135.2017;127.702;53.75377;78.20099;54.89021;100.4252;94.45162;123.3989;104.1005;99.15497;74.76257;67.18098;115.8354;114.8249;126.2656;74.15984;65.64714;109.1438;76.64693;78.35265;123.4693;86.9605;42.42152;122.1255;125.3779;61.17153;86.52599;118.8453;147.1285;58.33244;121.9299;82.71384;72.83205;159.2424;134.1438;146.3068;177.6676;146.9931;101.5649;115.9473;116.4742;223.8267;156.9908;161.641;69.45029;148.3284;91.33521;101.6525;117.2582;170.8626;143.5886;78.46393;141.0842;167.0717;75.11906;87.24841;81.16406;100.4081;113.3192;64.53178;152.7576;111.2867;152.0358;74.36324;165.311;215.1851;165.9118;89.703;165.4629;67.67221;147.1607;70.17378;150.4697;141.3382;70.48924;138.1632;60.12865;115.0442;138.5573;137.4897;102.3132;117.5063;112.9191;143.3966;147.4543;143.2986;
57.66919;120.0568;76.61325;64.44358;162.5941;155.7893;79.71299;76.92928;149.7481;149.3297;74.36773;169.4735;72.35989;64.6869;94.5556;145.8356;83.3582;120.8484;101.7517;89.63279;58.48486;157.6923;181.6938;192.2185;128.2043;72.23326;120.5718;92.3829;94.69219;139.0766;162.8745;175.4656;57.87416;149.821;154.0873;81.69462;101.5329;101.4619;102.2933;117.1737;82.52831;130.8558;133.646;111.1738;72.27854;149.6271;146.1102;178.1359;75.40056;163.6371;60.27974;157.0744;92.68427;184.7725;90.45284;133.147;116.896;87.18015;123.8314;130.1479;107.1862;94.71817;87.18278;132.719;101.8465;124.3678;125.0774;144.7828;120.9995;181.4601;188.7764;128.7629;145.4258;159.1417;60.34105;134.4695;65.07326;63.55027;57.78572;76.51096;64.72041;83.75434;50.88021;46.46952;51.82185;128.2783;76.42711;88.57112;53.29842;118.0364;107.2481;71.72656;164.7781;99.11292;142.2944;97.28139;74.53238;92.02608;105.363;125.2717;105.2329;172.0441;65.58341;62.73716;151.4393;131.2036;115.0344;97.41808;127.7758;148.3298;111.5647;76.18909;94.26435;68.85702;93.35396;102.8789;123.6342;155.9646;73.19963;120.1837;73.68252;118.0255;117.7147;122.3428;66.39677;64.39201;89.64236;102.9261;67.81508;124.6966;70.98794;66.4828;147.7053;143.2452;66.84518;90.79879;144.496;133.4214;81.47897;181.2307;74.6635;48.27151;91.22572;132.0624;94.76633;113.0604;117.8457;90.58359;63.38867;161.1455;200.3818;202.5414;153.5385;78.51205;133.6571;93.12083;106.7593;112.2543;190.3137;176.4016;63.27461;154.6491;144.1431;81.79118;88.16248;87.76001;86.65089;131.9058;74.5284;115.963;142.6256;118.3721;73.72406;119.6499;141.2895;160.7408;83.38012;154.9646;72.20026;155.9646;99.3986;183.5767;103.1969;139.768;138.7762;96.03986;127.9497;122.3079;118.7633;78.55952;104.0884;136.5349;102.522;123.5244;116.8479;147.0214;104.905;161.5106;162.4441;141.7416;136.064;144.6989;60.65905;135.4726;65.52489;49.10122;52.31077;67.36826;66.89944;73.52386;62.39671;47.0573;55.80924;125.9941;84.66422;92.01511;68.37661;128.3061;111.082;65.93773;179.061;82.56634;145.3672;80.16441;81.22855;90.94888;128.9468;152.1013;90.82157;151.5707;82.19674;93.45201;135.4426;145.4571;80.65569;140.2009;129.5653;166.7275;137.894;55.57907;115.6159;50.24203;95.01298;74.73549;112.3227;115.8736;65.14644;110.3175;84.30627;119.1355;109.0012;107.4128;66.52306;46.95737;98.95822;55.48095;
123.0603;131.5395;95.7508;177.312;90.19431;80.25873;133.5025;157.414;88.82009;142.7166;124.6657;105.6047;93.46342;130.966;168.0083;156.6101;166.4639;68.15456;137.7621;135.4371;99.34406;107.9554;174.3934;192.0927;94.07265;130.5011;123.2962;90.4126;130.4042;66.65653;101.155;156.3876;67.63411;127.7219;134.0649;116.9666;78.75626;126.7138;172.118;183.7406;68.59814;189.8589;88.59682;140.8303;105.9615;195.4161;85.67368;100.064;187.1534;96.0439;164.3513;113.3196;113.8284;92.53532;115.7201;140.8743;164.8249;151.1261;142.7713;151.3726;121.9739;136.2405;131.8508;162.1542;112.2911;146.2005;68.55576;120.7411;79.74587;74.92296;80.40285;87.82901;74.34942;87.85741;56.49025;50.27867;85.99055;104.8258;62.98203;62.93398;76.27551;117.6751;102.6594;91.08779;169.9017;71.24208;139.5061;110.7806;121.3755;64.9409;68.78239;124.0216;131.5434;124.9184;61.90226;93.35091;126.8511;128.466;103.6769;94.84816;133.8265;123.2367;128.7003;96.48249;89.334;87.35207;103.2087;83.28569;131.6777;172.6405;59.65079;92.13991;106.4706;106.476;119.9362;106.535;64.82774;83.192;94.61641;115.1654;114.4759;138.3468;94.80114;58.61313;156.1027;119.0659;38.86057;92.33788;136.8026;131.3066;69.7373;160.0103;87.91113;86.7;125.3298;139.9895;84.86122;132.1815;124.2646;93.65901;94.53361;145.3244;158.1987;160.428;164.5353;56.3775;100.985;121.8449;103.0484;113.0115;161.6677;196.0666;98.3462;105.7754;112.7166;64.47012;116.8412;70.22038;86.29282;144.687;73.47312;125.6707;107.4754;105.4774;75.35908;134.0683;165.3388;166.6746;61.40397;176.2696;92.90664;130.3719;105.6419;212.229;80.47916;107.5854;180.1704;81.75943;129.3925;106.9751;117.368;97.61153;107.4432;149.553;155.2805;135.3874;146.7639;132.8586;108.8046;137.0643;115.6465;144.2122;126.1953;141.4997;52.55695;114.5972;76.07504;88.12327;79.92858;73.51048;60.2774;87.67387;66.45518;49.65712;85.64606;113.3638;59.14536;64.86694;76.82881;99.69729;78.65211;90.31414;173.8391;82.99866;135.8135;115.183;113.2053;54.77565;71.56191;107.3207;117.8528;125.7073;67.4736;70.46256;181.5409;152.0392;69.78613;113.1073;123.2469;127.6546;143.2264;58.68605;76.26239;81.71387;90.77908;73.09327;127.5699;137.7541;54.54144;103.6016;69.41845;91.95424;80.07824;113.3478;91.47881;52.21838;99.36223;89.16652;70.22392;108.0247;94.34976;62.15784;123.42;96.35632;39.92116;96.19685;
88.37435;127.1023;71.60309;87.96692;92.25536;115.9962;131.543;115.9785;119.1107;58.13744;56.62843;187.7082;141.3419;95.06427;118.922;139.9276;171.9845;114.6238;55.34797;103.7154;76.81217;88.43628;94.07716;126.8241;116.5273;111.2595;102.2203;73.59541;82.78219;104.8878;165.4757;64.90018;44.53817;86.75285;79.46989;115.2724;134.6261;57.14822;89.47333;140.3344;172.3229;59.64041;74.26738;127.2993;149.5654;60.82066;181.7414;96.05836;84.79218;167.668;130.386;114.1245;171.1783;138.5346;159.9135;105.46;166.2351;190.6752;144.8997;133.4574;84.11562;124.7816;110.7379;79.8331;130.1587;152.6695;145.6501;75.07548;145.1667;169.9291;80.71977;110.7177;66.66262;87.97013;115.0803;111.6764;136.9711;113.3819;139.0533;78.63155;178.3709;153.028;131.5429;86.28481;150.8106;71.89544;138.4644;94.38329;144.2144;144.1901;119.2892;134.6097;60.13572;115.4974;157.8382;109.0888;62.80772;102.0328;108.5274;157.0815;123.9412;105.6816;167.4182;90.04418;194.8659;146.7121;119.6409;122.7588;155.1427;43.15156;125.7095;64.5014;82.13166;108.8207;50.80882;65.94102;89.80239;100.5493;73.81089;76.24321;115.7698;72.05906;41.21955;57.91556;146.6285;97.84889;76.2647;136.2587;110.6321;139.8627;77.02592;83.25617;81.83559;141.7999;124.1733;116.9491;126.9232;67.11633;59.14819;183.6669;137.0065;91.89951;122.6681;116.7042;174.9621;110.6341;43.66306;82.30972;53.35868;111.6335;75.33743;104.7103;106.8998;100.3644;84.8281;74.98583;87.66719;101.3701;149.46;56.11636;58.14021;96.92451;82.27351;110.6245;121.0892;79.81715;77.10674;139.4677;178.8161;68.58465;75.40642;125.0596;145.0844;61.85368;178.3688;77.69271;84.98643;161.3561;110.3294;94.88786;135.2062;171.925;128.3683;86.12004;151.1963;182.399;123.0727;137.3844;92.81863;121.7087;106.5;76.05279;143.8706;167.7548;148.8984;71.98956;142.471;196.3378;79.22186;117.0972;70.06903;104.5048;117.3534;107.8763;137.2898;115.5382;146.445;67.76123;169.0186;148.5851;110.9288;70.32211;127.9434;88.79364;122.0054;82.10821;130.2304;137.0007;99.5664;138.5535;67.52745;112.5418;106.7116;101.0117;95.41502;149.7969;117.9817;125.3483;120.9803;126.0437;117.0802;99.71024;180.4406;183.1434;168.8359;137.3766;132.3785;67.84908;108.5876;69.22852;64.56082;85.26896;68.53627;83.38128;100.6795;71.60928;58.27501;74.82394;88.18707;67.9602;51.48396;64.21037;136.6684;86.64417;79.95894;129.9096;
114.5194;102.4458;196.9673;152.7945;68.31123;104.4418;66.23161;102.0346;101.4284;107.2303;156.335;93.5387;77.03014;103.1586;64.14517;105.7135;156.5311;77.08147;77.91119;98.47398;94.31332;83.00002;121.7717;77.87717;80.73926;162.7716;136.1163;77.37547;54.17282;121.5396;111.5408;95.06853;121.1936;72.58355;87.59708;142.7667;156.1632;72.80273;148.078;141.7824;127.7854;65.66909;165.9269;192.9859;136.6886;198.8392;82.04755;133.1582;111.6045;80.25066;184.5587;158.6131;146.4936;66.27391;157.9846;170.7256;105.9099;89.15562;114.6232;113.6334;166.5365;85.68256;136.0015;99.104;146.3886;47.3053;178.6712;189.9343;153.6166;97.4557;141.7721;89.59075;157.3161;86.67692;183.7172;122.1297;98.6381;184.7681;54.89518;113.8564;161.4006;118.1753;89.16184;108.3124;123.2491;122.3563;113.4577;132.2903;166.1567;118.152;151.6079;173.2286;100.7432;117.1423;128.6731;72.74358;91.18056;55.73224;79.75227;87.86792;84.31484;51.79512;90.9304;88.2961;78.1464;63.66358;125.0923;73.22555;55.9524;105.7726;140.0831;106.2433;91.88845;115.0831;111.8779;140.6834;76.9427;73.71835;93.8594;132.3698;135.6019;77.14117;183.2685;72.07509;86.57025;136.6397;136.4904;77.17978;114.0247;100.9888;180.6704;134.8944;67.52494;107.8274;55.04388;96.79456;82.62509;114.5415;156.4336;97.11008;85.59938;104.6189;74.32705;104.3864;161.8792;51.88867;56.01188;109.166;94.02094;76.94893;126.3347;90.16346;65.97626;148.0659;132.0615;72.42128;53.32915;110.0866;119.334;95.51171;123.0424;75.60899;75.2457;121.6484;153.246;77.88141;127.2315;134.9986;109.2262;76.15878;164.2215;194.0575;146.3845;204.7581;90.69758;132.5669;120.9007;58.57672;148.6858;170.0228;146.6919;62.95854;159.449;189.7764;89.43591;76.13981;112.552;113.453;155.6002;70.97224;135.2639;100.5089;138.8819;55.18527;172.0486;174.3651;150.5283;96.78503;129.905;75.37815;132.226;90.92655;185.3603;131.0403;99.3185;182.2932;55.9542;114.3257;162.2461;98.82676;72.00938;125.3185;123.2545;110.8519;122.979;137.2801;145.3466;103.0946;149.2243;173.0058;92.27845;99.82493;154.0394;78.75452;101.5235;53.68714;70.8788;78.3778;57.3051;77.30564;90.21405;61.2875;83.52975;50.85191;126.0193;68.08333;94.56283;56.71549;148.4853;133.592;97.33089;104.7737;80.25043;163.3451;85.92814;95.54996;100.8061;129.7633;135.5677;85.66912;152.8624;53.58066;46.86896;164.8332;170.9628;110.258;
136.4982;99.18509;136.7433;102.4822;136.2798;100.3835;93.43213;168.5822;50.89898;108.7145;144.1509;100.9154;68.45026;127.7096;75.2651;132.3533;102.9481;140.8299;147.6792;72.68089;167.9954;167.714;132.1083;171.805;179.157;47.16041;125.336;73.29592;115.0208;85.67795;78.48634;68.08257;120.6457;88.78533;82.24155;95.55681;145.3561;92.85175;90.66087;96.49388;105.8533;78.93581;96.94421;132.261;96.33234;157.2424;98.95117;104.5559;83.95975;107.1972;122.9006;91.26621;121.6338;60.17705;53.78609;184.0916;126.3111;100.8068;115.4583;110.5763;179.3139;113.0435;88.61739;107.5493;64.98837;125.2331;88.57087;126.2928;117.1164;75.30948;79.22355;89.2434;71.14833;104.157;133.0174;49.15009;65.90383;121.2489;55.21644;97.59239;109.6247;92.77335;68.46626;108.7377;154.114;70.61806;80.64895;172.743;170.391;64.14339;157.8009;80.47478;130.0799;141.7579;145.2137;95.52985;178.9599;162.2397;137.2043;103.1094;191.514;217.7292;190.6764;180.8532;62.28405;107.2694;122.5142;65.68021;141.2023;197.4387;176.3751;77.43832;155.0743;181.4668;86.7014;77.9557;81.2993;120.1674;110.2945;77.10301;108.0277;117.681;131.6545;49.56453;165.289;147.4832;163.5425;84.93155;139.5895;106.0919;151.6895;105.9685;134.4332;84.77412;92.8494;146.1255;66.54249;109.7292;138.4016;105.8051;85.50967;137.3467;85.44794;118.9814;111.5024;158.0388;152.8648;61.72579;193.9731;198.8152;135.5065;135.0816;158.8534;42.01652;108.9248;54.73243;121.4753;89.64701;68.48294;57.09828;120.3398;98.45309;94.97478;98.26418;139.8528;76.47842;85.09281;77.04773;125.9995;82.89454;94.42738;137.3683;113.994;165.6991;105.5462;90.10619;91.5416;126.4993;129.874;78.81206;143.073;78.13098;52.39844;142.7275;109.3486;92.68091;109.116;93.33193;171.4897;109.4828;79.36922;95.19202;61.50639;130.2771;99.43718;131.7413;108.6903;59.36667;79.98096;80.46039;87.9678;104.2105;138.423;56.94408;70.35548;120.1951;61.40281;85.13708;113.848;105.0392;71.71423;97.10844;173.7298;88.41419;85.0955;146.1813;150.59;57.69315;150.37;65.87097;123.4288;137.7671;172.1655;82.89296;181.8445;172.5125;163.8917;91.12486;142.2333;138.6406;143.0199;148.7426;92.12978;149.799;91.99805;90.70268;172.4777;164.2266;145.2274;46.02305;129.2706;145.8854;101.7422;101.6629;98.57346;135.6032;143.5684;66.49001;124.3899;121.4777;112.9768;66.57953;159.4133;145.281;162.9845;62.47255;
135.2834;185.0321;161.0627;81.11813;114.5184;162.19;97.32089;145.2836;150.3258;226.8472;60.69087;159.7404;146.2447;87.86614;101.3106;93.99013;77.5458;153.4573;62.56516;126.8474;96.93779;126.8991;71.86252;176.5715;177.4845;170.7352;65.7589;162.8959;78.71135;162.6139;105.3303;146.0024;76.6491;86.25749;141.1575;56.73415;105.3311;121.3198;93.644;87.1439;129.7167;144.9952;118.5089;123.769;132.5148;114.7176;112.0059;145.9597;147.6395;134.4228;116.6631;140.4621;54.1294;82.37998;38.90317;87.45245;55.6093;84.25272;59.63747;91.36954;91.01151;46.11881;95.77026;120.6749;50.50164;84.52998;78.98754;129.067;97.82413;136.0313;167.1439;113.7575;119.4955;128.8228;82.52837;106.8892;102.1923;130.0009;91.27331;157.4958;50.1823;90.86752;132.0327;119.6174;79.44483;116.2497;122.9242;175.837;130.8806;79.6423;89.17186;81.81843;101.7999;100.7897;123.9222;121.4557;59.27552;78.12672;76.3858;68.70778;99.29746;127.8249;50.17931;69.64555;108.6378;106.1609;90.85258;133.9863;87.14838;41.99845;155.0375;133.835;77.85661;97.7357;141.1462;131.3985;80.32256;138.7031;61.59702;97.23162;114.4082;167.1338;103.9441;149.7832;132.1822;107.2583;79.56935;147.8503;151.2752;189.1537;154.4987;87.52989;135.9061;150.839;112.2432;174.4767;140.6426;223.9928;70.06802;170.7464;140.1546;96.57734;84.05701;96.97618;101.3826;167.4655;77.40642;128.0906;105.9058;150.6829;83.85514;187.2599;196.7682;175.0606;92.95641;188.8182;63.14716;172.9841;74.47064;139.926;88.45913;89.63091;129.1216;58.34341;123.5804;106.4798;112.381;108.5126;120.8106;144.0868;126.1435;128.5564;124.4535;119.4834;97.64794;151.4875;181.3955;149.9715;131.1781;140.1691;60.10406;97.91275;50.59163;96.46629;71.02907;91.64488;74.44746;102.8752;71.0388;57.60825;71.23687;113.8673;53.06087;80.81829;69.11626;141.2234;109.8219;114.4559;185.993;140.3425;115.4413;130.9424;81.70879;104.5552;91.53304;144.4957;83.53053;161.7002;62.87025;96.05295;146.0885;128.6299;81.79393;128.4017;138.0193;191.2562;154.0332;86.83722;107.0986;92.7245;80.60538;117.4695;102.0362;131.2666;74.07664;84.93381;93.36158;77.50408;107.2325;152.2434;69.62787;107.0522;76.47408;80.15813;90.85601;115.7833;69.26195;45.12957;132.5386;147.6355;86.07468;89.78649;168.1199;152.4924;94.0079;157.7692;77.8055;83.02007;160.6297;150.057;123.9522;172.3365;97.0331;119.6983;50.69684;143.0698;
85.13611;128.0776;156.9959;105.8457;139.8693;131.5668;127.4831;72.26993;142.258;139.3699;148.7501;129.587;56.44945;106.243;113.9942;109.1341;157.6823;155.6134;170.3672;62.45586;126.1991;181.3181;61.84262;84.42679;87.7198;128.3474;118.5639;77.74986;155.3655;128.6458;119.1364;95.34272;162.14;213.9781;181.7917;79.07362;141.075;90.99863;163.2222;101.169;179.1653;116.488;86.38668;151.8491;69.53865;125.1415;160.9208;146.4836;103.8902;137.3965;97.37331;114.4414;146.0106;173.9788;109.668;95.86465;147.8083;187.5394;111.8679;125.4747;160.0317;73.32419;129.4331;57.84877;80.55965;82.40599;74.70964;75.97526;99.45201;62.52748;78.77985;73.0552;109.3811;50.77351;51.42744;54.88089;105.5701;81.23409;83.54411;180.2417;119.652;127.5405;82.01946;71.6296;70.53856;116.5242;105.4405;93.45517;150.7881;94.04958;55.21474;146.9546;164.8006;100.7992;97.78401;145.3105;158.011;172.8192;80.10567;88.56373;64.64815;108.2089;110.561;133.2771;148.9537;92.26148;68.51536;80.33031;97.26657;118.2175;156.9377;94.85835;65.88074;115.9138;61.0556;69.13279;165.1767;95.94133;56.87887;133.4752;128.7361;77.00809;66.56981;143.9423;149.6407;92.88032;180.3087;70.68869;73.01518;126.2423;153.1329;95.63824;136.1516;105.8914;128.2628;68.00658;164.0366;152.2344;134.946;128.6002;58.95377;106.0718;119.7422;119.0926;130.8524;150.9079;155.6015;57.1488;145.1208;157.7248;79.33873;80.72944;90.50163;134.8179;114.1157;83.82777;165.4362;132.208;121.3066;96.03423;139.3544;212.6333;175.8731;65.77937;135.2995;71.40045;159.3538;92.30618;198.1939;129.3635;75.82044;144.45;71.49856;126.8294;164.3661;156.1077;79.06161;132.948;86.46738;104.3484;165.1946;151.7264;129.6109;90.49027;148.0758;182.2534;113.3016;132.157;162.6775;75.0767;133.4954;61.21952;72.00262;80.38696;80.37412;66.22486;92.718;51.22334;73.34238;59.63708;125.3934;52.28797;46.90371;51.83771;101.969;81.61274;87.48822;195.994;101.5271;121.798;81.54887;66.98073;82.26803;105.2946;121.4705;81.26569;151.0571;90.31372;56.22263;154.1792;167.4854;102.8522;137.347;111.1573;136.5722;168.9792;72.6245;77.39137;97.03191;72.7543;61.22686;77.92636;168.6981;67.42154;94.30874;57.03014;73.80126;102.2977;127.531;85.16864;81.08456;83.22945;65.85323;68.58885;137.251;61.53708;83.20553;126.6707;154.5425;85.23766;90.42742;138.6544;163.6076;95.04037;165.3913;67.7436;
140.4468;56.10384;126.247;157.256;139.5302;61.8212;130.9992;132.9977;142.7448;118.405;116.0408;113.1896;108.8339;125.0355;204.0322;146.7456;145.0922;152.6354;35.92487;95.69382;57.24019;92.031;92.88845;79.65517;67.00975;122.0023;48.60717;60.75925;90.48425;106.1534;78.40331;68.68107;92.7002;104.0495;92.77945;90.42643;171.8;120.128;123.7783;117.5537;57.5182;65.15727;77.03751;156.9773;108.9081;149.2225;82.72427;74.46755;183.8904;100.8171;63.47386;120.4324;99.07182;158.5803;132.0503;70.79102;66.77467;91.42586;105.1132;86.18108;90.88073;108.6404;122.1271;65.21145;82.45936;84.19887;118.7265;156.1008;84.27761;49.98547;109.7496;103.0915;111.5408;115.3484;67.21812;49.67045;148.7957;104.8346;89.25295;84.89787;161.9897;154.4991;53.644;132.6436;68.24382;94.53133;135.2348;153.3828;98.44347;165.1152;99.27598;114.926;98.2201;133.3767;187.188;156.9508;191.2992;69.66724;117.3954;116.442;101.0497;155.4214;145.2749;204.4864;48.79105;115.8568;118.39;108.1422;102.6376;80.09486;119.0906;140.9711;111.3082;129.1128;99.04652;145.4412;61.60997;152.388;177.1686;182.0764;70.00907;199.6477;79.4201;138.3238;67.72643;134.2946;138.2109;89.69281;131.4677;70.23516;146.9725;139.3902;137.2822;76.0925;123.6978;133.1706;176.067;116.2716;116.7459;124.8621;94.65924;124.6195;204.1442;145.6685;154.8494;190.5338;46.84772;104.9463;62.3638;98.05373;101.99;99.3009;89.07478;126.7182;45.01384;67.68423;84.81664;104.5461;59.62119;71.51208;80.66291;122.5472;109.5086;71.66106;169.3051;135.3319;113.7607;117.4124;75.0859;63.69402;77.02528;163.3809;94.76406;144.4314;80.75228;74.57292;190.7094;132.0744;77.54306;125.8595;107.6961;161.7512;140.1732;90.3334;83.63511;101.5217;101.5659;88.02939;87.58144;113.2117;102.1047;73.7616;68.78554;87.82316;133.8845;137.2064;79.88489;61.29692;105.3233;99.96301;132.5575;119.8799;68.85894;51.62406;135.1423;106.8436;90.72533;91.47252;164.7754;174.4281;64.08425;144.6037;72.90167;98.6896;149.4137;177.601;118.7121;178.5969;95.82933;117.0589;94.78897;138.4368;167.5855;162.963;204.2802;60.31648;164.5762;132.0436;95.77007;113.5441;140.7608;190.6497;75.13731;155.9214;156.0326;110.2097;98.79848;69.05447;119.3162;118.4563;80.7218;170.7193;135.91;154.7106;52.32022;130.8532;166.9575;163.4981;73.91756;180.5909;76.96448;133.3167;76.15303;142.5713;94.60615;86.33855;
98.78096;118.5273;85.26055;68.91741;164.822;103.6122;60.98836;134.7778;61.19478;76.85388;96.93026;189.8218;111.7032;155.2483;125.0987;151.3812;58.38025;186.5713;168.6248;167.5192;142.3313;79.66871;120.749;144.5816;68.56964;106.2721;164.04;161.4029;75.30645;156.4965;150.7705;78.45062;99.28604;93.06822;121.2463;175.7674;103.9992;106.5461;93.14706;106.3437;47.58346;117.9698;129.8148;132.5223;49.79832;152.7696;104.7567;149.7611;66.07314;162.3663;111.6335;79.47568;176.8661;69.55707;143.566;138.6703;120.1562;81.16543;125.4994;96.89633;104.5944;135.7965;111.2798;126.4378;68.06494;128.9034;184.5639;106.2188;154.9836;118.3721;47.65272;92.38982;54.80453;85.24228;60.79151;117.9881;88.49539;114.2052;74.31857;102.3648;55.15062;141.9519;58.74082;61.09571;57.00851;135.7074;94.66011;105.7032;133.0931;82.18533;137.6134;91.14209;97.35168;93.96379;105.4822;131.5995;100.8879;156.2867;69.7776;91.38657;174.1818;105.9613;69.74194;81.9176;91.53962;130.0005;99.08941;60.35492;66.94816;72.06946;132.9006;99.45596;87.20574;149.2787;76.39201;73.52026;97.46935;74.75753;135.3638;150.6856;75.26399;65.34878;100.6949;66.19291;74.37946;134.682;67.72736;55.82378;120.5855;128.6047;76.22925;63.48475;162.1829;124.318;60.58251;135.6573;65.40158;97.78564;115.9258;189.6292;135.9688;182.9859;128.5436;155.0572;63.80822;201.3309;160.1659;182.83;133.8107;67.80544;122.2498;161.2469;81.50148;114.8457;161.7513;163.4921;89.52995;153.6419;157.6149;90.84013;114.7594;101.7376;108.7577;163.92;100.1153;123.2357;91.62696;105.115;47.98996;143.5694;151.1513;129.8881;65.58785;174.9973;107.3234;151.3438;69.20641;176.5931;104.0478;88.34163;168.09;55.77031;144.5203;152.9164;131.9007;81.9136;119.7214;92.19059;110.8176;131.0291;111.3478;131.9197;80.67241;143.5197;179.0717;107.0969;155.1099;135.6926;46.37672;94.80431;54.24699;99.40624;73.30286;110.6223;99.29762;131.4141;71.79273;95.05167;57.76213;159.9713;58.94847;77.39778;54.96075;115.9281;95.16248;122.2316;145.4381;82.93475;131.5586;86.57999;103.3587;90.00523;76.18922;155.685;100.6638;181.7726;66.44424;62.17228;146.4469;132.8892;79.86985;74.08987;120.991;174.3567;148.5449;76.28577;105.6762;95.79714;123.7442;86.37834;104.8489;142.5497;98.33028;74.33962;84.60394;87.81867;106.3286;125.448;68.3914;53.16288;114.5095;96.2581;97.73434;114.2782;86.03622;69.12826;
122.5533;62.57072;108.6575;138.9836;151.7586;137.7377;73.34184;156.0034;96.51145;100.992;149.9763;125.9953;86.14614;76.50421;83.69451;143.7135;80.31493;116.996;129.9419;122.3318;115.3829;134.4811;105.9659;185.2007;70.56091;112.6569;156.2491;191.54;197.7542;103.0662;73.64497;72.80333;160.3534;174.2655;72.31271;138.0206;53.31427;77.01572;84.98526;149.1003;173.4626;78.97788;120.756;132.6649;130.7573;89.1653;76.70066;116.2012;98.7852;124.3678;135.389;179.2451;101.8487;158.181;88.01058;92.98346;100.631;64.62606;84.03535;69.34985;107.2965;93.34401;121.3935;84.67905;135.4682;71.4479;65.72351;91.60184;181.8607;104.0379;144.1389;91.65871;113.6015;54.05739;83.38748;55.51597;75.76836;61.34465;147.473;102.0433;66.76185;79.35758;70.88063;64.27336;113.1722;75.68937;133.7473;211.1456;122.527;115.3153;128.2528;97.53539;86.99174;122.6335;143.6442;70.22226;151.2784;102.8299;190.8661;122.3835;75.03541;70.08186;95.34645;93.71531;86.78964;89.23184;143.4052;136.7013;79.5909;81.39088;128.1112;86.70485;132.9705;138.9644;119.179;140.5999;213.6685;93.10397;80.53988;153.8499;80.44437;66.26657;108.8434;122.2184;139.3903;133.7544;149.2735;82.04918;149.9405;75.98865;102.7125;135.4358;165.3785;158.1098;75.04868;157.2581;82.73806;109.9524;125.6003;110.6576;84.09227;67.66765;90.83732;113.4627;101.3533;122.0621;123.0017;94.12855;110.2074;158.8705;94.47675;168.9187;62.25382;115.1931;145.1904;161.4205;171.0198;101.1693;74.00419;72.85282;184.4803;193.9609;71.18724;137.3167;60.37366;91.84087;88.66315;152.0462;149.0508;85.94036;103.9129;120.169;126.6273;79.21066;85.36623;93.33525;117.9822;129.3384;133.8714;151.9544;96.60596;185.0846;79.32471;85.53176;90.55974;74.21989;89.19794;61.63596;93.5449;100.7899;116.7995;86.61434;150.4404;83.02464;65.55762;91.82942;191.849;120.0052;148.7509;90.99661;97.4947;67.31046;77.8133;52.64644;77.8101;60.23953;153.61;82.53104;77.45288;82.12067;70.72583;48.96751;105.5152;93.60233;122.8364;195.4883;111.3864;128.0235;134.6124;88.34499;74.65645;131.1472;169.0543;57.05766;129.3093;65.65414;177.3484;147.8216;106.8442;55.71539;94.07604;103.8529;47.67686;69.8746;92.58138;107.3712;50.21376;95.1203;175.7417;77.75903;158.2511;149.683;103.0461;120.6506;195.7437;63.20263;87.79156;143.049;82.76412;90.12138;104.374;140.8936;154.9489;146.0134;118.9633;108.7752;
93.8853;174.0806;190.8584;161.0266;121.3036;83.07794;116.1764;105.4891;80.81742;155.3804;208.9295;186.1653;100.9012;159.7169;155.3853;71.87497;108.4346;74.8096;131.3029;124.4252;85.41792;127.9303;109.1939;128.4911;56.64777;161.7023;177.0978;117.2354;82.95171;158.0615;107.5785;122.8434;60.92826;150.1606;118.3713;87.4599;128.9924;76.93571;106.988;102.4142;129.0124;69.24039;137.0355;101.1733;155.6829;160.1994;150.4262;153.2873;113.8119;168.3633;208.3249;174.6445;106.186;143.1865;72.4215;133.3658;74.51218;70.23259;68.93873;82.30574;73.256;114.5292;97.62575;92.45571;86.94981;145.8748;76.43676;66.25483;54.56749;131.8823;102.0283;81.15127;153.5936;122.38;188.8538;106.378;105.6789;84.86088;108.5397;108.4234;108.9245;141.4541;83.17469;60.36077;167.6499;126.3104;92.74633;111.3224;107.2209;174.5396;148.7341;46.07332;86.09832;71.1228;129.5881;71.63715;76.98515;132.0524;85.43423;74.04849;74.68436;99.57529;103.5251;106.6369;73.41466;55.98627;129.1651;74.34153;105.3905;155.7146;93.81031;80.85374;161.9527;162.9954;77.33209;97.55071;133.9429;115.5164;101.9362;162.6649;77.3187;77.34855;119.0775;169.9876;111.5046;153.8475;161.2594;150.1501;102.7493;173.6053;218.0062;177.6593;138.1025;64.17279;126.2547;121.1372;98.17044;132.9826;221.3718;171.235;76.79892;139.3447;149.5057;80.51875;111.6874;85.5965;112.0506;101.1838;101.8401;107.994;129.2904;114.1005;51.65647;175.7932;202.5162;132.6978;82.75851;143.9913;102.2308;117.0885;65.39325;149.1939;136.2133;100.5443;145.3294;62.47258;109.1861;116.0754;148.0944;54.44847;144.7359;91.17435;125.3279;145.2779;137.6076;166.8171;114.9354;182.7899;181.6307;151.0307;124.4993;126.0629;83.4481;119.5597;65.45572;76.87907;76.7327;96.27113;79.91062;105.655;95.39809;92.25661;94.38331;138.2518;94.71733;77.32846;57.95288;110.2638;101.4406;89.48454;171.7263;100.4684;187.2413;93.73873;88.14696;76.69911;100.6356;125.4372;112.3321;147.8081;69.92103;46.54158;177.6662;107.8379;102.4255;94.75581;96.29757;184.9256;160.0832;56.65974;93.30054;64.16759;109.1596;68.70402;124.8218;123.8939;81.01548;107.0783;81.45258;66.87097;145.9914;116.9615;58.28379;75.82532;87.00744;86.76104;62.19024;124.7879;121.4504;45.30796;159.8991;140.9233;39.49038;66.66451;185.1994;123.9937;87.71394;100.9132;49.01257;101.0706;123.2994;130.859;86.93819;127.6489;133.0182;114.3858;
59.75763;178.4658;118.7561;94.88446;128.6553;177.6857;117.9012;177.063;163.3482;120.4653;141.5372;56.15713;104.654;131.4453;169.0057;181.6866;80.88179;193.0083;83.62156;162.1106;215.0382;121.6117;67.23043;100.4317;94.11224;110.9277;135.4854;134.7274;135.5913;137.5591;109.2129;166.6306;73.68673;123.1579;77.3956;85.93486;126.93;122.9716;159.3537;72.82397;91.39878;60.0008;127.3215;149.5427;73.0283;116.7756;91.70702;68.34393;90.56266;113.0235;111.0781;71.79248;119.3268;92.61832;106.3984;104.0971;79.1345;70.80047;154.4763;95.8714;137.9094;123.2929;84.79964;192.3594;57.12248;105.0628;128.2084;103.9627;117.9376;96.92978;77.73368;139.7307;113.1679;122.6431;153.3676;72.2639;69.35091;87.87411;205.1514;141.5537;145.2109;115.3439;97.213;109.0118;155.6321;55.97184;62.78452;95.28472;140.7074;74.16428;115.5521;99.44785;80.36287;78.89381;107.9398;101.3877;95.61752;153.6335;124.2797;97.09888;124.4068;57.48973;68.57184;103.8388;148.8588;59.10863;120.6371;92.62464;197.1494;108.8386;117.8913;76.36223;94.76804;60.765;61.94203;64.42051;164.3406;122.751;56.66029;94.65678;134.9166;68.10252;157.9696;120.0974;135.4368;125.1266;202.0943;92.50264;60.63702;171.1225;129.6047;103.578;161.5573;193.806;130.8084;173.5337;157.2676;98.34061;157.4632;69.49446;113.53;133.9301;180.0783;206.0622;69.44016;179.7569;101.9994;131.4726;226.0084;134.8499;59.43944;87.72101;90.12722;108.1368;131.2249;165.215;148.6689;154.7031;116.2199;161.6104;76.51978;122.4985;84.50368;90.89919;157.8702;139.4541;169.8472;70.1383;89.27184;48.48457;140.7749;167.1048;79.2616;122.121;96.99796;84.30701;82.36179;108.5212;130.9974;50.79676;128.0592;106.9301;93.67356;91.89679;87.21038;73.36401;140.653;111.9696;150.9607;138.7535;89.99627;184.5482;63.46412;101.1919;141.3673;112.7016;138.9696;115.0565;86.75163;133.5251;120.0644;106.183;159.5073;77.83624;75.33344;91.87073;211.5108;161.8977;140.524;107.435;119.6287;85.57926;156.2054;69.88335;54.39949;81.68975;151.4106;76.79081;103.6402;115.832;90.39556;91.35255;117.8705;87.83736;92.41806;158.3458;166.0995;144.9459;135.7565;65.36607;58.55253;122.7451;150.1285;39.5537;125.1404;80.30268;180.1602;122.4177;89.97137;83.45538;57.80709;95.59969;68.39402;91.20692;167.1255;161.6374;67.85194;73.61385;134.5723;56.70953;154.2708;163.9878;138.4508;116.1745;202.1543;101.1263;
130.0506;157.2158;163.2998;61.01584;56.17331;88.74944;117.7579;127.3778;102.4897;148.45;153.7013;91.16074;129.5773;110.0773;123.5704;96.98621;98.04023;134.8704;161.2546;154.6027;57.19873;95.47307;45.29957;147.3117;126.6959;61.75576;190.1982;84.66479;77.04146;80.15577;128.4435;139.3165;53.95835;136.2424;140.4111;80.60526;59.51966;75.96062;85.2643;109.0437;94.14934;97.10489;115.1605;64.2239;165.4884;81.70902;82.50628;113.002;89.89896;73.76138;111.6857;82.58768;123.2154;96.6017;80.00526;148.2166;77.40816;65.04868;81.92087;186.6854;113.6138;125.4978;69.48274;66.83121;91.11603;96.87125;89.55841;56.09677;52.86726;162.1276;95.89919;100.1099;68.40639;83.39916;89.27219;90.53834;77.88847;142.6128;160.9486;160.5222;118.7686;114.7001;83.74358;62.4595;80.77219;173.2184;53.3251;134.5965;68.44962;171.3958;174.9589;108.089;72.88097;86.74513;77.70787;65.45425;76.37421;173.0121;155.0317;43.5195;59.84929;131.3148;82.65948;117.5717;104.5062;84.73656;102.6092;161.3413;84.27441;78.96114;147.9625;87.27039;82.64748;90.17869;175.9613;134.2294;180.9165;156.1937;92.79755;143.5676;77.65231;112.1538;111.2477;144.2967;146.7298;63.38271;146.2631;63.73292;156.561;162.3136;162.8836;64.13758;58.00396;118.6836;111.2807;148.3405;107.0224;130.5347;165.3093;109.4871;159.4268;110.3725;127.0297;84.89381;98.09592;128.1894;145.2255;162.1911;69.09403;120.0234;64.34515;145.6855;139.3133;68.30411;176.5489;73.26879;78.08164;83.83888;146.7161;151.9375;69.03291;144.788;141.3129;83.57865;59.05886;102.2151;75.07128;125.1259;96.78511;85.87486;127.7834;79.37426;195.879;80.4162;80.92277;97.21309;89.7939;72.0218;100.3833;88.02725;139.617;119.7962;99.87009;143.306;85.56544;74.89619;75.93503;169.0463;109.3367;133.0891;80.3721;75.62873;102.8728;106.1857;90.23069;59.29608;52.70673;188.9287;80.00415;117.1362;69.20245;72.90144;101.8014;108.1083;93.99892;144.018;154.9785;141.5518;110.8123;114.6991;73.95337;67.96626;94.51592;193.0812;65.16572;131.6087;76.13172;187.1593;166.1576;94.77175;69.46352;93.07524;91.92297;48.95016;76.91447;177.9948;131.5062;82.81341;72.67017;158.2936;74.56134;133.1688;110.3088;69.38866;150.3391;186.4137;94.82511;70.03383;170.3823;105.8312;96.48502;113.9938;157.6985;135.0183;204.9539;123.3784;113.2244;156.8209;61.87563;113.0941;102.8642;114.1358;184.9697;84.75512;176.7525;61.63049;
108.6865;210.7623;136.4895;75.53823;74.21116;110.6472;99.59637;106.262;103.5535;149.3316;74.81111;85.58813;60.36095;115.3966;108.9433;136.8318;50.68438;76.6117;111.2986;83.51096;96.0927;148.784;106.8174;74.01883;131.1301;187.7922;65.47279;68.03848;124.7683;102.6942;60.84796;134.4923;62.7239;67.05113;93.46016;146.9255;121.4916;194.9628;132.4311;124.9851;83.14133;144.2979;210.729;164.0141;159.7465;84.46967;128.1015;137.0255;69.49223;121.4491;149.1718;168.3175;56.32353;158.6244;149.646;79.1767;124.3735;71.35361;124.3041;129.5855;71.49811;139.0122;116.6374;163.1348;63.33498;215.9856;190.1078;161.918;69.51452;213.8096;65.40469;154.1551;80.27388;164.0906;109.3826;110.7142;114.3769;100.9166;118.5331;130.4522;100.3209;97.57265;135.591;115.3962;142.1894;152.6138;147.159;151.4503;88.12659;193.5546;171.2859;116.7342;110.3544;114.107;48.76127;95.57512;54.08921;75.39813;57.93824;76.65126;95.45128;136.1796;64.05473;67.12747;77.53504;103.8932;93.07654;69.08889;66.31725;142.7552;105.2374;91.44605;160.3019;86.90401;128.7433;111.066;61.07881;76.08804;76.62248;142.3243;127.0598;103.0617;102.9285;64.02613;119.9414;142.9965;80.76191;128.2747;93.1164;193.3121;151.558;90.6987;78.92368;94.90396;85.41886;119.9875;110.4539;128.2085;71.51884;88.55057;66.94341;121.4732;100.1173;124.4367;68.28857;72.83316;120.518;103.2058;88.10129;129.2931;80.10146;84.58213;130.793;143.2558;90.9338;67.17049;100.0352;109.3919;54.33262;120.0497;50.78434;57.8162;100.7815;161.5567;125.1862;167.5466;120.2304;138.0967;89.4024;124.8241;198.5;162.5757;167.7178;85.31254;122.8093;126.2756;90.92246;118.8309;153.9039;193.9581;49.5404;134.0044;121.9512;91.49714;123.4609;51.70116;148.0345;121.4035;57.12688;141.3054;103.6382;148.5657;48.57519;185.4209;197.3077;177.6484;66.39483;185.8505;63.84151;173.7377;84.9286;152.4958;96.83578;104.4641;127.1714;97.28072;109.4301;121.2138;121.4393;85.81647;137.4455;137.124;123.2619;129.1519;129.6582;173.3713;87.3586;160.17;198.962;108.9753;92.30499;116.1855;65.11078;120.7159;60.36935;61.66677;94.32329;74.99248;63.38716;94.32412;81.44714;66.11847;65.77654;134.7809;57.19255;89.39982;64.354;114.5059;96.13853;77.35152;149.8898;73.2008;156.4005;105.6826;88.18982;83.49432;97.4026;175.0469;130.8335;132.965;94.15859;70.96398;167.6335;114.9272;90.75593;121.9438;
94.10632;142.4732;69.76358;99.62546;82.52834;123.9825;143.6526;110.5639;96.76306;165.5124;62.06363;49.26362;95.09879;221.6393;116.8092;139.6605;59.78999;102.4064;63.27843;102.5658;64.12704;80.17461;93.22543;141.4048;77.13778;92.72182;96.83212;53.02943;62.8614;71.49686;92.76681;93.81426;159.6779;123.0774;84.99848;109.6414;70.06028;61.4071;96.23361;179.3067;74.94014;118.9307;73.07241;133.3206;115.1231;120.9985;50.03405;68.25113;63.50394;81.63642;63.38961;117.913;129.8504;68.08968;75.00347;176.0459;76.77002;177.3203;171.1289;105.363;115.8282;170.7586;86.68483;83.5913;179.103;128.4464;61.38886;116.6622;154.1425;180.8611;200.0909;143.806;88.5992;151.7997;61.55677;93.26855;141.5237;180.9567;152.0617;74.30832;125.1255;84.20665;104.7893;147.9482;126.6308;91.97846;112.0984;80.89925;106.5323;114.2433;152.2481;112.0567;121.5017;73.13514;156.2178;73.44961;140.0378;73.1036;73.29298;112.1307;135.4043;159.8603;79.31725;106.1835;74.25585;129.6297;144.9939;42.68135;134.54;92.60893;56.37971;65.05089;111.754;150.2514;55.03832;85.27437;118.4441;132.6607;78.23593;130.0161;88.70165;151.4487;174.9809;129.5492;120.4073;69.26889;196.9069;98.6791;101.8734;140.2906;91.98618;106.1638;85.45797;115.2858;185.0835;116.1318;108.6954;153.4607;66.7039;72.18761;113.2094;213.2666;105.7461;150.7306;62.88246;92.716;69.54272;100.7415;67.12089;99.70862;101.2716;154.0477;83.64324;81.02362;113.0399;69.08288;59.01238;65.34446;105.5495;112.3661;163.3853;121.8282;107.9886;110.6719;71.27748;56.68752;126.3853;181.0624;82.04867;109.7533;77.9721;162.9052;133.8537;116.6299;41.19254;74.75147;63.73586;72.98849;69.81689;112.9734;133.0917;86.81116;79.88259;188.0597;83.31168;168.0381;182.6687;115.9855;105.8799;165.4811;101.0813;94.9188;175.0385;126.7706;81.23279;127.1093;155.3467;164.3695;229.3003;148.2567;99.99336;148.0421;60.22465;110.0291;156.5097;180.0993;138.7042;75.51589;118.8517;75.11226;113.1261;152.712;129.2858;106.8227;108.7843;91.36331;114.2135;106.8135;163.1422;123.0036;111.3074;69.69563;180.2633;99.10477;154.8175;101.473;131.8212;124.2358;173.0215;187.7428;115.3771;70.61373;91.69441;161.327;142.6395;79.60148;179.173;75.47461;89.64632;98.23669;152.9667;166.7636;76.67793;111.3369;116.1927;131.2832;80.06794;132.393;115.9873;122.7556;109.3876;161.9002;133.8842;58.36073;146.3557;77.81124;
124.7273;113.6513;120.1797;99.94273;148.2884;131.9041;124.557;138.5339;104.7233;42.89242;78.11979;53.4103;65.53523;74.06064;57.8962;66.85429;124.0797;64.50018;54.85717;68.02176;103.6546;51.69865;73.14226;45.79699;90.62486;91.22975;101.6003;128.7191;84.87456;176.1366;97.5927;74.23289;115.7928;75.86084;158.2399;144.9326;139.0604;50.91325;84.07444;185.7014;144.0451;88.52026;123.9388;115.9289;160.7214;154.2331;76.15121;107.6908;82.60435;83.04807;95.61799;86.69334;116.2031;99.3339;98.11689;59.35977;89.38681;91.63553;141.3295;58.69077;62.35265;132.0044;91.50908;123.9014;129.9955;77.95553;49.61191;165.3852;134.3299;48.88831;84.16106;141.6769;97.97861;59.82949;116.1293;68.36556;68.74814;129.3828;121.0575;102.0656;178.539;135.6053;102.1623;90.68272;142.9023;153.0702;187.7539;112.2617;50.23869;119.2771;135.5387;70.13368;119.5772;216.8578;169.679;68.33205;185.2883;134.1335;107.3483;153.7491;83.95135;86.42537;160.0155;98.60817;139.4427;119.9913;148.8403;64.31243;159.6296;204.5402;156.2653;104.3603;178.9947;88.37701;165.862;82.52426;152.2162;130.9023;134.497;143.4408;85.25655;113.264;139.4359;112.0271;91.84673;117.9372;128.9412;144.3275;123.8444;134.6721;126.4427;111.7679;145.4838;148.5854;138.9002;131.9451;123.7305;56.5462;72.07838;46.50779;78.15868;74.68208;58.99355;73.79805;134.4195;90.04116;66.86136;88.00266;111.6523;53.65055;91.38197;59.25962;108.6903;108.5227;101.9532;133.0488;101.4449;146.4608;98.80957;64.30984;109.3981;92.79767;164.0075;151.3763;136.3453;58.55989;93.2794;177.6866;160.062;107.8759;115.579;99.92685;180.2247;150.7001;75.43368;117.5531;88.25175;111.8018;111.0234;104.5895;126.7442;98.35613;116.6288;75.44395;107.1836;104.8885;140.0679;59.46876;73.49256;102.0672;97.29286;103.2838;124.9156;83.97295;52.51278;159.4227;125.0128;57.02951;87.5318;141.1944;114.2786;72.47213;106.8255;57.40338;78.42562;121.3232;125.3881;103.9542;188.8909;156.6658;117.5415;98.80491;147.3557;152.9095;204.1873;140.5105;63.7828;134.3387;134.3031;70.98392;134.828;177.9451;143.4669;53.54613;179.6732;169.9109;82.37019;148.7154;69.46468;93.41883;132.1562;84.83144;115.4372;146.3832;105.1488;58.60647;163.9053;165.4738;154.9266;98.8037;147.9022;86.51299;116.3081;89.67892;150.4991;125.6971;115.3246;170.7815;87.56721;154.1566;122.897;147.534;118.527;117.0455;93.67143;132.3879;
45.2259;160.7364;132.7711;78.57368;79.94291;85.80701;92.55692;163.2178;68.44971;113.5089;102.8222;117.4785;67.86749;162.5401;163.4271;174.3059;69.72661;161.7623;75.71302;167.5069;86.35683;131.4662;77.09349;73.84362;117.42;60.27951;120.317;94.73019;99.80027;88.83221;146.9684;131.8689;96.71127;122.5059;122.6232;104.6841;98.34978;141.9482;170.4526;142.6452;124.2438;128.6826;60.15884;71.97295;41.45137;84.03391;53.98621;88.30178;55.65011;86.87553;88.53541;55.67987;85.08688;112.6645;44.06524;67.01036;61.7165;134.9662;113.5251;111.0895;171.5759;109.3791;144.195;121.2875;64.96347;100.2678;87.38516;126.7165;86.17294;154.229;59.64084;98.17718;138.0991;114.1057;87.89478;104.7676;123.3089;166.3893;130.3137;85.33039;89.94291;82.20457;96.88731;111.1641;109.9623;111.4592;53.46961;64.15627;60.64163;76.82242;119.3789;100.9288;51.84803;66.53038;131.4031;96.70158;70.18633;128.9373;75.69749;39.04422;142.3112;123.4748;73.7858;93.34306;131.3896;114.9213;85.32841;114.1918;51.49948;77.15264;95.21868;164.093;85.89242;119.1092;147.818;104.8208;108.7147;141.1245;151.6455;165.4874;146.3122;76.06767;124.6229;149.5476;106.6665;158.2164;164.8552;221.1961;63.35843;182.7396;144.8756;79.30181;81.62772;102.9425;93.85556;164.562;73.84185;132.7088;113.1468;134.8853;76.07841;188.8217;173.8324;174.7592;75.80904;151.1703;72.83857;172.0538;101.1717;131.7663;91.83643;76.29136;122.0856;51.81775;114.6538;106.1681;107.7997;94.65355;144.7866;143.5834;116.1012;141.47;132.424;103.0595;98.44286;158.8936;170.8238;141.5708;126.1387;149.0435;67.77071;83.73986;47.23325;99.20979;59.59687;87.05003;58.67078;79.45549;84.77169;56.88092;100.3661;109.1318;54.94789;67.95116;63.51014;124.3946;99.93179;114.9931;180.4907;123.0209;138.058;135.5228;75.46771;112.4813;96.33588;126.8882;84.94997;170.3746;56.97371;95.28075;141.447;135.2822;90.05415;112.5729;131.8404;196.6094;135.0216;86.48553;87.79681;71.001;93.58658;114.7215;125.6535;106.7597;62.37756;63.43862;62.41892;68.89651;105.4275;104.6512;56.79946;77.25795;128.3687;112.6359;77.01512;162.7657;62.21413;63.56381;132.8495;170.3247;76.53378;65.54915;170.2792;125.7311;79.24034;134.0238;76.15673;73.43839;97.48471;194.9044;90.10102;156.7388;126.0841;117.3365;83.01407;137.8208;160.7895;122.6399;162.9875;69.46864;154.5681;122.0565;96.28046;158.7794;198.6923;187.0143;
142.8141;110.9487;161.7182;48.08757;140.9818;58.87357;127.1776;208.0342;134.2323;72.93101;95.79964;92.84125;134.119;132.1897;113.9078;97.64922;144.7876;114.3642;168.8369;93.57158;139.5052;64.13802;111.4824;135.392;161.2394;208.3995;99.21839;103.2031;101.3067;123.914;125.0121;81.409;183.1206;51.3407;86.21243;49.6018;113.6109;116.2152;67.85354;122.9598;131.5458;144.1221;70.80637;104.0577;81.34956;123.5811;110.1108;107.7274;141.6316;81.10862;126.5834;54.33883;58.25089;91.35612;89.82196;76.61371;70.94114;100.2261;147.7861;112.8401;98.651;130.8609;67.99261;80.62874;97.4967;140.1194;115.8855;105.2161;77.40969;65.70842;78.09657;147.5728;82.17937;61.26311;78.58089;145.1381;101.4543;109.8012;72.26699;51.61488;84.81583;114.7151;93.86327;112.3022;172.1739;104.5813;119.1582;120.6978;100.9956;94.71169;114.1804;157.1831;101.7518;113.6006;67.35891;217.5834;161.032;73.55134;73.67185;55.56478;65.08829;46.02466;82.16858;162.7368;155.9096;85.14939;64.80393;141.8345;75.19427;141.6609;116.9642;100.9063;126.6449;183.6346;51.48832;62.84627;120.1691;84.26718;79.83411;113.3797;147.9094;129.9252;203.237;148.0038;98.62654;146.4635;58.62847;99.32401;153.8022;107.0988;138.6409;45.68454;157.3813;56.31745;125.5795;203.9319;141.9451;65.09814;101.4117;69.15136;149.5628;160.5646;109.9085;98.10724;149.69;113.7552;162.119;100.9336;148.1988;68.04569;108.3531;151.4218;192.5274;177.5679;99.68259;89.59309;109.2401;146.0982;124.0789;68.97374;188.4599;47.60884;73.36858;48.84347;126.7404;111.966;68.30255;121.346;133.7178;131.8035;79.94968;81.55352;92.10786;150.5201;108.2314;112.7811;142.0919;80.39804;126.1803;64.67281;63.60342;96.397;88.87405;92.92944;81.08926;88.02141;164.6858;113.0265;106.418;149.1991;67.95398;64.21572;107.3124;131.4926;104.589;109.5188;88.03871;69.16734;82.79025;142.1318;76.51273;60.76263;96.06306;127.291;113.3645;131.112;71.41153;51.50625;90.59507;111.6429;97.05716;132.927;180.9028;118.7269;123.2166;137.3649;113.0384;82.86199;129.0901;157.403;109.6377;130.7277;106.573;185.6116;168.1522;92.93718;65.81682;60.87951;90.4537;70.698;89.0069;114.6725;150.2106;66.01298;84.86344;119.6919;94.13232;156.355;116.3105;108.5245;109.5116;193.0278;44.97219;82.66434;124.8382;83.76469;110.4691;136.7665;157.464;173.1008;147.2465;120.0515;89.42302;157.2798;58.5131;131.2095;
137.7984;108.2681;54.20323;64.36661;93.29761;76.83988;77.24162;142.5945;89.43719;72.00011;77.38486;159.9105;99.44786;189.8424;168.9484;118.9421;112.8818;168.235;84.34226;85.2814;151.6494;89.88651;105.433;109.9793;141.6461;137.6163;141.5166;119.1129;75.9513;106.9242;75.05202;148.6547;130.9258;126.7205;174.2495;42.34196;133.7175;75.59702;122.7627;152.8501;104.2168;91.04475;71.15126;94.32486;133.2585;146.1512;123.9987;161.3727;109.135;117.3391;193.2013;92.79671;135.8024;79.99004;147.7937;156.4946;183.1904;187.1046;67.60394;82.49688;68.8261;153.207;174.2988;64.68478;161.5199;85.45222;63.43283;52.9826;138.2188;154.807;58.06519;103.0527;79.39796;109.3228;75.22091;108.4516;101.9298;162.2006;155.7942;123.1192;137.1686;66.76501;172.8879;82.85426;77.24008;105.257;109.5961;82.40166;78.51811;89.96375;105.2232;86.84365;78.18855;107.4637;76.45791;95.33633;97.66172;153.4331;135.3866;105.0614;67.08331;98.2021;68.21013;92.67137;51.0709;80.65591;66.72301;162.4956;95.33406;118.4223;75.19646;88.6962;78.49052;100.0072;102.4034;120.0276;131.3554;160.4327;132.3102;129.2688;103.6217;81.48669;99.51068;155.1575;66.98598;139.4898;114.4217;187.5794;136.6968;128.0554;60.10497;69.92097;78.32314;79.25982;64.37199;153.2555;92.78005;80.06152;64.60904;143.7791;86.60231;171.547;173.3217;106.6404;142.0226;153.0368;68.95594;77.69797;121.105;107.5018;83.89762;95.59966;145.1823;127.6994;151.2865;122.6382;71.19793;110.4742;76.12009;142.663;126.0934;147.5374;180.4219;47.36158;114.7998;82.23219;99.24641;161.7983;105.608;99.9072;57.40279;82.9176;118.3005;135.4473;121.1436;147.9487;135.42;103.5202;167.3604;88.03491;107.07;100.2301;115.6152;140.179;183.3574;181.5702;73.65961;87.07092;67.52258;158.3253;187.654;66.34608;147.1494;104.013;66.81729;59.17538;129.8207;154.1983;50.36325;117.5872;79.91357;125.3063;61.68435;94.59823;92.68053;151.7702;163.5289;118.9613;157.1702;57.43094;147.9563;79.04549;63.50604;119.4483;93.28593;76.44031;78.62661;86.13532;112.745;91.53505;76.79879;111.7572;85.13278;79.31593;98.45154;178.9209;133.5551;113.4368;66.5379;67.13875;92.16153;127.3007;61.32411;97.14302;75.49484;143.2952;93.42537;117.5193;109.1383;59.07775;100.4447;99.182;78.51862;142.2273;164.1618;145.6692;132.7029;131.7945;119.8011;92.97507;132.8588;171.6735;66.92853;139.5507;76.85754;195.4931;
90.32106;95.33526;141.8486;102.8289;101.8204;90.27541;157.2961;62.08385;66.68522;73.24746;103.746;130.3825;100.0704;172.5741;128.289;142.0808;96.743;81.21234;69.43756;93.1179;136.6522;79.93737;154.2335;52.10023;82.32843;142.9787;127.0044;95.85914;99.53175;114.1498;169.5999;100.7169;80.79124;100.3041;113.4211;97.41245;78.86319;95.83185;161.441;72.9109;88.56037;81.37119;72.61401;124.1889;151.8771;53.08659;88.97649;75.18376;80.29747;94.63168;112.3894;115.0239;80.14768;128.0662;161.1032;84.53361;73.46632;149.3698;128.6873;110.4734;169.5559;56.93609;64.90236;126.7193;176.4945;116.4954;191.7352;166.1539;163.197;105.4013;192.606;181.8593;164.1498;165.5813;61.4286;152.0152;145.7098;103.4173;178.2032;166.4919;178.6475;59.78807;114.8095;131.5278;88.241;80.27823;83.42768;94.68424;148.0437;76.83038;122.283;113.7211;128.03;71.95273;168.618;133.4108;174.6907;78.73856;198.9961;67.79221;125.4595;77.51733;179.8705;110.764;106.7167;158.351;50.84112;125.6717;157.5141;106.3721;116.0498;90.68374;119.9696;133.8295;104.071;170.4791;167.8459;87.57169;167.0251;193.1049;113.7614;146.0441;156.8753;85.51504;123.0498;46.5134;77.66231;83.20381;83.25778;87.97984;111.6933;98.48379;95.76305;83.96076;148.047;64.15881;56.19638;85.1809;104.4058;129.3898;113.5404;178.5485;137.9272;144.3623;101.7242;76.56932;63.89684;95.5409;138.985;79.92113;148.5993;51.91155;79.08637;149.9669;140.8233;89.27229;104.8652;117.4561;200.6388;102.5433;75.96891;97.59374;84.94669;89.88464;72.35503;91.76333;147.9072;74.7157;78.66303;99.35162;71.96826;120.0354;166.619;58.4952;94.16325;77.53289;88.92823;94.82819;104.307;115.9911;82.3581;131.0537;151.7078;85.01264;70.88846;153.3627;144.4622;109.1202;166.7143;54.75299;77.50088;129.8498;159.133;121.7075;165.0815;164.9474;153.5763;94.66975;188.0695;171.4981;145.9296;180.0163;62.82963;156.2261;150.8458;104.692;174.925;171.2227;180.5597;65.89249;115.8088;140.5575;90.4084;76.81516;83.50345;85.7803;144.3746;79.70493;137.6716;112.3481;125.5624;69.49592;147.8508;176.495;133.5555;77.11707;166.3328;73.77769;114.3735;95.67587;126.8184;128.9044;81.66203;152.5913;84.51191;112.2948;168.3882;123.9214;76.29013;96.1127;134.3931;136.6684;116.2815;115.5888;122.8701;96.64728;132.4076;133.2887;122.6277;127.2391;139.4369;52.11116;85.24928;62.56031;71.24875;90.41409;
99.3886;156.537;146.9735;178.0376;78.43013;118.2286;65.32022;117.4981;143.5527;76.43479;135.6148;67.09262;88.00828;59.25932;126.9682;131.7263;42.93338;125.5694;113.5638;122.6545;87.15415;85.61501;120.9367;153.554;132.1696;143.4272;197.897;59.2063;172.1791;67.3913;123.1792;126.6054;72.33022;87.39752;102.3802;116.268;140.1874;135.6251;143.6812;155.7456;105.6242;103.0033;80.4842;154.8789;156.7241;125.4157;102.2113;86.04803;89.93975;141.6194;90.04988;89.49918;60.75407;141.9766;79.97401;95.12468;70.63979;67.83247;64.06659;90.64297;102.6113;105.655;171.5861;112.9372;119.1037;145.6124;80.26388;80.57135;110.6332;201.1341;63.9689;96.90773;83.10931;201.4919;113.7924;82.34405;92.36325;77.81181;77.54279;63.87954;61.77235;164.7142;128.4362;75.39414;96.05635;139.4218;110.9585;158.5026;142.9042;130.9908;171.0701;147.0162;93.40497;75.16508;196.65;112.0066;67.66552;111.9027;181.6615;162.0038;181.4921;175.3542;124.6868;136.4189;95.46273;151.3682;111.2127;120.8642;214.3058;60.99915;169.2781;70.55965;143.2738;195.3467;147.8673;80.56596;67.86246;77.83048;105.7713;107.8973;100.5773;131.2966;112.0739;90.79784;149.4695;77.53117;125.9852;72.5742;122.1165;150.1687;145.3188;184.9294;84.96018;108.2205;62.91644;107.6933;122.9301;60.5158;143.2224;63.66311;79.15249;66.60907;115.7773;134.7571;46.83706;113.911;102.1079;104.2509;89.41902;84.19758;122.3919;142.6985;123.226;156.8356;183.2944;52.68079;164.9646;73.43467;106.4572;137.7835;89.12267;85.56915;102.094;121.1173;145.2101;123.1331;133.8596;140.8478;86.43115;87.55459;88.48584;149.1425;142.1498;134.0151;87.60618;85.95693;95.38856;133.563;81.65521;73.76739;62.11704;138.5453;76.85454;84.1063;64.13416;76.65884;62.95724;88.2235;85.7412;105.2324;153.6943;125.3129;135.588;136.7046;77.9456;86.5098;111.5627;183.6169;62.73569;96.05646;66.31864;173.8533;131.4097;83.85413;70.93176;77.75606;66.17441;65.10029;63.00527;149.1827;115.8563;62.62694;94.51029;134.1073;114.426;158.158;133.5836;143.1466;169.253;143.9304;77.34424;74.80869;167.6021;121.9298;112.4672;120.9925;147.9688;131.4295;133.4026;145.0875;113.7428;129.1531;51.25814;111.1459;160.817;132.1434;139.911;53.96956;136.2365;49.30254;143.4841;183.446;138.0833;78.66708;80.28751;87.19402;116.2165;117.8739;97.46526;145.5262;120.879;74.17501;174.6441;74.09821;130.5506;99.97829;
60.76062;119.8858;70.7951;169.4234;137.9413;93.7459;188.1812;59.6;99.28884;113.1808;141.1203;87.06525;115.7668;104.4855;133.7878;155.8783;113.1593;107.6598;78.23876;163.9856;162.7752;139.5786;133.9026;133.3545;79.88226;107.985;49.81195;87.48854;64.99886;100.5725;73.24744;96.57016;54.34613;73.65247;91.56143;128.4809;52.32761;98.34979;88.01337;173.6705;94.6529;81.0717;124.716;124.8613;120.6485;113.4836;99.13926;99.22333;128.3677;101.8899;91.61424;172.2243;90.32297;91.80688;155.976;155.4579;97.29025;80.78438;105.5034;217.58;121.0906;58.88231;94.74327;93.13645;89.34845;80.80833;98.20123;139.6132;113.5766;90.54243;113.7963;78.65041;87.71975;109.1819;94.9374;80.26356;104.7564;74.52617;88.94067;156.5907;75.42678;45.74757;126.001;137.2342;69.26158;97.95318;145.3246;119.9362;93.5389;143.4428;72.24304;96.17789;109.6099;170.7616;98.48799;146.3583;119.0149;134.6559;102.0939;154.0528;156.2454;221.9326;187.898;113.8687;117.8204;108.1928;71.66105;167.8503;153.9158;189.823;79.66297;146.3029;179.6287;78.1534;106.726;76.58118;145.3149;155.6797;88.64606;139.9744;122.274;106.5635;49.47533;185.5324;145.326;151.9497;73.68673;154.9709;80.38728;128.9643;71.24095;163.919;127.7692;86.40685;182.477;54.37505;104.2838;119.0054;163.0456;82.12206;111.675;118.7792;112.9161;135.6018;107.7815;126.9116;96.51246;129.0277;175.9426;134.9197;135.1462;117.3288;74.66087;111.6249;48.17822;80.05719;60.19219;107.4139;62.4924;78.26906;72.67619;81.32995;87.21178;118.345;44.74912;86.27684;87.73488;162.7793;99.60153;87.07829;139.7623;114.2837;114.2973;123.1251;84.85852;84.54134;123.8508;122.8279;106.3847;134.777;99.19942;84.47713;162.2597;139.8554;96.67178;88.19891;90.78922;194.616;110.5478;70.68714;87.75459;74.13991;102.6777;81.74995;92.61233;138.6839;96.98968;74.26215;108.9557;73.0624;96.58691;118.971;100.1532;66.39952;95.17844;89.77154;80.51865;136.5843;64.18025;54.29375;141.8887;112.7319;72.48498;85.3308;146.1597;108.3342;92.93243;153.2735;60.16238;81.12467;99.59098;190.4859;88.75354;125.4519;133.061;134.0222;102.562;162.3043;146.0829;173.7896;140.4487;63.85971;156.0078;146.3107;101.603;166.9462;158.2199;176.4265;69.40617;140.0726;170.7382;79.3875;112.9866;77.81323;146.432;157.4678;68.40763;127.3628;118.5013;111.2417;73.23389;138.1699;144.9986;186.2766;51.88965;145.8732;
136.0102;122.5473;170.0938;52.30381;199.7878;213.7636;179.1715;48.79371;183.425;61.79686;147.8326;63.36219;173.864;104.467;97.70553;137.9617;96.89355;119.257;113.4745;111.0243;86.02286;150.8179;138.5145;118.492;129.0407;134.6098;147.0168;78.33871;166.4398;173.4097;106.2374;98.75971;113.9895;51.10099;100.7251;46.77885;70.02861;70.54752;90.67531;74.37019;114.933;60.47658;63.90667;65.29293;112.4751;88.67319;60.27227;88.93803;137.4591;108.3855;83.71782;150.5498;91.17496;142.7593;114.9164;59.64826;78.02031;88.64874;110.1775;112.7817;117.747;83.94817;57.62589;124.2169;129.7831;98.33096;136.7079;98.74491;216.8431;162.0585;96.00774;68.08665;94.22643;89.70984;93.03538;88.02002;157.4253;75.99393;84.77527;72.29497;114.5065;110.8249;101.2312;60.45628;74.97174;123.8597;112.0347;92.16015;135.295;94.10442;61.25393;118.6654;156.4501;73.7906;59.78788;103.2455;98.44362;70.43646;126.8663;54.66592;72.50349;108.2889;171.5276;112.1979;163.9104;127.1217;108.1874;72.34982;153.1484;209.6061;156.6993;172.3864;84.77711;122.5786;122.0809;86.80277;117.9052;140.3684;185.8355;48.92693;157.1003;126.0297;77.42426;114.339;75.60287;115.9716;113.5602;77.15135;150.4616;104.7889;139.5966;60.09381;180.9097;186.124;170.2366;72.00974;187.7024;59.12416;157.6244;73.65972;163.0148;99.80922;119.3967;130.0255;99.37925;108.7915;118.7125;113.6088;83.95098;121.3839;128.6959;120.1363;149.8844;135.2828;155.0195;78.76885;195.5361;159.4511;102.6926;114.7312;121.7488;40.32716;76.44188;50.21362;57.70692;56.42693;80.95616;98.57144;114.2776;58.5656;70.2767;71.27312;102.8043;85.9272;75.25553;81.23225;136.1153;98.39446;88.40257;150.1214;88.22346;114.8979;103.3132;59.65293;91.77023;80.42289;123.1202;112.3682;135.4875;73.39306;56.18917;146.4547;148.5508;81.94254;119.73;107.8913;191.9865;148.3964;83.0664;84.3073;94.53531;78.71802;106.0638;96.81553;138.9401;72.52719;103.9791;68.35897;122.807;99.40182;117.8718;63.38177;70.64276;104.8399;97.40833;85.12369;153.2237;85.61967;70.99486;118.2411;176.8045;63.91678;64.03377;180.0909;117.9923;62.0315;127.2949;85.84029;59.85992;95.36345;173.8041;104.7994;170.2501;115.1956;113.7079;72.72306;135.1143;157.487;158.0845;181.1033;79.29972;148.717;129.36;100.4862;149.0198;168.4128;182.3072;67.38895;151.6541;164.0638;72.38372;114.5937;103.765;78.27162;119.5129;78.79024;
72.06457;119.6984;177.1361;122.0442;76.18771;52.18514;103.1276;133.6004;109.7612;182.4515;83.53773;104.2817;67.84119;161.9326;92.72191;136.2973;84.23117;99.40569;119.3965;127.7388;146.8423;95.42425;77.85338;73.87186;153.6954;187.0975;41.7902;181.0653;81.90061;61.70937;75.24147;125.7564;181.1758;50.50885;82.58857;113.4012;118.077;82.29971;107.96;69.03905;157.8473;163.3326;152.1097;137.402;58.09658;121.4908;94.26293;58.86309;149.9152;98.49818;83.87426;106.839;87.55045;140.2669;105.5053;123.5912;165.3457;105.2016;71.07233;102.5915;140.127;104.8146;157.1352;78.95365;97.0853;87.21344;125.466;62.66958;72.68205;48.42203;166.3648;103.6303;90.48409;122.3096;39.61477;59.92945;61.4945;92.9407;120.6867;153.2936;144.6944;127.5661;111.3925;64.2243;59.06313;125.5454;135.8952;73.04949;142.0867;105.0566;138.6458;172.8072;102.6148;49.33319;82.23898;68.59451;97.73005;76.01118;113.223;121.856;77.66292;82.4147;155.1303;66.70106;178.2038;163.0103;135.0431;124.4199;144.845;45.5423;87.0701;119.2756;140.8175;96.34206;112.4034;182.0659;136.3365;151.8591;120.3812;116.1691;154.5064;86.01168;124.9227;164.0855;112.7968;155.0309;80.64099;133.1366;76.27809;138.9841;159.6361;119.6838;64.09216;67.30861;86.2764;146.8629;117.2318;164.3994;81.42961;115.3289;75.32993;173.8931;77.0766;137.7365;90.91316;108.9286;130.2344;131.2633;150.3295;79.0986;67.84937;74.49924;155.4459;163.839;50.83207;213.151;79.00388;68.54951;72.58086;111.322;180.7156;62.95912;69.86396;104.6828;102.8914;97.31132;88.12602;78.41288;160.6328;146.4549;148.4459;143.2099;65.07076;127.7979;76.49313;60.596;155.0469;108.0359;92.76482;105.5487;92.02029;116.316;91.62723;125.5345;160.041;93.72252;84.34097;119.6659;139.3374;120.0593;157.9366;73.38352;94.01075;90.10381;106.3797;60.25416;58.60928;61.4278;147.4206;111.8792;90.12869;114.0868;38.9969;61.95027;70.80353;104.416;104.2347;164.7966;146.326;122.9813;118.1498;67.48431;60.43835;104.7045;125.5368;71.99909;137.1723;93.58936;156.9529;194.7716;101.9393;59.95435;81.47796;92.95132;84.02543;74.27394;123.5132;108.6635;46.00896;102.8421;146.6692;93.8595;189.3794;132.8536;97.01526;148.0688;170.571;91.08986;50.16083;145.6035;121.108;100.5871;123.2295;133.8972;151.0824;169.2816;95.30025;110.3696;128.8851;65.10432;145.6836;118.5349;139.975;174.3886;81.52737;118.8673;
102.2559;98.80827;167.5681;48.552;86.65344;148.0653;134.4838;94.81519;93.04081;133.3922;188.4598;147.7658;90.92953;122.8409;58.52631;106.7611;94.18978;150.7804;159.3226;78.01804;82.5382;102.4988;100.7229;149.5525;146.5186;76.96842;78.18565;94.48243;102.0832;87.1274;100.5787;85.82764;46.28384;138.1326;159.1817;74.9563;106.9604;162.4028;125.9955;66.29578;117.8878;56.08875;77.49127;115.1046;163.5246;95.1692;158.0578;122.9023;120.6096;90.37789;143.4054;198.9057;205.6542;146.6181;84.41953;160.7267;141.314;61.00207;101.051;144.0848;194.8685;69.49304;132.792;160.4162;64.37431;94.48834;94.96423;76.87555;149.5554;79.83108;135.312;117.7587;117.0272;86.76339;182.7441;197.3095;197.6512;111.3695;143.2237;92.74727;148.6995;119.3999;174.1593;99.71761;94.17065;181.2694;82.12827;161.4866;152.0131;141.8571;98.14269;117.3781;147.4626;127.4278;106.4417;147.1163;116.4914;91.48839;168.2938;163.4129;155.8396;153.8005;139.4357;46.69806;83.03925;52.25573;81.48839;75.47544;96.44333;67.93443;115.8681;73.62804;67.50585;72.56337;114.1449;71.01331;75.65637;66.36178;122.2623;106.8167;134.4939;119.9956;86.98051;137.6961;108.915;73.60046;71.67254;118.7721;117.35;93.68508;174.2129;52.0126;88.97898;167.2295;131.3098;98.77304;105.6828;126.3087;197.3893;152.1733;88.18573;104.6074;46.42883;118.6951;97.28294;138.379;161.6398;66.74099;66.22656;107.7998;89.25396;122.6205;182.5967;85.0522;95.55161;118.4134;108.7792;79.29573;102.8084;101.913;52.27192;131.7399;163.6127;77.10768;107.6866;177.3025;121.7504;67.9934;126.7211;51.50979;82.87449;116.6539;158.5825;75.71047;137.0633;133.7338;120.6374;81.13407;144.7511;178.1075;180.1507;148.5056;73.46265;130.8291;170.8769;62.30333;116.9412;164.8953;190.4784;61.07568;129.0883;170.6635;71.1216;92.78342;106.0527;88.1412;155.2924;90.18096;130.5918;124.095;124.3267;74.2943;187.2246;192.9077;179.0219;88.49425;117.3001;93.62777;148.3231;112.6746;185.8268;94.58123;80.69131;183.0907;71.09047;135.7813;182.6212;143.8333;113.8099;136.2295;143.6469;115.9334;106.2332;162.6291;128.9942;69.51114;151.0452;152.8367;134.0583;140.2156;101.3591;61.42878;86.26321;68.63821;76.34386;109.5041;89.62767;84.30897;92.0917;71.00476;55.07412;56.83031;137.3252;71.21899;73.27583;64.05301;116.674;128.5231;97.14966;119.6715;86.2195;139.9741;81.55463;94.59437;92.13117;109.9944;
174.3778;137.714;109.0558;95.09155;72.34958;160.1893;151.5853;72.46617;150.5891;47.78067;59.67874;87.11279;149.9038;144.0891;47.05875;130.435;132.2868;125.0018;80.36534;104.5699;69.49117;149.6526;120.1566;170.9231;181.361;64.26263;188.6954;65.53896;92.03551;127.0336;99.0967;99.39314;97.67898;103.0828;143.962;74.87833;93.42205;175.7854;86.92981;66.95682;100.2001;171.6337;112.9798;130.3652;78.00079;100.8204;96.46456;109.1359;92.13084;46.33241;55.73411;148.647;93.41535;95.56189;108.7064;73.77882;98.17974;73.97501;61.93936;95.96309;179.7636;126.8967;106.0158;105.1484;106.6677;55.02435;135.7023;158.4614;71.82909;147.4247;83.26917;198.047;139.9424;59.47013;42.71194;87.39744;90.59852;65.58245;63.4803;163.1115;163.517;82.47057;78.09217;148.2177;67.15395;167.6223;126.1422;152.1251;169.2345;151.0188;83.13728;55.70508;154.3507;105.8201;94.19601;120.6493;175.6294;152.0901;182.887;102.1785;90.93376;175.1638;80.62124;106.4363;137.2481;133.8451;137.0145;53.56591;133.1786;78.20801;152.4971;158.1827;167.8992;62.54331;53.17879;67.6979;126.0908;123.1744;149.5342;115.2562;148.7696;95.66194;117.2559;63.11639;155.0479;59.24061;85.27135;108.9586;196.7715;148.1088;91.68234;107.3607;66.11435;142.792;131.6195;77.38492;142.513;39.97156;49.7822;67.65186;145.8892;131.0876;46.68009;117.1674;139.0326;143.01;65.59969;80.38166;69.51994;149.948;113.1545;152.8584;169.7758;73.95834;168.0164;48.88786;86.72565;99.40836;97.57593;88.58817;109.2071;110.3938;128.8968;88.07224;84.97501;156.7724;73.65861;72.87679;89.16088;155.2009;104.1184;109.3892;73.89153;89.57696;97.87314;101.3627;94.19477;57.36587;46.8324;126.0871;93.07182;96.18595;104.0634;65.55838;89.6066;92.96111;61.20678;87.42828;180.2375;108.9123;99.76668;96.00806;112.4026;59.36387;122.3277;178.529;62.80376;128.8592;70.17804;203.6989;130.8656;56.80966;43.49044;76.57246;91.79702;63.89931;60.95718;156.1066;158.7939;95.68063;68.41055;126.6323;65.18884;167.083;120.9871;136.576;157.9174;177.6869;82.28812;49.24974;154.7898;89.45665;82.87072;86.91784;181.9358;166.8947;160.5832;153.8924;86.51981;119.8517;68.0723;93.30665;141.3071;142.3446;164.8835;40.53381;128.9873;60.76629;119.8422;156.9371;164.1929;92.53651;55.8605;96.70205;102.7065;106.1218;131.509;123.1143;159.2966;96.67485;124.9731;83.0872;126.4103;49.09627;102.6783;124.952;
63.5047;154.6064;87.00549;194.2713;85.70586;84.77276;120.8701;169.6113;160.789;95.19231;96.36976;76.31727;175.6279;180.7468;91.13192;140.6492;54.03826;79.09091;73.53668;133.8575;132.2721;76.41143;109.7867;111.3049;108.6722;72.81188;91.54317;82.99599;132.0512;100.6724;153.1992;114.6599;71.00049;135.2627;62.80449;91.71747;93.75574;97.786;126.2174;65.87814;106.5156;134.8505;119.6296;70.92332;111.2175;84.83434;107.3701;68.84787;163.4678;142.2681;123.588;70.09921;85.6448;56.68747;125.7598;47.45657;75.63396;79.06446;159.2337;103.4217;110.0203;95.17944;97.87743;87.63927;63.47394;98.18824;117.0285;227.9037;153.9586;95.91563;119.5688;99.4101;73.37605;126.5818;179.551;79.33237;149.057;100.903;227.5257;125.1436;74.73547;75.99447;82.63861;78.86012;70.55073;93.64781;156.6117;128.5738;72.19941;77.68645;152.6797;76.15929;136.9714;107.8984;135.5965;95.78052;168.3968;61.04625;56.40584;159.343;90.23974;90.05171;151.8637;129.1285;153.8627;173.928;163.7094;66.0456;101.6334;73.42053;148.9269;98.83371;122.7102;203.1482;48.77792;140.2104;93.19946;111.3323;207.9668;111.6909;88.73219;104.7165;79.27589;149.7974;123.8628;127.4064;161.151;172.4077;80.47209;165.902;101.1243;165.9235;97.65617;78.8364;113.3633;168.1392;180.0037;104.2082;117.4668;91.09418;176.6604;177.2531;90.18505;131.6264;47.91841;95.91534;67.21683;139.9912;162.5623;88.91801;133.6822;120.5905;120.982;95.36498;85.31936;87.91445;110.7898;90.68293;152.5261;130.7701;85.77877;145.3225;72.15857;73.20238;105.4111;95.98186;111.001;63.65305;119.8964;145.3302;140.6398;86.09135;112.0215;86.66876;100.3229;63.20718;150.1652;163.0694;113.5754;77.51692;110.4042;70.52151;144.0567;54.16465;82.24712;99.38964;139.75;109.8999;98.29314;88.26297;100.2758;106.9465;79.42418;101.0713;134.2342;197.5197;156.7543;91.89141;102.0292;92.72923;82.72218;134.4822;194.2706;92.96223;159.716;105.9616;221.5882;123.0317;67.62056;86.10759;77.95169;86.32157;84.27705;108.7802;173.3884;134.7276;78.66302;97.84016;133.6132;81.73241;123.8482;100.5258;102.2472;153.5781;158.1263;67.39381;89.98421;110.6527;120.6359;64.87489;86.46626;134.1808;177.2813;200.3094;144.3348;72.70443;111.956;104.9383;119.172;91.86543;121.3592;175.8272;60.73491;140.2542;66.69925;154.7753;164.3907;149.657;71.23266;107.5585;107.5854;153.7248;108.1048;106.8912;112.6809;108.7569;
109.5758;109.8302;83.57769;101.9582;140.0255;106.8281;138.1939;119.1415;109.7786;97.77358;103.3921;128.6412;88.33057;116.3404;65.53777;56.79708;177.1365;115.8945;88.19242;97.77792;110.5137;142.9857;117.9042;82.28545;128.8982;45.85518;111.6669;86.93601;148.1669;126.2673;67.48151;83.6117;110.7008;71.22784;104.1697;150.5554;61.32762;62.95267;96.53703;73.12215;102.1843;115.9262;86.78339;72.56062;109.4754;136.0168;77.52045;90.24127;174.0455;152.079;57.00796;145.1506;76.91557;94.86423;152.3032;140.379;100.7852;142.9161;157.121;145.9049;120.0824;198.6977;201.9115;203.533;201.9411;64.12437;105.1742;135.1517;86.99582;132.2757;165.8904;207.9657;82.57422;152.1111;163.0201;92.2671;88.49929;59.96305;107.5394;113.2352;89.89228;111.3562;109.0045;115.8378;67.97894;129.9319;158.0659;169.3928;98.07813;109.9733;95.62677;145.7555;119.321;151.6565;97.74002;100.0388;178.3708;55.56609;111.8705;146.8489;117.1064;73.78307;111.4864;101.2575;129.9671;113.0058;143.3919;164.8364;71.82695;154.3841;182.0631;133.3111;160.7941;169.9548;40.82244;94.29982;68.28331;110.4105;91.50365;82.60413;69.46669;112.2887;82.34238;81.91763;104.0583;144.0011;89.88144;74.18659;99.11279;98.06855;86.18341;95.47931;147.5133;104.8908;144.6179;108.6822;106.9356;90.88776;107.6175;142.4405;109.4374;124.1811;75.29832;51.87326;168.5514;116.1518;91.30408;89.28926;113.2366;157.9195;112.7197;95.41442;112.0768;52.90446;111.9625;88.34297;143.271;114.9219;71.5853;70.46339;102.332;65.78193;105.1857;138.5695;65.18779;63.49528;98.51632;64.56886;102.0162;114.2421;89.3241;80.40158;131.2878;147.7892;85.37318;84.72396;171.2266;159.1501;58.76234;132.9209;79.60433;109.8495;142.8735;158.361;98.46562;162.3323;147.9657;136.8442;115.5607;183.4813;207.4632;180.3173;197.4058;56.51841;109.7648;127.3021;84.64307;136.8097;170.7841;190.4044;90.43941;150.5002;157.9443;93.65491;108.0971;67.30663;115.6321;105.2193;92.52348;113.9587;115.0813;108.1595;64.43625;151.3191;150.6182;186.1712;95.79002;127.0855;88.51445;136.6996;114.8138;138.4011;117.5498;91.22158;166.9089;39.88951;151.0912;110.1946;122.0652;97.9463;94.83912;113.0054;148.1589;113.4909;106.3716;172.9795;78.4841;158.8012;142.4212;123.5185;158.0792;108.1406;68.04362;76.67242;39.89484;76.58001;94.81287;109.6522;76.47144;74.63444;56.79227;86.11096;77.58456;101.1801;61.89521;58.87073;
107.8868;200.902;121.634;156.0051;174.9495;87.49746;77.02085;172.5031;193.2602;198.7435;188.2019;64.54108;151.235;89.79105;52.7924;162.2985;156.9573;170.4681;68.65517;149.4969;138.9191;69.98492;74.13651;103.5956;131.3561;116.5693;91.2123;97.91618;103.8435;126.9833;86.58437;154.9656;183.3984;165.2842;84.19181;167.0985;71.97729;97.50303;82.95455;169.1108;109.2227;100.9384;181.7298;47.44488;160.0993;142.9268;100.6726;88.35822;103.442;141.9398;103.906;103.9884;126.7002;130.7729;90.15773;166.1449;135.2306;143.0987;127.6695;160.3786;62.84209;95.58417;51.18365;95.49888;75.97824;111.3415;86.15908;106.9517;108.2126;51.76566;75.99017;137.4599;85.2308;86.81025;87.82531;111.9671;133.1924;63.6526;116.2714;129.6395;138.7136;88.14309;79.94812;87.10041;92.18372;122.9235;87.16127;173.2523;88.07379;55.37206;163.8776;101.9527;85.09737;104.0187;147.7219;162.6183;152.6465;78.9246;96.11835;81.46194;92.33368;63.66706;111.6691;140.8789;83.43594;85.71241;104.0978;64.07474;153.4809;136.1555;55.16388;80.00893;93.18823;116.6408;86.50452;97.73085;68.36135;61.10508;133.2439;152.5207;57.18011;92.17405;140.5743;140.5633;76.93179;129.966;55.68081;89.80905;100.4234;169.3233;123.4041;146.941;150.6281;114.0586;79.47811;174.789;203.6616;183.0443;165.3517;71.57594;168.7427;101.9367;70.66077;177.2249;164.0811;175.6046;83.54766;143.1862;127.0698;77.51415;79.92134;110.5412;147.4581;112.1965;90.0953;92.46283;105.9992;119.6291;82.60606;148.6393;169.814;140.5069;86.67342;156.8792;54.45091;123.6829;80.64042;167.4756;115.2104;93.12393;162.1594;53.20214;175.1278;155.9977;119.5003;96.75976;109.0655;151.2534;124.2485;98.59767;114.6756;139.3853;91.82719;171.3269;149.2265;142.5823;130.1323;152.8855;60.3871;91.69979;46.07778;90.51613;61.45828;93.14084;88.62153;99.73527;86.798;64.95302;69.06416;137.7146;88.88335;79.45399;75.5752;120.44;140.6564;74.70918;132.9649;139.7378;136.5312;97.51461;97.85336;83.0185;82.31317;122.6608;83.62582;180.523;99.43432;55.04822;166.6651;95.99656;82.23656;99.96486;128.1358;165.1264;149.8233;75.69024;77.82654;61.99085;102.3033;76.44549;110.9262;135.8019;77.78475;101.6392;59.97676;80.46703;127.238;175.8649;55.18826;91.11284;124.2685;102.6727;70.64201;110.6244;89.62587;49.43962;132.3508;163.4679;83.52415;77.70269;113.751;107.7849;73.56622;119.2206;87.86285;93.29803;
137.0486;107.6026;90.9584;137.3105;107.0592;133.7538;98.31949;71.04829;99.66287;129.8725;123.0112;135.5701;111.7711;45.94789;52.18866;170.6552;134.6307;81.1543;114.3301;115.2453;148.6514;102.3971;69.7062;117.1107;68.56748;117.1321;85.07129;126.1652;108.4837;103.8759;93.50249;74.24163;78.70863;113.9686;174.1868;57.72356;54.93056;93.79572;95.67504;97.2455;144.005;70.70251;80.92678;161.5095;165.729;53.40679;61.53828;113.0879;141.8304;50.29563;174.5984;79.1344;68.83448;152.8509;141.9228;125.2093;158.2786;164.6989;151.5804;110.2703;145.5924;190.6418;139.9001;130.9862;88.47903;144.0617;128.4296;76.02981;150.9521;165.9256;159.9491;57.22212;165.8229;170.6592;84.85312;144.0307;55.36781;88.20112;107.5551;93.50079;137.7057;111.4596;140.9407;66.80407;151.0006;140.6877;133.4928;97.50796;153.5559;84.25439;142.2256;107.1471;127.8635;142.8813;110.122;135.3398;63.95003;132.6302;175.8838;105.3142;73.77283;108.9582;117.1434;130.5908;144.2469;107.555;172.2939;119.3612;173.8738;148.7675;108.8694;101.8502;141.7318;42.33032;136.5696;65.9433;74.95914;120.5073;60.43592;71.66338;117.4334;94.57511;89.60724;99.98935;115.0816;88.54058;51.76979;53.04362;136.2109;103.7415;77.21855;164.1727;96.24243;144.2722;87.16585;82.12773;93.40451;115.6374;134.8099;137.4887;104.3002;57.63907;60.9803;164.6171;125.6784;91.71606;125.5348;114.8626;160.8477;125.3113;55.33995;93.93011;74.68797;107.8864;88.9249;134.1172;106.1374;120.625;100.5538;72.04485;77.75746;110.6073;148.6371;71.39459;45.85903;97.79365;88.29729;108.5968;136.5439;61.20052;86.12967;158.1485;154.0819;62.22184;74.38924;109.7244;133.9015;60.20775;181.9593;77.62473;76.33544;175.4775;125.4101;102.6884;166.8306;165.7814;146.2107;111.0301;149.419;206.4943;143.8985;129.3491;83.85709;128.8049;104.3162;91.89149;127.4889;171.9993;161.4954;69.18003;155.7808;165.3109;86.59534;135.1016;52.5794;94.93121;120.1438;91.52619;125.483;115.1358;144.833;65.65344;153.0916;163.1773;127.354;81.21075;161.9809;85.03261;137.0256;107.8961;131.4511;156.6476;113.519;132.4904;59.71108;112.8351;101.4083;152.9408;87.94967;132.4377;145.486;128.2717;123.2757;138.6624;146.9363;119.1534;114.2796;170.0626;138.9249;147.0832;143.0586;47.38655;106.4877;63.47346;55.77774;104.9071;68.32079;63.84718;137.5056;58.85519;75.83768;87.06254;143.3813;53.98841;87.85696;80.26202;
110.0646;87.94864;82.3137;104.3789;119.9834;124.4725;88.80465;140.1304;91.75684;158.1196;52.86029;81.25587;128.0688;171.7086;142.8326;79.548;92.1009;69.48293;200.246;161.4694;50.44272;160.2052;58.16335;85.73653;65.37402;115.3088;119.0067;58.7981;122.8138;119.1795;96.53156;93.76666;115.6043;121.9822;101.6236;110.2013;92.56683;152.8613;58.56645;173.5449;81.71;91.11723;130.3705;79.41363;89.99217;100.446;109.9119;144.7004;112.8472;120.2939;168.8646;64.84281;62.96802;118.3382;154.8395;119.9794;137.9145;95.02555;81.4938;71.14847;116.7547;74.8474;101.0793;60.26409;192.4296;61.84062;62.4095;65.46099;69.5446;74.46192;100.7102;81.22878;120.0903;178.3434;103.8365;104.379;121.6964;89.78767;57.86054;114.1778;170.9655;67.30154;180.0944;87.787;157.4235;154.9276;87.69069;76.64452;76.42085;60.6194;57.44335;83.43092;164.9451;129.7766;54.25238;102.9583;179.8532;114.7655;113.2465;108.6623;84.75332;146.3026;159.4736;81.0181;78.18588;149.3004;123.1326;76.0759;112.9729;168.5274;155.3241;195.6559;160.9127;92.49975;151.7693;58.98925;91.26797;147.7003;144.3104;185.8758;59.15937;150.2812;58.31795;129.186;163.0953;138.203;93.16242;64.65265;128.066;91.61816;109.8685;120.1352;129.5187;124.9305;90.59927;160.3738;97.511;149.6151;55.83888;95.51225;123.1726;144.2722;150.7551;88.77774;106.8441;54.77068;183.2153;169.029;48.57297;142.6879;70.95844;107.8656;61.25315;101.3255;113.9808;79.05637;119.5697;115.2216;81.64443;100.4333;128.3884;127.0927;130.5031;120.3074;99.21474;155.6175;57.1663;190.5433;83.67735;85.57578;134.8563;88.54276;85.00533;81.24043;114.0639;155.1871;124.985;100.6343;153.4899;67.35735;60.20081;104.0508;171.8683;144.1196;131.9635;87.43478;71.17852;83.42739;108.8261;74.59962;87.71784;60.63127;200.2858;65.20782;85.53349;80.74353;74.90623;70.88735;90.41124;95.28802;126.617;177.835;100.3503;106.7053;111.0718;74.56672;62.47434;116.6174;177.7825;52.5601;164.3463;98.96819;152.437;131.0693;92.07934;98.50393;72.00693;54.58564;48.83825;96.68707;155.495;129.4503;57.62561;74.77267;191.2301;98.4537;134.0458;156.5353;103.0362;106.9125;156.2837;79.31457;86.71682;159.0225;80.62857;99.18929;85.23788;121.5106;159.7335;195.6866;150.582;116.4251;124.7627;75.48588;122.2995;112.219;185.8313;169.5508;58.08981;148.5709;82.33239;158.8231;164.7968;119.7174;81.2825;56.68439;
173.9341;79.95364;101.8674;104.4227;121.2252;97.22152;85.54952;77.21275;52.15823;94.33157;91.83154;101.1722;112.2962;85.14325;97.30788;58.49141;99.93661;115.6499;163.0732;86.29159;72.67874;76.50976;92.04951;107.211;152.617;88.5703;67.59314;127.4358;131.1236;70.14655;89.96675;155.0571;152.7765;60.89983;169.5667;57.87684;53.44043;130.0975;182.3645;96.91611;162.5347;113.149;126.4613;85.82007;136.8295;178.7023;201.48;170.6826;58.79486;138.2063;114.0356;87.17298;134.7583;155.1707;156.7436;74.10827;132.0642;129.5112;70.31983;104.1357;72.83531;103.2807;108.1992;76.23569;178.0025;116.1955;124.0542;71.93568;123.0265;136.5424;187.1876;62.12935;127.9883;76.26035;143.2239;82.02694;141.1206;127.0361;110.3482;123.415;80.78687;140.4566;163.9819;160.5358;92.18641;94.38531;132.7867;136.397;151.5317;146.8979;150.9444;87.97111;155.037;176.9167;136.9433;155.449;161.9244;52.82364;126.3161;55.49026;58.36451;82.59566;109.8196;65.94646;109.657;60.90591;74.46946;77.74274;110.9485;73.8054;86.35563;87.8197;96.22985;112.1219;65.77803;188.4638;91.32947;132.3032;91.67536;96.80121;67.47971;82.44539;113.688;95.65401;127.0367;67.69627;58.80125;142.592;163.9523;95.07738;106.5843;119.7043;130.0655;119.0247;88.4759;58.97136;58.8872;98.79905;89.89803;106.3867;119.8068;104.4448;97.92178;63.06981;97.04525;114.484;136.3983;118.426;59.63164;83.12425;101.9807;116.4518;143.8039;87.92957;69.78426;121.6989;131.3967;79.3867;96.38074;162.1552;137.2296;73.82528;174.1866;64.31553;59.36254;150.51;182.9239;76.08709;167.9705;118.1959;123.4478;85.33601;145.1515;201.1116;199.1613;179.798;54.35842;136.9961;91.69412;114.7518;118.7741;159.8548;166.6953;82.74199;123.7135;124.3015;71.35545;96.21732;69.94717;109.8376;120.3507;74.67384;163.1329;120.5346;127.4633;70.47343;125.2758;158.5091;179.4352;49.52556;136.1106;76.87179;138.6306;82.9839;145.1321;140.8385;113.6152;122.8069;76.90502;125.6854;136.3826;183.5265;73.92059;98.89319;134.7371;154.843;142.5768;141.3506;152.4598;80.70586;150.8098;185.4671;161.1019;148.7481;124.6752;39.58761;126.5253;61.30361;70.09669;71.79558;83.04672;69.07596;101.7147;74.16473;48.03373;109.9534;101.5548;88.26302;59.03741;55.04152;128.4543;131.763;68.44543;209.5077;80.37158;121.6992;85.101;99.00057;61.15174;111.2412;113.7594;104.3547;136.1772;67.29427;78.10944;172.4737;
54.0234;107.2802;99.00359;81.33564;143.9921;90.06674;54.25039;99.99503;144.6586;56.8548;87.1701;130.3739;104.095;93.72405;113.1062;95.42904;66.295;97.91648;147.4327;92.10886;154.1629;116.7669;140.7215;105.1708;161.1719;165.3697;189.5639;122.3194;77.45409;152.5703;118.458;68.87385;129.7443;146.4366;218.6568;62.58274;146.6395;142.8341;95.6234;112.6974;100.6218;135.2896;149.6205;94.07999;142.6414;115.8957;163.1522;85.66277;125.885;129.8699;123.4979;55.10917;123.5031;66.89903;97.7267;64.38092;152.2506;141.0471;112.4152;131.741;55.9117;138.256;108.1825;143.0865;76.42964;128.5302;133.6349;118.556;149.3303;144.6067;134.8518;69.6593;166.1901;149.191;144.8857;130.1597;114.7308;70.46841;82.94761;79.57191;72.23592;60.89502;74.92027;61.94824;104.6781;64.15421;88.62864;97.41805;126.6399;60.78769;92.32839;51.85231;126.3392;115.3536;89.05407;124.0503;101.9016;125.4004;125.8856;73.84946;85.59166;95.5387;149.8571;112.7854;166.3515;85.57094;88.73746;178.5509;143.8014;85.86488;145.2376;126.395;141.1315;88.01302;61.16518;62.81509;55.90987;84.09495;69.13435;90.78767;148.4526;116.8615;102.3872;64.07545;83.4912;106.8517;125.8488;85.11091;63.85656;111.6685;92.59423;83.62463;130.002;80.59192;43.73394;115.7272;139.4972;47.21033;94.85572;140.7102;106.8543;73.72063;109.4615;84.35285;76.50832;90.91921;166.6851;93.07268;162.063;119.741;157.2228;112.8416;189.439;174.8028;205.8858;123.1683;88.40231;124.4089;142.0157;69.46072;137.7704;151.2103;206.7791;62.66727;130.4761;126.4843;80.52104;127.1538;91.76709;120.1391;159.1131;100.7109;144.6692;89.71368;158.0558;73.73698;136.1369;122.1567;140.3284;54.45266;131.2356;66.18024;110.9567;69.00936;177.0888;152.258;116.3406;123.8524;64.35554;118.5765;126.9291;147.0475;77.01497;127.6728;125.1238;120.5826;131.3869;126.8601;112.7491;79.28777;156.1715;135.218;145.3783;131.1467;115.3302;55.20385;76.36112;70.24235;74.53698;52.22075;88.76979;62.6266;110.3141;62.54186;97.48273;101.0283;149.3743;68.21799;95.88808;46.94862;138.8827;97.44319;108.0632;154.9877;102.0253;164.7502;104.5206;102.5312;87.70995;102.0809;114.9515;124.8322;122.3578;75.46194;91.70037;141.1547;115.7078;62.1108;91.69061;124.98;202.9771;129.6132;63.75186;82.61594;80.95014;113.2673;99.74446;140.0366;140.7609;113.4186;82.3617;64.33482;77.63962;105.9706;144.321;90.19451;
58.36681;118.7044;74.22914;96.92274;109.1408;127.5394;131.5955;77.14;91.37924;94.41814;164.1799;139.8128;61.30942;146.0941;51.46336;91.2367;71.68612;139.2864;159.7416;60.39386;96.02674;106.6486;93.48335;83.93833;111.6791;80.67239;117.8675;132.5556;127.5641;142.8392;49.3046;184.461;58.39748;73.50932;127.1071;102.9151;111.4021;66.16383;125.0704;171.4322;125.9904;96.60403;159.6339;69.29951;100.083;79.85252;161.2351;112.4119;151.256;69.7866;118.6023;64.25837;95.93437;55.68716;70.1063;97.62754;191.414;86.95077;83.07405;101.6527;87.91406;60.52666;102.7863;114.0241;83.0751;145.441;118.4094;102.4622;99.22677;57.32091;44.30197;105.8112;178.2902;85.23496;134.7781;71.02669;177.4414;139.3876;67.54076;82.83133;81.98697;88.14667;75.83576;67.3019;130.2785;111.8708;49.83366;84.79;179.4043;67.37324;119.7487;125.0757;115.4763;134.0095;137.9607;96.72289;51.86749;136.9793;110.3959;88.58964;130.4282;117.4811;173.1344;220.4485;172.0635;81.63208;148.7984;56.21014;144.3221;122.287;133.0243;158.4122;70.32237;113.9528;74.37894;99.70982;157.1194;117.5108;69.04414;110.922;114.1657;108.9559;109.7379;128.6516;134.1506;111.4008;92.32936;166.2153;67.94417;118.4832;51.57086;84.24667;106.6277;135.6268;123.4822;65.09552;87.36308;85.88686;163.7196;126.0138;62.17676;161.238;46.10008;94.15617;70.42245;122.2104;119.9203;51.43671;99.66924;111.6743;84.23069;86.57207;116.3311;61.50943;107.5288;100.6822;114.1537;148.0347;39.10667;171.734;63.8317;71.95519;101.2554;92.15646;107.3546;71.50693;119.3016;154.9618;116.1699;86.98289;165.4015;62.02336;99.77241;90.72512;154.0788;120.3756;144.985;57.69513;89.21919;59.50335;99.1861;59.64025;63.69801;104.8741;181.1175;75.11713;86.12609;86.58987;76.79042;61.0762;88.54121;99.06352;95.09122;140.7526;97.0498;96.80869;95.12704;68.93401;43.95012;90.03292;156.0944;85.05419;149.9498;70.28757;176.9464;149.2074;63.56551;85.04675;82.56059;72.68729;55.42617;66.63712;133.7291;126.4895;47.6366;88.64685;169.4404;57.01135;123.4074;108.3014;102.6727;134.8266;128.0158;76.6926;92.31035;172.4497;71.81136;88.84319;126.2243;162.7286;151.1317;203.4452;128.4143;109.0101;127.0528;61.13371;111.9747;132.2993;121.868;211.6571;73.85963;127.2145;58.67695;141.2622;204.4097;117.4799;76.69775;68.27779;119.0168;118.0292;125.2805;133.3784;101.1283;143.4906;60.87587;136.6409;
124.6114;66.99128;68.65795;94.31506;167.7208;111.566;130.8994;94.21909;105.1259;69.08634;127.1198;81.78425;107.48;57.76979;145.7443;85.19157;105.1593;85.00776;56.26214;103.3925;78.03543;70.82593;142.6789;152.4515;147.2958;104.5157;126.6162;100.0333;54.36292;133.1983;177.6164;75.50004;143.7812;111.54;133.9893;172.4342;101.9145;73.10838;115.445;67.0396;58.77852;99.64063;151.9417;158.9761;95.06585;104.5752;196.443;113.2008;171.9079;137.3128;95.60603;165.8475;174.9782;60.76329;95.59762;180.6853;123.7372;91.85686;133.3456;143.5527;118.6905;153.3012;124.3461;69.21918;136.7803;58.64486;110.7057;137.9473;129.6525;152.3043;56.80904;156.564;93.25931;107.5101;190.8837;150.0528;111.4896;58.56079;81.66951;108.9672;141.4939;127.6457;109.5122;161.1553;72.00739;133.3177;105.7027;117.7778;91.0053;86.17637;141.8103;176.9379;130.2535;102.1876;99.1234;71.53406;167.971;184.1675;38.81481;186.7877;72.19694;89.05256;90.7022;109.9202;127.6532;77.38566;115.3438;144.927;143.5044;100.8531;127.4413;99.53909;159.2296;126.0805;88.46683;157.237;51.4979;172.4174;73.7125;90.07085;123.4739;98.39335;92.37136;82.52397;86.4405;114.1419;91.09176;71.52016;150.8073;76.33878;73.97014;89.435;153.5627;136.8971;123.548;95.09413;112.473;78.84522;130.8814;79.12418;103.7037;55.3086;149.8882;67.30241;107.4905;81.57683;44.47544;82.02213;54.37903;91.72717;119.3601;128.104;136.4458;93.96461;107.168;101.6533;58.33486;129.2304;161.0089;66.00095;167.4995;123.0359;137.6225;166.7389;90.18308;98.50054;101.3353;66.44099;62.59574;111.1101;153.5691;156.472;91.50024;105.9284;192.936;93.18036;172.1844;131.6065;78.55178;142.4755;138.5857;83.48526;71.60007;155.0682;110.8113;86.14063;112.4431;147.6244;128.9884;149.8931;119.853;65.70229;150.8281;68.12952;113.54;133.7528;127.1057;177.3568;55.55355;164.1333;97.28059;125.714;193.808;145.6427;111.7772;60.11332;87.35667;96.09909;133.1781;123.5908;90.78024;139.0409;56.49665;156.0064;91.38786;104.0155;79.97004;80.63918;120.2257;181.4553;141.0311;99.40863;84.6353;71.9006;173.6027;138.0781;60.32337;205.1299;52.58877;66.1786;57.74824;115.0891;126.8508;95.06198;116.7228;128.5955;132.9218;95.18963;106.1529;83.43331;137.6995;104.2612;131.9342;127.3299;50.144;182.8839;59.18628;74.64645;124.2451;77.72542;63.29855;103.5441;75.39227;143.6646;74.50724;86.1927;
44.7264;138.0872;78.98652;106.1056;128.5895;75.33216;102.2534;84.97634;101.1882;147.2108;97.4189;103.1762;131.0946;80.14589;74.73368;85.28763;146.5675;138.9111;158.8725;63.22757;86.87238;83.18145;100.7399;79.04217;68.89886;95.58803;153.6347;62.12638;94.16882;90.56062;82.1852;70.78515;99.52847;115.6518;141.3724;166.9111;161.7954;87.15169;156.5018;87.62301;84.51215;85.81064;162.9444;53.94463;148.7599;70.1857;155.0621;128.9908;84.81393;94.36832;111.3486;79.88747;71.44225;96.29042;149.8717;121.9826;103.0916;110.0576;131.1177;56.35115;123.7725;119.2904;112.1313;121.4705;136.7256;52.73192;74.19514;175.5573;116.6562;70.51249;120.1001;166.8481;148.3502;187.0841;131.6072;92.56937;142.0648;75.74429;126.358;126.0738;125.0804;166.0704;72.21574;115.9999;72.73826;132.8206;152.9492;155.3411;76.88904;105.0308;87.55822;86.42106;126.5054;138.8591;147.9703;125.3618;111.5917;178.0949;102.7263;130.9294;104.2633;78.11185;159.611;176.7876;188.8108;66.68733;91.35755;49.71592;178.2841;137.4376;57.39885;137.7942;71.12141;80.79896;74.03964;146.6765;142.5213;76.40602;118.9103;121.412;136.573;91.52415;82.51202;60.83449;100.7308;96.18015;120.8526;133.8871;44.41742;136.3947;68.79541;91.28185;127.5099;78.21162;88.22688;80.20034;82.4083;155.7565;97.49673;106.9254;142.2048;81.4336;85.69408;84.09604;151.7439;104.2406;126.8291;71.84978;86.59178;77.12362;104.8939;91.41667;55.31801;84.40006;149.325;57.69566;93.05542;80.71317;88.89338;71.16765;101.2045;119.4627;125.5545;144.0081;158.8258;92.70032;135.0483;82.30785;69.55495;97.74596;161.2544;54.51185;158.8677;73.71983;166.8724;128.409;92.94183;70.72144;83.91708;88.04233;71.58075;92.28543;151.298;138.1637;86.84763;95.53935;128.9018;56.22412;114.3699;101.8087;111.4616;123.0254;129.4741;61.03466;69.94974;160.6018;113.9669;69.9422;109.1983;147.2288;124.017;193.3036;132.9985;100.3473;142.8811;74.16269;127.9621;126.5677;125.8249;142.9734;56.87067;133.5774;72.74237;120.8224;163.9732;160.7443;62.9553;90.8634;85.74911;86.26373;116.9975;119.9434;112.2452;152.1206;83.25959;135.5924;73.53658;111.0334;61.08737;103.983;147.0042;176.1222;142.4003;83.72231;101.233;83.91784;161.0635;193.4037;68.43881;177.1879;65.26672;54.59877;55.93039;132.953;136.0431;95.97372;114.9751;121.9466;119.5644;99.39561;130.6414;69.83775;129.2031;87.88646;160.5146;176.0481;
59.67187;131.363;107.272;66.0813;109.6532;183.3917;203.2202;89.15433;124.9343;132.8071;78.28251;80.8971;100.2245;103.3044;122.5061;93.1616;106.7706;107.4973;131.0955;55.62801;133.1259;162.363;122.0874;78.45544;151.8416;73.45287;163.9964;63.29984;197.9227;86.8907;90.0975;169.6064;69.346;153.2542;118.3836;162.9602;109.0925;143.0018;113.8134;161.3543;102.9379;143.1558;124.6832;85.80091;130.4529;167.1581;99.61644;167.1779;101.3045;43.22674;82.24271;61.58813;89.47958;78.21004;85.30982;86.7313;118.2292;89.15704;66.52307;96.05536;162.0335;44.36338;53.94602;62.09102;110.8538;107.9598;77.63283;123.909;85.43806;156.7714;117.702;92.38172;70.35809;86.92059;112.3902;76.81276;182.5847;72.37848;66.60678;169.6005;114.4177;88.36512;110.65;99.96706;145.38;127.5165;50.28971;84.57836;70.42133;96.42384;101.1167;77.65578;185.2655;66.19341;74.05477;97.356;95.45166;149.5237;121.0754;98.90543;96.48969;126.9448;76.67903;107.3641;104.8509;96.67334;45.58756;119.746;130.1337;75.84948;55.88549;160.8726;101.3556;75.05354;126.6027;61.50712;107.8668;149.0204;156.8876;87.0861;149.3465;145.6585;113.6833;88.93728;193.0322;130.9409;135.3159;132.648;61.72166;139.2942;120.5543;68.88652;107.9974;162.0617;202.3604;73.04218;148.8499;133.9284;74.0611;85.28115;120.6679;111.9896;135.4082;82.00013;115.4791;122.5949;135.9839;46.09984;156.3534;192.9854;125.355;54.35419;133.1982;66.99645;145.1413;46.1442;206.3621;90.88745;79.35532;151.9901;69.11416;165.8775;133.5691;166.49;104.332;122.4911;107.5641;135.8877;122.8169;148.4702;121.8267;89.9239;150.8842;175.8739;106.2333;148.7644;109.6166;55.77534;87.96465;51.43889;107.9917;98.51418;83.55985;59.16364;101.8382;81.52524;61.7305;80.03275;154.6002;42.1434;46.78635;52.79226;106.2915;112.6466;87.82611;129.3064;78.26408;133.3496;118.6248;83.44164;87.08885;86.96941;117.3633;86.48454;189.946;71.56481;73.38519;153.0458;118.7316;100.3451;114.7688;88.83019;164.4488;151.0871;53.81352;66.32508;57.90998;88.47672;95.18625;63.32294;177.3111;63.47538;62.63812;67.1356;75.79023;119.3773;161.0353;94.408;79.34384;79.39641;92.56593;82.41714;162.4411;90.60581;72.07278;125.3023;168.5905;69.50148;70.85686;117.4226;116.8238;86.81129;179.699;66.14446;77.32068;144.3929;172.9421;101.9324;122.6093;145.1613;98.8169;82.81492;199.8171;189.6938;184.6933;129.3651;
53.20242;189.334;57.12716;71.6388;64.33478;157.4347;139.0298;76.8912;101.2777;146.9269;91.47797;59.44144;128.4335;81.54569;132.1346;135.6424;118.2945;128.8664;54.43354;146.319;76.04351;99.20571;93.83532;118.7381;66.22217;78.17297;69.46413;142.2691;106.9174;103.0815;146.9037;105.9461;73.82573;69.49563;158.2555;146.9321;112.6501;90.16657;71.75112;95.55276;92.49431;102.865;92.6853;62.4937;163.2177;71.63487;119.2958;83.33364;38.57945;57.97573;83.35719;112.2677;117.8627;140.408;138.4698;129.7745;134.2064;88.38767;55.67505;88.34862;180.9113;48.79029;167.8467;115.4667;172.247;183.9338;81.8456;60.80664;80.94583;108.4697;67.33791;93.80016;129.0953;155.1651;62.73668;70.92214;193.6751;70.52113;132.2056;144.6472;115.0449;120.2303;152.4198;59.11364;79.40445;182.2978;79.67196;105.0171;77.27067;137.2509;122.1667;188.7327;145.9742;89.3484;138.5992;99.16065;124.832;113.9193;132.9991;177.5147;52.07757;165.9363;63.35778;143.548;141.12;173.4105;107.4588;72.99779;100.6806;93.37337;141.7032;132.2945;105.3456;121.3021;99.10119;183.5415;95.9896;131.3033;99.88628;125.513;172.6912;169.9671;161.816;76.11523;87.00043;60.7672;152.2542;181.653;63.39754;193.503;53.24552;77.67163;80.59454;146.2545;156.7615;98.493;93.35857;144.6315;102.9137;66.22672;122.7304;89.94527;112.316;139.2249;147.3604;141.7289;68.32985;147.654;84.00913;120.353;107.4733;127.5312;78.19468;81.10847;97.35213;166.5573;88.63585;111.3708;109.9764;100.7795;85.42406;72.52689;145.4958;149.515;131.4979;77.43975;88.2587;117.8735;84.99842;102.1;99.45078;65.90872;154.2572;75.41108;104.4622;87.52303;56.68357;68.33306;95.69242;112.0058;126.6046;160.4816;159.8419;140.7067;157.6395;95.95528;70.01231;99.66821;152.2456;60.58959;134.7813;108.8097;176.9466;178.4389;71.79141;69.2364;91.89092;89.30328;79.48576;118.069;124.88;157.4905;62.02237;69.0234;178.8903;81.29772;122.8521;148.6777;133.8887;126.1842;167.4954;65.49786;81.75294;197.439;91.90977;117.0068;95.27867;146.6475;143.0097;205.1199;120.3504;105.0903;107.7019;103.7051;100.0232;134.6024;144.5649;210.9152;76.38792;129.6381;70.36648;170.6163;128.8601;155.31;86.49544;69.59618;107.9852;98.87614;106.0478;139.6334;165.4967;106.7072;112.8296;188.235;100.9269;124.4566;72.02734;125.1228;125.3357;196.9027;194.4395;108.6308;80.35535;67.58031;125.4263;148.4474;
203.1071;145.2775;96.77956;196.4717;54.12247;137.3385;129.6052;145.898;93.95311;116.6367;117.8104;129.9797;96.12903;97.76363;164.1664;70.24801;163.7537;161.2099;131.6697;131.1517;110.7223;54.93016;102.0986;76.29208;78.55535;104.0281;56.23762;57.96983;92.73058;83.36708;73.62724;89.81413;139.8206;84.93256;74.92522;65.37748;102.4815;123.2657;80.09259;151.3148;97.95114;143.7781;80.35666;107.3938;87.72434;72.50784;136.7308;86.99405;206.4673;62.1394;50.86269;156.9891;131.0399;110.122;111.476;95.15434;209.1292;160.8257;89.48827;82.19474;73.08836;79.15558;100.4033;89.63628;169.7317;111.8972;74.44244;119.8608;75.51605;121.532;137.5933;97.45103;79.76438;111.756;85.56259;95.61158;104.1083;57.15392;79.75151;106.8417;140.7543;64.78802;75.42699;138.678;105.3765;66.77293;148.745;99.79576;80.51143;165.632;111.7498;83.88606;141.6458;148.7083;123.9881;95.3015;165.1443;201.2354;161.222;142.4665;59.73495;141.6938;113.2;92.35497;129.2657;185.6021;144.7387;88.74943;157.6362;115.7162;87.15714;91.83911;102.94;98.63699;94.28325;75.56093;147.4238;119.947;154.3473;45.18076;199.0952;200.3107;179.1557;74.49587;158.0458;60.50145;157.1796;72.68961;184.1322;143.3223;93.75169;182.471;51.81934;111.0758;130.3913;139.8132;111.7973;128.4295;105.5624;128.9914;99.38879;97.59937;171.0501;78.28071;136.3884;156.42;118.7293;123.4083;128.4876;42.31375;124.2691;72.77943;81.18902;109.8614;53.18732;63.23359;100.5467;86.23936;75.3354;90.48534;118.7228;84.08604;71.14304;53.34472;97.56784;100.2615;77.38973;140.4305;112.1459;158.045;70.17812;101.186;89.92398;73.794;139.908;94.44587;170.772;59.15973;43.07035;145.1279;149.2451;92.57381;131.5757;89.80019;209.4473;155.9335;90.77103;87.61969;74.87994;80.97603;103.9849;93.82047;157.2025;109.5424;80.09698;107.5282;69.66328;105.5504;130.376;81.84818;93.51796;113.9975;79.6974;91.58096;100.5324;57.47161;83.60609;119.0456;121.033;60.71412;74.97575;132.1789;119.6126;58.34138;167.6779;87.18536;80.70801;160.6618;113.1817;89.36567;144.1357;151.1997;111.1971;99.57527;159.604;212.853;175.9955;139.4805;63.33088;133.4783;92.25991;90.73623;136.2495;157.6781;182.5995;43.89595;138.7603;125.0655;116.7284;81.39013;98.28611;120.8271;127.2137;61.82793;130.0394;120.6806;135.9881;69.00272;187.5662;200.0497;150.9558;70.81687;168.0651;70.79849;118.0017;106.075;
83.65292;107.9852;124.9907;73.00227;106.9308;128.0069;109.3308;172.5631;138.6147;94.86966;159.2273;153.3779;97.22638;62.26997;167.9257;86.71726;96.1097;77.23717;171.0918;125.4994;149.0662;115.4444;99.5698;144.7277;76.05573;126.395;124.8196;159.591;177.1792;48.43706;209.5903;74.245;122.5556;136.6418;102.7315;76.6735;67.97973;71.5875;88.40199;98.95073;128.2027;132.2841;145.4515;85.13553;164.6119;83.16507;136.1672;96.00254;102.2106;114.1065;156.5997;149.6896;77.43066;80.17568;63.84907;121.9483;151.5085;41.84667;138.0531;72.76356;53.78468;71.66253;123.7142;135.659;74.87305;92.24138;115.5125;115.997;105.7922;81.99049;111.5584;161.1491;135.3465;102.0535;174.222;64.44064;188.371;62.98422;97.38177;91.27769;109.4499;71.2538;99.72718;84.15667;115.8357;85.21589;103.1944;146.3061;91.94922;79.51004;80.74873;199.9352;131.871;108.2118;126.5092;83.4913;81.10779;97.03199;53.25774;68.16473;65.81934;129.806;58.50498;80.60116;89.26507;71.89068;86.60452;85.88408;96.24457;103.2101;162.0695;156.424;124.8951;135.9706;101.905;68.06087;113.102;151.1821;67.84357;132.6889;106.5872;152.9412;125.9398;95.93153;46.34443;87.05652;56.05532;74.76796;76.75702;127.2832;145.6168;61.00122;104.964;148.2176;102.6695;172.76;171.4767;92.96114;160.0531;166.9185;83.85606;61.97649;168.0273;85.88978;104.0805;104.8023;194.073;136.0644;157.2672;122.1784;108.9855;170.8325;99.46052;131.1943;119.0198;170.6983;169.2118;47.35333;178.0661;77.18731;108.6524;157.7291;120.2987;59.48026;66.41369;83.42764;79.96881;98.8211;153.8542;130.1956;145.4348;89.86825;147.1102;79.59815;133.6338;96.12216;107.3103;147.2256;178.2968;155.7333;85.0759;82.43491;69.53435;147.2259;176.4254;48.76242;133.9833;74.46268;51.25359;75.3841;103.5564;147.8746;61.87257;96.03304;130.47;99.79368;100.8636;96.31569;107.0954;157.2316;158.4055;106.3185;176.8576;66.66323;172.9677;64.54359;98.91946;98.09037;111.7418;84.98177;113.7936;93.73574;121.8809;89.16622;115.6249;169.9797;111.5697;88.9464;77.64328;202.7453;127.8905;112.7742;73.08014;71.89061;88.65928;143.2111;58.97609;53.02768;94.70222;162.551;92.16704;85.24197;93.52591;52.4901;58.40921;87.31015;65.12498;120.3319;192.1332;142.4262;137.8157;146.0863;106.6762;87.15057;120.2051;163.0835;70.98165;169.8685;81.02411;187.3916;137.8707;83.54438;46.46265;62.29689;59.80967;70.88074;
78.15479;64.47399;198.9108;92.9464;146.9558;118.3452;116.8444;92.223;191.9974;44.47358;48.58741;136.8829;92.52991;96.03718;131.8628;160.3402;143.6878;182.6696;152.5207;79.4603;159.947;95.3244;95.00815;87.41513;125.8354;135.5014;50.87052;116.5434;43.16245;105.9101;165.0159;136.2101;87.79908;64.40844;108.5902;124.3095;101.2832;163.4499;111.1423;122.2086;91.04243;124.6613;71.65035;147.5687;59.069;85.52039;144.5385;139.8578;147.9744;78.64705;77.37489;77.02662;120.82;186.3285;50.73655;118.2132;82.51186;67.55681;91.01779;111.8741;165.2874;89.96519;109.5518;97.25294;133.1344;61.51358;132.679;92.62826;131.6246;114.532;132.2184;103.486;88.89588;125.163;51.33878;82.1514;116.8062;111.7453;119.6546;100.6855;100.2001;138.1809;107.631;76.26908;156.1404;108.9385;61.16194;53.00081;155.9144;106.386;119.2295;64.34736;61.32901;66.30246;114.6214;81.4076;82.36256;55.69099;164.1895;81.3791;74.79932;115.1431;59.72055;66.10875;91.46851;75.22661;100.0027;181.4073;119.6196;101.1294;134.6017;71.74164;64.74344;115.172;131.1655;83.2478;99.01344;95.84315;158.3728;119.9547;115.5509;59.70032;98.11409;59.07516;88.91962;104.359;144.8083;116.863;97.66978;71.96037;184.983;86.61934;144.4644;140.4094;116.2824;92.95072;199.395;60.69782;62.28418;136.7194;114.722;118.0964;135.3989;164.1228;152.1348;197.2771;144.4812;90.10929;150.9067;82.30289;96.34;100.4746;143.1559;145.1611;49.59956;118.3197;54.08002;103.5641;172.1729;152.3911;102.3832;71.65293;96.78953;114.3791;97.45087;183.9766;109.4812;120.8911;91.60439;150.9418;87.71039;144.7883;76.16885;102.3411;147.5507;141.3874;152.6454;88.6393;71.08183;85.75853;113.5858;163.2794;51.30451;131.3933;92.29111;68.23954;86.10724;106.8134;173.0874;86.09268;109.6193;102.0679;150.5534;71.73189;128.0286;93.44839;131.741;131.5789;130.0872;106.0405;88.1854;142.2108;62.88374;76.02485;129.1703;128.7744;116.4437;93.43369;103.7097;155.9665;107.912;94.37039;152.7391;91.29803;61.56587;64.87984;169.2534;107.2384;113.5984;60.52344;66.11538;62.98404;134.0245;57.41623;92.59506;52.53949;184.4545;100.8228;111.3604;119.9889;51.75509;81.82537;71.73457;87.34054;115.3808;191.0997;123.4424;105.3773;143.9374;81.29398;85.05213;114.0405;130.2154;67.14609;103.3374;69.62986;143.7077;155.6604;109.0191;70.52493;90.38189;79.44097;75.6932;93.83005;132.6611;138.4736;
84.70511;60.01699;100.8037;120.524;78.92046;148.9768;55.73919;86.83276;147.0519;100.6857;102.9069;117.4634;117.786;158.3974;163.079;104.2913;82.67323;57.62714;130.8971;84.02484;140.8851;128.6025;96.32012;91.27752;88.75999;59.46088;164.0894;130.321;62.67698;50.22529;112.3101;97.03228;95.62237;130.6518;88.40267;63.01164;128.9773;112.4913;86.75391;96.54322;123.308;86.65723;63.55107;122.6509;51.29044;73.12219;96.76591;139.4478;91.28389;170.7125;149.0297;123.9414;95.57652;148.7713;162.2145;217.4816;151.3666;57.80799;144.9449;116.4432;77.04073;110.2725;174.2742;145.572;82.43376;115.4397;141.5226;72.88301;82.85419;88.73804;92.4398;160.8655;78.61117;94.1342;110.5762;125.9337;65.36622;140.0226;207.8881;190.9448;79.05116;139.0756;100.4702;127.7559;115.2271;153.1565;128.4285;106.5963;160.4733;36.52231;158.1488;118.898;106.4785;57.5892;133.2323;126.1245;139.1115;130.2464;139.678;137.0733;87.36707;129.0692;191.9029;149.5305;108.6585;85.89257;40.33227;77.59579;37.48315;65.53406;62.68127;51.8478;77.75648;122.0715;81.8264;53.60362;79.2115;137.4877;50.95269;94.46954;58.26096;111.8759;124.7643;74.64336;124.6012;85.57353;140.2938;78.33054;107.7066;73.17168;95.08064;117.2219;88.82386;170.1357;57.22843;87.76945;129.9262;109.6328;82.90054;102.6711;115.3823;145.5635;172.9917;78.78596;104.0004;61.19862;123.931;60.9668;135.1601;152.4752;85.38176;79.95857;79.41138;61.30729;152.7517;105.7023;48.05019;48.90374;112.7536;97.08941;114.4461;147.7762;87.15782;62.53634;139.8355;130.2724;90.46947;98.91654;102.871;93.94336;51.50584;110.6479;48.7162;64.13528;106.4706;114.2793;109.7706;176.5278;147.4372;101.4378;90.49989;174.8943;150.3418;206.003;138.9546;66.89963;151.7009;106.3803;65.46016;118.3531;168.761;148.106;94.19939;130.0372;141.2791;73.08603;89.63947;103.5281;96.14046;159.988;65.31602;111.3912;104.1427;121.5926;67.2636;138.3504;215.1627;163.873;90.64964;142.7258;100.2858;105.7509;107.4996;178.2361;117.7414;95.55865;147.6854;43.81942;165.2023;108.7273;92.78127;63.46837;148.8116;96.34937;126.0706;122.2365;113.0611;115.5589;60.14867;174.4919;169.9084;149.5782;124.6921;145.4753;56.33661;102.5037;53.59131;85.11832;78.02545;84.10175;60.37631;111.8814;74.25261;45.92448;73.08255;117.901;51.47117;82.8842;80.40733;122.2071;100.9943;87.07633;141.6505;100.4191;171.2735;116.5894;
145.0447;146.6536;95.41138;66.17643;103.1803;94.52586;85.21172;94.35216;115.7245;135.1005;93.56178;150.1102;113.5128;167.9937;77.50263;81.72462;139.9755;158.2208;171.3585;94.15946;90.39156;59.68827;181.4481;169.1685;50.77278;151.4698;50.76106;82.75662;61.38096;104.9582;130.2903;84.05068;109.4677;119.0154;86.97995;99.2408;105.7565;121.7596;111.2138;91.90283;89.02684;171.1115;59.68969;177.7882;102.9226;97.71134;179.1265;72.98711;102.7546;96.24479;137.9103;158.8564;109.3503;106.8552;159.7097;64.64347;63.86128;110.4918;156.3828;114.7396;121.6563;86.6768;81.24565;82.21285;93.22607;84.96297;87.66789;59.28084;179.676;63.43236;72.10497;63.25899;67.36349;79.4772;98.59589;88.11128;136.0266;186.6476;134.5926;89.62627;127.7605;92.06047;73.27419;117.29;170.3485;57.67719;174.535;101.6734;162.4236;145.3156;76.69933;72.19936;64.59164;57.67851;59.31501;94.42445;140.0805;142.0664;45.98676;101.6592;167.6934;115.4805;127.9407;103.4924;80.3689;157.7963;162.5207;89.6179;93.41165;158.8514;158.6775;74.00047;125.1432;178.3748;161.9815;175.2005;164.5968;83.57031;173.9218;47.11468;87.19745;166.564;136.9683;170.9642;58.96728;141.9812;65.6378;124.8414;156.0135;146.2174;114.8703;76.98585;118.7159;74.27893;93.87314;109.1805;136.3238;114.2743;101.9476;136.7353;87.84902;147.0825;73.36687;90.92538;143.6678;173.7431;149.2562;74.09746;107.2644;46.33807;207.1088;152.5934;46.05353;165.117;64.7653;95.82432;61.21479;93.55333;124.3983;79.30235;115.4257;118.1549;102.3636;113.1488;120.5951;103.3706;113.4548;104.8665;104.9897;147.3505;64.80765;164.4486;78.54875;86.13776;165.1124;82.41185;103.8224;107.2247;116.3615;136.3749;127.9236;92.13689;175.8949;55.14609;55.49882;118.7902;168.0159;131.1298;130.1902;78.98004;79.21457;82.0251;100.9178;79.1695;107.176;69.7786;185.7776;48.73571;71.61104;70.64031;79.54282;62.02888;97.43182;76.6442;116.0291;174.4436;125.774;105.1513;131.4488;97.19992;60.86961;97.67311;180.444;45.43115;187.7236;85.87054;148.9115;154.8055;84.908;85.31396;70.84916;51.43286;54.55667;103.0204;124.5704;110.1006;65.86543;98.69101;182.2761;80.75414;124.0416;131.3046;96.89866;98.22144;210.6886;71.53932;67.85153;177.6143;109.9977;84.26614;140.6204;169.5455;164.1698;136.1608;153.4638;82.43824;175.8013;79.2336;93.22373;124.4299;164.5415;150.3959;64.21597;125.3361;63.32129;161.6812;
106.4899;124.4605;64.88155;130.5064;129.2958;110.4445;189.2776;48.44407;187.7163;96.85043;115.5178;134.7079;142.1564;103.4061;102.6427;98.90496;130.8873;111.8321;133.0263;145.0111;156.2068;100.1712;174.7148;91.84238;188.0512;64.97165;88.83703;136.1428;187.0854;128.5798;105.5329;78.96542;75.32642;134.9345;141.7724;69.26516;168.6614;76.94301;61.60973;62.84084;127.0075;142.1321;60.76802;76.88262;105.4299;114.9423;85.71652;84.0997;73.04482;110.9229;106.5937;128.6944;135.2377;53.54794;196.9295;81.68745;73.08873;103.597;87.8987;80.89972;95.65649;72.61822;127.1143;108.039;108.9121;124.2107;70.8783;89.51257;99.549;128.6501;146.4772;114.7383;102.9668;105.9154;78.55748;92.79649;77.85875;94.58881;100.3627;165.7138;86.79219;84.95977;88.15046;84.57835;98.94318;91.78336;108.6316;123.91;197.8011;105.8678;111.0689;133.5425;104.9289;49.23107;135.8355;143.5652;71.04472;120.6536;76.72546;183.0683;164.9687;95.92532;50.93785;75.36311;68.80142;69.80476;84.0957;117.5639;120.0122;72.25524;89.78387;153.0722;61.29897;121.6356;136.2241;90.1558;131.5165;161.4952;88.29172;69.29179;143.504;95.00515;71.01005;115.5635;180.8639;127.8907;173.779;135.4438;107.6627;118.3409;72.96211;140.6692;162.2749;123.2278;205.5422;46.6065;181.1938;77.12837;129.9465;154.9751;152.4713;105.6113;111.3105;117.0907;116.2137;101.8015;155.9674;116.1208;165.5767;112.2174;162.0085;79.70615;182.4003;62.83992;85.39362;166.7821;202.3944;145.1716;112.4227;75.52151;78.19053;134.2442;151.3376;73.72918;204.0695;90.08913;68.19772;60.34784;124.498;124.077;70.16681;89.61295;112.8937;120.2459;90.83422;101.716;65.69953;106.4631;126.1236;99.96989;144.5242;64.55331;179.4718;70.92323;80.85763;106.6931;77.55096;95.73843;106.5754;84.58972;133.4594;102.2053;117.6052;119.9988;80.74478;97.6342;118.9421;149.4152;158.7641;109.1216;109.5499;90.66085;82.9688;99.09724;84.19027;98.73365;104.8253;187.6696;83.17742;78.19189;109.5513;64.10697;99.40046;109.3814;97.50732;108.3334;210.455;109.0015;99.39671;152.4295;116.3509;59.1687;126.0306;197.502;93.04205;161.7096;117.503;207.0683;187.0155;105.4633;76.10271;61.80994;102.8045;59.58131;88.46992;108.2664;168.0241;63.90281;98.17549;152.8966;75.4502;146.5417;147.3376;96.59771;119.5179;198.9463;50.03419;77.02892;137.9388;73.52641;106.0619;140.328;151.7338;189.6393;173.8831;124.5902;
141.7662;196.5366;58.05072;162.7179;46.91196;49.13613;60.75378;138.9573;115.4054;73.53492;92.24274;116.6218;114.8351;65.31096;84.62514;96.98015;116.8309;124.9654;134.4641;149.1121;48.45321;167.5094;67.04337;88.04238;108.1435;78.271;126.974;81.38181;75.75223;124.7998;94.61986;104.2814;124.9393;75.22844;101.1175;86.77137;203.3497;110.383;124.9571;66.04684;85.7897;63.79084;123.9935;73.37895;74.5648;93.16142;141.4158;83.03711;93.93052;109.918;81.56731;76.75613;77.76151;94.1179;79.63715;164.6989;158.655;97.96498;114.1782;96.26743;75.31788;102.8141;130.06;49.86907;138.1324;115.2823;167.6364;150.0583;65.91119;46.44845;80.30656;85.85576;54.37307;85.18383;117.2847;132.9252;77.61212;65.70577;140.7019;91.6188;137.8233;128.1518;116.6721;134.5863;134.5204;88.06075;75.10603;152.4182;97.63674;67.936;146.095;150.3612;125.344;158.3477;130.4521;97.0686;131.9069;66.37757;146.4349;127.3224;173.6396;156.9893;60.48124;122.9893;72.17789;103.9791;183.4052;139.6158;85.40564;96.94836;84.42875;101.3314;118.7367;151.7612;125.9247;140.414;94.02525;184.2593;72.5089;135.6284;109.3987;94.5768;120.6396;157.7439;166.653;83.43217;80.15859;58.33053;169.3907;202.2315;57.80268;167.7912;48.58617;71.96507;56.12718;160.8166;120.2122;61.09645;101.2829;137.2401;143.026;65.53838;87.49198;84.88816;116.8917;118.5376;119.8633;156.5662;59.44613;199.5729;89.85237;86.78622;119.8232;85.62238;115.8682;70.217;76.78369;129.3853;110.3891;115.2376;147.394;81.61185;101.883;89.85538;202.4972;141.6324;112.5492;78.68568;88.30657;54.75416;137.0793;89.51797;95.3853;91.78062;139.3403;69.58733;93.82312;107.7921;71.95216;82.00328;90.89656;117.0285;99.45876;159.5202;170.2452;109.9711;107.0909;83.72414;71.84308;109.6957;144.8124;57.5056;152.5256;125.424;168.5557;155.2627;65.73193;61.26994;65.82212;101.6728;55.08305;74.57062;131.5856;154.0495;93.69531;66.66068;135.1235;77.43279;129.2418;128.1507;105.0615;142.6153;152.1001;102.3778;89.04752;149.2376;106.7719;77.98874;138.0622;134.5757;120.8495;166.8611;150.8554;80.71263;158.613;83.04373;104.6942;106.2959;143.1896;219.3969;65.43573;155.5124;66.30138;92.18427;148.5223;162.8268;111.8208;75.86942;127.4652;97.17812;107.8336;143.5477;108.6466;150.375;72.58113;167.0631;98.22724;181.2574;94.40584;94.98948;119.9391;166.1951;133.0322;105.2209;80.99987;60.8609;
143.2452;71.94182;55.36077;99.86612;156.0281;95.27572;164.6064;123.0469;113.3303;99.7938;131.1069;190.6791;144.3215;138.9768;80.93047;154.9044;125.6057;72.92808;155.7741;188.3092;191.467;72.1047;202.6929;133.1706;118.4665;113.4783;75.8864;109.2114;151.802;62.6836;167.2761;109.7345;125.3356;58.3044;143.7055;186.0235;170.516;97.86831;175.4831;88.35415;151.0775;75.64314;197.9314;131.2666;72.8211;129.0756;57.03374;129.5873;101.4189;106.2838;62.28894;88.67648;120.7118;162.0928;161.218;128.1735;150.3314;90.23031;127.6994;211.4998;129.3968;135.0727;152.8559;58.02395;108.1777;68.99314;60.4938;65.56726;91.92873;72.51991;101.6562;62.30163;66.11015;81.48621;106.8058;85.65409;52.69479;67.04076;132.6833;127.0255;96.09569;147.312;126.2714;158.8036;119.547;88.01696;112.4473;82.24811;173.0841;107.147;146.6195;76.71373;77.65952;130.0794;175.6326;85.97514;111.2895;113.6142;155.6048;147.7072;88.82256;113.2421;76.51773;107.5914;99.87285;89.24819;177.1812;101.0139;54.47246;70.8506;76.26491;107.3987;124.9247;54.92836;51.70716;90.46601;80.61672;99.14818;136.2674;89.90617;67.74606;102.7787;132.0522;88.63986;63.56319;146.69;124.2695;67.14818;125.2813;61.90338;65.10071;117.194;162.8286;80.7104;146.2246;137.785;120.544;82.67306;126.7365;195.0884;154.4067;145.6378;73.34911;141.6972;152.5667;69.24265;166.6475;217.3612;180.1152;58.74392;165.1667;147.2192;118.1461;79.52797;103.1377;108.111;124.3801;67.93947;156.3521;96.72845;108.1977;49.71594;152.7508;202.4433;174.8879;78.74634;161.394;99.43023;159.4779;61.73829;186.0851;129.9801;78.2346;130.117;53.52108;119.1393;127.0089;103.8355;65.35987;107.5366;110.6807;137.1938;132.4186;143.7279;149.3279;67.93401;151.7377;201.0098;109.7853;137.3333;137.9191;49.47257;88.5879;52.22517;64.58445;75.70983;88.33579;56.64565;99.70504;74.964;70.34037;73.37814;94.41221;80.16763;61.48808;64.08346;123.0417;117.9115;116.786;132.7806;128.0613;184.1303;102.2479;70.43475;97.21885;98.59724;172.0071;82.71208;172.3028;70.44916;62.64787;132.298;105.893;80.2493;80.26472;118.7876;161.0409;152.896;77.06763;95.6224;84.51677;128.6591;96.22319;98.32177;123.4726;101.909;70.47725;100.3685;87.87112;103.1876;134.372;53.67129;55.18309;119.7933;96.76392;93.0988;106.4677;106.044;80.40022;119.6345;168.4628;94.09796;67.839;163.4866;107.6285;67.55042;
186.4196;151.9981;81.97666;135.0296;85.11883;100.555;92.7608;125.7363;50.58997;145.8008;54.90565;178.5483;146.9379;107.6036;89.7923;64.63792;66.03256;75.287;89.64034;143.3441;124.523;61.37745;107.193;118.4896;69.70855;191.7918;113.4974;93.00349;134.8212;172.7865;54.03576;55.32359;139.2217;124.6413;94.8764;108.497;159.9201;122.7582;140.5428;107.2415;109.7482;128.6121;65.19196;102.3041;124.8141;168.5677;153.3724;44.90985;144.2966;73.31537;115.0813;167.5263;130.6331;58.0173;110.5123;103.2122;101.4855;127.4046;120.3625;138.5529;124.9973;60.88857;127.3251;87.02729;168.6031;95.76285;72.50951;145.6012;164.5142;217.4023;80.14083;67.95183;51.72997;156.0005;117.5594;73.54486;163.2126;82.52704;101.1734;62.60653;127.994;152.9623;74.72555;103.3;114.2999;107.0975;116.8388;74.15224;75.0723;171.5888;113.0495;118.2306;155.1853;67.76449;127.6807;60.39875;81.22468;138.9139;106.5786;82.36116;92.97352;89.48938;115.1805;78.12684;111.4564;122.885;81.35088;73.06166;87.32363;193.8928;114.1659;118.6929;81.57694;81.57518;77.23692;105.1593;72.83305;70.51182;111.9319;179.6577;78.74825;97.39838;86.91309;92.79504;62.53657;55.71442;82.86445;128.7115;197.2887;149.7434;105.9372;142.6245;88.09368;92.73869;126.5685;131.6693;59.31388;134.5035;59.2751;220.2173;169.2581;101.7943;80.12649;72.23648;69.28046;67.01256;97.06805;141.1859;128.6815;78.60184;115.8088;130.0858;75.89931;174.7945;130.9927;113.9196;129.1561;163.1453;63.88929;69.76414;142.6849;123.3842;119.0881;109.5221;161.7564;116.0462;176.553;108.6003;118.3168;119.0611;69.82431;128.4035;144.2881;163.4041;137.5701;50.2107;144.6461;65.13268;123.6874;161.6284;133.8841;75.38602;116.4184;112.4575;108.9868;119.5556;130.0709;150.6968;114.6541;57.75382;144.6558;98.57793;164.6602;94.31668;93.9556;157.2461;165.7581;199.2834;98.99174;71.02187;60.51765;152.1908;115.7157;88.50562;179.2782;81.94835;90.33444;63.71532;121.6478;140.6147;81.79044;107.2869;116.823;123.0715;113.4549;84.18402;81.54185;162.455;122.463;129.468;143.6351;64.45521;143.6744;97.22919;70.97438;123.1676;104.4977;130.8376;55.33985;120.585;181.8005;107.1861;83.55152;110.4033;88.22418;80.26685;102.4935;198.2105;135.969;146.0909;68.7143;85.86061;69.26556;85.74328;74.92184;99.67303;95.8409;143.7453;72.81578;84.09207;99.20061;63.35721;81.78664;81.78503;79.65467;138.0985;
97.43572;150.854;54.37445;63.28658;144.1194;129.7613;83.62671;94.17627;110.3736;161.8776;106.5436;99.76037;72.18029;90.1033;121.5001;78.81121;80.8176;128.2768;97.98574;97.38008;97.63429;89.67336;95.5265;128.7712;76.79086;70.37635;119.453;95.37291;78.94604;183.0206;68.62888;50.55896;163.64;144.1766;52.41609;102.8359;119.4549;117.0849;73.87572;124.5486;68.55402;84.30067;145.2601;161.4181;89.58728;144.4181;139.7632;118.8255;73.88007;124.9558;176.1908;153.9968;144.9461;51.74049;109.9967;99.89387;69.46287;107.9914;162.799;207.4137;74.66386;162.0648;137.7814;81.18995;99.08428;100.9828;92.2095;139.4517;80.79449;132.0762;119.4324;108.9638;66.09037;156.7839;143.7593;201.8444;64.97755;195.738;92.96385;134.5488;64.68443;166.43;133.6653;127.5443;174.636;71.28456;111.9239;123.5473;130.0301;87.40023;137.6937;126.7456;114.7091;185.1025;108.1969;129.9343;113.0027;176.2782;142.5656;172.5411;114.1351;124.8559;58.97746;80.60709;54.08235;85.62558;96.50349;83.17414;65.37447;101.236;72.85643;76.55691;68.39835;124.4907;79.33989;74.356;71.74464;90.74171;104.9439;90.37212;152.2673;90.03246;133.0167;120.4117;98.23435;71.73219;94.28616;108.0641;96.65551;174.9365;58.61323;72.76405;141.3547;146.3107;95.44989;88.75788;129.8658;187.5149;99.46785;90.23934;85.40081;90.78859;123.0874;86.33568;89.20229;163.4239;113.8295;121.0347;105.4007;92.23831;116.2264;150.7596;93.4856;85.65612;119.8355;99.1048;94.95345;152.744;69.64995;42.43184;156.021;167.203;55.75748;108.2747;116.9395;128.5427;82.51929;118.0008;79.73452;103.2124;136.1977;142.4288;104.2899;141;138.7905;129.1742;79.22599;159.7424;196.8972;177.5695;156.6922;51.0355;129.5504;120.4728;85.24701;122.3403;161.4447;208.874;86.81091;128.6859;144.8583;64.67878;94.65578;107.816;96.14931;133.9811;73.60629;145.2558;123.4415;108.5407;79.58963;176.8752;133.3858;182.6647;74.39474;185.7949;96.7635;136.716;70.97344;189.6799;151.1791;137.1445;179.5556;71.17496;124.6905;153.1043;151.3284;100.3576;136.4483;127.8877;129.6557;149.298;146.1519;149.3702;100.212;172.2044;146.9825;179.1346;145.5443;128.5317;50.40727;107.6636;58.70003;77.87178;61.9883;77.41864;82.98978;101.2141;64.11205;57.91519;94.59428;114.5878;80.7023;70.90636;64.745;131.5875;136.792;93.88508;197.8602;89.76984;120.8937;74.14043;107.2291;63.97588;112.0036;108.8587;
64.86944;114.6029;119.8634;129.9699;140.8794;81.87369;95.60575;89.89281;129.3894;64.18393;115.4298;129.8172;97.33524;98.8255;64.38032;87.56726;123.499;143.1599;90.10904;92.97757;115.742;107.6178;86.5174;140.0249;73.81252;49.07319;148.5259;106.5354;63.73555;95.20036;170.4898;145.2211;75.99325;145.1712;61.30391;60.61593;100.1089;144.3173;85.20992;160.7392;114.1308;124.6018;79.179;132.3529;144.4372;157.3354;157.3398;101.914;108.3724;128.3964;93.04429;167.6525;139.8932;149.6993;51.35178;148.065;126.2868;82.12653;126.575;62.25801;95.91879;139.5872;73.44376;144.8022;97.48687;143.8201;70.15112;122.6968;185.4707;178.2502;87.29015;183.3504;106.6551;106.2345;97.67961;163.5691;130.5348;110.7801;129.1231;67.23446;143.8636;147.8267;149.1912;110.9034;133.2798;142.4715;127.4863;143.8548;123.108;114.9423;109.2048;131.462;161.0435;137.5035;164.2404;151.5038;61.59722;110.6305;48.66444;59.60643;60.12411;75.60685;61.35659;110.6807;58.40475;72.35542;77.25948;108.546;52.60775;56.85108;74.13264;155.8114;89.26179;89.66615;158.8862;134.7743;133.5786;75.99656;75.11759;87.0312;83.1591;116.6711;114.438;123.5506;63.59901;86.64744;135.7119;163.7728;86.28435;133.2919;131.3776;130.9059;143.1131;98.62986;96.92554;90.89107;136.7646;78.80756;126.3544;148.0844;107.1222;119.5353;70.97099;87.88862;131.5518;133.2061;86.97066;96.37289;132.8007;107.8893;102.0972;143.388;77.52113;41.46965;142.2262;118.6454;70.1592;101.2235;168.1393;157.5021;93.28177;165.7548;68.28889;59.38118;100.2028;161.3996;85.47243;159.5986;115.9473;144.6492;87.87828;148.1511;155.0666;177.869;166.8201;100.5689;112.5719;119.34;89.18491;169.7319;159.3067;145.623;63.05208;149.4618;128.8471;73.92749;112.1974;65.18884;102.6128;154.9462;69.08299;160.3198;110.2661;158.3783;78.19347;122.8657;183.6745;195.5776;84.0571;179.3842;109.5997;126.6992;99.9553;173.2868;139.3086;135.6704;133.8096;68.26026;141.146;132.6628;145.0884;114.4567;150.5018;137.1516;141.0545;142.7792;125.6349;105.1992;95.88001;135.7056;169.6838;152.7504;131.7669;167.9591;76.45256;107.9462;39.58786;56.06095;84.99979;83.85236;59.95201;88.83012;69.38425;82.44233;75.71836;100.3585;73.05381;68.54023;84.23315;120.0246;129.6232;92.63656;183.0105;111.9463;142.2148;76.00166;63.49271;82.89169;104.1658;144.1904;80.27343;153.1949;94.13574;65.44234;143.4563;124.4912;
95.06834;113.9771;119.582;124.7013;41.67492;133.4847;186.2645;145.9046;63.07062;152.0941;70.51706;154.0142;56.12531;168.0614;87.3851;79.97301;167.6975;64.28511;139.2382;116.5089;144.4111;104.8974;140.6314;97.38747;140.929;127.4558;153.9396;156.3354;95.66331;126.3417;165.7257;114.3962;172.1567;107.5407;49.58477;80.73991;48.65425;94.55186;93.39793;97.24014;69.42444;117.4625;79.58417;67.80957;92.18961;121.7001;38.89918;45.6902;65.4645;98.61079;84.25731;68.36707;111.0901;81.22561;152.2233;107.0368;101.4874;79.75055;82.18784;138.4048;90.91714;167.2547;62.30231;88.11001;168.4745;118.1686;87.94593;99.0708;83.85629;131.884;137.7167;69.15898;85.89745;60.9665;79.37012;91.77175;76.72119;144.0759;58.92827;69.54545;95.43993;84.70993;121.6425;105.7577;87.8313;80.8308;115.398;69.16309;114.6376;118.3549;88.60069;61.80414;139.5294;117.4407;66.80307;73.00977;174.6377;102.8501;65.83317;110.8153;58.98638;88.23536;136.8665;180.5985;108.4237;154.3845;135.9987;109.3098;102.8645;161.494;124.4956;139.2725;148.8499;54.42718;106.61;107.4462;58.61272;115.6368;179.3256;213.2985;98.23611;123.6011;140.3244;89.64715;96.36182;115.4847;100.843;133.9306;104.071;110.0746;99.86194;120.8128;50.79708;129.6214;184.3295;142.4723;68.39132;140.6838;75.34334;123.0005;66.26437;199.8796;83.88659;80.38756;172.9704;63.82869;133.1438;124.7078;153.254;109.8787;137.114;111.0507;170.2703;103.6129;154.5177;139.4734;103.3768;148.7333;164.6509;99.55981;177.3348;102.1081;39.96929;79.77161;57.37031;90.72302;93.92459;95.80563;71.00476;106.3682;89.26096;49.90697;103.6207;148.4435;37.78544;49.00163;65.77759;97.8271;83.9285;79.90376;118.437;85.98266;150.9885;126.1786;113.5587;68.90641;94.90685;138.6111;98.37941;187.9082;62.26532;70.91011;181.3037;110.2575;78.14227;103.2472;94.90509;136.7659;143.9272;65.45034;80.10177;60.46724;96.93546;77.70007;87.12148;168.3498;58.15602;69.41933;101.5646;82.07285;125.2747;125.7982;94.09663;93.32111;119.3925;81.91077;127.4459;105.0618;101.789;61.94205;148.7387;134.8447;43.53733;86.0975;156.0573;125.9241;71.99747;144.4099;78.79675;83.81699;133.9398;172.277;91.33777;170.0517;122.4408;113.7258;96.79893;142.0241;141.7274;148.6326;143.3672;78.23209;149.3565;141.9129;67.59561;140.9227;193.1925;202.9143;94.2102;171.3859;139.367;108.2314;112.4741;82.96943;98.43229;125.4336;
50.86185;107.1836;64.1814;86.02928;94.80665;90.69207;100.0623;114.2966;77.79218;68.1434;57.04543;151.7652;59.62495;90.66339;90.19753;149.9866;123.225;112.5554;166.3943;116.2174;135.7804;78.33064;92.29614;76.02402;111.1017;125.622;99.87662;136.1376;60.46822;59.93874;153.5598;150.1094;110.6515;90.62107;127.5898;161.0886;157.4359;48.22921;84.02732;62.31127;100.9681;74.50651;94.17104;163.9197;68.72;91.38443;108.9506;78.91122;129.4006;131.7464;82.00731;97.77911;94.74365;95.81747;122.4489;152.6693;114.6702;87.90765;99.67655;139.3767;60.61769;99.45241;163.5048;106.4159;75.35683;146.873;78.79176;87.04829;134.7579;173.9998;127.0991;157.0105;145.4085;114.3109;67.34119;188.8594;158.0828;198.2045;180.1026;90.56152;160.9868;147.1655;97.71238;144.392;153.1697;152.1347;71.69756;125.3439;162.5254;74.13499;97.95249;74.53682;94.28325;115.9311;73.89249;140.8893;149.1897;105.5557;74.69749;149.9894;184.7442;124.8613;60.27725;133.0578;77.01315;114.8958;71.57449;192.8985;93.17354;102.9827;172.5851;50.10309;167.9934;118.58;116.4905;111.4263;85.75062;153.1159;128.6454;134.202;169.0367;168.2831;69.90295;160.378;155.698;159.0089;163.6701;118.1417;50.19341;126.8757;70.59;92.43269;79.70629;93.31948;85.33341;123.8614;80.91189;75.99172;46.15776;136.061;49.77868;78.16318;93.40045;136.1312;153.5968;100.1895;144.4698;107.3352;106.9706;94.827;72.22609;64.15343;114.236;116.1554;108.1103;139.9047;56.23519;62.604;155.0859;144.0882;106.2126;108.347;132.8792;170.7458;136.8475;53.55704;64.78736;68.07053;102.3375;82.54335;78.2432;148.765;58.10388;82.96296;106.2754;69.61163;157.8962;117.0779;65.4948;92.88949;71.0256;117.862;93.33635;136.5599;114.8023;84.12716;107.0018;145.3035;59.39477;103.5844;176.4476;108.5438;65.64722;170.9231;82.55873;94.93785;126.4672;173.3545;115.5728;174.8386;146.106;130.6428;54.56934;170.4269;146.5102;186.6561;188.4118;87.00057;182.5989;133.1372;79.21007;139.3496;133.5552;169.1052;58.631;117.9654;162.6814;70.66347;105.2143;78.88766;92.75652;120.3889;87.08009;126.6621;136.9023;137.2978;50.79274;181.9422;114.6125;163.2204;51.28706;160.2028;82.88177;112.1793;80.65597;144.658;78.67915;98.26151;191.9816;85.04481;148.9156;102.7787;89.8232;113.0365;91.98446;108.9903;95.87954;117.6403;138.7177;122.335;71.11391;165.9092;121.5064;150.8288;128.7265;152.2449;
104.9002;119.6272;137.9567;138.4443;137.4301;98.33252;119.3216;102.8564;111.69;62.55098;186.575;123.9247;133.5951;77.33271;84.33791;84.49379;123.6694;87.80525;63.47132;70.80336;156.3726;92.94865;84.4001;74.08901;62.01999;83.25501;67.46712;92.46539;92.88184;135.9047;105.3604;98.22533;96.95912;88.1322;113.717;133.2111;151.41;77.25763;120.9813;76.7153;210.8217;97.91506;79.9954;68.97479;93.11214;71.05558;65.96027;87.17454;133.3932;102.1887;84.32298;84.80788;189.3993;107.7206;131.0921;110.3524;133.9247;167.4311;185.5772;84.88574;82.4705;128.2837;98.45794;86.86504;133.2521;179.5744;185.5645;172.5925;181.6122;95.33627;111.7034;104.4384;157.289;98.46922;154.9521;159.0485;70.13608;146.1763;81.76816;128.3989;191.7777;137.6163;62.03453;73.09813;92.14288;129.2931;103.1415;123.0808;114.8363;144.9358;70.84106;146.9488;72.52203;119.2527;65.21763;85.7153;114.7393;154.8656;217.0412;95.08282;87.22332;83.11809;127.0613;148.9085;85.69082;118.5115;56.67656;69.42846;87.67201;125.9112;142.9373;71.26697;109.2775;88.7356;120.5175;81.82777;135.2807;120.5351;106.5819;101.97;141.0303;185.1925;90.62656;169.3997;81.2577;64.1423;128.8634;98.37381;97.27702;111.3701;108.2428;133.395;130.3777;91.7371;111.284;105.5222;97.9837;73.61288;187.4594;122.9569;149.0926;81.3489;92.18564;86.2553;129.2931;82.97471;58.17904;72.91817;158.8674;92.93114;80.24593;73.86398;59.21035;88.60731;77.63577;85.99828;98.03643;139.5102;130.1008;100.0291;91.66917;85.59274;85.20277;124.3825;142.3382;73.60912;109.3053;78.56629;195.3919;117.5519;79.31754;65.88834;104.7291;77.29237;70.43627;89.70267;144.4536;102.3929;77.34232;85.63872;192.7892;110.462;122.6306;110.8996;130.4361;171.657;204.429;83.7001;80.4924;124.9961;113.8458;89.46024;118.2256;186.0318;159.3595;171.3629;171.4551;85.14405;108.255;96.62328;139.465;109.6699;157.1726;163.355;73.71299;147.6911;79.55253;132.5574;193.7588;146.8009;62.76968;79.86787;94.35738;124.8879;103.2257;112.8983;111.6075;148.874;82.66274;145.3875;70.66782;116.0836;81.30073;92.20123;97.16733;166.749;129.9878;104.8586;92.98425;74.68958;161.5392;172.3931;52.40804;185.4697;87.99409;88.57185;69.14024;152.8722;176.301;62.98508;107.8451;123.1378;97.10135;120.477;135.4349;120.252;140.983;136.204;150.4937;164.1132;83.92411;134.3608;90.0442;91.83331;120.6254;63.55367;
89.80969;57.88638;66.98454;63.94897;89.0797;115.8586;132.1668;146.6642;98.9412;158.0013;73.04292;81.80518;106.3686;84.26614;128.5465;79.42263;155.2524;70.2321;73.24311;177.2984;137.2958;74.43284;139.991;107.0265;185.9086;155.5969;76.89039;78.63543;83.94237;114.5343;111.2069;105.3098;137.8801;72.40162;97.39375;95.46011;87.97503;159.8578;173.1152;63.89251;96.82258;92.21373;66.47166;113.6277;165.2023;73.35888;78.10247;93.48149;129.4398;59.26833;84.95741;155.4367;136.5087;97.67086;136.6312;69.48573;68.79194;132.1508;149.6844;93.89156;158.5586;140.249;118.3837;67.046;126.6697;161.6407;167.1168;144.7793;53.20795;145.6385;167.9107;73.81947;128.8215;188.6581;131.8654;64.77593;190.1819;137.0351;86.02368;79.38848;93.53925;112.7414;135.9102;97.13084;142.1952;97.00301;161.4359;52.427;177.3776;199.8409;146.851;62.49191;191.1241;98.63907;166.3924;84.10881;168.7847;106.7067;116.007;164.3081;72.26148;175.2865;165.9198;104.7544;115.503;112.1844;85.89802;145.8902;178.4707;129.5261;164.1338;58.65603;153.9532;145.2621;126.0983;125.0956;147.1584;74.27823;95.02318;50.41352;60.50321;94.89386;79.90231;64.27212;90.98727;78.99943;57.4493;69.6589;111.4724;54.03972;65.86899;68.10562;96.0304;105.9536;128.738;135.6848;81.95596;134.7073;78.6537;78.01358;96.60947;92.98918;117.2847;81.77985;162.5991;61.58472;64.10295;155.0206;140.1348;73.11163;141.5563;97.99644;175.2724;169.5502;67.89357;71.086;78.92824;122.3735;95.34865;115.5254;160.7317;70.73833;97.11464;99.85876;91.96307;146.2698;162.3174;54.48507;78.48756;77.6303;73.76076;108.7219;150.2295;79.96929;65.40633;93.38654;135.9606;54.09812;76.80945;134.4631;138.5479;94.82838;132.5443;60.11787;62.37403;144.3636;147.9861;91.42882;137.4038;139.7621;103.6058;76.65523;143.6528;152.2479;163.7642;152.7038;53.85321;130.792;165.909;73.07673;107.6853;161.9473;150.7817;66.11604;158.8145;136.9611;74.02576;80.74872;95.05502;99.95819;122.9602;82.55968;140.3128;92.57866;165.6128;52.2289;166.9756;214.7919;145.1678;60.48576;167.8241;98.23075;119.4707;74.73027;169.2892;118.7228;105.6473;153.9319;44.52556;158.6718;120.9644;119.6222;61.42253;83.89077;142.8691;137.8181;115.0588;185.4269;117.347;58.41007;125.7167;175.8807;112.8599;137.7113;104.9632;50.64979;101.6642;49.08567;75.72971;97.23234;75.03809;69.47172;83.39096;65.64878;51.14172;92.39762;
79.39742;96.58563;132.5839;86.35493;92.57081;74.952;205.1169;90.53056;64.97502;108.463;79.39234;65.40424;93.00288;70.31037;121.4919;172.4586;125.8445;117.6493;121.3634;122.9955;62.67197;112.7739;127.482;96.5444;127.2966;74.53966;155.2359;162.974;80.65047;56.8123;73.55977;78.26366;46.73965;80.00861;125.4004;125.6782;97.24297;102.4946;145.2297;112.0611;108.3555;121.2499;134.5633;119.4307;153.3242;61.11697;79.41001;150.0563;91.91145;88.25855;118.7678;151.1131;174.93;175.4991;143.7127;137.4755;117.4511;58.50389;136.753;173.4947;170.9507;180.6752;72.71879;155.7914;73.42505;157.6417;199.7702;148.4075;108.5517;89.99317;128.8221;123.5832;82.104;153.3433;151.8794;132.5847;99.50068;122.2;84.03969;145.5547;82.73449;106.649;142.5119;202.9981;157.0886;95.72712;66.90459;94.34057;135.0487;129.149;60.29432;183.2183;62.20574;57.73175;56.86114;129.9023;116.3236;70.03745;93.99043;100.537;152.1655;105.2887;102.3014;114.6507;90.68781;108.139;155.3249;137.9411;60.30343;129.8681;72.90696;72.24866;99.75561;117.5557;114.5388;56.4864;134.7617;124.7381;114.0766;132.942;117.1981;73.81511;82.05555;109.318;185.3184;156.7441;138.0582;68.30105;101.6368;104.7512;133.1938;82.43814;84.27309;68.40555;199.1596;84.06313;69.02739;114.1665;96.03536;61.12949;89.33919;82.11806;101.644;151.0943;120.1697;137.7386;143.8876;93.00069;70.93952;108.5901;128.6955;82.98518;120.6821;77.56892;152.3414;152.7712;75.28574;61.98222;62.78093;61.8841;63.83517;88.00249;120.301;115.6557;86.80426;90.16165;144.8719;103.3472;113.6458;128.5716;150.1757;109.0908;146.1535;68.24482;66.68728;131.866;88.09566;107.8134;135.5089;116.1811;187.2015;165.3066;149.7467;122.8277;116.7714;64.83788;119.9244;153.0573;158.3788;200.9485;66.61266;130.905;85.55156;158.9558;191.7639;147.4493;92.35047;73.7648;123.6685;116.5525;90.68958;164.9055;158.4581;114.5787;90.17188;141.523;75.85885;126.2907;70.93427;119.505;159.3787;172.9375;161.9245;83.25396;67.4716;84.08408;134.3198;138.4853;49.30555;162.1983;54.71732;69.42596;52.38148;123.6759;123.7705;91.18884;106.5505;112.0109;116.8093;99.47527;98.38748;125.2069;141.7007;140.8379;127.142;159.286;81.35735;167.6386;65.27894;93.34612;105.2257;134.9729;123.7303;98.21836;138.8755;157.4811;109.2513;115.9813;136.5901;71.98077;94.46486;98.6172;157.4135;111.8702;150.2641;79.63035;
50.811;67.44271;86.70065;93.40594;129.9229;83.71619;157.2776;76.1458;136.1581;87.7462;70.74236;84.10256;127.924;114.5827;106.0694;167.0294;100.606;57.90673;130.0678;123.0207;101.392;112.909;112.5718;162.279;102.7364;54.61615;94.90211;53.38636;103.394;70.84649;109.9064;150.5439;70.90699;114.3829;120.8272;95.42765;163.0887;182.802;62.97326;64.94859;111.1675;108.916;100.9116;111.9949;84.94673;70.0162;134.2261;170.4733;90.46406;109.851;165.4033;142.0002;98.81234;147.2511;62.38335;80.9597;111.7222;156.5663;104.7182;171.4151;152.8378;136.0038;93.08303;143.7756;143.8533;166.8751;165.1237;53.11341;162.9788;107.7152;97.3084;119.3208;164.7932;172.7175;56.36019;151.0647;194.7283;69.58273;107.6428;100.786;140.8833;119.2515;56.13231;120.5635;129.3481;124.6436;70.14744;162.8836;138.6727;138.3522;74.98259;125.7843;84.69004;116.1589;85.03784;170.1436;89.32212;133.3006;187.7222;69.1739;175.207;171.0284;115.8735;84.75842;124.151;153.1592;130.1296;109.8647;140.4049;151.6969;91.0135;175.1586;199.2249;149.3299;160.6865;154.2475;74.13599;83.31478;45.17791;81.6124;80.214;74.82947;83.49857;116.7389;103.1608;68.68849;84.24683;132.7201;59.78569;54.44792;65.35784;103.7252;114.79;66.77708;148.9136;104.5867;139.8467;84.55576;77.56432;95.90739;118.6427;109.7021;128.6243;158.2853;103.1385;50.68695;135.6714;125.7405;99.14158;87.65653;103.738;164.2023;121.4187;55.04523;101.3526;53.74155;126.5748;62.03008;106.3003;170.1227;77.0537;97.94794;94.0717;100.3074;143.9716;159.5917;54.91958;87.67641;110.523;106.3462;108.8773;119.7865;76.57083;67.57854;156.1768;159.7377;89.37456;99.79099;171.9624;141.5841;95.73869;118.9312;53.91552;80.96514;128.0663;145.5685;117.3451;170.9052;172.9631;122.4723;91.25459;167.6306;163.5786;145.2996;146.4088;59.8754;141.53;96.6324;84.27654;140.5137;165.2016;157.3267;66.59513;162.5224;174.1046;66.26719;129.158;96.1287;150.0744;107.3905;68.68531;124.6806;123.6418;105.5612;58.68066;153.4831;156.817;128.0218;85.72177;125.3476;99.83012;103.6804;84.08517;206.3912;106.3516;77.27248;123.0143;63.53362;109.3042;139.5681;135.7978;99.61848;124.5436;121.1945;120.8793;126.6836;143.142;105.7073;120.1456;142.9562;154.874;138.2172;126.3876;135.7575;70.85604;78.45901;44.95324;86.15788;65.55505;83.93713;55.90015;100.8978;101.894;39.96381;86.89208;122.9437;
106.0592;73.20933;96.76503;129.6636;152.4767;47.21646;175.806;74.32012;87.74759;92.41248;143.3987;98.13721;54.95723;122.9084;115.5717;97.91096;91.67883;94.24638;72.07918;108.6723;115.8754;142.7229;172.2596;65.236;184.3181;62.37743;61.44674;91.71371;111.0971;87.85442;88.88922;112.2615;161.1572;94.05941;84.68816;121.9635;92.16927;60.71772;84.98709;155.7538;161.8992;132.9492;106.5261;93.14188;72.69052;112.7454;66.4311;88.96003;73.04082;117.5875;60.92273;93.29736;108.5374;74.23425;59.49437;104.3517;114.6277;154.5047;145.6095;119.7294;90.45656;116.4446;65.43118;91.17987;147.0432;148.2712;99.80586;113.0849;89.67494;155.2008;158.6418;99.81992;86.45206;99.24623;84.59647;44.6389;66.08373;153.2137;129.3555;50.40242;102.4874;161.3988;67.72983;120.9822;127.6425;132.1321;153.6386;161.8163;96.28058;54.6058;118.1122;86.69498;96.67496;99.67482;150.1043;154.1856;204.6579;138.1947;81.6718;112.5212;86.6507;93.27499;120.413;133.341;206.2048;58.89299;178.9532;80.81134;115.9459;165.6433;124.8786;98.35965;82.62388;72.39063;99.5008;116.4594;157.8205;108.7245;96.21591;111.119;181.1721;110.3213;139.9293;83.21497;79.38696;144.6407;132.7081;185.6806;111.158;88.44877;83.94939;127.2303;135.1486;61.64884;153.5746;84.29173;94.44019;79.70049;140.6324;108.8623;61.71704;133.356;98.02057;99.13133;98.64447;103.5246;80.5525;111.925;118.9755;122.5864;157.2112;65.82564;186.2346;49.27394;72.31673;114.9263;107.719;95.98122;85.9953;98.64788;160.7232;110.7997;71.79612;112.9155;78.81358;73.70033;67.50284;169.6836;164.72;117.767;103.4637;97.9343;80.46822;118.8242;51.66235;91.08749;76.63583;127.9881;68.53295;92.09184;113.5079;57.11559;49.19471;106.1379;110.2182;140.5232;164.3567;138.1221;89.82233;132.4849;65.94867;85.18639;143.2536;152.0327;82.8679;109.8321;73.95962;177.8743;140.156;107.9187;86.10468;91.85332;83.69242;46.38528;75.72186;167.8525;112.3017;57.08711;103.8613;156.2365;73.02089;125.4415;129.6604;110.727;142.6117;160.2511;92.24281;46.43085;135.0531;102.4439;96.01926;114.5539;171.9651;125.9052;190.5796;135.5829;100.437;146.4955;57.85059;110.6412;117.2194;121.4182;204.515;57.87145;129.191;91.81814;114.9527;171.9865;124.2076;103.5201;67.08276;109.9757;129.0063;120.9256;113.8831;94.93655;130.8666;79.95442;178.8605;95.21465;164.683;100.5319;90.21627;127.4785;143.6733;133.0751;
80.05022;131.6093;88.90479;90.21508;75.44633;101.2916;69.93331;53.15854;67.33777;129.656;127.3577;120.6758;163.4408;122.9882;146.8152;79.24323;70.20057;97.90446;80.97436;145.5579;90.24265;163.5845;69.13924;78.18368;135.5876;107.9122;89.77045;115.8205;88.37469;186.8187;124.1498;82.23869;63.94722;60.49936;95.73648;96.09034;97.68307;132.4286;87.08972;61.23178;72.53876;96.03951;96.3052;161.7916;62.95651;89.49839;121.2664;70.36891;106.9;176.1045;95.38587;84.93655;169.7712;125.2559;74.02753;108.1421;166.7643;136.6276;59.26249;116.3116;86.74464;96.97276;140.2136;174.2006;116.4834;181.9563;146.3966;137.1276;81.4875;140.1514;181.2114;143.2736;162.7901;86.81817;162.613;162.3259;103.8901;167.4933;183.2309;161.4402;61.07182;158.3876;120.5422;89.64541;87.83245;99.33932;109.533;143.2648;74.51466;116.9683;115.9016;146.5533;54.92487;179.6224;172.3725;178.9175;53.76827;133.0966;67.27557;137.6061;70.51611;154.956;117.4258;68.57845;134.2831;80.48512;107.0984;167.2268;122.9415;107.4996;145.7703;109.5548;143.5841;160.5042;146.3136;151.4482;100.1726;141.1931;159.5012;129.7627;188.5085;148.4572;53.30967;96.73618;69.37908;86.99716;85.798;104.2149;93.46501;125.6861;93.7624;94.91068;77.61732;117.2431;67.64973;56.13223;78.15276;122.6738;134.7168;124.6619;159.755;104.7433;127.2463;89.56862;72.87434;87.96301;82.62865;129.9935;73.14578;170.2637;59.69649;59.08077;170.3692;117.4468;108.3163;142.1717;94.61229;175.2651;126.6257;97.99869;70.95385;56.29422;99.17971;98.5242;98.3771;145.915;83.56651;62.86371;79.50223;90.01767;102.2961;163.6274;59.90437;70.66193;102.9698;78.62056;106.9261;163.1024;96.48397;71.5446;146.6763;127.0009;63.79137;83.8944;198.758;138.5716;71.56712;135.0804;83.82389;86.98022;136.4071;184.8724;125.5016;179.5874;160.0902;152.0445;85.73642;153.7625;175.7424;150.2542;171.3795;74.345;166.8412;158.3356;90.51064;139.143;153.7399;162.6012;60.83065;150.6271;130.2807;84.77887;74.83245;100.6888;96.72431;119.1179;96.36504;118.7634;132.8772;167.5353;52.60585;165.9246;136.0139;185.3752;66.26107;139.6828;99.71405;129.3645;81.24823;210.79;89.91769;72.23301;180.8949;40.72156;156.5629;121.8781;118.8269;96.43329;78.01594;144.0515;108.6258;108.22;127.1026;148.3702;88.58569;162.3947;119.2366;97.87544;172.6828;119.5385;48.47928;96.30884;53.63383;73.95493;64.61509;68.35156;
70.8659;63.63438;112.9391;124.9496;57.07756;73.12721;146.8971;109.0191;69.30261;124.6131;93.30259;93.61791;120.4356;160.9116;73.19429;150.1975;157.2876;84.28963;73.95545;166.6905;184.3689;170.8347;166.2623;95.87925;172.2108;94.06834;106.3473;140.2849;212.0039;225.2191;55.75938;126.8377;162.3204;112.0602;114.564;94.47787;139.5994;122.4937;103.5583;138.315;141.7405;156.3638;70.25137;163.1206;213.1838;145.7772;49.4986;186.6077;105.3991;97.14438;90.64162;152.8798;116.0687;96.93401;160.8843;86.59551;170.0921;135.9411;101.989;82.95905;108.2773;126.2727;108.9828;114.1584;129.7753;148.9549;68.18697;137.2286;155.5535;122.6938;137.5074;118.4924;53.77772;82.34669;67.15617;85.79824;70.84869;78.75713;49.48605;95.34605;102.0396;42.09958;59.31609;122.1314;73.87082;68.86892;73.82801;147.4493;142.3627;58.15909;158.6429;94.49088;175.872;121.3823;70.08739;66.69148;115.6246;163.6306;111.6569;158.3376;92.60542;64.25919;180.7853;142.1633;111.2804;119.7182;110.6249;157.9323;160.2202;59.86072;62.28519;87.02783;134.5363;69.38265;99.48543;106.1785;83.4694;80.54399;87.26496;96.05704;150.9848;162.6904;52.08706;60.62482;95.09212;79.84957;69.82417;102.9539;85.3868;70.76094;95.24572;138.9592;51.55508;61.53483;127.2535;115.0339;63.85968;111.7878;80.81606;73.39839;116.84;147.1547;72.72186;135.9342;164.6357;99.18565;59.82138;135.7343;184.4157;171.1503;158.007;82.47604;160.9265;105.7275;90.97256;115.3598;203.9041;187.8752;54.62009;114.5915;177.0884;119.6776;101.1696;109.2324;129.2292;106.7122;89.02305;146.7688;128.5499;140.6978;63.30197;139.5478;206.354;132.19;50.50905;176.3992;107.6059;112.857;79.18298;129.9877;115.6857;97.56252;155.2249;77.66939;158.746;161.2935;101.0483;75.0375;108.6451;108.3343;102.6455;104.6258;136.0933;156.0417;58.80729;155.9449;142.129;105.8116;120.5252;122.8732;48.20877;79.21067;68.13145;75.07605;71.909;76.91158;47.26133;90.00849;98.31585;51.67793;50.9194;102.6158;71.80906;68.52335;69.8968;132.1476;131.9991;75.11971;157.4691;86.02331;176.3407;103.8081;68.3231;67.86803;86.14752;160.0528;64.62872;179.1692;59.75051;49.43831;180.4594;146.2159;83.20955;122.6217;80.56421;124.4527;112.4732;78.16012;59.72766;86.8555;92.82037;75.35252;85.313;118.1439;86.31769;107.6897;86.33115;84.58385;108.4814;134.9983;47.10649;79.20631;109.3801;72.23693;83.01348;133.1137;
89.62851;129.2622;169.3929;93.11166;77.30396;165.9994;106.7051;103.038;91.26526;129.8532;160.4257;178.7768;113.75;117.2434;123.5133;76.81229;107.064;110.9484;168.7415;194.1404;66.04787;130.8572;58.85057;105.2312;166.0816;117.8234;79.12407;70.80893;114.7963;102.9109;124.4138;101.5665;92.44508;112.9471;73.77164;149.5812;71.09446;166.0981;97.59091;88.36915;120.7273;133.5763;140.3627;86.92396;65.52663;67.60734;161.8584;158.539;53.96881;135.2143;92.30563;79.98014;45.94209;140.7411;120.1979;72.78126;119.1829;103.5566;110.9609;93.86142;130.8529;107.4769;155.165;121.8545;102.7429;152.6305;71.13842;185.3188;90.16621;92.66998;130.004;121.2861;77.25862;68.58559;122.442;141.7565;78.77702;118.2581;131.8529;78.83928;69.67341;81.02168;197.6381;151.067;148.4123;70.6086;82.16592;66.00678;115.9712;61.34145;81.20451;64.00959;173.6221;71.46085;93.56008;59.05854;45.24291;64.63654;66.03122;86.17641;106.7926;198.9539;158.1395;105.1836;111.1999;70.76815;59.96946;116.2991;113.8737;62.83152;139.6869;83.15308;149.1695;139.8703;107.2511;78.13029;74.16645;102.9033;64.59498;98.78837;160.8937;141.7817;56.79147;101.8985;173.59;94.38736;175.1257;151.4412;109.5973;139.6076;188.8834;73.8301;88.673;157.6493;99.65912;101.8913;105.8753;140.3491;187.343;201.0468;114.5812;114.4329;122.4106;70.18351;98.37492;130.7257;159.095;201.5132;87.90965;147.0776;76.66056;114.2651;181.2215;146.0994;73.34551;75.35736;95.03568;92.80814;123.8073;116.7601;109.2096;122.1553;83.88239;125.6474;81.2881;163.7442;84.26983;85.78903;134.9473;144.0074;163.0501;103.6374;66.14417;69.24598;153.1788;149.917;46.44541;155.5111;83.68124;87.8907;64.49617;162.1048;138.0995;81.03571;127.449;126.65;94.80145;100.0376;118.0336;100.119;158.181;144.4487;122.7927;156.2198;84.68298;158.0269;92.30869;88.71516;111.6853;113.8946;86.84153;74.43258;134.6478;159.7942;86.57622;123.7294;127.3423;77.16481;62.80983;91.45364;190.3525;161.3294;168.0462;83.82297;94.4353;70.43636;124.1261;79.37928;67.47163;69.12704;158.8055;65.48521;102.6046;75.55021;87.64668;79.88799;88.9513;92.62683;135.5032;142.9932;157.5943;131.1323;128.586;81.44713;88.01291;138.0616;154.2224;89.88991;162.7562;71.49255;200.3069;177.9119;124.1981;88.3908;108.6483;99.64378;84.69823;91.2119;109.4955;175.7003;83.42455;89.93325;109.9528;96.5644;158.8992;131.5951;
106.3992;149.8514;59.48006;114.7209;128.4145;138.5129;57.10799;127.1781;107.2841;110.7376;128.9337;111.7701;154.0364;59.46275;123.4107;176.4062;137.1962;147.9883;111.4646;78.24096;125.7488;65.46053;70.77213;108.2087;81.33177;75.93298;95.80111;73.23455;76.96803;86.76643;99.90833;98.89037;67.78167;55.88975;93.78055;118.101;117.7178;161.9929;93.76693;164.8021;102.9619;93.46469;68.40753;126.6583;145.2948;60.98738;114.4828;60.77419;56.53594;135.7463;108.4232;68.2211;92.34476;106.1721;191.9782;149.0748;67.9389;65.5145;73.59736;93.21792;126.6523;101.6193;141.3879;104.9094;84.60946;78.96512;75.54574;107.1868;136.7609;75.26393;44.70496;111.9842;69.33001;71.71379;139.1508;75.55225;72.49106;92.40739;111.0483;72.48481;78.71424;155.9129;100.2142;95.46738;175.4183;72.14816;71.59077;160.2917;137.5786;99.40007;149.895;145.915;127.3873;97.14222;131.7164;224.8921;160.7987;135.2124;50.43158;143.1996;162.9094;92.12911;126.1753;197.7934;172.1294;79.98656;132.5721;193.1881;98.17038;61.76337;62.15607;93.88351;111.4365;74.42915;109.06;79.44921;115.9634;72.99599;173.1723;212.2704;146.3579;68.68864;148.888;64.2747;178.8914;70.8654;173.0713;116.9416;96.09281;136.057;61.68139;107.842;135.5892;136.3057;61.26367;116.3639;104.4738;103.4014;133.6474;124.6566;181.547;65.10464;136.6784;167.6436;129.6536;148.279;114.9595;70.66789;128.6523;75.68491;66.76849;123.1931;68.09076;84.93195;96.07492;74.52634;73.45085;77.40726;104.8886;84.54191;61.26893;51.07805;94.74467;107.5137;123.0432;162.8626;95.71778;151.8281;102.7932;91.95316;70.66533;136.9532;170.273;68.95105;123.985;56.26202;54.93423;142.4313;110.8376;59.92143;95.28868;121.9935;181.3729;167.5888;66.03688;78.86002;67.37475;86.00478;122.0075;90.82375;146.0397;88.44006;81.68289;70.49844;79.44389;100.2092;133.8069;78.69345;47.26247;99.20067;76.55187;70.609;134.4644;76.80859;90.32101;101.4725;119.2696;66.1009;81.17764;158.9895;106.0442;88.50897;169.6987;88.29275;66.60792;176.624;134.8662;115.6993;140.9558;136.854;122.7289;86.59393;149.9973;132.3547;195.3967;146.5057;75.41647;135.9305;147.9511;99.77116;135.2073;181.5292;181.6664;60.2663;165.4689;142.5698;115.9387;99.79829;71.1983;96.51186;111.4942;74.44026;139.8854;119.3321;151.0114;59.96619;153.2469;206.2512;174.9775;82.04739;187.2101;76.71682;169.7402;74.46356;153.6297;94.73989;
183.4788;100.9377;173.8508;122.2009;100.1419;139.2033;188.5716;62.85033;75.40976;135.7941;118.8815;66.22757;96.0199;154.0988;148.5791;194.4543;123.8754;93.80062;112.0093;84.71095;116.4831;103.7953;118.1725;196.2405;46.98303;131.0708;46.13393;106.0818;163.6749;134.9987;77.71518;75.18925;129.9234;137.6082;106.3849;138.5922;109.5573;109.0268;101.4075;139.7343;70.63475;134.377;97.86572;80.4003;110.1926;169.9141;158.079;67.97163;104.9113;65.19457;164.0635;182.8644;57.15499;127.4114;72.63255;108.4346;86.90852;134.9391;129.615;54.58117;117.0351;137.9103;142.9507;106.3677;138.7906;101.9877;155.6069;114.9408;116.9925;165.0505;92.34177;144.8498;81.10304;71.60176;127.0393;75.15224;85.6709;86.08548;107.9027;157.171;102.2066;96.654;110.5417;94.8546;79.28387;76.78101;157.8712;155.2305;112.8362;67.8171;55.72312;65.82732;113.0371;70.54803;76.96455;69.79329;214.1185;99.31265;85.06399;96.69557;59.16526;65.50685;105.9392;78.6909;100.1785;163.367;154.1892;96.67532;103.5975;92.08714;70.22474;101.1431;188.0099;70.09428;169.8505;104.8887;151.9209;121.0846;95.55587;101.992;110.5262;80.24327;61.62849;62.94994;147.3932;148.0762;86.14104;104.1386;173.7052;78.94702;175.9658;114.1943;81.96236;172.2462;192.4056;64.23312;81.95828;122.8732;100.8725;73.35138;110.0676;169.8907;177.6745;210.7616;130.2128;97.62069;130.8288;79.97739;105.655;112.9228;125.4476;205.7575;56.80006;126.4315;45.34053;100.4024;166.3784;127.4126;73.94859;70.80262;118.531;115.0883;109.1722;129.2998;87.64903;136.6212;98.84714;138.2482;75.46555;125.3363;83.65249;87.84518;122.7181;184.1398;181.4677;75.36393;110.5741;71.55429;189.392;175.6925;49.17716;135.9141;74.13177;112.6286;98.19688;134.4377;132.0964;50.24722;113.6759;133.2364;134.3278;101.1053;118.8956;84.60312;158.9102;107.4551;94.67924;188.0109;84.68994;145.1112;84.66698;64.93583;112.2128;82.1217;91.67718;98.87151;124.0047;168.2707;100.3344;106.4564;131.437;90.59274;70.15024;76.57343;153.1005;162.1167;125.6495;67.45866;57.35346;61.05897;109.7362;67.21659;91.29646;86.34546;144.8087;75.18526;78.16034;85.56638;42.97165;104.9725;86.98103;104.6671;133.3513;187.2847;113.8989;137.9643;144.0752;101.1862;61.21963;135.0545;188.6061;81.41585;159.8583;90.51527;155.1996;172.4838;107.4516;100.7962;114.9526;82.95413;64.87186;86.5051;156.0798;113.869;94.44316;100.1786;
84.50784;207.7851;154.6278;131.5468;106.0764;80.33809;61.43219;125.2155;134.1563;90.70644;156.9427;100.4204;199.9058;103.4845;83.01715;66.81778;103.2502;75.41622;75.78574;85.22417;130.4543;96.19778;66.33305;145.131;143.5817;94.04111;146.735;148.411;92.82449;112.6798;145.8094;76.13568;81.96537;143.5585;130.8153;53.68295;94.99809;139.2188;177.9089;167.278;145.3204;95.10291;155.2679;99.87312;90.59261;96.29681;134.6262;158.7252;60.94647;129.1075;88.1555;111.704;185.6161;141.9696;85.2542;102.5635;84.06812;146.5648;121.1961;126.1725;90.88988;132.3086;98.48206;150.7838;63.66309;186.1618;100.4355;121.0216;127.8346;155.1853;133.5289;92.41005;72.68287;84.68855;181.3389;182.2836;72.26318;123.6184;63.32065;70.83583;94.24164;138.6725;159.7327;71.42163;109.0255;86.31216;95.81594;135.6918;95.17642;92.99182;144.2453;148.3522;99.54012;131.6767;57.58662;160.2095;85.96056;88.58215;150.0193;62.87222;83.28985;74.96671;117.8401;127.3922;112.491;93.32465;161.947;116.4482;53.6205;63.52277;166.6145;120.3989;125.6034;79.89915;111.4663;68.74249;137.4183;94.76268;66.5681;76.51696;153.9298;110.9977;92.42144;85.30826;48.72047;89.91641;99.11385;86.67912;83.85028;202.4057;136.5425;157.8646;95.31075;88.53483;52.68607;139.7926;126.879;78.8777;170.2346;102.0726;189.8708;120.6985;94.01614;63.05989;95.42954;85.60938;84.95686;84.89517;141.8949;118.443;52.33899;119.1812;152.38;85.77654;151.7827;157.0253;90.65514;130.0983;154.583;73.91082;80.99468;139.7829;108.8089;66.89268;82.93946;144.0803;167.7944;182.0682;137.8248;84.02781;162.4434;97.23389;82.03677;108.0182;153.3421;154.7357;55.78816;144.7202;93.40792;109.909;197.809;163.8043;72.57075;82.28658;90.33133;147.586;116.3998;126.9851;93.91853;145.5678;101.8413;149.027;59.75193;168.76;79.25625;140.837;106.3216;161.0611;134.942;107.4526;66.08748;80.93347;183.8818;172.2206;69.07249;131.5632;73.06084;69.11851;84.17933;142.7695;163.8747;70.23174;110.8032;104.1081;90.62606;116.3328;101.8333;93.8093;139.0082;149.2333;102.7085;144.9049;81.96571;136.6797;52.0082;108.0338;81.32686;99.9208;80.60867;126.2207;80.15895;169.469;116.8408;100.7718;121.6114;88.14478;76.0601;75.3969;193.9327;141.2694;140.8012;86.44537;87.7161;78.63023;96.50518;64.50808;88.81577;86.99199;188.0949;72.81626;80.77066;96.60497;55.85323;76.37144;101.8648;90.83502;
99.47143;164.047;64.48859;83.0508;98.80691;146.7822;112.4395;150.8748;152.338;143.8216;66.50906;188.5268;154.1184;167.5547;163.9746;83.18605;114.103;149.7041;77.04269;135.7475;156.3831;170.7919;79.21352;159.2149;174.396;85.20187;90.09743;60.28559;138.0284;130.1571;80.0649;111.9338;131.0612;121.3985;45.10078;125.5465;135.6654;128.9872;69.98103;129.5601;72.48978;167.7726;71.99356;150.885;115.5248;95.51286;126.617;79.26173;107.8251;132.4595;128.5664;96.63319;103.4925;109.4604;137.1081;140.7169;113.3082;163.2298;78.29989;166.7517;219.4606;121.8;116.4238;141.653;91.31647;120.3929;55.14165;80.62599;60.81844;82.05835;94.32135;105.8654;88.14608;82.07963;64.69091;166.1139;58.8807;63.65654;77.01562;145.5995;99.58413;115.1789;140.909;99.45893;131.1772;97.53374;103.9041;94.82792;121.7916;122.7358;97.87691;128.7365;97.70025;64.72762;149.4286;120.7946;112.6087;102.8384;86.86845;122.709;101.3355;60.32855;90.57359;52.76595;90.70013;110.3429;100.3549;134.6321;88.70693;80.15908;66.46259;108.8806;110.8273;113.4638;63.63864;84.14422;86.25848;68.02906;115.4331;167.4183;65.02;71.55131;104.8548;168.9169;95.14333;73.41915;110.1884;129.314;116.6183;169.045;89.10617;97.16525;107.4767;147.2795;114.4578;171.8541;159.727;135.7161;69.84517;209.9409;148.7427;140.4667;172.4556;92.61877;130.4512;127.7;66.6227;142.6861;153.0775;152.6886;94.03941;188.9106;167.6229;73.24532;85.73141;80.77971;134.5879;126.0194;66.56247;119.207;144.6513;126.4968;64.94186;136.3183;143.6891;131.5201;68.44971;144.3013;74.3435;160.2222;75.33681;163.3746;109.8652;76.81015;131.0705;87.07068;119.6966;111.7866;115.1978;99.69759;99.93611;95.737;153.1583;166.7685;107.9202;153.232;68.19567;185.2904;208.5388;121.4838;102.0493;142.2157;96.75285;125.0735;76.98668;97.49867;65.83888;78.30368;84.36338;121.8363;93.75016;81.73483;61.94545;169.0452;51.56428;50.95208;82.32501;148.3527;104.8027;95.61372;127.0207;111.3387;126.6287;78.80958;108.6766;118.9886;116.2022;114.0833;86.53786;145.0848;90.45934;64.49722;149.6885;149.2661;123.3904;108.2973;149.3818;195.1395;137.9692;54.82819;100.1447;95.75264;107.5811;93.96019;105.4432;146.7019;102.3202;100.7546;106.7611;118.9385;155.5814;149.1235;81.11334;83.94775;79.92683;94.08642;119.764;148.5328;59.53376;71.66414;113.9403;135.5049;61.82472;77.23178;132.724;117.1317;
117.3654;96.30827;119.911;67.79602;150.2866;51.51947;164.9605;79.42365;75.43783;137.1456;153.635;189.8921;64.7124;102.9138;91.48116;156.0927;130.0715;85.3393;135.2784;74.33524;76.4601;66.62979;116.2918;133.1095;52.24816;119.3389;97.0348;114.9024;64.11531;99.28709;109.762;128.3968;145.0156;111.0486;157.5631;77.91371;125.2998;78.96692;102.7135;104.6406;69.58875;82.33353;67.48775;102.9287;103.5246;76.12796;85.49905;124.8577;101.3825;96.94884;75.81425;156.9794;134.5415;104.599;107.6277;72.73637;86.82263;118.9524;62.74534;94.36528;67.20159;140.8532;67.11682;94.85661;81.34332;57.211;68.64619;81.75703;94.79882;76.17109;209.7425;128.7219;91.63892;129.9409;83.10815;92.54864;92.75845;185.9146;88.68103;147.786;72.40137;237.0844;124.7292;109.8765;70.89342;81.75086;76.01311;58.13425;66.94073;162.361;112.3887;74.85355;70.59328;153.6666;100.6066;151.323;153.6674;111.9985;143.1935;199.549;55.74207;75.81918;180.9715;84.81285;56.93597;104.9247;129.4281;146.9918;141.1918;108.1021;72.9577;129.5025;85.02458;137.0581;91.3473;163.6308;156.9581;45.88622;189.0832;65.30947;125.3466;171.2562;122.4051;91.78313;69.64382;88.09385;108.1234;116.7802;109.1923;112.8431;125.0241;80.21056;160.112;67.69098;169.0146;60.90551;83.48896;142.5217;151.1311;197.0117;70.44313;124.0363;92.07642;163.5173;126.7699;84.3382;111.089;104.3428;63.06132;72.81161;127.4229;143.3843;47.14596;118.5949;99.65662;109.4583;64.3063;110.226;116.835;134.863;129.8795;128.2848;162.0176;85.35704;134.2853;95.03438;103.1335;82.94821;73.16103;86.64683;65.29124;102.3985;110.7792;90.98406;83.99091;132.6712;95.52957;95.93568;57.82228;193.3413;118.5705;108.451;115.9003;81.29202;80.07752;113.9619;63.7238;86.83505;64.42854;148.4935;76.75604;93.11349;71.39645;60.26752;71.18805;80.19765;96.77454;92.78526;201.5316;110.2666;98.53099;130.7388;79.6181;93.56496;96.01601;202.5373;91.61215;147.1205;68.72906;217.7706;100.8213;129.0296;54.99937;85.94984;77.49053;70.37965;61.03462;156.5264;113.6968;68.16398;67.7504;161.6424;84.39231;159.3376;117.6264;99.94843;125.1314;154.3968;55.91404;49.97677;171.1478;97.30595;96.97428;125.3659;160.3172;191.4836;183.0811;151.7448;100.4991;117.9889;87.57314;101.2574;111.8888;176.7557;132.662;51.76513;137.634;58.07423;134.2045;183.2385;149.8498;83.14771;75.17612;112.9836;133.8288;121.0824;
130.5459;155.6493;62.59398;158.4751;187.7825;103.9797;117.2332;77.91927;118.7053;158.9396;81.429;160.9032;118.4215;116.9754;43.45021;149.0282;143.9056;122.9127;50.33599;116.9427;56.51541;132.5913;86.53607;184.1876;89.72311;101.4119;133.3881;44.45685;148.072;138.2914;120.396;89.799;95.66209;115.1829;126.3225;127.2441;137.5292;153.6606;74.81375;135.103;155.0331;129.8329;154.4624;108.0822;67.69903;95.63686;44.71506;97.37982;78.89859;86.68153;53.50163;124.2209;84.3241;84.92093;54.61947;159.0758;43.51978;92.30954;64.52214;113.2612;94.58424;100.6436;118.1889;120.7021;119.4534;89.07114;78.19118;94.72083;136.5139;161.4144;123.957;144.5648;81.2597;89.13175;162.8641;173.4972;95.56667;94.67423;87.80922;154.4212;118.9692;56.0699;60.41341;46.69693;76.79796;90.46185;114.1733;159.3568;64.68041;85.64979;78.15347;64.87257;139.1995;133.7558;71.31139;70.93237;88.32332;90.8763;90.45419;127.5655;88.56492;72.4711;117.7182;121.1825;60.37626;79.6959;175.0108;108.0705;88.41184;126.5034;56.38385;86.8014;137.707;151.576;93.34103;177.2726;157.1362;141.2027;73.74413;205.1411;160.8643;216.7865;153.3953;61.94341;130.6816;117.0232;74.63404;157.6646;145.6037;160.9262;57.51965;161.6639;171.7553;93.77974;101.5077;91.87405;114.0342;142.5132;88.86266;172.3643;121.3634;94.48756;41.20256;135.1014;158.78;115.0574;61.83079;118.0284;61.33764;135.7594;99.57487;194.2953;111.1034;108.8273;147.1338;44.96921;163.0712;111.549;144.1369;90.46896;102.5708;119.421;117.3343;127.3646;121.8909;136.684;61.53029;150.8899;143.9929;115.0002;164.1051;115.1813;69.09824;72.00635;42.06628;84.63496;87.05655;80.40166;64.76308;123.2342;90.73389;84.11086;64.61616;166.3052;57.23584;101.4199;67.50422;105.9556;105.4774;83.96396;137.7494;124.3424;120.1849;88.3576;71.71378;96.53319;119.383;142.6321;102.8067;158.2982;74.301;78.40946;163.3863;174.6363;96.11384;76.83315;81.02851;141.3102;121.9171;47.75983;72.90989;47.28614;81.63599;88.54532;124.1942;163.9651;81.19544;94.4296;81.43121;59.37323;152.3511;114.4117;73.49149;56.43707;95.59997;89.80585;112.3933;154.6278;75.38784;59.41085;139.6576;162.6817;50.44024;90.8858;131.8962;152.925;89.90147;143.5348;75.50441;64.69353;163.2866;123.2493;94.99994;139.6277;144.3493;103.2003;65.66018;192.1862;176.3908;218.2899;143.4248;51.45998;130.8587;93.04161;83.15452;97.21481;
85.25479;142.9807;104.1799;111.9933;108.036;86.38145;131.4037;144.2316;63.43914;65.34593;92.94749;68.69483;96.11709;110.1763;83.3354;52.01053;132.8539;133.2515;64.30415;90.20692;164.4408;100.4001;80.31667;162.2741;93.51489;69.12458;100.4877;158.9205;131.1424;121.1249;120.0182;145.8271;64.80209;150.2344;193.8904;154.2466;178.0519;51.31627;142.6991;152.6603;77.54242;165.2786;187.0181;183.1235;98.73097;180.6092;118.0792;85.59689;128.9133;119.5748;139.9685;115.2699;77.18214;141.1028;118.0882;163.5687;96.58357;176.121;175.5871;170.2706;109.1081;137.0366;60.11931;162.1711;65.00062;178.071;128.3939;119.8239;184.6238;62.62549;136.6094;145.8487;129.4222;73.9504;95.24451;86.10023;137.1983;112.2853;132.4231;124.4257;89.73162;154.1222;149.7401;130.9147;154.2679;99.30938;56.16686;115.6115;88.89774;61.33644;50.21374;72.69887;96.70005;80.59525;61.06363;92.41192;52.13722;117.5339;76.85629;56.08072;86.09162;85.1952;109.7123;117.9593;151.1507;118.2675;146.6424;93.12544;113.8096;117.057;74.52887;139.4614;123.5723;174.7491;67.90262;51.17883;148.625;149.6969;84.40179;147.6644;143.863;165.4273;139.4669;69.6134;110.2688;59.65273;66.50797;93.79447;96.75397;142.738;76.95689;98.33408;105.5358;93.05926;123.2964;127.5745;60.10036;58.28254;92.60123;59.12959;97.20232;123.3767;76.47031;54.22044;131.1316;116.5618;40.08039;79.18013;169.1969;105.2781;71.75795;165.9282;97.77589;51.48252;90.95974;123.8133;117.5401;125.9129;103.7768;134.5363;70.52011;148.009;161.6165;141.0088;172.925;56.03419;136.5325;137.1413;69.88101;152.6163;193.2566;171.1694;98.42249;196.786;111.9668;92.56355;123.129;103.5697;107.8679;108.8703;80.1016;147.3552;109.7255;172.9104;89.31081;159.0962;180.0117;150.5983;96.67312;137.8629;49.34982;144.2282;75.67634;172.8792;106.1081;113.7037;179.0158;74.73985;135.991;127.2135;110.6205;73.78203;108.063;85.28627;136.7631;121.116;126.8328;127.1377;90.33167;133.4403;120.4141;129.9869;158.0209;113.1089;53.83285;120.108;81.92604;51.4695;52.59264;60.05373;85.01546;81.22919;66.59792;69.64707;88.9532;140.125;48.14133;70.30649;77.64922;88.87507;123.1539;75.67331;133.9922;111.6916;131.75;82.32864;109.9929;88.6777;68.8043;153.4851;83.35008;155.9957;38.90529;55.93321;187.8017;106.9225;88.88735;118.005;93.6041;132.095;138.9193;73.47175;83.10595;43.92918;67.89326;97.68345;
108.7082;119.2016;52.89334;75.32741;106.3565;97.28892;85.12976;151.1046;64.29614;44.9502;106.8483;165.1708;70.42357;85.80801;150.8256;151.6821;85.95596;125.408;54.31207;96.04311;133.2742;135.0762;112.603;179.3154;114.8403;159.3966;98.84618;142.3923;167.2051;152.244;195.4922;62.72387;102.4063;110.9131;78.38982;170.8296;174.463;127.7734;108.1581;162.4961;190.0269;80.57225;90.94726;76.17998;137.2996;110.0559;118.9455;166.5194;118.4591;179.1816;51.57343;168.8962;192.7299;155.8603;102.0615;182.7888;83.89928;147.685;61.81245;136.388;132.8488;88.1759;136.9929;61.55296;129.6422;118.1013;103.4624;88.21812;113.2176;134.4944;115.7074;142.4912;110.5584;109.8783;70.5846;182.0104;163.7134;130.5282;135.8433;151.9716;73.00294;86.8303;46.29307;92.11412;76.9519;71.49645;75.22288;118.517;61.12286;92.03161;90.2702;107.8479;60.55101;56.4217;86.40361;100.4493;86.4193;78.46777;142.7394;131.9274;133.1579;70.02134;108.0318;91.08018;134.028;119.2269;91.43106;134.7218;88.29176;54.55212;190.0802;145.6488;96.81386;148.6331;79.25;153.1243;117.2207;99.31939;91.3615;73.94907;95.72076;91.36407;65.3364;116.5919;108.6273;71.30802;70.99088;78.65856;133.2579;131.5686;57.56805;70.97304;95.14568;121.0294;79.22186;152.2122;70.06903;52.88424;110.2992;161.3812;67.37328;82.80262;155.0407;127.4596;88.06481;121.2332;42.74353;75.491;101.7051;163.4268;92.00327;152.8203;105.2842;146.3007;81.75694;144.3238;174.1182;147.9998;178.049;54.09398;122.5644;122.3774;81.17448;165.1611;159.0033;160.734;94.51567;161.5634;196.8425;90.91754;92.20725;74.44963;133.0077;111.444;116.2201;142.0304;118.6887;172.6545;39.26997;145.3023;154.431;191.1679;77.20834;157.0174;73.31861;140.4123;47.8653;140.3576;143.7311;85.59583;132.2748;58.23914;143.3276;131.412;106.2029;84.87028;110.8384;158.0941;113.9127;149.7164;114.933;128.2738;72.36723;177.1499;164.0618;132.841;143.1503;136.7019;67.06518;83.49165;34.42124;75.5939;60.88575;88.35017;63.22842;104.7103;52.14338;86.30635;73.2291;111.3809;67.96748;54.36169;49.87351;92.70486;124.0802;120.917;153.5529;102.9952;130.0883;86.76254;68.4786;100.8003;122.112;152.2677;134.9685;150.0158;71.34044;81.97513;168.8823;152.7101;77.64655;120.8663;101.0604;179.1654;129.6035;70.57197;73.97376;72.55143;70.80986;86.74114;78.11166;125.4553;100.0789;61.79271;74.55663;73.85281;
173.9591;141.7315;94.67029;161.6588;119.9785;102.096;124.0769;168.4271;192.8371;77.7149;171.0468;163.1611;77.69405;122.5503;63.76831;96.69856;156.1466;91.55261;143.1135;115.9156;143.713;62.45231;141.1369;156.2225;187.0074;105.551;153.4024;91.71337;94.86399;62.27799;146.888;136.8602;86.4213;158.3565;73.33552;151.2553;141.5227;92.72783;83.27998;124.5699;118.8843;101.7901;137.4747;152.9784;104.2245;113.6592;172.858;154.6822;120.3837;130.9861;184.8688;51.05865;82.60697;52.54398;87.05251;95.79355;98.16386;62.44061;135.3422;74.72398;96.69919;74.22366;127.3861;54.7919;77.84417;53.44604;138.8245;130.0534;91.04014;177.9927;92.02184;153.2294;114.6375;93.95016;101.2473;108.6021;131.2483;125.9136;130.2664;59.10096;91.82275;151.6098;138.2613;86.06017;124.4256;112.4876;141.4879;130.3562;94.3236;120.5497;68.95759;109.5954;62.60944;88.465;134.9306;100.6136;78.93188;83.85407;86.71931;135.5227;139.5432;52.87705;64.25329;117.2455;94.27656;74.92212;135.617;91.86897;43.70251;170.4398;160.7447;58.34032;80.7653;108.6118;135.1338;74.24658;118.6473;59.37576;86.5295;161.4655;155.0117;79.36146;183.3744;134.3672;142.7294;66.95503;159.6088;151.8442;173.3492;140.0168;83.47982;143.2308;118.9357;105.4437;108.5734;161.675;166.5454;83.957;171.1499;167.8672;86.29914;124.1414;73.92134;95.42949;161.4881;63.87346;112.7925;127.4926;143.352;57.21859;146.0461;173.4369;164.1509;93.77673;149.0959;86.31239;93.74648;54.16013;155.8119;137.3918;87.98356;162.8106;62.07412;129.4935;138.7463;98.44852;67.844;118.2165;101.0089;114.7547;135.9227;153.9326;112.7121;118.1447;185.3155;154.045;130.0315;102.8234;148.9642;57.61782;82.75588;49.59659;88.14038;110.1902;82.32967;51.63176;133.0908;74.57769;88.40988;60.58024;126.6723;55.83782;72.39684;61.80277;132.9943;117.2275;88.66627;177.0859;82.51144;134.4534;93.37884;98.37244;102.468;117.0137;132.033;123.872;131.895;59.43922;92.46083;129.5797;116.6775;101.2863;124.4309;101.4686;152.0981;135.3096;78.81592;105.3352;67.35316;109.4182;55.9757;73.5066;160.879;107.6618;88.57435;81.34119;77.45518;123.6712;104.0511;78.62618;63.65135;85.74815;100.1806;60.96273;136.5822;86.09798;78.41095;106.1239;169.7365;79.01163;85.87261;98.60338;100.1147;90.94093;129.7453;79.11379;93.20436;158.5854;154.9751;88.00808;152.9592;108.6152;90.03575;87.087;196.7287;197.0566;
67.72489;122.5907;132.0649;193.8107;135.4158;75.14774;79.80439;84.46216;124.0621;127.1921;65.39924;126.0798;54.23861;82.83801;42.64046;140.6804;105.7104;76.14878;111.704;100.8051;123.1236;86.82275;101.4489;126.8602;170.7656;107.1787;153.5174;170.9013;106.0182;162.2439;67.75407;79.93862;136.2512;111.4622;104.1395;107.3314;123.9748;166.9315;125.2225;129.3755;121.5284;56.36922;80.56077;72.31886;164.4625;149.6173;137.2062;104.6351;85.13445;93.05991;106.5184;60.035;58.95242;59.54628;132.4915;105.2057;81.90665;100.0077;66.61163;74.89338;99.88657;79.20143;137.4024;200.0496;123.1999;140.5276;117.7266;112.0336;58.33528;102.8859;140.8263;73.99806;113.5686;68.14079;165.9747;110.0764;83.49091;83.36677;53.49186;87.30319;48.5005;93.20848;150.0874;115.3571;82.16815;94.97652;153.1238;111.7746;188.0631;116.1238;131.305;149.6546;241.7368;81.093;67.59329;142.5796;128.6229;108.616;129.8385;182.352;179.3587;215.789;152.2254;109.5373;120.5725;51.7695;114.7536;102.8129;154.8629;202.8308;62.19625;158.6199;76.98782;161.8738;169.3303;105.6969;81.26212;84.76552;74.97444;105.1924;92.36265;132.3279;111.2525;112.7718;96.71358;132.3661;95.14439;154.1265;69.92551;130.2495;146.7623;198.6358;133.5713;61.74958;79.26945;68.77985;147.924;128.2826;61.54737;131.5724;69.52556;90.65627;50.38762;126.8543;114.3995;88.92855;116.2219;87.85167;145.4933;109.5957;104.4335;95.58898;150.9841;99.34274;135.2955;141.8774;112.2186;167.6888;58.4839;67.99592;135.9261;122.2644;118.4106;110.1995;118.8965;144.7072;118.6631;106.6859;143.0521;59.72206;78.26791;76.10806;187.3117;157.8691;144.9533;90.1797;92.76801;111.0988;113.017;50.02034;74.1422;77.41203;130.3084;74.57719;68.36639;91.91475;61.81581;60.83089;94.06908;76.22564;125.8241;183.059;118.3877;145.8678;130.2063;117.1687;52.4347;84.09148;141.8355;66.0207;134.5838;68.18401;172.0066;121.598;88.49233;82.49335;59.58343;75.54578;51.32301;105.5022;154.8783;103.3693;96.64982;115.4554;159.2282;90.62514;167.2296;107.386;124.5345;129.4739;232.6382;78.08155;86.34563;127.042;131.0701;117.0501;155.8319;166.2921;131.7855;137.0932;110.0086;84.89494;160.9588;82.39634;85.29006;133.6136;187.5424;169.1476;44.31381;111.9059;59.1532;128.3757;190.1109;133.0436;98.53252;97.80431;102.7924;92.72996;107.5356;136.352;94.1406;137.8001;92.23154;130.2802;94.71882;123.2742;
86.21556;125.7009;124.2615;147.9456;107.9753;173.9879;98.932;165.2909;142.6139;177.1622;116.0824;146.825;55.41331;101.1558;59.48336;85.1867;52.18316;97.60785;52.0171;94.8084;59.31304;65.39027;80.43318;142.2542;70.45471;85.15388;63.33593;121.1461;112.6758;113.9792;180.6713;87.58903;102.5266;79.95872;75.45972;75.55125;75.72375;119.7388;72.46153;151.8418;82.89925;94.22588;152.8734;125.927;89.79945;97.87572;145.117;154.7426;120.9147;72.96037;74.24245;76.03515;95.39735;68.44778;75.20752;148.5369;59.92089;90.30161;73.19106;78.22073;145.8556;100.7271;94.79678;71.24287;80.75866;101.9258;95.38786;144.8248;71.30342;96.61768;141.9072;149.6033;49.63821;116.6069;139.7971;148.5591;80.54378;136.4955;61.4028;84.6748;96.20616;178.7685;82.94051;132.3604;121.1953;124.9164;88.36989;172.8163;170.115;185.4907;160.3291;80.33401;143.6613;140.2769;102.4513;117.5694;134.518;161.7963;64.12681;123.8407;122.6087;80.46867;76.91464;86.51463;120.7679;161.1613;91.64713;132.3626;115.3229;107.8324;84.41591;150.978;192.7123;170.3648;72.82576;161.603;81.04128;130.1877;69.85633;186.7423;104.9777;113.1376;154.6742;69.05748;130.1972;117.9818;121.6245;78.63715;99.07141;129.1306;118.4903;156.5154;128.7471;162.1828;114.0091;196.3662;133.1859;174.674;128.9075;157.3375;51.67526;110.4535;46.474;88.0479;72.02312;108.868;65.60882;95.84718;66.35518;82.72179;93.1267;151.8867;82.78771;88.24008;90.05921;143.5881;93.88569;122.6874;139.4285;82.89716;116.1193;83.20784;66.73186;77.40657;91.30795;104.9989;89.04641;179.6742;75.81125;93.49379;161.5283;130.7557;83.18574;102.2815;128.706;160.4328;151.6281;84.52754;85.90768;75.81962;103.2778;82.6656;91.15984;160.2173;75.89145;97.94902;89.50943;88.89191;120.2428;117.4019;70.39763;66.0351;83.98662;97.846;84.50748;157.6857;81.59727;78.58098;159.3147;179.8857;47.03764;118.6239;138.7298;145.8053;71.11358;151.3384;55.08299;87.76505;113.4993;186.0128;94.15456;141.8322;124.0927;137.5021;101.2352;188.1052;196.3788;196.3892;184.0871;91.1438;118.2512;159.8399;82.64784;127.2251;156.3978;171.5299;79.75209;135.5594;131.4091;100.0633;100.6148;127.7474;86.70308;128.6999;91.65054;114.2743;94.59307;112.8156;68.04511;165.6147;205.5235;159.8157;92.53298;184.9105;94.78529;148.6784;87.05591;166.8307;149.4178;99.16913;178.8878;84.62504;95.33343;131.0122;85.1625;75.16145;
135.0999;71.40453;90.02219;157.1597;79.9285;135.6429;136.7247;100.7036;118.1662;136.5321;55.99177;50.51775;130.6235;71.12077;75.05112;139.4774;178.1213;132.6415;168.1022;120.2516;74.94504;160.5161;53.00499;96.72149;123.5386;160.3501;157.6897;53.24733;173.7438;81.13696;119.8933;217.1232;136.7602;116.6515;97.79137;99.00035;107.1705;129.1151;162.6692;142.0755;147.4565;88.67379;136.4696;84.60993;147.6955;72.39967;120.183;143.0818;188.2224;190.2742;71.89127;77.41403;81.25511;186.4945;123.2856;66.07475;147.0475;85.29109;58.43657;66.82028;155.4846;153.8296;94.94288;99.9566;118.0073;116.4099;80.84669;109.5205;91.54378;112.7891;136.3608;126.5391;136.037;55.06874;123.2507;55.67385;77.42242;83.68349;86.46231;117.36;101.9976;90.7687;121.3732;87.05843;84.89667;154.0391;64.56812;71.84726;86.44197;207.5064;114.6947;119.8962;109.9832;96.76263;73.4442;146.3635;67.70457;111.7305;83.14911;163.0985;77.39925;98.87626;116.107;90.22203;89.04272;95.19221;71.2484;111.246;184.117;128.6023;135.6198;142.5774;80.39209;84.71666;88.08773;131.1487;96.65425;144.9536;82.60506;179.8894;134.1938;106.1827;51.18336;82.61685;98.10521;79.17722;119.9567;135.3847;119.6913;70.0348;87.10924;144.6526;77.11244;109.5556;137.4975;95.64247;138.0635;149.2663;47.65718;49.89499;134.4032;70.98404;79.70206;150.6861;149.5058;128.2987;153.4458;112.8309;89.66532;138.3708;69.259;92.74463;126.8163;167.5715;152.5618;58.28895;184.3843;83.97089;122.0703;218.1661;115.9042;115.6591;93.46346;84.05231;102.1443;105.5436;158.8074;131.5351;164.7638;99.95046;123.1006;79.1102;150.5456;73.68487;123.1629;152.5953;154.2172;185.0328;62.56595;69.15417;95.71657;163.4287;144.3802;61.62603;147.3143;81.73864;59.47403;71.72015;158.0927;156.3634;98.42663;104.3724;107.6002;114.0078;86.73508;97.7467;85.08784;97.4137;129.1763;108.6646;153.8311;56.6455;116.1905;52.60846;74.34303;84.06782;90.47393;130.1346;85.32024;85.93451;120.8005;81.92529;97.72089;141.0852;77.23549;61.2119;86.64566;201.9389;116.1453;126.4302;112.1784;98.77429;108.1786;112.0785;53.9409;108.6472;75.5237;147.8025;112.5245;65.13966;65.37135;45.98941;104.4478;69.93016;97.5106;83.47449;151.225;111.9732;108.3905;130.6389;97.10459;57.16654;93.83213;130.3991;75.59602;101.7932;113.8197;171.9756;160.5169;115.8098;72.32749;78.62269;109.4734;81.1725;107.8487;131.2969;
158.4264;59.67759;137.517;173.9228;96.37807;75.86987;100.0562;128.53;153.578;75.77935;112.0137;94.96141;164.6437;47.39536;195.8953;187.0436;166.2289;88.17812;114.3054;75.31524;132.9489;94.51101;177.5897;115.3226;91.98357;176.7537;44.03716;120.7235;156.7144;109.8064;101.3773;113.0662;139.9821;106.518;107.992;134.947;154.6365;104.525;132.2238;188.9419;94.05944;106.8362;108.345;75.46425;105.4196;58.18427;87.64799;82.72811;95.80722;46.06241;70.29186;77.13354;60.78921;73.38363;124.7068;65.96058;52.26829;92.00803;120.1426;116.0713;81.70845;118.5423;143.1336;117.3308;91.41861;82.93678;82.47251;118.6696;149.0126;75.90863;163.4975;88.72248;91.39241;137.7781;112.8738;80.39433;135.9986;87.13324;199.7527;132.9511;85.81586;112.5688;48.69702;97.06941;84.17504;120.6836;150.0454;86.80321;82.7427;94.62594;58.0523;115.5873;155.7982;55.79072;79.64012;89.33056;107.7851;86.76499;110.8;77.96461;75.73849;144.9493;111.7503;85.2732;56.23272;109.9056;95.3113;100.8854;145.7268;64.83656;86.55437;132.271;182.0063;97.3335;129.3877;146.9924;119.4429;83.92275;165.853;205.0494;167.2715;205.2509;71.14835;147.7327;110.7021;64.82617;159.8835;154.3056;148.87;74.19823;159.1267;155.0788;94.51229;91.6066;93.66153;128.6948;188.0644;74.04573;112.7177;105.6541;147.0971;47.14414;195.9663;185.8212;176.6499;117.4508;133.234;83.5275;140.7011;100.62;190.0549;138.7359;117.5569;182.3755;40.62697;130.383;149.2267;108.1716;79.84388;116.6905;125.0945;125.2249;125.9859;111.7814;152.2699;118.7377;121.8629;188.7628;116.1989;104.9602;108.3305;79.9238;91.51194;55.20716;85.61781;82.83916;100.7465;67.8732;85.06059;81.4888;67.58377;75.54574;132.6041;84.86573;67.29458;102.1351;116.348;118.2147;78.58166;123.3153;121.3836;128.7098;76.98833;86.5341;95.18176;102.2737;143.1523;89.71407;158.085;85.82195;110.5023;142.7265;114.9972;82.87462;122.9599;88.96567;201.9524;141.1478;87.84668;129.6684;58.66614;107.3381;89.33957;125.3762;164.9617;105.2418;101.4037;104.8962;55.42383;117.7262;151.469;59.07995;67.04251;93.88023;117.582;76.29061;156.7497;90.8199;71.17721;104.6199;107.7955;76.42384;84.30852;149.0049;129.3527;102.8826;141.1452;54.94434;86.74663;110.4928;142.2113;133.8406;171.1048;156.3104;106.3593;68.15318;155.9782;185.3033;173.2841;185.9219;68.82514;142.5566;121.4067;70.61441;112.6731;149.8962;
96.57861;142.3874;191.5227;72.096;104.339;58.97412;125.9211;144.8107;50.7753;150.5289;50.85917;100.7588;78.92411;136.2119;127.4611;92.79769;74.29591;139.4967;111.4482;82.38266;87.49155;105.9241;107.3901;147.2632;108.3733;119.3223;65.14684;141.8162;74.43588;92.89843;114.0882;86.05999;90.8639;92.82057;109.1016;174.826;121.178;76.81362;109.1639;62.12901;57.58693;56.68044;134.0247;113.6486;98.67985;84.89333;109.0256;99.9194;94.6892;68.22216;75.34747;52.79652;186.1487;86.81837;100.6847;91.54906;58.7354;70.91709;89.74236;74.22028;96.24068;178.3148;110.7091;107.1071;90.72881;70.07053;86.53848;90.46849;170.0913;60.23634;114.1311;78.70123;163.7055;145.8913;70.57213;97.74135;100.8774;87.02532;63.9486;122.0928;106.9094;150.2675;60.63001;77.82833;130.3953;103.2046;118.9697;150.7335;101.8381;114.2101;164.8429;67.86942;80.78329;161.0925;107.504;82.28863;111.1313;156.5767;147.0473;204.0449;149.1897;70.95191;109.4739;52.0492;94.29739;100.3974;112.2517;156.4344;45.64631;152.9014;99.43455;153.5832;153.8196;143.5054;75.75249;65.06354;108.4302;100.8962;126.4827;149.9003;122.0142;125.3864;87.50727;127.3724;76.46771;144.6623;60.632;97.5517;118.1428;153.3989;177.872;66.52749;102.2283;74.81557;125.3116;145.7068;54.60799;179.3052;64.85966;100.607;99.498;162.2489;130.9115;95.66811;80.39712;152.2832;104.6003;93.20846;80.828;92.15933;108.7814;164.0618;124.479;128.3844;63.71422;143.7612;88.58051;90.70207;120.052;99.01495;105.6907;101.4787;97.27242;163.011;116.9827;91.0761;107.5178;61.19067;58.03405;74.81031;155.6914;111.2101;120.4641;101.655;111.6438;101.2129;98.43298;77.54911;69.13917;60.06608;177.1423;71.32648;101.4841;103.1896;67.02901;71.61656;84.86683;70.10912;102.2139;172.8455;110.7769;112.1572;105.202;80.95002;82.79075;91.27904;170.2236;72.76135;112.1516;80.93088;162.7409;164.2535;84.00711;91.04795;112.3896;102.1242;61.60718;114.0935;110.5335;168.7916;60.84098;96.10397;127.2887;86.05545;119.5328;170.3545;112.671;115.0932;158.2097;63.94067;86.26334;155.8961;77.909;101.5461;110.8961;182.0853;142.1899;159.0054;123.6111;93.26347;122.0761;45.84951;124.1584;139.7714;164.5685;181.5137;78.39172;186.6927;91.53648;137.2202;176.9851;136.9093;97.6046;65.83445;94.83573;115.9849;98.47461;124.7316;113.2187;108.2649;100.4156;167.9916;100.126;123.4856;78.01421;114.9106;
139.6057;56.56757;124.5829;185.4999;136.1924;60.81416;90.25849;98.32874;147.8806;88.15437;115.2198;108.2692;138.6007;84.7823;139.1614;110.6609;103.5741;66.63558;113.7625;114.7604;198.041;141.9388;104.892;114.4022;63.38751;164.0958;187.8992;79.00449;183.4133;84.30233;62.51265;72.87505;142.8921;155.0361;86.7009;88.44484;93.87728;114.9394;96.13753;117.8274;127.4074;140.4411;149.1275;143.2554;168.0277;74.36263;121.8111;89.66758;66.13931;116.1096;101.5876;119.4891;121.357;110.4366;158.2393;110.0522;88.40592;98.91866;76.78912;63.60912;87.46999;124.816;154.0217;110.4487;85.20409;70.91875;73.74417;121.0117;76.18371;56.82359;83.30692;167.1773;110.7381;58.41494;63.75613;51.10655;76.85844;72.8474;81.95518;137.9308;138.5987;117.3756;122.183;98.71513;117.4533;55.58521;131.8467;189.1268;61.31686;135.7304;98.15385;184.7776;162.7183;97.65268;58.17996;81.57835;91.9841;80.18217;103.2749;115.497;109.6926;72.68793;99.7332;173.2398;112.8973;144.4543;146.2961;120.3568;145.7328;162.8915;51.98373;69.65601;142.5983;107.7146;89.55112;117.2182;192.8987;181.8544;186.9481;136.92;72.66402;111.292;75.65942;89.33357;113.0676;109.1632;190.9613;49.12889;168.7567;69.34642;118.245;181.4226;149.0922;74.59949;92.12922;99.31978;130.7169;96.52522;94.01769;94.10548;135.975;75.47878;148.302;84.32932;127.3112;70.46074;107.307;87.51912;191.2218;166.9871;93.44111;101.68;55.53521;167.1364;175.7938;60.13552;157.7025;82.58758;62.84364;72.92456;165.7149;173.643;85.46813;87.88157;103.1731;132.9059;100.0468;120.4478;106.6181;149.6766;130.3397;130.2582;163.3416;65.29731;132.6712;69.73329;82.00196;120.914;100.2737;97.41378;115.6277;133.0899;146.5157;101.9317;78.98288;110.7093;81.72751;56.231;75.09954;133.4038;148.8415;112.6574;97.15926;82.45417;73.56844;121.2733;82.69559;68.77272;86.82185;166.2827;94.84334;72.16314;58.89417;48.35489;78.91471;71.64268;86.54604;115.0772;153.8278;120.7309;121.9797;79.49792;109.6503;71.07188;121.0153;174.3245;53.51352;149.4895;103.727;172.0424;145.6745;105.2653;74.72742;67.33601;75.04288;47.84029;93.39707;140.2433;147.566;58.04164;98.43381;186.9294;67.47082;119.5032;94.90705;92.94505;104.7916;182.0926;83.68801;61.66304;168.739;117.1751;75.64468;99.0695;175.887;138.9171;197.9145;126.7417;74.86957;141.6647;71.94093;105.3962;127.1213;120.264;156.4539;70.23505;
114.6597;97.23859;114.8817;128.6732;55.40921;102.8596;65.70967;71.69174;119.8361;155.2035;97.20586;81.71151;131.9632;92.27254;88.32676;115.0493;92.37817;48.68873;146.7679;123.8379;63.80378;78.16008;135.8152;119.09;68.16762;148.8934;76.49465;55.78043;136.7042;153.8431;136.0132;137.9134;108.099;112.3475;86.73833;140.9048;147.9615;184.8802;133.2441;46.67809;140.4116;101.1584;104.6362;117.6045;206.8679;202.0179;81.72449;169.414;187.6774;100.3741;137.9121;121.6738;86.94514;141.4053;102.5293;171.4328;137.4491;124.5445;55.47017;157.2117;172.1598;164.6923;95.75711;184.2072;92.58118;156.9381;90.40079;153.8156;93.01382;116.4264;136.9754;57.8203;136.7569;161.2234;171.1469;99.99835;142.8382;114.6658;129.532;109.1787;142.2491;129.7138;99.57377;138.6237;172.4562;124.0309;139.2247;132.2101;52.76219;110.7131;71.05533;52.79128;81.54726;78.81129;97.88255;87.23353;51.88334;66.27701;73.38842;107.2261;58.05328;81.71258;57.26121;90.43111;116.8371;73.40769;183.997;90.06494;165.5417;113.1603;90.86426;113.668;135.6753;163.9866;116.2237;169.0155;66.37994;64.17481;193.6721;155.4276;100.3974;110.7051;109.7438;182.3731;139.9489;72.00895;107.3051;91.30637;124.4333;96.86082;136.1621;143.6061;66.97038;81.69779;73.32632;84.65399;140.7822;132.7924;105.764;71.94037;104.2024;76.96569;83.8919;125.8802;95.3813;57.44371;126.3852;100.672;78.1284;62.77136;158.1084;105.2151;62.68032;162.3972;93.50532;66.6091;136.4561;139.9663;129.9916;131.8117;114.0201;111.5116;102.1015;157.3898;165.424;162.0459;135.696;56.03979;160.2903;83.09401;111.3783;106.8038;171.6257;185.2168;72.35121;183.6232;189.1194;111.5807;116.3632;102.1055;103.5857;124.3919;115.5751;155.7294;125.0438;133.3456;62.48294;176.3038;182.2843;154.0151;93.55099;183.9262;100.2468;149.0275;110.1955;170.4642;97.4182;96.17259;136.2944;64.88613;153.8956;135.9142;169.6122;87.75614;122.3264;105.145;120.8835;126.2494;146.1395;135.8014;85.01815;117.219;182.613;105.7324;151.0297;114.0962;45.18714;119.0155;78.96402;64.08474;88.56041;71.48036;80.2428;83.99364;92.18421;60.53506;69.29731;146.355;64.03788;52.39194;89.77704;99.95779;97.52094;95.90691;132.8774;103.6867;109.9644;87.04829;118.0951;70.57284;133.7962;141.845;68.40913;127.4338;103.6898;70.53165;173.8663;95.23025;67.69413;138.774;113.7983;141.7526;112.2433;54.47127;84.51814;63.95183;
120.5749;161.4419;71.91405;111.3676;70.05914;96.47938;57.02209;83.89626;92.94102;132.0757;82.23768;51.15773;65.61256;129.1741;84.21262;77.0593;93.58903;152.3979;130.306;116.1012;190.5864;90.79014;119.8286;117.3694;82.32838;79.7238;119.8281;132.4808;121.6714;151.5001;90.86887;78.25041;139.731;114.5463;86.04267;97.02008;116.6621;123.1866;128.8806;59.90639;90.60978;59.92815;81.62078;83.55854;120.8463;104.505;109.1821;82.43121;104.786;73.51111;100.0059;136.0825;87.15391;54.57995;94.19546;105.538;67.03323;105.1962;111.3934;38.44007;135.904;109.0945;80.05159;112.6208;121.9719;147.3788;87.64246;153.4688;90.49608;91.39211;95.77429;156.7524;114.5158;177.664;153.917;106.5186;73.88659;160.8032;207.6294;178.6317;178.1872;94.9744;155.1783;149.9253;120.041;115.4276;148.8639;204.6993;60.80317;136.7026;182.979;94.83849;121.1212;89.04784;139.4314;148.1425;69.52541;118.1784;107.2093;113.2417;73.01397;112.3087;164.9324;140.1558;72.68621;137.2995;67.41685;141.247;98.41743;127.677;142.5542;115.823;168.5587;52.82252;125.6613;106.4134;159.2227;81.72821;95.90913;125.7789;109.2159;108.9154;154.1754;119.1297;103.9509;140.9772;193.4513;162.3339;121.8183;154.4874;80.41223;120.7464;94.84697;108.4584;66.1176;81.51322;88.36481;108.8783;94.48195;63.90253;72.69392;131.6467;92.10062;93.24513;81.24476;140.6739;153.0255;90.39873;200.9482;102.283;109.369;103.6398;78.60043;77.37885;115.8275;162.6985;134.0755;169.467;97.26994;74.82228;143.6222;113.9104;93.52884;102.2905;146.3941;139.6831;138.3344;57.47288;88.49211;48.41926;92.45977;96.80935;128.8282;109.5649;114.9484;99.88021;95.94994;69.88895;118.9485;106.4937;94.63929;65.68592;82.24651;93.25095;74.48164;108.316;99.70375;48.86262;148.8623;123.6647;85.10282;106.663;131.1617;142.7875;98.57789;164.0485;109.0265;109.0159;105.7569;150.1755;121.4527;157.732;160.0676;113.2618;80.05767;166.1939;214.0268;201.4011;172.9912;87.81069;183.1931;122.2005;120.5446;135.069;135.7904;184.5295;67.90628;140.2604;167.9056;110.8531;133.371;102.2556;150.6883;131.6616;66.80119;122.3158;146.2665;164.5314;81.76678;123.2169;149.1757;161.993;73.57421;106.4704;70.79372;125.9275;86.52614;142.3513;111.6647;124.5222;117.7491;85.56676;134.7831;140.178;161.9641;113.9499;110.3182;101.3203;108.9062;94.36967;150.5215;162.8566;106.5935;131.4648;193.51;173.6956;
128.4844;102.6698;143.7364;63.9364;50.45742;108.3251;153.3407;79.38144;105.5471;112.1356;190.3762;146.2084;71.89391;84.97653;69.42588;96.71902;61.54663;93.97365;130.4922;122.4441;43.05233;94.9441;115.3368;84.83738;116.1006;135.4481;145.6918;152.4263;176.9437;78.19788;69.56002;152.7604;82.48904;118.7448;137.1046;112.3077;114.6174;141.0918;125.7062;79.15463;100.2134;56.41696;87.3785;119.3273;159.1715;192.9055;57.15136;149.5978;70.30289;109.6783;209.6848;109.0982;75.7057;75.21489;72.84511;131.2062;107.3197;114.3291;111.5697;147.5421;71.14216;149.4176;72.10058;120.1834;86.30663;86.35442;155.7433;131.6989;131.8257;88.77199;98.7614;81.80013;120.9932;179.9129;67.3029;162.6704;59.81611;96.4021;64.19875;157.5008;140.9228;72.77486;97.88004;105.1697;79.50778;103.9055;79.84963;94.46281;103.8619;122.706;154.0811;167.0002;80.70502;158.3654;71.18108;86.42464;99.20457;124.6348;113.3833;54.89697;73.87499;113.0528;98.04012;84.95299;105.915;62.20015;52.88705;78.87225;193.5103;145.2922;126.8018;70.55353;81.89801;66.76329;131.6729;57.47808;82.78269;86.9724;155.6323;89.64104;91.64098;86.92732;55.20439;77.19601;66.52187;94.4357;109.9115;157.4807;154.8689;106.7909;143.3483;67.1553;52.19083;141.1967;145.9413;96.07291;110.1688;96.6344;203.274;169.2325;94.51914;85.25776;72.02814;84.62025;61.60766;88.40523;116.117;129.241;53.4443;119.4561;144.7388;83.58092;128.216;145.0595;133.7797;137.0294;178.5183;81.83624;83.16732;165.9635;100.9084;126.7314;137.9957;115.8126;113.9776;176.1677;113.2602;92.93851;102.9321;47.93916;98.41622;139.6875;189.0012;190.9163;55.83472;131.3419;70.20998;107.5548;194.0866;115.3372;88.67278;95.82809;91.85058;126.5885;116.8884;127.2714;104.5652;131.9094;67.76621;157.6907;83.18578;131.8882;97.75845;95.16067;156.6294;136.5774;131.5721;108.8703;82.62022;97.25503;122.0512;164.3288;78.23588;185.9564;74.02789;97.55804;60.44899;138.7154;132.2438;72.77406;87.27103;112.2807;93.14775;119.4108;94.20619;91.96246;113.2775;136.0972;145.8285;150.3407;77.10665;166.8793;84.81171;67.28175;99.82019;128.8692;93.4045;98.25775;88.05014;138.1763;89.2021;98.28395;111.7561;49.16033;88.43542;96.67465;209.3377;133.087;147.6152;87.33232;95.67513;87.44901;115.9422;57.99472;99.28514;62.97591;181.7862;100.1749;74.42484;87.75526;49.34732;55.60994;92.9922;120.1815;136.5338;154.1656;
128.2178;220.2638;179.7439;75.19463;131.2202;205.6557;83.08992;122.5581;86.25704;123.7795;119.0819;88.42278;101.3017;150.5912;120.5718;63.51517;122.18;174.5271;163.8743;72.93787;164.6039;93.42175;158.0347;96.95822;163.8263;159.963;99.62524;129.1124;53.19366;109.3513;115.1042;122.274;77.86434;97.12354;84.33418;120.6393;156.1807;176.8014;134.1939;85.41399;153.0576;146.6344;162.4669;125.7235;132.0963;72.68166;88.91033;66.33772;65.63657;69.49135;65.23549;68.84843;85.34849;80.73123;70.32939;67.52441;149.9725;55.8487;82.40873;69.65782;99.89135;118.1635;92.36156;179.3217;98.30418;201.9657;106.8012;92.38718;81.7176;149.6087;115.4642;122.6665;151.3563;74.71542;69.6808;173.2681;99.14027;133.1142;100.8959;110.9622;134.269;145.2937;85.93588;86.69419;85.34698;120.7;91.47819;114.6635;140.1858;115.7846;92.79932;73.04838;66.89082;107.1394;119.2058;66.50704;66.29855;92.75651;61.4959;82.41061;166.3133;121.5413;52.76101;120.986;138.9707;50.67902;113.1159;142.1362;115.8164;97.35057;131.1132;70.24369;87.17323;109.8651;135.9325;121.2876;118.9375;120.0181;96.38468;90.00632;191.0388;124.955;218.4683;148.2747;44.34228;149.0818;112.0155;93.73569;111.2541;202.452;196.9599;90.28677;137.4396;183.9291;70.21593;137.2893;92.56393;104.6461;114.9048;91.39785;109.7582;157.4811;111.3127;55.17767;148.788;168.8324;175.0053;91.37632;154.0667;78.09049;125.1618;109.0164;163.4487;119.1182;130.5306;127.8735;37.51794;116.2593;106.0739;108.5222;64.4897;85.93938;91.29577;133.9297;160.366;150.7429;121.9103;96.30972;161.5121;126.9979;151.7514;124.4645;139.3538;73.46366;84.51067;58.92484;86.50425;67.51436;68.37735;85.5747;76.94831;63.46457;51.78853;78.93627;148.9702;38.64418;101.923;63.69458;82.75801;120.2785;80.83626;164.0303;79.67542;172.4481;112.2145;104.3586;78.33212;126.3811;113.3842;140.1981;157.7234;66.96055;59.74372;165.4265;111.0755;128.9334;92.51141;102.455;158.5426;130.8648;87.4136;105.6517;70.83514;99.94318;77.79714;133.8335;139.2168;90.32151;113.4438;66.93853;53.01672;109.1537;144.1042;87.72221;73.23297;77.45106;98.84798;80.6903;122.9424;82.21116;68.64229;119.63;123.0648;72.85708;73.11195;170.701;113.2172;74.29345;120.9333;57.96359;79.54086;94.38447;164.3144;115.6589;155.7877;129.2759;119.5396;116.375;195.6599;157.6893;205.6022;158.7395;74.90143;120.3893;123.7337;88.33548;
96.83942;204.0435;109.6384;98.00523;63.84999;100.5072;86.40618;72.10107;84.85225;163.7373;101.6122;43.85592;94.57375;197.4158;73.1251;151.0801;102.8812;129.579;104.6332;155.0841;64.18621;74.27515;182.9165;89.09667;76.31609;114.106;159.5283;133.9541;149.5572;121.1236;96.76537;108.8188;69.00998;104.4088;92.01311;135.1201;144.6804;54.1274;131.9229;92.52959;137.7516;154.3418;115.8415;57.01303;59.8345;122.9309;97.9725;101.7463;116.692;138.1788;104.1943;75.83374;151.7856;83.03805;129.8513;95.94306;88.0426;161.2944;202.7035;152.9461;70.43533;85.2029;86.27362;169.9867;178.1431;78.42822;121.0225;70.97453;73.96478;93.25774;157.8145;144.4674;66.28551;119.8221;95.34804;89.45814;97.03967;131.4462;78.59981;146.7623;102.1261;143.5871;115.6643;55.92717;146.1776;78.13753;122.9831;102.2247;85.48086;91.00602;100.5328;100.4872;119.4402;86.95571;102.6282;118.7114;84.54435;69.67104;59.13142;152.7122;109.1778;128.8347;78.1538;105.636;87.74055;96.98938;64.10915;57.64606;58.9915;193.1456;66.57977;84.09417;77.24642;73.56316;62.2368;67.63789;91.81411;138.452;165.1424;164.852;111.0598;140.1223;129.6542;73.42927;86.56157;146.2151;99.6757;169.2195;104.6986;201.4281;137.1162;104.4804;66.41895;92.69662;119.0945;76.59544;96.0312;151.75;107.5334;65.60003;112.6221;189.524;64.40556;162.5636;106.9077;118.6471;112.6536;152.826;67.17038;93.12048;194.0793;99.17104;82.77176;101.0844;180.1631;158.8309;143.5873;113.074;109.8118;128.7348;71.45451;103.2585;115.8775;136.2638;146.4273;49.70214;166.8752;93.79206;147.332;143.8613;121.99;76.87209;73.53492;118.5272;85.42882;109.6503;117.0063;126.855;112.3908;71.88289;155.2885;103.5942;136.2469;104.864;95.03861;152.4473;215.2463;165.6922;62.72676;81.48714;100.6372;185.9867;174.0896;77.11999;148.3242;79.17237;74.79967;81.52667;183.8666;148.9282;76.18748;116.4862;93.68832;105.8871;109.5138;130.7155;69.08263;148.4574;96.46594;131.632;124.415;58.87066;149.0291;91.86285;119.5106;113.9479;92.3754;84.38815;109.4206;110.867;109.3345;83.20151;122.2807;150.8067;96.11079;97.42154;112.5701;166.7872;143.1912;153.9803;113.973;70.16734;106.6165;124.6409;62.54682;99.62776;89.62416;168.0119;102.3977;121.3593;112.0547;85.24625;85.13465;91.03918;89.83315;137.0446;167.7993;167.5271;141.374;112.5803;74.2596;98.23029;98.04271;130.1554;64.78924;141.5095;
67.46587;55.70322;116.6127;152.5362;67.43242;75.88261;109.1397;116.4652;60.57247;80.26687;73.65562;118.4175;107.7321;117.5991;118.0579;63.95346;180.5043;62.11808;67.34952;108.7695;78.37471;75.72338;88.82249;73.22854;106.9082;79.88046;113.7434;117.2177;71.02386;104.5045;89.01015;157.5371;170.8817;102.724;105.4089;124.5193;76.36523;90.01904;82.17562;94.48307;78.83195;158.4059;91.66428;92.88244;90.92813;82.47934;83.55611;104.0418;106.5159;96.35284;188.851;115.8969;97.02312;134.2248;100.8603;47.06852;116.4879;118.1322;76.27854;118.2689;76.49049;208.8684;146.5461;129.9476;62.98611;75.46046;68.68055;94.9983;89.13071;107.6643;133.2356;70.15925;66.64239;130.0461;69.46571;138.8597;119.6348;115.479;104.2822;167.3976;93.1837;70.28523;128.1801;110.6417;72.89472;98.79227;167.3049;104.6066;140.9725;111.4919;104.0832;118.5497;65.55896;153.1353;123.9514;137.6022;210.4517;48.75356;176.3356;116.6938;127.1425;140.8755;156.9405;96.66711;80.94086;95.57967;127.1164;115.8432;137.0884;142.8183;135.6176;118.6093;182.318;95.41223;178.3371;83.77748;92.53263;143.0428;202.731;150.0124;104.469;70.86562;75.07491;132.8111;154.5072;58.61014;166.1379;85.40468;66.80977;70.65873;122.7949;167.0387;65.54633;88.66148;122.5602;110.4259;75.21011;98.56497;67.80161;107.9999;123.7616;118.3894;119.5925;70.74484;192.9207;87.19124;80.59586;133.6705;85.34951;78.088;108.7902;90.01872;126.4491;96.07735;114.128;121.3267;86.24488;81.96039;90.17248;142.9189;163.0939;122.2932;110.1258;130.4971;74.35667;100.0986;91.27876;88.79151;90.79076;183.9753;84.4953;78.62133;105.7362;79.90125;82.80442;113.7392;112.9162;127.1597;210.2682;136.4579;106.6748;133.0878;119.6182;61.49647;136.6899;133.1191;75.35242;119.3723;88.77965;170.715;153.8418;108.8104;59.46553;81.3826;72.08639;90.49259;81.57236;119.5941;137.4682;69.81983;80.19529;148.3982;62.31395;123.0331;132.2994;107.8719;108.3043;169.8139;100.7028;85.66029;145.3419;119.5951;76.0852;98.66325;182.8369;131.9301;163.1156;126.0686;103.0008;119.6544;76.9701;120.7428;101.7077;116.2429;204.4647;71.162;143.857;112.3138;109.1565;149.7666;129.363;83.03178;62.92136;119.2753;87.02623;108.1398;141.0528;110.5142;134.3707;112.6805;150.9245;93.47503;126.7915;90.9851;91.19488;137.5992;179.0246;177.9454;107.0251;103.8686;63.07811;171.255;188.6072;57.98201;125.7228;76.27969;
53.94377;159.2783;109.2596;72.14327;116.8779;69.07066;60.78628;152.9324;126.4748;84.71631;138.3863;114.327;129.5105;89.83073;152.5354;197.3134;163.9128;167.3013;65.77982;175.9383;133.6644;62.51491;93.67583;135.6459;136.6929;62.50512;133.898;108.9036;65.94577;103.0399;113.1456;129.3662;109.5784;76.94361;123.4422;88.54755;152.7086;58.24316;165.4606;185.1744;139.9046;69.88908;157.6721;54.37646;105.3751;84.21458;123.3783;124.3552;80.6078;134.2231;79.24238;112.0075;146.3463;112.0341;58.57004;107.9812;101.8259;141.9586;132.6254;160.3568;157.7184;94.00126;150.5565;193.3151;104.5628;153.0523;117.6751;52.99584;83.42297;59.80048;65.27329;105.2184;64.376;56.97449;97.35268;65.33192;75.54047;78.04314;123.9499;80.41802;74.63045;82.69365;112.0764;144.0292;100.4009;123.7508;68.54139;115.1203;68.41586;74.71105;83.41633;73.06777;108.5628;99.40838;188.7009;82.65444;56.34101;150.257;120.5463;67.28791;132.7191;104.598;176.625;143.6419;62.85871;78.94801;77.05112;78.99543;62.32355;101.4727;104.6939;92.2361;71.34229;63.2055;98.81738;107.1957;167.1898;60.67796;58.9949;95.4229;76.49434;94.01956;120.8159;110.8716;80.00023;149.0633;129.9692;98.54585;73.6001;181.1695;120.2739;72.83118;118.8992;84.51258;61.82119;154.2177;133.7589;101.394;150.3349;131.4936;140.7485;109.6078;162.5638;197.7776;173.161;156.5123;63.10913;180.5819;151.9368;62.71153;109.8368;138.9412;141.7144;53.87445;127.9295;121.1311;72.47722;109.3024;111.2322;140.9714;130.1609;92.11453;133.2751;87.05387;152.8246;69.26936;165.8264;183.95;141.915;85.09087;169.8549;64.66252;114.4816;99.40609;131.7892;122.8689;84.23513;124.9599;75.68387;113.7083;166.1882;108.5115;71.02486;109.1746;104.1262;131.1112;117.8979;165.0401;166.2703;106.6771;144.2841;211.1833;117.7837;168.0593;128.0269;53.10686;82.21975;70.00576;62.48165;102.2191;66.66819;72.20251;99.6246;71.52507;82.24906;99.1369;128.5425;81.53954;72.6767;71.45558;108.5242;148.0746;115.4176;118.7963;78.58163;114.1583;70.30284;66.89782;71.82523;76.24004;115.6771;112.4323;185.0611;97.43182;62.47578;186.6187;103.3582;98.54681;123.5873;148.0176;180.8629;108.5742;90.53385;87.94916;71.27153;95.62381;89.20793;97.20631;107.0693;115.6679;75.1823;91.31732;81.20483;119.8485;134.9027;58.51838;64.74857;63.65753;88.67613;86.66634;150.325;87.39466;71.04121;149.6097;160.1904;76.20733;
177.5515;98.11418;123.9462;115.0636;51.27239;84.12579;57.17965;104.273;81.47901;68.18083;88.18456;100.1664;85.72002;84.0663;59.94064;105.6812;77.11314;97.73673;80.86958;124.0437;113.3863;73.94542;162.4188;109.8298;143.8981;131.2641;97.34326;102.8718;135.1309;108.1946;80.65051;184.1758;92.3428;51.80595;176.1457;105.2918;76.11438;97.71889;109.694;190.1525;144.7814;95.2626;73.75742;72.68654;87.1025;83.51987;85.43717;116.3676;79.44968;96.98489;66.70753;66.89652;89.77084;110.5998;66.10497;57.42727;86.19192;82.24143;97.98101;148.5679;85.90448;55.04594;104.2581;138.7508;75.78352;60.88892;125.4845;98.99153;70.63532;112.5824;62.42163;105.223;141.722;126.2233;109.3975;134.2042;152.5016;145.3513;66.84571;139.0414;183.9466;215.3812;162.3263;66.74152;137.8541;94.00671;89.74678;142.9545;186.6367;208.5261;72.85429;153.9537;192.5568;69.38949;78.99324;119.0007;132.0995;109.9245;95.73965;99.62433;102.1604;108.6636;57.71641;185.3182;201.0538;177.8689;55.97606;147.0088;68.04364;135.6853;65.63199;147.2832;108.3045;114.8654;126.8046;60.58521;105.1665;115.7611;120.1481;86.7625;111.5811;98.12836;149.904;143.8585;144.685;146.7379;67.11016;133.1097;189.7955;94.46953;103.8466;111.3674;61.33053;81.06604;56.06446;101.3864;87.52236;60.59361;93.56567;75.52335;98.13737;106.975;57.03218;106.1519;80.71115;97.1605;76.2684;132.5204;121.2206;78.15033;158.6086;124.3056;173.5459;107.0354;97.8338;89.30191;144.2703;128.9838;79.90125;165.2121;96.14541;48.05691;157.5645;104.1857;86.92606;93.82581;110.2647;188.1444;147.0596;85.29897;83.08356;54.10295;98.22309;105.9023;83.78267;121.6179;79.79456;96.2077;66.41498;78.31333;96.38715;116.1394;65.29212;71.65868;97.34311;71.22311;111.8263;148.7817;93.16223;67.15078;104.2102;116.9291;84.46533;55.24881;113.7177;103.1663;80.80392;117.0963;66.62518;100.6365;134.2487;125.5045;129.8669;117.0651;167.0293;169.7283;66.02303;138.863;192.4125;211.1639;166.518;82.84048;145.6761;107.4414;93.2734;161.0458;202.8859;190.7519;84.85596;154.1713;203.3498;82.90645;121.0877;95.68697;138.5558;133.3719;86.7541;106.6997;133.4124;145.1603;63.46972;133.7458;194.5749;149.6693;74.71464;124.4491;86.11052;150.0739;65.14261;156.4582;92.50717;122.3188;116.4533;80.06823;109.5373;115.1721;157.1674;107.3579;119.8995;136.0554;102.4534;116.3212;133.4902;157.5642;66.98675;169.6726;
127.589;85.46987;74.07542;52.98428;118.2584;97.17824;91.70266;147.1423;52.04442;87.14232;77.02409;91.28084;135.0812;181.026;98.28064;76.68454;80.77224;82.94614;101.481;153.2482;85.11404;49.44751;150.8446;132.2214;56.91491;74.62084;115.8051;109.7238;60.05534;115.2779;68.98862;106.8638;132.9882;132.2813;101.7294;120.6224;119.2791;126.2186;75.6435;140.7713;143.3217;185.8959;149.4324;71.14286;161.5823;157.7414;78.52387;181.1365;146.5227;214.2119;100.3882;157.4715;140.9759;89.75747;148.4793;112.5144;130.2736;154.9287;69.06262;132.39;111.6589;137.0508;79.89648;162.6024;180.6892;172.1094;65.45908;125.0505;84.44034;150.2858;65.6742;165.457;78.31253;96.59402;143.4395;72.35761;141.3126;172.4705;154.0214;85.49336;104.4769;111.1696;140.73;147.0174;125.5576;125.1086;98.59103;140.0754;155.3765;116.4649;105.2792;116.1899;42.00641;77.54845;51.00054;98.21824;91.649;65.37076;72.41602;77.39626;54.77206;80.08392;58.11191;100.3691;47.27074;75.25962;65.44437;120.5712;125.8213;117.961;132.553;130.5973;146.3357;112.1482;94.50081;87.32227;71.02461;159.8679;117.7268;164.0329;85.67078;83.0773;140.3262;139.9152;87.47661;120.5146;147.8128;177.2377;126.5035;103.118;80.96421;58.04482;101.3333;99.90797;77.61508;157.9191;54.58495;95.96515;64.29301;79.21016;120.0544;163.1849;101.6052;66.84398;105.6789;72.36202;84.54118;143.0437;62.69142;62.72608;124.8251;116.3676;59.16365;67.34843;124.6738;113.1273;55.83702;118.963;70.01277;101.7931;128.1174;153.5329;106.4582;128.998;101.4519;134.7515;57.4525;149.3638;144.9523;198.4714;129.1768;61.28442;145.0661;146.6132;76.25523;166.8969;176.7542;195.3887;82.01995;151.2495;111.6691;111.1301;116.2217;98.74844;130.4144;149.8963;75.18183;138.1679;109.9969;141.894;89.01809;165.2303;165.4705;198.0687;68.89646;134.4728;77.90497;149.6861;57.46575;183.7457;78.82457;111.651;124.4912;61.12863;130.3831;161.7095;161.7125;82.03455;122.0196;99.0231;118.3311;141.929;107.8624;140.5399;83.1552;132.269;155.5291;112.1032;112.803;121.6067;40.9894;81.20204;58.12822;81.94652;92.41414;82.34734;71.07815;84.60769;54.2793;52.31758;80.35784;136.2964;57.15287;91.21177;74.13432;104.1158;123.6271;117.0599;176.5844;94.01738;175.8183;111.2743;71.61844;106.3959;95.63152;145.1311;118.0972;166.8765;100.4354;94.67361;179.4761;155.6201;87.41097;120.5712;104.6092;184.9324;
89.01189;112.368;222.4527;168.8376;167.5042;101.7989;114.1927;81.63167;108.9125;70.84093;68.98668;83.0419;171.8747;99.63147;116.7535;91.9392;68.33614;74.52741;66.34822;81.67313;117.772;141.9472;135.2762;89.92789;127.5091;75.97131;63.22411;115.7144;132.7307;73.03439;139.0733;63.43643;186.9809;158.4122;136.9216;61.44384;76.98263;70.94058;83.88902;76.79726;137.8017;126.3428;55.11382;89.7884;167.1928;64.43792;166.8638;106.2017;107.6685;142.9525;147.1292;95.32014;92.05735;150.9425;124.3356;105.1857;101.2281;159.3968;154.7234;218.9262;163.0868;78.39881;115.8438;81.16115;138.1696;143.6222;180.7403;207.9496;87.51661;178.341;94.04552;139.1423;167.6026;139.589;73.95255;84.56525;113.1199;141.5729;161.1188;132.6026;125.3303;116.7858;62.32231;137.1996;89.26323;119.5814;79.04693;84.74806;140.9872;149.2961;149.1657;84.82454;77.38187;77.96393;164.4821;116.9021;72.2485;161.505;101.7071;63.64534;66.33152;127.5847;150.2481;68.20718;106.7658;119.211;91.55575;80.56701;122.569;75.964;159.6049;98.86705;130.1719;157.5434;49.40541;188.0841;95.61141;89.90376;130.3169;115.048;79.41312;95.81796;121.9593;170.4362;122.5997;83.44724;132.4529;92.09595;82.01309;104.384;184.2588;163.2665;159.7538;95.08723;106.3684;84.07687;95.39635;82.59674;69.53932;82.25702;189.4449;104.1842;125.98;93.82008;72.52917;70.0999;60.93779;83.92347;119.9586;141.9351;130.0271;89.72279;123.4619;81.10661;73.0825;108.4433;138.879;75.68378;167.3036;64.88763;179.6059;155.0012;105.4333;55.49638;70.5542;67.44624;74.21585;78.64925;125.3832;148.5269;54.55144;86.26196;182.6434;70.38343;173.9397;108.9903;117.6278;143.194;137.8599;96.20085;94.42521;154.1844;116.0988;105.7199;98.19817;163.5207;171.9766;217.0197;160.3002;75.83335;132.4878;83.67035;122.8601;149.4031;154.8912;206.5997;80.51051;164.295;90.88371;130.0984;149.1862;152.8674;75.48903;87.71322;117.6505;143.0636;158.0025;136.8281;126.9327;125.2585;63.05918;146.4188;91.44305;115.3464;79.1207;76.33611;137.4071;153.2927;166.1143;83.63934;75.46613;75.40566;143.9796;157.4251;46.77837;159.1791;78.77283;69.44883;58.34056;150.6106;102.1587;82.59042;81.705;114.2207;135.2852;69.93135;132.1828;90.89807;112.2597;104.5322;145.1791;160.6222;57.92383;130.1616;62.52465;99.09649;99.97356;70.13895;86.84827;80.70914;106.6442;121.5836;84.87474;104.538;124.0349;99.67398;
82.98946;140.7475;121.2236;96.91395;125.2268;153.3326;126.0769;45.76682;147.2249;198.204;136.8213;72.24535;175.9078;65.47562;130.4256;76.21029;119.2279;139.6757;100.0573;163.8517;69.87242;114.205;162.7902;151.1704;91.83046;133.006;161.2407;107.9821;151.8678;131.0864;180.2526;95.18972;123.9892;155.8746;155.3264;148.8608;138.7074;84.23395;139.4833;72.01012;95.64601;107.483;72.64384;60.83683;122.5069;68.52575;86.80719;74.83321;128.005;90.92268;91.09035;85.91673;102.1366;101.4809;86.76134;153.7805;81.35533;146.8236;78.82475;90.78239;96.1253;91.70876;132.5806;82.36258;154.8125;98.99839;62.74915;171.2316;134.3857;130.4593;104.1794;78.77734;156.6495;157.7747;53.53885;76.89249;99.37831;97.21797;86.73383;98.03625;103.3638;108.6811;87.00891;92.68748;93.46116;108.3533;160.6263;83.35159;76.46107;116.2569;116.3424;71.74541;168.0231;88.93983;88.09161;139.0584;115.216;65.37698;104.2779;158.4536;132.0663;109.0542;178.3198;72.98595;98.24917;164.6731;133.9963;82.86543;189.8169;139.1217;140.6386;81.98357;170.6547;197.879;185.2217;156.5771;59.91259;123.0093;113.4347;75.23618;100.2856;187.4774;147.4421;74.53021;139.8626;138.2135;74.09703;92.81015;103.8882;134.6956;119.7375;102.0694;133.4485;141.9226;122.7472;39.7264;126.3625;171.9839;144.48;68.72879;163.2958;73.20332;119.0842;78.49696;125.7008;127.3575;89.32475;142.4995;71.89916;112.5921;164.4829;140.3706;84.42157;145.9219;148.0894;99.13211;145.0969;139.4638;159.8964;104.9137;145.7045;153.4295;154.9739;154.3413;143.7038;74.45308;129.8088;61.99986;77.42867;91.68843;80.25524;57.26177;109.6628;74.91944;73.39172;74.74825;134.4901;84.49075;82.64615;70.51836;103.9016;98.58311;83.51091;139.679;74.36227;159.6819;77.59374;88.36104;79.8215;91.31501;116.913;92.97814;173.5314;91.67814;60.70134;179.8404;135.4101;116.4291;102.604;78.01;133.2447;133.4349;65.82201;78.35196;77.09524;97.15559;74.68465;99.54715;104.957;96.13709;76.7121;78.46722;91.93627;103.6743;164.7928;83.10175;69.68562;127.7242;114.8448;69.59467;146.2239;88.55207;69.03358;150.0911;171.9515;72.36657;79.16929;128.2338;91.58722;85.4883;165.183;67.69805;53.30536;122.5869;187.9997;92.24804;120.2668;128.3958;110.6801;58.92209;170.8843;185.9;174.2514;153.9256;71.61881;134.7125;124.2429;83.60335;97.17809;204.4095;157.517;59.54888;164.2468;133.6168;77.60769;123.5135;
52.40178;62.495;103.6255;121.6817;113.7223;143.631;132.2849;133.1703;66.786;68.57489;98.02612;102.5913;133.251;94.66072;165.3925;90.67193;55.12222;128.6677;128.5133;101.0231;114.9045;118.9489;165.6442;130.4198;93.79623;94.59011;62.60516;111.9003;70.11876;127.1055;136.3769;78.87785;64.70431;88.34485;108.096;128.1072;116.4277;101.4569;86.16977;152.4892;69.24969;74.68335;111.1682;108.8575;46.2446;151.1415;152.6923;76.66163;109.3253;109.2411;113.7119;97.16497;167.8163;91.08158;76.57788;144.731;161.0495;70.17786;142.7082;184.2957;113.0574;71.21712;170.5667;206.4653;151.6114;154.9627;67.21215;143.5258;160.202;87.66824;169.0738;158.4211;127.8999;55.65976;176.6675;162.5774;91.18153;88.10601;86.99725;133.7791;120.2247;69.07184;132.119;117.7383;143.952;78.57529;155.2232;164.1052;175.5599;76.22009;154.4962;93.63357;118.2057;91.46838;155.6537;108.8347;85.48073;167.6659;84.43323;128.265;118.9849;170.8184;109.0516;168.1457;92.80564;106.9628;119.3025;170.2222;118.0868;96.14676;160.6894;160.4228;156.2781;124.1393;141.9;51.05309;134.3613;73.50949;81.16431;83.07657;84.06886;50.81239;79.62002;97.14397;56.79385;74.06805;124.2747;67.94419;70.72665;69.1053;104.113;117.0022;104.4851;134.4579;127.5049;125.3409;70.89395;73.13476;116.3768;97.19966;128.8371;108.24;142.1275;75.391;51.38818;149.6711;151.6479;74.00332;125.9864;114.6164;167.0708;114.5969;88.1304;98.02363;60.762;103.4364;65.1228;134.7827;121.5461;62.43039;84.58389;96.73518;103.3653;117.9864;104.9777;89.18856;85.8942;142.2949;73.49159;80.45274;125.3976;98.99644;42.34521;162.238;134.8355;63.82745;105.16;130.8867;130.1047;69.60825;179.84;83.78144;80.99928;129.6909;160.2535;77.09957;125.5051;163.2121;102.8784;84.1459;161.1438;177.6525;168.8342;156.2656;62.60254;142.5836;140.3797;71.66135;163.162;150.4473;138.5627;62.70922;183.7572;142.5679;82.26104;104.6204;78.67004;115.3389;105.9067;79.48937;148.3766;95.13182;148.5828;67.31558;156.0863;150.4838;174.7286;83.43026;136.5743;78.78935;107.7922;106.0487;143.3509;90.9173;97.44436;166.9587;84.85896;135.8037;110.1384;128.9423;73.7244;105.8306;126.9986;144.8798;157.1792;169.3118;121.8605;86.68327;145.9736;153.8956;147.9932;125.6933;149.1053;52.05991;135.4356;74.73984;61.85524;73.42899;80.94558;54.05834;109.1359;63.83539;56.5892;98.5614;95.39828;61.9667;
135.5099;94.04054;189.9007;71.45811;187.5978;111.5999;119.9178;92.67667;189.9617;134.4454;98.60592;68.25749;80.35181;139.1504;147.4367;49.98306;192.499;61.98775;58.13756;60.94611;131.6852;174.9353;91.68832;96.65456;113.2505;110.5896;90.92647;94.61111;105.1901;137.3353;100.1165;91.79672;130.293;62.22468;152.7074;56.50363;74.4349;103.558;104.7262;98.8308;100.4323;88.7373;125.1514;90.44685;92.16724;163.0128;74.99786;94.69293;103.0402;165.1913;124.3023;132.0541;73.83535;84.34034;107.5778;85.64828;63.65405;69.01112;56.45745;174.8977;59.79342;106.1312;77.54279;44.61111;75.52941;89.75193;111.471;100.6225;228.0891;165.5981;146.6885;95.36441;111.9062;61.0019;121.5573;133.0571;86.17793;122.8138;87.25278;153.1641;175.9987;83.42789;42.31763;70.87048;80.19113;85.09544;115.8777;141.891;132.5296;77.67554;91.09361;144.5754;106.7215;150.8659;105.0779;79.55565;107.8148;156.9506;61.01028;52.6651;141.1516;85.47513;100.8065;125.321;170.3582;145.236;156.9841;122.1396;88.81934;164.287;67.72932;125.6849;147.447;125.0561;169.1017;60.01878;130.9317;52.32438;142.4624;133.623;139.3446;65.31616;68.91798;104.4906;102.7052;118.8138;113.4586;106.4161;149.8876;78.56737;157.6044;80.50494;169.2735;91.89626;112.6012;123.7973;194.2597;130.4855;106.6422;78.91798;73.0022;133.769;173.7953;45.24142;195.9718;54.50869;61.90899;62.85662;129.1034;143.1171;83.7065;98.1232;132.8067;111.1985;97.24947;95.07367;128.5613;124.9454;96.67613;107.2164;138.5797;50.26999;122.4209;60.2726;61.71299;86.2832;94.26058;126.4696;99.81961;86.41927;134.0053;97.46222;83.43354;159.2819;91.61556;86.73624;101.8772;152.8002;129.9968;131.653;71.1817;63.27494;96.36125;85.65392;76.12764;61.77692;65.82434;174.3827;72.6143;94.21909;75.87471;58.3045;89.99683;74.12807;96.19457;109.8535;202.5766;151.7843;130.5814;114.4025;112.2427;52.00086;136.3884;143.8232;72.65121;118.3958;106.7209;147.41;186.2545;73.558;53.30035;74.03513;75.71178;69.46608;100.9939;133.1264;150.2799;69.98527;102.8937;144.1071;123.6408;136.5954;110.683;148.3089;128.2317;144.2728;61.30754;83.32837;123.2709;74.03744;102.5534;117.4947;176.8201;132.4682;163.6199;122.6245;75.22009;118.5715;68.64102;133.1438;140.1942;151.4446;177.65;71.48127;163.6222;69.94375;139.3753;163.171;134.2182;93.39843;64.16719;104.7341;135.1611;80.60958;119.4086;108.3393;
84.67766;62.73903;156.0577;139.3328;52.05695;115.4075;78.68096;86.15112;65.25489;175.9034;100.2082;50.62993;79.76078;119.3436;120.4304;79.69402;105.1975;90.22593;118.2454;96.28479;110.401;161.3045;62.41806;154.5329;71.97197;110.5553;89.43161;114.5198;106.6278;73.04452;107.8505;127.9685;141.4416;77.11884;112.7252;82.33022;81.78521;85.16363;181.7436;103.5139;162.7099;114.1324;106.3442;77.45785;96.21783;49.01714;99.4724;48.29491;199.4012;85.52354;81.22641;115.1437;52.97532;84.97617;87.58778;113.5197;140.287;199.8526;124.5813;133.5426;87.39773;63.6065;91.54948;105.0211;160.6216;73.06346;144.3832;77.69347;164.7819;109.5055;98.41339;80.18024;82.91345;108.6124;40.64165;69.88114;106.9777;133.2436;74.93548;73.29182;164.1363;99.06419;137.4617;101.9017;101.6017;150.1684;156.6777;73.76701;75.54386;175.0318;76.40884;111.4885;125.5426;129.1457;151.336;160.4675;183.9133;82.01218;113.9122;71.0518;127.1732;122.7257;147.0387;144.0947;84.74097;181.978;89.48903;123.2954;149.7907;96.0762;103.8238;54.66945;130.4335;131.7607;113.8503;159.241;104.8468;116.5771;74.6273;185.4037;103.3727;154.3916;85.56473;134.0895;95.70419;143.8154;193.2786;72.18665;89.24811;76.86453;139.6882;136.8185;42.16122;137.4296;64.04564;96.88754;71.05045;158.1357;97.92176;58.4173;87.88148;129.6416;102.4712;80.79133;112.6407;99.27531;129.0441;99.32585;113.4286;139.8571;53.47621;155.4341;73.16393;92.82264;102.4647;140.2786;103.3188;80.47057;104.6604;113.4039;141.035;92.34159;97.76971;74.9274;69.23465;100.4234;155.7105;114.9251;165.5376;100.0993;103.2845;81.83349;105.1364;53.05246;81.19293;49.86576;205.313;94.42596;89.97909;113.8041;56.46464;66.58244;74.98643;115.3824;135.4042;183.9055;141.9647;152.9305;86.77433;75.59654;92.16143;98.58131;156.6599;75.71098;123.8514;75.00138;143.2099;128.6746;83.97516;87.45512;82.57325;100.8719;40.01581;72.06198;119.1512;146.9176;62.09949;81.30988;165.8738;95.02888;144.9573;105.9976;103.4029;127.2866;145.5403;72.71146;71.97218;160.1339;90.14565;129.26;124.7952;146.0107;150.3031;196.7433;164.9208;80.20728;124.233;61.06741;85.51522;147.4043;138.8044;182.9252;92.50031;150.0279;59.11604;146.8418;175.9344;158.6956;63.05456;72.91744;111.4926;136.7173;124.7442;114.432;117.8247;131.9007;55.19084;178.0575;82.62687;125.8865;102.8842;93.26707;120.8543;162.4807;194.6495;61.78617;
47.99298;72.97028;87.6115;123.2403;100.9218;83.31306;90.38768;68.25357;59.09797;102.3169;110.3771;131.5151;202.6452;174.7622;100.9841;117.8918;98.93147;113.3862;130.9344;143.9191;67.70351;155.846;101.1873;206.3679;152.2173;100.4961;72.33477;79.58434;96.71224;65.27832;62.31629;136.0841;114.2212;79.67963;103.9883;166.436;113.9321;160.6702;139.8015;99.68779;113.8895;150.0987;70.12228;62.94058;160.1112;94.56488;94.60306;103.043;149.7184;159.4284;156.5561;155.6333;119.0143;123.8774;91.22735;132.929;141.1281;112.7618;136.0039;44.33874;172.6291;69.01542;118.8532;183.2888;107.5894;78.09278;85.57301;60.53088;131.5693;109.2801;132.2061;116.3701;114.7538;110.011;184.4529;106.3814;185.2499;118.6645;90.06567;142.3968;177.786;218.2707;95.55614;71.68982;65.65975;179.1978;172.5067;76.6993;169.1428;83.43034;81.73882;74.64567;164.0311;140.4565;53.07108;109.7575;100.4688;123.4412;93.69577;102.6237;114.4315;144.4117;128.0144;109.1947;129.3429;62.05951;154.742;65.85683;104.1071;107.8561;107.1423;94.34356;81.38854;102.2605;121.5753;104.7951;108.2839;125.1684;91.30077;71.42201;124.3459;142.7717;119.9264;126.9654;99.22812;74.30687;73.69122;134.0685;58.4972;68.56092;92.45463;128.7318;103.4247;97.81289;87.77917;71.6267;69.25509;96.10585;117.2583;135.6888;198.531;152.8464;84.85244;130.4019;102.0935;102.6558;133.0456;128.432;53.00555;162.3503;89.66904;174.4808;188.9419;109.6925;89.07948;101.6469;103.2326;58.52412;64.07395;156.1595;123.5242;74.84251;107.5756;169.6343;114.6816;175.4919;135.328;101.7671;122.5745;142.546;75.24759;64.08753;155.2213;75.17153;78.52988;112.9803;149.7493;147.0692;157.962;137.3023;99.81503;125.6128;79.8222;105.8786;170.6724;114.5285;154.3456;56.19536;168.4986;60.62794;115.3507;194.2314;116.2631;76.54347;96.11445;70.57079;136.9537;121.3358;127.5409;122.6694;121.9832;95.90948;188.9542;103.1558;167.2293;95.00959;69.77597;143.4873;177.3744;209.1434;104.2476;67.34504;54.49028;181.0087;156.3308;59.33005;201.3526;84.94743;96.08758;89.82102;160.0054;128.3752;52.92395;123.2095;112.1028;97.6694;80.94401;94.27917;95.8843;131.2577;91.65732;131.1868;133.359;79.81261;147.6211;97.85124;97.02105;128.2587;84.33107;91.37096;67.6763;83.40375;145.464;105.0449;105.4322;121.9899;86.48054;89.35429;88.55458;142.4181;119.0325;129.1532;73.20267;95.39496;94.41804;124.7321;
107.4325;67.00098;140.9554;144.8977;83.94863;146.3111;115.1731;155.2025;62.91795;119.2;149.8851;171.0083;89.94279;164.0431;55.33781;171.1863;95.66069;175.1961;110.7787;105.5899;120.6394;82.68549;126.3932;180.0304;158.5842;81.29636;147.8133;108.4148;129.5313;144.6976;140.9471;143.0437;97.62379;154.0027;175.5033;99.55112;126.9593;174.8121;60.70658;86.73881;70.47128;81.83883;64.52197;78.79655;64.80146;116.121;81.06526;67.57693;97.2157;82.44419;51.55188;63.51104;80.05445;119.6081;132.0108;102.1571;177.7232;93.25346;109.1477;78.91538;90.5463;80.24569;90.07021;123.4068;122.1458;128.0918;90.21988;76.88821;159.6764;149.3439;88.15143;133.5328;113.7844;119.2975;97.83704;74.66804;99.46618;71.43774;76.31116;106.9949;130.4691;151.8828;76.13723;81.89404;63.49081;107.7512;116.3278;177.0419;98.41109;59.76559;115.2322;69.35271;86.51198;134.529;94.83305;63.16563;149.0519;137.6072;73.28426;59.53325;138.7722;163.8806;79.03835;130.0602;81.58938;73.30819;96.58222;142.9443;87.51672;156.3103;151.5247;108.8939;112.1874;127.8456;134.2866;136.8038;169.7486;74.93401;154.1752;122.4908;96.09628;145.8371;129.1266;139.8419;77.26122;121.0627;129.0536;69.50886;125.1677;74.28534;121.0932;160.0009;77.20921;129.7083;97.80035;162.3785;57.74561;106.636;133.9312;143.2918;86.82638;150.1518;54.91038;155.928;101.42;196.3853;93.34251;81.29295;120.6611;82.91891;119.1842;161.4704;147.7758;92.14623;129.6154;86.66749;123.2172;115.1004;139.1322;130.0194;109.1487;162.9109;158.826;114.6824;117.079;155.8534;49.70653;93.45948;61.26538;70.61951;57.8695;62.69331;61.06093;104.0302;82.35693;61.49083;99.33551;96.96564;43.00545;49.08601;79.73646;120.3062;126.8891;92.44111;166.121;114.4375;108.1745;71.19423;90.88271;66.08483;84.31757;113.4873;128.2774;134.6696;79.37854;91.04831;146.0712;130.6539;74.6658;138.1809;105.6147;115.5167;99.01346;64.68948;100.7218;69.68058;73.54229;101.3361;126.2539;169.6347;66.58157;66.06713;61.58046;107.3189;111.3794;160.2347;89.82753;76.94402;114.2321;62.12689;86.84081;115.9913;83.46829;39.52141;154.8659;151.706;59.43163;100.2558;133.3065;110.5509;66.61842;115.5009;84.72568;79.63244;120.1875;121.0809;84.12543;131.1977;118.9805;107.8608;109.1616;169.4693;138.5287;176.9476;142.4243;61.7732;135.8635;130.5877;104.5922;147.0871;137.219;168.899;57.47533;106.3565;150.2821;82.39316;
88.75971;116.3553;133.8567;162.7889;144.1713;73.69922;147.7013;92.75165;144.1955;89.09128;111.4902;134.2971;186.9944;193.7734;123.2881;76.5616;55.87442;154.0757;150.4367;60.27501;148.8194;77.45637;82.15414;69.02171;124.9738;121.7414;62.36635;89.74899;119.5484;89.79828;108.3807;74.40284;95.80344;109.0217;111.2528;128.9561;124.888;70.94457;194.9377;52.58221;88.38947;116.9447;110.3481;64.46298;69.06023;99.47393;175.0362;85.90845;97.02351;140.8403;82.66399;63.90181;83.8551;127.6944;145.3931;99.52731;82.05914;93.27237;87.92607;136.8275;85.18359;79.84196;106.0832;174.1553;61.57037;98.26794;91.99687;100.0721;93.88496;69.36768;96.39478;129.8271;174.5991;148.5309;141.3793;124.6346;97.53097;85.76626;161.1228;134.6346;55.68128;146.1031;83.66477;170.1495;148.7083;98.79014;80.82889;83.15392;79.54893;58.03156;86.09277;119.7259;128.6173;51.71523;108.0572;113.4875;88.50088;128.6316;116.4491;118.4301;120.9965;178.3273;101.6107;55.44652;157.2954;105.1336;110.5682;82.71848;120.1521;141.2126;210.8681;105.9867;79.92139;159.2434;65.89201;107.3582;151.0012;120.1039;206.922;45.07201;154.6277;98.42323;117.2366;209.2747;139.5132;78.61455;112.7706;127.4972;108.6043;126.1438;151.2526;136.9408;159.5752;68.18018;139.3737;91.62585;162.3915;97.79536;134.1227;153.7029;188.0818;190.1699;122.1671;69.91406;49.64757;177.2067;141.3525;64.42777;180.9045;90.05686;102.9658;76.34222;138.1494;150.4305;57.25863;94.87806;99.36362;80.37821;107.8146;87.48325;112.8572;118.0716;123.5952;106.8081;138.2874;69.40915;175.9086;50.59636;100.6139;126.7175;130.5604;78.95797;69.69411;101.4595;166.0053;79.59344;86.83983;161.5405;74.51376;70.9925;108.3709;148.0796;165.0197;109.1425;88.94169;115.2484;73.61115;144.2641;74.9043;73.51821;108.5794;200.9789;77.29306;101.1522;107.3187;80.30485;96.07089;65.95186;80.7173;122.1757;188.8642;157.079;154.4734;141.5816;106.1882;90.4349;156.1324;132.4436;49.56429;160.0036;78.94841;181.0305;168.3612;114.3171;93.0015;88.11691;86.32663;75.60777;71.93372;126.6886;115.9108;46.65127;78.53859;175.8002;81.09974;137.7748;162.9905;77.06398;155.8457;142.0594;49.78201;58.77393;180.9646;125.8518;94.75439;90.1516;131.354;183.8371;175.1475;98.76613;78.83181;135.1674;79.68293;107.3966;116.6666;165.0878;163.4619;70.20116;131.2195;101.1791;151.1972;213.9122;122.7565;62.69255;72.93072;73.78313;
213.8605;66.68109;108.1765;132.9152;77.32733;141.4105;166.2259;204.0997;93.45468;159.664;152.5403;83.67588;87.78216;61.55162;106.0887;115.382;102.0889;115.7767;111.1504;119.3424;62.44824;136.8301;157.4987;168.8768;112.1458;114.9312;88.26865;136.8334;119.0065;148.8259;94.18948;95.66029;185.9294;52.62747;113.4241;149.9716;110.1858;76.65524;115.5328;100.6826;138.0461;112.6921;133.9356;156.1443;72.00967;153.7077;181.4069;138.8026;163.585;160.369;39.62454;103.1657;65.86147;93.53059;98.84496;71.43682;70.21349;94.31877;89.47041;90.05575;110.2354;158.733;86.15984;89.88599;100.4327;110.9329;81.20358;102.5662;152.7782;100.8134;140.5952;123.984;96.93617;89.36464;108.8598;140.7218;87.35108;115.7071;70.4137;57.2387;165.7759;112.1433;86.49772;96.57368;114.997;138.3438;118.6972;84.45987;112.7826;42.13858;120.6371;94.62608;148.9202;127.759;68.34397;85.16544;107.882;74.42527;101.5843;146.6046;67.19843;60.49517;97.44053;72.93758;93.62147;114.5944;92.83341;81.4305;112.2245;139.6803;78.82561;85.64646;170.332;157.0976;57.28057;130.5377;82.69479;108.3951;143.2943;158.1617;96.00416;160.9863;145.3901;136.8227;115.3549;185.522;210.485;179.7805;199.1465;57.59453;111.148;125.5024;82.9492;139.1814;173.3098;190.4387;90.84564;150.8467;157.6852;94.88058;108.864;67.29031;118.4377;108.3636;95.59312;116.0563;114.6444;109.9213;64.51393;151.4568;151.5234;187.537;96.49105;125.9677;88.53508;138.5715;114.623;136.4857;99.0269;81.55737;175.035;47.96151;114.4842;138.0095;115.3399;77.25387;117.6972;90.59991;137.8507;111.0317;137.0876;167.5527;89.88731;166.2068;193.3193;131.9391;160.8523;167.6281;41.08942;92.89756;68.35124;108.414;91.27767;84.41979;68.27968;110.208;82.59544;82.9685;105.9049;145.1648;89.79948;74.69366;97.24192;100.8533;85.24329;95.74323;149.6551;104.7766;145.1033;110.5128;105.443;88.13085;104.7194;142.4345;106.8277;125.8256;76.99023;51.58215;169.3423;114.7548;91.91991;89.57434;110.375;160.3865;112.2553;96.42388;110.3279;52.96678;112.6317;87.35758;143.8799;115.6176;85.05869;77.04579;99.01031;56.07846;139.0969;109.983;70.9672;82.53612;81.92107;82.95697;109.1515;115.0829;63.58524;87.1831;120.5089;143.8833;53.57273;77.83445;167.5374;97.93578;88.88726;109.6372;51.07293;74.90311;147.4281;194.8551;104.2093;115.1442;110.6614;142.2268;87.37864;136.4092;166.2776;155.4458;
67.98674;115.8991;95.45572;74.39733;141.2559;46.79288;66.11028;83.86515;143.153;85.33692;92.93046;67.53197;124.0603;82.17035;60.34384;180.7123;92.19464;143.5448;90.78529;85.03141;77.31197;83.47593;102.7979;117.6623;170.4016;57.89452;75.38502;119.2555;119.3428;82.42515;141.6868;115.412;179.1619;145.2914;79.34662;96.32999;62.45248;71.46609;87.89724;106.3348;131.7953;82.24151;106.4276;62.08445;105.9144;129.394;105.6834;73.43085;59.35881;126.498;69.87141;62.95746;124.7211;83.83437;63.59146;139.8438;109.327;73.4893;78.00668;173.2612;126.0484;73.69347;130.5906;84.53219;76.6983;165.7659;171.3142;104.3459;196.6331;105.3758;124.9874;96.24036;186.6607;195.1217;197.9532;150.3748;84.01134;102.5967;91.07516;111.5872;129.0808;165.5792;164.3736;72.31493;137.7115;136.5991;72.94286;120.4356;105.3971;94.16016;139.0276;59.81367;124.5952;103.5747;171.3074;66.99039;180.425;180.9092;168.3228;83.58367;143.5641;60.15437;146.0976;84.63332;159.4726;115.5609;120.4465;122.4082;89.75245;135.3864;111.8428;138.2985;81.00258;154.5633;115.008;90.12841;110.9191;140.2937;143.0499;102.3374;140.1318;176.9302;131.1473;154.6863;135.7832;51.17734;84.4106;69.46971;62.10612;92.21677;97.03124;68.21696;119.4983;66.7016;68.40214;85.45915;152.1597;75.14843;77.10649;74.76954;139.9672;93.82063;79.36108;196.4086;97.69414;148.254;107.8031;80.3152;68.53667;91.70372;109.5946;125.0283;188.7062;54.82067;74.3715;113.2605;121.6529;76.52132;136.5847;109.9615;165.7384;122.1236;81.7563;88.60961;46.21054;94.10316;85.51472;105.0389;138.3648;75.20307;91.5818;68.64659;118.201;141.8445;124.9542;81.10675;63.63685;135.2986;86.71641;58.77887;112.7932;90.75735;64.99478;144.6013;121.9461;73.11933;79.93436;165.4694;122.5614;70.28764;122.3548;79.8482;62.10612;143.3793;174.7794;97.2194;167.3559;123.872;116.0582;96.45346;192.0477;184.0117;179.3315;160.1694;89.96022;116.5146;105.914;120.9696;126.9759;178.336;189.6554;68.59992;125.5853;136.3221;69.71175;126.51;117.7925;93.73766;141.596;55.27252;121.1285;99.52956;150.162;68.60358;177.3546;175.9949;143.8049;63.84345;155.9327;72.59159;145.2477;80.70866;151.6221;133.9446;72.52984;144.7088;69.97362;174.9905;111.8775;152.7836;110.1308;138.4166;96.59505;102.5261;137.6122;122.2998;142.1245;111.3388;179.9657;156.6425;105.2874;120.1941;131.2996;44.52081;123.1897;72.54221;
170.1165;82.28126;99.78194;77.32046;118.8478;127.2548;90.03944;114.2239;131.4437;170.744;59.39213;194.2125;129.7152;113.5964;54.78879;166.972;81.94656;121.0044;79.48949;165.8048;105.9079;76.84179;147.7868;93.92126;132.3742;150.9281;127.5949;108.4126;90.92496;136.4761;128.4919;118.6722;126.7872;122.0387;114.2609;128.3787;134.3075;125.5398;147.972;147.2556;66.03374;83.69985;82.80742;108.1605;100.8308;65.01859;52.78205;76.07057;85.32986;43.15034;97.80618;132.338;55.62893;91.02071;65.02994;141.5265;121.5107;114.2184;178.9767;133.2389;131.5987;106.6869;62.08621;66.89279;123.1415;136.6104;107.0997;140.4819;82.36832;69.90307;144.4341;115.0965;107.871;134.6121;115.556;219.0125;92.36678;51.54826;63.19654;76.55678;104.319;83.87786;109.6477;139.2953;82.84539;64.79999;71.83221;109.6855;120.1784;140.7354;78.66043;98.12801;72.10757;109.7826;95.86817;116.4076;84.64772;59.61325;164.8754;114.5563;54.96891;79.04189;147.6823;132.4434;88.58827;113.3976;99.10562;110.8047;148.1073;137.0647;83.96375;116.2853;144.3214;100.2469;113.8114;170.205;164.7328;229.1392;132.3879;70.07021;160.8574;150.2473;104.7364;171.2987;160.7503;205.5149;52.97051;119.6418;169.1731;78.9123;85.3102;97.7496;107.4163;137.4654;79.37659;128.205;124.2417;154.3756;67.63116;196.4795;121.6361;131.5474;63.81535;161.0233;74.99548;133.8588;88.86359;165.2979;116.2187;96.81434;126.5289;73.31129;140.8265;140.4371;132.29;115.7527;88.77798;155.5828;136.7358;115.8904;125.5792;118.5595;93.76021;148.4099;119.8921;130.1585;138.7608;161.1518;61.01337;73.33112;88.06947;105.4133;91.79272;74.71005;64.72863;73.31651;79.20541;52.36427;103.3346;130.3836;62.39169;108.6594;54.01721;117.5127;129.0178;115.1201;173.1376;134.074;135.238;118.6254;64.75925;65.72438;117.6777;121.7647;85.18819;161.7731;65.29509;73.86456;145.9036;131.8186;99.8019;129.8667;117.5877;207.9686;88.75477;56.72245;72.92752;74.77106;93.7176;87.07085;113.0839;137.6315;84.396;80.33083;67.34827;92.3554;127.6448;141.7407;74.8057;98.8448;74.80791;121.8886;99.03942;113.7662;79.75986;46.60559;93.09226;164.0384;67.29151;99.20966;179.3172;130.1079;72.33181;145.2858;80.11732;110.6044;93.58581;157.5336;110.5813;164.3337;145.6603;107.9511;86.51286;166.2226;135.6149;207.4228;143.9418;62.34394;184.2144;104.1273;89.80317;154.2408;193.9144;150.6479;89.41908;159.1103;
157.9108;105.0688;78.86978;104.783;175.2407;64.32642;73.04249;136.5063;106.5411;95.95515;78.6335;128.6328;147.7029;183.9422;117.0744;88.13261;144.569;75.92097;160.8079;132.5997;128.8319;181.5706;46.44918;172.0205;67.64637;117.8972;152.2136;114.4349;105.4514;79.06617;77.36776;128.911;130.1548;166.2713;93.06005;116.831;60.4;159.1192;73.65766;163.0875;91.78135;106.0181;142.3802;141.7322;154.9231;101.336;93.83422;82.50227;164.9154;171.6965;83.71861;122.4436;56.83521;104.0084;63.48404;118.7352;141.4503;79.3936;92.78174;95.64507;113.4315;88.50584;130.7526;79.5265;159.6473;97.64486;88.93806;115.1877;74.4982;148.4892;84.47644;77.87245;121.3497;101.2132;70.65947;78.36392;109.8781;135.9026;85.82574;104.7449;158.2455;83.34144;114.6018;86.14801;160.4131;149.0247;125.523;98.73669;80.92918;70.94887;106.9647;67.42226;101.0711;71.84983;137.6205;99.54486;112.2183;117.1941;47.62433;57.69566;58.11086;103.112;107.0919;186.5199;144.0858;112.4787;134.8352;78.08443;68.75634;127.1053;158.0095;88.20345;162.8639;86.26186;191.2981;113.7964;70.98376;79.86048;83.75491;84.64435;64.8103;86.56069;112.8982;123.6821;63.48357;91.65424;165.6664;73.82588;179.2749;109.0645;105.8862;120.5441;186.6782;64.65734;74.6482;156.4685;112.6933;89.35296;82.2666;146.404;142.3992;155.5059;124.2242;97.81729;162.8797;60.50165;145.5937;139.4461;125.818;162.894;57.9285;202.8128;63.43946;103.7515;146.5307;142.093;102.4468;75.84863;64.10527;136.7081;143.699;172.229;120.7736;127.2301;65.79214;161.9311;72.08639;179.578;93.86568;100.0339;147.0664;153.8449;148.3578;82.04108;97.67344;90.46558;179.5238;148.0387;73.00164;125.89;54.20773;90.64272;74.54743;142.7557;135.4226;72.46882;81.75182;109.8039;105.6186;88.23642;115.4909;79.94825;166.81;101.8646;116.1903;135.1988;80.04398;143.4233;75.06735;91.6499;127.9101;100.8303;67.7888;80.38132;99.79459;117.0139;91.42566;107.0821;164.8065;66.83453;102.1121;97.22751;155.379;125.6445;130.7631;123.3624;76.385;64.40832;95.09512;79.38832;93.70388;71.6071;142.9629;71.868;121.2415;100.7041;61.42042;93.76154;73.40317;70.53815;104.4808;183.9305;155.5877;120.9374;90.14904;101.4809;47.54799;86.77802;162.4565;88.22411;152.4697;109.4135;160.8155;136.3141;98.6181;54.41448;116.0109;73.74991;63.69059;85.26384;145.5029;152.714;64.54676;76.72345;149.6893;65.29311;
219.0224;118.2109;83.19452;126.5775;52.55262;85.37769;144.9878;131.2216;146.1823;52.92262;162.8185;71.52531;111.6676;177.0903;148.3739;59.1274;88.91435;88.36099;144.4422;132.8616;135.4185;92.7544;141.956;104.6651;173.514;91.02144;154.9651;79.69831;96.52882;131.1534;170.9322;172.198;110.1694;67.77984;93.91438;132.8585;116.3368;63.63133;182.06;67.52603;80.64277;57.57188;132.8785;138.9803;57.02742;101.5008;138.4151;121.5997;70.65439;100.9188;86.1202;128.5578;125.7311;111.5971;135.8776;71.83138;136.91;58.85645;69.92342;117.0254;80.27969;83.00068;63.14611;91.97081;177.2102;101.2394;92.81002;145.3218;64.67246;56.76278;111.1065;151.5012;109.369;123.1165;93.41116;91.55509;73.07446;125.5273;78.73531;57.03676;86.03461;163.946;105.5251;122.8835;94.34239;50.28902;92.02421;96.35443;106.9366;123.0865;189.3684;139.8591;115.768;126.3126;92.28351;85.18795;140.1149;141.8538;94.89125;130.6996;65.0519;175.0742;180.3958;83.9324;71.29221;72.14593;82.24533;68.37502;75.4878;143.4935;148.0493;83.5377;68.8635;149.6087;63.55716;177.7857;121.6078;104.4407;129.6409;187.5168;53.23197;53.59678;130.2685;97.46927;69.63421;110.0259;138.4673;133.6019;207.804;136.4022;87.47729;143.3486;58.44031;105.8788;148.7726;107.0944;157.3205;56.25127;160.2708;75.92638;119.1775;204.491;149.0978;63.72646;86.1801;87.3108;119.4188;172.0949;117.3747;100.0303;154.193;113.7929;164.0969;90.33985;158.287;75.15605;96.76305;143.683;179.7314;179.6739;97.03011;81.38168;97.36057;142.5264;125.0006;78.13056;182.619;50.34777;84.48489;61.18773;129.7891;138.3641;62.44348;118.5525;136.4944;129.3121;65.78267;99.88505;66.86424;161.6436;110.3087;115.5747;145.1539;80.33514;128.405;55.36186;70.95613;108.6219;77.24607;88.88907;72.50558;90.25455;162.3744;105.2922;95.76186;143.2403;66.3061;71.21693;105.1527;131.4189;116.8868;123.8931;89.70886;92.56596;75.96893;139.2496;81.4986;56.62359;82.02715;147.9543;83.63651;143.0944;75.85249;53.59367;93.64909;111.9513;99.43582;118.0132;191.0654;130.6577;112.1192;133.553;112.2911;80.24654;105.6345;119.555;95.07259;139.5441;77.40805;159.1778;145.556;87.45833;64.91721;86.51873;54.31677;98.75588;67.77575;163.3976;111.4789;51.66274;96.48132;172.1738;66.17961;198.2407;108.9094;95.04396;121.7997;190.5731;47.62906;77.23125;130.345;106.2503;76.44272;109.5133;167.3651;162.5718;
126.7278;79.05396;174.4789;75.78482;145.9795;82.44985;154.6704;91.63067;109.9886;143.6151;69.12075;122.5359;115.2005;148.8183;66.59791;147.5167;98.69906;96.07668;129.7135;122.0463;137.877;71.83028;172.4209;192.8568;130.4021;127.2827;153.0825;36.22843;109.9116;65.50857;74.19495;63.90801;76.33002;56.84504;138.6636;65.92059;71.60271;70.93167;133.3798;74.9967;86.77869;89.96906;128.9413;123.5078;97.53117;151.631;126.1052;176.5231;71.07255;57.04414;64.51871;78.09684;104.5614;84.80974;113.7641;59.03679;63.11418;188.5572;148.5651;75.01878;99.56087;116.1486;134.1847;144.0256;61.10175;95.63437;83.42853;95.56576;96.41084;109.6362;134.9507;66.54386;96.76195;77.13096;98.70255;119.2166;116.3031;84.79946;54.66721;125.9753;77.35672;67.71807;127.5523;76.01247;61.01605;113.9016;159.7228;85.8853;83.58427;130.96;151.0888;57.66593;151.3886;72.02047;78.16502;103.4465;151.7971;86.92667;190.0666;118.9964;125.3617;78.03178;177.7066;190.3021;191.932;182.7213;87.99648;158.6177;131.2812;77.16676;164.6418;184.7126;152.731;42.54079;133.9559;119.3002;67.53791;84.81006;69.22877;99.41145;146.7469;116.5649;153.3722;90.69804;132.7246;53.66468;145.2307;193.3533;141.5602;82.80202;165.9522;77.99819;131.8843;73.37748;136.5113;106.7259;105.494;128.0005;76.0009;132.5763;118.0964;123.2763;63.78944;133.6476;111.0725;89.13592;147.8188;123.1425;145.338;74.15565;190.6053;203.1782;155.9335;135.5614;167.7949;36.68404;122.8843;47.55028;93.06156;64.47338;82.51424;59.83371;129.2387;66.00732;60.45026;59.55664;115.4259;86.86993;78.57025;77.69701;137.764;131.0889;99.20924;121.4425;121.6295;159.209;78.82561;51.97202;76.83268;77.31493;111.6857;84.00014;128.0053;63.47238;79.44037;201.4859;153.0728;69.09582;110.7294;98.17401;154.9779;147.9995;61.62527;94.89492;76.73311;97.38613;82.10609;94.25885;112.8395;75.9616;89.15429;67.1805;99.10916;120.1611;116.9067;67.96426;49.34579;114.1614;79.73737;58.55254;145.4443;76.76369;65.3365;111.7498;171.5368;89.27715;102.23;141.7658;155.6331;52.48799;165.0914;58.02692;96.0321;131.8475;151.9482;120.1373;163.5872;154.7721;127.9227;83.95462;139.4902;205.8589;144.4268;167.8027;90.94714;123.4968;104.5064;54.7477;107.2333;183.0013;216.8423;72.68554;137.7711;146.0761;94.83035;114.097;99.85786;150.6996;139.1;113.1265;128.6192;91.00652;125.319;53.04074;165.0275;200.9782;
116.4091;135.2296;125.4802;129.0234;115.8171;40.13456;77.2802;53.42684;85.10067;105.0736;91.50612;66.45094;104.5329;70.83352;51.75142;92.7205;126.7346;73.61757;89.84941;61.69397;112.1062;108.6514;71.66743;152.0416;113.7009;126.7969;88.39191;90.8754;88.79934;96.15914;106.2851;128.808;130.8805;60.97745;82.86346;171.5831;152.9226;71.29215;140.7094;150.9233;191.7353;124.2904;87.43298;70.58041;92.04576;98.72038;78.55339;85.30624;160.5592;69.92479;119.5076;61.3583;72.33606;104.915;126.2935;97.5923;94.03397;103.2159;73.65517;94.5359;167.2697;67.82202;75.1886;153.3917;97.74564;49.32924;69.33429;129.1351;107.7363;48.84428;104.326;65.44478;99.81141;142.804;149.2672;82.80192;152.4181;132.8569;91.66492;102.5608;155.9465;188.1022;187.4927;129.3662;67.49958;121.6293;93.33289;81.86952;161.6196;143.1949;146.0095;66.33361;153.1744;149.2492;63.0038;132.164;66.22391;98.59127;146.0146;88.46559;154.8624;86.4895;156.1732;96.39622;197.6224;150.8552;165.6732;51.63718;183.426;77.51686;126.4501;71.92463;178.9043;82.24026;102.9815;115.6973;55.94997;116.2087;118.8332;166.3331;105.1761;105.5725;105.649;115.6697;148.2933;116.0057;143.7635;94.08073;129.7885;134.9527;95.3885;114.3595;113.2131;44.72685;71.04192;43.49657;81.2366;96.03608;91.15599;57.07611;105.6503;81.4931;46.3573;95.6579;125.064;61.34507;60.72096;52.65042;116.0231;113.7396;63.57793;155.5721;118.4055;102.4296;79.49821;64.87583;77.67223;100.4302;91.0359;118.2102;138.9558;59.56272;62.27309;157.6049;148.174;76.83454;134.5863;135.4952;179.574;113.3434;91.71471;63.23549;91.74791;110.7706;73.58286;92.2613;154.0962;57.82077;90.00455;56.71392;75.16323;110.3157;117.6399;104.8376;86.85975;90.28414;76.53057;80.03143;151.7835;68.40368;63.08193;135.9556;110.7453;46.61483;53.23886;122.7784;103.4626;59.60555;103.7856;53.17191;83.38992;142.57;165.2125;82.00374;151.9594;142.4479;87.02388;105.0244;156.7373;165.1758;154.4874;128.4439;69.98967;136.8531;90.31701;85.66013;152.1698;127.8906;150.0466;54.28175;138.3712;150.1114;56.35418;108.5298;111.1658;128.9519;101.0229;88.71119;150.2794;125.7904;135.3001;85.26192;150.6579;187.4113;142.6806;56.33244;146.6761;85.53661;115.59;109.0991;184.5159;93.56908;84.34801;160.2149;85.42595;116.188;128.8073;112.9451;109.8351;114.556;120.899;120.1194;113.4644;148.7298;103.6257;72.13311;
76.01478;145.3273;122.3561;142.9289;80.97504;69.77897;87.11855;125.7146;88.04063;63.02018;85.29165;178.6409;116.0055;76.6768;81.07575;67.60538;91.18237;78.37283;82.97749;147.5834;166.0405;110.5414;145.012;99.60814;97.2037;61.64056;126.105;166.6073;54.16102;155.0773;110.0554;176.1414;153.1995;119.7981;41.76545;108.3139;85.86804;73.97964;121.9726;122.8545;123.7645;82.29102;103.0962;184.5912;118.4364;159.6677;176.3595;143.4458;167.9716;174.44;54.76938;91.00734;157.2802;90.913;116.4528;140.0132;179.8838;161.8003;197.7062;128.926;69.35222;117.3062;71.62232;87.23303;127.6445;117.3225;164.9831;66.47994;133.6052;60.75206;125.6697;175.8525;158.9467;62.14845;89.96196;108.4947;148.5227;93.82121;116.7585;110.463;163.1488;82.78584;143.0696;108.83;124.8778;63.97382;119.4043;100.682;178.0599;140.0742;98.44674;94.31134;51.5782;171.6904;166.6232;56.33825;171.4593;93.82773;49.73335;93.9448;130.9014;159.4586;91.19168;83.10351;108.7699;120.2561;96.66618;130.2841;118.8916;146.2078;156.7977;131.5477;183.9716;70.35072;110.0341;74.90772;62.88733;131.5331;96.59813;99.28485;94.82858;105.2899;132.4958;97.73931;85.7479;114.4215;74.16365;52.25301;96.71783;158.9091;129.4246;136.9131;71.24635;90.09297;81.12807;126.6804;94.7526;72.33399;88.39367;174.7171;112.0981;73.84634;84.15786;51.75854;93.35292;75.05996;68.52623;121.8303;130.5993;136.3315;121.4756;80.09866;88.4275;53.58595;106.7117;168.7191;58.12562;150.7935;97.06936;161.4641;177.6531;131.7017;43.8046;103.81;75.12915;99.51148;107.4566;122.0437;129.2764;92.74278;104.4374;181.8922;114.4526;161.3388;173.0374;120.7866;168.2448;168.0007;42.06487;73.92406;122.8872;118.3043;89.78716;117.5801;164.2255;154.1837;172.0606;132.7863;77.27434;114.3274;68.22224;83.27937;141.2266;130.5905;168.4391;63.57801;131.0196;76.9258;123.799;183.8693;164.1835;76.15966;91.97301;104.7495;148.8545;95.78363;123.5397;97.50414;154.2099;79.52667;121.5337;90.80236;104.1539;79.96446;104.1572;87.98995;162.4817;132.9895;80.61111;97.61711;58.43961;168.0826;147.6631;56.66614;177.105;61.84135;73.74133;107.1601;103.9825;128.2628;58.12814;87.58812;108.0291;142.0944;97.9235;114.8105;109.2771;139.3884;133.093;112.9424;160.7476;54.25932;158.0359;54.80086;61.41533;140.6794;79.86819;83.10398;95.51773;83.86398;97.08568;120.5017;74.71651;143.9107;59.29291;64.86356;
42.66512;73.38042;87.41831;84.91113;101.7526;113.0924;139.302;69.33904;84.80992;165.3428;85.07328;142.9153;130.5028;104.895;129.9662;173.0221;53.68147;74.1118;180.3693;77.39545;85.57278;108.4875;137.5744;163.2719;159.8768;165.8103;91.67085;107.4071;78.10368;113.0768;147.3645;134.3151;193.6894;79.6284;181.1837;66.32727;162.776;134.4779;174.4933;83.50155;89.97784;67.0721;126.1175;96.9911;150.8619;97.95329;120.3647;76.85663;143.148;119.6463;179.8996;82.59612;107.5082;140.0458;178.9034;151.8146;124.297;107.4639;58.99422;109.4928;133.9484;48.80642;148.2153;60.25562;51.49646;54.97231;136.1487;157.0634;84.00639;84.33041;121.1136;122.1054;80.60382;115.9057;88.74715;125.0103;131.9899;121.2622;158.0665;68.87463;135.0771;66.20844;101.1525;86.52937;97.29472;94.7267;70.60262;124.971;124.5389;133.059;97.19535;100.8307;96.79906;81.65517;114.1768;162.4761;164.2547;152.6448;100.0049;76.79945;109.8819;91.07404;95.08447;85.57372;90.32068;131.7236;92.42094;69.00798;111.5006;56.43245;73.68726;73.03964;89.95026;124.9309;174.0767;150.5964;125.9735;122.1803;104.1171;73.31934;135.8027;163.8578;56.60284;94.11574;66.18729;133.9536;138.6245;81.84836;42.36678;72.15301;76.68681;71.70874;100.8283;116.6154;122.8823;65.09161;67.70924;174.4105;85.16193;147.3311;141.6308;106.3684;144.3259;171.3822;56.82889;49.472;146.1133;86.88531;85.3112;101.5611;142.4469;180.9209;138.7946;150.9904;88.35236;101.5337;77.08991;102.0397;156.3026;134.8418;196.0247;82.79578;163.2146;52.2019;159.7973;141.3496;151.7961;78.31488;74.52138;77.66911;124.6313;97.75121;161.0397;102.1205;130.7959;76.40764;153.6517;92.80553;144.5071;90.88474;107.6781;135.2071;180.4616;169.8081;106.3922;93.12376;57.51102;109.3157;124.1594;37.87386;147.4453;61.3522;47.08433;63.44319;130.3756;142.9355;81.72667;83.70662;110.1648;105.4103;62.95387;120.812;89.89034;134.0235;132.7767;119.2588;159.8601;69.23978;135.8508;51.94335;82.82352;101.7953;97.29946;84.63827;78.15401;129.822;106.616;117.0485;95.2888;100.6608;88.50537;67.31119;83.02517;192.7724;129.4137;113.4504;71.23996;61.78984;65.35558;118.831;85.36639;85.03979;59.22697;155.24;102.3524;108.5393;97.9883;94.07278;86.1744;102.3997;83.41177;91.69429;145.6319;136.7698;119.9028;146.6368;100.5208;73.71658;118.8597;174.2858;97.44046;105.2681;89.56041;124.0838;180.9352;115.4772;
64.2952;84.18347;100.0957;96.08923;109.0589;126.9796;163.6206;103.7044;129.7788;74.14432;132.5647;61.34206;115.6353;114.7076;150.01;172.729;64.8272;80.88762;68.9925;136.4678;127.5066;53.6558;122.6628;75.44105;74.25999;68.24281;162.2288;115.7172;92.84692;75.63887;102.9727;127.7975;88.33858;118.1602;82.40244;162.788;152.8044;152.634;144.9454;100.2342;123.825;75.71965;77.71846;118.146;78.81731;96.73505;59.70441;134.3686;102.2433;82.17187;81.72041;141.8573;98.24239;78.20271;93.14513;196.0093;154.5871;150.8404;83.19275;107.5525;119.9018;83.13321;53.17763;69.33408;64.82143;152.0053;71.53605;71.4904;77.24313;74.8085;98.40585;92.03249;75.46871;103.2999;150.0602;106.5378;147.732;115.5659;79.90893;77.16725;94.85613;147.6586;66.62486;119.3793;72.20144;169.5701;110.8383;91.46328;64.47228;78.64328;94.85442;48.24443;127.0624;110.8425;117.0738;82.81049;94.03434;182.6284;77.16244;176.2814;165.2981;140.2146;125.4909;195.8801;49.16957;77.79499;128.8893;95.73746;78.8371;124.6186;115.5271;165.0397;143.9497;132.3326;82.63548;121.6532;105.9062;138.6136;130.4622;124.4876;172.2802;66.78626;137.3406;76.41999;165.3365;128.3105;98.76015;62.68574;66.4393;90.53436;112.9464;99.51073;107.4118;109.3574;162.8706;86.262;154.1695;74.97013;127.0704;65.20983;137.5287;123.8671;164.2578;157.3701;71.66889;94.04376;72.55267;121.3233;150.2545;71.84141;125.9425;51.83158;61.42256;62.02011;143.4809;92.07365;98.65498;79.37076;91.46507;112.5695;88.07695;129.2748;95.1477;166.3159;147.1607;131.4175;137.8817;80.39372;145.543;79.59785;75.46673;122.9757;94.86386;103.3918;64.85102;117.9161;110.5931;99.17076;87.42448;126.2177;117.5982;98.50591;91.31619;153.2435;135.7569;140.8623;77.82267;90.55564;113.5198;80.08369;46.07096;59.48651;61.34405;157.5573;81.3335;75.60399;70.42966;58.92192;99.24979;83.10976;92.76472;103.353;155.7982;117.8773;154.3609;114.5371;87.31779;66.13883;98.78758;163.0335;69.82938;107.1785;85.81327;196.5978;116.0408;72.43737;52.52751;71.48273;89.11335;37.102;120.4901;107.3169;102.5536;55.1138;74.55611;149.0498;109.5896;170.1912;142.5139;89.9894;145.615;161.5893;90.58969;72.36506;171.3519;100.7191;109.3114;116.4546;136.6545;120.9639;162.3685;147.8633;126.4643;128.2328;75.6323;134.1978;145.1866;142.0663;143.4251;66.44917;120.9324;70.73376;171.5912;186.6295;141.5536;60.41473;
92.55643;166.9777;71.88454;78.27762;78.86504;202.2357;137.8974;140.9039;85.86787;111.9788;66.32855;88.26036;94.0349;66.03361;73.81816;170.3655;77.24518;76.59113;74.4145;61.86407;84.23847;98.10266;71.632;140.9067;133.4666;124.5391;79.31851;122.2709;91.20136;72.58377;126.368;175.8991;69.1954;111.8338;78.19791;184.5562;123.9567;99.74738;54.37965;94.71345;61.59287;99.10851;103.3551;118.75;136.8191;60.23542;113.8666;143.5009;55.62455;116.4844;133.0383;139.733;135.4422;138.3212;73.6729;84.04276;176.0411;100.1049;69.48829;91.04116;182.2164;117.0404;209.6698;169.519;93.77888;173.3006;70.3082;110.2853;122.8951;184.2004;175.2035;64.62025;144.0521;91.29518;120.8126;150.4838;170.082;69.30102;73.05357;100.3968;116.3871;102.9272;117.9218;103.0491;146.5085;109.8658;125.7643;105.8128;102.6181;67.95718;78.34055;140.7246;171.5517;152.0667;90.87639;106.531;77.35968;135.7946;142.9568;60.65532;139.3788;81.65678;63.94321;78.82638;105.5381;175.8973;94.70274;94.80802;123.7111;92.78326;106.8448;98.91753;83.21478;114.3891;138.3095;149.3788;161.735;63.13494;178.8009;92.79504;123.32;123.8979;93.49132;81.15818;86.93491;89.22147;135.7598;124.9154;105.8532;170.8987;67.47375;84.55257;96.75105;189.4732;155.5538;169.7206;78.58913;109.988;76.07198;96.4688;89.14652;73.57323;59.23432;174.4019;101.0381;86.60069;90.51655;62.70368;92.59292;119.1023;83.63702;150.4942;150.2541;128.2655;108.9447;144.8124;74.38224;79.56526;92.31237;169.2233;80.43759;115.6704;69.30825;187.4497;143.6921;86.33639;68.86115;116.9411;55.5051;98.35767;110.4927;123.4403;128.6258;63.70218;99.3858;148.9823;77.01467;130.9879;148.5097;139.4408;144.8021;158.2501;89.46947;92.88351;202.7423;108.1485;85.40951;102.5268;153.4431;134.9651;172.5005;161.4321;97.25489;167.9681;61.01365;121.5432;136.3008;158.9417;194.4897;85.00068;139.5973;93.08092;119.8205;147.7121;156.2454;79.98731;66.14464;103.7593;135.3363;108.4414;131.2248;111.4259;149.6925;121.6878;141.0277;117.8467;123.227;74.61522;95.19474;154.9214;143.6697;172.4091;66.27793;111.2656;58.06834;158.3292;154.9553;80.82597;177.5553;56.85229;71.02886;99.21323;94.93939;157.6207;75.1021;90.95303;131.8452;98.2443;76.18366;105.2913;137.5205;100.1735;154.4197;153.5784;168.2166;58.3996;140.6894;92.4555;83.83572;147.1294;118.62;114.6702;80.23946;97.47972;110.4704;97.71379;
119.9642;98.08797;99.61793;119.9578;86.35438;140.3687;78.29237;105.3161;93.72934;87.85738;127.7767;139.0081;45.93659;43.77814;127.2118;70.7783;97.0384;134.4547;88.84193;57.45484;103.4079;129.5645;67.28603;103.828;142.3071;151.7163;54.26383;117.9485;60.44689;90.12976;128.8709;169.2269;115.0505;173.8814;137.9413;113.0833;70.06591;168.9584;158.2429;172.1037;157.4381;72.09781;122.3172;148.0318;85.10561;101.6985;173.5209;149.7819;112.323;132.3461;118.0314;84.4911;95.92527;106.2296;109.5792;110.088;118.8164;167.6753;137.8382;127.3645;66.38576;125.3841;194.0961;138.8535;100.4769;191.4843;67.3055;178.6833;66.89721;158.0799;116.1471;132.7202;167.8034;77.13817;131.7776;142.8184;94.93474;54.98945;142.984;97.55708;130.1228;133.0228;125.1303;128.636;70.58833;136.4118;169.1438;170.8248;133.5694;177.0018;35.69086;83.41801;55.12797;89.35516;83.29567;91.74252;76.07723;126.469;69.23144;62.02603;64.10804;125.3348;61.57943;78.81653;70.02567;127.3558;94.9823;112.2967;161.1163;76.44084;145.8932;87.78757;100.8599;73.40514;64.94902;120.781;113.4303;151.9066;87.91294;49.94049;206.1729;164.5919;110.8295;114.2001;117.3044;133.2294;155.1528;66.55773;105.4408;96.47162;96.54774;109.051;83.40643;113.8047;78.88026;100.1348;111.5119;98.12665;115.0181;137.969;48.17392;43.66953;133.2458;78.82516;76.24519;130.0819;78.27818;52.36196;120.5836;109.7519;85.46167;99.70609;145.8233;158.7427;51.27318;125.3964;66.78783;93.11529;131.1276;170.1479;95.99263;172.6694;132.7919;97.06538;66.01344;141.8233;154.4342;160.4823;175.3056;82.29921;109.6787;140.7274;87.27234;103.2207;177.0977;159.5121;86.43902;127.9808;105.9915;75.85157;111.5868;89.00787;129.5143;104.3232;119.0562;162.6792;139.4291;134.0964;68.0937;127.6727;199.0637;144.0497;90.89232;188.4001;72.68721;163.5518;61.39546;139.7738;109.524;114.398;187.5056;79.0023;124.4736;137.8827;91.52144;55.3011;148.1298;109.2333;111.1896;127.1568;124.5489;122.3796;82.32175;124.2384;189.2955;154.1949;133.8226;171.8627;36.50206;88.88258;56.68531;91.28873;72.87569;95.93143;72.38252;135.7992;78.9644;60.04546;67.85069;117.6591;46.37428;77.35933;75.20703;104.5062;126.0691;60.80415;142.0116;84.03965;183.6191;77.54797;96.24601;92.71388;92.76623;103.1474;98.18854;152.7421;74.20197;74.88496;194.3832;164.3231;88.86038;109.7075;125.8607;148.4175;116.1973;98.64081;
157.4335;106.9365;68.37866;87.39519;87.5929;79.7635;104.1174;126.5858;138.5565;69.4889;105.2021;71.79121;113.3454;112.6347;151.0315;59.3845;78.88724;65.27939;97.97708;68.98702;112.0049;70.08713;62.61618;136.627;134.4473;72.98912;80.6199;158.5485;128.3099;63.30964;198.7319;74.15449;72.47421;95.93616;122.4554;94.8938;135.6703;106.6799;93.20797;67.98855;155.6167;195.6671;185.6932;156.881;74.5182;135.0876;116.8159;100.2757;137.5516;155.9353;168.5837;64.47412;137.1108;144.4211;77.26181;80.94572;88.77235;88.52501;122.5767;91.52921;109.2407;113.5968;127.4062;67.04064;161.4575;159.634;151.2444;78.21447;183.7713;63.51595;156.4729;107.1585;177.2146;91.64566;123.3292;143.1047;89.05196;120.104;148.4099;104.285;100.9258;93.49234;134.0429;99.22309;113.3278;116.7642;135.7973;95.08898;161.4024;167.7751;129.0294;159.9588;135.3543;44.53638;143.5311;56.72623;76.26766;67.22443;60.24284;61.84865;93.39021;54.18473;46.35325;64.87381;121.6739;75.15159;79.80257;73.76837;122.0958;101.1428;83.96602;175.2132;109.012;166.8464;107.6305;81.04003;84.53841;98.22579;131.6784;100.2483;174.3675;59.82019;58.10664;164.7986;104.6876;92.93896;87.87698;126.2188;147.9188;126.0897;83.85413;74.21291;85.83059;95.87328;97.60529;126.7824;171.4231;67.82337;105.8981;81.15198;98.88798;112.2397;151.0938;58.69654;86.11536;90.75821;115.5553;76.85579;119.1293;75.36111;70.10374;162.0156;165.0376;76.61743;75.98148;169.5911;121.5433;62.06971;168.069;77.09503;61.87926;113.7281;141.5715;75.64389;133.4541;121.0337;84.54294;67.88111;183.7591;193.1253;185.6743;163.2826;62.90351;130.5309;114.4703;100.398;143.4576;194.2956;191.0694;68.46112;147.2248;147.4479;83.5037;101.7603;108.0676;98.46356;118.7436;93.43371;105.6205;118.2701;106.9365;75.70625;142.0765;164.61;168.2941;65.01813;177.2567;76.19342;151.1789;103.9685;203.4693;95.68955;125.5483;146.4076;78.56379;122.2537;150.3068;111.5585;103.1271;109.1294;150.2769;109.6022;119.308;121.3807;150.0049;114.3462;187.0895;181.3628;125.0958;162.4734;131.3212;47.48019;86.086;47.20065;83.59112;106.4477;66.30476;47.44461;127.3727;76.06607;76.76924;69.01848;126.6469;55.24242;52.84853;75.14113;86.66909;118.1381;105.9031;160.2792;121.0211;178.0877;112.5353;101.7122;90.69361;107.9245;136.1124;132.8022;141.1723;82.0405;66.29072;148.377;104.8723;67.31037;92.56366;121.1614;
158.1389;60.63557;138.5328;132.962;170.6691;144.6886;89.8669;53.39798;85.50345;113.7796;118.3934;50.92921;141.3606;80.88666;90.89224;76.7602;123.4612;144.7937;81.90852;82.36586;140.3593;134.1206;66.04459;67.71337;78.7395;92.74995;110.57;93.08514;104.2009;50.59733;146.5909;74.86225;90.78753;98.11331;106.0701;100.2878;72.18559;128.2823;125.6553;92.16071;108.5638;107.4194;70.69727;79.92655;65.95723;151.5479;148.888;109.5952;76.27277;78.35124;78.04789;118.7031;50.08389;103.286;62.86149;123.29;96.08944;84.87022;112.4672;51.67344;97.47377;104.5836;100.0235;98.00716;192.8508;102.5294;148.8526;112.0738;90.54583;61.98343;118.291;104.6117;91.08268;105.2158;65.01108;164.819;141.8614;109.5548;84.81593;98.49734;76.39805;68.4733;94.99587;107.5419;151.3528;90.57067;69.43808;108.46;77.80824;114.6617;123.8343;89.64248;102.7853;141.099;70.21636;80.77468;157.0557;83.46553;91.02398;109.8872;130.5062;180.849;165.2163;119.7684;100.3608;113.88;65.61089;124.3023;108.9578;127.2264;201.9508;47.79926;142.04;74.97709;115.7666;192.4604;98.31038;92.75784;68.56239;77.70943;143.66;110.2707;152.9217;94.39439;170.836;103.1229;165.3301;75.00471;185.4283;67.87906;126.9663;125.3769;167.9762;168.9577;89.36415;53.95982;90.46326;138.9521;139.3227;50.83786;168.5019;101.2034;93.80939;79.37273;131.2914;157.8154;76.05333;93.19051;131.8841;118.5716;67.13663;79.25039;92.55006;100.7591;108.7012;94.66207;120.8236;48.97978;153.3409;86.97558;105.6084;107.0094;94.41121;91.38937;68.95606;146.5363;123.8888;91.01711;109.1774;131.9049;86.65557;77.88371;83.96514;173.6894;151.945;110.9497;79.6366;88.32521;71.72696;129.4863;45.46603;86.31957;63.49352;136.7427;106.6211;85.6352;107.001;48.2528;103.4846;100.405;100.088;102.8405;213.7066;115.6074;143.9245;112.9758;90.64243;74.68024;116.2756;107.1799;90.36357;120.8914;77.92941;156.0917;155.4556;126.422;82.11613;91.32623;79.46643;81.15259;95.25993;128.8558;148.0045;74.55461;69.86846;125.1948;87.31178;115.5466;118.0941;85.11855;108.9553;136.2385;85.60595;56.86526;171.0237;79.5819;106.2998;132.3609;177.6804;186.8735;151.7161;140.7195;79.61893;128.6415;78.16626;132.3846;112.6422;131.8962;213.4485;55.66708;171.3998;74.02929;114.8387;167.5483;102.6591;67.02467;59.00516;106.8907;136.2602;124.7971;143.1545;119.7135;152.2261;92.59261;152.3093;92.56184;
151.702;48.90183;68.86629;144.2221;110.6768;92.20283;93.28411;134.7207;146.2817;99.47111;80.89567;90.26519;73.62261;98.26911;111.5442;143.3725;134.5241;68.97443;114.36;86.86067;120.8304;114.88;150.5851;76.07762;74.05434;69.1894;121.6777;82.85528;118.4899;63.66513;66.78128;140.4973;145.6393;62.52322;84.4554;147.6777;125.4915;62.35439;172.4087;79.89516;63.32246;87.49821;131.1413;84.35123;118.4656;123.5656;93.91328;73.06713;143.7821;192.6984;186.6985;157.3753;78.92053;129.5632;114.0535;118.1198;126.8263;153.14;178.7199;65.38154;140.1879;122.6763;86.41434;81.13062;99.17162;83.86467;127.1505;73.98578;111.6827;118.7375;112.6618;82.47307;140.312;121.9751;147.6536;66.68681;154.6968;69.52779;167.4695;108.6486;169.2662;100.0566;123.076;143.2595;101.0044;122.7106;149.7524;130.2904;90.93915;75.17325;136.6803;106.9111;113.4832;98.4753;155.3951;97.64497;174.1014;160.2158;132.9124;138.9187;139.6249;46.43559;125.4303;72.96198;61.38712;45.14881;59.16976;53.61409;73.59913;58.53807;55.05354;47.64843;131.5686;83.98344;79.05448;56.44344;122.2596;129.4578;75.74197;181.5861;86.86926;139.029;103.9957;68.91117;69.78259;86.73636;130.3695;86.363;182.0215;60.81204;64.13854;140.6406;122.3354;108.9999;95.14871;135.9004;129.215;108.337;63.27451;77.39091;71.7131;88.21932;119.7428;113.1538;161.4053;72.86515;107.8873;63.40051;115.5168;137.5165;136.7993;65.77203;65.54597;71.16862;111.9755;63.50093;98.01492;62.17609;67.12335;140.5661;168.6724;74.53179;83.23875;146.9496;136.2049;75.75934;177.6306;82.0555;48.93923;94.81892;113.5622;74.44989;114.5361;111.7948;103.4773;55.19422;166.7663;198.8738;184.9157;131.8746;74.31374;154.0121;104.1344;109.7013;115.4874;167.7294;186.2134;57.89821;124.4018;131.1914;82.54526;83.02516;112.0386;96.37086;126.9197;74.19033;119.5389;135.7566;116.7435;81.84511;122.343;141.5185;140.2043;63.53816;157.6084;68.35096;174.0051;88.48177;186.0543;103.1563;122.8719;119.8964;93.77817;145.2591;138.1936;118.0558;81.37821;85.49787;143.243;97.27847;99.32736;106.1193;172.2336;71.66894;159.4235;151.3116;106.9403;117.2554;104.56;75.04218;107.7015;72.94449;73.57148;90.52983;78.26335;74.56719;95.58936;77.16407;69.53336;78.72915;108.6348;75.58214;71.64332;48.56022;114.6641;110.5027;76.34125;165.3275;113.4615;150.524;82.44096;80.8372;82.73393;101.7244;160.3842;126.3396;
52.61698;124.2717;165.5582;58.56235;142.3645;66.76794;136.3115;99.96344;89.88757;65.7519;88.70083;74.2781;87.49435;106.3236;132.6401;105.4548;80.90035;83.73073;160.562;95.05548;146.8249;116.4352;139.0342;150.9944;155.6177;68.79221;49.43753;166.6661;89.26898;65.26788;109.1285;169.1623;156.918;179.8459;103.4098;109.6926;137.4383;101.1807;104.2994;94.70359;105.2006;196.5709;49.21472;174.7675;101.9135;147.9059;248.6534;108.0185;93.18153;85.67964;126.0659;137.2719;121.8961;138.7903;138.2211;106.7777;71.7901;188.0798;73.84406;123.0129;74.03581;103.5311;119.7651;155.0709;139.1355;102.9626;95.65856;59.53605;173.8096;123.4145;45.28614;113.6348;74.82391;76.8498;88.07647;129.9283;159.6822;83.24866;102.8245;89.11571;125.786;87.94244;106.6354;98.40728;146.7016;107.0793;167.093;170.8083;62.92592;156.2001;56.50687;95.60664;93.34404;72.5557;88.02247;94.59906;109.7642;147.2141;73.49165;115.8107;149.2279;115.6246;70.48534;62.1088;131.476;156.7286;125.5884;107.0647;113.7592;93.67483;173.2351;62.28403;88.74007;91.98308;170.8488;85.1075;117.2634;80.29063;94.84444;47.88084;60.77676;124.9365;109.5478;170.1617;132.48;107.1549;104.7166;80.16527;59.27932;123.8334;190.9169;68.75989;160.5385;49.95343;147.1937;115.1679;108.1187;51.46832;96.88722;64.97324;65.17635;89.83976;127.1925;115.8346;83.71217;95.09916;139.2077;74.90788;168.1801;97.46685;161.58;135.317;147.268;78.0649;63.27995;185.0343;89.06846;56.34364;103.7419;162.3972;164.0358;178.7879;120.127;124.2913;154.286;84.48409;106.4698;107.8569;122.4957;171.0397;53.87161;161.544;77.66747;133.5826;232.0912;119.4221;94.19839;96.05615;105.5034;116.4339;141.4654;121.9401;153.3054;94.46394;62.90601;198.8608;81.90324;139.9644;80.72495;95.10262;117.2963;154.8131;148.4983;96.57466;115.9927;70.0555;179.8115;102.5331;44.89487;123.4585;87.63268;59.71033;86.9764;115.9179;137.9492;75.16681;95.13529;104.5983;129.4459;92.96725;91.55244;80.51411;156.0806;90.12895;180.0025;150.1283;54.62635;166.0336;63.58215;110.6157;100.8372;65.52902;82.16663;103.2078;96.06925;114.6368;98.17235;112.6435;163.0063;80.85767;67.67136;84.03651;152.4488;97.34568;168.3152;87.24196;85.31937;108.1951;122.0925;71.74617;101.8287;85.66892;173.0572;58.64202;107.9261;79.17165;96.25648;80.237;65.78871;88.85539;134.3676;149.6311;140.3198;92.79729;101.8005;110.1528;
146.4842;125.5569;58.71876;114.5458;121.7404;84.61494;93.17768;85.21333;124.7346;155.6834;108.2986;91.4387;157.4665;90.1683;189.4579;77.28756;100.0152;109.8612;92.51201;116.2411;101.2045;115.3968;156.7917;109.483;138.1075;114.1551;73.28231;84.12928;101.0399;136.1181;159.8947;121.6006;90.63791;73.61493;78.66325;127.8288;80.64633;85.18593;59.98038;144.9346;82.26983;99.83783;80.97898;47.12433;67.77573;88.29943;93.64008;98.36874;143.19;121.1709;99.46648;119.6197;80.06181;55.47539;151.3665;167.0023;60.59163;121.4311;80.96281;154.4982;154.1816;64.92943;60.01265;89.72794;83.88614;55.95062;73.53329;149.3238;146.311;43.60368;99.49641;136.6764;107.1242;167.5353;124.8932;93.24303;142.0811;196.3663;100.9943;77.1403;155.2734;94.52959;81.02004;139.3435;184.2438;160.5035;196.8804;144.5069;116.7441;107.9586;73.18908;131.9716;145.9318;115.0895;202.8933;56.76887;150.2791;62.80007;118.6077;183.0869;157.8372;86.41174;61.79179;84.93724;102.9711;122.3375;126.9898;99.15834;120.1355;89.86528;157.3598;88.26948;110.7755;64.2556;102.2412;100.9221;159.1456;154.2412;102.9245;84.97182;66.28677;140.7843;129.6992;60.28537;181.9909;55.08479;72.65661;70.90681;147.8656;119.4163;66.42506;124.0785;153.8412;95.84859;104.7246;82.83823;119.4429;130.394;122.3018;108.2696;168.3595;92.22923;201.2009;93.49616;87.23941;99.9422;111.7988;90.52213;108.7923;128.3102;144.7927;96.23718;133.2662;111.3456;70.16116;108.5243;112.3702;153.1747;168.3502;117.3177;93.77705;73.1053;85.82807;133.8681;105.6507;98.99126;66.48293;141.1355;80.25254;84.80486;91.77663;57.19678;73.78533;92.95535;98.98575;117.3528;132.8279;116.5075;118.3601;91.99154;87.24258;66.66789;136.111;151.448;67.68279;124.7813;71.04477;174.7659;167.9646;76.27425;64.39659;84.41877;91.53577;53.13567;83.57693;159.7622;169.6386;56.01705;109.6665;130.5397;113.8368;148.197;130.4396;99.55872;150.5907;202.3187;105.4708;92.3372;150.4255;87.38301;101.5851;112.6659;184.8676;183.5264;181.8005;127.6437;126.5109;111.1228;63.77508;150.7509;159.3489;130.0424;190.9172;92.30983;181.6415;93.30678;168.3397;207.0544;179.3776;95.48494;89.2758;70.50702;143.7919;108.6924;132.3555;90.61671;168.1934;80.52455;168.364;88.13003;129.5845;82.69342;111.827;107.684;145.884;190.8406;61.17368;93.45846;62.52694;114.2912;175.8075;78.50399;152.821;97.74697;72.72503;63.11368;
165.8287;88.2674;146.8922;77.93237;97.3604;130.2687;113.5738;93.8381;62.42015;95.71614;104.4131;115.104;133.7398;91.88395;113.4758;88.42303;144.3881;88.32423;152.391;78.70586;74.53383;141.379;155.7379;161.0629;79.68647;69.59877;102.0905;145.5826;119.2422;52.56731;144.3285;71.08578;65.09047;62.44885;162.1947;138.463;93.24832;80.18949;113.0664;87.85435;83.77621;76.3009;103.6801;134.2371;123.3721;154.4591;131.1849;68.60519;153.0298;86.60033;102.7316;117.0887;86.82874;94.92221;55.22912;97.98785;158.2393;86.66447;101.8239;146.5737;94.11398;69.85242;69.91409;140.9386;139.3529;166.045;83.10755;94.0149;61.0341;90.18273;65.34801;88.48721;59.60391;155.4968;71.5502;93.5525;98.1218;46.35386;69.58504;90.11243;90.53813;109.6165;178.6718;133.0713;88.13766;136.0523;92.85043;72.75201;109.7501;125.0317;99.07559;131.8596;68.22044;158.5096;135.8518;92.02809;63.16329;71.31457;103.1044;66.36037;112.4243;121.8054;134.3777;49.10355;87.63289;123.8552;97.98026;148.9274;138.2204;139.6756;121.2236;150.0837;71.1368;82.61289;162.6152;109.2578;91.92942;140.2908;134.1242;141.5002;211.5966;128.8516;87.62386;126.9468;78.22178;113.2673;119.4117;126.7304;195.6349;92.07574;146.5056;81.49588;99.76987;166.0954;107.2318;111.9412;65.99177;81.43092;114.0334;135.6548;164.0456;92.16825;116.796;76.87242;144.4816;82.92825;136.8225;84.17334;88.03002;170.9806;189.6333;159.3298;89.77523;76.53499;92.16028;130.5445;120.5354;55.55777;163.6615;80.17935;81.55608;68.27636;163.1639;142.3517;92.6714;107.1115;101.2795;102.3464;86.26366;66.38543;115.6742;155.7832;149.787;152.6796;129.1862;56.43398;152.8928;84.71452;91.90404;123.549;100.6795;117.9251;71.92002;94.00287;169.8146;97.97746;95.13742;130.9939;90.22495;75.54423;80.836;153.5913;153.808;178.1736;83.75524;98.1436;60.86166;110.4319;52.35249;104.5346;60.3472;141.0335;82.8101;111.3997;116.1116;47.15644;65.67886;76.04843;83.60899;109.6154;164.2314;141.0556;102.4704;153.717;108.2852;70.55977;119.4232;138.5459;92.48057;117.105;64.91546;167.0272;156.5806;76.09236;82.1005;88.56049;68.58261;51.44983;88.21761;177.4773;141.6715;70.41518;81.15448;110.9492;72.98089;172.8784;171.3354;114.0378;171.9534;144.9346;62.75704;76.58535;142.974;118.062;70.67216;125.3746;168.4547;188.0605;190.4316;129.3392;87.08807;134.5722;55.77444;138.4467;120.446;130.4948;
127.5362;150.4982;46.83466;125.5594;76.1305;80.832;128.828;86.31721;87.15022;100.3077;79.95429;150.169;83.08517;87.23722;152.2772;100.4489;77.42322;75.55576;195.5189;146.2903;149.9186;84.21736;127.5005;74.23528;152.0245;83.26859;68.16754;69.64638;175.4702;58.52043;118.2793;86.69271;57.8364;70.86283;77.08064;102.3162;128.4619;206.5203;151.5864;125.286;129.3945;85.31937;94.47265;128.2656;113.5491;54.5385;118.203;80.91553;132.1465;118.8825;67.65062;45.18486;87.75458;106.3134;86.30093;80.74896;148.4727;133.5836;52.71534;122.126;148.0216;88.79185;157.9226;134.0413;120.0655;147.5422;140.9698;54.97458;82.57128;149.6213;100.8135;72.544;107.8334;161.791;131.4675;199.8793;106.8927;89.0685;150.0952;86.77757;118.6392;120.5018;172.881;190.5182;77.96983;153.8279;95.71988;111.8806;218.7928;135.5106;82.06862;81.90295;102.0165;92.5;154.5816;127.2921;111.424;136.1852;81.8064;170.3035;106.6402;176.5102;85.99514;106.6225;144.3106;149.1493;202.5002;102.7824;54.34892;60.71804;137.1203;132.9909;53.52191;129.2928;52.56883;65.34212;68.5594;143.1952;136.8071;73.91949;112.3226;95.16051;112.5219;110.0184;82.37184;98.37857;130.0202;113.8523;110.6118;135.8148;55.78099;144.8713;80.88577;67.42584;112.6245;98.76436;93.49002;83.15132;76.5051;154.0601;90.76052;92.48646;141.8487;89.88831;98.87134;71.82493;207.6602;171.9712;139.8703;69.69559;98.16841;84.83044;151.6607;54.63636;94.09225;68.73724;145.8854;63.60229;109.1228;75.1781;46.39647;61.35947;83.74217;114.5833;132.2602;178.2729;138.5125;138.413;137.1773;70.50816;86.34492;126.9939;120.2849;55.21619;113.1216;72.70566;161.1534;116.2924;70.84942;58.90768;79.23378;86.34586;65.60986;93.18677;147.4755;106.1123;68.53024;114.1869;126.9901;90.62646;142.7339;120.8669;99.375;122.4825;147.179;64.29256;79.16798;126.3926;98.87045;86.16136;113.2178;150.2792;117.6754;191.4503;119.2728;85.65472;139.8288;79.27398;141.5167;107.3951;174.9743;218.1696;64.12923;130.269;81.71254;130.8256;217.5817;107.8345;101.5446;75.42553;84.69334;94.37234;89.66107;120.3731;80.35191;141.8481;85.74646;175.8276;93.67238;154.3673;94.42092;127.5117;139.9231;160.8585;144.7496;103.6372;70.33015;88.30274;152.5715;128.2586;59.80287;127.3993;56.07976;90.55779;83.54317;135.8264;106.9942;88.62462;128.5229;111.4595;146.3189;116.1017;87.23489;112.2627;113.0086;114.3584;
79.42628;84.10141;68.56689;103.5044;85.24369;175.5741;70.0656;43.25769;100.6243;145.7922;38.05232;85.16259;147.201;145.1817;106.5321;117.6;59.37057;90.49362;127.3166;161.4413;97.04059;137.9581;159.494;92.75351;65.80273;213.3553;151.9231;149.7559;158.121;72.46287;120.0183;104.8961;73.01395;160.9625;186.4683;165.4285;77.58183;122.3301;118.9566;65.46944;114.7352;83.33531;96.96037;116.3948;84.55074;159.9264;100.5344;112.4008;61.97998;158.6815;147.929;146.2634;74.36163;117.4346;114.5569;141.8846;67.78604;177.9324;102.2793;121.4966;144.3471;45.8745;110.0155;137.8789;148.8505;100.4568;83.29144;132.8696;124.3218;180.3138;129.8989;115.4579;64.49889;155.4865;124.925;152.9659;147.1237;149.6247;85.38635;90.12225;56.31687;92.07445;82.13374;81.08999;71.45814;97.52465;104.7554;48.34064;57.84302;168.375;58.97174;64.16269;75.14665;114.0323;90.60966;81.48023;141.5842;125.58;156.6023;80.5535;89.66883;71.01955;82.66751;103.5439;111.8245;138.8076;65.63924;65.06429;160.3749;153.9186;76.02961;100.6218;109.6209;151.7649;119.6941;64.33415;89.22784;61.68063;146.8743;102.9441;95.43351;139.4214;80.25832;116.8027;69.41833;58.36463;115.2016;150.9895;86.53064;82.41623;90.61332;110.1432;88.18761;165.1975;99.76473;46.75147;112.7441;134.4914;41.71043;114.6005;169.4945;138.4231;95.95021;127.7561;62.43855;81.39758;136.1483;159.1372;100.702;163.2555;169.9285;103.027;71.80653;195.4045;172.0751;175.9984;151.9807;66.26806;134.501;124.465;75.52777;159.5335;219.8587;166.6938;78.86238;115.6299;152.2502;66.53208;123.4926;75.68307;102.5923;144.1349;100.7037;154.898;87.82216;120.7009;62.20907;146.5293;157.6656;140.756;76.81937;141.6655;120.5686;152.6903;73.94106;168.634;111.2434;132.8847;133.2154;43.15905;126.164;152.3246;145.1472;98.97551;106.1772;144.0038;125.4035;163.8479;153.6271;119.4494;74.27116;151.6832;123.0242;174.2361;162.3959;148.8452;75.4538;91.45166;52.13439;82.55285;89.53281;84.62666;73.45593;112.7935;101.5525;56.50171;63.53818;159.3284;65.82295;72.5082;67.17707;109.7272;104.1949;123.5324;127.8958;110.6204;154.0003;128.6067;52.7524;99.00435;140.2653;136.6794;83.80381;125.5208;71.82623;71.88235;180.8103;157.7343;93.98894;125.9233;94.70166;157.5135;109.7885;49.3667;91.56759;89.12681;128.3208;76.22522;88.87155;123.4151;92.0441;83.45139;89.66006;84.99684;111.3741;161.1372;
145.5748;104.404;123.4529;122.7544;108.2766;80.33898;152.7251;149.5789;169.0207;156.4844;51.21477;178.4666;104.6841;106.9591;154.791;162.8989;144.005;64.15583;167.5244;161.9894;98.63316;103.7713;63.38325;108.3661;140.8278;86.06783;155.7193;125.8065;122.8805;99.27623;129.3667;154.7235;191.1969;78.32573;132.5936;98.94427;107.336;73.94669;153.5681;96.91599;96.76972;158.6682;81.92178;140.5221;122.4302;123.3735;91.87766;112.4331;102.1026;94.1245;131.9517;120.7179;121.7098;65.16056;122.1033;134.9338;116.0198;108.0845;124.5567;78.20949;100.9843;66.02728;69.35719;77.49221;79.76613;83.52396;80.84808;76.90605;66.31719;73.13585;124.8337;49.63857;69.33887;74.69078;93.84126;154.568;79.59653;188.0691;120.0717;145.8932;76.08827;89.30923;104.4233;128.6127;153.7015;108.0172;129.7057;63.8798;75.89581;160.1378;161.9695;103.9905;108.6279;166.0644;133.2483;128.1716;96.71339;105.3747;56.29224;135.7258;69.94549;93.90939;139.266;64.60324;82.32175;93.89829;103.2111;130.1411;125.5853;72.411;71.18105;107.8631;80.68481;89.8819;154.4203;90.43658;59.40211;98.23375;124.287;64.27569;86.34837;129.3716;113.3647;100.3349;160.6285;55.77107;76.93359;100.2637;144.6214;124.5342;129.8177;135.8231;105.9008;93.46651;168.547;142.759;192.9655;181.6519;46.36256;165.6608;120.512;107.7055;156.5474;173.6356;155.1171;89.60234;188.0728;192.0951;106.4394;106.5362;80.40781;128.6036;163.1343;102.8518;156.1692;130.062;142.6685;77.33786;130.7672;140.2396;182.9539;95.52174;137.8775;104.2806;104.9523;83.10722;165.9247;91.1505;109.9739;184.258;75.15247;122.8443;139.5234;120.2158;91.08936;122.5054;108.3708;124.5978;149.9484;141.6849;132.4924;64.36909;142.6621;158.695;136.1828;122.4393;123.3725;79.10719;115.0365;45.41725;74.40398;61.38301;75.7979;89.74865;84.53984;72.85755;59.82051;83.02346;128.9318;49.35314;83.15067;88.74555;85.4974;137.8438;89.9854;178.3253;124.3848;148.1496;82.89682;106.5439;119.9658;138.2522;158.3189;107.8823;143.4228;85.5779;92.35802;177.5185;160.6186;105.0253;123.1852;132.2525;175.0648;147.4871;84.91599;102.2186;59.07296;141.5807;94.94832;97.08917;125.9139;89.07359;87.94337;85.71959;67.38979;122.9774;149.663;72.35124;62.5507;85.50571;108.9355;81.49559;156.3423;86.63218;53.05259;140.5665;158.7364;67.23943;121.4075;129.0526;102.1708;58.55777;172.0758;48.92438;92.98646;101.0385;
49.96371;153.1962;84.71996;103.4535;88.52267;179.6167;123.0969;119.8878;182.1111;49.01347;145.6549;125.2372;143.4546;97.57645;92.30482;115.7436;122.253;140.5291;158.9154;165.0162;98.3761;181.3082;162.1194;141.6233;116.3908;116.9807;73.80366;74.98293;55.91175;90.36553;99.84588;97.08385;70.98429;106.2006;63.31001;51.98989;54.38749;116.5837;53.20954;77.11359;57.71103;119.3909;108.5057;73.87351;123.234;89.88498;142.6592;128.7251;61.7379;92.66842;112.3958;168.6205;77.20592;128.7684;52.52705;68.84658;136.1647;128.5145;116.3779;87.16618;96.35056;169.8999;115.901;79.56364;71.55963;77.1794;108.5519;62.2533;115.5903;159.3491;97.63648;109.655;112.4178;65.45621;145.6413;134.3462;86.90146;78.02267;80.83795;86.2821;97.49336;146.7261;104.8249;80.19763;145.1494;167.9862;67.20892;94.24669;128.8767;105.8972;99.75686;117.9623;69.71367;85.31139;153.3003;173.2264;107.9907;162.5503;120.7501;95.27943;62.80384;152.4827;155.8699;184.8149;135.7555;71.12612;146.765;108.4966;65.04391;112.4995;178.1735;219.0967;53.4795;146.893;160.6018;117.1258;92.10375;69.23876;102.3506;135.5052;71.5613;118.3133;128.9407;109.2318;58.63503;177.9059;145.1632;181.3718;68.93776;174.6572;94.45511;104.2926;90.28985;204.0295;124.5821;121.0518;190.8416;61.87161;157.9229;143.2041;155.2789;118.1378;100.1413;116.0992;130.2572;130.6558;154.7489;169.5142;114.1351;181.6427;183.1769;144.9899;121.028;105.0555;69.39001;85.18427;61.93802;96.23598;98.04903;107.1706;87.72305;123.9046;70.40533;50.84682;54.45675;131.9855;53.41707;76.32415;59.00486;139.0303;118.6507;85.78892;133.0668;105.5587;151.693;127.2128;64.91744;84.9995;108.15;170.7058;91.79031;124.9897;64.35368;69.80014;138.8228;118.2039;102.6094;90.62788;103.0594;186.8032;110.4059;91.16837;82.56485;87.93784;118.5029;62.37363;114.1733;175.7538;94.21543;106.5927;115.4405;81.71365;148.4172;143.1664;94.08657;99.11378;84.55482;87.44364;95.25854;131.6203;101.3904;83.22345;163.0993;162.2052;77.15446;93.37644;131.4619;96.55397;87.0407;121.9839;75.43718;97.40603;121.9697;190.7937;127.408;159.3031;106.1241;90.7387;88.17726;164.2066;153.6463;156.243;152.1884;81.11908;144.6378;100.315;87.62495;128.711;193.6272;176.1354;85.56137;150.7361;184.9273;95.90781;99.28378;69.24366;88.71663;130.4109;91.18239;145.9853;92.49278;137.1281;88.12981;146.9605;153.1963;139.9307;
95.19352;103.344;139.0228;65.39841;46.07611;84.94949;95.51092;81.6769;118.0608;82.80427;50.62314;150.0444;103.7346;69.04232;61.74931;121.261;135.399;76.05224;147.2394;56.38296;94.75467;146.4268;181.1246;86.54515;169.2174;131.3908;138.3336;99.05891;171.8863;148.4163;173.3296;139.7455;98.44821;115.6509;111.1132;63.84618;117.7943;192.3351;192.2876;88.89218;145.4932;169.9158;95.74673;95.02628;108.3197;113.2534;93.61665;60.09398;123.1307;94.96699;101.769;44.39542;114.1202;140.9198;164.5303;85.75554;177.7984;72.27112;111.4149;84.98079;149.9926;131.8356;92.07925;177.6223;74.01953;117.4329;131.0963;108.2782;62.25785;91.94251;120.3682;118.9694;131.0462;124.5813;107.5006;92.56123;120.6454;170.7867;98.79527;113.0219;143.1754;59.29404;97.52126;38.39526;93.63744;87.21892;94.2425;57.68428;131.5854;63.611;72.24198;77.5259;133.9588;52.79836;71.50572;63.13897;144.795;92.00157;77.99136;118.5938;88.11089;150.9438;104.3704;108.7585;91.92802;104.3139;133.5818;89.0955;175.7386;74.3708;41.13785;126.333;124.8347;72.2607;82.97476;98.61412;127.5203;110.6558;77.67672;113.8646;98.45901;82.08398;79.71488;105.5989;131.1599;115.4374;77.70192;83.70696;104.2052;99.59447;117.6746;62.61288;55.63432;81.87457;94.06795;79.12444;125.3133;74.42002;54.71947;119.4946;117.3525;89.9324;58.79671;121.7652;140.1533;75.54398;141.0073;62.14345;101.9276;152.3202;177.0996;99.4454;201.2506;107.1497;138.9182;85.75174;182.1747;172.6086;172.2304;123.2933;102.3733;110.0146;96.46195;62.98546;131.1567;186.8573;193.0429;87.52088;147.777;156.5166;106.3339;73.58162;120.6825;139.099;91.88438;63.88318;123.56;94.19794;101.4076;53.77937;121.5651;147.1641;163.2465;102.9716;193.6664;61.96703;126.1485;85.1425;159.5356;150.2397;92.03428;152.8097;82.60246;109.5469;119.0628;112.6423;71.82532;96.02596;126.1788;114.0893;123.8639;123.8672;127.7993;78.42664;133.6034;197.1313;97.79457;112.8611;150.6555;57.09115;100.7763;50.81576;100.103;100.176;97.85552;69.37291;145.2836;53.97126;84.19505;77.68037;142.9854;64.6659;47.29722;75.37302;127.8368;113.8731;84.65265;153.2639;112.0447;145.0899;101.7843;102.385;76.2649;117.2247;120.1512;93.12138;167.7606;61.30619;51.30478;135.2984;119.7661;99.3517;121.14;131.7405;140.7152;135.3689;86.96599;106.2758;94.45925;121.8227;79.04546;125.7294;149.8982;82.88726;75.56077;77.0694;
73.99463;124.1146;122.9057;134.2412;153.075;153.211;172.4461;96.88197;160.7841;155.113;109.7784;164.9136;124.5262;78.58015;120.9307;84.30532;85.11249;98.1192;93.89806;83.62077;94.56572;57.31846;75.4153;64.69841;132.9497;59.58431;67.89516;62.91063;102.7997;100.2754;87.65923;161.9279;122.6264;114.6049;105.8164;82.33549;105.8104;71.97768;126.7281;90.96472;145.1187;62.34402;64.86397;187.2741;115.0143;93.68476;144.5135;103.9293;165.2303;129.0342;81.45277;116.6435;66.71304;114.3665;118.5485;116.0447;171.5416;114.2715;63.54316;88.35837;83.22509;146.0714;154.1053;57.48729;68.09705;103.8947;94.82371;92.06083;145.5806;104.1136;78.73183;132.7474;143.4338;57.8934;65.45314;172.6531;111.6527;92.58495;162.1932;89.68712;94.9102;148.9492;170.6053;113.7155;131.8832;117.4801;124.571;68.58013;175.4667;156.0701;168.3972;145.1403;57.20625;124.1424;106.874;88.97763;168.3667;140.722;189.9828;70.728;164.3099;123.0807;73.38573;83.04237;84.65958;96.04717;123.8384;112.5973;109.7885;121.0477;157.8251;48.52587;190.3638;150.7325;142.5026;96.70176;119.832;113.418;141.7036;82.26761;199.6889;147.5252;80.80924;161.9712;64.07672;161.6463;164.0731;108.8027;73.16161;145.2021;131.7257;142.2183;133.7288;156.6336;152.9096;105.6625;165.2264;166.813;94.46812;148.5418;110.1161;66.98334;124.6154;73.97092;110.6352;86.57597;77.63277;76.12873;70.83834;71.55433;57.37807;53.76052;136.375;53.10557;74.72415;65.49397;97.25694;103.7142;88.81322;155.6718;117.951;134.4405;110.6382;89.27976;89.06179;78.45546;102.8149;97.89683;146.7594;69.71326;51.7703;171.0505;101.1495;85.15544;141.4299;93.21392;197.2461;114.5219;64.99931;111.2973;47.0848;138.345;89.93498;102.0575;171.7031;109.9554;69.41808;93.09;81.79104;151.0701;166.6777;59.05409;58.88348;124.2672;98.9519;100.1695;136.9582;103.6145;69.71832;149.1789;144.1265;69.67327;52.87106;155.05;101.962;84.74699;170.0832;86.14362;111.6624;134.8341;145.8453;109.2458;113.7309;132.4475;107.1387;63.15151;175.6288;151.0144;177.8783;151.1872;56.01839;128.7539;122.7108;77.78546;155.2596;177.0592;150.4997;93.22781;98.58039;161.1384;63.41252;104.7481;90.8264;93.54734;135.6974;76.57198;93.97958;115.9188;176.4414;83.01305;170.1128;132.7612;112.8268;98.21176;127.2072;75.92973;107.124;69.36471;166.5303;104.6815;82.08129;167.5876;42.86778;153.3639;129.0229;141.6005;
163.349;138.8968;187.4209;99.55471;117.7692;82.12627;86.52845;153.9618;140.4704;117.1713;81.87932;63.34328;160.3741;123.8753;89.08495;109.7735;125.0389;188.5519;109.4;70.67167;81.98775;78.19469;92.94698;68.98888;101.1075;146.7862;68.24821;85.66021;63.18324;60.77106;96.15211;116.2562;58.92248;71.48455;151.6981;101.6749;87.50757;141.3992;77.7244;51.17992;162.2932;95.00362;54.99567;85.27425;159.1864;114.5982;76.84065;139.5021;69.77473;58.44967;142.0507;144.7807;132.2095;175.3634;121.7616;99.83;100.8932;192.8095;185.9293;193.174;178.3867;53.91374;137.1855;127.8946;101.115;160.5743;205.838;174.0505;106.8749;149.1011;126.3328;115.9295;141.9987;65.61614;125.3704;118.4257;96.04344;126.7352;125.7847;129.4549;76.30644;164.1534;140.3817;145.849;69.51698;169.1389;69.88966;126.0816;78.21828;176.7899;95.8771;94.95476;132.6946;49.56498;111.6868;118.2551;116.7951;81.15163;160.5087;125.5603;126.7797;147.4687;115.2953;133.8202;117.2386;115.1207;142.7582;126.3129;157.8331;130.8439;63.48207;100.7164;65.26414;57.75763;85.03296;76.00829;100.451;127.1601;59.08714;53.46176;86.28451;158.0409;86.97586;83.20645;81.74886;92.82679;129.3101;98.38417;153.8071;129.9946;152.5008;95.27974;111.2852;76.1095;79.7355;157.3131;125.0596;132.1611;82.48122;62.65796;177.3608;128.946;97.16645;111.8278;130.6887;181.4694;102.4198;72.76598;83.81371;78.18566;88.60479;68.80915;97.50715;153.8915;78.47684;79.42062;67.44675;63.18981;119.8449;118.2179;54.81503;69.19931;118.4462;93.98088;80.64451;136.4477;68.42453;52.69382;148.7912;114.3597;54.4339;81.83852;174.2708;122.4832;81.66592;142.6954;77.83504;58.60411;132.9454;145.8657;135.0442;178.8563;113.612;100.3505;97.86831;197.3424;204.7986;191.3834;175.4718;51.78993;155.2487;131.0396;88.08321;166.6835;178.1855;172.8157;99.11721;136.2827;122.6639;107.6876;125.0899;74.8148;127.3686;122.1456;100.2216;128.1459;123.0331;133.6304;77.55791;174.1708;141.4866;155.3497;71.4422;164.095;69.95904;115.7731;75.55755;181.1367;109.5555;93.70055;130.1823;47.52951;132.3736;125.8481;99.06451;89.74664;87.17573;136.7059;133.7453;136.1796;148.2475;156.1194;77.62179;181.2746;190.4468;151.6739;132.6006;158.2953;86.28596;90.81252;64.12214;86.09828;65.5992;113.4556;100.586;126.8653;85.38401;78.92962;93.68559;138.5882;80.39003;59.24032;90.56461;125.6329;121.0578;63.5118;
81.53421;120.5424;82.28975;141.6079;62.54804;143.8552;116.7492;96.67916;121.129;176.1676;137.5184;83.58405;102.6;56.23984;141.7271;121.6125;60.6258;149.1186;73.2131;84.74368;74.28275;107.16;161.361;65.33483;118.6413;137.5947;117.25;77.2298;117.807;106.3547;159.7159;132.2229;125.4995;133.9076;79.37318;166.2966;72.83879;119.9848;150.7701;86.21938;125.0781;79.94331;82.66628;169.254;129.6863;87.25854;162.8204;59.14612;73.37334;80.38148;177.8905;144.4701;142.5396;104.3153;84.98601;85.02104;98.77216;76.11888;76.28525;65.84528;168.0621;88.86188;87.54237;74.26003;45.74554;71.72496;81.66916;82.54703;96.22292;178.6945;179.6859;102.9054;112.6566;100.347;47.34031;102.5185;196.9417;63.38443;132.6857;66.74532;182.7795;142.2751;95.21561;76.71878;88.30383;62.751;82.37589;73.16486;158.2858;154.6943;67.994;74.93638;186.2324;108.1404;172.6141;137.7441;116.93;128.7383;189.1851;79.02085;76.99332;197.2901;130.6519;65.73255;146.2148;152.684;116.7658;199.7931;182.2516;87.37845;162.185;52.34844;119.8191;109.8889;137.4537;164.6385;70.75955;174.7546;66.17975;119.9306;146.5589;151.4719;83.02833;67.98016;84.70123;120.8654;96.59998;127.847;102.2511;114.938;81.05891;147.816;68.39688;132.8103;113.5459;87.80297;102.2797;151.5012;145.1962;79.7982;93.02336;63.41754;129.8935;124.4966;65.26601;136.3812;64.07639;69.59712;76.37193;105.5977;163.0462;58.30341;110.1987;150.7263;106.0764;69.77451;111.8527;113.9134;140.5901;143.6412;147.3413;131.6421;79.12125;172.0864;76.47162;108.253;140.7049;75.23065;104.1075;66.40797;90.77312;163.2548;116.4609;94.45511;144.2394;59.07059;78.30264;74.34093;166.0084;124.2772;144.6234;101.3769;81.76932;74.62274;91.05081;85.45278;75.07431;63.78555;146.2603;88.47429;74.90335;84.35616;56.16467;65.51504;79.33056;88.55656;97.09004;162.2062;177.615;102.0281;92.95239;81.14224;58.92836;104.2026;164.9969;63.33407;117.676;67.99302;184.896;127.8674;84.42921;63.83473;86.82181;59.20257;85.36723;72.93079;148.4683;167.8808;66.85027;72.73797;163.2424;107.7127;124.6848;125.6673;117.3859;141.9442;175.8841;71.82629;48.2409;179.6474;91.15892;77.54574;84.28207;119.3337;181.9723;190.3278;118.1269;134.2534;115.7048;52.11325;95.1042;136.783;123.6114;179.0115;42.57092;137.3155;71.78425;117.9426;169.8258;154.4541;78.06053;73.34607;77.38173;104.2021;88.36572;158.0711;
91.70622;127.4997;130.0347;102.4502;120.16;96.1626;165.774;131.7054;93.46416;171.9269;85.05653;137.7058;76.807;64.05562;121.3841;93.62325;87.89146;88.08824;110.9412;179.748;93.44189;104.4264;110.6473;116.439;72.94475;73.64024;156.2108;153.282;115.9699;75.93655;74.77046;87.12647;87.62307;62.65601;71.35225;68.25418;195.7617;97.32853;87.63265;115.4403;43.83773;66.61213;102.4439;77.73576;100.7877;155.727;144.6504;117.3541;105.4681;90.24227;76.31369;111.3131;180.1003;73.33129;138.9668;127.6709;151.9981;114.7296;111.534;100.8033;103.7442;82.7876;78.05169;88.20383;134.1297;154.8679;91.73238;101.5806;185.1802;100.8838;182.6525;141.4808;80.259;150.7256;214.9328;68.20802;81.7677;118.2939;97.58789;86.31317;115.2773;161.6385;165.988;210.092;128.8902;106.0738;109.1822;102.0821;104.2484;104.6704;141.9584;204.8241;52.14989;128.1335;56.92818;135.5429;151.008;131.2488;77.35748;64.70453;129.2961;138.4018;115.5551;158.3635;83.74043;117.974;113.3781;143.1562;76.46155;122.7874;82.73211;85.00054;111.6729;193.1586;189.3131;57.67905;115.1166;66.89332;161.2938;186.6177;47.18705;134.3112;74.2308;94.93494;81.82809;151.1754;144.9267;55.30882;115.4967;136.8609;130.5716;98.15224;110.6594;88.68422;160.4177;123.9197;98.31254;179.1041;102.204;131.4476;73.46481;75.30672;101.5795;78.08418;83.1591;105.6037;132.5038;143.0057;103.4603;100.3694;111.8138;101.5163;67.9586;76.6733;153.2912;143.3475;109.5184;81.89599;63.89976;69.79144;110.5394;69.75198;67.51871;60.92299;180.8267;85.32047;87.35476;106.5933;47.22563;72.06682;116.1208;69.439;94.99013;166.9877;127.285;101.3356;101.3777;110.0048;89.84263;81.65709;192.5488;66.79665;144.9014;113.57;151.2248;123.5344;96.38961;85.37714;94.0036;96.68499;71.72077;69.74623;150.3568;156.1704;86.33341;100.7882;163.8194;83.65412;176.5058;133.951;88.74998;162.1905;222.7455;55.47886;73.33241;137.3169;88.756;71.63583;101.2665;177.3811;184.1537;179.4897;133.2741;92.92097;109.9061;91.40126;103.608;113.0918;124.8019;182.5625;45.31368;145.2914;52.4536;129.1316;159.4446;159.6333;88.81315;73.97626;96.87342;131.683;111.407;170.6664;132.9671;152.0025;89.51825;164.9197;99.96172;159.637;74.58384;107.8042;117.47;215.3163;201.0395;99.82587;118.9533;91.41191;155.5379;166.3904;59.78053;131.7961;86.03334;84.96658;63.62294;107.1375;157.4407;65.52007;
111.6623;121.997;83.25488;68.25564;172.6027;81.19949;149.3282;104.838;103.4649;122.7934;151.5415;67.04116;92.94988;129.7184;105.8785;98.53703;146.1358;133.9879;119.6419;158.1724;148.4441;95.2729;133.6771;75.45994;87.80253;102.6763;152.4067;141.7517;59.64427;132.216;77.88259;145.1964;149.3838;163.2225;120.1596;83.56161;127.1662;158.2892;104.9635;124.5705;126.5834;163.3698;100.5;132.5246;84.9993;161.1319;86.31337;128.6144;165.0204;194.3174;183.3526;102.6991;106.9194;78.6087;140.2119;153.2493;47.84322;155.2365;71.24718;86.32607;86.30393;145.0377;150.2639;61.54551;76.0906;109.954;117.6516;64.58078;123.3517;78.04635;144.0909;108.788;119.2024;147.3406;53.04849;155.4772;103.1127;70.11069;123.4096;109.1026;119.9979;73.0638;69.37675;122.2475;117.8418;95.05695;139.4117;95.30783;57.89239;76.75654;176.2711;109.2065;139.7827;72.71632;94.25366;91.82969;88.4343;95.31743;100.7333;76.83147;203.469;115.6156;85.02477;89.08752;72.58632;109.7388;91.50539;72.33162;122.2632;193.7882;142.8196;138.5453;149.1875;104.4162;86.96133;131.2386;177.8216;57.40932;110.911;87.84501;171.173;135.5621;105.1537;79.54627;112.5284;77.20607;75.26476;96.09345;124.7381;104.2686;62.37239;77.09646;155.0451;64.533;141.1501;137.7944;106.6432;119.0102;161.4663;77.60961;85.03172;124.5243;128.3806;91.83166;149.1636;122.8791;125.0263;161.2411;145.7021;72.2096;124.0016;76.75819;105.1148;103.263;160.5615;142.3177;77.53208;120.0647;74.85175;164.4351;158.2479;143.466;93.48268;88.13187;110.3549;136.7457;94.48563;155.3916;125.8955;160.2191;108.4498;140.9889;76.62072;157.4227;104.0802;119.3125;163.5478;180.8579;190.255;102.3453;103.7211;58.32394;127.3628;153.2569;58.73148;144.2864;81.72534;85.96436;101.5817;131.0524;147.9383;77.46953;90.60931;92.58118;101.942;72.01632;104.7901;68.65736;128.1313;129.063;119.5497;133.1528;62.99088;167.0981;88.26234;66.78248;146.3773;104.2549;128.4915;63.84722;83.2616;126.393;112.3981;78.493;123.0368;88.14989;69.8131;69.11309;192.5453;108.7996;159.0564;62.91725;93.26109;118.9473;105.3998;49.09618;55.14408;70.87132;131.812;90.04202;102.2351;104.3941;72.86764;82.94911;83.78416;86.11389;124.8472;141.167;178.7619;110.075;111.2147;95.17606;62.29124;114.2602;172.6764;53.38156;110.5547;92.6048;149.3642;147.6552;73.79635;66.57333;111.1887;46.48872;77.72462;87.74062;
106.974;118.8203;213.0935;150.4756;71.24538;129.8383;171.6675;89.6969;119.9064;109.5891;123.432;95.49741;67.35747;159.5255;114.0967;117.1635;73.03561;144.1009;135.6539;132.925;66.27256;175.4368;98.93577;123.4071;101.5606;144.6937;84.91956;76.97588;169.9991;62.16529;135.9644;147.0851;151.2907;76.83238;97.19099;100.7682;129.3482;109.805;137.962;123.7708;107.9351;154.705;191.9272;142.7122;117.8939;131.9816;56.77195;114.5265;60.44865;51.80278;56.64861;79.69911;85.25895;113.1314;55.55899;89.89492;95.93755;164.5404;52.22258;59.70579;54.37453;117.9231;90.12418;116.24;187.1683;102.5629;187.2088;78.24601;86.81155;72.95937;115.1964;142.3648;126.0548;171.714;78.18749;49.13958;129.8779;154.6525;88.77598;91.32355;131.5645;171.077;107.2551;56.98415;79.04945;87.71185;120.8913;80.11331;134.8527;115.4314;58.57419;70.15424;95.55759;75.72623;121.2959;137.9497;94.92065;75.37864;85.3406;68.89003;95.75877;110.8421;83.20029;52.54982;156.6738;131.133;83.19306;91.49413;124.0123;118.3041;72.6985;158.3604;76.39173;59.52005;107.0312;150.7951;122.4119;137.0411;95.59415;149.8124;102.1704;188.4584;168.6554;178.7576;131.2546;83.15827;114.0095;146.62;112.0951;137.9805;193.8775;147.8524;59.58006;153.1383;149.6906;100.6455;127.7187;95.66447;120.8929;106.0884;74.83596;171.3983;96.63529;118.4931;79.25864;155.4802;147.2034;136.4939;68.62276;153.0368;87.58854;124.2124;102.9756;124.2954;97.63091;98.32944;165.8141;69.02991;132.3796;131.4389;150.8702;92.02811;83.34213;92.55977;113.43;127.0472;115.4097;136.2207;110.2405;138.2915;187.809;148.6301;127.7449;138.552;43.18913;116.9387;63.72302;58.78016;63.99503;78.58523;89.67065;91.73577;45.62227;91.55336;91.90713;150.1013;63.67744;72.88712;53.88306;134.0617;90.73136;109.4597;182.8897;105.6953;163.7202;75.54427;71.36134;88.74808;99.52856;152.0061;125.6352;161.9445;77.3185;50.97108;143.2579;169.3583;74.7515;100.2496;133.1205;165.7609;113.8877;60.05727;80.63918;70.44713;111.1331;79.01314;130.0661;103.3953;70.67209;84.38729;94.9057;88.76167;140.9731;111.2547;85.45727;73.44764;104.5235;95.93143;65.32607;129.7009;80.56292;45.17709;155.2462;129.6209;50.55539;103.1787;122.9464;123.6676;72.17658;164.8889;61.4903;94.00311;137.5248;155.866;84.09722;121.5232;130.1857;113.1316;100.4195;168.5223;195.8001;203.6852;145.174;70.2262;124.2411;100.3441;
78.50192;198.981;155.0027;111.4957;114.6812;92.20079;164.0477;107.7568;66.02869;97.23045;82.62379;129.4195;93.20859;121.2475;136.5609;67.39223;70.15582;100.0415;69.2634;136.5082;121.4575;79.39318;66.36272;107.0099;67.59474;65.28259;132.2101;90.49767;42.4705;145.4242;129.9417;76.00646;60.91552;127.5707;117.7339;88.37103;133.9355;66.59479;82.85643;94.45025;130.5611;109.7847;118.265;160.202;108.9357;100.8336;184.5743;151.5033;199.6531;202.783;77.30955;176.3787;164.1448;76.32387;147.9186;205.4119;198.1458;81.10566;121.1894;125.4662;102.3578;122.7944;96.22308;130.9285;152.1287;110.3645;147.1606;131.5652;133.7391;53.08541;162.0025;141.8987;153.2048;91.77977;175.7983;112.8282;158.9848;103.9901;171.1888;105.949;86.79192;167.0639;46.55754;136.0658;117.7712;143.3931;82.05522;121.5121;99.28335;106.2065;135.0702;146.9728;119.5703;104.1583;154.7493;187.455;103.9379;117.3342;120.6048;59.84444;92.8047;56.83316;84.50464;53.55811;65.98067;85.57455;79.0048;97.99934;69.04723;92.98475;153.8983;63.45949;89.40121;92.20412;126.7652;131.3571;110.2249;140.8705;101.4725;145.2683;140.9319;97.62649;79.98512;95.83044;152.2991;112.0474;159.3297;94.19553;91.78364;191.6438;161.4129;116.7133;117.3482;107.4241;160.5267;111.9846;76.74187;91.17817;88.59125;133.56;90.42503;103.1156;117.6874;76.92758;72.8224;89.97842;70.80111;121.4365;101.4663;84.05456;57.10087;84.4223;92.72872;72.73368;154.5415;113.9349;46.82723;135.2522;132.4744;91.18419;67.75846;121.4301;121.549;90.70571;134.7481;76.25349;79.42085;96.47447;139.8489;103.3395;124.8941;162.0288;104.909;80.77149;161.8267;163.5041;199.6889;188.8124;78.29847;156.8272;141.45;77.68732;133.2917;171.4121;232.8939;82.605;138.5359;144.9325;99.18295;111.5159;93.07426;140.2015;162.4109;108.5212;160.8891;146.1843;139.1673;61.58347;156.8338;148.8461;161.5408;78.94147;180.1934;109.5056;142.3243;81.92995;142.7266;106.89;86.50443;159.0909;52.68142;130.0545;102.6357;145.0135;71.02251;99.36179;124.2888;107.9173;153.3497;167.9838;116.1368;93.79225;120.4177;194.0142;121.0962;123.5646;163.0575;54.51016;105.1262;92.33366;61.47393;56.77977;99.75502;44.37644;122.1476;64.12581;65.91848;82.74062;83.96468;90.27508;62.27665;53.7711;108.8406;128.4499;98.01441;162.0932;69.95642;111.3394;127.2534;74.47851;74.06084;95.38209;128.4023;97.10871;129.8385;60.26274;
69.77618;161.927;143.4024;119.0785;124.443;122.2318;62.18894;87.24533;51.72249;67.50884;103.7422;94.14098;68.25231;109.2802;49.29613;71.96175;91.63665;84.02884;59.06936;76.43729;79.47546;115.7073;121.0396;120.5279;184.5387;73.98645;170.1821;98.56169;114.8094;123.7294;80.5625;110.3487;112.8621;179.5289;81.32856;77.98774;189.6748;124.1359;107.9082;119.1986;142.1156;183.0076;139.1444;76.57475;115.6893;67.39442;70.90565;109.2386;132.6743;101.6955;92.46628;79.58446;86.77222;82.47221;131.1318;159.1913;100.1364;71.00919;76.32035;80.16536;80.22918;148.1979;77.64182;46.98887;118.3555;146.4972;51.16161;72.3807;137.463;114.4492;80.81007;126.4323;63.89443;61.83049;136.2173;161.16;92.44968;148.6183;103.5797;116.5078;113.6265;114.4673;151.0336;170.6898;170.317;67.18718;146.0814;154.483;110.3034;92.31747;178.598;157.9755;92.64417;181.9039;129.1129;66.62875;118.2693;111.9442;124.3299;141.073;109.3255;124.3723;134.5374;143.6248;81.64146;162.7538;169.4917;151.904;94.52567;136.9977;57.83737;153.9422;106.5951;140.0927;111.7604;74.82855;153.314;62.70005;134.4428;147.241;151.9204;106.742;89.09397;99.07278;115.5977;126.9793;114.9883;106.7915;84.19315;173.1364;123.3531;132.7959;116.2068;107.0995;49.61123;92.6458;47.04314;58.14013;90.54471;73.89235;65.54104;97.99863;48.8927;62.19402;97.27525;98.88924;46.53836;56.00131;79.49298;115.9832;113.9872;105.4334;172.8642;84.35261;150.612;77.88267;108.8696;96.48785;79.19186;98.94718;125.2298;189.1371;70.1086;91.44182;177.5537;108.2453;93.05942;127.0554;128.9071;166.0255;129.2904;60.71321;110.6727;58.26243;72.114;101.4617;135.1488;117.7584;80.88897;63.32613;86.44115;83.05202;126.0273;147.0024;91.47634;89.63273;75.50691;72.38173;80.54586;128.7072;72.30758;40.94748;124.3924;153.526;43.08326;86.13726;124.8614;98.16552;67.92202;130.9562;57.81052;59.11713;137.6048;146.3324;93.66033;146.079;100.3497;110.5995;109.6951;129.9431;137.4442;147.4638;167.1788;66.84586;140.5297;138.8107;101.2045;113.4044;177.3524;146.9687;92.98444;160.2361;126.7144;67.75784;88.36805;108.9492;74.32682;160.7289;73.3176;103.3756;134.283;147.6613;57.90642;166.1699;131.7119;119.0719;58.81091;164.1072;55.34213;153.7097;69.89206;148.5514;96.73228;84.95315;157.2429;86.92163;133.2796;132.945;109.2469;84.53207;82.58662;122.52;131.3334;117.4059;131.7998;137.4858;
52.64824;77.66075;127.2958;183.9478;110.716;161.7632;137.1136;143.7797;63.345;133.2645;186.7866;182.7959;138.6703;89.39819;131.7977;122.3962;76.51676;120.7074;200.4652;196.3622;78.20672;129.2223;131.4052;62.84714;99.8558;74.72907;107.9815;125.2646;106.3505;121.4799;121.4719;101.4432;47.16222;130.2973;147.8255;148.757;59.2645;179.7938;96.01667;115.1905;72.68121;133.0879;93.96721;101.0643;123.3291;63.08016;143.2818;139.6788;117.3055;71.27551;143.3166;122.0006;87.88605;142.8263;119.7773;140.8431;102.039;135.2794;160.3801;145.374;167.0853;148.3589;79.86107;96.06033;42.94881;82.15528;79.16379;102.6841;89.12711;109.6208;84.14349;92.19095;58.42766;103.4724;83.61044;76.76891;52.85893;133.0721;109.7386;83.23304;136.3416;97.18492;166.8068;108.1072;100.8483;69.71607;92.83076;107.8639;102.0619;137.9086;74.93198;63.75893;175.2971;116.5105;93.88245;80.04074;88.22961;146.4278;110.232;68.63169;78.6144;91.14906;123.5823;75.3279;97.65755;113.4849;74.00649;89.21426;57.44883;79.30882;129.0965;130.7212;57.79068;72.71099;115.2131;100.059;79.08932;167.8379;87.50385;69.11746;155.5599;144.5273;52.33559;97.49751;162.7582;132.3168;104.7608;157.5337;68.16174;85.69382;144.2731;156.4007;124.2632;153.5349;129.0944;142.3772;75.58749;143.8647;215.7735;205.3271;139.6069;86.95599;130.6385;113.9512;69.19861;141.2739;189.9569;203.8019;101.8964;145.3592;157.4153;69.84097;111.6682;97.53455;101.2261;131.3112;87.36555;110.4808;120.8725;116.628;59.33588;140.174;162.003;124.8922;68.60114;177.3445;82.8074;112.2421;83.80322;143.5003;112.6846;119.0285;124.1757;64.66336;135.1224;131.5933;106.0797;86.2061;132.5182;131.7269;112.9469;164.3421;137.6486;152.2393;109.6979;161.5082;140.824;153.0363;152.5565;139.6913;82.02886;116.2288;56.22757;84.79426;93.41954;82.64648;91.25726;105.3157;69.54178;85.76157;66.79774;110.6269;93.74704;90.1856;59.28084;138.8722;105.627;81.51234;126.6693;108.5801;160.1191;116.8147;117.1401;82.85027;105.8452;113.5064;109.7206;164.3749;61.76517;68.86658;160.4076;108.8443;102.8971;99.07527;144.6798;168.9693;139.3383;74.40525;103.4518;54.73247;123.0602;97.51418;113.9131;126.916;104.8616;108.3932;87.05969;109.3956;151.3469;116.0379;91.07725;100.7734;132.7598;111.6267;114.5916;163.6746;110.7199;62.81534;105.0478;178.7938;78.00754;85.7286;101.3163;134.8655;92.28616;137.2599;
170.8028;83.20042;75.18472;60.57988;139.7056;162.0624;34.32861;162.8786;67.9187;64.07737;71.48676;108.3843;152.473;48.04978;75.73236;125.7716;116.2373;98.05482;83.59418;118.3662;153.8335;134.4318;113.7481;181.3683;71.55307;160.9089;67.49426;86.30959;120.543;106.4991;74.03316;121.1276;101.1331;109.3281;81.53799;107.2967;168.7093;98.05034;70.56616;100.8179;187.6246;142.7153;109.2453;111.0156;97.36656;49.33453;83.57732;60.94722;62.67652;54.6328;128.8509;61.0746;72.93533;84.14609;84.167;92.31211;80.57407;70.55426;120.3696;160.3;182.2493;116.2745;117.9198;107.5763;68.18478;106.0983;135.5976;57.67398;135.7183;88.44727;128.1142;154.5579;75.74648;52.11597;87.15612;68.63541;79.62401;59.43944;109.9401;144.1611;65.33266;97.02766;126.2534;107.3661;175.2161;136.782;100.7081;170.4461;157.2071;69.34404;72.93537;165.7029;107.2013;97.05619;90.20452;200.6339;137.8378;150.0646;108.7484;94.92448;174.7295;83.43984;107.2349;144.6868;144.035;184.6916;49.1643;196.4272;82.02589;87.3907;135.7101;110.9861;68.59662;65.69956;74.21563;82.10031;100.6576;144.8248;133.3996;171.656;82.47689;146.9328;83.37275;121.9344;116.0622;91.67133;137.2424;168.4904;157.6812;73.0116;77.66531;55.60994;147.2281;159.6754;37.58812;150.7001;65.6972;58.53745;75.02228;121.0878;179.8972;53.13503;86.2188;118.4392;109.2988;98.31211;86.62789;108.9844;157.066;148.933;108.6788;200.6885;59.16685;173.9214;67.72726;87.69112;116.131;96.10123;78.32874;105.1877;93.1414;102.5552;82.43717;97.21698;175.0729;98.72723;72.25989;90.72829;187.3968;140.846;112.0937;120.6666;117.9937;56.52166;91.72382;56.42852;60.98946;58.90315;131.4818;53.23615;75.55421;98.29135;77.19575;106.9965;78.50151;84.38023;112.3734;150.7959;176.6688;104.7056;122.1713;90.89006;65.56021;96.24596;140.8035;52.58694;132.7757;92.1618;132.4191;139.472;83.28703;51.17479;83.45562;69.83311;98.26354;66.75178;118.1211;135.0978;67.57861;99.4579;132.787;99.97887;169.4998;158.7045;94.78143;187.2754;154.3066;83.05973;66.74139;156.0375;102.9314;86.51268;105.5122;113.8509;170.0394;161.9178;144.2258;89.02747;159.2158;90.72279;115.5801;130.7573;152.7502;154.0677;69.90656;145.2852;98.34908;131.8354;148.9156;113.8298;68.64623;65.71002;100.0003;122.5827;133.4085;126.2798;115.9049;166.2813;104.3046;166.2843;112.6624;138.8871;108.6769;95.75489;119.9915;141.608;
118.4816;108.7285;113.5577;92.6534;119.2259;105.8597;117.1797;125.7143;92.97055;67.06802;100.8975;144.6604;114.7981;131.8568;84.95484;105.153;79.91486;114.6021;56.30455;84.66349;72.08793;134.7027;63.83399;112.1265;76.27404;52.99279;50.92279;62.81549;87.15084;117.7579;164.6715;128.9212;155.3456;132.3722;80.91399;72.88257;105.437;123.4986;82.84146;118.9356;70.64209;162.1994;162.7757;72.11724;54.19255;89.53995;75.08974;48.93861;107.6575;123.7765;141.14;91.97983;82.29968;126.2992;89.47162;191.2656;150.2814;116.8589;129.7081;143.3183;82.8727;87.87202;185.6882;128.2904;117.7297;122.3255;186.8396;136.8627;158.7391;150.5;120.3384;124.9218;86.93778;98.94257;135.9182;119.8019;161.5895;60.63837;157.1243;89.11671;133.9279;164.4005;109.1334;90.51566;76.72141;82.87197;104.0834;137.3878;118.3597;95.73596;93.98973;65.60886;152.4523;86.38071;142.5552;76.0936;149.3181;146.8453;152.7566;165.4618;78.7234;71.25829;90.52623;133.9914;133.469;54.48516;174.9548;53.83607;65.86066;75.24098;129.8845;122.3009;96.64567;99.26547;147.8465;135.2466;71.64781;87.20378;96.15782;179.7764;156.8031;129.374;143.2992;48.90378;170.9857;86.35731;103.7535;138.8867;110.6759;85.83295;115.2756;85.74076;99.31068;134.9173;120.2245;127.6643;100.2555;58.07246;84.37823;155.1678;130.1179;146.5119;107.2767;117.2039;85.04051;118.8139;69.86167;79.95766;63.62337;145.1022;69.21295;119.3197;88.67506;50.05377;50.0904;58.48573;89.12659;110.6798;159.1674;123.1567;142.8642;110.3042;83.34717;66.18821;83.96788;152.7674;80.52895;117.5649;75.47319;152.2512;144.2839;79.17694;63.07718;99.94514;91.4602;55.24001;113.393;132.4835;164.6984;86.91417;72.66661;134.7653;91.13474;196.8226;165.017;116.3923;132.1904;136.2399;80.04991;84.14925;175.8418;122.5046;99.46709;103.2091;190.4576;128.6828;132.5536;172.4587;111.5798;125.1646;90.62641;91.078;120.5666;128.5609;169.8005;71.44054;176.4393;97.52156;131.7836;177.1127;129.9009;86.35354;67.74123;82.65628;100.2166;143.8705;131.4746;95.30995;96.10363;60.84856;148.615;82.69;161.8831;93.31129;92.49758;117.1379;143.44;150.7395;59.8359;112.2163;73.10976;167.4208;171.3874;68.63905;131.8432;85.57093;98.80975;83.41897;117.5026;159.3468;97.07851;112.7089;138.5439;118.8605;73.95349;131.5394;108.0524;178.1744;162.0629;132.7894;148.2116;69.89172;180.3773;60.71272;112.8449;134.3152;
81.55725;107.1305;117.7913;105.7191;116.1035;113.3631;112.6762;161.7274;57.90402;180.2465;85.10057;100.614;139.3379;63.93573;84.93048;86.85537;126.2711;130.5163;115.8448;99.68684;132.2645;59.22018;73.60738;142.8923;163.2293;143.5686;139.9993;100.0065;69.43937;69.3664;94.52614;73.65281;89.4098;68.22594;198.4131;53.71346;76.46095;80.7905;84.6523;74.26659;90.67235;91.30996;133.1416;207.8031;106.557;86.4473;106.0183;78.0636;71.89546;95.63536;173.5656;55.90432;148.8008;95.13197;174.7647;174.7999;84.27654;89.98645;88.24212;70.9496;46.75652;88.58901;148.6837;130.0514;50.07976;123.034;182.44;106.1814;139.5106;127.0944;89.40776;143.3943;156.4379;80.90075;94.76482;183.4124;119.3384;64.20535;102.8539;150.0317;179.9882;180.9979;161.1473;95.02071;143.1346;53.90238;100.4606;183.0195;135.2254;173.8906;73.60665;175.6307;52.37368;116.698;155.2527;136.6953;102.949;80.65971;126.9483;81.58611;107.6539;123.0804;130.0455;126.2392;97.70645;143.9345;107.5965;181.7673;54.8186;76.81512;121.1696;147.199;153.1685;79.92339;106.9251;53.64556;173.2424;183.3907;49.9261;159.9116;68.28138;99.32765;73.42902;125.3933;108.8906;80.70425;114.8334;111.6317;80.90441;103.2814;102.0187;129.4046;104.808;123.0114;100.7082;178.287;53.15807;163.4174;94.91013;102.2476;130.9598;77.56729;96.0847;82.57998;117.6053;143.8538;127.1073;99.29383;143.7588;76.89445;58.84766;117.1733;172.6008;133.3412;144.9153;107.061;67.56474;83.16776;101.6152;71.46482;88.39586;65.63088;171.0763;66.92676;65.68468;84.50394;77.72131;84.22606;84.77242;80.46486;139.7922;203.9883;97.25995;97.57076;122.6956;75.27338;66.28311;109.1348;180.9049;54.63661;159.7382;113.1472;156.3848;147.9879;90.54736;90.78701;84.15657;71.5593;48.9358;99.49606;152.8048;128.4202;46.61787;108.9669;153.4596;124.7898;116.9923;132.417;90.56475;161.9933;146.6886;77.23158;96.60548;173.3179;115.2278;69.96558;115.1721;147.5276;165.9739;185.6743;165.3074;93.64749;145.1706;68.14052;95.14471;160.4164;143.1385;175.0078;69.87939;176.5892;54.67871;129.1697;193.8946;115.0832;65.38753;99.30537;64.53594;123.1911;104.5645;186.9255;90.21441;168.1872;101.7237;153.2437;75.25071;145.8229;77.51047;89.78576;144.7086;170.1384;169.9415;86.47284;83.76586;62.38372;126.8816;140.1271;69.39922;174.945;91.59898;63.38216;63.07197;139.015;119.3612;67.91084;117.7507;116.3414;
88.17944;94.76414;78.95092;94.62354;92.13496;170.5196;147.4169;117.9763;133.8612;108.6306;57.14664;135.2557;135.1244;68.81489;141.5502;103.5053;143.8693;171.8768;85.23861;68.1235;71.1282;75.23839;70.63998;97.06406;159.9875;125.903;62.56874;62.49454;179.5322;85.17981;132.1935;111.2014;128.1738;121.1237;139.5569;53.02807;50.56375;130.0353;98.35143;65.59215;103.8228;194.2544;139.5257;161.259;135.5777;88.84146;111.0801;88.80981;92.62138;122.4528;147.244;191.5007;53.52391;146.3051;82.65346;140.7963;149.0806;160.1666;76.9755;88.06886;138.5463;104.4227;99.42689;141.8645;157.522;152.3569;81.77057;151.8546;66.01859;145.8515;101.818;104.1911;145.0093;179.542;151.4835;120.9968;75.62749;64.78348;155.6194;181.5644;48.3896;182.2365;64.54668;69.24319;62.75496;133.2266;156.2131;79.26639;120.0729;105.3963;107.9809;68.12443;130.5158;87.52277;117.0033;111.1206;149.1868;132.8376;50.10919;115.8158;49.85682;75.93476;117.9663;73.77904;82.58897;109.4903;102.1114;135.5668;107.1198;92.76389;107.8281;106.15;65.33961;68.37621;161.013;151.5381;115.641;68.34324;113.7494;112.4533;88.16448;84.54665;59.83744;96.53035;204.139;74.24599;65.76248;96.27376;104.3155;98.56062;105.9802;109.6285;100.4779;171.0581;149.6944;136.5821;140.7467;101.5983;60.2499;153.464;130.0537;51.88529;149.4013;113.9795;162.137;148.2353;74.26462;73.05513;68.89336;63.39642;84.64871;120.5095;153.4815;111.2698;58.94463;83.32406;175.6052;81.83891;114.6661;118.4513;141.6171;126.2164;173.0898;60.10636;55.50714;132.5784;96.53448;76.19542;106.0389;186.1234;144.165;174.1625;129.4406;70.83997;115.2539;97.06505;103.6468;102.6099;132.9115;195.8049;50.97504;130.3676;95.21452;166.855;142.8907;150.2647;66.96004;101.6751;129.8969;104.13;86.17896;142.4276;164.6374;157.6167;107.9764;174.7122;71.24508;140.8312;91.46104;120.0397;152.1727;179.0319;147.2665;123.5005;67.30325;51.96084;163.1293;184.6374;52.0475;157.3917;55.26329;79.21098;59.62132;111.1747;162.0526;101.4733;114.5234;97.38995;96.05331;80.1501;122.125;87.25484;117.2683;138.5076;161.6102;139.0423;99.61508;186.4237;76.35882;69.71563;128.8306;123.4509;98.73097;93.14249;107.238;147.7313;122.0185;114.8133;157.8875;116.136;100.6126;96.59647;188.1645;151.2654;108.2575;94.43284;118.013;97.01469;81.72718;84.66172;66.74116;71.69127;153.633;78.14439;83.45923;85.74048;
120.4829;67.06957;139.332;136.8765;127.2649;88.18286;153.4187;59.61013;74.77721;65.20326;73.85448;99.31501;59.94446;88.49037;124.1485;77.48367;56.05362;105.6445;108.5314;72.43574;72.72138;66.77969;103.3086;109.8093;68.64021;170.5851;84.56334;145.5704;74.34983;81.19939;100.5519;101.4094;153.4558;88.08394;157.3259;81.78465;52.73788;167.9557;156.5704;81.33381;85.64717;99.96329;138.3818;128.248;48.69455;64.43843;56.10322;93.59693;100.2742;124.5074;127.786;73.60928;87.47898;64.14561;107.5736;104.6424;134.6332;78.16361;64.66568;117.5203;79.60909;72.78796;111.1831;88.60827;50.14771;117.7457;122.0036;62.53153;84.60664;99.8866;154.1353;71.95625;114.2265;82.07188;76.14294;157.9366;130.2908;132.2521;173.5957;147.6638;105.955;130.1461;142.0925;198.391;183.1402;155.872;68.04266;130.325;98.48036;106.3597;115.9128;181.3604;147.6783;72.89977;161.8319;158.8736;104.342;98.52439;95.86774;137.3395;113.0475;93.54646;162.0863;97.87547;100.5159;58.80483;133.9458;167.791;126.0964;56.96557;129.4895;76.41541;143.854;100.394;126.4428;129.5716;88.40646;128.4309;95.52466;125.1746;129.4884;127.0962;79.88966;127.6829;106.046;115.1072;120.4311;138.5686;112.2005;80.93255;144.8587;154.2957;136.3402;109.0001;157.3113;43.74767;82.80163;68.89243;72.14192;104.4893;65.4794;108.1484;124.8108;82.73601;53.88705;104.4958;86.99898;102.0677;59.67101;72.97417;113.785;119.154;62.766;169.6515;87.02188;139.4081;74.55542;91.11913;107.3264;107.1649;137.8735;103.5028;161.7772;89.40649;58.62196;191.0476;157.0889;62.35818;89.60536;104.7104;135.2287;127.6561;53.70863;78.15936;54.88284;100.3778;94.45381;123.3588;104.0646;99.10535;74.69848;67.16967;115.8442;114.857;126.2003;74.1283;65.65897;109.0987;76.58829;78.30862;123.4967;86.92383;42.40737;122.1133;125.3846;61.16872;86.47369;118.7933;147.1082;58.33792;121.9067;82.70616;72.80396;159.2634;134.1463;146.3277;177.6872;146.9986;101.5025;115.9427;116.4892;223.8632;156.9824;161.65;69.44087;148.3688;91.28772;101.6474;117.2413;170.8605;143.5534;78.42458;141.1051;167.0732;75.06941;87.17651;81.13847;100.4077;113.3178;64.48859;152.7428;111.2524;151.9664;74.30454;165.3251;215.1687;165.824;89.66323;165.4931;67.70071;147.1433;70.12644;150.5186;141.3519;70.42758;138.152;60.12862;115.0161;138.5332;137.4429;102.2954;117.5341;112.8464;143.422;147.443;143.3263;
57.6389;120.0916;76.59801;64.39632;162.5851;155.7769;79.67323;76.95908;149.7592;149.2931;74.3304;169.5033;72.38294;64.66505;94.50967;145.867;83.35954;120.8191;101.6906;89.60573;58.49677;157.6181;181.7123;192.2426;128.1725;72.20499;120.4987;92.39344;94.72351;139.0811;162.7783;175.4847;57.87022;149.7795;154.0376;81.65505;101.5691;101.396;102.2749;117.2122;82.52365;130.8392;133.597;111.1279;72.27561;149.5858;146.0815;178.1866;75.36684;163.6784;60.28642;157.1037;92.70805;184.7449;90.378;133.2031;116.8959;87.21066;123.8507;130.1684;107.1892;94.72739;87.13024;132.761;101.798;124.3723;125.0727;144.7165;120.9856;181.4178;188.7007;128.8134;145.4365;159.079;60.3239;134.5098;65.09056;63.51151;57.73202;76.5225;64.71555;83.71957;50.843;46.44211;51.82373;128.1964;76.41863;88.57534;53.27246;117.9879;107.1878;71.72601;164.8193;99.1167;142.2045;97.29562;74.5279;91.99355;105.3219;125.2227;105.2698;171.9583;65.56864;62.76526;151.433;131.187;114.9889;97.37514;127.7719;148.2887;111.5396;76.22222;94.22665;68.88382;93.36227;102.9026;123.6616;155.9392;73.13232;120.237;73.68251;118.061;117.7335;122.3626;66.39921;64.39959;89.5891;102.9632;67.77558;124.7011;70.98446;66.43788;147.69;143.2077;66.80017;90.8412;144.5067;133.364;81.45907;181.2774;74.68209;48.23771;91.15827;132.0776;94.76051;113.02;117.7891;90.54532;63.39081;161.0538;200.3681;202.5477;153.4946;78.47247;133.5898;93.12019;106.7926;112.2583;190.2097;176.4208;63.27054;154.6069;144.095;81.75158;88.19631;87.69872;86.63393;131.9465;74.52403;115.9474;142.5751;118.3248;73.72117;119.6129;141.2613;160.789;83.34473;155.0047;72.20759;155.9939;99.42329;183.5491;103.117;139.8254;138.7762;96.07183;127.9693;122.3277;118.7665;78.56789;104.031;136.5775;102.4735;123.5289;116.8434;146.9546;104.8921;161.4707;162.3739;141.7946;136.0744;144.6391;60.64186;135.513;65.54231;49.06711;52.25969;67.37907;66.89455;73.49126;62.35552;47.02971;55.81125;125.9129;84.6553;92.01939;68.34727;128.2555;111.0207;65.93719;179.1041;82.56973;145.2813;80.17932;81.24814;90.97773;128.9566;152.1426;90.79735;151.5677;82.17414;93.45296;135.4273;145.4048;80.62271;140.1801;129.5759;166.7208;137.8613;55.56556;115.6375;50.21358;94.97031;74.70641;112.3277;115.858;65.08849;110.3643;84.33774;119.1236;108.9464;107.3695;66.5043;46.93644;98.95274;55.46188;
123.0579;131.562;95.77116;177.2379;90.20139;80.24673;133.5675;157.3933;88.81375;142.7084;124.603;105.5585;93.42467;130.9477;167.9546;156.5365;166.4115;68.09896;137.6574;135.4038;99.37181;107.9286;174.3178;192.0071;94.09874;130.4721;123.2371;90.36006;130.3666;66.62489;101.122;156.3086;67.63558;127.6235;134.0068;116.931;78.70972;126.7289;172.0297;183.6913;68.60677;189.8358;88.61169;140.8708;105.9852;195.4369;85.65057;99.98282;187.211;96.03427;164.3717;113.3283;113.8154;92.54972;115.7068;140.8838;164.8384;151.0627;142.7553;151.3823;122.0083;136.2533;131.7905;162.0576;112.2922;146.1817;68.56071;120.7104;79.74016;74.91257;80.39896;87.82451;74.35324;87.8255;56.44294;50.27206;85.94054;104.8109;62.93122;62.88284;76.24896;117.5874;102.6005;91.07798;169.9187;71.23299;139.4118;110.7096;121.4164;64.90959;68.76401;123.9806;131.5056;124.875;61.87644;93.28995;126.8531;128.3674;103.6258;94.81613;133.7658;123.2516;128.624;96.44669;89.34386;87.33643;103.2247;83.31686;131.7042;172.6601;59.63152;92.06197;106.5139;106.4659;119.9536;106.5435;64.81791;83.20564;94.60434;115.174;114.4872;138.2862;94.78802;58.61919;156.1416;119.0779;38.82787;92.26498;136.8037;131.2889;69.74227;159.975;87.90513;86.68884;125.3249;139.9838;84.86531;132.1424;124.1944;93.65002;94.48117;145.3068;158.1182;160.3464;164.4963;56.31678;100.9265;121.8335;103.0615;113.0001;161.5661;195.9722;98.38297;105.7355;112.6931;64.44052;116.8056;70.18784;86.26231;144.6111;73.47464;125.5731;107.4234;105.4436;75.31353;134.0838;165.2522;166.6276;61.41212;176.2473;92.92185;130.4109;105.6656;212.2507;80.45677;107.5012;180.2268;81.75056;129.4105;106.9836;117.3548;97.6263;107.4304;149.5628;155.2937;135.3274;146.7475;132.8677;108.8371;137.0772;115.5901;144.1211;126.1964;141.4813;52.56126;114.5673;76.06947;88.112;79.9247;73.50639;60.28085;87.642;66.40385;49.65057;85.59615;113.3483;59.0961;64.81504;76.80219;99.61654;78.60046;90.30439;173.8562;82.98887;135.7203;115.1106;113.2447;54.74691;71.54315;107.2825;117.817;125.6638;67.4636;70.45045;181.5529;151.9873;69.80032;113.1462;123.2652;127.5913;143.1908;58.68597;76.30672;81.71035;90.8029;73.12231;127.5553;137.7584;54.50179;103.5909;69.39245;91.8798;80.03865;113.301;91.45928;52.19279;99.32697;89.09603;70.21343;107.9407;94.3309;62.16531;123.4377;96.3244;39.87238;96.16186;
88.33536;127.1358;71.5925;87.96081;92.20976;116.0534;131.4999;116.0077;119.059;58.15938;56.61879;187.7268;141.2744;95.09509;118.8936;139.8892;171.9904;114.6522;55.3351;103.6525;76.81917;88.42401;94.04848;126.7712;116.4838;111.3296;102.2053;73.58262;82.74449;104.8975;165.4927;64.83833;44.49897;86.78579;79.51187;115.3039;134.5969;57.16956;89.50221;140.3356;172.3267;59.61561;74.29021;127.2584;149.6215;60.84383;181.7126;96.0133;84.78672;167.7165;130.3978;114.1711;171.2204;138.6071;159.85;105.4293;166.2523;190.687;144.8798;133.4517;84.15582;124.7675;110.6905;79.76392;130.0763;152.6653;145.6457;75.07474;145.1289;170.0121;80.67326;110.7044;66.60541;87.97363;115.0847;111.7052;136.9235;113.4268;139.002;78.57114;178.3755;153.0322;131.5387;86.2439;150.8668;71.89501;138.4091;94.30294;144.1647;144.2422;119.2878;134.6129;60.10354;115.5075;157.8549;109.0086;62.76115;102.0685;108.5765;157.1183;123.9131;105.7106;167.4577;90.04517;194.8699;146.6732;119.6699;122.7186;155.1998;43.17107;125.6855;64.46446;82.12627;108.8598;50.81616;65.97638;89.83287;100.611;73.76769;76.21709;115.7842;72.0663;41.20892;57.91183;146.6815;97.83642;76.2254;136.1684;110.5561;139.8587;77.02274;83.25543;81.80721;141.8757;124.1156;116.9355;126.8443;67.11941;59.15131;183.7039;136.9589;91.93996;122.6198;116.6307;174.9667;110.6377;43.66058;82.26982;53.39211;111.6329;75.29662;104.6257;106.857;100.4079;84.82693;74.98825;87.62831;101.3796;149.4762;56.05889;58.09538;96.95934;82.3162;110.6554;121.0615;79.84239;77.13352;139.469;178.8199;68.55807;75.42941;125.019;145.1396;61.87707;178.3402;77.65221;84.98091;161.4037;110.3402;94.93032;135.2435;172.0058;128.3113;86.09229;151.2128;182.4105;123.0544;137.3786;92.86083;121.6948;106.4536;75.98531;143.7839;167.7504;148.894;71.98889;142.4335;196.4271;79.17576;117.0836;70.01036;104.5087;117.3578;107.9046;137.2422;115.5835;146.3923;67.70519;169.0231;148.5892;110.9249;70.28521;127.9951;88.79319;121.9535;82.03332;130.1832;137.0515;99.56514;138.5568;67.49332;112.5518;106.6667;101.014;95.41319;149.845;117.9825;125.3975;121.0224;126.0673;117.0561;99.6777;180.4514;183.1024;168.8579;137.3373;132.4344;67.89674;108.619;69.20039;64.51196;85.30359;68.56954;83.40919;100.6569;71.59916;58.29649;74.78471;88.12001;67.96264;51.48516;64.24302;136.6617;86.62501;79.92065;129.8367;
114.522;102.4353;196.9352;152.7639;68.30422;104.471;66.20169;102.0116;101.4085;107.2368;156.2605;93.5225;77.03029;103.1482;64.10517;105.6883;156.525;77.02605;77.86452;98.45251;94.26516;82.99357;121.7528;77.86104;80.69511;162.7835;136.064;77.41434;54.14761;121.5273;111.5625;95.12596;121.1123;72.59829;87.56182;142.7126;156.2105;72.79436;148.0956;141.7781;127.7986;65.63663;165.8846;192.902;136.6955;198.8831;82.05687;133.1985;111.529;80.24002;184.5709;158.5581;146.4619;66.29633;158.0473;170.8114;105.8481;89.13924;114.6608;113.6446;166.5705;85.64233;136.0441;99.1049;146.3979;47.30217;178.6528;189.8997;153.6503;97.48495;141.7693;89.63973;157.308;86.69555;183.6597;122.1196;98.67366;184.7556;54.87377;113.8784;161.3891;118.1293;89.11549;108.2673;123.2144;122.3573;113.4618;132.3212;166.0881;118.1847;151.5574;173.2581;100.7087;117.1301;128.6964;72.79382;91.11005;55.74516;79.71862;87.82551;84.34959;51.78806;90.94411;88.29276;78.15674;63.63161;125.0555;73.17384;55.95684;105.8046;140.0953;106.2793;91.81998;115.0704;111.8874;140.6316;76.91975;73.74197;93.90774;132.4454;135.5321;77.12593;183.3161;72.08403;86.59477;136.5889;136.5331;77.18058;114.0329;100.9842;180.652;134.8652;67.54726;107.8582;55.0422;96.84547;82.61924;114.5629;156.3806;97.10111;85.63248;104.6094;74.30215;104.4075;161.8677;51.85815;55.97518;109.1207;93.99062;76.94971;126.3391;90.18896;65.93305;148.1026;132.0144;72.44036;53.30407;110.0748;119.3565;95.56929;122.9604;75.62402;75.21305;121.5985;153.2928;77.87274;127.2477;134.9945;109.2384;76.1238;164.1794;193.9733;146.3916;204.8026;90.70741;132.6072;120.8222;58.5676;148.6967;169.9658;146.6602;62.98036;159.5119;189.8669;89.37915;76.12466;112.5893;113.4642;155.6331;70.93562;135.3064;100.5098;138.8909;55.18186;172.0306;174.3319;150.5616;96.81418;129.9025;75.42308;132.2186;90.94565;185.3027;131.0299;99.35417;182.2807;55.93261;114.3478;162.2347;98.78464;71.96777;125.2699;123.2198;110.8528;122.9833;137.3116;145.2824;103.1251;149.1743;173.0353;92.24546;99.81372;154.0981;78.80334;101.4563;53.66107;70.8968;78.35069;57.28923;77.30694;90.22998;61.34006;83.49821;50.81619;125.9771;68.044;94.60896;56.69849;148.5039;133.617;97.3378;104.7484;80.22149;163.3533;85.89176;95.57517;100.8157;129.78;135.4859;85.70257;152.8049;53.59317;46.85407;164.8215;170.9669;110.2938;
136.4767;99.13833;136.6516;102.4814;136.267;100.3785;93.36922;168.5304;50.85158;108.6957;144.0433;100.8838;68.41895;127.6624;75.23553;132.3358;102.9587;140.7573;147.6311;72.67624;168.034;167.726;132.1285;171.8746;179.1802;47.14455;125.2506;73.32294;115.0514;85.7048;78.47643;68.07452;120.6833;88.78705;82.24341;95.58646;145.3437;92.86115;90.65758;96.52412;105.88;78.87667;96.87752;132.2836;96.36821;157.2941;98.91577;104.5512;83.95705;107.2074;122.9128;91.2983;121.6293;60.1535;53.78512;184.0444;126.3238;100.7422;115.3986;110.5728;179.2713;113.0207;88.62295;107.5768;64.99031;125.1554;88.5034;126.3424;117.1089;75.31834;79.18053;89.2035;71.11659;104.1238;132.9311;49.16514;65.87632;121.2197;55.19402;97.55193;109.6581;92.70853;68.4351;108.7628;154.1466;70.64565;80.66824;172.779;170.4417;64.12001;157.7075;80.52957;130.1124;141.7923;145.2002;95.52029;179.0057;162.242;137.2067;103.1402;191.4997;217.7437;190.6716;180.8947;62.30455;107.2005;122.4392;65.69611;141.2457;197.4965;176.3279;77.43429;155.0706;181.4801;86.71162;77.98534;81.29557;120.1341;110.2931;77.07246;108.0395;117.6111;131.5908;49.56219;165.2482;147.4572;163.55;84.95593;139.5925;106.0204;151.6013;106.0139;134.4252;84.78347;92.80284;146.0744;66.51185;109.6951;138.3135;105.8272;85.4784;137.3157;85.42007;118.9367;111.5362;157.9541;152.8182;61.74468;194.0099;198.8615;135.5315;135.1134;158.9024;41.99757;108.8472;54.77762;121.5069;89.67436;68.4737;57.09089;120.3775;98.45486;94.97679;98.29422;139.8408;76.48692;85.08964;77.07474;126.0288;82.83389;94.36158;137.3913;114.0331;165.7521;105.5097;90.10184;91.53886;126.5104;129.8865;78.84187;143.0681;78.10411;52.3975;142.6859;109.3605;92.61892;109.058;93.32871;171.4482;109.4603;79.37448;95.21784;61.50835;130.1979;99.36571;131.792;108.6831;59.3745;79.93774;80.42249;87.93257;104.1772;138.3349;56.96027;70.32712;120.166;61.37918;85.0993;113.8821;104.9702;71.68237;97.13215;173.7647;88.44502;85.11533;146.2143;150.6377;57.67093;150.2789;65.92053;123.4606;137.801;172.1539;82.85068;181.8273;172.4757;163.8994;91.18428;142.2357;138.6518;142.9895;148.7792;92.15681;149.7581;91.94239;90.67835;172.5153;164.2817;145.2194;46.01844;129.2676;145.8548;101.749;101.7117;98.60442;135.6007;143.5473;66.50641;124.4297;121.4852;112.8985;66.59485;159.4697;145.3281;163.0206;62.49215;
135.304;185.0524;161.0179;81.13321;114.5627;162.2464;97.3458;145.2125;150.2989;226.8515;60.69297;159.7568;146.307;87.89862;101.2622;93.98814;77.51572;153.4166;62.50412;126.8508;96.93988;126.8413;71.81159;176.5223;177.4344;170.7141;65.75048;162.8572;78.70479;162.602;105.3465;145.9471;76.62309;86.23714;141.0933;56.67668;105.2863;121.247;93.64253;87.09535;129.7485;144.9753;118.4158;123.6774;132.4546;114.6712;112.0213;145.979;147.5952;134.3998;116.6006;140.379;54.09682;82.31207;38.9121;87.39457;55.61409;84.25621;59.60111;91.33765;90.9747;46.06948;95.7542;120.6652;50.50876;84.54684;78.90401;129.0542;97.84648;136.0292;167.1712;113.7327;119.4719;128.839;82.48473;106.8819;102.2255;129.9879;91.25963;157.5162;50.15764;90.86014;131.9292;119.58;79.42911;116.1595;122.8951;175.8123;130.8368;79.65023;89.14994;81.75728;101.7924;100.7803;123.9397;121.4053;59.25265;78.10735;76.33861;68.64455;99.25403;127.7501;50.17822;69.60215;108.6668;106.1438;90.77106;133.8911;87.09953;41.9704;155.0557;133.8535;77.82444;97.71613;141.0775;131.3181;80.28286;138.615;61.60823;97.17059;114.4151;167.1387;103.896;149.7424;132.1379;107.1831;79.55471;147.8396;151.2875;189.1789;154.3819;87.51942;135.9324;150.8368;112.2656;174.446;140.617;224.0141;70.02779;170.7373;140.1933;96.56606;84.04387;96.99227;101.3475;167.4555;77.32722;128.0519;105.8877;150.5801;83.83106;187.2344;196.7144;175.0723;92.93401;188.7254;63.14124;172.9718;74.48424;139.8719;88.43118;89.61017;129.0603;58.28515;123.532;106.4116;112.3793;108.4584;120.8412;144.0669;126.0474;128.4632;124.3951;119.4361;97.66234;151.5072;181.3464;149.9473;131.1119;140.0861;60.06973;97.83871;50.60179;96.40551;71.03448;91.64851;74.40683;102.8414;71.00629;57.55312;71.22301;113.8579;53.06818;80.8348;69.03812;141.2101;109.8456;114.4541;186.0219;140.3149;115.4181;130.9587;81.66535;104.5481;91.56438;144.4819;83.51744;161.721;62.84264;96.04533;145.9796;128.5911;81.77798;128.3068;137.9885;191.2304;153.9857;86.8455;107.0746;92.65942;80.59868;117.4593;102.0486;131.2078;74.04597;84.87797;93.30217;77.47977;107.1935;152.2277;69.64545;107.024;76.44162;80.10072;90.78094;115.758;69.27335;45.07974;132.5311;147.5691;86.04358;89.72256;168.0394;152.4412;93.95978;157.6723;77.82182;83.03637;160.6407;149.9885;123.9355;172.3312;96.97962;119.6526;50.68277;142.9998;
85.14499;128.0897;156.9205;105.8112;139.87;131.5781;127.4223;72.25545;142.2977;139.376;148.7289;129.6143;56.4766;106.2424;114.0378;109.135;157.7228;155.6199;170.3924;62.44152;126.168;181.301;61.82309;84.3988;87.71832;128.3256;118.54;77.75227;155.3516;128.6939;119.0942;95.29149;162.0821;213.9652;181.8065;79.02432;141.0323;91.02602;163.2141;101.1512;179.16;116.4777;86.3671;151.7866;69.54159;125.143;160.8745;146.4395;103.9165;137.4356;97.36985;114.4235;145.962;173.9762;109.6125;95.80994;147.8013;187.4712;111.8249;125.4148;160.0301;73.34473;129.4051;57.78593;80.52609;82.40543;74.65947;75.92646;99.41751;62.53679;78.70877;73.02246;109.3751;50.77479;51.4222;54.88796;105.571;81.2353;83.55436;180.2197;119.6682;127.545;82.04317;71.60537;70.50394;116.5147;105.3846;93.40906;150.7648;94.02969;55.20354;146.9452;164.7861;100.8416;97.74582;145.2472;157.9538;172.8075;80.11548;88.51156;64.61919;108.2388;110.5543;133.2567;148.9488;92.25228;68.49792;80.2848;97.27004;118.2189;156.8918;94.82288;65.90168;115.9497;61.05287;69.1189;165.125;95.93941;56.83885;133.4107;128.7295;76.96443;66.53658;143.8783;149.6392;92.90347;180.2756;70.61926;72.98322;126.2416;153.061;95.58353;136.1112;105.9036;128.172;67.97503;164.0292;152.2366;134.9375;128.6111;58.95448;106.0732;119.7545;119.0748;130.8694;150.9128;155.6341;57.1272;145.0711;157.7138;79.29024;80.68661;90.48355;134.7941;114.0995;83.82073;165.4216;132.2566;121.264;95.98286;139.3008;212.6204;175.8876;65.73444;135.2576;71.42473;159.3457;92.28925;198.1882;129.3527;75.80206;144.389;71.50152;126.8309;164.3192;156.0622;79.08454;132.9865;86.46409;104.3313;165.1429;151.724;129.5504;90.43716;148.0687;182.1863;113.2583;132.0956;162.6758;75.0975;133.467;61.15491;71.97087;80.38643;80.32206;66.17933;92.68465;51.23178;73.27376;59.60752;125.3869;52.28928;46.8987;51.84461;101.9699;81.61399;87.4987;195.9711;101.542;121.8023;81.57249;66.95735;82.23061;105.2857;121.4105;81.22272;151.0337;90.29426;56.21128;154.1696;167.4707;102.8951;137.2735;111.1121;136.5599;168.9626;72.61926;77.408;97.03272;72.76355;61.19616;77.89133;168.7367;67.38512;94.28545;57.01506;73.78226;102.325;127.5231;85.14943;81.06789;83.17916;65.86279;68.5724;137.1672;61.54297;83.16533;126.6683;154.5584;85.23734;90.40707;138.6239;163.5492;95.04111;165.319;67.70331;
140.3936;56.13848;126.289;157.2834;139.4383;61.81479;131.0507;133.0153;142.7554;118.3732;116.0503;113.1346;108.8268;125.028;204.0414;146.7426;145.113;152.6766;35.92849;95.75012;57.23782;92.04846;92.86688;79.6673;67.03975;122.0071;48.59268;60.76631;90.49335;106.1028;78.36358;68.64917;92.64453;104.0075;92.78199;90.41782;171.7139;120.1578;123.7208;117.5822;57.47598;65.1298;77.04658;157.0011;108.8299;149.2295;82.68483;74.44236;183.9146;100.7825;63.47588;120.3751;99.08322;158.5336;131.9964;70.7542;66.75262;91.43125;105.1184;86.17602;90.80843;108.6121;122.1418;65.18087;82.41906;84.19668;118.7846;156.1271;84.22297;49.97961;109.7817;103.132;111.5591;115.2733;67.24496;49.6391;148.8097;104.8277;89.23286;84.89137;162.0004;154.4987;53.65613;132.6843;68.24203;94.55569;135.1765;153.394;98.47109;165.0776;99.26572;114.9119;98.22952;133.32;187.1266;156.9026;191.2193;69.63291;117.3982;116.4323;100.9837;155.4553;145.2126;204.524;48.75217;115.8202;118.4013;108.162;102.5617;80.09993;119.0433;140.9364;111.327;129.0737;99.04904;145.3782;61.61896;152.3423;177.1062;182.0173;69.98649;199.6557;79.42459;138.3174;67.66402;134.2632;138.2267;89.65697;131.4168;70.23315;147.0372;139.4152;137.2125;76.08526;123.7319;133.2167;176.0899;116.1963;116.7813;124.8123;94.67045;124.6119;204.1138;145.66;154.8599;190.5334;46.85906;104.9826;62.36211;98.07854;101.9394;99.30987;89.10104;126.6853;45.00695;67.67342;84.82538;104.4958;59.58656;71.47954;80.61099;122.5016;109.5114;71.65341;169.2196;135.3635;113.7056;117.4409;75.03766;63.66686;77.03438;163.4052;94.69111;144.4381;80.71334;74.54771;190.7341;132.0348;77.54531;125.801;107.708;161.7041;140.1178;90.2918;83.6104;101.5273;101.571;88.0243;87.51048;113.1829;102.1183;73.72911;68.74873;87.82091;133.9462;137.2312;79.8317;61.29044;105.3548;100.003;132.5774;119.8034;68.88613;51.59211;135.1557;106.8366;90.70509;91.46578;164.7863;174.4277;64.09752;144.6463;72.89982;98.7145;149.3524;177.6129;118.7424;178.5578;95.81928;117.0447;94.79823;138.3789;167.5304;162.931;204.3145;60.26263;164.5716;132.0254;95.77207;113.4916;140.7067;190.6836;75.08418;155.9036;156.0408;110.2008;98.727;69.06246;119.2556;118.5054;80.67602;170.653;135.9003;154.689;52.26703;130.784;166.9081;163.4565;73.93581;180.5275;76.94196;133.3179;76.15836;142.5663;94.564;86.37689;
98.7694;118.5407;85.19926;68.8876;164.8162;103.6146;60.96498;134.8166;61.15989;76.89356;96.91854;189.834;111.736;155.2251;125.04;151.4389;58.38751;186.6179;168.6263;167.5663;142.3533;79.68723;120.6958;144.6524;68.54661;106.2881;164.0268;161.3594;75.3023;156.4633;150.702;78.48598;99.30949;93.02118;121.2338;175.7983;104.0279;106.4807;93.09504;106.3511;47.5834;117.9359;129.7546;132.4791;49.7997;152.7047;104.7439;149.7844;66.04253;162.3221;111.5803;79.46903;176.9054;69.56179;143.4943;138.676;120.1366;81.1347;125.4521;96.84413;104.6232;135.7148;111.2613;126.4828;68.04862;128.8859;184.4918;106.1857;154.9709;118.3514;47.62477;92.43205;54.77137;85.26588;60.79877;118.0106;88.51923;114.1624;74.25314;102.3993;55.1521;141.9791;58.74809;61.11507;57.01266;135.7163;94.59025;105.7505;133.0523;82.18918;137.6111;91.09831;97.34689;93.93796;105.4249;131.6453;100.9115;156.2258;69.76813;91.40885;174.219;105.8961;69.69693;81.92413;91.53954;129.9648;99.03675;60.32578;66.94975;72.02486;132.8862;99.47494;87.1706;149.2363;76.34801;73.51386;97.4985;74.76237;135.2942;150.6916;75.24855;65.32117;100.6525;66.14977;74.40379;134.6005;67.71294;55.85373;120.5639;128.5872;76.18288;63.45914;162.17;124.2967;60.55102;135.7084;65.36543;97.81089;115.9358;189.6577;135.9984;182.9317;128.4576;155.0995;63.80988;201.3632;160.1779;182.8634;133.8172;67.8117;122.1704;161.3054;81.46964;114.8502;161.7489;163.4335;89.52544;153.6088;157.5449;90.87817;114.7847;101.6884;108.7459;163.9499;100.1436;123.1654;91.57541;105.1223;47.98996;143.5319;151.0863;129.8453;65.58949;174.9277;107.3105;151.3672;69.17516;176.5469;103.9964;88.33461;168.1283;55.77449;144.4484;152.9224;131.8802;81.8827;119.6752;92.13969;110.8473;130.9488;111.3293;131.9657;80.65469;143.5012;179.0007;107.0636;155.0973;135.6703;46.34917;94.84708;54.21405;99.43169;73.31085;110.6441;99.32294;131.3681;71.72843;95.08485;57.7637;160;58.95577;77.41954;54.96489;115.9363;95.09244;122.2825;145.3956;82.93858;131.5564;86.53732;103.3539;89.9799;76.14053;155.7382;100.6853;181.7454;66.40916;62.14625;146.4209;132.8755;79.86666;74.07699;120.9755;174.3026;148.469;76.25399;105.6816;95.76058;123.674;86.34987;104.8669;142.5787;98.32111;74.29924;84.64451;87.81269;106.267;125.4615;68.38425;53.13426;114.4955;96.25524;97.70534;114.2978;85.96386;69.16824;
122.5191;62.53599;108.622;138.9578;151.7997;137.7227;73.33503;155.8945;96.53944;100.9669;149.9518;125.9147;86.12201;76.4732;83.68689;143.6268;80.32235;116.923;129.828;122.2693;115.3418;134.4889;105.9159;185.1495;70.57085;112.6491;156.2229;191.5564;197.7812;103.0751;73.60915;72.73895;160.4006;174.2471;72.32056;138.0278;53.30936;77.03117;84.99135;149.1075;173.4833;78.92564;120.7253;132.6671;130.7915;89.1934;76.64457;116.1353;98.8036;124.3505;135.3967;179.2102;101.8348;158.1622;88.00594;92.97758;100.6334;64.58413;83.98316;69.3426;107.2413;93.32608;121.3176;84.60496;135.4359;71.38109;65.68384;91.60746;181.887;104.0263;144.0567;91.58641;113.6438;54.01902;83.36293;55.48902;75.73368;61.31797;147.4354;101.9646;66.77695;79.28538;70.82259;64.24283;113.1157;75.70826;133.6649;211.0827;122.5514;115.2929;128.2642;97.56526;87.00959;122.6431;143.5942;70.15904;151.3243;102.8157;190.8789;122.3902;75.02958;70.09658;95.35291;93.72102;86.80434;89.17632;143.3717;136.7035;79.61752;81.41774;128.0387;86.64786;132.9919;138.9462;119.1862;140.569;213.6482;93.0896;80.53542;153.8423;80.44655;66.22412;108.7839;122.2088;139.3274;133.733;149.1893;81.97625;149.9066;75.91975;102.6629;135.4427;165.4036;158.0954;74.98934;157.1634;82.77413;109.8977;125.5701;110.6195;84.05573;67.63963;90.80776;113.3797;101.3719;121.9725;122.9252;94.09162;110.1518;158.8978;94.40752;168.8625;62.27119;115.1707;145.2025;161.459;171.0449;101.178;73.96826;72.78843;184.531;193.9415;71.19504;137.3239;60.36843;91.85774;88.66936;152.0535;149.0701;85.88588;103.8843;120.1712;126.6609;79.23714;85.30704;93.27615;118.0023;129.3208;133.879;151.9223;96.59234;185.0643;79.32029;85.52613;90.56204;74.17497;89.14415;61.62913;93.49336;100.7713;116.7251;86.5394;150.4064;82.95263;65.51798;91.83507;191.8761;119.9927;148.6673;90.92461;97.53387;67.26763;77.78957;52.6202;77.77495;60.2131;153.5716;82.46025;77.46913;82.04723;70.66784;48.94087;105.4607;93.62332;122.7574;195.4279;111.4097;127.9999;134.624;88.37344;74.673;131.1572;169.0574;57.02989;129.3236;65.59609;177.3689;147.8569;106.8382;55.68953;94.00749;103.8572;47.71228;69.83536;92.55036;107.3646;50.21215;95.15178;175.7406;77.75873;158.2573;149.637;103.0543;120.6804;195.776;63.1678;87.74976;143.0414;82.80035;90.10435;104.3871;140.9226;154.9384;146.008;118.8914;108.7698;
93.88418;174.1271;190.9066;161.0608;121.2522;83.06171;116.1873;105.5136;80.82552;155.3613;208.9162;186.1416;100.913;159.7622;155.3911;71.88394;108.3551;74.8398;131.236;124.406;85.35892;127.9012;109.1562;128.4483;56.59922;161.7234;177.1111;117.2118;82.93186;158.0407;107.591;122.8052;60.90748;150.1201;118.33;87.43962;129.0057;76.92948;106.9874;102.3411;128.9288;69.21516;137.0053;101.1995;155.649;160.2098;150.4238;153.2783;113.8055;168.3952;208.3792;174.6735;106.1979;143.1763;72.43124;133.3537;74.50525;70.24396;68.9312;82.34203;73.29347;114.5989;97.61238;92.41089;86.92007;145.8775;76.47507;66.28142;54.54497;131.8739;102.0243;81.13696;153.5765;122.3353;188.8644;106.3742;105.7076;84.90358;108.5264;108.3973;108.8436;141.4682;83.13386;60.36112;167.6162;126.2955;92.69482;111.2449;107.153;174.531;148.7629;46.07053;86.07804;71.10877;129.6017;71.60796;76.96178;132.0145;85.39915;74.02984;74.69454;99.5682;103.5246;106.5622;73.35157;55.96357;129.1358;74.36394;105.3626;155.7249;93.80839;80.84723;161.9451;163.0268;77.36516;97.57239;133.9563;115.5072;101.9477;162.6516;77.31162;77.3605;119.0676;170.0398;111.5508;153.9283;161.2422;150.0931;102.7169;173.6083;218.0708;177.7029;138.0667;64.16698;126.2502;121.1198;98.15678;132.936;221.3833;171.2301;76.82336;139.3995;149.4901;80.49622;111.6054;85.60746;112.0032;101.1842;101.8138;107.9803;129.2295;114.0221;51.60931;175.7847;202.5498;132.6931;82.73859;143.9714;102.243;117.0513;65.37169;149.1536;136.169;100.5226;145.3435;62.46699;109.1855;115.9975;148.0048;54.42611;144.7049;91.1992;125.2974;145.2879;137.6053;166.8078;114.929;182.8232;181.6814;151.0577;124.5122;126.0533;83.4585;119.5483;65.44921;76.89098;76.72473;96.31042;79.94973;105.722;95.38484;92.21188;94.35229;138.2545;94.75996;77.35721;57.92965;110.2562;101.4365;89.46954;171.7083;100.4279;187.2519;93.73518;88.17313;76.73975;100.6228;125.4091;112.25;147.8225;69.88357;46.5419;177.6315;107.8242;102.3713;94.68436;96.23317;184.9169;160.113;56.65669;93.2794;64.1543;109.1694;68.64886;124.7921;123.928;81.05252;107.1045;81.49041;66.91622;145.9811;116.9128;58.24347;75.84729;86.9857;86.73287;62.17252;124.7741;121.4414;45.26658;159.8653;140.8944;39.46651;66.63766;185.218;124.0146;87.7302;100.842;48.96999;101.063;123.3324;130.8581;86.91036;127.6189;132.9588;114.3079;
59.73729;178.4918;118.7661;94.90263;128.6591;177.723;117.8657;176.9604;163.3242;120.4783;141.5483;56.14571;104.6331;131.4699;169.02;181.6936;80.86658;192.9703;83.60793;162.1274;215.0805;121.6425;67.18505;100.3866;94.08418;110.9253;135.5024;134.6884;135.6052;137.5576;109.2535;166.7051;73.6623;123.1468;77.36533;85.91339;126.8821;122.9607;159.3136;72.81721;91.3448;59.96864;127.2736;149.5136;73.05129;116.7629;91.67653;68.32623;90.5711;113.015;111.0769;71.74729;119.2935;92.59343;106.408;104.0871;79.11758;70.76051;154.4077;95.83371;137.8728;123.3148;84.76294;192.3947;57.10658;105.0887;128.2292;103.9813;117.98;96.95831;77.73529;139.7276;113.162;122.6714;153.4004;72.25744;69.36359;87.89512;205.1973;141.6135;145.1856;115.3369;97.20203;109.0029;155.6909;55.99871;62.75735;95.28484;140.6682;74.18025;115.5719;99.39263;80.37354;78.8926;107.9801;101.4458;95.58973;153.6212;124.2413;97.07605;124.3594;57.48226;68.5455;103.8307;148.79;59.07671;120.5904;92.60175;197.1872;108.8263;117.8567;76.3435;94.77666;60.75872;61.94121;64.37769;164.3015;122.7223;56.66731;94.64724;134.8945;68.06329;157.9002;120.0552;135.4005;125.1486;202.0377;92.52715;60.62063;171.1556;129.6257;103.5967;161.6069;193.8463;130.8105;173.5303;157.2607;98.36597;157.4965;69.48813;113.5463;133.956;180.1213;206.1344;69.42266;179.7482;101.9881;131.4627;226.0792;134.8916;59.41302;87.72115;90.09589;108.1561;131.2461;165.1438;148.6834;154.7014;116.2618;161.6838;76.4949;122.4874;84.47208;90.87711;157.8168;139.4425;169.8058;70.13168;89.2185;48.45565;140.7245;167.0741;79.28555;122.1079;96.96664;84.28735;82.36983;108.5128;130.9962;50.75875;128.0248;106.9034;93.68259;91.88737;87.19262;73.32331;140.5876;111.9289;150.9224;138.7767;89.95848;184.5829;63.44736;101.2173;141.3893;112.7211;139.0157;115.0875;86.75336;133.5221;120.0584;106.2093;159.5408;77.82953;75.34664;91.8922;211.5574;161.9617;140.4991;107.4282;119.6166;85.57135;156.2643;69.91338;54.37421;81.68989;151.37;76.80706;103.659;115.7724;90.40687;91.35123;117.8739;87.83411;92.36374;158.297;166.1009;144.9116;135.8165;65.32989;58.53111;122.765;150.1297;39.5473;125.0922;80.24645;180.1358;122.3732;89.935;83.46746;57.75499;95.58533;68.36556;91.17721;167.1285;161.6683;67.88476;73.64337;134.5454;56.68341;154.3046;163.9936;138.453;116.1443;202.099;101.1925;
130.0037;157.1603;163.2408;60.99174;56.17823;88.77948;117.6978;127.4038;102.4853;148.4655;153.6755;91.13445;129.5298;110.1137;123.5616;97.04716;98.06273;134.8862;161.2236;154.646;57.17649;95.47923;45.27138;147.3567;126.69;61.70125;190.1449;84.65601;77.01962;80.20517;128.4779;139.2713;53.96624;136.2411;140.4209;80.60767;59.5004;75.9819;85.25379;109.018;94.12534;97.04312;115.1247;64.20621;165.5189;81.71284;82.46609;112.9572;89.87866;73.73218;111.6765;82.63109;123.1725;96.60497;79.99396;148.1619;77.3727;64.99646;81.92937;186.6662;113.6201;125.5358;69.47049;66.83347;91.09664;96.80554;89.52103;56.10731;52.87493;162.1875;95.86141;100.1306;68.42666;83.39752;89.26644;90.56248;77.85516;142.6724;160.9435;160.568;118.8168;114.7081;83.72295;62.51036;80.74276;173.2577;53.29737;134.6098;68.46297;171.297;174.9103;108.1097;72.85966;86.79646;77.73458;65.42324;76.3836;173.0106;155.042;43.52127;59.82998;131.3428;82.64912;117.545;104.4809;84.67886;102.5755;161.3133;84.29623;78.96489;147.9087;87.23104;82.62799;90.1464;175.9498;134.2848;180.8645;156.1978;92.7854;143.5138;77.61685;112.0852;111.2576;144.2798;146.7371;63.40972;146.2453;63.73513;156.5357;162.2285;162.8333;64.14883;58.01205;118.7348;111.24;148.3658;107.0479;130.5326;165.3016;109.5137;159.3793;110.4249;127.0252;84.92712;98.13977;128.1979;145.1984;162.2731;69.06687;120.0561;64.3147;145.6992;139.3324;68.24171;176.5001;73.28587;78.05965;83.8893;146.7528;151.8903;69.04191;144.7865;141.3227;83.58109;59.03973;102.2398;75.06143;125.0984;96.76088;85.81673;127.7458;79.35458;195.9123;80.41996;80.88297;97.17155;89.77366;71.99291;100.3745;88.07207;139.5714;119.7998;99.85749;143.2523;85.52824;74.84012;75.94324;169.028;109.343;133.1282;80.35896;75.63111;102.8523;106.1169;90.19321;59.30691;52.71443;188.9934;79.96965;117.1586;69.22292;72.89986;101.7952;108.1347;93.96239;144.0779;154.9735;141.5948;110.8589;114.707;73.93399;68.0193;94.48414;193.1227;65.13508;131.6217;76.14587;187.056;166.1102;94.79118;69.44279;93.12836;91.9069;48.95024;76.89228;177.9822;131.5031;82.82619;72.65051;158.2668;74.52084;133.1587;110.3396;69.32793;150.287;186.4007;94.7858;70.01703;170.3622;105.8276;96.45873;113.9287;157.7077;135.0838;204.9576;123.3581;113.2637;156.8595;61.85725;113.0609;102.8365;114.1144;184.9712;84.76752;176.6984;61.64667;
108.721;210.7713;136.5358;75.5229;74.18154;110.6924;99.59887;106.2484;103.5991;149.3234;74.81009;85.60274;60.34691;115.4241;108.871;136.7875;50.69343;76.53362;111.2511;83.50445;96.07695;148.8074;106.8077;73.96769;131.1217;187.7672;65.46511;68.02129;124.7083;102.6653;60.84769;134.4478;62.70159;67.00367;93.41722;146.8335;121.5232;194.9039;132.3715;124.9347;83.11864;144.2619;210.681;163.9978;159.6963;84.42597;128.0788;136.9569;69.46152;121.3932;149.1427;168.2287;56.31226;158.6096;149.6336;79.16467;124.3308;71.3007;124.2446;129.5306;71.48046;138.9975;116.5974;163.1544;63.35524;215.9999;190.0815;161.86;69.47021;213.805;65.40341;154.183;80.31429;164.0967;109.3283;110.7098;114.3375;100.896;118.4944;130.4299;100.333;97.50928;135.5236;115.3485;142.1467;152.5973;147.1887;151.3998;88.11912;193.5642;171.2567;116.6714;110.2979;114.0764;48.76103;95.53764;54.06849;75.34781;57.90444;76.58475;95.47923;136.1303;64.01325;67.09053;77.51315;103.8627;93.04459;69.07831;66.28494;142.6984;105.2168;91.39003;160.2552;86.85674;128.7163;110.9938;61.06707;76.07777;76.61358;142.3082;127.0166;102.9982;102.8744;63.98752;119.9185;142.9816;80.72865;128.2921;93.14097;193.3256;151.5345;90.6553;78.87647;94.9009;85.41737;120.0122;110.5013;128.2138;71.47495;88.54665;66.91327;121.4506;100.0818;124.4149;68.29852;72.77843;120.4544;103.1606;88.06765;129.278;80.12335;84.54436;130.7839;143.264;90.91248;67.12286;99.98142;109.3619;54.33236;120.0077;50.76427;57.77214;100.7369;161.4602;125.2182;167.492;120.1735;138.0437;89.3789;124.7907;198.4533;162.5594;167.6664;85.26863;122.7871;126.2098;90.88731;118.7757;153.8744;193.8629;49.52983;133.9908;121.94;91.48423;123.4184;51.65613;147.9696;121.3503;57.1111;141.2905;103.6005;148.5844;48.59293;185.4342;197.2809;177.5877;66.35152;185.8462;63.84023;173.7673;84.97016;152.5017;96.78471;104.4598;127.1299;97.26048;109.3929;121.1923;121.4526;85.75705;137.3777;137.0719;123.2221;129.1367;129.686;173.3173;87.35117;160.1786;198.9304;108.9146;92.25328;116.1546;65.09806;120.7325;60.3634;61.63039;94.29872;74.93851;63.34056;94.24489;81.42426;66.10841;65.76118;134.7788;57.17513;89.35874;64.32801;114.4359;96.08495;77.34197;149.9421;73.15474;156.3311;105.5977;88.14377;83.43124;97.39553;175.0278;130.7852;132.9026;94.13885;70.96181;167.6021;114.8579;90.78319;121.9493;
94.1467;142.4845;69.74915;99.59046;82.55064;123.9968;143.6492;110.5379;96.82807;165.5593;62.05227;49.25511;95.10585;221.6325;116.764;139.6209;59.79206;102.3736;63.2416;102.5265;64.13839;80.19804;93.2129;141.3468;77.10606;92.70366;96.77092;52.99387;62.83832;71.50568;92.69486;93.7662;159.6515;123.057;84.9857;109.6555;70.05152;61.41451;96.23001;179.2946;74.95525;118.9225;73.09783;133.303;115.0897;121.0075;49.9818;68.20727;63.50262;81.62386;63.37661;117.887;129.8551;68.12352;74.97413;175.9746;76.73363;177.3127;171.1606;105.3075;115.8026;170.8009;86.68768;83.58797;179.0958;128.4444;61.37703;116.6001;154.1293;180.881;200.0497;143.7508;88.62466;151.8405;61.55343;93.24285;141.4904;180.9532;151.9737;74.2646;125.1091;84.17567;104.7489;147.8882;126.6315;92.0073;112.0533;80.83987;106.4771;114.2217;152.1798;111.994;121.4696;73.14398;156.1245;73.40707;140.013;73.08783;73.28113;112.145;135.3921;159.8722;79.31398;106.1742;74.2709;129.6212;145.0297;42.67141;134.504;92.61679;56.32425;65.00807;111.7522;150.2343;55.0262;85.25231;118.4487;132.708;78.20592;129.9548;88.6625;151.4417;175.0129;129.4878;120.3812;69.29582;196.9112;98.67551;101.8679;140.2885;91.97166;106.1046;85.44808;115.3017;185.044;116.0822;108.7236;153.5018;66.70039;72.16503;113.1796;213.2629;105.6726;150.6684;62.87078;92.68353;69.5098;100.692;67.12138;99.73867;101.2287;153.9658;83.5943;81.00549;112.981;69.03364;58.98992;65.35284;105.4727;112.3135;163.3585;121.8079;107.9742;110.6861;71.2686;56.69465;126.3812;181.0504;82.06445;109.7454;77.99831;162.8858;133.8177;116.6387;41.14511;74.70561;63.7345;72.97665;69.80322;112.9481;133.0965;86.84939;79.85227;187.986;83.27374;168.0307;182.7015;115.9274;105.8554;165.5227;101.0844;94.91528;175.0313;126.7687;81.21914;127.0445;155.3334;164.3885;229.2563;148.2007;100.0204;148.0824;60.22131;110.0013;156.4747;180.0959;138.6201;75.47183;118.8356;75.08304;113.0841;152.6512;129.2864;106.8538;108.7399;91.30025;114.1563;106.7927;163.0715;122.9379;111.2765;69.70428;180.2187;99.10448;154.8511;101.4578;131.7981;124.2175;172.9818;187.7283;115.301;70.58541;91.67697;161.3055;142.6706;79.58616;179.1785;75.5167;89.63515;98.19884;152.9743;166.7963;76.66209;111.3102;116.1448;131.2871;80.00641;132.3497;115.9692;122.6952;109.3337;161.8664;133.7998;58.34599;146.314;77.80588;
124.6591;113.645;120.1644;99.88811;148.1854;131.8847;124.5688;138.468;104.6947;42.89603;78.10261;53.39643;65.53071;74.06747;57.9001;66.87978;124.0953;64.53011;54.86327;68.05407;103.6209;51.67785;73.14355;45.77235;90.61262;91.22336;101.5988;128.7311;84.85493;176.1533;97.60999;74.24197;115.7688;75.80285;158.2566;144.9475;138.9791;50.90789;84.09522;185.7375;144.0534;88.49329;123.9504;115.9163;160.6372;154.2601;76.14694;107.6967;82.58404;83.05652;95.65056;86.68572;116.183;99.3209;98.11094;59.33334;89.35932;91.59531;141.3086;58.65922;62.30285;132.0356;91.53331;123.9078;129.9265;77.90735;49.61331;165.3139;134.253;48.87643;84.15767;141.6398;97.95943;59.8023;116.1342;68.35583;68.75867;129.3917;121.0326;102.0924;178.546;135.6095;102.1812;90.69888;142.864;153.0428;187.7179;112.2182;50.22332;119.233;135.5491;70.12393;119.5538;216.8762;169.7018;68.34076;185.2579;134.0564;107.3621;153.7646;83.88817;86.41839;160.0442;98.63452;139.4509;119.9599;148.853;64.30302;159.5458;204.5714;156.2592;104.3661;178.9648;88.38572;165.9049;82.51683;152.1932;130.8874;134.49;143.3997;85.2297;113.2193;139.4151;111.9836;91.78629;117.9667;128.97;144.3345;123.777;134.6088;126.445;111.7093;145.4038;148.5647;138.8958;131.9093;123.7089;56.51976;72.08221;46.49977;78.16991;74.6888;58.9762;73.82089;134.4255;90.04456;66.87669;88.01859;111.6185;53.63439;91.35692;59.22803;108.6677;108.4807;101.9622;133.0354;101.4234;146.4759;98.827;64.31829;109.3748;92.7335;164.0246;151.3916;136.2647;58.55413;93.30132;177.722;160.0708;107.8461;115.5902;99.91514;180.1356;150.7269;75.42945;117.5592;88.23075;111.8115;111.0585;104.5812;126.7232;98.34319;116.6224;75.41415;107.1535;104.8454;140.047;59.43703;73.43851;102.0946;97.31786;103.2897;124.848;83.92292;52.51423;159.3527;124.9386;57.01668;87.52837;141.1574;114.2579;72.44221;106.8301;57.39446;78.43686;121.3317;125.3628;103.9813;188.8981;156.6703;117.5618;98.82179;147.3168;152.8822;204.1499;140.4618;63.76547;134.2919;134.3135;70.97411;134.8032;177.9618;143.4601;53.55381;179.6489;169.8587;82.39562;148.7453;69.43923;93.41419;132.1586;84.8727;115.3812;146.3374;105.1698;58.61048;163.8995;165.4812;154.9525;98.80526;147.8247;86.50274;116.3251;89.636;150.4605;125.6801;115.3498;170.8292;87.56001;154.1003;122.9164;147.5107;118.4879;116.9841;93.65919;132.3757;

View File

@ -1,265 +0,0 @@
[Info] 20:15:15.642: Loading configuration...
[Info] 20:15:15.761: Finished loading configuration.
[Info] 20:15:15.821: Loading biomes...
[Info] 20:15:15.893: Loaded biome 'Grassland' from file 'Assets\Data\Biomes\Grassland\Grassland.xml'.
[Info] 20:15:15.944: Loaded biome 'Mountain' from file 'Assets\Data\Biomes\Mountain\Mountain.xml'.
[Info] 20:15:16.003: Finished loading biomes.
[Info] 20:15:16.053: Picked biome: Mountain
[Info] 20:15:17.02: Generated map:
159.0273;87.39476;85.56004;104.1188;90.12878;89.09773;132.1544;137.4861;102.8922;118.9556;100.1898;116.5154;104.892;89.50327;114.4582;89.73071;112.6581;102.0369;112.932;109.8446;104.472;124.2287;109.0852;88.13601;132.7532;140.9013;101.3896;102.5778;110.5918;140.5459;119.7404;139.1435;107.3639;108.1263;111.5098;116.5061;137.0221;125.5524;132.7703;113.1774;119.5339;103.015;107.9285;89.38215;97.29549;123.5699;85.82261;128.362;141.7219;96.61339;118.5247;98.86831;85.4231;96.19506;112.8138;113.9775;130.1175;131.4182;118.6847;110.9576;82.28431;108.7923;134.6167;139.2829;117.1744;88.17187;77.17224;130.6897;94.78143;127.3902;94.60674;115.503;133.596;137.366;113.8232;83.6547;126.7072;128.287;98.49094;121.6942;97.10789;100.7314;108.1778;111.2319;126.9822;102.2301;86.00901;82.14554;96.08588;101.1511;89.86665;101.1728;106.9902;109.2902;99.07797;149.2718;120.7429;79.84978;94.96054;94.13016;110.9239;97.61008;105.2381;92.02255;77.57421;92.98086;99.7537;80.15432;89.54549;90.71985;90.21316;93.21167;116.673;112.7199;103.2886;117.0222;101.1029;107.0057;84.93207;107.5068;101.9332;94.70644;127.3526;75.00253;109.7052;129.6869;115.0794;139.9515;149.7049;88.5663;83.87823;102.2939;89.39629;83.65148;123.9476;133.973;97.92097;113.0104;98.26704;113.1796;99.72941;94.71138;110.6339;90.81664;105.5785;103.7484;111.7646;108.4274;104.4148;118.2509;102.5281;86.29366;128.7304;134.1463;100.3417;100.2872;106.2755;146.5274;116.2525;141.5001;101.4191;109.4311;110.7735;115.9457;138.0916;119.0783;125.5285;111.0909;115.7208;97.25356;106.8498;87.24711;94.01187;130.2701;84.40667;131.5073;133.4857;96.84589;106.3289;93.40946;83.48418;86.00037;108.0284;110.439;120.8488;131.12;129.8202;115.5384;76.55312;114.8305;139.2414;144.3694;104.9252;92.60755;79.3951;140.9035;93.39937;126.3407;93.58843;122.6183;135.7239;133.7201;101.6806;86.28162;112.7553;134.4741;94.59312;133.6567;90.31147;100.9593;96.54136;105.432;124.6158;91.7026;81.83724;79.14137;89.6072;105.9263;101.4838;105.4544;103.8085;109.0188;104.6;151.1168;112.3541;82.19692;98.95561;100.9629;107.6524;101.5305;109.0204;99.57506;80.60577;94.72816;90.2082;82.64206;80.8725;90.17176;87.92693;100.9282;113.3048;110.7799;93.42737;109.133;97.29897;101.0605;85.06588;105.2898;95.27597;99.31063;141.1382;78.69486;106.5033;129.3704;121.0465;141.7378;
148.5797;129.7557;90.92252;104.4521;111.6715;98.60095;100.0422;103.8434;100.2779;97.85931;113.9748;88.35866;97.07;90.96947;99.28122;91.68034;99.09535;110.9156;120.6603;92.21445;115.7654;107.7862;122.5766;86.21757;119.0602;109.1363;92.33404;133.3378;82.61835;125.673;106.2889;124.8742;142.8859;148.2874;101.7075;89.91471;100.9999;94.92333;109.2761;125.7026;124.5648;111.4759;126.6882;92.32727;119.2065;81.19615;102.4725;109.3684;75.98133;107.3646;97.29597;105.9837;92.75862;103.3374;116.8612;104.5577;98.74428;119.4221;125.1321;117.0739;99.23378;85.64406;133.1467;130.442;134.0712;106.5658;122.5955;122.3398;135.157;122.1676;125.2123;126.9743;115.4106;142.2997;117.0028;98.26923;103.3268;91.20194;144.0005;82.85545;134.5439;129.9179;105.1172;110.8609;100.273;94.15141;103.8233;108.2679;126.4192;139.4914;129.7354;123.6988;122.3988;93.14668;94.31297;140.93;139.6341;113.0739;101.3091;84.90784;134.6591;96.19939;148.7392;88.66913;102.9589;147.9061;145.4386;104.1207;84.11454;102.3268;145.7949;94.13821;109.2721;91.44505;97.92627;99.58889;92.04726;124.4366;91.14524;83.20782;93.11406;92.38674;97.5414;102.5578;101.7617;86.44833;101.2717;111.5564;145.3549;131.1423;92.92781;108.8339;111.4376;95.89506;100.3027;101.4747;99.17386;100.6562;119.205;89.55058;96.93614;89.98267;103.4447;89.98553;96.28067;112.0921;122.7606;96.24718;115.3357;104.846;121.6482;83.58093;118.6655;111.9169;95.974;134.6004;83.57906;124.692;109.8911;122.6933;140.8911;149.8668;102.9626;93.71922;101.7859;92.32919;108.3971;122.517;124.1584;114.2882;130.9431;93.38039;117.2252;81.23342;104.9342;108.6737;80.15131;109.1318;104.7634;115.754;93.9237;105.1228;115.2726;108.7346;108.562;116.7551;130.695;114.3502;97.81387;86.87231;131.1339;133.2688;135.4284;108.0293;126.7796;125.1605;128.1815;111.612;122.6507;132.078;116.9694;144.5965;124.3304;95.90831;101.5804;93.77329;152.4844;77.59582;140.074;131.8498;112.8688;120.8486;101.4839;95.84635;102.3218;112.5176;135.0553;134.0625;130.5155;121.9136;122.847;94.36562;90.30468;144.6518;140.1011;113.6876;103.3553;85.45854;130.111;88.47282;148.233;94.46587;102.3279;147.5538;148.3932;102.636;84.23677;104.9792;151.3513;89.1647;113.46;92.25702;103.6709;107.0473;95.28645;128.3358;91.55206;88.4088;100.5836;87.96149;98.23901;100.9541;102.2083;87.60567;97.13744;114.8929;
138.2023;130.5463;117.2675;100.7746;102.1711;99.6066;112.692;96.62784;127.9124;101.2533;107.1332;131.6832;106.6729;130.9036;114.6553;99.1367;111.6889;148.8303;138.8151;81.34653;141.4399;121.6416;99.75419;102.3797;113.0908;109.8411;90.5144;82.08656;122.3691;116.3073;106.8282;105.9823;119.9157;95.65458;101.2115;131.7958;111.804;107.2989;89.87949;109.2652;104.6501;127.4991;96.75565;98.64955;117.8619;123.5542;83.6469;118.9551;114.0891;127.5061;131.2058;88.88484;90.81718;92.70512;105.679;117.3102;101.3478;133.8191;126.059;115.3212;92.57848;96.78455;123.1934;128.7196;124.4333;128.7762;135.2434;98.87267;110.093;100.7155;98.65871;126.7065;127.4684;98.60172;108.6604;113.4588;139.8812;107.9331;91.3499;95.02666;89.50302;95.18742;130.6397;74.85963;123.1916;100.9777;86.43042;71.64886;109.715;94.342;82.10378;84.43126;127.0341;108.2782;100.7159;95.3073;89.08706;93.01219;92.76764;111.7474;101.4173;104.7877;119.5206;105.1814;94.6414;111.5484;114.4739;97.94289;92.32132;105.2789;88.82934;95.46384;105.115;99.34061;117.3514;90.11797;90.74706;85.20863;110.7893;98.30839;108.3862;130.3598;78.90674;112.5863;105.2885;110.488;100.3979;94.36799;129.9626;124.4905;117.8563;100.8388;102.6634;96.70351;117.6277;92.11052;132.2097;101.0235;105.1014;126.9494;111.1416;123.8211;113.015;95.40299;105.0369;142.8828;140.3141;81.80042;142.8857;118.9098;104.1883;98.63788;116.7193;111.089;88.47021;79.00488;126.1853;110.9272;104.5363;102.8512;112.0994;92.06497;101.8124;133.2131;112.1778;105.9967;94.09322;105.4009;108.1442;128.8462;94.64413;95.27083;120.1516;119.5442;81.29041;116.6785;113.3711;121.0334;137.3099;96.76855;98.14326;96.05198;107.9111;112.8223;103.4986;134.8396;124.1102;114.2837;99.41209;93.16328;118.8711;125.7835;120.7755;120.8268;138.2378;95.74062;112.7448;96.51246;106.6768;123.8662;129.2515;92.91178;103.1541;103.261;137.9494;103.0084;85.95765;92.97763;88.85803;89.60168;136.73;82.10434;131.6896;104.4644;88.44952;68.14733;105.9235;94.99191;82.17101;87.7715;132.5722;108.1808;99.35696;94.79206;90.57278;90.67721;94.33456;108.3166;104.9199;100.3372;123.8012;105.3931;90.58305;105.2728;110.7368;92.83533;88.74557;104.0885;85.89931;95.43616;109.4479;98.22562;122.0996;97.95556;98.99494;88.26163;108.8208;96.88088;104.5983;131.1234;78.98758;116.4398;110.3155;110.3894;99.05791;93.85651;
105.8233;99.04608;98.33386;105.4731;100.5705;102.5996;132.8109;121.8861;82.68329;91.65527;110.6058;118.2812;99.33276;111.3077;90.73859;83.72762;111.927;91.79683;129.8473;86.61932;102.4471;87.86112;108.4991;105.4438;108.3959;118.3707;96.16885;126.3338;96.80007;114.7287;103.5026;110.5656;131.9735;117.0149;115.7021;111.3007;109.8914;100.7148;119.9333;110.6743;114.4682;110.5828;114.9099;127.0456;118.0477;98.78799;135.6701;100.8505;120.7191;128.5559;138.8911;84.68394;131.9969;112.6785;89.5138;131.1426;95.47193;108.9986;101.5681;79.72442;137.8166;96.15154;84.01289;87.75145;130.2346;102.3514;109.867;126.4192;114.1318;106.095;105.7005;120.1958;98.6003;111.1948;91.52461;117.654;132.2834;130.8562;85.44761;107.0285;118.0085;117.5583;150.5531;87.27888;106.3795;95.71841;105.4142;125.6995;106.9299;125.5496;147.5075;126.6414;90.20942;98.7005;130.7983;143.498;119.2793;120.1525;136.7605;110.7917;115.2973;103.099;103.1794;138.7007;115.8577;108.4221;119.8452;106.6554;152.4246;82.95821;113.3266;101.5236;96.3259;83.72571;131.2592;79.19956;112.2308;91.57691;77.35364;92.7072;88.68534;91.46114;95.90051;88.28828;138.5213;96.4962;86.08674;84.57445;106.0125;103.8665;104.3976;107.0825;102.3253;100.8955;133.057;118.6865;83.20303;92.95232;113.0105;118.3199;102.5691;115.4248;93.80637;85.76273;111.923;96.34165;136.5822;87.98506;104.0194;86.1841;108.1811;102.1288;108.0684;118.467;97.90688;126.3889;99.53112;117.8974;106.6851;112.9078;131.4461;121.1246;121.9759;112.862;111.0369;98.00773;119.5964;107.2796;114.1291;110.678;116.8064;127.1032;120.1076;101.6679;140.3544;104.1056;121.6092;128.7061;139.4553;92.7629;127.9358;111.1642;91.9503;122.0675;94.97772;107.8749;92.11187;85.46267;126.1457;91.52367;95.87214;94.04194;134.0534;108.6219;112.7396;126.8196;113.9701;108.124;94.77366;121.9193;88.75088;109.8181;89.38794;115.2902;134.3124;145.3183;89.43759;107.5572;118.8883;117.697;151.1293;95.47795;102.7366;94.31881;108.0475;116.8183;106.9016;125.4955;136.1965;133.6623;79.1252;91.22045;140.7244;147.5525;123.6332;123.9736;135.4131;109.5211;114.9136;107.9457;91.81331;143.2338;105.675;108.1335;117.5075;104.2568;152.2885;91.76226;113.6176;98.81837;97.76483;81.44616;127.3905;85.56035;108.289;92.84745;79.10001;87.18954;88.69507;91.41772;86.82636;94.18653;124.7413;89.10451;94.17621;87.71337;
113.5445;82.07218;118.4968;104.9101;108.8539;86.40766;108.6146;114.1875;125.2332;104.8601;119.0338;122.4298;101.5905;94.46599;96.49582;137.5583;132.791;124.896;106.8748;123.1345;127.6992;129.7156;136.882;110.1657;117.3182;117.8151;135.2442;105.0157;91.64741;110.987;105.0826;131.3806;87.8068;145.7701;134.3137;96.80165;117.7076;86.04708;84.38403;84.60921;122.5729;111.5741;119.171;127.4648;110.4372;112.659;80.10494;89.78011;134.3579;135.8932;91.84705;98.63908;87.94311;117.4869;98.14073;117.7252;90.12853;104.2111;140.8203;137.0018;118.2475;81.03021;121.2555;128.7203;98.77967;113.4912;100.7574;103.1117;104.6395;89.39717;133.4733;91.04836;105.7048;100.6676;86.84688;93.06665;91.36684;97.61778;97.6289;96.76226;119.9121;135.3862;128.6261;93.48379;114.7985;108.85;109.3022;88.88795;98.61394;100.3233;90.78951;108.2193;89.99159;100.9903;101.3431;90.7352;91.82777;105.9561;114.9726;110.6741;103.7134;106.7136;100.3448;101.3587;104.4784;104.1775;91.80143;101.8054;119.3006;74.94162;109.7226;105.1812;112.5306;137.9985;129.9805;99.59073;97.10556;90.52367;94.43596;82.39839;127.1289;125.5025;101.9617;128.1592;108.447;108.1478;96.28768;90.56405;108.5914;82.76331;116.7889;103.4347;107.8087;88.53684;108.5806;111.6226;128.5189;103.9023;112.4173;128.739;102.7339;90.75906;92.81596;135.7813;128.2506;126.2401;105.9992;122.0298;127.3769;132.8284;137.8717;108.7131;122.1097;116.5621;129.1811;111.7578;93.66103;106.5265;101.637;130.5898;85.0221;146.7172;133.7871;96.64342;118.4491;88.18634;85.16376;83.33908;127.4723;110.3574;113.4865;134.8848;111.2029;109.6706;78.38729;91.87357;142.3357;147.2985;94.14998;102.4333;83.91438;121.456;91.45186;121.3893;96.74268;110.0109;129.084;142.1157;113.459;75.17854;114.608;125.0431;84.88691;113.6168;93.46418;107.3546;105.833;100.5958;136.3237;95.4986;106.4242;101.793;84.50367;93.72173;99.96947;99.59583;90.40319;102.5739;127.4551;146.7593;131.3489;97.17366;110.1889;112.6617;102.2368;92.07077;102.7987;106.2074;83.96345;106.5335;85.12675;97.20564;97.15144;85.58555;82.67601;104.2783;105.0944;115.8005;105.5979;114.8483;100.4994;104.4883;102.4944;105.495;92.07407;96.54936;128.2795;79.16215;104.0219;108.9171;125.0767;147.3369;130.4205;104.0922;93.52022;90.39218;85.7295;84.06153;131.8969;132.0528;94.7391;126.3238;103.1198;104.2114;92.22191;85.41904;
97.06316;110.1526;111.6105;112.1827;115.3959;82.99039;130.3584;95.21333;89.41985;88.33144;129.7231;88.40238;104.4551;135.9615;101.3611;118.3662;90.49267;120.6333;87.82205;129.2488;110.998;109.828;117.9452;133.6201;99.90169;120.0658;141.2017;119.4374;124.8582;102.439;99.03918;97.90224;92.98704;106.5606;113.5034;117.7592;137.1489;115.8728;78.93593;104.7598;100.9867;134.4935;115.7881;116.1005;131.0501;108.8169;89.64935;101.8302;94.19988;116.8797;107.6471;99.98759;115.7818;102.7243;121.8929;105.9278;107.9855;94.96416;100.1957;89.90391;124.8024;100.4838;130.2947;103.5261;85.21802;78.89513;106.9155;99.83206;107.1329;93.43973;135.4558;95.00803;89.549;84.46435;108.263;89.46462;93.00232;114.9163;94.12563;118.775;118.108;122.3666;76.2854;113.0058;129.4578;113.345;88.37876;117.7835;108.7272;95.94655;132.1853;92.64059;110.0369;99.51844;100.9952;90.56598;100.5896;90.68125;113.554;107.7012;86.4589;117.6761;91.51608;121.4862;84.14655;102.4951;119.8249;113.638;115.398;103.5315;85.52741;95.81451;113.0238;90.19218;108.0157;96.29234;114.2204;121.4054;94.82292;126.0096;130.9721;96.10814;121.1368;134.6971;136.6106;104.3445;152.702;120.4415;100.4838;113.0664;112.3588;107.1968;110.7699;83.71724;135.0708;94.18252;90.08786;89.23394;126.6086;85.66171;101.9991;132.2401;105.3093;118.0336;93.61483;123.5707;88.3095;123.7825;106.2703;110.5514;121.2143;131.8069;101.3625;120.9183;136.6605;116.0506;123.482;99.37286;102.2622;97.42902;97.31295;109.4904;113.3408;112.3491;133.2469;116.8001;81.61219;103.1572;102.453;135.3981;111.6767;112.7639;132.2474;104.7273;91.4319;102.0295;95.99232;124.9366;104.8049;90.61677;106.4232;108.7333;123.0883;97.36005;103.5265;87.56693;98.69757;90.2962;124.5779;96.98626;132.9047;103.7604;85.58096;78.64955;100.5367;95.42646;100.4787;97.28344;142.3301;98.1292;96.33308;87.90335;110.4722;86.98771;92.84222;112.0622;100.3225;122.5283;120.1137;130.5961;73.892;103.0291;119.5502;119.6419;89.39292;108.7392;105.3002;88.6348;133.6543;95.88871;108.741;99.9342;101.3948;90.59387;99.0332;88.61077;106.0237;108.1331;81.48264;121.9922;95.55881;126.0362;91.72593;106.396;125.2376;113.9687;114.133;104.8096;89.66269;99.01295;112.9286;95.39673;104.2399;91.70624;106.0721;127.9342;94.27993;117.634;127.2504;88.7729;122.5666;138.6328;135.2097;104.7516;153.2195;120.4968;
119.1449;115.6813;110.3964;130.4664;120.6809;103.0114;122.6199;109.1141;106.8038;124.8286;82.69926;138.9445;122.6094;113.4044;122.7037;129.0846;104.6704;101.6885;94.15068;93.84943;100.6163;134.5269;148.6624;116.5155;117.9992;107.3466;99.22202;110.0249;90.94827;106.3831;78.044;109.9016;97.419;95.77528;94.33331;95.24884;134.9895;99.54285;95.01523;115.4572;130.833;103.9831;93.64105;99.28365;120.8003;134.371;123.6111;105.5539;127.8793;109.3316;109.2976;131.795;132.675;122.6372;113.2108;122.4001;113.355;97.98631;100.214;98.93795;113.9349;76.55214;122.821;138.6582;102.1568;131.6808;93.26552;110.8505;103.3849;124.1602;130.8267;134.1138;142.4073;116.1961;121.317;104.9177;110.6441;128.5868;125.8572;96.62946;108.3947;94.63981;128.9234;100.2193;144.7844;97.87848;125.2203;155.9456;138.8151;128.2371;72.52541;135.1526;131.1889;89.96916;108.6431;92.19151;99.80439;94.0768;99.52119;124.6278;115.7956;83.07507;89.18003;88.04699;103.2668;97.313;97.56127;99.8394;87.61755;118.36;132.267;128.1954;97.30157;98.9961;90.29377;107.5018;115.1571;102.671;94.97469;87.29141;113.0068;98.208;96.02784;96.12386;74.69395;83.22134;83.8421;118.482;120.6532;117.2208;114.7096;131.6176;125.1635;102.6048;122.5981;111.8958;109.9576;128.8098;84.67905;135.1346;121.7901;109.9103;121.2229;126.2309;106.8333;103.5779;98.85747;95.26405;105.4668;134.5608;148.3846;120.4143;120.891;112.5562;101.189;107.4026;89.43742;104.2411;76.25828;108.0371;98.64275;98.83498;98.36598;97.39171;139.5817;100.8032;94.79556;119.3411;133.8799;109.1139;95.5546;96.79585;118.8815;133.1891;121.3927;103.6532;127.2054;121.5153;109.4822;129.0435;136.8084;121.9108;113.3148;117.6035;119.3557;100.1337;106.196;95.86597;120.709;83.78701;127.7945;142.1346;101.2579;134.5001;100.6769;104.4605;115.4499;129.5368;134.2162;131.7752;145.0753;119.2105;115.4216;93.33524;110.0452;123.0452;118.6788;97.62759;107.7642;105.9927;129.1231;97.8173;149.0891;97.2248;125.3289;150.5198;143.3299;126.1461;77.5017;134.4755;140.5131;98.78801;115.4409;96.84556;98.57089;94.36694;104.8187;115.5053;124.2915;85.30254;92.16599;82.92374;103.7234;96.10011;92.15722;90.9463;88.71773;114.1195;127.1532;131.4735;96.3586;108.3658;88.31147;102.8037;114.9137;99.64545;95.25206;80.06892;117.0632;96.37902;101.7585;95.5542;81.75163;91.71073;89.84233;123.7518;
84.77009;107.3782;86.1429;104.5171;95.53704;102.384;106.0386;98.33984;129.5134;116.4745;97.94492;106.4192;133.8504;123.4083;90.51648;120.5137;100.6055;111.5051;118.0011;97.91229;117.7013;103.8082;116.2193;127.1829;159.6688;103.8531;95.79402;86.59975;89.38265;86.62471;136.5239;118.9116;84.70753;120.6701;95.30569;122.3578;99.845;97.84757;118.6268;81.01447;111.0889;96.46766;95.55103;92.56554;111.9888;127.3728;115.4843;91.994;105.077;152.1384;116.7431;102.0679;120.0217;127.3696;129.5253;135.0322;107.2645;124.1538;105.2387;121.1333;128.5728;119.8209;115.4241;115.2067;124.4784;112.0576;92.14165;111.16;102.7012;150.068;98.302;140.5455;153.5865;104.6712;115.5444;86.68089;122.3583;109.2653;114.4302;129.2226;126.4571;147.5505;107.755;135.3392;89.30556;89.93614;131.5854;126.8056;118.9567;101.4414;89.36993;112.9797;94.95893;129.2959;99.85074;105.9249;122.2894;138.4783;109.0889;88.32731;128.2633;133.6505;103.3108;111.4691;93.91354;97.97218;92.23205;92.22712;137.4731;105.2497;92.38303;89.04527;78.55656;121.4273;105.9279;107.4295;126.3576;90.30499;113.5712;142.0461;126.7027;90.6133;94.4664;97.45454;102.2523;102.1547;90.83898;102.6873;88.35573;111.7901;88.88155;105.4971;100.796;101.3252;108.6914;97.98212;130.2141;118.1606;102.1728;104.783;135.3012;129.2798;89.7611;126.7051;104.3166;115.8928;120.9961;98.76281;123.3344;102.6511;118.4384;126.4179;159.3368;104.154;99.47419;85.13754;90.14438;90.68633;135.5006;125.0885;87.6955;124.2055;97.92741;123.3229;104.5699;95.82351;120.866;80.40598;110.8095;96.75969;99.22417;91.05558;109.6995;130.4715;113.3515;96.62271;115.3741;157.3885;126.0096;98.60078;118.0439;120.5675;126.4774;141.1973;101.8659;126.4885;103.8807;129.7437;134.1842;122.5336;119.6123;125.0041;126.3496;104.4702;100.4073;106.4467;99.96046;143.8209;95.88634;142.4394;149.64;102.2238;115.9075;86.3278;109.3502;106.3675;109.3744;135.0234;137.7296;152.716;116.6549;131.3423;87.60034;84.23109;128.5028;132.7821;115.038;104.5643;84.72533;121.5027;101.9884;128.9901;105.7936;110.261;122.1252;127.8616;115.2662;82.08448;123.3448;131.9075;99.88699;114.7803;92.4414;96.57827;89.0658;92.05315;126.1356;99.66953;89.72578;89.32924;85.82037;123.9952;111.9995;101.5923;122.4972;87.97092;109.7411;150.2217;122.6993;93.56892;89.69184;105.403;109.5815;101.8858;96.51372;106.9792;
107.0743;113.1974;100.6625;113.6498;116.8012;106.9449;119.9258;113.3846;130.7475;136.121;84.01537;136.5235;128.4728;113.6835;91.99705;134.2405;131.1402;97.37347;122.7068;96.80827;116.5962;93.20094;88.3445;129.5052;85.66682;107.0089;100.4481;120.9743;104.8463;93.88002;113.0755;112.3998;109.0622;92.56085;109.631;102.0953;121.0572;91.58686;108.2965;122.586;130.9083;107.5524;121.4196;129.1047;133.3096;117.7732;85.69328;108.0405;93.0899;90.08408;109.66;99.52212;129.2798;126.703;112.3001;91.83021;94.71497;133.7661;131.0907;125.0859;116.5325;131.9234;105.4204;107.1024;111.1472;96.50819;130.6017;113.9583;109.6953;106.4158;97.61423;144.131;109.3543;108.8599;83.58691;111.3043;79.44632;103.3952;80.76487;112.4935;107.0931;82.63314;88.15502;88.38348;100.9324;86.25028;94.50032;129.492;84.19684;99.67623;90.0023;96.71321;99.00224;85.63377;88.15798;100.5464;109.2566;116.305;109.2679;81.47606;95.26962;115.2486;107.155;95.1916;115.5798;110.53;96.804;119.6417;107.3459;104.1843;81.71754;111.9247;90.63923;98.11032;91.20392;97.20011;118.7944;83.59546;113.2636;100.5192;117.5132;107.9103;99.05542;137.1506;115.5146;116.9001;99.21574;104.5743;106.872;115.3754;98.47276;106.0789;108.9482;108.7689;118.2951;114.3147;129.9975;131.3984;81.37224;133.8421;123.2325;112.5254;84.63049;134.3886;131.7482;99.83163;121.0853;90.24809;109.4995;95.32487;87.76614;131.693;86.39603;102.5833;98.43391;119.3651;101.0796;92.4099;105.2957;113.4351;110.6233;94.53333;108.518;96.17429;114.8588;93.28161;107.6586;124.7175;131.8121;103.118;119.2068;127.4449;129.9543;117.1572;80.43494;109.861;101.7084;96.93272;107.2238;97.05926;117.5607;129.8232;126.4226;82.8233;98.84235;120.7089;121.4661;135.0429;109.3211;129.6698;104.0147;99.48731;104.8908;99.9604;132.364;105.9358;108.7344;108.079;97.27058;141.994;110.7934;97.68295;87.81963;103.3913;80.95565;110.1105;78.30006;110.1559;116.3233;89.18883;85.97219;86.05882;90.61001;88.81903;107.4899;118.7475;85.52531;91.78864;84.67599;104.5703;95.17238;84.32016;92.3203;91.4903;99.57975;116.9927;112.9032;77.8422;99.20924;114.017;105.7076;90.873;114.1249;102.7811;104.2765;110.4853;112.1751;111.496;84.46693;107.7781;95.76247;102.3385;90.81053;98.27908;112.7249;83.5899;126.2513;88.53023;119.1031;99.67863;93.48271;146.4776;111.3953;115.3449;103.6485;95.33402;
111.9125;134.7593;136.9755;120.9846;119.7499;110.1819;115.8774;89.12164;96.36673;98.63132;101.5442;131.9955;82.87879;141.1336;140.3643;104.5817;104.4013;100.6943;101.5478;100.927;130.9563;119.8661;133.2261;133.5783;119.1219;111.1762;96.05801;92.52509;132.0472;124.8518;100.2523;83.77573;74.83069;126.5564;93.6028;123.6656;99.23836;106.2908;121.5211;119.997;101.7739;84.73909;116.1465;121.7832;99.19659;116.0917;94.40836;89.55471;80.32703;100.6369;116.8104;101.7402;102.76;99.03235;80.49378;101.2738;95.04829;90.4655;97.19882;96.24258;125.1639;132.7258;126.2711;99.5295;91.83555;113.7336;110.4432;102.8088;99.58681;93.47104;81.67824;85.45547;89.71712;96.04971;100.8972;96.27309;94.37174;101.3804;124.1821;120.4868;87.92109;120.8415;117.076;119.4798;109.4138;113.3733;110.8836;101.3605;129.3573;76.93952;129.8357;110.9496;114.011;125.2652;137.6261;84.58585;85.42306;96.28834;91.34151;85.75467;134.1803;125.5998;88.56068;103.89;88.50494;117.4075;93.39119;86.35133;113.1525;84.63345;111.3551;91.40896;88.58035;99.33645;94.65488;121.8265;123.3525;104.8843;109.7097;136.2928;109.809;85.90681;94.50591;130.877;139.5078;125.6939;103.1294;135.4079;112.5738;135.2155;140.0146;122.2301;120.4352;109.1455;116.1836;90.08259;93.95596;98.49535;102.1996;134.2907;81.69162;139.9973;142.3793;106.4257;104.8477;100.9884;103.9753;101.9751;131.4683;118.6677;132.2858;134.1469;117.2436;110.8608;95.62395;94.28033;131.9105;123.962;101.2802;85.25881;76.22964;127.0882;95.28567;124.6201;100.8661;105.3375;120.6204;120.5383;100.0359;84.46568;115.6666;123.798;96.23592;116.2215;94.38554;92.32798;83.78451;94.99573;123.2588;96.95477;100.8226;94.77882;82.15396;104.1854;88.09092;91.9705;102.9961;91.99362;117.9848;131.1345;124.2405;103.4859;95.47989;107.6032;109.2316;105.9161;87.13033;97.67622;80.64326;94.7378;98.32386;100.9166;108.5545;100.0767;93.5486;98.10948;130.4272;129.6674;91.53629;114.6416;123.5266;114.2892;107.414;108.8087;112.826;104.2735;120.4207;78.9988;136.4759;106.586;110.3006;123.5609;135.5288;85.514;85.15266;90.64008;88.14783;89.70401;121.0584;130.4314;89.23277;112.2076;96.36324;123.5997;100.7244;90.15536;115.4857;81.51387;117.3065;96.5603;88.37469;93.70337;98.27615;117.853;122.6582;100.4708;113.6377;137.5685;101.6256;88.06487;100.2044;126.1577;135.4438;123.9664;101.3362;136.6062;
103.1163;108.8757;94.41326;90.72337;136.4644;105.4705;100.6166;112.0102;142.8176;100.1274;104.6725;130.3877;104.1431;108.8271;96.56649;104.6315;83.08426;102.6641;85.24807;92.66795;121.7708;122.1325;88.18582;114.7721;115.9409;120.0406;141.7597;97.20002;85.78162;99.68378;109.3346;110.8833;92.45909;114.7188;121.9625;119.1457;87.15139;103.5655;134.5101;131.8275;146.3728;126.8477;133.398;95.72129;94.20885;97.14838;108.4881;122.7269;122.6791;91.94871;99.00391;111.4776;143.3206;84.24719;97.75153;93.69292;94.44466;90.86736;130.0578;92.13822;117.6518;96.13988;99.95682;88.76961;95.4904;93.8983;87.55111;98.74891;139.1485;101.1038;99.37532;105.5391;117.1075;101.8549;95.44132;110.6802;95.92084;105.8678;121.2021;102.6866;69.12943;87.96415;106.713;95.58657;92.77612;103.9633;95.19168;91.76413;104.8166;90.5519;127.7318;101.9922;88.31955;94.2125;110.4447;89.17189;93.87563;110.7853;78.62395;115.4537;92.24111;117.6345;108.8842;92.57337;145.6478;119.811;116.7339;96.9429;89.68291;93.90728;124.966;87.43537;123.988;93.68859;99.32501;124.9711;106.3358;99.66353;119.1461;90.59486;109.4585;132.4492;143.3538;99.98096;139.8495;114.506;114.3568;119.4618;105.9122;110.2487;95.86093;88.7275;135.6696;101.0287;100.8359;105.0867;135.1073;93.96481;106.3932;132.3159;109.168;109.271;96.27187;99.85199;86.26868;104.4449;87.30082;91.06882;121.8201;117.8256;88.19549;108.7173;108.6047;114.7956;143.5351;99.59203;89.5329;101.3417;108.2996;106.7056;94.9698;117.9214;123.6665;118.1221;86.39257;100.8338;134.5249;125.3354;138.1179;121.4571;135.1233;98.0976;96.83049;100.192;107.0787;119.3837;125.966;101.2306;100.5716;107.1002;134.3061;87.04485;91.67629;88.40293;92.09068;85.50164;123.1998;86.35425;124.7776;91.72308;98.97522;82.72006;104.3862;95.49591;92.91677;102.6451;138.846;105.5058;89.56786;106.6;109.9858;95.02882;97.13811;117.5778;101.9094;113.3238;117.737;108.7166;71.59402;97.04277;108.3396;91.53204;85.54292;107.0635;89.19714;86.52544;106.9725;90.64801;118.9313;94.65531;91.90269;86.94601;110.8116;85.88031;97.71225;110.4142;81.99993;121.9446;94.02409;123.7983;98.95148;98.20795;143.0458;118.6474;116.6378;102.1112;92.85375;97.87676;122.9454;95.94774;121.7192;101.0456;99.02568;122.6157;100.6867;103.9999;112.7922;89.8257;111.6412;132.5652;134.0408;92.71932;144.3261;106.4799;114.7481;115.6485;
127.0272;133.7831;98.03024;133.6801;127.2357;102.3793;111.409;105.72;126.7374;109.2049;85.42016;131.2877;109.957;107.0053;100.6726;123.718;114.795;111.8987;117.8192;103.616;130.711;98.44286;108.7258;88.8648;109.8738;83.98566;91.07027;115.5152;117.2215;86.21782;111.5841;119.3247;114.3589;132.7319;89.51882;93.65691;111.846;94.54914;112.8099;97.77689;121.3222;133.2211;124.3917;80.15317;98.6535;124.6249;131.8215;130.9335;125.1215;147.9786;99.51619;86.48357;96.9718;101.4127;136.746;113.3187;92.14032;111.7527;98.07797;135.149;100.3446;97.54832;82.60378;95.70873;78.78238;124.1277;90.31925;113.4553;109.4046;87.63144;79.70525;100.7051;109.8965;104.6342;93.22022;129.7667;106.5138;102.81;93.62335;98.66925;116.81;104.3699;100.5884;93.30816;129.5611;124.211;105.3979;74.89761;95.68478;105.8106;94.90357;89.53027;103.5527;93.10088;86.1188;105.7146;89.11021;116.7654;93.45149;96.23424;104.9363;96.60846;93.74319;100.5193;117.4663;88.16084;125.7809;89.15154;115.1835;105.4006;99.35699;134.2303;123.5472;126.5837;104.3511;81.59352;88.43588;117.5789;103.4497;114.5761;95.86015;114.5102;118.5937;105.3395;121.7585;126.6013;83.16842;114.0676;127.8751;135.3741;104.2673;135.9745;128.4369;103.4791;110.8344;107.8931;129.9078;113.8;89.28934;134.1475;112.2534;110.3491;99.03671;117.3193;115.3993;113.2479;124.4381;105.5349;131.7049;99.41332;107.6192;90.53745;111.8885;86.84168;94.5676;118.2132;119.0847;88.34684;109.768;113.0476;114.474;133.1376;95.22167;95.49446;112.2802;94.60519;111.6801;99.53313;123.4362;136.8144;128.4708;82.40512;99.49485;127.1125;130.8551;125.4715;119.673;145.9345;101.116;88.09417;97.70201;103.8378;141.0356;117.643;98.4621;117.3632;99.48139;137.7086;106.4704;105.0742;86.37263;86.64504;84.38876;120.5349;86.13069;122.4862;108.6481;91.06111;83.58734;102.0216;113.0272;101.6549;91.05861;127.7258;105.7105;113.2875;104.0031;93.93889;111.5473;102.6498;102.1875;94.98086;130.4046;126.8882;109.1584;78.42081;100.3651;109.2021;94.57219;89.13737;108.8867;98.22352;90.76438;100.9442;95.12672;114.0998;85.40004;102.5492;104.6794;100.1923;98.10834;99.06002;118.8136;83.61711;121.3158;85.05367;113.4673;113.6172;110.9212;134.237;118.2258;125.5592;101.8515;81.35821;89.59468;120.1682;107.3663;115.9204;100.5825;118.0404;118.226;104.9349;127.5795;132.5668;87.73711;109.1323;
108.8556;107.3268;136.4676;106.6688;92.56384;100.9199;137.0168;124.9639;116.5127;104.4022;113.5402;118.6999;121.4288;148.5132;128.9879;114.9161;118.1882;131.6772;92.92123;92.17995;101.812;104.2423;153.4647;102.2686;126.715;133.2801;101.2403;124.0429;90.44801;112.7367;101.8717;124.7667;121.2015;126.1995;126.769;126.7894;110.135;89.41363;110.9078;126.0981;125.2884;103.5059;111.2899;82.20615;132.4789;113.1916;147.0489;91.62111;108.6296;140.4524;121.5722;123.9438;77.17891;107.5767;146.8799;103.9236;104.3297;95.92803;92.91039;102.8495;93.56794;124.1417;97.38599;85.43815;104.1693;79.70189;100.7873;94.21162;95.42028;104.7016;102.1106;105.4076;126.3229;126.9885;81.44575;104.4391;101.5872;119.1728;107.0079;88.63184;102.672;91.25549;88.30167;88.31679;96.86086;99.75593;108.5625;105.5372;88.05029;114.358;111.9501;109.4245;109.653;127.3132;118.1028;97.84264;117.3008;101.5956;95.12667;137.4235;79.89867;122.7436;123.6773;102.4667;127.5926;138.8154;107.1641;87.95303;100.8658;108.9929;104.8144;125.7252;130.1628;110.5108;107.9596;108.6861;110.4396;86.33269;103.7481;115.5962;73.87354;110.5746;90.86772;108.9618;91.27931;99.03311;119.6775;107.6722;110.7961;109.0007;134.5524;105.9833;95.81533;99.6961;134.3456;118.3676;117.1525;104.5724;107.7956;118.2935;121.8072;148.7713;127.0599;113.1031;121.0069;134.0375;92.03708;91.97163;105.9593;103.4457;151.7153;97.31876;129.0382;133.2182;96.68116;124.5704;91.69226;112.5101;100.553;123.798;125.1481;128.0389;126.178;127.4882;115.4844;88.27638;109.4239;120.5978;127.6013;103.4539;106.5098;82.63786;132.409;114.5034;147.2296;93.56363;114.2297;134.8408;132.7512;123.2817;80.66714;107.4932;140.818;94.82667;101.0833;96.23356;88.93824;114.652;89.68559;124.8217;93.8642;92.01633;106.7165;75.86877;107.0845;92.8456;103.6076;110.0091;106.5408;112.744;135.2559;123.149;83.74241;100.3759;101.1433;107.3589;114.5212;89.15056;108.1183;86.73454;97.86534;87.75338;100.764;99.66611;103.36;96.3634;84.74915;113.7112;109.7866;121.6411;105.4854;126.5988;114.0456;102.7923;117.9902;94.71231;99.29792;135.6572;84.00199;128.1832;128.5037;111.8526;136.1915;133.7157;112.0351;84.2713;100.4857;96.47927;112.1034;124.068;134.1691;102.8695;116.4146;107.9579;110.6983;86.00629;98.61972;108.0998;70.86892;109.9194;88.93822;121.1528;87.49874;98.38509;115.6143;112.8612;
135.7344;103.1155;123.8005;104.3478;99.64289;84.25834;92.2736;135.8363;109.5965;97.187;89.21436;76.30936;119.7813;115.4455;107.1119;95.03423;110.7321;112.9704;144.8277;138.8783;99.41654;109.6352;87.21318;112.0827;106.2093;102.7543;102.0519;76.1852;92.18657;93.5347;87.18697;90.45826;100.9323;84.9497;92.97518;111.0996;111.3325;94.20301;108.0282;105.6006;103.9086;111.3225;121.8444;96.97825;113.4809;132.0243;75.85252;115.9846;129.5574;115.1117;129.4721;128.8669;111.0267;94.92932;95.59575;86.77183;87.09961;136.8895;134.1313;97.4994;110.8581;118.6754;108.3839;98.3243;96.97884;120.2795;91.95648;121.0527;98.56044;90.72247;94.36362;108.3729;133.5813;121.0089;94.73107;103.5198;149.7077;129.3474;108.2093;92.83337;150.9591;128.5809;134.3173;116.6252;128.0575;128.6534;107.6785;138.5142;135.7294;123.9414;122.2593;113.9048;91.08607;99.28151;95.86179;95.74862;141.5288;75.4535;135.3409;124.6289;92.89618;105.6255;90.3849;87.4697;89.64526;136.1056;130.0903;126.3595;143.2534;121.247;113.1779;85.24249;110.1235;128.0383;134.8822;90.77962;112.9265;84.93516;124.9633;91.9619;125.5971;100.9591;114.6835;133.9368;126.8678;131.0891;80.65367;126.7079;136.1108;103.0238;128.6847;102.2106;97.45105;83.83617;94.54187;133.3865;113.1992;97.2095;91.55794;78.2798;114.9177;116.4068;112.811;97.2231;110.8743;112.7684;149.8767;136.2952;97.04406;109.0418;88.38049;109.3196;110.5447;102.5938;103.4339;77.99197;89.03812;94.55695;91.69181;92.42773;102.2586;84.92249;96.36828;108.5987;110.0559;93.81814;109.3243;102.9212;108.1947;111.1576;123.3513;99.01746;112.3873;132.195;78.86433;118.9498;128.4445;115.3369;131.0935;122.1883;112.0012;97.65987;103.0557;77.79914;88.30071;135.3005;123.3215;107.7207;118.6137;120.0935;120.3626;100.7719;101.3361;116.2576;95.18023;117.4419;103.3075;98.5163;103.7029;110.5473;136.0981;116.2013;98.02606;103.7094;139.7076;135.3776;112.3106;96.01804;149.7571;128.8078;135.9635;110.276;129.1035;131.8177;115.5826;127.1132;135.2608;123.6133;109.3824;122.4333;99.15588;100.4084;103.6259;95.46881;148.2018;73.07508;133.9124;123.4152;96.48053;115.3755;99.62035;91.29318;90.12437;132.2057;131.1392;124.0702;134.7;126.8902;113.6978;85.76274;110.3457;129.324;131.2748;87.2436;112.8156;88.70161;133.5941;84.51222;125.1883;100.6447;102.2446;143.1971;136.4045;132.3625;87.80768;126.4097;
106.6813;130.6679;124.8933;101.825;91.22871;140.117;134.2776;129.446;99.74008;130.9171;129.2979;133.0573;136.5556;118.5702;120.6467;120.5043;140.4874;102.8624;108.0242;95.26249;101.5095;131.7347;85.27425;133.5808;146.4553;90.3596;121.5944;113.7383;90.13784;89.99329;114.604;139.9783;110.8119;139.2473;128.1738;134.0411;79.27657;95.43298;133.8522;138.8517;110.4851;90.68904;85.68179;127.2209;104.2044;115.3634;93.82931;112.5526;154.704;132.6234;114.4331;75.48914;111.1396;142.0502;91.71532;127.7301;96.95429;91.63338;93.14651;108.7152;112.4686;92.82652;83.76433;84.583;80.03221;96.42937;111.6225;102.6603;92.24272;99.97199;115.7959;137.0093;121.5163;98.16514;114.4873;109.7874;114.1658;92.85217;98.08951;99.89203;99.89854;98.20277;102.2021;89.42702;98.01933;90.79853;92.00716;92.73438;135.8542;104.3411;111.6594;128.3022;107.1552;108.3121;91.28963;128.3536;91.93382;104.932;142.1905;93.55841;110.0142;105.755;114.0608;133.2503;156.5126;93.5639;97.16109;93.99925;101.1182;78.79861;129.0436;125.2368;119.637;111.4465;105.5223;106.0341;87.44216;98.76427;100.8202;92.67254;117.1631;90.03337;103.3145;102.7811;91.80334;114.9974;106.6042;87.37566;110.6648;127.1137;129.8597;101.1054;91.63139;135.9356;131.2961;125.3641;107.1108;130.8953;135.2911;129.4672;140.389;116.7863;123.1979;115.5103;145.9288;100.1499;113.4181;95.00384;102.6781;128.1679;82.71215;130.5008;154.8815;91.70893;127.1837;111.1995;92.43855;89.59064;116.3431;135.4512;114.7195;137.535;133.2538;134.5782;79.54148;93.58682;130.6401;135.7139;117.8219;92.04317;90.38602;124.5377;106.51;116.0523;95.43151;108.4216;154.0721;125.2991;115.0649;79.99717;119.1504;137.0752;88.71603;122.9618;98.55846;92.26693;101.6345;108.1199;110.6475;98.78697;94.28994;84.50502;85.90556;92.20796;118.4704;103.1554;97.44958;98.34837;117.6701;133.9357;132.0504;104.4518;110.1018;111.3801;118.614;90.02502;96.72769;98.35889;99.38126;91.91;102.7985;94.32339;105.5409;86.82532;89.00241;88.67384;130.821;104.5489;117.4532;130.3914;103.0783;114.0324;100.5807;132.7413;95.47453;102.9596;146.7144;93.5975;115.5209;104.9147;118.9108;133.3755;160.7464;99.24749;90.08403;97.84237;103.0035;75.62535;125.6255;127.9325;116.0397;107.2295;103.4582;110.8877;94.40236;95.4099;100.4155;91.2198;112.472;90.22627;108.908;104.6532;88.0147;120.8891;116.6444;91.00347;
129.2468;110.1679;111.9637;113.404;88.27629;129.5195;130.3585;127.4776;93.03084;129.235;129.3567;104.8373;114.3606;100.0813;121.3544;87.97305;81.55695;124.3402;99.37414;100.7815;89.79507;124.6171;102.4266;99.21687;131.5964;119.2233;121.9001;113.7472;105.6872;89.23573;135.2436;84.86147;102.6051;123.6081;135.8797;89.70395;115.6218;117.725;133.7139;144.0193;100.2829;90.82866;121.6077;93.03065;126.4784;113.6698;138.2063;141.9661;123.1865;81.76183;92.77187;128.3322;134.4461;122.3317;141.0562;143.9871;106.5444;87.35117;109.7671;97.79127;124.2867;108.9658;102.6038;105.1948;111.8217;146.7484;92.73714;88.91857;89.41483;110.009;85.14303;118.3066;86.65707;114.5376;111.2303;87.63718;84.67989;95.10661;105.0454;83.35841;88.79377;127.6824;98.2362;95.513;86.91789;106.1494;103.591;91.99763;110.7222;102.128;115.4599;140.0874;111.0481;74.97782;117.9671;102.108;101.4321;92.40675;115.1307;99.22654;94.36362;113.476;105.312;124.8364;102.2948;86.30135;111.3584;97.22282;111.1657;114.0886;136.2787;93.55227;119.9184;89.70478;109.1436;110.9209;102.6763;128.7797;138.4275;123.1676;107.7079;78.09412;101.8322;115.2212;96.05512;106.4978;105.1251;104.7251;127.0322;111.473;110.3207;116.3966;91.70274;131.7778;127.5137;124.3297;94.35313;126.5907;125.8703;103.7123;120.8149;100.7875;124.4751;87.71292;79.63206;125.6146;97.64098;103.5033;93.07994;126.7315;99.39612;96.12971;132.1573;115.3252;117.9702;112.5903;111.4233;89.04183;138.4407;84.62753;99.99612;123.853;133.7678;92.28543;118.8459;118.7776;130.2453;140.2973;100.7702;87.43233;117.6799;91.98666;129.3369;111.7691;140.1133;140.682;110.4108;84.078;86.89697;131.3258;140.8498;116.921;125.3537;143.9178;102.0138;80.81102;112.0225;97.10638;126.3795;115.0094;100.8145;110.4691;102.5318;145.9278;91.20081;96.97931;86.32014;115.8635;81.44444;111.5777;85.07995;115.2243;103.4298;86.26906;81.64785;86.75378;102.6032;84.44044;77.99965;130.5676;92.17923;98.09809;92.08105;101.1089;90.1921;91.94231;107.0375;99.86932;121.7812;138.9056;110.3708;81.61043;114.3172;108.4228;96.47409;92.7803;115.4432;103.5377;91.21571;120.0951;105.3812;122.267;101.5143;91.51358;107.301;95.49594;105.1198;106.7705;131.6348;95.7724;111.5168;93.16274;104.6887;109.3918;108.3319;123.9077;127.5026;127.5387;104.1127;76.12311;107.7765;114.1722;95.46217;114.3787;101.6838;111.1413;
138.6117;106.6131;98.28489;95.71302;102.8119;147.9996;107.0812;137.5927;137.4959;100.225;122.2679;108.0651;111.2824;85.89565;134.1158;117.0832;134.9191;150.9369;129.2588;137.8607;77.06349;111.4668;134.9255;128.1267;99.08868;101.279;74.36979;121.7529;104.199;123.1537;109.6572;103.7862;133.2497;127.0496;105.4665;80.36462;115.7576;126.8435;102.0631;127.8062;109.0648;105.7468;95.25904;92.86298;116.5469;95.42085;102.6121;87.177;75.92432;96.02019;116.1078;103.202;107.4298;92.55258;100.8489;129.0222;117.7976;107.5428;94.05051;113.3867;101.4298;107.2891;104.6169;103.5779;91.85063;101.5433;92.29067;87.05817;98.05269;104.6282;112.0013;94.46411;113.3661;113.926;105.9052;123.682;125.2639;103.8486;107.3652;107.768;103.6324;116.4709;139.8836;94.46819;103.9621;126.5698;117.4215;127.2667;128.4259;96.19411;82.60149;89.42168;91.78834;88.31083;143.1257;123.7363;92.43401;111.336;91.72293;110.9426;93.22623;82.6061;109.0039;92.71748;120.9743;98.76128;98.11337;88.43097;89.01561;123.5519;120.39;93.1442;100.0395;129.1521;126.128;101.8912;104.9696;119.0415;111.9677;115.7151;96.09833;132.8014;106.5195;136.0353;120.1049;136.3751;126.7987;124.3741;129.9177;107.9066;96.48174;93.96368;102.0294;140.9555;99.70701;134.0782;131.7397;94.77419;120.1428;104.8535;105.9629;90.99921;129.9734;118.3232;127.1608;153.017;128.0096;136.2724;77.01439;105.8082;127.6216;125.9034;95.61734;95.56454;73.47269;119.2562;100.0106;128.7569;106.3205;105.8228;126.6173;128.4637;104.7505;79.89938;116.7408;120.3357;95.72623;125.5884;105.4238;99.9084;94.24574;90.6865;112.9504;101.3193;101.0633;89.77235;77.31353;97.9495;106.9932;113.5134;103.2601;90.49004;97.91681;132.4429;109.8929;97.79406;91.12528;108.1622;86.97586;109.6672;106.5919;103.8315;94.73744;99.96089;96.26069;90.57106;95.92616;105.3847;99.75623;92.31432;101.5477;113.9836;109.5711;128.4971;123.8824;120.0157;111.3464;115.0464;105.2544;118.5845;129.861;104.3392;99.86095;124.1453;114.256;130.6585;121.8723;91.66794;81.55952;84.70395;81.03807;84.87962;147.2733;120.9526;99.13239;107.5338;97.19815;112.9321;89.53277;87.77332;101.6153;91.72981;110.4041;103.7817;103.5724;92.42068;91.02659;134.1246;126.3339;97.18311;105.5834;129.0244;118.311;110.1857;99.13905;122.0056;113.8357;120.2586;90.45947;127.4532;105.356;130.2012;107.7799;132.0819;130.7268;121.5829;
86.8789;95.05797;134.0058;118.9206;88.61852;100.7066;83.42908;123.1421;100.7963;128.3037;89.56252;110.0549;143.8744;124.985;103.6813;83.32933;126.8872;138.0368;103.6159;107.157;84.93092;94.00598;91.47826;101.8019;118.2504;116.4772;92.00217;100.0869;94.04865;106.0955;109.8736;114.5904;111.0475;97.15141;123.4595;144.4241;132.6592;89.08757;90.72094;92.89411;102.5194;113.6311;113.2936;92.20647;98.49193;93.22367;96.47777;109.7889;96.74909;107.6956;83.92367;106.6344;120.3036;110.6522;103.2509;105.8579;100.7851;117.3734;100.1767;108.8641;115.9623;91.74475;134.5275;85.40515;114.7636;111.0739;118.9324;122.5756;124.7787;100.218;93.03289;91.99943;92.74937;89.41714;122.9524;133.3356;112.3882;108.0281;93.48098;113.9393;100.9084;99.77179;119.0253;78.80381;101.7212;92.96109;99.50541;99.27571;92.41389;146.1774;115.5848;108.293;126.2718;137.5378;128.9108;109.354;105.2201;132.566;138.8016;136.4665;110.8316;116.0491;104.2303;110.6831;125.8668;138.624;140.0092;108.987;136.2097;95.27564;104.8964;116.2306;101.1633;150.2151;76.00143;151.2216;137.3037;93.97166;113.5962;86.90166;89.57102;101.1116;128.6781;114.3845;143.212;122.2474;124.9613;121.5085;84.41711;96.24527;136.4379;123.5931;88.41018;97.97171;83.66696;120.5614;99.68945;131.5033;94.20556;111.3846;143.7114;123.8279;107.9351;81.71391;123.6996;139.3489;105.5628;111.5008;84.56291;91.2615;90.67648;98.93511;117.8571;119.3492;95.63565;101.1811;95.07346;105.1943;113.5355;112.5016;109.2897;98.4306;124.842;149.2353;133.5599;86.57501;89.9202;90.15849;102.1508;116.4703;117.3192;93.2589;96.69169;93.2636;98.86681;109.093;102.672;112.8905;85.29018;104.5632;123.1245;105.9074;96.95847;108.1967;106.615;114.6005;97.4155;105.8704;113.7589;92.87105;131.5354;78.14682;111.5768;111.3529;116.8302;124.3437;127.1336;106.451;91.53027;96.51489;97.20913;96.15102;128.0129;137.2412;116.6521;113.8971;102.2091;103.4875;106.9551;104.7642;120.6467;77.02475;104.3161;88.60719;93.32571;101.541;95.94001;140.4758;108.168;106.2546;126.0239;138.8411;123.2794;101.7772;101.3885;131.9083;134.5224;136.0606;115.324;124.6656;104.5587;117.3293;128.6957;144.3143;140.3455;113.5158;143.1147;100.7234;111.5704;106.3691;106.4413;155.2767;75.80762;146.3935;142.864;91.23834;108.9657;90.50977;93.07914;96.36124;120.869;112.3117;142.9928;123.4561;119.4409;113.5368;
95.8865;142.7997;131.7218;95.69553;131.5778;112.3643;105.496;99.95068;99.88769;136.8097;95.19342;105.7148;92.93279;109.6867;82.91041;90.58836;104.5705;111.8023;109.4057;93.74709;107.149;92.93354;106.7903;97.73997;104.6018;118.4499;124.617;98.00118;120.7723;117.4544;113.5383;125.771;86.28108;97.56303;113.4857;101.6861;114.3839;109.9396;109.3641;128.376;123.2142;87.04922;100.8645;136.7788;127.638;135.4081;109.5682;129.31;101.7832;102.777;87.4845;99.41196;133.2271;107.1619;95.61826;101.2662;102.5983;135.6442;92.06458;113.0261;110.5929;105.8705;75.19131;119.1218;86.41491;121.3665;111.3313;80.5304;97.69429;102.4229;91.80721;92.54249;104.8417;136.2576;92.74538;102.0785;86.90842;86.64513;83.83286;81.34357;84.16142;97.57122;109.4599;118.3969;108.0642;77.07785;89.16723;116.6895;109.7312;87.77571;107.8557;99.33059;100.4146;105.6436;86.18681;106.617;80.84094;93.75777;107.8766;108.2459;96.47199;108.5715;108.1208;78.02464;127.99;97.20525;117.8318;110.7287;99.90244;141.3568;106.5803;109.1418;95.47372;93.03466;84.58953;114.3361;100.4846;104.409;104.0587;97.98975;125.5179;104.3614;108.5755;133.3209;110.7364;124.032;120.4994;127.2593;89.0443;136.4627;132.3458;95.75803;132.1363;109.2795;110.2732;95.35542;103.6894;136.5426;93.27876;101.4779;97.10687;103.2119;81.51647;87.02083;98.13728;106.6555;110.737;94.23431;108.4078;90.54776;111.3764;94.08468;108.0925;119.7457;122.2164;94.63128;124.5637;112.0476;111.1751;122.3579;79.67097;93.93745;114.122;102.9315;114.762;108.6214;114.0072;124.1845;127.0031;88.16285;98.7084;132.7951;130.0202;131.2086;106.8688;126.9359;98.37701;95.74913;86.90542;101.3825;132.2465;107.1858;99.18163;102.509;102.3752;140.4885;90.5506;112.0714;112.806;98.8;78.00759;112.8497;89.4769;121.0931;112.3021;82.80286;101.1784;102.8935;93.43056;91.35889;108.2139;126.8842;90.97948;93.93262;85.43145;83.12327;84.73129;85.93907;81.05803;90.72221;108.8114;120.5415;107.1711;77.0938;92.60872;118.0183;103.5387;91.47755;108.097;103.0203;100.394;102.2102;91.64424;102.78;88.32188;98.09823;107.8531;110.7774;100.8725;108.887;105.6942;79.36376;125.1506;89.11333;117.8174;106.9099;96.22839;141.1301;110.2992;116.6965;96.89759;90.76273;83.17094;116.3402;100.5651;104.262;103.6228;101.9593;118.8679;108.3942;108.8352;137.5917;110.6946;120.3093;126.956;123.0654;
94.98137;132.659;134.5569;117.3131;118.3269;123.8519;82.67777;86.77153;96.12885;83.85352;135.5542;106.4101;100.6017;92.70219;86.54691;124.5417;105.4639;100.2754;95.38631;102.3286;93.09907;119.0865;86.38239;103.9838;97.9911;83.27079;94.48486;105.4158;107.0442;83.38422;98.53284;125.7384;92.64368;95.90759;93.86887;106.2275;103.1415;87.83079;107.2562;96.035;125.0477;122.6886;123.5546;73.87197;104.078;111.9569;84.76189;92.64588;124.8042;99.97871;106.3129;115.7785;115.5352;125.6215;104.9617;82.74215;93.28119;110.9677;113.8899;110.5602;114.2435;89.52251;129.6676;85.45963;113.4722;114.0458;106.0873;129.2368;118.6473;108.8332;83.00568;81.38321;93.28645;98.95977;107.0612;105.7084;102.9444;94.0738;100.9332;93.48533;123.3193;125.5864;98.61732;121.6011;142.295;128.1608;91.86718;118.5236;112.716;96.52665;128.9009;111.2718;124.3005;91.42982;95.84224;126.0085;93.46861;100.2131;105.0831;127.722;101.9689;93.13195;123.2493;105.5631;123.6725;96.9332;127.1701;85.03193;124.2075;92.09614;88.17706;127.8182;139.6354;96.49059;136.882;123.9104;140.6713;137.8471;104.2366;78.94011;100.7838;104.4366;134.5807;111.8338;121.0246;141.8414;135.6132;80.69827;95.16068;138.2288;141.6347;119.0101;120.2296;121.979;82.87196;84.07516;96.6892;85.09432;138.2149;106.4469;103.8585;96.46276;89.54359;127.0211;105.4599;105.023;101.1709;103.8126;94.59821;117.1327;86.09869;100.6921;97.6798;83.35157;96.20768;105.4661;109.9151;86.08883;101.6386;128.2354;92.20188;99.63165;99.52804;107.7529;104.2514;85.30401;106.9376;92.87458;124.6933;122.789;125.5209;73.9159;106.0127;115.0215;88.47279;95.76681;128.5486;106.1822;109.1441;116.1669;115.3778;127.834;94.07892;84.17767;83.71265;109.5924;111.5094;108.2641;116.1247;101.5495;134.577;85.92757;114.33;114.182;106.5754;139.1682;114.7935;107.3401;85.34804;74.26453;92.79324;97.88927;97.34229;112.3061;92.89704;89.49719;113.8898;99.97952;127.0412;132.5228;101.3356;121.9992;142.1199;130.3904;81.69679;120.2405;102.6568;96.25289;126.4951;108.801;124.1463;100.6501;96.11681;122.9598;94.8587;97.70653;101.6221;135.7648;98.19403;94.41183;125.4294;99.66819;123.6624;96.88709;116.6657;90.8208;111.1679;84.88606;96.35251;131.6801;144.3768;99.92925;135.537;122.5681;140.2705;143.4444;92.82949;82.37017;91.32087;104.1547;132.1251;109.3788;120.914;153.2748;135.9427;78.28097;
115.4846;145.1243;92.53688;106.1324;98.23046;104.3718;119.9548;92.82916;115.3542;138.024;117.6043;89.64374;107.4529;114.83;136.838;118.7681;147.9737;124.1442;112.4789;108.4976;111.8815;94.49136;133.308;116.6721;90.81559;110.3412;93.51312;129.5894;102.855;102.5482;88.97763;90.93481;74.16048;137.991;83.26919;116.3556;90.38383;83.60901;96.74873;79.63621;103.5959;85.97561;90.41998;133.9444;99.24424;89.23895;93.68961;93.14217;95.16974;90.93659;98.84853;117.1712;122.6148;108.0981;118.362;79.5236;91.96642;109.3057;103.5689;101.6488;129.9323;107.2097;95.48177;107.1761;92.22127;129.4623;89.52441;104.1188;89.9924;103.7926;96.95443;89.18514;109.9281;88.63944;113.9287;96.4404;125.4582;91.24195;101.7156;122.8955;148.4681;107.2838;110.5307;102.9771;104.5375;105.5943;100.1322;110.8034;97.20947;106.1648;104.9466;106.4588;123.4174;121.2133;86.21476;113.299;116.366;146.2478;90.07778;136.5419;106.8932;99.14215;130.7068;83.29935;123.5448;90.26456;78.1954;140.3061;102.5167;89.2278;97.00731;114.3117;90.58933;100.5288;118.816;126.6262;119.7134;88.41078;121.1273;93.46844;111.8108;87.69034;99.08631;141.5766;145.3631;99.46971;115.6384;115.8383;110.4888;146.0428;91.0284;104.6485;97.23777;106.7106;119.919;90.51795;118.5084;136.9249;111.0282;95.05389;108.6288;110.7392;132.4492;117.1173;143.1786;125.4843;111.5806;107.4608;111.5798;97.15084;134.2848;115.1771;95.03712;109.1287;88.48321;137.0673;104.9875;98.26236;85.80927;90.27711;71.60311;138.9126;82.85468;116.1821;91.03372;85.71792;97.58352;78.40411;108.104;84.908;85.47736;141.5481;99.97017;86.58147;91.83126;95.27425;82.15073;87.70963;89.47011;111.545;125.9014;109.7882;123.6635;80.63867;99.80914;109.7504;106.9521;108.318;127.6915;109.12;87.82043;114.7831;97.27814;135.3866;95.24026;105.0549;92.90498;106.1738;95.10458;96.59904;108.2183;95.50329;108.2232;106.5186;125.4979;94.08884;90.50034;125.0504;132.0881;103.7666;100.6001;97.70208;107.5739;107.255;105.0132;112.1137;102.5432;106.7957;111.2875;107.031;120.4088;126.3949;80.65252;118.6852;127.2931;150.3815;93.84656;138.4142;110.7786;97.71281;125.963;89.02639;118.8267;97.35581;75.91479;145.1461;101.8187;94.76538;87.87024;114.0172;82.13094;95.40025;106.4354;121.5193;123.7095;86.40035;123.9108;93.19592;117.5472;88.24667;105.2705;142.236;142.1197;104.1501;109.2025;121.2834;
76.91769;113.8067;113.2307;103.3142;121.7175;88.76749;122.6028;139.5116;117.7269;91.27389;95.42259;98.94898;100.9114;97.07637;94.92205;113.2662;75.32964;93.48846;83.82057;87.80272;105.3836;88.77635;89.32201;91.94051;120.7605;118.9858;105.0567;120.4123;112.5612;100.5724;96.04247;131.3299;90.22441;96.34428;124.3158;96.2364;130.9905;121.445;101.7359;122.3231;127.1951;94.28742;99.00164;92.9825;108.864;89.36591;144.2543;141.9061;107.0721;122.7994;102.9065;118.7645;97.01823;92.16493;135.348;103.4248;116.2056;92.29849;92.27337;103.6335;109.914;126.7304;107.3199;110.8733;104.4198;145.5874;125.764;100.2692;113.8069;122.2548;140.5604;128.011;99.1646;120.2022;111.287;118.9083;121.829;119.0847;116.462;131.0685;114.299;96.32565;91.10775;95.02555;104.2397;128.8556;82.70601;130.4425;143.2464;105.0709;117.1505;99.66846;97.53697;80.86806;124.0847;136.3176;117.4412;132.0444;117.1674;130.586;93.18651;106.886;123.2183;120.5773;93.94917;94.56892;88.52053;119.7681;114.1632;124.3542;112.7868;122.9307;143.2425;143.0225;117.755;83.01704;121.0071;131.8557;120.9639;137.0237;101.1993;92.01479;84.03203;104.2428;139.905;100.055;88.8233;105.2559;79.96601;116.7682;113.9844;98.53172;116.9651;89.51915;127.1742;138.2632;118.4932;92.19125;92.75407;96.04818;98.49774;93.93584;98.74406;112.9409;78.18056;96.07652;84.29681;83.30769;100.7783;89.42683;92.1698;90.4375;122.3661;119.8345;101.1447;117.0116;111.2547;97.53455;99.21674;130.7817;94.48631;99.13112;124.1457;91.35175;127.1778;122.3942;104.7712;120.5908;128.84;95.04508;95.20279;89.99908;109.9555;85.66343;146.5131;142.1413;116.3833;120.2872;108.8528;114.9287;92.43508;97.88771;129.3161;100.921;105.3322;96.79222;95.12822;104.3839;113.7933;133.4814;114.9751;116.3267;111.8108;148.1515;118.6469;104.0019;106.6023;124.9262;144.6458;130.8832;92.45112;115.6033;107.2046;110.6506;110.4444;111.4825;122.3044;129.0795;123.9125;94.09264;96.70343;91.59782;99.4867;135.5951;78.00199;127.6289;132.319;110.0005;123.4297;103.3642;100.1517;89.97359;130.1549;142.1178;123.0982;132.2807;109.3332;140.5611;87.70632;109.3917;125.1888;124.3826;88.39871;90.60182;87.46209;114.6133;102.1236;120.8664;116.5137;120.8108;151.5992;138.0395;123.101;84.22652;117.0859;138.6877;113.5129;135.1961;92.08517;96.61365;89.38264;108.0435;143.0779;110.1369;93.99075;110.382;
94.67412;124.3152;106.5259;108.9345;115.1255;127.0627;106.1048;98.40791;128.2224;91.74864;113.6648;82.50384;98.39219;131.4075;123.3247;85.21989;124.0522;129.2479;126.4032;125.8816;105.344;96.88219;103.854;102.8965;122.1423;106.227;115.9543;134.3829;110.3109;95.6844;106.0281;126.0173;142.0611;138.2533;126.908;121.6397;106.116;93.01923;88.03011;103.2645;131.3476;125.4289;104.3603;101.0494;94.33362;131.7294;89.37019;103.0909;94.24529;93.2803;85.50608;114.8656;91.39554;127.8804;94.33784;78.87425;79.85878;81.30906;93.2471;92.25002;85.95166;131.8851;99.16647;107.7472;88.41879;102.7406;108.4178;98.51456;97.61157;111.5963;108.3152;123.4965;131.8511;77.06866;98.38883;102.365;100.9788;99.99989;107.3245;91.20206;103.8864;121.0234;105.3781;108.1738;106.687;93.32744;94.47311;107.2288;103.7344;109.0636;111.0014;81.96404;106.146;99.67564;120.9229;100.3807;109.5932;151.0435;131.1862;110.091;107.6737;87.20697;79.99536;121.1702;100.2957;125.4589;108.6882;95.93266;110.732;98.56587;103.1749;127.0615;92.80372;116.4252;134.1131;126.5395;104.959;149.3027;111.1935;97.3632;112.8193;90.09499;106.5584;94.33392;75.13306;130.8642;97.45417;109.7367;96.01913;125.9111;110.7636;109.9866;119.5046;126.6112;106.0846;101.0505;131.6758;95.16625;115.9838;79.57407;97.65836;127.6442;121.8401;82.90419;126.4058;131.3768;131.8478;127.5191;110.3058;96.91102;103.6219;106.5623;125.0841;111.4096;118.0799;131.4832;108.6463;93.65354;103.945;124.0203;143.538;141.9246;131.5786;124.0597;110.1918;94.23771;87.81867;106.9393;134.4005;131.058;106.3799;98.53941;92.63893;130.5592;87.48534;101.2126;98.02929;99.85844;91.31647;122.2152;98.50041;117.8548;99.24821;80.36812;82.99768;85.0543;97.71272;83.1487;82.82211;128.4322;87.91704;96.3027;88.64733;93.96891;109.1463;93.95101;109.7186;123.2024;112.2785;119.272;132.8472;85.43616;98.51569;103.4763;98.89234;97.63326;111.0314;92.80024;107.8473;128.4951;111.8172;115.3046;114.3423;84.78795;99.38625;108.9647;105.49;109.1629;115.7154;75.58191;104.4421;97.66037;110.537;91.10602;109.484;137.8366;129.374;103.0516;116.2569;95.19679;83.58134;113.2166;99.38574;131.4358;108.6859;99.51707;110.3689;97.20717;108.8893;131.0721;96.20403;121.3917;138.6747;131.7425;108.5804;135.7004;116.7207;95.55187;114.6293;90.18504;111.1958;87.47884;73.68414;128.5534;88.17004;100.0305;
104.6834;109.1631;90.57451;115.9149;87.72651;98.40965;119.4462;83.54361;112.7438;122.4105;125.0107;128.9409;132.3441;98.10911;94.08604;85.58218;86.84811;80.79341;125.3577;141.4974;102.5941;121.7365;96.48936;132.0898;86.94818;90.31693;108.3302;89.46761;129.0629;98.13628;98.44661;112.3803;93.57982;125.9151;123.8804;106.0192;100.0318;128.9906;106.5348;98.28934;104.2863;144.9182;142.6774;127.2947;104.297;132.9064;131.3278;126.7223;118.4524;113.0963;124.6155;124.1535;131.6976;99.35405;109.5662;113.4242;99.03593;133.2234;95.04434;135.4974;141.3877;94.31828;118.2728;90.74995;92.34184;91.41064;114.7345;122.1972;115.0307;131.6172;112.0586;125.0064;82.9917;107.429;141.6642;128.6747;100.3304;98.95476;86.57307;114.514;94.52785;120.9051;92.4053;118.2741;141.3383;141.394;108.6571;96.77821;109.4594;129.9546;97.41012;117.7678;111.5438;102.3782;91.75889;119.7955;121.5539;105.3937;103.509;102.1782;74.65685;97.05553;95.56236;100.7309;106.899;107.1379;130.0704;136.5808;124.0382;106.3508;115.4436;109.6765;96.16868;93.94501;104.6098;109.658;94.32043;94.7893;105.4952;107.2693;95.09314;92.07939;105.8231;93.99255;120.731;114.5868;101.3687;113.4028;108.6639;113.6112;93.38219;116.9468;92.76885;97.3716;122.2606;83.21392;113.3976;124.1388;129.7814;127.1393;133.7868;103.3517;93.31588;90.81194;90.29848;84.53452;128.4442;142.5194;107.8575;120.4832;98.51225;131.3101;86.70323;90.59753;112.2415;87.98127;129.9779;102.4564;97.57791;118.3873;96.71904;129.5259;126.8669;106.9176;104.7611;126.6651;108.6573;97.61899;104.0156;145.276;147.1582;125.5229;102.0881;136.0712;129.0528;132.145;124.0253;123.8142;136.2727;127.2262;135.1866;95.63155;108.3152;104.6571;94.98901;127.614;102.2437;137.4008;136.3482;95.80251;112.0007;88.07342;90.96275;98.97641;115.8124;122.9168;114.1765;132.2938;122.7904;121.1127;85.1686;105.7001;134.9948;126.6972;99.03917;99.50803;74.7923;124.3796;99.51279;131.9735;102.4705;121.2737;144.9516;136.9411;107.4019;88.69337;106.9089;125.5236;100.995;119.7437;109.3498;101.1566;88.10981;111.6201;117.9863;111.4823;101.8985;100.5719;72.54597;101.2676;104.5229;98.74445;111.1318;106.4335;119.6427;134.7735;125.0641;104.1278;103.7954;114.2073;99.39759;101.8066;112.5419;110.1737;95.6579;94.66023;103.3195;100.262;92.75333;88.35836;109.5609;95.77927;118.4891;113.2972;97.53385;105.4741;
131.542;116.2118;96.12851;116.1114;115.5098;93.71252;91.18174;125.466;94.67603;106.9292;114.1532;107.6722;116.76;83.35625;95.13671;97.79831;96.50021;103.0812;115.6724;116.7675;88.77168;120.8468;110.852;101.0638;103.5776;113.2649;154.0214;122.5453;120.4042;97.71748;90.91038;105.9424;110.3802;94.82565;122.3448;107.0445;90.31702;106.7184;95.81081;124.2143;113.8248;96.59052;112.7262;135.4826;144.5655;76.34314;144.6561;104.3303;94.0704;118.1011;109.9579;112.9221;104.3895;82.25372;124.1531;89.42101;90.42316;113.7515;133.7576;90.98678;111.6343;112.6943;106.8121;114.6295;101.121;115.6009;109.4681;129.5994;93.16974;90.18404;116.0788;138.8575;83.76005;128.6958;118.0892;127.8459;129.6327;81.77458;92.26495;104.3258;92.81902;119.1068;114.9653;116.7877;134.2571;118.0664;98.21431;83.89246;124.7015;142.8832;139.6985;119.9473;134.7243;94.37997;89.75349;111.3057;97.41271;129.0764;122.9166;98.74957;86.47448;91.66415;124.2528;106.5036;90.37095;90.03222;89.92757;83.43838;132.4324;69.23186;117.396;89.33678;83.92674;88.415;101.2056;92.53178;92.686;90.35803;126.1816;89.55866;89.43002;102.1963;105.5037;92.7644;99.23367;92.48137;90.73316;115.2224;131.3178;118.4184;93.98896;108.4575;107.7011;95.42041;89.76049;126.4442;94.0379;102.7482;111.0688;105.2924;111.7668;82.36494;87.64289;97.92471;97.02182;105.61;114.0983;109.5514;82.59361;123.2636;110.204;102.9975;104.3792;108.7105;151.5248;120.9257;116.3653;96.21749;83.94896;106.9475;111.9507;96.822;121.1689;100.9795;84.97421;108.5472;95.21087;126.3599;114.6677;92.39057;110.5944;133.7822;141.0705;75.84727;137.7992;106.1194;98.07392;121.5905;109.8199;109.7658;95.22888;77.79163;125.1856;97.08648;92.93126;110.2614;133.2509;90.64772;108.8728;114.3167;105.0321;110.6956;108.3692;120.2279;112.8772;133.8739;92.14861;96.49012;117.3896;148.7579;93.24009;120.2027;115.4691;126.4352;126.424;82.67945;83.00287;109.6454;96.79612;122.6005;114.8242;113.5722;123.8402;112.6981;99.13284;91.31741;124.5518;143.1442;142.5827;118.5772;135.0378;96.4001;93.60828;105.6229;101.0296;130.6887;128.6878;106.142;90.09553;95.31108;124.4294;112.3253;97.4947;86.1688;90.36102;81.48598;132.5341;70.51877;112.9773;92.58159;84.52983;88.72333;103.02;93.09476;88.62847;83.14156;126.03;94.58972;89.32172;102.3986;108.0327;91.55975;99.52222;94.46346;94.62786;109.4389;
90.91639;115.9646;111.2666;102.9204;124.6634;99.53241;108.2999;113.7302;108.0186;135.5765;100.8406;102.528;79.74335;116.9968;103.2188;91.4299;110.7752;91.96149;114.9348;85.0927;112.6883;93.62969;115.6517;125.7782;112.1071;119.5688;92.15482;93.16526;87.94395;102.2297;93.93738;115.3899;101.5195;110.5966;127.1753;98.63198;101.4887;133.4145;110.3567;120.5726;125.317;132.2409;111.7586;137.3998;117.9544;92.84745;106.1088;87.56117;105.9774;115.4082;81.52628;142.5921;95.2962;106.511;110.5222;128.1033;96.08421;115.9797;117.5367;116.3634;118.5854;104.4456;127.2171;91.57849;104.3393;94.24979;109.0088;137.4858;143.6901;92.54993;133.2152;117.0083;129.5376;153.8831;100.0851;104.971;87.70072;111.2593;125.151;88.27914;114.0137;140.3557;115.3675;79.31086;94.64365;113.867;151.8573;114.8883;112.9786;138.7544;91.89342;101.0824;93.71099;87.35148;126.9112;121.0941;102.2344;112.7911;112.0474;130.3593;86.36763;105.9236;107.9266;100.6745;79.13629;122.4864;102.0927;120.0489;99.57178;78.94132;74.72171;84.19928;96.7135;109.1862;88.98291;140.9738;93.87627;104.7189;100.7472;108.6938;97.96791;107.6361;100.6582;104.0625;115.0875;129.9675;128.3389;80.6077;91.51255;116.3878;114.0073;104.0694;125.3626;98.54746;108.5958;114.8154;105.4654;135.417;101.4937;104.552;78.57893;115.9625;104.9477;93.15448;111.2351;92.24253;117.5164;86.05531;113.1633;92.57092;114.7757;126.33;110.2851;119.2417;91.72968;94.92654;87.83243;101.4247;94.93246;117.1294;103.1478;111.0938;129.1357;99.4846;103.1348;132.3462;109.4985;121.1152;123.3876;131.8993;111.2878;139.5394;114.7239;92.96349;106.0846;90.30363;108.1234;107.2399;81.99677;146.0128;103.1816;103.8842;103.4437;125.0522;98.37046;110.8647;115.3522;105.834;116.0166;104.4599;123.6781;98.17282;112.7284;92.13911;109.6369;135.958;147.4552;88.70589;136.1745;109.5063;128.0517;139.1447;99.85995;107.0747;91.39249;110.4183;130.9667;96.38409;116.2388;131.3211;115.9223;81.8672;102.5022;111.1401;143.5345;112;114.6778;134.0285;89.9249;91.47284;94.32793;87.2313;123.3984;125.3683;106.314;110.465;110.3448;130.2091;90.50558;101.7769;112.5583;92.01023;77.35622;110.1491;101.826;122.5309;106.6101;78.10278;79.25791;89.36021;94.79408;101.2151;87.40643;145.7862;103.0134;102.0794;95.82204;104.0584;99.588;103.4601;98.61844;94.32928;115.8114;129.8;124.8299;84.12112;
111.9988;97.27557;118.4614;114.1075;123.2333;126.904;121.3892;125.5448;110.7752;120.806;90.76585;102.8248;91.03463;99.22812;127.9555;84.88615;124.5931;135.2108;117.7403;127.9043;100.9333;118.6669;88.74416;122.2979;146.0804;127.8512;133.578;116.1232;120.4804;88.36665;93.9765;124.4872;135.1767;109.2204;99.8144;82.26997;131.0512;92.86852;139.7675;111.0853;122.661;153.1305;126.0164;116.6762;76.45602;121.969;135.7307;90.02623;119.4425;111.9486;110.2153;86.70188;112.9742;122.5038;87.60172;94.20705;92.95081;105.1801;106.3442;109.3575;91.98148;97.39351;91.44372;121.6626;121.2004;116.9745;88.51848;100.2142;104.2513;101.2594;99.38457;102.0761;93.97355;81.35828;89.50898;96.2265;87.90023;93.14069;88.49298;92.09472;82.83741;113.4843;133.5011;110.5635;119.5866;129.4188;105.3529;95.48934;129.7738;96.69725;103.0574;130.9007;84.60378;122.1054;105.0764;103.2149;135.5894;146.2957;101.9848;86.90317;100.0912;83.40591;97.40807;141.8349;132.5356;111.2801;109.4476;106.6374;110.8041;99.8369;93.91054;102.19;91.87299;129.0188;110.956;89.4151;105.9594;96.23874;105.9535;111.2574;95.14941;129.8547;140.8193;124.4464;91.54467;97.44851;120.5361;133.1715;114.9118;98.5736;120.0824;111.8678;122.478;122.0271;121.6301;118.2084;103.9974;114.0272;92.36871;104.5379;95.7365;99.65199;127.6163;80.58669;128.486;137.2533;120.1506;126.0244;100.9783;114.4221;88.75385;116.0451;137.831;122.4364;135.3016;118.7363;124.9186;89.92802;93.01711;120.0582;138.209;112.3458;101.3565;81.41979;130.1203;90.28271;139.7825;105.1324;115.1144;147.202;127.6934;119.2982;78.81956;125.3764;134.1536;87.16615;128.7593;111.6591;109.8999;84.36861;115.9487;116.3932;91.49552;81.27474;86.71265;88.1898;108.5397;113.3929;101.3939;99.79809;95.39925;124.764;124.1492;110.2405;88.4735;102.7089;111.5459;97.67599;94.67841;92.63216;91.6622;72.64252;88.76875;88.04008;90.29245;96.00083;83.60055;93.71273;90.61636;113.1876;133.1532;107.9219;122.6357;123.1304;109.6182;82.46194;127.4489;85.73755;103.3493;133.8307;91.04749;121.3801;110.7117;109.2016;132.9035;136.4134;100.0453;91.19855;109.4314;81.30603;93.0843;136.1356;134.9865;106.9752;106.7422;96.75057;110.627;99.70892;90.15081;107.0016;95.13147;126.4604;108.6815;88.98782;111.0419;92.05006;110.5914;101.8852;93.14168;117.1017;141.1804;127.3052;98.22371;96.80054;126.5854;139.9617;
106.3063;122.6542;92.3792;93.34908;110.728;120.022;123.727;122.3575;94.27928;108.2614;133.53;123.8576;97.70727;122.1792;122.5979;94.68443;128.762;102.9154;117.6484;108.1064;91.67972;141.4393;96.38814;93.73843;113.8795;143.0177;98.88039;92.28994;111.395;124.9374;138.5388;110.0248;114.8765;109.1298;106.0716;101.8847;114.9205;137.5452;152.7483;79.18413;142.8836;128.2543;126.0016;126.8641;86.44985;82.74021;93.0776;94.23124;110.2018;108.9626;113.6492;131.0705;119.9517;84.59399;91.2502;109.3527;128.9688;122.7358;137.1785;135.1205;102.5648;105.2454;100.1897;92.77802;142.0859;128.0722;92.4961;93.98379;97.4826;157.7351;104.9803;97.55118;96.07879;90.15855;88.49204;115.8812;89.36816;107.3983;102.4692;80.72487;95.50856;98.57056;106.8298;102.2638;99.91767;142.3779;91.05534;88.13937;109.1346;122.8555;102.711;87.08028;94.52053;113.8352;134.938;128.1756;113.5335;94.70203;94.98009;127.0579;117.2304;104.2124;131.4205;86.26077;119.0917;125.1369;102.814;113.6197;88.46797;84.59361;83.60737;92.72722;94.49908;108.1611;109.8675;84.44721;120.487;91.55299;107.0854;90.04597;98.49382;134.748;138.923;120.9734;101.95;101.2488;93.17146;101.0293;107.0821;124.1778;98.43658;95.26795;111.8489;121.2127;123.1214;124.6945;97.01642;112.8369;138.3568;126.6357;99.87275;125.7505;120.792;89.09731;129.402;104.2095;124.2625;110.0662;92.51242;142.6021;95.34637;95.45614;115.9305;146.7374;102.5232;94.70322;113.2115;127.4976;136.5143;104.0006;114.9918;109.4977;112.2716;103.8009;115.3606;137.6128;151.4331;80.76536;145.177;131.7804;130.1068;129.6932;87.23756;84.76948;92.2658;89.60637;109.4447;104.3265;122.8332;124.6746;125.9625;84.41117;89.78168;118.1039;131.2883;128.6433;137.3695;138.1296;101.0663;103.8913;92.07754;88.49988;141.9474;131.3257;100.825;95.43365;98.36633;147.6508;97.66368;105.6413;96.72118;99.81698;84.33989;123.2948;90.53562;109.4485;103.8978;80.06707;94.80357;94.15918;115.7297;96.6237;105.4096;142.1353;89.5798;96.01331;109.4317;126.5388;101.1064;87.04971;92.26512;110.0638;126.4386;128.5245;113.4754;98.26185;99.33339;126.5047;118.7147;96.0316;123.3967;91.21466;117.9251;134.1806;96.59189;118.1274;88.84998;84.35419;85.6711;96.71025;93.88037;104.3311;114.5155;77.5714;127.0605;91.34461;105.6739;95.27782;98.81365;138.6075;137.0587;120.9605;99.64482;97.69675;86.13461;101.3603;
95.03683;130.0773;100.4184;99.50375;126.5412;112.1227;111.3855;106.4144;89.9603;101.8767;117.7421;102.4438;107.0526;104.4859;115.8834;128.4971;101.5216;128.2873;120.896;91.26374;131.484;124.3429;127.7765;92.80537;135.362;122.3442;96.52788;111.0192;99.06342;120.5245;112.2534;83.35051;139.6298;102.7249;107.8724;107.3948;124.4285;106.7952;100.1678;125.6021;104.8232;137.1607;104.087;105.2964;105.6311;130.9483;105.9563;90.90656;132.2015;123.6106;82.76701;116.3509;114.4064;129.0914;136.9193;101.1144;90.9356;98.91566;89.24511;123.4363;88.33862;109.8273;139.4566;120.7513;85.99647;112.4322;117.4288;131.4368;116.6583;111.0247;127.7961;102.78;95.29712;107.574;97.09129;131.573;110.3401;101.4199;114.6047;106.4833;132.2302;107.9563;92.9953;89.65179;108.1393;76.9305;116.9481;82.9539;119.8996;103.0472;76.14828;80.18292;94.00861;105.1911;102.5516;90.10979;144.8431;101.9545;103.306;101.5201;109.969;105.5714;88.7642;100.8143;96.49783;135.6304;123.0468;104.4992;90.07677;113.4849;128.2098;93.35571;101.2452;110.745;90.14393;92.01629;109.7801;104.4961;120.3611;99.18662;88.93099;89.73738;90.12583;104.4413;87.2885;105.442;89.38333;121.4535;96.85049;131.9194;98.77648;98.84167;130.3381;110.8325;108.9784;100.3343;90.52258;102.0448;111.8907;102.0663;107.4079;104.7024;114.0563;126.5795;104.1352;130.6171;119.8872;91.05647;136.1913;123.4728;126.1806;88.09304;137.7628;122.285;92.07729;111.5182;100.3654;120.2902;110.8689;82.55914;143.8635;104.385;107.3273;108.0381;130.1104;105.552;98.75784;120.1126;106.9397;137.1009;99.4659;105.7849;105.5687;132.359;106.1097;92.84152;148.4767;136.1394;85.34052;117.7746;125.3751;138.0322;131.346;95.18499;95.56504;103.3709;88.45219;129.1366;91.41666;115.9473;130.4604;124.6382;92.96532;110.2407;114.2674;133.9773;126.4451;103.8303;128.8129;100.5393;95.85241;110.8149;93.39327;141.5062;104.5601;100.3853;108.9118;105.0081;148.5072;119.6743;95.72205;90.89732;118.8103;83.85805;111.8017;77.58733;124.8176;106.644;77.26058;84.83376;97.22019;109.875;94.69832;91.50739;151.567;97.28432;98.40165;103.6534;115.4926;98.29487;89.57477;100.6348;96.73784;138.1645;121.2085;113.422;84.91914;111.0719;122.0298;90.03545;113.5984;119.7407;90.97685;93.18234;116.5228;112.2678;115.0919;95.2945;93.19224;93.0783;91.35439;109.7396;90.40273;110.1124;82.07985;123.0749;
89.98016;99.49443;102.0888;123.8852;98.14953;115.0947;119.6156;123.8129;131.1934;93.98273;103.8857;88.81516;133.3685;95.75551;102.6193;118.4501;131.3823;83.98041;116.4723;114.3031;138.6788;127.2337;98.70698;109.2969;90.12172;96.86939;107.7094;109.4699;116.9998;148.9783;131.1167;99.60912;90.98943;114.2231;139.539;123.9034;140.9709;131.8179;93.47656;104.6588;100.8918;89.30595;120.9627;104.8865;110.4574;98.80786;93.90959;122.2188;90.80351;103.2528;84.38034;103.8503;79.76566;118.7915;87.76389;125.4692;89.2168;84.73325;75.96254;80.95451;97.08979;99.16735;106.3369;140.5693;89.2698;97.54573;94.28706;100.0052;94.96786;107.3297;103.7685;108.8284;130.4239;119.3298;103.6848;74.66267;110.7642;116.3553;103.9539;89.26914;114.2171;91.47134;91.58912;107.9879;109.0989;109.7965;100.1788;109.4544;86.383;102.086;93.37031;111.5874;107.6568;98.95876;136.2374;111.5002;110.572;93.87678;111.8926;132.2928;139.3129;114.5663;93.3041;94.51345;99.92818;105.5516;92.18523;104.1811;111.4373;100.7585;114.4958;94.08492;106.7825;128.1212;88.78173;120.928;127.9365;129.0591;97.24777;141.4669;108.7804;99.31204;110.1286;90.04919;110.669;105.1036;101.4949;145.5353;90.28664;99.40438;106.5284;121.5556;95.97426;114.6012;122.1962;121.4745;135.1324;94.00487;106.4135;90.93993;128.2337;96.63121;108.1991;120.8924;131.5373;83.8063;121.0045;111.9608;135.8741;126.5944;99.94859;106.5686;94.11873;96.7136;109.129;111.6336;113.4493;150.2677;136.6282;101.6753;92.24902;114.1916;143.6889;121.2615;139.5339;131.3626;94.68258;101.9914;105.116;89.15833;122.4642;107.0068;109.3785;98.95556;97.25745;125.2621;95.02083;112.2146;91.7131;109.8901;72.00249;117.1813;87.7656;118.4944;89.87607;84.10426;85.87203;86.58224;96.67662;92.52551;110.5021;143.6893;85.13883;100.8986;100.2333;96.35161;90.21999;101.785;111.8697;111.484;128.8029;124.4778;111.925;81.14195;105.4238;117.7706;112.187;87.52357;118.9408;99.90753;99.21789;114.1453;99.98579;108.2384;100.1762;102.9465;85.4668;102.473;101.8465;115.7483;108.2956;92.16061;136.9052;111.3712;107.1753;98.09368;113.4488;130.6068;132.3485;110.1573;101.085;98.93536;96.86715;111.4998;97.54072;109.4626;107.1729;101.8989;119.365;89.70301;112.6127;139.1703;91.88833;129.9498;116.9385;128.8064;97.35337;136.3366;107.7909;99.67545;119.3414;93.8113;111.3562;98.07578;102.0928;145.4133;
129.8816;84.49559;124.9738;121.2391;96.41703;114.3998;87.24069;107.1739;83.45591;114.2072;121.1994;118.7348;102.4175;98.4619;95.21246;110.9684;106.4018;102.7126;102.9125;116.8491;132.1584;124.1872;119.1668;89.11185;101.7625;112.275;109.1286;95.53819;113.3694;89.6365;86.86669;118.7061;97.11761;98.53853;91.43482;101.1547;105.0341;91.47483;105.4001;115.7571;89.92699;114.3284;111.9783;115.7959;115.1686;105.5204;100.6021;101.9803;133.0757;86.29812;115.4818;111.6538;113.9937;131.9984;141.9277;104.8884;92.74685;89.29838;88.05615;94.75819;144.0758;120.7769;87.27912;116.9604;115.2065;115.6015;104.6173;83.23971;110.1319;81.47402;102.7725;107.3547;91.28773;111.1885;98.42236;141.9641;126.9084;101.7574;127.1564;144.562;123.0851;99.30094;102.5584;153.129;153.2493;114.6378;97.71624;118.9755;125.5333;136.5259;142.0925;115.385;138.5565;108.0305;126.2474;118.1641;106.8474;102.7312;100.2885;143.592;95.94234;128.6664;118.0734;95.61508;111.04;97.5769;102.1949;95.2709;143.1883;111.4794;126.1558;128.2038;125.0886;121.7503;85.65881;98.63501;132.062;129.7292;101.0993;101.5799;90.77153;119.7355;94.81358;132.4533;111.7581;102.6948;119.9286;128.9671;134.2732;81.64232;129.9417;120.4538;96.83099;110.6245;84.84069;103.4627;90.20934;114.1869;127.004;115.3448;105.7409;96.83694;97.48042;106.1782;111.144;100.002;108.1788;116.5626;133.4914;120.7248;116.1345;86.59947;108.8059;113.7786;114.4269;93.2125;115.9478;89.23465;88.38165;114.5402;100.778;97.09897;95.73308;101.6214;105.339;89.66756;102.5519;112.8937;96.55766;115.8482;117.3471;113.2367;117.5917;106.1793;102.2609;98.05003;134.2249;75.45164;107.8745;110.3962;106.4773;130.8052;139.346;104.9448;103.6698;92.79726;87.64785;95.35213;150.7493;128.0064;86.7815;111.494;109.722;122.9169;105.0627;88.533;106.3602;82.10193;108.3258;102.6123;97.07613;110.1381;100.3275;141.9542;120.2307;102.9593;120.1859;138.575;124.1796;87.6349;95.39613;151.6501;144.5022;113.5208;95.57543;119.0306;131.2494;140.302;137.8043;118.6494;142.4017;114.1625;123.7819;116.8742;98.77456;112.1743;98.11128;149.97;92.2695;130.3806;127.1123;93.78596;111.0077;96.1439;100.9195;97.6291;133.4692;112.043;117.4192;126.9656;123.0709;111.3346;76.82111;97.007;123.7775;129.463;101.6807;104.4208;95.62294;123.2733;91.33276;135.9506;115.1936;108.6754;117.5442;127.6208;
108.0723;102.8861;99.01797;77.43674;83.64091;97.80801;85.14777;85.3698;124.2815;97.72904;98.66669;88.73503;104.745;97.32846;87.96592;110.8643;102.6444;128.9187;145.9488;109.3256;74.37881;117.9677;108.4567;95.11488;81.59602;115.7294;100.059;90.69774;109.6237;105.7316;116.4996;90.55141;86.58772;105.2937;108.4475;97.09194;101.7477;125.5857;95.80946;116.8163;86.66657;110.1395;108.2446;105.6933;131.0851;137.4761;124.0552;108.7452;81.04285;111.4316;122.2867;94.31152;107.3322;107.4161;113.4183;122.5964;104.9306;111.7525;118.5215;89.54121;132.3848;131.6692;117.7773;86.31325;126.1923;125.8281;116.1819;109.2712;94.17215;117.7413;94.24633;78.94086;129.4462;101.4482;103.2574;94.73645;129.4639;101.9147;97.0218;133.1893;116.4673;130.4644;120.249;108.2527;89.70032;140.3113;90.23896;96.60183;111.814;130.3602;90.77269;114.8159;120.9675;129.2483;137.2451;90.04275;83.51274;114.0822;103.4365;120.6743;105.9446;135.3242;141.4861;113.848;80.27853;90.38585;129.888;135.5864;125.3247;138.1598;142.1528;108.8288;82.15848;117.0023;103.788;128.1597;111.1947;102.3332;107.2602;99.57516;132.9386;87.50846;89.03956;88.36706;111.105;81.1963;109.4455;77.25288;106.0479;104.1475;97.4732;79.91301;86.97707;99.77172;82.85161;82.79735;125.809;95.43135;95.62484;87.70021;110.9258;98.02485;90.62576;110.5723;100.4835;130.2164;143.8468;112.1598;77.37109;120.0251;105.3376;92.09273;82.03779;111.8893;96.50155;89.66498;115.4644;105.5205;119.4682;90.30977;84.19243;105.5196;106.5617;99.7769;104.7736;126.6729;92.87691;113.4666;87.11959;106.3962;104.5407;104.5803;133.9948;135.3851;125.8622;107.6217;78.81107;110.3016;118.4908;86.57488;111.5457;99.01666;112.9625;122.747;112.6513;117.0015;120.7455;96.91463;131.0326;132.8208;123.145;85.48427;123.6594;129.5825;104.3264;113.1283;94.39856;119.7696;86.22186;72.35297;128.9595;97.9823;102.5967;95.16032;125.9446;100.4022;98.48012;129.7663;113.7884;129.2363;116.4752;99.95219;93.55543;130.6819;89.82379;96.73557;120.7727;141.783;96.28066;122.8059;116.9417;132.4367;141.1125;90.21517;85.0965;118.818;94.0955;120.21;106.2193;138.2214;136.3833;110.0279;80.72771;91.73785;133.3282;135.7529;119.1299;138.5045;141.9853;106.8716;83.54011;117.0019;102.1956;114.6976;115.5342;94.7344;111.1331;103.7064;142.7365;96.91356;94.49792;95.41368;107.2873;83.73006;112.9047;77.43117;
133.3337;120.4905;116.1774;119.7878;108.8453;130.4533;98.91963;106.3342;112.0602;102.4038;134.0647;79.39749;156.5436;114.1564;113.3262;117.0011;112.9984;92.70897;102.0441;133.3374;115.7104;142.0337;124.6101;119.1038;135.3077;88.03292;81.42671;121.515;127.0825;109.3086;93.8166;83.58837;125.8643;91.2574;139.7455;86.36713;116.2115;125.9404;135.624;117.2008;88.14226;114.8523;133.1797;93.2635;112.432;86.53642;99.90542;98.02157;105.8963;110.5555;112.6945;97.58181;85.68613;87.12;104.6229;109.8722;115.3009;115.7654;88.85726;104.466;129.5643;135.8082;88.34867;108.118;107.0725;97.64419;95.85309;93.07373;90.68334;90.933;95.30811;99.57484;102.8448;99.42417;93.67324;85.19031;111.1587;96.17854;128.6937;102.6544;129.3444;107.0198;121.4147;106.5612;109.7662;114.8743;92.21451;129.0838;91.90973;116.097;95.01231;102.176;124.8946;150.1059;92.38352;93.04718;89.70912;88.62606;97.95892;116.8673;137.2315;85.32167;110.1062;102.5729;116.8796;86.23882;92.3587;104.1947;77.50603;105.5242;97.28814;105.6719;99.47694;88.86252;135.862;122.4072;91.59875;109.4634;131.2744;121.2751;110.4525;105.0172;119.3369;120.8919;116.281;118.0173;116.4912;129.1953;124.8095;121.8654;114.2163;117.8298;108.0402;123.8452;91.8371;103.2473;106.8696;96.89328;131.8389;76.64807;150.2223;120.0287;109.5209;118.2406;105.9079;94.34068;100.9345;131.7754;115.6502;135.6367;117.5948;116.9605;131.246;82.7109;80.48788;119.0208;122.4526;114.5911;90.73219;85.41711;119.4206;92.45649;138.9211;85.8848;117.1966;119.4561;128.3037;115.0774;84.87228;108.7641;131.9811;91.08231;108.9001;92.1578;98.37724;100.7725;98.79356;110.8042;100.8107;92.15909;83.74419;77.4319;100.0164;106.3986;106.5859;115.4855;98.52603;108.9123;122.3462;142.545;92.10259;112.6048;95.3782;102.3092;98.32862;101.7232;89.33159;90.04664;94.28601;106.189;104.7128;96.32604;82.68951;87.84105;98.1166;101.5455;124.2325;113.6642;121.4816;107.2548;109.0671;100.8861;107.5668;103.6976;87.89302;125.3107;85.5759;121.2089;106.9475;106.4785;121.455;149.7877;97.71831;94.50507;82.49915;91.09792;102.0159;124.467;133.59;88.98953;113.9743;110.5383;120.5941;87.92188;83.18288;107.0284;69.4525;104.9331;94.9134;113.878;96.36872;87.14099;124.5158;114.3354;87.9798;103.4493;131.4407;118.9198;103.5182;109.8627;132.693;125.5677;112.9838;117.7154;122.4944;130.9118;
94.22055;112.3628;109.4209;106.5731;132.9001;80.13835;132.4576;123.8701;104.9501;115.3551;115.9435;96.97652;117.3439;128.6205;128.9178;136.577;138.3972;127.6467;120.9471;76.91571;113.5391;149.5064;127.3407;89.97503;90.32893;93.05641;135.6156;110.8561;129.996;107.1731;114.3091;140.5317;146.3438;117.5349;102.1234;104.2731;154.6766;109.534;115.1728;91.63017;91.07404;89.4319;104.4731;122.569;106.8706;100.8111;83.06862;85.15614;92.0536;97.48666;97.72066;92.4296;96.42954;109.1255;136.2036;122.101;90.655;105.519;97.37093;92.3633;108.9536;108.5871;99.96401;77.35694;91.02566;104.3111;103.001;104.1488;93.62019;84.77468;92.74238;105.0011;114.9951;102.5442;135.2276;112.9962;140.7966;100.0829;123.9873;107.0719;102.2838;139.226;82.48615;110.1368;132.5489;130.4005;127.3751;120.3542;89.51347;101.4831;107.468;103.3479;92.28762;142.9935;136.8896;103.551;128.3801;106.1451;138.2856;83.7288;110.967;119.7915;83.79832;103.0811;89.8504;96.71372;103.5112;99.6601;126.6185;120.3136;91.7179;113.0512;124.3713;110.2933;97.48296;92.66026;126.7136;125.226;126.7299;99.92629;125.405;125.6213;125.7522;116.4322;130.8092;132.9007;121.2533;113.6545;91.65612;113.6533;111.6197;110.9988;132.6449;77.70074;132.7572;121.2817;103.8206;118.39;121.2182;98.22502;117.1967;127.4466;133.6562;134.5066;135.0672;128.9086;123.0499;80.60249;113.1136;146.04;126.3944;87.2811;89.9852;95.6254;140.0195;112.0076;131.2003;106.2674;118.0436;138.2175;144.325;118.9415;103.3811;108.3671;155.6489;106.746;114.2704;88.91335;90.72662;91.95268;108.3402;123.782;104.995;100.8527;85.28649;84.54334;96.63788;99.17088;105.2041;101.568;97.61737;110.9601;134.4882;126.6114;100.0718;103.0129;102.2853;89.94585;107.4656;109.9696;98.22096;79.53731;92.14456;105.7591;106.8391;106.7525;87.83021;76.02152;90.53965;109.6468;116.5511;104.4954;143.097;110.4635;138.7568;102.7757;131.8684;101.0811;107.1127;141.2256;89.36856;120.0926;133.9405;132.3938;125.7114;124.8326;96.80316;96.86047;108.1781;101.7168;92.67686;144.5028;132.0517;106.7447;128.8279;106.7398;140.6745;84.27568;106.842;111.1507;83.41849;109.3241;89.26105;96.42888;106.0062;98.20773;126.7685;123.1883;96.1357;107.5945;128.8366;111.1849;103.2148;99.85932;130.5093;129.1374;127.2095;105.6183;134.0504;120.4521;126.5441;114.7231;131.3155;134.3348;116.7255;117.022;
110.0975;94.92361;101.0578;93.27921;111.0041;96.50457;83.89668;88.74139;88.608;104.3779;109.0439;103.7328;101.0325;115.8315;104.6912;95.62364;110.6378;93.83621;97.71238;128.8278;87.72603;110.033;102.1678;118.7947;129.0408;126.6489;94.25787;85.73805;85.60687;98.88557;104.1691;139.5374;129.2574;108.0115;117.995;97.61565;119.2695;91.52616;90.98646;115.8497;81.21777;128.2695;97.16063;108.2433;103.9399;106.3275;108.2962;110.3464;94.79704;110.8021;141.7215;110.6575;104.2177;98.53109;122.5357;142.6149;128.7066;106.0784;116.593;116.2314;126.2821;132.5503;134.2134;120.093;127.0916;134.685;104.0166;100.3282;117.3596;98.07101;125.3552;80.40755;127.6031;124.4535;96.18242;120.4511;87.12518;98.95386;89.33627;118.2664;113.0471;120.1698;130.7119;122.1532;129.8839;78.30062;90.63726;134.3558;135.372;93.01384;92.79811;76.41533;117.2049;102.183;143.8702;103.4596;102.24;137.6919;136.3887;111.3357;86.30424;113.6617;136.7612;98.3498;117.0175;115.8624;95.10303;100.7638;107.5673;126.8873;86.01935;87.75256;83.86346;77.53085;110.0531;100.8983;107.6316;103.7539;92.75353;123.0306;146.7026;129.8898;87.58041;95.76446;107.6411;105.5084;107.5691;96.89854;102.7567;89.77028;101.6045;93.34095;111.5172;93.64738;88.16254;84.4146;92.19067;104.1446;106.994;99.53617;105.3827;109.175;103.1241;91.95734;104.0177;89.12615;98.9707;129.3988;88.86544;107.4356;106.6546;114.7613;132.9147;127.9887;92.1716;82.58794;88.80354;93.92976;101.906;135.9411;121.1373;104.1949;118.6438;98.83588;119.6556;90.32379;95.22577;111.8697;84.29929;129.6206;95.04468;104.7027;106.0908;102.61;105.6125;108.1541;94.14264;104.7739;148.0628;119.4345;112.0556;101.9806;124.9384;137.6621;131.129;106.9871;114.7191;115.1898;134.2428;128.3065;129.7002;117.2576;123.3947;126.5523;106.6447;97.17297;120.097;93.92411;134.3733;78.1482;129.3872;118.0506;91.0061;109.9365;85.60197;94.24094;84.0047;115.9792;112.3221;113.8833;136.8038;131.3612;138.6059;81.37445;92.70464;129.5447;131.1567;93.65917;92.8696;79.59464;122.5269;102.0884;142.2452;102.9228;103.8312;134.8477;138.2872;107.9112;89.53762;109.0247;141.3376;98.55449;112.4999;109.4648;91.69958;95.58225;103.7048;125.5801;83.13642;87.72603;87.73827;76.54619;114.6527;109.1819;116.5981;107.12;90.95314;121.4331;142.2902;130.652;87.66558;99.32096;112.7233;105.4121;106.1819;96.38025;
119.9566;100.0638;121.1496;93.45413;108.3508;108.864;93.66762;117.9267;110.7298;107.9941;100.0188;103.4958;110.6275;119.8331;103.6636;107.1341;142.6423;120.4457;112.1763;87.37433;147.0764;125.8754;106.9196;96.9853;120.8824;122.7486;133.879;128.5586;123.8776;121.2833;101.8282;128.508;96.92155;84.97128;99.57442;103.4137;142.0695;93.29182;137.1334;125.1225;101.7722;107.461;98.02641;101.0999;92.17506;119.9293;118.672;122.0453;128.6996;119.044;142.3401;88.13767;103.4477;144.7358;119.7472;90.5034;112.0679;75.81577;128.7059;91.4215;145.2018;104.3112;98.58094;121.163;138.5923;115.957;92.85345;115.9803;154.2737;97.52802;125.2104;102.8842;110.6936;104.2825;103.67;127.6021;91.74606;97.05557;94.92365;76.66339;108.1966;107.7593;115.1284;88.86628;111.0788;110.2879;113.9273;117.2441;92.71205;105.1933;112.0817;101.27;103.8083;99.79741;86.44388;91.36787;92.35681;84.09305;98.68938;101.2888;102.8364;96.72296;96.41975;101.3336;117.1694;94.44529;117.1491;116.2296;113.1603;98.21684;115.3798;99.45415;95.7769;129.1594;105.0969;120.6203;119.8614;125.4359;119.193;121.199;113.0931;82.06667;97.45391;83.69074;103.8567;140.3286;122.4183;91.78806;120.1581;104.9087;127.8701;94.96947;110.1719;107.1085;93.8743;114.7798;111.3312;109.4016;102.3061;103.532;114.0415;124.1036;106.9408;109.4346;142.6377;125.6436;118.4422;88.74596;148.9592;123.8665;106.6039;93.80714;120.5366;122.8466;135.9283;128.6142;126.9646;124.5407;104.9851;131.0323;96.46965;88.47869;105.4006;104.9189;143.3716;90.6871;136.7731;121.5114;101.4525;107.5549;99.77866;101.1513;93.9963;123.1004;123.0556;125.6236;129.6186;119.1884;142.9112;96.37602;99.85618;143.0189;122.5628;82.992;111.5324;74.87915;118.032;97.55924;133.2155;99.48859;111.3947;128.5356;142.5308;122.6253;95.49574;116.3637;154.0858;99.47382;113.2915;104.4792;100.2421;102.9494;101.3952;125.1399;93.43708;109.5631;99.12659;77.11097;109.0391;107.8921;115.6323;97.13789;107.3557;108.7852;116.6642;108.6723;92.68562;105.1438;102.251;107.5584;91.89149;92.27509;94.5473;94.60878;96.19264;87.2947;97.54532;100.0741;102.4741;101.4192;85.44337;105.2135;106.9278;94.1759;114.838;113.725;113.0431;107.7769;115.6734;96.77681;97.21175;126.3243;101.6382;128.4413;115.7866;126.9221;121.3584;114.8781;113.1041;82.02554;88.30476;89.43586;91.97326;131.3845;132.03;95.05691;
113.1155;93.76756;125.6912;128.6049;137.25;83.05553;100.0602;129.134;135.5257;140.933;132.7728;144.4014;84.00034;97.21259;107.0133;107.4458;138.489;111.2103;113.8125;111.3175;94.40448;127.7651;115.6051;91.44257;92.29028;95.1602;84.80956;107.4496;73.71938;109.758;85.48934;86.08621;81.68044;88.9413;100.9688;89.64228;94.58747;128.7076;99.09515;93.69949;93.37965;109.4;95.47743;90.45033;86.67599;92.97;114.4408;123.015;119.4422;88.14285;95.10062;125.3995;94.72037;83.99535;115.8156;88.49081;102.7651;115.5303;95.50405;124.7335;86.97867;95.77529;93.91056;106.0756;94.99131;92.8579;117.1002;82.10202;135.2606;87.42787;115.5379;102.3261;103.9729;147.635;128.6515;127.566;84.16294;89.11101;98.88039;121.2354;106.8906;105.5878;111.8447;111.6712;110.7181;95.15282;132.0247;110.5741;96.83021;115.0551;127.1244;121.978;83.56183;123.4639;97.36308;97.9789;110.1043;95.89302;115.2781;92.80654;85.47322;131.4653;102.3414;94.05342;104.1828;129.4216;89.27024;106.0014;102.0492;102.7499;111.3101;100.4743;114.4181;101.9063;114.4107;103.884;93.6122;119.4433;137.1169;84.24855;130.1099;121.6879;116.1196;150.0364;88.29233;94.32752;101.1423;106.3138;108.1718;94.50619;123.9322;126.9709;136.0761;85.14326;100.0276;126.4055;138.9428;139.8223;125.7796;151.2465;85.04037;93.45162;103.1362;105.8759;133.8514;112.4789;112.9089;110.2673;94.12735;130.8546;116.5148;90.1196;96.54555;94.03442;80.02274;114.2682;75.52645;105.3225;82.38428;85.44631;78.99543;89.68144;100.5124;89.49002;95.25227;131.321;99.93998;92.36261;97.6621;108.1952;90.39655;96.7174;87.3545;90.25713;112.3859;125.4635;126.9707;97.37305;97.44373;129.673;90.53749;87.35648;108.5391;91.67133;109.8198;121.6328;85.884;129.6152;82.87891;89.40388;88.07166;102.7399;81.37775;92.97145;109.227;85.89271;136.6171;98.50615;118.191;107.0407;104.6864;148.9972;125.7961;128.3327;92.42727;91.00133;91.60763;127.7304;114.0188;115.6583;114.3845;115.7007;106.192;98.71873;124.2478;114.1208;100.9774;121.3505;119.0227;120.1879;78.87646;119.2755;93.25539;92.6247;100.0603;94.29729;105.3865;97.50586;87.18478;140.4778;102.4975;97.06909;102.2016;130.8897;89.53911;100.6367;110.3657;107.682;105.5678;104.1264;127.0663;109.9526;114.8235;108.4804;90.09254;119.2922;126.5827;85.93017;134.9329;128.1392;108.4028;148.0498;83.49214;90.65368;96.9742;100.7331;
97.84826;117.9632;113.9034;94.49682;116.6279;127.1762;103.0243;102.8953;93.28135;133.4448;137.7212;118.3059;88.08073;132.6349;125.3507;125.4321;109.5841;110.398;138.9027;127.5813;140.6243;94.97918;86.08658;100.1122;98.1745;143.1407;84.03158;147.0048;124.81;117.4673;126.87;116.0215;108.3694;103.296;131.172;119.1236;129.2348;148.352;132.4155;118.8997;73.0818;90.76322;142.184;146.2725;99.80415;99.03547;94.455;125.0088;105.9835;144.2061;103.2158;132.3341;127.1777;148.5438;118.3925;82.82897;120.6335;131.714;96.47196;113.27;89.4729;96.98676;108.0826;102.1532;125.7617;98.12363;91.68356;91.19208;82.60403;98.34584;93.77991;106.0854;100.0202;100.4261;120.2533;127.8928;102.6783;99.7626;111.9711;103.2319;87.89488;90.69195;113.487;108.3834;94.71136;92.57423;80.81845;93.95625;97.2547;103.4137;89.38529;100.7473;102.9629;130.6566;114.9586;135.5428;126.4991;125.2675;106.5129;107.3525;99.39093;115.6505;148.906;80.19558;102.7169;104.6574;121.9689;141.3031;134.3922;94.62168;103.2974;94.59228;101.6503;104.2549;137.7931;147.7671;92.98512;129.8668;105.2395;113.426;95.62666;91.7291;105.8663;77.46879;104.8179;93.13152;115.2576;99.94131;101.2826;120.9779;114.6593;89.92547;111.9769;128.0755;107.2183;101.8236;93.9636;134.5535;134.5115;115.132;85.82667;128.9597;129.7371;125.0897;113.0172;113.2089;139.5155;122.1508;135.2964;95.65199;88.88272;98.5435;99.62272;144.0714;80.53679;143.2447;123.4341;114.1824;130.5145;115.5063;113.0356;106.1809;130.9973;113.682;125.4479;149.4009;135.8752;117.1918;74.32997;91.50661;137.624;142.5244;100.8494;95.13577;96.28448;125.2297;107.8843;153.1406;100.4331;121.5189;117.3599;155.7525;119.5707;75.27364;115.9179;122.9756;95.00211;113.7103;89.2829;93.55114;110.461;102.3859;126.2024;97.84973;85.78384;86.98363;76.77406;102.2882;99.51401;109.382;107.1829;104.1729;122.581;124.9279;102.5101;97.10453;118.7209;106.733;89.62624;97.79538;110.5636;98.61768;86.26558;98.27325;81.78839;85.89771;94.01503;95.81721;90.59391;104.1334;101.7094;131.1329;115.3849;135.5769;124.7531;122.8319;99.22382;107.7837;94.05016;119.9297;154.0508;83.9002;111.0738;108.5988;127.4292;141.6718;133.0267;95.8437;107.8371;97.77042;101.5601;109.845;133.5241;142.0725;85.64789;136.6163;104.6674;105.4869;92.45048;84.56628;107.2033;80.46035;103.5913;93.51605;115.7072;99.99168;
96.64211;100.3112;126.8694;116.4138;109.3379;87.91602;97.38695;133.8988;97.34804;91.13003;92.43825;101.8664;76.02153;128.5547;84.38299;120.3026;103.1115;79.57697;70.23592;101.0131;110.5908;95.47978;89.95784;132.8582;110.1708;99.24666;93.72518;99.55963;81.81261;86.62025;92.42535;106.6559;118.9925;136.7026;107.4378;97.63843;102.5314;114.3795;106.212;102.2674;123.9486;91.46537;96.87867;140.7437;108.2491;112.5938;85.90581;89.82902;102.7262;111.0276;101.5912;99.74687;126.3913;83.90556;135.1559;111.9808;117.8033;109.3295;88.30925;154.8634;122.0218;107.9885;92.25494;89.24958;91.55447;115.7838;98.98262;111.0956;109.4772;84.89793;114.8776;101.9202;114.0027;113.9541;95.69455;122.9269;121.934;135.6637;95.54212;138.8631;120.6243;92.34863;103.4325;105.886;126.0672;97.85592;81.41604;133.1734;115.5332;107.2268;100.8541;118.6416;80.35117;91.24262;105.5789;116.9258;120.5284;113.6821;109.6104;112.5731;124.7493;94.79124;104.391;138.2222;142.5304;89.37202;124.0088;142.2823;132.9046;126.062;83.80948;88.1134;109.212;109.8176;123.9025;101.8857;139.5938;136.4837;135.1108;106.738;101.4333;136.9864;119.3103;142.3824;121.6533;124.3988;91.66382;93.54696;98.00098;101.7453;131.4903;117.5013;113.6066;87.54047;97.36753;136.9784;100.36;94.53621;94.53072;98.60798;75.37667;124.8327;83.15574;117.5482;105.2583;81.24932;74.30905;102.4805;115.6733;95.50841;89.7418;137.0192;112.9657;104.2582;95.6372;97.06593;80.37999;84.68851;90.48114;104.8193;120.3446;140.3533;111.7387;99.80785;106.5385;115.7302;105.9797;105.9246;126.9147;96.28133;98.82485;137.7787;106.4331;111.5121;84.05804;88.07623;102.1222;123.3029;101.7692;97.35504;130.4264;83.30489;135.2696;107.395;123.9191;111.5971;93.93005;151.014;129.0287;116.5508;96.5719;92.04294;90.7036;118.4284;106.6135;104.6986;121.8829;89.35379;118.0552;99.88283;116.3912;116.9394;90.46682;110.3617;121.3052;129.9699;89.30132;140.0591;119.9591;103.5672;103.6115;103.4166;130.0861;97.20232;81.50365;128.163;119.6553;105.3155;106.7075;118.0072;87.68329;100.1222;112.2817;122.1599;119.1725;114.0011;115.1666;103.9116;133.5617;97.16959;107.6196;131.7836;143.0668;88.20983;117.9063;131.6257;134.2589;121.6846;79.74908;90.83466;108.2129;119.6749;121.5785;97.31331;139.3258;132.9919;135.4416;98.73496;105.2782;134.8248;125.6884;141.6889;130.6163;134.7322;97.93298;98.23592;
113.2889;117.3662;92.08621;109.4644;126.6969;113.1435;96.62719;91.02084;147.2104;144.6043;128.877;105.0547;125.2565;107.4713;121.8129;132.6069;114.174;119.029;106.8316;137.6638;112.7984;102.8282;95.4474;88.57072;138.6595;80.42007;139.4306;121.5985;110.7528;111.2368;107.0541;101.3303;104.0156;138.3948;126.3537;128.6999;130.1373;125.2373;145.6406;93.7683;106.4879;136.5502;128.0438;104.691;121.4502;97.99064;116.4615;105.6558;125.4452;110.7609;123.1842;136.0206;159.2976;106.107;100.6005;118.6414;138.7439;99.69885;110.5415;86.03909;96.19255;91.73873;95.37043;133.7713;93.93223;97.14188;87.11863;79.42435;98.31631;101.5479;101.3693;94.90491;113.354;128.1796;136.9851;125.6563;98.00462;94.46977;101.5878;106.7694;93.89173;100.355;88.29586;96.60877;112.8694;99.37073;91.08464;85.05368;97.2207;89.31454;102.4446;104.2334;130.21;101.0325;125.1849;122.5255;126.3462;116.6602;123.6668;105.4465;104.4542;134.0408;106.1985;127.0244;120.1963;118.6302;133.637;140.9873;119.6049;108.9061;85.04259;106.5323;88.28593;147.9113;146.8213;105.0445;143.2047;88.40806;136.2177;95.56365;97.33805;112.2467;83.96568;101.0892;95.05269;101.3696;91.13628;112.646;117.4282;121.9768;94.91702;110.4672;132.7423;112.0303;99.16021;90.67669;147.9573;146.4823;133.7202;103.4291;126.6601;112.9551;120.9363;139.0978;118.1252;123.5608;109.6823;138.672;118.3143;101.6766;97.4594;87.93246;138.3502;80.68486;143.8633;119.8646;111.6006;115.8332;106.1482;107.0383;107.3239;142.1791;129.3697;129.6896;135.5238;122.946;148.1206;93.11359;106.2143;136.8976;132.2904;103.0848;119.0657;100.7108;114.3197;110.6123;136.6738;115.2471;132.6982;132.0136;157.0178;99.90667;97.91653;124.4245;132.5945;101.7922;109.1495;93.31906;101.0543;94.11421;99.18078;144.3131;95.55865;90.08663;95.16077;75.44819;95.63512;96.42078;98.91602;96.4624;109.9672;125.4697;137.3804;125.2311;86.40114;91.77662;96.82741;112.048;103.6382;104.6228;96.36888;93.23653;110.9513;93.36911;88.5231;89.96085;93.68127;92.24631;97.46745;112.426;138.42;100.7623;131.8287;127.1858;126.1792;106.9331;130.2384;98.61491;100.0203;132.2952;102.7269;130.5574;118.5301;117.0959;129.8201;140.7722;109.0462;103.2285;82.49387;106.8428;95.97678;150.7441;153.9545;99.27345;139.093;86.09881;132.02;102.2901;93.83305;115.5336;79.46785;109.1817;102.1238;101.1018;96.82015;117.1391;
92.98902;78.36958;131.6971;127.1568;106.4573;93.7301;136.1986;105.9021;100.889;115.0343;116.537;127.4952;110.3995;122.3995;97.22083;116.7622;90.91446;104.8101;118.8756;144.6924;96.58297;129.3044;115.7104;124.5464;122.3001;107.117;88.91115;100.7304;110.6094;106.1869;95.86165;122.1074;151.877;112.6134;92.67764;116.5953;135.7073;133.0012;127.5446;132.1902;131.6774;115.0287;90.1233;96.92139;106.8496;130.4891;104.9576;95.17463;90.15879;107.2058;128.232;94.83472;95.35949;96.10991;103.3101;78.81195;118.3376;85.67919;112.4762;94.80614;87.54746;73.84035;87.96078;99.69061;84.18198;86.06417;132.5058;119.2746;103.2595;85.50938;111.75;104.0824;89.77303;98.85296;104.5634;122.5412;134.4815;119.1145;79.65838;97.571;108.4809;105.0809;89.64041;122.8688;99.85362;102.964;106.4697;98.25541;107.4541;102.9826;87.97365;92.47747;108.7989;85.17616;88.73534;117.2686;102.0437;112.0852;99.90783;130.2792;106.2786;102.0438;136.9266;136.7037;115.707;107.9373;81.40556;90.52709;117.8845;97.42142;95.46047;97.85321;92.93936;128.4371;95.85296;107.3128;114.0269;99.0977;125.1834;126.2294;130.6925;90.61626;127.7537;110.6116;97.18402;103.3619;88.66354;115.2372;92.80052;80.18351;129.1908;119.1411;98.96638;95.43815;134.4604;106.8009;100.2303;110.6963;113.4203;124.9043;105.5457;121.1977;89.64369;116.9003;91.42076;107.3598;117.2797;136.6466;90.134;131.804;115.0484;126.6921;123.1711;102.6892;87.01681;99.26244;106.7397;104.6231;88.70947;123.1864;153.7182;114.788;91.65456;110.2617;129.1397;135.0419;126.8522;134.4033;132.5839;110.4412;88.21832;95.48401;103.848;129.8405;99.12927;96.88376;98.64355;114.6655;125.5965;92.43092;85.33387;98.82984;116.8726;70.48495;122.9459;75.29617;103.5746;103.4993;81.31225;72.15676;86.67712;92.34869;78.74883;89.32593;134.2809;111.0637;102.3272;87.00088;111.3823;102.2677;91.07739;88.2164;109.2914;114.2312;136.443;126.3145;77.21065;95.39484;117.7695;112.4576;87.43914;120.1251;89.58801;105.7689;120.2317;88.92606;108.9542;94.96255;82.70863;100.164;104.7822;83.86604;92.91113;107.4713;92.69926;112.7602;103.3852;125.6732;110.4374;100.8851;135.2898;131.5185;114.2513;100.2814;88.26952;82.5861;122.9426;104.4959;98.43024;93.97854;98.12631;133.2684;95.44967;108.4464;108.0821;99.09165;138.8192;112.7485;132.3688;83.08662;121.414;119.0033;93.40874;101.8997;92.85663;105.5266;
80.97157;134.448;100.8409;90.98149;100.797;99.30748;122.4619;100.995;87.77351;113.9276;133.8079;112.6444;98.48219;107.4155;127.8355;131.8149;130.3416;114.9266;130.3802;105.1469;119.2929;113.5933;135.4965;122.6682;112.529;126.2271;109.0042;104.421;87.79921;109.3136;136.0332;71.24841;128.1362;134.836;120.4725;112.3726;108.4946;91.53194;91.98365;106.6423;124.3206;111.3366;117.4953;114.2245;125.2086;85.54275;106.3624;122.6203;120.6669;103.0499;88.35235;76.32648;118.87;92.44766;133.6466;89.45512;116.1052;123.9903;128.1392;128.649;94.02425;117.6639;154.5083;85.70711;107.1094;119.7307;103.4901;87.48574;105.0667;123.1901;104.7133;80.62505;78.70623;84.99579;103.8055;102.5898;101.0469;109.354;98.17508;115.7859;134.7733;139.7141;100.4318;94.03204;100.8613;89.09744;113.703;98.99367;95.00583;86.80222;106.3433;101.3965;84.49048;105.9894;96.50001;80.02209;92.93816;118.6578;139.5089;98.72149;130.8943;105.1005;110.178;85.23331;114.6798;89.64713;86.13117;127.0452;84.09385;118.4505;124.1129;109.7998;124.0401;138.2721;88.79247;80.64955;87.97761;86.62717;91.76099;124.2938;135.6199;89.6515;110.9232;113.9419;122.8208;94.09135;111.1943;103.6855;81.53423;134.9037;103.4508;92.06195;101.4258;98.32365;122.7766;102.0178;85.47343;113.7815;134.5601;114.7655;97.18769;106.4245;129.7588;133.884;130.8404;115.2407;133.1289;106.2167;119.7816;112.4268;134.5481;123.2131;110.7037;125.891;108.5417;106.2852;87.68778;108.4812;137.2301;72.61662;129.9648;135.3848;122.3807;113.2826;110.1964;90.64744;91.20026;107.1526;122.3989;111.0232;117.0126;116.1761;121.8796;85.65413;106.3381;125.8618;124.8964;97.34055;93.97175;72.18933;116.7855;88.33957;135.7834;92.19284;108.4018;125.7512;134.7831;123.729;87.81608;116.1659;152.2611;89.38127;111.0423;113.4387;102.3174;90.35394;92.26075;128.0109;103.541;89.64809;86.78002;89.57767;111.5704;106.515;100.1951;105.9558;103.7364;124.7889;139.2406;133.0415;106.4128;89.43378;98.94152;85.05627;115.6698;101.8726;87.37008;88.98864;112.3607;97.22694;81.30067;104.4222;94.74504;80.92495;92.65612;112.3783;135.5553;102.9557;117.9383;109.5242;110.9275;92.78217;123.6018;95.06802;93.17908;131.6505;86.10692;114.7545;130.3915;115.4388;123.7968;131.6113;92.30087;77.42267;87.39143;82.62048;95.35629;125.5121;126.5079;91.85581;117.09;109.5414;119.0095;92.59745;109.332;104.7344;
87.96967;84.00694;130.4668;87.7112;133.7889;89.34808;112.4822;140.2593;150.026;112.7564;87.03155;111.0705;115.8343;87.63411;116.1301;104.1341;96.91129;84.84026;100.4565;133.8627;96.45303;90.18303;98.93521;92.26278;111.9702;112.0803;98.27888;99.64699;91.90942;131.383;137.1266;128.7143;87.67377;104.7328;95.58193;94.65755;90.21886;103.2031;97.50581;92.36266;122.4345;90.9183;95.38764;93.8204;101.7693;76.70097;104.1311;114.6508;120.4487;97.72269;110.5771;125.3915;113.8852;106.2896;113.2857;96.1565;103.9592;137.0613;75.02768;113.2951;103.2531;128.7442;133.6379;125.4042;87.23908;89.97993;96.70052;82.95803;94.019;119.8487;132.7713;104.5735;131.763;98.88132;121.6334;90.68275;81.8251;101.1344;87.4865;120.271;96.65458;91.41554;99.36143;109.3288;120.8019;105.7636;107.3389;123.1622;139.5296;120.6521;98.86884;101.3794;129.3562;153.019;124.7207;103.4274;121.3443;121.8762;120.4934;117.7414;112.2145;122.6554;113.6096;127.1278;117.3646;90.94896;102.4789;99.57117;148.2444;73.01398;146.8715;130.1939;112.024;113.2869;93.42989;108.5222;93.65659;129.3886;119.4186;115.545;133.4894;121.9162;115.0823;81.68085;91.85698;151.1398;133.3357;91.29675;90.5535;85.2135;132.1676;85.74895;133.0019;85.26369;112.7141;132.4985;142.1208;106.2107;88.60125;112.8507;121.1305;88.03246;115.807;99.3661;100.3481;86.45979;102.6838;131.9393;96.49695;86.48752;98.94543;86.84262;104.7628;107.0142;99.75806;102.0687;95.79096;133.2853;135.9673;124.21;90.11909;107.7938;97.09113;93.74545;89.44677;100.4762;97.51839;86.94182;114.895;86.36356;96.84742;96.17313;104.4934;79.40797;102.7503;111.4202;123.7058;107.2847;112.2335;120.7463;105.8654;109.4291;106.7381;90.79641;101.4887;130.4527;69.84119;106.8711;109.9353;123.6249;132.5025;118.1938;95.75058;91.54398;102.3355;86.53232;93.77039;124.6374;121.3954;105.6295;124.2021;92.15733;123.5479;96.93602;87.36308;108.4247;84.54633;126.7899;99.56487;100.6662;100.9312;104.9895;112.5275;108.8903;100.9673;117.0809;142.0154;120.763;91.14509;94.06498;133.6851;143.7183;125.1105;99.88003;125.701;121.4869;124.6643;124.2955;114.1802;128.9477;103.4585;133.7164;115.03;89.93558;102.3888;104.8082;152.3133;76.519;144.6803;140.5377;109.868;121.3631;93.13959;106.328;88.35978;134.3231;113.0573;114.6761;135.8987;122.0276;106.7543;75.13052;95.49173;141.8971;133.7582;87.96697;
86.37147;129.7269;105.3478;123.7489;95.4369;90.05719;96.40053;92.34418;110.5626;96.50333;121.485;91.90808;127.5936;77.23666;103.8034;95.64623;118.0846;129.1505;121.6269;101.0326;93.31947;102.404;79.17446;116.4832;92.14207;108.6537;110.3291;100.454;107.0619;93.89446;106.1344;111.1891;89.86162;126.0333;145.544;132.6474;92.02162;136.6332;119.1233;89.35557;115.6043;107.7824;134.0524;111.5497;98.92828;125.0188;90.88515;99.77869;117.7331;123.3149;110.6626;91.71745;120.9503;112.524;108.0769;84.95894;119.1536;94.205;131.8086;101.6066;89.91434;114.6302;122.4604;103.5516;110.9347;140.6389;131.5972;143.1769;98.88293;92.38998;106.4416;90.79807;133.8869;100.0799;131.6936;142.3893;130.594;70.88228;84.15635;118.6749;154.1912;124.2789;125.2477;119.1671;97.02509;109.7671;86.02525;99.26502;125.8868;116.0121;110.6806;105.6636;92.16266;128.8402;87.3847;81.8688;90.73801;104.487;99.62299;125.4903;85.06021;118.8512;101.3;79.10424;85.49797;106.4229;120.8832;107.0345;109.1992;127.2903;86.96046;92.28265;110.8121;102.8419;116.2478;87.88836;101.2595;100.7955;108.6548;112.1068;123.3956;81.48192;115.9545;128.5382;90.13013;88.36611;104.839;104.7576;87.07082;131.2937;111.8099;125.9568;96.47767;91.08892;95.86611;94.37586;113.5251;100.8258;126.091;94.30339;130.0665;80.08141;102.1422;90.03037;118.6974;130.5997;128.3504;102.9275;94.15957;103.3938;78.23055;118.3971;93.98789;111.8989;114.1752;102.9711;108.8429;96.11569;104.3634;105.1327;89.96358;126.4286;152.7914;134.8325;92.41547;136.7006;117.9622;91.03481;117.6681;111.0169;138.2856;114.2035;99.77079;127.5104;90.08298;95.01794;112.4497;121.4496;112.3493;93.37583;121.7656;115.0777;111.894;88.70866;126.3281;99.36176;133.4348;103.8276;95.71793;122.7767;127.0401;94.11478;117.5695;136.8129;126.531;153.3007;98.1638;95.91067;110.9206;92.04842;137.3402;97.16666;129.122;140.251;129.7043;79.62522;94.01145;113.4815;148.1358;122.4012;127.0314;121.0565;97.75523;112.2847;89.4258;103.3149;131.247;119.5621;110.3227;105.2367;97.19862;134.8543;92.06383;77.67744;96.80833;101.9662;91.30405;132.6874;84.82892;122.8227;105.8357;77.81031;86.64798;101.4247;116.5068;102.5398;107.5283;136.3047;97.79971;92.28821;105.7754;101.9186;113.6087;87.64413;102.4992;103.1939;112.6678;113.4365;128.7459;84.46404;115.5909;128.0912;95.14783;93.36134;109.961;100.0303;
98.16926;110.6844;111.6712;103.8137;126.3391;89.60788;123.1879;122.7431;103.3922;157.783;131.3227;97.39537;88.64296;95.31896;106.6696;95.07934;137.2877;132.8123;93.0765;108.1833;103.841;106.2744;86.53791;96.04799;108.6104;94.44223;124.197;91.89058;88.33233;99.50832;90.9065;111.8569;110.8625;96.76743;117.6935;126.4453;112.5819;91.7099;94.37129;145.0369;134.4046;136.9333;113.1144;122.8474;109.8462;146.2527;118.2667;115.7234;114.3178;123.0226;120.6724;93.60957;91.84693;95.73475;107.5977;141.739;81.38408;151.4066;129.2814;103.1799;118.9614;107.5459;109.0451;88.21862;122.8394;113.7986;134.8793;136.4805;115.29;126.8605;88.51441;103.32;119.3558;154.1446;92.67976;94.5409;82.40694;124.7564;110.2314;130.0955;100.8774;113.5706;121.7624;121.264;118.1;74.24494;108.8709;133.1909;97.29192;129.0694;102.6898;94.50933;86.05618;102.8614;115.9395;91.88322;95.85629;93.96265;88.31801;97.19835;106.7006;93.62823;93.66077;106.3379;121.6763;149.8968;132.0416;95.17137;97.45422;123.86;96.48414;95.40636;95.70222;109.0162;83.26011;93.66508;89.75231;92.675;105.014;97.06905;90.42812;109.9003;107.2866;118.9397;105.0217;129.4635;126.1445;110.0358;100.0124;112.3842;109.9394;103.1374;130.1331;88.45487;120.6557;116.2066;103.9949;157.9922;125.139;97.02729;88.96635;95.52582;104.917;93.43086;140.3243;135.1827;92.19161;107.9576;108.0289;105.4701;85.22546;91.25298;110.762;94.3902;119.1417;92.34462;89.56199;99.29542;89.661;110.9399;114.6384;98.37889;117.1241;127.1432;117.9897;90.55809;93.00287;139.1334;136.7998;136.8735;108.2948;123.375;109.7825;147.7433;118.4287;117.9053;120.0609;117.7744;131.8109;93.03426;95.64872;95.65598;102.4185;131.0802;78.51982;151.7904;124.5881;115.0008;114.5786;108.1788;105.3166;94.90102;125.6042;109.2092;142.1492;134.8353;124.2728;132.696;92.64236;110.5847;128.0433;149.9114;95.12862;90.67699;82.00713;112.6618;117.855;130.7237;106.2766;108.5204;132.9499;120.6036;122.4058;74.16747;103.6608;122.8594;93.82024;128.3821;100.6182;105.8857;82.36877;102.2194;111.9199;96.68164;96.47962;87.34755;92.33884;95.71371;111.4345;98.38656;97.86678;115.8956;130.0767;144.5955;137.4426;91.33997;97.08054;110.495;103.4825;93.96347;99.1419;101.4278;90.70463;92.98918;89.98549;92.33681;99.85406;90.2101;87.10053;109.2472;105.1891;131.6622;100.9636;128.7224;121.972;115.2808;
101.3046;98.48746;123.5996;93.98666;93.26994;100.3108;106.6357;116.7643;84.59193;106.6834;102.081;103.0638;98.27784;111.4083;110.194;73.27114;117.3582;90.61636;132.6671;105.2348;110.8513;124.0549;113.1992;110.1333;108.5086;90.36497;85.47314;104.4499;99.16798;120.5829;102.7126;92.41897;105.3677;95.46506;104.8959;113.686;91.9161;110.2442;131.6373;126.404;90.27743;137.278;112.2047;104.5208;128.3304;104.4061;132.1832;88.95518;79.6738;149.7267;100.8037;100.3586;92.99092;125.1047;100.2696;96.54108;117.7828;126.346;127.108;95.82503;109.2929;116.0136;111.0095;94.08353;103.2966;131.9551;140.205;86.25786;115.4254;108.414;137.1761;134.0715;88.03671;110.3862;110.3808;102.0406;111.6481;113.3983;119.4344;116.1621;121.3279;83.52847;115.3802;127.8591;138.4466;116.6025;115.0801;124.6382;113.3024;97.31371;93.85697;93.23632;129.2606;124.814;107.6548;93.98569;89.10464;126.8926;91.30421;87.31612;90.49328;89.38573;86.85915;115.6119;87.85789;116.9228;96.44509;92.49516;94.60368;100.3098;118.8869;87.08913;87.9825;146.989;103.9782;94.31058;87.82567;100.5785;98.98508;87.82436;99.19531;110.2106;128.3023;120.3227;105.7273;98.66518;95.93327;116.564;101.6298;98.39788;128.4798;91.95895;91.14975;99.85016;109.0731;114.4938;87.76061;106.707;104.5869;105.3517;93.87714;112.3527;115.9734;75.19462;117.5046;90.43549;137.5013;102.9878;108.3453;123.4237;114.5286;107.3945;112.8902;90.2145;86.73826;106.5637;95.90147;121.7432;107.5973;94.40955;106.7229;95.43621;108.4981;111.156;90.75643;109.8278;133.0677;123.4709;94.27551;137.095;113.651;106.6374;127.1673;104.5579;136.1496;91.55428;78.80157;149.9834;102.235;94.47521;93.88295;128.2365;107.9064;87.06335;119.1789;124.8196;116.591;105.9603;116.9946;117.4158;123.1286;96.47807;107.7921;127.7409;144.1791;83.21411;120.558;116.919;148.3911;136.4888;90.08217;105.7967;113.9354;102.2289;103.0357;119.0488;123.7413;119.7213;120.2506;83.7113;116.9063;121.207;139.5341;119.6159;123.2466;113.836;112.8743;97.02299;82.61889;100.967;138.8411;126.0771;115.8736;93.70847;94.41531;123.8025;90.13159;86.30075;94.0314;98.37215;95.91713;120.0015;88.33221;113.3102;97.34853;90.53806;87.6774;105.4484;119.4197;87.61498;88.18116;148.3663;100.8139;90.70575;87.72795;104.6735;106.6824;80.54777;98.83207;109.8821;115.125;129.1078;114.4483;99.77036;103.7218;116.278;
89.34404;108.5387;90.22913;77.31874;90.21996;86.87335;108.1284;114.0103;86.63371;125.1816;98.68537;109.4681;83.77537;107.8949;105.9286;110.9124;98.94363;100.1384;121.301;116.8016;123.4637;81.99226;99.16537;128.1257;105.7336;77.25035;104.7429;92.95996;110.0407;106.471;91.71212;113.1014;91.83579;97.48971;79.16505;103.2785;90.75031;91.23286;119.1336;96.51948;114.3636;86.9912;116.1747;89.51136;96.71224;124.2278;135.4272;127.8774;95.84886;98.44942;98.606;109.9449;96.55952;124.0837;114.4254;117.554;135.075;93.60464;107.6167;119.4486;108.4123;116.2308;135.8182;131.6916;96.79456;126.0789;108.943;89.0792;123.6315;89.34472;122.4857;120.4745;78.45076;126.2652;101.8836;111.7057;90.67569;125.3654;106.4309;120.0574;118.8341;114.0987;126.6272;91.99221;124.7777;93.37067;116.6616;107.2318;113.4271;107.7979;127.0179;86.10619;138.1482;112.3068;115.5195;123.4115;96.26987;98.46619;90.78137;100.5103;108.5979;91.62495;122.0629;142.6348;122.0772;81.53521;103.2243;105.7524;130.2122;117.8336;138.9525;139.4938;99.82107;103.4981;108.7137;96.8903;127.6726;126.1571;109.2346;116.4649;122.6646;124.0344;94.63397;95.23651;110.4309;95.78606;88.69027;120.426;92.99259;105.3016;94.4577;76.69187;90.6204;83.58761;105.4546;110.1815;93.51203;125.1603;103.9298;106.2141;86.78368;106.1936;108.3201;106.1234;103.5185;97.46227;127.0129;116.5152;124.7521;79.18343;96.40092;125.1095;112.9109;78.49834;109.9349;90.66606;112.5812;106.033;93.26859;109.0359;95.39616;96.05787;83.16794;103.7501;91.03372;89.428;116.1043;93.9064;121.826;88.31756;121.6421;87.26299;98.9338;124.9426;137.3506;123.4717;95.35166;92.15337;99.19253;115.3718;104.0358;119.4368;111.0724;112.9814;136.9672;94.24495;116.7264;118.8247;106.6246;122.8894;149.1359;131.5943;103.2434;121.2451;115.7094;89.54042;129.6483;87.81016;124.4131;117.5934;86.95783;133.382;97.74899;113.3123;94.64462;122.0769;105.0122;118.3761;118.2699;107.3077;127.291;96.95739;133.2462;89.34096;113.275;102.862;108.8321;108.0091;133.1925;87.81921;133.5137;118.1302;125.943;127.7146;99.89233;96.55589;94.4032;100.5508;114.0695;90.84303;127.0784;142.7642;125.8197;86.84649;95.92572;109.8263;132.3505;113.9459;135.4048;142.338;96.53751;99.43571;106.6184;101.5323;136.0551;122.3622;108.8133;114.8356;117.8635;124.2608;99.99046;97.03886;106.2718;101.1696;97.86794;124.6786;
150.9693;126.1882;75.58902;107.9986;132.9002;105.9623;130.4598;98.79646;113.699;102.4201;103.1976;116.8063;113.8;94.07414;94.86392;82.21174;100.779;87.19117;96.20161;92.36461;81.14376;112.4549;131.6231;120.9684;86.02943;95.82089;95.23916;104.8463;102.9755;93.74015;100.7477;82.59422;102.3944;95.12423;83.74322;86.92944;85.07819;97.19646;105.287;124.5107;118.7368;111.0137;121.2578;106.1907;119.0055;102.6933;129.7521;103.9387;102.0805;145.987;86.05972;117.0901;118.7015;125.6738;131.6319;129.5594;96.71712;89.71535;98.00774;101.1306;99.50363;138.0478;136.3992;105.8118;135.8758;114.3993;106.1936;85.22966;96.39658;121.6517;98.39288;117.4492;117.3163;110.0536;102.4078;92.27813;142.741;119.0492;101.7385;112.2204;134.3663;101.9764;93.16125;88.24992;117.3076;133.4469;123.1425;100.1954;116.0162;108.9829;114.6552;128.9058;131.1689;116.2909;121.2727;121.6354;103.125;100.145;89.21467;90.59789;128.3767;90.05768;143.7917;143.1049;103.7189;121.2753;98.8867;88.50396;100.9246;125.987;138.7043;128.2473;129.6852;133.2158;121.1042;87.34033;102.4487;140.8464;126.8573;91.71483;96.54717;78.92422;123.7154;105.4587;143.9175;101.3677;118.3322;136.7994;148.575;127.5847;74.2401;110.9194;137.097;108.0059;127.6139;96.0276;115.1603;100.0676;100.0861;115.6186;120.2387;94.75882;97.62531;81.96028;98.63799;88.25889;94.49648;94.97109;84.26785;114.4639;128.1847;117.557;86.48303;92.32959;91.76923;103.7357;108.6386;93.5414;103.5096;82.36342;99.78812;95.33902;82.08704;89.47097;87.84701;98.15314;102.2118;121.0517;119.267;107.2555;117.3358;105.0751;121.7787;100.8871;131.6;102.8404;90.48196;149.0765;80.40487;119.9505;124.723;120.1889;116.4789;129.4937;92.40281;83.08557;100.1395;100.4341;101.377;144.84;134.335;111.1013;125.6148;113.6749;104.5492;93.12508;93.1823;127.8043;94.41383;110.7451;115.4801;110.7267;94.9288;90.87411;138.7962;109.6812;99.33527;113.4753;121.0075;104.5566;87.26534;90.73546;123.2938;127.7879;108.492;100.1376;112.2437;106.6493;120.9548;127.7722;130.4328;124.5166;117.5716;128.519;98.1253;100.5338;89.48973;94.71941;124.7006;95.96459;143.8727;140.353;102.933;127.4399;95.06544;86.85668;95.16786;118.2905;134.019;130.8445;120.9422;137.4226;116.4091;85.98401;108.0981;135.7491;116.4085;95.49192;93.1449;76.9427;130.2587;104.4553;143.1915;109.0599;114.6793;144.119;
122.8581;92.8132;111.7075;139.8531;131.2004;81.22792;141.3427;119.2536;112.2328;127.1571;93.68988;110.0881;100.4065;68.05017;121.9851;94.77863;96.77013;105.3713;120.9349;102.4446;99.12713;111.0995;122.5646;121.6166;104.4824;133.1118;86.47173;111.8791;111.9271;88.48254;119.0864;122.2051;98.44417;124.7745;113.9562;117.2838;140.9562;95.89289;103.9825;101.392;115.5342;114.9439;100.4805;126.3124;144.4829;120.396;77.74107;93.079;109.6188;151.0638;131.3323;115.1745;142.8679;107.0579;103.2689;88.22015;114.6805;135.5297;102.3159;95.64818;100.8898;105.6721;133.0675;98.85008;97.22924;92.81556;92.9144;87.79165;121.5709;74.54769;118.9351;101.7532;92.28815;94.11824;88.55119;91.26848;95.09537;74.52232;121.8236;90.80292;90.17031;99.55249;99.87681;98.19051;89.65623;94.10146;109.6171;121.6544;128.4295;126.3882;74.35222;91.4854;128.605;94.76462;86.24817;107.6525;98.63929;101.9398;109.1748;94.28893;127.5739;89.61195;97.53284;92.34412;116.3046;93.37137;98.5113;118.8886;93.20068;125.5329;84.81762;112.2058;85.01479;118.1422;138.12;117.9578;124.7204;99.57014;91.28031;79.35658;126.3264;96.24554;96.50338;96.56171;96.10469;129.0538;100.2937;122.2066;114.6813;94.02039;109.7846;137.7369;130.3163;76.03163;132.8509;115.9832;107.0381;121.0078;91.83082;106.8463;95.35693;72.60085;118.0359;95.89459;90.21712;107.1104;119.7268;101.0761;99.07143;105.4503;115.608;119.4507;100.917;126.5484;85.50417;109.4863;107.5846;93.24151;115.608;124.4142;92.75525;126.1759;113.2118;116.7216;142.0409;90.2457;97.5854;99.41769;111.786;108.8533;99.43973;123.7719;140.4753;127.0106;76.39371;95.76012;111.2867;153.4813;121.6266;126.0537;138.0532;104.8388;100.3015;91.05255;106.8828;124.5574;99.26387;90.8547;86.47578;108.0323;135.2938;99.09784;100.1987;91.30296;96.89767;91.31917;119.2018;75.18642;106.3058;99.52153;81.6567;94.17053;91.90594;95.41129;93.89214;88.30716;126.062;97.49371;91.68371;101.5073;91.43676;108.2493;85.85067;92.01262;106.5592;124.9711;121.8758;121.1921;73.36379;86.71281;115.8187;91.20904;89.47449;105.057;105.555;98.303;115.141;96.12376;123.247;94.99059;90.55081;91.35847;105.9451;98.2546;103.9812;123.5076;95.25813;136.1883;89.81816;116.6345;90.13121;118.02;129.934;126.87;118.3575;102.2825;92.96772;83.12662;119.8487;91.70068;95.3961;91.65646;85.11481;124.8785;103.7905;119.44;
110.9858;124.7463;130.6118;130.9758;86.06182;87.30375;89.95028;91.27444;108.4671;102.7172;105.271;76.41334;93.24257;82.40904;97.11282;95.60394;82.88464;90.54977;91.85596;119.6301;123.0361;100.5173;113.6482;103.8296;105.0271;95.56179;114.7294;87.56367;108.3264;125.8017;87.90473;116.8603;114.3505;128.6915;148.4979;134.1733;107.8009;82.03803;79.2354;100.0292;85.21012;130.1383;127.2132;97.92574;119.1435;93.93392;108.0629;99.95906;90.29305;117.3292;83.07272;127.9629;95.73066;101.9798;109.6805;97.884;127.9635;114.2421;98.90031;98.3298;155.6644;116.7823;98.20754;111.3037;145.5778;144.592;122.6994;112.104;118.4335;101.3558;112.6409;111.6791;129.816;127.2261;126.3556;116.6015;99.20831;89.00133;104.2182;98.97022;115.7157;84.12144;132.821;140.1257;111.0556;114.1202;98.61996;88.12377;86.30313;124.0904;125.6261;110.9786;142.6769;116.4684;131.7475;83.56943;100.0381;147.8377;152.64;102.5354;106.9771;73.51551;106.596;102.4593;123.4315;98.98122;114.2336;134.2919;135.9973;105.0482;79.7444;124.5859;131.8092;105.4859;115.3018;115.1282;95.74306;93.23947;111.2187;119.9161;107.3274;94.22306;96.21208;71.13387;116.8247;102.1815;102.6069;111.3973;108.2046;126.1097;133.0169;135.8811;85.85963;84.7618;90.19726;89.0545;107.3188;105.5821;110.2998;77.52203;93.11137;81.46996;101.231;93.87306;80.31219;91.6131;93.68964;124.2174;122.5931;97.6787;112.7543;100.9341;104.6565;98.16487;118.7828;88.58738;109.4261;124.8202;91.18333;114.7508;112.5667;130.1631;150.0138;138.812;108.6129;79.62763;78.48719;97.18967;84.87405;133.1755;131.4768;99.01023;117.1626;93.97401;110.5904;99.29502;96.01793;122.7488;84.43231;125.693;98.24883;97.42679;103.1921;100.1334;134.5222;111.5066;96.15691;95.48566;153.1098;118.0526;95.65357;102.9948;141.9857;144.9104;120.564;113.7951;120.728;107.6235;110.9868;116.6486;135.0826;135.2349;131.485;120.2556;103.2168;94.33568;113.4231;89.24623;122.1845;88.71053;134.5336;137.75;113.7662;109.2906;92.46822;90.2588;89.71177;118.8416;117.8886;108.915;142.4135;117.6679;126.0538;76.96294;96.30282;147.1432;148.1508;102.1835;111.3915;80.40501;106.9281;108.8575;126.2331;103.7984;114.5374;139.3139;142.8969;110.7646;85.57664;114.3685;137.8243;109.7343;115.063;110.9205;100.3953;90.51691;106.6374;124.1481;111.1643;89.63939;89.4761;69.50127;116.6268;103.2867;97.61046;103.7703;
91.0713;110.6924;110.9296;132.4;130.8775;137.2739;130.6687;123.8221;120.4092;102.5507;108.6728;141.5435;123.8586;94.61597;98.34447;90.24273;128.1996;94.42138;146.9641;94.49165;123.402;145.5886;128.5299;125.2375;77.1314;128.364;136.6375;95.68308;116.4396;93.54971;89.98178;91.20081;97.37149;120.2343;120.1479;86.66322;92.20056;84.81689;90.64758;100.8703;96.41063;98.70478;91.45753;131.1378;138.9064;124.2506;93.65823;91.64589;88.66936;101.7309;115.0902;98.89465;95.16735;75.09322;105.6573;95.85261;98.34512;90.85231;80.04157;90.74702;91.4299;117.5508;110.1801;113.4895;107.7148;127.0073;132.4744;106.7519;128.0922;106.8748;98.57881;132.7014;81.07748;136.4184;124.0118;124.8814;128.7748;126.8142;102.0041;95.49194;95.86532;89.15367;106.0682;131.1608;145.4261;108.2601;115.1182;109.9465;112.2379;103.7357;94.01443;105.4796;86.78841;104.0671;85.79386;91.86459;87.00883;89.90446;142.5208;105.817;96.91442;111.75;124.4904;107.9616;96.60352;99.22076;119.6581;142.6825;128.7301;97.61367;118.7972;101.4853;103.9759;119.0355;140.7798;119.8785;109.9609;112.9966;109.8744;98.93301;107.6211;93.48554;116.746;77.88231;133.0086;133.7657;92.45975;125.5411;84.40942;105.1251;111.5058;132.4774;131.4385;133.866;135.9793;118.7013;124.5797;102.3194;106.6264;136.6341;128.6703;88.60938;96.82578;86.68208;121.0655;89.69646;148.5064;94.98079;124.7527;142.5986;133.5565;121.0953;80.13293;129.7127;134.1232;92.35362;120.1628;88.7312;87.87932;88.29793;90.34116;116.2057;120.8025;87.81317;92.54004;83.65957;94.87907;97.15878;99.76544;99.89039;89.40495;127.2377;141.3912;120.2292;91.16373;89.64898;85.49211;94.73956;114.4259;100.86;94.33881;75.11322;109.4014;97.06184;98.12669;94.82457;78.63032;89.89178;93.44312;110.0939;113.5837;107.3695;111.1303;126.7276;133.5332;109.3659;132.0772;107.3556;100.2607;131.2833;84.0462;127.0393;121.9685;115.8536;126.9756;122.5458;102.9949;100.4658;92.55116;82.61222;105.4297;133.4175;144.3898;108.279;119.0241;111.2365;105.9741;107.7567;94.23974;109.2807;86.76925;100.6597;91.23901;88.3055;94.76371;94.15579;142.4938;108.32;101.3249;112.0699;121.8856;109.5357;94.13879;91.04356;119.6436;138.3431;124.5548;97.42534;122.7216;108.7747;105.4616;116.4638;138.948;121.9304;110.045;112.8437;109.4264;102.9214;101.4701;97.30449;117.0153;81.15445;132.9628;129.8985;98.12593;121.3759;
134.53;124.3565;121.4417;93.95155;103.8368;138.9087;119.4648;96.6236;105.6273;83.94594;136.0658;93.30745;154.3815;106.7963;99.50143;123.6271;148.8635;105.4367;83.78554;116.6358;130.3815;88.25405;109.0056;90.93434;92.41046;93.39793;100.5265;126.4955;95.56121;84.38483;88.33623;86.28024;104.089;96.85954;104.2095;105.2643;95.89405;110.3303;121.8877;115.7469;91.10444;98.30839;115.653;101.8276;104.3507;110.5512;87.01385;74.90743;98.10271;89.01743;101.4574;107.0906;93.98933;105.43;91.12218;114.7643;129.0896;109.1365;111.5308;116.9881;115.2879;87.21371;121.2808;99.28368;105.5876;139.2537;85.77334;128.0142;121.8549;123.0615;120.3354;131.3882;106.0998;95.96027;105.2501;88.4413;112.2654;143.6315;119.5358;90.14567;131.0772;95.41856;115.2069;91.05293;92.23328;103.3394;77.78288;104.5232;91.08574;98.4379;98.76681;100.1043;119.1044;107.3756;96.86597;119.848;137.0307;111.5158;104.6078;103.7768;130.9818;123.0989;109.7918;91.45885;121.9888;113.17;139.41;126.9124;131.1671;137.265;105.2017;113.5703;100.7808;96.28195;109.9143;110.178;133.3467;94.3336;131.0758;131.2173;110.9182;123.4054;93.44676;100.6918;96.86835;113.6469;132.4912;127.5878;134.7473;129.7548;128.174;95.47417;105.6233;136.9287;119.6982;93.77711;106.2147;85.18742;138.7315;93.34185;158.4098;110.8298;102.7127;126.0974;148.8588;110.3036;89.21231;118.2197;132.1544;86.57325;108.6869;87.85775;92.10816;93.48347;102.3033;126.5506;98.27485;87.10548;91.27816;88.35075;103.6206;100.6019;110.1677;106.7828;96.96432;107.4961;121.548;112.2747;90.80199;98.39822;117.5556;101.8791;106.2879;113.5966;90.77318;77.71632;101.4256;94.87628;104.2236;107.4642;93.84737;107.4577;81.0025;116.4538;117.7877;107.7726;109.1751;114.6258;117.1776;99.08949;126.0303;99.78798;106.4152;139.4042;86.21227;137.8993;117.9489;121.4734;123.1523;122.2991;105.5737;94.90614;95.61575;94.48459;101.7616;137.9631;133.6015;96.52477;134.9135;101.4766;118.1434;91.39745;92.09235;105.3424;68.44833;106.1359;82.06689;98.16143;96.66225;97.76144;118.9534;117.3491;97.14199;116.8753;138.7128;108.8708;101.1547;111.0386;126.6988;124.5696;111.8499;85.97772;121.9788;113.1202;128.401;133.9635;117.7572;128.4302;114.1148;117.2122;104.8148;99.71694;108.7094;108.9124;132.9564;98.97353;118.244;135.6291;100.9794;123.099;91.40239;98.36302;96.76933;123.9044;132.8169;124.5435;
88.47816;88.32909;99.24253;100.478;100.0062;98.71671;103.9953;93.77285;108.8997;124.2265;116.6459;92.18159;101.8048;104.9021;110.3285;98.8981;98.1824;107.304;101.8812;98.15266;85.84151;83.07168;116.0263;92.57623;91.59067;83.69987;100.0727;111.9317;95.01958;125.9588;109.2704;128.2253;90.16935;128.2971;108.8704;114.8881;138.9599;94.3948;126.9774;110.3993;109.3769;144.6525;146.4571;91.46021;84.74416;85.44855;102.1279;100.155;152.1205;132.4434;114.737;113.6926;109.4216;122.9995;96.28786;96.41944;99.99152;91.48359;113.0436;95.14413;94.16395;94.47761;91.86425;117.2257;107.7039;92.99786;127.0075;129.792;109.6116;94.22495;98.63034;122.6275;122.2383;111.6846;92.09739;122.0955;116.0664;125.6714;132.6634;115.1333;122.2947;122.3355;141.8018;98.75248;91.82491;87.09552;114.6996;129.1889;88.79475;120.2082;114.5679;105.2869;111.4371;102.3557;91.12851;108.0631;111.8787;137.2218;135.646;149.84;131.0768;136.9658;93.87405;93.28829;129.0956;144.6428;106.98;97.26208;78.0429;111.483;108.9179;144.3125;109.2396;114.6235;154.9191;128.8882;119.173;93.76232;125.1526;140.0381;87.53428;125.2215;96.40402;102.0538;90.14799;94.03784;114.0073;97.55801;84.11533;89.0492;97.68346;99.03759;99.00795;100.995;103.962;91.44985;111.965;123.1838;110.0971;97.66666;102.9495;100.9937;106.3913;97.39221;94.2838;108.5501;101.0263;97.1666;85.57726;85.56643;116.9376;91.24506;95.82996;82.64426;94.86691;118.8888;97.06969;121.2039;105.7562;127.444;87.34712;129.1858;108.3964;114.7157;139.7655;96.63479;127.9334;108.9477;114.0077;143.2666;140.1477;97.76158;85.41505;82.84854;100.1872;102.3654;135.5343;128.5429;104.6148;108.1516;112.5275;124.8018;101.0752;97.64687;108.1624;91.89043;116.5769;101.5998;92.25777;96.27132;84.35249;125.1753;113.1633;98.02911;133.7986;130.8369;112.8236;96.49437;96.76448;131.2955;120.4349;119.3735;86.97491;133.4039;116.1045;129.0087;119.8086;117.2193;107.4726;118.5778;130.5229;93.58826;94.67204;88.60433;119.9195;130.6033;93.89554;120.8794;121.1889;105.8559;108.5792;107.1216;85.40733;113.3248;122.5978;141.2268;140.2621;151.8011;135.3755;135.2849;89.86049;99.34341;124.2718;153.5838;104.3096;101.2987;77.43401;117.663;99.2227;143.9816;99.93094;109.1427;140.7339;123.7355;123.1601;91.6916;127.9818;139.7045;92.61809;125.8861;102.5052;102.6137;87.59769;98.59016;107.6176;102.5602;
102.9852;96.56066;130.4864;105.1081;130.2786;93.39651;67.52242;129.3232;97.02197;108.9761;93.76264;142.1942;100.1013;112.7372;122.1668;124.0558;122.2135;103.6603;114.7495;95.56853;126.1132;108.1482;115.2238;126.7308;130.5985;87.50436;129.8853;136.3937;133.9765;124.2791;102.0952;89.12003;101.0091;113.7562;120.2619;111.8325;117.7592;149.2034;121.8556;80.28146;95.30534;120.1657;124.1167;126.1877;123.8968;126.9339;109.2222;91.24337;94.6312;96.10282;123.9698;109.2988;99.4976;93.61589;98.48363;144.0759;108.1997;100.9628;101.5944;95.65067;74.76767;124.264;92.69126;108.7048;87.87742;83.11219;96.31195;96.34559;110.9379;89.70064;76.47443;127.7014;96.51407;109.5348;87.59441;116.2602;95.62688;106.2148;104.7939;109.8288;122.2728;128.6636;114.0788;81.85359;104.2236;129.8971;117.3362;95.2309;114.7707;91.99461;101.314;125.8779;107.2381;103.1093;103.4442;88.41029;97.31351;119.0108;101.4706;105.3937;107.2046;100.1784;122.5273;87.69051;113.1461;98.92443;89.82266;129.9577;124.6077;107.3666;110.9766;87.5808;92.41183;112.6209;94.29423;101.4012;100.3661;94.12569;118.6306;111.8387;126.9605;126.5606;99.18008;113.6727;120.1989;127.7965;104.4954;129.8846;106.5113;99.2934;131.2993;100.2872;125.3641;94.17075;70.9257;128.1214;97.71773;109.9783;91.11757;138.7125;97.6974;109.3508;126.4977;123.7153;125.8375;106.3846;115.3066;90.87637;121.0704;108.866;118.4552;124.9651;132.268;88.23235;125.5314;132.7728;132.5508;120.8995;105.3671;88.66855;105.5157;116.7827;120.0945;106.5619;114.1457;150.2554;125.1753;78.87921;96.72995;121.0209;119.8588;122.7082;125.0611;122.5138;111.1888;91.43207;103.3964;93.88192;130.4883;105.6203;94.85555;99.38286;93.34846;141.1181;97.71687;105.6603;104.5889;96.3717;77.97305;130.9499;99.81487;114.1052;94.66819;85.05222;90.09663;100.0052;103.8262;91.99089;79.49551;130.5702;89.89247;105.1466;83.97684;108.0966;85.57242;99.04198;110.3396;108.0087;132.2093;126.0807;120.3303;78.67451;99.47096;136.6634;111.72;92.82907;105.0123;96.61091;107.1591;130.0271;109.9789;113.3596;108.9929;93.09311;102.4689;119.2352;94.18947;114.3736;101.3206;102.6047;124.4923;90.93995;107.0466;94.866;88.75642;124.5858;112.0143;104.1275;114.6736;85.79294;99.14728;108.2041;99.08438;102.7375;96.79778;99.91137;111.2529;110.1882;116.7262;131.9444;104.9859;117.6402;123.1412;139.1591;110.094;135.5723;
118.9398;111.1646;127.4781;132.4291;87.47231;94.57956;96.31789;101.5733;98.22021;124.0193;148.381;104.3135;123.4161;100.4379;107.8084;94.11942;99.50605;122.5637;80.06626;122.6533;108.3829;101.1399;91.35032;108.7071;114.1659;106.9485;90.28013;114.0471;118.6915;100.5297;98.00391;91.81697;130.1477;129.75;115.0849;96.21518;110.8234;109.4176;126.8124;133.4807;122.1567;115.5913;122.3315;116.5206;94.3815;94.32242;89.43839;93.95766;141.1617;94.93846;143.2727;127.9523;109.9913;116.5147;89.0817;95.59276;94.25445;127.5781;127.0275;123.073;147.2792;113.518;128.6777;93.11759;105.9816;126.5336;126.9648;96.88654;89.34425;85.3586;126.0837;108.1282;142.2989;91.59323;131.0782;138.2681;141.429;110.3963;78.91164;116.8925;142.773;108.1109;115.7978;106.2723;109.5256;93.11106;95.80484;137.5727;95.34161;91.34775;87.75788;82.20679;88.52728;88.22647;98.01996;95.02992;96.35664;118.5367;129.1623;120.0728;87.76674;96.28577;103.6491;111.6614;100.8718;96.81308;106.6004;77.02454;90.7554;87.80421;81.4923;88.9501;98.87679;104.2843;103.0576;111.6118;130.4102;105.3713;107.7257;112.8896;111.7264;106.447;120.532;95.95781;109.3081;121.7852;88.83263;124.9462;120.4505;112.6775;132.1138;133.5927;91.29792;94.19331;96.29857;104.2577;101.2455;127.9877;151.0288;101.0159;122.5941;97.15122;106.4206;91.68499;101.6152;124.6371;84.41119;124.2698;113.4149;101.1693;91.1326;112.474;117.0106;112.1486;92.15687;111.377;116.9646;98.44778;96.00159;90.11348;131.5616;133.3074;119.5347;98.36881;114.9879;110.7388;126.5586;137.6542;125.1014;120.9977;124.5173;113.8241;92.68637;93.3326;87.5528;92.16483;145.7845;101.5738;150.7658;135.703;117.7726;106.9542;93.85508;97.23662;97.66194;132.2588;132.2309;112.5239;143.1736;110.3161;115.8161;82.50097;106.2317;116.7775;127.753;92.36128;100.9426;95.54496;130.3569;104.1776;143.3336;100.6958;131.2246;139.5592;138.9577;107.9089;82.09466;118.7009;147.41;115.1788;122.5431;113.3411;117.2802;84.5817;100.752;139.538;97.02501;91.43857;91.95477;75.815;86.97178;86.33108;88.69241;86.0119;96.25423;106.8714;127.3642;112.7159;95.53194;104.6723;107.7255;104.0317;99.95923;102.0719;106.5982;80.23975;90.4267;86.52208;86.57944;92.3109;102.3856;108.9874;107.0611;116.5015;134.4434;93.99609;113.1671;110.9385;113.5277;106.5449;125.461;89.04288;107.559;119.5563;79.9792;114.5741;
90.4974;90.49831;129.5737;109.2794;98.07106;108.8492;92.30521;109.3369;123.5187;108.3947;117.2724;106.0523;105.4689;84.35647;103.9108;107.5766;92.56395;106.6715;76.66785;119.5033;78.98255;105.1508;95.34046;95.20801;128.0075;119.214;107.8648;95.999;95.64585;85.74238;127.0159;104.8687;110.2644;93.87714;108.0552;114.0504;94.3154;107.7614;109.8335;97.10693;127.796;146.2649;142.1579;91.47949;149.7058;108.8163;99.25612;109.4031;98.98174;115.3204;98.35043;82.51563;147.9039;97.15908;104.549;111.3193;127.4477;91.20751;94.50621;115.9452;120.1533;118.7725;111.0656;120.1759;105.8763;109.8455;108.6858;107.446;133.3164;125.1087;87.07182;133.3788;133.9878;136.5108;133.1746;103.229;106.8146;95.37128;100.9298;125.302;95.38284;113.7284;123.6997;118.2255;75.60409;91.75394;117.1819;129.4196;120.609;121.1123;130.8573;96.81188;105.099;97.05811;111.7347;144.8075;117.7469;95.02316;109.0407;99.89127;130.8895;90.77927;89.93269;98.35639;107.6413;95.56812;139.2027;80.66754;128.5014;95.58236;81.82175;84.58989;94.44091;104.4659;95.13648;91.15888;151.0636;91.43378;101.5166;103.174;104.5343;91.37826;91.16361;100.0352;105.6801;123.8472;133.8375;123.9759;94.2042;94.55559;132.9315;110.2849;103.4018;107.7608;94.7813;108.9596;124.2029;110.0214;121.8945;104.4189;106.7572;89.22268;103.1013;113.4306;96.12495;110.9639;79.08566;120.4427;83.60886;103.9863;97.35133;94.54623;127.7102;119.5363;111.7679;94.45914;96.43376;89.78348;126.0289;110.6742;113.6698;96.99844;110.8456;114.9822;98.90916;105.6368;111.9885;96.44061;127.4963;146.6245;146.6305;89.97844;147.057;111.6817;97.27954;114.4457;104.0816;126.1408;108.7356;85.02411;151.6;93.47833;103.3271;102.6355;122.8511;86.57652;101.6856;117.7064;115.5112;120.4373;104.9902;117.0928;104.3992;118.1247;109.735;108.1208;132.3967;125.7683;96.56075;129.3557;136.75;134.5611;126.7106;101.4586;105.4822;95.91444;88.17532;135.6125;100.39;124.4705;135.3044;121.2245;78.25288;88.17381;115.8782;120.0427;117.931;116.836;135.0072;98.6041;102.9696;95.86871;107.7041;135.8046;114.236;100.8087;107.3875;98.30311;128.0896;94.8543;98.63126;96.39359;111.8886;94.90284;128.4076;79.27995;129.5455;93.47546;72.06432;88.57452;97.64091;112.7474;102.7076;91.62919;152.755;91.307;99.38261;96.30403;102.0804;87.67155;94.63517;101.8782;103.5833;122.5063;129.4255;115.6792;
109.6586;118.6099;135.2252;94.525;105.3668;90.63194;102.5235;101.1229;94.97117;94.58694;86.78461;107.4148;99.33747;84.48612;123.0471;90.05212;101.2148;97.34014;126.6278;131.8765;106.4505;115.1947;106.3289;126.3246;96.47928;116.0273;111.5538;110.703;147.1316;68.22083;130.7551;111.9408;104.4015;123.4695;127.7946;112.0575;100.6507;94.4759;89.18721;85.28812;120.0204;139.7965;89.96973;107.2757;100.0541;105.4759;106.2014;96.44002;111.7018;77.96899;115.982;91.30302;99.30521;94.82653;95.787;121.57;104.6194;105.9265;114.3896;126.5071;133.0056;96.77301;102.9851;145.3785;121.2265;109.6365;111.9911;119.9214;118.075;112.4313;124.6053;118.5104;111.9285;112.2294;124.52;105.1399;102.5223;88.10847;123.4273;127.8118;90.27884;135.9674;147.2427;111.9435;118.3483;94.40247;90.19942;106.313;121.7172;115.455;132.9104;142.1075;132.5454;99.9797;89.1331;97.06441;120.5916;126.9839;90.88976;106.6032;86.14806;127.066;94.43038;123.5843;88.24614;116.0088;120.2232;123.8421;111.5404;74.71462;124.608;138.8672;100.2998;112.5707;99.79615;88.9893;89.75986;101.0317;121.733;102.0625;85.96317;95.395;83.22533;98.81034;116.6173;99.24763;99.98447;113.7872;109.4574;120.8428;132.6892;87.63506;97.91835;92.31488;101.0162;102.0013;94.33204;90.65714;84.09794;105.0378;94.73611;83.48808;114.5035;90.1734;101.7489;99.79789;124.9806;124.2006;99.67455;117.5547;105.6943;128.4854;97.25306;111.4171;109.4307;109.1638;142.6632;66.96845;122.3787;112.974;105.9289;125.746;126.5927;105.8501;95.00594;96.19703;88.60839;87.06757;120.8859;134.7343;88.06638;105.7632;97.15013;104.8929;100.3382;98.16042;116.0606;80.80891;115.8403;88.46714;90.37569;90.03094;96.69411;130.4817;107.3159;102.5594;113.921;126.1072;129.9897;98.27692;101.2374;140.9439;129.1508;114.1438;115.4389;124.0345;116.925;119.46;125.9633;127.6697;122.8476;104.3078;121.8291;103.8609;99.67089;89.0476;112.6763;133.6927;94.20169;139.6984;147.083;108.7958;108.5809;89.60882;91.07975;114.6516;121.5693;115.6897;135.7241;140.6159;132.8563;102.0586;92.97466;91.76252;124.612;128.5831;95.86163;114.2788;89.7623;131.3535;94.58434;129.8494;95.28722;111.6175;120.7243;121.461;111.6338;76.05128;120.0544;142.9055;100.959;112.9186;101.5979;89.5414;85.76762;93.39221;121.584;107.4286;85.85699;95.59048;85.47311;97.56692;116.9301;101.3006;104.0709;108.0403;
116.1248;118.888;108.6366;111.0662;89.24515;133.2669;95.51192;97.35259;94.5106;128.1684;101.5941;96.66769;126.9023;108.668;114.6308;90.47947;106.9012;102.4863;109.8675;83.17598;90.28141;124.8931;140.4996;98.78296;121.3969;127.5318;106.7758;141.9368;106.4348;82.10226;93.21179;89.92634;125.5801;110.4447;134.1281;124.1192;109.9175;85.9854;94.30544;134.0938;132.444;146.9547;124.6287;144.8951;104.331;108.8891;106.1736;103.5739;131.1109;123.7202;95.37233;106.9422;109.5802;123.3231;97.96671;93.76392;98.66514;121.2501;89.85203;122.9937;103.0138;100.7533;107.2383;92.30486;81.11217;111.2224;94.53841;105.171;96.92823;131.9947;95.34657;93.97271;85.45575;105.378;101.2803;89.81148;108.7918;94.81028;116.161;113.0856;104.2092;89.70079;91.80731;102.8104;92.35319;93.31332;125.0389;101.1638;95.90225;121.63;83.92236;125.8974;106.7478;83.26066;86.46379;92.37064;107.0502;112.186;128.7058;77.81445;110.33;92.0575;110.9639;111.2896;99.22901;155.6835;124.0112;129.2733;99.90829;100.4717;99.77886;121.8183;103.6435;118.2879;97.45773;105.1304;126.4007;92.35625;113.7984;118.0632;98.52857;145.3625;136.8421;133.5818;107.7566;118.6494;125.3604;108.1592;116.8021;119.3202;111.3485;112.2632;89.84004;132.1307;95.78988;98.35682;92.12331;128.0134;102.2496;98.63328;125.4323;107.6712;116.4525;92.19509;107.353;102.783;112.392;84.1277;90.70662;123.6698;139.5338;99.27204;119.5007;127.1939;106.3181;144.1088;106.3121;81.38101;94.20303;91.46265;127.3904;110.9415;136.1411;125.0754;111.6303;85.12817;93.51218;134.666;130.4603;146.5946;124.1315;147.092;101.2941;109.0147;106.1494;106.5548;133.4966;115.2576;95.88113;109.9073;118.0247;120.4954;91.30923;91.1563;100.9817;116.0189;87.94336;112.1615;100.6206;100.7673;103.9911;98.92484;88.52792;108.9285;95.12339;103.8353;100.0249;127.396;97.85262;87.26254;84.2497;93.24567;101.0539;91.7581;112.8993;94.03412;121.7663;122.2354;106.3369;82.50832;92.30228;105.7181;100.1179;90.84633;117.4977;98.45454;97.46822;117.2079;82.04161;115.1451;107.4062;83.14332;83.56858;96.10836;111.2238;109.8662;126.8806;77.69842;115.0005;88.19451;115.6596;102.17;97.23451;141.7327;123.7173;131.8484;106.9582;99.52542;105.0104;128.0104;101.6562;109.9851;95.80756;109.2918;136.9692;89.87852;108.56;113.2301;100.1533;140.5027;134.4621;122.5224;108.4571;118.4894;121.8926;112.2231;
84.38868;98.35571;103.3096;114.0884;113.2479;93.44507;106.3349;131.4848;108.3086;114.8794;133.7584;101.2125;111.6896;119.6183;124.4498;104.8256;132.1567;128.2601;99.44193;119.1521;89.52001;130.5689;86.95714;79.3932;140.5511;107.6546;110.1689;109.5517;113.0404;96.39963;97.24481;100.7094;101.9677;119.7408;90.68697;115.985;92.53352;117.5476;90.12753;98.77163;136.3483;147.1795;94.30422;144.2397;119.3028;107.4964;145.8686;87.10381;84.80024;98.55211;105.5122;128.3436;91.45093;123.5864;132.4534;133.9603;93.70538;101.9996;139.3269;134.0428;121.5709;131.3876;141.3869;101.9637;90.24137;102.7824;90.03488;147.5502;117.8576;90.59715;107.6084;109.9038;138.0199;94.52376;106.1926;101.4108;93.1646;72.01464;116.6035;93.24863;110.7792;108.3121;84.23529;85.99832;85.40797;111.8745;83.14522;87.04426;130.9192;98.05068;108.7536;105.3851;96.15803;95.76629;88.45983;81.39032;93.17737;121.5744;116.2872;117.169;78.30666;94.99135;109.462;94.75172;96.32807;123.2462;100.6793;119.5983;115.6953;87.79121;127.3189;83.40951;89.37714;92.49828;109.4901;104.7519;89.44567;116.1287;84.28168;125.7327;95.36189;113.7768;117.4782;102.4343;134.3716;133.2548;121.1513;99.78801;86.9229;99.66428;104.8272;111.8525;112.5275;89.27018;106.5604;123.9742;101.6079;108.2714;135.7027;102.9121;116.8912;120.0836;124.1152;100.0416;136.1651;130.2497;101.658;117.3379;89.56232;126.1144;86.96672;74.37118;132.4617;102.6907;111.7347;112.0903;117.3407;98.03012;96.26884;96.72974;104.6035;123.0123;92.15716;114.9751;91.75156;114.6362;90.1396;93.16305;128.3853;141.3685;95.75571;147.1533;122.2508;110.6968;144.2335;84.2909;92.67807;98.28047;105.2037;125.5014;94.12912;117.4485;137.2316;118.4471;87.44151;85.27953;141.8382;138.5066;132.3576;134.1781;146.2952;104.8046;92.78824;96.47643;89.9895;150.574;125.6058;87.20934;102.7091;100.0958;135.2156;85.10999;105.3861;93.00188;95.62693;74.53217;110.9772;94.87669;119.7476;108.0222;83.95898;83.67042;87.98771;106.0333;86.9391;74.62785;128.584;87.01224;109.0535;108.0158;103.0198;95.1241;93.63643;86.716;90.95309;112.581;114.2156;122.1482;86.59209;92.74944;104.8755;90.10406;98.41918;118.7135;98.08518;109.1137;115.5143;87.67118;122.9349;87.76191;92.59144;90.33396;107.2307;104.2893;94.12018;111.5229;88.42355;115.7563;93.35188;101.8605;117.8081;105.0294;142.4386;132.4968;127.2159;105.6772;
100.8703;105.7722;91.19862;98.46477;98.72048;146.7681;116.9047;118.0376;133.2411;116.313;123.2851;75.47147;88.74117;119.3175;130.2231;102.3694;100.4988;84.32915;112.4543;90.23676;136.7509;113.8795;104.9785;117.4473;130.0081;129.8299;93.07274;115.1519;120.9971;87.71161;116.9694;97.72984;108.5333;87.97216;108.476;121.0895;118.7272;108.2444;105.1865;87.79736;112.4586;107.0651;103.6976;94.07558;108.3859;126.0649;120.7409;115.31;87.75284;106.6003;109.4485;107.1547;99.31307;118.1904;90.46571;84.80564;114.5896;101.3658;112.5733;82.42532;103.6651;98.09127;94.07697;111.9766;116.2308;92.75394;108.7729;114.5093;117.6783;118.5042;111.2405;92.27388;103.5098;128.5191;88.57457;107.4318;103.0997;106.8747;131.8932;137.6655;103.8246;96.03065;87.514;85.45741;98.52845;152.8299;124.2179;84.82744;113.51;122.2195;131.7611;96.39933;85.62838;106.3085;85.71655;106.4806;110.8783;92.849;113.4507;99.34272;141.9328;133.2901;110.1262;122.1254;147.8197;121.7777;105.3446;93.79405;143.8217;145.5785;111.6442;90.66695;118.3786;123.4888;136.5779;137.3983;119.3562;141.0214;108.0552;126.4144;117.7568;109.4833;120.4826;89.07657;148.2928;94.16705;131.8662;125.4252;101.6293;107.1909;97.22112;100.4386;99.78233;148.0884;116.3161;120.3331;136.4913;121.0538;127.9247;77.64349;90.80544;122.847;128.3616;96.55662;101.0643;85.50098;118.9227;92.02804;137.7675;114.9231;103.8912;119.3691;132.1989;133.375;96.60795;117.8457;122.8899;89.85889;115.1098;92.05713;108.6453;88.30251;114.7448;123.1777;119.1745;108.3043;104.0957;89.46196;114.4943;110.2889;107.4248;96.51401;109.2677;128.5668;119.816;110.1878;87.0774;102.0153;118.4645;101.3793;104.7889;117.9743;89.00354;92.53239;116.7766;106.7407;112.7463;84.77906;102.1586;96.78419;86.22148;107.2716;116.1055;95.52579;117.7898;116.1091;118.6491;109.7857;103.705;100.1465;104.1765;140.0029;84.42043;114.5742;104.3534;108.9199;133.5133;136.806;103.0894;91.6771;95.58604;80.30839;103.9826;152.5786;122.4934;92.55521;113.813;125.8933;129.9427;96.36713;83.48232;102.665;78.97048;106.7986;110.8208;96.37411;118.2039;98.85364;143.5655;124.0162;102.7919;128.0067;146.5197;130.7013;99.04515;97.89359;144.3087;145.2644;114.027;94.60595;117.6859;119.394;141.7546;128.5876;125.8992;140.7628;106.6373;132.5998;118.1064;112.965;118.7469;89.06554;145.5099;90.74256;123.4685;125.794;
136.5518;101.6532;107.0363;107.4129;125.6864;90.01065;88.11065;119.6296;99.67108;124.6352;104.603;88.09028;85.89697;99.72506;127.0771;129.5035;88.96129;125.9928;131.8939;124.1181;100.2575;102.1654;141.4919;146.9012;127.2245;99.98988;118.6436;128.6796;131.4445;118.5048;129.2246;120.1716;118.8802;144.8957;111.227;96.01842;107.6841;98.86041;146.5274;105.1392;139.8824;153.8186;93.1726;125.9604;101.8618;101.3493;100.4094;124.5206;109.1081;116.3049;129.2044;116.5689;129.5901;72.40733;95.46735;134.7958;129.8769;94.28654;89.66651;78.21104;110.8707;102.0459;149.5538;104.8198;116.5403;136.3331;118.6367;119.4568;93.28934;113.797;124.4221;100.5331;134.2931;110.4415;103.429;82.33301;88.49523;124.9955;102.4788;104.4493;85.39622;93.26773;99.74821;109.7569;105.0778;104.1211;104.7735;129.1865;139.7247;120.5262;84.62646;111.0135;108.3714;94.35807;105.6052;97.38287;105.0626;103.3946;107.4516;89.7571;106.0796;94.16383;102.7213;108.6538;102.3642;134.7888;102.2125;108.717;120.5186;117.9851;119.2786;99.32256;104.762;95.78539;99.7476;124.9562;94.18822;105.1741;110.0589;113.4468;129.0115;130.4398;87.16293;84.39671;81.20969;95.98918;106.9317;142.4177;138.728;103.2858;105.3444;106.7284;129.4744;88.85823;85.97112;113.1776;100.2629;124.8211;99.09211;87.74023;86.2153;99.93664;125.1635;127.5784;91.40891;128.3018;130.8401;123.8764;104.3733;101.3768;139.8123;140.9566;129.5523;99.93633;113.7037;129.2168;132.9436;118.2724;127.7388;119.221;122.7891;146.866;110.6735;96.62672;112.9744;97.6644;144.8211;100.122;142.3257;153.7553;88.80326;126.4946;101.8005;102.5908;100.5587;126.7834;123.9369;128.4668;132.4148;117.9939;141.2479;79.14098;90.8231;127.9358;135.3983;98.6374;88.8717;82.7616;114.3159;107.9481;140.2322;108.4433;124.6306;133.9187;115.459;121.8794;102.062;106.5119;125.4254;98.31709;134.9521;113.7249;99.61107;90.22841;83.32706;123.8467;97.0995;102.9884;98.56955;104.1807;102.5715;111.1345;115.6003;112.1561;99.90545;122.4671;145.0298;124.4136;85.79881;116.4743;111.8176;98.797;97.63353;98.83554;110.8004;98.69119;102.4486;91.76358;111.5059;87.29887;103.593;108.4674;102.6114;137.3151;100.5376;117.8144;114.5408;115.5245;113.3205;95.8969;117.3217;104.1637;100.6237;126.3144;100.4411;112.9705;105.0229;109.2816;134.1338;134.4615;88.37119;89.16617;84.21451;100.4476;98.92882;144.173;
100.1258;76.10719;91.73888;90.96606;97.54364;93.77082;84.00361;135.6391;103.4458;93.30086;99.45206;88.08193;106.3612;101.4822;100.2081;89.90469;106.9192;116.0554;107.5947;88.09822;111.106;120.4532;101.7658;95.03642;126.7847;110.2596;103.1198;107.7027;99.28964;131.5434;100.2981;103.7335;84.24304;108.5994;107.7666;99.42516;116.4778;100.0439;114.2598;86.6581;110.9067;98.54939;87.90641;114.864;116.8306;109.8286;94.44154;83.21325;84.16213;106.4068;93.64913;107.912;108.6383;104.6695;109.8798;102.5706;118.9146;122.3476;91.05068;114.2795;126.5662;136.998;99.96892;146.1589;120.727;92.73204;123.7721;97.54957;109.8084;101.3384;80.95776;134.5925;108.7418;99.24211;104.9419;109.5508;101.6956;110.632;119.1941;99.42278;109.5625;90.66173;105.0842;101.1597;123.439;97.63755;100.3085;123.6154;147.3388;102.9329;127.9166;116.1565;122.4126;147.4445;103.7604;103.7291;92.20559;103.0474;128.4046;97.17211;118.807;152.4773;114.6206;75.64063;98.78956;118.1524;118.9605;105.7342;116.173;127.685;96.95602;91.50636;89.98018;91.04716;128.1656;107.1997;106.5174;101.668;92.87306;129.1482;103.5133;98.20844;92.05315;95.49504;79.56106;127.5803;94.546;126.9647;100.4525;76.03136;95.95319;88.97456;95.37843;93.32867;86.16848;133.1911;106.9467;93.3229;101.9256;90.19795;101.7811;102.3837;105.7229;92.034;107.0589;115.8507;111.9525;86.04332;108.5971;119.8312;103.0264;92.49345;131.5174;110.0934;104.5089;109.849;96.0211;132.7551;105.1257;105.8417;85.45518;108.5686;111.4173;97.06008;115.1719;99.64728;115.5927;84.23251;115.3334;98.39433;89.18708;117.0823;115.7209;109.9843;97.79879;85.72768;88.22407;115.5017;101.366;114.0671;99.54519;103.1584;109.8818;96.27376;119.6756;121.5915;101.871;120.9481;126.0944;129.1712;104.0087;149.34;115.915;96.00182;130.5716;93.94151;104.6984;95.95284;88.1311;137.544;107.2621;103.9416;113.231;117.3707;96.58125;112.0121;127.9989;97.58012;114.1899;99.06133;113.2448;107.1219;113.7328;96.16859;100.3059;116.693;146.1414;103.3214;137.8063;120.401;123.0937;139.1197;104.3433;103.6047;89.10608;107.4632;130.0712;95.72783;112.3824;147.3841;123.2278;79.60179;95.74613;124.441;125.0339;111.0544;111.8179;128.9684;101.4408;87.18562;95.33842;100.3973;131.8928;115.7034;96.50385;101.4437;92.97626;124.2484;102.5481;98.56982;100.4918;99.36808;80.14387;119.825;95.12308;126.8508;
93.65592;87.21275;117.9661;136.9805;140.4542;100.6251;92.66393;110.6009;89.9521;95.93676;101.1397;100.6116;92.08315;101.2909;91.31929;106.8054;93.94781;101.3657;101.8061;102.7596;107.1586;110.2955;98.52032;111.9197;111.7947;120.8233;106.3806;120.5983;93.85347;109.5639;134.3864;99.99073;110.9505;104.8369;128.1118;137.7537;150.8362;96.86864;98.18576;100.5109;84.59918;89.17335;148.438;131.8522;98.55227;107.3759;100.9784;106.1576;84.76402;94.33313;107.5055;87.28657;112.2317;88.71923;91.92479;95.66508;91.05656;129.2498;121.1388;92.47977;108.4933;130.5226;103.3397;100.5157;94.02099;118.7389;133.6723;124.5582;118.6184;127.8589;105.9901;130.9059;113.6264;116.6688;125.822;117.4197;131.8232;101.2862;97.74183;110.6553;96.03788;142.8241;95.9593;143.2382;124.1501;90.90189;112.9544;93.98557;102.6563;103.5367;136.5163;123.3161;121.8765;139.5569;127.7675;134.8907;82.74118;89.12672;148.3117;138.1207;115.33;94.53685;89.8254;131.263;97.00777;130.0872;117.3519;109.5606;136.276;124.8459;116.4637;73.37724;111.3698;131.7586;95.65357;118.5374;96.19386;89.03027;85.7936;95.29622;121.5943;106.6476;105.0433;84.79861;80.82978;99.85722;94.37727;99.56384;97.39393;84.31667;122.7979;136.1496;140.9578;97.08972;90.18994;106.8303;96.9584;95.91814;106.4481;97.4929;95.23581;99.6427;93.54066;102.1069;98.40695;98.67302;107.0444;102.491;108.3592;107.0338;95.76493;109.1019;119.1715;122.3828;111.6125;117.9836;96.20082;109.1196;136.269;96.17031;114.8606;103.3519;133.1905;138.2982;151.2015;95.00858;95.43747;97.84396;91.03397;90.51615;154.6099;129.1203;100.7947;108.0406;102.6403;102.1469;85.68164;82.97633;100.1701;86.17506;104.7746;87.74152;89.84938;95.71894;101.8823;133.4524;120.6598;93.06651;114.2943;138.034;102.7981;95.45288;89.07282;126.1513;134.1758;131.015;114.7028;128.6452;111.6285;125.6634;120.074;115.5927;127.9748;117.4107;125.0157;102.4854;91.64262;105.4252;97.00492;128.7605;89.03551;141.8079;116.2899;89.90752;110.6518;94.03455;107.8315;106.8284;132.3137;126.69;125.4844;146.5148;125.2871;133.5123;75.6562;97.93655;145.6615;144.3773;111.2996;96.00697;97.73052;129.1183;96.97761;128.4318;115.9848;112.0884;126.7986;125.4423;108.0756;72.44124;109.4664;120.9139;86.30085;116.752;89.14303;88.80971;86.32925;98.04846;127.1994;109.9878;101.3778;87.60151;83.75532;105.7557;92.26337;98.38133;
91.09732;106.3167;122.7668;91.50072;86.21054;92.7806;113.9898;129.2872;128.4029;115.3969;92.44496;93.22173;121.3932;113.6714;92.87787;129.5729;86.04463;115.9047;130.5901;98.32044;110.2636;97.68343;86.53388;90.43745;95.86546;91.24776;110.2478;108.4227;78.68382;123.0022;86.55132;109.3429;92.3031;94.63377;134.462;123.5061;116.2767;103.437;100.8489;91.01881;102.0942;108.9022;121.4759;97.86365;93.33929;114.0956;111.1092;122.2473;128.2669;99.49313;120.6316;130.338;127.7029;109.8784;127.8165;129.2667;91.01016;130.0108;106.0938;119.8246;103.9816;96.78239;135.9549;94.06921;95.80811;114.3643;145.7351;91.28873;95.34064;114.2578;127.0597;130.864;105.289;116.0427;107.4572;109.9943;103.3785;118.2874;126.896;147.6384;82.16299;144.2475;137.5503;122.1395;131.0822;101.0674;88.79329;100.3511;93.37196;105.2547;105.2329;111.7089;132.4345;125.5249;81.33975;91.73733;110.8183;128.154;122.6193;125.6939;136.6639;105.7585;104.0519;91.89269;88.56833;139.9837;121.6915;93.62447;97.31878;96.26775;146.7417;103.9105;99.50671;98.10841;97.14473;87.54295;118.2856;100.1572;106.2613;108.6877;76.34813;91.29402;95.9998;107.2246;102.9327;103.1616;137.6109;91.7633;89.24274;107.6023;121.0498;94.19407;89.60023;94.69671;111.3306;126.1169;129.9555;112.8989;89.50132;92.16099;128.0403;114.4239;95.6104;129.2571;84.06718;117.1352;128.6022;101.0091;113.9005;99.55643;83.75022;87.49114;96.34424;87.84157;106.512;107.2932;83.64362;122.7746;89.11256;109.0773;89.82947;94.84801;132.3612;126.532;119.5099;104.4239;97.83958;88.06492;102.5859;105.1803;117.5503;96.7928;95.7971;112.1913;112.8197;121.0559;125.4551;98.42549;116.8616;121.2138;132.2953;101.3812;127.3325;129.4214;98.20995;135.6675;108.1984;128.3313;102.7836;97.77005;141.7176;93.20369;93.6028;117.9448;132.4189;94.81706;95.56844;116.2559;117.7137;122.3406;104.8501;112.3338;106.7832;110.451;100.2363;116.6575;128.563;144.0334;79.91545;142.9561;133.5121;113.3123;135.734;92.92076;88.38145;100.4874;101.5734;115.5432;111.1572;119.5919;128.2207;128.6673;84.32328;91.91135;112.6416;133.1705;112.4294;125.22;136.9758;108.3215;99.68256;88.46393;89.04008;141.665;125.0221;93.76283;91.86915;96.55553;146.5715;101.9982;101.0266;98.10806;95.60435;76.48149;122.76;92.64119;110.1163;113.0019;83.81546;100.8953;101.6644;114.973;99.25938;106.0151;141.4865;91.95759;
126.4408;106.6239;104.6188;131.1084;96.5825;111.9114;97.6608;119.2237;94.70609;102.4904;122.2407;132.6891;104.4131;121.3026;125.6504;130.0036;133.254;95.1395;106.5022;113.5749;105.7185;118.7375;94.98478;112.6139;151.3807;129.3694;75.05347;102.9709;134.4552;141.1926;109.9764;139.4054;140.4266;83.2749;91.89745;93.16412;114.307;138.5308;127.8511;95.08369;95.44304;98.53498;145.1672;88.25026;93.65665;91.31844;101.6048;80.09422;130.5835;78.48177;114.9152;97.04599;72.00981;80.70921;84.5129;93.34904;97.7863;90.94205;129.6752;88.12698;97.22179;101.0489;103.7376;103.6619;112.3276;86.6563;92.93108;126.8197;118.5534;108.2328;81.46393;100.5764;112.0376;101.3144;92.09703;115.3919;108.7896;94.83494;115.5912;104.6209;112.7313;93.93964;105.7177;100.7063;107.137;99.67828;93.44452;104.8425;96.65878;122.6672;80.54487;116.5033;106.7793;113.7249;115.5878;138.7704;114.33;84.16179;85.30183;85.68576;131.2394;99.06342;116.5542;96.25784;89.46933;111.0494;110.1278;102.8812;113.5133;95.23658;121.5519;131.4229;135.7278;90.55457;134.3887;116.3794;86.9435;106.8636;86.06673;107.6151;102.8982;79.92113;128.9678;91.55853;96.77505;113.9436;122.7673;105.1784;118.1473;107.921;102.7616;129.0634;95.82748;105.8007;90.62431;115.9537;89.93926;96.97745;120.1158;129.1277;99.26243;127.3536;121.6418;131.31;125.5443;96.79237;105.3686;112.1337;105.661;112.8949;88.87287;110.5301;147.0828;122.9001;74.15224;100.6759;129.6915;147.1877;106.6348;141.7642;133.6156;84.42052;91.2291;92.66314;115.284;131.7259;120.7466;93.17211;92.03906;92.902;143.9156;86.12884;90.43553;97.09061;100.0636;82.58268;122.6825;78.69132;102.9116;91.63839;70.23051;71.39507;80.37796;90.14939;89.77406;90.69396;141.3035;92.21449;90.98306;106.8712;107.8021;108.0562;100.3415;91.05415;95.36883;136.884;117.0071;107.2656;80.51917;107.2232;113.9869;98.18675;81.20895;118.4736;95.89161;100.1648;111.3652;115.733;105.3989;94.15971;94.21812;95.19133;104.9642;89.28661;89.09395;101.4449;90.16045;127.9202;91.56184;121.0945;103.6007;113.4479;121.5461;140.5495;106.1711;86.57099;89.0904;92.21029;127.6787;103.0126;120.533;103.9788;92.72287;112.9582;100.086;105.697;103.7206;94.675;118.8958;140.5568;132.093;88.81664;123.1055;108.5123;83.41866;100.9223;86.20143;105.397;96.20907;84.15511;142.8383;95.63343;93.76917;113.6469;128.928;106.7277;
114.7893;118.7255;130.3557;137.9583;124.6155;83.70617;116.5261;136.1437;100.123;131.7137;115.8163;94.3485;95.86645;92.99642;131.8518;101.1168;99.26157;90.24677;87.73771;92.0471;101.7626;97.85796;106.7004;86.09978;120.4267;147.7169;114.3372;91.50842;99.06471;110.7978;90.45864;108.9619;109.6592;113.4982;86.39428;94.01041;101.0916;95.06995;113.2716;84.79478;83.426;102.9542;123.4131;107.1126;104.2893;103.5232;124.4069;113.6517;89.02217;107.8756;95.08721;108.5682;125.8186;87.37459;108.1836;103.2377;114.3566;137.9543;123.7862;100.8736;93.31837;80.26517;91.25191;90.22649;145.8109;139.3491;96.99073;121.4305;113.3768;115.4678;95.10054;97.1727;113.7811;98.41594;132.6918;96.35705;103.4069;90.71737;108.6986;123.5386;118.1188;97.20619;118.0531;124.716;114.4668;92.54707;105.9524;119.2454;136.3438;140.4368;96.85086;125.4454;115.0134;131.1026;117.7324;130.5147;130.8894;130.9315;126.6496;102.2158;109.119;96.70987;116.0831;121.4222;76.58442;148.996;147.5954;93.29917;117.1832;87.42271;111.0423;94.86322;114.7055;117.3078;121.3292;143.9111;114.2105;126.3723;77.34737;87.74931;133.2922;141.8085;94.66323;100.6003;85.04565;107.5501;101.8915;127.6799;111.9605;120.0556;132.7585;142.9914;124.3722;81.21752;116.8071;133.4294;99.01987;134.9552;121.0882;95.58002;95.73343;91.99864;136.6434;99.33647;96.4445;91.30831;89.53002;96.07619;101.3597;95.0574;105.8343;83.46494;120.0298;150.9491;118.3838;92.55486;100.1164;109.8769;93.7841;106.9253;107.9125;114.8805;87.55138;97.8997;101.878;92.47378;112.3766;82.18204;83.09348;105.6576;127.6131;108.2467;102.4366;103.5653;127.1178;112.9436;93.53126;109.6469;102.471;118.4543;127.1749;89.01691;106.6554;107.3884;124.9043;135.0867;129.3195;98.34647;91.94157;81.45433;89.58686;92.58;147.2261;141.0219;100.7162;124.2407;106.9958;105.2123;92.86979;101.6437;115.3289;100.3276;140.488;94.01932;101.6598;93.28191;116.0855;117.0971;123.3039;98.87823;126.2596;135.2964;115.7602;94.22757;104.4355;123.7033;145.3071;134.9894;97.52506;123.6477;115.4479;132.5479;113.2489;134.0972;131.3415;131.5919;128.9362;102.8199;105.0288;88.96238;115.636;128.1899;76.04037;148.6425;150.5717;91.89407;117.3274;89.87562;115.898;89.87033;118.9953;118.2272;127.7143;152.8497;117.8155;130.3014;77.72218;93.08824;142.2008;136.3129;95.35048;99.01202;85.45394;108.8405;97.74451;131.2477;
95.1126;139.6783;134.2498;101.0179;127.6384;107.3461;114.9379;87.19208;106.17;113.5684;94.20606;129.9445;103.8279;110.8918;91.27116;96.61282;111.982;126.7819;104.8319;101.1395;141.7958;120.0635;100.3517;85.18986;147.6944;124.2056;113.9969;95.91272;115.6249;135.1547;129.2263;129.3727;118.5418;121.5719;115.3444;136.1011;100.7069;88.62394;89.88317;96.85731;140.6165;95.38437;137.1194;132.9182;96.35817;109.052;89.26009;95.31821;90.17769;126.7456;122.5383;121.2445;133.3325;114.7324;129.6603;85.75125;100.6771;144.4346;126.6204;93.47697;108.028;81.86901;122.7473;92.85631;133.1049;102.755;114.0548;133.929;145.076;118.0404;81.82542;109.3001;144.6662;98.35965;127.1613;111.9473;105.9283;103.0203;94.58462;122.0316;91.25305;104.3037;99.31792;73.70221;111.2304;105.9309;104.8515;88.10371;116.2991;111.1569;121.0794;113.5258;88.33851;112.2151;106.0138;103.4099;90.16847;95.64452;98.49996;98.97157;98.91959;81.04316;88.8373;91.95361;102.5252;102.6256;94.63835;112.6871;114.9075;90.1601;105.223;109.1362;103.831;98.00661;116.9563;96.77628;100.3812;125.7141;94.31841;115.431;123.1646;129.5794;124.5581;122.1051;110.8859;88.03741;92.06411;85.07819;88.30173;133.4156;134.8837;101.0856;128.1924;104.335;119.9219;82.90368;110.0882;113.325;92.30138;125.2424;108.2373;104.3809;89.80833;92.9274;105.3212;121.2973;106.1352;101.6455;143.2434;117.3496;104.7989;81.77962;151.8368;125.5324;111.7013;92.57921;119.3353;129.3501;126.7043;125.9108;110.7712;117.5208;115.9859;137.5412;101.0617;87.44084;94.09698;93.22111;144.6622;96.54993;134.6035;128.9915;98.4295;105.2867;86.82528;93.28147;89.53942;120.2925;128.4397;130.424;142.1792;118.4524;132.1315;81.92058;102.8209;145.4947;124.6672;92.54311;115.4;78.54121;118.4328;90.36509;129.3209;95.66752;116.8059;130.2796;148.1177;113.4865;89.1415;106.6632;146.5654;92.67679;121.1988;101.8193;104.2481;98.21033;89.09627;119.7081;90.60176;98.45268;104.637;80.89197;119.3123;109.5013;107.0742;84.21607;112.3944;111.8623;121.161;117.3938;92.96658;112.116;104.6195;102.8731;91.66312;93.2765;100.1143;95.74439;102.3791;77.13509;92.53297;92.15153;98.29942;96.60988;91.24328;107.2036;110.9142;89.05873;102.0319;109.1066;108.1376;96.89913;121.6966;104.8923;109.0465;129.4166;92.50283;113.8837;119.1245;130.3407;124.6597;126.1169;116.0434;87.94943;90.78111;84.59259;
139.8933;86.21008;141.6276;142.6536;100.2949;104.4917;104.811;106.4857;98.52159;117.7328;120.8487;146.4697;140.7674;120.1114;113.1878;71.23476;94.39269;127.223;149.9911;92.70522;110.9483;79.00744;131.7166;107.0528;143.5353;99.06927;127.7231;136.4825;135.6079;110.3963;88.74295;124.9612;130.3827;92.1275;115.0074;109.7525;115.359;100.6448;104.1116;134.834;103.1187;103.1758;109.9466;92.68411;117.6572;83.13777;114.4276;102.4127;96.30758;114.1223;136.8436;112.183;91.55616;97.04053;93.13885;111.5832;96.59438;94.10336;101.8456;80.69792;101.9309;87.68307;78.56472;87.72174;98.43842;96.23092;100.4472;120.7862;117.4769;91.64395;123.54;121.5179;116.8852;94.97863;115.6357;118.0462;108.0881;130.8104;76.21309;101.454;110.8108;111.8822;149.6341;126.1334;112.9459;87.40897;97.08105;99.71312;102.4391;133.4576;149.4431;102.2401;124.6629;101.0306;122.369;101.7151;91.58417;109.2782;87.80336;126.104;115.3916;103.9796;101.4137;105.3314;123.9858;125.4727;117.963;122.2779;151.3802;97.02005;115.2968;102.5554;126.8696;130.5171;131.259;92.87182;120.7659;108.8031;113.2169;133.586;118.5547;112.2967;120.6728;117.1691;106.0427;96.01373;85.17664;92.94034;140.1149;90.71437;148.8907;144.5284;102.0507;102.7753;105.0297;103.4964;99.08884;119.2022;123.3616;146.5128;144.615;124.3868;116.6111;73.11285;94.38896;132.5637;157.2232;94.11791;112.5843;77.41756;131.3662;103.7124;143.1584;99.15736;129.7248;136.5398;138.8369;113.5051;91.69158;127.4505;129.8585;95.77814;121.2626;111.303;116.5326;97.93864;103.7977;131.0843;102.797;103.2678;111.8018;92.7333;119.7137;85.78143;118.7328;105.6926;97.10282;114.2638;137.4036;121.4538;88.17923;95.63566;95.62386;103.2248;96.09725;93.05951;92.37617;86.47048;91.93;83.26625;90.04587;94.01118;101.762;102.3139;103.1946;121.1775;117.3129;93.53043;111.7028;123.2508;106.1383;93.7066;113.2325;115.6785;109.9229;145.2699;79.9838;101.9688;111.6634;112.0175;150.2085;135.9527;109.1914;86.07172;99.60871;91.82076;102.4113;133.4019;138.0567;108.558;111.569;93.46104;131.9759;105.133;95.40406;112.9237;86.7244;124.7482;115.0078;108.8467;90.14815;109.2864;113.4438;125.1622;115.6437;119.7086;151.2447;106.523;115.5903;99.8364;128.5202;127.6671;127.3903;99.74963;116.6756;110.1876;115.3275;126.9456;118.566;112.2486;110.4664;123.9494;94.03111;88.64091;93.2242;96.22948;
133.2937;121.2819;129.9578;141.8384;111.4253;86.58354;108.1972;94.24928;146.6632;125.914;103.7927;90.9822;89.61823;127.9014;98.63694;100.6374;99.52865;102.7528;90.73376;124.025;94.2354;120.0474;111.1446;73.92913;77.68972;92.85354;112.3058;95.63331;85.98979;144.7126;102.5292;99.04743;93.65156;112.5171;98.83598;87.78465;99.16505;88.9736;101.9446;107.6561;115.2861;76.03378;95.89619;108.6475;86.85829;86.08983;111.26;88.43433;101.3751;118.3224;93.3066;116.8357;97.13729;86.96504;92.35192;88.03694;89.68464;89.89178;121.9781;88.80185;128.5979;88.09542;120.361;97.3808;101.6356;129.793;123.1806;122.2513;108.6386;80.37358;99.26029;103.6954;112.4217;119.5523;103.4898;89.22752;104.4125;97.48005;113.4977;122.1378;100.5753;125.3877;138.5447;131.9589;105.7332;140.8401;129.4196;86.85291;115.5021;100.4008;123.5152;109.2129;81.35526;141.1396;101.5878;98.94356;99.22328;137.685;100.6049;96.41489;120.3421;104.7557;102.8883;85.28698;118.9308;89.27779;108.9649;93.38229;89.07974;112.464;127.4123;84.76501;119.1974;128.1181;119.2069;131.0822;96.34834;91.64197;103.8708;87.47388;112.3399;89.73804;127.2789;143.4438;128.4412;78.79308;100.2371;120.6972;127.9262;122.1254;128.1728;140.126;110.3714;88.71806;108.1633;91.92033;150.2171;124.8643;97.62053;96.43199;90.69236;123.582;94.91608;99.11825;95.60316;103.9723;89.9271;122.9163;93.95851;123.0427;112.0366;72.74006;81.59786;91.74153;106.7869;102.072;87.9406;139.6128;99.12601;98.36096;90.77494;113.3494;98.38434;87.63399;99.84571;91.1487;102.8015;106.2228;120.039;75.02996;90.80402;115.5061;87.53749;83.48002;109.234;90.51212;108.3199;128.9802;95.62762;120.9619;92.90076;90.38448;85.86684;91.20933;96.28275;95.28393;111.0729;92.9281;123.6021;81.98927;113.7384;94.18583;87.53585;129.9272;115.1021;126.8675;109.8547;91.0091;101.7205;108.4411;113.1636;120.7784;100.9305;89.86894;113.5955;99.45667;105.6959;128.6567;107.4931;136.3413;141.3699;136.336;101.3112;145.1713;121.7209;89.99939;120.0275;106.2872;115.5312;107.5193;76.73305;136.6588;97.39101;93.56268;89.70061;135.7716;91.37879;101.2035;122.3714;112.8167;103.0448;88.15981;116.8134;90.49778;109.2619;88.35133;96.86059;117.6212;121.2634;88.12217;132.1001;137.1216;119.6282;136.2393;92.77714;91.50967;94.72953;89.18723;116.8247;95.28985;119.1937;141.5016;122.6377;75.43849;96.08791;114.7459;
95.54585;93.96526;114.9709;95.95824;100.4792;99.15445;90.47928;88.37502;87.20262;82.75919;99.44416;83.30109;118.4863;134.471;91.10085;119.552;107.6117;123.516;90.0461;129.1088;116.99;115.0934;126.7952;86.76418;126.4286;110.9262;136.0068;127.058;125.9326;109.884;98.71755;90.55768;87.52119;84.9786;150.6283;130.4661;104.0313;109.7845;94.88686;124.9576;74.6087;91.98672;106.1716;80.73277;112.6468;108.5277;89.60439;100.5736;92.14487;107.8428;107.5946;100.622;134.6439;139.9202;104.7339;107.025;106.6935;129.6916;131.2796;131.0806;102.536;143.8213;134.6846;126.1204;121.3199;117.0926;138.5249;114.4332;139.583;101.0475;100.8153;92.30264;92.29558;122.0623;91.45862;123.4362;133.8762;117.4615;107.1643;98.17742;92.27303;105.4473;113.4252;136.2233;139.8956;148.5323;117.6877;123.0454;92.96165;95.94634;149.1943;123.5729;92.44058;107.4843;92.84131;117.57;97.79883;126.7609;114.0512;103.3344;134.8743;127.7866;110.1392;89.31705;97.38292;135.2077;88.2495;106.1839;97.63506;105.6333;84.80789;101.9881;117.4212;87.75974;88.11959;90.27876;101.3415;106.1157;94.7978;109.3392;107.4693;93.80409;112.351;137.5968;125.5326;104.4216;118.1962;104.4005;98.94327;96.66129;115.734;91.35446;96.16899;99.95216;94.41226;87.38201;87.86228;83.63283;96.71956;80.64128;115.8696;130.7701;94.84589;119.2177;111.014;126.4882;90.53966;123.6455;112.1349;115.8339;130.1839;85.30425;128.0714;111.7457;131.5506;123.5641;124.5504;106.7076;101.9354;90.10258;91.71951;87.59709;150.441;124.7683;100.6366;110.6871;97.81895;123.2067;75.86977;92.73509;102.2363;77.95445;113.757;104.4436;91.38649;100.7717;93.91774;115.5873;104.7531;91.22073;124.5363;146.919;105.8422;98.41204;102.2615;121.0217;129.564;131.5542;102.3326;139.6308;137.3379;126.379;121.7529;116.7934;131.2505;109.7128;131.9725;105.043;106.7575;95.37936;99.18103;126.1895;93.48994;120.5238;133.6841;114.5757;113.7698;101.5924;94.04677;113.0963;110.5025;125.247;129.5886;155.7284;118.8575;113.7973;89.7949;88.6346;150.7546;127.3199;91.25307;107.9163;93.22446;117.6017;96.26427;124.3107;106.504;103.7574;128.6406;132.2827;114.5699;93.22435;105.5243;139.6826;92.90302;106.5035;96.47174;106.9242;88.92593;105.2872;117.3242;92.8946;84.71246;85.83993;93.67506;112.2251;94.25487;101.5471;104.1006;86.55907;113.7281;141.5743;124.1899;104.8288;118.6515;104.452;
114.9849;112.1644;106.4142;148.1073;118.7149;101.6753;105.3573;146.1751;140.2558;114.532;99.74524;146.0201;126.7654;121.3562;115.1194;121.5072;132.5254;127.8269;126.5576;102.1222;107.1531;100.6101;114.7938;156.2755;85.54182;142.1805;115.4656;121.4432;115.2374;90.70968;91.44112;94.95342;122.0458;118.4739;117.2612;131.9176;133.3403;108.7946;82.12438;99.19979;130.6824;122.7999;94.74256;100.4673;77.43771;127.0451;100.3239;139.5006;104.0983;108.5586;116.2224;143.8693;124.4638;85.79613;114.7912;130.8002;108.6434;117.4093;100.2356;98.36784;77.84029;93.31223;116.2803;106.1543;96.14336;105.4625;79.68538;115.7452;106.7096;101.0541;108.5704;106.9657;122.8989;123.5329;123.7895;112.1865;112.3454;96.60984;91.19785;98.06958;110.0057;108.106;89.80929;99.27448;103.3664;94.13978;110.9718;110.1767;96.01285;106.1269;99.98767;132.7546;98.96197;107.3249;103.8801;109.9857;98.78645;117.7392;97.15001;100.1758;146.9;75.38274;112.8216;116.6153;115.917;127.1322;130.8728;98.45193;83.15604;93.9881;92.39117;96.46301;138.1857;127.9425;86.74673;129.212;115.2185;117.9655;89.21388;94.55116;126.0813;88.28908;115.5357;94.72071;80.57518;91.0909;88.06403;128.3141;116.4704;113.6841;110.6532;149.3378;123.1649;101.2748;105.3371;149.3919;143.8665;118.3468;101.9184;142.1136;125.9323;117.7407;113.6852;118.739;134.9577;129.9442;132.0054;103.5976;112.1569;100.6394;114.5498;160.7856;88.00661;148.1667;117.5868;118.6873;113.5359;88.73259;89.50734;93.22095;123.4151;121.8742;121.7525;134.4373;137.9045;110.112;81.92015;102.8022;133.7276;128.3704;96.66727;97.96463;75.90298;125.8959;98.32623;137.3142;103.4903;120.7002;116.4128;140.9938;128.4682;85.18871;114.896;125.8401;114.5197;119.7588;106.2183;95.30476;83.45639;101.2829;121.1208;109.1988;95.27136;107.9872;86.5467;109.2136;118.9617;105.9103;111.6601;104.8783;125.3783;126.6404;117.8336;100.198;111.7419;91.81455;85.10298;99.0751;109.3706;120.2176;89.97601;96.88387;107.0085;93.4987;111.0741;105.6237;99.77372;104.2255;105.8163;132.0835;107.0814;116.9378;110.5296;115.0638;97.55924;118.0638;102.3849;92.01505;156.4501;77.50526;116.1771;110.7076;116.4008;125.7453;124.6016;89.62225;84.22793;90.21358;88.12543;99.30934;137.0616;138.5654;84.80397;124.0561;114.975;114.7208;89.48272;87.02797;130.3638;86.55535;121.8135;94.15524;87.89931;99.96307;94.2109;133.7959;
124.2562;143.8393;122.5165;106.8283;129.9985;129.0845;114.0178;125.361;115.9668;118.5714;97.33955;75.09645;154.2675;107.4252;92.05603;103.8935;126.443;109.7672;87.22743;132.06;116.7456;105.5288;98.3;107.2473;121.6943;121.6104;95.07419;92.20792;119.4009;126.2313;94.18574;110.3376;109.8079;125.8958;123.4391;97.10992;99.57378;104.9756;102.0025;113.5908;94.19688;121.6103;127.887;113.8968;97.41306;100.3574;122.5754;124.4309;116.5645;143.1489;136.3878;103.6042;120.5024;93.37205;98.81318;145.556;124.3577;98.5098;90.52611;97.20892;137.133;97.89523;90.36017;98.35387;103.2552;94.51827;114.9122;94.40228;112.8254;112.0503;97.89299;91.00919;108.9997;104.8043;91.15047;80.18166;156.9439;107.4786;92.66044;96.02869;105.0411;109.765;79.01251;109.0912;105.8599;108.0343;121.9415;109.1512;104.6882;102.679;121.4601;89.14272;90.23213;112.6556;99.38158;94.0439;105.7926;104.4827;111.711;98.09835;103.0623;93.62627;106.2634;92.68832;93.90769;113.7253;85.35653;113.1453;102.5852;121.3484;99.28507;98.54526;128.0643;142.4692;120.837;103.5199;116.5124;83.87021;113.5905;109.5784;117.0322;100.533;92.54239;111.9606;104.3492;117.6045;112.6086;103.4278;128.5933;148.9429;125.7822;107.8226;136.1252;127.8991;116.7679;124.957;116.6298;120.2725;101.5545;73.72301;155.8248;112.9078;91.29423;109.6478;130.5993;114.1208;89.80513;133.0474;122.3559;104.3621;100.3417;106.5449;121.4045;121.9359;98.74062;90.6989;120.281;131.1246;93.33608;116.2905;113.2062;129.5064;126.4203;97.96989;104.2924;102.8787;104.0796;112.8701;93.93958;121.9381;132.131;112.2212;95.27866;103.11;120.3777;129.8049;127.397;148.2428;146.3895;100.1109;118.5206;87.56147;96.15331;151.9541;118.5395;100.5906;89.26685;104.9377;142.9262;100.3486;94.07006;107.4215;104.9601;87.56075;124.1221;90.06275;109.9518;106.6613;95.48239;92.53448;105.6791;102.3553;91.47297;79.84207;142.1631;104.6047;88.1166;101.0381;115.3361;114.2263;86.65887;105.5059;104.0026;101.7725;118.9748;114.701;101.0141;105.8207;116.0352;96.73072;97.0876;112.3702;105.3106;98.13213;105.6399;95.28863;117.961;91.5131;98.65833;92.16827;102.7907;95.70983;92.43558;112.2231;82.31162;112.9526;92.82468;115.3509;96.52964;98.84399;137.2943;145.2496;127.3161;97.79152;112.8066;81.62139;109.7601;116.773;113.1858;103.6449;87.81734;120.469;111.7519;117.316;118.9171;107.7349;
97.58006;129.231;99.24879;100.4351;112.2999;129.8978;99.56423;113.0096;131.1823;124.8213;100.675;112.9001;109.0402;82.3254;115.0213;94.38762;110.8334;121.7233;137.6134;90.40903;124.1594;118.5038;129.5752;129.4215;78.82169;96.03972;101.4311;96.68532;123.7787;93.3706;121.3421;132.795;116.2226;77.27525;94.73454;126.2121;138.274;124.3536;133.1792;134.9127;97.43094;115.4495;97.74989;105.6629;143.7381;104.4362;91.62528;114.6552;91.92852;125.4274;91.99825;99.79121;105.1458;97.23785;76.41827;130.5647;82.75462;124.8772;99.01485;87.91726;79.9079;92.44672;108.1432;103.3428;102.0626;128.1886;96.76891;96.26456;105.2222;106.4927;97.06213;103.7958;108.5564;112.9481;101.5951;134.3061;109.2567;68.17293;96.659;113.5771;108.4254;93.31126;121.6658;92.12313;98.29861;109.1514;100.9198;112.6216;79.83984;91.80616;91.55774;97.25177;100.1203;90.8292;106.418;84.82256;117.5303;86.77677;112.4286;98.87001;99.0254;133.6123;132.1592;120.0321;98.13673;101.9671;89.69385;120.4566;107.6749;100.0444;88.25407;118.3926;112.2883;95.86346;106.1546;121.4222;99.44377;120.3077;122.5403;142.1531;93.6364;140.3526;113.5974;102.3203;108.2809;98.26576;116.0063;108.916;97.3903;131.5612;97.07792;93.32899;104.6059;131.9111;98.07883;113.9381;130.431;120.3007;97.77962;110.4629;104.2168;81.34025;106.7662;94.51177;111.3923;124.4699;135.8959;84.07323;116.8326;120.8973;128.8745;131.6085;79.52122;91.84955;99.40706;95.24728;119.683;91.90447;113.2779;133.92;117.8339;79.07841;93.70011;119.6189;131.6439;126.327;132.4717;137.1483;98.21092;110.8535;95.76551;104.1619;140.2533;103.8561;86.18515;116.5304;100.4943;133.4861;89.76797;97.32498;94.60434;99.97356;88.14128;119.7802;86.61548;112.2726;90.6742;96.29563;73.95605;90.56174;106.7193;95.86503;96.07101;132.1626;98.28671;88.90295;104.2811;108.1564;96.71945;101.9836;109.9902;101.5576;106.2562;125.5994;111.0254;73.64558;93.96073;111.2282;117.7116;100.2698;119.099;89.74946;88.11541;112.0388;114.3294;102.6171;81.1336;84.2429;86.18489;105.1303;96.26862;89.47615;110.9863;76.52206;107.4854;87.37083;116.1156;94.86277;103.0411;132.2859;130.5512;115.1765;96.7965;94.52995;96.89187;111.2685;112.5113;107.2118;91.1104;114.1267;117.9827;100.0435;105.7302;122.6278;93.89734;120.301;136.0351;127.8239;95.05614;130.9418;107.624;110.3973;104.2938;96.84027;120.7956;99.48149;
109.4046;109.5494;111.6762;97.31483;127.6638;91.861;91.05329;87.71313;101.4545;86.77271;123.4059;84.85619;112.6824;106.0931;89.70297;86.75893;83.7886;104.8364;95.59541;92.84979;140.4685;95.06335;107.3005;93.91529;98.61878;88.97418;106.3677;92.59016;99.67606;108.7992;125.25;96.76988;74.39737;100.9018;109.0635;91.58732;93.34576;110.0496;87.74404;88.60615;103.5632;100.2078;118.4902;85.681;95.11501;94.76682;99.64297;89.43465;84.73034;117.4826;80.24969;124.9137;103.5342;122.5824;98.87355;101.4973;128.2238;111.0164;111.9235;96.34515;102.2283;93.6439;117.4571;108.1626;105.3294;113.3243;110.2946;118.1375;100.2215;109.1812;117.8337;87.27691;119.7271;136.1911;134.9745;95.20537;133.3691;124.3895;108.4933;118.0275;86.52029;120.5452;103.7333;89.28863;142.8039;96.34512;112.5129;99.02064;119.6206;89.75817;113.3119;114.2124;110.0918;109.4941;101.336;98.72077;91.12658;119.3889;89.44601;91.94801;123.1259;122.6163;81.5614;111.973;108.1314;124.4012;133.1494;86.22846;91.29599;101.902;95.40002;109.9504;88.50231;124.8309;130.7602;122.5741;91.73091;104.2302;119.0182;135.3934;116.8946;110.4933;129.7423;96.35708;104.4703;100.1023;104.6817;144.2728;110.062;109.9643;114.4255;98.43552;128.3751;90.91808;91.32468;88.66647;98.98047;86.64518;124.1283;86.6984;111.2974;105.1082;91.31522;88.43908;84.18862;105.1365;97.95113;93.85519;140.9988;93.99646;106.4567;94.39217;96.9104;88.69205;105.9109;94.34599;99.55733;107.9687;126.3986;98.36336;75.79225;101.3767;110.8795;92.40897;94.92467;109.0795;86.97894;89.07136;101.8099;99.91048;118.0054;87.37233;92.21633;94.88406;99.6195;92.20608;88.28032;111.3809;85.60928;119.605;101.5894;117.8448;100.7126;104.4122;120.1216;112.6829;118.1383;92.0939;95.7504;92.30805;115.4988;112.2853;109.2298;107.2052;109.0838;121.4667;87.72399;113.7223;116.5899;96.65508;129.6391;141.975;143.8091;98.98802;132.3902;120.7634;114.3356;127.1156;90.10683;114.353;109.8104;84.8093;140.5178;92.1409;114.4694;101.9;111.033;91.98128;119.5206;109.7845;106.4463;107.901;99.53737;99.72327;90.84727;113.0898;86.28592;96.03588;110.5704;127.3907;82.20641;120.6019;116.7998;130.7728;141.8786;90.02979;93.39299;98.47606;100.9143;115.5933;88.29675;118.5063;135.0105;118.5883;91.13234;99.8307;123.1081;136.6648;108.4463;112.939;136.4048;92.31384;100.9575;98.56128;102.875;145.5096;
105.8118;91.36337;96.92731;108.6145;104.2141;90.80238;100.5047;106.2098;111.5694;101.8177;96.51292;103.5584;86.52843;106.9926;116.1094;93.93063;98.0641;100.4603;108.2348;93.79938;115.8954;91.76994;97.7515;126.6572;78.71243;113.9993;121.7834;122.4344;126.1779;131.2818;108.7585;87.23748;84.75709;83.77175;84.22523;128.966;133.8864;102.5303;126.4451;98.97367;137.1702;94.95068;92.02177;111.2119;79.7617;113.8817;107.8113;88.53934;102.2003;90.25012;124.886;126.2444;105.2411;98.79803;130.5937;107.5215;90.53504;104.2788;141.1175;140.5584;124.757;96.37813;144.7397;120.0414;124.0025;113.1945;116.6726;131.7767;123.647;127.1128;101.9874;110.5901;115.3226;102.6575;134.7995;95.66639;127.2822;122.24;99.42525;104.1441;79.85269;86.13902;89.85457;118.4598;123.6184;111.668;130.7828;113.7413;109.3523;76.60288;107.978;142.2208;128.2303;98.51509;108.2851;76.31496;119.0878;94.37864;124.2315;94.31117;113.0978;133.7304;144.7735;106.352;96.62795;114.6495;134.7773;99.03394;113.3971;100.645;105.1349;81.27515;112.1325;116.3859;104.214;101.8591;99.6337;70.37135;97.92267;91.08072;90.21706;101.1991;105.3485;125.4259;140.2905;122.2783;109.0201;102.7729;108.6472;92.6247;98.39741;106.4331;103.523;86.68762;100.7239;99.4707;104.767;95.60247;98.1655;105.2775;91.11393;107.4327;115.7863;89.40501;101.5211;102.222;110.5463;92.19047;115.9435;88.04172;97.76164;120.2925;72.68884;108.8895;123.4293;125.1172;130.7189;133.1834;107.7263;83.53636;87.16165;86.5117;85.6423;127.901;132.9455;99.81244;126.4594;93.35928;129.1828;90.29473;93.45565;113.7722;82.17541;117.1751;106.4063;85.70317;105.2023;99.44797;126.646;121.5832;97.53732;101.8258;123.5565;101.8491;88.23059;98.52489;133.97;133.3925;132.0917;91.95577;143.558;112.9892;134.1121;114.9479;122.8543;136.2717;123.3619;132.0429;92.04852;111.676;108.2563;95.80405;136.8146;102.0863;134.1668;130.2424;96.2892;110.2161;82.49991;95.12526;91.34767;113.9412;115.2464;114.8802;123.7397;107.9002;111.5542;76.69128;99.89918;133.5322;132.5405;91.08122;108.6483;73.27221;123.4042;94.03608;128.466;100.1862;115.0711;140.2972;133.2839;112.3854;94.51071;113.5113;134.674;104.257;116.9592;104.753;103.2823;89.48929;109.9755;124.5699;103.9074;99.73378;94.16806;74.02252;92.17054;90.30948;92.19962;101.3005;97.38725;117.2761;144.7741;113.9794;109.4022;99.2382;
96.54479;115.0504;126.1529;99.62843;134.5402;136.4373;127.9152;100.663;140.8538;125.1845;97.25157;114.3009;105.1725;120.2038;101.4665;84.59235;150.6615;109.914;100.991;89.74028;136.9979;96.26241;94.94692;106.6033;106.9564;104.3098;90.03179;106.5343;84.05592;110.3207;83.20737;93.84306;113.361;133.7371;88.29906;123.7587;137.9173;119.9411;128.5039;94.24815;92.56788;101.5962;99.51945;111.6312;98.2091;126.5125;133.7307;130.6161;86.04836;109.4333;122.7688;118.9762;121.2943;125.8585;135.4406;98.42495;93.08206;111.7799;101.8027;135.7281;120.7732;100.0327;83.08179;95.54942;127.9261;101.5622;103.6529;98.24419;114.5012;88.66129;117.0779;91.47109;123.7274;110.6275;86.03638;84.44122;99.97942;108.1701;94.08054;90.21037;152.5292;109.5679;99.17133;83.59358;115.3719;99.42173;87.44433;90.54623;96.34789;107.4106;118.72;110.0381;74.6878;94.46097;102.2149;90.74304;83.42536;118.7954;98.80431;101.5868;130.133;94.91476;112.4796;94.05835;92.06965;95.41092;104.1639;93.97958;96.7924;121.5343;83.85967;123.856;92.95305;127.2494;106.9231;88.97713;129.2342;123.0454;117.0748;98.72757;86.63546;107.3724;116.4234;107.6325;117.5047;103.2034;82.95912;105.3889;97.28743;116.5298;133.2192;101.6139;135.7794;137.7104;127.2995;102.7838;144.195;130.101;101.3771;116.9704;107.4187;123.7463;99.82418;79.31602;151.3537;111.2512;107.1257;91.52666;138.0154;97.2221;93.91297;108.4346;108.9443;107.4899;93.50929;109.126;85.6348;112.7273;81.64011;88.286;113.4755;134.1443;93.96354;125.8696;138.3994;120.0042;127.2979;95.97254;94.41559;104.7371;103.1715;114.286;99.04855;129.0188;132.7572;125.1607;81.54031;107.6765;124.5449;120.864;122.1108;128.5584;139.7098;102.4578;99.43552;117.3909;103.2324;138.2932;127.485;107.6521;86.8614;86.49344;135.0438;98.3148;99.16223;106.66;113.7273;92.11083;121.7731;92.72604;127.0479;107.5635;83.96021;82.7964;99.20116;118.9107;104.4849;85.68985;146.5068;107.8053;100.7592;85.17719;116.1679;101.8185;90.87253;94.41601;101.0441;110.8274;118.3494;109.6025;79.22792;99.62036;107.2706;86.32742;89.24997;116.1066;90.52034;108.0723;129.8468;98.46732;117.2564;92.6469;93.26288;90.68161;100.1042;89.7709;95.21975;130.346;94.50966;123.8624;88.34503;126.2222;104.3927;88.7314;130.6342;125.6938;121.239;99.97572;91.12769;110.7918;116.0591;107.2235;123.2243;108.5961;87.52214;100.6472;
104.139;80.56994;104.4019;94.93177;95.73497;106.1872;104.4812;109.4675;126.0215;127.8138;84.48341;104.7517;101.1888;120.275;108.9339;92.16927;101.9161;91.76275;91.00127;88.60307;96.47063;100.7633;110.0888;108.5192;86.14185;114.4257;116.852;108.9387;108.2831;127.5551;119.5307;98.69493;113.4911;99.96764;95.63979;136.7075;75.45242;124.0848;125.2537;107.5321;125.2904;138.8871;111.9586;87.51526;100.9282;107.7241;104.6711;123.4726;128.0939;107.8174;105.9614;108.5983;106.6054;86.11606;103.7029;117.82;73.5913;109.6324;92.9102;109.0322;91.33394;97.81891;119.5191;105.5833;108.8829;106.3208;132.3262;105.9016;92.25095;99.46815;134.2999;120.6232;116.8023;103.6563;110.0141;118.3669;121.8649;147.2878;126.8911;110.9619;119.0018;131.0691;90.19286;91.88773;102.2127;103.2173;151.6614;99.37403;129.0271;133.2068;96.68101;124.561;91.70017;112.509;100.5536;123.8079;125.1372;128.0276;126.1779;127.4788;115.4933;88.27546;109.4246;120.6075;127.5903;103.4438;106.5096;82.63022;132.4072;114.4919;147.2184;93.56272;110.5351;143.5238;123.7115;124.0373;80.44617;107.8185;146.9333;101.8354;104.6655;96.8092;90.86767;102.7809;93.51241;125.5088;97.52875;87.31808;106.0406;82.02415;102.731;94.28838;99.04457;104.9352;102.1502;103.2995;126.6868;128.002;79.53831;104.3699;101.5343;120.5074;107.1627;90.54632;104.5347;93.73483;90.12632;88.39883;100.5087;99.98023;108.6078;103.4186;88.05917;114.3684;111.95;109.433;109.6441;127.314;118.1019;97.83361;117.311;101.6054;95.12659;137.4331;79.89105;122.7444;123.6764;102.4575;127.6033;138.8268;107.164;87.96067;100.8671;109.004;104.8236;125.726;134.1691;102.9079;116.4144;107.9786;110.6982;86.04134;98.61954;108.1204;70.86887;109.959;88.93803;121.1747;87.4987;98.42258;115.6141;112.8823;111.4867;101.8863;139.5278;104.453;100.3039;104.6429;139.3736;128.4627;125.3979;100.1902;112.6807;114.0386;121.3786;134.1196;135.0613;111.5422;124.8599;125.6396;99.85577;91.313;106.2212;103.126;145.5007;90.47832;125.0243;132.5086;94.67125;137.5735;87.89246;111.8375;96.81264;129.368;125.8492;120.2858;130.9751;125.7777;120.4163;92.89744;113.967;130.773;136.1891;99.04797;111.3659;79.06285;131.9716;101.6569;155.8342;92.1339;114.2295;134.7966;132.7511;123.2593;80.66695;107.4537;140.8179;94.80706;101.0831;96.19624;88.93817;114.6304;89.68539;124.7791;93.86414;91.99701;
96.51118;99.48927;122.9965;90.30321;115.72;92.00532;91.10124;107.5066;106.9748;129.276;111.1526;89.60994;134.9354;146.3186;121.9216;92.35387;110.5333;128.8809;144.7019;139.1704;108.6893;134.9168;101.216;139.5689;130.9247;123.6588;125.7256;106.0514;116.0382;102.1183;91.33167;92.06936;109.4941;121.5672;84.59245;127.2978;125.4353;92.72218;106.2678;89.47949;86.12566;109.7991;130.2348;120.9406;134.3882;129.8759;110.6658;121.9618;95.98463;95.69147;128.0564;129.3313;109.407;99.87508;85.79241;114.7904;90.67418;134.4078;98.69723;112.0148;127.722;151.5311;105.7919;91.70576;119.7537;141.5837;105.1743;123.2085;98.36537;91.7646;87.59547;110.9864;134.8406;106.451;89.37799;83.34143;96.98544;113.7676;109.173;95.83277;116.2022;94.93526;127.4514;150.7201;127.3643;103.7425;86.49834;114.5743;107.7613;102.6344;104.3899;90.55478;74.95108;98.71066;91.13296;87.82423;106.1783;84.34017;94.91315;87.31838;105.859;108.4145;94.6052;103.3316;106.7615;131.5833;107.3746;118.979;109.6894;100.8756;125.1155;87.82207;130.1542;110.3992;116.6668;124.3042;149.575;100.1657;95.55634;84.70203;88.50587;95.17942;135.5845;136.6377;92.30858;135.5671;98.25683;126.4578;96.83189;99.4026;127.8688;88.31903;113.3606;91.56738;93.35514;105.3284;110.5345;129.3019;113.7667;91.74413;129.7702;147.4006;127.9969;94.51179;110.6754;128.6651;149.7486;136.5845;106.208;134.2585;102.4732;136.4836;135.7334;123.4828;127.259;108.1812;112.5025;103.1863;95.94099;94.0562;110.8754;121.5346;87.83036;124.6198;124.08;92.34034;107.5534;87.01445;90.03173;109.6354;131.7925;123.2166;133.1979;130.0452;114.2975;125.0019;95.02705;95.89675;129.6689;122.6405;110.3743;102.6754;92.86694;104.4334;91.89957;132.8333;89.45675;122.9522;136.037;153.1331;117.6302;94.06999;124.5903;137.2173;108.62;119.5654;103.1077;99.60214;96.60162;113.1866;137.3693;101.9449;92.57933;83.51154;88.97025;119.4272;113.2924;99.06802;115.1479;95.13014;129.0551;143.4901;128.4074;106.5859;93.59705;104.2274;107.3438;102.3358;92.51843;98.17566;82.28722;99.8343;98.70691;87.55624;111.9684;81.82447;93.71749;86.30299;109.683;118.2895;104.0486;107.4837;107.2843;127.7492;108.3278;116.7579;102.2212;106.0286;125.6621;88.35013;130.3957;111.5933;113.3136;120.1605;149.4475;104.2524;103.1217;77.55878;88.16277;94.87413;122.0284;145.9894;100.4688;136.8621;106.1373;126.1599;
86.38177;99.56441;110.8967;100.7694;93.94984;106.4986;98.06435;88.9465;95.40646;98.15182;103.3552;110.0566;105.0689;87.87137;89.41579;116.7738;133.4364;102.2911;125.9303;111.7295;114.8065;98.6015;117.0464;98.28375;112.2874;118.8456;89.45908;132.2959;104.2917;107.0968;122.6673;149.1489;88.68591;97.60369;98.29532;102.4481;86.70872;126.6518;136.5668;101.673;128.6608;93.49745;116.0253;98.91864;100.272;98.25219;79.14589;111.4756;116.3027;95.99762;99.25245;88.62916;119.0429;122.2983;89.31453;123.7744;128.718;103.9449;98.95047;104.8648;122.4439;123.2028;113.775;91.53462;118.2006;112.3636;135.4737;124.0898;112.9528;126.2166;116.6454;127.3391;101.0343;105.7585;111.0907;111.7769;148.606;78.06747;130.337;136.2383;119.9927;117.9959;110.618;96.19174;97.59211;119.4962;122.2564;124.3878;156.9815;111.0917;133.986;95.12657;94.67966;122.648;123.3405;108.391;92.76308;88.26456;131.9641;109.3246;128.3932;92.53741;112.3712;134.1174;155.6676;108.03;89.91434;120.4682;144.2224;85.05979;112.8896;92.59856;119.3034;88.99931;106.3922;112.9041;97.28729;99.85146;83.51515;92.3601;103.6962;92.72591;106.4374;105.3793;92.97198;109.6318;123.797;110.5173;89.97314;96.46837;115.583;100.057;94.36176;102.8606;95.51882;85.56844;102.6181;98.13298;108.7207;106.7937;108.4347;86.33665;91.61401;111.8585;138.7407;99.58613;131.7489;111.4493;116.0491;95.51891;114.0414;95.64433;119.6802;120.3923;94.26212;129.5566;106.7653;106.6575;124.4663;144.4747;92.18526;96.17101;102.7501;102.9177;86.98574;124.5236;133.3221;98.99062;136.5688;94.87231;121.4892;96.55432;102.5339;98.88807;80.61794;107.3647;115.755;89.78175;99.8409;93.50833;127.3287;117.6853;86.35508;119.0812;130.5653;104.6195;107.6932;104.2802;120.5436;130.0555;125.9906;91.45349;125.316;107.8029;143.0075;124.634;118.7069;124.3914;118.5264;124.3765;110.6589;112.2801;106.7714;113.384;153.6751;75.47695;128.7665;134.4468;119.4257;111.088;111.2384;101.2675;105.0976;114.9316;118.7889;119.6779;151.5675;111.3062;140.3257;96.92664;90.84977;128.7303;134.1035;112.4261;96.31956;86.45641;136.3236;109.3668;134.3367;91.75156;117.1855;134.2429;159.8901;114.1309;83.1114;124.8138;146.4724;81.76159;109.6942;94.91852;115.7111;85.23518;104.3196;117.9107;104.6215;96.47852;83.14684;90.90981;99.28574;92.92167;112.1136;107.2747;89.15905;115.3862;134.5991;114.5928;
127.9823;108.2014;93.91673;105.261;87.49781;124.0444;89.98866;87.1601;93.02503;100.8871;110.358;103.3139;113.2492;87.02285;125.265;82.19764;110.688;92.56905;101.9074;133.8111;115.2107;119.009;102.8708;89.67161;103.7101;120.0374;104.0116;132.2019;94.12249;88.27693;133.9159;90.86948;119.5794;120.7253;100.3361;120.9875;123.8182;129.3259;101.3167;143.882;124.6661;96.90958;140.0148;93.61341;126.1687;115.0678;98.68808;145.0083;102.4445;97.11551;94.74806;127.645;100.465;99.93212;136.5002;124.5898;127.6515;89.14787;128.0682;94.7588;107.8466;87.38327;102.004;131.8594;147.5101;104.3464;117.5348;112.6078;114.2063;142.7165;91.2782;89.45493;103.2307;98.07256;130.4538;104.091;124.1178;136.8897;128.0289;76.43839;96.07423;117.5567;133.8094;122.4529;119.1576;140.5247;104.094;96.54554;111.9763;103.2354;131.9269;134.1221;97.61689;90.69323;120.5929;120.1936;98.87904;98.044;98.23283;103.297;81.15578;119.875;91.81541;119.4337;108.2237;79.34708;101.108;88.44387;113.3729;106.0695;108.6017;140.7742;94.1142;93.36046;86.82997;109.7496;100.6219;90.32226;111.6078;106.7235;125.1566;106.4194;123.6342;81.35657;94.4923;106.9506;102.9411;97.03206;125.7824;109.4984;92.41566;108.1484;90.91246;126.2584;87.62769;84.56059;94.34726;98.55231;107.1396;102.1971;119.6725;87.68139;128.4353;81.94619;108.4436;93.6691;100.1522;136.9447;118.9277;121.0755;99.83365;86.7379;104.2081;116.1259;100.3839;130.9544;99.53999;88.08406;137.0973;90.62739;116.7615;120.9672;98.52246;123.9826;127.1539;130.429;98.30041;140.1618;125.2094;93.40033;135.7979;92.56614;129.0237;113.1554;100.3005;143.7105;90.82464;99.63832;88.80988;130.6307;106.0107;95.04768;121.061;124.5254;122.6876;82.53948;130.5034;94.08462;109.7966;92.80388;100.22;137.7566;136.8103;103.6547;115.8044;121.657;110.7052;149.3741;87.4472;83.61658;101.5086;98.70802;121.9944;102.5994;120.4411;126.8303;125.3312;77.47466;84.83224;120.3258;126.7242;125.3777;125.1902;134.7159;90.66146;96.48885;108.2706;100.9645;138.6782;132.9658;96.98191;97.97386;116.9022;127.0368;93.98463;98.42874;98.52143;107.6948;78.23839;126.6755;91.88007;116.9208;107.4208;84.34801;97.24359;86.79712;107.2665;99.01756;104.4605;143.4947;86.68868;96.88752;82.86151;108.2286;106.2213;86.24973;101.8211;110.795;121.2787;104.1164;130.1754;80.47548;93.9042;114.8479;99.53595;103.2117;
95.33215;126.6021;92.54159;113.9609;104.828;115.8404;159.5664;126.8007;119.5356;95.44046;95.75266;99.94877;132.2837;88.79359;122.5948;93.73681;106.3612;131.7459;105.1663;130.9331;112.6803;111.0875;127.5574;127.6968;132.3033;95.81537;120.5316;115.1908;102.0476;107.2468;109.6592;106.715;100.0431;80.97078;122.6056;96.71609;98.30032;92.5645;126.4641;109.8549;113.0414;125.8121;116.3023;110.3283;90.27893;107.8781;106.9603;109.9234;86.0535;94.17612;140.6851;134.5156;98.48957;115.1953;105.9935;116.8133;130.0519;105.9868;84.5996;112.743;101.4113;123.5068;102.973;128.0337;142.6743;127.1195;85.36377;92.77277;124.7701;148.2773;147.2435;124.9258;132.7524;96.25839;104.0714;103.0839;114.4595;118.1687;125.7843;92.28358;103.986;112.8507;138.5982;108.5936;89.00208;111.4519;102.5423;81.81451;117.694;83.16664;101.5511;95.59212;85.52182;81.13885;98.6833;94.30372;86.72974;87.70605;121.6856;93.94958;96.55479;81.19672;96.81236;106.8374;99.83612;100.1937;101.978;107.6538;110.4889;115.22;92.10986;94.33033;99.83901;96.62326;106.5281;120.2516;103.9068;87.38798;96.26215;92.0888;111.1293;101.3419;84.73907;104.3063;99.00269;109.606;102.6147;123.8412;88.14924;128.0152;90.79538;112.0549;104.0414;109.6219;150.5355;123.4277;114.1727;90.12316;93.87314;96.86102;126.478;93.9813;118.6357;94.8466;99.48556;133.6896;104.0398;129.3854;112.6209;105.4386;120.4585;125.4772;128.2873;90.25948;119.3888;112.7627;97.90309;112.4798;106.3224;108.78;94.30746;82.10048;121.8334;96.20564;99.20645;87.01768;119.3988;107.7994;109.3341;119.4362;115.1824;107.9548;87.11696;114.1442;105.3789;112.8354;87.53207;96.08692;130.6333;146.2531;94.49895;112.8929;102.9869;120.0691;121.7392;96.31053;81.8264;107.5335;86.95866;126.0573;104.9325;128.3156;146.2666;125.3482;89.18349;96.39798;122.3698;149.1776;133.1515;122.4517;119.9367;96.31126;107.7056;107.4838;113.1391;135.3755;130.0904;99.02773;105.6108;114.9313;128.6226;119.1591;85.21056;109.1775;99.58549;84.5384;111.4239;78.96191;100.3954;90.71215;75.15662;77.85133;102.1323;91.87555;93.2218;84.33503;127.9799;95.78111;92.79529;86.32033;89.85663;105.777;90.2558;105.2499;107.5421;112.0512;112.728;125.4375;97.31793;98.3946;105.3773;96.51275;99.35419;129.2485;98.10629;89.93018;97.99481;96.14666;105.059;96.67684;83.70165;99.20564;87.84338;105.7608;106.1515;121.056;
95.18004;91.41103;115.8491;105.6234;92.54927;119.3173;112.2587;115.7586;101.6949;112.7592;90.40969;97.9715;144.9565;80.36523;105.6304;111.2557;127.9176;139.4215;139.952;91.20573;81.40086;87.17181;92.57787;93.94006;125.1884;152.1675;96.80357;123.9147;111.7534;122.6875;103.1693;106.7294;125.0491;82.8232;117.8721;107.4342;108.6198;94.71542;88.89577;115.0984;118.5235;108.5272;126.8829;122.5584;128.0614;91.63301;103.3822;152.4588;128.9909;137.3133;90.86814;137.763;120.8163;115.6112;123.3312;111.4263;109.7706;116.9854;122.7824;95.34885;115.7746;89.1581;100.762;132.5041;81.99669;128.637;135.4894;91.06313;109.8984;98.56448;98.27866;97.91107;120.9246;119.8694;112.5773;132.0444;137.9958;115.0388;76.29241;96.59708;140.8578;138.5718;103.4895;91.85855;73.84927;115.4142;97.61039;133.8805;92.78143;132.8109;134.7478;143.1667;126.0488;89.02579;129.3414;145.4371;105.6028;116.5743;103.676;110.5792;102.152;92.19342;112.8913;89.82464;94.71553;106.4554;98.38379;94.39018;113.1584;95.82802;110.1997;113.8428;116.4179;151.3699;114.7099;109.8179;105.6234;95.30275;98.1722;90.43037;91.60515;102.8506;88.36529;90.21305;109.8237;85.08006;103.0436;92.79458;92.60574;92.57865;118.1149;110.033;92.33961;116.3424;112.5346;113.2569;100.5831;115.76;95.07436;99.22637;144.7929;79.43787;109.9235;109.3879;124.7169;140.7401;142.2133;95.21656;81.04058;84.52972;91.77128;91.18696;124.7837;155.4477;100.5298;125.1319;112.8703;121.7183;106.7186;104.7139;123.1834;84.00459;119.223;111.5892;109.4348;92.12415;88.10313;112.0511;118.1271;111.3023;131.1411;123.7713;126.0075;91.67261;105.8547;151.6384;135.8163;143.1713;92.28983;135.4074;123.6432;110.7601;116.4448;113.8255;115.8512;114.2171;119.7234;92.54848;113.573;90.26845;98.17484;123.4237;79.3064;128.9373;133.245;92.5879;112.1091;104.7466;96.73408;102.5676;126.0094;127.6467;117.4219;135.9312;142.7163;121.0928;84.19617;86.99341;147.9858;144.4445;105.0018;89.93696;76.06267;110.5569;91.49075;136.5091;96.31446;127.3789;126.7299;140.8215;125.8012;90.07497;123.7004;136.6784;101.7641;115.9577;99.9822;110.2138;106.4668;99.89017;113.2331;95.82152;97.1716;111.449;98.66573;98.60793;119.4596;101.2913;117.0377;104.0855;122.075;156.4508;114.4717;105.7093;110.507;92.55;93.87093;94.11028;95.1525;98.05907;81.91493;88.37331;109.6319;86.08885;98.03642;85.84521;
95.80397;101.6284;149.4889;130.7765;113.7232;128.9265;91.06464;117.7243;108.6311;97.39957;108.3139;89.99409;107.1822;88.98318;82.08109;88.30269;85.1162;119.1892;108.8599;95.94008;108.2567;126.5812;104.3524;103.3521;104.433;127.2583;125.869;129.3247;100.29;117.3056;107.1609;117.3776;117.744;127.1095;138.4832;122.1945;122.0977;110.3434;87.39867;94.63117;101.5582;136.0518;87.61588;145.2028;128.3116;111.1595;102.7573;94.02071;99.59345;101.5403;111.6625;121.7891;123.3388;124.4786;121.6636;124.2407;86.93143;102.5968;125.6656;151.1155;109.515;104.0839;77.55549;118.6715;100.7172;141.3557;112.6471;110.0145;150.2233;143.6165;101.235;81.88047;130.3126;135.1151;91.64285;120.4738;93.51157;85.37663;76.82171;87.9289;106.862;99.24214;86.66978;89.77986;79.48917;92.24021;90.88613;103.2692;111.1448;92.96943;109.2526;133.9675;124.5625;84.1967;88.67999;93.30374;84.96206;101.3426;116.5019;104.5181;83.99093;107.9292;85.82404;84.92342;101.378;95.59622;91.38949;100.0308;109.7249;124.3819;87.50864;108.6864;109.5269;116.1249;89.03281;115.2417;95.46754;92.7423;133.5899;84.38894;126.0242;116.843;106.4368;142.7365;149.4544;99.87507;80.56354;87.97811;88.96793;96.29697;150.1578;130.8534;114.2462;125.6245;95.50677;112.7326;112.5941;97.17418;106.2709;86.08823;111.6615;83.16111;80.69415;84.78091;79.32215;113.8731;110.1878;96.43295;109.522;123.7942;108.8864;99.59235;107.9209;128.6013;123.4564;125.4491;103.7476;111.9022;104.8654;114.0812;110;122.9663;139.186;123.5593;122.4883;109.0228;91.55451;91.0374;105.0006;137.4431;85.60713;141.0974;130.7001;107.3577;100.1436;91.99796;96.22443;94.55559;111.0082;123.9691;122.3953;124.5044;125.6789;125.6168;86.72607;106.8153;123.8958;150.0112;111.7173;97.07434;80.41527;112.4115;104.0207;141.0606;113.6236;112.6679;154.5363;144.1737;102.9393;80.76736;134.0691;125.7817;89.88751;111.6097;91.97926;81.88091;77.68183;92.70426;103.3613;92.33364;86.09274;91.64859;78.72346;92.25765;94.36031;104.5195;104.912;96.77808;109.4955;138.247;124.5395;81.13462;94.21456;89.71659;92.62713;105.8532;116.4774;107.0059;88.10024;108.2437;83.66358;86.32022;98.85268;87.573;91.37682;96.40282;105.8728;124.1693;90.88138;116.2256;111.0516;113.585;87.57728;117.2537;95.54598;92.60383;133.096;88.07552;119.3605;121.1079;106.6939;147.1543;149.4058;96.53735;85.85828;84.49702;
117.8021;135.2957;133.4146;95.44175;94.27921;90.90855;86.09847;119.3139;113.4346;80.50449;101.9469;91.79512;135.9294;93.23576;85.46539;90.51778;107.2376;84.89244;122.2768;84.59462;123.7944;95.04519;84.11671;76.15409;89.63584;99.0462;102.0491;105.4217;138.7607;88.86841;104.5676;85.73645;92.47005;93.75362;93.26983;102.8107;105.082;109.7624;130.1118;106.8647;91.73943;96.11098;123.7093;85.3756;96.11195;112.1694;84.41909;98.50867;122.8235;101.5157;125.8373;91.9493;109.993;100.0199;115.1878;86.24744;98.70029;127.0805;99.23975;137.6301;90.11848;123.3407;107.1572;93.09337;127.131;134.9547;118.7339;93.16926;90.597;87.02164;98.48872;88.7989;112.7096;84.5769;103.7734;106.1701;104.5909;109.4507;108.2422;89.70309;129.2433;134.2866;131.2536;93.74986;143.7663;111.1191;98.78534;104.7402;96.69649;113.9552;110.9975;98.5201;141.0807;96.16203;113.1374;95.13335;115.264;99.57861;109.6118;124.1015;119.7636;108.1606;105.4704;103.8373;103.6286;115.9638;104.9369;87.07997;130.3077;134.049;84.65216;125.8741;131.2759;127.6181;148.8169;94.32732;109.1549;107.6712;112.5487;103.3856;98.06332;130.847;151.6593;138.2263;83.01321;108.0528;135.9041;128.431;118.0054;140.924;140.4666;96.97637;95.9818;89.30811;86.29662;116.1485;114.0432;81.72035;104.256;91.82924;139.7108;97.007;88.44343;92.6333;107.2336;89.26511;128.815;85.94434;125.5222;93.30061;83.83676;73.34086;89.33812;99.13429;103.8392;105.472;142.0268;91.65984;107.7663;87.80047;92.02866;97.43601;98.91116;104.3115;106.2023;106.9355;129.7608;103.5294;91.43591;96.19981;125.6768;85.42281;97.97147;115.2368;88.12254;101.726;126.5382;107.766;128.9158;92.29547;109.8394;101.9952;103.773;87.71291;88.85032;125.6084;97.01844;135.0668;91.79008;137.3918;111.6243;93.58171;128.0389;135.1028;119.2502;101.6294;87.23339;85.68701;101.0387;81.3557;112.1674;83.58744;94.20851;112.782;94.4614;104.5097;121.6459;96.06679;133.0529;141.456;134.3867;94.09945;143.5903;113.1958;88.22792;106.3546;87.39689;113.6577;108.7657;96.19598;140.9164;105.6123;113.4357;92.48686;116.8071;97.08009;106.0764;132.0313;115.6696;109.5395;107.4878;97.99147;103.6194;115.9133;95.4155;92.93699;116.9429;125.32;92.66621;129.7068;135.8744;131.5682;147.4143;93.15661;108.8018;112.6245;100.6826;107.3057;88.73217;130.5315;149.0517;135.4954;82.92155;118.0601;136.234;125.3766;
85.46568;110.5116;102.5472;131.6818;118.8252;118.9414;86.09507;93.02931;105.4516;104.8103;89.35375;120.9832;104.7682;89.25866;120.139;92.61425;137.9271;85.43546;104.7415;103.7457;114.692;91.49355;98.51443;116.1047;77.35252;132.9548;86.34254;113.9663;107.7756;104.3483;121.0805;111.7772;103.1194;109.7066;90.01839;95.11206;107.4941;100.4783;128.7406;86.51387;99.38146;107.1669;98.18422;116.1825;122.237;89.47308;124.2317;122.3257;131.3864;90.87188;131.1835;132.7899;102.0972;103.1067;105.3506;111.7354;93.03506;81.10417;138.2993;111.3285;111.6653;108.863;117.6949;90.64371;95.37454;128.342;110.6751;130.9302;96.50018;117.6052;96.83338;106.098;86.76094;103.4445;113.171;137.2385;101.2948;112.1909;123.4356;113.2163;157.9794;85.63853;103.1433;111.9084;111.7768;108.1369;98.26542;118.7344;128.0844;133.2038;75.84371;102.7456;133.292;131.6382;110.5588;113.6624;115.9063;110.7517;96.71852;101.1821;94.91357;136.0252;131.5271;85.32839;103.0708;90.58887;122.888;104.9976;101.0111;86.65507;99.36871;78.20888;114.4161;82.34042;114.6727;113.2861;86.88071;76.42929;99.97554;97.62159;88.99667;87.36047;133.4294;115.0322;109.4628;100.5666;95.65942;91.665;81.17873;111.3169;100.9623;130.0321;117.7368;121.441;86.06477;90.71558;108.4683;103.8528;83.63381;127.2555;105.9294;85.65636;116.0288;91.15715;133.299;86.54781;103.8747;102.7318;114.3865;94.1108;99.35434;114.6133;81.25228;131.6236;81.51201;120.9855;109.9583;100.0246;117.3797;111.0479;100.0998;110.5284;89.58739;94.95522;108.2027;102.789;129.7033;85.22945;103.7979;105.9745;93.03083;123.2713;123.0425;86.81209;122.0904;124.7673;116.0057;87.64606;120.344;126.796;105.0982;104.7574;110.3555;113.0564;100.9223;81.48726;142.2046;118.3029;109.5887;110.7878;109.1712;97.6499;100.516;134.2409;117.0205;131.9797;99.5154;120.1391;94.98467;114.171;85.24273;110.8491;107.4847;149.2126;101.3305;115.3454;111.0475;115.285;141.0677;82.49927;93.55832;106.4065;114.9158;109.8174;103.1012;120.0906;134.1963;133.9104;81.24812;103.3077;130.1647;137.0357;104.2477;119.0571;126.8122;114.3526;100.6223;102.7948;98.57672;134.35;126.7683;91.12359;98.7654;97.69262;120.0247;109.1901;100.3182;92.11344;90.11838;77.96538;104.8845;77.70536;102.5159;108.4586;90.28983;74.56086;102.5059;97.34307;94.12215;87.91576;140.5907;115.6266;106.6507;105.2725;89.81413;96.51571;
90.17516;129.6139;115.5136;120.5677;143.9342;89.00332;127.9591;139.1514;128.4576;90.09641;128.1178;112.185;102.6808;112.5035;90.68819;130.6707;90.3095;79.8703;122.261;96.75182;110.0285;93.54987;120.1993;97.16042;107.7905;118.8898;117.3017;121.5357;98.24401;98.04157;97.94565;129.9753;83.7067;93.69507;117.6914;145.4813;105.1501;130.9264;110.8524;113.828;126.1283;88.35779;99.3871;101.3845;114.9458;113.9353;109.1949;133.7246;139.3503;131.806;87.07838;102.3789;130.4494;131.0095;143.5473;144.0969;134.967;91.51257;91.4122;106.1769;113.2498;138.0274;108.4353;111.5739;90.99129;111.01;146.8789;102.4216;114.126;90.6841;109.5388;88.45105;118.6144;82.89147;109.72;95.06808;82.57693;81.70071;87.3897;114.2418;85.14339;88.1386;124.0994;94.42091;101.3192;87.05146;101.1127;95.51344;99.81912;100.5386;100.1932;117.88;121.6326;94.89774;85.89111;110.9294;108.039;95.77648;86.02258;122.7448;107.8339;106.8839;105.4124;87.03847;111.7577;89.35966;94.3566;90.3449;118.2069;90.83726;112.362;125.2353;93.32033;132.3072;96.04249;115.1404;104.0938;99.43625;157.4299;142.685;119.2634;93.11566;82.87424;96.78574;130.0734;101.5523;108.7256;114.9975;93.47656;132.7769;116.2785;115.4004;138.7661;89.75916;132.6283;137.9047;129.258;91.00784;125.0227;109.0948;100.2459;109.1207;94.42484;130.3212;93.42851;82.26378;122.836;92.03033;105.3217;94.21756;123.4993;95.61515;109.3077;119.7381;113.1659;118.1191;97.02368;95.04249;101.1509;129.43;87.81359;96.44357;117.5258;139.461;101.737;131.9119;114.0197;112.1571;127.7663;89.09128;95.58079;98.26811;116.0673;109.7497;111.1612;133.953;149.9453;129.2029;92.55502;98.81976;125.1261;137.8159;137.3333;141.1389;123.2279;95.98734;94.25378;106.9366;117.187;145.069;116.1294;117.0443;97.89912;113.2503;139.1791;106.1938;106.9112;92.98678;113.1487;90.84129;111.2609;79.07996;105.6667;87.70011;73.25344;75.4253;92.46019;112.3854;93.46722;86.00314;130.6162;91.00416;96.63401;92.60618;95.90418;93.10802;90.73312;105.362;106.0063;121.8963;124.5504;104.7413;90.95355;116.1675;113.4675;95.97781;79.32929;132.4212;101.9324;109.3896;107.2355;90.27592;105.6963;85.50454;93.26369;85.87534;105.9499;87.85989;116.0818;123.0956;100.0882;127.5162;100.8763;116.564;100.4593;105.3805;148.9129;140.8199;109.3508;97.74162;88.18844;100.4493;133.1335;111.7076;114.435;120.3528;
81.67758;101.3357;132.3081;142.4171;120.58;135.1778;122.853;100.0557;114.1911;93.38781;101.3171;120.5932;116.2995;107.2096;90.00438;92.34432;135.1231;104.8516;102.6776;91.34114;115.62;86.25096;124.8549;89.78182;117.6708;105.3122;76.82346;84.08369;80.37366;111.1569;97.73914;92.56811;141.4731;112.0676;101.5697;83.05309;106.0411;92.75166;80.43336;100.746;97.67896;123.1944;128.0489;113.7937;80.35311;95.7527;104.0638;103.2882;87.9044;107.767;97.50423;93.58616;123.4729;109.7678;113.0177;88.33851;87.39531;81.77978;93.13542;96.6329;89.50809;116.0746;83.25219;131.8883;88.48235;119.7201;112.1844;107.2692;130.5957;132.8073;106.8009;98.9181;106.6358;85.89614;116.2108;90.76942;114.3666;106.0209;89.09777;106.0545;106.5112;121.8374;127.7935;91.99788;138.9068;133.4815;134.3125;99.60343;141.3841;127.8692;94.7174;115.8094;85.9212;126.9263;103.6462;85.41175;144.674;119.2829;109.6757;92.18988;132.9398;91.78057;89.75379;123.9989;114.5787;130.1815;107.1072;113.74;92.1203;114.2998;81.31433;102.0813;119.1423;124.4655;95.91333;119.3671;137.0164;137.7825;127.6087;92.44702;89.35281;92.09649;90.39359;113.2301;88.91395;122.0301;130.812;130.0784;82.93027;102.7804;137.0301;143.6237;125.0645;134.7159;122.8311;102.7202;117.4513;96.83554;103.5072;117.0456;115.5016;103.813;88.73673;89.93311;137.5791;106.7699;107.5903;92.73679;120.8155;86.27815;124.6003;93.20812;120.5586;110.4727;78.55543;81.79325;78.95374;108.9671;95.73952;90.85764;142.947;115.3754;105.7526;85.05484;110.1156;93.9684;80.23125;104.3761;100.314;128.7737;130.2849;111.1292;78.78961;94.75538;102.0291;101.4081;91.56016;114.8291;103.7024;100.2313;131.7095;100.4942;118.3863;89.91904;90.67759;85.53571;97.59839;87.31232;86.31383;112.8367;72.9732;119.1923;88.71094;110.2358;112.9254;102.5048;144.5442;145.4422;110.7367;95.14112;107.5317;94.71785;116.3486;91.81608;112.1454;103.5836;92.47802;107.7774;110.5213;129.3337;134.8747;98.58278;147.6232;123.2287;140.1587;101.2767;143.4325;127.9767;99.07565;108.1987;84.38888;124.6508;94.04806;76.87394;144.5485;107.5799;108.0192;85.75794;142.4587;99.97269;93.54984;115.9514;113.6059;136.2686;107.1049;117.64;91.78914;112.8363;86.396;105.6794;122.9909;129.5989;99.77688;124.422;141.1496;124.7282;133.525;90.68224;90.96443;92.18753;94.66869;105.7075;87.33713;119.799;120.0188;119.4909;
123.968;123.1239;94.02055;117.0732;89.63271;96.1517;87.0949;124.2929;119.9294;132.4692;141.0415;118.9679;123.6831;83.66786;99.42855;124.5611;124.7234;84.83085;90.61508;91.56829;125.8652;104.5426;127.7304;111.1956;107.9511;127.2425;126.3839;117.7254;97.89991;118.2757;135.2358;113.5205;110.3547;98.57335;106.6351;100.1516;87.91933;120.9582;94.22394;94.03045;97.32443;94.21201;108.8222;106.3305;104.8076;111.0169;113.0805;120.0382;125.8097;114.1634;92.86559;107.9267;107.7926;96.71571;112.2461;115.2216;94.64558;84.84367;110.0798;92.77672;100.5114;92.04251;93.77798;83.03589;85.56344;107.4975;107.1639;102.2093;109.8219;112.5443;107.3825;98.47662;115.7801;107.2135;108.9052;128.2275;87.77225;118.5249;116.7354;109.1427;125.642;118.1877;90.2588;95.94;98.47508;98.66763;90.43776;149.6974;125.6902;94.37003;115.4424;103.3958;132.8475;96.66026;93.0034;133.321;83.34728;116.894;108.4274;106.0225;87.8923;95.11232;116.9846;112.124;103.909;124.535;147.3008;117.0882;100.6077;112.0795;145.8493;144.6146;120.7569;96.11504;128.5759;128.34;134.586;118.3424;137.6434;138.3887;111.0494;122.3177;113.8208;100.573;104.9794;99.25893;132.9604;81.82228;128.3001;127.8489;96.88403;118.114;94.73206;95.12895;89.50056;123.8907;120.6036;134.2668;146.1061;117.2376;125.0778;88.51444;98.63677;130.8544;128.8515;88.66325;93.24199;92.39084;131.688;103.3814;130.0562;110.4803;107.6782;127.5754;130.6059;116.0195;98.69702;123.0138;134.2173;119.5575;113.7615;101.7711;109.4072;101.0249;92.35647;118.7066;96.22071;93.37479;97.06289;94.5006;112.7398;104.7117;102.5932;113.9109;110.9701;125.3175;131.5511;124.9306;102.9644;110.7928;110.9513;93.04344;110.9799;106.3838;90.69031;80.3793;117.8177;94.35289;96.26952;93.5088;88.20232;80.47647;84.2361;115.6893;108.2057;102.8675;108.9873;113.17;117.8931;95.02412;118.3487;105.4865;103.0675;126.2535;86.5648;119.1303;102.986;118.779;131.3793;129.1337;100.2094;98.64343;101.4949;94.95376;89.29295;139.5993;122.9561;90.59976;119.3422;105.2477;130.4521;95.47332;89.32938;124.6884;80.39762;123.3016;106.7789;104.3861;85.60063;99.28242;126.8774;110.0277;108.0828;123.7754;136.1899;115.4153;101.5319;109.797;132.7183;149.8104;124.3719;104.0651;137.3541;128.8979;136.1827;118.1982;135.1566;130.4135;108.5198;118.0231;117.6961;102.4209;102.8896;98.05893;128.5631;75.10905;
107.9418;137.1826;94.23222;149.9652;134.5285;93.91135;114.2581;106.8411;95.26968;105.1496;119.4579;131.2181;121.0933;120.4913;124.5409;130.6313;80.70693;101.3519;150.1574;130.5063;101.5668;94.48735;101.2086;106.6707;100.3139;148.0903;114.6938;111.8456;137.2903;130.7332;110.7486;94.968;111.5273;125.0952;105.729;124.2659;92.44638;88.7524;88.30645;107.1292;114.3225;98.7827;85.92052;95.30367;95.12399;85.94725;113.195;90.40332;97.36382;99.62544;128.5603;129.1528;127.9839;90.2748;94.86226;91.75814;87.83128;114.7932;108.5156;92.39538;93.48167;92.89124;87.59307;91.13076;102.8621;94.4683;103.2787;105.0543;113.9519;109.0255;97.1125;123.9789;106.4769;124.8974;94.94003;120.875;95.98169;91.72085;131.9723;89.92422;109.5594;118.3869;135.4692;126.9727;134.519;95.52702;107.7594;78.92894;96.08749;100.0668;151.5773;128.3556;100.2575;112.9136;91.30772;132.1845;90.10948;87.44741;119.8341;83.78101;99.17383;90.49654;93.51311;106.7803;91.18977;115.0435;103.0777;98.35781;121.8468;113.3812;119.5679;89.07825;99.07027;138.702;141.6999;113.2146;100.6871;123.3119;110.6247;112.6761;113.9293;134.9749;128.3926;108.9819;130.5341;96.62103;87.75145;96.01819;107.7422;139.5832;92.11723;141.253;126.0945;95.62435;112.6664;107.744;94.62953;101.0039;116.3022;128.5895;116.0073;119.2988;115.9447;130.7773;81.184;103.8595;148.3631;122.8709;94.95071;96.62581;100.5895;108.6571;101.1029;142.8758;112.5408;110.2985;132.9751;128.9973;103.0507;95.91978;113.1058;127.3866;104.636;117.7244;87.03999;90.42084;87.7305;109.1224;115.1672;94.53485;84.06071;93.87836;92.29301;85.42107;107.1391;92.06925;101.4361;102.8323;128.411;125.7757;117.8182;85.59724;95.76498;99.5211;90.3034;111.2869;108.0592;92.05369;90.95608;94.36479;85.9818;87.62685;110.1713;98.65546;106.5907;108.9062;112.8223;115.9485;98.31178;133.3432;117.133;116.5327;92.59222;119.5034;93.2234;92.67899;120.847;94.86773;113.8767;121.87;135.316;123.6189;124.0917;90.70452;108.7214;86.13561;95.95607;100.2852;154.5811;126.9382;100.5279;115.1221;95.19536;125.9849;93.58933;88.77538;125.5332;90.60067;103.049;94.12037;93.66631;112.6094;98.3451;110.6708;103.5417;96.23702;121.9444;115.0264;115.1081;92.31841;99.72544;139.0881;143.8453;113.8373;96.45617;114.8563;110.4827;118.3109;113.807;135.2074;131.1809;107.6758;130.865;98.64675;91.5823;90.74506;
123.7171;118.3401;110.284;129.0162;106.6823;116.5332;107.8747;81.25745;143.2669;120.2789;108.2774;108.224;106.3173;113.5782;106.9362;109.1307;109.8255;122.7134;90.431;105.5368;93.53177;109.4993;107.727;93.17948;114.7497;135.9763;88.1626;121.1281;118.8762;108.2449;124.1791;94.38477;92.25925;112.1329;108.4911;111.3924;84.82961;130.6876;144.607;120.5723;78.90712;97.68523;142.1234;139.324;125.2276;116.6287;120.6315;87.62252;88.02862;114.4886;96.85664;141.7355;112.287;105.0894;109.2803;105.9251;130.0486;115.4412;99.3028;98.96386;103.0255;88.98871;136.887;78.24697;101.9151;99.97193;94.19319;96.38073;99.76169;100.4874;102.0371;88.91098;140.53;117.1817;105.977;104.7676;87.65245;112.3858;98.2188;89.646;92.49474;123.8552;114.249;106.5947;80.49833;89.16667;132.2829;91.40551;82.0145;120.3284;92.55673;100.2085;112.3084;85.95879;110.8437;95.22995;95.83656;106.4351;114.8771;96.39772;88.40934;126.1015;94.93481;122.2257;85.882;116.3236;117.6846;106.4249;134.1373;117.6447;106.8656;91.12045;88.04754;110.1882;113.7201;109.9576;106.8757;108.4403;108.0173;124.4908;102.1205;133.9016;125.9886;98.91206;120.4444;139.7262;146.9651;87.97198;124.4161;118.7713;113.0163;130.3061;107.3326;115.4709;108.1701;82.17513;140.3241;120.1288;108.9541;110.3032;104.9721;112.5591;108.6959;111.0141;110.2834;123.038;92.7226;106.6085;93.96455;108.3541;106.8815;93.6545;112.9063;135.6275;87.74677;123.1352;118.7466;107.4166;125.3228;95.95855;93.81186;112.6335;110.3023;112.2984;86.33508;129.6303;143.6243;121.1148;77.37765;97.39166;141.5924;141.4785;121.8982;116.7588;120.6057;90.36592;89.9854;106.3535;97.36938;145.146;120.8332;102.4803;102.2423;103.1523;132.7062;110.3382;97.29574;89.27296;100.6321;89.00188;133.215;84.3511;110.208;97.79776;94.77708;95.10226;102.9029;96.48016;104.6291;82.38744;138.9822;104.3677;105.7453;106.8692;91.34319;111.5406;103.3784;97.81206;94.4999;115.3774;114.8011;109.5551;87.75803;86.75549;124.5229;88.83116;83.46313;115.9303;90.58108;90.6416;112.9837;85.83957;107.5624;99.02451;99.78771;104.1759;113.1531;96.26856;92.59531;121.5732;99.28179;112.6592;84.02718;104.309;117.3982;108.7625;142.2871;116.6206;112.2773;96.48621;86.21657;102.18;111.937;114.2125;116.6107;105.7541;102.9154;119.5265;103.7744;129.2391;123.7054;89.42875;121.1849;139.5526;143.2084;91.64071;
114.0261;117.6249;120.8772;115.0064;123.3783;105.9788;95.10287;99.20757;97.13669;131.8165;76.18118;139.1584;125.3507;97.08614;109.1464;99.65196;90.92919;100.6936;140.3139;134.8398;126.1533;153.0504;111.9041;119.174;103.83;102.7506;134.4567;127.2978;94.15764;100.3498;79.24174;113.5826;98.44515;142.9914;100.3061;109.2733;140.2567;123.8053;117.4398;96.93583;123.4094;151.9348;90.43622;119.6157;88.69095;101.3584;95.10156;92.32102;127.564;114.7241;104.1392;87.89582;93.29089;102.5615;86.1301;101.667;103.8158;120.7243;123.0244;143.0181;112.3388;87.21837;92.32803;104.047;86.3621;95.64032;96.27306;98.67438;87.23026;99.59106;89.92705;92.89247;92.8477;91.41127;81.52164;97.74236;107.0961;110.5299;95.75466;115.3245;102.7586;116.5162;115.1901;127.2588;101.1678;117.0298;120.5786;81.96447;131.4595;113.8768;120.6466;128.8743;135.1232;104.8072;86.77287;82.85606;97.02258;106.654;138.0085;128.9659;105.4542;106.3871;104.8338;121.911;94.52431;105.1594;108.4638;90.71272;108.0416;106.7688;99.54754;89.16351;105.9065;142.1834;129.6971;90.17241;124.1775;132.9403;99.14517;93.74026;95.26205;152.3612;141.8216;133.07;94.22388;121.1529;106.4506;123.6094;116.9689;119.0555;122.5183;112.7615;122.6263;101.5296;95.31609;92.69817;90.79668;124.7311;77.6502;141.1501;130.8579;97.5054;108.8331;94.98887;94.25917;102.4573;142.944;132.9094;126.2035;148.2244;111.915;113.0026;96.89399;97.90244;136.1859;130.0331;98.08586;102.0132;78.36098;109.3538;101.0353;146.5643;101.8519;108.2931;139.2935;120.8169;117.4536;91.38039;115.8394;146.0296;91.85774;122.2703;91.23518;104.4667;93.78221;89.42443;137.1865;114.431;103.8327;85.54643;95.9957;96.97701;89.99142;88.21389;97.21697;102.4683;125.3849;147.6277;122.7167;89.49464;96.30243;106.9166;88.85402;89.56088;96.22614;101.1499;93.91335;96.0375;85.45318;83.89388;90.55029;82.15789;80.81524;89.49026;109.735;113.6437;90.66263;117.1342;111.4027;116.2155;114.867;124.4235;103.9738;111.0539;125.1388;69.92995;129.1194;101.9552;120.9624;131.7817;143.2353;104.1353;91.90056;88.22873;94.75259;98.24146;135.7509;134.1872;115.0357;104.0137;100.3464;116.6313;96.59585;100.9758;105.7706;81.61262;107.8667;106.6364;95.67546;93.66164;109.4029;139.4969;127.237;89.74331;129.6747;128.0091;103.6332;85.1543;93.25313;138.5198;142.184;136.0255;100.9983;120.4303;112.14;130.1544;
107.4593;101.3812;84.38578;126.7809;94.75966;119.0074;99.28672;102.6652;94.00805;79.33147;100.9564;94.05353;120.4641;114.1537;119.8747;79.64123;108.63;116.9525;99.9139;101.2022;123.1224;106.9563;92.89763;106.612;113.9031;134.9807;94.56367;85.20889;86.18732;111.2828;116.1537;108.7645;115.3105;92.81106;112.3218;100.3348;136.0277;112.7655;116.8749;117.0229;141.8944;120.9667;100.0465;88.48398;88.55791;105.3413;93.64324;110.142;97.06796;110.0692;107.4091;101.2939;114.5514;124.2036;90.87498;109.233;127.1151;129.3901;105.0374;134.5959;120.2338;105.4772;119.5107;91.29485;123.6198;111.7012;77.90775;128.3055;99.76233;121.9637;107.6695;124.0078;97.08645;88.86738;120.5119;106.558;122.3272;90.28107;119.4092;93.19794;129.1178;98.92648;103.6185;132.7801;143.9701;100.876;114.0697;112.9981;142.0985;155.1174;97.87843;87.77953;97.77746;111.6169;136.5468;101.7996;121.5395;144.0734;120.1547;96.14941;116.103;137.5725;152.026;108.5818;145.6823;140.5824;103.9534;95.81696;94.2317;94.23075;120.7732;105.5839;93.84772;107.5221;92.54818;131.9748;95.18423;98.64596;89.52657;90.36624;81.58205;124.7341;95.73342;117.2398;100.927;91.65103;84.1309;78.76904;108.2427;102.7702;90.18264;129.0193;95.80004;120.1966;98.74433;104.8068;96.74127;83.25497;105.159;96.47646;122.8673;117.6065;118.089;74.52415;109.2179;118.3318;106.0163;103.0987;124.0871;107.9678;91.87494;108.4434;115.9543;138.595;98.12681;87.52834;87.786;113.6998;114.3006;102.7755;115.426;93.15037;118.6993;102.2364;136.5065;112.8267;115.7249;118.9435;144.1799;124.3918;103.7081;90.84927;89.35513;107.6294;92.82896;105.1372;96.3575;105.4094;116.3423;95.68089;120.4269;123.9821;89.40948;117.9795;129.4179;135.4537;105.2045;137.5991;118.6109;104.1217;110.635;87.05145;123.4907;114.741;85.5664;129.9986;100.6563;113.1164;100.2581;133.1087;97.73217;98.45815;115.6581;113.6718;123.6924;92.16166;120.9509;92.49104;128.2979;94.50703;112.3862;126.3421;150.5477;100.6719;112.4174;121.8912;142.4375;159.2527;96.3121;87.74879;95.48327;107.8827;127.9961;102.1105;121.4793;148.4565;125.045;95.66828;117.5802;128.1481;143.3866;114.1314;144.3918;150.1586;97.69633;99.95996;94.62595;93.97807;123.251;109.8313;93.23116;103.7035;96.81808;123.3427;101.0366;98.42966;88.2364;95.60725;81.87315;128.4485;94.18688;117.2272;98.63346;88.27302;77.45102;79.06134;
114.8693;132.496;98.8084;113.0689;91.6323;105.7972;90.71172;106.2821;119.2826;143.6432;92.46725;122.8495;117.8479;127.0891;153.2582;104.8379;91.83185;109.9737;95.65703;106.4789;103.7577;113.6599;130.2092;124.132;87.93821;104.5467;118.3398;125.9705;122.2942;127.6693;148.9429;97.25034;106.7666;102.6438;105.9009;144.3235;117.8514;107.359;96.892;106.8247;123.2867;116.0645;103.1129;90.30923;107.3953;94.87866;135.3783;76.70261;120.8269;90.0358;74.25143;78.23729;84.87668;106.9922;95.423;99.70279;127.8994;94.54451;89.17738;99.61779;89.70709;87.96367;97.61918;95.65565;104.1446;128.7196;119.5884;109.8142;78.03765;88.67267;107.642;102.6126;90.71431;125.679;94.05598;97.41837;110.763;99.25416;133.5003;99.22034;93.27533;102.1422;94.8628;88.66999;105.1602;106.872;81.5491;118.3114;96.9033;120.5252;92.9533;95.54294;132.4483;125.8914;126.888;97.12005;102.9006;95.87423;121.823;110.878;121.6245;108.2733;96.13203;120.7237;94.3717;137.9463;125.2017;92.15004;132.209;149.7402;148.2369;87.67628;143.839;110.5381;90.7233;109.3756;92.35882;125.0531;102.2455;91.94945;129.6565;100.0009;91.9852;105.9973;112.5177;87.93706;107.1717;116.7416;116.866;134.3591;97.18307;112.3666;94.8708;104.5475;88.54064;100.2058;119.9299;143.8427;87.29032;122.436;118.2207;127.328;151.156;103.1065;94.31838;112.1317;94.7599;106.255;107.9439;112.8281;128.5982;118.6725;89.87531;104.492;113.4063;126.502;123.7403;127.4282;147.3475;96.39536;110.4726;104.3033;105.3609;145.0691;123.3828;106.1125;95.50536;101.7669;125.5811;116.0095;98.51366;90.76167;107.3323;96.08002;135.5516;78.48083;136.407;100.7728;76.68999;79.40549;94.35914;115.1452;90.77985;93.81548;133.379;98.90124;88.38476;104.7452;92.80867;93.44948;90.11687;99.11858;111.7999;126.3739;116.3979;112.1374;86.07804;82.25596;108.5754;100.3737;91.25607;129.18;90.41679;105.9908;104.9718;98.23071;127.3503;97.79659;107.0217;113.5486;97.61658;89.90868;115.6866;115.0104;77.26114;111.8849;101.3295;124.4125;94.18179;100.6137;136.2553;131.0108;118.1349;98.57077;108.5799;91.34711;116.4921;113.1068;127.4299;100.9026;96.97547;120.5272;94.60904;140.5019;123.3473;100.5402;125.9444;146.9666;141.586;84.45953;158.4949;119.5255;91.55889;110.6466;98.55171;133.5419;97.39362;88.20348;134.7914;103.526;93.22632;111.3345;116.0498;92.20655;99.15963;118.3313;
103.1819;96.00157;95.44153;93.71691;118.6364;115.5977;117.2622;108.5106;109.3096;112.452;93.12826;106.9937;140.5545;101.5225;127.8024;126.0284;131.1909;84.40975;124.5471;107.4375;112.7683;110.2212;103.8576;134.9099;87.8215;83.36445;123.1314;112.3338;94.84389;114.1421;129.6171;113.4667;91.89489;109.2301;118.0459;117.4636;111.9142;112.6538;90.81255;120.3161;95.03889;86.37563;112.9521;119.0414;103.5901;125.3626;116.6376;114.2291;124.1254;96.25365;80.15661;102.5528;93.39983;113.664;102.6993;132.4653;121.6049;123.4729;75.98013;86.88342;116.0989;140.4615;137.8428;129.9683;120.7928;98.01221;101.4774;99.96214;98.03912;148.8986;120.544;107.1762;111.5282;95.5437;121.8225;87.71274;111.9091;100.944;105.4731;79.74305;122.1946;78.10253;105.9071;91.68025;95.08273;78.84736;100.8916;120.4639;87.46342;92.88158;126.9088;114.4598;90.14538;109.694;113.1816;116.8686;85.55178;89.73264;111.8188;115.8274;139.4581;113.0937;80.57254;101.9789;120.4118;88.65514;84.10651;106.9348;109.9403;100.0478;116.1566;93.62312;109.4141;95.44713;83.12298;93.36844;97.63963;93.21706;102.7872;125.2094;78.60312;123.1553;87.7907;106.0576;95.51967;107.053;151.0285;134.0361;103.5135;95.91644;99.7391;91.69536;116.2473;115.1068;119.8174;106.3223;112.9076;112.4762;95.52235;109.3246;135.2819;102.4241;134.0208;128.5471;131.3457;84.23518;129.2323;105.167;110.2406;109.6262;105.1311;131.8768;91.76772;83.21991;124.6489;114.5255;91.64999;115.2711;135.0973;115.6712;93.16069;109.1992;121.8653;114.8917;110.6341;112.2329;92.0013;117.4549;99.13994;86.23044;114.4032;121.2996;102.5454;125.5289;120.3652;117.1719;129.0481;104.9128;87.30735;108.5553;84.98303;112.089;102.7011;125.2959;122.3744;122.7134;85.89072;92.71017;115.647;132.535;142.5796;132.969;115.9795;101.373;107.6428;96.30932;93.2141;142.3548;129.2637;109.8117;110.0297;100.1559;130.7413;94.72416;106.5408;102.2624;113.7649;78.0937;127.0788;85.91202;114.099;97.36037;86.58832;77.52784;100.889;113.6317;86.54146;93.25064;136.7601;118.6734;90.72997;102.5303;113.7903;116.7365;82.56718;93.85644;113.3745;114.2501;132.49;108.7134;87.81411;106.5702;117.0494;94.11337;89.22532;112.2847;105.7049;101.1842;121.0606;89.25211;115.3147;105.0151;86.12981;101.3155;88.06295;93.0023;102.8958;120.3857;77.76229;123.5599;96.03604;110.1372;96.15816;99.95918;151.7576;133.9191;
139.6916;123.6168;131.6936;122.3893;89.46587;91.92049;90.68905;109.3122;106.3487;111.3623;119.5069;149.9301;134.0378;88.99725;109.5579;135.1907;141.3066;127.14;125.238;155.9199;113.3573;91.17267;96.59656;98.60039;136.0014;127.9427;110.9239;94.56092;108.6651;124.1436;99.34545;118.4661;103.0699;107.0681;78.37965;131.3205;95.59711;112.0704;88.71269;81.68217;74.02246;89.26588;100.756;91.2193;106.4392;118.8354;100.9187;96.91147;91.95071;100.3655;97.10934;90.19347;95.81092;99.48726;122.5779;131.2322;112.7702;81.34286;93.77424;114.4821;110.5273;82.82898;101.5875;99.78751;113.9935;116.1285;109.6003;105.4595;89.04504;88.04733;82.30862;109.4183;89.99357;108.6922;116.8241;99.19897;133.7075;94.89455;130.1785;111.0664;110.4112;134.2202;126.4614;134.2807;115.2374;83.02536;89.57519;112.303;108.6393;127.5692;117.4187;89.72195;130.7912;92.79594;120.2417;140.2375;108.3637;129.1643;128.8382;144.2755;107.0678;129.9278;104.7962;95.43804;113.829;98.13599;122.504;95.34789;101.5505;119.8251;102.7153;97.96154;102.1485;121.9323;100.6933;100.7651;116.038;110.2819;122.1106;101.5818;120.7005;96.5994;113.0424;93.34767;112.4643;114.5847;118.4926;89.068;144.2487;120.1642;136.7961;121.604;89.86783;88.5429;88.24174;105.5638;113.9554;111.3422;125.2713;146.1177;137.8359;87.45268;111.9897;129.898;146.7637;124.1222;131.0407;155.5889;114.592;88.20942;93.86839;95.95668;144.1255;129.5473;116.2651;92.24722;111.1898;123.6706;100.9651;114.3044;106.8397;105.5673;82.36289;131.8522;95.88796;110.069;86.10132;79.27975;80.04919;90.60938;105.852;88.94943;108.7692;119.5346;102.5801;93.08106;92.90636;88.6398;90.14409;89.06354;88.93069;98.45177;120.1795;131.2953;124.7835;84.68376;93.35284;115.1348;116.3817;88.83404;101.0506;94.74331;108.5383;123.4603;110.0562;111.4073;85.65688;88.7;87.28601;104.63;95.74142;107.6536;118.8989;99.19069;126.8509;96.05537;123.1245;105.8265;111.448;120.598;118.4938;132.896;107.6694;82.07517;87.52597;112.3565;113.9612;131.2202;113.5235;92.60321;134.5278;98.48529;117.8358;138.832;100.2327;139.7276;126.3689;150.6685;103.1858;131.6503;113.3213;93.6106;113.7963;96.69888;121.1072;97.70702;93.39256;120.4094;94.84731;96.87957;100.3259;111.5087;91.09111;99.11955;108.2808;110.0364;122.7495;104.4228;126.2851;99.77962;109.2387;96.28735;115.9105;120.8972;116.1226;87.94976;
115.5831;88.22361;114.495;125.1018;124.9143;95.70285;90.30423;77.09608;117.1558;95.53866;132.3076;93.94707;115.0692;134.0461;127.2013;129.0299;86.3371;127.6248;156.3971;93.56673;103.724;116.5972;95.75379;90.08627;89.09298;122.7918;102.6919;85.07382;84.5155;90.79134;102.1952;99.87775;96.47565;113.0927;104.2337;116.2246;136.7724;132.9291;103.4992;97.12864;96.27944;93.17045;110.7003;105.1862;95.95023;98.90626;104.9774;102.1847;82.50253;119.339;98.17145;85.65311;89.52957;120.4707;130.698;106.2961;119.2665;109.4005;112.5441;88.32852;125.2181;97.84802;89.41254;125.8259;79.78401;123.8899;132.0142;107.4702;126.4537;132.7484;94.44807;86.43977;88.65746;92.98509;93.97189;126.9753;140.2235;102.4675;112.4972;116.5058;121.8798;105.0827;112.9709;107.7355;78.75278;135.8142;96.9212;96.82222;89.43156;96.4455;121.3323;104.0654;96.23373;121.0805;138.5046;112.927;89.90945;112.5344;135.7409;136.8241;130.2432;111.3254;134.4847;108.6644;116.7312;113.1599;126.7754;124.4978;115.8413;138.1597;109.0191;107.2952;82.90475;119.7531;135.7569;80.78113;127.1685;139.061;109.8656;118.3878;100.9825;88.84523;88.84351;112.1541;135.0334;120.6902;118.7315;115.1516;113.4929;89.39513;112.8371;128.2477;128.9879;97.64876;87.9391;74.65243;118.639;93.267;128.7813;92.88219;121.5432;134.8631;130.3957;128.7148;84.35626;128.9159;154.2209;96.18997;107.2522;118.6427;92.8244;87.14573;89.55457;118.8353;99.08751;84.07368;89.65305;90.59575;104.9767;99.62394;93.94634;113.3269;102.385;119.1604;140.2771;134.0475;100.4504;94.07641;96.75689;89.7302;106.9543;104.0759;98.44193;97.13381;106.6402;101.0958;80.2506;118.1694;94.77341;78.28793;93.38134;111.5653;130.2085;106.4364;127.4887;114.5945;114.7115;95.65282;123.9031;98.84109;94.09718;124.8246;77.77268;127.6155;119.3557;111.2956;126.7161;134.9015;86.41481;79.5394;88.25471;89.6682;93.34162;127.4659;136.5598;100.9509;114.0671;113.3059;119.1391;103.9808;109.314;99.45525;82.36753;126.3432;96.49091;96.9561;97.46179;106.3043;127.6876;111.6786;92.64671;124.1671;142.3896;113.12;91.55247;117.2384;125.008;136.3296;130.5477;113.9546;129.5109;104.933;117.2727;114.6721;130.1744;124.6574;109.8885;138.5043;108.8724;105.3519;84.29263;119.7527;133.9348;70.17016;131.8064;130.1786;113.7848;122.8885;109.5443;98.32008;94.29595;120.0755;130.8212;123.775;122.3334;115.3692;
108.9982;116.6255;94.60513;95.37814;88.18452;107.4655;122.1862;110.0856;106.3012;93.91595;84.01913;96.67844;122.3931;86.59742;114.6181;98.99358;132.3358;125.7253;126.9367;101.5975;95.98952;120.8875;92.16497;98.58003;112.3909;102.9764;68.75629;88.0623;89.48473;104.6963;95.4296;92.82621;95.13077;86.47299;119.9574;104.2566;103.1212;110.2601;115.2065;122.7682;102.765;114.7401;97.83805;94.84778;126.976;73.85801;118.1377;118.4072;121.5769;119.6746;147.6718;103.6044;84.47144;95.3446;96.11181;98.86957;148.8443;146.9374;88.29844;104.7662;100.581;126.5703;88.4813;100.4183;119.4635;83.13079;107.9445;90.76602;91.4635;104.031;95.9996;132.7287;123.5457;96.77375;113.4452;124.108;133.864;81.12616;109.3273;132.5603;145.8805;114.6869;105.3315;132.1829;108.7348;141.0895;112.9336;120.516;130.7074;113.2044;101.6834;86.91866;91.20988;115.7296;94.71331;133.8102;81.96461;126.2408;137.1325;87.19572;118.9906;86.79771;93.64581;99.63406;121.6659;114.9647;121.3576;122.0395;113.8245;114.5509;83.03036;107.2235;131.5545;123.2677;108.2546;104.9713;78.5875;118.2481;97.4727;139.9394;110.827;123.145;120.6463;120.2863;109.4208;98.93367;109.6728;146.3402;101.308;117.9819;92.83945;93.63514;87.46313;101.4791;114.3001;106.9443;101.2473;88.6419;82.2591;93.64201;116.8112;91.72149;110.791;100.134;124.6531;127.6243;125.6988;100.2347;95.93471;114.9916;86.14599;96.63102;108.6918;97.21357;67.8938;85.94086;85.60646;109.8674;92.31856;94.75281;89.53984;87.64031;119.1937;103.7266;104.0493;104.1984;108.4676;120.5948;99.23175;108.655;96.8111;92.64802;123.2208;79.058;116.4754;121.4288;113.9576;119.9333;134.0203;98.01446;82.5434;85.19632;91.69881;95.57584;138.9192;146.622;97.93753;109.2188;94.23362;133.0768;92.238;104.7441;107.092;87.43938;110.5706;99.30999;90.10591;103.0828;94.97377;140.3485;125.5922;93.71751;101.3233;127.3032;119.5121;86.06122;105.2185;145.0332;137.5226;114.93;93.85351;125.8533;106.5458;128.672;108.1456;116.8713;123.1323;118.2529;114.0182;90.89039;88.27402;115.4502;100.114;135.5573;75.07951;129.1876;141.9251;93.77643;115.6014;90.49683;97.21564;107.4866;125.4551;116.9067;110.8043;125.1047;104.018;113.9349;80.83764;115.4886;127.9763;121.2386;98.15319;97.50668;75.2381;111.994;97.61605;137.4084;103.8807;128.3874;134.0736;124.9504;106.2231;98.65727;115.4998;148.1667;
87.41779;126.2943;126.3035;104.5199;117.7476;107.4253;114.2199;90.18724;117.913;96.74464;116.7606;129.0759;102.5127;120.6114;119.6116;126.6545;139.8682;137.6404;96.00339;84.53827;106.8501;106.5787;88.16463;123.1736;125.1154;107.553;129.1945;113.3403;111.9686;102.1346;94.70135;122.7936;97.51443;118.5626;117.6598;87.37189;115.1903;108.0037;122.9859;108.8382;92.03196;110.1139;136.8005;112.7474;104.228;105.3224;120.9571;131.0029;115.243;97.00849;117.9892;106.9761;122.1295;116.4223;127.1877;122.6414;114.9196;128.8582;98.08665;93.47536;107.3825;111.0782;136.9543;78.04998;122.1214;148.0198;112.6663;121.9864;101.198;91.98837;100.3806;115.4345;121.0726;121.9739;152.9178;121.8603;147.315;87.70137;105.0545;145.3147;134.1875;104.0522;95.69144;79.33138;143.8773;112.1082;127.3895;89.09882;103.387;143.5489;151.0552;127.8411;81.85792;125.888;137.741;104.4015;128.1229;103.3824;117.7684;85.41347;118.6337;132.4846;101.0868;84.63572;84.22461;83.53047;108.6615;101.8399;103.1934;108.4029;91.73568;114.3316;124.3678;119.4691;92.11755;94.51061;96.40281;89.92011;104.293;97.7438;98.58506;90.50139;99.08785;86.93284;99.91538;108.6637;97.34587;85.10393;84.93837;127.6434;128.6528;108.8857;117.4957;104.583;114.483;87.96183;116.7002;99.50559;122.038;130.5156;102.3751;119.4747;124.1773;124.6611;136.5205;138.9507;97.87779;88.40133;106.4372;103.6552;87.37752;120.0181;124.7107;110.3135;133.4936;114.5046;113.0865;101.2504;98.10319;120.6311;95.8677;119.9753;119.0094;91.12279;116.0296;105.2354;122.0532;105.8755;91.68268;112.9091;141.2206;113.9109;102.3758;105.3649;123.6303;130.2425;120.3656;98.68859;126.1985;116.791;123.4658;118.3169;125.5301;127.1617;125.4926;126.0873;103.0188;91.04329;105.9052;112.4764;134.9127;80.24001;123.4168;149.7438;116.6788;124.803;95.17458;82.86045;98.08841;120.3031;122.6691;124.1011;161.2789;119.2295;145.2282;90.22324;112.3186;138.3213;139.7103;105.7819;103.0936;87.81345;145.3269;113.957;125.7257;92.95779;111.2106;138.0408;151.8969;126.0262;82.22454;127.3044;132.8879;107.6082;128.5703;103.9693;119.9738;85.96579;114.3673;123.389;100.6696;90.30116;83.65405;83.26575;111.2175;100.3716;103.3288;111.1324;96.15395;108.8436;128.833;120.3969;97.69173;101.7798;99.71715;93.23916;104.7282;103.3742;106.2668;86.12207;99.79099;85.45683;100.3579;109.9608;93.29344;88.02123;
136.0217;145.6537;125.2674;123.6364;102.7964;98.58514;122.0364;129.8833;93.85424;90.60412;80.24489;126.4676;85.48568;137.7878;89.78313;112.553;124.4013;128.77;109.8393;83.39162;122.3413;126.8281;90.0154;118.9789;97.08376;92.2379;87.30485;92.87402;115.2173;108.3686;101.9275;99.11061;83.24823;109.3639;102.4622;97.89695;104.2392;96.90761;115.5443;138.0707;120.8474;108.6655;102.3174;112.3739;102.5751;109.2664;89.34358;95.43997;82.57481;96.10152;100.0693;92.43283;103.7522;93.10744;84.28635;102.4873;121.4089;124.564;96.60526;116.6929;115.7012;128.732;108.8634;113.0331;109.9146;111.6578;133.5078;85.54917;137.398;107.9941;106.7601;127.8298;125.5298;90.81469;86.51611;95.17716;80.75412;93.24535;122.4138;130.178;90.22021;113.7623;99.13541;114.2688;98.1626;85.48264;104.6014;86.15594;113.1494;93.39439;91.89761;87.3534;93.33425;125.9175;123.873;101.7828;102.788;136.4758;116.5863;95.02341;100.4551;128.2095;135.3616;123.9308;102.6147;142.8323;113.7062;131.2106;129.9046;126.3847;105.6386;110.2958;115.2353;93.46628;104.7549;95.73447;105.1553;133.4544;79.40987;140.645;146.3998;107.4959;110.2223;91.68646;103.8746;104.3509;131.8316;117.105;127.8596;139.2635;125.8873;123.7174;103.3005;95.70583;127.1781;124.6435;97.54708;90.39202;78.49376;121.8293;89.49091;130.5189;88.33234;108.5723;117.3753;123.242;111.1731;83.85118;123.6861;124.0384;94.22992;114.9424;100.4477;93.38174;85.29742;89.59422;118.9212;103.1776;99.68901;96.08346;76.75765;105.5232;103.0668;99.11894;104.6002;95.67028;120.3154;133.7226;124.6;109.9093;100.1457;108.7658;104.7118;105.4974;86.90763;93.40192;81.96412;90.49329;105.409;100.469;111.5728;96.46148;86.28105;98.2954;123.762;125.5486;94.9002;115.6492;123.3263;124.5503;104.8026;110.2828;106.4785;104.2643;136.483;82.63754;140.3585;103.6403;115.0947;124.9768;127.2993;85.35744;81.61049;85.85723;79.28791;88.67205;116.1587;127.7778;89.57264;107.648;104.4497;123.1801;105.7636;88.693;106.8214;82.312;109.2984;94.04101;91.9687;90.75037;98.08972;125.8124;122.3654;101.2503;104.3834;133.6443;118.3421;91.86179;103.9411;123.2817;139.9146;124.1606;98.38696;135.719;109.9818;125.2881;125.6564;125.0801;102.4411;110.2661;119.7698;92.38483;109.2436;103.8076;114.0201;137.2684;77.74464;138.9365;141.9919;108.1894;110.3178;95.16709;108.8682;104.2551;130.2954;116.5352;
122.3628;113.593;121.2021;131.1966;152.2423;95.54125;100.5963;96.45541;105.7606;102.2933;133.4243;137.6625;88.60802;121.3697;105.5297;109.3792;101.2411;99.05422;128.2037;73.6026;125.5107;92.93484;85.03425;94.54507;98.2794;128.6257;124.3649;103.5115;113.9587;128.13;98.34358;102.9586;94.37878;118.1797;132.8126;125.536;107.6544;133.8272;119.4629;114.7465;126.0016;113.6997;120.5055;118.4772;116.4749;96.8084;93.71387;98.19819;96.48903;127.9352;101.9587;136.1933;137.7265;112.8944;103.638;92.47128;112.5858;89.75746;129.3423;113.2509;132.42;138.0386;109.6288;112.7225;87.68349;100.9415;141.9404;131.1742;115.5982;96.23668;94.46074;126.5702;111.0497;145.7856;102.6891;116.3718;121.045;137.9871;116.2406;77.67678;126.4108;142.6397;113.2277;103.3358;111.0695;92.76644;77.00379;95.90269;122.8867;105.7198;101.9442;95.66813;86.95228;100.0618;88.94774;108.4701;95.67598;88.51686;124.2818;134.5755;132.8524;98.16422;103.9944;90.72027;98.71783;92.75896;101.1961;101.0003;82.88939;99.56277;91.77198;95.87021;93.40192;91.00008;115.8382;98.4594;119.9862;127.364;91.40258;108.0719;128.0751;105.0079;102.5756;108.2748;111.0327;108.5084;123.176;79.23855;122.5544;118.7331;127.9119;132.9716;154.3862;93.88092;100.7963;93.592;106.3337;103.6429;136.0475;137.7042;91.66604;125.6673;108.8361;111.7035;101.2372;103.7732;134.8964;74.86195;127.2503;91.20985;84.75277;91.40749;97.96762;128.7261;126.3402;103.5614;116.9203;131.4775;101.4463;105.2193;93.93281;122.3097;139.5284;127.1938;108.7882;130.7038;119.1266;111.2895;125.6458;113.7963;122.4474;118.5329;118.521;99.65952;97.61372;101.4105;97.28499;128.085;102.4421;146.3895;133.5775;111.3787;106.2584;84.8769;112.049;88.73808;118.6415;120.0709;120.985;132.4822;123.1201;119.8376;90.82179;107.1694;145.2029;131.582;115.4355;98.16961;84.14742;128.3386;100.581;144.2086;100.4251;114.021;122.9861;152.8277;120.8867;78.12729;127.3213;142.7925;113.7274;112.241;107.3465;91.38866;79.25669;88.16574;122.8563;105.6702;92.57911;101.7827;76.07663;92.52927;97.16507;111.9988;99.57944;91.80083;122.9975;133.1748;132.4406;102.8948;92.58221;94.39334;89.33647;92.49197;99.04889;98.66644;82.78908;109.1865;92.03387;93.24187;94.81895;88.62289;112.2057;105.5374;115.9093;128.8615;93.30011;102.1078;128.0869;104.9614;93.1833;114.7963;98.73336;100.6612;132.8168;82.27775;
93.87035;94.67037;134.4333;128.6319;135.9434;98.09755;126.0376;122.0501;124.1695;140.1773;130.7538;135.4334;102.2496;121.7702;110.4289;106.5936;104.13;96.55714;149.0358;96.20524;127.4182;128.9235;120.0088;108.3101;92.3146;91.71851;98.89497;106.5559;108.514;118.0565;118.7843;123.6705;119.1359;79.95472;99.35373;127.6499;134.224;95.93664;99.78376;80.39448;123.9396;107.2099;129.7912;97.26006;100.3387;124.255;129.4815;113.7787;90.2596;118.405;129.9257;110.7747;113.3752;91.28726;98.16862;83.05878;103.8727;123.131;98.64303;101.4887;86.76942;88.67278;100.9991;107.2987;96.96172;96.73163;98.66096;112.1985;144.5856;118.0602;90.89933;100.6361;102.8628;113.2524;104.9797;111.7521;85.37169;81.75078;105.0816;95.77167;98.17682;93.62135;103.4304;105.5037;90.17714;108.0565;132.5603;91.31788;114.8814;105.188;109.2403;89.65794;105.5082;89.76114;84.61789;132.8332;81.14321;112.3974;111.3855;110.0071;136.3777;131.4666;99.96609;85.57647;96.6925;99.69585;85.26064;138.8412;118.3732;88.9505;111.3075;102.3276;115.6872;96.39312;92.3688;125.4693;79.51845;107.3804;100.3958;90.0441;103.0362;97.94091;116.414;128.7055;93.94504;113.4516;131.7517;120.886;89.38129;95.42126;132.6255;127.0077;134.7869;100.3743;126.0086;119.4039;127.4488;139.0762;123.8222;142.0651;103.3968;117.5565;106.4898;105.03;100.1139;97.73944;148.0015;95.22906;127.0963;132.0269;120.9357;106.8699;96.57043;90.61333;93.72035;113.3465;110.7041;113.4547;115.1191;122.9033;115.8885;80.65655;98.90093;127.4682;135.0157;98.19475;100.6315;79.15649;128.866;106.0173;123.8558;103.7549;101.0687;121.1156;127.2952;116.1339;96.8191;129.0664;132.662;114.7935;108.7945;94.78983;91.47878;86.141;110.9647;129.4284;88.86198;105.8966;82.67465;82.5463;94.94038;103.9436;83.20224;96.8475;91.4455;116.6226;145.9881;130.8803;93.25428;105.3121;103.5725;114.4458;102.4018;112.4698;93.69376;83.56177;97.58002;101.5539;105.013;103.1175;105.8734;109.4213;86.09697;111.8544;124.7674;94.54352;119.3947;111.2111;101.7398;88.12408;100.235;86.19514;80.79146;126.5866;72.5547;110.6692;101.666;115.1183;138.5374;140.4791;100.1203;88.45411;94.78421;100.9848;85.52337;132.6914;127.3177;93.54343;105.5653;106.013;128.4034;104.2229;92.73971;130.5158;76.27716;107.2372;91.41219;91.7823;107.333;103.7372;108.6873;126.866;88.99142;109.419;126.9882;114.9301;
99.29951;118.937;132.4857;129.1158;95.29542;127.0023;106.5943;102.3677;113.4791;99.80057;122.6611;95.48419;71.18271;139.9227;110.7098;102.2632;89.16817;111.6405;111.2361;111.7515;131.0284;107.024;102.2024;99.08168;112.968;107.0937;114.461;103.8891;89.53187;140.1181;141.3295;110.8811;130.8908;128.8573;132.0265;130.3839;96.7474;105.648;110.8721;95.97791;101.2933;91.32635;133.1431;145.658;123.3822;85.19452;110.3533;124.3784;138.7413;132.7989;126.8167;152.2086;93.9977;111.9451;103.3158;100.7759;135.0464;113.9994;96.63825;93.64114;89.84529;130.7224;113.0339;100.9617;100.4863;98.44703;83.00907;120.0796;83.81727;108.2426;90.14365;87.47553;83.35733;94.3076;104.9649;87.91618;75.10437;140.5733;109.1683;98.93236;83.26298;90.50001;111.9884;101.11;109.6255;94.97832;103.3416;123.0042;111.9777;93.15246;94.23286;122.2996;90.95845;106.5426;128.0535;116.6844;110.5905;125.1235;107.892;109.9231;94.88274;107.4692;106.7107;97.56947;85.57557;90.93159;121.2842;93.44828;126.8318;89.38005;131.3001;101.9918;110.8441;145.2002;126.4047;128.4978;93.79141;105.1961;96.42227;114.7446;104.2966;112.1414;94.8288;91.29071;108.7059;96.95355;135.5449;125.6299;102.7481;121.9457;133.2884;123.7442;91.08554;127.8822;110.8447;101.2785;114.2163;100.7396;119.6175;92.63499;69.15781;136.1471;114.8344;101.9541;92.26756;114.467;111.7846;106.6728;125.8872;107.7381;105.247;97.52115;114.5211;107.8989;110.376;100.732;88.36705;136.5283;145.1746;110.3774;136.014;132.0771;131.8512;124.6879;93.47466;106.5335;114.0398;94.44413;102.7618;92.07204;128.7317;141.9178;124.5441;81.58042;112.33;124.5987;140.9148;141.3781;123.7301;140.593;85.58483;118.2142;104.4166;92.42355;130.0542;105.8803;95.16708;94.04148;89.65486;126.7288;115.4657;101.1932;100.8803;98.17268;77.4001;115.2431;77.94382;112.3766;95.76712;90.47141;89.90701;97.93952;107.1402;85.46094;74.96046;137.4147;115.8343;102.3603;84.9483;97.59607;109.0844;91.68547;100.524;100.7498;104.4379;113.7576;108.4994;85.95006;95.47372;126.0274;89.78056;106.9727;128.5034;116.716;108.9583;122.6893;100.555;110.3594;89.66618;111.5956;111.0727;101.6514;93.21766;94.60793;126.7294;93.74815;125.5054;90.56783;136.4122;105.2909;110.7499;151.7842;122.3174;123.1913;86.42182;111.2794;95.87475;106.7586;100.9785;104.2062;96.09437;94.53575;107.4567;97.34587;136.0325;125.6864;
111.5363;98.38786;111.6873;91.96906;106.4445;111.1209;130.9242;93.75549;119.1073;114.947;117.5346;133.5112;82.94819;97.59477;103.0258;104.5302;119.2448;92.12934;106.4904;141.5259;131.7098;86.0265;95.21202;123.5908;146.2807;124.3905;123.3604;131.6865;82.26294;90.97887;90.49024;106.6671;135.7101;129.3406;90.88527;110.8341;102.6855;133.3208;104.6373;108.207;104.2204;93.1246;83.54942;145.0477;94.55329;108.5371;91.3478;81.68887;91.83441;101.4264;105.7944;94.30718;103.3002;133.8114;109.8684;118.3495;93.3039;109.1625;86.39908;112.2835;99.08586;94.8834;110.81;119.4589;112.4167;82.69739;94.97672;112.643;109.5967;79.92793;114.8619;98.68015;99.09367;108.1287;94.88895;116.4214;85.13959;95.0207;93.3477;107.0847;104.6733;92.95145;102.3069;92.32533;133.9798;92.81066;113.9132;101.314;115.8207;139.9421;126.6325;112.0208;80.61754;84.22437;84.61926;120.039;105.0321;129.9653;99.11279;114.9099;124.7693;103.4196;123.9947;137.6438;108.4683;120.6883;132.4941;154.844;100.3386;127.1755;106.2134;94.24232;128.006;110.4664;122.4627;102.1153;96.68703;134.3752;112.2597;125.4199;101.5751;136.6101;85.48149;117.2603;113.9108;104.2598;107.7387;93.22413;113.0065;99.81704;116.0363;92.94456;110.6676;110.708;130.9095;96.34068;122.4439;118.7746;119.8999;129.777;82.27452;94.35535;101.6693;101.9638;121.5527;93.92809;111.4925;143.2619;137.2512;86.05367;94.98975;127.6052;149.4985;129.9937;125.5526;128.8162;80.82635;88.99886;88.56662;104.8304;137.1538;132.8923;94.84435;113.1447;106.6956;134.7788;104.4068;111.968;106.9417;97.98351;85.35747;142.0374;92.85663;107.4751;89.4421;80.01778;91.26345;113.1732;105.9761;91.98187;106.9512;133.0526;109.9709;113.6338;98.75528;111.4284;91.95969;109.0093;105.4097;102.9195;115.5365;122.6873;111.4737;84.93472;102.4545;106.2009;122.009;84.25307;118.0392;96.67562;101.3213;111.0372;89.68357;104.2024;84.61434;90.26553;87.1802;108.1353;104.0538;104.2055;102.4849;90.02042;138.122;92.17413;114.0169;96.95;119.9478;137.7574;133.1815;111.4044;87.96149;92.76366;90.63074;125.3416;103.7665;130.3062;104.3996;106.1572;133.5824;105.9032;127.5111;131.2188;108.9363;119.3371;126.1837;143.718;101.5156;122.7785;101.6361;97.05593;126.9241;120.3521;120.1523;97.53767;96.46397;130.9107;112.5612;116.7316;105.4227;134.4514;90.89294;116.631;122.589;113.7372;114.5266;97.90508;
104.131;87.35906;92.35616;110.5547;94.57269;91.47374;116.6626;89.97958;112.6707;128.0042;102.7649;123.2163;96.75922;85.4511;90.85555;109.3727;90.76526;94.49696;104.9981;97.95527;134.3488;97.009;113.4427;88.30298;105.1966;130.2269;129.7976;105.8562;109.1804;87.98654;99.03701;120.1966;108.2592;129.1295;105.2236;104.2883;112.2808;102.704;137.2262;135.3883;106.2515;125.3451;128.7626;142.4729;114.2791;148.6413;108.7512;106.7729;109.3786;110.7533;127.5949;100.3139;104.6987;123.2773;117.6977;103.2901;103.8085;122.689;93.82171;88.5295;114.26;112.2477;110.8114;105.4269;105.3129;101.5811;108.7121;86.7608;95.44695;124.6744;132.4098;86.56269;139.4803;136.4938;129.4662;135.8212;99.82278;85.99219;100.1469;108.0904;109.2361;96.50533;111.9704;146.9979;137.4229;90.14837;95.91805;107.8432;137.0208;118.5704;135.5087;121.4925;109.1208;98.21764;105.5019;110.7594;144.701;133.37;104.6434;103.5554;100.8084;131.4291;118.9804;108.066;103.3049;104.6281;83.84575;128.4774;103.8978;130.6666;90.91563;96.31176;81.04948;107.1962;113.5604;99.08723;117.3947;120.3104;118.4805;101.1028;97.95262;101.0921;98.63255;81.7084;95.44304;103.1963;106.1519;139.0497;108.0898;91.32694;95.18054;111.5449;99.79459;90.45717;119.4287;89.61841;113.3091;129.7486;107.0799;121.4552;97.99331;90.34833;90.09872;115.2747;94.29182;98.53948;107.8243;98.80597;140.3625;95.8906;115.6352;87.6657;104.9271;130.5638;134.0757;104.2389;110.0221;92.07961;98.16567;126.4064;111.6337;132.7858;107.9774;105.1795;117.288;100.6301;139.6337;134.6013;105.9782;125.678;133.021;140.5981;111.9663;151.9871;106.6818;111.7552;119.8795;115.2393;137.2745;96.87695;102.8519;116.5869;114.7931;108.6907;98.4987;125.01;92.53963;95.91195;119.5532;114.8737;114.9157;114.8079;107.0345;94.3634;117.675;82.60274;92.8054;118.9862;129.6037;88.05043;135.7205;133.6969;129.8505;135.3791;88.10874;83.42361;95.42081;113.4012;119.7299;100.6913;121.0392;142.8312;135.3056;84.43646;93.28892;113.3601;132.8128;121.9448;129.7751;130.325;116.6472;97.95114;111.6082;115.1924;144.5224;122.9549;110.6952;96.7863;96.45348;129.7005;115.304;111.3266;101.7606;103.1874;80.82818;128.272;94.0735;124.4403;88.27973;96.60707;88.42513;109.6098;119.844;93.48454;113.6748;117.614;114.5679;108.0181;94.4365;104.2126;93.75253;88.99959;102.5284;102.926;112.2794;144.0367;
94.87134;93.27171;97.41683;142.7799;141.2732;115.8284;104.6754;108.1823;101.3803;96.58161;102.9959;109.9904;109.7724;92.02332;96.80034;93.04027;89.90108;106.5919;89.07143;101.5631;97.09212;120.0252;106.9754;102.954;106.9317;132.2548;113.6262;99.53059;129.5512;88.88379;99.90517;130.5681;100.5582;104.3784;121.7184;137.9193;148.8087;132.8319;102.6146;102.4918;92.46423;107.2522;85.62724;130.84;140.621;97.59506;105.4373;98.48882;106.7907;101.0965;87.21651;108.4708;82.92123;111.184;99.37091;91.64994;95.32086;98.4607;121.9131;109.8392;99.58392;103.4126;128.7634;110.459;89.44278;89.71866;130.0262;155.9513;128.462;95.85441;135.1561;123.9938;118.1711;120.4;125.9936;130.8964;128.6696;130.3044;97.87638;99.3795;91.33647;109.7344;127.7329;90.28371;134.1237;137.3479;91.5033;114.5568;87.97573;110.1631;91.43629;120.3718;129.5529;109.5741;121.8313;120.9055;142.0336;75.58414;107.6056;146.03;140.6423;97.87621;100.4653;94.13587;121.1563;109.3859;119.7322;96.67344;115.9036;129.3428;116.0468;110.4089;79.34286;126.3338;123.9672;91.611;107.9589;98.85813;101.5247;88.35711;99.36557;118.3227;95.8298;88.0473;91.07458;73.08801;92.97348;101.2694;94.69082;95.25838;95.27282;134.2886;132.6348;117.736;103.1591;109.0966;100.7267;92.61551;100.0739;107.585;104.9326;90.9816;89.23994;93.16354;90.40456;109.1631;87.69076;94.8409;90.62589;122.4338;106.3389;104.9056;107.7462;127.3296;111.4834;98.07147;125.3604;87.45348;92.60079;131.6837;102.0574;106.4724;120.5455;131.0231;141.9276;134.8713;101.9937;104.4416;93.22413;102.824;83.77065;129.169;137.1743;97.03429;99.59545;100.2273;116.0081;108.3443;85.04533;105.899;73.5911;114.108;112.6804;82.65211;99.4613;87.30598;112.6381;119.1816;92.9262;101.4184;127.2093;102.7233;83.83965;93.04829;131.7847;146.5415;127.4219;97.43317;134.7516;122.0123;119.6669;108.6299;131.1783;122.3028;130.5885;137.8301;95.16105;97.18314;99.87524;117.27;125.1025;87.93402;122.1819;140.5845;104.2919;104.4647;89.33355;101.8626;86.06706;129.1196;125.1664;108.0875;126.716;110.9542;130.9688;76.13865;111.2133;141.151;145.4204;96.74149;99.0639;89.84155;119.6666;101.678;128.027;88.46117;120.9195;137.4755;119.3188;106.2907;84.14075;131.1258;123.5084;92.65857;102.1766;98.85207;113.8395;77.14056;100.8279;109.6953;90.34986;95.55088;87.42106;71.85934;97.26607;92.1797;
116.2682;138.8568;127.189;94.49329;100.5562;98.256;100.5442;119.1074;74.83752;135.2122;134.8767;100.2596;116.4651;106.3046;97.00584;98.63128;129.427;140.7716;131.6963;120.9468;120.1074;111.2405;92.9016;96.0607;130.2527;134.8316;106.3825;105.4845;76.01694;132.8064;100.3964;116.215;97.07809;115.4867;157.5546;131.5161;125.6374;76.7374;109.523;116.8207;98.89977;104.7101;85.03926;90.87807;93.76654;102.2513;132.9679;93.19515;82.60675;96.32645;73.26491;91.97976;97.88715;92.94366;101.7609;88.10864;119.3329;124.117;118.1019;105.2488;110.9304;101.4122;116.9848;87.02517;91.25298;120.1633;88.22655;92.46382;94.37861;91.84611;100.261;79.64187;79.34554;94.62156;115.2181;119.2845;101.2078;125.5809;112.4444;115.8417;100.2198;131.5375;106.0975;93.75062;131.7006;76.31809;130.2986;109.2229;111.8788;134.311;141.466;108.9956;84.00022;101.5842;96.34923;81.42125;132.9957;135.9049;120.9478;114.8483;115.4731;108.6006;86.03709;80.01706;111.7479;76.55061;98.62151;91.63139;96.69803;101.0627;106.796;115.4038;106.601;104.2421;104.2646;119.6394;109.6228;91.05273;97.99751;123.7275;136.4174;113.8475;96.68782;138.6258;123.0528;123.0952;144.9144;112.4816;116.9306;139.3002;130.1057;95.57803;101.1733;97.26096;100.8151;120.1959;72.70277;135.0297;135.6154;102.2612;115.057;105.3188;98.68214;100.4222;129.9241;141.1193;134.4588;122.0939;120.5978;110.0862;92.11658;96.54301;128.2883;134.4842;105.9256;107.3581;75.91325;131.8887;101.425;117.9606;98.67054;115.9948;159.7357;132.5004;127.4681;75.92769;108.668;117.3548;97.18657;104.4062;84.62862;92.61971;90.88862;102.373;132.9408;96.02381;86.1124;90.80915;78.38978;87.43253;95.99637;88.82442;103.6264;90.82585;111.5213;125.8787;124.4836;100.8033;104.178;100.0219;115.0305;90.72718;94.88583;113.8597;87.14401;95.41183;82.2632;96.01498;99.11394;88.61118;87.45122;99.45262;123.3911;123.5142;100.3553;121.9374;118.3908;124.8469;104.077;125.0655;112.2424;89.1593;129.5055;72.58143;132.4034;112.2459;103.579;137.0274;148.3936;104.671;80.81977;100.05;94.59565;82.3319;132.6583;129.1785;117.2685;119.4117;103.3247;113.0966;86.69956;87.33624;120.5574;81.56593;106.1534;95.54872;98.85588;97.65106;112.6259;121.1832;106.3755;98.46957;108.0636;115.702;108.9684;86.94377;101.7119;124.9429;127.2782;116.3298;102.4509;133.7675;119.2379;121.3856;142.7873;113.5739;
82.29812;91.86976;99.74588;120.1943;133.9036;91.51589;117.0676;108.8602;133.4668;93.30747;97.94344;110.5101;71.337;102.8426;98.2104;104.4071;98.06097;91.40413;125.2176;125.1312;96.0749;110.8293;141.4516;123.8092;109.9821;111.084;131.344;131.9121;116.9478;117.2024;127.3778;121.0148;117.0905;126.3731;117.4423;116.896;105.7327;126.8757;98.54124;106.2977;123.2529;98.64063;137.2897;81.02624;142.9685;114.7991;112.8649;117.3104;102.7975;95.18508;93.79801;137.7555;122.1866;130.8752;128.8877;118.9336;127.1002;89.09691;89.26856;130.49;124.3553;109.7482;100.8406;78.96468;108.678;96.14413;139.3141;88.732;113.3037;118.4015;132.7664;117.3648;95.07234;113.9063;137.1898;95.13931;101.8649;85.08466;99.18275;98.92237;96.78719;114.1598;100.7587;102.502;90.49028;77.39349;109.3002;107.8572;107.3153;107.8881;97.67606;119.8524;128.6147;142.5256;93.45487;101.7966;99.74203;103.4436;97.55245;95.28267;88.30542;84.31033;95.31279;93.6175;107.5776;91.51268;95.83673;91.90198;105.5084;99.22612;127.6951;100.3869;127.1247;111.9775;111.4364;108.102;111.0895;104.9688;97.06605;122.1543;83.21265;113.4808;106.1827;114.2363;124.9829;151.0828;99.02854;84.51829;84.80722;93.13995;101.2439;117.905;133.128;87.39001;117.3115;102.0419;126.0243;87.367;99.61494;112.2858;75.50602;103.2741;97.91327;99.63274;101.518;93.08485;127.7028;123.2718;96.11875;106.7283;141.4638;117.5174;102.8401;106.0407;133.0531;134.6963;121.3211;118.9995;126.2605;116.6485;119.9138;129.7333;119.1145;115.8821;104.8967;123.8502;98.55387;100.4763;115.6878;93.89397;139.0399;83.21368;146.194;118.1056;111.4272;114.0423;105.8081;104.625;95.3241;132.8845;113.8744;134.3566;121.8972;112.9637;124.367;83.78452;83.60279;123.5889;131.6784;105.0256;99.85471;73.26506;118.155;97.76064;146.0617;92.42728;113.0307;123.1614;121.3906;118.4834;88.66668;106.6809;139.2226;101.5418;108.0334;91.78197;96.05058;104.8424;99.69948;124.4712;102.3394;98.30173;83.34857;80.07147;102.8698;102.1712;109.4967;107.993;89.99997;111.8875;132.9312;133.5545;93.79234;98.27756;103.6955;103.085;101.3088;101.1875;90.05009;89.54061;86.03497;99.28327;105.343;90.49613;95.74957;96.9359;108.9454;103.3053;125.6524;109.4939;124.8272;120.0077;111.1193;105.9121;105.3139;109.4179;91.33947;121.2609;85.11711;113.5882;98.18929;106.4647;129.2168;141.8419;99.39266;81.31568;
72.03299;128.2604;140.5842;105.2853;121.8351;95.85014;103.2135;85.97658;113.452;122.4534;104.3792;100.3852;99.09451;70.79523;88.05003;97.0994;117.9213;97.79118;97.11185;101.3244;126.7675;132.8742;79.40987;101.3458;92.16199;92.99994;108.099;104.0937;89.38876;79.70987;89.48277;81.33714;83.46376;101.5262;102.8084;91.65468;92.05709;117.4249;121.9727;92.92451;115.7015;124.6101;133.2284;111.5317;133.708;93.909;92.05524;129.7666;102.4913;119.6437;128.1748;108.3461;138.9888;134.521;92.95086;81.43809;98.26887;87.84852;105.8168;143.3178;124.5583;92.10226;108.5871;112.7213;104.7353;108.0485;101.448;122.8453;89.63249;113.044;104.0107;89.80865;114.2694;99.97131;132.211;121.8552;105.121;100.0809;116.9611;106.8437;115.3673;97.93365;134.648;117.3124;121.0577;111.231;108.933;114.2299;113.6459;121.3955;134.7677;128.5531;107.733;119.7206;91.98113;82.50824;90.68945;103.3653;152.2741;86.46884;133.2765;139.4115;104.0479;109.9748;101.4115;110.9321;118.492;139.4486;141.7944;119.2681;120.2988;115.9816;141.1022;83.98772;115.5241;124.2441;135.9023;97.50294;91.12542;75.64026;130.3468;94.61343;150.4678;112.7713;104.1511;126.2066;120.9524;119.4125;72.66257;129.7993;148.0211;107.3053;122.9986;96.898;102.6462;87.91853;116.4374;127.2939;108.637;102.8878;101.2752;73.51986;86.52058;91.44038;118.5338;99.05276;103.1293;103.2221;127.7463;134.0013;78.46454;103.1316;94.00798;96.00407;111.9064;106.6557;91.01671;81.75748;87.85719;76.16947;83.56201;101.8811;108.9136;93.47259;92.45099;117.4874;120.7978;94.63681;117.7661;128.0861;137.4486;114.1853;134.6871;96.07011;91.24788;124.3292;97.56575;117.8064;129.9895;110.148;139.8627;137.3119;96.49323;85.11014;104.794;92.8306;107.2742;145.9533;131.3729;99.41904;112.902;102.8658;111.1847;104.6982;97.00587;132.2355;88.94785;116.9349;108.4387;91.05219;117.4613;97.05968;129.6343;119.8777;104.3229;110.4219;128.5304;101.9189;110.1375;96.26766;136.4972;119.1871;121.8731;113.7652;112.7554;118.5714;118.7416;125.0263;134.3728;128.0822;113.1724;125.5203;96.78017;78.30029;96.75819;100.8582;141.9463;92.46005;132.9869;143.7101;108.6441;108.4482;102.6637;105.8279;114.1594;134.3114;139.8896;127.9987;132.9915;115.9878;135.4112;83.15359;112.8933;123.9537;137.338;99.86205;94.8036;76.73323;135.8442;97.82478;150.0536;112.3526;109.5399;132.1629;126.4495;114.3616;
117.2008;91.39331;96.99667;137.0539;94.5583;107.4026;105.895;133.5847;85.48927;120.2009;113.1386;111.856;112.3804;101.2056;128.1472;99.38879;120.1073;93.68471;92.63525;113.3055;136.9995;82.6658;115.4868;125.8169;116.9313;146.0925;102.4845;86.23569;90.76953;98.30806;108.7346;88.1394;120.7677;130.7131;126.97;81.43768;97.88496;117.1171;127.1479;136.6276;124.9473;147.582;111.9263;99.20416;93.76227;123.8765;130.836;107.0754;91.82708;104.035;95.25384;126.3965;91.8958;98.09431;106.8249;108.7296;82.06336;140.1374;81.99602;115.7937;103.3164;95.09284;95.06827;84.58462;102.0633;87.2662;101.5289;134.7772;91.94503;104.1268;96.87482;104.3692;85.77295;112.986;93.31078;98.55489;113.657;126.4543;126.9587;82.96231;102.9299;113.9441;90.2968;85.11694;120.7058;87.26837;91.99266;118.2663;95.33892;128.9939;98.30783;88.58636;86.37447;101.2908;89.77406;88.37878;118.6755;85.89928;127.438;88.77991;123.6017;93.02338;96.07378;140.9757;127.0926;132.1743;107.0486;92.49195;87.70036;139.1636;97.55305;106.4587;95.68251;106.2886;114.5127;95.10402;112.0496;121.2056;106.0534;127.5953;129.9179;151.2904;89.35888;136.1396;119.9566;109.3437;129.1185;92.69009;119.225;92.94706;95.39302;136.2871;97.85438;106.1491;103.5551;126.7679;86.04369;120.3896;107.4113;111.4615;112.7445;101.4187;126.2255;97.70321;122.9487;95.67722;91.75246;113.0746;141.8036;81.95667;113.9698;120.32;119.1634;146.0278;97.89706;86.67554;92.01598;98.09644;107.3721;87.32555;124.7072;132.5849;126.3785;81.99796;102.9317;115.815;125.5587;130.8997;127.2571;147.5199;107.1323;99.67834;93.70347;125.2486;131.0064;109.1745;96.98162;99.21339;105.1773;125.7279;95.6986;98.01459;101.6646;99.41988;79.18707;140.5066;78.26708;128.2973;99.23468;95.68805;91.58902;91.13044;104.5848;83.25311;107.8489;133.1423;99.98494;109.4198;101.1912;111.67;93.16073;109.366;95.76792;94.60893;113.1873;114.2755;135.131;83.46416;108.3831;108.8855;99.96513;84.56383;125.0585;87.18437;87.20862;108.5428;91.90256;128.3068;96.28112;99.61073;82.68015;100.6537;86.24126;93.08596;119.3689;79.57967;132.2588;87.36126;128.6927;97.76646;100.333;151.9493;135.6749;127.1991;111.917;88.7154;87.34588;124.974;104.5894;104.9342;99.12182;98.79739;123.2158;94.42294;112.3101;120.8188;100.8676;119.7131;125.9231;150.5239;87.44554;149.7285;115.6167;108.6627;124.8967;97.50893;
100.8618;125.3065;105.1927;116.6761;127.2316;106.1378;92.8059;100.2634;114.7356;152.6557;132.5551;127.5723;132.9972;111.8933;91.58213;85.23641;98.69499;129.7701;131.9604;104.1832;106.8077;89.88232;122.3516;92.91921;109.72;97.14965;93.68928;74.23737;122.8857;90.85117;115.5541;90.67522;74.34985;81.02005;84.3111;94.37401;86.45023;80.5586;132.8629;92.55244;95.60102;95.48877;99.39512;104.9744;103.2682;104.5392;113.9165;104.8422;116.8653;129.3867;83.8928;97.78003;108.6574;98.77364;93.78669;112.5542;98.06267;109.7181;124.7274;95.20709;110.5251;108.8822;87.83075;93.96247;105.4726;107.0329;104.8413;110.8106;78.6083;107.7383;104.7475;119.2846;96.03951;119.8598;142.6909;125.8901;111.0843;113.6778;89.63915;79.07716;114.7996;99.14096;131.0824;106.3303;101.7015;107.2339;94.91583;109.4358;137.4158;97.30471;118.5398;123.2053;127.2332;101.5881;141.5143;110.7713;90.25962;112.4782;93.77602;106.306;91.89643;72.98386;134.5589;93.43536;104.6674;101.7924;122.6712;107.2174;113.0062;125.575;130.5126;107.8739;92.73193;128.5444;103.5351;114.2176;88.36684;99.19139;122.8536;127.7651;93.83247;133.8069;136.8812;121.6008;124.0893;108.7536;89.12624;102.7339;101.1753;125.1868;109.6873;114.3978;124.7412;105.6468;95.06683;98.14039;118.4057;152.6591;135.3919;130.1163;127.8697;112.8398;96.85744;87.31003;98.82922;129.5537;136.7818;101.9475;104.348;89.34509;123.7335;90.40495;114.1257;96.99363;95.01357;76.02105;119.2463;91.85868;120.7317;92.64704;75.48885;80.99348;87.54365;92.07017;85.32568;80.20271;134.3;90.04516;99.71403;95.33613;100.7566;107.0956;102.225;104.6911;117.6008;107.6622;115.8084;129.6254;85.19891;91.97388;109.6214;101.5585;101.1771;102.301;99.33685;108.296;114.3114;105.3105;118.2692;110.2407;98.64528;96.35545;110.0146;103.2408;108.2816;107.3571;82.85361;116.2172;114.5753;121.5653;98.17537;115.0753;146.7284;126.0991;102.4941;119.3353;93.37543;82.01846;113.7517;99.34016;132.7087;100.2719;102.6339;110.1245;102.3452;99.32915;136.9444;97.01398;105.8658;132.0689;136.7396;102.7279;150.9152;110.4703;95.6041;109.5701;92.5876;105.1853;95.46162;81.12476;145.778;97.38567;105.1851;98.42352;123.6899;105.1094;105.424;131.3168;131.0709;108.459;92.93591;129.8325;100.3776;110.2469;88.26885;103.2584;131.4124;118.956;93.47923;133.4449;123.2588;130.4315;133.523;109.9137;96.63888;102.4653;
120.4163;89.30763;92.04132;115.8988;140.8958;86.98457;128.7839;147.2392;115.1082;127.8633;90.41209;104.6659;91.86853;105.2311;126.233;116.8762;121.7454;132.3481;129.0195;81.27418;107.9909;121.6134;135.0452;137.0748;132.2973;114.1721;88.24936;94.39761;109.0668;91.83652;123.5002;110.466;96.76372;104.0645;85.66773;132.089;90.74981;92.52683;100.4785;114.0373;78.49819;116.7175;85.00124;99.39127;95.12267;79.32578;95.88108;100.7188;99.68705;101.2233;99.51248;125.4567;92.99976;107.165;103.0614;120.4401;115.7664;86.52354;91.88988;98.36116;127.2171;116.3626;115.6509;83.74108;102.4952;107.8194;94.24098;85.45276;124.5002;88.90581;104.538;139.0526;91.86012;109.2719;92.63267;103.68;85.02488;103.7951;105.5078;116.124;117.7251;83.40797;131.6483;87.30805;126.5099;98.25774;100.9035;148.9596;138.547;99.95112;92.67473;84.11097;104.8859;106.7454;94.63722;105.9869;104.607;101.9772;106.3336;101.3704;108.0776;115.1396;98.94256;135.2989;134.2018;128.7982;98.34055;114.4443;113.4602;92.8021;133.1137;105.6214;117.5234;104.4945;93.9595;128.7896;95.43625;108.1852;106.8893;142.1828;122.0898;92.50301;112.5647;109.8493;131.2461;91.85165;118.7923;94.89025;124.6576;86.38186;96.32159;115.1405;141.4082;83.70487;125.872;142.8902;123.0242;127.8481;95.4414;101.4846;95.01756;103.551;128.8424;111.9588;126.8144;129.2688;134.9082;81.03529;109.1962;118.1873;131.8159;133.9544;140.3118;115.6882;93.02026;92.08591;111.5962;91.42975;125.3053;106.4486;100.4175;102.585;89.8298;132.6222;91.0332;90.70914;97.69814;111.1954;84.70095;118.253;89.68699;97.02127;97.32602;79.89725;97.50064;96.81314;99.17998;94.8377;100.1017;131.2494;100.3396;102.8496;99.88049;115.8111;117.5187;87.13918;100.3217;97.79501;125.2799;123.0249;127.9642;83.66348;109.1282;103.3529;100.5415;85.90448;130.5378;87.37502;106.3191;135.956;101.0476;115.8993;88.69219;105.228;88.86949;100.8048;104.0952;114.4705;117.1635;77.61674;132.325;92.14684;135.0361;94.12274;97.75563;143.8012;133.4637;100.1545;97.95957;85.80409;100.8528;112.4247;104.093;109.9773;108.3816;100.0329;110.2505;101.411;113.5361;114.2628;103.4631;135.425;138.1244;135.4521;91.21983;118.6809;115.4567;89.35561;129.6418;108.0982;113.9582;100.4124;92.01226;134.1332;102.7016;104.6731;106.4725;140.382;117.3;92.69852;118.3999;111.7844;126.7083;97.125;129.3783;98.66928;
114.8448;114.3123;77.59638;114.3826;84.66235;120.2896;110.4101;84.82897;98.61861;102.114;104.7822;87.29912;104.8092;133.8029;98.80885;93.95055;90.87952;86.72051;93.01258;85.5827;81.6244;98.75522;116.4548;120.0306;106.0045;79.28458;93.37822;121.8076;101.7832;88.04553;119.4975;94.96365;103.4923;117.15;90.1944;104.5155;86.07922;98.38207;106.5727;113.9774;101.3776;106.7406;121.2828;77.06861;125.1845;98.72392;129.0958;108.7412;102.3539;146.7155;123.452;114.1691;100.9833;100.8487;90.35017;113.275;99.29322;111.5475;105.6581;105.6626;123.4633;104.7591;119.2912;129.2803;117.3479;140.0961;124.2802;123.3923;96.38773;142.7037;132.1411;102.5423;135.6998;111.5517;120.7791;93.55419;102.2694;137.0314;102.4132;98.59323;98.99987;110.5655;94.25893;90.89478;103.6465;111.8752;119.2534;96.42484;106.8907;91.45245;106.9715;98.18812;106.9355;115.0327;136.8372;89.02539;125.1712;124.1409;111.6214;121.7418;87.72743;98.38033;110.8226;106.1926;120.5007;103.0383;124.7245;122.9991;126.9729;86.69307;111.9597;130.6862;129.7359;132.4824;121.6686;136.853;101.2001;105.5065;92.55517;96.82103;129.6278;106.9464;98.74418;107.6981;107.0827;132.8784;101.7905;102.2064;112.7462;115.6237;76.22013;117.3699;88.00846;122.4478;107.7785;82.24654;99.96569;99.74493;101.6324;86.27274;110.9918;134.6192;101.6266;93.68172;88.84692;87.78533;91.33604;88.09234;84.75762;100.6384;113.2219;116.6326;106.5079;76.11172;89.94266;120.6103;107.4139;87.85292;122.5037;94.71616;100.872;117.3883;88.47528;107.3005;88.86413;99.34455;103.4785;110.669;101.8675;103.0561;117.3603;76.11865;128.0284;96.95314;130.939;107.6177;90.73933;149.8126;116.6601;116.9938;106.543;95.9417;77.8755;113.2136;94.92113;104.1403;107.871;104.9506;125.549;110.6865;117.3613;135.1202;107.8263;139.2944;122.5007;132.8568;93.17356;149.361;127.5232;96.28452;133.7244;112.2293;112.6447;92.14044;98.93452;126.9667;100.0018;99.76969;87.5827;113.2515;88.32779;93.41701;109.2778;106.6989;104.8434;96.3682;103.2708;89.31576;113.0592;97.19911;106.2709;123.2146;132.904;94.92803;119.6566;124.5737;111.9291;126.5122;84.69321;104.5499;110.8936;103.8238;119.6535;108.7264;120.4283;121.0557;120.5057;80.32934;107.7543;133.3079;120.9911;136.6777;116.9626;135.1538;106.8154;101.1011;83.66293;100.7008;125.6807;104.6377;104.599;106.684;106.4566;141.6649;98.40462;108.5461;
93.61038;85.72318;84.00677;100.1761;133.0925;120.1083;107.637;119.895;114.5958;126.7886;86.94725;86.26876;115.3712;66.38422;104.403;94.28132;94.12373;106.1233;97.81471;126.8814;110.9611;94.12824;124.3806;140.701;121.4168;118.6022;88.51449;125.3904;156.4389;111.8798;98.05286;113.3808;123.1136;123.7848;113.4316;115.8458;132.3211;118.5865;136.4609;101.233;116.4993;97.76743;101.3535;135.5427;94.14382;131.2488;122.6979;95.49475;101.9395;111.5178;103.707;91.08143;131.479;129.4382;128.6058;119.499;135.8591;125.0506;70.69199;95.49373;134.1256;139.7354;100.9346;99.98887;82.49551;115.3035;89.43168;136.2513;95.27244;99.44521;137.3426;134.291;121.7269;93.821;110.844;120.0943;98.70462;95.13377;88.04889;92.66426;83.67106;107.0353;120.9393;101.9225;88.48903;87.27598;90.7863;104.9271;106.1562;114.6694;88.29367;91.11843;133.021;127.9991;116.0984;87.25978;102.9895;102.4066;91.43969;96.43884;111.2846;97.38829;91.70807;99.43557;107.7939;88.10557;98.83745;93.85065;99.10719;95.40489;105.2165;114.6627;86.63736;134.5946;119.8743;113.1015;107.4873;119.6103;97.35241;89.35197;145.6222;81.0542;100.7945;110.1983;116.0527;146.6922;132.7829;104.3725;86.50021;86.89182;82.34956;98.39512;132.2137;113.7806;100.2501;116.6218;109.3532;120.6544;85.16291;83.40182;109.9537;70.87975;100.752;95.39433;87.66251;107.8685;96.72845;125.3579;110.9022;88.9343;117.372;138.3707;117.5709;112.4115;87.53554;122.8565;151.2972;117.2233;94.899;115.509;116.7416;125.1806;112.6889;115.2871;133.3721;112.2969;129.1177;99.26021;112.7353;92.15678;100.3082;132.9105;90.91428;138.1512;121.0037;98.2102;103.5482;113.5962;95.1031;100.7832;126.8618;126.9969;125.2918;122.7918;127.3597;114.5201;68.15896;90.70415;117.4212;142.4475;102.8747;100.238;85.23251;113.6169;93.34039;140.6373;93.17643;100.1827;123.7447;131.7254;109.4687;93.8732;114.5937;124.8397;97.4787;110.6328;91.6576;99.42207;85.12913;109.0619;111.6332;112.1661;84.70859;85.26472;88.00544;108.0088;100.2056;109.7226;87.21624;86.35554;120.0112;123.8612;119.8368;84.92466;110.0535;98.7614;96.90654;98.29436;107.2457;102.9921;84.94164;98.41263;97.82964;92.85085;104.3163;97.95944;101.2284;104.7219;110.7778;119.1392;91.80165;134.4642;112.2566;121.8317;101.5862;122.5814;99.09475;93.34972;138.6611;76.88792;99.66272;104.9537;103.9429;142.2384;136.802;101.8168;
147.7348;107.0269;96.42575;91.66221;117.1933;84.87119;121.1681;90.60883;122.436;134.6385;140.6431;104.9525;80.12826;106.1318;139.0811;97.44646;102.8969;97.46297;96.37254;96.84351;108.9323;122.2352;100.1874;85.89238;82.28081;82.52891;98.92673;90.27335;108.6021;97.47514;103.969;117.7097;136.0699;136.8362;108.2152;101.7057;109.4713;87.42352;89.03898;108.555;89.77259;81.48102;95.88848;91.71886;96.01214;91.64867;86.82023;100.3809;91.29797;120.0729;114.744;116.3914;116.0018;117.5525;128.6294;98.26048;121.8872;96.6871;101.6809;116.9659;103.2218;120.0107;111.2439;127.8671;144.885;143.3313;98.4143;103.042;88.37902;80.29369;83.85321;123.9971;139.0771;101.2136;126.9345;95.23531;111.9219;82.77293;97.65405;108.8283;70.25089;112.8201;96.68718;105.227;107.0845;95.35626;122.3416;103.6428;86.16549;114.4697;134.5346;104.133;107.7397;92.64235;140.4577;131.5851;124.4119;115.252;139.5533;121.0326;133.9076;107.7808;107.545;128.6176;108.3368;122.1909;99.57022;97.50146;100.8192;93.02026;127.174;90.57821;130.2685;140.4176;101.089;134.4692;94.38223;100.6208;107.3392;119.9824;128.6811;123.6338;138.4971;106.6928;139.8389;85.12572;98.93372;144.5085;144.5062;108.2691;98.47977;95.75352;116.942;82.34695;121.4391;88.37819;121.2001;137.8921;146.4294;106.2511;80.00663;105.0658;144.0011;95.69891;100.0283;98.56603;98.25053;100.9752;108.5154;119.1029;99.34817;83.26074;81.95274;84.94924;102.6932;91.31273;109.7031;96.61143;107.532;115.5925;134.1234;138.3536;109.5098;105.7495;110.2896;84.93471;88.2457;105.5961;89.42762;83.88794;99.59473;92.76851;94.23479;91.68827;89.08728;99.71543;97.05411;125.5548;116.3409;114.2271;118.7721;112.6604;121.5946;100.5142;128.2902;94.17191;98.89894;113.8621;101.1435;121.2984;108.5246;118.9499;141.3015;143.6482;96.50285;104.6635;90.36259;85.8826;82.42691;129.2306;144.5264;108.3701;132.0755;98.54043;116.177;87.92001;106.5705;98.61929;75.31062;118.1251;98.14912;103.1696;109.7464;90.94596;115.4785;105.9571;89.57146;109.4307;126.5232;102.1343;107.5108;93.71254;134.5767;123.2605;120.2423;114.6388;135.2624;120.6503;138.8413;116.0903;107.8786;135.7744;110.9624;127.5367;99.85388;101.7874;106.7717;98.40399;134.5122;81.89837;136.2488;145.3127;100.8655;129.9186;99.00172;97.79175;102.8395;124.2156;132.8793;118.3749;130.391;104.6912;139.6223;86.13476;94.0287;135.8028;
105.645;149.1363;150.255;124.9086;92.08926;128.9412;130.4316;99.45805;114.2213;116.8632;109.5236;98.89842;92.92107;118.1474;100.9065;97.60355;97.60484;81.17287;114.3622;98.13192;111.1023;111.312;95.50106;128.2139;123.5556;135.0407;95.19414;97.35082;100.1656;94.49525;92.30958;99.3473;93.1784;82.26359;115.3077;85.08869;92.27599;99.17003;83.87618;92.96649;90.0902;113.3131;106.9836;113.869;121.0707;116.5398;117.5135;87.7332;103.639;100.8893;116.6258;129.0288;79.46184;104.1793;120.8555;118.6758;136.8826;124.7412;86.44624;89.71358;90.84235;97.31616;87.14928;146.7702;123.4408;112.3346;132.4168;111.7272;128.2766;100.8962;91.48503;113.5296;82.92889;132.7099;109.4507;105.5377;94.90877;93.26233;124.4991;117.2205;102.9334;109.9186;149.6506;111.796;108.9746;107.7735;128.198;145.3492;117.7947;113.5098;125.9211;108.5828;124.2478;113.0698;108.4481;116.0044;102.6498;116.3048;118.407;91.97829;96.91812;99.37523;125.8057;80.71924;131.7176;133.465;90.07629;126.9672;105.7007;96.52145;94.29905;108.9763;104.8616;120.8553;148.9765;119.4988;116.3442;73.8349;108.6307;132.4736;146.4205;91.58739;82.29835;77.14784;124.4954;98.8556;121.9592;107.427;98.46687;142.6694;150.9338;124.9901;92.56642;125.6452;135.7454;94.87967;118.2915;116.6223;107.4762;94.80179;97.0949;111.4238;99.3681;93.89909;91.39304;76.79638;115.7232;98.63038;112.3841;108.6995;99.84064;124.0223;127.3469;136.424;93.09747;93.99221;103.6211;89.65214;90.17994;96.31651;86.30399;78.93719;115.9491;86.2282;92.61563;97.9183;87.94842;89.40479;93.33415;114.5831;104.7627;110.2368;123.3912;112.6463;114.7173;85.77964;100.2016;93.92746;115.9571;131.2724;78.7049;104.2028;124.8575;120.0209;136.6249;129.3884;84.97939;88.86323;92.84914;90.54234;90.17926;139.7988;127.0952;112.0716;133.4753;114.401;132.2644;101.3633;93.10551;112.2182;85.93103;123.4615;107.5316;97.25205;93.36501;89.60708;125.5934;122.7244;99.49821;102.6415;148.8921;113.8802;108.0778;107.7923;132.3181;146.8319;111.3756;117.7142;126.1818;112.4389;124.2249;109.5168;114.5597;112.0005;111.0586;121.1334;118.3824;94.31296;101.3287;99.67699;123.1871;82.08115;128.8369;123.953;90.06371;122.8756;101.9205;96.33417;97.79898;116.5254;106.3536;118.2639;147.0919;121.5475;116.4308;73.71134;108.1853;137.0826;139.2308;95.36773;82.52443;80.40466;124.451;95.53511;128.4542;103.5766;
100.7304;136.5852;133.7177;137.1957;108.2927;129.1721;103.7274;121.2927;130.7537;121.6033;137.8799;110.3275;145.2724;110.2954;85.41066;89.50583;115.1915;124.1524;83.94403;132.8263;131.4225;90.82563;108.7417;92.07805;91.62139;98.11287;122.935;124.7004;114.9737;121.4807;117.6497;123.9544;86.04482;94.30369;133.439;137.8581;94.70404;92.79466;75.0527;115.7116;97.92825;131.9957;110.676;118.4904;139.3534;144.0531;98.78925;74.37485;116.9846;128.8064;106.0802;125.6045;99.28295;109.5632;89.77962;100.9173;135.9438;108.5831;87.34479;94.46027;83.214;89.72819;103.9678;101.0215;103.4064;104.0596;119.9276;147.5472;131.178;99.24614;89.25394;98.06037;104.4343;102.3555;116.6367;93.18916;102.2364;106.8172;79.23026;83.44362;112.1198;87.41746;92.52418;91.92838;115.2099;104.3374;94.83699;107.5924;105.8399;116.4247;97.81055;117.9628;94.78062;93.95739;133.3446;89.81818;118.2019;112.6572;122.9072;139.4311;131.0981;91.58192;83.02317;84.37498;92.69461;92.18472;148.9205;137.2419;105.2192;131.6077;93.11281;107.7259;92.77283;91.95147;128.3275;94.11539;113.5315;106.6793;97.19896;96.18275;106.7674;130.5298;109.8594;101.3455;113.3104;123.9165;121.922;102.1431;100.9042;142.216;140.7608;139.0107;110.102;127.2403;103.9304;118.0791;131.3908;123.0743;140.5464;110.3649;149.1806;114.394;88.38773;91.60957;115.1874;129.4289;89.37584;134.5163;133.2025;89.12041;108.4234;88.982;91.32037;98.20055;124.899;124.7552;117.9484;124.7407;121.0412;126.4337;85.61903;97.99679;140.1704;139.5951;95.76765;90.19693;74.78617;112.2399;97.61463;132.0998;112.5374;118.5461;141.5907;147.5265;102.7923;77.17383;120.6107;135.835;108.9082;126.009;99.13702;111.6301;79.73695;102.502;124.3389;107.2227;85.26161;92.33879;84.82059;101.7685;108.3686;101.5302;104.2253;104.1897;120.4465;158.1462;127.1241;97.8205;91.68224;90.23036;103.9124;101.2667;106.4823;99.38991;92.22453;101.9367;90.75425;89.58514;115.6699;93.21992;95.15768;92.27457;115.0523;106.35;84.4987;109.2285;96.09969;116.124;95.71627;115.4184;94.64594;103.3012;133.6685;87.24721;119.7645;109.9986;119.1618;147.829;126.8132;92.85111;84.81418;79.11373;92.68587;92.13972;137.5346;144.5705;93.24648;122.9599;101.509;111.2736;96.64489;95.30899;127.0253;92.94598;113.1715;111.6099;86.19502;99.96512;97.02087;130.2146;107.6418;99.00903;113.2033;134.6176;122.2344;99.42113;
91.59721;92.81155;118.7964;130.8954;82.42437;129.4189;133.1691;95.39707;106.3017;89.90556;93.24191;99.78383;123.5402;126.5568;136.8183;128.2678;120.7664;129.6707;101.4919;98.16172;124.99;121.0733;114.1468;97.81902;84.01741;111.0576;86.1706;128.0252;92.3729;120.0723;130.1118;145.2111;103.6822;93.69318;127.6368;148.3082;105.255;125.3214;108.7607;93.43816;85.47836;109.8922;136.5966;92.60829;83.09486;86.58784;94.54294;107.5948;118.154;102.1363;117.3038;95.43713;125.3247;141.5644;126.6314;98.58123;88.82059;111.0481;100.0862;99.77749;98.67736;94.81851;78.89009;92.20156;87.04144;86.74763;109.997;92.49895;90.90589;91.07495;112.8586;108.7489;94.66063;106.6501;106.6268;116.6344;100.3015;120.0393;107.4436;95.43135;131.3808;92.10619;133.3225;111.4339;110.4099;120.1257;147.9744;95.61438;96.82854;82.34324;76.72039;97.05377;128.0039;137.781;92.3351;126.108;89.94788;127.9725;101.5528;105.7887;121.3444;96.70553;126.7809;94.15047;94.41357;106.3481;105.711;122.2841;106.0944;88.39619;124.6241;145.2567;124.6912;101.6867;115.1254;128.3095;139.775;134.3609;107.8687;128.951;103.2825;131.9722;119.2373;125.5745;119.0736;107.5649;112.7751;95.48753;87.16351;93.55504;117.0974;129.2569;81.52441;132.0321;133.1392;93.05927;109.3375;89.02414;87.40315;105.4874;124.8008;122.2604;132.4297;126.552;116.4384;131.0402;100.6387;97.17562;124.6711;124.0813;115.0508;96.45054;88.07968;109.8411;81.34497;135.4584;94.39443;115.431;126.2744;144.3797;100.6543;94.45278;127.1235;148.1123;105.9562;127.9004;109.6457;92.10315;89.57771;108.6847;130.5057;98.94843;83.75923;83.97044;92.67609;109.8855;103.5931;98.71463;107.0664;90.36623;128.6472;143.4975;132.113;99.8223;96.53078;111.4963;103.4125;106.3859;96.72582;96.61544;71.94072;99.26657;91.95615;91.60914;116.3232;93.38141;93.8331;93.30634;110.8621;116.9202;93.07455;114.1666;101.1095;127.6927;100.337;123.3015;95.90777;97.33133;116.0005;88.84946;122.3931;105.9438;113.5298;121.8966;153.8954;96.83179;102.1519;82.89896;82.1554;97.60014;124.9396;143.3018;86.57555;131.787;99.58447;131.8411;105.552;107.4375;125.4817;95.29391;122.1094;100.2331;90.2949;114.0337;103.0566;126.8053;105.3842;93.90827;114.2376;144.9247;114.7317;96.52834;102.9439;123.1685;144.0903;131.8798;110.4963;128.6308;108.7985;132.6545;126.0121;126.1956;116.1398;112.4299;106.4204;100.437;
101.7333;111.9376;115.5289;121.0015;127.4191;113.3441;81.8106;113.0364;95.65444;111.3533;127.964;98.94598;118.5458;126.0794;122.832;145.9356;138.5947;105.2034;92.07677;89.87689;100.5415;105.8585;151.2536;137.8753;97.04296;108.8198;108.6924;128.9053;102.4957;84.71158;122.3955;82.3772;114.491;113.9521;102.9606;112.0518;93.84961;140.7011;111.4799;94.7628;108.929;130.833;104.1148;100.811;98.82213;128.8808;146.0328;114.8933;96.62514;118.575;106.6824;118.1481;124.6206;117.0644;124.1695;125.7418;135.5657;103.3363;100.6283;94.93112;89.66336;131.7188;92.6827;127.1725;119.0184;97.64986;131.054;102.4845;108.1706;94.98448;106.0106;118.0904;120.7612;144.6005;118.3186;139.6518;83.80778;112.5586;140.9514;142.6355;104.6469;105.5538;84.23221;117.253;103.3374;150.6226;116.0274;115.8939;132.5343;128.0482;117.4369;90.13955;124.5193;120.876;109.3218;111.8997;102.8399;115.8195;96.83914;109.2652;114.7844;116.3532;93.7887;87.78362;80.39828;98.23608;88.82642;100.7604;102.6817;89.29033;128.8289;124.4595;120.1512;89.59292;93.25961;91.19707;97.73881;96.88013;101.1783;107.99;92.83148;101.0241;91.93285;84.84305;88.23353;89.01277;102.7799;90.72876;105.2235;114.8569;116.2785;115.8032;122.5436;114.1754;85.53935;111.8917;96.33138;112.345;124.8549;96.04521;115.9285;122.4968;127.1745;145.5663;142.4522;107.9477;92.57584;85.32838;96.04441;106.5687;154.9526;136.0333;98.48282;109.6315;104.7126;125.3859;101.2492;81.92547;125.9755;81.94316;119.2857;116.9812;102.8057;106.7761;90.62668;141.7227;114.6562;93.23882;110.4516;131.7253;100.2181;97.70351;99.86221;124.4267;148.3054;115.105;105.4802;116.1067;112.7353;114.3223;119.4189;123.5031;118.395;122.9796;123.7999;108.0881;103.6086;95.64947;93.17033;138.5997;99.80597;133.0084;126.9006;99.75181;123.7865;106.2578;101.1497;97.3408;109.5623;120.8498;113.3404;139.552;114.108;130.6903;74.41295;105.1711;147.3716;140.5603;113.8539;103.2156;89.61578;113.442;98.60519;157.9022;110.443;113.2427;122.0317;133.4843;123.7236;93.6558;127.4713;131.9543;115.0239;117.1605;108.1378;116.0409;89.72927;118.4053;108.6931;118.9669;95.50884;91.03475;75.27001;94.19196;87.76616;96.03705;91.28078;86.33862;132.8099;122.3264;127.8147;85.6582;98.02376;92.46454;94.21803;102.7486;94.37399;106.3682;84.1114;105.8401;97.52561;88.27525;90.75699;98.53576;108.333;95.49239;
106.1146;87.38168;86.95864;83.16823;89.80266;103.6729;105.4878;110.543;104.9293;109.1149;149.4352;127.5701;97.90004;99.49407;94.68813;98.4329;109.1046;112.0153;94.62571;92.85249;107.531;96.21056;87.03322;109.111;86.10043;87.13756;84.97185;113.8428;103.6186;90.24664;115.0558;106.8265;113.3505;97.28316;107.3573;92.88294;89.83979;123.9981;89.06306;128.5179;113.0585;107.5288;141.0528;124.5105;92.38311;87.69668;81.93247;85.78265;98.57951;143.2527;141.3108;92.77831;126.1144;100.4961;106.1365;88.72672;87.82766;118.8212;86.37885;113.2999;109.5425;90.13866;104.9295;107.929;130.0494;108.0875;94.13142;113.6651;122.2743;113.0026;102.4061;106.4614;141.4764;125.3759;142.6119;105.7617;131.4308;113.1351;116.3208;122.1784;132.3042;133.7948;115.5423;134.7721;110.8415;99.77078;92.08701;114.1988;127.8543;83.0801;125.2065;131.0822;87.38853;99.80353;94.81106;92.6304;97.53886;124.0393;119.2365;120.5984;125.47;117.1027;127.6031;97.87885;100.889;130.5616;143.2263;88.81628;91.32349;81.20685;108.4739;89.91541;140.3654;112.2082;125.9278;128.2321;147.6089;116.6085;75.66026;116.6982;129.9933;106.6533;120.867;94.57191;108.9825;83.59576;105.4679;134.4314;107.5488;88.72882;90.80107;84.09602;93.68492;103.2742;105.4746;113.3486;108.0625;112.845;152.1008;123.9205;97.16805;96.22301;93.38781;95.94296;111.3126;113.9978;99.34422;94.25961;112.5435;96.23927;86.82072;112.8849;88.57321;91.83733;86.79286;111.1751;102.0055;88.27464;112.8854;104.9884;114.6702;100.3667;111.6566;94.99917;93.59315;125.4044;88.8504;132.6138;115.8922;112.7454;143.3992;121.7226;90.70611;86.74234;80.12818;84.06998;102.4487;151.3778;148.7531;99.39514;134.4372;91.63168;111.3412;90.31071;91.11799;123.3398;90.67882;103.1879;106.0058;87.28802;93.34814;96.47459;130.3265;99.08541;94.8103;108.7592;135.7826;124.6797;106.2608;102.5416;142.5081;135.989;142.7646;106.8913;129.0489;110.6169;120.1786;124.027;136.7693;141.6451;122.2802;142.7182;118.6418;90.93446;96.93852;115.99;129.8026;83.1667;130.21;122.9769;85.8431;97.78696;85.6413;83.7298;97.43581;112.0993;117.509;113.2252;134.7222;126.3335;132.1217;90.74409;99.97632;136.6574;143.2236;92.26639;90.99376;79.97401;114.3313;93.29423;144.5402;117.0848;130.3491;133.4695;151.8977;104.6251;80.23133;114.7143;131.9357;106.7512;125.8027;87.70801;107.236;81.7509;95.80021;123.6644;
124.768;124.6206;114.464;127.8702;102.598;90.66752;85.86966;111.5697;132.7008;112.9035;94.83798;105.663;95.56654;92.2533;103.7823;108.5201;97.56118;88.20224;109.3596;130.8334;106.1543;81.70233;95.95471;96.19266;96.12891;98.69173;94.40537;98.36409;87.86549;92.82452;101.9336;97.29848;98.08711;87.24941;99.63708;91.98331;104.9046;108.3088;89.79758;117.4562;118.5568;129.6482;107.9632;113.3664;113.4651;94.45096;131.6331;80.4051;114.7111;114.8292;118.3202;128.8032;146.4896;94.83653;96.85856;104.6767;96.72882;87.14622;126.7717;132.0386;106.2242;120.0247;114.1684;122.5159;100.2376;87.23033;132.0491;92.28987;120.6153;92.16708;92.0295;110.2544;109.0601;139.5444;115.2852;110.3163;130.7299;124.012;115.1979;106.1219;96.42319;122.9607;122.5958;117.2346;89.07903;112.9598;110.5803;118.105;118.785;119.2583;121.3448;111.6687;129.3075;97.91734;107.1428;108.4034;101.5378;129.7143;95.06359;132.433;130.8771;93.34781;105.7411;98.23478;102.7785;110.3985;139.452;119.1878;138.7361;129.6174;121.0041;122.7073;84.2738;100.6114;136.7138;132.7008;114.325;90.83781;89.88107;134.8479;103.6263;124.997;95.97028;112.1921;139.9972;139.6271;122.6538;94.32919;129.0978;129.3511;117.6059;128.935;108.0341;89.65545;88.24512;111.1675;133.3936;114.5421;98.98489;104.0326;96.79301;97.33905;102.9734;114.3994;101.2161;92.10921;112.2435;131.8162;111.5072;80.67622;97.972;95.52747;95.87133;98.98503;98.059;96.80531;88.6207;97.02734;101.0495;102.8934;101.3004;90.25943;102.3173;92.82033;109.7464;106.1787;91.7471;116.7233;118.2681;129.9867;111.8654;111.6947;111.1606;97.12185;129.3554;84.73615;120.1962;125.6271;129.6858;131.9326;150.168;91.20049;95.68256;96.26134;92.72977;82.62087;135.0659;133.9177;101.8622;121.6982;108.0075;119.4028;98.8005;94.62454;133.2052;92.91537;119.7405;92.73339;101.7779;106.5996;111.5535;137.5731;109.2765;108.4858;129.2554;124.6312;101.5422;115.6268;101.4572;134.1207;134.1497;120.2211;91.95221;108.9836;109.314;109.1552;116.1275;115.0152;125.3422;113.5929;126.9445;96.72265;103.1967;100.6334;98.27941;136.4595;93.52043;130.6034;128.0774;97.47945;115.1564;96.27319;106.9298;109.6834;128.6471;117.4998;139.821;127.1619;109.0713;127.4971;87.29816;108.7415;145.761;133.2681;115.7971;90.71143;87.87376;126.9769;101.1832;120.6552;99.53139;114.1433;137.5824;138.2031;118.4319;87.11052;
110.413;88.39659;112.6351;133.1828;88.3735;107.4244;119.4796;115.0724;127.3502;127.8678;102.1902;100.7639;98.29055;83.16276;116.4255;128.287;140.8848;102.1674;131.1959;115.493;121.3558;90.53207;87.21872;121.5922;82.88163;113.1715;111.4737;110.1615;113.5612;80.25726;137.7054;111.1586;87.45856;103.8128;127.7647;129.1848;106.7862;101.6197;127.0162;120.8638;110.5402;107.8787;114.6147;109.2693;122.9737;114.0603;135.2678;129.8455;114.3272;115.195;104.5254;91.20239;97.92587;97.46371;127.7598;83.16269;120.1064;141.2723;100.7039;111.5499;116.4213;96.20091;102.8715;137.2086;111.729;111.0276;145.8508;120.7657;125.6363;74.60517;99.45318;129.6059;123.6382;93.69579;99.33952;89.76749;128.6235;88.45002;156.9473;93.2924;119.8713;136.2072;146.403;124.007;88.212;112.0982;122.8064;104.4325;113.9311;93.93292;109.348;102.5253;110.8604;101.6056;106.2089;90.27692;81.68623;77.53631;95.69808;109.6987;101.8704;104.1767;92.98643;107.5308;119.4892;125.5387;82.49241;92.22783;99.5876;87.92914;107.6065;107.3646;100.5261;80.48707;98.22882;82.18566;88.85162;97.77224;91.63869;95.4935;84.98949;117.8105;112.9561;97.84124;134.2515;111.4688;116.616;114.0045;110.2182;90.33093;110.3288;124.9863;81.5697;109.2617;117.8593;116.0153;126.6175;123.2981;99.27978;98.46207;93.71381;82.17258;108.1192;128.4317;141.5149;104.685;129.5191;108.317;114.1134;92.62553;86.64407;123.7124;83.59892;108.6189;109.3514;108.6262;109.6397;78.89841;129.1056;112.1881;88.85708;105.9011;126.563;122.5133;100.9696;103.4044;126.3253;122.9803;111.3709;103.4375;112.4651;107.7427;119.752;113.454;128.64;131.8406;118.7365;118.6415;104.3909;88.3681;89.06006;92.60102;128.8071;90.56068;122.9944;137.3796;100.2643;111.1744;113.6009;97.70038;101.1247;132.9014;119.3415;115.5631;149.7818;124.8931;124.4501;80.3504;100.6668;139.1766;135.1013;86.47031;96.93762;88.58602;125.4272;89.39098;144.7928;98.32642;124.3853;139.9415;146.2438;120.6929;79.80811;106.8689;123.8333;112.6985;113.7879;94.14456;111.9015;101.259;111.1447;103.7013;110.3986;85.1664;85.00101;78.78703;100.798;117.483;105.7974;108.0622;93.1392;113.3801;127.6604;120.969;82.90756;90.17458;99.67583;89.37868;103.3778;110.919;101.186;80.78124;100.0163;82.71627;84.87982;90.25948;91.50941;100.6863;84.88387;118.0277;115.5723;96.60395;134.5871;113.6438;121.0259;108.252;
121.1293;117.8666;124.772;110.2199;118.6694;134.6207;126.6655;111.9941;79.40164;121.7232;134.1237;93.22698;125.2347;92.8364;95.46964;84.99645;93.27832;127.982;92.8529;81.20926;83.91543;84.57225;108.2149;105.7451;99.09245;105.0489;86.03287;122.733;149.3719;110.6319;84.54028;90.79095;108.4961;110.5566;110.2608;94.68937;87.11488;86.09956;94.33767;99.75924;92.30315;117.6981;93.16013;103.5665;98.25448;123.4657;125.8005;102.4128;113.6096;118.8161;110.5449;106.6502;127.8035;89.50569;101.8825;125.6167;83.19292;136.8733;118.6337;117.2698;155.7724;117.6568;107.3191;98.57182;88.68508;111.4549;85.46627;147.6861;138.2869;100.3903;111.8959;96.72484;108.1453;97.33469;95.66415;109.9051;95.04575;107.6058;96.14969;91.70396;89.68055;103.962;116.8665;105.323;93.0827;114.2815;143.5325;117.8022;95.40695;101.8229;115.2308;143.9405;140.1648;91.35754;115.8245;108.9888;135.2301;136.7955;137.4328;115.9931;106.3149;125.1507;94.4563;108.4891;96.06377;122.3292;132.6984;95.96026;136.6763;143.4246;108.5148;120.5444;100.5017;104.6009;95.82338;133.5219;133.3337;115.4296;130.6374;116.8729;122.801;100.7798;102.5801;133.7608;152.1261;87.50359;107.9845;95.54292;121.8054;118.2751;127.6612;111.3912;119.3397;133.4556;126.9696;113.0497;77.20229;121.55;134.8603;95.15747;123.7743;91.91525;97.13266;86.65955;93.70033;128.3135;95.17478;82.14972;84.32537;83.56615;107.3675;106.2511;97.37994;104.7423;85.62209;124.7533;149.2265;109.7944;85.48438;92.33459;110.1793;111.0537;112.0866;95.5248;88.6404;85.24177;93.54427;100.2528;90.6483;117.3758;92.73033;105.4252;95.30796;123.5995;125.7741;105.377;115.8311;110.526;111.0926;109.6113;136.9105;87.09908;95.0909;122.5956;85.32119;131.3117;116.439;106.6985;152.8261;117.672;104.0706;105.409;96.43186;109.1586;86.0225;146.1025;141.9809;96.38499;114.6093;89.91532;106.788;85.68899;95.44402;112.0574;98.8874;106.7788;101.2553;99.9612;91.65513;96.20739;117.4249;108.2658;100.8774;111.5496;135.4443;114.8772;96.96892;97.78033;113.0252;132.4269;140.9191;91.23461;112.4698;113.0456;139.916;134.2326;135.5466;115.8514;110.9006;120.6397;98.79244;99.48746;94.10152;110;132.3943;98.18056;144.9017;142.2935;113.9676;126.7045;98.54484;96.80225;94.1872;138.2065;144.1825;112.6576;125.0205;112.0644;124.6141;96.74025;100.5209;122.6938;152.9583;87.36623;104.7679;99.36465;
109.9373;108.0165;90.38232;147.5283;123.0423;108.135;105.5842;107.3554;100.4587;115.1235;110.2667;118.5976;90.83772;88.29494;109.7995;112.7052;115.9644;135.2177;97.99843;125.5237;121.6831;150.1257;80.70885;125.8758;123.5385;104.1116;125.1305;108.4679;106.9787;95.57838;81.28118;118.0593;90.54842;103.9926;91.32072;124.9305;92.66352;100.0693;112.4786;113.8695;130.7222;112.0931;117.1649;118.7052;110.1126;77.64475;108.4258;115.7268;124.4356;90.30566;131.9471;135.3201;115.2265;133.5951;91.44219;100.9887;109.6724;102.468;133.5374;97.97951;119.8036;139.5166;128.4281;86.44769;88.28004;128.9171;118.6413;136.1114;123.7667;121.0027;108.743;109.6848;103.7246;97.57355;141.8329;119.5392;88.80438;86.44829;91.92438;144.8009;95.52483;108.3154;99.2607;101.8074;77.63173;134.5145;73.37714;107.6837;97.32913;84.60442;94.26593;104.0806;95.53361;90.52686;86.88462;111.2352;90.68732;101.996;87.51965;103.0541;90.86176;89.51633;95.82975;96.22615;122.6146;130.2854;117.2734;103.6517;96.49834;99.58761;106.5209;82.5544;111.4285;98.98278;107.9282;123.7069;90.83338;114.8432;92.41766;96.0759;97.90205;100.9791;114.6669;101.5058;119.2304;94.45348;129.1085;93.64585;112.8344;109.3935;91.8086;144.9909;122.2988;103.646;105.8159;100.5851;94.01597;108.5142;112.0398;120.4369;95.5346;88.69479;109.4853;107.7426;119.7212;137.2603;100.1985;123.6614;121.7325;145.3464;80.71809;119.531;115.9619;99.231;126.7989;110.9939;111.1632;97.20193;80.38912;113.7472;93.03323;107.0428;92.79601;123.8823;91.88101;97.38442;112.4921;107.8414;122.9277;107.0292;118.7822;121.3498;112.9455;80.36819;107.0167;112.4809;133.9415;90.04564;131.602;132.4012;118.2304;127.2104;95.41953;87.58209;102.8869;85.70782;135.9962;101.8011;130.5133;142.3917;133.108;89.06506;90.79932;121.8428;118.5892;139.0162;131.7038;117.0824;103.8176;99.88673;101.2956;88.00519;140.9006;110.394;91.2088;89.20454;86.93666;146.828;103.8654;108.0255;98.96074;99.27315;80.09213;128.1019;76.94378;93.81983;95.31709;74.37419;94.54506;106.6951;102.3735;89.9025;92.01556;117.447;88.49314;93.77307;85.72366;107.7269;99.77064;87.34037;91.5415;91.54202;124.9723;125.6239;114.4722;93.90767;96.33304;99.45979;102.5141;86.8847;115.0141;96.74343;105.685;123.2042;95.54352;110.2632;96.75246;87.3811;95.86527;89.77197;114.9928;104.0892;126.8361;93.81555;135.3666;99.35358;
101.7242;113.5502;93.66993;93.66491;93.11806;103.9577;96.06257;95.59389;102.7239;96.49986;100.0797;106.0329;122.3795;110.8715;92.76761;105.7197;103.7196;97.61724;93.74495;92.26989;100.8457;99.7352;93.01334;80.80582;89.1981;115.0042;102.0587;92.26302;84.12041;104.1631;119.5442;101.8685;130.1294;107.3623;124.799;96.69107;135.0202;114.1956;114.2409;138.1055;97.23843;122.7638;114.8133;107.4289;144.8763;142.9619;90.48576;87.99565;88.37048;99.80742;100.5524;146.0222;129.9151;116.0397;109.9137;102.2686;132.0645;101.8285;110.3377;95.82463;94.12374;121.9383;98.78348;98.17799;99.04693;90.74261;116.2929;113.5149;99.07196;137.6413;126.477;107.9946;101.8605;94.82536;134.6341;121.2482;114.4954;91.24804;119.6728;119.897;127.3446;124.2827;115.6782;113.7453;122.3018;142.3591;92.12937;84.31422;97.50434;119.8566;146.9546;85.78887;122.7199;124.8093;102.1046;110.5158;109.4864;93.23661;111.9772;122.0392;140.2007;140.8328;146.6389;130.0027;137.2354;90.32155;103.5447;126.2632;144.6045;109.408;88.13867;75.28707;119.172;103.0795;148.5389;110.8289;109.9806;152.4269;123.1623;117.6622;100.7263;128.569;158.4769;86.53205;128.2573;108.5632;97.81081;87.61591;102.4721;114.9984;99.75801;95.57069;94.13565;105.0489;95.51521;97.64098;105.5656;100.8021;104.2497;108.6046;124.8016;114.2747;91.19754;99.8112;104.2941;98.87771;99.65872;94.08114;101.7189;100.712;91.98999;82.40121;91.01434;118.3422;105.7591;94.67594;85.69987;106.5019;117.6642;96.07519;130.252;107.7272;131.5165;98.558;135.4971;114.2572;113.1039;140.1912;99.13194;126.2142;118.7334;110.0336;145.8954;145.6255;89.68533;83.52837;87.69264;95.37252;109.2016;139.2669;136.1674;115.8256;108.3014;110.7372;134.4115;107.2155;110.5089;98.36121;92.68844;120.4805;90.72963;93.77567;98.93126;93.48446;125.6101;115.1078;99.96281;128.2322;118.4332;116.4984;102.5218;104.7243;129.5009;128.8289;115.8163;93.13863;121.2162;119.095;126.5303;119.323;124.932;107.7926;128.37;142.1166;90.64507;92.0191;97.78522;123.495;145.034;85.75848;120.1481;120.8588;94.72919;110.8398;109.4293;96.76899;116.6998;121.497;141.8236;131.2954;138.1562;136.0685;135.9829;98.0286;97.30012;131.0126;145.0928;109.1357;90.25728;78.88017;118.4771;99.34139;153.9356;102.9306;116.2649;152.1579;121.6483;123.6322;101.0498;132.3397;156.4854;86.52115;125.6701;104.8839;90.59753;87.92415;
93.58102;95.21125;84.17446;106.7412;107.1547;95.269;113.7169;88.20302;140.6866;102.6831;123.2314;90.3742;88.61162;136.0186;125.6213;133.3452;89.21903;102.1413;93.99819;125.8587;104.5006;116.469;107.813;113.037;120.3693;100.4932;111.6739;133.9296;104.0054;118.7544;136.7517;129.3765;94.36858;152.2226;127.1739;95.40185;124.4327;94.4191;127.7173;121.6859;91.7292;152.8084;92.06095;108.0013;102.3925;123.0717;99.43204;99.86678;102.2106;108.863;114.4446;90.8206;120.5162;86.54671;112.5828;93.44362;96.57663;120.1939;121.3024;86.59167;112.1212;128.0735;138.7363;139.807;95.6103;95.66714;89.61129;103.7481;127.1845;93.91001;114.6519;134.7731;142.5768;95.79659;102.4817;113.6176;121.2369;124.8501;126.2187;145.3987;91.23874;109.2707;96.16583;112.1657;137.1797;120.6066;104.0206;109.3983;105.8984;131.5372;88.76611;109.243;106.0905;98.31566;87.4867;121.5181;89.34444;136.328;107.2192;80.76084;97.1495;87.05685;109.5125;110.2023;101.7908;155.1971;86.56963;107.74;94.93475;102.5883;100.5474;94.90146;89.34541;98.79854;117.3851;117.017;123.1291;74.5311;94.22546;112.0607;96.22095;89.90148;104.6023;90.05592;87.10526;121.4407;110.7923;122.9146;95.39071;96.797;82.681;106.0646;110.6616;94.08868;111.2916;82.68062;141.3976;102.8575;117.2508;90.01964;88.93495;136.2657;123.7187;131.3916;91.6702;104.2214;93.10892;125.6152;108.7017;115.627;106.3475;107.83;122.6338;100.4395;106.8829;134.4776;105.3393;118.5218;135.2231;128.3901;97.85472;154.2421;126.5819;96.00819;130.1147;93.25034;126.1245;116.2837;93.70977;152.7452;87.71809;108.496;102.331;124.4395;99.58063;101.8944;116.5782;120.6393;117.4673;92.07893;131.7674;93.89456;107.5344;87.74695;101.3458;125.0999;120.3777;91.37647;115.5856;134.6758;129.7637;143.9871;102.951;93.6464;86.85236;106.0065;137.3946;87.30302;115.6152;132.2054;143.2558;98.85628;98.68147;122.861;115.1745;123.7019;120.2408;143.6741;104.8394;121.0581;98.93834;113.5584;149.1668;129.2428;99.17028;103.2221;110.5232;135.5969;89.96667;114.6606;109.5005;102.8456;80.24511;123.1402;94.64162;130.9191;102.2217;82.66467;102.3452;80.46103;110.4126;110.0146;102.0373;157.907;85.0288;116.7973;89.63783;100.2947;95.08334;91.55357;100.9714;107.3049;118.3353;118.3314;130.264;81.11626;89.5701;107.9213;100.6514;93.24541;105.9255;94.98053;90.21622;126.4492;102.6434;124.5456;
116.9963;94.35407;120.3965;100.4898;96.45046;119.3255;94.79546;119.2668;129.1361;95.60538;129.935;117.5449;141.7793;102.6379;134.1649;102.5257;92.09056;108.5924;93.22122;119.6803;108.8317;88.4683;136.0347;102.102;108.6046;110.7773;128.7019;91.05296;102.4831;130.4858;120.2799;127.9214;89.4961;121.3579;107.6318;118.6437;92.78883;114.6992;113.5699;124.3605;88.3277;117.7363;108.3122;104.4532;128.9674;88.0306;86.6033;90.2108;90.73009;106.5279;91.76874;118.1683;141.4842;130.1084;79.06846;100.0713;125.9101;134.0633;116.0192;115.7268;127.0605;102.7051;103.5931;108.4785;103.5479;126.0267;123.2663;98.6427;92.7121;101.6048;126.333;99.91285;104.8651;96.31192;107.5429;73.57169;129.4831;93.46141;114.9582;85.60326;79.3512;78.51367;84.50099;104.4942;100.48;97.00414;136.1047;99.16668;112.4006;103.8876;105.5103;92.00629;92.35088;111.5119;111.7971;128.8343;113.4248;121.0923;96.45892;98.50723;110.953;114.9436;85.66425;104.6815;96.13905;94.15382;103.501;83.99567;109.4896;86.38509;89.58533;85.10972;91.57726;88.10208;95.08568;108.7669;94.06071;125.9173;87.81893;114.628;105.0587;101.0491;125.7905;117.6864;110.535;102.6359;102.959;106.8818;117.334;94.25018;125.2016;98.37616;94.28371;118.8048;97.08035;116.9503;133.0279;95.60807;132.7438;119.9874;136.4835;103.5444;140.5344;104.7987;92.22021;108.3943;97.28046;117.2833;106.3487;87.93533;137.4916;99.46555;112.9881;110.6107;130.2532;93.02722;99.16195;131.6927;125.5611;130.2615;90.74532;121.3254;111.2803;116.0589;91.62363;114.2745;114.8988;121.4514;92.28281;117.5668;109.7332;106.5692;127.8014;88.17001;89.81943;92.82805;94.9457;115.6278;99.40922;124.6054;131.0791;128.4229;79.07008;93.85291;126.693;133.2718;128.1942;122.437;126.5877;95.94375;107.7048;111.2214;99.09503;129.8339;130.0521;95.01431;88.02164;96.21203;135.256;102.4581;103.4121;100.9424;115.9321;80.00444;123.7036;94.73022;123.608;83.89407;83.29636;86.34322;91.8346;110.5526;91.74223;95.53999;136.1017;92.97697;111.3551;104.2779;114.5091;95.78797;92.94259;104.2879;112.4021;128.6955;109.9842;125.8753;97.90422;97.05301;104.7473;110.5272;93.1263;109.3325;93.13708;99.77627;109.1712;88.74461;105.2629;87.44127;93.89832;80.94459;96.98219;97.30346;98.2998;117.3313;84.66578;125.6676;87.91934;110.0146;104.0863;101.4157;135.6239;121.9817;111.2218;95.6925;103.5612;106.7773;
91.90433;89.91973;134.6435;88.9473;150.87;143.0774;92.26022;127.3879;89.96981;91.72382;96.27997;125.2354;130.0797;124.8581;131.6613;139.867;116.2593;93.34434;107.2944;144.5584;124.6634;91.38068;97.48689;82.70243;121.7227;103.868;140.8113;101.7305;108.3371;142.1938;135.0101;131.0784;79.58929;108.6921;145.5766;101.5291;133.4595;96.55234;105.5185;102.8724;94.4856;117.831;116.7583;90.7419;93.63036;76.32372;101.1678;93.11819;93.03236;100.5544;93.80379;116.9635;129.0965;110.792;88.55991;97.59547;93.03943;103.4793;109.0863;94.9022;93.94511;83.96355;90.28834;93.56771;88.84556;88.15885;94.87852;93.67607;108.6809;120.5072;107.443;108.5981;108.9688;106.8413;116.6785;98.48157;124.5954;99.89983;100.6124;146.8099;80.05456;128.3273;124.3497;125.0619;124.6718;120.9678;97.94914;90.30146;98.32468;97.79131;104.6246;133.642;129.0244;104.4618;120.3207;113.4148;114.3398;82.6279;105.9655;116.9342;99.64906;108.3223;102.6827;105.066;97.74757;95.84734;144.0891;110.2317;100.2517;105.1547;134.5032;98.61808;92.54577;96.24194;130.1575;136.1563;121.8513;89.25659;115.1957;109.2463;120.0134;130.2737;136.4145;115.2696;114.4115;124.3029;93.9923;95.51204;95.6142;86.98384;139.8103;88.28324;151.4002;138.8622;89.79809;123.345;96.98347;91.71093;101.4677;121.7531;133.8218;123.0274;134.3259;134.4826;121.214;90.76115;112.6702;144.2398;125.9582;88.41403;94.74609;80.28273;129.415;105.3143;146.8213;99.33018;110.858;141.6876;136.8972;126.6989;82.90613;107.1799;150.9872;101.9966;133.8031;94.69533;102.6687;100.1741;101.2793;119.3738;122.2393;88.47801;95.81644;76.88428;102.8312;89.36427;93.99361;88.81734;86.96034;115.6763;121.0894;109.6991;86.52309;97.64987;103.9792;107.2432;108.6318;95.49657;99.34846;90.00888;89.78219;88.68534;84.03738;94.56139;95.30276;99.28642;104.9343;121.2706;113.1194;103.828;115.2847;105.8116;118.752;98.47333;117.9797;101.0908;94.42282;140.7761;80.93769;115.0155;116.4501;123.7257;116.7949;119.8203;95.80576;90.34946;103.3908;100.9911;100.9495;137.1534;132.7359;110.493;117.914;112.1511;105.9833;91.11816;103.7272;122.6965;95.90522;109.8955;111.1231;103.1481;97.71728;94.42714;142.5739;112.7671;92.14716;105.7021;125.4771;97.53248;90.81133;87.00727;119.2075;134.2424;113.8988;89.03574;115.8162;112.1917;125.5822;133.9627;132.2328;118.5337;117.8872;130.8741;91.88271;94.35391;
85.65108;114.1724;117.5511;108.0824;89.26361;116.1561;144.0776;134.9629;89.89338;99.23542;131.7566;126.9305;131.3441;141.0641;135.3684;111.0645;85.19348;115.9207;114.2435;131.2975;108.8528;102.7532;91.4679;97.29181;125.0418;91.2336;109.2072;89.61105;94.5501;85.48268;117.4475;78.3149;103.2868;94.1029;86.38251;86.07613;94.63181;107.6226;102.4756;90.83662;118.5365;107.2095;107.0495;87.55838;95.89555;98.5599;104.4741;106.6311;105.2369;117.5258;120.6825;111.6743;81.4124;116.0127;111.629;113.1233;86.31467;129.5715;106.7992;104.1423;122.4799;112.9124;121.9428;87.13804;86.33572;108.1488;122.4538;90.28558;93.72424;115.4215;95.71886;138.5068;99.37824;118.7409;110.376;94.70116;144.3998;143.7357;119.6969;114.0047;82.17334;113.8156;129.2037;98.59628;110.6338;108.6005;94.29122;114.3845;96.39154;106.9148;129.2349;89.77094;120.4386;133.6627;128.4554;84.97146;119.5442;109.1628;96.98188;120.132;101.9029;121.6894;102.8867;79.33225;117.9547;104.9886;105.1525;92.63008;122.4337;94.61373;113.5311;121.5219;112.0188;114.1741;92.18362;116.4229;93.04694;135.7719;86.09631;107.2522;116.0302;138.362;96.97453;126.6454;132.2422;137.866;139.1926;85.73326;83.84009;115.483;115.8558;110.9868;92.69858;118.2771;141.0692;131.7003;91.1797;96.90022;128.2217;125.6922;138.2547;141.9022;138.6632;110.7722;83.22588;117.1513;112.3846;134.4017;112.4665;104.674;88.60532;94.23499;125.5885;87.82768;105.4892;88.5845;99.9797;85.29289;120.4279;78.09017;100.6691;94.31654;84.7003;88.60525;97.55071;108.6292;99.44191;87.88573;119.0662;103.5168;103.3663;86.54565;98.38656;96.7906;106.1329;105.5186;102.6915;116.3652;116.9117;103.241;85.08726;107.2769;111.1768;113.268;93.32983;135.2189;108.9108;112.0827;121.1794;113.979;127.4036;86.3051;84.24291;111.6314;110.2741;93.79465;93.95008;117.4298;87.63053;129.7339;98.9518;114.9888;109.6929;95.12494;140.6816;141.9384;121.3161;110.8396;79.92564;112.6687;125.2908;90.68217;114.9106;100.1494;93.86678;114.53;104.7218;117.2822;135.7913;96.85144;116.4217;136.9047;132.1979;85.13894;121.4377;113.7964;87.94407;119.6687;102.1723;124.4376;98.54216;76.14873;118.499;106.4453;108.2501;92.76769;116.3117;94.899;113.3815;119.4532;113.6312;114.1737;90.68329;103.6095;97.02022;126.9969;89.56976;111.538;125.1953;150.1264;102.6674;135.0546;128.0742;141.1617;143.0903;85.92107;
159.014;87.39297;85.55032;104.1168;90.11882;89.09593;132.1462;137.4879;102.8849;118.9572;100.1827;116.523;104.8916;89.50992;114.4578;89.73737;112.6577;102.044;112.9317;109.852;104.4717;124.2365;109.0848;88.14259;132.7528;140.9096;101.3893;102.5849;110.5914;140.5542;119.74;139.1518;107.3635;108.1336;111.5094;116.5136;137.0217;125.5603;132.7699;113.1848;119.5335;103.0221;107.9281;89.38879;97.29514;123.5777;85.82227;128.37;141.7214;96.62029;118.5243;98.8753;85.42276;96.20195;112.8134;113.985;130.117;131.4263;118.6843;110.965;82.28397;108.7996;134.6163;139.2912;117.174;88.17847;77.17192;130.6977;94.78108;127.3981;94.60638;115.5105;133.5956;137.3742;113.8228;83.66113;126.7068;128.295;98.49058;121.7019;97.10754;100.7384;108.1775;111.2393;126.9818;102.2372;86.00867;82.15192;96.08552;101.1582;89.8663;101.1799;106.9898;109.2976;99.0776;149.2804;120.7425;79.85608;94.96019;94.13699;110.9235;97.61701;105.2377;92.0293;77.57389;92.98764;99.75333;80.16062;89.54512;90.72652;90.21278;93.21844;116.6726;112.7273;103.2883;117.0298;101.1025;107.013;84.93173;107.514;101.9328;94.71329;127.3521;75.00861;109.7048;129.6949;115.0791;139.9598;149.7045;88.57289;83.87788;102.301;89.39594;83.6579;123.9472;133.9811;97.92062;113.0178;98.26669;113.1871;99.72905;94.71821;110.6335;90.82331;105.5781;103.7556;111.7643;108.4347;104.4145;118.2585;102.5277;86.30017;128.7299;134.1544;100.3413;100.2942;106.2752;146.5359;116.2521;141.5084;101.4187;109.4384;110.7731;115.9533;138.0912;119.0859;125.5281;111.0983;115.7204;97.26047;106.8494;87.25366;94.01151;130.278;84.40633;131.5153;133.4852;96.85278;106.3285;93.41624;83.48384;86.00687;108.028;110.4464;120.8484;131.128;129.8198;115.546;76.5528;114.838;139.241;144.3778;104.9249;92.61432;79.39478;140.9119;93.39902;126.3486;93.58807;122.6261;135.7235;133.7282;101.6802;86.28815;112.7549;134.4823;94.59277;133.6648;90.31113;100.9664;96.54101;105.4392;124.6154;91.7093;81.83691;79.1476;89.60683;105.9335;101.4835;105.4616;103.8081;109.0261;104.5996;151.1255;112.3537;82.20327;98.95522;100.9699;107.652;101.5376;109.02;99.58205;80.60542;94.73499;90.20782;82.64843;80.87214;90.17841;87.92656;100.9352;113.3044;110.7873;93.42699;109.1404;97.29858;101.0675;85.06551;105.297;95.27557;99.31761;141.1378;78.70109;106.5029;129.3784;121.0461;141.7462;
148.5843;129.7621;90.92612;104.4578;111.6754;98.60648;100.0494;103.8526;100.285;97.86816;113.9824;88.34821;97.0631;90.95886;99.27423;91.6697;99.08837;110.9039;120.6526;92.20377;115.7579;107.7746;122.5688;86.20724;119.0525;109.1246;92.32729;133.325;82.61198;125.6605;106.2817;124.8618;142.8775;148.2738;101.7004;89.90417;100.9928;94.91249;109.2688;125.6901;124.557;111.4641;126.6803;92.31657;119.1989;81.18613;102.4654;109.3567;75.97522;107.3531;97.28906;105.9722;92.75186;103.3261;116.8536;104.5463;98.73731;119.4099;125.1242;117.0619;99.22681;85.63378;133.1387;130.4293;134.0631;106.5543;122.5878;122.3275;135.1488;122.1553;125.2044;126.9618;115.403;142.2864;116.9952;98.25821;103.3197;91.19132;143.992;82.84533;134.5358;129.9053;105.11;110.8492;100.266;94.14063;103.8162;108.2563;126.4113;139.4782;129.7274;123.6864;122.3911;93.13596;94.30618;140.9168;139.6258;113.0621;101.3021;84.8976;134.6509;96.18848;148.7306;88.65866;102.9518;147.8926;145.4301;104.1093;84.1081;102.3155;145.7864;94.12742;109.2647;91.43441;97.9193;99.57778;92.0405;124.4242;91.13851;83.19766;93.10725;92.37605;97.53445;102.5466;101.7546;86.43799;101.2646;111.5447;145.3464;131.1295;92.92101;108.8223;111.4301;95.88417;100.2956;101.4635;99.16683;100.645;119.1973;89.54005;96.92921;89.97212;103.4375;89.97498;96.27377;112.0803;122.7528;96.23627;115.3282;104.8346;121.6404;83.57076;118.6578;111.9051;95.9671;134.5875;83.57262;124.6796;109.8837;122.681;140.8827;149.8532;102.9555;93.70845;101.7788;92.3185;108.3898;122.5047;124.1506;114.2763;130.935;93.36963;117.2175;81.2234;104.927;108.6622;80.14502;109.1201;104.7562;115.742;93.91686;105.1114;115.2651;108.723;108.5547;116.743;130.687;114.3383;97.8069;86.86194;131.1259;133.2559;135.4202;108.0178;126.7717;125.148;128.1735;111.6003;122.6429;132.0652;116.9618;144.5832;124.3225;95.89742;101.5733;93.76252;152.4757;77.58601;140.0657;131.8371;112.8613;120.8364;101.4768;95.83547;102.3147;112.5058;135.0472;134.0496;130.5075;121.9013;122.8393;94.35479;90.29803;144.6384;140.0928;113.6757;103.3482;85.44823;130.1031;88.46233;148.2244;94.45504;102.3209;147.5403;148.3847;102.6247;84.23035;104.9678;151.3427;89.15417;113.4526;92.24631;103.6638;107.0358;95.27962;128.3232;91.54536;88.39832;100.5766;87.95104;98.23207;100.9429;102.2012;87.59525;97.13056;114.881;
138.19;130.5441;117.2561;100.7727;102.1605;99.60468;112.6845;96.62928;127.9043;101.2547;107.1258;131.6913;106.6725;130.9116;114.6549;99.14369;111.6885;148.8388;138.8147;81.35286;141.4395;121.6493;99.75382;102.3868;113.0904;109.8485;90.51405;82.0929;122.3687;116.3148;106.8279;105.9896;119.9153;95.66145;101.2111;131.8039;111.8036;107.3062;89.87914;109.2725;104.6498;127.5071;96.75529;98.65653;117.8615;123.562;83.64655;118.9627;114.0887;127.514;131.2054;88.89146;90.81682;92.71188;105.6786;117.3178;101.3474;133.8273;126.0586;115.3287;92.57813;96.79146;123.193;128.7276;124.4329;128.7842;135.243;98.87967;110.0926;100.7226;98.65835;126.7144;127.468;98.6087;108.66;113.4662;139.8808;107.9404;91.34956;95.03351;89.50268;95.19427;130.6393;74.86572;123.1912;100.9848;86.43008;71.65481;109.7147;94.34882;82.10345;84.43771;127.0337;108.2855;100.7155;95.31416;89.08672;93.01898;92.76729;111.7548;101.417;104.7949;119.5202;105.1886;94.64104;111.5559;114.4735;97.94984;92.32096;105.2861;88.82897;95.47068;105.1146;99.3476;117.3511;90.12463;90.74671;85.21511;110.7889;98.31535;108.3859;130.3678;78.90641;112.5938;105.2881;110.4953;100.3976;94.3748;129.9622;124.4983;117.8559;100.8458;102.663;96.7104;117.6273;92.11726;132.2094;101.0305;105.1011;126.9573;111.1412;123.8289;113.0146;95.40984;105.0365;142.8911;140.3137;81.80676;142.8853;118.9175;104.1879;98.64486;116.7189;111.0964;88.46986;79.01112;126.1849;110.9346;104.5359;102.8583;112.099;92.07169;101.8121;133.2212;112.1774;106.004;94.09288;105.4081;108.1438;128.8541;94.64377;95.27766;120.1512;119.5519;81.29009;116.6861;113.3707;121.0411;137.3095;96.77545;98.1429;96.05885;107.9107;112.8297;103.4983;134.8477;124.1098;114.2912;99.41173;93.17005;118.8707;125.7914;120.7751;120.8345;138.2374;95.74748;112.7444;96.51936;106.6764;123.874;129.2511;92.91854;103.1537;103.2681;137.949;103.0155;85.95731;92.9844;88.8577;89.60833;136.7296;82.11069;131.6892;104.4716;88.44918;68.15312;105.9231;94.99873;82.17065;87.77806;132.5718;108.1881;99.35656;94.79888;90.5724;90.68388;94.33418;108.3239;104.9195;100.3442;123.8008;105.4003;90.58269;105.28;110.7364;92.84207;88.7452;104.0956;85.89895;95.44302;109.4475;98.23257;122.0992;97.96249;98.99454;88.26821;108.8204;96.88777;104.5979;131.1314;78.98724;116.4474;110.3151;110.3968;99.05751;93.8633;
105.8271;99.05163;98.33761;105.4788;100.5742;102.6052;132.8192;121.896;82.6898;91.66385;110.6133;118.2691;99.32577;111.296;90.73192;83.71745;111.9196;91.78618;129.8392;86.60899;102.44;87.85071;108.4918;105.4324;108.3885;118.3586;96.16196;126.3213;96.79318;114.7167;103.4955;110.5539;131.9654;117.0028;115.6946;111.2889;109.884;100.7037;119.9257;110.6626;114.4607;110.5711;114.9024;127.033;118.0401;98.77693;135.662;100.8393;120.7114;128.5433;138.8829;84.67371;131.9888;112.6666;89.50717;131.1299;95.46509;108.9869;101.561;79.71449;137.8083;96.14064;84.00648;87.74104;130.2267;102.3402;109.8596;126.4067;114.1243;106.0835;105.6933;120.1836;98.59335;111.1831;91.51792;117.6419;132.2754;130.8435;85.44114;107.017;118.0009;117.5463;150.5445;87.26852;106.3722;95.70753;105.407;125.6871;106.9227;125.5371;147.4989;126.6289;90.20278;98.68946;130.7903;143.4847;119.2717;120.1403;136.7523;110.78;115.2897;103.0877;103.1722;138.6876;115.8502;108.4106;119.8376;106.6439;152.4159;82.94807;113.3191;101.5124;96.31902;83.71551;131.2511;79.18967;112.2234;91.56626;77.34745;92.69649;88.67872;91.4505;95.89362;88.27784;138.513;96.48527;86.08021;84.56421;106.0053;103.8552;104.3904;107.071;102.3182;100.8844;133.0489;118.6744;83.19662;92.9416;113.003;118.3078;102.5619;115.4129;93.79955;85.75242;111.9155;96.33074;136.5739;87.97462;104.0122;86.17377;108.1738;102.1176;108.0611;118.4549;97.89992;126.3764;99.5241;117.8853;106.6778;112.896;131.438;121.1124;121.9682;112.8502;111.0295;97.99673;119.5887;107.2681;114.1216;110.6664;116.7988;127.0906;120.0999;101.6567;140.3461;104.0942;121.6015;128.6934;139.447;92.75218;127.9279;111.1525;91.94356;122.0552;94.97086;107.8633;92.1051;85.45239;126.1378;91.51304;95.86525;94.03116;134.0452;108.6103;112.7321;126.8071;113.9626;108.1125;94.76679;121.907;88.74425;109.8065;89.38129;115.2783;134.3042;145.3049;89.43092;107.5457;118.8807;117.6849;151.1207;95.46708;102.7295;94.30801;108.0401;116.8063;106.8943;125.483;136.1883;133.6494;79.11897;91.20981;140.7161;147.539;123.6254;123.9612;135.405;109.5095;114.9061;107.9341;91.80659;143.2205;105.6678;108.1219;117.4999;104.2454;152.2799;91.75159;113.6101;98.80729;97.75793;81.4361;127.3826;85.55005;108.2817;92.8367;79.09377;87.17914;88.68848;91.40705;86.81984;94.17572;124.7335;89.09399;94.16942;87.70293;
113.5333;82.07045;118.4853;104.9081;108.8429;86.40588;108.6072;114.189;125.2253;104.8616;119.026;122.4375;101.5901;94.47281;96.49547;137.5666;132.7905;124.9038;106.8744;123.1423;127.6989;129.7236;136.8816;110.1731;117.3178;117.8227;135.2438;105.0229;91.64706;110.9944;105.0823;131.3887;87.80647;145.7786;134.3133;96.80855;117.7072;86.0536;84.38369;84.61567;122.5725;111.5815;119.1706;127.4727;110.4368;112.6665;80.10461;89.78676;134.3575;135.9014;91.84669;98.64604;87.94276;117.4945;98.14037;117.7328;90.12818;104.2183;140.8198;137.01;118.2471;81.03655;121.2551;128.7283;98.77931;113.4987;100.757;103.1188;104.6391;89.40382;133.4729;91.05506;105.7044;100.6747;86.84654;93.07342;91.3665;97.62473;97.62854;96.76917;119.9117;135.3944;128.6257;93.49059;114.7981;108.8574;109.3019;88.89458;98.61357;100.3303;90.78915;108.2266;89.99125;100.9974;101.3428;90.7419;91.82742;105.9633;114.9723;110.6815;103.713;106.7209;100.3445;101.3657;104.4781;104.1846;91.80108;101.8125;119.3002;74.9477;109.7222;105.1883;112.5302;138.0067;129.9801;99.59774;97.1052;90.53033;94.43561;82.40477;127.1285;125.5104;101.9614;128.1672;108.4466;108.1551;96.28733;90.57072;108.591;82.7697;116.7886;103.4418;107.8083;88.54344;108.5802;111.63;128.5185;103.9095;112.4169;128.7469;102.7335;90.76575;92.81561;135.7895;128.2502;126.248;105.9988;122.0375;127.3765;132.8365;137.8714;108.7205;122.1093;116.5697;129.1806;111.7652;93.66068;106.5337;101.6366;130.5978;85.02177;146.7257;133.7867;96.65031;118.4487;88.19293;85.16344;83.34548;127.4719;110.3648;113.4861;134.893;111.2025;109.678;78.38696;91.8803;142.3353;147.307;94.14962;102.4405;83.91403;121.4637;91.45152;121.3971;96.74232;110.0182;129.0836;142.124;113.4587;75.18462;114.6076;125.0509;84.88657;113.6242;93.46383;107.3619;105.8326;100.6029;136.3233;95.50546;106.4239;101.8001;84.50333;93.72852;99.96912;99.60282;90.40285;102.581;127.4547;146.7677;131.3484;97.18056;110.1885;112.6691;102.2364;92.07751;102.7983;106.2146;83.9631;106.5407;85.12638;97.21254;97.15105;85.59203;82.67566;104.2855;105.094;115.808;105.5975;114.8558;100.499;104.4955;102.494;105.5022;92.07368;96.55625;128.279;79.16838;104.0215;108.9244;125.0763;147.3453;130.4201;104.0994;93.51984;90.39883;85.72914;84.06796;131.8964;132.0609;94.73871;126.3316;103.1194;104.2186;92.22153;85.42552;
97.06687;110.1584;111.6145;112.1886;115.3999;82.99548;130.3665;95.22206;89.42661;88.33987;129.7312;88.39194;104.4479;135.9485;101.354;118.3541;90.486;120.621;87.81548;129.2361;110.9906;109.8164;117.9376;133.6073;99.89468;120.0536;141.1933;119.4253;124.8503;102.4277;99.03221;97.89123;92.98026;106.5491;113.4959;117.7471;137.1406;115.8609;78.9297;104.7484;100.9796;134.4806;115.7805;116.0885;131.0421;108.8054;89.64271;101.819;94.19308;116.8677;107.6398;99.97646;115.7742;102.713;121.8852;105.9164;107.9783;94.95332;100.1886;89.89338;124.7945;100.4727;130.2867;103.5148;85.21156;78.88525;106.9083;99.82096;107.1256;93.42899;135.4477;94.99722;89.54237;84.45413;108.2558;89.45411;92.99556;114.9044;94.11884;118.7629;118.1004;122.3543;76.27929;112.994;129.4498;113.3331;88.37218;117.7715;108.7198;95.93565;132.1773;92.6299;110.0296;99.50735;100.9881;90.5554;100.5826;90.67068;113.5466;107.6897;86.45239;117.664;91.50938;121.4739;84.14012;102.4839;119.8172;113.6262;115.3905;103.5202;85.52091;95.80361;113.0163;90.18161;108.0084;96.28143;114.2129;121.3932;94.81606;125.9972;130.964;96.09723;121.1291;134.6842;136.6024;104.3332;152.6933;120.4293;100.4768;113.0546;112.3513;107.1853;110.7625;83.70705;135.0626;94.17171;90.08117;89.22344;126.6006;85.65141;101.992;132.2273;105.3021;118.0216;93.60802;123.5584;88.30287;123.7701;106.263;110.5397;121.2065;131.7941;101.3555;120.9061;136.6522;116.0387;123.4741;99.36179;102.2551;97.41802;97.30601;109.4788;113.3333;112.3373;133.2388;116.788;81.60583;103.1459;102.4459;135.3852;111.6693;112.7521;132.2393;104.7159;91.42516;102.0183;95.98542;124.9242;104.7977;90.60619;106.4159;108.7217;123.0805;97.34908;103.5193;87.55653;98.69058;90.28563;124.5701;96.9753;132.8966;103.7491;85.57444;78.63969;100.5296;95.4156;100.4716;97.27247;142.3217;98.11819;96.32618;87.89294;110.4648;86.97733;92.83542;112.0504;100.3155;122.516;120.1059;130.5834;73.88595;103.0179;119.5425;119.6298;89.38627;108.7276;105.293;88.62431;133.6462;95.87781;108.7337;99.92306;101.3877;90.58327;99.02624;88.60028;106.0165;108.1215;81.47632;121.9799;95.55197;126.0237;91.71923;106.3845;125.2297;113.9568;114.1255;104.7982;89.65606;99.00186;112.9212;95.38583;104.2327;91.69556;106.0649;127.9216;94.27312;117.6219;127.2425;88.76241;122.5588;138.6196;135.2016;104.7402;153.2108;120.4846;
119.1335;115.6792;110.3853;130.4642;120.6694;103.0094;122.612;109.1156;106.7965;124.8302;82.69276;138.9529;122.609;113.4119;122.7033;129.0925;104.67;101.6956;94.15033;93.85622;100.6159;134.535;148.6619;116.5231;117.9988;107.3539;99.22167;110.0323;90.94791;106.3903;78.04367;109.9089;97.41863;95.78215;94.33295;95.25569;134.9891;99.54986;95.01486;115.4648;130.8325;103.9902;93.64069;99.29066;120.7999;134.3792;123.6107;105.5611;127.8789;109.3389;109.2972;131.8031;132.6746;122.645;113.2104;122.4079;113.3546;97.99327;100.2136;98.94495;113.9346;76.55828;122.8206;138.6664;102.1565;131.6888;93.26517;110.8579;103.3845;124.168;130.8263;134.1219;142.4069;116.2037;121.3166;104.9249;110.6437;128.5947;125.8568;96.63636;108.3943;94.64664;128.923;100.2264;144.784;97.88542;125.2199;155.9544;138.8147;128.245;72.52511;135.1608;131.1885;89.97584;108.6427;92.19824;99.80403;94.08361;99.52084;124.6356;115.7953;83.08148;89.17969;88.05358;103.2664;97.31993;97.56091;99.84644;87.6172;118.3676;132.2666;128.2033;97.30119;99.00309;90.29341;107.5091;115.1567;102.6781;94.97433;87.29797;113.0064;98.21497;96.02749;96.13074;74.69363;83.22775;83.84176;118.4897;120.6528;117.2284;114.7092;131.6256;125.1631;102.6119;122.5977;111.9032;109.9572;128.8178;84.67871;135.1428;121.7897;109.9177;121.2225;126.2387;106.8329;103.585;98.85711;95.2709;105.4664;134.569;148.3842;120.422;120.8906;112.5637;101.1887;107.4099;89.43706;104.2483;76.25797;108.0444;98.6424;98.84196;98.36562;97.39862;139.5812;100.8102;94.7952;119.3487;133.8795;109.1213;95.55425;96.80274;118.8811;133.1972;121.3922;103.6603;127.205;121.523;109.4818;129.0515;136.808;121.9185;113.3145;117.6112;119.3553;100.1407;106.1956;95.87283;120.7086;83.79344;127.7941;142.1429;101.2576;134.5083;100.6766;104.4677;115.4495;129.5448;134.2158;131.7833;145.0749;119.2181;115.4213;93.34202;110.0448;123.053;118.6784;97.63453;107.7639;105.9999;129.1227;97.82426;149.0886;97.23171;125.3285;150.5284;143.3295;126.1539;77.50136;134.4836;140.5127;98.79496;115.4405;96.85246;98.57049;94.37375;104.8184;115.5129;124.291;85.30901;92.1656;82.93011;103.723;96.10699;92.15685;90.95298;88.71735;114.127;127.1527;131.4815;96.35822;108.3731;88.31109;102.8108;114.9133;99.65244;95.25166;80.0752;117.0627;96.3859;101.7581;95.56104;81.75127;91.71743;89.84196;123.7596;
84.77357;107.3839;86.1464;104.5228;95.54073;102.3896;106.046;98.34872;129.5216;116.4842;97.952;106.4077;133.8422;123.3959;90.50981;120.5015;100.5985;111.4934;117.9934;97.90129;117.6937;103.7968;116.2117;127.1704;159.6599;103.8418;95.78716;86.58939;89.37602;86.61435;136.5157;118.8995;84.70107;120.6579;95.29884;122.3455;99.838;97.83658;118.6192;81.00447;111.0815;96.45673;95.54417;92.55485;111.9814;127.3603;115.4767;91.98333;105.0698;152.1247;116.7355;102.0566;120.014;127.357;129.5174;135.0193;107.2572;124.1415;105.2315;121.1211;128.5648;119.8088;115.4166;115.1948;124.4706;112.0458;92.13493;111.1483;102.6941;150.0543;98.29505;140.5323;153.5778;104.6599;115.5369;86.67055;122.3506;109.2537;114.4227;129.2099;126.4493;147.537;107.7478;135.3263;89.29894;89.92561;131.5773;126.7931;118.9491;101.4302;89.36331;112.9679;94.95211;129.2832;99.84375;105.9135;122.2817;138.4652;109.0816;88.31686;128.2554;133.6377;103.3036;111.4574;93.90675;97.96118;92.22531;92.21645;137.4648;105.2383;92.37627;89.03477;78.55035;121.415;105.9206;107.4179;126.3497;90.29443;113.5637;142.0328;126.6948;90.60272;94.45956;97.44358;102.2452;102.1434;90.83228;102.6761;88.3491;111.7784;88.87491;105.4857;100.7889;101.314;108.684;97.97112;130.206;118.1485;102.1657;104.7716;135.293;129.2671;89.75443;126.6926;104.3094;115.8808;120.9884;98.75175;123.3265;102.6398;118.4307;126.4054;159.3279;104.1427;99.46716;85.12727;90.1377;90.67574;135.4924;125.076;87.6889;124.1931;97.92046;123.3106;104.5627;95.81263;120.8583;80.39602;110.8021;96.74876;99.21716;91.04496;109.6921;130.4588;113.344;96.61179;115.3665;157.3745;126.0017;98.58974;118.0362;120.5553;126.4695;141.1841;101.8588;126.476;103.8735;129.731;134.176;122.5213;119.6046;124.9916;126.3417;104.4588;100.4003;106.4352;99.95342;143.8075;95.87945;142.4262;149.6313;102.2126;115.8999;86.31747;109.3428;106.356;109.3671;135.0105;137.7213;152.7022;116.6473;131.3296;87.59376;84.22089;128.4949;132.7693;115.0305;104.5529;84.71889;121.4904;101.9814;128.9774;105.7864;110.2493;122.1175;127.849;115.2587;82.07438;123.337;131.8947;99.88;114.7684;92.43467;96.56731;89.0592;92.04246;126.1277;99.6584;89.71915;89.31871;85.81389;123.9828;111.9921;101.5811;122.4894;87.96046;109.7338;150.208;122.6915;93.55814;89.68522;105.3916;109.5742;101.8745;96.50684;106.9676;
107.0634;113.1954;100.6519;113.6477;116.7898;106.9429;119.918;113.3862;130.7394;136.1227;84.00883;136.5317;128.4724;113.691;91.9967;134.2486;131.1398;97.3804;122.7064;96.81517;116.5958;93.20771;88.34415;129.5132;85.66648;107.0162;100.4477;120.982;104.8459;93.88682;113.0751;112.4073;109.0618;92.5676;109.6306;102.1024;121.0568;91.59358;108.2961;122.5938;130.9079;107.5597;121.4192;129.1127;133.3092;117.7809;85.69292;108.0478;93.08955;90.09074;109.6596;99.52912;129.2794;126.7109;112.2997;91.83694;94.71461;133.7742;131.0903;125.0937;116.5322;131.9315;105.42;107.1097;111.1469;96.51509;130.6013;113.9658;109.6949;106.4231;97.61387;144.1394;109.3539;108.8672;83.58659;111.3117;79.446;103.4024;80.76455;112.5009;107.0927;82.63953;88.15469;88.39009;100.9321;86.25681;94.49995;129.5;84.19651;99.68324;90.00196;96.72012;99.00188;85.64028;88.15764;100.5534;109.2562;116.3126;109.2675;81.48241;95.26926;115.2561;107.1547;95.19846;115.5794;110.5374;96.80364;119.6494;107.3456;104.1915;81.71719;111.9321;90.63886;98.11726;91.20356;97.20702;118.794;83.60188;113.2633;100.5262;117.5129;107.9176;99.05506;137.1588;115.5142;116.9077;99.21538;104.5814;106.8716;115.3829;98.47241;106.0861;108.9479;108.7762;118.2947;114.3222;129.997;131.4064;81.37191;133.8502;123.2321;112.5328;84.63015;134.3967;131.7478;99.83865;121.0849;90.25475;109.4991;95.33172;87.76581;131.7011;86.3957;102.5904;98.43356;119.3728;101.0792;92.41663;105.2953;113.4425;110.6229;94.54016;108.5176;96.18118;114.8584;93.28838;107.6582;124.7253;131.8117;103.1251;119.2064;127.4528;129.9539;117.1648;80.43461;109.8683;101.708;96.93962;107.2234;97.06616;117.5603;129.8312;126.4222;82.82968;98.842;120.7166;121.4657;135.051;109.3207;129.6778;104.0143;99.49431;104.8904;99.96743;132.3636;105.943;108.734;108.0863;97.27023;142.0024;110.793;97.68989;87.8193;103.3984;80.95531;110.1179;78.29973;110.1633;116.3229;89.19546;85.97185;86.06533;90.60966;88.82565;107.4895;118.7551;85.52495;91.79536;84.67563;104.5775;95.17198;84.32658;92.31994;91.49699;99.57935;117.0002;112.9028;77.84837;99.20883;114.0245;105.7072;90.87968;114.1245;102.7882;104.2761;110.4927;112.1747;111.5034;84.46655;107.7854;95.76209;102.3456;90.81017;98.28603;112.7245;83.59631;126.2508;88.53682;119.1027;99.68564;93.48234;146.4861;111.3949;115.3524;103.6481;95.34086;
111.9165;134.7657;136.9799;120.9907;119.754;110.1878;115.8851;89.13009;96.37374;98.64021;101.5514;131.9828;82.87241;141.1204;140.356;104.5704;104.3941;100.6832;101.5407;100.9158;130.9482;119.8539;133.218;133.5655;119.1142;111.1645;96.05114;92.51438;132.0391;124.8394;100.2453;83.76555;74.82463;126.5439;93.596;123.6533;99.23138;106.2794;121.5134;119.9848;101.7668;84.72884;116.139;121.7709;99.18961;116.0797;94.40155;89.54419;80.32075;100.6258;116.8029;101.7289;102.7529;99.02129;80.4875;101.2626;95.04146;90.45493;97.19193;96.23167;125.1561;132.713;126.2633;99.51841;91.82884;113.7217;110.4358;102.7975;99.57983;93.46029;81.67191;85.4452;89.71049;96.03881;100.8901;96.26218;94.36495;101.3693;124.1743;120.4746;87.91453;120.8293;117.0684;119.4677;109.4065;113.3614;110.8763;101.3493;129.3493;76.92979;129.8278;110.9378;114.0035;125.2527;137.618;84.57562;85.4166;96.27743;91.33482;85.74438;134.1721;125.5873;88.55411;103.8787;88.49835;117.3954;93.38441;86.341;113.145;84.62321;111.3477;91.39832;88.57373;99.32536;94.64803;121.8142;123.3447;104.8729;109.7023;136.2799;109.8016;85.89649;94.49908;130.8643;139.4995;125.6815;103.1223;135.395;112.5663;135.2026;140.0062;122.2178;120.4274;109.1339;116.176;90.07204;93.94915;98.48433;102.1925;134.2778;81.68526;139.9841;142.371;106.4142;104.8405;100.9772;103.9681;101.9639;131.4602;118.6556;132.2776;134.1341;117.236;110.8491;95.61707;94.26953;131.9025;123.9496;101.2732;85.24854;76.2235;127.0757;95.27879;124.6077;100.8591;105.3261;120.6127;120.5261;100.0289;84.45546;115.659;123.7856;96.22901;116.2095;94.37869;92.3173;83.77805;94.98489;123.251;96.94382;100.8155;94.76799;82.14758;104.1741;88.08431;91.95984;102.989;91.98296;117.9772;131.1218;124.2326;103.4746;95.47301;107.5917;109.2243;105.9046;87.12376;97.66524;80.63693;94.72698;98.31689;100.9055;108.5471;100.0656;93.54178;98.09846;130.4192;129.6547;91.52953;114.6297;123.5188;114.2773;107.4067;108.7971;112.8185;104.2621;120.413;78.9889;136.4678;106.5745;110.2933;123.5485;135.5206;85.5037;85.1462;90.62947;88.14127;89.69346;121.0507;130.4187;89.22617;112.1958;96.35637;123.5873;100.7174;90.14477;115.4782;81.50381;117.2989;96.54935;88.36812;93.69258;98.26923;117.8409;122.6505;100.4596;113.6302;137.5554;101.6186;88.0544;100.1974;126.1451;135.4357;123.9539;101.3292;136.5932;
103.1056;108.8737;94.40305;90.72153;136.4521;105.4685;100.6094;112.0118;142.8091;100.1289;104.6652;130.3957;104.1427;108.8344;96.56614;104.6387;83.08393;102.6712;85.24773;92.67471;121.7703;122.1402;88.18549;114.7796;115.9405;120.0483;141.7593;97.20694;85.78129;99.69079;109.3342;110.8907;92.45874;114.7264;121.9621;119.1533;87.15105;103.5726;134.5097;131.8356;146.3723;126.8556;133.3976;95.72814;94.20848;97.15531;108.4877;122.7347;122.6787;91.95544;99.00353;111.485;143.3202;84.25363;97.75117;93.69971;94.44431;90.87406;130.0573;92.14497;117.6514;96.14677;99.95644;88.77624;95.49005;93.90511;87.55077;98.75588;139.148;101.1108;99.37495;105.5463;117.1071;101.862;95.44097;110.6876;95.92048;105.875;121.2017;102.6937;69.12913;87.97075;106.7126;95.59345;92.77576;103.9704;95.19132;91.77087;104.8162;90.55858;127.7314;101.9993;88.3192;94.21932;110.4444;89.17854;93.87528;110.7927;78.62363;115.4613;92.24077;117.6421;108.8838;92.58013;145.6474;119.8187;116.7335;96.94982;89.68253;93.91408;124.9656;87.44193;123.9876;93.69538;99.32465;124.9789;106.3354;99.67052;119.1457;90.60155;109.4581;132.4572;143.3534;99.98798;139.8491;114.5135;114.3565;119.4695;105.9118;110.2561;95.86058;88.73412;135.6691;101.0358;100.8355;105.0938;135.1069;93.97161;106.3928;132.3239;109.1676;109.2783;96.27152;99.859;86.26834;104.4521;87.30048;91.07551;121.8197;117.8332;88.19514;108.7246;108.6044;114.8032;143.5347;99.59903;89.53255;101.3487;108.2992;106.7128;94.96945;117.9291;123.6661;118.1297;86.39223;100.8409;134.5244;125.3432;138.1174;121.4649;135.1228;98.10454;96.83014;100.199;107.0783;119.3913;125.9656;101.2377;100.5712;107.1075;134.3057;87.0514;91.67595;88.40953;92.09032;85.50813;123.1994;86.36077;124.7772;91.7298;98.97486;82.72645;104.3858;95.50276;92.91641;102.6522;138.8456;105.513;89.5675;106.6073;109.9855;95.03565;97.13776;117.5854;101.909;113.3312;117.7366;108.7239;71.59371;97.04969;108.3392;91.53874;85.54259;107.0707;89.19679;86.53196;106.9722;90.65469;118.9308;94.66214;91.90232;86.95255;110.8112;85.8868;97.71185;110.4216;81.99957;121.9523;94.02371;123.8061;98.95108;98.21489;143.0453;118.6551;116.6374;102.1183;92.85339;97.8837;122.945;95.95461;121.7188;101.0527;99.02529;122.6234;100.6863;104.007;112.7918;89.83233;111.6407;132.5733;134.0403;92.72607;144.3257;106.4871;114.7477;115.656;
127.0315;133.7896;98.03396;133.6866;127.2399;102.3849;111.4165;105.7292;126.7455;109.2142;85.42678;131.2749;109.9496;106.9938;100.6655;123.7057;114.7874;111.8869;117.8116;103.6047;130.703;98.43182;108.7185;88.8543;109.8664;83.97546;91.06358;115.5032;117.214;86.2075;111.5767;119.3125;114.3514;132.7191;89.51218;93.64616;111.8386;94.53834;112.8025;97.76588;121.3145;133.2083;124.3839;80.1432;98.64654;124.6124;131.8134;130.9208;125.1137;147.9651;99.50919;86.47323;96.9649;101.4015;136.7379;113.3069;92.13359;111.741;98.07104;135.1361;100.3375;97.53735;82.59742;95.69786;78.77616;124.1153;90.31259;113.4434;109.3973;87.62103;79.69901;100.6939;109.8891;104.6228;93.21346;129.754;106.5066;102.7987;93.61658;98.65821;116.8025;104.3585;100.5814;93.29742;129.5532;124.1986;105.3907;74.88799;95.67792;105.7992;94.89674;89.51977;103.5455;93.09016;86.11231;105.7031;89.10359;116.7534;93.44471;96.22334;104.9291;96.59753;93.73641;100.5081;117.4587;88.15041;125.773;89.14105;115.176;105.3892;99.34998;134.2174;123.5394;126.5712;104.3439;81.58347;88.42926;117.5669;103.4426;114.5642;95.85325;114.4983;118.5861;105.3281;121.7507;126.5888;83.16199;114.0557;127.8671;135.3612;104.2601;135.9615;128.429;103.4678;110.827;107.8815;129.8998;113.7882;89.28268;134.1346;112.246;110.3374;99.02971;117.3073;115.3917;113.2361;124.4302;105.5235;131.6968;99.40224;107.6119;90.52686;111.8811;86.83131;94.56076;118.2011;119.0771;88.3364;109.7607;113.0358;114.4665;133.1248;95.21481;95.4836;112.2727;94.59438;111.6727;99.52203;123.4284;136.8014;128.4628;82.39503;99.48783;127.1;130.847;125.459;119.6653;145.9211;101.1089;88.08372;97.69505;103.8265;141.0273;117.631;98.4551;117.3511;99.47437;137.6956;106.4632;105.0629;86.36609;86.6347;84.38228;120.5227;86.12415;122.4739;108.6408;91.0505;83.58091;102.0104;113.0197;101.6437;91.0519;127.7132;105.7033;113.2757;103.9959;93.92811;111.5399;102.6385;102.1804;94.97001;130.3966;126.8757;109.151;78.41096;100.3581;109.1905;94.56538;89.12685;108.8794;98.21246;90.75771;100.933;95.1199;114.0879;85.39357;102.538;104.6722;100.1811;98.10141;99.04893;118.806;83.60691;121.3081;85.04339;113.4599;113.6053;110.9138;134.2241;118.2182;125.5467;101.8444;81.34814;89.58804;120.156;107.3591;115.9084;100.5755;118.0283;118.2184;104.9235;127.5715;132.554;87.73056;109.1206;
108.8447;107.3248;136.4553;106.6668;92.55374;100.918;137.0085;124.9655;116.505;104.4037;113.5326;118.7075;121.4284;148.5217;128.9875;114.9236;118.1878;131.6852;92.92088;92.18669;101.8117;104.2494;153.4643;102.2757;126.7146;133.2882;101.24;124.0507;90.44766;112.7441;101.8714;124.7745;121.2011;126.2074;126.7686;126.7973;110.1346;89.42027;110.9074;126.106;125.288;103.513;111.2895;82.21252;132.4785;113.1991;147.0485;91.62784;108.6292;140.4608;121.5718;123.9516;77.17858;107.5839;146.8795;103.9308;104.3293;95.93492;92.91004;102.8566;93.56759;124.1495;97.38563;85.44465;104.169;79.70816;100.7869;94.21843;95.41993;104.7088;102.1102;105.4148;126.3225;126.9964;81.44543;104.4463;101.5869;119.1805;107.0076;88.63846;102.6716;91.2622;88.30134;88.32341;96.86051;99.76294;108.5621;105.5444;88.04994;114.3655;111.9497;109.4318;109.6526;127.3211;118.1024;97.84959;117.3004;101.6027;95.12632;137.4318;79.89835;122.7514;123.6769;102.4738;127.5922;138.8237;107.1637;87.95962;100.8655;109.0003;104.814;125.7331;130.1623;110.5182;107.9592;108.6934;110.4392;86.3392;103.7477;115.6037;73.87323;110.5819;90.86736;108.9691;91.27897;99.0401;119.6771;107.6795;110.7957;109.008;134.552;105.9905;95.81499;99.70309;134.3452;118.3753;117.1521;104.5796;107.7952;118.3011;121.8068;148.7799;127.0594;113.1105;121.0065;134.0456;92.03673;91.97836;105.9589;103.4529;151.7148;97.32568;129.0378;133.2263;96.68081;124.5782;91.6919;112.5175;100.5526;123.8058;125.1477;128.0468;126.1777;127.4962;115.4841;88.28298;109.4236;120.6055;127.6009;103.461;106.5094;82.64423;132.4086;114.5109;147.2292;93.57041;114.2294;134.849;132.7508;123.2895;80.66681;107.5005;140.8175;94.8335;101.083;96.24046;88.9379;114.6595;89.68526;124.8295;93.86385;92.02306;106.7162;75.87489;107.0841;92.85236;103.6072;110.0165;106.5404;112.7514;135.2555;123.1568;83.74208;100.383;101.1429;107.3661;114.5208;89.15717;108.118;86.74107;97.86498;87.75996;100.7637;99.67311;103.3596;96.37029;84.74878;113.7186;109.7862;121.6488;105.485;126.6066;114.0452;102.7994;117.9898;94.71912;99.29753;135.6653;84.00162;128.1911;128.5032;111.86;136.1911;133.7238;112.0347;84.27774;100.4853;96.48616;112.103;124.0758;134.1687;102.8766;116.4141;107.9652;110.6979;86.01279;98.61933;108.1071;70.86859;109.9267;88.93784;121.1605;87.49838;98.39204;115.6138;112.8687;
135.7388;103.1212;123.8047;104.3535;99.64665;84.26345;92.28048;135.8467;109.604;97.19582;89.22112;76.29966;119.7736;115.4336;107.1047;95.0234;110.7248;112.9586;144.8193;138.8652;99.40955;109.6236;87.20663;112.0709;106.2021;102.743;102.0448;76.17548;92.17982;93.52395;87.18042;90.44769;100.9252;84.93945;92.96843;111.0879;111.3251;94.19222;108.0209;105.5891;103.9014;111.3107;121.8366;96.96729;113.4734;132.0115;75.84642;115.9726;129.5495;115.0998;129.4641;128.8543;111.0193;94.91849;95.58889;86.76147;87.09306;136.8765;134.1232;97.48843;110.8507;118.6633;108.3766;98.31329;96.97195;120.2673;91.94977;121.0405;98.55349;90.71188;94.35682;108.3614;133.5732;120.9967;94.72424;103.5085;149.6991;129.3348;108.202;92.82266;150.9505;128.5683;134.3091;116.6132;128.0496;128.6407;107.6712;138.5011;135.7212;123.9291;122.2515;113.893;91.07939;99.27042;95.85493;95.73775;141.5204;75.44385;135.3328;124.6165;92.88943;105.6141;90.37823;87.45931;89.63863;136.0927;130.0823;126.3469;143.245;121.2347;113.1705;85.23222;110.1161;128.0258;134.874;90.76903;112.919;84.9249;124.9554;91.95123;125.5892;100.9479;114.6759;133.924;126.8599;131.0763;80.64733;126.6954;136.1026;103.0125;128.6767;102.1994;97.4441;83.82599;94.53503;133.3736;113.1917;97.19855;91.5512;78.26996;114.9101;116.3948;112.8035;97.21214;110.8669;112.7566;149.8681;136.2822;97.03712;109.0302;88.37386;109.308;110.5373;102.5826;103.4267;77.98215;89.03148;94.54614;91.68507;92.41703;102.2515;84.91223;96.36137;108.5871;110.0485;93.80736;109.317;102.9099;108.1874;111.1459;123.3435;99.00639;112.3798;132.1823;78.85806;118.9377;128.4366;115.3249;131.0854;122.176;111.9938;97.64889;103.0486;77.78933;88.2941;135.2876;123.3136;107.7091;118.6061;120.0814;120.3549;100.7607;101.329;116.2456;95.17336;117.4299;103.3003;98.50528;103.6957;110.5356;136.0899;116.1893;98.01909;103.6981;139.6993;135.3647;112.3032;96.00714;149.7485;128.7952;135.9553;110.2643;129.0955;131.8049;115.575;127.1007;135.2527;123.6009;109.3751;122.421;99.14891;100.3972;103.6188;95.45792;148.1933;73.06556;133.9044;123.4028;96.47366;115.3635;99.61337;91.28252;90.11773;132.1929;131.1312;124.0578;134.6918;126.8776;113.6904;85.75242;110.3384;129.3113;131.2668;87.23319;112.8082;88.69112;133.586;84.50196;125.1804;100.6335;102.2375;143.1838;136.3964;132.3496;87.80112;126.3971;
106.6704;130.6658;124.8816;101.8231;91.21867;140.1148;134.2694;129.4476;99.73296;130.9187;129.2898;133.0654;136.5552;118.5778;120.6462;120.512;140.487;102.8696;108.0238;95.26933;101.5091;131.7428;85.27392;133.589;146.4548;90.36628;121.594;113.7458;90.1375;89.99995;114.6036;139.9866;110.8115;139.2555;128.1734;134.0492;79.27625;95.43982;133.8518;138.86;110.4847;90.69572;85.68146;127.2288;104.2041;115.3709;93.82894;112.56;154.7036;132.6314;114.4327;75.49524;111.1392;142.0586;91.71497;127.738;96.95394;91.64012;93.14616;108.7225;112.4682;92.8333;83.764;84.58946;80.03189;96.43627;111.6221;102.6674;92.24238;99.97903;115.7955;137.0175;121.5159;98.1721;114.4869;109.7947;114.1654;92.85893;98.08914;99.89906;99.89818;98.20972;102.2018;89.43367;98.01897;90.80522;92.00682;92.74115;135.8538;104.3483;111.659;128.3102;107.1548;108.3194;91.28929;128.3615;91.93347;104.9391;142.1901;93.56521;110.0138;105.7622;114.0604;133.2585;156.5121;93.57071;97.16074;94.00607;101.1178;78.80483;129.0432;125.2447;119.6366;111.4539;105.522;106.0413;87.44183;98.77124;100.8198;92.67929;117.1627;90.04003;103.3142;102.7882;91.80299;115.0049;106.6039;87.38221;110.6644;127.1216;129.8593;101.1125;91.63104;135.9438;131.2957;125.3719;107.1104;130.9033;135.2906;129.4751;140.3886;116.7939;123.1975;115.5179;145.9284;100.1569;113.4177;95.01068;102.6778;128.1758;82.71182;130.5088;154.881;91.71564;127.1833;111.2069;92.43822;89.59727;116.3427;135.4594;114.7191;137.5432;133.2534;134.5864;79.54115;93.59361;130.6397;135.7221;117.8215;92.0499;90.38567;124.5455;106.5096;116.0599;95.43115;108.4289;154.0717;125.3069;115.0645;80.00343;119.15;137.0834;88.7157;122.9695;98.55811;92.27367;101.6342;108.1272;110.6472;98.79394;94.28959;84.51147;85.90523;92.21469;118.47;103.1625;97.44922;98.35532;117.6697;133.9438;132.05;104.459;110.1014;111.3875;118.6136;90.03168;96.72734;98.36584;99.38091;91.91673;102.7982;94.33022;105.5406;86.83186;89.00206;88.68046;130.8205;104.5561;117.4528;130.3994;103.0779;114.0399;100.5803;132.7493;95.47414;102.9667;146.7139;93.60426;115.5205;104.9219;118.9103;133.3836;160.7459;99.25447;90.08366;97.8493;103.0031;75.63145;125.6251;127.9404;116.0393;107.2367;103.4578;110.8951;94.40196;95.41674;100.4151;91.22649;112.4715;90.23293;108.9076;104.6603;88.01434;120.8968;116.644;91.01015;
129.2511;110.1737;111.9677;113.41;88.27984;129.5258;130.3667;127.4877;93.03775;129.2451;129.3648;104.826;114.3531;100.0702;121.3467;87.96262;81.55061;124.3278;99.36715;100.7703;89.78841;124.6047;102.4195;99.2058;131.5884;119.2112;121.8924;113.7354;105.68;89.22523;135.2355;84.85123;102.5979;123.5958;135.8715;89.69341;115.6142;117.7129;133.7057;144.0059;100.2759;90.81805;121.6;93.01992;126.4706;113.6579;138.1981;141.9528;123.1787;81.75178;92.76512;128.3196;134.438;122.3194;141.0479;143.9737;106.5372;87.3408;109.7598;97.78028;124.2789;108.9542;102.5967;105.1834;111.8143;146.7349;92.73038;88.90809;89.40821;109.9974;85.13657;118.2946;86.65055;114.5257;111.2229;87.62679;84.67343;95.09578;105.0383;83.34827;88.78718;127.6698;98.22925;95.50214;86.91136;106.1379;103.5838;91.98698;110.7149;102.1167;115.4524;140.0742;111.0407;74.96819;117.9595;102.0968;101.425;92.39606;115.1232;99.21547;94.35682;113.4641;105.3048;124.824;102.2877;86.29104;111.351;97.21187;111.1583;114.0767;136.2704;93.5415;119.9107;89.69424;109.1362;110.9092;102.6692;128.767;138.4192;123.1553;107.7006;78.08428;101.8251;115.2093;96.04823;106.4864;105.1179;104.7137;127.0243;111.4613;110.3133;116.3846;91.696;131.765;127.5057;124.3173;94.34629;126.5782;125.8624;103.701;120.8071;100.7763;124.4672;87.70251;79.62578;125.6021;97.63403;103.492;93.07314;126.719;99.3891;96.11881;132.1492;115.3133;117.9625;112.5785;111.4159;89.03133;138.4323;84.6173;99.98908;123.8406;133.7597;92.27475;118.8382;118.7655;130.2373;140.2841;100.7631;87.42194;117.6723;91.976;129.3288;111.7573;140.1049;140.6688;110.4034;84.0678;86.8904;131.3131;140.8415;116.909;125.3459;143.9045;102.0067;80.80103;112.0151;97.09541;126.3715;114.9975;100.8075;110.4574;102.5246;145.9144;91.19409;96.96837;86.31361;115.8515;81.43809;111.5659;85.07345;115.2123;103.4227;86.25874;81.64148;86.74342;102.5961;84.43022;77.99344;130.5549;92.17247;98.08708;92.07429;101.0977;90.18541;91.93166;107.0303;99.85818;121.7735;138.8925;110.3635;81.60036;114.3097;108.4112;96.46721;92.76955;115.4356;103.5264;91.20902;120.0829;105.374;122.2547;101.5072;91.50291;107.2938;95.48505;105.1126;106.759;131.6268;95.76149;111.5094;93.15199;104.6816;109.3801;108.3246;123.8953;127.4947;127.5261;104.1055;76.11339;107.7692;114.1603;95.45533;114.3668;101.6767;111.1296;
138.5993;106.6111;98.27447;95.71114;102.8012;147.9973;107.0739;137.5944;137.4875;100.2265;122.26;108.0724;111.282;85.90215;134.1154;117.0908;134.9187;150.9456;129.2583;137.869;77.06316;111.4742;134.9251;128.1347;99.08832;101.286;74.36948;121.7607;104.1986;123.1615;109.6569;103.7934;133.2493;127.0575;105.4662;80.37093;115.7572;126.8514;102.0627;127.8142;109.0644;105.7541;95.25867;92.86974;116.5465;95.42771;102.6117;87.18356;75.924;96.02705;116.1074;103.2092;107.4294;92.55934;100.8486;129.0302;117.7972;107.5501;94.05016;113.3942;101.4295;107.2964;104.6165;103.585;91.85029;101.5504;92.29032;87.06474;98.05233;104.6354;112.001;94.47093;113.3657;113.9335;105.9048;123.6898;125.2635;103.8557;107.3648;107.7753;103.6321;116.4785;139.8831;94.47501;103.9617;126.5777;117.4211;127.2746;128.4254;96.201;82.60117;89.42833;91.78799;88.31743;143.1253;123.7441;92.43366;111.3435;91.72259;110.95;93.22588;82.61248;109.0035;92.72424;120.974;98.76827;98.11301;88.43758;89.01526;123.5597;120.3896;93.15096;100.0392;129.1601;126.1276;101.8983;104.9692;119.0492;111.9673;115.7227;96.09798;132.8095;106.5191;136.0435;120.1046;136.3832;126.7983;124.382;129.9173;107.9139;96.48138;93.97047;102.0291;140.9638;99.70667;134.0863;131.7392;94.78104;120.1424;104.8606;105.9625;91.00591;129.9729;118.3308;127.1604;153.0256;128.0092;136.2806;77.01408;105.8154;127.6212;125.9112;95.61699;95.57139;73.47238;119.2639;100.0102;128.7649;106.3201;105.8301;126.6169;128.4716;104.7501;79.90565;116.7404;120.3434;95.72588;125.5963;105.4235;99.91542;94.2454;90.69318;112.95;101.3264;101.0629;89.779;77.31322;97.95645;106.9928;113.5209;103.2598;90.49671;97.91645;132.4509;109.8925;97.801;91.12492;108.1695;86.97552;109.6746;106.5916;103.8386;94.73709;99.96792;96.26034;90.57774;95.92581;105.3919;99.75587;92.32105;101.5474;113.9911;109.5707;128.505;123.882;120.0234;111.346;115.054;105.2541;118.5922;129.8606;104.3463;99.86058;124.1532;114.2556;130.6665;121.8719;91.67464;81.55915;84.7104;81.03771;84.88608;147.2728;120.9603;99.132;107.5411;97.19777;112.9396;89.5324;87.77988;101.6149;91.73653;110.4037;103.7888;103.572;92.42741;91.02621;134.1327;126.3334;97.19002;105.583;129.0323;118.3105;110.193;99.13867;122.0133;113.8353;120.2663;90.45908;127.4611;105.3556;130.2092;107.7795;132.09;130.7263;121.5906;
86.88242;95.0634;134.0102;118.9267;88.62207;100.7121;83.43561;123.152;100.8035;128.3138;89.56927;110.0432;143.866;124.9726;103.6741;83.31918;126.8793;138.0237;103.6087;107.1455;84.92446;93.99521;91.47155;101.7907;118.2428;116.4652;91.99545;100.0757;94.04185;106.084;109.8662;114.5785;111.04;97.14045;123.4517;144.4107;132.6512;89.07708;90.71426;92.8834;102.5123;113.6192;113.2861;92.19577;98.48496;93.21292;96.47088;109.7773;96.74219;107.6841;83.91724;106.6229;120.2959;110.6405;103.2438;105.8465;100.7781;117.3613;100.1697;108.8525;115.9548;91.7341;134.5193;85.39487;114.7561;111.0621;118.9248;122.5633;124.7709;100.2069;93.02614;91.98878;92.74262;89.40662;122.9446;133.3227;112.3808;108.0165;93.47422;113.9275;100.9014;99.76067;119.0176;78.79395;101.7142;92.95039;99.49841;99.26463;92.40717;146.1639;115.5772;108.2814;126.2639;137.5248;128.9028;109.3424;105.213;132.5532;138.7934;136.4535;110.8242;116.0371;104.2232;110.6714;125.8589;138.6109;140.0009;108.9754;136.2015;95.26478;104.8892;116.2186;101.1563;150.2015;75.99529;151.2079;137.2955;93.96088;113.5887;86.8913;89.56436;101.1004;128.6702;114.3727;143.2035;122.2351;124.9535;121.4962;84.41064;96.23436;136.4297;123.5807;88.40356;97.96071;83.66052;120.5492;99.68243;131.4905;94.19872;111.3729;143.703;123.8155;107.9278;81.70387;123.6917;139.3358;105.5556;111.4891;84.55643;91.25089;90.66979;98.92406;117.8495;119.3371;95.62877;101.1699;95.0666;105.1829;113.528;112.4898;109.2824;98.41956;124.8341;149.2216;133.5517;86.56465;89.91354;90.14793;102.1436;116.4583;117.3115;93.24815;96.68477;93.25287;98.85982;109.0814;102.6649;112.8787;85.28367;104.5518;123.1167;105.896;96.95154;108.1851;106.6077;114.5886;97.40854;105.859;113.7514;92.86034;131.5274;78.13699;111.5694;111.3412;116.8226;124.3312;127.1257;106.4395;91.52353;96.50397;97.20219;96.14012;128.005;137.2282;116.6445;113.8853;102.202;103.4762;106.9478;104.7528;120.639;77.015;104.3089;88.59673;93.31889;101.5298;95.93316;140.4626;108.1607;106.2432;126.0161;138.828;123.2716;101.7659;101.3814;131.8955;134.5143;136.0476;115.3165;124.6532;104.5516;117.3172;128.6878;144.3009;140.3372;113.5039;143.1063;100.7122;111.563;106.3577;106.4341;155.2629;75.80153;146.38;142.8557;91.2277;108.9584;90.49917;93.0724;96.3503;120.8613;112.2999;142.9845;123.4437;119.4333;113.5249;
95.8762;142.7974;131.7097;95.69365;131.5657;112.3622;105.4887;99.95214;99.88056;136.8114;95.18648;105.722;92.93243;109.694;82.91008;90.59504;104.5701;111.8097;109.4053;93.7539;107.1486;92.94032;106.7899;97.7469;104.6014;118.4576;124.6166;98.00813;120.7719;117.462;113.5379;125.7788;86.28075;97.56997;113.4853;101.6932;114.3835;109.9469;109.3637;128.3839;123.2138;87.05577;100.8642;136.787;127.6375;135.4162;109.5678;129.3179;101.7828;102.7841;87.48416;99.41895;133.2267;107.1691;95.6179;101.2732;102.5979;135.6524;92.06422;113.0335;110.5925;105.8777;75.191;119.1295;86.41457;121.3743;111.3309;80.53672;97.69393;102.43;91.80687;92.54924;104.8413;136.2658;92.74503;102.0856;86.90808;86.65167;83.83253;81.34992;84.16109;97.57818;109.4596;118.4045;108.0638;77.08403;89.16689;116.6971;109.7308;87.7823;107.8553;99.33759;100.4142;105.6508;86.18648;106.6242;80.84062;93.76458;107.8763;108.2532;96.47163;108.5788;108.1204;78.03085;127.9896;97.21217;117.8314;110.7361;99.90206;141.3651;106.5799;109.1492;95.47336;93.04142;84.5892;114.3436;100.4843;104.4161;104.0584;97.9967;125.5175;104.3686;108.5752;133.329;110.736;124.0398;120.499;127.2672;89.04395;136.4709;132.3454;95.7649;132.1359;109.2868;110.2728;95.36226;103.689;136.5508;93.27841;101.485;97.10652;103.219;81.51614;87.02739;98.13692;106.6628;110.7366;94.24112;108.4074;90.55444;111.376;94.0915;108.0921;119.7534;122.216;94.63809;124.5633;112.055;111.1747;122.3657;79.67063;93.94425;114.1216;102.9386;114.7616;108.6287;114.0068;124.1923;127.0027;88.16943;98.70805;132.8032;130.0198;131.2166;106.8684;126.9438;98.37666;95.75599;86.90508;101.3895;132.246;107.193;99.18127;102.5161;102.3748;140.4968;90.55026;112.0788;112.8056;98.80696;78.00726;112.8572;89.47655;121.1008;112.3018;82.80925;101.178;102.9006;93.43021;91.36559;108.2135;126.8921;90.97913;93.93941;85.4311;83.12966;84.73095;85.94558;81.05769;90.72889;108.811;120.5492;107.1707;77.09997;92.60838;118.0259;103.5384;91.48423;108.0966;103.0274;100.3936;102.2173;91.64386;102.7871;88.32152;98.10517;107.8527;110.7848;100.8722;108.8943;105.6938;79.37;125.1502;89.11994;117.817;106.9172;96.22799;141.1384;110.2988;116.7041;96.89721;90.76941;83.17059;116.3478;100.5647;104.2692;103.6224;101.9663;118.8674;108.4015;108.8348;137.5999;110.6942;120.317;126.9555;123.0732;
94.98505;132.6655;134.5613;117.3191;118.331;123.8581;82.68427;86.77987;96.13586;83.86172;135.5626;106.3986;100.5947;92.6915;86.54038;124.5293;105.4566;100.2643;95.37944;102.3173;93.0923;119.0743;86.37586;103.9725;97.98415;83.26064;94.47805;105.4044;107.0369;83.37405;98.52587;125.7259;92.63694;95.89669;93.86208;106.216;103.1343;87.82037;107.2489;96.02409;125.0398;122.6763;123.5468;73.86242;104.0709;111.9452;84.75542;92.63517;124.7964;99.96758;106.3057;115.7665;115.5277;125.609;104.9546;82.73203;93.27441;110.956;113.8825;110.5486;114.236;89.51199;129.6596;85.44936;113.4647;114.034;106.0801;129.2242;118.6397;108.8216;82.99931;81.37318;93.27969;98.94872;107.0539;105.697;102.9373;94.06302;100.9261;93.47458;123.3116;125.574;98.61037;121.5888;142.2866;128.1483;91.86047;118.5115;112.7085;96.51574;128.893;111.26;124.2927;91.4192;95.8354;125.996;93.46183;100.2019;105.0759;127.7094;101.9618;93.12124;123.2415;105.5517;123.6647;96.92225;127.1622;85.02169;124.1997;92.08546;88.17046;127.8056;139.6271;96.47965;136.8738;123.898;140.6629;137.8341;104.2294;78.93022;100.7767;104.4252;134.5726;111.822;121.0169;141.8282;135.605;80.68828;95.15382;138.2157;141.6263;118.998;120.2219;121.9667;82.86555;84.06498;96.68228;85.08406;138.2066;106.4354;103.8513;96.45184;89.53691;127.0085;105.4527;105.0116;101.1638;103.8012;94.59135;117.1207;86.09216;100.6809;97.67284;83.34142;96.20078;105.4547;109.9077;86.0785;101.6315;128.2228;92.19512;99.62055;99.52102;107.7414;104.2441;85.29372;106.9303;92.86387;124.6854;122.7766;125.513;73.90634;106.0055;115.0095;88.46616;95.75591;128.5406;106.1708;109.1367;116.1549;115.3703;127.8215;94.07209;84.16747;83.70621;109.5808;111.502;108.2525;116.1171;101.5383;134.5688;85.91727;114.3225;114.1702;106.5682;139.1551;114.786;107.3286;85.34155;74.25495;92.78646;97.87827;97.33534;112.2943;92.89026;89.48666;113.8823;99.9684;127.0333;132.51;101.3285;121.9869;142.1115;130.3777;81.69043;120.2283;102.6498;96.24196;126.4872;108.7893;124.1385;100.6389;96.10996;122.9475;94.85189;97.69551;101.615;135.7518;98.1871;94.40099;125.4216;99.65707;123.6546;96.87612;116.6581;90.81019;111.1605;84.87579;96.34566;131.6673;144.3684;99.9181;135.5289;122.5558;140.2621;143.431;92.82275;82.36006;91.31418;104.1433;132.1171;109.3671;120.9063;153.261;135.9346;78.27111;
115.4733;145.122;92.52677;106.1304;98.22005;104.3699;119.9469;92.83057;115.3465;138.0257;117.5966;89.65039;107.4526;114.8375;136.8376;118.7757;147.9732;124.152;112.4785;108.5049;111.8811;94.49818;133.3076;116.6797;90.81525;110.3485;93.51277;129.5975;102.8546;102.5553;88.97728;90.94151;74.16016;137.9993;83.26884;116.3632;90.38348;83.61543;96.74837;79.64247;103.5956;85.98213;90.41962;133.9526;99.24387;89.24557;93.68925;93.14894;95.16937;90.94329;98.84816;117.1788;122.6144;108.1054;118.3616;79.52987;91.96606;109.313;103.5686;101.656;129.9319;107.217;95.48141;107.1833;92.22092;129.4702;89.52407;104.126;89.99205;103.7997;96.95407;89.19179;109.9277;88.64608;113.9283;96.44729;125.4578;91.24867;101.7152;122.9033;148.4677;107.291;110.5303;102.9842;104.5371;105.6015;100.1319;110.8109;97.20911;106.1721;104.9462;106.4661;123.417;121.221;86.21442;113.3065;116.3656;146.2563;90.07744;136.55;106.8928;99.14915;130.7064;83.30577;123.5443;90.27123;78.19508;140.3144;102.5164;89.23442;97.00694;114.3192;90.58897;100.5358;118.8156;126.6341;119.713;88.41739;121.1269;93.47522;111.8105;87.6969;99.08596;141.585;145.3627;99.47671;115.638;115.8458;110.4884;146.0513;91.02806;104.6556;97.23742;106.7178;119.9186;90.52462;118.508;136.9331;111.0278;95.06073;108.6284;110.7466;132.4487;117.1249;143.1781;125.4921;111.5802;107.468;111.5794;97.15776;134.2844;115.1846;95.03675;109.136;88.48286;137.0755;104.9872;98.26931;85.80893;90.28377;71.60281;138.9208;82.85435;116.1897;91.03337;85.72442;97.58317;78.41032;108.1036;84.91445;85.47704;141.5565;99.96981;86.588;91.8309;95.2811;82.15041;87.71622;89.46977;111.5524;125.901;109.7955;123.6631;80.64497;99.80878;109.7577;106.9518;108.3253;127.6911;109.1273;87.82009;114.7906;97.27779;135.3947;95.23991;105.0621;92.90463;106.181;95.10423;96.60594;108.218;95.51013;108.2228;106.5259;125.4975;94.09565;90.49998;125.0582;132.0876;103.7738;100.5998;97.70901;107.5735;107.2623;105.0128;112.1211;102.5428;106.803;111.2871;107.0383;120.4084;126.4028;80.65217;118.6928;127.2926;150.3901;93.84617;138.4225;110.7781;97.71974;125.9625;89.03299;118.8263;97.36273;75.91445;145.1546;101.8183;94.77219;87.86988;114.0247;82.13058;95.40708;106.435;121.5271;123.709;86.40686;123.9104;93.2027;117.5468;88.25325;105.2701;142.2444;142.1192;104.1573;109.202;121.2912;
76.92099;113.8127;113.2347;103.3198;121.7216;88.77274;122.6108;139.5222;117.7346;91.28245;95.42959;98.93793;100.9044;97.06542;94.91522;113.2544;75.32355;93.47771;83.81415;87.7923;105.3764;88.76588;89.31538;91.92986;120.7528;118.9737;105.0495;120.4001;112.5538;100.5612;96.03561;131.3172;90.21774;96.33337;124.308;96.22548;130.9825;121.4327;101.7288;122.3108;127.1872;94.27663;98.99466;92.97177;108.8566;89.35539;144.2459;141.8928;107.0648;122.7871;102.8994;118.7524;97.01133;92.15425;135.3399;103.4134;116.1981;92.28781;92.26665;103.6221;109.9067;126.7178;107.3127;110.8616;104.4126;145.574;125.7562;100.2581;113.7994;122.2426;140.5521;127.9984;99.15764;120.1901;111.2796;118.8962;121.8213;119.0726;116.4544;131.0558;114.2915;96.31473;91.10107;95.01472;104.2326;128.843;82.69965;130.4298;143.238;105.0595;117.1429;99.65736;97.53004;80.85806;124.0769;136.3046;117.4336;132.0316;117.1598;130.5733;93.17974;106.8745;123.2105;120.5651;93.94239;94.55813;88.51395;119.7559;114.1558;124.3418;112.7794;122.9183;143.2341;143.0092;117.7473;83.0069;120.9994;131.843;120.9562;137.0107;101.1922;92.0041;84.02556;104.2314;139.8967;100.0439;88.81667;105.2445;79.95971;116.7562;113.9769;98.52069;116.9575;89.50861;127.1663;138.2502;118.4855;92.18059;92.74728;96.03728;98.49075;93.92506;98.73706;112.9291;78.17434;96.06563;84.29034;83.29752;100.7712;89.41633;92.16304;90.42693;122.3583;119.8223;101.1376;116.9996;111.2473;97.52357;99.20972;130.769;94.47947;99.12004;124.1378;91.34114;127.1698;122.3819;104.764;120.5786;128.832;95.03425;95.19592;89.98854;109.9481;85.65314;146.5046;142.1281;116.3757;120.275;108.8455;114.9168;92.42832;97.87671;129.3082;100.9099;105.325;96.78129;95.12135;104.3726;113.7858;133.4685;114.9675;116.3147;111.8034;148.138;118.6393;103.9906;106.595;124.9137;144.6373;130.8705;92.44434;115.5913;107.1973;110.6389;110.437;111.4707;122.2966;129.0669;123.9046;94.08185;96.69651;91.58717;99.47968;135.5822;77.99577;127.6163;132.311;109.9888;123.4219;103.3529;100.1447;89.96302;130.1469;142.1045;123.0904;132.2679;109.3259;140.5479;87.69976;109.38;125.1809;124.3701;88.39213;90.59121;87.45555;114.6014;102.1165;120.8541;116.5061;120.7985;151.5906;138.0264;123.0932;84.21629;117.0784;138.6745;113.5054;135.1831;92.07846;96.60268;89.37602;108.0319;143.0695;110.1252;93.98396;110.3703;
94.66389;124.3131;106.5151;108.9325;115.1142;127.0606;106.0975;98.40936;128.2143;91.75003;113.6572;82.51022;98.39183;131.4155;123.3243;85.22637;124.0518;129.2559;126.4028;125.8895;105.3436;96.88909;103.8537;102.9037;122.1419;106.2342;115.9539;134.3911;110.3105;95.69126;106.0277;126.0252;142.0606;138.2616;126.9076;121.6474;106.1156;93.02601;88.02975;103.2716;131.3472;125.4368;104.36;101.0564;94.33325;131.7375;89.36984;103.0981;94.24493;93.28708;85.50573;114.8731;91.39518;127.8884;94.33748;78.88049;79.85844;81.31539;93.24676;92.25677;85.95132;131.8932;99.16611;107.7545;88.41846;102.7477;108.4174;98.52154;97.61121;111.6038;108.3148;123.5043;131.8507;77.07482;98.38847;102.3721;100.9784;100.0069;107.3242;91.20877;103.886;121.0312;105.3778;108.1811;106.6867;93.33424;94.47276;107.2361;103.734;109.071;111.001;81.97041;106.1456;99.68265;120.9225;100.3877;109.5928;151.0522;131.1858;110.0984;107.6733;87.21352;79.99504;121.1779;100.2953;125.4668;108.6878;95.93954;110.7316;98.57284;103.1746;127.0694;92.80334;116.4328;134.1127;126.5474;104.9587;149.3112;111.1931;97.37011;112.8189;90.10165;106.558;94.34073;75.13274;130.8722;97.45381;109.7441;96.01878;125.9189;110.7632;109.9939;119.5042;126.6191;106.0842;101.0575;131.6753;95.17309;115.9835;79.58031;97.658;127.6521;121.8397;82.91058;126.4054;131.3849;131.8474;127.527;110.3055;96.91794;103.6215;106.5696;125.0838;111.417;118.0795;131.4912;108.6459;93.66033;103.9446;124.0281;143.5376;141.933;131.5782;124.0675;110.1915;94.24451;87.81834;106.9465;134.4001;131.0661;106.3795;98.54637;92.63858;130.5672;87.48499;101.2196;98.02894;99.86546;91.31612;122.2229;98.50005;117.8624;99.24785;80.3744;82.99734;85.06078;97.71236;83.1551;82.82177;128.4401;87.9167;96.30958;88.647;93.97571;109.1459;93.95781;109.7183;123.2101;112.2781;119.2797;132.8468;85.44265;98.51534;103.4835;98.89198;97.64021;111.031;92.807;107.8469;128.503;111.8168;115.3121;114.3419;84.7944;99.38589;108.972;105.4896;109.1702;115.7149;75.58801;104.4417;97.6673;110.5366;91.11269;109.4836;137.8448;129.3735;103.0587;116.2565;95.20363;83.58097;113.2241;99.38535;131.4438;108.6855;99.52406;110.3685;97.21408;108.8889;131.0801;96.20364;121.3994;138.6743;131.7506;108.58;135.7086;116.7203;95.55872;114.6289;90.19168;111.1954;87.4854;73.68382;128.5613;88.16968;100.0375;
104.6873;109.1689;90.5781;115.9209;87.73005;98.41518;119.454;83.5518;112.7514;122.4204;125.0187;128.9283;132.336;98.09811;94.07924;85.57189;86.84158;80.78342;125.3498;141.4841;102.587;121.7242;96.48245;132.077;86.94164;90.30637;108.3229;89.45708;129.055;98.12527;98.43965;112.3685;93.57303;125.9026;123.8726;106.0077;100.0248;128.978;106.5275;98.27831;104.2792;144.9047;142.6691;127.2822;104.2899;132.8936;131.3198;126.7098;118.4448;113.0844;124.6076;124.1411;131.6896;99.34296;109.5589;113.4124;99.02895;133.2106;95.03751;135.4844;141.3794;94.30748;118.2652;90.73937;92.33511;91.40002;114.727;122.1849;115.0232;131.6045;112.0512;124.994;82.98532;107.4174;141.6558;128.6621;100.3234;98.9437;86.56657;114.5021;94.52104;120.8929;92.39857;118.262;141.33;141.3807;108.6498;96.76727;109.452;129.9419;97.40321;117.7557;111.5364;102.367;91.75219;119.7833;121.5462;105.3823;103.5019;102.1669;74.6508;97.04456;95.5555;100.7198;106.8918;107.1264;130.0624;136.5678;124.0304;106.3393;115.4361;109.6648;96.1618;93.93422;104.6026;109.6463;94.31359;94.77847;105.4879;107.2578;95.08627;92.06873;105.8159;93.98178;120.7233;114.5749;101.3616;113.391;108.6565;113.5993;93.37537;116.9348;92.76207;97.36064;122.2528;83.20377;113.3901;124.1265;129.7734;127.1268;133.7786;103.3404;93.30907;90.80134;90.2918;84.52431;128.4362;142.5062;107.8502;120.471;98.50525;131.2973;86.69669;90.58694;112.2341;87.97083;129.9699;102.4451;97.57096;118.3752;96.71211;129.5133;126.859;106.9061;104.7539;126.6526;108.65;97.608;104.0084;145.2626;147.1496;125.5105;102.081;136.0582;129.0448;132.1322;124.0175;123.8018;136.2645;127.2137;135.1784;95.62068;108.3079;104.6457;94.98215;127.6014;102.2366;137.3878;136.34;95.79163;111.9932;88.06299;90.95602;98.96535;115.8048;122.9045;114.169;132.281;122.7826;121.1005;85.16211;105.6887;134.9866;126.6847;99.03215;99.49694;74.78621;124.3672;99.50577;131.9607;102.4634;121.2614;144.9431;136.9281;107.3946;88.68291;106.9017;125.5111;100.988;119.7315;109.3425;101.1454;88.10324;111.6083;117.9787;111.4705;101.8914;100.5607;72.54002;101.2563;104.5157;98.73338;111.1245;106.422;119.6351;134.7605;125.0563;104.1164;103.7883;114.1954;99.39061;101.7953;112.5345;110.162;95.65105;94.64939;103.3124;100.2508;92.7466;88.34789;109.5536;95.76837;118.4815;113.2853;97.52695;105.4626;
131.53;116.2097;96.11821;116.1093;115.4985;93.71067;91.17493;125.4676;94.66908;106.9307;114.1456;107.6795;116.7596;83.36266;95.13636;97.80524;96.49986;103.0884;115.6721;116.7751;88.77135;120.8545;110.8516;101.0708;103.5772;113.2724;154.0209;122.5531;120.4038;97.72443;90.91003;105.9496;110.3799;94.83249;122.3444;107.0518;90.31667;106.7257;95.81045;124.2222;113.8244;96.5974;112.7258;135.4907;144.565;76.34927;144.6556;104.3375;94.07004;118.1088;109.9575;112.9295;104.3891;82.26009;124.1527;89.42764;90.42281;113.759;133.7572;90.99349;111.634;112.7017;106.8117;114.637;101.1206;115.6084;109.4677;129.6073;93.1694;90.19071;116.0784;138.8658;83.75972;128.7038;118.0888;127.8539;129.6324;81.78094;92.2646;104.333;92.81867;119.1145;114.9649;116.7953;134.2567;118.074;98.21395;83.8989;124.7011;142.8915;139.698;119.955;134.7239;94.3868;89.75314;111.3132;97.41236;129.0844;122.9162;98.75655;86.47414;91.6709;124.2524;106.5109;90.37061;90.03889;89.92721;83.44479;132.4319;69.2377;117.3956;89.34341;83.9264;88.4216;101.2053;92.53854;92.68564;90.36469;126.1812;89.56531;89.42966;102.2034;105.5034;92.77116;99.23331;92.48812;90.7328;115.23;131.3174;118.426;93.98861;108.4648;107.7008;95.42726;89.76014;126.4521;94.03755;102.7553;111.0684;105.2996;111.7665;82.37132;87.64256;97.93164;97.02146;105.6172;114.0979;109.5587;82.59328;123.2714;110.2037;103.0046;104.3789;108.7178;151.5244;120.9334;116.3649;96.22437;83.94863;106.9548;111.9503;96.8289;121.1684;100.9866;84.97388;108.5545;95.21052;126.3678;114.6673;92.39732;110.5941;133.7903;141.0701;75.85338;137.7988;106.1266;98.07356;121.5982;109.8195;109.7732;95.22852;77.79781;125.1852;97.09341;92.93091;110.2687;133.2504;90.6544;108.8724;114.3242;105.0317;110.7029;108.3688;120.2356;112.8768;133.882;92.14827;96.49702;117.3892;148.7665;93.23974;120.2104;115.4687;126.4431;126.4236;82.68582;83.00254;109.6527;96.79576;122.6082;114.8238;113.5797;123.8398;112.7056;99.13248;91.32412;124.5514;143.1526;142.5823;118.5849;135.0373;96.40698;93.60789;105.6301;101.0292;130.6967;128.6873;106.1492;90.09515;95.31792;124.429;112.3327;97.4943;86.17532;90.36066;81.4923;132.5337;70.52466;112.9769;92.58834;84.52948;88.72992;103.0196;93.10152;88.62809;83.14793;126.0295;94.59654;89.32133;102.4057;108.0323;91.56645;99.52183;94.47028;94.62748;109.4462;
90.91998;115.9706;111.2706;102.9261;124.6676;99.53797;108.3073;113.7398;108.0261;135.5869;100.8478;102.5168;79.73709;116.9848;103.2117;91.41927;110.7678;91.95083;114.9272;85.08245;112.6808;93.61893;115.6441;125.7657;112.0996;119.5567;92.14809;93.15453;87.93736;102.2184;93.93057;115.378;101.5124;110.5849;127.1674;98.62093;101.4817;133.4017;110.3494;120.5604;125.3092;132.2281;111.7511;137.3867;117.9468;92.83673;106.1016;87.55076;105.9702;115.3962;81.51995;142.5788;95.28935;106.4996;110.5149;128.0907;96.07735;115.9677;117.5291;116.3514;118.5778;104.4342;127.2092;91.56786;104.3322;94.23901;109.0014;137.4727;143.6817;92.53925;133.2071;116.9963;129.5296;153.8693;100.078;104.9596;87.69418;111.2475;125.1432;88.26869;114.0062;140.3425;115.36;79.30097;94.63685;113.8551;151.8486;114.8764;112.9712;138.7413;91.8867;101.0712;93.7042;87.34109;126.9033;121.0818;102.2273;112.7793;112.04;130.3466;86.36112;105.9122;107.9194;100.6633;79.13005;122.4741;102.0856;120.0367;99.56478;78.93143;74.71564;84.18906;96.7066;109.1746;88.97626;140.9605;93.86944;104.7075;100.7402;108.6823;97.96095;107.6246;100.6511;104.0512;115.0799;129.9548;128.331;80.59771;91.50582;116.3758;113.9998;104.0581;125.3547;98.53643;108.5885;114.8035;105.4581;135.4041;101.4866;104.5407;78.5727;115.9505;104.9405;93.14376;111.2277;92.23186;117.5088;86.04501;113.1558;92.56022;114.7681;126.3175;110.2777;119.2296;91.72293;94.9157;87.82582;101.4135;94.9256;117.1173;103.1407;111.0821;129.1277;99.4735;103.1276;132.3334;109.4911;121.1029;123.3798;131.8865;111.2803;139.5263;114.7163;92.95277;106.0774;90.29307;108.116;107.2284;81.99039;145.9993;103.1745;103.8729;103.4366;125.0398;98.36349;110.853;115.3446;105.8226;116.0091;104.4485;123.6702;98.16181;112.7209;92.12845;109.6295;135.945;147.4466;88.6954;136.1663;109.4947;128.0438;139.1316;99.85291;107.0632;91.38576;110.4067;130.9586;96.37315;116.2312;131.3084;115.9148;81.85714;102.4951;111.1283;143.5261;111.9882;114.6703;134.0156;89.91827;91.46219;94.32114;87.22089;123.3906;125.3558;106.3068;110.4533;110.3375;130.1964;90.49892;101.7657;112.5509;91.99953;77.35007;110.1374;101.8189;122.5185;106.6028;78.09293;79.25169;89.34967;94.78726;101.2039;87.39988;145.7728;103.0063;102.0682;95.81521;104.0471;99.58102;103.4488;98.6115;94.31846;115.8039;129.7874;124.8221;84.11089;
111.9877;97.27368;118.45;114.1055;123.2216;126.9018;121.3813;125.5465;110.7676;120.8076;90.75906;102.8319;91.03428;99.23512;127.9551;84.89262;124.5927;135.2189;117.7399;127.9123;100.9329;118.6745;88.74381;122.3056;146.0799;127.8592;133.5776;116.1307;120.4799;88.37325;93.97614;124.4951;135.1763;109.2277;99.81403;82.27634;131.0508;92.87528;139.7671;111.0927;122.6606;153.1392;126.016;116.6838;76.4557;121.9767;135.7303;90.03289;119.4421;111.956;110.2149;86.70843;112.9738;122.5116;87.60136;94.21387;92.95045;105.1873;106.3439;109.3649;91.98113;97.40046;91.44337;121.6703;121.2;116.9821;88.51814;100.2212;104.2509;101.2665;99.38421;102.0832;93.97321;81.36462;89.50864;96.23339;87.89989;93.14748;88.49265;92.10146;82.83708;113.4918;133.5007;110.5709;119.5862;129.4268;105.3526;95.4962;129.7734;96.70415;103.057;130.9087;84.60345;122.1132;105.076;103.222;135.5889;146.3042;101.9844;86.90973;100.0909;83.41233;97.40771;141.8433;132.5352;111.2875;109.4473;106.6447;110.8037;99.8439;93.91017;102.1971;91.87262;129.0268;110.9557;89.42175;105.9591;96.24563;105.9531;111.2648;95.14906;129.8627;140.8188;124.4543;91.54431;97.45544;120.5357;133.1796;114.9114;98.58057;120.082;111.8752;122.4776;122.0349;121.6297;118.216;103.997;114.0347;92.36836;104.545;95.73615;99.65899;127.6159;80.59299;128.4856;137.2615;120.1502;126.0323;100.9779;114.4296;88.7535;116.0527;137.8306;122.4442;135.3012;118.744;124.9182;89.93468;93.01675;120.0659;138.2086;112.3533;101.3562;81.42614;130.1199;90.28939;139.7821;105.1396;115.114;147.2105;127.693;119.3059;78.81924;125.3843;134.1532;87.17271;128.7589;111.6665;109.8995;84.37505;115.9483;116.4007;91.49518;81.28106;86.71231;88.1964;108.5393;113.4004;101.3936;99.80509;95.3989;124.7718;124.1488;110.2479;88.47315;102.716;111.5455;97.68292;94.67806;92.63892;91.66184;72.64851;88.76839;88.04665;90.29211;96.0077;83.60022;93.71952;90.61601;113.195;133.1528;107.9291;122.6353;123.1382;109.6179;82.4683;127.4485;85.74404;103.3488;133.8389;91.04712;121.3879;110.7113;109.2089;132.903;136.4216;100.0449;91.20523;109.4309;81.31234;93.08392;136.1437;134.986;106.9825;106.7418;96.75746;110.6265;99.71591;90.15044;107.0089;95.13108;126.4683;108.681;88.99443;111.0415;92.05677;110.591;101.8923;93.1413;117.1093;141.1799;127.3131;98.22333;96.80743;126.5849;139.97;
106.3102;122.6603;92.38283;93.35447;110.732;120.0281;123.7349;122.3674;94.28622;108.2708;133.5383;123.8452;97.70033;122.1669;122.5902;94.67361;128.7541;102.9041;117.6407;108.0948;91.673;141.4261;96.38126;93.72766;113.872;143.0044;98.87341;92.27926;111.3876;124.925;138.5305;110.0131;114.869;109.1182;106.0644;101.8735;114.913;137.5322;152.7396;79.17422;142.8753;128.2417;125.9937;126.8516;86.44334;82.7301;93.07084;94.22044;110.1944;108.951;113.6418;131.0578;119.9441;84.58377;91.2435;109.341;128.9609;122.7235;137.1704;135.1076;102.5577;105.234;100.1827;92.7673;142.0776;128.0596;92.48938;93.97301;97.47569;157.7211;104.9731;97.5402;96.07194;90.148;88.48547;115.8692;89.36155;107.3867;102.4621;80.71488;95.50172;98.55952;106.8226;102.2526;99.91067;142.3646;91.04865;88.12892;109.1273;122.8432;102.7039;87.06993;94.51373;113.8233;134.9298;128.163;113.5261;94.69122;94.97328;127.0453;117.2228;104.2011;131.4124;86.25044;119.084;125.1244;102.8069;113.6079;88.46137;84.58336;83.60095;92.7165;94.49226;108.1496;109.8601;84.437;120.4793;91.54235;107.0781;90.03542;98.48684;134.735;138.9147;120.9612;101.9429;101.2377;93.16466;101.0181;107.0748;124.1654;98.4296;95.2571;111.8414;121.2004;123.1136;124.6821;97.00949;112.8251;138.3486;126.6232;99.86572;125.738;120.7843;89.0868;129.394;104.1982;124.2546;110.0545;92.50565;142.5888;95.33949;95.44528;115.9229;146.7239;102.5161;94.6924;113.204;127.4851;136.5061;103.9893;114.9842;109.4861;112.2641;103.7895;115.353;137.5998;151.4245;80.75537;145.1686;131.7676;130.0987;129.6806;87.23098;84.75925;92.25903;89.59583;109.4373;104.3151;122.8254;124.6622;125.9545;84.40096;89.775;118.0918;131.2802;128.6307;137.3612;138.1165;101.0592;103.88;92.07077;88.48941;141.939;131.313;100.8179;95.42278;98.35934;147.6373;97.65672;105.6299;96.71424;99.80588;84.33342;123.2824;90.52892;109.4369;103.8906;80.05711;94.79671;94.14838;115.7221;96.61277;105.4024;142.1221;89.57313;96.00241;109.4244;126.5263;101.0993;87.0393;92.2584;110.0521;126.4307;128.5118;113.4679;98.25081;99.32642;126.4921;118.7071;96.02068;123.389;91.20403;117.9175;134.1677;96.58501;118.1153;88.84338;84.34396;85.66461;96.69929;93.87359;104.3197;114.508;77.56156;127.0527;91.33395;105.6667;95.26694;98.80669;138.5944;137.0505;120.9483;99.63784;97.68573;86.12811;101.3491;
95.02658;130.0751;100.4079;99.50183;126.5293;112.1207;111.378;106.4159;89.95354;101.8781;117.7343;102.4509;107.0522;104.493;115.883;128.505;101.5213;128.2952;120.8956;91.27045;131.4836;124.3507;127.7761;92.81213;135.3616;122.352;96.52751;111.0266;99.06307;120.5322;112.253;83.35691;139.6294;102.732;107.872;107.402;124.428;106.8025;100.1674;125.6099;104.8228;137.1689;104.0867;105.3036;105.6308;130.9563;105.956;90.91325;132.201;123.6184;82.76669;116.3585;114.406;129.0994;136.9189;101.1215;90.93524;98.92267;89.24477;123.4441;88.33827;109.8346;139.4562;120.759;85.99613;112.4397;117.4284;131.4449;116.6579;111.0321;127.7957;102.7871;95.29678;107.5813;97.09093;131.5811;110.3397;101.4269;114.6043;106.4905;132.2298;107.9636;92.99495;89.65845;108.1389;76.93666;116.9477;82.96031;119.8992;103.0544;76.14797;80.18922;94.00826;105.1983;102.5512;90.11646;144.8427;101.9616;103.3056;101.5272;109.9686;105.5786;88.76385;100.8213;96.49748;135.6385;123.0464;104.5064;90.0764;113.4923;128.2094;93.36248;101.2449;110.7524;90.14359;92.02302;109.7797;104.5033;120.3607;99.1936;88.93065;89.74403;90.12549;104.4485;87.28816;105.4492;89.383;121.4613;96.85014;131.9275;98.77614;98.84865;130.3377;110.8399;108.978;100.3413;90.52222;102.0519;111.8903;102.0734;107.4076;104.7096;114.0559;126.5874;104.1349;130.6251;119.8868;91.06316;136.1909;123.4806;126.1803;88.09964;137.7624;122.2927;92.07693;111.5256;100.365;120.2979;110.8685;82.56551;143.8631;104.3922;107.327;108.0453;130.11;105.5592;98.75748;120.1203;106.9393;137.1091;99.46554;105.7921;105.5684;132.3671;106.1093;92.84827;148.4763;136.1476;85.34017;117.7822;125.3747;138.0405;131.3456;95.19183;95.56469;103.378;88.45186;129.1445;91.41631;115.9548;130.46;124.646;92.96497;110.248;114.2671;133.9855;126.4447;103.8375;128.8125;100.5463;95.85206;110.8223;93.39291;141.5145;104.5597;100.3923;108.9114;105.0153;148.5068;119.682;95.72171;90.904;118.8099;83.86447;111.8013;77.59351;124.8171;106.6512;77.26024;84.8402;97.2198;109.8824;94.69793;91.5141;151.5665;97.29123;98.40127;103.6605;115.4922;98.3018;89.5744;100.6418;96.73746;138.1727;121.208;113.4295;84.91876;111.0793;122.0294;90.04208;113.598;119.7484;90.97647;93.1891;116.5223;112.2752;115.0915;95.30135;93.19185;93.08505;91.35401;109.747;90.40236;110.1197;82.07949;123.0826;
89.98374;99.49998;102.0926;123.8914;98.15327;115.1006;119.6234;123.8228;131.2016;93.99142;103.893;88.80469;133.3604;95.74463;102.6122;118.438;131.3743;83.97023;116.4647;114.2913;138.6705;127.2211;98.70001;109.2853;90.11507;96.85845;107.7021;109.4583;116.9922;148.9648;131.1086;99.59803;90.98275;114.2113;139.5307;123.891;140.9626;131.8051;93.46978;104.6474;100.8848;89.29545;120.955;104.8751;110.45;98.7968;93.90279;122.2065;90.79683;103.2414;84.37391;103.839;79.75939;118.7794;87.75731;125.4567;89.21019;84.72301;75.95644;80.94452;97.0829;99.15628;106.3296;140.5561;89.26319;97.53474;94.28025;99.99409;94.96102;107.3182;103.7613;108.8168;130.4159;119.3176;103.6777;74.65308;110.7568;116.3433;103.9468;89.25864;114.2096;91.46071;91.58241;107.9763;109.0916;109.7848;100.1718;109.4428;86.3765;102.0748;93.36354;111.5757;107.6496;98.94769;136.2292;111.4884;110.5646;93.866;111.8852;132.28;139.3047;114.5544;93.29734;94.50265;99.92119;105.5401;92.1785;104.1697;111.4299;100.7473;114.4882;94.07412;106.7753;128.1086;88.7751;120.9158;127.9285;129.0465;97.24082;141.4537;108.7731;99.30097;110.1212;90.03865;110.6616;105.0922;101.4878;145.5219;90.27996;99.3933;106.5212;121.5433;95.96736;114.5892;122.1884;121.4623;135.1242;93.99408;106.4062;90.92931;128.2257;96.62028;108.1918;120.8801;131.5292;83.7961;120.9967;111.9491;135.8659;126.5819;99.94154;106.5571;94.1119;96.70266;109.1216;111.6219;113.4418;150.2541;136.6199;101.6641;92.24226;114.1797;143.6805;121.2493;139.5256;131.3498;94.67573;101.9802;105.1087;89.14782;122.4564;106.9953;109.3711;98.9445;97.2505;125.2497;95.01395;112.2028;91.70637;109.8785;71.99652;117.1692;87.75901;118.4823;89.86938;84.09406;85.86551;86.57188;96.66969;92.51481;110.4947;143.676;85.13235;100.8874;100.2262;96.3407;90.21329;101.7738;111.8622;111.4723;128.7949;124.4654;111.9176;81.13194;105.4166;117.7585;112.1795;87.51315;118.9331;99.89642;99.21088;114.1334;99.97875;108.2268;100.1692;102.9353;85.46033;102.4617;101.8394;115.7363;108.2883;92.14991;136.897;111.3594;107.1681;98.08265;113.4414;130.594;132.3404;110.1456;101.078;98.92427;96.86028;111.4881;97.53381;109.4509;107.1656;101.8877;119.3574;89.69246;112.6053;139.1571;91.88162;129.9371;116.9309;128.7938;97.34647;136.3236;107.7836;99.66433;119.3337;93.80051;111.3488;98.06475;102.0857;145.3999;
129.8696;84.49382;124.962;121.237;96.40671;114.3977;87.23402;107.1754;83.4494;114.2088;121.1916;118.7425;102.4171;98.46886;95.21211;110.9758;106.4014;102.7197;102.9121;116.8567;132.158;124.195;119.1664;89.11848;101.7621;112.2825;109.1282;95.54504;113.369;89.64315;86.86635;118.7137;97.11726;98.54549;91.43448;101.1618;105.0338;91.48154;105.3997;115.7646;89.92664;114.3359;111.9779;115.8035;115.1682;105.5276;100.6017;101.9874;133.0753;86.30464;115.4814;111.6612;113.9933;132.0065;141.9272;104.8956;92.74648;89.30503;88.0558;94.76505;144.0754;120.7846;87.27879;116.968;115.2061;115.6091;104.6169;83.24611;110.1315;81.48037;102.7722;107.3619;91.28738;111.1959;98.422;141.9724;126.908;101.7644;127.1559;144.5704;123.0847;99.30794;102.558;153.1377;153.2489;114.6454;97.71588;118.9832;125.5329;136.5341;142.0921;115.3926;138.5561;108.0378;126.247;118.1717;106.847;102.7383;100.2881;143.6005;95.94199;128.6744;118.073;95.62195;111.0396;97.58384;102.1946;95.27776;143.1879;111.4868;126.1553;128.2117;125.0882;121.758;85.65848;98.64198;132.0616;129.7372;101.0989;101.5869;90.77118;119.7432;94.81321;132.4613;111.7577;102.7019;119.9282;128.9751;134.2728;81.64866;129.9413;120.4615;96.83064;110.6319;84.84036;103.4698;90.20898;114.1944;127.0037;115.3523;105.7405;96.84386;97.48006;106.1855;111.1436;100.009;108.1784;116.5702;133.491;120.7325;116.1341;86.606;108.8056;113.786;114.4265;93.21927;115.9474;89.24127;88.38132;114.5477;100.7776;97.10589;95.73273;101.6285;105.3386;89.6742;102.5515;112.9012;96.5573;115.8557;117.3467;113.2441;117.5913;106.1865;102.2605;98.05698;134.2245;75.45773;107.8741;110.4035;106.4769;130.8133;139.3456;104.952;103.6695;92.80402;87.64751;95.35897;150.7488;128.0143;86.78117;111.5014;109.7216;122.9247;105.0623;88.5396;106.3598;82.10829;108.3254;102.6194;97.07578;110.1454;100.3271;141.9625;120.2303;102.9664;120.1855;138.5833;124.1791;87.64147;95.39578;151.6587;144.5018;113.5283;95.57508;119.0383;131.2489;140.3103;137.8038;118.6571;142.4012;114.1699;123.7815;116.8818;98.77417;112.1817;98.1109;149.9786;92.26911;130.3886;127.1118;93.79275;111.0073;96.15078;100.9191;97.63604;133.4688;112.0504;117.4188;126.9735;123.0704;111.342;76.82076;97.01392;123.7771;129.4709;101.6803;104.4279;95.62255;123.2811;91.33238;135.9587;115.1931;108.6827;117.5437;127.6287;
108.0762;102.8918;99.02171;77.44164;83.64437;97.81352;85.15437;85.37807;124.2894;97.7379;98.67381;88.72456;104.7378;97.3175;87.95934;110.8526;102.6373;128.9061;145.9403;109.314;74.37277;117.9556;108.4494;95.10405;81.58968;115.7174;100.052;90.68715;109.6164;105.7202;116.4921;90.54084;86.58118;105.2822;108.4402;97.08099;101.7406;125.5733;95.8026;116.8042;86.66004;110.1278;108.2373;105.6819;131.0771;137.4631;124.0474;108.7336;81.03654;111.4199;122.279;94.30073;107.325;107.4046;113.4108;122.5841;104.9234;111.7408;118.5139;89.53069;132.3767;131.6564;117.7697;86.30292;126.1844;125.8157;116.1743;109.2596;94.16534;117.7292;94.23952;78.93098;129.4382;101.437;103.2503;94.72563;129.4559;101.9034;97.0149;133.1764;116.4597;130.4517;120.2413;108.2411;89.69368;140.2981;90.23232;96.5909;111.8066;130.3475;90.76602;114.804;120.9598;129.2357;137.2368;90.0322;83.50633;114.0703;103.4293;120.6621;105.9374;135.3112;141.4778;113.8362;80.27225;90.37527;129.88;135.5734;125.3168;138.1467;142.1444;108.8172;82.15211;116.9902;103.7808;128.1471;111.1872;102.322;107.2529;99.56406;132.9305;87.49805;89.03292;88.35661;111.0975;81.18626;109.4382;77.24311;106.0407;104.1361;97.46625;79.90307;86.97049;99.76062;82.8452;82.78722;125.8011;95.42048;95.61795;87.6898;110.9184;98.01385;90.61905;110.5606;100.4765;130.2037;143.8383;112.148;77.36491;120.0129;105.3304;92.08207;82.03141;111.8775;96.49463;89.65445;115.4568;105.5091;119.4605;90.29919;84.18597;105.5082;106.5544;99.76579;104.7664;126.6603;92.87012;113.4548;87.11302;106.3848;104.5335;104.5689;133.9866;135.3721;125.8543;107.6102;78.80481;110.2899;118.4831;86.56454;111.5383;99.0056;112.955;122.7347;112.6439;116.9894;120.7377;96.90368;131.0245;132.8079;123.1372;85.47399;123.6516;129.5699;104.3192;113.1165;94.39172;119.7574;86.21532;72.34351;128.9515;97.97129;102.5896;95.14947;125.9367;100.391;98.47314;129.7537;113.7809;129.2237;116.4676;99.94107;93.54862;130.6692;89.81712;96.72464;120.765;141.7697;96.2738;122.7935;116.9342;132.4239;141.1042;90.20458;85.09005;118.8059;94.08871;120.1978;106.2121;138.2083;136.3751;110.0162;80.72141;91.72717;133.3201;135.7399;119.1222;138.4914;141.9769;106.8601;83.53371;116.9898;102.1885;114.6857;115.5267;94.72356;111.1258;103.695;142.7281;96.9026;94.49112;95.40279;107.2801;83.71986;112.8973;77.42136;
133.3215;120.4883;116.1661;119.7858;108.8343;130.4511;98.91254;106.3357;112.0526;102.4053;134.0564;79.40375;156.5432;114.1639;113.3258;117.0087;112.998;92.71574;102.0437;133.3455;115.71;142.0421;124.6097;119.1114;135.3073;88.03951;81.42638;121.5228;127.0821;109.3159;93.81626;83.5948;125.8639;91.26411;139.7451;86.37365;116.2111;125.9482;135.6236;117.2084;88.14191;114.8598;133.1793;93.27028;112.4316;86.54295;99.90504;98.02851;105.896;110.5629;112.6941;97.58873;85.68579;87.12656;104.6225;109.8796;115.3005;115.7729;88.85693;104.4732;129.5638;135.8164;88.34834;108.1253;107.0721;97.65112;95.85273;93.08051;90.683;90.9397;95.30775;99.58185;102.8445;99.43118;93.6729;85.19679;111.1583;96.18542;128.6933;102.6615;129.344;107.0271;121.4143;106.5685;109.7658;114.8818;92.21416;129.0917;91.90939;116.1046;95.01196;102.1831;124.8942;150.1145;92.38317;93.05397;89.70879;88.63269;97.95856;116.875;137.2311;85.32816;110.1058;102.58;116.8792;86.24535;92.35835;104.2019;77.5057;105.5315;97.28777;105.6791;99.47656;88.86913;135.8616;122.4149;91.5984;109.4708;131.2739;121.2829;110.4522;105.0244;119.3365;120.8997;116.2806;118.0249;116.4909;129.2033;124.8091;121.8731;114.2159;117.8375;108.0398;123.853;91.83677;103.2544;106.8692;96.90018;131.8385;76.65421;150.2218;120.0363;109.5205;118.2482;105.9076;94.34749;100.9342;131.7835;115.6498;135.6448;117.5945;116.9681;131.2456;82.71728;80.48756;119.0285;122.4522;114.5986;90.73185;85.42359;119.4202;92.46323;138.9207;85.89129;117.1962;119.4638;128.3033;115.0849;84.87195;108.7715;131.9807;91.08901;108.8997;92.16452;98.37688;100.7795;98.7932;110.8116;100.8103;92.16582;83.74387;77.43807;100.0161;106.4058;106.5856;115.493;98.52568;108.9196;122.3458;142.5534;92.10225;112.6123;95.37783;102.3163;98.32826;101.7303;89.33125;90.05329;94.28566;106.1962;104.7125;96.33294;82.68916;87.84762;98.11624;101.5526;124.2321;113.6717;121.4812;107.262;109.0668;100.8931;107.5664;103.7047;87.89268;125.3186;85.57553;121.2166;106.9471;106.4857;121.4546;149.7963;97.71791;94.51187;82.49878;91.10459;102.0155;124.4748;133.5895;88.99615;113.9738;110.5457;120.5937;87.92844;83.18253;107.0357;69.45216;104.9403;94.91301;113.8855;96.36832;87.14754;124.5154;114.3429;87.97944;103.4565;131.4402;118.9274;103.5177;109.87;132.6925;125.5755;112.9833;117.723;122.4939;130.9199;
94.22421;112.3687;109.4249;106.5789;132.9044;80.14333;132.4658;123.88;104.9574;115.3648;115.9512;96.96556;117.3363;128.6079;128.9099;136.564;138.389;127.6341;120.9394;76.90597;113.5316;149.4928;127.3327;89.96448;90.32225;93.04569;135.6075;110.8444;129.9879;107.1616;114.3016;140.5185;146.3353;117.5229;102.1163;104.2617;154.6678;109.5223;115.1653;91.61951;91.06734;89.42137;104.4659;122.5567;106.8634;100.8;83.06223;85.14588;92.04688;97.47569;97.71374;92.41889;96.42266;109.1139;136.1955;122.0887;90.64832;105.5076;97.36401;92.35262;108.9463;108.5756;99.95702;77.34718;91.01898;104.2998;102.9939;104.1374;93.61343;84.76445;92.73564;104.9897;114.9876;102.533;135.2195;112.9844;140.7883;100.0718;123.9795;107.0604;102.2767;139.2129;82.47979;110.1252;132.5408;130.3878;127.3672;120.342;89.50685;101.4719;107.4607;103.3366;92.28089;142.9802;136.8814;103.5397;128.3721;106.1337;138.2773;83.71863;110.9596;119.7794;83.79192;103.0698;89.84377;96.70279;103.5041;99.649;126.6107;120.3014;91.71118;113.0394;124.3635;110.2816;97.47601;92.64957;126.7057;125.2135;126.722;99.91517;125.3971;125.6088;125.7443;116.4202;130.8012;132.8879;121.2455;113.6427;91.64938;113.6415;111.6122;110.9871;132.6368;77.69094;132.7491;121.2695;103.8134;118.378;121.2104;98.21399;117.1891;127.4341;133.6481;134.4938;135.059;128.896;123.0421;80.59251;113.1061;146.0266;126.3865;87.27071;89.97851;95.61452;140.0112;111.9958;131.1922;106.2559;118.036;138.2045;144.3165;118.9294;103.374;108.3555;155.6401;106.7345;114.2628;88.90287;90.71989;91.94201;108.3329;123.7696;104.9878;100.8415;85.27999;84.53311;96.63095;99.15981;105.1968;101.5568;97.61042;110.9483;134.4801;126.5989;100.0647;103.0017;102.2782;89.93529;107.4583;109.9579;98.21399;79.52738;92.1378;105.7477;106.8319;106.7411;87.82362;76.01182;90.53294;109.6351;116.5435;104.484;143.0885;110.4518;138.7485;102.7644;131.8603;101.0699;107.1054;141.2124;89.36191;120.0804;133.9323;132.3811;125.7035;124.8202;96.79627;96.84951;108.1708;101.7055;92.67011;144.4894;132.0437;106.7332;128.8199;106.7283;140.6662;84.26543;106.8348;111.1389;83.4121;109.3124;89.25444;96.41793;105.999;98.19669;126.7606;123.1759;96.12885;107.5829;128.8287;111.1731;103.2077;99.84818;130.5013;129.1247;127.2017;105.6069;134.0423;120.4399;126.5362;114.7111;131.3075;134.3219;116.7179;117.01;
110.0865;94.92175;101.0473;93.27737;110.993;96.50268;83.89016;88.74277;88.6013;104.3794;109.0364;103.7399;101.0321;115.8391;104.6908;95.63051;110.6374;93.84299;97.71203;128.8358;87.72569;110.0403;102.1674;118.8023;129.0404;126.6568;94.25751;85.74454;85.60654;98.89254;104.1687;139.5457;129.257;108.0188;117.9946;97.62259;119.2691;91.53288;90.9861;115.8572;81.21744;128.2775;97.16027;108.2506;103.9395;106.3348;108.2958;110.3538;94.79669;110.8094;141.721;110.6649;104.2173;98.53805;122.5353;142.6233;128.7062;106.0856;116.5926;116.2389;126.2817;132.5583;134.213;120.1007;127.0912;134.6931;104.0163;100.3352;117.3593;98.07797;125.3548;80.41386;127.6027;124.4613;96.18206;120.4588;87.12484;98.96085;89.33594;118.274;113.0467;120.1775;130.7114;122.161;129.8835;78.30685;90.63692;134.364;135.3716;93.02061;92.79777;76.42149;117.2045;102.1901;143.8698;103.4668;102.2397;137.7001;136.3882;111.3431;86.30391;113.6692;136.7608;98.35677;117.0171;115.8699;95.10268;100.7709;107.5669;126.8952;86.01898;87.75912;83.8631;77.53703;110.0527;100.9053;107.6312;103.7611;92.75319;123.0384;146.7022;129.8978;87.58007;95.77132;107.6407;105.5156;107.5687;96.90544;102.7563;89.77692;101.6041;93.34772;111.5168;93.65416;88.1622;84.42104;92.19031;104.1518;106.9936;99.54317;105.3823;109.1824;103.1237;91.96406;104.0173;89.13277;98.97034;129.4068;88.8651;107.4429;106.6543;114.7688;132.9144;127.9966;92.17124;82.59431;88.8032;93.93655;101.9057;135.9493;121.1369;104.2021;118.6434;98.84285;119.6552;90.33045;95.22542;111.8771;84.29894;129.6286;95.04431;104.7099;106.0904;102.6171;105.6122;108.1614;94.14227;104.7811;148.0623;119.4422;112.0552;101.9877;124.938;137.6704;131.1286;106.9944;114.7187;115.1973;134.2424;128.3145;129.6998;117.2652;123.3943;126.5603;106.6443;97.17989;120.0966;93.93091;134.3729;78.1544;129.3867;118.0582;91.00576;109.9439;85.60165;94.24776;84.00436;115.9867;112.3217;113.8908;136.8034;131.3693;138.6055;81.38078;92.70429;129.5527;131.1562;93.66594;92.86922;79.60088;122.5264;102.0955;142.2447;102.9299;103.8308;134.8558;138.2867;107.9185;89.53725;109.032;141.3371;98.56145;112.4994;109.4721;91.6992;95.5891;103.7044;125.588;83.13608;87.73258;87.73791;76.55232;114.6523;109.1893;116.5977;107.1273;90.95277;121.4408;142.2897;130.66;87.66521;99.32794;112.7229;105.4193;106.1815;96.38712;
119.9607;100.0694;121.1537;93.45953;108.3547;108.8698;93.67455;117.9364;110.7373;108.0034;100.026;103.4845;110.6202;119.8209;103.6565;107.1226;142.6339;120.4335;112.1689;87.36392;147.0679;125.863;106.9123;96.97435;120.8747;122.7362;133.8708;128.546;123.8698;121.271;101.8212;128.4954;96.91464;84.96104;99.56741;103.4024;142.0611;93.28108;137.1252;125.1101;101.7651;107.4494;98.01945;101.0887;92.16833;119.9172;118.6643;122.033;128.6916;119.0318;142.3317;88.12724;103.4406;144.7224;119.7396;90.49281;112.0605;75.80611;128.698;91.41087;145.1934;104.2998;98.574;121.1508;138.5841;115.9451;92.84671;115.9683;154.265;97.51704;125.2026;102.8729;110.6862;104.2711;103.6629;127.5895;91.73936;97.04462;94.91682;76.65366;108.1893;107.7478;115.1208;88.8558;111.0715;110.2763;113.9198;117.232;92.7053;105.1819;112.0743;101.2588;103.8012;99.7863;86.43738;91.35724;92.35009;84.08287;98.68242;101.2776;102.8293;96.71203;96.41286;101.3224;117.1618;94.43449;117.1416;116.2176;113.1529;98.20581;115.3723;99.44305;95.77004;129.1467;105.0897;120.6081;119.8536;125.4234;119.1853;121.1868;113.0856;82.05659;97.44697;83.68056;103.8495;140.3154;122.4105;91.77739;120.1504;104.8973;127.8621;94.95862;110.1646;107.097;93.86748;114.7679;111.3237;109.39;102.299;103.5207;114.0339;124.0912;106.9336;109.423;142.6293;125.6312;118.4345;88.73549;148.9506;123.8541;106.5967;93.79637;120.5289;122.8343;135.92;128.6015;126.9567;124.5283;104.9779;131.0195;96.46272;88.46822;105.3933;104.9075;143.3632;90.6765;136.7648;121.4991;101.4454;107.5433;99.77162;101.1401;93.98949;123.088;123.0478;125.6111;129.6106;119.1763;142.9028;96.36511;99.84913;143.0056;122.555;82.98187;111.525;74.86951;118.0244;97.54827;133.2074;99.47751;111.3873;128.523;142.5224;122.613;95.48887;116.3518;154.0771;99.46273;113.284;104.4679;100.2351;102.9381;101.3881;125.1275;93.43028;109.5515;99.11958;77.1012;109.0318;107.8806;115.6247;97.12693;107.3484;108.7736;116.6565;108.6607;92.67889;105.1323;102.2439;107.5468;91.88479;92.26438;94.5405;94.59793;96.18578;87.28429;97.53841;100.0629;102.467;101.4079;85.4369;105.2021;106.9206;94.16508;114.8305;113.7132;113.0357;107.7653;115.6659;96.76585;97.20486;126.3118;101.6312;128.4287;115.779;126.9096;121.3507;114.8661;113.0967;82.01545;88.29818;89.42532;91.96655;131.3717;132.0219;95.04604;
113.1043;93.76571;125.6795;128.6027;137.2377;83.05379;100.0531;129.1357;135.5174;140.9348;132.7645;144.4098;84.00001;97.21952;107.0129;107.453;138.4886;111.2177;113.8121;111.3249;94.40413;127.773;115.6047;91.44928;92.28992;95.16704;84.80922;107.4569;73.71906;109.7654;85.489;86.09272;81.68011;88.94792;100.9685;89.64893;94.58712;128.7156;99.09478;93.70629;93.3793;109.4073;95.47707;90.45701;86.67565;92.97677;114.4404;123.0228;119.4418;88.14942;95.10026;125.4073;94.72001;84.00179;115.8152;88.49742;102.7647;115.5379;95.5037;124.7414;86.97833;95.78218;93.91021;106.0829;94.99094;92.86467;117.0998;82.1084;135.2601;87.43445;115.5375;102.3332;103.9725;147.6435;128.6511;127.5739;84.16261;89.11764;98.88003;121.2431;106.8903;105.595;111.8443;111.6786;110.7177;95.15968;132.0243;110.5815;96.82986;115.0626;127.124;121.9858;83.5615;123.4718;97.36272;97.98586;110.1039;95.8999;115.2778;92.81332;85.47289;131.4734;102.341;94.06024;104.1824;129.4296;89.26991;106.0086;102.0488;102.757;111.3097;100.4813;114.4177;101.9133;114.4103;103.8911;93.61184;119.4509;137.1164;84.25499;130.1094;121.6957;116.1192;150.045;88.29199;94.33433;101.1419;106.321;108.1714;94.513;123.9318;126.9788;136.0757;85.14973;100.0272;126.4134;138.9424;139.8306;125.7791;151.2552;85.04003;93.4584;103.1358;105.8831;133.851;112.4864;112.9085;110.2746;94.127;130.8626;116.5144;90.12627;96.5452;94.04123;80.02242;114.2757;75.52614;105.3297;82.38395;85.45281;78.99511;89.68808;100.512;89.49665;95.25191;131.3291;99.93961;92.36935;97.66174;108.2025;90.39619;96.7243;87.35416;90.26379;112.3856;125.4714;126.9703;97.37996;97.44337;129.681;90.53715;87.36303;108.5387;91.67805;109.8194;121.6406;85.88365;129.6232;82.87856;89.41051;88.07132;102.7471;81.37741;92.97821;109.2267;85.8992;136.6167;98.51311;118.1906;107.048;104.6861;149.0057;125.7957;128.3406;92.42691;91.00803;91.60728;127.7384;114.0184;115.6659;114.3842;115.7083;106.1916;98.72569;124.2474;114.1283;100.977;121.3582;119.0223;120.1955;78.8761;119.2832;93.255;92.63144;100.0599;94.30409;105.3861;97.51278;87.18442;140.4861;102.4971;97.076;102.2013;130.8977;89.53873;100.6437;110.3653;107.6892;105.5674;104.1335;127.0658;109.9599;114.8231;108.4877;90.09218;119.2999;126.5822;85.93667;134.9325;128.1471;108.4024;148.0584;83.49178;90.66035;96.9738;100.7401;
97.85197;117.9692;113.9074;94.50224;116.6319;127.1825;103.0315;102.9044;93.28826;133.4552;137.7296;118.2938;88.07414;132.6221;125.3428;125.4196;109.5767;110.3864;138.8944;127.5688;140.616;94.96835;86.08008;100.101;98.16754;143.1274;84.02515;146.9913;124.8022;117.4553;126.8621;116.0095;108.3621;103.2847;131.164;119.1115;129.2268;148.3384;132.4074;118.8875;73.07581;90.75262;142.1756;146.2591;99.79715;99.02439;94.44819;124.9964;105.9763;144.1927;103.2087;132.3213;127.1698;148.5303;118.3849;82.81883;120.6258;131.7012;96.46508;113.2582;89.46628;96.97581;108.0754;102.1419;125.7538;98.11261;91.67687;91.18146;82.59766;98.33482;93.77313;106.0739;100.0132;100.415;120.2457;127.8803;102.6712;99.7515;111.9636;103.2206;87.88832;90.68136;113.4796;108.3718;94.70455;92.56354;80.81216;93.94547;97.24779;103.4024;89.37866;100.7362;102.9558;130.6439;114.9511;135.5298;126.4913;125.2551;106.5057;107.341;99.38396;115.6386;148.8975;80.18564;102.7098;104.646;121.9611;141.2899;134.384;94.61086;103.2902;94.58145;101.6432;104.2435;137.7848;147.7535;92.97833;129.8541;105.2323;113.4142;95.61977;91.71845;105.8591;77.459;104.8107;93.12077;115.25;99.9302;101.2755;120.9657;114.6518;89.91492;111.9695;128.063;107.211;101.8124;93.95679;134.5406;134.5033;115.12;85.82013;128.947;129.7291;125.0773;113.0097;113.1971;139.5072;122.1385;135.2882;95.6411;88.87609;98.53246;99.61569;144.058;80.53048;143.2314;123.4263;114.1705;130.5064;115.4944;113.0281;106.1695;130.9892;113.6701;125.4401;149.3873;135.867;117.1798;74.32391;91.49597;137.6158;142.5112;100.8423;95.12492;96.27757;125.2172;107.877;153.1268;100.4261;121.5066;117.3523;155.7386;119.563;75.26399;115.9103;122.9633;94.99524;113.6984;89.27625;93.54037;110.4536;102.3747;126.1945;97.83872;85.77733;86.97326;76.7679;102.2769;99.50699;109.3704;107.1757;104.1616;122.5732;124.9155;102.5029;97.09357;118.7133;106.7215;89.61958;97.78439;110.5562;98.60661;86.25903;98.26223;81.78203;85.88741;94.00825;95.8063;90.58725;104.122;101.7023;131.1201;115.3774;135.5639;124.7452;122.8195;99.21685;107.7721;94.04337;119.9175;154.0421;83.88999;111.0665;108.5872;127.4213;141.6585;133.0186;95.83279;107.8299;97.75941;101.553;109.8334;133.516;142.0592;85.64141;136.6033;104.6603;105.4755;92.44375;84.55602;107.196;80.45035;103.5842;93.50528;115.6997;99.98054;
96.63178;100.3093;126.8576;116.4117;109.3269;87.91422;97.37991;133.9006;97.341;91.13142;92.43141;101.8735;76.02121;128.5626;84.38266;120.3103;103.1111;79.58323;70.23562;101.0202;110.5904;95.48663;89.9575;132.8663;110.1705;99.25365;93.72483;99.56664;81.81229;86.62679;92.42499;106.6631;118.9921;136.7108;107.4375;97.64537;102.531;114.387;106.2116;102.2745;123.9481;91.47208;96.8783;140.7521;108.2487;112.6012;85.90546;89.83568;102.7258;111.035;101.5908;99.75388;126.3908;83.91199;135.1555;111.9882;117.8029;109.3368;88.3089;154.8722;122.0214;107.9958;92.2546;89.25622;91.55412;115.7914;98.98226;111.1031;109.4768;84.90442;114.8772;101.9273;114.0023;113.9616;95.69419;122.9347;121.9335;135.6719;95.54178;138.8714;120.6239;92.35538;103.4322;105.8932;126.0668;97.86286;81.41572;133.1815;115.5328;107.2341;100.8537;118.6492;80.35085;91.24934;105.5786;116.9334;120.528;113.6896;109.61;112.5805;124.7489;94.79808;104.3906;138.2304;142.5299;89.37866;124.0084;142.2907;132.9042;126.0699;83.80913;88.11998;109.2116;109.825;123.9021;101.8928;139.5934;136.4919;135.1104;106.7453;101.4329;136.9946;119.3099;142.3908;121.6529;124.4067;91.66348;93.55373;98.00062;101.7523;131.4899;117.5089;113.6062;87.54705;97.36719;136.9866;100.3596;94.54302;94.53036;98.61495;75.37635;124.8406;83.1554;117.5559;105.2579;81.25564;74.30874;102.4876;115.6729;95.51525;89.74144;137.0274;112.9653;104.2654;95.63685;97.07284;80.37965;84.69498;90.48079;104.8264;120.3442;140.3617;111.7383;99.81487;106.5381;115.7378;105.9794;105.9318;126.9143;96.28822;98.8245;137.7869;106.4328;111.5195;84.05769;88.08281;102.1219;123.3107;101.7689;97.36196;130.4259;83.3113;135.2692;107.4023;123.9187;111.6045;93.9297;151.0226;129.0283;116.5584;96.57155;92.04967;90.70325;118.4361;106.6132;104.7057;121.8825;89.36041;118.0548;99.88985;116.3908;116.947;90.46648;110.3691;121.3048;129.978;89.30097;140.0674;119.9587;103.5743;103.6111;103.4237;130.0857;97.20923;81.50333;128.171;119.6548;105.3226;106.7071;118.0148;87.68291;100.1292;112.2813;122.1677;119.1721;114.0085;115.1662;103.9188;133.5613;97.1765;107.6192;131.7917;143.0663;88.21642;117.9059;131.6337;134.2584;121.6923;79.74873;90.84135;108.2125;119.6825;121.5781;97.32022;139.3253;133;135.4411;98.74193;105.2778;134.8329;125.688;141.6973;130.6159;134.7404;97.93259;98.24287;
113.2929;117.3722;92.08983;109.4702;126.7011;113.1495;96.63422;91.02938;147.2191;144.6151;128.8851;105.0433;125.2486;107.4597;121.8051;132.5941;114.1665;119.0168;106.8243;137.6508;112.791;102.8169;95.44055;88.56026;138.6513;80.41011;139.4222;121.5862;110.7454;111.2251;107.0469;101.3191;104.0085;138.3817;126.3458;128.6872;130.1293;125.2249;145.6321;93.75755;106.4806;136.5372;128.0358;104.6796;121.4425;97.97963;116.454;105.6444;125.4374;110.7492;123.1764;136.0077;159.2888;106.0955;100.5935;118.6293;138.7356;99.68775;110.5341;86.02879;96.18568;91.7281;95.36359;133.7585;93.92544;97.13093;87.1121;79.41445;98.30936;101.5367;101.3623;94.89408;113.3466;128.167;136.9769;125.6439;97.99769;94.45897;101.5807;106.7579;93.88495;100.3439;88.28929;96.59785;112.8619;99.35964;91.07796;85.04343;97.21381;89.30403;102.4375;104.222;130.202;101.0214;125.1771;122.5132;126.3383;116.6481;123.659;105.4351;104.4471;134.028;106.1913;127.0119;120.1886;118.6181;133.6289;140.9741;119.5972;108.8945;85.03611;106.5208;88.27933;147.8978;146.8128;105.0331;143.1963;88.39761;136.2094;95.55279;97.33111;112.2349;83.95922;101.078;95.04583;101.3584;91.12956;112.6342;117.4206;121.9645;94.91016;110.4556;132.7342;112.0185;99.15321;90.66611;147.9487;146.4688;133.712;103.4177;126.6522;112.9433;120.9286;139.0847;118.1175;123.5484;109.6749;138.6589;118.3066;101.6654;97.45245;87.92202;138.3419;80.67487;143.8549;119.8525;111.5931;115.8212;106.1409;107.0268;107.3166;142.1658;129.3617;129.6769;135.5156;122.9337;148.112;93.10284;106.207;136.8846;132.2823;103.0735;119.058;100.6996;114.3121;110.6006;136.6656;115.2351;132.6901;132.0008;157.009;99.89556;97.90955;124.4121;132.5864;101.7809;109.1422;93.30832;101.0472;94.10342;99.17376;144.2997;95.55176;90.07608;95.15392;75.43853;95.62823;96.40987;98.90903;96.45148;109.9598;125.4572;137.3721;125.2187;86.39459;91.76596;96.82047;112.0363;103.631;104.6114;96.36197;93.22579;110.9439;93.35836;88.51648;89.95029;93.6745;92.2356;97.46054;112.4141;138.4118;100.7511;131.8207;127.1732;126.1714;106.9216;130.2304;98.60384;100.0133;132.2824;102.7198;130.5447;118.5225;117.0838;129.8122;140.759;109.0389;103.2171;82.48751;106.8313;95.96992;150.7305;153.9458;99.26234;139.0848;86.08846;132.0119;102.2788;93.82626;115.5216;79.46161;109.17;102.1167;101.0906;96.81327;117.127;
92.97888;78.36788;131.6851;127.1546;106.4465;93.72825;136.1903;105.9036;100.8819;115.0359;116.5293;127.5031;110.3991;122.4073;97.22045;116.7698;90.91412;104.8173;118.8752;144.7008;96.5826;129.3123;115.71;124.5543;122.2997;107.1243;88.91081;100.7374;110.6091;106.1942;95.86129;122.1152;151.8765;112.6208;92.6773;116.6029;135.7069;133.0093;127.5442;132.1983;131.677;115.0363;90.12296;96.9283;106.8492;130.4971;104.9572;95.18147;90.15845;107.213;128.2316;94.84155;95.35912;96.11681;103.3098;78.81818;118.3372;85.68568;112.4758;94.81298;87.54713;73.84641;87.96044;99.69762;84.18165;86.07069;132.5054;119.2822;103.2591;85.51588;111.7496;104.0896;89.7727;98.85995;104.5631;122.549;134.481;119.1222;79.65806;97.57793;108.4806;105.0881;89.64008;122.8766;99.85326;102.9711;106.4693;98.26237;107.4537;102.9897;87.9733;92.48422;108.7986;85.18264;88.735;117.2762;102.0434;112.0926;99.90747;130.2873;106.2783;102.0509;136.9261;136.7119;115.7066;107.9445;81.40523;90.53378;117.8841;97.42834;95.46011;97.86015;92.93899;128.445;95.85261;107.3201;114.0265;99.10469;125.183;126.2373;130.692;90.62294;127.7533;110.6189;97.18366;103.369;88.66321;115.2447;92.80017;80.18979;129.1904;119.1488;98.96602;95.44501;134.46;106.8082;100.2299;110.7037;113.4199;124.9122;105.5454;121.2054;89.64333;116.9079;91.42042;107.3671;117.2793;136.6548;90.13366;131.812;115.048;126.7;123.1707;102.6963;87.01647;99.26942;106.7393;104.6302;88.70911;123.1942;153.7177;114.7955;91.65421;110.2691;129.1393;135.0501;126.8518;134.4114;132.5835;110.4485;88.21798;95.49086;103.8476;129.8485;99.12891;96.89066;98.6432;114.6731;125.5961;92.43766;85.33354;98.83682;116.8722;70.49084;122.9455;75.30225;103.5742;103.5064;81.3119;72.16273;86.67679;92.35543;78.7485;89.33255;134.2805;111.0711;102.3269;87.00743;111.3819;102.2747;91.07705;88.22298;109.291;114.2386;136.4426;126.3224;77.21033;95.40169;117.7691;112.4651;87.4388;120.1328;89.58766;105.7761;120.2313;88.93268;108.9538;94.96936;82.70828;100.171;104.7818;83.87247;92.91074;107.4786;92.69889;112.7677;103.3848;125.6811;110.437;100.8921;135.2893;131.5265;114.2509;100.2885;88.26917;82.59248;122.9422;104.5031;98.42985;93.98532;98.12592;133.2765;95.44928;108.4537;108.0817;99.09862;138.8188;112.756;132.3684;83.09301;121.4136;119.011;93.40836;101.9068;92.85625;105.5338;
80.97497;134.4545;100.8447;90.9868;100.8008;99.31303;122.4698;101.004;87.7802;113.9372;133.8162;112.6326;98.47523;107.404;127.8276;131.8022;130.3336;114.9147;130.3721;105.1355;119.2852;113.5814;135.4883;122.6559;112.5216;126.2146;108.9968;104.4097;87.79263;109.302;136.025;71.23902;128.1283;134.8231;120.4648;112.3608;108.4873;91.5213;91.97693;106.6308;124.3128;111.3249;117.4877;114.2126;125.2008;85.53246;106.3551;122.608;120.6592;103.0387;88.34575;76.31675;118.8624;92.43697;133.6386;89.4446;116.0976;123.9779;128.1312;128.6364;94.01747;117.6518;154.4995;85.69682;107.1022;119.7186;103.483;87.47534;105.0595;123.1778;104.7061;80.61506;78.70002;84.98556;103.7984;102.5785;101.0399;109.3424;98.16814;115.7739;134.7652;139.701;100.4248;94.02127;100.8543;89.08695;113.6956;98.98261;94.99902;86.79185;106.3361;101.3853;84.48405;105.978;96.49313;80.01215;92.93141;118.6457;139.5006;98.71045;130.8863;105.0891;110.1706;85.22306;114.6723;89.6366;86.12466;127.0326;84.0874;118.4384;124.105;109.7881;124.0323;138.259;88.78582;80.63957;87.97101;86.61681;91.75424;124.2814;135.6118;89.64097;110.9158;113.9301;122.813;94.08056;111.1868;103.6742;81.52789;134.8908;103.4437;92.05128;101.4187;98.31262;122.7688;102.0066;85.46693;113.7696;134.552;114.7536;97.18076;106.413;129.7508;133.8712;130.8324;115.2288;133.1208;106.2052;119.7739;112.415;134.54;123.2008;110.6963;125.8786;108.5344;106.2737;87.68119;108.4696;137.2219;72.60715;129.9568;135.3719;122.3729;113.2707;110.1889;90.63684;91.19353;107.1411;122.3911;111.0115;117.005;116.1641;121.8718;85.64384;106.3309;125.8493;124.8885;97.32957;93.96494;72.17989;116.7779;88.32911;135.7752;92.18216;108.3944;125.7387;134.7749;123.7167;87.80949;116.1539;152.2524;89.37077;111.0349;113.4268;102.3103;90.34336;92.25398;127.9983;103.5338;89.63755;86.77347;89.56715;111.563;106.5036;100.188;105.9443;103.7293;124.7765;139.2323;133.0287;106.4055;89.42325;98.93452;85.046;115.6623;101.8614;87.36354;88.97813;112.3533;97.21593;81.29436;104.4108;94.73823;80.91492;92.64938;112.3665;135.5471;102.9444;117.9307;109.5126;110.9201;92.77144;123.5941;95.05716;93.17232;131.6378;86.10043;114.7426;130.3835;115.4269;123.789;131.5985;92.29415;77.41286;87.3849;82.61034;95.34946;125.4996;126.5001;91.84512;117.0824;109.5298;119.0019;92.58672;109.3246;104.723;
87.95982;84.00519;130.4548;87.70943;133.7767;89.34627;112.4746;140.261;150.0172;112.758;87.02491;111.0779;115.8339;87.64067;116.1297;104.1413;96.91094;84.84672;100.4561;133.8708;96.45266;90.18969;98.93484;92.26952;111.9698;112.0878;98.27851;99.65398;91.90908;131.391;137.1262;128.7222;87.67342;104.74;95.58157;94.66438;90.21851;103.2102;97.50546;92.36942;122.4341;90.925;95.3873;93.82719;101.7689;76.70712;104.1307;114.6583;120.4483;97.72962;110.5767;125.3993;113.8848;106.2968;113.2853;96.16339;103.9588;137.0695;75.02737;113.3026;103.2528;128.7522;133.6374;125.4121;87.23874;89.98659;96.70017;82.96442;94.01865;119.8564;132.7709;104.5807;131.7626;98.88832;121.633;90.68945;81.82478;101.1415;87.48616;120.2788;96.65422;91.42226;99.36108;109.3361;120.8015;105.7708;107.3385;123.17;139.5291;120.6598;98.86847;101.3865;129.3558;153.0277;124.7203;103.4345;121.3439;121.8839;120.493;117.7491;112.2141;122.6632;113.6092;127.1357;117.3642;90.95567;102.4785;99.5782;148.2439;73.01997;146.871;130.2019;112.0236;113.2944;93.42953;108.5295;93.65623;129.3966;119.4182;115.5525;133.489;121.924;115.0819;81.6872;91.85664;151.1484;133.3352;91.30346;90.55315;85.21999;132.1672;85.75545;133.0015;85.27016;112.7137;132.5066;142.1204;106.2179;88.60091;112.8581;121.1301;88.03904;115.8066;99.37309;100.3478;86.46632;102.6834;131.9474;96.49659;86.49405;98.94508;86.84915;104.7625;107.0215;99.75772;102.0758;95.79061;133.2934;135.9668;124.2178;90.11873;107.8011;97.09077;93.75224;89.44643;100.4833;97.51804;86.94836;114.8946;86.37009;96.84706;96.18002;104.493;79.41421;102.7499;111.4276;123.7054;107.292;112.2331;120.754;105.865;109.4365;106.7377;90.8031;101.4883;130.4608;69.84089;106.8784;109.935;123.6327;132.5021;118.2014;95.75023;91.55069;102.3351;86.53883;93.77004;124.6452;121.395;105.6367;124.2017;92.16406;123.5475;96.94293;87.36273;108.432;84.54598;126.7978;99.56451;100.6733;100.9309;104.9967;112.5271;108.8976;100.9669;117.0885;142.0149;120.7708;91.14471;94.07178;133.6847;143.7267;125.1101;99.88704;125.7005;121.4946;124.6638;124.3033;114.1798;128.9557;103.4581;133.7245;115.0296;89.94221;102.3884;104.8154;152.3128;76.52512;144.6798;140.546;109.8676;121.3708;93.1392;106.3353;88.35941;134.3312;113.0569;114.6836;135.8982;122.0353;106.7539;75.13659;95.49135;141.9054;133.7577;87.97354;
86.37496;129.7332;105.3516;123.7551;95.44059;90.06248;96.40755;92.35278;110.5702;96.51212;121.4929;91.89743;127.5857;77.22689;103.7963;95.63535;118.0769;129.1379;121.6192;101.0214;93.31271;102.3927;79.16821;116.4712;92.13533;108.6421;110.3218;100.4429;107.0547;93.88368;106.1272;111.1774;89.85496;126.0208;145.5355;132.6346;92.01489;136.6202;119.1156;89.34505;115.5968;107.7709;134.0443;111.5379;98.9213;125.0064;90.87847;99.76759;117.7255;123.3026;110.6552;91.70679;120.9426;112.5122;108.0696;84.94868;119.1459;94.19421;131.8006;101.5954;89.90771;114.6183;122.4526;103.5403;110.9274;140.6257;131.5892;143.1636;98.87597;92.3793;106.4344;90.78749;133.8788;100.0688;131.6856;142.376;130.586;70.87292;84.14992;118.6628;154.1826;124.2665;125.2398;119.155;97.0182;109.7554;86.01876;99.25394;125.879;116.0001;110.6733;105.6521;92.15594;128.8276;87.37815;81.85876;90.73134;104.4756;99.616;125.4779;85.05375;118.8391;101.2929;79.09435;85.49149;106.4114;120.8755;107.0231;109.1918;127.2777;86.95391;92.27197;110.8047;102.8306;116.2403;87.87794;101.2524;100.7843;108.6474;112.095;123.3878;81.47188;115.9469;128.5256;90.12345;88.35566;104.8318;104.7463;87.06425;131.2809;111.8024;125.9443;96.47075;91.07829;95.85922;94.36505;113.5176;100.8147;126.0831;94.29259;130.0585;80.07145;102.1351;90.01981;118.6898;130.587;128.3425;102.9162;94.15273;103.3825;78.22432;118.385;93.98107;111.8871;114.1677;102.9598;108.8355;96.10479;104.3562;105.1213;89.9569;126.4161;152.7827;134.8196;92.4087;136.6876;117.9546;91.0242;117.6605;111.0052;138.2774;114.1916;99.76376;127.4979;90.07629;95.0071;112.4422;121.4373;112.3418;93.36508;121.7578;115.0657;111.8866;88.69819;126.3202;99.35068;133.4267;103.8162;95.71105;122.7644;127.0322;94.10398;117.5619;136.7999;126.5231;153.287;98.15683;95.89978;110.9132;92.03776;137.332;97.1557;129.114;140.2378;129.6963;79.6153;94.00462;113.4696;148.1272;122.3889;127.0234;121.0443;97.74826;112.2729;89.41914;103.3036;131.2389;119.5499;110.3154;105.2253;97.19171;134.8413;92.05711;77.6676;96.80145;101.955;91.29736;132.6746;84.82248;122.8103;105.8285;77.80048;86.64147;101.4135;116.4992;102.5285;107.5211;136.2917;97.79279;92.2775;105.7682;101.9074;113.6013;87.6337;102.4921;103.1826;112.6603;113.4247;128.738;84.45379;115.5833;128.0786;95.141;93.35057;109.9537;100.0191;
98.15884;110.6824;111.6601;103.8117;126.3273;89.60607;123.1799;122.7448;103.385;157.7849;131.3145;97.4023;88.64261;95.32583;106.6693;95.08619;137.2873;132.8204;93.07615;108.1906;103.8406;106.2816;86.53756;96.05486;108.61;94.44906;124.1966;91.89732;88.33199;99.51533;90.90616;111.8644;110.8621;96.77434;117.6931;126.4531;112.5815;91.71661;94.37093;145.0453;134.4042;136.9415;113.114;122.8552;109.8458;146.2612;118.2663;115.731;114.3174;123.0304;120.672;93.61636;91.84657;95.74161;107.5973;141.7474;81.38374;151.4153;129.281;103.187;118.961;107.5532;109.0448;88.22523;122.839;113.8061;134.8789;136.4887;115.2896;126.8684;88.51408;103.3272;119.3554;154.1533;92.67941;94.54774;82.40661;124.7643;110.231;130.1035;100.877;113.5781;121.762;121.2717;118.0996;74.251;108.8705;133.199;97.29156;129.0773;102.6895;94.51618;86.05584;102.8686;115.9391;91.88995;95.85594;93.96946;88.31767;97.20528;106.7002;93.63504;93.66041;106.3452;121.6758;149.9054;132.0412;95.17824;97.45386;123.8679;96.48377;95.41322;95.70185;109.0235;83.25978;93.67186;89.75198;92.68175;105.0137;97.07596;90.42778;109.9077;107.2862;118.9473;105.0213;129.4715;126.1441;110.0432;100.012;112.3916;109.939;103.1445;130.1327;88.46148;120.6553;116.2141;103.9946;158.001;125.1386;97.03421;88.96601;95.53267;104.9166;93.43765;140.3239;135.1908;92.19127;107.9649;108.0286;105.4773;85.22513;91.25968;110.7616;94.39701;119.1413;92.35136;89.56165;99.30242;89.66065;110.9473;114.638;98.38586;117.1237;127.1511;117.9893;90.56476;93.00253;139.1417;136.7993;136.8817;108.2945;123.3828;109.7821;147.7518;118.4284;117.9129;120.0605;117.782;131.8104;93.04102;95.64837;95.66284;102.4182;131.0882;78.51951;151.7991;124.5877;115.0084;114.5782;108.1861;105.3162;94.90784;125.6038;109.2165;142.1487;134.8435;124.2724;132.7041;92.64201;110.592;128.0429;149.92;95.12827;90.68367;82.00681;112.6692;117.8546;130.7317;106.2762;108.5277;132.9495;120.6113;122.4055;74.1735;103.6605;122.8671;93.81986;128.3901;100.6179;105.8929;82.3684;102.2265;111.9195;96.68853;96.47923;87.3541;92.33846;95.72057;111.434;98.39349;97.8664;115.9032;130.0762;144.604;137.4422;91.34667;97.08015;110.5024;103.4821;93.97027;99.1415;101.4348;90.70425;92.99594;89.98512;92.34355;99.85368;90.21675;87.10017;109.2545;105.1887;131.6703;100.9632;128.7304;121.9716;115.2883;
101.3084;98.49299;123.6038;93.99206;93.27358;100.3164;106.6431;116.774;84.5985;106.6927;102.0883;103.0526;98.27087;111.3966;110.1866;73.26163;117.3506;90.60577;132.659;105.2234;110.8439;124.0425;113.1918;110.1216;108.5013;90.3544;85.46666;104.4386;99.16099;120.5707;102.7055;92.40827;105.3605;95.4542;104.8887;113.6741;91.90937;110.2325;131.6292;126.3915;90.27075;137.265;112.1973;104.5094;128.3224;104.3948;132.1751;88.94468;79.66754;149.7131;100.7967;100.3474;92.98415;125.0923;100.2626;96.53015;117.7752;126.3335;127.1001;95.81414;109.2856;116.0016;111.0021;94.07275;103.2895;131.9423;140.1967;86.24754;115.4179;108.4025;137.1679;134.0586;88.03013;110.3746;110.3735;102.0294;111.6407;113.3864;119.4267;116.1501;121.3202;83.51832;115.3727;127.8465;138.4383;116.5905;115.0726;124.6258;113.2949;97.30273;93.85019;93.22559;129.2527;124.8016;107.6475;93.97491;89.09804;126.88;91.29752;87.30573;90.48662;89.37522;86.85263;115.6;87.85133;116.9108;96.43822;92.48447;94.59686;100.2986;118.8792;87.07874;87.97591;146.9756;103.971;94.29977;87.81908;100.5673;98.97809;87.81393;99.1883;110.1989;128.2943;120.3105;105.72;98.65414;95.92637;116.552;101.6227;98.38685;128.4718;91.94829;91.14301;99.83904;109.0658;114.4819;87.75402;106.6955;104.5797;105.3403;93.87031;112.3409;115.9659;75.18498;117.497;90.42491;137.4931;102.9765;108.338;123.4113;114.521;107.383;112.8828;90.20393;86.73171;106.5522;95.89458;121.7309;107.59;94.39874;106.7156;95.42535;108.4907;111.1443;90.74973;109.8161;133.0596;123.4586;94.26867;137.082;113.6435;106.626;127.1593;104.5466;136.1414;91.54364;78.79532;149.9698;102.2279;94.46439;93.87611;128.2239;107.8991;87.05296;119.1712;124.8072;116.5834;105.9489;116.9869;117.4038;123.1208;96.46714;107.7848;127.7283;144.1707;83.20397;120.5502;116.907;148.3825;136.4758;90.07549;105.7853;113.9279;102.2176;103.0286;119.0367;123.7335;119.7092;120.2429;83.70113;116.8987;121.1948;139.5258;119.6038;123.2388;113.8241;112.8669;97.01202;82.61253;100.9558;138.8329;126.0646;115.8661;93.69768;94.40852;123.7901;90.12494;86.29041;94.02462;98.36109;95.91027;119.9893;88.32564;113.2984;97.34163;90.52746;87.67085;105.437;119.4121;87.60455;88.17459;148.3528;100.8069;90.69514;87.72139;104.6621;106.6751;80.53776;98.82511;109.8704;115.1175;129.0951;114.4408;99.75923;103.7147;116.266;
89.33411;108.5367;90.21915;77.31706;90.20997;86.87157;108.121;114.0119;86.62708;125.1832;98.67828;109.4755;83.77504;107.9022;105.9283;110.9198;98.94327;100.1455;121.3006;116.8092;123.4632;81.99861;99.16502;128.1336;105.7333;77.25652;104.7425;92.96674;110.0403;106.4783;91.71178;113.1089;91.83543;97.49663;79.16471;103.2857;90.74997;91.23956;119.1332;96.52637;114.3632;86.99776;116.1743;89.51801;96.71188;124.2356;135.4267;127.8854;95.8485;98.45639;98.60564;109.9523;96.55916;124.0915;114.425;117.5616;135.0746;93.61143;107.6163;119.4563;108.4119;116.2384;135.8177;131.6996;96.7942;126.0868;108.9426;89.08585;123.6311;89.35136;122.4853;120.4822;78.45044;126.2731;101.8833;111.7131;90.67535;125.3733;106.4305;120.0651;118.8337;114.1062;126.6268;91.99895;124.7773;93.37747;116.6612;107.2391;113.4267;107.8052;127.0175;86.11271;138.1478;112.3143;115.5191;123.4193;96.26952;98.47316;90.78102;100.5173;108.5975;91.63169;122.0625;142.6432;122.0768;81.54156;103.224;105.7596;130.2118;117.8412;138.952;139.502;99.82068;103.5052;108.7133;96.89722;127.6722;126.165;109.2342;116.4724;122.6642;124.0423;94.63362;95.24335;110.4306;95.79293;88.68993;120.4337;92.99224;105.3088;94.45734;76.69802;90.62004;83.59402;105.4542;110.1889;93.51168;125.1682;103.9294;106.2213;86.78335;106.2009;108.3197;106.1307;103.5181;97.46919;127.0125;116.5228;124.7517;79.18968;96.40057;125.1174;112.9105;78.50455;109.9346;90.67274;112.5808;106.0403;93.26823;109.0432;95.39581;96.06474;83.16761;103.7572;91.03337;89.43463;116.1039;93.91322;121.8256;88.32414;121.6417;87.26954;98.93344;124.9505;137.3503;123.4795;95.3513;92.1601;99.19217;115.3793;104.0355;119.4445;111.072;112.9889;136.9668;94.25176;116.726;118.8323;106.6242;122.8972;149.1354;131.6023;103.243;121.2529;115.709;89.54705;129.6478;87.81673;124.4127;117.6011;86.9575;133.3901;97.74863;113.3197;94.64426;122.0846;105.0118;118.3837;118.2695;107.3149;127.2906;96.9643;133.2458;89.34758;113.2746;102.8691;108.8317;108.0164;133.192;87.82578;133.5133;118.1379;125.9425;127.7226;99.89194;96.56277;94.4028;100.5578;114.069;90.84969;127.078;142.7726;125.8193;86.85302;95.92532;109.8337;132.35;113.9534;135.4043;142.3463;96.53712;99.4427;106.618;101.5394;136.0547;122.3699;108.8129;114.8431;117.8631;124.2687;99.99007;97.04575;106.2714;101.1767;97.86755;124.6864;
150.974;126.1945;75.5923;108.0044;132.9045;105.9681;130.468;98.80536;113.7066;102.4292;103.2049;116.7943;113.7926;94.06336;94.85709;82.20166;100.772;87.18079;96.19474;92.35393;81.13745;112.4431;131.6151;120.9561;86.02293;95.81001;95.23231;104.835;102.9684;93.72939;100.7407;82.58411;102.3873;95.11338;83.7368;86.91906;85.07171;97.1855;105.2798;124.4983;118.7292;111.002;121.2501;106.1793;118.9978;102.682;129.7441;103.9273;102.0734;145.9735;86.05322;117.0781;118.6938;125.6614;131.6239;129.5468;96.71024;89.70484;98.00082;101.1194;99.49665;138.0347;136.391;105.8004;135.8677;114.3874;106.1864;85.21941;96.38969;121.6395;98.38593;117.4372;117.3087;110.042;102.4007;92.26746;142.7327;119.0371;101.7315;112.2086;134.3582;101.9651;93.15448;88.23948;117.3001;133.434;123.1348;100.1842;116.0086;108.9713;114.6477;128.8932;131.1609;116.2789;121.2649;121.6232;103.1179;100.1338;89.20805;90.58733;128.3687;90.04713;143.7833;143.0916;103.7118;121.2631;98.87975;88.49351;100.9175;125.9745;138.6961;128.2347;129.6772;133.203;121.0964;87.32993;102.4416;140.8332;126.8494;91.70417;96.54026;78.91434;123.7075;105.4473;143.9091;101.3565;118.3245;136.7864;148.5664;127.5722;74.23402;110.9077;137.0888;107.9943;127.606;96.01672;115.1527;100.0564;100.0791;115.6067;120.231;94.74799;97.61836;81.95022;98.631;88.24844;94.48964;94.96026;84.26139;114.452;128.1767;117.545;86.47649;92.31892;91.76249;103.7244;108.6312;93.53065;103.5024;82.35333;99.78109;95.32816;82.08068;89.46046;87.84041;98.14214;102.2046;121.0395;119.2593;107.244;117.3282;105.0638;121.7709;100.8759;131.5919;102.8291;90.47527;149.0629;80.39855;119.9383;124.7151;120.1767;116.4713;129.481;92.39603;83.07545;100.1325;100.423;101.3699;144.8266;134.3268;111.0896;125.6069;113.6631;104.542;93.11436;93.17549;127.7917;94.40697;110.7334;115.4725;110.715;94.92194;90.8635;138.7879;109.6695;99.32825;113.4635;120.9998;104.5452;87.25877;90.72486;123.286;127.7754;108.4846;100.1265;112.2362;106.6378;120.9471;127.7597;130.4247;124.5042;117.564;128.5064;98.11837;100.5227;89.4831;94.70856;124.6928;95.95368;143.8642;140.3398;102.9259;127.4273;95.05862;86.84628;95.16103;118.2784;134.0109;130.8318;120.9345;137.4095;116.4015;85.97366;108.0908;135.7362;116.401;95.48103;93.13815;76.93293;130.2507;104.4439;143.1831;109.0482;114.6718;144.1056;
122.8465;92.81136;111.6964;139.8509;131.1884;81.22619;141.3342;119.2552;112.2252;127.1587;93.683;110.0955;100.4062;68.05596;121.9847;94.78547;96.76977;105.3785;120.9345;102.4517;99.12675;111.1069;122.5642;121.6244;104.482;133.1199;86.4714;111.8865;111.9267;88.48914;119.086;122.2129;98.44381;124.7823;113.9558;117.2914;140.9558;95.89977;103.9821;101.3991;115.5338;114.9514;100.4801;126.3203;144.4825;120.4037;77.74074;93.08577;109.6184;151.0724;131.3319;115.182;142.8675;107.0652;103.2685;88.22675;114.6801;135.5379;102.3156;95.65506;100.8894;105.6793;133.0671;98.85706;97.22889;92.82233;92.91405;87.79825;121.5705;74.55377;118.9347;101.7603;92.2878;94.12505;88.55086;91.27519;95.09502;74.5284;121.8232;90.80962;90.16997;99.5595;99.87645;98.19747;89.65587;94.10829;109.6167;121.6622;128.4291;126.3961;74.35191;91.49212;128.6046;94.77147;86.24783;107.6597;98.63893;101.9469;109.1744;94.29575;127.5735;89.61862;97.53246;92.35089;116.3042;93.37817;98.51094;118.8963;93.20033;125.5407;84.81727;112.2132;85.01443;118.1498;138.1196;117.9654;124.72;99.57713;91.27995;79.36282;126.326;96.25241;96.50302;96.5686;96.10434;129.0618;100.2933;122.2144;114.6809;94.02719;109.7842;137.7451;130.3159;76.03774;132.8505;115.9908;107.0377;121.0155;91.83047;106.8536;95.35658;72.60683;118.0355;95.90145;90.21677;107.1176;119.7264;101.0831;99.07107;105.4575;115.6076;119.4584;100.9166;126.5563;85.50384;109.4937;107.5842;93.24827;115.6076;124.422;92.75491;126.1838;113.2114;116.7292;142.0405;90.25237;97.58504;99.42468;111.7856;108.8606;99.43937;123.7797;140.4749;127.0185;76.39339;95.76698;111.2864;153.49;121.6262;126.0616;138.0528;104.8459;100.3011;91.05924;106.8825;124.5652;99.2635;90.8614;86.47545;108.0396;135.2933;99.10482;100.1983;91.30966;96.89732;91.32587;119.2014;75.1925;106.3055;99.52853;81.65636;94.17735;91.90559;95.41814;93.89178;88.31376;126.0616;97.50064;91.68336;101.5144;91.43642;108.2566;85.85033;92.01934;106.5589;124.9789;121.8754;121.1998;73.36346;86.71934;115.8182;91.21574;89.47411;105.0642;105.5546;98.30996;115.1406;96.13062;123.2465;94.99742;90.55043;91.36516;105.9447;98.26154;103.9808;123.5154;95.25774;136.1965;89.81779;116.6421;90.13084;118.0276;129.9335;126.8778;118.357;102.2896;92.96735;83.13301;119.8483;91.70739;95.3957;91.66317;85.11446;124.8863;103.7901;119.4476;
110.9935;124.7565;130.6201;130.9862;86.06857;87.31223;89.95718;91.28312;108.4747;102.7264;105.2784;76.40373;93.23592;82.39906;97.10603;95.59319;82.87836;90.53932;91.84936;119.6181;123.0285;100.5063;113.6408;103.8184;105.0201;95.55103;114.722;87.55339;108.3192;125.7893;87.89827;116.8484;114.3431;128.679;148.4895;134.1606;107.7938;82.02807;79.22927;100.0182;85.20376;130.1257;127.2054;97.91485;119.1359;93.92327;108.0557;99.94805;90.2865;117.3173;83.06646;127.9505;95.72392;101.9687;109.6733;97.87312;127.9557;114.2304;98.89346;98.31889;155.6558;116.7705;98.20071;111.2921;145.5695;144.5788;122.6917;112.0923;118.426;101.3447;112.6335;111.6674;129.8082;127.2137;126.3479;116.5896;99.20144;88.99096;104.2112;98.95928;115.7082;84.11134;132.8131;140.1127;111.0483;114.1085;98.61311;88.11345;86.29675;124.0781;125.6184;110.967;142.6687;116.4565;131.7396;83.55937;100.0312;147.8243;152.6314;102.5242;106.97;73.50607;106.5889;102.4482;123.4239;98.97028;114.2262;134.2792;135.9892;105.0369;79.73824;124.5736;131.8013;105.4746;115.2943;115.1164;95.73631;93.22887;111.2114;119.904;107.3203;94.21239;96.20529;71.12461;116.8173;102.1704;102.5999;111.3857;108.1974;126.0974;133.009;135.8683;85.85323;84.75167;90.1907;89.04413;107.3116;105.5708;110.2926;77.51237;93.10471;81.46003;101.2241;93.86241;80.30599;91.60258;93.68295;124.2051;122.5854;97.66785;112.7469;100.9231;104.6494;98.15399;118.7753;88.57703;109.4188;124.8079;91.17673;114.739;112.5594;130.1506;150.0053;138.7991;108.6057;79.61784;78.48106;97.17883;84.86769;133.1628;131.4689;98.99929;117.1552;93.96336;110.5832;99.28406;96.01116;122.7366;84.42597;125.6807;98.24197;97.41595;103.185;100.1224;134.5142;111.495;96.15014;95.47493;153.1013;118.0407;95.6468;102.9836;141.9774;144.8972;120.5564;113.7834;120.7204;107.6121;110.9795;116.6367;135.0746;135.2221;131.4771;120.2435;103.2098;94.325;113.4157;89.23586;122.1769;88.70017;134.5256;137.737;113.7588;109.2791;92.46159;90.24836;89.70528;118.8296;117.8811;108.9035;142.4053;117.656;126.0461;76.95327;96.29608;147.1298;148.1425;102.1724;111.3842;80.39514;106.921;108.846;126.2254;103.7872;114.5301;139.3009;142.8887;110.7531;85.5703;114.3567;137.8163;109.7228;115.0556;110.9089;100.3884;90.50642;106.6304;124.1358;111.1571;89.62897;89.46961;69.4921;116.6194;103.2755;97.60368;103.759;
91.06461;110.694;110.9222;132.4018;130.8695;137.2758;130.6607;123.8239;120.4015;102.5523;108.6655;141.552;123.8583;94.62291;98.34423;90.24952;128.1993;94.42832;146.9638;94.49858;123.4018;145.5972;128.5296;125.2455;77.13118;128.3721;136.6372;95.69007;116.4393;93.55661;89.98154;91.20764;97.37126;120.2422;120.1476;86.66985;92.20033;84.82346;90.64735;100.8774;96.41039;98.71188;91.45729;131.146;138.9061;124.2585;93.65798;91.65273;88.66913;101.7381;115.0899;98.90175;95.16711;75.09941;105.6571;95.8596;98.34489;90.85912;80.04137;90.75383;91.42966;117.5585;110.1798;113.4971;107.7146;127.0154;132.4741;106.7593;128.0919;106.8822;98.57857;132.7096;81.07725;136.4268;124.0115;124.8894;128.7746;126.8222;102.0039;95.49892;95.86507;89.16042;106.068;131.169;145.4258;108.2676;115.1179;109.954;112.2376;103.743;94.01419;105.4869;86.78819;104.0744;85.79364;91.87144;87.00861;89.91124;142.5205;105.8243;96.91418;111.7575;124.4901;107.969;96.60327;99.22788;119.6578;142.6911;128.7298;97.62074;118.7969;101.4925;103.9756;119.0433;140.7796;119.8863;109.9606;113.0042;109.8741;98.94011;107.6209;93.49245;116.7458;77.88863;133.0083;133.774;92.45952;125.5491;84.40922;105.1325;111.5056;132.4856;131.4382;133.8743;135.979;118.7091;124.5794;102.3267;106.6262;136.6424;128.6701;88.6161;96.82555;86.68874;121.0653;89.70322;148.5061;94.98775;124.7525;142.6071;133.5563;121.1031;80.13271;129.7209;134.123;92.36049;120.1626;88.73793;87.8791;88.30464;90.34094;116.2134;120.8023;87.81987;92.53982;83.66611;94.87885;97.16582;99.76522;99.89754;89.40473;127.2458;141.3909;120.237;91.16351;89.65575;85.49191;94.74651;114.4256;100.8672;94.33858;75.11942;109.4012;97.06887;98.12646;94.83153;78.63012;89.89857;93.44288;110.1014;113.5835;107.3769;111.1301;126.7357;133.5329;109.3734;132.0769;107.363;100.2605;131.2915;84.04599;127.0474;121.9682;115.8613;126.9753;122.5537;102.9946;100.4729;92.55095;82.61872;105.4295;133.4257;144.3895;108.2864;119.0238;111.2441;105.9738;107.7641;94.23949;109.2882;86.769;100.6668;91.23875;88.31221;94.76347;94.1627;142.4934;108.3275;101.3247;112.0775;121.8853;109.5432;94.13853;91.05037;119.6433;138.3515;124.5545;97.4324;122.7213;108.7821;105.4613;116.4715;138.9477;121.9383;110.0448;112.8513;109.4261;102.9286;101.4698;97.31152;117.015;81.16087;132.9624;129.9066;98.12566;121.3838;
134.5384;124.3667;121.4497;93.96034;103.8442;138.9194;119.4727;96.63254;105.6348;83.95425;136.0743;93.29683;154.373;106.7849;99.49456;123.6149;148.8551;105.4254;83.77922;116.6239;130.3736;88.24372;108.9984;90.92386;92.40384;93.3873;100.5196;126.4831;95.55448;84.37473;88.32976;86.27001;104.0819;96.84872;104.2024;105.253;95.88731;110.3188;121.8801;115.7351;91.09786;98.29747;115.6456;101.8165;104.3437;110.5397;87.00743;74.89792;98.09589;89.00706;101.4505;107.0792;93.98264;105.4187;91.11561;114.7525;129.0818;109.125;111.5235;116.9762;115.2805;87.20344;121.2732;99.27272;105.5805;139.2407;85.76697;128.0018;121.8473;123.0493;120.3278;131.3756;106.0927;95.9495;105.2431;88.43095;112.2581;143.6184;119.5283;90.13523;131.0693;95.40782;115.1995;91.04244;92.22665;103.3282;77.77679;104.5119;91.07916;98.42698;98.75998;100.0933;119.0969;107.3642;96.85918;119.836;137.0227;111.5042;104.6007;103.7656;130.974;123.0867;109.7846;91.44833;121.9812;113.1583;139.4019;126.9;131.1592;137.2521;105.1946;113.5586;100.7739;96.27116;109.9071;110.1664;133.3387;94.32294;131.0679;131.2047;110.9109;123.3932;93.44009;100.6808;96.86153;113.6352;132.4832;127.5754;134.7393;129.7423;128.1662;95.46345;105.6162;136.9159;119.6906;93.76647;106.2076;85.17727;138.7233;93.33122;158.401;110.8183;102.7057;126.085;148.8504;110.292;89.20578;118.2078;132.1465;86.56302;108.6797;87.84746;92.10154;93.47284;102.2963;126.5382;98.268;87.09524;91.27156;88.34042;103.6136;100.5908;110.1605;106.7715;96.95753;107.4847;121.5404;112.2631;90.7954;98.38731;117.5481;101.8681;106.2808;113.5849;90.76661;77.70663;101.4186;94.86559;104.2165;107.4528;93.84066;107.4464;80.99628;116.442;117.7802;107.7612;109.1679;114.6141;117.1701;99.07857;126.0226;99.777;106.4081;139.3913;86.20586;137.8864;117.9414;121.4613;123.1447;122.2869;105.5666;94.89543;95.60899;94.47392;101.7546;137.9502;133.5935;96.51396;134.9055;101.4655;118.1359;91.38696;92.08572;105.3311;68.4426;106.1245;82.06068;98.15051;96.65549;97.75055;118.9459;117.3372;97.13522;116.8634;138.7047;108.8593;101.1478;111.027;126.691;124.5574;111.8426;85.96751;121.9712;113.1085;128.3932;133.9507;117.7497;128.4177;114.1075;117.2003;104.8078;99.70593;108.7022;108.9009;132.9485;98.96258;118.2365;135.6163;100.9725;123.0868;91.39583;98.3521;96.76257;123.8921;132.809;124.5312;
88.47157;88.33058;99.23554;100.4796;99.99924;98.71828;103.9882;93.77438;108.8923;124.2283;116.6383;92.18845;101.8046;104.9094;110.3283;98.90521;98.18216;107.3113;101.881;98.15974;85.84129;83.07819;116.026;92.58311;91.59043;83.70641;100.0724;111.9392;95.01935;125.9668;109.2702;128.2334;90.16911;128.3052;108.8701;114.8957;138.9597;94.40173;126.9771;110.4068;109.3767;144.6611;146.4568;91.46704;84.74393;85.45516;102.1277;100.1621;152.1201;132.4516;114.7367;113.7002;109.4213;123.0074;96.28761;96.42646;99.99129;91.49042;113.0433;95.15111;94.1637;94.48455;91.86402;117.2334;107.7036;93.00476;127.0072;129.8001;109.6113;94.23189;98.6301;122.6354;122.238;111.6921;92.09715;122.1034;116.0661;125.6794;132.6631;115.141;122.2945;122.3434;141.8015;98.75957;91.82468;87.10219;114.6994;129.197;88.79451;120.216;114.5677;105.2942;111.4369;102.3629;91.12827;108.0706;111.8784;137.2302;135.6457;149.8488;131.0765;136.9742;93.87382;93.2952;129.0954;144.6514;106.9797;97.26913;78.04269;111.4905;108.9177;144.3211;109.2394;114.6312;154.9189;128.8963;119.1728;93.76925;125.1524;140.0466;87.53407;125.2295;96.4038;102.061;90.14777;94.04477;114.0071;97.56506;84.11513;89.05594;97.68324;99.0447;99.00773;101.0022;103.9618;91.45668;111.9647;123.1918;110.0968;97.67373;102.9492;101.0009;106.391;97.39925;94.28358;108.5575;101.0261;97.17366;85.57703;85.57304;116.9374;91.25188;95.82972;82.65076;94.86668;118.8966;97.06947;121.2118;105.756;127.4521;87.3469;129.1939;108.3961;114.7233;139.7652;96.64182;127.9332;108.9552;114.0075;143.2752;140.1474;97.76864;85.41484;82.85506;100.187;102.3726;135.534;128.5511;104.6146;108.159;112.5273;124.8098;101.075;97.65392;108.1622;91.89729;116.5767;101.607;92.25755;96.27835;84.35227;125.1833;113.1631;98.03619;133.7984;130.8451;112.8234;96.50138;96.76426;131.3037;120.4347;119.3813;86.97469;133.4121;116.1043;129.0168;119.8083;117.2271;107.4724;118.5856;130.5227;93.59516;94.67181;88.61105;119.9192;130.6115;93.89529;120.8873;121.1887;105.8633;108.5789;107.129;85.4071;113.3324;122.5975;141.2352;140.2617;151.8099;135.3752;135.2932;89.86024;99.35052;124.2715;153.5926;104.3093;101.3059;77.43378;117.6707;99.22243;143.9902;99.93067;109.1502;140.7336;123.7435;123.1598;91.69843;127.9815;139.713;92.61783;125.8941;102.5049;102.6209;87.59746;98.59725;107.6173;102.5675;
102.9926;96.56958;130.4947;105.1174;130.2868;93.40527;67.52839;129.3336;97.02913;108.9856;93.76969;142.1811;100.0945;112.7256;122.1592;124.0436;122.2058;103.6491;114.7421;95.55777;126.1054;108.1367;115.2164;126.7184;130.5906;87.49407;129.8775;136.3809;133.9685;124.2668;102.0882;89.10964;101.0022;113.7445;120.2543;111.8208;117.7517;149.19;121.848;80.2716;95.29861;120.1537;124.1091;126.1754;123.8891;126.9215;109.215;91.23286;94.6245;96.09204;123.9622;109.2873;99.49072;93.60525;98.4768;144.0627;108.1926;100.9518;101.5875;95.6399;74.76172;124.2518;92.68462;108.6933;87.87097;83.10216;96.30518;96.3348;110.9306;89.69022;76.46842;127.6889;96.50732;109.5233;87.58797;116.2484;95.62016;106.2034;104.7869;109.8172;122.2652;128.6511;114.0714;81.84364;104.2166;129.8845;117.3287;95.22018;114.7633;91.98406;101.3071;125.8656;107.231;103.0981;103.4372;88.39996;97.30672;118.9988;101.4637;105.3824;107.1975;100.1674;122.5197;87.68021;113.1387;98.91348;89.81614;129.9452;124.6;107.3552;110.9694;87.5705;92.4052;112.6093;94.28753;101.3902;100.3591;94.11504;118.6231;111.8271;126.9527;126.5482;99.17319;113.661;120.1913;127.7841;104.4883;129.8721;106.5041;99.28246;131.2914;100.2762;125.3563;94.1601;70.91988;128.109;97.71089;109.9668;91.11098;138.6995;97.69056;109.3393;126.4899;123.7031;125.8297;106.3733;115.2992;90.86588;121.0628;108.8545;118.4477;124.9528;132.2601;88.22203;125.5237;132.7601;132.5428;120.8875;105.36;88.6582;105.5086;116.7708;120.087;106.5506;114.1383;150.2419;125.1676;78.86946;96.72314;121.0088;119.8512;122.696;125.0533;122.5016;111.1815;91.42157;103.3894;93.87127;130.4804;105.609;94.84882;99.3719;93.34178;141.105;97.71004;105.649;104.5818;96.36092;77.96695;130.9373;99.80797;114.0935;94.66148;85.0421;90.09007;99.99419;103.8191;91.98035;79.48934;130.5576;89.88593;105.1353;83.9705;108.0852;85.56604;99.03105;110.3324;107.9973;132.2014;126.0684;120.3227;78.66478;99.46407;136.6506;111.7127;92.81848;105.0053;96.60009;107.152;130.0146;109.9717;113.3479;108.9857;93.08249;102.462;119.2231;94.18281;114.3619;101.3137;102.5935;124.4846;90.92945;107.0395;94.85528;88.74995;124.5735;112.007;104.1162;114.6663;85.78272;99.14043;108.1926;99.07755;102.7264;96.79103;99.90036;111.2457;110.1766;116.7188;131.9317;104.9788;117.6282;123.1336;139.1462;110.0868;135.5595;
118.9322;111.1663;127.4702;132.431;87.46576;94.58111;96.311;101.5749;98.21326;124.0211;148.3724;104.3208;123.4158;100.445;107.8081;94.12634;99.50581;122.5716;80.06605;122.6612;108.3826;101.147;91.35008;108.7145;114.1656;106.9559;90.27991;114.0547;118.6913;100.5369;98.00368;91.82381;130.1474;129.7581;115.0846;96.22218;110.8232;109.4251;126.8121;133.4889;122.1564;115.599;122.3313;116.5283;94.38126;94.32936;89.43816;93.96458;141.1614;94.94543;143.2724;127.9604;109.991;116.5224;89.08148;95.59973;94.25422;127.5861;127.0272;123.0809;147.2788;113.5256;128.6774;93.1245;105.9813;126.5416;126.9645;96.89357;89.34402;85.3652;126.0834;108.1356;142.2986;91.60007;131.0779;138.2765;141.4287;110.4038;78.91143;116.9002;142.7727;108.1183;115.7975;106.2796;109.5253;93.11796;95.8046;137.5811;95.34136;91.35457;87.75764;82.21327;88.52705;88.23318;98.01972;95.03689;96.35641;118.5445;129.1621;120.0806;87.76651;96.29279;103.6488;111.669;100.8716;96.82011;106.6002;77.03081;90.75517;87.8109;81.49207;88.95683;98.87653;104.2916;103.0574;111.6194;130.41;105.3787;107.7254;112.8972;111.7261;106.4544;120.5318;95.96481;109.3079;121.7931;88.83241;124.9542;120.4502;112.6851;132.1136;133.601;91.2977;94.20024;96.29835;104.265;101.2453;127.9957;151.0286;101.0231;122.5938;97.15826;106.4204;91.69183;101.6149;124.6451;84.41099;124.2777;113.4147;101.1765;91.13236;112.4816;117.0104;112.1561;92.15663;111.3845;116.9644;98.45487;96.00137;90.12027;131.5613;133.3156;119.5344;98.3759;114.9876;110.7463;126.5583;137.6626;125.1012;121.0055;124.517;113.8318;92.68616;93.33949;87.55257;92.17169;145.7842;101.581;150.7656;135.7113;117.7724;106.9616;93.85487;97.24366;97.66172;132.267;132.2306;112.5315;143.1733;110.3236;115.8158;82.50746;106.2315;116.7853;127.7528;92.36815;100.9423;95.55194;130.3567;104.1849;143.3333;100.7029;131.2244;139.5676;138.9575;107.9164;82.09445;118.7087;147.4098;115.1865;122.5428;113.3487;117.28;84.58827;100.7518;139.5464;97.02474;91.4454;91.95452;75.82122;86.97154;86.3377;88.69216;86.01851;96.25397;106.8787;127.3639;112.7235;95.53169;104.6796;107.7252;104.039;99.95896;102.0791;106.5979;80.24614;90.42646;86.52872;86.5792;92.31776;102.3853;108.9949;107.0608;116.5092;134.4431;94.003;113.1668;110.9461;113.5274;106.5522;125.4607;89.04961;107.5588;119.5642;79.97897;114.5817;
90.5043;90.50696;129.582;109.2889;98.07825;108.8586;92.3122;109.3464;123.5268;108.4041;117.2803;106.0409;105.4618;84.34637;103.9037;107.5652;92.55732;106.6601;76.66182;119.4913;78.97643;105.1395;95.33373;95.19729;127.9997;119.202;107.8577;95.98823;95.63911;85.73219;127.0082;104.8574;110.2571;93.86648;108.048;114.0386;94.30871;107.75;109.8263;97.09609;127.7882;146.2516;142.1497;91.46897;149.6974;108.8048;99.24926;109.3916;98.97489;115.3086;98.3436;82.50565;147.8955;97.14824;104.5419;111.3077;127.4399;91.19701;94.49951;115.9333;120.1458;118.7605;111.0584;120.1638;105.8692;109.834;108.6786;107.4346;133.3085;125.0964;87.06538;133.366;133.9798;136.498;133.1667;103.2179;106.8075;95.36055;100.9229;125.2897;95.3761;113.7167;123.692;118.2135;75.59811;91.74341;117.1744;129.4071;120.6014;121.1001;130.8495;96.80105;105.0919;97.04727;111.7274;144.7943;117.7395;95.01245;109.0335;99.88028;130.8816;90.7688;89.92616;98.34547;107.6341;95.55737;139.1945;80.65767;128.4935;95.5716;81.81553;84.57977;94.43422;104.4546;95.12975;91.14838;151.0551;91.42327;101.5097;103.1629;104.5272;91.36774;91.15703;100.0242;105.673;123.835;133.8295;123.9636;94.19749;94.5449;132.9236;110.2734;103.3948;107.7494;94.77457;108.9482;124.1952;110.0098;121.8869;104.4077;106.75;89.21229;103.0943;113.4189;96.11819;110.9523;79.07952;120.4307;83.60255;103.9751;97.34452;94.53554;127.7024;119.5243;111.7606;94.44846;96.42696;89.77307;126.0212;110.6626;113.6624;96.9876;110.8383;114.9704;98.90229;105.6255;111.9812;96.42983;127.4884;146.6112;146.6221;89.96803;147.0486;111.6701;97.27274;114.4339;104.0745;126.1285;108.7284;85.01398;151.5915;93.4677;103.32;102.6243;122.8435;86.56631;101.6786;117.6945;115.5038;120.4253;104.9832;117.0809;104.3922;118.1127;109.7277;108.1094;132.3887;125.756;96.55397;129.3432;136.7419;134.5484;126.7028;101.4475;105.4751;95.90369;88.16885;135.5997;100.383;124.4582;135.2963;121.2124;78.24677;88.16349;115.8708;120.0307;117.9236;116.824;134.9993;98.59316;102.9626;95.85792;107.697;135.7918;114.2287;100.7976;107.3804;98.29219;128.0818;94.84358;98.62444;96.38276;111.8813;94.89212;128.3998;79.27015;129.5378;93.46481;72.0585;88.56415;97.63414;112.7357;102.7007;91.61865;152.7465;91.29648;99.37577;96.29322;102.0734;87.66124;94.62849;101.8671;103.5763;122.4942;129.4177;115.6673;
109.6512;118.6116;135.217;94.52654;105.3596;90.63345;102.5164;101.1245;94.96433;94.58848;86.7781;107.4222;99.33722;84.49268;123.0468;90.05891;101.2145;97.34719;126.6276;131.8847;106.4502;115.2024;106.3287;126.3326;96.47905;116.035;111.5535;110.7105;147.1313;68.22672;130.7548;111.9484;104.4012;123.4774;127.7943;112.0651;100.6504;94.48284;89.18699;85.29472;120.0201;139.8049;89.96949;107.2831;100.0538;105.4832;106.2012;96.44703;111.7015;77.9753;115.9818;91.30984;99.30497;94.83349;95.78677;121.5779;104.6191;105.9338;114.3894;126.5151;133.0053;96.78004;102.9848;145.3871;121.2263;109.6439;111.9908;119.9292;118.0747;112.4389;124.605;118.5181;111.9282;112.237;124.5198;105.1472;102.522;88.11519;123.427;127.8199;90.2786;135.9758;147.2424;111.951;118.348;94.40942;90.1992;106.3204;121.7169;115.4627;132.9102;142.116;132.5451;99.98683;89.13286;97.07145;120.5913;126.9919;90.88952;106.6106;86.14782;127.0741;94.43013;123.5922;88.2459;116.0165;120.2229;123.85;111.5402;74.7208;124.6077;138.8756;100.2996;112.5783;99.79593;88.99604;89.75965;101.0388;121.7328;102.0697;85.96296;95.40198;83.2251;98.81744;116.617;99.25475;99.98425;113.7948;109.4572;120.8506;132.6889;87.64175;97.91813;92.32175;101.0159;102.0085;94.33181;90.66395;84.09773;105.0452;94.73589;83.49461;114.5033;90.1802;101.7487;99.80503;124.9803;124.2085;99.67433;117.5624;105.6941;128.4935;97.25282;111.4246;109.4304;109.1713;142.6629;66.9743;122.3785;112.9815;105.9287;125.754;126.5924;105.8574;95.00572;96.20404;88.60818;87.07424;120.8856;134.7426;88.06615;105.7706;97.14989;104.9002;100.3379;98.1675;116.0604;80.81535;115.84;88.47386;90.37547;90.03773;96.69388;130.4898;107.3156;102.5666;113.9207;126.1152;129.9895;98.28399;101.2371;140.9524;129.1505;114.1514;115.4387;124.0424;116.9248;119.4678;125.9631;127.6778;122.8473;104.3151;121.8289;103.8682;99.67067;89.05436;112.6761;133.701;94.20147;139.7068;147.0827;108.8033;108.5806;89.61559;91.07954;114.6593;121.569;115.6973;135.7238;140.6244;132.856;102.0658;92.9744;91.76935;124.6117;128.5912;95.86137;114.2864;89.76206;131.3617;94.58408;129.8576;95.28697;111.6251;120.724;121.4688;111.6336;76.0575;120.0541;142.9141;100.9588;112.9261;101.5976;89.54816;85.76738;93.39912;121.5837;107.436;85.85676;95.59745;85.47287;97.57397;116.9298;101.3077;104.0706;108.0477;
116.1326;118.8979;108.6442;111.0758;89.25201;133.2774;95.51903;97.36155;94.51768;128.1787;101.6014;96.65688;126.8945;108.6565;114.6235;90.46899;106.8941;102.4752;109.8603;83.16594;90.27486;124.8808;140.4914;98.77203;121.3893;127.5193;106.7686;141.9237;106.4277;82.0923;93.20514;89.91592;125.5724;110.4331;134.1201;124.1069;109.9103;85.97519;94.29875;134.0811;132.4361;146.9413;124.621;144.8818;104.324;108.8776;106.1665;103.5628;131.103;123.708;95.3656;106.9308;109.573;123.3109;97.95989;93.75327;98.65829;121.238;89.8455;122.9815;103.0068;100.7423;107.2312;92.2943;81.10597;111.2108;94.53172;105.1597;96.92145;131.982;95.33984;93.96204;85.44939;105.3667;101.2734;89.80106;108.7846;94.79957;116.1535;113.0739;104.2022;89.69037;91.80071;102.7992;92.34658;93.30268;125.0313;101.1527;95.89552;121.6178;83.91605;125.8851;106.7407;83.25063;86.45739;92.36008;107.043;112.1743;128.698;77.80475;110.3228;92.04695;110.9567;111.278;99.22215;155.6698;124.0036;129.2608;99.90139;100.4607;99.77199;121.8062;103.6365;118.276;97.4509;105.1191;126.393;92.34571;113.791;118.0513;98.52172;145.3492;136.834;133.5692;107.7494;118.6374;125.3526;108.1478;116.7946;119.3082;111.3412;112.2516;89.83349;132.118;95.78312;98.34592;92.11668;128.001;102.2426;98.62237;125.4245;107.6598;116.445;92.18454;107.3458;102.7718;112.3846;84.11763;90.70003;123.6576;139.5256;99.26109;119.4931;127.1815;106.311;144.0956;106.305;81.37111;94.19633;91.45214;127.3826;110.9299;136.133;125.0631;111.623;85.11802;93.50551;134.6532;130.4523;146.5812;124.1238;147.0787;101.2871;109.0033;106.1423;106.5434;133.4886;115.2458;95.87437;109.8958;118.0171;120.4833;91.30264;91.14581;100.9748;116.007;87.93688;112.1498;100.6137;100.7563;103.984;98.91391;88.52142;108.917;95.11664;103.8241;100.018;127.3836;97.84578;87.25227;84.24335;93.23505;101.0469;91.74758;112.8919;94.02347;121.7586;122.2233;106.3298;82.49834;92.29565;105.7068;100.111;90.83585;117.4902;98.44364;97.46145;117.1959;82.0354;115.1333;107.399;83.13326;83.56231;96.09756;111.2166;109.8546;126.8729;77.6887;114.9932;88.18417;115.6522;102.1588;97.22775;141.7196;123.7096;131.8357;106.9511;99.51444;105.0033;127.998;101.6493;109.9736;95.80083;109.2803;136.9612;89.86808;108.5529;113.2183;100.1464;140.4897;134.4542;122.5102;108.4499;118.4775;121.885;112.2114;
84.38224;98.35728;103.3025;114.0901;113.2404;93.4466;106.3277;131.4866;108.3013;114.8811;133.7503;101.2197;111.6893;119.6261;124.4495;104.8329;132.1564;128.2682;99.44169;119.1599;89.51979;130.5771;86.95691;79.39957;140.5508;107.662;110.1687;109.5592;113.0401;96.40664;97.24458;100.7165;101.9675;119.7486;90.68674;115.9927;92.53328;117.5554;90.1273;98.77873;136.348;147.1882;94.30397;144.2482;119.3026;107.5038;145.8683;87.11047;84.80001;98.5592;105.512;128.3517;91.4507;123.5943;132.4531;133.9686;93.70513;102.0068;139.3266;134.0511;121.5707;131.3958;141.3867;101.9709;90.24113;102.7897;90.03465;147.5589;117.8573;90.60396;107.6081;109.9113;138.0196;94.5307;106.1923;101.418;93.16437;72.0207;116.6033;93.25553;110.7789;108.3196;84.23507;86.00494;85.40773;111.882;83.14498;87.05092;130.9189;98.05775;108.7534;105.3924;96.15778;95.77328;88.45959;81.39677;93.17712;121.5823;116.2869;117.1768;78.30644;94.99831;109.4617;94.75867;96.32783;123.2541;100.6791;119.6061;115.695;87.7979;127.3186;83.41603;89.3769;92.50514;109.4898;104.7592;89.44546;116.1364;84.28147;125.7407;95.36165;113.7845;117.478;102.4415;134.3713;133.263;121.1511;99.79515;86.92268;99.67142;104.8269;111.86;112.5272;89.27694;106.5601;123.9822;101.6077;108.2788;135.7025;102.9194;116.891;120.0915;124.115;100.0487;136.1648;130.2578;101.6578;117.3456;89.5621;126.1224;86.9665;74.37734;132.4614;102.6979;111.7345;112.0978;117.3404;98.03719;96.26862;96.73676;104.6033;123.0202;92.15694;114.9828;91.75132;114.6438;90.1394;93.16997;128.385;141.377;95.75548;147.162;122.2505;110.7043;144.2333;84.29747;92.67786;98.28756;105.2035;125.5094;94.1289;117.4562;137.2314;118.4548;87.44128;85.28612;141.8379;138.515;132.3573;134.1863;146.295;104.8119;92.78802;96.48344;89.98928;150.5828;125.6055;87.21603;102.7088;100.1029;135.2154;85.11658;105.3859;93.00877;95.62671;74.53835;110.977;94.88364;119.7474;108.0297;83.95876;83.67696;87.98748;106.0407;86.93888;74.63402;128.5836;87.01891;109.0532;108.0232;103.0196;95.13106;93.63617;86.72266;90.95284;112.5886;114.2153;122.1561;86.59186;92.75632;104.8752;90.11084;98.41892;118.7213;98.08492;109.1211;115.514;87.67787;122.9346;87.7686;92.59119;90.34076;107.2304;104.2966;94.11993;111.5304;88.4233;115.764;93.35164;101.8677;117.8078;105.0367;142.4383;132.5051;127.2155;105.6845;
100.8776;105.7815;91.20557;98.47377;98.72771;146.779;116.9126;118.0474;133.2495;116.3227;123.2932;75.46192;88.73468;119.3055;130.2152;102.3583;100.4919;84.31905;112.4469;90.22631;136.7428;113.8677;104.9714;117.4354;130.0002;129.8174;93.06609;115.1401;120.9895;87.70132;116.9619;97.71897;108.5261;87.96185;108.4688;121.0774;118.7197;108.2329;105.1795;87.78706;112.4513;107.0537;103.6906;94.06492;108.3788;126.0525;120.7333;115.2982;87.74639;106.589;109.4413;107.1433;99.30621;118.1785;90.45918;84.79551;114.5823;101.3547;112.566;82.41532;103.6581;98.08038;94.07029;111.965;116.2234;92.74335;108.7658;114.4975;117.6708;118.4922;111.2332;92.26332;103.5028;128.5066;88.56809;107.4203;103.0927;106.8633;131.8853;137.6526;103.8175;96.01986;87.50755;85.44725;98.52161;152.8163;124.2102;84.81731;113.5027;122.2073;131.7532;96.38853;85.622;106.2971;85.71017;106.4693;110.871;92.83841;113.4434;99.33176;141.9246;133.2773;110.119;122.1132;147.8113;121.7655;105.3375;93.78341;143.8135;145.5652;111.6369;90.65649;118.3711;123.4766;136.5698;137.3854;119.3486;141.0084;108.048;126.4021;117.7493;109.4718;120.475;89.06621;148.2844;94.15639;131.8583;125.4129;101.6224;107.1795;97.21431;100.4276;99.77543;148.0751;116.3086;120.321;136.4833;121.0417;127.9169;77.63381;90.79886;122.8348;128.3538;96.54582;101.0573;85.49081;118.9152;92.0175;137.7594;114.9113;103.8841;119.3571;132.1909;133.3624;96.60117;117.8338;122.8823;89.84846;115.1024;92.04659;108.6382;88.2922;114.7374;123.1655;119.167;108.2929;104.0886;89.45157;114.4869;110.2773;107.4176;96.5032;109.2605;128.5544;119.8085;110.1762;87.07095;102.0042;118.457;101.3682;104.7818;117.9624;88.99702;92.52182;116.7691;106.7293;112.7389;84.76894;102.1516;96.77339;86.21507;107.2603;116.0981;95.51505;117.7823;116.0972;118.6415;109.7741;103.698;100.1355;104.1695;139.9899;84.41409;114.5624;104.3463;108.9085;133.5053;136.7932;103.0824;91.66657;95.5793;80.29853;103.9756;152.565;122.4858;92.54464;113.8057;125.881;129.9349;96.35632;83.47606;102.6538;78.96439;106.7872;110.8136;96.3633;118.1965;98.84268;143.5573;124.0039;102.7849;127.9942;146.5114;130.6887;99.03831;97.88268;144.3005;145.2511;114.0197;94.59525;117.6785;119.382;141.7465;128.5751;125.8915;140.7497;106.6302;132.5871;118.099;112.9532;118.7394;89.05515;145.5016;90.73207;123.4608;125.7817;
136.5436;101.6548;107.0291;107.4145;125.6785;90.01215;88.10406;119.6313;99.66409;124.6369;104.5959;88.09698;85.89674;99.73219;127.0768;129.5117;88.96105;126.0009;131.8936;124.1261;100.2573;102.1726;141.4916;146.9098;127.2242;99.99703;118.6433;128.6877;131.4443;118.5125;129.2243;120.1795;118.8799;144.9043;111.2268;96.02542;107.6839;98.86752;146.5271;105.1465;139.8821;153.8275;93.17236;125.9684;101.8616;101.3565;100.4092;124.5285;109.1078;116.3126;129.2041;116.5766;129.5898;72.41341;95.4671;134.8041;129.8766;94.29348;89.66627;78.21736;110.8705;102.0531;149.5535;104.8271;116.5401;136.3414;118.6365;119.4647;93.28912;113.8046;124.4218;100.5403;134.2929;110.449;103.4288;82.33949;88.495;125.0035;102.4786;104.4566;85.39598;93.27463;99.74796;109.7644;105.0776;104.1284;104.7732;129.1946;139.7245;120.5341;84.62623;111.021;108.3712;94.36501;105.6049;97.38991;105.0623;103.4019;107.4514;89.76386;106.0794;94.17076;102.721;108.6613;102.364;134.7971;102.2122;108.7244;120.5183;117.9929;119.2784;99.32969;104.7617;95.79238;99.74738;124.9642;94.18799;105.1814;110.0587;113.4544;129.0112;130.448;87.16273;84.40326;81.20948;95.99618;106.9315;142.4262;138.7277;103.2931;105.3442;106.7358;129.4742;88.86497;85.9709;113.1852;100.2626;124.8291;99.09189;87.74694;86.2151;99.94377;125.1632;127.5865;91.4087;128.3099;130.8398;123.8843;104.373;101.384;139.812;140.9651;129.5521;99.94347;113.7035;129.2249;132.9434;118.2802;127.7386;119.2288;122.7888;146.8747;110.6733;96.63375;112.9741;97.67146;144.8208;100.1292;142.3254;153.7641;88.80305;126.5027;101.8003;102.598;100.5585;126.7915;123.9366;128.4749;132.4146;118.0017;141.2476;79.14734;90.82289;127.9438;135.398;98.64449;88.87148;82.7681;114.3156;107.9555;140.2319;108.4508;124.6304;133.927;115.4588;121.8873;102.0618;106.5192;125.4251;98.32418;134.9519;113.7325;99.61084;90.23521;83.32685;123.8546;97.09928;102.9957;98.56933;104.188;102.5713;111.1421;115.6;112.1636;99.90521;122.475;145.0295;124.4215;85.79856;116.482;111.8173;98.80408;97.63328;98.84263;110.8002;98.69828;102.4483;91.77042;111.5056;87.30554;103.5928;108.4749;102.6111;137.3235;100.5373;117.8221;114.5406;115.5322;113.3202;95.90388;117.3214;104.171;100.6234;126.3224;100.4409;112.9781;105.0226;109.289;134.1334;134.4698;88.37096;89.1729;84.21426;100.4548;98.92856;144.1815;
100.1331;76.1151;91.74586;90.97471;97.55083;93.7796;84.01028;135.6497;103.4532;93.30962;99.45932;88.07162;106.3541;101.4711;100.2012;89.89426;106.9121;116.0436;107.5876;88.0879;111.0988;120.4411;101.7588;95.0257;126.7769;110.2481;103.1128;107.6913;99.28278;131.5307;100.2913;103.7223;84.23672;108.588;107.7594;99.41418;116.4704;100.0329;114.2524;86.64787;110.8994;98.53848;87.89997;114.8522;116.8232;109.817;94.43486;83.20322;84.15582;106.3955;93.64246;107.9006;108.6311;104.6583;109.8726;102.5594;118.9071;122.3354;91.04411;114.2677;126.5584;136.9851;99.96204;146.1456;120.7194;92.72145;123.7645;97.5387;109.8012;101.3274;80.95156;134.5798;108.7346;99.23115;104.9349;109.5393;101.6887;110.6204;119.1866;99.4118;109.5553;90.65126;105.0771;101.1486;123.4313;97.62667;100.3016;123.6031;147.3304;102.9217;127.9089;116.1447;122.405;147.4311;103.7534;103.7179;92.19897;103.0362;128.3967;97.16127;118.7995;152.4637;114.6133;75.63107;98.78271;118.1405;118.953;105.7229;116.1655;127.6726;96.94923;91.49583;89.97364;91.03667;128.1577;107.1883;106.5103;101.6569;92.86639;129.1357;103.5063;98.19756;92.04653;95.48429;79.55489;127.5679;94.53928;126.9523;100.4456;76.02179;95.94643;88.9642;95.37169;93.31805;86.16206;133.1784;106.9396;93.31228;101.9186;90.18752;101.7741;102.3725;105.7158;92.02345;107.0518;115.8389;111.9452;86.03313;108.5899;119.8192;103.0194;92.48289;131.5095;110.0819;104.5019;109.8374;96.01434;132.7424;105.1186;105.8304;85.4488;108.5572;111.41;97.04926;115.1645;99.6363;115.5853;84.22243;115.326;98.38342;89.18056;117.0704;115.7135;109.9728;97.79195;85.7175;88.21758;115.4899;101.359;114.0554;99.53831;103.1472;109.8745;96.26299;119.668;121.5794;101.864;120.936;126.0866;129.1587;104.0017;149.3265;115.9076;95.99105;130.5638;93.93085;104.6914;95.94207;88.12461;137.5312;107.2549;103.9304;113.2236;117.3588;96.57446;112.0005;127.9911;97.56927;114.1825;99.05038;113.2375;107.1105;113.7254;96.15781;100.299;116.6811;146.1331;103.3102;137.7982;120.3889;123.0861;139.1067;104.3363;103.5934;89.09961;107.4518;130.0634;95.71706;112.3751;147.3708;123.2201;79.59196;95.73942;124.4287;125.0263;111.0428;111.8107;128.9559;101.4339;87.17535;95.33172;100.3863;131.8849;115.6915;96.4971;101.4326;92.96965;124.2362;102.5412;98.5589;100.485;99.35711;80.13773;119.813;95.11639;126.8384;
93.64913;87.21424;117.9585;136.9823;140.4459;100.6267;92.65719;110.6026;89.94545;95.9383;101.1327;100.6187;92.08292;101.2981;91.31906;106.8128;93.94757;101.3729;101.8059;102.7668;107.1584;110.303;98.52008;111.9273;111.7945;120.8312;106.3803;120.6062;93.85323;109.5714;134.3861;99.99788;110.9503;104.8442;128.1115;137.7621;150.8359;96.87566;98.18552;100.5181;84.59895;89.18009;148.4377;131.8604;98.55203;107.3833;100.9782;106.165;84.76379;94.34007;107.5052;87.29324;112.2314;88.72596;91.92454;95.67207;91.05632;129.2579;121.1385;92.48664;108.4931;130.5308;103.3395;100.5228;94.02075;118.7467;133.672;124.5661;118.6181;127.867;105.9899;130.914;113.6262;116.6765;125.8217;117.4274;131.8229;101.2934;97.74159;110.6628;96.03765;142.8327;95.95906;143.2467;124.1498;90.9087;112.9541;93.99249;102.6561;103.544;136.516;123.324;121.8762;139.5653;127.7672;134.899;82.74094;89.13346;148.3114;138.1291;115.3297;94.54379;89.82516;131.2712;97.00754;130.0954;117.3516;109.5681;136.2757;124.8539;116.4635;73.38337;111.3695;131.7668;95.65335;118.5452;96.19362;89.03703;85.79337;95.30321;121.5941;106.6549;105.0431;84.80519;80.82956;99.86436;94.37705;99.57097;97.39371;84.32324;122.7977;136.1579;140.9575;97.09678;90.18971;106.8377;96.95818;95.92513;106.4479;97.49996;95.23559;99.64983;93.54042;102.1142;98.40672;98.68012;107.0442;102.4982;108.359;107.0412;95.76469;109.1094;119.1713;122.3907;111.6123;117.9913;96.2006;109.127;136.2688;96.17733;114.8603;103.3591;133.1902;138.3066;151.2012;95.01554;95.43724;97.85104;91.03375;90.52294;154.6096;129.1284;100.7945;108.048;102.64;102.1541;85.68143;82.98286;100.1699;86.1817;104.7744;87.74822;89.84917;95.72593;101.8821;133.4606;120.6595;93.07339;114.2941;138.0424;102.7979;95.45986;89.0726;126.1594;134.1755;131.0232;114.7026;128.6533;111.6282;125.6714;120.0738;115.6004;127.9746;117.4184;125.0154;102.4926;91.6424;105.4325;97.0047;128.7686;89.03529;141.8164;116.2897;89.91429;110.6515;94.04147;107.8312;106.8358;132.3134;126.6981;125.4841;146.5235;125.2868;133.5206;75.65598;97.94361;145.6612;144.3859;111.2994;96.01395;97.73026;129.1265;96.97735;128.4399;115.9845;112.096;126.7983;125.4503;108.0753;72.44731;109.4661;120.9217;86.30062;116.7597;89.14278;88.81644;86.32899;98.05553;127.1991;109.9953;101.3775;87.60818;83.75508;105.7631;92.26311;98.38842;
91.10425;106.326;122.7749;91.50941;86.2173;92.78934;113.9975;129.2975;128.4111;115.4067;92.45197;93.21111;121.3856;113.6597;92.87122;129.5604;86.03824;115.8929;130.5822;98.30953;110.2564;97.67256;86.52747;90.42699;95.85871;91.23724;110.2405;108.4112;78.67771;122.99;86.5449;109.3314;92.29648;94.62309;134.454;123.4939;116.2693;103.4258;100.842;91.00831;102.0873;108.8908;121.4683;97.85277;93.33264;114.0838;111.1019;122.2351;128.2591;99.48214;120.624;130.3254;127.6952;109.8668;127.8087;129.2542;91.00359;129.9982;106.0867;119.8125;103.9746;96.77158;135.9468;94.05854;95.80135;114.3525;145.7268;91.27824;95.33392;114.2461;127.0519;130.8514;105.282;116.0308;107.4501;109.9828;103.3716;118.2754;126.8882;147.625;82.15675;144.2343;137.5422;122.1274;131.0743;101.0564;88.7868;100.34;93.36531;105.2434;105.2259;111.6973;132.4266;125.5126;81.33354;91.7268;110.8111;128.1415;122.6117;125.6815;136.6559;105.7472;104.0449;91.88215;88.56185;139.9707;121.6839;93.61382;97.31197;96.25697;146.7334;103.8993;99.49984;98.09751;97.13792;87.53265;118.278;100.1462;106.2542;108.6762;76.34209;91.28353;95.99302;107.2132;102.9257;103.1504;137.6028;91.75278;89.2362;107.5909;121.0422;94.18342;89.59369;94.68603;111.3233;126.1046;129.9476;112.8873;89.49479;92.15044;128.0325;114.4121;95.60364;129.2447;84.06084;117.1233;128.5943;100.998;113.8931;99.54547;83.7439;87.48085;96.33746;87.83128;106.5048;107.2819;83.6373;122.7624;89.10604;109.0658;89.82292;94.8373;132.3533;126.5197;119.5023;104.4126;97.83276;88.0546;102.5789;105.169;117.5428;96.782;95.79034;112.1797;112.8123;121.0438;125.4474;98.41458;116.8541;121.2017;132.2873;101.3702;127.3247;129.4088;98.20309;135.6547;108.1912;128.3189;102.7766;97.75918;141.7093;93.19308;93.59611;117.9329;132.4109;94.80636;95.56168;116.2441;117.7062;122.3285;104.843;112.3221;106.776;110.4394;100.2294;116.6456;128.5551;144.0202;79.90927;142.9429;133.5041;113.3007;135.726;92.91016;88.37495;100.4764;101.5665;115.5313;111.15;119.5798;128.2129;128.6548;84.31698;91.9008;112.6343;133.1578;112.4221;125.2077;136.9678;108.3101;99.6757;88.45357;89.03361;141.6519;125.0144;93.75217;91.86256;96.5447;146.5632;101.9871;101.0197;98.09714;95.59763;76.47185;122.7524;92.63058;110.1091;112.9902;83.80917;100.8842;101.6574;114.9612;99.25254;106.0038;141.4783;91.94704;
126.433;106.6255;104.6116;131.1102;96.57561;111.9131;97.65387;119.2254;94.69928;102.492;122.2329;132.6973;104.4128;121.3105;125.6501;130.0117;133.2537;95.14648;106.5019;113.5825;105.7183;118.7453;94.98454;112.6215;151.3804;129.3775;75.05326;102.9782;134.4549;141.201;109.9762;139.4139;140.4263;83.28142;91.89721;93.17101;114.3068;138.5392;127.8508;95.09066;95.44279;98.54207;145.1669;88.25697;93.6564;91.32526;101.6045;80.10062;130.5832;78.4881;114.9149;97.05302;72.00961;80.71563;84.51266;93.35594;97.78607;90.94886;129.6749;88.13367;97.22154;101.0561;103.7374;103.6691;112.3273;86.66294;92.93085;126.8277;118.5531;108.2402;81.46369;100.5836;112.0374;101.3216;92.09679;115.3996;108.7894;94.8419;115.5909;104.6282;112.731;93.94656;105.7175;100.7134;107.1367;99.68541;93.44429;104.8498;96.65852;122.6751;80.54464;116.511;106.779;113.7325;115.5875;138.7788;114.3298;84.16834;85.30159;85.69238;131.2391;99.07054;116.554;96.26484;89.46909;111.057;110.1275;102.8884;113.513;95.24355;121.5517;131.4311;135.7275;90.56136;134.3884;116.3871;86.94329;106.871;86.06652;107.6225;102.898;79.92753;128.9675;91.56537;96.77481;113.9512;122.7671;105.1857;118.147;107.9284;102.7613;129.0715;95.82726;105.808;90.62409;115.9614;89.93904;96.98448;120.1156;129.1358;99.26221;127.3617;121.6415;131.3182;125.5441;96.79939;105.3683;112.1412;105.6608;112.9025;88.87266;110.5376;147.0825;122.908;74.15203;100.6831;129.6913;147.1964;106.6345;141.7727;133.6153;84.42708;91.22889;92.67001;115.2838;131.7341;120.7464;93.179;92.03883;92.9089;143.9154;86.13546;90.43532;97.09766;100.0634;82.58919;122.6822;78.69766;102.9114;91.64523;70.23032;71.4011;80.37775;90.15617;89.77383;90.70078;141.3032;92.22134;90.98284;106.8786;107.8018;108.0636;100.3413;91.06097;95.3686;136.8924;117.0068;107.273;80.51896;107.2306;113.9867;98.19383;81.20875;118.4814;95.89139;100.1719;111.365;115.7407;105.3987;94.16666;94.2179;95.1983;104.964;89.29335;89.09373;101.4521;90.16021;127.9283;91.56159;121.1024;103.6005;113.4555;121.5459;140.558;106.1708;86.57762;89.09016;92.21713;127.6784;103.0199;120.5327;103.986;92.72263;112.9658;100.0857;105.7044;103.7203;94.68193;118.8955;140.5652;132.0927;88.82336;123.1053;108.5197;83.41842;100.9295;86.20119;105.4043;96.20881;84.16167;142.8381;95.64042;93.76891;113.6546;128.9277;106.7351;
114.7782;118.7161;130.385;137.9897;124.6039;83.69829;116.5538;136.1749;100.1127;131.7038;115.8439;94.35498;95.84245;92.96877;131.865;101.1235;99.23712;90.21952;87.74847;92.0535;101.7378;97.82959;106.6713;86.08955;120.4383;147.7036;114.3071;91.49788;99.07523;110.7863;90.43185;108.9504;109.6703;113.4865;86.3681;93.99973;101.1022;95.05924;113.2416;84.78464;83.43567;102.943;123.3818;107.1012;104.3001;103.5121;124.3754;113.6399;89.03216;107.8642;95.05975;108.5567;125.8305;87.36434;108.1543;103.2265;114.3679;137.9414;123.7549;100.8625;93.32858;80.25534;91.22501;90.21602;145.8236;139.3361;96.963;121.4183;113.3881;115.456;95.07307;97.16182;113.7924;98.40506;132.6594;96.34622;103.4177;90.70692;108.6692;123.5263;118.1303;97.19538;118.0225;124.7037;114.4781;92.53652;105.9234;119.2333;136.3561;140.4238;96.82315;125.4331;115.0247;131.09;117.7018;130.5021;130.9015;130.919;126.6179;102.2046;109.13;96.69908;116.0528;121.41;76.59366;148.9827;147.5612;93.28853;117.1946;87.41245;111.0126;94.85248;114.7168;117.296;121.2982;143.8979;114.2218;126.36;77.32259;87.739;133.3043;141.7954;94.63581;100.5892;85.05537;107.5387;101.8631;127.6675;111.9717;120.0436;132.726;142.9783;124.3839;81.20765;116.7767;133.4167;99.03037;134.9425;121.0572;95.56924;95.74374;91.98814;136.6104;99.32549;96.45486;91.29784;89.50335;96.06538;101.3703;95.04672;105.8053;83.45487;120.0413;150.9356;118.3531;92.54426;100.127;109.8654;93.7568;106.9139;107.9235;114.8688;87.52501;97.8888;101.8886;92.46324;112.3468;82.17204;83.1031;105.6463;127.5812;108.2352;102.4473;103.5541;127.086;112.9318;93.54146;109.6355;102.4424;118.4423;127.1868;89.00658;106.6263;107.3769;124.9161;135.0739;129.2875;98.33554;91.95168;81.44444;89.5602;92.5694;147.2388;141.0089;100.6879;124.2284;107.0068;105.2011;92.84262;101.6326;115.3402;100.3166;140.4546;94.00864;101.6704;93.27132;116.0551;117.0852;123.3156;98.86732;126.228;135.2836;115.7716;94.21692;104.4067;123.691;145.3198;134.9766;97.49726;123.6354;115.4593;132.5353;113.2189;134.0844;131.3537;131.5793;128.9043;102.8087;105.0397;88.95202;115.6057;128.1774;76.04964;148.629;150.5372;91.88349;117.339;89.8652;115.8677;89.85987;119.0069;118.2153;127.6825;152.8361;117.827;130.2888;77.69734;93.07758;142.2135;136.3001;95.32299;99.00104;85.46376;108.8291;97.71667;131.2351;
95.11995;139.6548;134.2628;101.0232;127.6469;107.3254;114.9498;87.19695;106.1777;113.5472;94.21687;129.9568;103.8425;110.8766;91.28828;96.62342;111.9972;126.7658;104.8503;101.1503;141.8128;120.0478;100.3294;85.2163;147.6773;124.2333;113.9731;95.94077;115.6099;135.1836;129.201;129.4053;118.5265;121.5993;115.3205;136.1345;100.6928;88.64733;89.86208;96.88551;140.5999;95.40862;137.0934;132.9512;96.3444;109.0779;89.23909;95.34619;90.16436;126.7736;122.5137;121.2761;133.3163;114.759;129.635;85.77779;100.6631;144.4645;126.5953;93.50468;108.0134;81.89149;122.7226;92.88391;133.0887;102.7802;114.031;133.9622;145.0592;118.0674;81.80531;109.33;144.6493;98.38429;127.1362;111.9776;105.9139;103.0455;94.56299;122.0633;91.23965;104.3291;99.29575;73.72681;111.2156;105.9565;104.8287;88.13062;116.284;111.1831;121.0549;113.5563;88.32534;112.2414;105.9909;103.439;90.15516;95.66882;98.47787;99.00008;98.90565;81.06553;88.81634;91.98109;102.511;102.6507;94.61671;112.7175;114.8925;90.18369;105.2002;109.1662;103.8167;98.03119;116.9323;96.80446;100.3671;125.742;94.29682;115.4617;123.1491;129.6077;124.5333;122.1368;110.8712;88.06072;92.04278;85.10463;88.28857;133.4443;134.8579;101.1144;128.1765;104.3603;119.8975;82.92977;110.0735;113.3515;92.28002;125.2745;108.2228;104.4063;89.78725;92.95502;105.3068;121.3246;106.1123;101.6744;143.2266;117.3766;104.7762;81.80553;151.8195;125.5603;111.6778;92.60678;119.32;129.3784;126.6792;125.943;110.7564;117.5477;115.962;137.5749;101.0476;87.46407;94.07541;93.24878;144.6453;96.57433;134.5778;129.0241;98.4156;105.3122;86.80457;93.30915;89.52617;120.3197;128.4145;130.4568;142.1626;118.4794;132.106;81.9465;102.8067;145.5246;124.6424;92.57066;115.385;78.56323;118.4087;90.39232;129.305;95.69183;116.7819;130.3123;148.1007;113.513;89.12051;106.6928;146.5484;92.70071;121.1743;101.8482;104.2338;98.23495;89.07529;119.7395;90.58842;98.47733;104.6143;80.91773;119.297;109.5273;107.0512;84.24237;112.3796;111.8885;121.1365;117.4249;92.95305;112.1422;104.5967;102.9022;91.64967;93.3005;100.0921;95.77244;102.3649;77.15692;92.51159;92.17902;98.28545;96.63431;91.22203;107.2332;110.8994;89.0822;102.0094;109.1366;108.1229;96.92361;121.6721;104.9217;109.0319;129.4449;92.48145;113.9143;119.1091;130.3691;124.6348;126.1491;116.0282;87.97275;90.75993;84.61893;
139.8976;86.23539;141.6144;142.6852;100.2985;104.5195;104.7996;106.513;98.52521;117.7624;120.8365;146.4774;140.7549;120.1193;113.1609;71.24017;94.38246;127.2311;149.9601;92.71136;110.9372;79.01382;131.7086;107.0599;143.5012;99.04025;127.7152;136.4906;135.5748;110.3657;88.73646;124.9689;130.3502;92.09953;115.0001;109.7598;115.3285;100.6155;104.1046;134.8421;103.0899;103.1462;109.9393;92.69077;117.6264;83.11121;114.4202;102.4197;96.27966;114.0912;136.8356;112.1903;91.52895;97.01181;93.1322;111.5905;96.56642;94.07509;101.8387;80.70414;101.9022;87.65578;78.55862;87.72823;98.41019;96.20233;100.4403;120.7938;117.4461;91.61604;123.5324;121.5255;116.8545;94.95023;115.6283;118.0537;108.0586;130.777;76.20708;101.461;110.7809;111.8514;149.6257;126.1411;112.9157;87.38171;97.07428;99.72002;102.4103;133.424;149.4346;102.2471;124.6312;101.0013;122.3614;101.7221;91.55695;109.2477;87.7969;126.1117;115.3611;103.9499;101.4068;105.3385;123.9541;125.44;117.9555;122.2856;151.3452;96.99133;115.2895;102.5624;126.8376;130.4838;131.2511;92.87849;120.7346;108.7727;113.2095;133.594;118.5237;112.2658;120.6652;117.1766;106.0134;95.98518;85.17027;92.94702;140.0811;90.68661;148.8823;144.5367;102.0219;102.7458;105.0226;103.5035;99.06052;119.1704;123.3539;146.5212;144.5808;124.3543;116.6036;73.11877;94.36131;132.5302;157.2145;94.12463;112.5541;77.39191;131.3583;103.7194;143.1244;99.12835;129.7169;136.5479;138.8033;113.474;91.68497;127.4583;129.826;95.74962;121.255;111.3103;116.5019;97.90979;103.7906;131.0923;102.7681;103.2382;111.7945;92.73997;119.6825;85.75443;118.7253;105.6998;97.07477;114.2326;137.3955;121.4614;88.1525;95.60716;95.61712;103.2318;96.06935;93.0314;92.36952;86.47693;91.90272;83.23966;90.03932;94.0179;101.7333;102.2844;103.1876;121.1851;117.2821;93.50223;111.6955;123.2585;106.109;93.67838;113.2251;115.6859;109.8931;145.2348;79.97763;101.9758;111.6333;111.9867;150.2;135.9608;109.1616;86.04467;99.60181;91.82738;102.3826;133.3682;138.0486;108.5652;111.539;93.43284;131.968;105.1401;95.3763;112.8927;86.71801;124.7559;114.9773;108.8163;90.14163;109.2936;113.4135;125.1295;115.6363;119.7162;151.2097;106.4929;115.583;99.84329;128.488;127.6341;127.3826;99.75652;116.6449;110.157;115.3202;126.9534;118.535;112.2177;110.4592;123.9571;94.00355;88.61345;93.21757;96.23625;
133.2694;121.2993;129.9534;141.8235;111.4031;86.59831;108.1932;94.23711;146.6378;125.9318;103.7888;90.97556;89.60473;127.9257;98.63985;100.6304;99.51443;102.7745;90.73654;124.0173;94.22157;120.0709;111.1594;73.94755;77.68909;92.86086;112.3206;95.65425;85.98912;144.7218;102.5434;99.06875;93.65086;112.5252;98.84995;87.80473;99.16431;88.98077;101.9588;107.6783;115.2853;76.04041;95.90993;108.6699;86.85762;86.09688;111.2748;88.45447;101.3744;118.3307;93.32017;116.8588;97.13657;86.97212;92.36543;88.05704;89.68394;89.89898;121.9936;88.82204;128.5971;88.10255;120.3764;97.40192;101.6348;129.8016;123.1962;122.275;108.6379;80.38039;99.27428;103.7172;112.4209;119.5606;103.5041;89.24776;104.4117;97.48756;113.5126;122.1615;100.5746;125.3962;138.5612;131.9834;105.7324;140.8491;129.4355;86.87289;115.5013;100.4084;123.5308;109.2353;81.35461;141.1486;101.602;98.96486;99.22253;137.6939;100.619;96.43591;120.3413;104.7635;102.9025;85.30676;118.93;89.28498;108.9796;93.40299;89.07906;112.472;127.4282;84.78473;119.1965;128.1267;119.2222;131.1068;96.34763;91.64925;103.8851;87.49392;112.3391;89.74525;127.2947;143.4695;128.4404;78.79982;100.2512;120.7207;127.9254;122.1338;128.1888;140.1514;110.3707;88.72523;108.1779;91.94086;150.2162;124.8728;97.63443;96.45303;90.69167;123.5905;94.92978;99.13957;95.60245;103.9801;89.94042;122.9401;93.95781;123.0512;112.0515;72.75832;81.59721;91.74882;106.8014;102.0936;87.93992;139.6217;99.14001;98.3822;90.77424;113.3575;98.39828;87.65404;99.84497;91.15597;102.8158;106.2449;120.0382;75.03655;90.81741;115.5291;87.53682;83.48697;109.2487;90.53251;108.3192;128.9889;95.64137;120.9855;92.90008;90.39171;85.87986;91.2298;96.28204;95.29135;111.0877;92.94875;123.6013;81.99615;113.7534;94.20662;87.53517;129.9359;115.1172;126.8916;109.8539;91.01637;101.7346;108.4634;113.1628;120.7868;100.9446;89.88926;113.5947;99.46426;105.7104;128.681;107.4924;136.3502;141.3866;136.361;101.3104;145.1804;121.7364;90.01971;120.0267;106.295;115.5462;107.5415;76.73239;136.6677;97.40485;93.58339;89.69991;135.7804;91.3922;101.2251;122.3706;112.8248;103.0591;88.17992;116.8126;90.50498;109.2766;88.37146;96.85988;117.6294;121.2788;88.14227;132.0993;137.1304;119.6436;136.2643;92.77645;91.51691;94.74319;89.20746;116.8239;95.29724;119.209;141.5271;122.637;75.44507;96.10165;114.7689;
95.53574;93.95691;114.9984;95.98443;100.4689;99.14588;90.50368;88.40017;87.19294;82.75138;99.46974;83.30718;118.4596;134.4377;91.1118;119.5593;107.5862;123.4842;90.05701;129.1164;116.9635;115.0627;126.7635;86.75391;126.4405;110.9146;135.974;127.0456;125.9445;109.8725;98.68956;90.5472;87.53108;84.96848;150.5937;130.4535;104.0421;109.773;94.85942;124.9453;74.61784;91.9762;106.1426;80.72285;112.658;108.5163;89.57774;100.5625;92.15501;107.8314;107.5654;100.6109;134.6562;139.9073;104.7051;107.0136;106.7044;129.6791;131.2473;131.0681;102.5467;143.8081;134.6519;126.108;121.3316;117.0807;138.4917;114.4214;139.5955;101.0364;100.787;92.29203;92.30575;122.0502;91.43169;123.424;133.8884;117.4496;107.1351;98.16648;92.28319;105.436;113.3952;136.2104;139.9081;148.5189;117.6572;123.0332;92.97185;95.9356;149.16;123.5606;92.45074;107.4729;92.81418;117.558;97.80928;126.7485;114.0211;103.3232;134.8865;127.7742;110.1096;89.30663;97.39335;135.1949;88.22304;106.1725;97.64551;105.622;84.78196;101.977;117.4326;87.74944;88.09313;90.26829;101.3521;106.1044;94.77035;109.3277;107.4802;93.79348;112.3211;137.5839;125.5444;104.4104;118.1655;104.3892;98.95375;96.65051;115.7037;91.34393;96.17935;99.9412;94.38487;87.3717;87.87218;83.6228;96.69183;80.63139;115.881;130.7576;94.81844;119.2057;111.0251;126.4759;90.51284;123.6332;112.1461;115.8221;130.1518;85.29407;128.0833;111.7341;131.5183;123.5518;124.5622;106.6963;101.9069;90.09212;91.72961;87.58683;150.4064;124.756;100.6472;110.6756;97.79108;123.1945;75.87897;92.72453;102.2078;77.94473;113.7683;104.4324;91.35954;100.7606;93.92796;115.5755;104.7242;91.21021;124.5481;146.9057;105.8132;98.40111;102.2722;121.0096;129.5319;131.5416;102.3432;139.6179;137.3049;126.3666;121.7645;116.7815;131.2182;109.7013;131.9846;105.0318;106.7284;95.36861;99.19154;126.1772;93.4627;120.5117;133.6963;114.564;113.7398;101.5813;94.05701;113.0847;110.4729;125.2347;129.6006;155.7147;118.8268;113.7855;89.80493;88.62425;150.72;127.3074;91.2632;107.9049;93.19729;117.5897;96.27464;124.2984;106.475;103.7462;128.6526;132.2701;114.5398;93.21369;105.5352;139.6696;92.87589;106.4922;96.48218;106.9128;88.89938;105.2758;117.3357;92.88402;84.68653;85.8297;93.68534;112.2135;94.22752;101.5359;104.1114;86.54886;113.6981;141.5612;124.2017;104.8176;118.6209;104.4407;
114.993;112.1433;106.4257;148.1137;118.7231;101.6552;105.3687;146.1814;140.2647;114.5107;99.75636;146.0331;126.7815;121.3403;115.1386;121.5191;132.5419;127.8107;126.5777;102.1331;107.1679;100.5956;114.77;156.3113;85.52885;142.2101;115.4418;121.4747;115.2223;90.73335;91.41986;94.98135;122.0303;118.501;117.2372;131.9505;133.3241;108.8205;82.10422;99.22832;130.6664;122.8275;94.72091;100.496;77.42536;127.0731;100.3016;139.5344;104.084;108.5845;116.1984;143.9036;124.4482;85.81914;114.7674;130.8329;108.6288;117.4362;100.2134;98.39624;77.82792;93.33624;116.2563;106.1838;96.1296;105.488;79.66553;115.776;106.6951;101.0791;108.5473;106.9954;122.8833;123.5606;123.7648;112.2169;112.3306;96.63425;91.17661;98.09796;109.991;108.1318;89.78822;99.30303;103.3521;94.16388;110.9484;110.2067;95.99911;106.1525;99.96543;132.7876;98.94801;107.3507;103.8574;110.0158;98.77251;117.7662;97.12808;100.2045;146.883;75.40431;112.798;116.6462;115.9019;127.1602;130.8473;98.48036;83.14326;94.01218;92.36979;96.49114;138.1693;127.9706;86.72603;129.2445;115.2034;117.9925;89.19289;94.579;126.0655;88.31242;115.5118;94.74861;80.56262;91.11462;88.04315;128.3465;116.4552;113.7106;110.6298;149.3728;123.1493;101.2998;105.3142;149.4269;143.8497;118.3738;101.8959;142.1478;125.9165;117.7677;113.6615;118.7702;134.9415;129.9725;131.9799;103.6267;112.142;100.6644;114.526;160.822;87.99347;148.197;117.5627;118.7186;113.521;88.756;89.48631;93.24862;123.3995;121.9016;121.728;134.4705;137.8881;110.1381;81.90004;102.8312;133.7114;128.3985;96.64542;97.99298;75.89079;125.9238;98.3042;137.3477;103.4761;120.7275;116.3888;141.0278;128.4524;85.21165;114.8722;125.8723;114.5047;119.7859;106.1954;95.33273;83.4436;101.3079;121.0964;109.2287;95.25768;108.013;86.52602;109.2436;118.9465;105.9358;111.6366;104.9076;125.3627;126.6683;117.8095;100.2266;111.7271;91.83836;85.08247;99.10361;109.3559;120.2448;89.95492;96.91206;106.994;93.52273;111.0506;105.6531;99.75969;104.2508;105.7933;132.1164;107.0669;116.9647;110.5062;115.0946;97.54539;118.0908;102.3624;92.04253;156.4325;77.52715;116.1531;110.7377;116.3856;125.7732;124.5767;89.64938;84.215;90.23717;88.10457;99.3379;137.0451;138.5946;84.78348;124.088;114.9599;114.7475;89.46169;87.0547;130.3477;86.57848;121.7889;94.18304;87.88609;99.98792;94.18931;133.829;
124.2603;143.8721;122.5042;106.8557;130.0026;129.1155;114.0059;125.3906;115.9708;118.6011;97.32856;75.102;154.2545;107.4326;92.03176;103.9;126.4311;109.7747;87.2038;132.0673;116.7342;105.5361;98.29314;107.2545;121.6629;121.5782;95.06747;92.21456;119.3698;126.1985;94.17905;110.3448;109.7781;125.8631;123.4314;97.11672;99.54539;104.9457;101.9955;113.5982;94.16927;121.5781;127.8793;113.9042;97.38497;100.3282;122.5677;124.4386;116.5338;143.114;136.3798;103.6113;120.4712;93.34389;98.80633;145.5643;124.3259;98.48086;90.51955;97.21574;137.0997;97.86637;90.35362;98.36073;103.2263;94.48994;114.9048;94.409;112.7952;112.0195;97.88618;91.01579;108.97;104.7745;91.14389;80.18786;156.9083;107.4484;92.65381;96.03547;105.012;109.7344;79.00639;109.0985;105.8306;108.004;121.9339;109.1584;104.6591;102.6495;121.4525;89.14926;90.2051;112.6247;99.37471;94.05062;105.7634;104.4529;111.7037;98.10521;103.0334;93.59805;106.2563;92.69498;93.88013;113.6943;85.35017;113.1527;102.5564;121.3162;99.27821;98.55212;128.0322;142.4344;120.8294;103.527;116.4817;83.84351;113.5831;109.5856;117.0014;100.5038;92.53574;111.968;104.3201;117.5729;112.6013;103.4348;128.5611;148.9073;125.7744;107.8298;136.092;127.8661;116.7604;124.9648;116.5991;120.2405;101.5475;73.72895;155.7892;112.8768;91.28762;109.655;130.5667;114.0897;89.79858;133.0554;122.3244;104.3324;100.3347;106.552;121.3731;121.9037;98.73375;90.70549;120.2498;131.0912;93.32941;116.2979;113.1759;129.4732;126.4125;97.97674;104.2633;102.8491;104.0725;112.8775;93.91198;121.906;132.1231;112.2285;95.25088;103.0804;120.3701;129.8127;127.3648;148.2073;146.3811;100.1178;118.4896;87.5342;96.14655;151.9627;118.5085;100.5614;89.26031;104.9448;142.8922;100.3194;94.06336;107.4287;104.9309;87.53348;124.1144;90.06931;109.922;106.6311;95.47564;92.54115;105.6498;102.3258;91.46635;79.84825;142.1292;104.5749;88.11012;101.045;115.3056;114.1952;86.65244;105.513;103.9736;101.7431;118.9672;114.7084;100.9855;105.7907;116.0278;96.73751;97.05959;112.3393;105.3036;98.13897;105.6107;95.26015;117.9535;91.51971;98.6301;92.14027;102.7837;95.71658;92.40825;112.1922;82.3054;112.96;92.79729;115.3196;96.5229;98.85085;137.261;145.2145;127.3083;97.79835;112.7764;81.59505;109.7529;116.7805;113.1556;103.6152;87.81091;120.4766;111.7219;117.2844;118.9096;107.7421;
97.5593;129.249;99.24496;100.4225;112.2776;129.9159;99.56039;112.9963;131.1582;124.839;100.6711;112.8927;109.0253;82.34483;115.0244;94.38085;110.8184;121.7469;137.6169;90.4024;124.1436;118.5272;129.5912;129.4458;78.82104;96.04717;101.4452;96.70638;123.7779;93.37791;121.3575;132.8197;116.2218;77.28191;94.74822;126.2362;138.2732;124.362;133.1954;134.9376;97.43021;115.4577;97.76377;105.685;143.7373;104.444;91.63873;114.6781;91.92781;125.4359;92.0117;99.8126;105.145;97.24535;76.43053;130.5892;82.75396;124.8857;99.02883;87.93735;79.90724;92.45403;108.1578;103.3646;102.0618;128.1972;96.78273;96.28558;105.2215;106.5006;97.07597;103.8177;108.5556;112.9561;101.6093;134.3309;109.2559;68.1792;96.67282;113.5999;108.4246;93.3186;121.6813;92.14368;98.29788;109.1594;100.9339;112.6443;79.83916;91.81345;91.57117;97.2729;100.1195;90.83646;106.4325;84.84229;117.5295;86.78386;112.4434;98.8913;99.02466;133.6211;132.1753;120.0556;98.13601;101.9748;89.70714;120.4801;107.6741;100.052;88.26725;118.4159;112.2875;95.8709;106.1691;121.4458;99.44304;120.316;122.5558;142.1786;93.63571;140.3616;113.6124;102.342;108.2802;98.2733;116.0215;108.9384;97.38958;131.57;97.09177;93.3497;104.6052;131.9198;98.09274;113.9609;130.4302;120.3091;97.79353;110.4854;104.216;81.34711;106.7807;94.53261;111.3915;124.4784;135.9123;84.09288;116.8319;120.9056;128.8905;131.6331;79.52058;91.85684;99.42108;95.26818;119.6823;91.91177;113.2929;133.9448;117.8331;79.08517;93.71372;119.6423;131.643;126.3356;132.4879;137.1735;98.21021;110.8615;95.77927;104.1838;140.2524;103.8639;86.19819;116.5535;100.4936;133.4949;89.78128;97.34612;94.60365;99.98118;88.15446;119.8036;86.61481;112.2807;90.68758;96.31666;73.95543;90.56898;106.7339;95.886;96.0703;132.1714;98.30064;88.92315;104.2804;108.1643;96.73326;102.0052;109.9895;101.5652;106.2707;125.6234;111.0246;73.65211;93.97435;111.2508;117.7108;100.2774;119.1143;89.76975;88.11472;112.0468;114.3444;102.6387;81.13291;84.24989;86.19791;105.1523;96.26787;89.48334;111.0011;76.5408;107.4846;87.37794;116.1307;94.88363;103.0404;132.2946;130.5672;115.1995;96.79579;94.53731;96.90566;111.2911;112.5106;107.2197;91.1238;114.1496;117.9819;100.0511;105.7446;122.6515;93.89664;120.3093;136.0515;127.8481;95.05544;130.9504;107.6385;110.4198;104.2931;96.84772;120.811;99.50287;
109.3938;109.5404;111.7033;97.34121;127.652;91.85277;91.07777;87.73817;101.444;86.76469;123.4344;84.86234;112.6563;106.0635;89.71386;86.76514;83.76614;104.8071;95.60664;92.85621;140.4395;95.03539;107.2713;93.90459;98.62928;88.96382;106.3386;92.57954;99.68662;108.7878;125.2184;96.75903;74.40648;100.8908;109.0341;91.57676;93.35596;110.0381;87.71765;88.59577;103.574;100.1968;118.4595;85.6708;95.12533;94.75614;99.61486;89.42423;84.74007;117.4707;80.22446;124.9014;103.545;122.5702;98.84555;101.4862;128.2357;111.0048;111.8937;96.33432;102.239;93.63329;117.4266;108.1511;105.3403;113.3126;110.265;118.1255;100.232;109.1697;117.8031;87.26659;119.7387;136.1783;134.9418;95.19461;133.3813;124.3772;108.464;118.0154;86.53013;120.5331;103.7046;89.2782;142.8165;96.33435;112.483;99.00967;119.6321;89.74776;113.2819;114.2006;110.1029;109.4826;101.3076;98.70981;91.13667;119.377;89.41938;91.93742;123.1376;122.6041;81.53597;111.9613;108.1424;124.389;133.1169;86.21822;91.30608;101.8909;95.37251;109.9388;88.51226;124.8187;130.7279;122.5619;91.74102;104.219;118.9875;135.3805;116.906;110.4818;129.7102;96.34626;104.4811;100.0914;104.6529;144.2595;110.0731;109.9528;114.3954;98.42458;128.387;90.90764;91.29777;88.65609;98.99097;86.63496;124.0969;86.68815;111.3085;105.097;91.28829;88.42873;84.19829;105.1252;97.92325;93.84451;141.0113;93.98584;106.4276;94.38147;96.92078;88.68171;105.8819;94.3353;99.56786;107.9573;126.3669;98.35242;75.80145;101.3657;110.8498;92.39838;94.93494;109.0681;86.95267;89.06094;101.8205;99.89953;117.9748;87.36205;92.22647;94.87337;99.59138;92.1955;88.29023;111.3694;85.58322;119.593;101.6001;117.8329;100.6843;104.4009;120.1331;112.6713;118.1076;92.08332;95.76071;92.29752;115.4686;112.2736;109.2408;107.1938;109.0544;121.4545;87.73386;113.7106;116.5594;96.64425;129.6511;141.9619;143.7753;98.97705;132.4023;120.7513;114.3055;127.1031;90.11684;114.3413;109.7808;84.79914;140.5303;92.13038;114.4392;101.8889;111.0442;91.97073;119.4898;109.7729;106.4572;107.8896;99.50931;99.71223;90.85736;113.0781;86.25979;96.02507;110.5816;127.3783;82.18089;120.5898;116.8113;130.7603;141.8451;90.01933;93.40327;98.46515;100.886;115.5814;88.30673;118.4943;134.9778;118.5763;91.14249;99.81971;123.0768;136.6518;108.4574;112.9273;136.3719;92.30322;100.9682;98.55036;102.8465;145.4963;
105.8195;91.34432;96.93829;108.6199;104.2218;90.78338;100.5159;106.2151;111.5773;101.7976;96.52386;103.5693;86.54174;106.9777;116.1287;93.94107;98.07826;100.4459;108.2534;93.80981;115.9108;91.75617;97.72951;126.6894;78.69998;114.0258;121.7588;122.4661;126.1621;131.3103;108.7353;87.26423;84.74417;83.79449;84.20483;128.9986;133.8702;102.5555;126.4201;99.00217;137.1538;94.97489;92.00044;111.2422;79.74918;113.9082;107.7882;88.56631;102.1861;90.27372;124.8612;126.2766;105.2267;98.82273;130.5683;107.5512;90.52169;104.3042;141.0911;140.5924;124.7413;96.40252;144.713;120.0728;123.9869;113.2209;116.6486;131.8096;123.6314;127.1408;101.9649;110.6203;115.3076;102.6827;134.7736;95.6944;127.2664;122.2675;99.40308;104.1734;79.84016;86.16208;89.83348;118.491;123.6029;111.6943;130.7574;113.7719;109.3376;76.62463;107.9549;142.255;128.2144;98.53976;108.2619;76.34;119.0725;94.40279;124.2067;94.33899;113.0829;133.7592;144.7467;106.3816;96.61417;114.6761;134.7515;99.06245;113.3822;100.6699;105.1121;81.30099;112.1177;116.4127;104.1913;101.8881;99.61972;70.3922;97.90067;91.10806;90.20375;101.2241;105.3257;125.458;140.2739;122.3057;108.9969;102.802;108.6326;92.64863;98.37536;106.4627;103.5088;86.71076;100.7016;99.49928;104.7527;95.62676;98.14348;105.3069;91.10057;107.4584;115.7624;89.4321;101.507;102.2471;110.5229;92.21798;115.9284;88.06503;97.73967;120.3239;72.6769;108.9154;123.4047;125.1493;130.7029;133.2121;107.7032;83.56255;87.14857;86.53481;85.62172;127.9334;132.9293;99.83727;126.4344;93.38696;129.1669;90.31834;93.43417;113.8027;82.1627;117.202;106.3833;85.72969;105.1879;99.47275;126.621;121.6148;97.52348;101.8508;123.5318;101.878;88.21743;98.54956;133.9443;133.4256;132.0756;91.9796;143.5314;113.0196;134.0959;114.9746;122.8297;136.3051;123.3463;132.0715;92.02719;111.7063;108.2418;95.82838;136.7886;102.1153;134.1506;130.2707;96.26739;110.2462;82.4872;95.14951;91.32642;113.9718;115.2314;114.9069;123.7149;107.9299;111.5394;76.71302;99.87692;133.5653;132.5243;91.10493;108.6251;73.29671;123.3886;94.06017;128.4407;100.2149;115.056;140.3266;133.2582;112.4158;94.49702;113.5378;134.6482;104.2862;116.944;104.7784;103.2597;89.51639;109.9607;124.5976;103.8847;99.76238;94.1544;74.04391;92.14919;90.33671;92.18612;101.3255;97.36531;117.3072;144.7572;114.0059;109.3789;99.26675;
96.54836;115.0796;126.1404;99.65485;134.5444;136.4691;127.9027;100.6896;140.8581;125.215;97.2406;114.3077;105.1617;120.2117;101.441;84.59824;150.6486;109.9215;100.9656;89.74634;136.9856;96.26945;94.9402;106.6104;106.9269;104.28;90.02525;106.5415;84.02985;110.29;83.20109;93.84976;113.3307;133.7034;88.29259;123.7664;137.8839;119.9092;128.4961;94.25487;92.54051;101.5668;99.51257;111.6385;98.18092;126.4797;133.7227;130.624;86.02199;109.4028;122.7611;118.9838;121.263;125.8257;135.4326;98.43181;93.05462;111.7491;101.7957;135.7362;120.742;100.0035;83.07552;95.55618;127.894;101.5328;103.6459;98.25105;114.4708;88.63383;117.0704;91.47771;123.6957;110.5968;86.03;84.44757;99.95098;108.1398;94.07386;90.21694;152.4941;109.5374;99.16447;83.59991;115.3414;99.39266;87.4379;90.55281;96.31997;107.3804;118.7126;110.0454;74.66322;94.43263;102.208;90.74963;83.39938;118.7637;98.79746;101.5938;130.1005;94.88635;112.4723;94.06506;92.04236;95.38244;104.1569;93.98629;96.76442;121.5021;83.85336;123.8637;92.92563;127.2165;106.916;88.98368;129.2018;123.013;117.0673;98.73445;86.60897;107.3422;116.416;107.6397;117.4738;103.1738;82.95284;105.396;97.25936;116.4983;133.2112;101.6208;135.7462;137.6762;127.2917;102.7908;144.1609;130.0677;101.3702;116.9779;107.3892;123.7139;99.81728;79.32219;151.3186;111.2205;107.1185;91.53329;137.9819;97.19335;93.90628;108.4418;108.9146;107.4597;93.50262;109.1332;85.60846;112.6963;81.63388;88.29252;113.4452;134.1106;93.95683;125.8774;138.3658;119.9723;127.2901;95.97933;94.38794;104.7073;103.1645;114.2934;99.02021;128.9857;132.7493;125.1685;81.51461;107.6462;124.5372;120.8716;122.0794;128.5254;139.7017;102.4648;99.40713;117.3594;103.2254;138.3013;127.4528;107.6218;86.85496;86.49989;135.0107;98.2859;99.15534;106.6671;113.6969;92.08286;121.7654;92.7327;127.0158;107.5332;83.95387;82.8027;99.17281;118.879;104.4778;85.69627;146.4723;107.7751;100.7523;85.18359;116.1373;101.7891;90.86594;94.42274;101.0156;110.7967;118.3419;109.6097;79.20263;99.59126;107.2635;86.33384;89.22313;116.0751;90.5138;108.0795;129.8144;98.43839;117.2489;92.65355;93.23544;90.65385;100.0974;89.77744;95.19201;130.3127;94.50298;123.8701;88.31832;126.1894;104.3857;88.73791;130.6017;125.6611;121.2315;99.98262;91.10054;110.7611;116.0517;107.2307;123.1927;108.5658;87.51572;100.6541;
104.1175;80.58419;104.398;94.91957;95.71441;106.2036;104.4772;109.4544;125.9979;127.8317;84.47988;104.7445;101.1745;120.2985;108.937;92.1626;101.9017;91.78328;91.00406;88.59651;96.45663;100.7848;110.1035;108.5415;86.14117;114.4338;116.8672;108.9611;108.2823;127.5636;119.5461;98.71621;113.4903;99.97523;95.65353;136.7325;75.45178;124.0933;125.2694;107.5543;125.2896;138.896;111.9735;87.5353;100.9274;107.732;104.6855;123.4964;128.0931;107.8253;105.9759;108.6206;106.6046;86.12309;103.7172;117.8433;73.59067;109.6404;92.92374;109.0545;91.33324;97.82643;119.5345;105.6053;108.8821;106.3286;132.3424;105.9237;92.25024;99.47573;134.3161;120.6467;116.8015;103.664;110.0288;118.3902;121.8641;147.2971;126.9069;110.9845;119.001;131.0778;90.20621;91.90826;102.2119;103.2251;151.6787;99.39537;129.0263;133.2156;96.69482;124.5849;91.69947;112.5171;100.5677;123.8317;125.1364;128.0362;126.1937;127.503;115.4925;88.2826;109.4392;120.6311;127.5895;103.4515;106.5241;82.64969;132.4064;114.5;147.2354;93.58344;110.5344;143.5329;123.7271;124.0611;80.44553;107.8264;146.9504;101.8571;104.6647;96.81668;90.88107;102.8026;93.51173;125.5173;97.54263;87.3381;106.0398;82.03106;102.7453;94.3092;99.04385;104.943;102.1644;103.3213;126.686;128.0106;79.55086;104.3918;101.5336;120.5157;107.1772;90.56671;104.534;93.7422;90.13966;88.41897;100.508;99.98782;108.6225;103.4403;88.05849;114.3765;111.9648;109.4554;109.6433;127.3226;118.1172;97.85479;117.3103;101.6131;95.14029;137.4582;79.8904;122.7528;123.692;102.4791;127.6025;138.8358;107.1785;87.98077;100.8664;109.0119;104.838;125.75;134.1682;102.9156;116.4295;108.0008;110.6975;86.0484;98.6335;108.1427;70.86826;109.967;88.95128;121.1983;87.49802;98.43014;115.6292;112.9051;111.486;101.894;139.5444;104.4749;100.3032;104.6507;139.3902;128.487;125.3971;100.1978;112.6956;114.0615;121.3778;134.1284;135.0776;111.5648;124.8591;125.6481;99.86983;91.33347;106.2204;103.1337;145.5176;90.4987;125.0235;132.5173;94.68489;137.5986;87.89174;111.8456;96.82643;129.3924;125.8484;120.2941;130.9911;125.8017;120.4155;92.90474;113.982;130.7974;136.1883;99.0555;111.3807;79.08189;131.9708;101.6646;155.8518;92.15446;114.2287;134.8054;132.7673;123.2831;80.6663;107.4616;140.8345;94.82792;101.0824;96.20366;88.9514;114.6534;89.68471;124.7876;93.87772;92.01756;
96.50101;99.4807;123.025;90.32863;115.7088;91.99706;91.12573;107.5343;106.9641;129.2662;111.1796;89.61625;134.907;146.2839;121.9342;92.36027;110.5076;128.8483;144.7157;139.1782;108.6638;134.8835;101.1877;139.5559;130.9368;123.6466;125.694;106.04;116.0496;102.1072;91.30476;92.05878;109.5051;121.5551;84.56654;127.2853;125.4471;92.71161;106.2388;89.46906;86.13548;109.7876;130.2026;120.9285;134.4005;129.8634;110.6361;121.9496;95.99501;95.68073;128.0245;129.3188;109.418;99.86413;85.76633;114.7785;90.68424;134.3951;98.66925;112.0032;127.7339;151.5177;105.7629;91.6952;119.7653;141.5707;105.1454;123.1962;98.37587;91.7541;87.56911;110.9747;134.8529;106.4397;89.35137;83.33135;96.99584;113.7559;109.1436;95.82197;116.2136;94.92457;127.4196;150.7066;127.3762;103.7313;86.47215;114.5625;107.7723;102.6232;104.3612;90.54427;74.96024;98.69975;91.10608;87.81389;106.1892;84.33009;94.88572;87.30807;105.8699;108.4031;94.57781;103.3204;106.7724;131.5707;107.3455;118.967;109.7005;100.8646;125.084;87.81173;130.1662;110.3877;116.6364;124.2919;149.5879;100.1548;95.52879;84.69189;88.51579;95.16872;135.5517;136.6249;92.31872;135.5544;98.22889;126.4454;96.84227;99.39168;127.8369;88.30868;113.3718;91.55688;93.32792;105.3171;110.5456;129.2894;113.7367;91.73357;129.7823;147.3873;127.965;94.50108;110.6865;128.6527;149.7142;136.5716;106.2189;134.2458;102.4447;136.4707;135.7457;123.4706;127.2272;108.1697;112.5136;103.1751;95.9134;94.0455;110.8865;121.5225;87.80396;124.6075;124.0917;92.3298;107.5242;87.00417;90.04174;109.6239;131.7602;123.2044;133.2101;130.0327;114.2674;124.9896;95.03732;95.88602;129.6368;122.6283;110.3854;102.6643;92.83977;104.4222;91.90969;132.8207;89.43009;122.94;136.0493;153.1195;117.5996;94.05931;124.6021;137.2044;108.5907;119.5533;103.1184;99.5912;96.57394;113.1749;137.3816;101.9338;92.55221;83.50147;88.98019;119.4152;113.2624;99.05704;115.1592;95.11945;129.0231;143.4769;128.4194;106.5746;93.56978;104.2161;107.3548;102.3247;92.49137;98.16472;82.29683;99.82333;98.67896;87.5459;111.9796;81.81454;93.69025;86.29273;109.6941;118.2776;104.0199;107.4723;107.2953;127.7367;108.2985;116.746;102.2319;106.0173;125.6305;88.33975;130.4079;111.5816;113.2836;120.1484;149.4605;104.2412;103.0931;77.54905;88.17275;94.86342;121.9973;145.976;100.4794;136.8492;106.1083;126.1475;
86.38878;99.54451;110.9085;100.7746;93.95715;106.478;98.07539;88.9514;95.41383;98.13207;103.3665;110.0679;105.0835;87.85789;89.43272;116.7854;133.4529;102.2766;125.9504;111.7409;114.8218;98.58721;117.0224;98.31216;112.2726;118.8727;89.43806;132.3288;104.2773;107.1225;122.6426;149.1838;88.67271;97.62823;98.27326;102.4771;86.69566;126.6797;136.5408;101.7019;128.6449;93.52148;116.0013;98.94714;100.258;98.27682;79.1261;111.5059;116.2876;96.02196;99.23029;88.65613;119.0276;122.3258;89.2935;123.8063;128.7021;103.9702;98.92835;104.8941;122.4284;123.2304;113.7513;91.56204;118.1854;112.3899;135.4478;124.1217;112.9379;126.2445;116.6214;127.3714;101.0201;105.7841;111.0673;111.8072;148.589;78.08942;130.3116;136.2717;119.9773;118.0229;110.5946;96.21985;97.57825;119.5234;122.2318;124.4198;156.9639;111.1179;133.9602;95.15451;94.66601;122.6755;123.3158;108.4209;92.74958;88.2879;131.9386;109.3546;128.3774;92.56131;112.3476;134.1505;155.6501;108.0558;89.89324;120.4996;144.2056;85.08271;112.866;92.62612;119.2881;89.02276;106.3693;112.9345;97.27348;99.87628;83.49483;92.38763;103.6819;92.74983;106.4144;105.4087;92.95848;109.6578;123.7723;110.5475;89.95985;96.49277;115.5591;100.0856;94.34814;102.8858;95.49709;85.59494;102.604;98.1576;108.6975;106.8233;108.4201;86.35974;91.59273;111.8888;138.7243;99.61092;131.7234;111.4796;116.034;95.5432;114.0176;95.67235;119.6649;120.4196;94.24054;129.5892;106.7509;106.6831;124.4415;144.5091;92.17182;96.19537;102.7275;102.9468;86.97268;124.5513;133.2964;99.01913;136.5524;94.89651;121.4647;96.58249;102.5197;98.91277;80.59798;107.3944;115.7399;89.8053;99.81869;93.53603;127.3129;117.7122;86.3344;119.1124;130.5493;104.645;107.6702;104.3094;120.5282;130.0838;125.9656;91.4809;125.3003;107.8287;142.9809;124.666;118.6917;124.4191;118.5022;124.4085;110.6442;112.3064;106.7484;113.4145;153.6577;75.49854;128.7413;134.48;119.4104;111.1142;111.215;101.2963;105.0832;114.9582;118.7647;119.7092;151.5502;111.3324;140.2993;96.95483;90.83639;128.7585;134.0777;112.4565;96.30579;86.4795;136.2976;109.3968;134.3204;91.77537;117.1614;134.2761;159.8723;114.1574;83.09112;124.8458;146.4553;81.78407;109.6709;94.94643;115.696;85.25813;104.2968;117.9418;104.6071;96.50293;83.12656;90.93713;99.2717;92.94563;112.0901;107.3044;89.14576;115.4129;134.5733;114.6235;
127.9864;108.2298;93.90594;105.2882;87.50121;124.0748;89.9781;87.18481;93.02854;100.9145;110.3463;103.3204;113.238;87.02956;125.2367;82.20344;110.6769;92.57598;101.8819;133.8186;115.1995;119.0168;102.8638;89.67816;103.6812;120.0054;104.0046;132.2098;94.09489;88.24954;133.9079;90.87608;119.5482;120.6932;100.3292;120.9951;123.7866;129.2927;101.3098;143.8903;124.6344;96.88088;140.0067;93.62012;126.1368;115.0366;98.68124;145.0166;102.4157;97.08677;94.74136;127.6528;100.4365;99.90296;136.4921;124.5975;127.6193;89.12035;128.0604;94.76553;107.8171;87.35603;101.997;131.8674;147.4755;104.3166;117.5273;112.6151;114.1759;142.6816;91.27161;89.46149;103.2018;98.0437;130.446;104.098;124.0861;136.8556;128.0211;76.44443;96.04636;117.5251;133.8015;122.4606;119.1266;140.4901;104.0869;96.55232;111.9462;103.2058;131.919;134.1301;97.58878;90.66546;120.5853;120.2011;98.85076;98.01513;98.22601;103.304;81.13017;119.8431;91.8088;119.4413;108.1941;79.32111;101.1011;88.45037;113.3427;106.0395;108.5945;140.7824;94.08661;93.33228;86.82352;109.7569;100.5933;90.29456;111.6006;106.7307;125.1248;106.3893;123.6265;81.36282;94.46463;106.9205;102.9341;97.03886;125.7504;109.4679;92.40902;108.1556;90.88533;126.2257;87.62122;84.56696;94.31961;98.52338;107.1325;102.2041;119.6414;87.6541;128.4274;81.95246;108.4139;93.64089;100.1453;136.9528;118.8966;121.0434;99.82675;86.74435;104.179;116.0945;100.377;130.9623;99.5116;88.05671;137.0892;90.63399;116.7308;120.9352;98.51561;123.9903;127.1218;130.3957;98.29356;140.17;125.1775;93.37217;135.7898;92.57281;128.9913;113.1244;100.2936;143.7188;90.79752;99.60923;88.80338;130.6386;105.9814;95.01926;121.0534;124.5331;122.6561;82.51301;130.4955;94.09134;109.7668;92.77581;100.2131;137.7648;136.777;103.625;115.797;121.6646;110.6753;149.3385;87.44074;83.6229;101.48;98.67906;121.9868;102.6064;120.4099;126.7975;125.3234;77.48076;84.80602;120.2939;126.7165;125.3855;125.1584;134.6821;90.65488;96.49567;108.241;100.9352;138.6701;132.9738;96.95393;97.94498;116.8948;127.0445;93.95707;98.3998;98.51462;107.7019;78.21326;126.6427;91.87349;116.9283;107.3914;84.32123;97.23682;86.80357;107.237;98.98855;104.4535;143.5029;86.66222;96.85882;82.85526;108.2358;106.192;86.22264;101.8142;110.8022;121.2474;104.0867;130.1675;80.48168;93.87666;114.8167;99.52911;103.2187;
95.31163;126.62;92.5379;113.9476;104.8065;115.8575;159.5615;126.7866;119.5127;95.45596;95.74891;99.9418;132.2673;88.81379;122.5981;93.73006;106.3465;131.7705;105.1693;130.9252;112.6651;111.1101;127.5732;127.721;132.3025;95.82281;120.5471;115.2138;102.0469;107.2546;109.6739;106.7371;100.0424;80.9776;122.6212;96.73716;98.2996;92.57181;126.4799;109.8773;113.0406;125.8206;116.3174;110.3508;90.27823;107.886;106.9748;109.9459;86.05282;94.18349;140.7018;134.5405;98.48884;115.2034;106.0079;116.8364;130.0511;105.9947;84.61252;112.7657;101.4106;123.5153;102.9872;128.0579;142.6734;127.1281;85.37673;92.7934;124.7693;148.2866;147.2605;124.9498;132.7516;96.26585;104.0857;103.1057;114.4588;118.1769;125.8;92.30416;103.9853;112.8587;138.6147;108.6159;89.00138;111.4599;102.5565;81.83389;117.6932;83.17358;101.5652;95.61306;85.52114;81.14571;98.69726;94.32452;86.72905;87.71316;121.7011;93.97034;96.55406;81.20357;96.82616;106.8596;99.83538;100.2013;101.9922;107.676;110.4881;115.2281;92.12334;94.35114;99.83826;96.63073;106.5426;120.2751;103.9061;87.3951;96.27596;92.10935;111.1285;101.3496;84.75199;104.3282;99.00198;109.614;102.629;123.865;88.14857;128.0238;90.80876;112.0776;104.0406;109.6298;150.5528;123.4515;114.1719;90.13038;93.88675;96.88209;126.4772;93.98868;118.651;94.86747;99.48485;133.6984;104.0542;129.4097;112.6201;105.4465;120.4739;125.5012;128.2865;90.26671;119.4042;112.7854;97.90239;112.4879;106.3369;108.8023;94.30678;82.10738;121.8489;96.22665;99.20574;87.02477;119.4142;107.8217;109.3334;119.4445;115.1975;107.9771;87.11628;114.1523;105.3933;112.8582;87.53139;96.09438;130.6494;146.279;94.49823;112.901;103.0012;120.0926;121.7384;96.318;81.83912;107.5557;86.95798;126.0659;104.9469;128.3399;146.2657;125.3568;89.19675;96.41901;122.369;149.1869;133.1677;122.4754;119.9359;96.31873;107.7202;107.506;113.1383;135.3844;130.1064;99.04904;105.61;114.9395;128.6385;119.1825;85.2099;109.1854;99.59952;84.55811;111.4231;78.96866;100.4094;90.73254;75.15595;77.85803;102.1465;91.89607;93.22108;84.34202;127.9958;95.80209;92.79459;86.32737;89.86992;105.799;90.25511;105.2577;107.5566;112.0739;112.7273;125.4459;97.33176;98.41586;105.3766;96.52019;99.36817;129.2728;98.10557;89.93736;98.00869;96.16766;105.0583;96.68429;83.71449;99.22698;87.8427;105.7686;106.1659;121.0795;
95.16993;91.40281;115.8767;105.6509;92.53931;119.3079;112.2859;115.7874;101.6845;112.7501;90.43409;97.97811;144.927;80.33952;105.6422;111.2627;127.8898;139.3876;139.9656;91.2121;81.37875;87.14503;92.55078;93.92937;125.2002;152.154;96.77586;123.9024;111.7646;122.6754;103.1407;106.718;125.0609;82.81321;117.8415;107.4228;108.6308;94.70475;88.8692;115.0866;118.535;108.5157;126.8512;122.5462;128.0734;91.62251;103.3535;152.4452;129.0029;137.3005;90.84129;137.7501;120.8279;115.5994;123.2999;111.4147;109.7817;116.9735;122.7512;95.33808;115.786;89.14773;100.7337;132.4915;82.00628;128.6246;135.4566;91.05259;109.9095;98.55358;98.25074;97.90017;120.9362;119.8573;112.5474;132.0317;138.0082;115.0271;76.26781;96.58623;140.8704;138.5589;103.4608;91.84798;73.85835;115.4024;97.58257;133.8677;92.79161;132.7983;134.7151;143.1535;126.0607;89.01545;129.3093;145.4238;105.6137;116.5625;103.6473;110.5676;102.1627;92.18288;112.8614;89.81418;94.72581;106.4441;98.35586;94.37946;113.1697;95.81728;110.1701;113.831;116.4293;151.3564;114.6797;109.8063;105.6342;95.29206;98.14427;90.4199;91.61525;102.8394;88.3388;90.20258;109.8348;85.06995;103.015;92.78396;92.61589;92.56809;118.0842;110.0215;92.34974;116.3306;112.5047;113.2452;100.5937;115.7482;95.04688;99.21539;144.8056;79.4281;109.894;109.3763;124.7287;140.7271;142.1797;95.2058;81.05008;84.51964;91.74429;91.17643;124.7954;155.4341;100.5015;125.1196;112.8815;121.7062;106.6895;104.7026;123.1952;83.99456;119.1923;111.5775;109.4459;92.11362;88.07668;112.0394;118.1385;111.2907;131.1088;123.7591;126.0193;91.66212;105.8257;151.6249;135.8285;143.1582;92.26276;135.3946;123.6549;110.7486;116.4144;113.8137;115.8626;114.2054;119.6926;92.53787;113.5843;90.25803;98.1469;123.4115;79.3158;128.9249;133.2125;92.57729;112.1202;104.7353;96.70635;102.5565;126.0212;127.6343;117.3913;135.9183;142.7288;121.0808;84.17031;86.98313;147.9987;144.4313;104.9729;89.92651;76.07186;110.5454;91.46379;136.4962;96.32485;127.3665;126.6982;140.8084;125.8131;90.06453;123.6691;136.6655;101.7748;115.9458;99.95408;110.2022;106.4777;99.87919;113.2031;95.8107;97.18208;111.4374;98.63776;98.59696;119.4712;101.2802;117.0072;104.0742;122.0868;156.4371;114.4416;105.6979;110.5182;92.53944;93.84364;94.09956;95.16287;98.04819;81.88944;88.36292;109.643;86.07865;98.00854;85.83498;
95.81136;101.6083;149.5026;130.7825;113.7313;128.9038;91.07529;117.73;108.639;97.37991;108.3255;90.00431;107.197;88.96962;82.09731;88.31281;85.12939;119.1735;108.8786;95.95064;108.2716;126.5651;104.3297;103.3812;104.4187;127.2864;125.8441;129.3573;100.276;117.3325;107.1379;117.4086;117.7287;127.1375;138.457;122.2262;122.0822;110.3695;87.37789;94.65904;101.544;136.0807;87.59508;145.2373;128.2957;111.1857;102.7347;94.04849;99.57944;101.5653;111.639;121.8207;123.3232;124.5064;121.6391;124.2726;86.91835;102.6219;125.6407;151.1507;109.5003;104.1093;77.5359;118.7027;100.7031;141.3852;112.6235;110.0445;150.2061;143.6463;101.2127;81.9064;130.2966;135.144;91.62156;120.5052;93.49801;85.39959;76.80221;87.95576;106.8475;99.26688;86.64906;89.80702;79.47666;92.26408;90.86493;103.2983;111.13;92.99339;109.2293;134.0007;124.5468;84.2195;88.65903;93.33141;84.94913;101.3676;116.4779;104.5474;83.97808;107.955;85.80341;84.94983;101.3638;95.62052;91.3682;100.0595;109.7102;124.4096;87.48783;108.7163;109.5122;116.1517;89.01183;115.2724;95.45386;92.76624;133.5643;84.41527;126.0085;116.8698;106.4138;142.7707;149.4373;99.8999;80.54359;88.00497;88.95474;96.32135;150.1305;130.8862;114.2312;125.6523;95.48504;112.763;112.5793;97.19868;106.2479;86.11482;111.6467;83.18376;80.67419;84.80729;79.30968;113.8996;110.1645;96.46109;109.5073;123.8219;108.8632;99.62094;107.9064;128.6295;123.4317;125.4812;103.7333;111.9285;104.8426;114.1118;109.9853;122.9939;139.1597;123.5912;122.4728;109.0488;91.53324;91.06474;104.9863;137.4722;85.58656;141.1314;130.6841;107.3835;100.1214;92.02543;96.21069;94.57974;110.9847;124.001;122.3798;124.5321;125.6539;125.6489;86.71303;106.841;123.871;150.0463;111.7025;97.09882;80.39533;112.4418;104.0064;141.0901;113.5999;112.6983;154.5189;144.2035;102.9168;80.79311;134.0529;125.8096;89.86645;111.64;91.96583;81.90339;77.66224;92.73184;103.3471;92.35751;86.07211;91.67603;78.71104;92.28152;94.33871;104.5488;104.8976;96.80251;109.4722;138.2807;124.5238;81.15698;94.19295;89.74373;92.61362;105.8788;116.4534;107.0355;88.08701;108.2695;83.64324;86.34684;98.83869;87.59626;91.35557;96.43095;105.8583;124.197;90.86019;116.2565;111.0367;113.6115;87.55646;117.2847;95.53222;92.62774;133.0703;88.10242;119.3452;121.1353;106.6709;147.189;149.3886;96.56178;85.83768;84.52336;
117.806;135.3274;133.4017;95.46761;94.28275;90.93455;86.08813;119.3428;113.4385;80.52896;101.9356;91.80125;135.9171;93.2427;85.44201;90.52387;107.2267;84.89908;122.2488;84.60051;123.7827;95.05219;84.1104;76.16013;89.60891;99.01719;102.0421;105.4288;138.7272;88.84093;104.5606;85.74285;92.4427;93.72539;93.26318;102.8177;105.0529;109.7318;130.104;106.8718;91.71218;96.0824;123.7016;85.38199;96.08408;112.1386;84.41275;98.51554;122.7919;101.4863;125.8296;91.95593;109.9632;99.99078;115.1804;86.25386;98.67203;127.0476;99.23289;137.6382;90.09148;123.3083;107.1501;93.10004;127.0989;134.9208;118.7264;93.17593;90.56992;86.99445;98.48188;88.80541;112.6794;84.55009;103.7664;106.1773;104.5618;109.4202;108.2351;89.70966;129.211;134.2529;131.2457;93.75656;143.7322;111.0884;98.7785;104.7473;96.66852;113.924;110.9902;98.52696;141.0469;96.13345;113.1301;95.14011;115.2335;99.54951;109.6046;124.1092;119.7325;108.1302;105.4633;103.8444;103.5997;115.9324;104.9298;87.08643;130.2752;134.0152;84.64582;125.8819;131.2433;127.5851;148.8085;94.33405;109.1251;107.641;112.5414;103.3926;98.03515;130.8137;151.6507;138.2345;82.98728;108.0225;135.8961;128.4388;117.9745;140.8894;140.4584;96.98318;95.95392;89.28057;86.2902;116.1559;114.0128;81.69399;104.2489;91.83587;139.6772;96.9783;88.43694;92.63997;107.2042;89.23758;128.8071;85.95078;125.4903;93.27245;83.83044;73.34679;89.31121;99.10528;103.8322;105.4791;141.9929;91.63193;107.7592;87.80695;92.00134;97.40724;98.9043;104.3185;106.1729;106.9054;129.753;103.5364;91.40871;96.17122;125.669;85.42921;97.9433;115.2056;88.11605;101.733;126.5062;107.7357;128.908;92.30213;109.8096;101.9658;103.766;87.7194;88.82349;125.5758;97.01164;135.0749;91.76283;137.3577;111.617;93.58841;128.0067;135.069;119.2426;101.6364;87.2068;85.66003;101.0318;81.36195;112.1372;83.56079;94.2018;112.7893;94.43375;104.4799;121.6383;96.07359;133.0201;141.4213;134.3788;94.10617;143.5562;113.1648;88.22142;106.3617;87.37033;113.6266;108.7585;96.20274;140.8826;105.5823;113.4284;92.49351;116.7764;97.05135;106.0694;132.0392;115.6391;109.509;107.4807;97.99831;103.5904;115.8819;95.4088;92.94366;116.9122;125.2873;92.65961;129.7146;135.8412;131.5347;147.4059;93.16328;108.7721;112.5936;100.6757;107.3129;88.7054;130.4982;149.0434;135.5034;82.89567;118.0285;136.226;125.3844;
85.44625;110.5283;102.5433;131.6675;118.8023;118.9587;86.0915;93.01723;105.43;104.8266;89.35013;120.9756;104.7536;89.27889;120.1422;92.60754;137.9104;85.45528;104.7445;103.7386;114.6767;91.51405;98.52838;116.1278;77.35189;132.9636;86.35559;113.9892;107.7748;104.356;121.0959;111.7998;103.1187;109.7145;90.03172;95.13296;107.4933;100.486;128.7566;86.53379;99.38072;107.1748;98.19812;116.2056;122.2362;89.48026;124.2474;122.3494;131.3855;90.87912;131.1996;132.8146;102.0965;103.1144;105.365;111.7581;93.03435;81.11102;138.3158;111.3511;111.6646;108.8709;117.7101;90.66411;95.37383;128.3506;110.6899;130.9547;96.49946;117.6135;96.8472;106.1201;86.76026;103.4522;113.186;137.2636;101.2941;112.199;123.4512;113.2391;157.9785;85.64556;103.1575;111.9311;111.776;108.1448;98.27933;118.7577;128.0835;133.2126;75.85595;102.7673;133.2912;131.6469;110.5736;113.6852;115.9055;110.7597;96.73233;101.2037;94.91284;136.0341;131.5432;85.34818;103.07;90.59612;122.9035;105.0195;101.0103;86.66215;99.38271;78.22782;114.4153;82.34734;114.6878;113.3089;86.88004;76.43594;99.98959;97.64275;88.99597;87.36758;133.4456;115.0551;109.462;100.5742;95.67316;91.68552;81.17808;111.3249;100.9764;130.0566;117.736;121.4494;86.0778;90.73598;108.4676;103.8606;83.64667;127.2797;105.9286;85.66341;116.0439;91.17761;133.2982;86.55489;103.889;102.7535;114.3857;94.11819;99.36835;114.6363;81.25162;131.6323;81.5247;121.009;109.9575;100.0322;117.3949;111.0704;100.0991;110.5364;89.60069;94.9761;108.202;102.7967;129.7193;85.24922;103.7971;105.9824;93.04438;123.2951;123.0417;86.81917;122.1059;124.7913;116.005;87.65319;120.3594;126.8201;105.0975;104.7652;110.3703;113.0792;100.9216;81.49413;142.2213;118.3262;109.5879;110.7958;109.1859;97.67107;100.5152;134.2497;117.0357;132.0043;99.51468;120.1474;94.99837;114.1938;85.24207;110.8571;107.4993;149.2388;101.3298;115.3535;111.0623;115.308;141.0669;82.50618;93.5719;106.4286;114.915;109.8253;103.1154;120.1141;134.1954;133.9191;81.26078;103.3295;130.1638;137.0447;104.262;119.0805;126.8114;114.3607;100.6364;102.8165;98.576;134.3588;126.7841;91.14404;98.76466;97.7001;120.04;109.2124;100.3175;92.1207;90.13168;77.98429;104.8838;77.71204;102.5301;108.4809;90.28915;74.5674;102.5201;97.36421;94.12146;87.92287;140.6073;115.6496;106.6499;105.2803;89.82743;96.53677;
90.16532;129.6041;115.5412;120.597;143.9218;88.99519;127.9881;139.183;128.4459;90.08824;128.1469;112.192;102.656;112.4731;90.69913;130.6783;90.2862;79.84466;122.2737;96.75838;110.0028;93.52213;120.1684;97.14955;107.8014;118.8778;117.2712;121.5236;98.25449;98.03072;97.91776;129.9628;83.71638;93.68444;117.6608;145.468;105.1609;130.9138;110.8227;113.8162;126.1401;88.34747;99.35902;101.3734;114.9572;113.9236;109.1654;133.7118;139.3628;131.7934;87.05209;102.3677;130.4615;130.9969;143.5135;144.0837;134.9793;91.50207;91.38528;106.1656;113.2611;138.0145;108.4059;111.5623;91.00137;110.9984;146.8447;102.4105;114.1373;90.67365;109.5093;88.44067;118.6259;82.88147;109.6905;95.05731;82.58655;81.69079;87.36338;114.23;85.15315;88.1283;124.068;94.41017;101.3299;87.04122;101.0844;95.50266;99.82969;100.5276;100.165;117.868;121.6442;94.88705;85.86502;110.9178;108.0499;95.76575;85.99647;122.7326;107.8449;106.8725;105.3835;87.02818;111.7689;89.34929;94.32925;90.33441;118.2184;90.82681;112.3321;125.223;93.33054;132.2946;96.01487;115.1285;104.1045;99.42531;157.3945;142.6718;119.2749;93.10509;82.84858;96.7749;130.0854;101.5413;108.6962;114.9856;93.48676;132.7643;116.2481;115.3885;138.7785;89.74878;132.5959;137.8917;129.27;90.99738;124.9912;109.0833;100.2565;109.1092;94.39745;130.3086;93.43871;82.25382;122.8048;92.01975;105.3325;94.20693;123.468;95.60437;109.3187;119.7261;113.1359;118.1071;97.03407;95.03181;101.1226;129.4174;87.82347;96.43282;117.4953;139.4479;101.7477;131.8993;113.9897;112.1454;127.7782;89.08094;95.55323;98.25719;116.0787;109.7382;111.1315;133.9402;149.9583;129.1904;92.52791;98.8088;125.1379;137.803;137.3003;141.1257;123.2396;95.97659;94.22643;106.9252;117.1984;145.0558;116.099;117.0324;97.90955;113.2387;139.1459;106.1824;106.9221;92.97621;113.1187;90.83078;111.2721;79.07021;105.6378;87.6898;73.26247;75.41578;92.43309;112.3737;93.47742;85.99299;130.5839;90.99364;96.64437;92.59563;95.87657;93.09738;90.74323;105.3507;105.9773;121.8841;124.5622;104.7301;90.92672;116.1556;113.4788;95.96705;79.30423;132.4086;101.9431;109.3781;107.2064;90.26543;105.7072;85.49437;93.23651;85.8651;105.9609;87.84958;116.0515;123.0833;100.0988;127.5037;100.848;116.5521;100.4699;105.3692;148.8785;140.8068;109.3619;97.73076;88.16199;100.4382;133.1457;111.6959;114.4048;120.3407;
81.68439;101.3157;132.3209;142.4233;120.5883;135.1546;122.8653;100.0609;114.1992;93.36856;101.3284;120.6051;116.315;107.1947;90.02137;92.35467;135.1398;104.8368;102.6957;91.35143;115.6354;86.23762;124.8301;89.80898;117.6556;105.3377;76.80398;84.10995;80.36109;111.1831;97.71715;92.59566;141.4563;112.0939;101.5473;83.07919;106.0267;92.7756;80.41341;100.7747;97.66508;123.2219;128.0237;113.8243;80.34053;95.77702;104.0412;103.3174;87.89124;107.7928;97.48227;93.61388;123.4574;109.7938;112.994;88.36544;87.38219;81.80224;93.11396;96.66106;89.49481;116.1014;83.2319;131.9212;88.46914;119.7473;112.1608;107.2989;130.5797;132.8359;106.778;98.94659;106.6213;85.91917;116.1868;90.79671;114.3516;106.0465;89.07677;106.084;106.4967;121.8648;127.7683;92.02537;138.8903;133.5102;134.2867;99.63202;141.3675;127.8974;94.69573;115.8402;85.90821;126.9543;103.6235;85.43824;144.6571;119.31;109.6524;92.21739;132.9236;91.80437;89.73271;124.0308;114.5637;130.2099;107.0842;113.7705;92.10684;114.3264;81.29427;102.1102;119.127;124.4932;95.89156;119.3984;137;137.8116;127.5835;92.47457;89.33957;92.12033;90.37245;113.2606;88.90074;122.0575;130.7866;130.1111;82.91751;102.8056;137.0041;143.6581;125.0489;134.7448;122.8065;102.7492;117.4362;96.85999;103.4846;117.0766;115.4865;103.8384;88.71579;89.96027;137.5627;106.7956;107.5673;92.76437;120.8001;86.30124;124.5755;93.23579;120.5432;110.4988;78.53572;81.81915;78.94129;108.993;95.71777;90.88494;142.9302;115.4021;105.7298;85.08127;110.1009;93.99248;80.21134;104.4053;100.3;128.8018;130.2596;111.1594;78.77718;94.77956;102.0067;101.4369;91.54675;114.8557;103.6798;100.2599;131.6934;100.5191;118.3621;89.9462;90.66425;85.55869;97.57642;87.33909;86.30081;112.8631;72.95422;119.2235;88.69775;110.2619;112.9018;102.5338;144.5274;145.4722;110.7133;95.16906;107.5172;94.74203;116.3246;91.84353;112.1306;103.6089;92.45663;107.8071;110.5066;129.3619;134.8489;98.61124;147.6061;123.2563;140.1324;101.3055;143.4157;128.0048;99.05348;108.2285;84.37598;124.6786;94.02647;76.89906;144.5316;107.6057;107.9961;85.78446;142.4419;99.99754;93.52833;115.9823;113.5909;136.2976;107.0819;117.6711;91.77564;112.8627;86.37532;105.7088;122.9753;129.6271;99.75466;124.454;141.1328;124.756;133.4993;90.70953;90.951;92.21139;94.64706;105.7369;87.32398;119.8262;119.9945;119.5222;
123.9721;123.1541;94.00974;117.1019;89.63616;96.17844;87.08452;124.3224;119.9333;132.5006;141.0283;118.9749;123.6713;83.67444;99.40333;124.5682;124.7116;84.83747;90.59099;91.57442;125.8533;104.5499;127.7226;111.2029;107.9216;127.2096;126.3761;117.7329;97.87177;118.244;135.2278;113.5279;110.3249;98.54441;106.6279;100.1586;87.89266;120.9261;94.21726;94.03716;97.29637;94.18372;108.815;106.3376;104.7785;110.9862;113.0732;120.0458;125.7778;114.1322;92.85895;107.9339;107.7631;96.68703;112.2388;115.229;94.61791;84.8168;110.0726;92.78338;100.4828;92.01455;93.7713;83.04219;85.53712;107.4672;107.1568;102.2163;109.7921;112.5134;107.3753;98.48348;115.7495;107.1833;108.898;128.2353;87.74561;118.4931;116.728;109.1499;125.6101;118.156;90.25227;95.94678;98.44685;98.63869;90.43121;149.7059;125.6583;94.3417;115.435;103.4028;132.8147;96.63159;92.99676;133.3289;83.32132;116.8625;108.4202;106.0296;87.86564;95.08389;116.9772;112.1313;103.88;124.5025;147.2924;117.0957;100.5792;112.0486;145.841;144.6229;120.7257;96.08645;128.5681;128.3479;134.5529;118.3107;137.6353;138.3968;111.0195;122.2855;113.8134;100.58;104.9502;99.22989;132.9524;81.82855;128.2679;127.816;96.87724;118.1215;94.70436;95.10052;89.49402;123.8984;120.5723;134.2331;146.0978;117.2451;125.046;88.48701;98.62991;130.8623;128.8192;88.63581;93.23533;92.3975;131.6553;103.3518;130.0484;110.4876;107.6486;127.5425;130.5979;116.027;98.66874;122.9815;134.2093;119.5651;113.7311;101.7417;109.4;101.0319;92.32911;118.6748;96.21392;93.38148;97.03485;94.47227;112.7325;104.7188;102.5644;113.8798;110.9628;125.3253;131.5184;124.898;102.9574;110.8001;110.9213;93.01533;110.9726;106.391;90.66321;80.35317;117.8102;94.35963;96.24158;93.48059;88.19582;80.48269;84.20997;115.6579;108.1985;102.8745;108.9576;113.139;117.8856;95.03088;118.3178;105.4565;103.0605;126.2612;86.53833;119.0985;102.979;118.7865;131.3467;129.1005;100.2025;98.6503;101.4662;94.92536;89.28642;139.6075;122.9246;90.57199;119.3347;105.2547;130.4197;95.44482;89.32288;124.6961;80.37214;123.2692;106.7718;104.3932;85.57434;99.25336;126.8697;110.0349;108.0532;123.743;136.1819;115.4227;101.5033;109.7665;132.7103;149.8189;124.3402;104.0353;137.346;128.9058;136.1495;118.1665;135.1487;130.4214;108.4902;117.9914;117.6886;102.4279;102.8608;98.03005;128.5553;75.11504;
107.9199;137.2012;94.2285;149.9499;134.5041;93.92673;114.254;106.8282;95.24915;105.1658;119.4537;131.2101;121.0776;120.5148;124.5442;130.6233;80.69411;101.3735;150.161;130.4983;101.5525;94.50817;101.2227;106.6928;100.3132;148.0996;114.7088;111.8682;137.2894;130.7419;110.7634;94.98888;111.5265;125.1037;105.7434;124.2898;92.44569;88.75957;88.31964;107.1514;114.3217;98.79026;85.93353;95.32458;95.12327;85.95429;113.21;90.42368;97.36309;99.63303;128.5762;129.1771;127.983;90.28202;94.87593;91.77866;87.8306;114.8014;108.5302;92.41597;93.48096;92.89857;87.60621;91.15121;102.8613;94.47569;103.2929;105.0762;113.9511;109.0334;97.12634;124.0027;106.4761;124.9059;94.9537;120.8986;95.98097;91.72813;131.9884;89.94453;109.5586;118.3952;135.4855;126.9969;134.5181;95.53445;107.7739;78.94797;96.08676;100.0744;151.5947;128.3798;100.2567;112.9216;91.32113;132.2092;90.10877;87.45453;119.8495;83.80061;99.17308;90.50378;93.52668;106.8024;91.18906;115.0517;103.092;98.37904;121.846;113.3893;119.5832;89.09847;99.06954;138.7109;141.7167;113.2374;100.6864;123.3203;110.6395;112.6988;113.9285;134.9837;128.4085;109.0042;130.5332;96.62849;87.7646;96.03918;107.7414;139.5922;92.13073;141.2785;126.0937;95.63177;112.6814;107.7662;94.62883;101.0115;116.3173;128.6138;116.0065;119.3072;115.9598;130.8018;81.18335;103.8672;148.3803;122.8946;94.95;96.63327;100.6036;108.6794;101.1022;142.8849;112.5557;110.321;132.9742;129.0059;103.065;95.94077;113.1051;127.3952;104.6504;117.7477;87.03932;90.42807;87.74367;109.1448;115.1665;94.54225;84.07359;93.89912;92.29231;85.42809;107.1536;92.08981;101.4354;102.8401;128.427;125.7997;117.8174;85.60427;95.77872;99.54247;90.30271;111.295;108.0738;92.07423;90.95539;94.37218;85.99483;87.64692;110.1706;98.66302;106.6053;108.9286;112.8215;115.9567;98.32572;133.368;117.1323;116.5409;92.60574;119.5268;93.2227;92.68632;120.8625;94.8886;113.8759;121.8784;135.3324;123.6428;124.0909;90.71177;108.736;86.15549;95.95533;100.2928;154.5986;126.9623;100.5271;115.1303;95.20905;126.009;93.5886;88.78252;125.5489;90.62106;103.0483;94.12772;93.6799;112.6321;98.34437;110.6788;103.556;96.25805;121.9436;115.0346;115.1232;92.339;99.72471;139.097;143.8621;113.8601;96.45544;114.8644;110.4975;118.3342;113.8062;135.2162;131.1969;107.6981;130.8641;98.65427;91.59572;90.76546;
123.7055;118.3307;110.311;129.0466;106.6716;116.5239;107.9013;81.28156;143.2545;120.2695;108.3041;108.231;106.292;113.5476;106.9481;109.1377;109.7998;122.6816;90.44192;105.5436;93.50805;109.4693;107.6977;93.16883;114.7611;135.9635;88.13615;121.116;118.8878;108.2335;124.1477;94.37405;92.2694;112.1213;108.4618;111.3808;84.83934;130.6751;144.5731;120.5601;78.91652;97.67439;142.0898;139.311;125.2394;116.6169;120.6005;87.61219;88.03855;114.4768;96.82893;141.7224;112.2982;105.0781;109.2509;105.9137;130.0606;115.4294;99.27474;98.95288;103.0362;88.97834;136.854;78.23723;101.9258;99.96095;94.16586;96.3699;99.77226;100.4764;102.0087;88.90059;140.5425;117.1698;105.948;104.7563;87.66235;112.3742;98.1909;89.63555;92.5049;123.843;114.219;106.5833;80.50781;89.15631;132.2505;91.39496;82.02406;120.3164;92.52964;100.1975;112.3196;85.94862;110.8141;95.21918;95.84692;106.4238;114.8469;96.38688;88.41928;126.0892;94.90737;122.2136;85.8918;116.3118;117.6541;106.4135;134.1496;117.6328;106.8365;91.10991;88.05746;110.1767;113.69;109.946;106.8866;108.4289;107.988;124.4785;102.1311;133.8889;125.957;98.9011;120.456;139.7132;146.931;87.96165;124.4279;118.7593;112.9863;130.2935;107.3435;115.4591;108.1408;82.16515;140.3366;120.1168;108.9247;110.2916;104.9829;112.5474;108.6665;111.0025;110.2945;123.0258;92.69546;106.5971;93.97478;108.3427;106.8524;93.64384;112.9175;135.6147;87.72038;123.123;118.7581;107.4052;125.2912;95.94775;93.82207;112.6218;110.2727;112.2867;86.34488;129.6178;143.5905;121.1027;77.38693;97.38084;141.5588;141.4654;121.9099;116.7469;120.5747;90.35545;89.9954;106.3422;97.34159;145.1327;120.8448;102.4692;102.2138;103.1411;132.7183;110.3266;97.26794;89.26254;100.6427;88.99155;133.1824;84.34099;110.2191;97.78691;94.74966;95.09151;102.9136;96.46939;104.6002;82.37743;138.9946;104.3565;105.7163;106.8578;91.35327;111.529;103.3497;97.80116;94.51015;115.3656;114.7709;109.5436;87.7679;86.74528;124.4915;88.82077;83.4728;115.9185;90.5543;90.6311;112.9949;85.82939;107.5332;99.01351;99.7983;104.1647;113.1231;96.25774;92.60554;121.5611;99.25374;112.6475;84.03693;104.2978;117.3677;108.751;142.2998;116.6087;112.2475;96.47537;86.22643;102.1689;111.9072;114.2007;116.6222;105.7427;102.8868;119.5144;103.7852;129.2266;123.6741;89.41832;121.1966;139.5396;143.1747;91.63014;
114.0342;117.6033;120.8895;115.012;123.3867;105.9582;95.11374;99.21276;97.14411;131.7936;76.1909;139.1711;125.3668;97.07197;109.1651;99.66271;90.94283;100.6792;140.3351;134.8524;126.1693;153.0326;111.8806;119.2053;103.8157;102.7758;134.4309;127.3302;94.14403;100.3747;79.22195;113.6132;98.43124;143.0211;100.2838;109.3033;140.24;123.8329;117.4157;96.96404;123.3938;151.9654;90.41507;119.647;88.67773;101.3834;95.07987;92.34856;127.5481;114.7507;104.1166;87.92268;93.27734;102.5867;86.10945;101.6959;103.8015;120.7516;122.9997;143.0523;112.3239;87.24158;92.30666;104.0762;86.34906;95.66461;96.25124;98.70285;87.21716;99.61586;89.90595;92.92009;92.83418;91.43502;81.50154;97.77068;107.0816;110.556;95.73288;115.3552;102.7443;116.543;115.1663;127.2911;101.1537;117.0567;120.5542;81.99041;131.4434;113.9033;120.6222;128.9068;135.1069;104.8326;86.75214;82.88215;97.00877;106.6796;137.9824;128.9985;105.4398;106.4127;104.811;121.9426;94.51068;105.1849;108.4406;90.74002;108.0271;106.7945;99.52532;89.19057;105.892;142.213;129.6718;90.19962;124.1619;132.9689;99.12304;93.768;95.24838;152.3919;141.7951;133.103;94.2103;121.1803;106.4277;123.6412;116.9537;119.0826;122.4937;112.7919;122.6108;101.5546;95.29439;92.72575;90.78334;124.7589;77.63061;141.1841;130.8418;97.52993;108.8099;95.0168;94.24557;102.4825;142.9174;132.9424;126.1877;148.2546;111.8914;113.0331;96.8802;97.92702;136.16;130.0658;98.07199;102.0383;78.3413;109.3838;101.0213;146.5944;101.8295;108.3229;139.277;120.8442;117.4295;91.40777;115.8244;146.0596;91.83643;122.302;91.22182;104.4921;93.76068;89.45152;137.1701;114.4576;103.8101;85.57293;95.98197;97.00147;89.97031;88.2408;97.20316;102.4935;125.36;147.6625;122.7012;89.51814;96.28059;106.9462;88.84082;89.5844;96.20432;101.1788;93.89978;96.06185;85.43262;83.92011;90.53697;82.18042;80.79526;89.51736;109.7203;113.6702;90.64146;117.1652;111.3879;116.2423;114.8431;124.4555;103.9595;111.08;125.1139;69.95391;129.1035;101.9803;120.9379;131.8145;143.2185;104.1606;91.87922;88.25565;94.73893;98.26609;135.725;134.2204;115.0206;104.0391;100.3241;116.6622;96.58201;101.0007;105.7477;81.6385;107.8521;106.6621;95.65371;93.68937;109.3882;139.5263;127.2119;89.77045;129.6586;128.0372;103.6106;85.18073;93.23954;138.549;142.1575;136.059;100.9841;120.4576;112.1164;130.1871;
107.4631;101.4086;84.37556;126.8107;94.76321;119.0371;99.27563;102.692;94.01157;79.35575;100.9453;94.05975;120.4526;114.1614;119.847;79.64693;108.619;116.9603;99.88863;101.2086;123.1107;106.9638;92.89099;106.6191;113.8727;134.9468;94.55697;85.21528;86.16091;111.252;116.1463;108.7718;115.28;92.78298;112.3145;100.3418;135.9946;112.7345;116.8675;117.0304;141.8605;120.9346;100.0396;88.49049;88.53113;105.3113;93.63657;110.1493;97.03993;110.0386;107.4019;101.3008;114.5209;124.1711;90.86842;109.2403;127.083;129.3569;105.0304;134.6039;120.2026;105.4473;119.5031;91.30147;123.5882;111.6704;77.90168;128.3134;99.73392;121.9315;107.6624;124.0155;97.05843;88.8399;120.5044;106.5651;122.2957;90.25337;119.4017;93.20464;129.0855;98.89748;103.6115;132.788;143.936;100.8468;114.0623;113.0054;142.0646;155.081;97.87161;87.78602;97.74934;111.5861;136.5388;101.8066;121.5081;144.0385;120.1472;96.1562;116.0723;137.5383;152.0175;108.589;145.648;140.5478;103.9464;95.82372;94.20409;94.20245;120.7657;105.591;93.82017;107.4918;92.54153;131.9828;95.15646;98.61701;89.52003;90.37283;81.55635;124.7015;95.72666;117.2473;100.8984;91.62313;84.12455;78.77519;108.2131;102.7407;90.17609;129.0272;95.77218;120.1647;98.73746;104.8139;96.71327;83.22839;105.152;96.48327;122.8357;117.5749;118.0815;74.53014;109.1881;118.3;106.0091;103.1058;124.0554;107.9375;91.86832;108.4506;115.9236;138.5607;98.11996;87.53482;87.75932;113.6687;114.2933;102.7825;115.3954;93.12224;118.6918;102.2434;136.4732;112.7957;115.7174;118.951;144.1457;124.3593;103.7011;90.85588;89.32822;107.5992;92.82229;105.1443;96.32956;105.3794;116.3349;95.68765;120.3956;123.9496;89.40296;117.9871;129.3855;135.4197;105.1974;137.6072;118.5799;104.0919;110.6277;87.05791;123.459;114.7098;85.56001;130.0065;100.6277;113.0854;100.2512;133.1167;97.70403;98.42923;115.6507;113.6791;123.6607;92.13368;120.9433;92.49769;128.2656;94.4787;112.3789;126.3499;150.5128;100.6426;112.4101;121.8989;142.4036;159.2159;96.30537;87.75526;95.45551;107.8524;127.9883;102.1175;121.448;148.4209;125.0373;95.67503;117.5494;128.1151;143.3783;114.1388;144.3576;150.1228;97.68954;99.96688;94.5983;93.9498;123.2434;109.8385;93.20372;103.6738;96.81133;123.3503;101.008;98.40073;88.22995;95.614;81.84743;128.4155;94.18022;117.2346;98.60524;88.24562;77.44498;79.06747;
114.8467;132.5143;98.80458;113.0556;91.61218;105.8136;90.70806;106.2691;119.2597;143.6622;92.46356;122.8417;117.8324;127.1133;153.2619;104.8308;91.81818;109.9962;95.65988;106.4717;103.7431;113.6827;130.2252;124.1559;87.93753;104.5545;118.3551;125.9945;122.2934;127.6779;148.9601;97.27145;106.7658;102.6515;105.9154;144.3493;117.8506;107.3669;96.90582;106.8468;123.2859;116.0727;103.1272;90.32958;107.3945;94.88605;135.3946;76.72139;120.8261;90.04301;74.26353;78.25623;84.876;107.0001;95.43671;99.72418;127.8986;94.55189;89.19064;99.63916;89.70639;87.97079;97.63304;95.67661;104.1438;128.7282;119.6038;109.8366;78.037;88.67982;107.6566;102.6344;90.71362;125.6875;94.06961;97.4395;110.7622;99.26173;133.5165;99.24168;93.27462;102.1499;94.87647;88.69016;105.1594;106.8799;81.56177;118.3347;96.90256;120.5335;92.96684;95.56387;132.4475;125.8999;126.9038;97.14116;102.8999;95.88166;121.8385;110.9005;121.6236;108.2812;96.14579;120.7472;94.37099;137.9552;125.2174;92.1706;132.2082;149.7495;148.2541;87.69634;143.8382;110.5461;90.73668;109.398;92.35812;125.0616;102.2597;91.96999;129.6557;100.0085;91.99869;106.0194;112.5169;87.94419;107.1862;116.7647;116.8652;134.3679;97.19695;112.3893;94.8701;104.5553;88.55388;100.2272;119.9291;143.8519;87.30345;122.4597;118.2199;127.3365;151.1732;103.1283;94.31768;112.1397;94.7736;106.2771;107.9432;112.8362;128.6141;118.6958;89.87463;104.4997;113.4213;126.5261;123.7395;127.4367;147.3645;96.41639;110.4719;104.311;105.3753;145.0949;123.382;106.1204;95.51908;101.7885;125.5803;116.0176;98.52761;90.78208;107.3316;96.08748;135.568;78.49981;136.4062;100.7804;76.70229;79.42459;94.35844;115.1534;90.79324;93.83622;133.3782;98.90881;88.39796;104.7671;92.80798;93.45682;90.13022;99.13991;111.7992;126.3825;116.413;112.1601;86.07738;82.26286;108.59;100.3952;91.25537;129.1887;90.43015;106.0129;104.9711;98.23824;127.3662;97.81776;107.0209;113.5567;97.63046;89.92899;115.6859;115.0186;77.27351;111.9076;101.3288;124.4209;94.19539;100.6352;136.2544;131.0195;118.1502;98.59203;108.5792;91.35437;116.5072;113.1296;127.4291;100.9102;96.98929;120.5507;94.60834;140.5108;123.3629;100.5617;125.9436;146.9757;141.6028;84.47922;158.494;119.5338;91.5723;110.6691;98.55099;133.5507;97.40748;88.22359;134.7906;103.5337;93.23987;111.3571;116.049;92.21381;99.17361;118.3546;
103.1713;95.99314;95.4666;93.7428;118.6251;115.5885;117.29;108.5385;109.2987;112.4428;93.15302;107.0006;140.5255;101.4936;127.8154;126.0359;131.1629;84.38342;124.5599;107.4444;112.7423;110.1911;103.8289;134.8971;87.83141;83.35443;123.1001;112.3222;94.85419;114.1304;129.585;113.455;91.90502;109.2186;118.0152;117.4517;111.9253;112.6421;90.78572;120.304;95.04922;86.36543;112.9222;119.0294;103.6009;125.3503;116.6071;114.2174;124.1372;96.24288;80.13139;102.5416;93.41006;113.6523;102.6707;132.4526;121.6166;123.4608;75.95558;86.87315;116.1103;140.4485;137.8097;129.9557;120.8044;98.00134;101.4491;99.9511;98.04959;148.8853;120.5131;107.1648;111.5394;95.53298;121.7915;87.7024;111.9203;100.9329;105.4442;79.73321;122.2063;78.09283;105.8781;91.6697;95.09303;78.83761;100.8634;120.4518;87.47329;92.87099;126.8771;114.448;90.15542;109.6826;113.1516;116.8567;85.56156;89.72225;111.789;115.8155;139.4706;113.0821;80.54726;101.9678;120.4235;88.64482;84.08068;106.9233;109.9514;100.0368;116.1262;93.61246;109.4251;95.43641;83.09728;93.3578;97.65005;93.20647;102.7586;125.1971;78.61247;123.1431;87.76431;106.0463;95.52998;107.0416;150.9939;134.0234;103.5242;95.90569;99.71095;91.68481;116.2587;115.095;119.7866;106.3109;112.9188;112.4645;95.4948;109.3131;135.2941;102.413;133.9882;128.5347;131.3578;84.22511;129.2003;105.1557;110.2517;109.6147;105.1022;131.8642;91.77782;83.20992;124.6174;114.5137;91.66009;115.2593;135.0646;115.6593;93.17088;109.1878;121.8342;114.8799;110.6452;112.2212;91.97428;117.443;99.15044;86.22026;114.373;121.2874;102.5561;125.5167;120.3343;117.16;129.0601;104.9016;87.28101;108.5439;84.99277;112.0774;102.6726;125.2835;122.3861;122.7013;85.86461;92.69956;115.6584;132.5224;142.5459;132.9563;115.9908;101.362;107.6135;96.2985;93.22429;142.3418;129.2316;109.8002;110.0407;100.1449;130.709;94.71342;106.5517;102.2513;113.7349;78.08396;127.0907;85.90185;114.0689;97.3495;86.59814;77.5182;100.8607;113.6199;86.55132;93.24004;136.7272;118.6613;90.74005;102.5191;113.7602;116.7245;82.57681;93.84579;113.3445;114.2383;132.5022;108.702;87.78772;106.5588;117.0608;94.10271;89.19873;112.273;105.7158;101.1732;121.0296;89.24168;115.3261;105.0038;86.10368;101.3044;88.07292;92.9917;102.8672;120.3736;77.77167;123.5477;96.00845;110.1256;96.16858;99.94818;151.7229;133.9063;
139.7005;123.5946;131.7065;122.3951;89.473;91.90139;90.69967;109.3177;106.3564;111.3412;119.5191;149.9433;134.0543;88.98369;109.5766;135.2032;141.3236;127.1238;125.258;155.9333;113.3725;91.15895;96.5747;98.62884;135.985;127.9708;110.9005;94.58878;108.6505;124.1713;99.32329;118.4972;103.0557;107.0938;78.35998;131.3534;95.5834;112.0967;88.69174;81.70808;74.01039;89.28936;100.7337;91.24667;106.4247;118.8625;100.8964;96.93966;91.93726;100.3904;97.08744;90.22067;95.79718;99.51204;122.5533;131.265;112.7553;81.36528;93.7527;114.5128;110.5126;82.8516;101.5651;99.81612;113.9785;116.1553;109.577;105.4889;89.03179;88.07064;82.28844;109.4483;89.98026;108.7181;116.8001;99.22749;133.6913;94.91875;130.1531;111.0966;110.3965;134.249;126.4364;134.3139;115.2224;83.048;89.55413;112.3333;108.6247;127.5973;117.3946;89.74909;130.7752;92.81988;120.2173;140.2715;108.3491;129.1925;128.813;144.3099;107.0533;129.9561;104.7734;95.46603;113.814;98.16059;122.4794;95.37585;101.5364;119.8523;102.6927;97.98988;102.1343;121.9597;100.671;100.7939;116.0229;110.308;122.086;101.6107;120.6851;96.62382;113.0188;93.37536;112.4494;114.6113;118.4684;89.09505;144.2319;120.1914;136.7701;121.6356;89.85455;88.5663;88.22086;105.5933;113.9404;111.3684;125.2464;146.1523;137.8195;87.47593;111.9662;129.9306;146.7468;124.1499;131.0153;155.6246;114.577;88.23276;93.84684;95.98474;144.1087;129.5756;116.2411;92.27475;111.1751;123.6982;100.9428;114.335;106.8253;105.5929;82.34271;131.8851;95.87426;110.0951;86.0807;79.30526;80.03666;90.63303;105.8291;88.97646;108.7546;119.5618;102.5576;93.1087;92.89285;88.66319;90.12299;89.09058;88.91748;98.47642;120.1552;131.3282;124.7679;84.70664;93.33136;115.1656;116.3666;88.85747;101.0282;94.77121;108.5237;123.4879;110.0329;111.4375;85.64392;88.72341;87.26524;104.6593;95.72772;107.6793;118.8746;99.21922;126.8351;96.07972;123.0998;105.8559;111.4332;120.6253;118.4696;132.929;107.6548;82.09769;87.50518;112.3869;113.9463;131.2487;113.4997;92.63077;134.5116;98.50995;117.8117;138.8657;100.2187;139.7569;126.3439;150.7037;103.1715;131.6788;113.2977;93.63831;113.7813;96.72332;121.0827;97.73534;93.37895;120.4367;94.82565;96.90778;100.3118;111.5349;91.06989;99.14808;108.2661;110.0624;122.7248;104.452;126.2693;99.80445;109.2155;96.31547;115.8953;120.9246;116.0986;87.97662;
115.587;88.24922;114.4831;125.1314;124.9184;95.72952;90.29366;77.11934;117.1597;95.56532;132.2948;93.95327;115.0579;134.0544;127.1727;129.0371;86.32733;127.6329;156.3654;93.57291;103.7132;116.605;95.74705;90.09284;89.06613;122.7595;102.6849;85.08022;84.48935;90.76357;102.1882;99.88467;96.44772;113.0617;104.2267;116.232;136.7392;132.8955;103.4922;97.13544;96.25154;93.14232;110.693;105.1933;95.92236;98.87727;104.9703;102.1917;82.4767;119.3071;98.16462;85.65951;89.50267;120.4387;130.69;106.3033;119.2355;109.37;112.5368;88.33503;125.1862;97.81918;89.40603;125.8337;79.75861;123.8574;132.0063;107.4773;126.4218;132.7148;94.44138;86.4462;88.63066;92.95699;93.9652;126.9831;140.1898;102.438;112.4899;116.5133;121.8484;105.0528;112.9636;107.7427;78.72755;135.7802;96.91444;96.82902;89.40466;96.41686;121.3247;104.0725;96.20583;121.0485;138.4965;112.9343;89.88248;112.5035;135.7328;136.8322;130.2107;111.2946;134.4767;108.6716;116.7005;113.1289;126.7677;124.5055;115.8107;138.1254;109.0119;107.3024;82.87887;119.7212;135.7488;80.78735;127.1364;139.0266;109.8584;118.3953;100.9539;88.81776;88.83701;112.1614;135.0003;120.6582;118.724;115.159;113.4625;89.36758;112.8297;128.2556;128.9556;97.61995;87.93261;74.65842;118.608;93.23885;128.7735;92.88887;121.5118;134.8293;130.3878;128.7226;84.33012;128.8828;154.2123;96.19677;107.2227;118.611;92.81775;87.1522;89.52763;118.8035;99.08064;84.08003;89.62611;90.56801;104.9696;99.63086;93.91875;113.2958;102.378;119.168;140.2434;134.0137;100.4434;94.08313;96.72888;89.70259;106.9471;104.083;98.4137;97.10509;106.633;101.1027;80.2251;118.1377;94.76668;78.29406;93.35382;111.5345;130.2007;106.4435;127.4566;114.5633;114.7041;95.65959;123.8714;98.81212;94.09048;124.8323;77.74759;127.5825;119.3482;111.3029;126.684;134.8676;86.40839;79.54558;88.22796;89.6406;93.33495;127.4738;136.5266;100.9216;114.0597;113.3132;119.108;103.9511;109.3068;99.46217;82.3417;126.3104;96.48412;96.96292;97.43374;106.2742;127.6799;111.6859;92.61935;124.1346;142.3814;113.1273;91.52528;117.2068;125.0003;136.3377;130.5152;113.9235;129.5031;104.9401;117.2419;114.6408;130.1666;124.6651;109.8587;138.47;108.8652;105.359;84.26653;119.7208;133.9268;70.17596;131.7738;130.1453;113.7775;122.8962;109.5145;98.29117;94.28929;120.0831;130.7887;123.7426;122.3258;115.3766;
108.9762;116.6426;94.60138;95.36592;88.16478;107.4819;122.182;110.0724;106.2795;93.93132;84.01561;96.67159;122.3773;86.61735;114.6213;98.98665;132.3194;125.7493;126.94;101.5905;95.97555;120.9111;92.17847;98.6013;112.3901;102.9841;68.76794;88.0824;89.48405;104.704;95.44332;92.84685;95.13007;86.48006;119.9728;104.2785;103.1205;110.2681;115.2216;122.792;102.7643;114.7482;97.85194;94.86864;126.9752;73.86452;118.1529;118.4305;121.5761;119.6829;147.6888;103.6262;84.47077;95.35202;96.12558;98.89087;148.8434;146.9466;88.31165;104.7882;100.5802;126.5789;88.49451;100.4397;119.4627;83.13771;107.9591;90.78643;91.4628;104.0387;96.01335;132.7534;123.5449;96.78123;113.4602;124.1319;133.8631;81.13302;109.342;132.5849;145.8796;114.695;105.3459;132.2076;108.734;141.0985;112.9485;120.5395;130.7065;113.2125;101.6975;86.93864;91.20918;115.7378;94.72697;133.835;81.96394;126.2493;137.149;87.21571;118.9898;86.80479;93.65939;99.65545;121.6651;114.9728;121.373;122.0632;113.8237;114.559;83.04315;107.2457;131.5536;123.2761;108.2692;104.9933;78.58686;118.2563;97.4866;139.9647;110.8262;123.1534;120.6618;120.3098;109.4201;98.94123;109.6875;146.3661;101.3072;117.9902;92.85299;93.65587;87.46246;101.4868;114.3151;106.9664;101.2466;88.64906;82.27184;93.66275;116.8104;91.72876;110.8058;100.1554;124.6523;127.6329;125.7145;100.2561;95.93401;114.9998;86.15904;96.65208;108.6911;97.22107;67.90538;85.96072;85.6058;109.8754;92.33205;94.77366;89.53916;87.64744;119.209;103.7484;104.0485;104.2062;108.4823;120.6183;99.23103;108.6629;96.82493;92.66863;123.22;79.06477;116.4905;121.4524;113.9568;119.9416;134.0366;98.03566;82.54274;85.20334;91.71227;95.59679;138.9183;146.6312;97.95143;109.2412;94.23292;133.0856;92.25149;104.766;107.0913;87.44649;110.5853;99.33134;90.10522;103.0905;94.98748;140.3739;125.5914;93.72487;101.3375;127.3274;119.5113;86.06828;105.2329;145.059;137.5217;114.9382;93.86713;125.8774;106.5451;128.6806;108.1602;116.8944;123.1315;118.2611;114.0332;90.9108;88.27331;115.4584;100.128;135.5823;75.07886;129.1963;141.9418;93.79717;115.6006;90.50403;97.22947;107.5089;125.4543;116.9148;110.8191;125.1287;104.0172;113.943;80.85026;115.5116;127.9755;121.2469;98.16708;97.52784;75.23748;112.002;97.62991;137.4335;103.8799;128.396;134.0898;124.9744;106.2223;98.66479;115.5149;148.1928;
87.40131;126.2745;126.3242;104.5379;117.7284;107.407;114.2396;90.20403;117.8938;96.72725;116.7805;129.0959;102.4948;120.5919;119.6317;126.6744;139.8474;137.6197;96.0214;84.55451;106.8318;106.5605;88.14464;123.1735;125.1349;107.553;129.1702;113.3403;111.9871;102.1346;94.68065;122.7936;97.53167;118.5626;117.6367;87.37187;115.209;108.0038;122.9623;108.8382;92.04871;110.1139;136.7756;112.7474;104.2459;105.3225;120.9337;131.0028;115.2617;97.00852;117.9661;106.9761;122.1488;116.4223;127.1637;122.6414;114.9383;128.8582;98.06557;93.47533;107.4006;111.0783;136.9293;78.04996;122.1407;148.0198;112.6437;121.9864;101.2156;91.9884;100.3593;115.4345;121.0919;121.9739;152.8915;121.8602;147.3362;87.7014;105.0327;145.3146;134.2077;104.0522;95.67063;79.33134;143.8982;112.1082;127.3655;89.09879;103.4047;143.5489;151.0291;127.8411;81.87373;125.8881;137.716;104.4015;128.1427;103.3824;117.7453;85.41345;118.6527;132.4846;101.0654;84.63569;84.24062;83.53049;108.6394;101.8398;103.2112;108.4029;91.71532;114.3315;124.3872;119.4691;92.09713;94.51059;96.41995;89.92014;104.2713;97.74378;98.6024;90.50141;99.06667;86.93282;99.93282;108.6637;97.32488;85.1039;84.95445;127.6435;128.6286;108.8857;117.5146;104.5831;114.4603;87.96179;116.7191;99.50562;122.0145;130.5156;102.3927;119.4747;124.1536;124.661;136.5409;138.9507;97.85674;88.40131;106.4552;103.6552;87.35762;120.0181;124.7302;110.3135;133.469;114.5045;113.1051;101.2505;98.08211;120.631;95.88479;119.9753;118.9862;91.12275;116.0484;105.2355;122.0297;105.8754;91.69939;112.9091;141.1953;113.9108;102.3935;105.3649;123.6067;130.2425;120.3848;98.68861;126.1746;116.791;123.4852;118.3169;125.5063;127.1617;125.5122;126.0873;102.9972;91.04326;105.9232;112.4764;134.888;80.23998;123.4362;149.7438;116.6558;124.803;95.1916;82.86047;98.06734;120.3031;122.6884;124.1011;161.2519;119.2295;145.2493;90.22327;112.2961;138.3212;139.731;105.7819;103.072;87.81341;145.348;113.957;125.7019;92.95776;111.229;138.0408;151.8707;126.0261;82.24037;127.3045;132.8634;107.6082;128.5901;103.9693;119.9505;85.96576;114.386;123.3891;100.6482;90.30113;83.67004;83.26575;111.195;100.3716;103.3466;111.1324;96.13307;108.8436;128.8529;120.3969;97.67069;101.7798;99.73461;93.23919;104.7064;103.3741;106.2848;86.12209;99.76972;85.4568;100.3755;109.9608;93.27287;88.0212;
136.0386;145.6277;125.2877;123.6405;102.8112;98.56377;122.0565;129.8874;93.86833;90.58364;80.26115;126.4717;85.49914;137.7625;89.80034;112.5569;124.4176;128.7456;109.8583;83.39494;122.3573;126.8039;89.99454;119.0023;97.07019;92.25489;87.28429;92.89474;115.2025;108.387;101.9053;99.13203;83.23566;109.3824;102.4399;97.91822;104.2251;96.92503;115.5206;138.096;120.8322;108.6839;102.2951;112.3967;102.5611;109.2849;89.3228;95.46098;82.56229;96.11887;100.0473;92.45351;103.7381;93.12453;84.26617;102.5091;121.3937;124.5838;96.58365;116.7162;115.6864;128.7521;108.8404;113.056;109.9002;111.6765;133.4823;85.56907;137.3819;108.0125;106.7374;127.8541;125.5143;90.83156;86.49564;95.19814;80.74174;93.26244;122.3894;130.2025;90.20712;113.7812;99.1135;114.2918;98.14895;85.499;104.5789;86.1759;113.1348;93.41149;91.87651;87.37349;93.32095;125.9373;123.8485;101.8045;102.7741;136.4965;116.5625;95.04436;100.4413;128.2296;135.336;123.9548;102.6007;142.8535;113.6828;131.2352;129.8889;126.4046;105.616;110.3184;115.2205;93.4834;104.7324;95.75552;105.1412;133.4749;79.39026;140.6705;146.3831;107.5143;110.1992;91.70705;103.8606;104.369;131.8064;117.1283;127.844;139.2844;125.8626;123.7413;103.2865;95.72314;127.1532;124.6676;97.53349;90.40885;78.47427;121.8531;89.47789;130.5391;88.31166;108.5947;117.3604;123.2617;111.1499;83.87086;123.6708;124.0581;94.20856;114.9654;100.4339;93.39884;85.27711;89.61459;118.9062;103.1956;99.66705;96.10453;76.74559;105.5414;103.0445;99.14034;104.5861;95.6876;120.2913;133.7474;124.5846;109.9278;100.1237;108.7883;104.6977;105.5156;86.88713;93.4227;81.95165;90.51013;105.3864;100.4906;111.5583;96.47887;86.26062;98.31672;123.7466;125.5684;94.87878;115.6724;123.311;124.5701;104.78;110.3054;106.4643;104.2824;136.4573;82.65707;140.3422;103.6583;115.071;125.0009;127.2838;85.37379;81.59061;85.87715;79.27565;88.68871;116.135;127.8021;89.55959;107.6663;104.4272;123.204;105.7494;88.70967;106.7987;82.3315;109.284;94.05817;91.94761;90.77086;98.07607;125.8323;122.3411;101.2719;104.3693;133.6647;118.3181;91.8824;103.927;123.3013;139.8886;124.1845;98.37325;135.7397;109.9588;125.3122;125.6409;125.0999;102.4188;110.2887;119.7547;92.40186;109.2206;103.8295;114.0053;137.2892;77.72526;138.9619;141.9754;108.2078;110.2947;95.18808;108.8538;104.2732;130.2703;116.5584;
122.3588;113.6124;121.1819;131.2165;152.2378;95.55902;100.5779;96.47249;105.7569;102.3117;133.403;137.6828;88.60459;121.3898;105.5108;109.3974;101.2375;99.07233;128.1829;73.61752;125.5066;92.95236;85.03425;94.56249;98.25803;128.6052;124.3649;103.5297;113.9357;128.1095;98.34358;102.9768;94.35783;118.16;132.8126;125.556;107.632;133.8062;119.4629;114.7657;125.9774;113.6803;120.5055;118.4967;116.4516;96.79054;93.71387;98.21594;96.46785;127.9147;101.9587;136.2142;137.7012;112.8751;103.638;92.4885;112.5629;89.74027;129.3423;113.2699;132.3952;138.0173;109.6288;112.7416;87.66331;100.9233;141.9404;131.1947;115.5751;96.21887;94.46074;126.5903;111.027;145.7637;102.6891;116.3911;121.0213;137.9657;116.2406;77.69257;126.3866;142.6181;113.2277;103.354;111.0467;92.74895;77.00379;95.92023;122.8628;105.7012;101.9442;95.68565;86.93218;100.0436;88.94774;108.4888;95.65491;88.49977;124.2818;134.5963;132.8276;98.14622;103.9944;90.73733;98.69641;92.74149;101.1961;101.0183;82.86976;99.54466;91.77198;95.88776;93.38108;90.98277;115.8382;98.47717;119.9626;127.3435;91.40258;108.0906;128.0508;104.9893;102.5756;108.2934;111.01;108.4895;123.176;79.25449;122.5305;118.7133;127.9119;132.9923;154.3594;93.86333;100.7963;93.60933;106.3115;103.6244;136.0475;137.7253;91.6454;125.6469;108.8361;111.7224;101.2156;103.7547;134.8964;74.87745;127.226;91.19249;84.75277;91.42461;97.9463;128.7055;126.3402;103.5796;116.897;131.4566;101.4463;105.2377;93.91192;122.2897;139.5284;127.214;108.7657;130.6831;119.1266;111.3084;125.6216;113.7769;122.4474;118.5524;118.4975;99.64138;97.61372;101.4286;97.26373;128.0644;102.4421;146.4111;133.5526;111.3596;106.2584;84.89341;112.0262;88.72097;118.6415;120.0905;120.9613;132.4613;123.1201;119.8572;90.80125;107.1506;145.2029;131.6025;115.4124;98.15163;84.14742;128.3589;100.5594;144.1868;100.4251;114.0401;122.9622;152.8053;120.8867;78.14312;127.297;142.7708;113.7274;112.26;107.3241;91.3713;79.25669;88.18257;122.8324;105.6515;92.57911;101.8008;76.05783;92.51181;97.16507;112.0178;99.55793;91.78342;122.9975;133.1955;132.4158;102.8764;92.58221;94.41074;89.31609;92.47452;99.04889;98.68423;82.76947;109.1676;92.03387;93.25919;94.79796;88.6058;112.2057;105.5558;115.8861;128.8409;93.30011;102.1259;128.0625;104.9428;93.1833;114.8155;98.71193;100.643;132.8168;82.29399;
93.85676;94.68426;134.437;128.6159;135.9271;98.11169;126.0412;122.0345;124.1538;140.1943;130.7574;135.417;102.2355;121.786;110.4322;106.579;104.1157;96.57118;149.0397;96.19141;127.4024;128.9397;120.0245;108.325;92.31414;91.71893;98.90919;106.5706;108.5135;118.057;118.7999;123.6864;119.1353;79.95512;99.36797;127.666;134.2234;95.93709;99.79803;80.40728;123.9391;107.2103;129.8075;97.27415;100.3382;124.2555;129.4978;113.7939;90.25912;118.4055;129.942;110.7897;113.3747;91.2877;98.18279;83.0718;103.8722;123.1315;98.65722;101.5031;86.76897;88.6732;101.0135;107.3135;96.96124;96.73207;98.67515;112.2136;144.585;118.0607;90.91296;100.6504;102.8623;113.2529;104.9943;111.7672;85.37122;81.75121;105.0963;95.78562;98.17634;93.62179;103.445;105.5184;90.17667;108.057;132.5767;91.33152;114.8809;105.1885;109.2553;89.67146;105.5077;89.76157;84.63102;132.8496;81.14277;112.3979;111.4005;110.0221;136.3771;131.4671;99.98038;85.58965;96.69202;99.69631;85.27383;138.858;118.3726;88.95093;111.3226;102.3421;115.6867;96.39357;92.38253;125.4853;79.51801;107.3809;100.4101;90.05764;103.0357;97.94135;116.4295;128.7217;93.94456;113.4521;131.7681;120.9017;89.38083;95.4217;132.642;127.0238;134.7864;100.3748;126.0246;119.4195;127.4483;139.0767;123.8381;142.0821;103.3963;117.557;106.5046;105.0446;100.1134;97.73989;148.0189;95.24299;127.0957;132.0274;120.9514;106.8846;96.56995;90.61378;93.73419;113.3617;110.7036;113.4551;115.1344;122.9191;115.888;80.65697;98.91512;127.4843;135.0152;98.19521;100.6459;79.1692;128.8654;106.0177;123.8716;103.7694;101.0682;121.1161;127.3113;116.1492;96.81862;129.067;132.6785;114.8088;108.794;94.79028;91.49245;86.15424;110.9642;129.4289;88.87546;105.9113;82.67419;82.54671;94.9543;103.9582;83.2018;96.84795;91.45914;116.638;145.9874;130.8808;93.26807;105.3267;103.572;114.4463;102.4163;112.485;93.69328;83.56218;97.59413;101.5683;105.0125;103.1179;105.8881;109.4363;86.09652;111.8549;124.7833;94.5574;119.3942;111.2115;101.7542;88.13747;100.2345;86.19556;80.8043;126.6026;72.55428;110.6697;101.6804;115.1336;138.5368;140.4797;100.1347;88.46754;94.78375;100.9852;85.53658;132.7079;127.3172;93.54385;105.58;106.0277;128.4029;104.2234;92.75347;130.5321;76.27676;107.2376;91.42585;91.79598;107.3326;103.7376;108.7022;126.8821;88.991;109.4194;127.0044;114.9454;
99.28194;118.9177;132.5069;129.1359;95.27821;126.9823;106.6133;102.3856;113.4604;99.78291;122.6814;95.50144;71.16784;139.9018;110.7291;102.2811;89.15153;111.6218;111.2555;111.7702;131.0082;107.0057;102.1809;99.08164;112.9866;107.0937;114.4382;103.889;89.54839;140.1182;141.3043;110.881;130.9108;128.8573;132.0021;130.3838;96.76457;105.6481;110.8497;95.97787;101.3109;91.32637;133.1185;145.658;123.4017;85.19454;110.3309;124.3784;138.7619;132.7989;126.7927;152.2085;94.01463;111.9451;103.2942;100.7759;135.0667;113.9995;96.61734;93.64112;89.86184;130.7224;113.0112;100.9617;100.5038;98.44705;82.98969;120.0796;83.83325;108.2426;90.12345;87.47549;83.37328;94.30762;104.9431;87.91614;75.11949;140.5733;109.146;98.93232;83.2789;90.50004;111.9658;101.1099;109.6437;94.97835;103.3199;123.0041;111.9962;93.15248;94.2122;122.2996;90.97511;106.5426;128.0294;116.6844;110.6089;125.1235;107.8699;109.9231;94.89974;107.4692;106.6887;97.56944;85.59172;90.93161;121.2608;93.44825;126.8515;89.38007;131.2758;101.9917;110.8625;145.2002;126.3807;128.4978;93.80831;105.1962;96.40137;114.7445;104.3145;112.1414;94.80809;91.29069;108.7241;96.95357;135.5201;125.6299;102.7657;121.9457;133.2639;123.7441;91.10219;127.8822;110.8223;101.2785;114.235;100.7396;119.5942;92.63496;69.17233;136.1471;114.8116;101.9541;92.28435;114.467;111.7621;106.6727;125.9068;107.7381;105.2252;97.52111;114.5398;107.8989;110.3536;100.732;88.38347;136.5283;145.149;110.3774;136.0344;132.0771;131.8267;124.6878;93.49154;106.5335;114.017;94.44411;102.7795;92.07206;128.7075;141.9178;124.5636;81.58044;112.3074;124.5987;140.9355;141.3782;123.7065;140.5929;85.60099;118.2143;104.3948;92.42351;130.0742;105.8803;95.14634;94.04146;89.67138;126.7288;115.4429;101.1931;100.8978;98.17271;77.38139;115.243;77.95923;112.3767;95.7463;90.47138;89.92358;97.93955;107.1182;85.4609;74.97557;137.4147;115.8114;102.3603;84.96439;97.59609;109.0622;91.68543;100.5415;100.7498;104.4162;113.7576;108.5176;85.95008;95.45292;126.0274;89.7971;106.9728;128.4793;116.716;108.9765;122.6893;100.5337;110.3594;89.68274;111.5956;111.0502;101.6514;93.23454;94.60795;126.7054;93.74812;125.525;90.56786;136.3873;105.2908;110.7683;151.7842;122.2938;123.1913;86.43808;111.2794;95.8539;106.7586;100.996;104.2062;96.07349;94.53573;107.4748;97.34589;136.0077;125.6864;
111.5516;98.36653;111.7064;91.97254;106.4595;111.0982;130.945;93.75901;119.1231;114.9239;117.5542;133.5154;82.96143;97.57351;103.0442;104.5339;119.2607;92.1087;106.5092;141.5302;131.7265;86.00654;95.19056;123.6147;146.264;124.4103;123.336;131.7112;82.25043;90.99575;90.46933;106.6894;135.6941;129.3607;90.8643;110.8567;102.6715;133.3413;104.6148;108.2294;104.2063;93.1417;83.52931;145.0736;94.53989;108.5555;91.32678;81.70832;91.82121;101.4443;105.7718;94.32808;103.2862;133.8318;109.8453;118.3729;93.2906;109.181;86.37864;112.3063;99.07214;94.90063;110.7869;119.4824;112.4021;82.71349;94.95529;112.6658;109.5822;79.94376;114.8383;98.70152;99.07994;108.1471;94.86752;116.4446;85.12687;95.03795;93.32643;107.107;104.6592;92.96851;102.2847;92.34599;133.9639;92.82771;113.8897;101.3357;115.8059;139.9631;126.6078;112.0436;80.60516;84.24062;84.59902;120.0626;105.0179;129.9855;99.0909;114.933;124.7539;103.4376;123.9702;137.669;108.454;120.7077;132.4688;154.8708;100.3248;127.1954;106.1907;94.2632;127.9905;110.485;122.4384;102.137;96.67349;134.3958;112.2364;125.444;101.5612;136.6308;85.46114;117.2835;113.8961;104.2778;107.7159;93.24489;112.9919;99.83472;116.0127;92.9653;110.6531;110.7267;130.8843;96.36179;122.4287;118.7939;119.8758;129.8015;82.26202;94.37255;101.6471;101.9855;121.5375;93.94524;111.4693;143.2876;137.235;86.07008;94.96832;127.6295;149.4816;130.0139;125.5279;128.8406;80.81397;89.01555;88.54591;104.8525;137.1377;132.9127;94.82292;113.1676;106.6813;134.7993;104.3843;111.9907;106.9274;98.00102;85.33714;142.063;92.84335;107.4934;89.4213;80.03701;91.25028;113.1921;105.9535;92.00249;106.9369;133.073;109.9478;113.6567;98.74158;111.4471;91.9386;109.0317;105.3955;102.9375;115.5128;122.7111;111.4591;84.95103;102.4323;106.223;121.9938;84.26932;118.0153;96.69677;101.3075;111.0558;89.66274;104.2243;84.60167;90.28235;87.15965;108.1577;104.0397;104.2235;102.4626;90.04082;138.1058;92.19113;113.9934;96.97118;119.9327;137.7781;133.1561;111.4271;87.94857;92.78071;90.60979;125.3656;103.7525;130.3264;104.3771;106.1794;133.5665;105.9214;127.4863;131.2435;108.9219;119.3564;126.159;143.7438;101.5017;122.7981;101.6139;97.07713;126.9086;120.3716;120.1282;97.55891;96.45041;130.931;112.5379;116.7549;105.4085;134.4719;90.87199;116.6542;122.5737;113.7561;114.5031;97.92637;
104.1273;87.37606;92.33846;110.573;94.56917;91.49113;116.6427;89.99609;112.6668;128.0248;102.7463;123.2356;96.75565;85.4679;90.83801;109.3909;90.7618;94.51464;104.9792;97.97249;134.3446;97.02692;113.4427;88.31981;105.1745;130.2062;129.7976;105.8746;109.1579;87.96954;99.03701;120.2163;108.2368;129.1088;105.2236;104.3066;112.258;102.6856;137.2262;135.4091;106.2293;125.3248;128.7626;142.4943;114.256;148.6191;108.7512;106.7914;109.3561;110.7342;127.5949;100.3318;104.6766;123.2572;117.6977;103.3083;103.7865;122.6689;93.82171;88.54635;114.2369;112.2285;110.8114;105.4453;105.2907;101.5628;108.7121;86.7775;95.42589;124.6541;132.4098;86.57936;139.4548;136.4726;129.4662;135.8421;99.80124;85.97536;100.1469;108.109;109.2136;96.4875;111.9704;147.0197;137.3976;90.13112;95.91805;107.8618;136.9956;118.5507;135.5087;121.5123;109.0983;98.19965;105.5019;110.7783;144.6751;133.349;104.6434;103.5736;100.7868;131.4082;118.9804;108.0846;103.283;104.6096;83.84575;128.4977;103.8759;130.6458;90.91563;96.32935;81.03008;107.1774;113.5604;99.10506;117.3713;120.2905;118.4805;101.1208;97.9313;101.0739;98.63255;81.7246;95.42197;103.1778;106.1519;139.0708;108.0674;91.3096;95.18054;111.5639;99.77306;90.4399;119.4287;89.63537;113.2862;129.7279;107.0799;121.475;97.97198;90.33108;90.09872;115.294;94.27087;98.52145;107.8243;98.82378;140.3369;95.87282;115.6352;87.68246;104.905;130.543;134.0757;104.2572;109.9995;92.06218;98.16567;126.4265;111.6109;132.7649;107.9774;105.1978;117.2647;100.6119;139.6337;134.6221;105.956;125.6576;133.021;140.6194;111.9435;151.9647;106.6818;111.7741;119.8558;115.2199;137.2745;96.89458;102.83;116.5672;114.7931;108.7094;98.4773;124.9897;92.53963;95.92949;119.5297;114.8543;114.9157;114.8271;107.0122;94.34576;117.675;82.61902;92.78465;118.9664;129.6037;88.06724;135.6954;133.6759;129.8505;135.4;88.08852;83.40701;95.42081;113.4203;119.7063;100.6731;121.0392;142.8526;135.2805;84.41978;93.28892;113.3792;132.7879;121.9247;129.7751;130.3455;116.624;97.93318;111.6082;115.2116;144.4965;122.9348;110.6952;96.80392;96.4323;129.6799;115.304;111.3455;101.7389;103.169;80.82818;128.2923;94.0526;124.42;88.27973;96.62469;88.40486;109.5907;119.844;93.50188;113.6518;117.5943;114.5679;108.0367;94.41556;104.1941;93.75253;89.01649;102.5066;102.9076;112.2794;144.0582;
94.85768;93.2855;97.41996;142.763;141.2565;115.8438;104.6786;108.1676;101.3662;96.59563;102.9991;109.9757;109.7577;92.03702;96.80345;93.02666;89.88778;106.6066;89.07443;101.5488;97.0783;120.0408;106.9902;102.9685;106.9312;132.2553;113.6414;99.54483;129.5506;88.88422;99.91945;130.5844;100.5577;104.3789;121.7341;137.9361;148.8081;132.8324;102.6291;102.5063;92.46377;107.2526;85.64046;130.8563;140.6204;97.59551;105.4519;98.50299;106.7902;101.097;87.22985;108.4857;82.92081;111.1845;99.38515;91.66361;95.3204;98.46115;121.9289;109.8541;99.58344;103.413;128.7796;110.474;89.44233;89.71908;130.0426;155.9692;128.4614;95.85485;135.1727;124.0097;118.1706;120.4005;126.0096;130.9127;128.6691;130.3049;97.8905;99.39373;91.33601;109.7349;127.749;90.29728;134.1231;137.3484;91.51697;114.5721;87.97529;110.1636;91.44996;120.3874;129.5524;109.5746;121.8471;120.9212;142.033;75.58455;107.6204;146.0472;140.6418;97.87666;100.4796;94.14973;121.1558;109.3864;119.7478;96.68747;115.9031;129.3434;116.0622;110.4239;79.34241;126.3343;123.9831;91.62466;107.9584;98.85859;101.539;88.37051;99.36507;118.3232;95.84379;88.06068;91.07412;73.08841;92.98725;101.2837;94.69034;95.25883;95.28677;134.3051;132.6342;117.7365;103.1736;109.1115;100.7262;92.61595;100.0882;107.5998;104.9321;90.98203;89.25345;93.17732;90.40409;109.1635;87.70413;94.85481;90.62542;122.4343;106.3537;104.9202;107.7457;127.3301;111.4985;98.0856;125.3598;87.4539;92.61455;131.7001;102.0569;106.4729;120.5611;131.0394;141.927;134.8718;102.0081;104.4562;93.22366;102.8245;83.78372;129.1852;137.1738;97.03474;99.60971;100.2416;116.0076;108.3447;85.05852;105.9136;73.59068;114.1085;112.6955;82.66508;99.46081;87.3064;112.6532;119.1971;92.92573;101.4188;127.2254;102.7378;83.8392;93.04872;131.8011;146.5588;127.4214;97.43362;134.7682;122.0281;119.6664;108.6304;131.1947;122.3186;130.5879;137.8306;95.17499;97.19722;99.87474;117.2705;125.1185;87.9474;122.1814;140.585;104.3065;104.4793;89.33308;101.8631;86.08032;129.1359;125.1658;108.088;126.732;110.9692;130.9682;76.13904;111.2284;141.1679;145.4199;96.74191;99.07813;89.85508;119.6661;101.6784;128.0432;88.4746;120.919;137.476;119.3344;106.3055;84.14033;131.1263;123.5243;92.67231;102.1761;98.8525;113.8548;77.15309;100.8274;109.6957;90.36346;95.56485;87.42064;71.8597;97.28017;92.19341;
116.2492;138.836;127.2097;94.51047;100.5385;98.23847;100.5626;119.1267;74.82227;135.1916;134.8981;100.2772;116.4461;106.2864;97.02394;98.64882;129.407;140.7506;131.7174;120.9662;120.0881;111.2219;92.8811;96.06066;130.2727;134.8316;106.3605;105.4845;76.03217;132.8065;100.3751;116.215;97.0953;115.4868;157.5279;131.5161;125.657;76.73742;109.5007;116.8207;98.91715;104.7101;85.01962;90.87804;93.78345;102.2513;132.9433;93.19512;82.62262;96.32648;73.24669;91.97973;97.90443;92.94367;101.7394;88.10862;119.352;124.117;118.0788;105.2487;110.9488;101.4123;116.9618;87.02515;91.26968;120.1634;88.20658;92.46379;94.39557;91.84614;100.2397;79.64185;79.3611;94.62159;115.1952;119.2845;101.2254;125.581;112.4219;115.8417;100.2373;131.5375;106.0756;93.75057;131.7206;76.31812;130.2743;109.2228;111.8972;134.311;141.4407;108.9955;84.01623;101.5842;96.32835;81.42123;133.0158;135.905;120.9244;114.8482;115.4918;108.6006;86.01736;80.01704;111.7664;76.55064;98.60039;91.63135;96.7152;101.0628;106.774;115.4038;106.6191;104.2421;104.2429;119.6394;109.6411;91.05276;97.97645;123.7274;136.4378;113.8475;96.66691;138.6258;123.0722;123.0952;144.8888;112.4815;116.9495;139.3002;130.0815;95.578;101.1908;97.26098;100.7938;120.1959;72.71765;135.0297;135.5906;102.2611;115.0757;105.3188;98.661;100.4221;129.944;141.1193;134.4341;122.0939;120.6169;110.0862;92.09617;96.54297;128.3081;134.4843;105.9037;107.358;75.92846;131.8887;101.4036;117.9606;98.68788;115.9948;159.7088;132.5003;127.4879;75.92771;108.6458;117.3547;97.20377;104.4062;84.60906;92.61967;90.90527;102.3731;132.9162;96.02377;86.1286;90.80917;78.37094;87.4325;96.01347;88.82444;103.6048;90.82583;111.5397;125.8788;124.4599;100.8032;104.1958;100.0219;115.0077;90.72714;94.90282;113.8598;87.12415;95.4118;82.27905;96.01501;99.09276;88.61114;87.46755;99.45264;123.3675;123.5141;100.3728;121.9374;118.3677;124.8468;104.0948;125.0655;112.2199;89.15927;129.5254;72.58145;132.3789;112.2458;103.5968;137.0274;148.3677;104.6709;80.83547;100.05;94.57496;82.33188;132.6784;129.1785;117.2455;119.4117;103.3425;113.0966;86.67973;87.3362;120.5766;81.56596;106.1315;95.5487;98.87327;97.65108;112.6033;121.1832;106.3935;98.46959;108.0415;115.7019;108.9867;86.94379;101.6904;124.9429;127.298;116.3298;102.4293;133.7675;119.257;121.3856;142.7619;113.5739;
82.31133;91.84914;99.76401;120.1982;133.9204;91.49531;117.0873;108.864;133.4836;93.28669;97.96141;110.5139;71.34928;102.8208;98.22839;104.4108;98.07539;91.38355;125.2379;125.1352;96.08917;110.8066;141.4254;123.8331;109.9677;111.1027;131.3188;131.9368;116.9329;117.2216;127.353;121.0385;117.0755;126.393;117.4184;116.9192;105.7185;126.8957;98.51939;106.3199;123.2376;98.65821;137.2639;81.04559;142.952;114.8181;112.8416;117.3337;102.7835;95.20235;93.77671;137.7807;122.1713;130.8955;128.8627;118.957;127.0846;89.11364;89.2478;130.5145;124.3399;109.7667;100.8186;78.98378;108.6637;96.16149;139.2882;88.75227;113.289;118.4208;132.741;117.3881;95.05891;113.9252;137.164;95.16027;101.851;85.10098;99.16084;98.94376;96.77364;114.1788;100.7366;102.5237;90.47717;77.40906;109.2772;107.8795;107.3011;107.9065;97.65431;119.8759;128.599;142.5467;93.43362;101.8183;99.72826;103.4616;97.53073;95.30366;88.29247;84.32658;95.2913;93.63831;107.5634;91.52962;95.81519;91.9226;105.4943;99.24375;127.6702;100.4085;127.1091;111.9963;111.4132;108.1244;111.075;104.987;97.04437;122.1781;83.20008;113.4996;106.16;114.2592;124.9675;151.1046;99.00665;84.53807;84.79454;93.15703;101.2218;117.9284;133.1121;87.40656;117.2877;102.0636;126.0089;87.38354;99.593;112.3086;75.49404;103.2921;97.8915;99.6542;101.5041;93.10194;127.678;123.2957;96.10525;106.7466;141.4376;117.5407;102.8261;106.0589;133.0278;134.7212;121.3059;119.0188;126.2358;116.6718;119.8987;129.7535;119.0905;115.9053;104.8826;123.8699;98.53203;100.4979;115.673;93.91112;139.0139;83.2333;146.1773;118.1248;111.404;114.0652;105.7939;104.6431;95.30263;132.9093;113.8597;134.3771;121.8729;112.9866;124.3516;83.80072;83.5827;123.6128;131.6626;105.0437;99.83272;73.28346;118.14;97.77814;146.0351;92.44795;113.0161;123.181;121.3664;118.5068;88.65372;106.6991;139.1967;101.5635;108.0191;91.79893;96.02901;104.8644;99.68571;124.491;102.3172;98.32305;83.33599;80.08731;102.8475;102.1929;109.4823;108.0114;89.9791;111.9102;132.9153;133.575;93.77103;98.29888;103.6814;103.1029;101.2867;101.2091;90.03697;89.55737;86.01459;99.3047;105.3288;90.51298;95.72807;96.95708;108.9309;103.3233;125.6278;109.5164;124.8118;120.0271;111.0962;105.9343;105.2997;109.4364;91.31847;121.2846;85.10436;113.607;98.16752;106.487;129.201;141.863;99.37075;81.33507;
72.0299;128.281;140.5624;105.3032;121.8311;95.86794;103.1948;85.9927;113.4481;122.4735;104.3605;100.4026;99.0909;70.81052;88.03276;97.11653;117.9174;97.80916;97.09372;101.3419;126.7634;132.8951;79.40987;101.3639;92.14131;92.98244;108.099;104.112;89.36839;79.69366;89.48277;81.35332;83.44406;101.5079;102.8084;91.67184;92.03641;117.4053;121.9727;92.94177;115.6783;124.5899;133.2284;111.5506;133.6831;93.89141;92.05524;129.7871;102.4694;119.6238;128.1748;108.3648;138.9634;134.5;92.95086;81.45426;98.2475;87.8315;105.8168;143.3392;124.5342;92.08484;108.5871;112.7403;104.7133;108.0296;101.448;122.8652;89.61208;113.0247;104.0107;89.82564;114.2463;99.95317;132.211;121.875;105.0989;100.0628;116.9611;106.8622;115.3442;97.91568;134.648;117.3318;121.034;111.2118;108.933;114.249;113.623;121.3755;134.7677;128.5734;107.7107;119.7007;91.98113;82.52451;90.66892;103.3468;152.2741;86.4855;133.2516;139.39;104.0479;109.9936;101.3898;110.913;118.492;139.4698;141.7687;119.2483;120.2988;116.0009;141.0766;83.97108;115.5241;124.2641;135.8772;97.48502;91.12542;75.65584;130.3222;94.59576;150.4678;112.7903;104.129;126.1862;120.9524;119.4321;72.6442;129.7787;148.0211;107.3238;122.9747;96.88012;102.6462;87.93532;116.4141;127.2734;108.637;102.906;101.2535;73.50429;86.52058;91.45752;118.5103;99.0347;103.1293;103.2403;127.722;133.9803;78.46454;103.1498;93.98709;95.98627;111.9064;106.6742;90.99615;81.74106;87.85719;76.1851;83.5423;101.8627;108.9136;93.4899;92.43027;117.4677;120.7978;94.65424;117.7427;128.0656;137.4486;114.2045;134.6621;96.05231;91.24788;124.3492;97.54446;117.7867;129.9895;110.1668;139.8372;137.2906;96.49323;85.12666;104.772;92.81311;107.2742;145.9749;131.3482;99.40092;112.902;102.8839;111.162;104.6796;97.00587;132.2562;88.92751;116.9152;108.4387;91.06928;117.4379;97.04179;129.6343;119.8973;104.3009;110.4028;128.5304;101.937;110.1149;96.24984;136.4972;119.2066;121.8493;113.7459;112.7554;118.5909;118.7181;125.006;134.3728;128.1024;113.1494;125.5;96.78017;78.31614;96.73698;100.8399;141.9463;92.47729;132.9621;143.6883;108.6441;108.4669;102.6418;105.8092;114.1594;134.3322;139.8641;127.9782;132.9915;116.0071;135.3861;83.13705;112.8933;123.9736;137.3127;99.84392;94.8036;76.74893;135.819;97.80682;150.0536;112.3716;109.5173;132.1421;126.4495;114.3808;
117.1857;91.40697;96.9998;137.0374;94.54469;107.4174;105.8983;133.5684;85.4763;120.2166;113.142;111.841;112.3656;101.2199;128.1508;99.37473;120.092;93.69854;92.63828;113.2905;136.983;82.67879;115.5021;125.8329;116.9308;146.0931;102.499;86.24894;90.76905;98.3085;108.7495;88.15279;120.7671;130.7136;126.9861;81.45056;97.88448;117.1176;127.164;136.6443;124.9468;147.5825;111.9414;99.21838;93.7618;123.877;130.8523;107.0902;91.82661;104.0355;95.26778;126.4126;91.89533;98.09477;106.8397;108.7445;82.06291;140.138;82.00895;115.8091;103.3159;95.09328;95.0822;84.59775;102.0628;87.26662;101.5433;134.7937;91.94456;104.1272;96.88889;104.3838;85.77251;112.9865;93.32458;98.56906;113.6564;126.4548;126.9748;82.97531;102.9294;113.9446;90.31036;85.13011;120.7052;87.26881;92.00636;118.2818;95.33843;128.9944;98.32198;88.5998;86.37402;101.2913;89.7876;88.39221;118.6749;85.89971;127.4541;88.79335;123.6011;93.02382;96.08778;140.9926;127.0921;132.1749;107.0634;92.50568;87.69989;139.1641;97.56715;106.4734;95.68203;106.2891;114.528;95.11794;112.049;121.2061;106.0681;127.6115;129.9173;151.291;89.37239;136.1563;119.956;109.3442;129.1348;92.70383;119.2245;92.9475;95.40697;136.3038;97.8539;106.1496;103.5696;126.784;86.04324;120.3901;107.4261;111.4765;112.744;101.4192;126.2416;97.71732;122.9481;95.67766;91.76614;113.0897;141.803;81.95707;113.9851;120.3357;119.1629;146.0283;97.91121;86.68884;92.01551;98.09691;107.3869;87.33889;124.7067;132.5854;126.3946;82.01088;102.9312;115.8156;125.5747;130.916;127.2565;147.5204;107.1471;99.6926;93.70299;125.2492;131.0228;109.1894;96.98114;99.21385;105.192;125.7439;95.69812;98.01505;101.679;99.43412;79.18662;140.5072;78.27972;128.3135;99.23418;95.68851;91.60269;91.14407;104.5843;83.25353;107.8637;133.1588;99.98444;109.4203;101.2055;111.6851;93.16026;109.3665;95.78191;94.62282;113.1868;114.276;135.1476;83.4772;108.3826;108.886;99.97942;84.57694;125.0579;87.18478;87.22196;108.5577;91.90208;128.3073;96.29514;99.62498;82.6797;100.6541;86.25453;93.09974;119.3683;79.58009;132.2753;87.37461;128.6922;97.76689;100.3473;151.9669;135.6743;127.1996;111.9321;88.72886;87.34544;124.9745;104.604;104.9488;99.12135;98.79784;123.2316;94.43683;112.3096;120.8193;100.882;119.7287;125.9226;150.5244;87.4589;149.746;115.6162;108.6632;124.9127;97.52305;
100.844;125.2867;105.2116;116.6952;127.2117;106.1196;92.8236;100.2811;114.7167;152.6338;132.5762;127.5923;132.9769;111.8746;91.59972;85.25273;98.67747;129.75;131.9815;104.2012;106.7895;89.86554;122.3281;92.91919;109.7383;97.14967;93.66868;74.23735;122.905;90.8512;115.5312;90.67519;74.36491;81.02007;84.29156;94.37399;86.46647;80.55862;132.8384;92.55242;95.61809;95.4888;99.3739;104.9744;103.2859;104.5392;113.8938;104.8421;116.8842;129.3867;83.87331;97.78001;108.6756;98.77367;93.76608;112.5541;98.07997;109.7181;124.7036;95.20706;110.5434;108.8822;87.81081;93.96243;105.4905;107.0329;104.8195;110.8105;78.62378;107.7383;104.7257;119.2846;96.05663;119.8598;142.6655;125.89;111.1027;113.6779;89.61901;79.07713;114.8183;99.14101;131.0581;106.3303;101.7191;107.2339;94.8951;109.4358;137.4363;97.30473;118.5167;123.2053;127.2529;101.5881;141.489;110.7712;90.27621;112.4782;93.75543;106.306;91.91317;72.98389;134.5342;93.43533;104.6853;101.7924;122.6477;107.2173;113.0247;125.575;130.4883;107.8739;92.74875;128.5444;103.5134;114.2175;88.38325;99.19142;122.83;127.765;93.84937;133.807;136.8564;121.6007;124.1087;108.7536;89.10616;102.7338;101.1929;125.1868;109.665;114.3978;124.7607;105.6468;95.04609;98.14037;118.4247;152.6591;135.3672;130.1163;127.8894;112.8398;96.83651;87.31;98.84658;129.5537;136.7569;101.9475;104.3659;89.34512;123.7098;90.40491;114.1444;96.99365;94.99283;76.02103;119.2654;91.8587;120.7083;92.64701;75.50401;80.99349;87.52375;92.07014;85.34179;80.20274;134.2753;90.04514;99.73145;95.33615;100.7352;107.0956;102.2427;104.6912;117.5777;107.6622;115.8272;129.6254;85.17928;91.97386;109.6397;101.5586;101.1557;102.301;99.35426;108.296;114.2886;105.3105;118.2882;110.2407;98.62415;96.35542;110.0329;103.2409;108.2594;107.357;82.86951;116.2173;114.5526;121.5653;98.19267;115.0753;146.7027;126.0991;102.5118;119.3353;93.35488;82.01844;113.7704;99.34018;132.6842;100.2718;102.6516;110.1245;102.3237;99.32912;136.9648;97.01402;105.8439;132.0689;136.76;102.728;150.8891;110.4702;95.62117;109.5701;92.56713;105.1853;95.47871;81.12477;145.7523;97.38564;105.203;98.42355;123.6662;105.1094;105.4419;131.3169;131.0465;108.459;92.95277;129.8326;100.3563;110.2469;88.28529;103.2584;131.388;118.956;93.49614;133.4449;123.2352;130.4315;133.5432;109.9137;96.61794;102.4653;
120.4323;89.28731;92.05874;115.9027;140.9131;86.96451;128.8045;147.2436;115.1238;127.8389;90.42935;104.6696;91.88247;105.2091;126.2534;116.8802;121.7614;132.3234;129.0401;81.27745;108.0061;121.5897;135.0196;137.0999;132.2815;114.191;88.2287;94.41849;109.0524;91.85349;123.4758;110.4886;96.75016;104.0826;85.64738;132.1137;90.73666;92.54385;100.4565;114.0603;78.48596;116.7366;84.98097;99.4127;95.10923;79.34155;95.85955;100.7404;99.67328;101.2411;99.49053;125.4808;92.98647;107.1833;103.0391;120.4637;115.7516;86.54001;91.86881;98.38249;127.2016;116.3817;115.6272;83.76077;102.4813;107.8377;94.21964;85.47263;124.4848;88.92251;104.5155;139.0779;91.84692;109.2904;92.61149;103.7019;85.01217;103.8132;105.4851;116.1472;117.7102;83.42414;131.623;87.32815;126.4945;98.27528;100.8814;148.9859;138.5308;99.96881;92.65354;84.13069;104.8718;106.7637;94.61581;106.009;104.5929;101.9951;106.3109;101.392;108.0632;115.1586;98.92066;135.3239;134.1859;128.8183;98.31873;114.4674;113.4455;92.81915;133.0883;105.6435;117.5084;104.5126;93.93816;128.8141;95.42278;108.2036;106.8666;142.2084;122.0745;92.52003;112.5414;109.8718;131.2303;91.86861;118.7683;94.91121;124.6422;86.39831;96.30002;115.1636;141.3918;83.72107;125.8473;142.9159;123.0089;127.8681;95.41991;101.5062;95.00414;103.569;128.8174;111.9816;126.7989;129.2889;134.8826;81.05466;109.1818;118.2065;131.7906;133.9793;140.2955;115.7073;92.99902;92.10655;111.5816;91.44668;125.2807;106.4708;100.4037;102.6029;89.80894;132.6469;91.02007;90.72599;97.67639;111.2181;84.68827;118.2723;89.66617;97.04246;97.31242;79.91307;97.47894;96.8343;99.16627;94.85494;100.0797;131.274;100.3258;102.8676;99.85851;115.8343;117.5038;87.1557;100.2997;97.81629;125.2645;123.0446;127.9393;83.68316;109.1138;103.3708;100.5194;85.92441;130.5221;87.39157;106.2964;135.9811;101.0338;115.9184;88.67148;105.2501;88.85651;100.8225;104.0728;114.4935;117.1486;77.63234;132.2997;92.16748;135.0201;94.13992;97.73389;143.827;133.4477;100.1722;97.93779;85.82401;100.8389;112.4435;104.0705;109.9999;108.3673;100.0506;110.2274;101.4327;113.5214;114.2818;103.4408;135.45;138.1081;135.4727;91.19884;118.7043;115.4419;89.37236;129.6168;108.1205;113.9434;100.4302;91.99118;134.1581;102.6876;104.6912;106.4499;140.4075;117.285;92.71559;118.376;111.8071;126.6927;97.14246;129.3533;98.69065;
114.8409;114.3317;77.58017;114.4012;84.65902;120.3096;110.3907;84.845;98.615;102.1324;104.7634;87.31538;104.8055;133.8239;98.79055;93.96741;90.87605;86.73744;92.99483;85.59879;81.62112;98.7733;116.4548;120.0502;105.9823;79.26841;93.37822;121.8274;101.7615;88.02848;119.4975;94.9811;103.4703;117.1303;90.1944;104.5338;86.05922;98.36407;106.5727;113.9965;101.3559;106.7219;121.2828;77.08435;125.1604;98.70589;129.0958;108.7599;102.3321;146.6935;123.452;114.1883;100.9616;100.8305;90.35017;113.2941;99.27174;111.5283;105.6581;105.681;123.4393;104.7406;119.2912;129.3007;117.3246;140.0747;124.2802;123.4122;96.36658;142.682;132.1411;102.5605;135.6747;111.5325;120.7791;93.57153;102.2476;137.0102;102.4132;98.61103;98.97843;110.5464;94.25893;90.91187;103.6245;111.856;119.2534;96.44242;106.8684;91.43509;106.9715;98.20586;106.9132;115.0133;136.8372;89.0423;125.1471;124.1206;111.6214;121.7616;87.70725;98.36231;110.8226;106.2111;120.477;103.0199;124.7245;123.019;126.9487;86.67617;111.9597;130.7067;129.7114;132.4615;121.6686;136.8739;101.1784;105.4878;92.55517;96.83866;129.6033;106.9277;98.74418;107.7167;107.0604;132.8575;101.7905;102.2245;112.7233;115.6042;76.22013;117.3893;87.98825;122.4277;107.7785;82.26278;99.94415;99.72681;101.6324;86.28938;110.9691;134.5982;101.6266;93.69907;88.82661;87.76833;91.33604;88.10916;84.73776;100.6202;113.2219;116.6519;106.4857;76.09588;89.94266;120.63;107.3915;87.83588;122.5037;94.7336;100.8503;117.3687;88.47528;107.3191;88.84382;99.32646;103.4785;110.6879;101.8457;103.0376;117.3603;76.13429;128.004;96.93526;130.939;107.6363;90.7188;149.7904;116.6601;117.0131;106.5208;95.92391;77.8755;113.2327;94.90013;104.1217;107.871;104.9689;125.5249;110.6674;117.3613;135.1411;107.8039;139.273;122.5007;132.8774;93.15276;149.3389;127.5232;96.3021;133.6995;112.2101;112.6447;92.15765;98.91308;126.9463;100.0018;99.78758;87.56252;113.2322;88.32779;93.43434;109.2552;106.6802;104.8434;96.38579;103.2489;89.29859;113.0592;97.21677;106.2487;123.1944;132.904;94.94549;119.633;124.5535;111.9291;126.5323;84.67336;104.5313;110.8936;103.8421;119.6299;108.7075;120.4283;121.0754;120.482;80.31308;107.7543;133.3286;120.9674;136.6565;116.9626;135.1746;106.7931;101.0828;83.66293;100.7188;125.6566;104.6192;104.599;106.7025;106.4344;141.6433;98.40462;108.5648;
93.59682;85.73639;84.00967;100.162;133.0763;120.1239;107.6403;119.8795;114.5808;126.8046;86.95019;86.25566;115.3562;66.39585;104.4063;94.26762;94.11012;106.138;97.81785;126.8655;110.9464;94.14211;124.3966;140.7179;121.4163;118.6027;88.52793;125.4064;156.4383;111.8802;98.06701;113.396;123.113;123.7853;113.4468;115.8612;132.3206;118.587;136.4776;101.2473;116.4988;97.76788;101.3678;135.5593;94.14335;131.2494;122.7137;95.50871;101.939;111.5182;103.7216;91.09505;131.4784;129.4387;128.622;119.5146;135.8585;125.0511;70.70399;95.50768;134.125;139.7359;100.9489;100.0031;82.49506;115.304;89.44519;136.2679;95.27196;99.44567;137.3593;134.3075;121.7264;93.82143;110.8591;120.1099;98.70415;95.13422;88.06229;92.67801;83.6706;107.0358;120.955;101.937;88.48856;87.27641;90.7999;104.9417;106.1557;114.6699;88.3071;91.13206;133.0205;127.9996;116.1138;87.27312;102.989;102.4071;91.45335;96.45286;111.2841;97.38874;91.72174;99.44981;107.7934;88.106;98.85165;93.86449;99.10669;95.40535;105.2312;114.678;86.6369;134.5952;119.89;113.1167;107.4868;119.6108;97.36649;89.36546;145.6216;81.0546;100.8088;110.2132;116.0521;146.6928;132.7994;104.387;86.49976;86.89225;82.36253;98.40928;132.2131;113.7811;100.2644;116.6372;109.3527;120.6549;85.17609;83.41486;109.9532;70.88013;100.7663;95.40828;87.66206;107.869;96.74249;125.3739;110.9017;88.93474;117.3875;138.3874;117.5704;112.412;87.5489;122.8723;151.2966;117.2238;94.91293;115.5244;116.7411;125.1811;112.7041;115.3024;133.3715;112.2974;129.134;99.27444;112.7348;92.1572;100.3225;132.927;90.91382;138.1518;121.0194;98.22434;103.5477;113.5967;95.11703;100.7976;126.8612;126.9974;125.3078;122.8077;127.3592;114.5206;68.17076;90.71775;117.4207;142.4481;102.8892;100.2523;85.23206;113.6174;93.35419;140.6542;93.17597;100.1832;123.7606;131.7417;109.4682;93.87365;114.609;124.8556;97.47821;110.6332;91.67126;99.43628;85.12866;109.0624;111.6482;112.1812;84.70815;85.26514;88.01883;108.0237;100.2052;109.7231;87.22958;86.3688;120.0107;123.8617;119.8525;84.93781;110.0529;98.76186;96.92061;98.30852;107.2453;102.9925;84.95481;98.4268;97.82918;92.85126;104.3309;97.97359;101.228;104.7224;110.7929;119.1548;91.80122;134.4647;112.2718;121.8474;101.5858;122.5819;99.10899;93.36353;138.6605;76.88831;99.677;104.9683;103.9425;142.2389;136.8187;101.8312;
147.7134;107.0086;96.44379;91.67912;117.1742;84.8549;121.1883;90.62565;122.4165;134.618;140.6649;104.9706;80.11248;106.1136;139.1028;97.46389;102.879;97.44551;96.39058;96.86089;108.9139;122.2157;100.1661;85.89235;82.29664;82.52894;98.90558;90.27332;108.6203;97.47517;103.9473;117.7096;136.0903;136.8362;108.1931;101.7057;109.4896;87.42354;89.01891;108.555;89.78914;81.48105;95.86763;91.71883;96.02924;91.6487;86.80042;100.3808;91.31465;120.0729;114.7212;116.3914;116.0206;117.5526;128.6053;98.26044;121.9065;96.68713;101.6595;116.9659;103.2395;120.0108;111.2214;127.8671;144.906;143.3313;98.39319;103.0419;88.39543;80.29371;83.83372;123.997;139.0977;101.2136;126.9105;95.23527;111.9404;82.77295;97.63302;108.8282;70.26553;112.8202;96.66627;105.227;107.1025;95.35629;122.318;103.6427;86.1817;114.4697;134.51;104.1329;107.7578;92.64238;140.4325;131.585;124.4314;115.252;139.5281;121.0325;133.9279;107.7809;107.5229;128.6175;108.3549;122.1909;99.549;97.50142;100.8367;93.02029;127.15;90.57818;130.2885;140.4176;101.0676;134.4691;94.39919;100.6209;107.3172;119.9824;128.7009;123.6338;138.472;106.6927;139.8595;85.12575;98.91255;144.5085;144.5272;108.2692;98.45867;95.75349;116.9609;82.34698;121.4156;88.37815;121.2194;137.8922;146.4037;106.2511;80.02225;105.0658;143.9756;95.69888;100.0458;98.56606;98.22945;100.9751;108.5336;119.1029;99.32696;83.26072;81.96854;84.94926;102.6716;91.31269;109.7214;96.61147;107.5099;115.5925;134.1436;138.3536;109.4875;105.7495;110.3079;84.93473;88.22572;105.5961;89.44412;83.88796;99.5735;92.76849;94.25173;91.68829;89.0672;99.71539;97.0713;125.5548;116.3179;114.2271;118.7911;112.6605;121.5711;100.5142;128.31;94.17193;98.87778;113.862;101.1611;121.2984;108.5024;118.9498;141.3222;143.6483;96.48196;104.6635;90.37918;85.88262;82.4076;129.2305;144.5474;108.3701;132.051;98.54039;116.1958;87.92003;106.5485;98.61926;75.32578;118.1251;98.12804;103.1696;109.7647;90.94599;115.4557;105.9571;89.58797;109.4307;126.4993;102.1343;107.5289;93.71256;134.5521;123.2604;120.2615;114.6388;135.2377;120.6502;138.8619;116.0903;107.8565;135.7744;110.9809;127.5368;99.8326;101.7874;106.7898;98.40402;134.4875;81.89835;136.2692;145.3128;100.8441;129.9185;99.01912;97.79176;102.8179;124.2156;132.8995;118.375;130.3666;104.6911;139.643;86.13478;94.00805;135.8027;
105.66;149.11;150.2772;124.9127;92.10322;128.9167;130.4523;99.46166;114.2368;116.8399;109.5426;98.90203;92.93509;118.124;100.9247;97.60713;97.61921;81.15349;114.3816;98.13551;111.1176;111.2893;95.47957;128.2383;123.5403;135.0613;95.17269;97.37205;100.1518;94.51246;92.28844;99.36873;93.1651;82.27966;115.2841;85.10854;92.26275;99.18766;83.85605;92.98723;90.07711;113.3319;106.9608;113.892;121.0556;116.5589;117.4897;87.75336;103.6249;100.9071;116.6021;129.0533;79.44955;104.1973;120.8313;118.6993;136.8665;124.761;86.42579;89.73394;90.82922;97.33362;87.12876;146.7962;123.4255;112.3534;132.3915;111.7499;128.2609;100.914;91.46398;113.5525;82.91634;132.7303;109.4277;105.5597;94.89534;93.27942;124.4745;117.2438;102.9194;109.9372;149.6237;111.8188;108.9603;107.7918;128.1731;145.3751;117.7798;113.5287;125.8964;108.6052;124.2325;113.0886;108.4252;116.0275;102.6358;116.3239;118.3831;91.99892;96.90456;99.39287;125.781;80.73855;131.7018;133.4854;90.0554;126.9914;105.6865;96.53883;94.27769;108.9988;104.8475;120.8748;148.9496;119.5223;116.3294;73.85012;108.6078;132.4984;146.4038;91.60432;82.27839;77.16673;124.48;98.8732;121.9349;107.4493;98.45319;142.6905;150.9068;125.0141;92.55317;125.6651;135.7197;94.90061;118.2765;116.6414;107.4534;94.82274;97.08134;111.4424;99.34618;93.91994;91.37988;76.8119;115.6995;98.65173;112.3694;108.7179;99.81866;124.0463;127.3314;136.4447;93.07625;94.01306;103.607;89.66889;90.15904;96.33761;86.29119;78.95292;115.9254;86.24817;92.60237;97.93582;87.92779;89.42511;93.32085;114.6021;104.7401;110.2594;123.3759;112.665;114.6938;85.79955;100.1878;93.94461;115.9334;131.2971;78.69269;104.2209;124.8329;120.0445;136.6088;129.4086;84.95911;88.88351;92.83587;90.55917;90.15836;139.8242;127.0797;112.0903;133.45;114.424;132.2486;101.3812;93.0843;112.241;85.91827;123.4812;107.5088;97.27326;93.35172;89.62383;125.5688;122.7483;99.48447;102.6594;148.8653;113.9032;108.0635;107.8107;132.2927;146.8579;111.361;117.7334;126.1571;112.4617;124.2095;109.5353;114.5361;112.0233;111.0441;121.1529;118.3584;94.33385;101.3148;99.69468;123.1627;82.10065;128.8212;123.9727;90.04286;122.8994;101.9066;96.35155;97.77724;116.5486;106.3393;118.2832;147.0652;121.5712;116.4159;73.72655;108.1624;137.1078;139.2145;95.38503;82.50446;80.42394;124.4356;95.55243;128.4293;103.5985;
100.7267;136.6065;133.6964;137.216;108.2889;129.1927;103.7086;121.3118;130.7496;121.6234;137.8583;110.3458;145.268;110.3145;85.39365;89.52229;115.1877;124.1726;83.92717;132.8464;131.4183;90.84297;108.7417;92.09524;91.60076;98.09488;122.935;124.7204;114.9506;121.4607;117.6497;123.9743;86.02482;94.28606;133.439;137.8791;94.68305;92.77718;75.0527;115.7309;97.90691;131.9748;110.676;118.51;139.328;144.0313;98.78925;74.3903;116.9613;128.7858;106.0802;125.6245;99.26147;109.5442;89.77962;100.9353;135.9187;108.5642;87.34479;94.47768;83.19434;89.71099;103.9678;101.0395;103.3845;104.0411;119.9276;147.569;131.1533;99.22806;89.25394;98.07811;104.4123;102.3371;116.6367;93.20645;102.2146;106.7985;79.23026;83.45998;112.097;87.40048;92.52418;91.94557;115.1867;104.3188;94.83699;107.611;105.8177;116.4052;97.81055;117.9823;94.75964;93.93978;133.3446;89.83516;118.1785;112.6379;122.9072;139.4523;131.0735;91.56455;83.02317;84.39143;92.67386;92.16728;148.9205;137.2629;105.1971;131.5868;93.11281;107.7445;92.75207;91.93406;128.3275;94.13277;113.5085;106.6605;97.19896;96.20032;106.7452;130.509;109.8594;101.3635;113.2874;123.8963;121.922;102.1612;100.8825;142.1944;140.7608;139.0318;110.0794;127.2198;103.9304;118.0985;131.3661;123.0542;140.5464;110.3837;149.1543;114.3745;88.38773;91.62671;115.1643;129.4082;89.37584;134.5371;133.1776;89.10328;108.4234;88.99892;91.29978;98.18255;124.899;124.7752;117.9249;124.7204;121.0412;126.4538;85.59908;97.97881;140.1704;139.6163;95.74654;90.17969;74.78617;112.2589;97.59335;132.0789;112.5374;118.5656;141.565;147.5045;102.7923;77.18958;120.587;135.8139;108.9082;126.0291;99.11555;111.611;79.73695;102.5202;124.3149;107.2039;85.26161;92.35602;84.80074;101.7502;108.3686;101.5483;104.2033;104.1712;120.4465;158.1687;127.0998;97.80254;91.68224;90.24738;103.8904;101.2484;106.4823;99.40777;92.20384;101.9184;90.75425;89.60209;115.6468;93.20238;95.15768;92.29179;115.0292;106.3313;84.4987;109.2473;96.07856;116.1045;95.71627;115.4376;94.62498;103.2827;133.6685;87.26394;119.741;109.9796;119.1618;147.8508;126.7889;92.83363;84.81418;79.12967;92.66513;92.12231;137.5346;144.592;93.22566;122.9397;101.509;111.2925;96.62371;95.29127;127.0253;92.96326;113.1486;111.5907;86.19502;99.98303;96.99965;130.1939;107.6418;99.02687;113.1804;134.5966;122.2344;99.43901;
91.58379;92.8253;118.7999;130.8792;82.41164;129.4352;133.1727;95.38329;106.2872;89.91911;93.24498;99.76974;123.5247;126.5729;136.822;128.2519;120.751;129.6869;101.4951;98.14774;124.9744;121.089;114.162;97.83314;84.01697;111.058;86.18386;128.0413;92.37244;120.0728;130.1281;145.2283;103.6817;93.69362;127.653;148.3256;105.2545;125.3219;108.7756;93.45197;85.47792;109.8927;136.6133;92.62203;83.09443;86.58826;94.55683;107.6096;118.1534;102.1367;117.3192;95.45107;125.3242;141.5649;126.6475;98.59541;88.82012;111.0486;100.1005;99.79175;98.67688;94.81893;78.90279;92.21527;87.04098;86.74805;110.0119;92.51268;90.90542;91.07539;112.8737;108.7638;94.66016;106.6506;106.6415;116.6498;100.301;120.0398;107.4584;95.44529;131.3802;92.10663;133.339;111.4489;110.4094;120.1262;147.9918;95.62832;96.82805;82.34366;76.73289;97.06783;128.0034;137.7815;92.34882;126.124;89.94741;127.973;101.5672;105.8034;121.3438;96.70599;126.7969;94.16432;94.41309;106.3485;105.7257;122.2998;106.0938;88.39661;124.64;145.2739;124.6907;101.6872;115.1408;128.3257;139.7744;134.3614;107.8835;128.9672;103.282;131.9728;119.2529;125.5905;119.073;107.5653;112.7903;95.50147;87.16306;93.5555;117.1129;129.2732;81.52396;132.0326;133.1557;93.07304;109.337;89.02458;87.4165;105.5021;124.8003;122.2609;132.4461;126.5681;116.4378;131.0407;100.653;97.18969;124.6706;124.0818;115.0661;96.46456;88.07924;109.8416;81.35786;135.475;94.39395;115.4315;126.2905;144.3968;100.6538;94.45324;127.1396;148.1297;105.9557;127.9009;109.6607;92.11684;89.57724;108.6852;130.522;98.96262;83.75878;83.97086;92.68983;109.9004;103.5927;98.71508;107.0812;90.3798;128.6467;143.498;132.1295;99.83656;96.53031;111.4968;103.4271;106.4006;96.72533;96.61591;71.95284;99.2808;91.95567;91.60957;116.3386;93.3952;93.83262;93.30679;110.8771;116.9357;93.07407;114.1671;101.1238;127.7088;100.3365;123.302;95.92176;97.34541;116;88.84989;122.4089;105.9585;113.5293;121.897;153.9131;96.84583;102.1514;82.89937;82.16835;97.61423;124.939;143.3024;86.58884;131.8034;99.58398;131.8416;105.5667;107.4523;125.4812;95.29433;122.1252;100.2474;90.29446;114.0342;103.0711;126.8214;105.3837;93.90869;114.2529;144.9419;114.7312;96.52876;102.9584;123.1843;144.0897;131.8803;110.5113;128.6471;108.798;132.655;126.0282;126.2116;116.1393;112.4303;106.4352;100.4513;
101.7155;111.9189;115.5486;121.0209;127.3992;113.3253;81.82722;113.0551;95.6372;111.3346;127.9848;98.96354;118.5266;126.0596;122.8524;145.957;138.5739;105.1852;92.09441;89.89365;100.5239;105.8403;151.2274;137.8752;97.06017;108.8198;108.6702;128.9053;102.5134;84.71159;122.3719;82.37717;114.5097;113.9521;102.939;112.0518;93.86652;140.7011;111.4575;94.76277;108.9472;130.8331;104.0931;100.811;98.83951;128.8809;146.0071;114.8933;96.64232;118.575;106.6604;118.148;124.6401;117.0644;124.1458;125.7418;135.5861;103.3363;100.607;94.93111;89.67989;131.7188;92.66222;127.1725;119.0375;97.64989;131.0296;102.4845;108.1888;94.9845;105.9887;118.0904;120.7804;144.6005;118.2955;139.6518;83.82375;112.5587;140.9261;142.6355;104.6648;105.5538;84.21269;117.253;103.3551;150.6226;116.0044;115.8939;132.5544;128.0482;117.4138;90.13951;124.5387;120.876;109.2996;111.8997;102.8576;115.8195;96.81821;109.2652;114.8031;116.3532;93.76809;87.78358;80.41392;98.23611;88.80637;100.7604;102.6994;89.29036;128.8048;124.4595;120.1703;89.59295;93.23906;91.19705;97.75607;96.88016;101.1569;107.99;92.8483;101.0241;91.91245;84.84301;88.24993;89.01279;102.7583;90.72872;105.2414;114.857;116.2556;115.8032;122.5629;114.1755;85.51968;111.8917;96.34851;112.3451;124.8311;96.04517;115.9473;122.4968;127.1505;145.5663;142.4731;107.9478;92.55537;85.32835;96.06152;106.5687;154.9261;136.0333;98.50014;109.6315;104.6909;125.3859;101.2667;81.92549;125.9516;81.94314;119.3048;116.9812;102.7841;106.776;90.64329;141.7227;114.6334;93.23878;110.47;131.7253;100.1968;97.70348;99.87965;124.4267;148.2795;115.105;105.4981;116.1067;112.7127;114.3223;119.4379;123.5031;118.3718;122.9796;123.8194;108.0881;103.587;95.64944;93.18719;138.5997;99.78471;133.0083;126.9203;99.75184;123.7629;106.2578;101.1672;97.34082;109.54;120.8497;113.359;139.552;114.0853;130.6902;74.42801;105.1711;147.3457;140.5603;113.8725;103.2156;89.59564;113.4419;98.62251;157.9022;110.4206;113.2427;122.051;133.4843;123.7;93.65578;127.491;131.9543;115.0011;117.1604;108.156;116.0409;89.70912;118.4052;108.7113;118.9669;95.48804;91.03473;75.28519;94.19198;87.7462;96.03703;91.29749;86.33865;132.7854;122.3264;127.8345;85.65822;98.00267;92.46451;94.235;102.7486;94.35329;106.3682;84.12746;105.8401;97.50458;88.27522;90.77365;98.53578;108.3108;95.49236;
106.1296;87.36156;86.97557;83.17154;89.81644;103.651;105.5065;110.5468;104.9442;109.0924;149.4574;127.5741;97.91443;99.4726;94.70579;98.43651;109.1197;111.9925;94.64337;92.85599;107.5461;96.18944;87.0127;109.1335;86.08764;87.15409;84.95157;113.8657;103.6046;90.26346;115.0322;106.8488;113.3358;97.30062;107.3345;92.90367;89.82674;124.0179;89.04231;128.5423;113.0439;107.5472;141.0267;124.5345;92.36985;87.71327;81.91257;85.80257;98.56582;143.2739;141.2846;92.79903;126.0989;100.5138;106.1139;88.74698;87.81474;118.8405;86.35841;113.3228;109.5281;90.15547;104.907;107.9514;130.0336;108.1059;94.11008;113.6881;122.2591;113.0215;102.3839;106.4836;141.46;125.3957;142.5856;105.7839;131.415;113.1539;116.2971;122.2021;132.2883;133.8153;115.5186;134.7971;110.827;99.78847;92.06592;114.2218;127.8387;83.09622;125.1819;131.1068;87.37565;99.82122;94.78963;92.65109;97.52525;124.059;119.2124;120.622;125.4545;117.1219;127.5782;97.90013;100.8752;130.5818;143.1999;88.83653;91.31033;81.2228;108.451;89.93579;140.3491;112.2269;125.9031;128.2564;147.5921;116.6276;75.64114;116.7214;129.9776;106.6716;120.8428;94.59281;108.9682;83.61195;105.4453;134.4563;107.5345;88.7455;90.7801;84.11574;93.67158;103.2922;105.452;113.3715;108.0482;112.8638;152.0737;123.9444;97.15447;96.24037;93.36655;95.964;111.298;114.0167;99.32229;94.28049;112.5289;96.25664;86.80021;112.9077;88.56024;91.85429;86.77236;111.1978;101.9916;88.29127;112.862;105.0105;114.6555;100.3844;111.6333;95.02013;93.57982;125.4242;88.82967;132.6385;115.8773;112.7642;143.3728;121.7463;90.69299;86.75883;80.10848;84.08971;102.4348;151.3996;148.7263;99.41659;134.4212;91.64861;111.3179;90.33114;91.10484;123.3595;90.65787;103.2098;105.9916;87.30455;93.32687;96.49572;130.3108;99.10303;94.78888;108.7816;135.7666;124.6995;106.2381;102.5634;142.4917;136.0096;142.7384;106.9135;129.0332;110.6355;120.1545;124.051;136.7532;141.6661;122.2559;142.7439;118.6268;90.95134;96.91686;116.0132;129.7869;83.18284;130.1849;123.0008;85.83033;97.80447;85.62093;83.74949;97.42221;112.1181;117.4852;113.2481;134.7062;126.3534;132.0965;90.76459;99.96249;136.6781;143.1973;92.28706;90.98058;79.98986;114.3078;93.315;144.5236;117.104;130.3241;133.4943;151.8806;104.6432;80.21165;114.7374;131.9198;106.7696;125.778;87.72816;107.2217;81.76692;95.77869;123.6883;
124.7639;124.6409;114.4443;127.8899;102.5944;90.68484;85.85259;111.5881;132.6966;112.9228;94.82007;105.6808;95.56297;92.27075;103.7636;108.5382;97.55758;88.21931;109.3403;130.8532;106.1506;81.71878;95.95471;96.21023;96.10779;98.67369;94.40537;98.38186;87.84528;92.80702;101.9336;97.31617;98.06576;87.23245;99.63708;92.0005;104.8825;108.2899;89.79758;117.4756;118.5333;129.6275;107.9632;113.3855;113.4421;94.43332;131.6331;80.42117;114.688;114.8098;118.3202;128.8236;146.4635;94.81886;96.85856;104.695;96.70763;87.12927;126.7717;132.0592;106.202;120.0048;114.1684;122.5357;100.216;87.21336;132.0491;92.30708;120.5916;92.14966;92.0295;110.2733;109.0376;139.523;115.2852;110.3351;130.7053;123.9917;115.1979;106.1404;96.40203;122.9406;122.5958;117.254;89.05868;112.9405;110.5803;118.1245;118.7615;119.2385;121.3448;111.6876;129.283;97.89936;107.1428;108.4221;101.5161;129.6937;95.06359;132.4536;130.8525;93.33027;105.7411;98.25253;102.7567;110.3794;139.452;119.2074;138.7107;129.5967;121.0041;122.7272;84.25401;100.5931;136.7138;132.7214;114.302;90.8205;89.88107;134.8687;103.6044;124.9767;95.97028;112.2111;139.9718;139.6056;122.6538;94.3466;129.0733;129.3305;117.6059;128.9554;108.0117;89.63825;88.24512;111.1864;133.3687;114.5226;98.98489;104.0509;96.7718;97.32114;102.9734;114.4185;101.1945;92.09178;112.2435;131.8368;111.4844;80.6599;97.972;95.54498;95.85023;98.96697;98.059;96.82294;88.60041;97.00945;101.0495;102.9115;101.2787;90.24217;102.3173;92.8376;109.7238;106.16;91.7471;116.7426;118.2446;129.966;111.8654;111.7137;111.1379;97.10394;129.3554;84.75265;120.1726;125.6068;129.6858;131.9532;150.1416;91.18314;95.68256;96.27892;92.70902;82.60436;135.0659;133.9384;101.8404;121.6782;108.0075;119.4223;98.77908;94.60687;133.2052;92.93264;119.7169;92.71591;101.7779;106.618;111.5307;137.5518;109.2765;108.5045;129.2309;124.611;101.5422;115.6461;101.4355;134.0997;134.1497;120.2407;91.93154;108.9646;109.314;109.1739;116.1042;114.9957;125.3422;113.612;126.9202;96.7048;103.1967;100.6514;98.25803;136.4383;93.52043;130.6239;128.053;97.46154;115.1564;96.29076;106.9075;109.6643;128.6471;117.5193;139.7956;127.1415;109.0713;127.5173;87.27802;108.7226;145.761;133.2888;115.7739;90.69415;87.87376;126.9971;101.1615;120.6353;99.53139;114.1625;137.5571;138.1818;118.4319;87.12724;
110.3982;88.41003;112.6384;133.1665;88.36032;107.4392;119.4831;115.0572;127.3343;127.884;102.1934;100.7497;98.27664;83.17577;116.4289;128.271;140.8681;102.1819;131.1995;115.4778;121.3403;90.54566;87.23206;121.608;82.88119;113.172;111.4888;110.1765;113.5607;80.25767;137.7221;111.1736;87.45812;103.8132;127.7809;129.201;106.7858;101.6201;127.0323;120.8794;110.5397;107.8791;114.63;109.2842;122.9732;114.0607;135.2845;129.8618;114.3267;115.1955;104.54;91.21603;97.92539;97.46415;127.776;83.17571;120.1058;141.2729;100.7183;111.565;116.4208;96.20136;102.886;137.2254;111.7285;111.028;145.868;120.7813;125.6358;74.60557;99.46743;129.6222;123.6377;93.69621;99.35376;89.78101;128.6229;88.45046;156.9652;93.30618;119.8708;136.2077;146.4203;124.0229;88.21153;112.0986;122.8223;104.4471;113.9305;93.93337;109.3629;102.5398;110.8599;101.6061;106.2236;90.29048;81.68578;77.53672;95.71206;109.7137;101.8699;104.1772;93.00021;107.5456;119.4887;125.5392;82.50539;92.24154;99.58711;87.92957;107.6213;107.3794;100.5256;80.48749;98.24297;82.19861;88.85116;97.77269;91.65237;95.50745;84.98904;117.811;112.9713;97.85537;134.2509;111.4693;116.6314;114.0197;110.2177;90.33137;110.3438;125.0023;81.56925;109.2622;117.8748;116.0306;126.6169;123.2986;99.294;98.47623;93.71333;82.173;108.134;128.4479;141.5143;104.6855;129.5354;108.3318;114.1129;92.62598;86.65736;123.7283;83.59847;108.6194;109.3663;108.6411;109.6392;78.89882;129.1219;112.2032;88.85661;105.9016;126.5791;122.5291;100.9691;103.4049;126.3413;122.9961;111.3704;103.4379;112.4802;107.7575;119.7515;113.4545;128.6562;131.8569;118.7359;118.642;104.4055;88.38152;89.05961;92.60147;128.8233;90.57426;122.9938;137.3802;100.2786;111.1895;113.6003;97.70084;101.1391;132.9179;119.341;115.5636;149.7993;124.9091;124.4495;80.35082;100.6811;139.1934;135.1008;86.47075;96.95168;88.59946;125.4267;89.39141;144.81;98.34058;124.3848;139.942;146.2611;120.7086;79.80767;106.8694;123.8492;112.7137;113.7874;94.14501;111.9166;101.2733;111.1442;103.7017;110.4136;85.17957;85.00056;78.78745;100.8124;117.4985;105.7969;108.0626;93.15301;113.3953;127.6599;120.9694;82.92057;90.18813;99.67538;89.37909;103.3924;110.934;101.1856;80.78164;100.0306;82.72926;84.8794;90.25989;91.52308;100.7007;84.88346;118.0282;115.5877;96.61798;134.5865;113.6443;121.0416;108.2668;
121.1099;117.8474;124.7926;110.2384;118.6502;134.6002;126.6862;112.0128;79.38593;121.7037;134.145;93.24406;125.2149;92.81936;95.48759;85.01273;93.26128;127.9621;92.87062;81.22518;83.89928;84.556;108.1927;105.7451;99.10983;105.0489;86.01314;122.7329;149.3932;110.6319;84.52071;90.79091;108.5143;110.5566;110.2384;94.68934;87.13119;86.09959;94.31699;99.75922;92.31993;117.6981;93.1396;103.5665;98.27179;123.4657;125.7766;102.4127;113.6282;118.8162;110.5225;106.6502;127.8232;89.50571;101.861;125.6167;83.20885;136.8734;118.6105;117.2697;155.7942;117.6569;107.2971;98.57178;88.70152;111.455;85.44659;147.6861;138.3075;100.3903;111.8734;96.72481;108.1635;97.33471;95.64334;109.905;95.06277;107.6058;96.12882;91.70393;89.69707;103.962;116.8435;105.323;93.09954;114.2816;143.507;117.8022;95.424;101.8229;115.2079;143.9405;140.1854;91.35757;115.8016;108.9887;135.2504;136.7955;137.4079;115.9931;106.3329;125.1508;94.43562;108.4891;96.08089;122.3293;132.6739;95.96022;136.6967;143.4247;108.4926;120.5444;100.5192;104.601;95.80254;133.5219;133.3539;115.4296;130.6131;116.8729;122.8204;100.7798;102.5585;133.7607;152.1476;87.50361;107.9624;95.54288;121.8246;118.2752;127.6371;111.3911;119.3588;133.4556;126.9456;113.0497;77.21763;121.55;134.8356;95.15745;123.7938;91.91528;97.11169;86.65951;93.71723;128.3136;95.15403;82.14968;84.34141;83.56617;107.3454;106.2511;97.39716;104.7423;85.60241;124.7533;149.2478;109.7945;85.46472;92.33458;110.1976;111.0537;112.0641;95.52477;88.65683;85.24179;93.52368;100.2528;90.66492;117.3759;92.70984;105.4252;95.325;123.5995;125.7502;105.377;115.8499;110.526;111.0702;109.6113;136.931;87.09911;95.07015;122.5956;85.33732;131.3117;116.416;106.6984;152.8477;117.672;104.0489;105.409;96.44901;109.1587;86.00275;146.1025;142.0017;96.38503;114.5866;89.91529;106.806;85.68901;95.42323;112.0574;98.90476;106.7789;101.2339;99.96116;91.67184;96.20741;117.4018;108.2658;100.895;111.5497;135.4195;114.8772;96.98611;97.78036;113.0026;132.4269;140.9398;91.23464;112.4472;113.0456;139.9367;134.2327;135.5218;115.8514;110.919;120.6397;98.77129;99.48743;94.11849;110;132.3698;98.18053;144.9228;142.2935;113.9449;126.7044;98.56219;96.80228;94.16653;138.2065;144.2035;112.6576;124.9967;112.0644;124.6336;96.74026;100.4996;122.6937;152.9799;87.36626;104.7461;99.36462;
109.9526;107.9942;90.39958;147.5327;123.0584;108.1126;105.6029;107.3591;100.4733;115.1004;110.2858;118.6016;90.85159;88.27474;109.8185;112.7091;115.9801;135.1927;98.01641;125.5278;121.6992;150.0993;80.68909;125.8999;123.5232;104.1297;125.1059;108.4903;106.9644;95.5957;81.26135;118.0826;90.5353;104.0106;91.29969;124.9546;92.65025;100.087;112.4553;113.8924;130.7064;112.1118;117.1411;118.7286;110.0982;77.66035;108.4029;115.7499;124.4202;90.32247;131.9218;135.3451;115.2117;133.6155;91.42116;101.0103;109.6579;102.4859;133.5119;98.0008;119.7885;139.5375;128.4032;86.46767;88.2671;128.9372;118.6173;136.1365;123.7514;121.0221;108.72;109.7073;103.7106;97.59103;141.8066;119.5627;88.79139;86.46474;91.90327;144.8268;95.51137;108.3338;99.23877;101.8291;77.61958;134.535;73.35828;107.706;97.31554;84.6207;94.24456;104.1026;95.52016;90.5437;86.86411;111.2579;90.6742;102.0139;87.49907;103.0759;90.84864;89.53307;95.8082;96.24725;122.5993;130.3056;117.2495;103.6736;96.48481;99.60528;106.4981;82.57394;111.4139;99.00037;107.9053;123.7308;90.82024;114.8621;92.39651;96.09699;97.8884;100.9969;114.6433;101.5275;119.2154;94.47069;129.0835;93.66666;112.8197;109.412;91.78751;145.0168;122.2836;103.664;105.7932;100.6066;94.00262;108.5326;112.0165;120.4605;95.52113;88.71146;109.4623;107.7649;119.7061;137.281;100.1764;123.6853;121.7173;145.3678;80.69832;119.5546;115.9471;99.24863;126.7741;111.0166;111.1486;97.21938;80.36939;113.7701;93.01994;107.0611;92.77483;123.9063;91.86781;97.40189;112.4688;107.8638;122.9124;107.0475;118.7582;121.3735;112.9308;80.38406;106.994;112.5037;133.9256;90.06244;131.5768;132.4259;118.2154;127.2303;95.39803;87.60221;102.873;85.7242;135.9706;101.8229;130.4975;142.4128;133.0826;89.08536;90.78619;121.8623;118.5653;139.0416;131.6879;117.1015;103.7952;99.90822;101.2817;88.02179;140.8745;110.4166;91.19563;89.22125;86.91614;146.854;103.8513;108.0439;98.93885;99.29456;80.0798;128.122;76.92448;93.84066;95.30366;74.38946;94.52368;106.7173;102.3595;89.91929;91.99445;117.4703;88.48017;93.79021;85.70329;107.7493;99.75683;87.35693;91.52048;91.5626;124.9569;125.6438;114.4487;93.92851;96.31948;99.47746;102.4919;86.90475;114.9993;96.76088;105.6624;123.2281;95.53001;110.2818;96.73085;87.40119;95.85174;89.78876;114.9692;104.1112;126.8206;93.83271;135.341;99.37502;
101.7206;113.5696;93.65211;93.68175;93.11456;103.9763;96.04453;95.6109;102.7202;96.51772;100.0613;106.0508;122.3755;110.8906;92.74989;105.7376;103.7159;97.6352;93.72713;92.28659;100.842;99.75336;93.01334;80.82194;89.17775;114.9848;102.0587;92.28022;84.10064;104.1446;119.5442;101.8866;130.1048;107.3435;124.799;96.70869;134.9951;114.1762;114.2409;138.1265;97.21718;122.7437;114.8133;107.4475;144.8503;142.9402;90.48576;88.01245;88.35022;99.78928;100.5524;146.0438;129.8905;116.0202;109.9137;102.2867;132.0397;101.8101;110.3377;95.84217;94.10284;121.9182;98.78348;98.19575;99.02547;90.72532;116.2929;113.534;99.05051;137.62;126.477;108.0132;101.8387;94.80769;134.6341;121.268;114.4724;91.23069;119.6728;119.9166;127.3203;124.2624;115.6782;113.7644;122.278;142.3375;92.12937;84.33067;97.48306;119.8367;146.9546;85.80547;122.696;124.789;102.1046;110.5346;109.4638;93.21907;111.9772;122.059;140.1752;140.8112;146.6389;130.0231;137.2101;90.30428;103.5447;126.2833;144.5786;109.389;88.13867;75.30261;119.1484;103.0611;148.5389;110.8477;109.958;152.4044;123.1623;117.6817;100.7047;128.5484;158.4769;86.54871;128.2328;108.5443;97.81081;87.63268;102.4503;114.979;99.75801;95.58821;94.11475;105.0303;95.51521;97.65868;105.5434;100.7839;104.2497;108.6233;124.7775;114.2553;91.19754;99.8291;104.272;98.85966;99.65872;94.09853;101.6971;100.6938;91.98999;82.41747;90.99376;118.3225;105.7591;94.69337;85.67992;106.4832;117.6642;96.09274;130.2274;107.7084;131.5165;98.57579;135.472;114.2378;113.1039;140.2124;99.11047;126.1938;118.7334;110.0524;145.8694;145.6036;89.68533;83.54475;87.67245;95.3548;109.2016;139.288;136.1423;115.8061;108.3014;110.756;134.3865;107.1967;110.5089;98.37897;92.66768;120.4605;90.72963;93.79301;98.90983;93.46692;125.6101;115.127;99.94125;128.2116;118.4332;116.5177;102.5;104.7057;129.5009;128.8493;115.7931;93.12109;121.2162;119.1145;126.506;119.3032;124.932;107.8112;128.3456;142.095;90.64507;92.03629;97.76389;123.4748;145.034;85.77507;120.1245;120.8388;94.72919;110.8586;109.4067;96.75113;116.6998;121.5168;141.7979;131.2746;138.1562;136.0894;135.9578;98.01064;97.30012;131.0331;145.0669;109.1168;90.25728;78.8961;118.4536;99.32331;153.9356;102.9488;116.2417;152.1355;121.6483;123.6521;101.0281;132.3188;156.4854;86.53783;125.646;104.8653;90.59753;87.94095;
93.56747;95.22518;84.17737;106.7266;107.1402;95.28294;113.7202;88.18978;140.67;102.6976;123.2349;90.36079;88.59842;136.0352;125.6248;133.3289;89.2058;102.1558;94.00126;125.8428;104.4863;116.4844;107.8278;113.0522;120.3688;100.4936;111.689;133.9462;104.0049;118.7549;136.7684;129.3928;94.36811;152.2232;127.19;95.41579;124.4321;94.41953;127.7334;121.7016;91.72872;152.8089;92.07466;108.0161;102.392;123.0722;99.4463;99.88105;102.2101;108.8635;114.4598;90.83422;120.5157;86.54713;112.5979;93.45741;96.57615;120.1944;121.3182;86.60496;112.1207;128.074;138.7531;139.8239;95.60983;95.66759;89.62482;103.7626;127.184;93.91045;114.6672;134.7897;142.5762;95.79704;102.4962;113.6328;121.2364;124.8506;126.2347;145.4159;91.23827;109.2712;96.17982;112.1808;137.1791;120.607;104.0352;109.4132;105.8979;131.5378;88.77957;109.2579;106.09;98.3161;87.50007;121.5338;89.34398;136.3286;107.234;80.77367;97.14902;87.05727;109.5274;110.2173;101.7903;155.1977;86.58294;107.7548;94.93427;102.5888;100.5618;94.91536;89.34493;98.79899;117.4006;117.0324;123.1285;74.5315;94.23934;112.0758;96.22047;89.90192;104.617;90.06947;87.1048;121.4412;110.8074;122.9304;95.39022;96.79745;82.69399;106.0793;110.6611;94.08913;111.3067;82.6936;141.397;102.858;117.2663;90.03318;88.93449;136.2662;123.7346;131.4079;91.66972;104.2218;93.1227;125.6312;108.7012;115.6274;106.3622;107.8448;122.6333;100.4399;106.8977;134.4942;105.3388;118.5223;135.2398;128.4063;97.85423;154.2426;126.598;96.02218;130.1142;93.25078;126.1406;116.2991;93.70929;152.7458;87.73148;108.5109;102.3305;124.44;99.59488;101.9088;116.5777;120.6398;117.4828;92.09264;131.7668;93.895;107.5492;87.76032;101.3453;125.1004;120.3934;91.39012;115.5851;134.6763;129.78;144.0042;102.9505;93.64685;86.86566;106.0212;137.394;87.30345;115.6305;132.2218;143.2552;98.85674;98.69566;122.8768;115.174;123.7024;120.2564;143.6912;104.8389;121.0586;98.95255;113.5736;149.1662;129.2433;99.18451;103.2366;110.5227;135.5974;89.98023;114.6759;109.5;102.8461;80.25789;123.156;94.64114;130.9196;102.2362;82.67766;102.3448;80.46141;110.4276;110.0296;102.0368;157.9076;85.04197;116.8127;89.63738;100.2952;95.09727;91.56723;100.971;107.3054;118.3508;118.347;130.2635;81.11665;89.58363;107.9361;100.6509;93.24583;105.9402;94.99445;90.21579;126.4497;102.6579;124.5615;
116.9772;94.33689;120.4167;100.5075;96.43314;119.3062;94.81335;119.2861;129.116;95.5881;129.9559;117.564;141.7584;102.62;134.1862;102.5435;92.07364;108.5739;93.23898;119.6997;108.8133;88.45166;136.0099;102.1019;108.6228;110.7774;128.6778;91.05293;102.5008;130.4858;120.2566;127.9214;89.51263;121.3579;107.6098;118.6437;92.80564;114.6992;113.5472;124.3604;88.34411;117.7363;108.29;104.4532;128.9873;88.03062;86.5835;90.21077;90.74673;106.5279;91.74836;118.1682;141.505;130.1084;79.04954;100.0713;125.9297;134.0633;115.9963;115.7268;127.0801;102.7051;103.5715;108.4785;103.5657;126.0267;123.2427;98.64267;92.72891;101.6048;126.3091;99.91282;104.883;96.31195;107.5208;73.57167;129.5029;93.46144;114.9354;85.60324;79.36674;78.51369;84.48142;104.4942;100.4975;97.00417;136.0799;99.16665;112.4191;103.8876;105.4885;92.00625;92.36765;111.5119;111.7746;128.8342;113.4433;121.0923;96.43803;98.50718;110.9714;114.9436;85.64455;104.6814;96.15617;94.15385;103.4794;83.99565;109.5078;86.38512;89.56519;85.1097;91.59395;88.1021;95.06493;108.7668;94.07764;125.9173;87.799;114.628;105.0766;101.0492;125.7666;117.6864;110.5534;102.6359;102.9374;106.8818;117.3529;94.25021;125.1778;98.37613;94.30067;118.8048;97.05939;116.9502;133.0481;95.6081;132.7193;119.9873;136.5039;103.5445;140.5092;104.7986;92.23699;108.3944;97.25948;117.2832;106.3667;87.93536;137.4667;99.46553;113.0066;110.6108;130.229;93.02718;99.17934;131.6927;125.5373;130.2614;90.76195;121.3254;111.2578;116.0588;91.64034;114.2745;114.876;121.4513;92.29959;117.5668;109.7109;106.5691;127.8211;88.17003;89.79926;92.82802;94.96269;115.6278;99.38801;124.6053;131.099;128.423;79.05116;93.85287;126.7127;133.2718;128.1701;122.4369;126.6073;95.94377;107.6827;111.2214;99.11241;129.8339;130.0278;95.01428;88.03802;96.21205;135.2312;102.458;103.4299;100.9424;115.9092;80.00442;123.7231;94.73025;123.5843;83.89404;83.31229;86.34324;91.81422;110.5525;91.75896;95.54002;136.0768;92.97694;111.3735;104.2779;114.4863;95.78795;92.95942;104.288;112.3795;128.6955;110.0025;125.8754;97.88317;97.05299;104.7652;110.5273;93.10575;109.3325;93.15396;99.77629;109.149;88.74458;105.2808;87.44128;93.87768;80.94456;96.9994;97.30349;98.27868;117.3313;84.68188;125.6676;87.89937;110.0146;104.1042;101.4157;135.5991;121.9817;111.2403;95.69251;103.5396;106.7772;
91.91828;89.89932;134.6646;88.95072;150.8879;143.0517;92.27766;127.392;89.98362;91.70322;96.29778;125.2394;130.0963;124.8341;131.6822;139.8712;116.275;93.32355;107.3132;144.5628;124.6797;91.36012;97.46516;82.72198;121.7075;103.886;140.7852;101.7522;108.3227;142.215;134.9845;131.1031;79.577;108.7106;145.55;101.5507;133.4435;96.56973;105.4959;102.8942;94.47221;117.8502;116.7345;90.76239;93.61702;76.33918;101.1457;93.13895;93.01907;100.5722;93.78249;116.9868;129.0808;110.8106;88.53922;97.61671;93.02614;103.4973;109.0634;94.92316;93.93176;83.97977;90.26744;93.58852;88.83257;88.17548;94.85709;93.69688;108.6665;120.5266;107.4202;108.6205;108.9544;106.8596;116.6547;98.5029;124.58;99.91753;100.5903;146.836;80.04224;128.3473;124.3252;125.086;124.6564;120.9872;97.92738;90.32191;98.31103;97.80882;104.602;133.6668;129.0088;104.4799;120.2966;113.4377;114.3251;82.64399;105.9428;116.9575;99.6353;108.3407;102.6604;105.088;97.73396;95.86468;144.0627;110.2542;100.2379;105.1728;134.4777;98.63943;92.53252;96.2593;130.1324;136.1814;121.8361;89.27332;115.1721;109.2688;119.9983;130.2939;136.3888;115.2926;114.3968;124.3226;93.97097;95.53306;95.60073;87.00036;139.7843;88.30344;151.3833;138.8831;89.77724;123.3689;96.96991;91.72788;101.4456;121.7768;133.8059;123.047;134.3004;134.5075;121.1988;90.77802;112.6469;144.2656;125.9427;88.43068;94.72467;80.30199;129.3993;105.3324;146.7946;99.35161;110.8435;141.7087;136.8714;126.7231;82.89358;107.1983;150.9601;102.0183;133.7872;94.71255;102.6464;100.1956;101.2654;119.3932;122.2149;88.49825;95.80296;76.8998;102.8089;89.38459;93.98026;88.83401;86.93983;115.6995;121.0743;109.7176;86.50262;97.67113;103.9651;107.2615;108.6089;95.51758;99.33473;90.02567;89.76134;88.70559;84.02476;94.57861;95.28129;99.30784;104.9202;121.2901;113.096;103.8499;115.2699;105.8298;118.728;98.49466;117.9647;101.1086;94.40144;140.8016;80.92531;115.0345;116.4263;123.7496;116.78;119.8396;95.78423;90.3699;103.3768;101.0089;100.9274;137.1785;132.72;110.5117;117.8901;112.1739;105.9691;91.13506;103.7047;122.7204;95.89169;109.9141;111.1;103.1699;97.70362;94.44436;142.5476;112.79;92.13391;105.7203;125.4525;97.55373;90.79816;87.0238;119.1835;134.2673;113.8841;89.05244;115.7926;112.2145;125.5668;133.9832;132.2075;118.5571;117.8722;130.8943;91.86164;94.37482;
85.64771;114.1918;117.5311;108.1004;89.26017;116.1757;144.0555;134.9831;89.88995;99.25355;131.7354;126.9501;131.3399;141.0857;135.347;111.0828;85.19014;115.9403;114.2238;131.3175;108.849;102.7716;91.4679;97.30948;125.0177;91.21626;109.2072;89.62801;94.52914;85.4659;117.4475;78.33076;103.2649;94.08529;86.38251;86.09275;94.61082;107.6038;102.4756;90.8537;118.5131;107.1907;107.0495;87.57514;95.87445;98.54187;104.4741;106.6496;105.2148;117.5061;120.6825;111.6932;81.39295;115.9931;111.629;113.1424;86.29464;129.5509;106.7992;104.1606;122.4561;112.8931;121.9428;87.15476;86.3157;108.1299;122.4538;90.3026;93.70337;115.402;95.71886;138.5279;99.35677;118.7212;110.376;94.71859;144.3739;143.7139;119.6969;114.0239;82.1538;113.7962;129.2037;98.61407;110.6111;108.5815;94.29122;114.4036;96.37038;106.8961;129.2349;89.78791;120.4149;133.6417;128.4554;84.98798;119.5207;109.1438;96.98188;120.1516;101.8811;121.6693;102.8867;79.34821;117.9313;104.97;105.1525;92.64732;122.4098;94.59607;113.5311;121.5417;111.996;114.1547;92.18362;116.4422;93.02615;135.7507;86.09631;107.2707;116.007;138.3407;96.97453;126.6655;132.2174;137.8447;139.1926;85.74986;83.82035;115.4635;115.8558;111.0056;92.67782;118.2574;141.0692;131.7209;91.15913;96.88234;128.2217;125.7123;138.2293;141.8806;138.6632;110.791;83.20621;117.1317;112.3846;134.4224;112.4437;104.6554;88.60532;94.25238;125.5644;87.81066;105.4892;88.60138;99.95814;85.27612;120.4279;78.106;100.6475;94.2989;84.7003;88.62212;97.52943;108.6103;99.44191;87.90253;119.0427;103.4983;103.3663;86.56232;98.36517;96.77272;106.1329;105.537;102.6697;116.3456;116.9117;103.2592;85.06738;107.2581;111.1768;113.2871;93.30901;135.1977;108.9108;112.1017;121.1556;113.9596;127.4036;86.32174;84.22312;111.6123;110.2741;93.81201;93.92918;117.4101;87.63053;129.7543;98.93036;114.9693;109.6929;95.14241;140.6561;141.9168;121.3161;110.8584;79.90636;112.6494;125.2908;90.69923;114.8875;100.1312;93.86678;114.5492;104.6998;117.2626;135.7913;96.86906;116.3984;136.8834;132.1979;85.15546;121.4139;113.777;87.94407;119.6883;102.1505;124.4173;98.54216;76.16436;118.4755;106.4266;108.2501;92.78494;116.2884;94.88133;113.3815;119.4728;113.6082;114.1543;90.68329;103.6277;96.99898;126.9764;89.56976;111.557;125.1712;150.1042;102.6674;135.0754;128.0498;141.1401;143.0903;85.93766;

11
Game/Logs/mapdump.map Normal file

File diff suppressed because one or more lines are too long

View File

@ -1,98 +1,93 @@
<?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="4.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<PropertyGroup>
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
<ProductVersion>10.0.20506</ProductVersion>
<SchemaVersion>2.0</SchemaVersion>
<ProjectGuid>{02576F1D-BE9C-CFA7-763D-1EBF63B36977}</ProjectGuid>
<OutputType>Library</OutputType>
<RootNamespace>
</RootNamespace>
<AssemblyName>Assembly-CSharp</AssemblyName>
<FileAlignment>512</FileAlignment>
<ProjectTypeGuids>{E097FAD1-6243-4DAD-9C02-E9B9EFC3FFC1};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}</ProjectTypeGuids>
<TargetFrameworkIdentifier>.NETFramework</TargetFrameworkIdentifier>
<TargetFrameworkVersion>v3.5</TargetFrameworkVersion>
<TargetFrameworkProfile>Unity Subset v3.5</TargetFrameworkProfile>
<CompilerResponseFile>
</CompilerResponseFile>
<UnityProjectType>Game:1</UnityProjectType>
<UnityBuildTarget>StandaloneWindows:5</UnityBuildTarget>
<UnityVersion>5.0.0f4</UnityVersion>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
<DebugType>pdbonly</DebugType>
<Optimize>false</Optimize>
<OutputPath>Temp\UnityVS_bin\Debug\</OutputPath>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
<DefineConstants>DEBUG;TRACE;UNITY_5_0_0;UNITY_5_0;UNITY_5;ENABLE_LICENSE_RENAME;ENABLE_NEW_BUGREPORTER;ENABLE_2D_PHYSICS;ENABLE_4_6_FEATURES;ENABLE_AUDIO;ENABLE_CACHING;ENABLE_CLOTH;ENABLE_DUCK_TYPING;ENABLE_FRAME_DEBUGGER;ENABLE_GENERICS;ENABLE_HOME_SCREEN;ENABLE_IMAGEEFFECTS;ENABLE_LIGHT_PROBES_LEGACY;ENABLE_MICROPHONE;ENABLE_MULTIPLE_DISPLAYS;ENABLE_NEW_HIERARCHY;ENABLE_PHYSICS;ENABLE_PHYSICS_PHYSX3;ENABLE_PLUGIN_INSPECTOR;ENABLE_SHADOWS;ENABLE_SINGLE_INSTANCE_BUILD_SETTING;ENABLE_SPRITES;ENABLE_TERRAIN;ENABLE_UNITYEVENTS;ENABLE_WEBCAM;ENABLE_WWW;ENABLE_AUDIOMIXER_SUSPEND;ENABLE_NONPRO;INCLUDE_DYNAMIC_GI;INCLUDE_GI;INCLUDE_IL2CPP;PLATFORM_SUPPORTS_MONO;RENDER_SOFTWARE_CURSOR;UNITY_STANDALONE_WIN;UNITY_STANDALONE;ENABLE_SUBSTANCE;ENABLE_TEXTUREID_MAP;ENABLE_RUNTIME_GI;ENABLE_MOVIES;ENABLE_NETWORK;ENABLE_MONO;DEVELOPMENT_BUILD;ENABLE_PROFILER;UNITY_EDITOR;UNITY_EDITOR_64;UNITY_EDITOR_WIN</DefineConstants>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
<DebugType>pdbonly</DebugType>
<Optimize>false</Optimize>
<OutputPath>Temp\UnityVS_bin\Release\</OutputPath>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
<DefineConstants>TRACE;UNITY_5_0_0;UNITY_5_0;UNITY_5;ENABLE_LICENSE_RENAME;ENABLE_NEW_BUGREPORTER;ENABLE_2D_PHYSICS;ENABLE_4_6_FEATURES;ENABLE_AUDIO;ENABLE_CACHING;ENABLE_CLOTH;ENABLE_DUCK_TYPING;ENABLE_FRAME_DEBUGGER;ENABLE_GENERICS;ENABLE_HOME_SCREEN;ENABLE_IMAGEEFFECTS;ENABLE_LIGHT_PROBES_LEGACY;ENABLE_MICROPHONE;ENABLE_MULTIPLE_DISPLAYS;ENABLE_NEW_HIERARCHY;ENABLE_PHYSICS;ENABLE_PHYSICS_PHYSX3;ENABLE_PLUGIN_INSPECTOR;ENABLE_SHADOWS;ENABLE_SINGLE_INSTANCE_BUILD_SETTING;ENABLE_SPRITES;ENABLE_TERRAIN;ENABLE_UNITYEVENTS;ENABLE_WEBCAM;ENABLE_WWW;ENABLE_AUDIOMIXER_SUSPEND;ENABLE_NONPRO;INCLUDE_DYNAMIC_GI;INCLUDE_GI;INCLUDE_IL2CPP;PLATFORM_SUPPORTS_MONO;RENDER_SOFTWARE_CURSOR;UNITY_STANDALONE_WIN;UNITY_STANDALONE;ENABLE_SUBSTANCE;ENABLE_TEXTUREID_MAP;ENABLE_RUNTIME_GI;ENABLE_MOVIES;ENABLE_NETWORK;ENABLE_MONO;DEVELOPMENT_BUILD;ENABLE_PROFILER;UNITY_EDITOR;UNITY_EDITOR_64;UNITY_EDITOR_WIN</DefineConstants>
</PropertyGroup>
<ItemGroup>
<Reference Include="mscorlib" />
<Reference Include="System" />
<Reference Include="System.XML" />
<Reference Include="System.Core" />
<Reference Include="Boo.Lang" />
<Reference Include="UnityScript.Lang" />
<Reference Include="UnityEngine">
<HintPath>Library\UnityAssemblies\UnityEngine.dll</HintPath>
</Reference>
<Reference Include="UnityEditor">
<HintPath>Library\UnityAssemblies\UnityEditor.dll</HintPath>
</Reference>
<Reference Include="System.Xml.Linq" />
<Reference Include="UnityEngine.UI">
<HintPath>Library\UnityAssemblies\UnityEngine.UI.dll</HintPath>
</Reference>
<Reference Include="UnityEngine.UI">
<HintPath>Library\UnityAssemblies\UnityEngine.UI.dll</HintPath>
</Reference>
<Reference Include="Assembly-UnityScript-firstpass">
<HintPath>Library\ScriptAssemblies\Assembly-UnityScript-firstpass.dll</HintPath>
</Reference>
</ItemGroup>
<ItemGroup>
<ProjectReference Include="UnityVS.Game.CSharp.Plugins.csproj">
<Project>{527E1417-8234-0FCE-C999-DD73988695F2}</Project>
<Name>UnityVS.Game.CSharp.Plugins</Name>
</ProjectReference>
</ItemGroup>
<ItemGroup>
<Compile Include="Assets\Scripts\Business\BiomeManager.cs" />
<Compile Include="Assets\Scripts\Business\ConfigurationManager.cs" />
<Compile Include="Assets\Scripts\Generator\TerrainGenerator.cs" />
<Compile Include="Assets\Scripts\InitializeScript.cs" />
<Compile Include="Assets\Scripts\Model\Biome.cs" />
<Compile Include="Assets\Scripts\Model\Config\TerrainGeneratorConfig.cs" />
<Compile Include="Assets\Scripts\Model\Map.cs" />
<Compile Include="Assets\Scripts\Noise\NoiseGenerator.cs" />
<Compile Include="Assets\Scripts\Noise\PerlinNoiseGenerator.cs" />
<Compile Include="Assets\Scripts\TerrainGeneratorScript.cs" />
<Compile Include="Assets\Scripts\Utils\Algorithms.cs" />
<Compile Include="Assets\Scripts\Utils\Algorithms\GridTraverseAlgorithm.cs" />
<Compile Include="Assets\Scripts\Utils\ColorHelper.cs" />
<Compile Include="Assets\Scripts\Utils\Logger.cs" />
<Compile Include="Assets\Scripts\Utils\RandomExtensions.cs" />
<Compile Include="Assets\Scripts\Utils\Range.cs" />
<Compile Include="Assets\Scripts\Utils\Task.cs" />
<Compile Include="Assets\Scripts\Utils\Texture2DExtensions.cs" />
<Compile Include="Assets\Scripts\Utils\XmlHelper.cs" />
</ItemGroup>
<ItemGroup>
<None Include="Assets\Data\Biomes\Grassland\Grassland.xml" />
<None Include="Assets\Data\Biomes\Mountain\Mountain.xml" />
<None Include="Assets\Data\Config\tergen.xml" />
<None Include="Assets\Standard Assets\Environment\Water (Basic)\Shaders\FXWaterBasic.shader" />
</ItemGroup>
<Import Project="$(MSBuildExtensionsPath)\SyntaxTree\UnityVS\2012\UnityVS.CSharp.targets" />
</Project>
<?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="4.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<PropertyGroup>
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
<ProductVersion>10.0.20506</ProductVersion>
<SchemaVersion>2.0</SchemaVersion>
<ProjectGuid>{02576F1D-BE9C-CFA7-763D-1EBF63B36977}</ProjectGuid>
<OutputType>Library</OutputType>
<RootNamespace></RootNamespace>
<AssemblyName>Assembly-CSharp</AssemblyName>
<FileAlignment>512</FileAlignment>
<ProjectTypeGuids>{E097FAD1-6243-4DAD-9C02-E9B9EFC3FFC1};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}</ProjectTypeGuids>
<TargetFrameworkIdentifier>.NETFramework</TargetFrameworkIdentifier>
<TargetFrameworkVersion>v3.5</TargetFrameworkVersion>
<TargetFrameworkProfile>Unity Subset v3.5</TargetFrameworkProfile>
<CompilerResponseFile></CompilerResponseFile>
<UnityProjectType>Game:1</UnityProjectType>
<UnityBuildTarget>StandaloneWindows:5</UnityBuildTarget>
<UnityVersion>5.0.0f4</UnityVersion>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
<DebugType>pdbonly</DebugType>
<Optimize>false</Optimize>
<OutputPath>Temp\UnityVS_bin\Debug\</OutputPath>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
<DefineConstants>DEBUG;TRACE;UNITY_5_0_0;UNITY_5_0;UNITY_5;ENABLE_LICENSE_RENAME;ENABLE_NEW_BUGREPORTER;ENABLE_2D_PHYSICS;ENABLE_4_6_FEATURES;ENABLE_AUDIO;ENABLE_CACHING;ENABLE_CLOTH;ENABLE_DUCK_TYPING;ENABLE_FRAME_DEBUGGER;ENABLE_GENERICS;ENABLE_HOME_SCREEN;ENABLE_IMAGEEFFECTS;ENABLE_LIGHT_PROBES_LEGACY;ENABLE_MICROPHONE;ENABLE_MULTIPLE_DISPLAYS;ENABLE_NEW_HIERARCHY;ENABLE_PHYSICS;ENABLE_PHYSICS_PHYSX3;ENABLE_PLUGIN_INSPECTOR;ENABLE_SHADOWS;ENABLE_SINGLE_INSTANCE_BUILD_SETTING;ENABLE_SPRITES;ENABLE_TERRAIN;ENABLE_UNITYEVENTS;ENABLE_WEBCAM;ENABLE_WWW;ENABLE_AUDIOMIXER_SUSPEND;ENABLE_NONPRO;INCLUDE_DYNAMIC_GI;INCLUDE_GI;INCLUDE_IL2CPP;PLATFORM_SUPPORTS_MONO;RENDER_SOFTWARE_CURSOR;UNITY_STANDALONE_WIN;UNITY_STANDALONE;ENABLE_SUBSTANCE;ENABLE_TEXTUREID_MAP;ENABLE_RUNTIME_GI;ENABLE_MOVIES;ENABLE_NETWORK;ENABLE_MONO;DEVELOPMENT_BUILD;ENABLE_PROFILER;UNITY_EDITOR;UNITY_EDITOR_64;UNITY_EDITOR_WIN</DefineConstants>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
<DebugType>pdbonly</DebugType>
<Optimize>false</Optimize>
<OutputPath>Temp\UnityVS_bin\Release\</OutputPath>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
<DefineConstants>TRACE;UNITY_5_0_0;UNITY_5_0;UNITY_5;ENABLE_LICENSE_RENAME;ENABLE_NEW_BUGREPORTER;ENABLE_2D_PHYSICS;ENABLE_4_6_FEATURES;ENABLE_AUDIO;ENABLE_CACHING;ENABLE_CLOTH;ENABLE_DUCK_TYPING;ENABLE_FRAME_DEBUGGER;ENABLE_GENERICS;ENABLE_HOME_SCREEN;ENABLE_IMAGEEFFECTS;ENABLE_LIGHT_PROBES_LEGACY;ENABLE_MICROPHONE;ENABLE_MULTIPLE_DISPLAYS;ENABLE_NEW_HIERARCHY;ENABLE_PHYSICS;ENABLE_PHYSICS_PHYSX3;ENABLE_PLUGIN_INSPECTOR;ENABLE_SHADOWS;ENABLE_SINGLE_INSTANCE_BUILD_SETTING;ENABLE_SPRITES;ENABLE_TERRAIN;ENABLE_UNITYEVENTS;ENABLE_WEBCAM;ENABLE_WWW;ENABLE_AUDIOMIXER_SUSPEND;ENABLE_NONPRO;INCLUDE_DYNAMIC_GI;INCLUDE_GI;INCLUDE_IL2CPP;PLATFORM_SUPPORTS_MONO;RENDER_SOFTWARE_CURSOR;UNITY_STANDALONE_WIN;UNITY_STANDALONE;ENABLE_SUBSTANCE;ENABLE_TEXTUREID_MAP;ENABLE_RUNTIME_GI;ENABLE_MOVIES;ENABLE_NETWORK;ENABLE_MONO;DEVELOPMENT_BUILD;ENABLE_PROFILER;UNITY_EDITOR;UNITY_EDITOR_64;UNITY_EDITOR_WIN</DefineConstants>
</PropertyGroup>
<ItemGroup>
<Reference Include="mscorlib" />
<Reference Include="System" />
<Reference Include="System.XML" />
<Reference Include="System.Core" />
<Reference Include="Boo.Lang" />
<Reference Include="UnityScript.Lang" />
<Reference Include="UnityEngine">
<HintPath>Library\UnityAssemblies\UnityEngine.dll</HintPath>
</Reference>
<Reference Include="UnityEditor">
<HintPath>Library\UnityAssemblies\UnityEditor.dll</HintPath>
</Reference>
<Reference Include="System.Xml.Linq" />
<Reference Include="UnityEngine.UI">
<HintPath>Library\UnityAssemblies\UnityEngine.UI.dll</HintPath>
</Reference>
<Reference Include="Assembly-UnityScript-firstpass">
<HintPath>Library\ScriptAssemblies\Assembly-UnityScript-firstpass.dll</HintPath>
</Reference>
</ItemGroup>
<ItemGroup>
<ProjectReference Include="UnityVS.Game.CSharp.Plugins.csproj">
<Project>{527E1417-8234-0FCE-C999-DD73988695F2}</Project>
<Name>UnityVS.Game.CSharp.Plugins</Name>
</ProjectReference>
</ItemGroup>
<ItemGroup>
<Compile Include="Assets\Scripts\Business\BiomeManager.cs" />
<Compile Include="Assets\Scripts\Business\ConfigurationManager.cs" />
<Compile Include="Assets\Scripts\Generator\TerrainGenerator.cs" />
<Compile Include="Assets\Scripts\InitializeScript.cs" />
<Compile Include="Assets\Scripts\Model\Biome.cs" />
<Compile Include="Assets\Scripts\Model\Config\TerrainGeneratorConfig.cs" />
<Compile Include="Assets\Scripts\Model\Map.cs" />
<Compile Include="Assets\Scripts\Noise\NoiseGenerator.cs" />
<Compile Include="Assets\Scripts\Noise\PerlinNoiseGenerator.cs" />
<Compile Include="Assets\Scripts\TerrainGeneratorScript.cs" />
<Compile Include="Assets\Scripts\Utils\Algorithms.cs" />
<Compile Include="Assets\Scripts\Utils\Algorithms\GridTraverseAlgorithm.cs" />
<Compile Include="Assets\Scripts\Utils\ColorHelper.cs" />
<Compile Include="Assets\Scripts\Utils\Logger.cs" />
<Compile Include="Assets\Scripts\Utils\RandomExtensions.cs" />
<Compile Include="Assets\Scripts\Utils\Range.cs" />
<Compile Include="Assets\Scripts\Utils\Task.cs" />
<Compile Include="Assets\Scripts\Utils\Texture2DExtensions.cs" />
<Compile Include="Assets\Scripts\Utils\XmlHelper.cs" />
</ItemGroup>
<ItemGroup>
<None Include="Assets\Data\Biomes\Grassland\Grassland.xml" />
<None Include="Assets\Data\Biomes\Mountain\Mountain.xml" />
<None Include="Assets\Data\Config\tergen.xml" />
<None Include="Assets\Standard Assets\Environment\Water (Basic)\Shaders\FXWaterBasic.shader" />
</ItemGroup>
<Import Project="$(MSBuildExtensionsPath)\SyntaxTree\UnityVS\2012\UnityVS.CSharp.targets" />
</Project>

View File

@ -1,6 +1,6 @@
<?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<PropertyGroup>
<ProjectView>ShowAllFiles</ProjectView>
</PropertyGroup>
<?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<PropertyGroup>
<ProjectView>ProjectFiles</ProjectView>
</PropertyGroup>
</Project>

Binary file not shown.

View File

@ -0,0 +1,20 @@

Microsoft Visual Studio Solution File, Format Version 12.00
# Visual Studio 2012
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "MapViewer", "MapViewer\MapViewer.csproj", "{A6DA2104-18B4-4A9A-BAD7-5AC8C98A5086}"
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Debug|Any CPU = Debug|Any CPU
Release|Any CPU = Release|Any CPU
EndGlobalSection
GlobalSection(ProjectConfigurationPlatforms) = postSolution
{A6DA2104-18B4-4A9A-BAD7-5AC8C98A5086}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{A6DA2104-18B4-4A9A-BAD7-5AC8C98A5086}.Debug|Any CPU.Build.0 = Debug|Any CPU
{A6DA2104-18B4-4A9A-BAD7-5AC8C98A5086}.Release|Any CPU.ActiveCfg = Release|Any CPU
{A6DA2104-18B4-4A9A-BAD7-5AC8C98A5086}.Release|Any CPU.Build.0 = Release|Any CPU
EndGlobalSection
GlobalSection(SolutionProperties) = preSolution
HideSolutionNode = FALSE
EndGlobalSection
EndGlobal

View File

@ -0,0 +1,6 @@
<?xml version="1.0" encoding="utf-8" ?>
<configuration>
<startup>
<supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.5" />
</startup>
</configuration>

View File

@ -0,0 +1,8 @@
<Application x:Class="TransportGame.MapViewer.App"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
StartupUri="MainWindow.xaml">
<Application.Resources>
</Application.Resources>
</Application>

View File

@ -0,0 +1,17 @@
using System;
using System.Collections.Generic;
using System.Configuration;
using System.Data;
using System.Linq;
using System.Threading.Tasks;
using System.Windows;
namespace TransportGame.MapViewer
{
/// <summary>
/// Interaction logic for App.xaml
/// </summary>
public partial class App : Application
{
}
}

View File

@ -0,0 +1,125 @@
using System;
using System.Collections.Generic;
using System.IO;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows.Media;
using System.Windows.Media.Imaging;
using TransportGame.Model;
namespace TransportGame.MapViewer
{
public class MapRenderer
{
[Flags]
public enum Layers
{
None = 0,
Elevation = 1,
All = Elevation
};
/// <summary>
/// Gets or sets the scale
/// </summary>
private int _scale;
public int Scale
{
get
{
return _scale;
}
set
{
lock (this)
{
_scale = value;
}
}
}
private readonly Color WaterColor = Colors.Navy;
private readonly Color ElevationTerrainColor = Colors.White;
private readonly Color TerrainColor = Colors.White;
public MapRenderer()
{
Scale = 4;
}
///<summary>
///Renders a map to a file
///</summary>
///<param name="file"></param>
///<param name="map"></param>
///<param name="layers"></param>
public Color[,] Render(Map map, Layers layers = Layers.All)
{
lock (this)
{
// Create texture on which to draw
Color[,] pixels = new Color[map.Width * Scale, map.Height * Scale];
// First layer - cells
DrawCells(pixels, map, (layers & Layers.Elevation) > 0);
// Done
return pixels;
}
}
private void DrawCells(Color[,] pixels, Map map, bool elevation)
{
for (int x = 0; x < pixels.GetLength(0); x++)
for (int y = 0; y < pixels.GetLength(1); y++)
{
int mapX = x / Scale;
int mapY = y / Scale;
// Draw water
if (map.IsWater(mapX, mapY))
pixels[x, y] = WaterColor;
// Draw elevation
else if (elevation)
{
float alpha = (map[mapX, mapY] - map.Biome.HeightRange.Minimum) / (map.Biome.HeightRange.Maximum - map.Biome.HeightRange.Minimum);
pixels[x, y] = Color.Multiply(ElevationTerrainColor, alpha);
}
// Draw terrain
else
{
pixels[x, y] = TerrainColor;
}
}
}
public async Task<BitmapSource> RenderToImageSource(Map map, Layers layers = Layers.All)
{
var colors = await Task.Run(() => Render(map, layers));
colors[0, 0] = Colors.Red;
colors[colors.GetLength(0) - 1, 0] = Colors.Red;
// Convert to raw pixels
byte[] raw = new byte[colors.GetLength(0) * colors.GetLength(1) * 3];
for (int x = 0; x < colors.GetLength(0); x++)
for (int y = 0; y < colors.GetLength(1); y++)
{
int pixelIndex = x + y * colors.GetLength(0);
raw[3 * pixelIndex] = colors[x, y].R;
raw[3 * pixelIndex + 1] = colors[x, y].G;
raw[3 * pixelIndex + 2] = colors[x, y].B;
}
// Create bitmap source
BitmapSource bmp = BitmapSource.Create(colors.GetLength(0), colors.GetLength(1),
96, 96, PixelFormats.Rgb24, null, raw, colors.GetLength(0) * 3);
return bmp;
}
}
}

View File

@ -0,0 +1,141 @@
<Window x:Class="TransportGame.MapViewer.MainWindow"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:prop="http://propertytools.org/wpf"
Title="MainWindow" Height="500" Width="800">
<Grid>
<Grid.RowDefinitions>
<RowDefinition Height="Auto" />
<RowDefinition />
</Grid.RowDefinitions>
<Grid.ColumnDefinitions>
<ColumnDefinition Width="2*"/>
<ColumnDefinition Width="3" />
<ColumnDefinition Width="200" />
</Grid.ColumnDefinitions>
<ToolBar Grid.Row="0" Grid.ColumnSpan="3">
<Button Name="buttonOpen" ToolTip="Open map file" Click="buttonOpen_Click">
<Image Source="pack://application:,,,/Resources/folder_page.png" />
</Button>
<Button Name="buttonSave" ToolTip="Saves as image" Click="buttonSave_Click">
<Image Source="pack://application:,,,/Resources/picture_save.png" />
</Button>
<Separator />
<TextBlock VerticalAlignment="Center" Margin="4,2,4,2">Zoom:</TextBlock>
<Slider Name="zoomSlider" Width="80"
Minimum="1" Maximum="15"
SmallChange="1" LargeChange="3"
TickPlacement="BottomRight"
Ticks="1,2,5,10,15"
Value="{Binding Renderer.Scale}"
ValueChanged="zoomSlider_ValueChanged">
<Slider.ToolTip>
<ToolTip Content="{Binding RelativeSource={RelativeSource Self}, Path=PlacementTarget.Value}" />
</Slider.ToolTip>
</Slider>
<TextBlock VerticalAlignment="Center">
<Run Text="{Binding ElementName=zoomSlider, Path=Value}" /><Run>00%</Run>
</TextBlock>
</ToolBar>
<ScrollViewer Grid.Row="1"
VerticalScrollBarVisibility="Auto"
HorizontalScrollBarVisibility="Auto">
<Image Stretch="None" Source="{Binding RenderedMap}"/>
</ScrollViewer>
<StackPanel Grid.Row="1" Name="progress" Visibility="Hidden" Orientation="Vertical" HorizontalAlignment="Center" VerticalAlignment="Center">
<ProgressBar Width="100" Height="10" IsIndeterminate="True"
Foreground="Tomato" Background="WhiteSmoke" />
<TextBlock Name="progressText" HorizontalAlignment="Center">Loading...</TextBlock>
</StackPanel>
<GridSplitter Grid.Row="1" Grid.Column="1"
HorizontalAlignment="Stretch"
VerticalAlignment="Stretch" />
<StackPanel Grid.Row="1" Grid.Column="2"
Orientation="Vertical">
<Expander IsExpanded="True" Header="Layers">
<StackPanel Orientation="Vertical">
<CheckBox>Elevation</CheckBox>
<CheckBox>Roads</CheckBox>
<CheckBox>Buildings</CheckBox>
<CheckBox>Vegetation</CheckBox>
<Grid>
<Grid.ColumnDefinitions>
<ColumnDefinition />
<ColumnDefinition />
</Grid.ColumnDefinitions>
<Button Grid.Column="0" Content="Select all" />
<Button Grid.Column="1" Content="Render" />
</Grid>
</StackPanel>
</Expander>
<Expander IsExpanded="True" Header="General">
<Grid Height="Auto">
<Grid.ColumnDefinitions>
<ColumnDefinition />
<ColumnDefinition />
</Grid.ColumnDefinitions>
<Grid.RowDefinitions>
<RowDefinition />
<RowDefinition />
<RowDefinition />
<RowDefinition />
<RowDefinition />
</Grid.RowDefinitions>
<TextBlock Grid.Row="0" Grid.Column="0" >Loaded map:</TextBlock>
<TextBox Grid.Row="0" Grid.Column="1" IsReadOnly="True" Text="{Binding LoadedFile,Mode=OneWay}" />
<TextBlock Grid.Row="1" Grid.Column="0" >Width:</TextBlock>
<TextBox Grid.Row="1" Grid.Column="1" IsReadOnly="True" Text="{Binding Map.Width,Mode=OneWay}" />
<TextBlock Grid.Row="2" Grid.Column="0" >Height:</TextBlock>
<TextBox Grid.Row="2" Grid.Column="1" IsReadOnly="True" Text="{Binding Map.Height,Mode=OneWay}" />
<TextBlock Grid.Row="3" Grid.Column="0" >Water level:</TextBlock>
<TextBox Grid.Row="3" Grid.Column="1" IsReadOnly="True" Text="{Binding Map.WaterLevel,Mode=OneWay}" />
</Grid>
</Expander>
<Expander IsExpanded="True" Header="Biome">
<Grid Height="Auto">
<Grid.ColumnDefinitions>
<ColumnDefinition />
<ColumnDefinition />
</Grid.ColumnDefinitions>
<Grid.RowDefinitions>
<RowDefinition />
<RowDefinition />
<RowDefinition />
<RowDefinition />
<RowDefinition />
</Grid.RowDefinitions>
<TextBlock Grid.Row="0" Grid.Column="0" >Name:</TextBlock>
<TextBox Grid.Row="0" Grid.Column="1" IsReadOnly="True" Text="{Binding Map.Biome.Name,Mode=OneWay}" />
<TextBlock Grid.Row="1" Grid.Column="0" >Height range:</TextBlock>
<TextBox Grid.Row="1" Grid.Column="1" IsReadOnly="True" Text="{Binding Map.Biome.HeightRange,Mode=OneWay}" />
<TextBlock Grid.Row="2" Grid.Column="0" >Moisture:</TextBlock>
<TextBox Grid.Row="2" Grid.Column="1" IsReadOnly="True" Text="{Binding Map.Biome.Moisture,Mode=OneWay}" />
<TextBlock Grid.Row="3" Grid.Column="0" >Vegetation density:</TextBlock>
<TextBox Grid.Row="3" Grid.Column="1" IsReadOnly="True" Text="{Binding Map.Biome.VegetationDensity,Mode=OneWay}" />
</Grid>
</Expander>
</StackPanel>
</Grid>
</Window>

View File

@ -0,0 +1,202 @@
using System;
using System.ComponentModel;
using System.IO;
using System.Threading.Tasks;
using System.Windows;
using System.Windows.Media.Imaging;
using Microsoft.Win32;
using TransportGame.MapViewer.Storage;
using TransportGame.Model;
namespace TransportGame.MapViewer
{
/// <summary>
/// Interaction logic for MainWindow.xaml
/// </summary>
public partial class MainWindow : Window, INotifyPropertyChanged
{
public event PropertyChangedEventHandler PropertyChanged;
#region Map property
private Map _map;
public Map Map
{
get
{
return _map;
}
private set
{
_map = value;
if (PropertyChanged != null)
PropertyChanged(this, new PropertyChangedEventArgs("Map"));
}
}
#endregion
#region Loaded file property
private string _loadedFile;
public string LoadedFile
{
get
{
return _loadedFile;
}
private set
{
_loadedFile = value;
if (PropertyChanged != null)
PropertyChanged(this, new PropertyChangedEventArgs("LoadedFile"));
}
}
#endregion
#region Rendered map property
private BitmapSource _renderedMap;
public BitmapSource RenderedMap
{
get
{
return _renderedMap;
}
private set
{
_renderedMap = value;
if (PropertyChanged != null)
PropertyChanged(this, new PropertyChangedEventArgs("RenderedMap"));
}
}
#endregion
public MapRenderer Renderer { get; private set; }
public MainWindow()
{
InitializeComponent();
Renderer = new MapRenderer();
LoadedFile = "N/A";
DataContext = this;
}
private async Task OpenMapFile(string filename)
{
await LoadMap(filename);
await RenderMap();
}
private static bool ShowOpenMapDialog(out string filename)
{
OpenFileDialog dialog = new OpenFileDialog();
dialog.Filter = "Map files|*.map|All files|*.*";
dialog.Title = "Open map file";
bool? result = dialog.ShowDialog();
if (!result.HasValue || !result.Value)
{
filename = null;
return false;
}
filename = dialog.FileName;
return true;
}
private static bool ShowSaveMapDialog(out string filename)
{
SaveFileDialog dialog = new SaveFileDialog();
dialog.Filter = "PNG Files|*.png|All files|*.*";
dialog.Title = "Save rendered map image";
bool? result = dialog.ShowDialog();
if (!result.HasValue || !result.Value)
{
filename = null;
return false;
}
filename = dialog.FileName;
return true;
}
private async Task LoadMap(string filename)
{
progress.Visibility = System.Windows.Visibility.Visible;
progressText.Text = "Loading map...";
try
{
Map = await Task.Run(() => MapStorage.Read(filename));
LoadedFile = filename;
}
catch (Exception ex)
{
MessageBox.Show(ex.Message, "Error");
}
progress.Visibility = System.Windows.Visibility.Hidden;
}
private async Task RenderMap()
{
progress.Visibility = System.Windows.Visibility.Visible;
progressText.Text = "Rendering map...";
try
{
RenderedMap = await Renderer.RenderToImageSource(Map);
}
catch (Exception ex)
{
MessageBox.Show(ex.Message, "Error");
}
progress.Visibility = System.Windows.Visibility.Hidden;
}
private async void buttonOpen_Click(object sender, RoutedEventArgs e)
{
// Open dialog
string filename;
if (!ShowOpenMapDialog(out filename))
return;
// Load file and generate image
await OpenMapFile(filename);
}
private void buttonSave_Click(object sender, RoutedEventArgs e)
{
var encoder = new PngBitmapEncoder();
encoder.Frames.Add(BitmapFrame.Create(RenderedMap));
using (var writer = File.OpenWrite(LoadedFile + ".png"))
{
encoder.Save(writer);
writer.Close();
}
}
private async void zoomSlider_ValueChanged(object sender, RoutedPropertyChangedEventArgs<double> e)
{
if (Map != null)
await RenderMap();
}
}
}

View File

@ -0,0 +1,121 @@
<?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="4.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<Import Project="$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props" Condition="Exists('$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props')" />
<PropertyGroup>
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
<ProjectGuid>{A6DA2104-18B4-4A9A-BAD7-5AC8C98A5086}</ProjectGuid>
<OutputType>WinExe</OutputType>
<AppDesignerFolder>Properties</AppDesignerFolder>
<RootNamespace>TransportGame.MapViewer</RootNamespace>
<AssemblyName>MapViewer</AssemblyName>
<TargetFrameworkVersion>v4.5</TargetFrameworkVersion>
<FileAlignment>512</FileAlignment>
<ProjectTypeGuids>{60dc8134-eba5-43b8-bcc9-bb4bc16c2548};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}</ProjectTypeGuids>
<WarningLevel>4</WarningLevel>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
<PlatformTarget>AnyCPU</PlatformTarget>
<DebugSymbols>true</DebugSymbols>
<DebugType>full</DebugType>
<Optimize>false</Optimize>
<OutputPath>bin\Debug\</OutputPath>
<DefineConstants>DEBUG;TRACE</DefineConstants>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
<PlatformTarget>AnyCPU</PlatformTarget>
<DebugType>pdbonly</DebugType>
<Optimize>true</Optimize>
<OutputPath>bin\Release\</OutputPath>
<DefineConstants>TRACE</DefineConstants>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
</PropertyGroup>
<ItemGroup>
<Reference Include="System" />
<Reference Include="System.Data" />
<Reference Include="System.Xml" />
<Reference Include="Microsoft.CSharp" />
<Reference Include="System.Core" />
<Reference Include="System.Xml.Linq" />
<Reference Include="System.Data.DataSetExtensions" />
<Reference Include="System.Xaml">
<RequiredTargetFramework>4.0</RequiredTargetFramework>
</Reference>
<Reference Include="WindowsBase" />
<Reference Include="PresentationCore" />
<Reference Include="PresentationFramework" />
</ItemGroup>
<ItemGroup>
<ApplicationDefinition Include="App.xaml">
<Generator>MSBuild:Compile</Generator>
<SubType>Designer</SubType>
</ApplicationDefinition>
<Compile Include="..\..\..\Game\Assets\Scripts\Model\Biome.cs">
<Link>Model\Biome.cs</Link>
</Compile>
<Compile Include="..\..\..\Game\Assets\Scripts\Model\Map.cs">
<Link>Model\Map.cs</Link>
</Compile>
<Compile Include="Storage\MapStorage.cs" />
<Page Include="MainWindow.xaml">
<Generator>MSBuild:Compile</Generator>
<SubType>Designer</SubType>
</Page>
<Compile Include="..\..\..\Game\Assets\Scripts\Utils\Range.cs">
<Link>Utils\Range.cs</Link>
</Compile>
<Compile Include="App.xaml.cs">
<DependentUpon>App.xaml</DependentUpon>
<SubType>Code</SubType>
</Compile>
<Compile Include="Business\MapRenderer.cs" />
<Compile Include="MainWindow.xaml.cs">
<DependentUpon>MainWindow.xaml</DependentUpon>
<SubType>Code</SubType>
</Compile>
</ItemGroup>
<ItemGroup>
<Compile Include="Properties\AssemblyInfo.cs">
<SubType>Code</SubType>
</Compile>
<Compile Include="Properties\Resources.Designer.cs">
<AutoGen>True</AutoGen>
<DesignTime>True</DesignTime>
<DependentUpon>Resources.resx</DependentUpon>
</Compile>
<Compile Include="Properties\Settings.Designer.cs">
<AutoGen>True</AutoGen>
<DependentUpon>Settings.settings</DependentUpon>
<DesignTimeSharedInput>True</DesignTimeSharedInput>
</Compile>
<EmbeddedResource Include="Properties\Resources.resx">
<Generator>ResXFileCodeGenerator</Generator>
<LastGenOutput>Resources.Designer.cs</LastGenOutput>
</EmbeddedResource>
<None Include="Properties\Settings.settings">
<Generator>SettingsSingleFileGenerator</Generator>
<LastGenOutput>Settings.Designer.cs</LastGenOutput>
</None>
<AppDesigner Include="Properties\" />
</ItemGroup>
<ItemGroup>
<None Include="App.config" />
</ItemGroup>
<ItemGroup>
<Resource Include="Resources\picture_save.png" />
</ItemGroup>
<ItemGroup>
<Resource Include="Resources\folder_page.png" />
</ItemGroup>
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
<!-- To modify your build process, add your task inside one of the targets below and uncomment it.
Other similar extension points exist, see Microsoft.Common.targets.
<Target Name="BeforeBuild">
</Target>
<Target Name="AfterBuild">
</Target>
-->
</Project>

View File

@ -0,0 +1,55 @@
using System.Reflection;
using System.Resources;
using System.Runtime.CompilerServices;
using System.Runtime.InteropServices;
using System.Windows;
// General Information about an assembly is controlled through the following
// set of attributes. Change these attribute values to modify the information
// associated with an assembly.
[assembly: AssemblyTitle("MapViewer")]
[assembly: AssemblyDescription("")]
[assembly: AssemblyConfiguration("")]
[assembly: AssemblyCompany("")]
[assembly: AssemblyProduct("MapViewer")]
[assembly: AssemblyCopyright("Copyright © 2015")]
[assembly: AssemblyTrademark("")]
[assembly: AssemblyCulture("")]
// Setting ComVisible to false makes the types in this assembly not visible
// to COM components. If you need to access a type in this assembly from
// COM, set the ComVisible attribute to true on that type.
[assembly: ComVisible(false)]
//In order to begin building localizable applications, set
//<UICulture>CultureYouAreCodingWith</UICulture> in your .csproj file
//inside a <PropertyGroup>. For example, if you are using US english
//in your source files, set the <UICulture> to en-US. Then uncomment
//the NeutralResourceLanguage attribute below. Update the "en-US" in
//the line below to match the UICulture setting in the project file.
//[assembly: NeutralResourcesLanguage("en-US", UltimateResourceFallbackLocation.Satellite)]
[assembly: ThemeInfo(
ResourceDictionaryLocation.None, //where theme specific resource dictionaries are located
//(used if a resource is not found in the page,
// or application resource dictionaries)
ResourceDictionaryLocation.SourceAssembly //where the generic resource dictionary is located
//(used if a resource is not found in the page,
// app, or any theme specific resource dictionaries)
)]
// Version information for an assembly consists of the following four values:
//
// Major Version
// Minor Version
// Build Number
// Revision
//
// You can specify all the values or you can default the Build and Revision Numbers
// by using the '*' as shown below:
// [assembly: AssemblyVersion("1.0.*")]
[assembly: AssemblyVersion("1.0.0.0")]
[assembly: AssemblyFileVersion("1.0.0.0")]

View File

@ -0,0 +1,63 @@
//------------------------------------------------------------------------------
// <auto-generated>
// This code was generated by a tool.
// Runtime Version:4.0.30319.34014
//
// Changes to this file may cause incorrect behavior and will be lost if
// the code is regenerated.
// </auto-generated>
//------------------------------------------------------------------------------
namespace TransportGame.MapViewer.Properties {
using System;
/// <summary>
/// A strongly-typed resource class, for looking up localized strings, etc.
/// </summary>
// This class was auto-generated by the StronglyTypedResourceBuilder
// class via a tool like ResGen or Visual Studio.
// To add or remove a member, edit your .ResX file then rerun ResGen
// with the /str option, or rebuild your VS project.
[global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Resources.Tools.StronglyTypedResourceBuilder", "4.0.0.0")]
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
[global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()]
internal class Resources {
private static global::System.Resources.ResourceManager resourceMan;
private static global::System.Globalization.CultureInfo resourceCulture;
[global::System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1811:AvoidUncalledPrivateCode")]
internal Resources() {
}
/// <summary>
/// Returns the cached ResourceManager instance used by this class.
/// </summary>
[global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)]
internal static global::System.Resources.ResourceManager ResourceManager {
get {
if (object.ReferenceEquals(resourceMan, null)) {
global::System.Resources.ResourceManager temp = new global::System.Resources.ResourceManager("TransportGame.MapViewer.Properties.Resources", typeof(Resources).Assembly);
resourceMan = temp;
}
return resourceMan;
}
}
/// <summary>
/// Overrides the current thread's CurrentUICulture property for all
/// resource lookups using this strongly typed resource class.
/// </summary>
[global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)]
internal static global::System.Globalization.CultureInfo Culture {
get {
return resourceCulture;
}
set {
resourceCulture = value;
}
}
}
}

View File

@ -0,0 +1,117 @@
<?xml version="1.0" encoding="utf-8"?>
<root>
<!--
Microsoft ResX Schema
Version 2.0
The primary goals of this format is to allow a simple XML format
that is mostly human readable. The generation and parsing of the
various data types are done through the TypeConverter classes
associated with the data types.
Example:
... ado.net/XML headers & schema ...
<resheader name="resmimetype">text/microsoft-resx</resheader>
<resheader name="version">2.0</resheader>
<resheader name="reader">System.Resources.ResXResourceReader, System.Windows.Forms, ...</resheader>
<resheader name="writer">System.Resources.ResXResourceWriter, System.Windows.Forms, ...</resheader>
<data name="Name1"><value>this is my long string</value><comment>this is a comment</comment></data>
<data name="Color1" type="System.Drawing.Color, System.Drawing">Blue</data>
<data name="Bitmap1" mimetype="application/x-microsoft.net.object.binary.base64">
<value>[base64 mime encoded serialized .NET Framework object]</value>
</data>
<data name="Icon1" type="System.Drawing.Icon, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
<value>[base64 mime encoded string representing a byte array form of the .NET Framework object]</value>
<comment>This is a comment</comment>
</data>
There are any number of "resheader" rows that contain simple
name/value pairs.
Each data row contains a name, and value. The row also contains a
type or mimetype. Type corresponds to a .NET class that support
text/value conversion through the TypeConverter architecture.
Classes that don't support this are serialized and stored with the
mimetype set.
The mimetype is used for serialized objects, and tells the
ResXResourceReader how to depersist the object. This is currently not
extensible. For a given mimetype the value must be set accordingly:
Note - application/x-microsoft.net.object.binary.base64 is the format
that the ResXResourceWriter will generate, however the reader can
read any of the formats listed below.
mimetype: application/x-microsoft.net.object.binary.base64
value : The object must be serialized with
: System.Serialization.Formatters.Binary.BinaryFormatter
: and then encoded with base64 encoding.
mimetype: application/x-microsoft.net.object.soap.base64
value : The object must be serialized with
: System.Runtime.Serialization.Formatters.Soap.SoapFormatter
: and then encoded with base64 encoding.
mimetype: application/x-microsoft.net.object.bytearray.base64
value : The object must be serialized into a byte array
: using a System.ComponentModel.TypeConverter
: and then encoded with base64 encoding.
-->
<xsd:schema id="root" xmlns="" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:msdata="urn:schemas-microsoft-com:xml-msdata">
<xsd:element name="root" msdata:IsDataSet="true">
<xsd:complexType>
<xsd:choice maxOccurs="unbounded">
<xsd:element name="metadata">
<xsd:complexType>
<xsd:sequence>
<xsd:element name="value" type="xsd:string" minOccurs="0" />
</xsd:sequence>
<xsd:attribute name="name" type="xsd:string" />
<xsd:attribute name="type" type="xsd:string" />
<xsd:attribute name="mimetype" type="xsd:string" />
</xsd:complexType>
</xsd:element>
<xsd:element name="assembly">
<xsd:complexType>
<xsd:attribute name="alias" type="xsd:string" />
<xsd:attribute name="name" type="xsd:string" />
</xsd:complexType>
</xsd:element>
<xsd:element name="data">
<xsd:complexType>
<xsd:sequence>
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" />
<xsd:element name="comment" type="xsd:string" minOccurs="0" msdata:Ordinal="2" />
</xsd:sequence>
<xsd:attribute name="name" type="xsd:string" msdata:Ordinal="1" />
<xsd:attribute name="type" type="xsd:string" msdata:Ordinal="3" />
<xsd:attribute name="mimetype" type="xsd:string" msdata:Ordinal="4" />
</xsd:complexType>
</xsd:element>
<xsd:element name="resheader">
<xsd:complexType>
<xsd:sequence>
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" />
</xsd:sequence>
<xsd:attribute name="name" type="xsd:string" use="required" />
</xsd:complexType>
</xsd:element>
</xsd:choice>
</xsd:complexType>
</xsd:element>
</xsd:schema>
<resheader name="resmimetype">
<value>text/microsoft-resx</value>
</resheader>
<resheader name="version">
<value>2.0</value>
</resheader>
<resheader name="reader">
<value>System.Resources.ResXResourceReader, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</resheader>
<resheader name="writer">
<value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</resheader>
</root>

View File

@ -0,0 +1,26 @@
//------------------------------------------------------------------------------
// <auto-generated>
// This code was generated by a tool.
// Runtime Version:4.0.30319.34014
//
// Changes to this file may cause incorrect behavior and will be lost if
// the code is regenerated.
// </auto-generated>
//------------------------------------------------------------------------------
namespace TransportGame.MapViewer.Properties {
[global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()]
[global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.VisualStudio.Editors.SettingsDesigner.SettingsSingleFileGenerator", "11.0.0.0")]
internal sealed partial class Settings : global::System.Configuration.ApplicationSettingsBase {
private static Settings defaultInstance = ((Settings)(global::System.Configuration.ApplicationSettingsBase.Synchronized(new Settings())));
public static Settings Default {
get {
return defaultInstance;
}
}
}
}

View File

@ -0,0 +1,7 @@
<?xml version='1.0' encoding='utf-8'?>
<SettingsFile xmlns="uri:settings" CurrentProfile="(Default)">
<Profiles>
<Profile Name="(Default)" />
</Profiles>
<Settings />
</SettingsFile>

Binary file not shown.

After

Width:  |  Height:  |  Size: 688 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 755 B

View File

@ -0,0 +1,28 @@
using System;
using System.Collections.Generic;
using System.IO;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Xml.Serialization;
using TransportGame.Model;
namespace TransportGame.MapViewer.Storage
{
public static class MapStorage
{
public static Map Read(string file)
{
XmlSerializer serializer = new XmlSerializer(typeof(Map));
Map map;
using (StreamReader reader = new StreamReader(file))
{
map = (Map)serializer.Deserialize(reader);
reader.Close();
}
return map;
}
}
}