diff --git a/THermo.Active.Thermocamera/Properties/AssemblyInfo.cs b/THermo.Active.Thermocamera/Properties/AssemblyInfo.cs index 3367c6c1..0cf1abc9 100644 --- a/THermo.Active.Thermocamera/Properties/AssemblyInfo.cs +++ b/THermo.Active.Thermocamera/Properties/AssemblyInfo.cs @@ -5,11 +5,11 @@ using System.Runtime.InteropServices; // 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("THermo.Active.Thermocamera")] +[assembly: AssemblyTitle("Thermo.Active.Thermocamera")] [assembly: AssemblyDescription("")] [assembly: AssemblyConfiguration("")] [assembly: AssemblyCompany("")] -[assembly: AssemblyProduct("THermo.Active.Thermocamera")] +[assembly: AssemblyProduct("Thermo.Active.Thermocamera")] [assembly: AssemblyCopyright("Copyright © 2020")] [assembly: AssemblyTrademark("")] [assembly: AssemblyCulture("")] diff --git a/THermo.Active.Thermocamera/Thermo.Active.Thermocamera.csproj b/THermo.Active.Thermocamera/Thermo.Active.Thermocamera.csproj index a716b0b5..50920185 100644 --- a/THermo.Active.Thermocamera/Thermo.Active.Thermocamera.csproj +++ b/THermo.Active.Thermocamera/Thermo.Active.Thermocamera.csproj @@ -7,8 +7,8 @@ {8D8EC91A-3A15-4A1D-951B-A35E7068DEBD} Library Properties - THermo.Active.Thermocamera - THermo.Active.Thermocamera + Thermo.Active.Thermocamera + Thermo.Active.Thermocamera v4.6.2 512 true @@ -30,10 +30,31 @@ prompt 4 + + true + bin\x64\Debug\ + DEBUG;TRACE + full + x64 + 7.3 + prompt + MinimumRecommendedRules.ruleset + + + bin\x64\Release\ + TRACE + true + pdbonly + x64 + 7.3 + prompt + MinimumRecommendedRules.ruleset + + @@ -43,7 +64,7 @@ - + @@ -51,6 +72,10 @@ {631375DD-06D3-49BB-8130-D9DDB34C429D} Thermo.Active.Model + + {e4587942-498b-4aa7-9cc9-9304eb2d05c8} + Thermo.Cam.Utils + \ No newline at end of file diff --git a/THermo.Active.Thermocamera/Thermo.Active.Thermocamera.csproj.user b/THermo.Active.Thermocamera/Thermo.Active.Thermocamera.csproj.user new file mode 100644 index 00000000..9b86104e --- /dev/null +++ b/THermo.Active.Thermocamera/Thermo.Active.Thermocamera.csproj.user @@ -0,0 +1,6 @@ + + + + ShowAllFiles + + \ No newline at end of file diff --git a/THermo.Active.Thermocamera/ThermoCamComunicator.cs b/THermo.Active.Thermocamera/ThermoCamComunicator.cs new file mode 100644 index 00000000..6228160c --- /dev/null +++ b/THermo.Active.Thermocamera/ThermoCamComunicator.cs @@ -0,0 +1,145 @@ +using System; +using System.Collections.Generic; +using System.IO; +using System.Linq; +using System.Reflection; +using System.Text; +using System.Threading.Tasks; +using Thermo.Active.Model; +using Thermo.Active.Model.DTOModels.ThWarmers; +using Thermo.Cam.Utils; + +namespace Thermo.Active.Thermocamera +{ + public class ThermoCamComunicator + { + #region Private Fields + + /// + /// Nome file da caricare (per istanza file-based) + /// + private string fileName = ""; + + #endregion Private Fields + + #region Protected Fields + + /// + /// Classe gestione ThermoCam (oggetti Image, metodi processing...) + /// + protected TCContr TCamLive = new TCContr(BASE_PATH, BASE_PATH); + + #endregion Protected Fields + + #region Public Fields + + public static readonly string BASE_PATH = Path.GetDirectoryName(Assembly.GetEntryAssembly().Location); + + #endregion Public Fields + + #region Private Constructors + + /// + /// Init classe + /// + /// Indica aabilitazione alive straming vs load dati storici + public ThermoCamComunicator(bool isLive) + { + // init classe controllo camera + TCamLive = new TCContr($"{BASE_PATH}\\{Constants.THERMO_DATA_FOLDER}", $"{BASE_PATH}\\{Constants.CONFIG_DIRECTORY}"); + + // avvio classe gestione thermocamera... + TCamLive.tryReloadConf(); + + if (isLive) + { + // SOLO PER IL LIVE --> cerco camera + TCamLive.discoveryCamera(); + } + } + + #endregion Private Constructors + + #region Protected Methods + + /// + /// Rilettura da file di tutti i dati + /// + /// Nome set file (originale + colorized + dati temperatura) + /// + protected bool loadData(string fileName) + { + bool done = false; + try + { + done = TCamLive.fileLoad(fileName); + } + catch + { } + return done; + } + + #endregion Protected Methods + + #region Public Methods + + /// + /// Restituisce lettura di tutti i punti richiesti (es centroidi riscaldi) + /// + /// Nome dei dati da leggere, se "" --> live + /// Dictionary id richiesta + punto (es canali + relativi punti medi come centro calcolato della resistenza di riferimento del canale) + /// Dizionario temperature come id + valore double in °C + /// + public bool readMultiTemperatures(string setName, Dictionary points, out Dictionary temp) + { + temp = new Dictionary(); + List measData = new List(); + // converto la richiesta in una lista di punti di misura... + List reqData = points.Select(item => new MeasurePoint() + { + Id = item.Key, + Coords = new System.Drawing.Point(item.Value.X, item.Value.Y), + Temperature = 0 + }).ToList(); + bool done = false; + if (string.IsNullOrEmpty(setName) || setName == "_live") + { + done = true; + } + else + { + // carico file vari... + done = TCamLive.fileLoad(setName); + } + measData = TCamLive.getPointsTemperature(false, reqData); + // converto valori nel formato finale + foreach (var item in measData) + { + temp.Add(item.Id, item.Temperature); + } + // fatto! + return true; + } + + /// + /// Richiesta di acquisizione immagine FLIR (restituisce nome con cui sono stati salvati file) + /// + /// + public string takePicture() + { + string imgName = ""; + try + { + // effettua chiamata x scattare immagine e SALVARE + TCamLive.takePicture(); + TCamLive.calculateTarget(); + imgName = TCamLive.fileSave(); + } + catch + { } + return imgName; + } + + #endregion Public Methods + } +} \ No newline at end of file diff --git a/THermo.Active.Thermocamera/ThermocameraComunicator.cs b/THermo.Active.Thermocamera/ThermocameraComunicator.cs deleted file mode 100644 index 1420d5bc..00000000 --- a/THermo.Active.Thermocamera/ThermocameraComunicator.cs +++ /dev/null @@ -1,308 +0,0 @@ -using System; -using System.Collections; -using System.Collections.Generic; -using System.Configuration; -using System.Drawing; -using System.Globalization; -using System.IO.MemoryMappedFiles; -using System.Linq; -using System.Net.NetworkInformation; -using System.Text; -using System.Threading; -using System.Threading.Tasks; -using System.Windows; -using Thermo.Active.Model.DTOModels.ThWarmers; - -namespace Thermo.Active.Thermocamera -{ - public class ThermocameraComunicator - { - #region Private Fields - - private const int DIM_MMF = NUM_CHAR_MSG * 2 + 2; - private const string MMF_REQ = "CMS_MMF_REQ"; - private const string MMF_RES = "CMS_MMF_RES"; - private const int NUM_CHAR_MSG = 5000; - private const int REQ = 1; - private const int RES = 2; - private static ThermocameraComunicator _instance; - private MemoryMappedViewAccessor accessor; - private MemoryMappedViewAccessor accessorResp; - private MemoryMappedFile mmf; - private MemoryMappedFile mmfRes; - - #endregion Private Fields - - #region Protected Fields - - /// - /// Generatore random - /// - protected Random rnd = new Random(); - - /// - /// Booleana dell'uso sw ext: true = Utilizzo vero sw lettura FLIR / false = simulazione SW RAND - /// - protected bool useTCamSw = true; - - #endregion Protected Fields - - #region Private Constructors - - private ThermocameraComunicator() - { - mmf = MemoryMappedFile.CreateOrOpen(MMF_REQ, DIM_MMF); - mmfRes = MemoryMappedFile.CreateOrOpen(MMF_RES, DIM_MMF); - accessor = mmf.CreateViewAccessor(); - accessorResp = mmfRes.CreateViewAccessor(); - } - - #endregion Private Constructors - - #region Private Properties - - /// - /// Simulazione valore tra 100 e 300 °C - /// - private float simVal - { - get - { - float answ = 100 + 200 * (float)rnd.NextDouble(); - return answ; - } - } - - #endregion Private Properties - - #region Private Methods - - private bool readCommand(MemoryMappedViewAccessor accessor, string command, int timeoutMS, out string resp) - { - resp = ""; - byte response = 0; - int totalCycle = 0; - int sleepTime = 500; - byte[] bytesToRead = new byte[NUM_CHAR_MSG]; - - if (!accessor.CanRead) - return false; - - //Read Pre-Command - while (response != RES) - { - totalCycle++; - accessor.Read(0, out response); - if (response != RES) - Thread.Sleep(sleepTime); - if (totalCycle * sleepTime > timeoutMS) - return false; - } - - //Read Command - accessor.ReadArray(1, bytesToRead, 0, bytesToRead.Length); - - //Elaborate String - string textRecieved = Encoding.UTF8.GetString(bytesToRead); - if (textRecieved == null) - return false; - - string[] textSplitted = textRecieved.Replace("\0", string.Empty).Split(';'); - if (textSplitted.Length < 2) - return false; - - if (textSplitted[0] != command) - return false; - - char[] bufferToClean = Enumerable.Repeat('\0', NUM_CHAR_MSG).ToArray(); - accessor.WriteArray(0, bufferToClean, 0, bufferToClean.Length); - - //Output - textSplitted = textSplitted.Skip(1).ToArray(); - resp = String.Join(";", textSplitted); - return true; - } - - private bool writeCommand(MemoryMappedViewAccessor accessor, string command) - { - char[] bufferToClean = Enumerable.Repeat('\0', NUM_CHAR_MSG).ToArray(); - accessor.WriteArray(0, bufferToClean, 0, bufferToClean.Length); - - char[] bufferToWrite = command.ToCharArray(); - - //Write Pre-Command - accessor.Write(0, REQ); - - //Write Command - accessor.WriteArray(1, bufferToWrite, 0, bufferToWrite.Length); - - return true; - } - - #endregion Private Methods - - #region Public Methods - - /// - /// Swap x/y requesto from FLIR camera - /// - public bool flirSwapXY - { - get - { - bool answ = false; - bool.TryParse(ConfigurationManager.AppSettings["flirSwapXY"], out answ); - return answ; - } - } - - public static ThermocameraComunicator getInstance() - { - if (_instance == null) - _instance = new ThermocameraComunicator(); - return _instance; - } - - /// - /// Restituisce lettura di tutti i punti (cetroidi) richeisti - /// - /// Dictionary dei canali e relativi punti medi (centro calcolato della resistenza di riferimento del canale) - /// Timeout in ms, 10000 std, da conf - /// °C - /// - public bool readMultiTemperatures(Dictionary points, int timeoutMS, out Dictionary temp) - { - temp = new Dictionary(); - // modalità impiego vero sw esterno - if (useTCamSw) - { - const string tempCommand = "GetTemperature"; - string response; - - string cmdRead = ""; - foreach (var point in points) - { - if (flirSwapXY) - { - cmdRead += point.Value.Y + ";" + point.Value.X + ";"; - } - else - { - cmdRead += point.Value.X + ";" + point.Value.Y + ";"; - } - } - - if (!writeCommand(accessor, tempCommand + ";" + cmdRead)) - return false; - if (!readCommand(accessorResp, tempCommand, timeoutMS, out response)) - return false; - - string[] respSplitted = response.Replace(",", ".").Split(';'); - int idxResp = 0; - foreach (var item in points) - { - string str = respSplitted[idxResp]; - double tmp; - if (str.Trim() != "") - { - if (double.TryParse(str.Trim(), NumberStyles.Float, CultureInfo.InvariantCulture, out tmp)) - temp.Add(item.Key, tmp); - else - return false; - } - idxResp++; - } - } - else - { - // simulo! - foreach (var item in points) - { - temp.Add(item.Key, simVal); - } - // attende 5 sec - Thread.Sleep(5000); - } - return true; - } - - /// - /// Lettura temp singolo punto - /// - /// - /// - /// - /// - /// - public bool readTemperature(int x, int y, int timeoutMS, out float temp) - { - temp = 0f; - - // modalità impiego vero sw esterno - if (useTCamSw) - { - const string tempCommand = "GetTemperature"; - string response; - - if (!writeCommand(accessor, tempCommand + ";" + x + ";" + y + ";")) - return false; - if (!readCommand(accessorResp, tempCommand, timeoutMS, out response)) - return false; - response = response.TrimEnd(';'); - if (!float.TryParse(response, NumberStyles.Float, CultureInfo.InvariantCulture, out temp)) - return false; - } - else - { - // simulo! - temp = simVal; - // attende 5 sec - Thread.Sleep(5000); - } - return true; - } - - public bool showWindow(int x, int y, int dimX, int dimY, int timeoutMS) - { - const string tempCommand = "ShowWindow"; - string response; - if (!writeCommand(accessor, tempCommand + ";" + x + ";" + y + ";" + dimX + ";" + dimY + ";")) - return false; - if (!readCommand(accessorResp, tempCommand, timeoutMS, out response)) - return false; - if (!response.StartsWith("1;")) - return false; - return true; - } - - /// - /// Richiesta di scattare fotografia - /// - /// attesa in ms, 10000 std, da conf - /// - public bool takePicture(int timeoutMS) - { - // modalità impiego vero sw esterno - if (useTCamSw) - { - const string tempCommand = "SetParameter_Integer"; - string response; - - if (!writeCommand(accessor, tempCommand + ";TAKE_IMAGE;")) - return false; - if (!readCommand(accessorResp, tempCommand, timeoutMS, out response)) - return false; - if (!response.StartsWith("True;")) - return false; - } - else - { - // attende 5 sec - Thread.Sleep(5000); - } - return true; - } - - #endregion Public Methods - } -} \ No newline at end of file diff --git a/Thermo.Active.CmsConnectGateway/Thermo.Active.CmsConnectGateway.csproj b/Thermo.Active.CmsConnectGateway/Thermo.Active.CmsConnectGateway.csproj index 7aa36ef9..ce4c6c21 100644 --- a/Thermo.Active.CmsConnectGateway/Thermo.Active.CmsConnectGateway.csproj +++ b/Thermo.Active.CmsConnectGateway/Thermo.Active.CmsConnectGateway.csproj @@ -79,8 +79,8 @@ ..\packages\System.Numerics.Vectors.4.5.0\lib\net46\System.Numerics.Vectors.dll - - ..\packages\System.Runtime.CompilerServices.Unsafe.4.7.1\lib\net461\System.Runtime.CompilerServices.Unsafe.dll + + ..\packages\System.Runtime.CompilerServices.Unsafe.5.0.0\lib\net45\System.Runtime.CompilerServices.Unsafe.dll ..\packages\System.Runtime.InteropServices.RuntimeInformation.4.3.0\lib\net45\System.Runtime.InteropServices.RuntimeInformation.dll diff --git a/Thermo.Active.CmsConnectGateway/app.config b/Thermo.Active.CmsConnectGateway/app.config index 2bebb680..55fc1dc3 100644 --- a/Thermo.Active.CmsConnectGateway/app.config +++ b/Thermo.Active.CmsConnectGateway/app.config @@ -8,7 +8,7 @@ - + diff --git a/Thermo.Active.CmsConnectGateway/packages.config b/Thermo.Active.CmsConnectGateway/packages.config index f8420e4c..70e9d987 100644 --- a/Thermo.Active.CmsConnectGateway/packages.config +++ b/Thermo.Active.CmsConnectGateway/packages.config @@ -14,7 +14,7 @@ - + diff --git a/Thermo.Active.Config/Config/ThermoConf.json b/Thermo.Active.Config/Config/ThermoConf.json new file mode 100644 index 00000000..670b4221 --- /dev/null +++ b/Thermo.Active.Config/Config/ThermoConf.json @@ -0,0 +1,31 @@ +{ + "MeasPoints": [], + "CameraName": "FLIR AX5", + "CameraAddress": "", + "DestPoints": { + "Coords": [ + "0, 0", + "1500, 0", + "1500, 1200", + "0, 1200" + ], + "curr": 0 + }, + "OrigPoints": { + "Coords": [ + "55, 214", + "49, 68", + "218, 80", + "197, 226" + ], + "curr": 4 + }, + "TargetRange": { + "Max": 60.0, + "Min": 0.0 + }, + "TargetSize": { + "X": 1500, + "Y": 1200 + } +} \ No newline at end of file diff --git a/Thermo.Active.Config/Config/serverConfig.xml b/Thermo.Active.Config/Config/serverConfig.xml index db50fec1..3d7f5591 100644 --- a/Thermo.Active.Config/Config/serverConfig.xml +++ b/Thermo.Active.Config/Config/serverConfig.xml @@ -4,7 +4,7 @@ S7NET false - 192.168.214.1 + 192.168.0.102 102 Thermo 2020 C:\CMS\Recipes\ @@ -141,7 +141,7 @@ - + diff --git a/Thermo.Active.Config/Config/toolTableConfig.xml b/Thermo.Active.Config/Config/toolTableConfig.xml deleted file mode 100644 index 0e9bccf4..00000000 --- a/Thermo.Active.Config/Config/toolTableConfig.xml +++ /dev/null @@ -1,13 +0,0 @@ - - - - true - true - false - - - true - true - true - - \ No newline at end of file diff --git a/Thermo.Active.Config/Config/toolTableConfigValidator.xsd b/Thermo.Active.Config/Config/toolTableConfigValidator.xsd deleted file mode 100644 index 2ebc5afc..00000000 --- a/Thermo.Active.Config/Config/toolTableConfigValidator.xsd +++ /dev/null @@ -1,27 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/Thermo.Active.Config/Thermo.Active.Config.csproj b/Thermo.Active.Config/Thermo.Active.Config.csproj index 99d8c390..d1b391f9 100644 --- a/Thermo.Active.Config/Thermo.Active.Config.csproj +++ b/Thermo.Active.Config/Thermo.Active.Config.csproj @@ -229,6 +229,7 @@ Designer Always + PreserveNewest diff --git a/Thermo.Active.Core/Thermo.Active.Core.csproj b/Thermo.Active.Core/Thermo.Active.Core.csproj index cefca42b..e081834c 100644 --- a/Thermo.Active.Core/Thermo.Active.Core.csproj +++ b/Thermo.Active.Core/Thermo.Active.Core.csproj @@ -31,6 +31,27 @@ prompt 4 + + true + bin\x64\Debug\ + DEBUG;TRACE + full + x64 + false + 7.3 + prompt + MinimumRecommendedRules.ruleset + + + bin\x64\Release\ + TRACE + true + pdbonly + x64 + 7.3 + prompt + MinimumRecommendedRules.ruleset + diff --git a/Thermo.Active.Core/ThreadsFunctions.cs b/Thermo.Active.Core/ThreadsFunctions.cs index 57fa3178..4d718f0c 100644 --- a/Thermo.Active.Core/ThreadsFunctions.cs +++ b/Thermo.Active.Core/ThreadsFunctions.cs @@ -21,7 +21,6 @@ using Thermo.Active.Model.DTOModels.ThProd; using Thermo.Active.Model.DTOModels.ThRecipe; using Thermo.Active.Model.DTOModels.ThWarmers; using Thermo.Active.NC; -using Thermo.Active.Thermocamera; using Thermo.Active.Utils; using static CMS_CORE_Library.Models.DataStructures; using static Thermo.Active.Config.ServerConfig; @@ -31,6 +30,7 @@ using System.Windows; using System.Drawing; using System.Configuration; using Thermo.Active.Model.DTOModels.ThIO; +using Thermo.Active.Thermocamera; public static class ThreadsFunctions { @@ -51,8 +51,109 @@ public static class ThreadsFunctions #endregion Public Fields + #region Internal Properties + + /// + /// Swap x/y requesto from FLIR camera + /// + internal static bool cacheWarmers + { + get + { + bool answ = false; + bool.TryParse(ConfigurationManager.AppSettings["cacheWarmers"], out answ); + return answ; + } + } + + #endregion Internal Properties + #region Private Methods + private static int CalcSleepTime(int maxSleep, int execTime) + { + int sleep = 0; + // Check if the execution time is greater than the half of the max sleep time + if (maxSleep - execTime < maxSleep / 2) + { + sleep = maxSleep; + } + else + { + sleep = maxSleep - execTime; + } + + return sleep; + } + + private static bool ClientIsRunning() + { + Process[] p = Process.GetProcessesByName(CLIENT_EXE_NAME_NOEXT); + foreach (Process pr in p) + { + if (pr.MainWindowHandle != IntPtr.Zero) + { + ShowWindow(pr.MainWindowHandle, 9); + SetForegroundWindow(pr.MainWindowHandle); + return true; + } + } + return false; + } + + private static void clientProcess() + { + string CMSClientPath = ""; + // Check if the system is 64/32 bit + if (Environment.Is64BitOperatingSystem && File.Exists(CLIENT_PATH_64)) + CMSClientPath = CLIENT_PATH_64; + else if (File.Exists(CLIENT_PATH_86)) + CMSClientPath = CLIENT_PATH_86; + + if (!String.IsNullOrEmpty(CMSClientPath)) + { + Process pr = Process.Start(CMSClientPath, null); + + if (ServerStartupConfig.AutoOpenCmsClient) + { + pr.WaitForExit(); + MessageServices.Current.Publish(SEND_STOP_SERVER); + } + } + } + + private static Dictionary GetPlcAlarmsTranslations(string language) + { + using (NcAdapter ncAdapter = new NcAdapter()) + { + Dictionary returnValue = new Dictionary(); + + Dictionary messages = new Dictionary(); + // Read data from CN + ncAdapter.numericalControl.NC_GetTranslatedPlcMessages(language, ref messages); // Avoid checking error because in the worst case "messages" is empty + + // Id start from 1 + for (int i = 1; i <= 1024; i++) + { + // Get configurated alarms + var tmpAlarmConfig = InitialAlarmsConfig.Where(x => x.PlcId == i).FirstOrDefault(); + // Default string + string message = string.Format(NOT_CONFIGURATED_ALARM_MESSAGE, i); + // If is configurated + if (tmpAlarmConfig != null) + { + // Find translated string + message = messages.Where(x => x.Key == tmpAlarmConfig.AlarmId).FirstOrDefault().Value; + if (message == null) + message = string.Format(NOT_FOUND_ALARM_MESSAGE, i); + } + // Add to dictionary + returnValue.Add(i.ToString("D6") + "|900", message); + } + return returnValue; + } + } + /// /// restituisce il periodo di campionamento SE configurato, altrimenti 1000 ms /// @@ -68,9 +169,106 @@ public static class ThreadsFunctions return answ; } + [DllImport("user32.dll")] + private static extern bool SetForegroundWindow(IntPtr hWnd); + + [DllImport("user32.dll")] + [return: MarshalAs(UnmanagedType.Bool)] + private static extern bool ShowWindow(IntPtr hWnd, int nCmdShow); + + private static void StatReset() + { + foreach (var value in Counter) + { + Timers[value.Key] = 0; + Counter[value.Key] = 0; + } + } + + private static void TryNcConnection() + { + // Stop all the NC threads + ThreadsHandler.Stop(); + StatReset(); + NcAdapter ncAdapter = new NcAdapter(); + CmsError libraryError = NO_ERROR; + // Run loop until NC is connected + while (!ncAdapter.numericalControl.NC_IsConnected()) + { + // Try reconnection + libraryError = ncAdapter.Connect(); + if (libraryError.errorCode == CMS_ERROR_CODES.SIEMENS_ENVIRONMENT_NOT_FOUND || libraryError.errorCode == CMS_ERROR_CODES.SIEMENS_HMI_NOT_RUNNING || libraryError.errorCode == CMS_ERROR_CODES.OSAI_TT_FOLDER_NOT_FOUND) + ManageLibraryError(libraryError); + else if (libraryError.errorCode != CMS_ERROR_CODES.OK) + { + ncAdapter.Dispose(); + } + + // Send status to UI + MessageServices.Current.Publish(SEND_NC_STATUS_UI, null, ncAdapter.numericalControl.NC_IsConnected()); + // Send status to signalr + MessageServices.Current.Publish(SEND_NC_STATUS, null, ncAdapter.numericalControl.NC_IsConnected()); + + Thread.Sleep(1000); + } + + if (!libraryError.IsError()) + { + if (ServerStartupConfig.AutoOpenCmsClient) + StartCMSClient(); + + // Start/Restart NC threads + ThreadsHandler.StartWorkers(); + reconnectionIsRunning = false; + } + } + #endregion Private Methods - #region Functions + #region Internal Methods + + internal static void StatThread() + { + while (true) + { + foreach (var value in Counter) + { + if (ThreadsHandler.RunningThreadStatus.ContainsKey(value.Key) && Counter[value.Key] != 0) + { + ThreadsHandler.RunningThreadStatus[value.Key] = $"{(Timers[value.Key] / Counter[value.Key])} ms x {Counter[value.Key]}"; + Timers[value.Key] = 0; + Counter[value.Key] = 0; + } + } + + MessageServices.Current.Publish(SEND_THREADS_STATUS, null, ThreadsHandler.RunningThreadStatus); + + Thread.Sleep(2000); + } + } + + internal static void UpdateStat(string functionName, long timer) + { + if (!Timers.ContainsKey(functionName)) + Timers.TryAdd(functionName, timer); + else + Timers[functionName] += timer; + + if (!Counter.ContainsKey(functionName)) + Counter.TryAdd(functionName, 1); + else + Counter[functionName]++; + } + + #endregion Internal Methods + + #region Public Methods + + public static void AbortNcConnection() + { + if (ConnThread != null && ConnThread.IsAlive) + ConnThread.Abort(); + } /// /// Manage action for conf request @@ -126,6 +324,7 @@ public static class ThreadsFunctions public static void ManageFlirCamera() { NcAdapter ncAdapter = new NcAdapter(); + ThermoCamComunicator TCCom = new ThermoCamComunicator(true); Stopwatch sw = new Stopwatch(); try { @@ -138,7 +337,6 @@ public static class ThreadsFunctions { bool flirImageReq = false; sw.Restart(); - int tOut = 30000; // Check if client is connected if (ncAdapter.numericalControl.NC_IsConnected()) @@ -154,7 +352,8 @@ public static class ThreadsFunctions // if requested --> give ack! ncAdapter.ManageFlirStrobe(); // requesto photo from library - done = ThermocameraComunicator.getInstance().takePicture(tOut); + ncAdapter.lastThermoImage = TCCom.takePicture(); + done = !string.IsNullOrEmpty(ncAdapter.lastThermoImage); if (done) { // init @@ -163,7 +362,7 @@ public static class ThreadsFunctions // recupero punti centrali resistenze ncAdapter.GetWarmersChannelCenterPoints(out chPoints); // richiesta temperature per i punti - done = ThermocameraComunicator.getInstance().readMultiTemperatures(chPoints, tOut, out actualTemp); + done = TCCom.readMultiTemperatures("", chPoints, out actualTemp); // salvo dati temp sul PLC ncAdapter.WriteRecipeWarmChTCamTempAct(actualTemp); // give PLC strobe for uploaded Actual TEMP from image @@ -188,6 +387,38 @@ public static class ThreadsFunctions } } + public static void ManageLibraryError(CmsError libraryError) + { + switch (libraryError.errorCode) + { + case CMS_ERROR_CODES.NC_PROD_ERROR: + ManageError(ERROR_LEVEL.WARNING, libraryError.localizationKey); + break; + + case CMS_ERROR_CODES.NOT_CONNECTED: + RestoreConnection(); // If not connected try reconnection + break; + + case CMS_ERROR_CODES.SIEMENS_ENVIRONMENT_NOT_FOUND: + case CMS_ERROR_CODES.OSAI_TT_FOLDER_NOT_FOUND: + case CMS_ERROR_CODES.OPTION_NOT_CONSISTENT: + ManageError(ERROR_LEVEL.FATAL, libraryError.localizationKey); + break; + + case CMS_ERROR_CODES.SIEMENS_HMI_NOT_RUNNING: + ManageError(ERROR_LEVEL.FATAL, "SIEMENS HMI NOT RUNNING"); + break; + + case CMS_ERROR_CODES.SELECTED_PROCESS: + ManageError(ERROR_LEVEL.WARNING, libraryError.localizationKey); + break; + + case CMS_ERROR_CODES.INTERNAL_ERROR: + ManageException(ERROR_LEVEL.FATAL, libraryError.exception); + break; + } + } + /// /// Manage status/command words for actions /// @@ -413,6 +644,7 @@ public static class ThreadsFunctions ncAdapter.Dispose(); } } + /// /// Lettura valorichannelsIO /// @@ -430,7 +662,6 @@ public static class ThreadsFunctions while (true) { - sw.Restart(); if (ncAdapter.numericalControl.NC_IsConnected()) @@ -1247,19 +1478,6 @@ public static class ThreadsFunctions ncAdapter.Dispose(); } } - /// - /// Swap x/y requesto from FLIR camera - /// - internal static bool cacheWarmers - { - get - { - bool answ = false; - bool.TryParse(ConfigurationManager.AppSettings["cacheWarmers"], out answ); - return answ; - } - } - public static void ReadWarmersData() { @@ -1313,6 +1531,21 @@ public static class ThreadsFunctions } } + public static void RestoreConnection() + { + if (reconnectionIsRunning == false) + { // Set thread as running state + reconnectionIsRunning = true; + + // Start reconnection thread + ConnThread = new Thread(() => + TryNcConnection() + ); + + ConnThread.Start(); + } + } + public static void SetupCmsConnect() { NcAdapter ncAdapter = new NcAdapter(); @@ -1391,234 +1624,6 @@ public static class ThreadsFunctions } } - #endregion Functions - - #region SupportFunctions - - private static int CalcSleepTime(int maxSleep, int execTime) - { - int sleep = 0; - // Check if the execution time is greater than the half of the max sleep time - if (maxSleep - execTime < maxSleep / 2) - { - sleep = maxSleep; - } - else - { - sleep = maxSleep - execTime; - } - - return sleep; - } - - private static bool ClientIsRunning() - { - Process[] p = Process.GetProcessesByName(CLIENT_EXE_NAME_NOEXT); - foreach (Process pr in p) - { - if (pr.MainWindowHandle != IntPtr.Zero) - { - ShowWindow(pr.MainWindowHandle, 9); - SetForegroundWindow(pr.MainWindowHandle); - return true; - } - } - return false; - } - - private static void clientProcess() - { - string CMSClientPath = ""; - // Check if the system is 64/32 bit - if (Environment.Is64BitOperatingSystem && File.Exists(CLIENT_PATH_64)) - CMSClientPath = CLIENT_PATH_64; - else if (File.Exists(CLIENT_PATH_86)) - CMSClientPath = CLIENT_PATH_86; - - if (!String.IsNullOrEmpty(CMSClientPath)) - { - Process pr = Process.Start(CMSClientPath, null); - - if (ServerStartupConfig.AutoOpenCmsClient) - { - pr.WaitForExit(); - MessageServices.Current.Publish(SEND_STOP_SERVER); - } - } - } - - private static Dictionary GetPlcAlarmsTranslations(string language) - { - using (NcAdapter ncAdapter = new NcAdapter()) - { - Dictionary returnValue = new Dictionary(); - - Dictionary messages = new Dictionary(); - // Read data from CN - ncAdapter.numericalControl.NC_GetTranslatedPlcMessages(language, ref messages); // Avoid checking error because in the worst case "messages" is empty - - // Id start from 1 - for (int i = 1; i <= 1024; i++) - { - // Get configurated alarms - var tmpAlarmConfig = InitialAlarmsConfig.Where(x => x.PlcId == i).FirstOrDefault(); - // Default string - string message = string.Format(NOT_CONFIGURATED_ALARM_MESSAGE, i); - // If is configurated - if (tmpAlarmConfig != null) - { - // Find translated string - message = messages.Where(x => x.Key == tmpAlarmConfig.AlarmId).FirstOrDefault().Value; - if (message == null) - message = string.Format(NOT_FOUND_ALARM_MESSAGE, i); - } - // Add to dictionary - returnValue.Add(i.ToString("D6") + "|900", message); - } - return returnValue; - } - } - - [DllImport("user32.dll")] - private static extern bool SetForegroundWindow(IntPtr hWnd); - - [DllImport("user32.dll")] - [return: MarshalAs(UnmanagedType.Bool)] - private static extern bool ShowWindow(IntPtr hWnd, int nCmdShow); - - private static void StatReset() - { - foreach (var value in Counter) - { - Timers[value.Key] = 0; - Counter[value.Key] = 0; - } - } - - private static void TryNcConnection() - { - // Stop all the NC threads - ThreadsHandler.Stop(); - StatReset(); - NcAdapter ncAdapter = new NcAdapter(); - CmsError libraryError = NO_ERROR; - // Run loop until NC is connected - while (!ncAdapter.numericalControl.NC_IsConnected()) - { - // Try reconnection - libraryError = ncAdapter.Connect(); - if (libraryError.errorCode == CMS_ERROR_CODES.SIEMENS_ENVIRONMENT_NOT_FOUND || libraryError.errorCode == CMS_ERROR_CODES.SIEMENS_HMI_NOT_RUNNING || libraryError.errorCode == CMS_ERROR_CODES.OSAI_TT_FOLDER_NOT_FOUND) - ManageLibraryError(libraryError); - else if (libraryError.errorCode != CMS_ERROR_CODES.OK) - { - ncAdapter.Dispose(); - } - - // Send status to UI - MessageServices.Current.Publish(SEND_NC_STATUS_UI, null, ncAdapter.numericalControl.NC_IsConnected()); - // Send status to signalr - MessageServices.Current.Publish(SEND_NC_STATUS, null, ncAdapter.numericalControl.NC_IsConnected()); - - Thread.Sleep(1000); - } - - if (!libraryError.IsError()) - { - if (ServerStartupConfig.AutoOpenCmsClient) - StartCMSClient(); - - // Start/Restart NC threads - ThreadsHandler.StartWorkers(); - reconnectionIsRunning = false; - } - } - - internal static void StatThread() - { - while (true) - { - foreach (var value in Counter) - { - if (ThreadsHandler.RunningThreadStatus.ContainsKey(value.Key) && Counter[value.Key] != 0) - { - ThreadsHandler.RunningThreadStatus[value.Key] = $"{(Timers[value.Key] / Counter[value.Key])} ms x {Counter[value.Key]}"; - Timers[value.Key] = 0; - Counter[value.Key] = 0; - } - } - - MessageServices.Current.Publish(SEND_THREADS_STATUS, null, ThreadsHandler.RunningThreadStatus); - - Thread.Sleep(2000); - } - } - - internal static void UpdateStat(string functionName, long timer) - { - if (!Timers.ContainsKey(functionName)) - Timers.TryAdd(functionName, timer); - else - Timers[functionName] += timer; - - if (!Counter.ContainsKey(functionName)) - Counter.TryAdd(functionName, 1); - else - Counter[functionName]++; - } - - public static void AbortNcConnection() - { - if (ConnThread != null && ConnThread.IsAlive) - ConnThread.Abort(); - } - - public static void ManageLibraryError(CmsError libraryError) - { - switch (libraryError.errorCode) - { - case CMS_ERROR_CODES.NC_PROD_ERROR: - ManageError(ERROR_LEVEL.WARNING, libraryError.localizationKey); - break; - - case CMS_ERROR_CODES.NOT_CONNECTED: - RestoreConnection(); // If not connected try reconnection - break; - - case CMS_ERROR_CODES.SIEMENS_ENVIRONMENT_NOT_FOUND: - case CMS_ERROR_CODES.OSAI_TT_FOLDER_NOT_FOUND: - case CMS_ERROR_CODES.OPTION_NOT_CONSISTENT: - ManageError(ERROR_LEVEL.FATAL, libraryError.localizationKey); - break; - - case CMS_ERROR_CODES.SIEMENS_HMI_NOT_RUNNING: - ManageError(ERROR_LEVEL.FATAL, "SIEMENS HMI NOT RUNNING"); - break; - - case CMS_ERROR_CODES.SELECTED_PROCESS: - ManageError(ERROR_LEVEL.WARNING, libraryError.localizationKey); - break; - - case CMS_ERROR_CODES.INTERNAL_ERROR: - ManageException(ERROR_LEVEL.FATAL, libraryError.exception); - break; - } - } - - public static void RestoreConnection() - { - if (reconnectionIsRunning == false) - { // Set thread as running state - reconnectionIsRunning = true; - - // Start reconnection thread - ConnThread = new Thread(() => - TryNcConnection() - ); - - ConnThread.Start(); - } - } - public static void StartCMSClient() { //Setup the Path Variable @@ -1629,5 +1634,5 @@ public static class ThreadsFunctions } } - #endregion SupportFunctions + #endregion Public Methods } \ No newline at end of file diff --git a/Thermo.Active.Core/app.config b/Thermo.Active.Core/app.config index ae51a6e2..167a0b5a 100644 --- a/Thermo.Active.Core/app.config +++ b/Thermo.Active.Core/app.config @@ -28,7 +28,7 @@ - + @@ -38,6 +38,10 @@ + + + + \ No newline at end of file diff --git a/Thermo.Active.Database/App.config b/Thermo.Active.Database/App.config index c74e0b00..6f6e5260 100644 --- a/Thermo.Active.Database/App.config +++ b/Thermo.Active.Database/App.config @@ -47,7 +47,7 @@ - + @@ -57,6 +57,10 @@ + + + + \ No newline at end of file diff --git a/Thermo.Active.Database/Thermo.Active.Database.csproj b/Thermo.Active.Database/Thermo.Active.Database.csproj index 8608f3ea..be50a82c 100644 --- a/Thermo.Active.Database/Thermo.Active.Database.csproj +++ b/Thermo.Active.Database/Thermo.Active.Database.csproj @@ -95,8 +95,8 @@ ..\packages\System.Numerics.Vectors.4.5.0\lib\net46\System.Numerics.Vectors.dll - - ..\packages\System.Runtime.CompilerServices.Unsafe.4.7.1\lib\net461\System.Runtime.CompilerServices.Unsafe.dll + + ..\packages\System.Runtime.CompilerServices.Unsafe.5.0.0\lib\net45\System.Runtime.CompilerServices.Unsafe.dll ..\packages\System.Runtime.InteropServices.RuntimeInformation.4.3.0\lib\net45\System.Runtime.InteropServices.RuntimeInformation.dll diff --git a/Thermo.Active.Database/packages.config b/Thermo.Active.Database/packages.config index 30080c40..787bbdf6 100644 --- a/Thermo.Active.Database/packages.config +++ b/Thermo.Active.Database/packages.config @@ -16,7 +16,7 @@ - + diff --git a/Thermo.Active.Model/Constants.cs b/Thermo.Active.Model/Constants.cs index 68f76c62..b28b84a8 100644 --- a/Thermo.Active.Model/Constants.cs +++ b/Thermo.Active.Model/Constants.cs @@ -7,17 +7,276 @@ namespace Thermo.Active.Model { public static class Constants { - public static bool IS_BETA = false; - public static string NOT_FOUND_ALARM_MESSAGE = "Alarm_id_{0} : Message not found"; - public static string NOT_CONFIGURATED_ALARM_MESSAGE = "Alarm_id_{0} : Message not configurated"; - public static string CMS_CONNECT_SETUP_ALARM_MESSAGE = "Error during CMS-Connect setup: Redis Db Not Found"; - public static int DATABASE_PROCESS_TIMEOUT = 5; + #region Public Fields + + public const string ALARM_ATTACHMENT_PATH = @"C:\CMS\Active\attachment\alarm\"; + public const string ALARM_PREFIX = "alarm_"; + public const string ALARMS_CONFIG_PATH = CONFIG_DIRECTORY + "alarmsConfig.xml"; + public const string ALARMS_CONFIG_SCHEMA_PATH = RESOURCE_DIRECTORY + "alarmsConfigValidator.xsd"; + public const string AREAS_CONFIG_KEY = "areasConfig"; + public const string AREAS_CONFIG_PATH = CONFIG_DIRECTORY + "areasConfig.xml"; + public const string AREAS_CONFIG_SCHEMA_PATH = RESOURCE_DIRECTORY + "areasConfigValidator.xsd"; + + // Token fields Keys + public const string AUTHENTICATION_TYPE = "Bearer"; + + public const string AXES_CONFIG_PATH = CONFIG_DIRECTORY + "axesConfig.xml"; + public const string AXES_CONFIG_SCHEMA_PATH = RESOURCE_DIRECTORY + @"axesConfigValidator.xsd"; + public const string BROADCAST_DATA = "BROADCAST_DATA"; + + // File paths + public const string CLIENT_EXE_NAME = @"Active_Client.exe"; + + public const string CLIENT_EXE_NAME_NOEXT = @"Active_Client"; + public const string CMS_CONNECT_CONFIG_PATH = CONFIG_DIRECTORY + "cmsConnectConfig.xml"; + public const string CMS_CONNECT_CONFIG_SCHEMA_PATH = RESOURCE_DIRECTORY + "cmsConnectConfigValidator.xsd"; + public const string CMS_FOLDER_PATH = @"C:\CMS\"; + public const string CONFIG_DIRECTORY = "Config\\"; + public const string CONNECT_DATAMODEL_CONFIG_PATH = CONFIG_DIRECTORY + "DataModel.xml"; + public const string CONNECT_DATAMODEL_CONFIG_SCHEMA_PATH = RESOURCE_DIRECTORY + "dataModelConfigValidator.xsd"; + public const string CUSTOMER_CONTACTS = CMS_FOLDER_PATH + "ContactInfo.xml"; + public const string CUSTOMER_CONTACTS_CONFIG_SCHEMA_PATH = RESOURCE_DIRECTORY + "customerContactConfigValidator.xsd"; + public const string DATABASE_NAME = "ThermoActive"; + public const string DATABASE_PWD = "root"; + + // Database config + public const string DATABASE_USER = "root"; + + public const string DEFAULT_FAM_NAME = "Family"; + public const string DIAM_METRIC = "DIAMETER"; + public const double EPSILON = 0.1; + public const string HEADS_CONFIG_PATH = CONFIG_DIRECTORY + "headsConfig.xml"; + public const string HEADS_CONFIG_SCHEMA_PATH = RESOURCE_DIRECTORY + "headsConfigValidator.xsd"; + public const string IO_CONFIG_PATH = CONFIG_DIRECTORY + "IOConfig.xml"; + public const string IO_CONFIG_SCHEMA_PATH = RESOURCE_DIRECTORY + "IOConfigValidator.xsd"; + public const string JOB_MAIN_FILENAME = "main.cnc"; + public const string JOB_METADATA_FILENAME = "metadata.json"; + public const string JOB_TMP_DIRECTORY = TEMP_PP_FOLDER + @"job\"; + public const string LIVE_RECIPE_PATH = TEMP_FOLDER + "Recipes\\current.rcp"; + public const string LIVE_SCHED_TASK_PATH = TEMP_FOLDER + "Recipes\\sched.tsk"; + public const string M156_CONFIG_PATH = CONFIG_DIRECTORY + "inputOperatorConfig.xml"; + public const string M156_CONFIG_SCHEMA_PATH = RESOURCE_DIRECTORY + "inputOperatorConfigValidator.xsd"; + public const string MACHINE_ID_KEY = "machineId"; + public const string MACROS_CONFIG_PATH = CONFIG_DIRECTORY + "macrosConfig.xml"; + public const string MACROS_CONFIG_SCHEMA_PATH = RESOURCE_DIRECTORY + "macrosConfigValidator.xsd"; + public const string MAIN_PROGRAM_CONFIG_PATH = CONFIG_DIRECTORY + "customMainProgram.txt"; + public const string MAINTENANCE_ATTACHMENT_PATH = @"C:\CMS\Active\attachment\maintenance\"; + public const string MAINTENANCE_DESC_PREFIX_ID = "maint_desc_"; + + // ID prefix + public const string MAINTENANCE_PREFIX_ID = "maint_"; + + public const string MAINTENANCES_CONFIG_PATH = CONFIG_DIRECTORY + "maintenancesConfig.xml"; + public const string MAINTENANCES_CONFIG_SCHEMA_PATH = RESOURCE_DIRECTORY + "maintenancesConfigValidator.xsd"; + public const int MAX_NUM_OF_WATCHDOG_ERROR = 4; + public const int MIN_ADMIN_ROLE = 30; + public const int MIN_CMS_ROLE = 100; + public const string MODBLOCK_CONFIG_PATH = CONFIG_DIRECTORY + "moduleBlockConfig.xml"; + public const string MODBLOCK_CONFIG_SCHEMA_PATH = RESOURCE_DIRECTORY + "moduleBlockConfigValidator.xsd"; + public const string NC_CONFIG_KEY = "ncConfig"; + public const string NC_SOFTKEYS_CONFIG_PATH = CONFIG_DIRECTORY + "ncSoftKeyConfig.xml"; + public const string NC_SOFTKEYS_CONFIG_SCHEMA_PATH = RESOURCE_DIRECTORY + "ncSoftKeyConfigValidator.xsd"; + public const int numRecProdPanelGraph = 30; + public const string PART_PRG_IMAGES = TEMP_FOLDER + @"pp_img\"; + public const string PROD_SFT_CONFIG_KEY = "softwareProdConfig"; + public const string QUEUE_TMP_FOLDER = TEMP_PP_FOLDER + @"queue\"; //Costanti Tipo metreica utensili public const string RADIUS_METRIC = "RADIUS"; - public const string DIAM_METRIC = "DIAMETER"; - public const string DEFAULT_FAM_NAME = "Family"; + public const string RECIPE_CONFIG_PATH = CONFIG_DIRECTORY + "recipeConfig.xml"; + public const string RECIPE_CONFIG_SCHEMA_PATH = RESOURCE_DIRECTORY + "recipeConfigValidator.xsd"; + public const string RECIPE_TEMPLATE_PATH = CONFIG_DIRECTORY + "Recipes\\template.tpl"; + + // Registry key + public const string REGISTER_MACHINE_ID_KEY_NAME = "MachineUniqueId"; + + public const string RESOURCE_DIRECTORY = @"Thermo.Active.Config.Config."; + public const string RISK_CONFIG_PATH = CONFIG_DIRECTORY + "risk2007.xml"; + public const string RISK_CONFIG_SCHEMA_PATH = RESOURCE_DIRECTORY + "risk2007Validator.xsd"; + public const string ROLE_LEVEL_KEY = "roleLevel"; + public const string SCADA_DIRECTORY = @"C:\CMS\Active\scada\"; + public const string SCADA_PAGES_SCHEMA_PATH = RESOURCE_DIRECTORY + "scadaValidator.xsd"; + public const string SEND_ACTIVE_PROGRAM_DATA = "SEND_ACTIVE_PROGRAM_DATA"; + + // MVVM Messages to signalR tasks + public const string SEND_ALARMS = "SEND_ALARMS"; + + public const string SEND_AXIS_INFO = "SEND_AXIS_INFO"; + public const string SEND_CHANNELS_IO_DATA = "SEND_CHANNELS_IO_DATA"; + public const string SEND_CMSCONNECT_GW_REBOOT_STATUS = "SEND_CMSCONNECT_GW_REBOOT_STATUS"; + public const string SEND_ERROR_TO_UI = "SEND_ERROR_TO_UI"; + public const string SEND_EXPIRED_MAINTENANCES_DATA = "SEND_EXPIRED_MAINTENANCES_DATA"; + public const string SEND_FUNCTIONALITY_DATA = "SEND_FUNCTION_DATA"; + public const string SEND_GENERIC_DATA = "SEND_GENERIC_DATA"; + public const string SEND_HEADS_DATA = "SEND_HEADS_DATA"; + public const string SEND_M155_DATA = "SEND_M155_DATA"; + public const string SEND_M156_DATA = "SEND_M156_DATA"; + public const string SEND_MESSAGE = "SEND_MESSAGE"; + public const string SEND_NC_SOFTKEYS_DATA = "SEND_NC_SOFTKEYS_DATA"; + public const string SEND_NC_STATUS = "NC_STATUS"; + public const string SEND_NC_STATUS_UI = "NC_STATUS_UI"; + public const string SEND_POWER_ON_DATA = "SEND_POWER_ON_DATA"; + public const string SEND_PROCESSES_DATA = "SEND_PROCESSES_STATUS"; + public const string SEND_QUEUE_DATA = "SEND_QUEUE_DATA"; + public const string SEND_SCADA_DATA = "SEND_SCADA_DATA"; + + // MVVM Messages to server UI + public const string SEND_STOP_SERVER = "STOP_SERVER"; + + public const string SEND_STOP_THREADS = "SEND_STOP_THREADS"; + public const string SEND_THERMO_AREA_DATA = "SEND_THERMO_AREA_DATA"; + public const string SEND_THERMO_GAUGE_DATA = "SEND_THERMO_GAUGE_DATA"; + public const string SEND_THERMO_MODULE_DATA = "SEND_THERMO_MODULE_DATA"; + public const string SEND_THERMO_PROD_CYCLE_DATA = "SEND_THERMO_PROD_CYCLE_DATA"; + public const string SEND_THERMO_PROD_INFO_DATA = "SEND_THERMO_PROD_INFO_DATA"; + public const string SEND_THERMO_PROD_PANEL_DATA = "SEND_THERMO_PROD_PANEL_DATA"; + public const string SEND_THERMO_RECIPE_CHANGED = "SEND_THERMO_RECIPE_CHANGED"; + + // MVVM Messages for Thermo active specs + public const string SEND_THERMO_RECIPE_FULL = "SEND_THERMO_RECIPE_FULL"; + + public const string SEND_THERMO_RECIPE_OVERWIEW = "SEND_THERMO_RECIPE_OVERWIEW"; + public const string SEND_THERMO_RECIPE_SETPOINTHMI_CHANGED = "SEND_THERMO_RECIPE_SETPOINTHMI_CHANGED"; + public const string SEND_THERMO_WARMERS_DATA = "SEND_THERMO_WARMERS_DATA"; + public const string SEND_THREADS_STATUS = "THREAD_STATUS"; + public const string SEND_USER_SOFTKEYS_DATA = "SEND_USER_SOFTKEYS_DATA"; + + // Names in the xml file + public const string SERVER_CONFIG_KEY = "serverConfig"; + + public const string SERVER_CONFIG_PATH = CONFIG_DIRECTORY + "serverConfig.xml"; + public const string SERVER_CONFIG_SCHEMA_PATH = RESOURCE_DIRECTORY + @"serverConfigValidator.xsd"; + public const string SHOW_MSG_UI = "SHOW_MSG_UI"; + public const string SOFTKEY_HEAD_ID = "Head_"; + public const string SOFTKEY_PREFIX_ID = "softkey_"; + public const string TEMP_FOLDER = @"C:\CMS\ThermoActive\TMP\"; + public const string TEMP_PP_FOLDER = TEMP_FOLDER + @"pp\"; + public const string THERMO_DATA_FOLDER = "wwwroot\\thermoprophet\\"; + public const string THERMO_PROD_PATH = CONFIG_DIRECTORY + "thermoProdConfig.xml"; + public const string THERMO_PROD_SCHEMA_PATH = RESOURCE_DIRECTORY + "thermoProdConfigValidator.xsd"; + + // THERMO SPEC + public const string THERMOCAM_CONFIG_PATH = CONFIG_DIRECTORY + "ThermoConf.json"; + + public const string USER_ID_KEY = "id"; + public const string USER_SOFTKEYS_CONFIG_PATH = CONFIG_DIRECTORY + "userSoftKeyConfig.xml"; + public const string USER_SOFTKEYS_CONFIG_SCHEMA_PATH = RESOURCE_DIRECTORY + "userSoftKeyConfigValidator.xsd"; + public const string USERNAME_KEY = "username"; + + // Config File Names + public static readonly string BASE_PATH = Path.GetDirectoryName(Assembly.GetEntryAssembly().Location); + + public static readonly string CLIENT_PATH_64 = BASE_PATH + @"\Client\x64\" + CLIENT_EXE_NAME; + public static readonly string CLIENT_PATH_86 = BASE_PATH + @"\Client\x86\" + CLIENT_EXE_NAME; + public static readonly string[] VALID_FILE_EXTENSIONS = { "", ".txt", ".cnc", ".ini", ".mpf", ".spf" }; + public static readonly string[] VALID_IMAGE_EXTENSIONS = { ".jpg", ".jpeg", ".png", ".bmp", ".gif" }; + public static string CANDY_DUMMYFILE_PATH = BASE_PATH + "\\dll.dll"; + public static string CMS_CONNECT_SETUP_ALARM_MESSAGE = "Error during CMS-Connect setup: Redis Db Not Found"; + public static int DATABASE_PROCESS_TIMEOUT = 5; + + public static string[] DATE_FORMATS = new[] { + "M-d-yyyy", + "dd-MM-yyyy", + "MM-dd-yyyy", + "M/d/yyyy", + "dd/MM/yyyy", + "MM/dd/yyyy", + "dd.MM.yyyy", + "MM.dd.yyyy" + }; + + public static string[] DATE_TIME_FORMATS = new[] { + "M-d-yyyy HH:mm", + "dd-MM-yyyy HH:mm", + "MM-dd-yyyy HH:mm", + "M/d/yyyy HH:mm", + "dd/MM/yyyy HH:mm", + "MM/dd/yyyy HH:mm" + }; + + public static bool IS_BETA = false; + public static string[] JOB_EXTENSIONS = { ".job", ".zip" }; + public static string LANGUAGE_PACK_DIRECTORY = BASE_PATH + "\\languages\\"; + public static string LANGUAGE_SCHEMA_PATH = BASE_PATH + "\\LanguageValidator.xsd"; + public static string NOT_CONFIGURATED_ALARM_MESSAGE = "Alarm_id_{0} : Message not configurated"; + public static string NOT_FOUND_ALARM_MESSAGE = "Alarm_id_{0} : Message not found"; + public static string PARTPRG_LIST_FILE = "activePP.list"; + + public static string QUEUE_FILE_NAME = "pp"; + + public static string WEBSITE_DIRECTORY = BASE_PATH + "\\view"; + + #endregion Public Fields + + #region Public Enums + + public enum ACTIONS + { + READ, + WRITE + } + + public enum ALARM_SOURCE + { + NC = 0, + PLC = 1 + } + + public enum ALARM_TYPE + { + ERROR = 0, + WARNING = 1 + } + + public enum ERROR_LEVEL + { + INFO = 1, + WARNING = 2, + ERROR = 3, + FATAL = 4 + } + + public enum HEAD_TYPE + { + SPINDLE = 0, + WJ = 1, + AWJ = 2, + LASER = 3 + } + + // Maintenances types + public enum MAINTENANCE_TYPE + { + EXP_DATE = 0, + MACHINE_INTERVAL = 1, + TIME_INTERVAL = 2 + } + + public enum MAINTENANCE_UNIT_OF_MEASURE + { + mm = 0, + D = 1, + H = 2, + M = 3 + } + + public enum QUEUE_ITEM_STATUS + { + NOT_ACTIVE = 0, + RUNNING = 1, + WAITING_OPERATOR = 2, + FINISHED = 3 + } + + public enum ROLE_IDS + { + CMS_SERVICE = 1, + CMS_UT = 2, + CUSTOMER_ADMIN = 3, + CUSTOMER_OPERATOR = 4, + CUSTOMER_MAINTAINER = 5 + } public enum SCADA_ELEMENT_TYPE { @@ -29,36 +288,10 @@ namespace Thermo.Active.Model NEGATE_IMAGE = 5 } - public struct SCADA_ACTION + public enum SOFTKEY_PLACE : int { - public static string READ = "read"; - public static string WRITE = "write"; - } - - public const int MIN_CMS_ROLE = 100; - public const int MIN_ADMIN_ROLE = 30; - - public enum ROLE_IDS - { - CMS_SERVICE = 1, - CMS_UT = 2, - CUSTOMER_ADMIN = 3, - CUSTOMER_OPERATOR = 4, - CUSTOMER_MAINTAINER = 5 - } - - public enum ACTIONS - { - READ, - WRITE - } - - public enum ERROR_LEVEL - { - INFO = 1, - WARNING = 2, - ERROR = 3, - FATAL = 4 + PADDLE = 0, + GANT = 1, } public enum SOFTKEY_TYPE @@ -68,18 +301,67 @@ namespace Thermo.Active.Model GROUP = 2 } - public enum SOFTKEY_PLACE : int + public enum TACT_AXES_TYPE { - PADDLE = 0, - GANT = 1, + NA = 0, + LINEAR, + ROTATIONAL } - public enum HEAD_TYPE + [JsonConverter(typeof(StringEnumConverter))] + public enum TACT_DOW { - SPINDLE = 0, - WJ = 1, - AWJ = 2, - LASER = 3 + Sunday = 0, + Monday, + Tuesday, + Wednesday, + Thursday, + Friday, + Saturday + } + + public enum TACT_IO_TYPE + { + ND = 0, + + /// + /// Digital IN + /// + DI, + + /// + /// Digital OUT + /// + DO, + + /// + /// Analog IN + /// + AI, + + /// + /// Analog OUT + /// + AO + } + + public enum TACT_MBLOCK_SECTION + { + ND = 0, + HEATING, + FORMING, + EXTRACTION + } + + public enum TACT_MBLOCK_TYPE + { + ND = 0, + HEATING, + DRAWING, + MOVEMENT, + VACUUM, + COOLING, + EXTRACTION } public enum TACT_PARAM_TYPE @@ -98,43 +380,6 @@ namespace Thermo.Active.Model Options } - public enum TACT_IO_TYPE - { - ND = 0, - /// - /// Digital IN - /// - DI, - /// - /// Digital OUT - /// - DO, - /// - /// Analog IN - /// - AI, - /// - /// Analog OUT - /// - AO - } - public enum TACT_MBLOCK_TYPE - { - ND = 0, - HEATING, - DRAWING, - MOVEMENT, - VACUUM, - COOLING, - EXTRACTION - } - public enum TACT_AXES_TYPE - { - NA = 0, - LINEAR, - ROTATIONAL - } - [JsonConverter(typeof(StringEnumConverter))] public enum TACT_PROD_CATEGORY { @@ -142,20 +387,6 @@ namespace Thermo.Active.Model GAUGE } - public enum TACT_MBLOCK_SECTION - { - ND = 0, - HEATING, - FORMING, - EXTRACTION - } - - [JsonConverter(typeof(StringEnumConverter))] - public enum TACT_SCHED_TASK - { - ND = 0, - PRE_HEAT - } [JsonConverter(typeof(StringEnumConverter))] public enum TACT_SCHED_PERIOD { @@ -165,109 +396,106 @@ namespace Thermo.Active.Model MONTH, YEAR } + [JsonConverter(typeof(StringEnumConverter))] - public enum TACT_DOW + public enum TACT_SCHED_TASK { - Sunday = 0, - Monday, - Tuesday, - Wednesday, - Thursday, - Friday, - Saturday + ND = 0, + PRE_HEAT } - public enum MAINTENANCE_UNIT_OF_MEASURE + #endregion Public Enums + + #region Public Structs + + public struct SCADA_ACTION { - mm = 0, - D = 1, - H = 2, - M = 3 + #region Public Fields + + public static string READ = "read"; + public static string WRITE = "write"; + + #endregion Public Fields } - public enum ALARM_SOURCE + #endregion Public Structs + + #region Public Classes + + public static class API_ERROR_KEYS { - NC = 0, - PLC = 1 + #region Public Fields + + public const string CUSTOMER_FILE_INVALID = "contactinfo_error_customer_configfile"; + public const string DUPLICATED_USERNAME = "error_duplicated_username"; + public const string ID_ALREADY_EXIST = "error_id_already_exist"; + public const string IMPORT_FILE_NOT_VALID = "error_import_file_not_valid"; + public const string INCORRECT_PARAMETERS = "error_incorrect_parameters"; + public const string OPTION_NOT_ACTIVE = "error_option_not_active"; + public const string PASSWORD_IS_INVALID = "error_password_is_invalid"; + + #endregion Public Fields } - public enum ALARM_TYPE + public static class FUNCTIONALITY_NAMES { - ERROR = 0, - WARNING = 1 - } + #region Public Fields - // Maintenances types - public enum MAINTENANCE_TYPE - { - EXP_DATE = 0, - MACHINE_INTERVAL = 1, - TIME_INTERVAL = 2 - } + public const string ALARM_CMD = "alarmCmd"; + public const string AXES_SELECTION = "axesSoftkeys"; + public const string GENERAL = "general"; + public const string HEADS_CMD = "headsCmd"; + public const string MAINTENANCE = "maintenance"; + public const string NC_DATA = "ncData"; + public const string NC_SOFTKEY = "ncSoftkeys"; + public const string PROCESS_CMD = "processCmd"; + public const string RECIPE_MANAGER = "thermoRecipeManager"; + public const string RISC_MANAGER = "riscManager"; + public const string STARTUP_ICONS = "startupIcons"; + public const string THERMO_MANAGER = "thermoManager"; + public const string USER_FUNCTIONS = "userFunctions"; + public const string USER_SOFTKEY = "userSoftkeys"; - public enum QUEUE_ITEM_STATUS - { - NOT_ACTIVE = 0, - RUNNING = 1, - WAITING_OPERATOR = 2, - FINISHED = 3 + #endregion Public Fields } - public const int MAX_NUM_OF_WATCHDOG_ERROR = 4; - public static class NC_VENDOR { + #region Public Fields + public const string DEMO = "DEMO"; public const string FANUC = "FANUC"; - public const string SIEMENS = "SIEMENS"; public const string OSAI = "OSAI"; public const string S7NET = "S7NET"; + public const string SIEMENS = "SIEMENS"; + + #endregion Public Fields } - // Database config - public const string DATABASE_USER = "root"; - - public const string DATABASE_PWD = "root"; - public const string DATABASE_NAME = "ThermoActive"; - - // Registry key - public const string REGISTER_MACHINE_ID_KEY_NAME = "MachineUniqueId"; - - // Token fields Keys - public const string AUTHENTICATION_TYPE = "Bearer"; - public const string MACHINE_ID_KEY = "machineId"; - - public const string ROLE_LEVEL_KEY = "roleLevel"; - public const string USERNAME_KEY = "username"; - public const string USER_ID_KEY = "id"; - - // Names in the xml file - public const string SERVER_CONFIG_KEY = "serverConfig"; - - public const string NC_CONFIG_KEY = "ncConfig"; - public const string PROD_SFT_CONFIG_KEY = "softwareProdConfig"; - public const string AREAS_CONFIG_KEY = "areasConfig"; - // Active Areas public class AREAS { + #region Public Fields + + public const string ALARMS_KEY = "alarms"; + public const string GENERAL_KEY = "general"; + public const string JOBEDITOR_KEY = "jobeditor"; + public const string MAINTENANCE_KEY = "maintenance"; public const string PRODUCTION_KEY = "production"; public const string REPORT_KEY = "report"; - public const string ALARMS_KEY = "alarms"; - public const string MAINTENANCE_KEY = "maintenance"; - public const string UTILITIES_KEY = "utilities"; - public const string SCADA_KEY = "scada"; - public const string GENERAL_KEY = "general"; - public const string UNDER_HOOD = "underHood"; - public const string JOBEDITOR_KEY = "jobeditor"; - public const string USERS_KEY = "users"; - public const string THERMO_KEY = "thermo"; public const string RISC_KEY = "risc"; + public const string SCADA_KEY = "scada"; public const string THERMO_HOOD_KEY = "thermoHood"; + public const string THERMO_KEY = "thermo"; + public const string UNDER_HOOD = "underHood"; + public const string USERS_KEY = "users"; + public const string UTILITIES_KEY = "utilities"; + + #endregion Public Fields } - // Config File Names - public static readonly string BASE_PATH = Path.GetDirectoryName(Assembly.GetEntryAssembly().Location); + #endregion Public Classes + //public static readonly string BASE_PATH = Path.GetDirectoryName(Assembly.GetExecutingAssembly().Location).Replace("\\lib", ""); #if DEBUG @@ -275,209 +503,6 @@ namespace Thermo.Active.Model public static readonly string CLIENT_PATH_86 = BASE_PATH + @"\Client_Debug\x86\" + CLIENT_EXE_NAME; public static string WEBSITE_DIRECTORY = Path.Combine(BASE_PATH, "..", "wwwroot"); #else - public static readonly string CLIENT_PATH_64 = BASE_PATH + @"\Client\x64\" + CLIENT_EXE_NAME; - public static readonly string CLIENT_PATH_86 = BASE_PATH + @"\Client\x86\" + CLIENT_EXE_NAME; - public static string WEBSITE_DIRECTORY = BASE_PATH + "\\view"; #endif - - public const int numRecProdPanelGraph = 30; - public const string CONFIG_DIRECTORY = "Config\\"; - public const string RECIPE_TEMPLATE_PATH = CONFIG_DIRECTORY + "Recipes\\template.tpl"; - public const string LIVE_RECIPE_PATH = TEMP_FOLDER + "Recipes\\current.rcp"; - public const string LIVE_SCHED_TASK_PATH = TEMP_FOLDER + "Recipes\\sched.tsk"; - public const string RESOURCE_DIRECTORY = @"Thermo.Active.Config.Config."; - public const string SERVER_CONFIG_SCHEMA_PATH = RESOURCE_DIRECTORY + @"serverConfigValidator.xsd"; - public const string SERVER_CONFIG_PATH = CONFIG_DIRECTORY + "serverConfig.xml"; - - public const string AREAS_CONFIG_SCHEMA_PATH = RESOURCE_DIRECTORY + "areasConfigValidator.xsd"; - public const string AREAS_CONFIG_PATH = CONFIG_DIRECTORY + "areasConfig.xml"; - - public const string M156_CONFIG_SCHEMA_PATH = RESOURCE_DIRECTORY + "inputOperatorConfigValidator.xsd"; - public const string M156_CONFIG_PATH = CONFIG_DIRECTORY + "inputOperatorConfig.xml"; - - public const string CONNECT_DATAMODEL_CONFIG_SCHEMA_PATH = RESOURCE_DIRECTORY + "dataModelConfigValidator.xsd"; - public const string CONNECT_DATAMODEL_CONFIG_PATH = CONFIG_DIRECTORY + "DataModel.xml"; - - public const string MAINTENANCES_CONFIG_SCHEMA_PATH = RESOURCE_DIRECTORY + "maintenancesConfigValidator.xsd"; - public const string CUSTOMER_CONTACTS_CONFIG_SCHEMA_PATH = RESOURCE_DIRECTORY + "customerContactConfigValidator.xsd"; - public const string MAINTENANCES_CONFIG_PATH = CONFIG_DIRECTORY + "maintenancesConfig.xml"; - public const string CUSTOMER_CONTACTS = CMS_FOLDER_PATH + "ContactInfo.xml"; - - - public const string USER_SOFTKEYS_CONFIG_SCHEMA_PATH = RESOURCE_DIRECTORY + "userSoftKeyConfigValidator.xsd"; - public const string USER_SOFTKEYS_CONFIG_PATH = CONFIG_DIRECTORY + "userSoftKeyConfig.xml"; - - public const string ALARMS_CONFIG_SCHEMA_PATH = RESOURCE_DIRECTORY + "alarmsConfigValidator.xsd"; - public const string ALARMS_CONFIG_PATH = CONFIG_DIRECTORY + "alarmsConfig.xml"; - - public const string HEADS_CONFIG_SCHEMA_PATH = RESOURCE_DIRECTORY + "headsConfigValidator.xsd"; - public const string HEADS_CONFIG_PATH = CONFIG_DIRECTORY + "headsConfig.xml"; - - // THERMO SPEC - - public const string THERMO_PROD_SCHEMA_PATH = RESOURCE_DIRECTORY + "thermoProdConfigValidator.xsd"; - public const string THERMO_PROD_PATH = CONFIG_DIRECTORY + "thermoProdConfig.xml"; - - public const string RECIPE_CONFIG_SCHEMA_PATH = RESOURCE_DIRECTORY + "recipeConfigValidator.xsd"; - public const string RECIPE_CONFIG_PATH = CONFIG_DIRECTORY + "recipeConfig.xml"; - - public const string MODBLOCK_CONFIG_SCHEMA_PATH = RESOURCE_DIRECTORY + "moduleBlockConfigValidator.xsd"; - public const string MODBLOCK_CONFIG_PATH = CONFIG_DIRECTORY + "moduleBlockConfig.xml"; - - public const string IO_CONFIG_SCHEMA_PATH = RESOURCE_DIRECTORY + "IOConfigValidator.xsd"; - public const string IO_CONFIG_PATH = CONFIG_DIRECTORY + "IOConfig.xml"; - - public const string RISK_CONFIG_SCHEMA_PATH = RESOURCE_DIRECTORY + "risk2007Validator.xsd"; - public const string RISK_CONFIG_PATH = CONFIG_DIRECTORY + "risk2007.xml"; - - public const string NC_SOFTKEYS_CONFIG_SCHEMA_PATH = RESOURCE_DIRECTORY + "ncSoftKeyConfigValidator.xsd"; - public const string NC_SOFTKEYS_CONFIG_PATH = CONFIG_DIRECTORY + "ncSoftKeyConfig.xml"; - - public const string CMS_CONNECT_CONFIG_SCHEMA_PATH = RESOURCE_DIRECTORY + "cmsConnectConfigValidator.xsd"; - public const string CMS_CONNECT_CONFIG_PATH = CONFIG_DIRECTORY + "cmsConnectConfig.xml"; - - public const string MACROS_CONFIG_SCHEMA_PATH = RESOURCE_DIRECTORY + "macrosConfigValidator.xsd"; - public const string MACROS_CONFIG_PATH = CONFIG_DIRECTORY + "macrosConfig.xml"; - - - public const string AXES_CONFIG_SCHEMA_PATH = RESOURCE_DIRECTORY + @"axesConfigValidator.xsd"; - public const string AXES_CONFIG_PATH = CONFIG_DIRECTORY + "axesConfig.xml"; - - public const string MAIN_PROGRAM_CONFIG_PATH = CONFIG_DIRECTORY + "customMainProgram.txt"; - - - public static string LANGUAGE_PACK_DIRECTORY = BASE_PATH + "\\languages\\"; - public static string LANGUAGE_SCHEMA_PATH = BASE_PATH + "\\LanguageValidator.xsd"; - - - public const string SCADA_PAGES_SCHEMA_PATH = RESOURCE_DIRECTORY + "scadaValidator.xsd"; - public static string CANDY_DUMMYFILE_PATH = BASE_PATH + "\\dll.dll"; - public static string PARTPRG_LIST_FILE = "activePP.list"; - - // MVVM Messages to server UI - public const string SEND_STOP_SERVER = "STOP_SERVER"; - - public const string SEND_MESSAGE = "SEND_MESSAGE"; - public const string SEND_STOP_THREADS = "SEND_STOP_THREADS"; - public const string SEND_NC_STATUS = "NC_STATUS"; - public const string SEND_NC_STATUS_UI = "NC_STATUS_UI"; - public const string SEND_THREADS_STATUS = "THREAD_STATUS"; - public const string SEND_CMSCONNECT_GW_REBOOT_STATUS = "SEND_CMSCONNECT_GW_REBOOT_STATUS"; - public const string SHOW_MSG_UI = "SHOW_MSG_UI"; - public const string SEND_ERROR_TO_UI = "SEND_ERROR_TO_UI"; - - // MVVM Messages to signalR tasks - public const string SEND_ALARMS = "SEND_ALARMS"; - - public const string SEND_POWER_ON_DATA = "SEND_POWER_ON_DATA"; - public const string SEND_GENERIC_DATA = "SEND_GENERIC_DATA"; - public const string SEND_PROCESSES_DATA = "SEND_PROCESSES_STATUS"; - public const string SEND_FUNCTIONALITY_DATA = "SEND_FUNCTION_DATA"; - public const string SEND_EXPIRED_MAINTENANCES_DATA = "SEND_EXPIRED_MAINTENANCES_DATA"; - public const string SEND_USER_SOFTKEYS_DATA = "SEND_USER_SOFTKEYS_DATA"; - public const string SEND_NC_SOFTKEYS_DATA = "SEND_NC_SOFTKEYS_DATA"; - public const string SEND_HEADS_DATA = "SEND_HEADS_DATA"; - public const string SEND_AXIS_INFO = "SEND_AXIS_INFO"; - public const string SEND_CHANNELS_IO_DATA = "SEND_CHANNELS_IO_DATA"; - public const string SEND_ACTIVE_PROGRAM_DATA = "SEND_ACTIVE_PROGRAM_DATA"; - public const string SEND_QUEUE_DATA = "SEND_QUEUE_DATA"; - public const string SEND_M155_DATA = "SEND_M155_DATA"; - public const string SEND_M156_DATA = "SEND_M156_DATA"; - public const string SEND_SCADA_DATA = "SEND_SCADA_DATA"; - - // MVVM Messages for Thermo active specs - public const string SEND_THERMO_RECIPE_FULL = "SEND_THERMO_RECIPE_FULL"; - public const string SEND_THERMO_RECIPE_OVERWIEW = "SEND_THERMO_RECIPE_OVERWIEW"; - public const string SEND_THERMO_RECIPE_CHANGED = "SEND_THERMO_RECIPE_CHANGED"; - public const string SEND_THERMO_RECIPE_SETPOINTHMI_CHANGED = "SEND_THERMO_RECIPE_SETPOINTHMI_CHANGED"; - public const string SEND_THERMO_MODULE_DATA = "SEND_THERMO_MODULE_DATA"; - public const string SEND_THERMO_WARMERS_DATA = "SEND_THERMO_WARMERS_DATA"; - public const string SEND_THERMO_AREA_DATA = "SEND_THERMO_AREA_DATA"; - public const string SEND_THERMO_GAUGE_DATA = "SEND_THERMO_GAUGE_DATA"; - public const string SEND_THERMO_PROD_PANEL_DATA = "SEND_THERMO_PROD_PANEL_DATA"; - public const string SEND_THERMO_PROD_INFO_DATA = "SEND_THERMO_PROD_INFO_DATA"; - public const string SEND_THERMO_PROD_CYCLE_DATA = "SEND_THERMO_PROD_CYCLE_DATA"; - - public const string BROADCAST_DATA = "BROADCAST_DATA"; - - // ID prefix - public const string MAINTENANCE_PREFIX_ID = "maint_"; - - public const string MAINTENANCE_DESC_PREFIX_ID = "maint_desc_"; - public const string SOFTKEY_PREFIX_ID = "softkey_"; - public const string SOFTKEY_HEAD_ID = "Head_"; - public const string ALARM_PREFIX = "alarm_"; - - public static class FUNCTIONALITY_NAMES - { - public const string GENERAL = "general"; - public const string USER_FUNCTIONS = "userFunctions"; - public const string NC_DATA = "ncData"; - public const string ALARM_CMD = "alarmCmd"; - public const string STARTUP_ICONS = "startupIcons"; - public const string PROCESS_CMD = "processCmd"; - public const string NC_SOFTKEY = "ncSoftkeys"; - public const string USER_SOFTKEY = "userSoftkeys"; - public const string HEADS_CMD = "headsCmd"; - public const string MAINTENANCE = "maintenance"; - public const string AXES_SELECTION = "axesSoftkeys"; - public const string THERMO_MANAGER = "thermoManager"; - public const string RISC_MANAGER = "riscManager"; - public const string RECIPE_MANAGER = "thermoRecipeManager"; - } - - public static class API_ERROR_KEYS - { - public const string INCORRECT_PARAMETERS = "error_incorrect_parameters"; - public const string OPTION_NOT_ACTIVE = "error_option_not_active"; - public const string ID_ALREADY_EXIST = "error_id_already_exist"; - public const string PASSWORD_IS_INVALID = "error_password_is_invalid"; - public const string IMPORT_FILE_NOT_VALID = "error_import_file_not_valid"; - public const string DUPLICATED_USERNAME = "error_duplicated_username"; - public const string CUSTOMER_FILE_INVALID = "contactinfo_error_customer_configfile"; - } - - // File paths - public const string CLIENT_EXE_NAME = @"Active_Client.exe"; - public const string CLIENT_EXE_NAME_NOEXT = @"Active_Client"; - public const string MAINTENANCE_ATTACHMENT_PATH = @"C:\CMS\Active\attachment\maintenance\"; - public const string CMS_FOLDER_PATH = @"C:\CMS\"; - - public const string ALARM_ATTACHMENT_PATH = @"C:\CMS\Active\attachment\alarm\"; - public const string TEMP_FOLDER = @"C:\CMS\ThermoActive\TMP\"; - public const string TEMP_PP_FOLDER = TEMP_FOLDER + @"pp\"; - public const string JOB_TMP_DIRECTORY = TEMP_PP_FOLDER + @"job\"; - public const string QUEUE_TMP_FOLDER = TEMP_PP_FOLDER + @"queue\"; - public const string PART_PRG_IMAGES = TEMP_FOLDER + @"pp_img\"; - - public const string SCADA_DIRECTORY = @"C:\CMS\Active\scada\"; - - public static readonly string[] VALID_FILE_EXTENSIONS = { "", ".txt", ".cnc", ".ini", ".mpf", ".spf" }; - public static readonly string[] VALID_IMAGE_EXTENSIONS = { ".jpg", ".jpeg", ".png", ".bmp", ".gif" }; - public const double EPSILON = 0.1; - public static string QUEUE_FILE_NAME = "pp"; - public const string JOB_MAIN_FILENAME = "main.cnc"; - public const string JOB_METADATA_FILENAME = "metadata.json"; - public static string[] JOB_EXTENSIONS = { ".job", ".zip" }; - - public static string[] DATE_TIME_FORMATS = new[] { - "M-d-yyyy HH:mm", - "dd-MM-yyyy HH:mm", - "MM-dd-yyyy HH:mm", - "M/d/yyyy HH:mm", - "dd/MM/yyyy HH:mm", - "MM/dd/yyyy HH:mm" - }; - - public static string[] DATE_FORMATS = new[] { - "M-d-yyyy", - "dd-MM-yyyy", - "MM-dd-yyyy", - "M/d/yyyy", - "dd/MM/yyyy", - "MM/dd/yyyy", - "dd.MM.yyyy", - "MM.dd.yyyy" - }; } } \ No newline at end of file diff --git a/Thermo.Active.NC/NcAdapter.cs b/Thermo.Active.NC/NcAdapter.cs index 06d9fd01..49034447 100644 --- a/Thermo.Active.NC/NcAdapter.cs +++ b/Thermo.Active.NC/NcAdapter.cs @@ -100,11 +100,6 @@ namespace Thermo.Active.NC /// protected DateTime lastProdStart; - /// - /// ultima immagine scattata dalla thermocam x salvataggio in PROD - /// - protected string lastThermoImage = "_last.jpg"; - #endregion Protected Fields #region Public Fields @@ -119,6 +114,11 @@ namespace Thermo.Active.NC /// public static LiveData RecipeLiveData = new LiveData(); + /// + /// ultima immagine scattata dalla thermocam x salvataggio in PROD + /// + public string lastThermoImage = "_last"; + /// /// Avvio prod lotto /// diff --git a/Thermo.Active.NC/app.config b/Thermo.Active.NC/app.config index ae51a6e2..167a0b5a 100644 --- a/Thermo.Active.NC/app.config +++ b/Thermo.Active.NC/app.config @@ -28,7 +28,7 @@ - + @@ -38,6 +38,10 @@ + + + + \ No newline at end of file diff --git a/Thermo.Active.UI/app.config b/Thermo.Active.UI/app.config index ae51a6e2..167a0b5a 100644 --- a/Thermo.Active.UI/app.config +++ b/Thermo.Active.UI/app.config @@ -28,7 +28,7 @@ - + @@ -38,6 +38,10 @@ + + + + \ No newline at end of file diff --git a/Thermo.Active.sln b/Thermo.Active.sln index 4f38c9cf..3c9a9a5d 100644 --- a/Thermo.Active.sln +++ b/Thermo.Active.sln @@ -44,7 +44,7 @@ Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "CMS_CORE_Library", "..\cms_ EndProject Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Client2020", "Client2020\Client2020.csproj", "{0780047F-12E4-4FCC-9748-6B23F0FD3711}" EndProject -Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Thermo.Active.Thermocamera", "THermo.Active.Thermocamera\Thermo.Active.Thermocamera.csproj", "{8D8EC91A-3A15-4A1D-951B-A35E7068DEBD}" +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Thermo.Active.Thermocamera", "Thermo.Active.Thermocamera\Thermo.Active.Thermocamera.csproj", "{8D8EC91A-3A15-4A1D-951B-A35E7068DEBD}" EndProject Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Thermo.Cam.Utils", "Thermo.Cam.Utils\Thermo.Cam.Utils.csproj", "{E4587942-498B-4AA7-9CC9-9304EB2D05C8}" EndProject @@ -204,14 +204,14 @@ Global {49B04D99-0ECD-4900-86D3-7098D61314D7}.Release|x86.Build.0 = Release|Any CPU {4ABF8EEF-2B23-483E-ACDC-53214FE28681}.Debug|Any CPU.ActiveCfg = Debug|Any CPU {4ABF8EEF-2B23-483E-ACDC-53214FE28681}.Debug|Any CPU.Build.0 = Debug|Any CPU - {4ABF8EEF-2B23-483E-ACDC-53214FE28681}.Debug|x64.ActiveCfg = Debug|x64 - {4ABF8EEF-2B23-483E-ACDC-53214FE28681}.Debug|x64.Build.0 = Debug|x64 + {4ABF8EEF-2B23-483E-ACDC-53214FE28681}.Debug|x64.ActiveCfg = Debug|Any CPU + {4ABF8EEF-2B23-483E-ACDC-53214FE28681}.Debug|x64.Build.0 = Debug|Any CPU {4ABF8EEF-2B23-483E-ACDC-53214FE28681}.Debug|x86.ActiveCfg = Debug|x86 {4ABF8EEF-2B23-483E-ACDC-53214FE28681}.Debug|x86.Build.0 = Debug|x86 {4ABF8EEF-2B23-483E-ACDC-53214FE28681}.Release|Any CPU.ActiveCfg = Release|Any CPU {4ABF8EEF-2B23-483E-ACDC-53214FE28681}.Release|Any CPU.Build.0 = Release|Any CPU - {4ABF8EEF-2B23-483E-ACDC-53214FE28681}.Release|x64.ActiveCfg = Release|x64 - {4ABF8EEF-2B23-483E-ACDC-53214FE28681}.Release|x64.Build.0 = Release|x64 + {4ABF8EEF-2B23-483E-ACDC-53214FE28681}.Release|x64.ActiveCfg = Release|Any CPU + {4ABF8EEF-2B23-483E-ACDC-53214FE28681}.Release|x64.Build.0 = Release|Any CPU {4ABF8EEF-2B23-483E-ACDC-53214FE28681}.Release|x86.ActiveCfg = Release|x86 {4ABF8EEF-2B23-483E-ACDC-53214FE28681}.Release|x86.Build.0 = Release|x86 {0780047F-12E4-4FCC-9748-6B23F0FD3711}.Debug|Any CPU.ActiveCfg = Debug|x64 diff --git a/Thermo.Active/App.config b/Thermo.Active/App.config index 9f914b44..2fd2cc3f 100644 --- a/Thermo.Active/App.config +++ b/Thermo.Active/App.config @@ -85,7 +85,7 @@ - + @@ -115,6 +115,10 @@ + + + + @@ -195,4 +199,10 @@ - \ No newline at end of file + + + + + + + diff --git a/Thermo.Active/Controllers/WebApi/ThermocameraController.cs b/Thermo.Active/Controllers/WebApi/ThermocameraController.cs deleted file mode 100644 index d67025bd..00000000 --- a/Thermo.Active/Controllers/WebApi/ThermocameraController.cs +++ /dev/null @@ -1,42 +0,0 @@ -using CMS_CORE_Library.Models; -using System; -using System.Collections.Generic; -using System.Web.Http; -using System.Web.Http.Description; -using Thermo.Active.Model.DTOModels.ThWarmers; -using Thermo.Active.NC; -using Thermo.Active.Provider; -using Thermo.Active.Thermocamera; -using Thermo.Active.Utils; -using static Thermo.Active.Config.ServerConfig; -using static Thermo.Active.Model.Constants; - -namespace Thermo.Active.Controllers.WebApi -{ - // FIXME TODO ELIMINARE CLASSE!!! - - [RoutePrefix("api/thermocamera")] - public class ThermocameraController : ApiController - { - #region Public Methods - - [Route("show"), HttpPost] - public IHttpActionResult showCamera() - { - String ThermoCameraXpos = AdditionalParametersConfig["ThermoCameraXpos"]; - String ThermoCameraYpos = AdditionalParametersConfig["ThermoCameraYpos"]; - String ThermoCameraXdim = AdditionalParametersConfig["ThermoCameraXdim"]; - String ThermoCameraYdim = AdditionalParametersConfig["ThermoCameraYdim"]; - if (ThermoCameraXpos != null && ThermoCameraYpos != null && ThermoCameraXdim != null && ThermoCameraYdim != null) - { - if (ThermocameraComunicator.getInstance().showWindow(Int32.Parse(ThermoCameraXpos), Int32.Parse(ThermoCameraYpos), Int32.Parse(ThermoCameraXdim), Int32.Parse(ThermoCameraYdim), 3000)) - return Ok(); - else - return BadRequest(); - } - return BadRequest(); - } - - #endregion Public Methods - } -} \ No newline at end of file diff --git a/Thermo.Active/FLIR.Atlas.x64.bat b/Thermo.Active/FLIR.Atlas.x64.bat new file mode 100644 index 00000000..78f26108 --- /dev/null +++ b/Thermo.Active/FLIR.Atlas.x64.bat @@ -0,0 +1,2 @@ +@echo of +xcopy "%FLIR_Atlas6%bin\x64\*.dll" %1 /Y /E /D \ No newline at end of file diff --git a/Thermo.Active/FLIR.Atlas.x86.bat b/Thermo.Active/FLIR.Atlas.x86.bat new file mode 100644 index 00000000..f3445f8f --- /dev/null +++ b/Thermo.Active/FLIR.Atlas.x86.bat @@ -0,0 +1,2 @@ +@echo of +xcopy "%FLIR_Atlas6%bin\x86\*.dll" %1 /Y /E /D \ No newline at end of file diff --git a/Thermo.Active/Properties/AssemblyInfo.cs b/Thermo.Active/Properties/AssemblyInfo.cs index 21400bf0..e540b3f2 100644 --- a/Thermo.Active/Properties/AssemblyInfo.cs +++ b/Thermo.Active/Properties/AssemblyInfo.cs @@ -30,4 +30,4 @@ using System.Runtime.InteropServices; // // You can specify all the values or you can default the Revision and Build Numbers // by using the '*' as shown below: -[assembly: AssemblyVersion("1.1.162")] +[assembly: AssemblyVersion("1.1.164")] diff --git a/Thermo.Active/Thermo.Active.csproj b/Thermo.Active/Thermo.Active.csproj index 0e2f0e06..2fff4879 100644 --- a/Thermo.Active/Thermo.Active.csproj +++ b/Thermo.Active/Thermo.Active.csproj @@ -1,8 +1,7 @@  + - - Debug @@ -36,6 +35,7 @@ false false true + true @@ -79,8 +79,8 @@ ..\packages\Microsoft.AspNet.SignalR.SystemWeb.2.2.2\lib\net45\Microsoft.AspNet.SignalR.SystemWeb.dll - - ..\packages\Microsoft.CodeDom.Providers.DotNetCompilerPlatform.1.0.8\lib\net45\Microsoft.CodeDom.Providers.DotNetCompilerPlatform.dll + + ..\packages\Microsoft.CodeDom.Providers.DotNetCompilerPlatform.3.6.0\lib\net45\Microsoft.CodeDom.Providers.DotNetCompilerPlatform.dll @@ -228,7 +228,6 @@ - @@ -11757,6 +11756,8 @@ + + Always @@ -11777,6 +11778,8 @@ Always + + @@ -16151,6 +16154,7 @@ + @@ -16497,6 +16501,29 @@ app.manifest + + true + bin\x64\Debug\ + DEBUG;TRACE + full + x64 + false + 7.3 + prompt + MinimumRecommendedRules.ruleset + true + + + true + bin\x64\Release\ + TRACE + pdbonly + x64 + 7.3 + prompt + MinimumRecommendedRules.ruleset + true + @@ -16505,23 +16532,27 @@ - - - This project references NuGet package(s) that are missing on this computer. Use NuGet Package Restore to download them. For more information, see http://go.microsoft.com/fwlink/?LinkID=322105. The missing file is {0}. - - - - - + + + + + This project references NuGet package(s) that are missing on this computer. Use NuGet Package Restore to download them. For more information, see http://go.microsoft.com/fwlink/?LinkID=322105. The missing file is {0}. + + + + + call "$(ProjectDir)\FLIR.Atlas.x86.bat" "$(TargetDir)" + \ No newline at end of file diff --git a/Thermo.Active/packages.config b/Thermo.Active/packages.config index 5195ccb7..2b08aa4b 100644 --- a/Thermo.Active/packages.config +++ b/Thermo.Active/packages.config @@ -18,8 +18,8 @@ - - + + diff --git a/Thermo.Active/wwwroot/src/app_modules_thermo/components/numeric.ts b/Thermo.Active/wwwroot/src/app_modules_thermo/components/numeric.ts index a823197f..dea983e6 100644 --- a/Thermo.Active/wwwroot/src/app_modules_thermo/components/numeric.ts +++ b/Thermo.Active/wwwroot/src/app_modules_thermo/components/numeric.ts @@ -1,4 +1,3 @@ -import { TimeLineChartHeader } from "@/components/timeline-chart"; import { debounce } from "@/_base/debounce"; import Vue from "vue"; import Component from "vue-class-component"; diff --git a/Thermo.Active/wwwroot/src/services/recipeService.ts b/Thermo.Active/wwwroot/src/services/recipeService.ts index 32c0ad33..21a2abd7 100644 --- a/Thermo.Active/wwwroot/src/services/recipeService.ts +++ b/Thermo.Active/wwwroot/src/services/recipeService.ts @@ -25,7 +25,6 @@ export class RecipeService extends baseRestService { } async Update(model: { [id: string]: Recipe.IValue }) { - let payload = {} let needsUpdate = false; @@ -47,6 +46,8 @@ export class RecipeService extends baseRestService { } async UpdateChanges(newmodel: { [id: string]: Recipe.IValue }, oldmodel: { [id: string]: Recipe.IValue }) { + + console.log("UpdateChanges"); let toupdate: { [id: string]: Recipe.IValue } = {}; let needsUpdate: boolean = false for (const key in newmodel) { diff --git a/Thermo.Active/wwwroot/thermoprophet/data/_last.dat b/Thermo.Active/wwwroot/thermoprophet/data/_last.dat new file mode 100644 index 00000000..6ec499fc --- /dev/null +++ b/Thermo.Active/wwwroot/thermoprophet/data/_last.dat @@ -0,0 +1 @@ +{"ArraySize":{"X":320,"Y":256},"ScanOrder":"YX","Values":[19.99,20.38,20.19,20.24,20.17,20.31,20.1,19.99,19.89,20.12,20.1,20.31,20.47,20.96,21.44,21.94,22.08,21.94,22.24,22.08,22.2,22.4,22.29,22.17,22.31,22.17,22.56,22.51,22.42,22.38,22.42,22.67,22.51,22.54,22.7,22.58,22.4,22.63,22.63,22.63,22.6,22.45,22.79,22.6,22.7,22.7,22.65,22.65,22.56,22.63,22.92,22.6,22.58,22.79,22.63,22.74,22.72,22.7,22.92,22.94,22.79,22.88,22.83,22.81,22.97,22.94,23.12,22.99,22.99,22.99,23.03,23.06,23.15,23.17,22.99,23.03,22.92,23.15,23.1,22.94,22.88,22.76,22.6,22.67,22.6,22.65,22.67,22.72,22.99,23.28,23.08,23.06,23.03,23.19,23.28,23.28,23.4,23.24,23.37,23.37,23.58,23.44,23.44,23.44,23.49,23.46,23.6,23.44,23.44,23.49,23.33,23.31,23.46,23.4,23.44,23.44,23.24,23.33,23.42,23.53,23.37,23.26,23.31,23.46,23.6,23.35,23.4,23.66,23.58,23.51,23.58,23.44,23.44,23.46,23.49,23.35,23.49,23.46,23.4,23.53,23.49,23.35,23.53,23.46,23.44,23.33,23.35,23.44,23.73,23.55,23.53,23.49,23.55,23.55,23.4,23.53,23.49,23.49,23.51,23.46,23.62,23.51,23.37,23.58,23.24,23.44,23.31,23.22,23.26,23.17,23.12,23.1,22.83,22.65,22.4,22.15,21.88,21.76,21.65,21.81,21.76,21.78,21.97,22.15,22.2,22.15,22.04,22.06,21.85,21.97,21.78,21.83,21.83,21.65,21.74,21.62,21.65,21.69,21.92,21.92,22.22,22.35,22.51,22.72,22.81,23.06,23.01,23.08,23.06,23.12,23.22,23.31,23.46,23.26,23.49,23.51,23.24,23.44,23.44,23.49,23.53,23.49,23.58,23.75,23.66,23.55,23.6,23.66,23.66,23.64,23.55,23.64,23.75,23.6,23.73,23.55,23.66,23.78,23.58,23.75,23.66,23.66,23.55,23.49,23.55,23.64,23.53,23.44,23.58,23.49,23.55,23.42,23.42,23.49,23.58,23.51,23.55,23.42,23.42,23.64,23.62,23.58,23.35,23.33,23.49,23.4,23.26,23.28,23.1,22.99,22.85,22.76,22.63,22.79,23.06,23.31,23.19,23.49,23.42,23.46,23.4,23.35,23.55,23.51,23.51,23.37,23.35,23.44,23.31,23.53,23.55,23.58,23.6,23.53,23.37,23.33,23.31,23.44,23.35,23.42,23.42,23.33,23.26,23.26,23.35,23.46,23.31,23.24,23.33,23.28,23.33,23.12,23.1,23.03,22.85,23.1,22.99,22.81,22.74,22.72,20.12,20.33,20.29,20.24,20.03,20.31,20.43,20.31,20.22,20.01,20.22,20.33,20.7,21.33,21.85,22.13,22.1,21.9,22.06,22.22,22.33,22.35,22.29,22.2,22.33,22.54,22.35,22.17,22.33,22.49,22.45,22.42,22.49,22.63,22.63,22.63,22.58,22.45,22.67,22.54,22.56,22.65,22.56,22.76,22.65,22.6,22.49,22.81,22.72,22.72,22.88,22.7,22.49,22.72,22.74,22.72,22.63,22.88,22.83,22.97,22.99,22.99,22.74,22.7,22.92,22.97,23.01,23.01,23.06,22.92,23.08,23.01,23.22,23.22,23.24,23.17,23.15,23.17,23.15,23.03,22.83,22.88,22.76,22.65,22.45,22.65,22.81,22.83,23.19,23.26,23.1,23.19,23.03,23.31,23.4,23.58,23.42,23.26,23.33,23.28,23.4,23.31,23.28,23.33,23.64,23.64,23.44,23.53,23.49,23.6,23.49,23.33,23.31,23.35,23.49,23.49,23.35,23.19,23.49,23.53,23.51,23.53,23.44,23.55,23.28,23.46,23.44,23.55,23.69,23.4,23.58,23.55,23.58,23.51,23.42,23.35,23.24,23.35,23.35,23.46,23.49,23.49,23.55,23.51,23.4,23.37,23.49,23.62,23.51,23.4,23.64,23.46,23.58,23.46,23.44,23.51,23.49,23.58,23.4,23.42,23.58,23.37,23.46,23.42,23.22,23.37,23.19,23.19,23.22,23.22,23.19,22.97,22.79,22.65,22.4,22.01,21.94,21.83,21.81,21.9,22.01,21.99,21.97,22.15,22.22,22.31,22.26,22.47,22.15,22.01,22.1,22.1,21.9,21.72,21.74,21.69,21.67,21.62,21.67,21.83,21.99,22.08,22.29,22.33,22.49,22.83,22.83,23.01,22.99,23.12,23.31,23.35,23.44,23.33,23.42,23.44,23.31,23.42,23.55,23.51,23.53,23.42,23.62,23.51,23.71,23.51,23.55,23.71,23.73,23.6,23.53,23.8,23.82,23.82,23.71,23.53,23.62,23.71,23.64,23.64,23.69,23.73,23.62,23.64,23.73,23.64,23.46,23.46,23.58,23.62,23.42,23.42,23.42,23.42,23.71,23.64,23.46,23.35,23.46,23.44,23.49,23.53,23.42,23.51,23.28,23.37,23.19,23.15,23.06,22.94,22.56,22.67,22.81,22.94,23.28,23.28,23.37,23.51,23.53,23.49,23.37,23.42,23.33,23.49,23.49,23.49,23.37,23.33,23.46,23.51,23.53,23.53,23.55,23.64,23.4,23.46,23.64,23.44,23.24,23.42,23.37,23.4,23.42,23.4,23.37,23.37,23.24,23.31,23.17,23.24,23.26,23.12,23.12,22.97,23.08,23.19,23.06,23.01,22.83,22.74,20.4,20.33,20.31,20.43,20.52,20.38,20.43,20.33,20.26,20.24,20.5,20.54,21.0,21.76,22.04,22.31,22.22,22.29,22.35,22.2,22.24,22.45,22.58,22.42,22.47,22.56,22.47,22.47,22.45,22.45,22.56,22.47,22.67,22.56,22.7,22.74,22.6,22.7,22.65,22.79,22.72,22.65,22.76,22.94,22.92,22.85,22.65,22.9,22.88,22.81,22.85,22.7,22.76,22.88,22.85,22.81,22.97,22.9,22.92,23.17,23.26,22.92,22.99,23.01,23.08,22.94,23.12,22.9,23.01,23.06,23.24,23.08,23.24,23.26,23.22,23.01,23.03,23.12,23.12,23.1,22.85,22.94,22.72,22.63,22.4,22.97,22.97,23.26,23.33,23.22,23.35,23.03,23.22,23.26,23.4,23.53,23.35,23.49,23.33,23.49,23.66,23.58,23.37,23.53,23.66,23.69,23.31,23.46,23.53,23.46,23.44,23.51,23.51,23.26,23.49,23.64,23.42,23.37,23.51,23.6,23.6,23.53,23.51,23.6,23.69,23.58,23.58,23.62,23.62,23.58,23.71,23.44,23.71,23.42,23.6,23.55,23.42,23.49,23.4,23.49,23.37,23.55,23.62,23.51,23.55,23.51,23.49,23.64,23.71,23.6,23.53,23.4,23.53,23.58,23.55,23.49,23.75,23.53,23.51,23.55,23.69,23.58,23.58,23.46,23.44,23.24,23.22,23.22,23.35,23.28,23.19,22.94,22.6,22.51,22.29,21.99,22.04,21.83,21.78,21.97,21.92,22.08,22.24,22.47,22.49,22.29,22.2,22.4,22.26,22.26,22.26,22.13,22.1,22.06,21.72,21.83,21.83,21.72,21.83,21.72,21.74,21.85,21.97,22.13,22.29,22.4,22.6,22.67,22.74,23.03,23.15,23.26,23.37,23.28,23.31,23.51,23.37,23.49,23.42,23.44,23.42,23.49,23.55,23.64,23.64,23.53,23.73,23.8,23.78,23.64,23.69,23.82,24.07,23.82,23.58,23.78,23.84,23.71,23.71,23.75,23.62,23.82,23.62,23.8,23.66,23.78,23.55,23.51,23.44,23.6,23.6,23.58,23.62,23.55,23.49,23.6,23.51,23.53,23.46,23.44,23.51,23.58,23.58,23.51,23.26,23.44,23.15,23.1,23.12,22.97,22.79,22.94,22.88,22.99,23.22,23.33,23.44,23.53,23.49,23.58,23.53,23.62,23.62,23.49,23.53,23.46,23.55,23.51,23.4,23.55,23.73,23.62,23.73,23.62,23.55,23.35,23.75,23.69,23.51,23.33,23.42,23.53,23.49,23.49,23.4,23.31,23.37,23.37,23.58,23.31,23.22,23.15,23.1,23.01,23.06,23.19,23.12,23.12,23.26,22.92,19.89,20.5,20.17,20.31,20.22,20.15,20.26,20.43,20.15,20.24,20.4,20.59,21.12,21.65,22.15,22.17,22.17,22.13,22.33,22.1,22.17,22.33,22.15,22.26,22.54,22.38,22.31,22.4,22.42,22.42,22.67,22.38,22.49,22.6,22.72,22.74,22.56,22.7,22.65,22.72,22.63,22.51,22.63,22.65,22.72,22.72,22.56,22.79,22.7,22.79,22.74,22.88,22.79,22.67,22.81,22.7,22.76,22.81,22.72,22.85,22.88,22.76,22.9,22.92,22.92,22.92,22.97,22.88,22.79,22.81,23.03,22.88,23.17,22.83,23.1,23.15,23.17,23.1,23.12,22.81,22.7,22.81,22.6,22.45,22.56,22.9,22.97,22.99,23.1,23.15,23.17,23.1,23.15,23.22,23.37,23.22,23.37,23.31,23.37,23.33,23.51,23.53,23.46,23.46,23.37,23.37,23.4,23.49,23.44,23.4,23.4,23.44,23.37,23.49,23.53,23.53,23.33,23.28,23.4,23.55,23.33,23.37,23.37,23.44,23.49,23.6,23.4,23.42,23.4,23.44,23.64,23.37,23.37,23.53,23.44,23.4,23.46,23.28,23.37,23.44,23.37,23.51,23.53,23.64,23.37,23.31,23.42,23.51,23.4,23.51,23.44,23.35,23.42,23.49,23.44,23.53,23.46,23.51,23.42,23.53,23.42,23.4,23.4,23.26,23.22,23.17,23.24,23.08,23.22,23.15,22.9,22.72,22.56,22.31,21.88,21.97,21.83,21.88,21.67,21.69,21.83,22.13,22.29,22.26,22.31,22.45,22.26,22.31,22.29,22.54,22.31,22.24,22.06,22.06,21.88,21.81,21.76,21.67,21.69,21.67,21.81,21.67,21.81,21.56,21.78,21.78,21.99,22.31,22.29,22.6,22.6,22.79,22.99,23.08,23.31,23.17,23.19,23.31,23.42,23.33,23.4,23.28,23.62,23.55,23.78,23.46,23.55,23.62,23.64,23.71,23.49,23.8,23.73,23.75,23.6,23.62,23.62,23.53,23.62,23.6,23.62,23.55,23.53,23.71,23.78,23.62,23.6,23.46,23.46,23.46,23.51,23.62,23.4,23.46,23.37,23.51,23.4,23.24,23.49,23.44,23.42,23.26,23.28,23.4,23.24,23.31,23.15,23.1,22.58,22.83,22.67,22.74,22.97,23.03,23.35,23.28,23.35,23.44,23.4,23.6,23.42,23.51,23.44,23.42,23.6,23.49,23.55,23.35,23.26,23.4,23.35,23.44,23.51,23.44,23.42,23.33,23.49,23.44,23.6,23.33,23.46,23.44,23.49,23.46,23.28,23.33,23.35,23.4,23.24,23.24,23.24,23.19,23.08,22.99,23.06,22.99,22.94,23.01,23.17,23.01,20.03,20.29,20.5,20.29,20.26,20.45,20.45,20.38,20.19,20.31,20.19,21.03,21.4,21.76,22.13,22.26,22.33,22.08,22.29,22.26,22.2,22.49,22.31,22.38,22.35,22.45,22.49,22.4,22.38,22.33,22.56,22.49,22.56,22.6,22.65,22.7,22.54,22.45,22.47,22.56,22.58,22.74,22.79,22.79,22.72,22.58,22.7,22.83,22.63,22.9,22.94,22.74,22.76,22.7,22.76,22.56,22.83,22.85,22.72,22.92,22.85,22.92,22.9,23.01,22.92,22.83,22.99,22.9,22.94,22.94,22.99,22.88,23.12,23.1,23.01,23.1,23.06,23.03,23.22,22.72,22.56,22.6,22.58,22.6,22.49,22.81,23.01,23.15,23.24,23.15,23.31,23.24,23.12,23.33,23.31,23.35,23.24,23.22,23.26,23.51,23.49,23.55,23.46,23.37,23.26,23.64,23.42,23.42,23.42,23.51,23.33,23.37,23.44,23.22,23.53,23.31,23.4,23.24,23.44,23.64,23.55,23.4,23.51,23.6,23.44,23.42,23.55,23.31,23.42,23.35,23.49,23.53,23.51,23.53,23.44,23.51,23.24,23.35,23.35,23.51,23.35,23.37,23.46,23.64,23.4,23.37,23.49,23.58,23.55,23.46,23.46,23.53,23.42,23.42,23.53,23.51,23.44,23.51,23.44,23.33,23.49,23.4,23.37,23.22,23.4,23.35,23.33,23.22,23.12,22.92,22.85,22.65,22.54,22.24,21.92,21.81,21.76,21.76,21.81,21.99,22.1,22.15,22.56,22.29,22.33,22.35,22.26,22.38,22.33,22.4,22.45,22.58,22.26,22.31,22.04,22.1,21.9,21.88,21.9,21.81,21.83,21.72,21.78,21.51,21.6,21.69,21.81,21.97,22.01,22.24,22.38,22.67,22.81,22.81,22.94,22.99,23.08,23.17,23.12,23.26,23.49,23.4,23.51,23.58,23.6,23.55,23.58,23.55,23.49,23.82,23.58,23.75,23.73,23.62,23.55,23.6,23.64,23.64,23.75,23.64,23.58,23.64,23.51,23.64,23.78,23.58,23.6,23.58,23.51,23.64,23.46,23.46,23.58,23.24,23.42,23.62,23.42,23.46,23.51,23.4,23.46,23.35,23.15,23.42,23.31,23.37,23.06,22.97,22.74,22.67,22.76,22.97,23.01,23.26,23.46,23.31,23.26,23.42,23.42,23.53,23.55,23.64,23.51,23.51,23.64,23.44,23.33,23.42,23.24,23.46,23.35,23.44,23.64,23.51,23.66,23.53,23.66,23.46,23.42,23.37,23.4,23.33,23.55,23.53,23.37,23.51,23.28,23.33,23.33,23.24,23.35,23.12,23.15,22.97,23.28,22.99,23.03,22.9,23.17,23.06,20.01,20.29,20.47,20.24,20.43,20.19,20.22,20.31,20.17,20.33,20.57,20.7,21.65,21.99,22.04,22.15,22.38,21.97,22.24,22.1,22.26,22.29,22.17,22.29,22.45,22.38,22.31,22.15,22.4,22.33,22.58,22.54,22.54,22.49,22.58,22.65,22.51,22.45,22.56,22.56,22.6,22.74,22.79,22.74,22.67,22.63,22.4,22.6,22.65,22.85,22.97,22.79,22.74,22.65,22.88,22.63,22.74,22.88,22.54,23.03,22.9,22.85,22.92,22.9,22.9,22.79,23.06,22.88,23.12,22.76,22.88,22.88,23.03,22.99,22.97,23.08,23.06,22.76,22.85,22.81,22.67,22.51,22.54,22.58,22.51,22.79,23.06,23.12,23.15,23.08,23.17,23.15,23.17,23.17,23.31,23.24,23.37,23.19,23.33,23.4,23.44,23.35,23.55,23.42,23.35,23.46,23.31,23.46,23.44,23.51,23.35,23.55,23.49,23.31,23.44,23.46,23.31,23.12,23.22,23.44,23.49,23.35,23.4,23.49,23.49,23.33,23.46,23.42,23.55,23.44,23.51,23.46,23.44,23.51,23.4,23.46,23.24,23.33,23.35,23.4,23.31,23.42,23.42,23.4,23.37,23.42,23.26,23.55,23.49,23.37,23.53,23.49,23.55,23.4,23.49,23.49,23.37,23.37,23.42,23.35,23.31,23.4,23.33,23.31,23.15,23.24,23.08,23.19,23.15,22.92,22.88,22.56,22.22,22.06,21.85,21.88,21.62,21.72,21.81,21.99,22.06,22.31,22.42,22.42,22.33,22.31,22.4,22.47,22.33,22.35,22.26,22.31,22.38,22.29,22.08,22.26,22.01,22.04,21.94,22.06,21.78,21.72,21.62,21.46,21.58,21.53,21.81,21.69,21.62,21.72,21.72,22.01,22.51,22.51,22.63,22.79,22.9,23.03,23.06,23.15,23.31,23.24,23.49,23.49,23.58,23.44,23.6,23.53,23.6,23.51,23.62,23.71,23.6,23.66,23.69,23.71,23.78,23.58,23.62,23.58,23.66,23.8,23.66,23.66,23.58,23.53,23.53,23.55,23.55,23.58,23.37,23.51,23.58,23.4,23.42,23.51,23.35,23.44,23.28,23.35,23.49,23.49,23.24,23.24,23.12,23.1,22.85,22.92,22.72,22.67,22.63,23.01,23.15,23.15,23.42,23.24,23.24,23.4,23.31,23.33,23.49,23.46,23.49,23.58,23.53,23.42,23.53,23.35,23.42,23.44,23.42,23.58,23.71,23.53,23.53,23.42,23.4,23.6,23.6,23.42,23.28,23.44,23.42,23.33,23.53,23.49,23.35,23.46,23.37,23.35,23.26,23.19,23.19,23.08,23.28,22.99,23.1,23.03,23.12,22.94,20.33,20.24,20.52,20.52,20.43,20.38,20.33,20.61,20.26,20.57,21.0,21.42,21.62,22.2,22.1,22.38,22.31,22.04,22.42,22.24,22.51,22.42,22.29,22.33,22.54,22.6,22.63,22.54,22.56,22.45,22.74,22.47,22.65,22.38,22.97,22.9,22.54,22.63,22.54,22.65,22.79,22.92,22.65,22.74,22.79,23.03,22.72,22.92,22.97,22.92,23.12,22.94,22.92,22.83,22.85,22.88,22.85,22.81,22.81,22.83,22.9,22.94,22.92,22.92,22.9,22.99,22.97,23.15,22.99,22.94,22.97,23.22,23.15,23.24,23.33,23.08,23.01,23.01,23.17,22.85,22.7,22.58,22.49,22.74,22.83,22.99,23.26,23.42,23.42,23.42,23.19,23.31,23.26,23.44,23.35,23.35,23.44,23.28,23.44,23.4,23.42,23.58,23.49,23.49,23.55,23.71,23.58,23.37,23.46,23.69,23.42,23.55,23.55,23.46,23.58,23.8,23.33,23.51,23.42,23.55,23.62,23.55,23.4,23.49,23.51,23.46,23.49,23.55,23.75,23.44,23.51,23.42,23.6,23.42,23.55,23.44,23.44,23.53,23.33,23.53,23.51,23.53,23.46,23.62,23.51,23.51,23.46,23.62,23.35,23.75,23.55,23.49,23.75,23.49,23.51,23.64,23.42,23.35,23.42,23.58,23.53,23.37,23.46,23.44,23.37,23.35,23.08,23.12,23.22,22.9,22.83,22.49,22.04,22.26,21.9,21.85,21.88,21.81,21.92,22.17,22.24,22.26,22.29,22.54,22.54,22.49,22.58,22.49,22.67,22.54,22.47,22.58,22.58,22.63,22.51,22.54,22.24,22.29,22.17,22.22,22.01,21.92,21.9,21.69,21.62,21.58,21.67,21.62,21.51,21.67,21.72,21.76,21.88,22.29,22.45,22.7,22.72,22.81,23.17,23.08,23.26,23.26,23.35,23.37,23.46,23.49,23.78,23.69,23.6,23.75,23.78,23.84,23.73,23.82,23.55,23.82,23.8,23.84,23.89,23.87,23.64,23.71,23.73,23.6,23.71,23.71,23.37,23.6,23.62,23.58,23.6,23.6,23.4,23.44,23.84,23.75,23.44,23.58,23.49,23.42,23.64,23.53,23.53,23.26,23.12,23.03,22.99,22.7,22.81,22.97,22.88,23.15,23.19,23.31,23.15,23.44,23.28,23.46,23.58,23.64,23.62,23.78,23.62,23.44,23.46,23.62,23.53,23.33,23.44,23.44,23.51,23.55,23.69,23.66,23.51,23.71,23.69,23.53,23.66,23.46,23.64,23.44,23.49,23.6,23.78,23.58,23.58,23.71,23.33,23.19,23.44,23.22,23.22,23.28,23.06,23.1,23.1,23.15,23.12,23.06,19.92,20.43,20.59,20.26,20.54,20.5,20.31,20.24,20.36,20.73,20.98,21.42,22.01,22.13,22.24,22.31,22.45,22.24,22.29,22.13,22.24,22.4,22.42,22.42,22.54,22.63,22.47,22.47,22.42,22.56,22.63,22.54,22.51,22.47,22.6,22.92,22.81,22.54,22.65,22.6,22.6,22.76,22.92,22.58,22.79,22.76,22.76,22.74,22.97,22.79,22.9,22.79,22.74,22.85,22.85,22.67,22.79,23.03,22.79,22.88,23.06,22.6,22.88,22.94,22.88,22.99,22.92,22.99,22.97,22.92,23.12,23.15,23.17,23.01,23.1,22.92,23.03,23.24,22.99,22.67,22.83,22.54,22.58,22.72,22.85,23.03,23.24,23.31,23.33,23.19,23.06,23.1,23.17,23.31,23.44,23.37,23.37,23.42,23.51,23.33,23.53,23.58,23.28,23.49,23.64,23.53,23.33,23.44,23.37,23.42,23.4,23.33,23.58,23.51,23.49,23.78,23.6,23.46,23.33,23.46,23.66,23.51,23.22,23.31,23.37,23.46,23.6,23.42,23.37,23.4,23.64,23.46,23.4,23.44,23.46,23.58,23.53,23.51,23.42,23.4,23.46,23.49,23.49,23.42,23.46,23.35,23.37,23.64,23.51,23.53,23.53,23.46,23.46,23.58,23.46,23.64,23.46,23.35,23.55,23.35,23.33,23.28,23.4,23.33,23.28,23.12,23.08,22.97,22.97,22.85,22.65,22.24,22.08,21.9,21.78,21.83,21.85,21.94,22.04,22.22,22.35,22.35,22.38,22.51,22.56,22.51,22.42,22.58,22.7,22.56,22.58,22.56,22.65,22.76,22.58,22.35,22.31,22.35,22.29,22.29,22.24,22.15,22.08,21.85,21.83,21.65,21.62,21.69,21.51,21.81,21.74,21.62,21.65,21.76,21.97,22.08,22.22,22.6,22.81,22.88,23.24,23.06,23.31,23.26,23.51,23.49,23.42,23.42,23.62,23.64,23.64,23.64,23.75,23.62,23.55,23.69,23.58,23.69,23.6,23.78,23.71,23.53,23.66,23.6,23.66,23.49,23.6,23.51,23.64,23.46,23.6,23.44,23.51,23.58,23.69,23.44,23.35,23.42,23.4,23.44,23.37,23.42,23.26,23.28,23.22,22.97,22.79,22.76,22.65,22.9,22.74,23.15,23.31,23.49,23.4,23.42,23.26,23.46,23.49,23.51,23.44,23.62,23.46,23.51,23.53,23.44,23.55,23.42,23.66,23.51,23.4,23.46,23.53,23.64,23.58,23.62,23.46,23.46,23.6,23.51,23.55,23.51,23.46,23.51,23.58,23.46,23.58,23.64,23.33,23.49,23.49,23.37,23.22,23.24,23.22,23.31,23.01,23.24,23.31,23.19,20.03,20.19,20.26,20.22,20.17,20.24,20.19,20.26,20.24,20.73,21.17,21.53,21.99,22.33,22.15,22.1,22.2,22.06,22.26,22.15,22.33,22.33,22.2,22.49,22.42,22.29,22.54,22.47,22.51,22.63,22.47,22.35,22.45,22.47,22.51,22.7,22.81,22.49,22.47,22.58,22.56,22.74,22.74,22.74,22.79,22.72,22.67,22.63,22.7,22.76,22.88,22.72,22.83,22.65,22.63,22.83,22.7,22.94,22.7,22.79,22.88,22.74,22.81,22.76,22.85,22.97,23.03,23.01,22.92,22.94,22.94,23.01,23.19,23.15,22.88,22.9,22.92,22.99,22.88,22.7,22.63,22.56,22.58,22.97,22.85,23.15,23.12,23.33,23.26,23.03,23.15,23.24,23.31,23.28,23.26,23.35,23.42,23.24,23.33,23.42,23.46,23.4,23.35,23.42,23.53,23.37,23.33,23.64,23.46,23.46,23.31,23.33,23.73,23.37,23.42,23.51,23.22,23.35,23.37,23.42,23.46,23.35,23.35,23.33,23.31,23.4,23.31,23.49,23.46,23.4,23.31,23.51,23.51,23.4,23.35,23.4,23.42,23.28,23.37,23.4,23.53,23.46,23.42,23.33,23.33,23.28,23.46,23.4,23.44,23.53,23.51,23.46,23.46,23.26,23.33,23.58,23.55,23.37,23.37,23.49,23.35,23.28,23.28,23.33,23.15,23.08,22.99,22.9,22.85,22.65,22.35,22.13,21.81,21.83,21.67,21.67,21.74,22.01,21.99,22.15,22.33,22.45,22.49,22.42,22.45,22.42,22.4,22.54,22.33,22.65,22.79,22.6,22.47,22.65,22.63,22.35,22.38,22.22,22.42,22.35,22.33,22.2,22.2,22.2,21.97,21.72,21.76,21.72,21.44,21.65,21.4,21.62,21.72,21.51,21.49,21.72,21.74,22.08,22.51,22.6,22.97,23.12,23.1,23.06,23.22,23.26,23.33,23.4,23.4,23.75,23.62,23.69,23.69,23.66,23.58,23.46,23.55,23.64,23.51,23.46,23.66,23.51,23.4,23.58,23.64,23.49,23.33,23.46,23.71,23.53,23.49,23.62,23.49,23.6,23.53,23.66,23.6,23.53,23.44,23.31,23.37,23.4,23.12,23.28,22.94,22.94,22.67,22.72,22.51,22.74,23.01,23.19,23.22,23.33,23.44,23.22,23.22,23.4,23.26,23.44,23.42,23.73,23.44,23.49,23.62,23.49,23.37,23.26,23.51,23.4,23.37,23.28,23.4,23.46,23.46,23.58,23.35,23.46,23.6,23.37,23.4,23.37,23.62,23.55,23.44,23.53,23.49,23.28,23.51,23.26,23.37,23.28,23.17,23.22,23.24,23.33,23.01,23.19,23.06,23.15,19.71,20.01,20.08,20.31,20.43,20.22,19.99,20.22,20.38,20.68,20.98,21.72,21.92,21.85,22.01,22.29,21.94,22.24,22.26,22.2,22.38,22.47,22.38,22.42,22.29,22.4,22.45,22.51,22.35,22.35,22.65,22.56,22.56,22.45,22.6,22.63,22.74,22.6,22.67,22.42,22.65,22.56,22.54,22.79,22.6,22.4,22.6,22.72,22.76,22.7,22.94,22.67,22.6,22.56,22.72,22.67,22.72,22.76,22.58,22.94,22.79,22.97,22.92,22.85,22.74,22.99,23.03,23.03,22.9,23.06,22.92,23.1,23.01,22.99,22.92,22.92,22.81,22.83,22.88,22.6,22.54,22.76,22.79,22.92,22.92,23.01,23.17,23.31,23.33,23.17,23.06,23.22,23.15,23.44,23.31,23.35,23.35,23.37,23.35,23.37,23.46,23.44,23.4,23.4,23.26,23.44,23.42,23.51,23.51,23.37,23.37,23.24,23.33,23.31,23.51,23.51,23.44,23.12,23.33,23.28,23.58,23.42,23.31,23.33,23.4,23.31,23.31,23.42,23.49,23.46,23.49,23.55,23.49,23.37,23.4,23.53,23.44,23.33,23.51,23.33,23.28,23.42,23.42,23.31,23.37,23.37,23.42,23.51,23.64,23.42,23.53,23.53,23.35,23.35,23.35,23.55,23.46,23.33,23.35,23.49,23.31,23.31,23.31,23.28,23.24,23.26,22.83,22.88,22.83,22.58,22.15,21.83,21.81,21.78,21.69,21.76,21.83,21.85,22.26,22.29,22.35,22.38,22.54,22.42,22.49,22.6,22.4,22.6,22.49,22.38,22.58,22.54,22.49,22.6,22.54,22.26,22.4,22.49,22.51,22.42,22.42,22.4,22.29,22.31,22.01,22.15,21.99,21.78,21.65,21.74,21.51,21.51,21.6,21.58,21.4,21.56,21.67,21.74,21.83,22.04,22.26,22.58,22.92,22.85,23.06,23.15,23.37,23.15,23.44,23.55,23.46,23.53,23.55,23.6,23.55,23.53,23.49,23.6,23.82,23.64,23.55,23.49,23.44,23.37,23.6,23.6,23.4,23.51,23.51,23.53,23.55,23.55,23.55,23.64,23.64,23.51,23.4,23.33,23.53,23.33,23.33,23.37,23.33,23.15,22.88,22.79,22.72,22.79,22.7,22.83,22.88,23.19,23.17,23.35,23.46,23.4,23.53,23.46,23.42,23.4,23.46,23.42,23.42,23.4,23.66,23.53,23.49,23.37,23.46,23.62,23.44,23.58,23.35,23.58,23.49,23.35,23.46,23.4,23.42,23.49,23.37,23.44,23.51,23.44,23.49,23.4,23.35,23.37,23.08,23.37,23.55,23.28,23.31,23.17,23.19,23.08,23.01,23.17,23.03,22.94,19.99,19.92,19.99,20.12,20.08,20.29,20.4,20.4,20.73,21.07,21.58,22.04,21.92,22.31,22.2,22.33,22.15,22.08,22.54,22.17,22.33,22.54,22.2,22.63,22.45,22.58,22.51,22.6,22.51,22.49,22.58,22.49,22.7,22.42,22.49,22.72,22.6,22.4,22.29,22.51,22.6,22.72,22.56,22.81,22.67,22.58,22.79,22.72,22.76,22.92,22.94,22.72,22.67,22.72,22.81,22.76,22.76,22.92,22.65,22.79,22.97,23.01,22.88,22.85,22.88,22.9,22.94,22.99,23.06,23.01,22.94,22.81,23.01,23.08,22.94,23.03,22.92,22.74,22.81,22.7,22.51,22.79,22.7,22.94,23.03,23.28,23.33,23.22,23.31,23.35,23.35,23.1,23.35,23.55,23.4,23.19,23.37,23.33,23.37,23.49,23.51,23.46,23.44,23.64,23.51,23.58,23.4,23.42,23.4,23.46,23.64,23.42,23.42,23.46,23.35,23.55,23.35,23.33,23.35,23.37,23.58,23.33,23.35,23.44,23.51,23.51,23.28,23.42,23.53,23.53,23.58,23.51,23.42,23.37,23.46,23.42,23.4,23.51,23.42,23.31,23.37,23.51,23.64,23.53,23.46,23.33,23.51,23.58,23.6,23.53,23.51,23.58,23.51,23.44,23.26,23.42,23.44,23.53,23.35,23.51,23.37,23.12,23.15,23.19,23.26,23.12,22.94,22.79,22.7,22.67,22.26,21.69,21.69,21.72,21.74,21.92,21.83,22.06,22.29,22.17,22.42,22.4,22.54,22.54,22.79,22.58,22.58,22.63,22.67,22.47,22.65,22.56,22.56,22.65,22.63,22.56,22.58,22.63,22.51,22.54,22.4,22.38,22.26,22.35,22.29,22.33,22.2,22.15,21.99,21.72,21.56,21.74,21.72,21.72,21.58,21.49,21.58,21.76,21.65,21.88,22.04,22.15,22.51,22.58,22.81,22.92,23.1,23.08,23.37,23.51,23.51,23.64,23.71,23.78,23.37,23.58,23.64,23.62,23.64,23.6,23.51,23.49,23.46,23.44,23.6,23.58,23.6,23.35,23.46,23.42,23.58,23.46,23.51,23.64,23.37,23.53,23.44,23.49,23.46,23.33,23.24,23.31,23.15,23.08,22.88,22.74,22.49,22.65,22.72,23.17,23.12,23.17,23.33,23.31,23.53,23.51,23.37,23.53,23.44,23.62,23.49,23.53,23.31,23.37,23.49,23.51,23.49,23.55,23.49,23.42,23.53,23.55,23.49,23.42,23.53,23.42,23.64,23.46,23.58,23.64,23.51,23.49,23.42,23.4,23.6,23.37,23.49,23.44,23.49,23.44,23.42,23.24,23.28,23.24,23.33,23.12,23.26,23.28,23.24,23.12,19.64,19.89,19.85,19.92,19.94,20.24,20.31,20.52,20.66,21.1,21.44,21.99,21.88,22.15,22.1,22.24,22.13,21.94,22.42,21.94,22.26,22.45,22.35,22.47,22.47,22.4,22.49,22.49,22.35,22.33,22.4,22.49,22.47,22.35,22.6,22.56,22.56,22.56,22.42,22.42,22.72,22.51,22.58,22.81,22.7,22.49,22.72,22.76,22.58,22.88,23.06,22.74,22.63,22.54,22.83,22.63,22.85,22.79,22.67,22.72,22.85,22.88,22.79,22.88,22.81,22.97,22.83,22.94,22.85,22.85,22.94,22.83,23.1,22.97,22.97,22.94,22.83,22.72,22.65,22.67,22.47,22.58,22.9,22.94,23.06,23.19,23.28,23.31,23.15,23.1,23.19,23.08,23.19,23.4,23.44,23.12,23.35,23.24,23.4,23.35,23.53,23.42,23.4,23.31,23.33,23.4,23.33,23.37,23.22,23.46,23.44,23.44,23.26,23.37,23.42,23.49,23.46,23.24,23.44,23.4,23.4,23.35,23.28,23.37,23.35,23.46,23.28,23.35,23.51,23.46,23.4,23.46,23.4,23.33,23.4,23.26,23.33,23.33,23.28,23.33,23.35,23.35,23.55,23.42,23.42,23.37,23.4,23.49,23.4,23.28,23.35,23.28,23.44,23.37,23.35,23.42,23.53,23.42,23.24,23.26,23.31,23.1,23.08,23.24,23.12,22.9,22.74,22.7,22.49,22.26,22.01,21.74,21.53,21.74,21.85,21.85,21.92,22.08,22.35,22.45,22.42,22.42,22.45,22.56,22.49,22.56,22.54,22.7,22.63,22.56,22.63,22.6,22.63,22.54,22.54,22.63,22.56,22.47,22.56,22.47,22.58,22.38,22.49,22.31,22.15,22.31,22.26,22.29,22.06,22.04,21.85,21.67,21.67,21.6,21.62,21.37,21.49,21.69,21.62,21.67,21.51,21.62,21.92,22.06,22.33,22.63,22.79,22.79,23.06,23.19,23.35,23.37,23.42,23.37,23.35,23.37,23.49,23.37,23.66,23.44,23.46,23.44,23.4,23.53,23.58,23.55,23.33,23.26,23.26,23.49,23.46,23.55,23.42,23.42,23.37,23.46,23.35,23.33,23.51,23.24,23.19,23.26,23.22,22.85,22.74,22.63,22.51,22.54,22.85,22.92,23.12,23.26,23.37,23.19,23.35,23.31,23.4,23.49,23.46,23.51,23.4,23.42,23.37,23.31,23.53,23.53,23.31,23.33,23.4,23.42,23.26,23.49,23.46,23.33,23.37,23.44,23.53,23.53,23.42,23.37,23.51,23.42,23.49,23.55,23.37,23.64,23.44,23.49,23.37,23.4,23.42,23.28,23.33,23.19,23.15,23.28,23.03,23.28,23.19,22.97,19.92,20.1,20.15,20.05,20.19,20.29,20.47,20.63,20.77,21.07,21.46,21.62,22.04,21.94,22.1,22.33,22.35,22.15,22.24,22.29,22.4,22.4,22.31,22.33,22.45,22.38,22.56,22.54,22.42,22.47,22.56,22.51,22.47,22.51,22.6,22.49,22.35,22.54,22.6,22.54,22.67,22.83,22.79,22.83,22.81,22.65,22.79,22.7,22.54,22.79,22.83,22.58,22.83,22.58,22.72,22.67,22.81,22.74,22.7,22.74,22.85,22.83,22.88,22.88,22.92,22.85,23.03,23.1,22.92,22.88,23.01,22.92,22.97,23.15,23.01,23.01,23.03,22.81,22.72,22.38,22.65,22.49,22.92,22.99,23.15,23.19,23.33,23.33,23.19,23.24,23.28,23.44,23.35,23.31,23.4,23.35,23.22,23.26,23.35,23.4,23.58,23.46,23.37,23.55,23.4,23.6,23.53,23.49,23.42,23.58,23.49,23.37,23.37,23.37,23.4,23.24,23.12,23.24,23.33,23.55,23.35,23.31,23.24,23.42,23.62,23.44,23.35,23.46,23.51,23.42,23.37,23.37,23.46,23.4,23.33,23.28,23.37,23.31,23.44,23.31,23.4,23.37,23.51,23.4,23.28,23.37,23.46,23.4,23.46,23.46,23.46,23.37,23.51,23.33,23.31,23.33,23.46,23.46,23.4,23.46,23.31,23.26,23.19,23.08,23.06,22.88,22.72,22.6,22.4,22.08,21.92,21.76,21.72,21.74,21.92,21.83,21.9,22.29,22.45,22.45,22.42,22.51,22.45,22.65,22.4,22.63,22.6,22.6,22.47,22.56,22.63,22.74,22.6,22.45,22.67,22.58,22.47,22.56,22.63,22.42,22.65,22.42,22.6,22.38,22.26,22.38,22.2,22.35,22.2,22.17,22.1,21.99,21.85,21.76,21.51,21.67,21.62,21.53,21.44,21.67,21.56,21.56,21.58,21.85,21.92,22.06,22.35,22.54,22.85,23.06,23.1,23.12,23.31,23.37,23.33,23.42,23.49,23.46,23.58,23.58,23.44,23.49,23.46,23.53,23.6,23.44,23.53,23.46,23.42,23.35,23.37,23.53,23.46,23.42,23.55,23.46,23.35,23.46,23.44,23.35,23.42,23.35,23.08,22.76,22.65,22.54,22.65,22.74,22.88,22.97,23.19,23.37,23.35,23.17,23.37,23.26,23.46,23.4,23.35,23.44,23.4,23.6,23.31,23.4,23.58,23.37,23.49,23.42,23.58,23.42,23.44,23.71,23.51,23.33,23.42,23.42,23.53,23.55,23.53,23.53,23.6,23.42,23.51,23.44,23.46,23.58,23.58,23.4,23.44,23.4,23.42,23.44,23.33,23.28,23.35,23.44,23.37,23.26,23.28,23.31,20.5,20.19,20.4,20.31,20.47,20.33,20.33,20.47,20.57,20.94,21.37,21.62,22.01,22.08,22.15,22.06,22.17,22.17,22.2,22.22,22.42,22.42,22.38,22.33,22.33,22.54,22.65,22.51,22.47,22.58,22.54,22.6,22.47,22.49,22.63,22.54,22.58,22.4,22.58,22.88,22.56,22.67,22.7,22.74,22.83,22.65,22.56,22.65,22.63,22.67,22.72,22.72,22.51,22.76,22.74,22.92,22.7,22.81,22.9,22.81,22.83,22.58,22.72,22.92,22.85,22.92,22.97,22.9,22.92,22.88,22.97,23.03,23.01,23.06,22.9,22.85,22.81,22.74,22.6,22.42,22.58,22.72,23.03,23.06,23.15,23.24,23.24,23.26,23.15,23.12,23.22,23.1,23.17,23.31,23.4,23.33,23.37,23.24,23.53,23.31,23.58,23.51,23.42,23.64,23.42,23.33,23.44,23.44,23.35,23.4,23.28,23.22,23.37,23.44,23.4,23.42,23.35,23.31,23.31,23.46,23.51,23.37,23.35,23.49,23.53,23.35,23.46,23.53,23.6,23.46,23.4,23.58,23.44,23.49,23.55,23.31,23.37,23.28,23.33,23.35,23.26,23.31,23.44,23.35,23.44,23.4,23.28,23.51,23.55,23.33,23.4,23.37,23.37,23.33,23.31,23.4,23.35,23.44,23.4,23.35,23.22,23.08,23.15,23.08,23.03,22.83,22.74,22.31,22.24,21.92,21.81,21.67,21.65,21.83,21.85,21.85,22.1,22.13,22.2,22.38,22.51,22.58,22.54,22.42,22.56,22.65,22.63,22.72,22.7,22.76,22.65,22.74,22.56,22.72,22.54,22.47,22.47,22.6,22.54,22.45,22.45,22.54,22.45,22.38,22.33,22.35,22.4,22.47,22.4,22.26,22.1,22.15,22.24,21.9,21.94,21.76,21.72,21.62,21.62,21.42,21.62,21.49,21.51,21.65,21.9,21.72,21.94,22.13,22.51,22.63,22.85,22.79,23.06,23.22,23.15,23.22,23.24,23.46,23.49,23.51,23.44,23.44,23.31,23.4,23.53,23.44,23.35,23.26,23.33,23.35,23.46,23.42,23.46,23.4,23.44,23.46,23.58,23.49,23.42,23.31,23.53,23.22,22.94,22.81,22.65,22.63,22.54,22.72,22.92,23.17,23.26,23.35,23.33,23.19,23.55,23.17,23.33,23.51,23.31,23.37,23.42,23.42,23.46,23.35,23.42,23.44,23.53,23.4,23.55,23.55,23.46,23.42,23.33,23.46,23.53,23.24,23.6,23.53,23.55,23.24,23.55,23.42,23.58,23.55,23.42,23.42,23.64,23.49,23.37,23.42,23.46,23.46,23.26,23.4,23.17,23.4,23.17,23.31,23.35,23.24,20.84,20.7,20.61,20.43,20.36,20.12,20.5,20.43,20.77,20.94,21.05,21.21,21.44,21.76,21.83,21.97,22.13,22.15,22.17,22.17,22.17,22.45,22.38,22.29,22.47,22.33,22.51,22.38,22.31,22.33,22.29,22.45,22.49,22.51,22.58,22.63,22.56,22.47,22.7,22.72,22.63,22.63,22.79,22.83,22.74,22.79,22.7,22.56,22.72,22.67,22.88,22.74,22.58,22.63,22.94,22.83,22.85,22.67,22.9,22.83,22.83,22.67,22.74,22.76,22.67,22.79,22.88,22.83,22.97,22.79,22.9,22.94,22.94,22.97,22.81,22.74,22.67,22.7,22.56,22.47,22.63,22.9,23.03,23.08,23.08,23.31,23.1,23.24,23.26,23.19,23.12,23.08,23.24,23.26,23.19,23.28,23.46,23.26,23.26,23.4,23.42,23.4,23.26,23.42,23.55,23.42,23.26,23.49,23.42,23.46,23.37,23.33,23.4,23.35,23.46,23.4,23.26,23.19,23.24,23.44,23.42,23.26,23.22,23.33,23.46,23.55,23.37,23.42,23.42,23.42,23.33,23.28,23.46,23.4,23.42,23.37,23.24,23.33,23.24,23.35,23.28,23.22,23.28,23.35,23.37,23.28,23.19,23.37,23.4,23.24,23.44,23.24,23.33,23.33,23.28,23.4,23.4,23.37,23.28,23.19,23.15,23.19,23.08,23.01,22.94,22.67,22.54,22.35,22.06,21.65,21.58,21.56,21.58,21.78,21.9,21.99,22.08,22.17,22.26,22.38,22.38,22.42,22.49,22.63,22.47,22.49,22.54,22.65,22.56,22.51,22.49,22.7,22.67,22.51,22.38,22.51,22.38,22.47,22.51,22.42,22.6,22.49,22.45,22.4,22.35,22.45,22.4,22.35,22.38,22.26,22.29,22.29,22.29,22.01,22.1,21.97,21.94,21.62,21.67,21.56,21.58,21.56,21.44,21.53,21.69,21.58,21.76,21.76,21.99,22.22,22.4,22.58,23.03,22.97,22.94,23.03,23.22,23.28,23.26,23.35,23.49,23.31,23.24,23.44,23.35,23.62,23.33,23.37,23.49,23.51,23.62,23.55,23.35,23.4,23.44,23.4,23.24,23.31,23.31,23.26,23.26,23.15,22.83,22.72,22.65,22.63,22.45,22.83,23.03,23.22,23.35,23.35,23.31,23.35,23.4,23.12,23.28,23.35,23.24,23.33,23.28,23.4,23.53,23.4,23.4,23.28,23.4,23.37,23.51,23.37,23.53,23.33,23.46,23.44,23.37,23.49,23.69,23.58,23.49,23.53,23.44,23.31,23.58,23.58,23.49,23.49,23.64,23.46,23.46,23.46,23.37,23.33,23.51,23.31,23.24,23.28,23.37,23.31,23.19,23.22,21.07,20.91,20.82,20.91,20.82,20.77,20.66,20.63,20.84,20.8,21.0,21.23,21.37,21.49,21.49,21.74,21.81,21.78,22.01,22.01,22.13,22.35,22.49,22.45,22.29,22.15,22.35,22.31,22.42,22.31,22.45,22.58,22.54,22.63,22.51,22.63,22.47,22.47,22.58,22.65,22.79,22.63,22.7,22.76,22.58,22.63,22.92,22.88,22.9,22.67,22.56,22.74,22.67,22.49,22.79,22.79,22.94,22.81,22.7,22.85,22.85,22.85,22.97,22.74,22.94,22.92,22.97,23.06,22.92,22.88,22.85,22.88,22.97,22.83,22.94,22.76,22.63,22.58,22.54,22.7,22.72,23.01,23.31,23.17,23.12,23.24,23.17,23.26,23.08,23.19,23.19,23.12,23.24,23.24,23.22,23.22,23.28,23.35,23.22,23.4,23.6,23.33,23.46,23.35,23.4,23.44,23.22,23.33,23.44,23.46,23.37,23.28,23.33,23.31,23.33,23.42,23.4,23.37,23.33,23.37,23.37,23.51,23.46,23.24,23.53,23.44,23.44,23.53,23.49,23.37,23.26,23.42,23.35,23.53,23.4,23.42,23.42,23.26,23.31,23.33,23.12,23.28,23.42,23.28,23.46,23.4,23.31,23.26,23.35,23.35,23.28,23.35,23.37,23.37,23.22,23.37,23.33,23.28,23.24,23.26,23.1,23.06,23.15,22.94,22.79,22.63,22.31,22.06,21.72,21.53,21.49,21.49,21.44,21.81,21.78,21.97,22.24,22.33,22.33,22.42,22.56,22.42,22.6,22.58,22.6,22.58,22.56,22.85,22.49,22.58,22.56,22.74,22.56,22.51,22.6,22.51,22.6,22.58,22.67,22.49,22.58,22.6,22.63,22.49,22.35,22.4,22.51,22.33,22.42,22.31,22.26,22.29,22.17,22.08,22.22,22.1,22.06,21.94,21.88,21.9,21.81,21.74,21.67,21.56,21.72,21.44,21.65,21.53,21.67,21.9,21.99,22.26,22.47,22.58,22.92,22.85,23.01,23.03,23.06,23.31,23.33,23.46,23.35,23.4,23.42,23.51,23.26,23.28,23.44,23.35,23.35,23.46,23.46,23.55,23.49,23.42,23.31,23.26,23.37,23.15,23.26,22.85,22.67,22.56,22.49,22.54,22.56,22.88,22.92,23.24,23.28,23.4,23.4,23.24,23.37,23.33,23.26,23.33,23.06,23.66,23.28,23.37,23.51,23.33,23.53,23.51,23.31,23.37,23.31,23.35,23.42,23.51,23.46,23.51,23.51,23.53,23.64,23.55,23.53,23.55,23.62,23.4,23.58,23.46,23.55,23.51,23.42,23.46,23.33,23.4,23.4,23.42,23.46,23.35,23.24,23.31,23.31,23.35,23.4,23.24,21.53,21.4,21.37,20.91,20.87,21.05,20.84,20.87,20.77,20.96,20.7,21.1,21.17,21.17,21.23,21.51,21.58,21.62,21.94,21.81,22.04,22.1,22.22,22.22,22.4,22.38,22.45,22.47,22.49,22.22,22.24,22.35,22.6,22.42,22.49,22.47,22.54,22.63,22.58,22.49,22.49,22.49,22.45,22.67,22.76,22.63,22.83,22.67,22.83,22.72,22.65,22.65,22.67,22.63,22.81,22.7,22.9,22.99,22.65,22.7,22.79,22.83,22.85,22.97,22.74,23.01,23.1,22.97,22.92,22.85,22.85,22.9,22.9,22.99,22.74,22.72,22.51,22.51,22.7,22.67,22.9,22.88,23.26,23.1,23.06,23.22,23.19,23.17,23.19,23.17,23.19,23.12,23.06,23.12,23.26,23.08,23.31,23.19,23.4,23.42,23.55,23.31,23.31,23.53,23.46,23.42,23.42,23.33,23.37,23.42,23.4,23.26,23.33,23.35,23.46,23.4,23.33,23.33,23.31,23.53,23.49,23.46,23.17,23.51,23.42,23.42,23.44,23.42,23.42,23.35,23.44,23.4,23.51,23.28,23.37,23.35,23.37,23.26,23.19,23.22,23.31,23.46,23.51,23.26,23.37,23.24,23.37,23.31,23.26,23.33,23.4,23.37,23.28,23.28,23.33,23.31,23.35,23.24,23.28,23.26,23.22,22.99,23.12,22.9,22.83,22.6,22.22,21.92,21.72,21.76,21.53,21.44,21.46,21.94,21.92,22.08,22.31,22.24,22.42,22.38,22.47,22.33,22.49,22.45,22.51,22.6,22.6,22.67,22.54,22.63,22.7,22.47,22.54,22.56,22.6,22.6,22.45,22.51,22.63,22.6,22.49,22.58,22.6,22.54,22.45,22.45,22.58,22.49,22.47,22.56,22.35,22.42,22.45,22.35,22.33,22.17,22.08,22.04,22.06,22.04,21.94,21.78,21.67,21.65,21.78,21.58,21.76,21.67,21.78,21.6,21.69,21.88,22.06,22.17,22.29,22.51,22.74,22.88,22.99,23.08,23.24,23.22,23.17,23.28,23.37,23.28,23.26,23.26,23.44,23.53,23.49,23.42,23.53,23.42,23.46,23.26,23.37,23.15,23.19,23.06,23.01,23.03,22.63,22.54,22.56,22.54,22.7,22.92,23.01,23.28,23.42,23.33,23.24,23.44,23.31,23.26,23.26,23.24,23.35,23.31,23.31,23.42,23.55,23.19,23.53,23.31,23.24,23.35,23.37,23.37,23.35,23.55,23.42,23.4,23.33,23.46,23.64,23.28,23.46,23.49,23.4,23.51,23.69,23.44,23.49,23.58,23.44,23.31,23.35,23.35,23.49,23.46,23.58,23.35,23.26,23.17,23.17,23.49,23.19,23.37,21.35,21.65,21.3,21.05,20.87,20.96,20.87,20.91,21.26,21.14,21.12,21.0,21.17,21.23,21.17,21.33,21.51,21.58,21.72,21.62,21.67,22.2,22.13,22.1,22.24,22.4,22.38,22.26,22.33,22.24,22.35,22.45,22.22,22.24,22.42,22.51,22.38,22.4,22.4,22.51,22.65,22.6,22.63,22.79,22.79,22.63,22.54,22.6,22.58,22.74,22.67,22.56,22.72,22.7,22.7,22.76,22.92,22.83,22.74,22.74,22.74,22.76,22.94,22.85,22.51,22.58,23.03,22.79,22.79,22.94,23.03,22.97,22.81,22.67,22.74,22.65,22.54,22.72,22.63,22.81,22.85,23.01,23.26,23.24,23.15,23.26,23.26,23.17,23.17,23.15,23.12,23.15,23.06,23.17,23.19,23.15,23.31,23.4,23.37,23.28,23.46,23.42,23.19,23.28,23.37,23.46,23.26,23.4,23.35,23.37,23.4,23.24,23.37,23.35,23.49,23.31,23.42,23.31,23.26,23.4,23.42,23.46,23.22,23.31,23.51,23.42,23.37,23.4,23.37,23.31,23.31,23.26,23.26,23.28,23.35,23.4,23.44,23.31,23.22,23.26,23.42,23.1,23.26,23.33,23.22,23.31,23.28,23.33,23.33,23.49,23.46,23.37,23.42,23.24,23.31,23.28,23.26,23.33,23.26,23.35,23.08,23.03,23.01,22.76,22.67,22.38,22.15,21.65,21.51,21.6,21.58,21.62,21.6,21.81,21.88,22.13,22.24,22.29,22.24,22.29,22.38,22.54,22.6,22.45,22.45,22.51,22.54,22.51,22.56,22.72,22.54,22.65,22.67,22.67,22.54,22.6,22.22,22.42,22.56,22.47,22.45,22.47,22.56,22.63,22.4,22.54,22.35,22.2,22.35,22.49,22.45,22.26,22.31,22.26,22.38,22.22,22.33,22.17,22.24,22.17,22.06,21.9,21.76,21.83,21.78,21.49,21.74,21.58,21.65,21.53,21.65,21.6,21.76,21.72,22.01,22.06,22.2,22.6,22.72,22.92,22.83,22.88,23.08,23.17,23.19,23.19,23.1,23.24,23.24,23.17,23.42,23.33,23.37,23.33,23.35,23.31,23.19,23.17,23.33,23.12,23.19,22.81,22.54,22.47,22.47,22.63,22.56,22.81,23.08,23.22,23.31,23.28,23.42,23.17,23.31,22.99,23.24,23.35,23.37,23.4,23.22,23.24,23.42,23.24,23.49,23.4,23.4,23.37,23.24,23.19,23.17,23.46,23.44,23.51,23.37,23.44,23.53,23.35,23.4,23.46,23.37,23.4,23.55,23.37,23.33,23.4,23.33,23.44,23.24,23.37,23.44,23.26,23.37,23.22,23.33,23.31,23.28,23.33,23.42,23.26,21.42,21.42,21.4,21.05,20.96,20.84,21.07,21.21,21.49,21.4,21.37,21.12,21.37,21.19,21.44,21.37,20.8,21.21,21.49,21.3,21.33,21.62,21.78,21.74,21.85,22.04,22.2,22.29,22.24,22.08,22.35,22.01,22.38,22.49,22.24,22.49,22.47,22.15,22.47,22.49,22.4,22.56,22.49,22.56,22.47,22.65,22.47,22.63,22.51,22.42,22.63,22.58,22.63,22.63,22.7,22.65,22.83,22.72,22.7,22.74,22.9,22.88,22.85,22.7,22.4,22.92,22.97,22.85,22.72,22.72,23.08,22.92,22.9,22.83,22.76,22.56,22.33,22.54,22.65,22.83,22.94,23.19,23.28,22.99,23.08,23.08,23.17,23.12,23.12,23.06,23.19,23.08,23.06,23.12,23.15,23.08,23.17,23.35,23.24,23.31,23.53,23.28,23.12,23.35,23.4,23.33,23.26,23.33,23.35,23.33,23.35,23.33,23.55,23.33,23.24,23.31,23.4,23.12,23.12,23.31,23.31,23.42,23.28,23.31,23.53,23.26,23.51,23.42,23.49,23.28,23.42,23.28,23.4,23.26,23.33,23.26,23.4,23.33,23.28,23.12,23.4,23.12,23.37,23.31,23.28,23.22,23.26,23.42,23.37,23.26,23.26,23.26,23.31,23.28,23.26,23.44,23.26,23.28,23.28,23.28,23.1,23.17,22.85,22.67,22.29,22.33,22.01,21.72,21.67,21.67,21.6,21.58,21.72,21.81,21.92,22.1,21.94,22.24,22.35,22.31,22.4,22.4,22.35,22.45,22.38,22.58,22.45,22.49,22.49,22.58,22.56,22.72,22.54,22.6,22.51,22.6,22.51,22.67,22.42,22.54,22.56,22.45,22.58,22.47,22.4,22.42,22.45,22.4,22.33,22.42,22.35,22.38,22.33,22.33,22.38,22.26,22.31,22.24,22.31,22.4,22.29,22.15,22.13,22.04,22.04,21.76,21.69,21.72,21.6,21.49,21.6,21.67,21.53,21.49,21.58,21.69,21.85,22.04,22.38,22.51,22.67,22.81,22.88,22.76,23.15,23.15,23.15,23.15,23.1,23.19,23.33,23.35,23.42,23.22,23.33,23.26,23.06,23.26,23.24,23.03,22.81,22.83,22.31,22.29,22.35,22.6,22.63,22.94,23.15,23.22,22.85,23.24,23.28,23.19,23.49,23.01,23.19,23.24,23.17,23.15,23.26,23.33,23.42,23.44,23.49,23.31,23.35,23.28,23.22,23.17,23.4,23.33,23.37,23.26,23.26,23.42,23.49,23.4,23.46,23.31,23.42,23.35,23.49,23.4,23.46,23.31,23.53,23.37,23.35,23.22,23.33,23.28,23.51,23.06,23.24,23.44,23.08,23.24,23.37,23.31,21.72,21.72,21.62,21.05,21.03,21.14,21.35,21.65,21.72,21.72,21.62,21.67,21.72,21.65,21.56,21.53,21.58,21.42,21.28,21.42,21.42,21.51,21.49,21.62,21.62,21.9,22.06,22.15,22.08,22.24,22.29,22.29,22.35,22.15,22.42,22.7,22.45,22.47,22.4,22.51,22.51,22.7,22.58,22.76,22.72,22.67,22.56,22.63,22.58,22.74,22.79,22.65,22.67,22.4,22.79,22.63,22.67,22.85,22.72,22.74,22.74,22.81,22.79,22.83,22.74,22.88,22.92,22.83,22.81,22.79,23.01,22.97,22.9,22.76,22.72,22.45,22.63,22.63,22.65,22.92,23.06,23.19,23.12,23.1,23.06,23.28,23.15,23.28,23.26,23.1,23.19,23.15,23.19,23.33,23.26,23.22,23.03,23.1,23.31,23.33,23.51,23.28,23.4,23.28,23.37,23.33,23.24,23.26,23.31,23.46,23.33,23.37,23.28,23.44,23.37,23.31,23.17,23.22,23.22,23.42,23.33,23.4,23.33,23.37,23.51,23.35,23.37,23.49,23.42,23.35,23.33,23.4,23.28,23.24,23.19,23.28,23.35,23.28,23.33,23.49,23.35,23.22,23.33,23.28,23.33,23.17,23.26,23.28,23.24,23.4,23.37,23.24,23.26,23.22,23.35,23.35,23.31,23.28,23.24,23.24,23.08,23.03,22.88,22.6,22.38,22.17,21.74,21.67,21.65,21.58,21.6,21.62,21.74,22.13,22.15,22.1,22.24,22.33,22.42,22.35,22.26,22.47,22.45,22.6,22.67,22.58,22.4,22.49,22.54,22.72,22.7,22.74,22.51,22.63,22.6,22.51,22.54,22.56,22.35,22.42,22.51,22.54,22.63,22.47,22.51,22.45,22.49,22.38,22.33,22.31,22.42,22.42,22.31,22.35,22.42,22.31,22.31,22.31,22.2,22.24,22.15,22.31,22.24,22.15,22.04,21.99,22.06,21.97,21.78,21.69,21.62,21.58,21.53,21.46,21.44,21.58,21.69,21.67,21.85,22.2,22.26,22.49,22.67,23.01,23.01,22.99,22.99,22.94,23.1,23.1,23.31,23.42,23.28,23.37,23.26,23.22,23.17,23.03,23.17,22.85,22.7,22.54,22.38,22.22,22.35,22.81,22.88,23.03,23.15,23.26,23.37,23.24,23.28,23.19,23.26,23.15,23.19,23.37,23.19,23.42,23.6,23.4,23.46,23.46,23.31,23.31,23.33,23.28,23.26,23.24,23.33,23.37,23.46,23.33,23.31,23.49,23.46,23.33,23.62,23.42,23.35,23.37,23.64,23.51,23.49,23.37,23.28,23.55,23.24,23.37,23.46,23.46,23.44,23.19,23.26,23.35,23.31,23.31,23.42,23.08,21.51,21.65,21.46,21.14,21.07,21.14,21.53,21.85,21.83,21.78,21.74,21.83,21.85,21.9,21.85,21.85,21.62,21.58,21.58,21.51,21.46,21.51,21.6,21.58,21.58,21.85,21.65,21.94,21.83,21.97,21.97,22.13,22.31,22.26,22.24,22.45,22.42,22.51,22.4,22.47,22.4,22.58,22.54,22.6,22.67,22.54,22.72,22.6,22.58,22.81,22.79,22.67,22.51,22.65,22.7,22.65,22.85,22.92,22.7,22.67,22.85,22.79,22.7,22.76,22.85,22.79,22.83,22.85,22.74,22.9,22.79,22.9,22.74,22.9,22.56,22.54,22.56,22.6,22.85,23.06,23.22,23.24,23.26,23.12,23.01,23.15,23.06,23.12,23.22,23.24,23.26,23.26,23.22,23.12,23.28,23.24,23.24,23.12,23.37,23.4,23.4,23.33,23.51,23.37,23.33,23.12,23.35,23.42,23.37,23.4,23.33,23.33,23.37,23.44,23.33,23.28,23.44,23.28,23.22,23.35,23.55,23.42,23.49,23.37,23.42,23.4,23.31,23.37,23.37,23.33,23.51,23.51,23.49,23.28,23.26,23.28,23.35,23.22,23.19,23.42,23.28,23.42,23.26,23.28,23.28,23.22,23.33,23.24,23.35,23.37,23.42,23.31,23.26,23.06,23.24,23.15,23.22,23.26,23.15,23.19,23.22,22.83,22.79,22.7,22.35,21.92,21.62,21.51,21.4,21.62,21.56,21.56,21.74,22.08,22.13,22.1,22.31,22.22,22.38,22.24,22.45,22.49,22.51,22.4,22.4,22.42,22.45,22.51,22.56,22.65,22.74,22.79,22.63,22.6,22.65,22.38,22.49,22.45,22.54,22.42,22.58,22.47,22.72,22.45,22.54,22.51,22.54,22.63,22.42,22.47,22.38,22.35,22.45,22.26,22.45,22.45,22.24,22.24,22.4,22.47,22.38,22.17,22.29,22.33,22.38,22.13,22.17,22.01,21.9,21.97,21.81,21.78,21.69,21.6,21.67,21.53,21.51,21.85,21.56,21.74,22.06,21.9,22.29,22.67,22.74,22.76,22.88,22.83,23.03,23.03,23.24,23.26,23.31,23.35,23.4,23.33,23.06,23.12,23.12,22.83,22.54,22.54,22.35,22.29,22.51,22.63,22.79,23.19,23.12,23.37,23.08,23.17,23.17,23.17,23.31,23.01,23.19,23.31,23.46,23.37,23.37,23.33,23.33,23.26,23.31,23.26,23.22,23.31,23.19,23.28,23.37,23.42,23.4,23.4,23.37,23.33,23.46,23.42,23.51,23.58,23.51,23.58,23.6,23.4,23.55,23.42,23.4,23.37,23.33,23.33,23.37,23.37,23.33,23.31,23.37,23.35,23.35,23.33,23.24,23.35,21.49,21.67,21.3,21.03,20.91,21.35,21.49,21.85,21.85,21.76,21.83,21.78,22.1,21.97,22.13,22.06,21.83,21.78,21.72,21.58,21.65,21.46,21.67,21.49,21.49,21.49,21.67,21.65,21.58,21.6,21.67,21.85,22.13,21.94,22.33,22.15,22.06,22.15,22.51,22.4,22.47,22.7,22.47,22.54,22.56,22.63,22.65,22.67,22.58,22.7,22.63,22.72,22.72,22.72,22.49,22.79,22.7,22.79,22.72,22.79,22.76,22.6,22.85,22.81,22.74,22.79,22.9,22.88,22.74,22.83,22.79,22.65,22.67,22.76,22.49,22.56,22.6,22.81,22.97,23.1,23.01,23.22,23.24,22.99,23.01,23.15,22.99,23.19,22.92,23.12,23.06,23.15,23.1,23.08,23.12,23.19,23.28,23.15,23.24,23.19,23.31,23.33,23.15,23.19,23.31,23.35,23.26,23.22,23.33,23.44,23.28,23.22,23.33,23.4,23.35,23.28,23.22,23.28,23.08,23.42,23.35,23.33,23.28,23.22,23.37,23.31,23.26,23.15,23.4,23.35,23.42,23.35,23.33,23.17,23.28,23.31,23.17,23.19,23.17,23.28,23.15,23.37,23.31,23.26,23.33,22.99,23.35,23.33,23.42,23.35,23.37,23.19,23.19,23.08,23.19,23.28,23.4,23.15,23.12,23.03,22.99,22.76,22.7,22.4,22.01,21.72,21.53,21.42,21.46,21.51,21.56,21.69,21.88,21.99,22.13,22.24,22.2,22.17,22.2,22.49,22.54,22.45,22.47,22.4,22.38,22.56,22.47,22.54,22.58,22.6,22.65,22.63,22.63,22.65,22.47,22.6,22.42,22.51,22.63,22.33,22.42,22.58,22.58,22.4,22.4,22.49,22.45,22.45,22.31,22.4,22.22,22.29,22.4,22.33,22.49,22.35,22.29,22.4,22.26,22.45,22.42,22.13,22.35,22.24,22.22,22.24,22.31,22.29,22.04,21.99,21.97,21.76,21.6,21.69,21.51,21.51,21.6,21.28,21.58,21.42,21.56,21.67,21.9,22.1,22.15,22.6,22.65,22.65,22.81,22.94,23.17,23.1,23.17,23.15,23.17,23.17,22.92,23.03,22.76,22.79,22.51,22.33,22.29,22.33,22.6,22.7,22.88,23.26,23.28,23.35,23.33,23.26,23.26,23.17,23.24,23.06,23.17,23.26,23.35,23.22,23.33,23.42,23.22,23.26,23.28,23.17,23.08,23.17,23.19,23.33,23.37,23.4,23.46,23.19,23.46,23.33,23.35,23.6,23.49,23.46,23.31,23.26,23.37,23.42,23.49,23.44,23.49,23.06,23.37,23.22,23.4,23.42,23.37,23.24,23.37,23.33,23.33,23.33,23.06,23.22,21.88,21.58,21.49,21.28,21.37,21.46,21.62,21.85,21.99,21.9,22.04,21.85,22.13,22.17,22.2,22.1,22.15,22.04,21.94,21.81,21.97,21.97,21.81,21.74,21.6,21.6,21.51,21.58,21.6,21.44,21.65,21.65,21.72,21.9,22.1,22.08,22.29,22.2,22.31,22.38,22.38,22.4,22.58,22.74,22.56,22.33,22.47,22.7,22.7,22.56,22.67,22.72,22.6,22.58,22.67,22.72,22.79,22.7,22.65,22.83,22.79,22.7,22.65,22.79,22.85,22.83,22.76,22.92,22.67,22.74,22.79,22.85,22.88,22.56,22.54,22.54,22.47,22.72,23.01,22.85,23.1,23.28,23.1,23.06,23.08,22.99,23.28,23.12,23.17,23.19,23.1,22.97,22.99,23.06,23.12,22.99,23.1,23.15,23.28,23.17,23.4,23.31,23.26,23.24,23.28,23.31,23.19,23.35,23.31,23.46,23.31,23.22,23.26,23.33,23.37,23.35,23.24,23.12,23.22,23.35,23.26,23.26,23.33,23.44,23.44,23.4,23.33,23.31,23.49,23.33,23.44,23.4,23.37,23.4,23.33,23.28,23.08,23.24,23.26,23.24,23.33,23.33,23.49,23.31,23.17,23.17,23.28,23.4,23.28,23.26,23.35,23.37,23.35,23.12,23.24,23.28,23.15,23.12,23.03,22.99,22.92,22.76,22.51,22.35,21.97,21.51,21.46,21.35,21.58,21.72,21.56,21.78,22.01,22.15,22.24,22.29,22.22,22.24,22.26,22.4,22.56,22.42,22.47,22.47,22.58,22.47,22.6,22.54,22.56,22.58,22.54,22.76,22.49,22.6,22.58,22.49,22.63,22.6,22.56,22.42,22.49,22.56,22.67,22.47,22.49,22.51,22.45,22.47,22.42,22.33,22.4,22.45,22.42,22.4,22.45,22.31,22.29,22.26,22.38,22.4,22.45,22.4,22.45,22.26,22.24,22.31,22.38,22.35,22.29,22.17,21.97,21.99,21.85,21.74,21.65,21.62,21.49,21.53,21.51,21.51,21.51,21.49,21.51,21.76,21.9,22.26,22.22,22.49,22.58,22.7,23.01,23.03,22.99,23.08,23.19,23.1,22.9,22.79,22.83,22.76,22.47,22.38,22.29,22.65,22.6,22.56,22.99,23.03,23.17,23.26,23.33,23.51,23.26,23.33,23.08,23.24,23.17,23.19,23.08,23.15,23.58,23.46,23.28,23.19,23.4,23.22,23.17,23.15,23.15,23.26,23.33,23.44,23.44,23.33,23.35,23.51,23.31,23.44,23.42,23.33,23.4,23.42,23.55,23.35,23.53,23.51,23.42,23.35,23.35,23.37,23.33,23.31,23.26,23.22,23.37,23.44,23.15,23.28,23.17,23.26,21.6,21.53,21.37,21.21,21.28,21.53,22.01,21.99,21.99,21.97,21.88,22.08,22.17,22.06,22.1,22.22,22.15,22.08,22.26,22.1,22.06,22.22,22.1,21.94,21.74,21.9,21.62,21.78,21.6,21.67,21.53,21.67,21.62,21.69,21.85,22.17,21.94,22.01,21.97,22.26,22.31,22.38,22.47,22.56,22.51,22.76,22.54,22.42,22.56,22.58,22.76,22.42,22.65,22.74,22.67,22.7,22.79,22.79,22.65,22.79,22.83,22.74,22.76,22.7,22.72,22.81,22.72,22.97,22.85,22.81,22.85,22.74,22.81,22.51,22.33,22.54,22.63,22.97,23.01,23.06,23.1,23.26,23.19,23.06,23.15,23.12,23.08,23.1,23.26,23.06,23.06,23.15,22.94,23.1,23.01,23.37,23.22,23.06,23.28,23.24,23.44,23.35,23.31,23.31,23.26,23.26,23.19,23.42,23.28,23.4,23.24,23.15,23.28,23.31,23.17,23.4,23.37,23.19,23.33,23.28,23.26,23.35,23.35,23.35,23.4,23.49,23.22,23.33,23.22,23.28,23.37,23.37,23.28,23.22,23.17,23.37,23.26,23.19,23.28,23.33,23.24,23.22,23.28,23.35,23.08,23.15,23.35,23.33,23.31,23.22,23.31,23.28,23.26,23.03,23.19,23.49,23.28,23.15,23.24,23.08,22.85,22.56,22.45,22.2,21.92,21.49,21.4,21.4,21.58,21.56,21.74,22.04,22.1,22.29,22.17,22.33,22.33,22.22,22.29,22.29,22.35,22.45,22.6,22.49,22.63,22.54,22.56,22.49,22.4,22.7,22.63,22.65,22.58,22.67,22.58,22.4,22.42,22.58,22.65,22.6,22.54,22.58,22.6,22.49,22.31,22.33,22.63,22.4,22.49,22.49,22.47,22.42,22.38,22.4,22.38,22.33,22.38,22.29,22.26,22.47,22.31,22.31,22.47,22.45,22.4,22.47,22.42,22.47,22.45,22.26,22.17,22.35,22.06,22.01,21.81,21.85,21.78,21.6,21.44,21.51,21.53,21.4,21.33,21.44,21.58,21.72,21.72,22.17,22.31,22.45,22.67,22.79,22.99,23.06,23.1,23.12,22.88,22.76,22.72,22.35,22.29,22.22,22.22,22.51,22.83,22.81,23.12,23.06,23.22,23.08,23.24,23.4,23.4,23.4,23.31,23.19,23.22,23.26,23.26,23.49,23.31,23.31,23.19,23.33,23.42,23.22,23.26,23.19,23.31,23.26,23.33,23.33,23.24,23.28,23.37,23.4,23.44,23.35,23.31,23.31,23.26,23.44,23.44,23.4,23.26,23.46,23.44,23.24,23.31,23.53,23.4,23.44,23.46,23.28,23.35,23.42,23.19,23.4,23.26,23.19,21.44,21.51,21.14,21.14,21.3,21.9,22.01,21.85,21.76,21.97,21.9,21.9,22.1,22.22,22.13,22.15,22.22,22.2,22.35,22.35,22.2,22.24,22.22,22.31,21.81,21.92,21.81,21.81,21.85,21.67,21.49,21.88,21.67,21.51,21.69,21.65,21.78,21.85,21.83,22.1,21.94,22.29,22.33,22.38,22.38,22.35,22.35,22.67,22.58,22.58,22.74,22.58,22.63,22.45,22.6,22.65,22.76,22.72,22.74,22.74,22.76,22.74,22.76,22.88,22.85,22.76,22.83,22.81,22.85,22.79,22.79,22.63,22.58,22.49,22.42,22.47,22.76,22.97,23.22,23.01,23.24,23.1,23.1,23.12,22.99,23.19,23.22,23.12,23.08,23.1,22.97,22.99,23.12,23.24,23.08,23.19,23.17,23.1,23.26,23.08,23.22,23.31,23.31,23.46,23.53,23.37,23.19,23.28,23.26,23.51,23.24,23.31,23.31,23.22,23.19,23.33,23.33,23.24,23.24,23.22,23.33,23.08,23.33,23.31,23.31,23.46,23.49,23.33,23.4,23.4,23.33,23.33,23.31,23.44,23.31,23.12,23.26,23.17,23.22,23.26,23.24,23.17,23.4,23.37,23.19,23.15,23.4,23.28,23.33,23.24,23.31,23.24,23.17,23.26,23.24,23.17,23.26,22.94,22.99,22.83,22.7,22.72,22.38,22.15,21.72,21.42,21.19,21.35,21.56,21.74,21.83,21.81,22.08,22.17,22.24,22.24,22.33,22.29,22.45,22.35,22.33,22.29,22.51,22.38,22.56,22.6,22.58,22.58,22.54,22.65,22.58,22.54,22.58,22.51,22.51,22.56,22.56,22.49,22.49,22.6,22.49,22.56,22.7,22.35,22.33,22.51,22.65,22.58,22.4,22.35,22.63,22.38,22.47,22.54,22.4,22.31,22.38,22.35,22.29,22.49,22.49,22.33,22.38,22.51,22.35,22.38,22.45,22.45,22.42,22.47,22.33,22.24,22.29,22.1,21.81,21.94,21.81,21.74,21.65,21.56,21.6,21.51,21.56,21.44,21.33,21.49,21.42,21.6,21.88,21.97,22.26,22.67,22.72,22.79,22.88,23.06,22.83,22.72,22.63,22.31,22.26,22.2,22.35,22.56,22.85,22.97,22.99,23.1,23.19,23.17,23.1,23.37,23.31,23.26,23.19,23.24,23.03,23.15,23.22,23.35,23.24,23.12,23.26,23.26,23.51,23.26,23.19,23.1,23.01,23.31,23.28,23.26,23.24,23.4,23.24,23.24,23.33,23.35,23.44,23.33,23.35,23.49,23.24,23.44,23.4,23.35,23.55,23.33,23.37,23.26,23.42,23.4,23.55,23.35,23.35,23.26,23.33,23.51,23.44,23.4,21.6,21.62,21.46,21.33,21.49,21.83,22.1,21.97,22.13,22.13,22.08,22.2,22.24,22.24,22.33,22.42,22.45,22.38,22.58,22.31,22.45,22.42,22.26,22.33,22.4,22.2,22.24,22.1,21.94,21.97,21.94,22.01,21.92,21.72,21.83,22.01,21.58,21.88,21.76,21.85,22.08,22.08,22.15,22.15,22.22,22.31,22.67,22.56,22.65,22.51,22.76,22.74,22.74,22.49,22.74,22.65,22.81,22.85,22.79,22.79,22.76,22.83,22.74,22.99,22.85,22.79,22.92,22.79,22.88,22.72,22.76,22.83,22.72,22.47,22.54,22.56,23.01,23.12,23.19,23.12,23.12,23.12,23.1,23.1,23.01,23.28,23.24,23.15,22.99,23.19,23.22,23.03,23.12,23.12,23.15,23.06,23.28,23.26,23.22,23.31,23.4,23.35,23.37,23.46,23.33,23.51,23.33,23.31,23.24,23.44,23.44,23.28,23.31,23.28,23.33,23.46,23.33,23.31,23.31,23.51,23.44,23.33,23.35,23.35,23.33,23.44,23.35,23.4,23.4,23.35,23.49,23.31,23.51,23.46,23.35,23.24,23.19,23.31,23.22,23.15,23.19,23.44,23.33,23.4,23.26,23.24,23.42,23.35,23.37,23.28,23.44,23.33,23.42,23.31,23.31,23.12,23.12,23.01,22.99,22.83,22.9,22.42,22.33,21.92,21.72,21.4,21.35,21.44,21.62,21.81,21.92,22.06,22.2,22.2,22.4,22.22,22.17,22.31,22.49,22.42,22.42,22.4,22.47,22.58,22.51,22.49,22.65,22.6,22.56,22.63,22.58,22.88,22.67,22.67,22.6,22.58,22.63,22.63,22.6,22.63,22.65,22.56,22.56,22.6,22.6,22.38,22.72,22.6,22.58,22.38,22.54,22.42,22.49,22.56,22.58,22.38,22.58,22.54,22.54,22.56,22.51,22.33,22.6,22.58,22.54,22.47,22.54,22.42,22.51,22.6,22.42,22.35,22.29,22.22,22.2,22.17,22.17,22.04,21.85,21.72,21.62,21.6,21.65,21.4,21.56,21.65,21.42,21.51,21.49,21.62,21.94,22.26,22.35,22.65,22.63,22.85,22.74,22.47,22.54,22.26,22.17,22.26,22.47,22.76,22.85,23.06,23.08,23.33,23.35,23.33,23.17,23.28,23.12,23.35,23.35,23.42,23.28,23.26,23.28,23.26,23.33,23.28,23.33,23.31,23.51,23.33,23.33,23.24,23.12,23.28,23.37,23.26,23.26,23.37,23.31,23.37,23.28,23.33,23.51,23.19,23.44,23.44,23.49,23.35,23.46,23.4,23.44,23.24,23.44,23.26,23.37,23.35,23.46,23.44,23.35,23.31,23.35,23.55,23.22,23.37,21.72,21.46,21.4,21.62,21.83,22.17,21.92,22.2,22.24,22.22,22.33,22.22,22.31,22.04,22.47,22.47,22.72,22.42,22.29,22.4,22.56,22.45,22.35,22.38,22.7,22.51,22.54,22.38,22.17,22.13,22.01,22.1,22.24,22.01,22.15,21.9,21.74,21.88,21.83,21.88,21.81,21.94,21.99,22.08,22.17,22.2,22.2,22.35,22.54,22.56,22.63,22.54,22.72,22.63,22.67,22.7,22.81,22.81,22.79,22.9,22.99,22.76,22.92,22.79,22.85,22.85,22.94,22.83,23.03,22.67,22.76,22.58,22.51,22.58,22.56,22.63,23.1,23.17,23.4,23.17,23.26,23.08,23.31,23.22,23.1,23.12,23.24,23.19,23.15,23.15,23.4,23.15,23.12,23.1,23.4,23.37,23.37,23.28,23.37,23.42,23.42,23.58,23.4,23.33,23.49,23.42,23.4,23.4,23.35,23.49,23.42,23.37,23.33,23.4,23.44,23.31,23.31,23.35,23.35,23.51,23.35,23.49,23.4,23.4,23.49,23.33,23.53,23.33,23.46,23.46,23.35,23.53,23.49,23.44,23.28,23.24,23.28,23.4,23.31,23.49,23.51,23.35,23.37,23.4,23.44,23.31,23.28,23.37,23.26,23.31,23.31,23.37,23.37,23.24,23.28,23.35,23.31,22.99,22.99,22.72,22.63,22.49,22.31,21.69,21.69,21.6,21.33,21.65,21.76,21.92,22.01,22.29,22.29,22.31,22.38,22.26,22.49,22.35,22.49,22.54,22.47,22.49,22.56,22.67,22.51,22.58,22.67,22.7,22.65,22.63,22.85,22.79,22.74,22.83,22.56,22.63,22.6,22.6,22.58,22.67,22.7,22.67,22.51,22.49,22.67,22.49,22.74,22.58,22.7,22.58,22.6,22.54,22.49,22.56,22.67,22.56,22.42,22.65,22.6,22.7,22.54,22.58,22.49,22.65,22.65,22.7,22.63,22.51,22.51,22.49,22.7,22.6,22.63,22.45,22.31,22.17,22.22,22.33,22.24,22.1,21.85,21.83,21.6,21.53,21.72,21.65,21.3,21.49,21.37,21.56,21.85,22.06,22.2,22.35,22.54,22.49,22.49,22.45,22.26,22.24,22.26,22.45,22.76,22.76,23.06,23.1,23.1,23.4,23.42,23.31,23.26,23.42,23.28,23.31,23.37,23.35,23.35,23.28,23.35,23.44,23.24,23.35,23.31,23.33,23.51,23.46,23.42,23.37,23.4,23.35,23.31,23.55,23.4,23.33,23.44,23.37,23.26,23.37,23.62,23.51,23.42,23.55,23.62,23.62,23.64,23.58,23.6,23.46,23.6,23.46,23.31,23.35,23.42,23.35,23.4,23.55,23.42,23.64,23.49,23.53,21.42,21.42,21.37,21.78,22.04,22.08,21.83,21.94,22.04,22.1,22.13,22.1,22.22,22.38,22.35,22.24,22.58,22.42,22.29,22.33,22.47,22.54,22.38,22.29,22.49,22.49,22.47,22.33,22.33,22.24,22.26,22.15,22.31,22.13,22.2,22.38,21.94,22.01,21.81,22.01,21.81,21.83,21.67,21.94,22.13,21.94,22.15,22.04,22.38,22.26,22.35,22.4,22.56,22.51,22.65,22.6,22.83,22.7,22.85,22.7,22.83,22.76,22.74,22.74,22.85,22.74,22.76,22.74,22.81,22.63,22.65,22.51,22.51,22.45,22.63,22.83,22.99,23.08,23.22,23.12,23.17,23.03,23.22,23.17,23.15,23.15,23.35,23.15,23.12,23.03,23.19,23.12,23.33,23.17,23.06,23.26,23.19,23.1,23.22,23.42,23.49,23.4,23.37,23.37,23.42,23.24,23.37,23.24,23.4,23.51,23.22,23.28,23.28,23.28,23.22,23.46,23.42,23.33,23.42,23.4,23.35,23.33,23.33,23.42,23.4,23.46,23.37,23.51,23.37,23.4,23.26,23.33,23.37,23.35,23.35,23.33,23.31,23.19,23.26,23.46,23.31,23.4,23.35,23.35,23.37,23.19,23.37,23.4,23.35,23.33,23.33,23.33,23.24,23.19,23.12,23.12,23.01,23.01,22.79,22.63,22.54,22.29,22.01,21.85,21.51,21.42,21.44,21.49,21.83,21.9,22.17,22.33,22.26,22.38,22.26,22.31,22.33,22.35,22.4,22.63,22.42,22.38,22.58,22.63,22.63,22.6,22.54,22.6,22.63,22.49,22.67,22.83,22.7,22.81,22.76,22.63,22.49,22.67,22.6,22.56,22.67,22.74,22.58,22.45,22.56,22.45,22.67,22.56,22.63,22.58,22.4,22.38,22.33,22.47,22.56,22.6,22.56,22.74,22.38,22.51,22.54,22.54,22.54,22.6,22.58,22.58,22.56,22.54,22.45,22.67,22.4,22.38,22.45,22.42,22.2,22.22,22.33,22.33,22.17,22.35,22.04,21.92,21.83,21.69,21.62,21.6,21.62,21.35,21.56,21.33,21.6,21.65,21.67,21.97,22.15,22.17,22.15,22.01,22.29,22.22,22.33,22.51,22.74,22.94,23.06,23.08,23.12,23.19,23.22,23.35,23.28,23.44,23.22,23.22,23.15,23.24,23.17,23.12,23.31,23.31,23.33,23.22,23.22,23.24,23.42,23.37,23.19,23.31,23.26,23.33,23.35,23.31,23.44,23.42,23.26,23.17,23.26,23.31,23.4,23.49,23.44,23.42,23.35,23.28,23.53,23.22,23.24,23.46,23.44,23.22,23.58,23.6,23.37,23.35,23.4,23.49,23.35,23.71,23.46,23.37,21.19,21.26,21.46,21.76,21.92,22.1,22.13,22.01,22.01,22.13,21.94,22.06,22.31,22.26,22.22,22.31,22.4,22.2,22.26,22.35,22.42,22.35,22.6,22.33,22.45,22.49,22.38,22.6,22.42,22.42,22.4,22.17,22.33,22.31,22.2,22.24,22.13,22.01,21.94,22.1,21.88,21.9,21.76,21.81,21.76,21.74,21.92,21.99,21.88,22.13,22.24,22.29,22.29,22.22,22.54,22.56,22.54,22.81,22.67,22.72,22.74,22.7,22.9,22.76,22.79,22.88,22.79,22.67,22.72,22.6,22.51,22.4,22.31,22.42,22.83,22.81,22.94,22.9,23.1,23.03,23.17,23.03,23.12,23.03,23.15,23.03,23.03,23.35,23.1,23.01,22.99,23.06,23.06,23.1,22.81,23.06,23.06,23.28,23.12,23.22,23.44,23.22,23.1,23.31,23.42,23.4,23.22,23.17,23.28,23.35,23.26,23.22,23.33,23.31,23.26,23.17,23.22,23.19,23.28,23.31,23.4,23.37,23.19,23.35,23.26,23.4,23.19,23.33,23.4,23.35,23.22,23.33,23.26,23.22,23.31,23.28,23.22,23.28,23.22,23.33,23.28,23.31,23.37,23.35,23.33,23.31,23.24,23.28,23.33,23.24,23.31,23.33,23.22,23.12,23.08,23.03,23.01,22.85,22.72,22.51,22.22,21.78,21.76,21.44,21.51,21.35,21.46,21.58,21.88,21.97,21.97,22.13,22.15,22.15,22.26,22.31,22.4,22.35,22.29,22.6,22.6,22.49,22.38,22.58,22.76,22.54,22.38,22.49,22.65,22.49,22.63,22.6,22.45,22.47,22.63,22.54,22.24,22.56,22.72,22.74,22.54,22.51,22.63,22.35,22.56,22.6,22.6,22.51,22.35,22.38,22.26,22.42,22.38,22.49,22.49,22.47,22.45,22.54,22.51,22.38,22.47,22.51,22.58,22.4,22.63,22.38,22.51,22.58,22.49,22.51,22.47,22.33,22.42,22.45,22.26,22.17,22.31,22.26,22.2,22.15,22.04,21.97,21.99,21.72,21.6,21.6,21.56,21.37,21.35,21.46,21.56,21.35,21.51,21.58,21.56,21.78,21.85,21.85,22.01,22.15,22.1,22.51,22.63,22.85,22.92,23.03,23.22,23.12,23.26,23.33,23.19,23.35,23.26,23.03,23.24,23.26,23.15,23.33,23.22,23.28,23.31,23.28,23.19,23.35,23.28,23.19,23.31,23.17,23.22,23.26,23.31,23.26,23.22,23.28,23.22,23.12,23.17,23.31,23.4,23.19,23.33,23.33,23.35,23.26,23.35,23.1,23.1,23.37,23.33,23.31,23.35,23.26,23.31,23.28,23.4,23.33,23.24,23.33,23.33,23.22,21.23,21.23,21.58,21.74,21.81,21.92,22.08,22.01,22.04,22.1,22.22,22.2,22.04,22.1,22.35,22.35,22.45,22.31,22.4,22.13,22.26,22.29,22.38,22.22,22.54,22.15,22.26,22.42,22.29,22.38,22.42,22.24,22.42,22.24,22.35,22.31,22.26,22.24,22.08,22.13,21.85,21.88,21.76,21.85,21.81,21.83,21.94,21.9,21.97,21.85,22.08,22.08,22.06,22.2,22.45,22.2,22.35,22.7,22.6,22.76,22.7,22.72,22.67,22.7,22.72,22.7,22.88,22.67,22.54,22.6,22.56,22.33,22.31,22.4,22.7,22.85,22.94,23.28,23.26,23.03,23.15,23.08,23.17,23.12,23.24,23.08,23.19,23.24,23.03,22.9,23.08,22.99,22.99,23.06,23.28,23.15,23.17,23.17,23.17,23.19,23.15,23.01,23.08,23.22,23.31,23.46,23.28,23.1,23.24,23.35,23.31,23.03,23.26,23.35,23.22,23.26,23.22,23.24,23.31,23.31,23.33,23.26,23.35,23.31,23.33,23.26,23.44,23.58,23.35,23.33,23.31,23.19,23.26,23.03,23.28,23.22,23.01,22.94,23.17,23.42,23.37,23.24,23.22,23.33,23.26,23.24,23.1,23.28,23.33,23.26,23.28,23.28,23.17,23.06,23.1,22.97,23.08,22.85,22.63,22.4,22.2,21.85,21.58,21.42,21.33,21.42,21.4,21.67,21.78,21.94,22.08,22.22,22.22,22.33,22.35,22.56,22.33,22.2,22.31,22.51,22.63,22.54,22.47,22.63,22.51,22.24,22.33,22.63,22.49,22.51,22.6,22.58,22.51,22.6,22.45,22.63,22.51,22.54,22.58,22.72,22.63,22.58,22.54,22.47,22.4,22.58,22.65,22.45,22.42,22.17,22.15,22.56,22.47,22.4,22.51,22.56,22.56,22.4,22.42,22.49,22.51,22.42,22.6,22.47,22.67,22.31,22.38,22.49,22.4,22.33,22.54,22.45,22.38,22.08,22.45,22.2,22.26,22.33,22.26,22.24,22.13,22.04,22.1,21.92,21.83,21.78,21.69,21.46,21.51,21.35,21.49,21.49,21.37,21.37,21.65,21.51,21.56,21.76,21.81,21.72,22.2,22.49,22.63,22.85,22.97,23.12,23.15,23.03,23.22,23.28,23.15,23.12,23.17,23.15,23.17,23.1,23.24,23.06,23.22,23.24,22.92,23.28,23.35,23.35,23.46,23.08,23.12,23.12,23.22,23.26,23.26,23.06,23.19,23.31,23.1,23.28,23.22,23.12,23.31,23.1,23.19,23.17,23.28,23.44,23.24,23.42,23.19,23.42,23.15,23.24,23.35,23.4,23.46,23.44,23.53,23.28,23.62,23.26,23.31,23.33,21.33,21.49,21.6,21.81,21.92,22.08,21.97,22.1,21.74,22.08,22.13,22.08,22.35,22.26,22.22,22.4,22.31,22.26,22.4,22.2,22.33,22.54,22.45,22.47,22.29,22.38,22.33,22.51,22.47,22.47,22.17,22.47,22.35,22.31,22.31,22.54,22.51,22.35,22.17,22.29,22.22,22.13,21.97,22.13,22.13,21.81,21.83,21.76,21.76,21.74,21.78,22.04,21.85,22.04,22.22,22.26,22.24,22.47,22.42,22.47,22.47,22.67,22.76,22.79,22.76,22.81,22.74,22.79,22.49,22.4,22.45,22.13,22.31,22.7,22.94,23.08,23.17,23.35,23.17,23.1,23.03,23.08,23.24,23.19,23.17,23.06,23.19,23.15,23.19,23.1,23.19,22.99,22.99,23.06,23.06,23.12,23.22,23.19,23.15,23.15,23.33,23.4,23.22,23.28,23.33,23.42,23.42,23.19,23.22,23.12,23.31,23.26,23.15,23.33,23.28,23.35,23.1,23.24,23.22,23.33,23.33,23.35,23.22,23.4,23.24,23.31,23.4,23.58,23.53,23.28,23.37,23.49,23.42,23.4,23.24,23.22,23.1,23.08,23.24,23.28,23.24,23.28,23.35,23.31,23.35,23.12,23.22,23.31,23.19,23.44,23.26,23.35,23.22,22.99,23.01,23.01,23.01,22.79,22.65,22.33,21.94,21.76,21.58,21.44,21.35,21.33,21.4,21.58,21.83,22.13,22.22,22.24,22.17,22.4,22.49,22.29,22.51,22.4,22.29,22.24,22.49,22.49,22.54,22.54,22.49,22.42,22.47,22.6,22.67,22.51,22.54,22.6,22.56,22.45,22.51,22.54,22.4,22.67,22.42,22.67,22.6,22.45,22.6,22.42,22.51,22.6,22.56,22.47,22.45,22.47,22.35,22.49,22.51,22.54,22.49,22.4,22.42,22.58,22.42,22.45,22.4,22.45,22.54,22.51,22.4,22.54,22.42,22.51,22.56,22.54,22.58,22.47,22.33,22.33,22.47,22.45,22.35,22.2,22.29,22.35,22.26,22.22,21.94,22.08,22.15,21.88,22.01,21.81,21.53,21.46,21.3,21.37,21.42,21.35,21.51,21.69,21.69,21.56,21.97,21.97,22.13,22.45,22.45,22.76,22.88,23.06,23.1,23.12,23.15,23.35,23.06,23.19,23.03,23.24,23.19,23.08,23.26,23.17,23.26,23.33,23.01,23.12,23.24,23.12,23.19,23.15,23.22,23.26,23.19,23.24,23.19,23.15,23.17,23.35,23.31,23.1,23.19,23.31,23.12,23.31,23.15,23.24,23.26,23.28,23.31,23.17,23.22,23.31,23.31,23.19,23.33,23.37,23.42,23.26,23.15,23.51,23.37,23.31,23.22,23.31,21.37,21.46,21.78,21.92,22.06,21.92,22.15,22.04,22.01,21.9,21.94,22.04,22.2,22.15,22.56,22.35,22.38,22.26,22.42,22.4,22.51,22.51,22.63,22.38,22.4,22.72,22.56,22.81,22.42,22.45,22.33,22.56,22.56,22.49,22.47,22.47,22.47,22.51,22.38,22.22,22.35,22.4,22.33,22.2,22.13,22.15,22.13,21.94,21.69,21.97,22.06,21.78,21.92,21.94,21.99,22.08,22.29,22.29,22.4,22.29,22.49,22.51,22.63,22.6,22.51,22.67,22.63,22.7,22.67,22.33,22.29,22.33,22.49,22.7,22.79,23.06,23.24,23.19,23.22,23.19,23.22,22.97,23.17,23.15,23.17,23.19,23.22,23.06,23.01,22.99,23.17,22.94,23.01,23.15,23.19,23.26,23.17,23.12,23.12,23.19,23.49,23.37,23.22,23.33,23.12,23.24,23.17,23.1,23.1,23.31,23.37,23.31,23.28,23.19,23.42,23.12,23.15,23.31,23.26,23.28,23.31,23.31,23.26,23.26,23.15,23.31,23.46,23.51,23.53,23.35,23.42,23.33,23.35,23.28,23.26,23.19,23.22,23.03,23.12,23.22,23.19,23.28,23.24,23.22,23.22,23.22,23.26,23.22,23.24,23.12,23.37,23.17,23.22,22.99,23.08,23.06,23.03,22.51,22.33,22.26,21.88,21.53,21.42,21.33,21.37,21.58,21.6,21.69,22.01,22.2,22.22,22.35,22.29,22.33,22.35,22.38,22.49,22.4,22.29,22.29,22.45,22.49,22.54,22.49,22.56,22.56,22.47,22.65,22.56,22.49,22.54,22.65,22.58,22.6,22.38,22.54,22.47,22.58,22.54,22.49,22.6,22.58,22.58,22.58,22.56,22.38,22.63,22.6,22.4,22.49,22.47,22.38,22.49,22.49,22.31,22.35,22.42,22.56,22.49,22.47,22.47,22.29,22.76,22.58,22.65,22.58,22.63,22.49,22.49,22.4,22.54,22.51,22.4,22.51,22.29,22.2,22.42,22.38,22.47,22.35,22.4,22.1,22.06,22.13,22.17,22.06,22.01,22.01,21.65,21.65,21.44,21.62,21.4,21.4,21.46,21.49,21.53,21.53,21.83,21.9,22.04,22.45,22.58,22.67,22.7,22.88,23.06,22.94,23.28,23.28,23.37,23.4,23.1,23.49,23.33,23.19,23.1,23.17,23.15,23.28,23.15,23.53,23.31,23.33,23.37,23.37,23.03,23.08,23.06,23.28,23.1,23.31,23.33,23.33,23.22,23.35,23.28,23.17,23.24,23.24,23.12,23.26,23.31,23.22,23.44,23.49,23.35,23.28,23.33,23.24,23.26,23.33,23.37,23.35,23.26,23.35,23.22,23.4,23.19,23.1,21.33,21.58,22.04,22.15,21.97,22.08,22.04,22.24,22.15,22.04,22.1,22.26,22.29,22.15,22.38,22.38,22.4,22.08,22.42,22.35,22.54,22.38,22.49,22.47,22.47,22.45,22.35,22.63,22.47,22.38,22.58,22.54,22.54,22.33,22.72,22.6,22.33,22.38,22.51,22.38,22.42,22.58,22.35,22.29,22.33,22.33,22.22,22.17,22.17,22.2,21.92,21.94,21.88,21.78,21.94,21.92,21.9,22.13,22.08,22.22,22.4,22.45,22.49,22.63,22.38,22.47,22.6,22.47,22.49,22.38,22.38,22.51,22.65,22.9,22.9,23.01,23.19,23.31,23.26,23.26,23.12,23.15,23.12,23.1,23.17,23.17,23.12,23.17,23.1,23.03,23.17,22.83,23.17,22.97,23.15,23.06,23.12,23.19,23.28,23.28,23.33,23.31,23.19,23.42,23.1,23.22,23.31,23.35,23.28,23.46,23.28,23.26,23.26,23.26,23.24,23.24,23.03,23.28,23.31,23.53,23.42,23.19,23.17,23.19,23.37,23.4,23.37,23.49,23.42,23.49,23.4,23.33,23.37,23.31,23.22,23.22,23.37,23.19,23.08,23.44,23.17,23.26,23.19,23.31,23.19,23.22,23.17,23.15,23.19,23.17,23.35,23.03,23.19,23.08,22.99,22.94,22.83,22.56,22.29,22.01,21.78,21.46,21.46,21.37,21.56,21.44,21.6,21.94,22.08,22.26,22.29,22.22,22.33,22.42,22.33,22.42,22.42,22.35,22.45,22.42,22.51,22.35,22.56,22.67,22.38,22.51,22.56,22.56,22.56,22.7,22.51,22.63,22.54,22.58,22.51,22.45,22.49,22.6,22.7,22.54,22.65,22.6,22.65,22.58,22.51,22.47,22.58,22.49,22.58,22.47,22.49,22.56,22.63,22.42,22.42,22.42,22.33,22.51,22.42,22.51,22.45,22.51,22.6,22.51,22.58,22.58,22.58,22.31,22.51,22.54,22.49,22.67,22.38,22.42,22.45,22.26,22.31,22.42,22.35,22.38,22.2,22.49,22.13,22.15,22.26,22.2,22.2,22.08,22.1,21.78,21.83,21.62,21.37,21.46,21.6,21.49,21.62,21.81,21.88,21.9,21.88,22.26,22.38,22.45,22.4,22.76,22.94,22.94,23.12,23.33,23.03,23.17,23.17,23.26,23.03,23.17,23.19,23.22,23.22,23.28,23.19,23.6,23.33,23.33,23.24,23.19,23.33,23.01,23.22,23.33,23.17,23.22,23.22,23.33,23.22,23.31,23.33,23.33,23.4,23.19,23.31,23.12,23.24,23.33,23.4,23.42,23.24,23.37,23.22,23.28,23.35,23.44,23.49,23.22,23.33,23.31,23.42,23.53,23.22,23.19,21.56,21.67,21.97,21.99,22.04,22.1,22.17,22.22,22.17,22.17,21.94,22.15,22.35,22.38,22.26,22.42,22.4,22.13,22.29,22.54,22.29,22.54,22.65,22.26,22.51,22.49,22.47,22.67,22.38,22.47,22.47,22.35,22.45,22.47,22.65,22.65,22.33,22.4,22.35,22.49,22.42,22.56,22.6,22.45,22.35,22.4,22.54,22.47,22.17,22.31,22.26,21.99,21.97,21.94,22.08,21.94,22.01,22.04,22.04,21.97,22.17,22.2,22.38,22.24,22.4,22.67,22.4,22.38,22.29,22.01,22.06,22.33,22.58,22.83,23.03,23.15,23.19,23.12,23.24,23.1,23.12,23.1,23.22,23.1,23.15,23.01,23.01,23.06,23.06,23.06,23.19,23.01,23.01,23.1,23.08,22.99,23.15,23.22,23.17,23.4,23.22,23.26,23.24,23.35,23.22,23.15,23.15,23.06,23.33,23.31,23.4,23.08,23.24,23.17,23.15,23.1,23.17,23.15,23.24,23.33,23.17,23.37,23.4,23.24,23.31,23.22,23.42,23.17,23.46,23.37,23.4,23.31,23.37,23.17,23.37,23.19,23.37,23.19,23.12,23.31,23.22,23.08,23.28,23.42,23.22,23.19,23.1,23.15,23.12,23.33,23.28,23.17,23.01,23.01,23.01,22.99,22.63,22.49,22.24,22.01,21.62,21.49,21.44,21.46,21.58,21.53,21.72,21.85,21.97,22.2,22.33,22.15,22.22,22.45,22.24,22.29,22.35,22.35,22.15,22.35,22.56,22.54,22.72,22.65,22.4,22.47,22.4,22.74,22.6,22.63,22.51,22.56,22.54,22.47,22.33,22.45,22.51,22.45,22.6,22.63,22.54,22.45,22.63,22.47,22.54,22.47,22.51,22.45,22.47,22.38,22.33,22.4,22.47,22.51,22.49,22.45,22.4,22.4,22.42,22.49,22.35,22.38,22.65,22.54,22.51,22.45,22.45,22.29,22.47,22.6,22.49,22.54,22.45,22.45,22.38,22.38,22.35,22.38,22.42,22.33,22.31,22.22,22.13,22.26,22.33,22.31,22.15,22.13,21.83,21.83,21.94,21.88,21.51,21.44,21.44,21.62,21.65,21.85,22.1,22.1,22.06,22.2,22.35,22.38,22.42,22.47,22.72,23.01,22.92,23.17,23.06,23.15,23.06,23.01,23.1,22.97,23.1,23.22,23.12,22.99,23.19,23.22,23.28,23.31,23.4,23.17,23.12,23.12,23.12,23.31,23.24,23.22,23.19,23.33,23.24,23.12,23.1,23.22,23.37,23.24,23.15,23.31,23.19,23.17,23.42,23.35,23.19,23.12,23.19,23.1,23.42,23.33,23.24,23.22,23.22,23.24,23.33,23.4,23.31,23.24,21.72,21.85,22.04,22.22,22.08,22.2,22.2,22.17,21.94,22.13,21.88,22.15,22.42,22.33,22.33,22.42,22.31,22.24,22.6,22.56,22.67,22.54,22.4,22.42,22.45,22.45,22.51,22.49,22.58,22.38,22.54,22.58,22.49,22.56,22.58,22.63,22.38,22.45,22.58,22.63,22.47,22.65,22.7,22.67,22.51,22.4,22.7,22.65,22.56,22.45,22.47,22.31,22.08,22.1,22.26,22.26,22.13,22.01,22.08,22.01,22.17,22.17,22.2,22.08,22.17,22.58,22.47,22.15,22.24,22.13,22.4,22.38,22.51,23.03,22.9,23.17,23.15,23.31,23.33,23.03,23.17,23.08,23.31,23.24,23.19,23.06,23.1,23.06,23.42,23.15,23.15,23.06,22.97,23.15,23.19,23.06,23.22,23.01,23.15,23.46,23.42,23.31,23.28,23.31,23.28,23.28,23.22,23.26,23.4,23.44,23.33,23.28,23.19,23.26,23.35,23.28,23.31,23.15,23.26,23.37,23.31,23.28,23.24,23.28,23.35,23.35,23.24,23.4,23.31,23.37,23.37,23.31,23.37,23.33,23.37,23.42,23.35,23.28,23.17,23.26,23.33,23.37,23.44,23.37,23.31,23.08,23.26,23.37,23.24,23.17,23.19,23.37,23.19,23.03,22.97,22.79,22.63,22.35,22.15,21.83,21.58,21.42,21.65,21.42,21.53,21.62,21.74,22.08,22.13,22.26,22.47,22.4,22.42,22.38,22.42,22.51,22.4,22.4,22.31,22.35,22.4,22.51,22.63,22.65,22.56,22.42,22.38,22.67,22.54,22.58,22.45,22.47,22.6,22.54,22.67,22.6,22.49,22.63,22.63,22.76,22.54,22.38,22.51,22.6,22.56,22.56,22.54,22.56,22.45,22.63,22.47,22.65,22.65,22.6,22.6,22.6,22.47,22.51,22.35,22.67,22.56,22.6,22.54,22.58,22.67,22.38,22.67,22.6,22.47,22.42,22.7,22.56,22.51,22.49,22.42,22.47,22.47,22.4,22.49,22.54,22.35,22.29,22.49,22.24,22.4,22.22,22.1,22.04,22.06,22.01,21.99,21.65,21.67,21.37,21.49,21.58,21.69,21.94,22.15,22.24,22.33,22.42,22.4,22.22,22.17,22.54,22.51,22.67,22.72,23.06,22.94,23.08,23.12,23.15,23.19,23.03,23.08,23.1,23.26,23.22,23.33,23.51,23.37,23.28,23.42,23.15,23.26,23.22,23.03,23.35,23.33,23.12,23.35,23.35,23.15,23.44,23.26,23.06,23.1,23.24,23.33,23.28,23.31,23.37,23.35,23.4,23.44,23.08,23.24,23.4,23.31,23.37,23.37,23.17,23.49,23.37,23.19,23.28,23.44,23.31,21.74,22.1,22.38,22.29,22.38,22.15,22.29,22.29,21.97,22.24,22.24,22.47,22.49,22.56,22.49,22.4,22.63,22.45,22.58,22.6,22.7,22.47,22.49,22.56,22.6,22.72,22.51,22.4,22.63,22.47,22.54,22.7,22.56,22.51,22.54,22.83,22.65,22.67,22.56,22.58,22.51,22.76,22.63,22.76,22.79,22.7,22.63,22.65,22.58,22.67,22.9,22.63,22.47,22.38,22.33,22.33,22.26,22.17,22.33,22.15,22.22,22.13,22.2,22.1,22.24,22.17,22.35,22.22,22.22,22.35,22.13,22.31,22.72,22.83,22.92,23.01,23.24,23.17,23.31,23.24,23.15,23.08,23.28,23.12,23.22,23.03,23.22,23.24,23.19,23.24,23.08,23.01,23.19,23.15,23.26,23.19,23.28,23.28,23.17,23.4,23.4,23.4,23.49,23.4,23.44,23.31,23.42,23.17,23.49,23.42,23.31,23.31,23.33,23.35,23.35,23.33,23.26,23.17,23.33,23.4,23.46,23.35,23.15,23.37,23.49,23.42,23.35,23.44,23.4,23.53,23.44,23.4,23.42,23.42,23.26,23.44,23.49,23.37,23.17,23.4,23.37,23.49,23.37,23.4,23.46,23.31,23.35,23.46,23.33,23.44,23.28,23.28,23.28,23.19,22.97,22.83,22.7,22.35,22.04,21.83,21.69,21.49,21.62,21.53,21.92,21.83,21.92,22.15,22.17,22.24,22.42,22.24,22.42,22.45,22.42,22.42,22.45,22.45,22.56,22.51,22.7,22.6,22.79,22.56,22.72,22.58,22.58,22.6,22.45,22.79,22.6,22.83,22.6,22.47,22.63,22.56,22.45,22.58,22.63,22.63,22.7,22.67,22.56,22.65,22.56,22.51,22.6,22.54,22.38,22.45,22.54,22.51,22.65,22.51,22.7,22.6,22.54,22.65,22.67,22.81,22.74,22.54,22.67,22.72,22.7,22.67,22.6,22.67,22.58,22.72,22.65,22.54,22.65,22.74,22.54,22.47,22.49,22.54,22.51,22.54,22.31,22.45,22.49,22.22,22.33,22.33,22.13,22.04,22.24,22.06,21.92,21.88,21.58,21.6,21.67,21.72,21.88,22.26,22.31,22.51,22.49,22.65,22.65,22.47,22.49,22.54,22.42,22.42,22.85,22.85,22.99,23.15,23.24,23.24,23.28,23.08,23.19,23.15,23.19,23.31,23.28,23.49,23.53,23.28,23.55,23.46,23.31,23.26,23.33,23.42,23.4,23.33,23.24,23.35,23.24,23.33,23.28,23.31,23.35,23.33,23.44,23.49,23.46,23.42,23.4,23.37,23.35,23.33,23.31,23.51,23.37,23.35,23.26,23.4,23.19,23.4,23.31,23.35,23.46,23.42,21.83,22.04,22.33,22.08,22.2,21.85,22.29,22.17,21.99,22.24,22.13,22.15,22.26,22.26,22.35,22.45,22.33,22.42,22.42,22.38,22.45,22.6,22.6,22.58,22.56,22.58,22.29,22.42,22.56,22.54,22.47,22.42,22.47,22.54,22.45,22.79,22.67,22.56,22.2,22.6,22.54,22.7,22.7,22.47,22.65,22.47,22.65,22.74,22.65,22.63,22.85,22.76,22.51,22.65,22.54,22.6,22.33,22.24,22.29,22.2,22.4,22.15,22.22,21.99,22.2,22.22,22.1,22.08,21.99,22.33,22.2,22.35,22.54,22.76,22.72,22.65,22.94,22.97,23.1,23.1,23.03,23.19,23.19,23.06,23.1,23.03,23.08,23.22,23.08,23.12,23.12,22.94,23.12,23.17,23.19,23.26,23.08,22.99,23.08,23.37,23.44,22.97,23.08,23.31,23.28,23.42,23.22,23.24,23.44,23.4,23.31,23.28,23.31,23.24,23.37,23.26,23.35,23.22,23.28,23.46,23.51,23.31,23.12,23.37,23.35,23.26,23.24,23.4,23.35,23.33,23.4,23.26,23.31,23.24,23.19,23.31,23.4,23.33,23.12,23.26,23.22,23.46,23.26,23.22,22.99,23.15,23.24,23.37,23.17,23.12,23.1,23.1,23.08,22.92,22.81,22.76,22.4,21.99,21.76,21.49,21.51,21.28,21.37,21.49,21.76,21.85,22.04,22.15,22.22,22.2,22.2,22.24,22.4,22.38,22.42,22.4,22.45,22.49,22.4,22.6,22.47,22.47,22.54,22.45,22.54,22.4,22.49,22.49,22.4,22.49,22.47,22.65,22.54,22.47,22.38,22.7,22.58,22.51,22.6,22.56,22.63,22.45,22.35,22.51,22.47,22.51,22.63,22.63,22.4,22.51,22.42,22.35,22.33,22.49,22.47,22.56,22.45,22.49,22.54,22.6,22.54,22.6,22.76,22.7,22.63,22.58,22.65,22.7,22.42,22.49,22.54,22.76,22.65,22.58,22.47,22.45,22.4,22.38,22.51,22.4,22.42,22.35,22.33,22.26,22.4,22.38,22.26,22.13,21.97,21.92,21.97,21.58,21.6,21.42,21.51,21.76,22.04,22.22,22.33,22.6,22.7,22.85,22.56,22.45,22.38,22.47,22.31,22.45,22.54,22.54,22.7,22.81,22.88,22.92,22.88,22.97,23.01,23.17,23.17,23.37,23.33,23.4,23.24,23.37,23.24,23.24,23.19,23.24,23.03,23.24,23.12,23.19,23.15,23.24,23.08,23.17,23.33,23.17,23.35,23.12,23.28,23.19,23.49,23.22,23.4,23.31,23.42,23.26,23.24,23.24,23.35,23.4,23.28,23.44,23.22,23.33,23.33,23.26,23.31,23.53,22.06,21.85,22.08,22.06,22.06,22.08,22.31,22.2,21.78,21.97,22.17,22.15,22.35,22.29,22.49,22.54,22.33,22.54,22.4,22.35,22.47,22.6,22.49,22.49,22.47,22.6,22.38,22.54,22.47,22.42,22.65,22.47,22.38,22.4,22.47,22.67,22.51,22.4,22.54,22.63,22.6,22.58,22.6,22.56,22.47,22.54,22.65,22.7,22.67,22.6,22.99,22.63,22.7,22.58,22.74,22.63,22.58,22.67,22.49,22.45,22.29,22.26,22.26,22.17,22.08,22.17,22.13,22.06,22.01,21.9,22.08,22.22,22.4,22.56,22.6,22.65,22.88,22.83,23.03,22.99,22.79,23.06,23.03,23.1,22.97,22.94,23.15,23.15,23.03,23.17,23.22,23.19,23.01,23.15,23.19,23.1,23.28,23.26,23.24,23.19,23.4,23.22,23.17,23.1,23.28,23.37,23.33,23.28,23.31,23.24,23.17,23.17,23.19,23.26,23.24,23.24,23.17,23.01,23.22,23.35,23.46,23.4,23.17,23.42,23.33,23.31,23.33,23.42,23.4,23.24,23.26,23.33,23.37,23.35,23.28,23.24,23.19,23.1,23.28,23.26,23.24,23.35,23.31,23.24,23.03,23.01,23.26,23.4,23.12,23.24,23.12,23.33,23.06,22.94,22.85,22.65,22.47,21.83,21.56,21.37,21.4,21.33,21.49,21.51,21.72,21.78,22.01,22.08,22.2,22.24,22.17,22.22,22.38,22.56,22.31,22.31,22.42,22.4,22.26,22.47,22.4,22.51,22.54,22.49,22.58,22.4,22.33,22.6,22.58,22.45,22.6,22.58,22.54,22.56,22.51,22.47,22.47,22.42,22.65,22.56,22.54,22.56,22.6,22.56,22.58,22.49,22.65,22.54,22.47,22.24,22.24,22.31,22.4,22.6,22.45,22.22,22.67,22.56,22.54,22.58,22.47,22.51,22.56,22.47,22.56,22.56,22.49,22.49,22.6,22.45,22.65,22.31,22.42,22.47,22.54,22.45,22.42,22.4,22.26,22.31,22.47,22.38,22.15,22.33,22.33,22.24,22.24,22.04,21.97,21.78,21.76,21.69,21.53,21.58,21.76,21.83,21.88,22.38,22.67,22.9,22.94,22.99,22.94,22.67,22.7,22.38,22.45,22.49,22.42,22.35,22.31,22.7,22.72,22.76,22.65,22.92,22.92,23.1,23.12,23.28,23.28,23.26,23.24,23.19,23.31,23.17,23.15,23.22,23.12,23.26,23.24,23.42,23.19,23.1,23.22,23.15,23.12,23.22,23.22,23.17,23.1,23.1,23.49,23.24,23.35,23.37,23.22,23.22,23.22,23.24,23.44,23.17,23.17,23.24,23.33,23.37,23.26,23.03,23.49,23.42,22.1,22.26,22.33,22.22,22.13,22.13,22.2,22.22,22.06,22.17,22.13,22.24,22.35,22.35,22.45,22.49,22.49,22.38,22.42,22.4,22.42,22.76,22.49,22.56,22.45,22.58,22.42,22.42,22.51,22.49,22.58,22.7,22.7,22.56,22.72,22.58,22.58,22.63,22.6,22.56,22.49,22.74,22.54,22.67,22.65,22.65,22.67,22.63,22.56,22.54,22.83,22.72,22.51,22.63,22.74,22.67,22.72,22.74,22.72,22.7,22.58,22.49,22.54,22.24,22.2,22.2,22.26,22.2,21.92,22.01,22.08,22.31,22.15,22.33,22.51,22.42,22.67,22.85,22.94,22.92,22.99,22.97,23.01,23.15,23.15,23.01,23.12,23.08,23.1,23.06,23.12,23.01,23.1,23.06,23.01,23.15,22.88,23.24,23.37,23.1,23.31,23.08,23.24,23.33,23.22,23.19,23.31,23.37,23.22,23.31,23.26,23.37,23.15,23.26,23.24,23.26,23.24,23.24,23.22,23.4,23.44,23.37,23.26,23.28,23.28,23.37,23.26,23.44,23.4,23.33,23.19,23.26,23.53,23.4,23.4,23.28,23.4,23.24,23.26,23.42,23.31,23.26,23.31,23.35,23.15,23.22,23.22,23.33,23.33,23.12,23.15,23.12,23.01,22.92,22.6,22.56,22.26,21.78,21.28,21.37,21.33,21.53,21.51,21.67,21.83,22.04,22.06,22.06,22.26,22.35,22.42,22.31,22.42,22.6,22.4,22.45,22.38,22.31,22.49,22.51,22.54,22.51,22.51,22.63,22.33,22.42,22.35,22.58,22.63,22.54,22.56,22.58,22.54,22.42,22.45,22.49,22.51,22.54,22.7,22.6,22.58,22.58,22.72,22.63,22.42,22.51,22.56,22.45,22.49,22.47,22.24,22.49,22.45,22.65,22.51,22.49,22.56,22.6,22.76,22.54,22.47,22.51,22.7,22.6,22.38,22.58,22.58,22.47,22.58,22.42,22.58,22.58,22.49,22.56,22.63,22.35,22.47,22.42,22.51,22.4,22.42,22.35,22.33,22.38,22.17,22.2,22.17,22.01,21.97,21.51,21.72,21.69,21.35,21.46,21.72,22.06,22.1,22.42,22.74,22.99,22.99,22.99,23.22,23.01,22.79,22.63,22.51,22.49,22.63,22.51,22.51,22.63,22.6,22.6,22.63,22.74,23.01,22.94,23.17,23.22,23.22,23.15,23.12,23.35,23.24,23.22,23.17,23.19,23.26,23.15,23.28,23.26,23.26,23.15,23.19,23.28,23.28,23.19,23.24,23.19,23.24,23.42,23.37,23.22,23.24,23.22,23.06,23.17,23.28,23.35,23.28,23.28,23.22,23.26,23.44,23.4,23.22,23.42,23.35,23.46,22.06,22.17,22.15,22.13,22.17,22.15,22.15,22.15,22.08,22.31,22.17,22.2,22.24,22.26,22.1,22.22,22.24,22.2,22.47,22.31,22.29,22.65,22.45,22.33,22.49,22.4,22.49,22.67,22.42,22.56,22.65,22.56,22.29,22.51,22.76,22.54,22.51,22.51,22.49,22.51,22.45,22.65,22.58,22.74,22.51,22.58,22.6,22.67,22.63,22.54,22.72,22.6,22.4,22.76,22.65,22.6,22.54,22.76,22.63,22.58,22.54,22.56,22.47,22.45,22.29,22.2,22.13,22.04,22.06,22.1,22.24,22.13,22.24,22.15,22.15,22.29,22.24,22.49,22.7,22.47,22.6,22.63,22.85,22.94,22.81,22.88,22.85,22.99,23.1,23.03,23.06,23.01,22.97,23.06,23.08,23.17,23.12,23.24,23.17,23.1,23.26,23.03,23.01,23.28,23.01,23.17,23.26,23.26,23.33,23.26,23.33,23.24,23.15,23.26,23.17,23.28,23.4,23.08,23.24,23.28,23.17,23.17,23.31,23.1,23.22,23.24,23.31,23.44,23.42,23.35,23.24,23.15,23.42,23.22,23.26,23.12,23.22,23.24,23.15,23.26,23.24,23.19,23.19,22.99,23.12,23.15,22.99,23.28,23.1,23.12,23.22,23.08,22.9,22.72,22.58,22.38,22.01,21.6,21.46,21.37,21.49,21.42,21.53,21.58,21.92,21.83,22.06,22.17,22.29,22.13,22.17,22.2,22.31,22.45,22.42,22.33,22.2,22.2,22.31,22.47,22.4,22.31,22.47,22.38,22.56,22.47,22.4,22.67,22.42,22.45,22.45,22.49,22.6,22.56,22.47,22.63,22.29,22.45,22.49,22.7,22.58,22.67,22.51,22.49,22.6,22.47,22.4,22.58,22.45,22.38,22.47,22.4,22.42,22.54,22.47,22.54,22.4,22.47,22.76,22.49,22.42,22.31,22.58,22.65,22.54,22.42,22.54,22.47,22.6,22.49,22.56,22.45,22.54,22.58,22.49,22.42,22.38,22.35,22.26,22.33,22.24,22.22,22.31,22.38,22.17,22.17,22.04,21.9,21.83,21.6,21.67,21.37,21.42,21.44,21.76,22.04,22.31,22.58,22.74,22.88,22.88,23.12,23.19,23.06,22.99,22.76,22.56,22.7,22.72,22.6,22.45,22.63,22.24,22.45,22.51,22.45,22.58,22.88,22.92,23.17,22.99,22.97,23.01,23.15,23.12,23.03,23.06,23.1,22.99,23.08,23.1,23.19,23.15,23.08,23.08,22.99,23.08,23.26,23.03,23.08,23.22,23.12,23.24,23.12,23.1,23.08,23.17,23.31,23.17,23.22,23.12,23.19,23.19,23.28,23.22,23.17,23.03,23.17,23.28,23.33,22.17,22.2,22.15,22.2,22.2,22.2,22.29,22.42,22.22,22.2,22.38,22.33,22.22,22.26,22.35,22.2,22.35,22.35,22.67,22.47,22.63,22.47,22.51,22.45,22.47,22.24,22.4,22.54,22.51,22.51,22.4,22.6,22.63,22.67,22.49,22.58,22.79,22.47,22.63,22.65,22.54,22.6,22.65,22.67,22.76,22.7,22.6,22.83,22.79,22.6,22.81,22.76,22.51,22.67,22.67,22.7,22.85,22.51,22.83,22.76,22.74,22.74,22.51,22.51,22.35,22.29,22.24,22.08,22.13,22.08,22.26,22.29,22.45,22.42,22.31,22.31,22.4,22.35,22.4,22.33,22.6,22.7,22.56,22.76,22.76,22.88,22.79,22.97,23.12,22.99,22.94,23.03,22.99,22.97,23.01,23.24,23.15,23.03,23.19,23.12,23.26,23.12,23.12,23.22,23.15,23.1,23.26,23.33,23.35,23.33,23.35,23.35,23.12,23.28,23.15,23.22,23.33,23.19,23.26,23.17,23.26,23.26,23.24,23.26,23.31,23.35,23.58,23.42,23.35,23.28,23.37,23.31,23.51,23.22,23.24,23.17,23.22,23.24,23.33,23.28,23.15,23.22,23.26,23.22,23.12,23.03,23.03,23.24,23.15,23.15,23.03,23.12,22.88,22.6,22.47,22.17,21.76,21.28,21.44,21.42,21.49,21.56,21.67,21.76,21.94,21.97,22.04,22.1,22.26,22.33,22.13,22.29,22.33,22.47,22.47,22.26,22.15,22.26,22.35,22.42,22.54,22.42,22.35,22.38,22.47,22.47,22.54,22.63,22.6,22.51,22.47,22.51,22.56,22.58,22.54,22.42,22.35,22.47,22.54,22.4,22.33,22.58,22.76,22.47,22.42,22.4,22.45,22.51,22.49,22.31,22.42,22.31,22.4,22.51,22.4,22.54,22.56,22.6,22.67,22.58,22.56,22.6,22.74,22.56,22.38,22.42,22.49,22.4,22.47,22.47,22.47,22.54,22.47,22.63,22.42,22.4,22.47,22.45,22.31,22.29,22.35,22.24,22.31,22.4,22.24,22.13,22.04,21.9,21.88,21.58,21.58,21.44,21.6,21.62,21.9,22.15,22.38,22.58,22.88,23.08,23.06,23.22,23.22,23.06,23.1,23.03,22.92,22.92,22.88,22.76,22.56,22.54,22.35,22.31,22.54,22.17,22.35,22.56,22.63,22.81,22.88,23.03,22.97,23.06,23.17,23.15,23.08,23.17,23.12,23.15,23.15,23.33,23.31,23.17,23.12,23.15,23.08,23.26,23.1,22.99,23.08,23.17,23.15,23.15,23.46,23.03,23.26,23.17,23.33,23.26,23.26,23.22,23.24,23.17,22.94,23.15,23.19,23.4,23.15,23.24,22.35,22.26,22.24,22.1,22.01,22.17,22.15,22.17,22.13,22.26,22.2,22.31,22.2,22.45,22.47,22.51,22.45,22.2,22.45,22.29,22.51,22.45,22.6,22.58,22.47,22.35,22.42,22.45,22.54,22.58,22.49,22.56,22.7,22.47,22.56,22.49,22.47,22.54,22.51,22.54,22.67,22.63,22.72,22.56,22.74,22.51,22.67,22.7,22.51,22.79,22.83,22.74,22.65,22.65,22.7,22.67,22.81,22.88,22.92,22.92,22.72,22.65,22.56,22.6,22.63,22.51,22.29,22.24,22.17,22.24,22.4,22.51,22.7,22.29,22.45,22.33,22.31,22.49,22.35,22.26,22.4,22.35,22.56,22.65,22.85,22.7,22.65,22.85,23.01,22.9,23.06,22.99,22.92,23.03,23.06,23.06,23.15,23.08,23.26,23.17,23.22,23.28,23.15,23.35,23.12,23.08,23.15,23.31,23.55,23.28,23.28,23.28,23.33,23.35,23.26,23.19,23.28,23.19,23.37,23.17,23.17,23.15,23.1,23.24,23.26,23.31,23.33,23.44,23.44,23.31,23.19,23.31,23.35,23.33,23.33,23.4,23.26,23.17,23.22,23.19,23.31,23.44,23.28,23.22,23.1,23.03,23.15,23.17,23.01,23.06,22.97,22.94,22.72,22.49,22.31,22.08,21.62,21.46,21.42,21.46,21.49,21.58,21.72,21.81,21.99,22.06,22.04,22.1,22.38,22.24,22.29,22.42,22.4,22.31,22.31,22.33,22.26,22.38,22.35,22.54,22.42,22.33,22.4,22.49,22.47,22.47,22.47,22.49,22.6,22.47,22.49,22.54,22.54,22.51,22.47,22.54,22.47,22.72,22.56,22.6,22.56,22.54,22.67,22.49,22.58,22.54,22.51,22.56,22.38,22.47,22.45,22.42,22.6,22.58,22.54,22.38,22.47,22.51,22.45,22.49,22.54,22.56,22.42,22.63,22.49,22.47,22.47,22.49,22.49,22.47,22.47,22.38,22.54,22.45,22.54,22.38,22.35,22.33,22.29,22.29,22.26,22.17,22.15,22.15,22.22,22.2,21.99,21.78,21.67,21.53,21.51,21.37,21.56,21.78,22.04,22.33,22.56,22.81,23.01,23.15,23.15,23.28,23.22,23.1,23.01,23.06,23.19,23.22,23.06,23.1,22.92,22.72,22.67,22.42,22.4,22.26,22.26,22.47,22.6,22.54,22.79,22.9,22.92,23.03,23.1,23.17,23.19,23.15,23.17,23.28,23.28,23.22,23.1,23.15,22.99,23.24,23.06,23.28,23.08,23.08,23.12,23.15,23.17,23.15,23.35,23.19,23.4,23.19,23.15,23.19,23.19,23.1,23.24,23.28,23.08,23.17,23.22,23.31,23.26,23.35,22.4,22.31,22.29,22.26,22.06,22.31,22.38,22.31,22.26,22.29,22.2,22.4,22.4,22.42,22.63,22.33,22.6,22.4,22.45,22.56,22.58,22.47,22.58,22.49,22.51,22.54,22.56,22.49,22.6,22.51,22.58,22.58,22.72,22.4,22.85,22.7,22.6,22.58,22.63,22.58,22.72,22.67,22.63,22.47,22.76,22.54,22.7,22.74,22.65,22.74,23.01,22.56,22.7,22.74,22.79,22.72,22.85,22.97,22.76,23.03,22.65,22.76,22.54,22.54,22.4,22.4,22.24,22.24,22.4,22.49,22.58,22.74,22.7,22.7,22.76,22.67,22.51,22.56,22.35,22.24,22.35,22.35,22.56,22.42,22.56,22.72,22.72,22.6,23.06,23.01,23.12,22.88,23.15,23.17,22.92,23.08,23.1,23.15,23.35,23.12,23.24,23.22,23.4,23.37,23.28,23.28,23.22,23.31,23.4,23.4,23.35,23.26,23.08,23.26,23.15,23.35,23.37,23.28,23.24,23.35,23.4,23.35,23.19,23.15,23.4,23.4,23.51,23.44,23.37,23.31,23.35,23.33,23.33,23.49,23.33,23.1,23.33,23.17,23.26,23.28,23.17,23.12,23.17,23.26,23.33,23.15,23.08,23.31,23.08,22.99,22.9,23.03,22.74,22.42,22.26,21.88,21.67,21.46,21.35,21.37,21.58,21.65,21.81,22.04,22.2,22.2,22.08,22.24,22.33,22.33,22.38,22.35,22.45,22.35,22.35,22.63,22.47,22.42,22.42,22.58,22.54,22.6,22.33,22.58,22.45,22.33,22.49,22.54,22.6,22.58,22.65,22.58,22.65,22.7,22.58,22.56,22.4,22.49,22.6,22.51,22.56,22.63,22.63,22.54,22.51,22.65,22.67,22.63,22.56,22.56,22.6,22.63,22.65,22.58,22.51,22.4,22.63,22.51,22.49,22.58,22.74,22.58,22.56,22.51,22.47,22.38,22.51,22.49,22.51,22.49,22.49,22.54,22.58,22.45,22.42,22.35,22.51,22.38,22.26,22.49,22.33,22.35,22.2,22.17,22.2,22.13,21.88,21.76,21.6,21.58,21.56,21.65,21.67,21.88,22.17,22.58,22.65,22.99,23.03,23.17,23.15,23.12,23.19,23.24,23.19,23.19,23.26,23.17,23.35,23.24,23.19,22.92,22.72,22.6,22.85,22.38,22.33,22.4,22.42,22.58,22.58,22.67,22.99,23.08,23.1,22.99,23.12,23.06,23.01,23.42,23.53,23.1,23.12,23.22,23.12,23.26,23.28,23.1,23.17,23.08,23.15,23.19,23.26,23.26,23.19,23.28,23.08,23.17,23.12,23.24,23.15,23.19,23.28,23.19,23.33,23.19,23.37,23.35,23.26,23.19,22.26,22.42,22.38,22.29,22.22,22.42,22.38,22.31,22.24,22.49,22.26,22.49,22.38,22.35,22.45,22.24,22.4,22.51,22.47,22.63,22.7,22.56,22.6,22.65,22.51,22.72,22.65,22.63,22.56,22.58,22.47,22.63,22.38,22.65,22.72,22.74,22.81,22.67,22.54,22.7,22.79,22.74,22.67,22.76,22.9,22.74,22.88,22.79,22.63,22.9,22.94,22.85,22.67,22.79,22.83,22.76,22.83,22.97,22.9,22.6,22.76,22.79,22.67,22.54,22.56,22.38,22.38,22.31,22.42,22.63,22.83,22.97,22.94,22.83,22.88,22.85,22.67,22.49,22.63,22.4,22.45,22.54,22.49,22.31,22.56,22.54,22.63,22.65,22.67,22.79,22.81,22.79,22.97,23.03,22.92,23.06,23.12,23.1,23.08,23.31,23.31,23.15,23.24,23.33,23.4,23.44,23.35,23.35,23.46,23.35,23.37,23.15,23.35,23.28,23.31,23.42,23.33,23.24,23.37,23.28,23.31,23.28,23.44,23.26,23.35,23.35,23.37,23.37,23.22,23.35,23.31,23.35,23.31,23.37,23.19,23.22,23.08,23.1,23.35,23.35,23.28,23.28,23.37,23.31,23.33,23.1,23.26,23.12,23.15,22.94,22.97,22.74,22.56,22.2,22.06,21.78,21.53,21.51,21.42,21.21,21.44,21.78,22.13,22.13,22.2,22.13,22.06,22.13,22.35,22.31,22.33,22.29,22.4,22.56,22.49,22.38,22.47,22.51,22.42,22.58,22.56,22.51,22.51,22.81,22.54,22.38,22.51,22.54,22.51,22.49,22.54,22.6,22.6,22.58,22.58,22.56,22.4,22.56,22.65,22.56,22.51,22.58,22.56,22.58,22.4,22.63,22.51,22.51,22.72,22.54,22.47,22.51,22.65,22.51,22.56,22.54,22.63,22.6,22.58,22.65,22.74,22.6,22.65,22.7,22.76,22.47,22.45,22.54,22.51,22.56,22.38,22.63,22.47,22.4,22.29,22.4,22.45,22.47,22.33,22.42,22.24,22.45,22.1,22.24,22.15,21.94,21.9,21.85,21.62,21.53,21.53,21.78,21.9,22.13,22.24,22.81,22.97,23.08,23.24,23.35,23.17,23.17,23.17,23.35,23.31,23.33,23.26,23.37,23.31,23.44,23.15,23.03,22.92,22.81,22.6,22.67,22.4,22.47,22.45,22.45,22.4,22.67,22.6,22.85,23.06,23.06,23.06,23.08,23.28,23.26,23.1,23.19,23.31,23.26,23.12,23.22,23.37,23.28,23.12,23.31,23.26,23.35,23.42,23.31,23.33,23.33,23.35,23.17,23.24,23.17,23.03,23.22,23.35,23.35,23.33,23.37,23.42,23.49,23.31,23.46,22.51,22.26,22.24,22.22,22.38,22.47,22.29,22.2,22.35,22.42,21.97,22.33,22.49,22.49,22.51,22.29,22.47,22.35,22.45,22.6,22.51,22.63,22.42,22.63,22.74,22.56,22.6,22.35,22.56,22.56,22.51,22.63,22.63,22.81,22.67,22.63,22.65,22.56,22.58,22.79,22.67,22.6,22.58,22.63,22.85,22.58,22.74,22.83,22.65,22.83,22.92,22.99,22.7,22.94,22.94,22.7,22.67,22.79,22.79,22.74,23.01,22.97,22.74,22.54,22.49,22.26,22.1,22.33,22.54,22.74,22.88,22.99,23.08,22.9,22.97,22.97,22.72,22.81,22.63,22.33,22.42,22.31,22.58,22.45,22.42,22.45,22.4,22.42,22.4,22.49,22.7,22.67,22.74,22.9,22.81,23.01,22.97,22.99,22.92,23.24,23.24,23.15,23.17,23.17,23.31,23.35,23.24,23.15,23.28,23.33,23.33,23.19,23.44,23.19,23.35,23.26,23.42,23.24,23.33,23.35,23.28,23.33,23.31,23.17,23.33,23.42,23.24,23.31,23.37,23.4,23.4,23.26,23.35,23.19,23.24,23.26,23.24,23.03,23.24,23.46,23.28,23.4,23.17,23.22,23.22,23.01,23.24,23.1,22.94,23.01,22.79,22.58,22.56,22.24,21.85,21.56,21.51,21.33,21.3,21.42,21.49,21.67,22.04,22.22,22.13,22.13,22.17,22.22,22.26,22.26,22.31,22.26,22.49,22.72,22.42,22.42,22.45,22.51,22.33,22.49,22.58,22.51,22.56,22.49,22.65,22.42,22.31,22.51,22.45,22.49,22.6,22.81,22.56,22.58,22.54,22.56,22.51,22.47,22.7,22.49,22.58,22.63,22.54,22.31,22.51,22.72,22.56,22.63,22.51,22.58,22.58,22.47,22.51,22.51,22.47,22.54,22.54,22.63,22.65,22.63,22.51,22.47,22.6,22.51,22.65,22.38,22.51,22.35,22.56,22.42,22.51,22.38,22.47,22.49,22.4,22.42,22.49,22.42,22.35,22.31,22.24,22.15,22.17,22.01,22.31,21.94,21.92,21.6,21.53,21.46,21.6,21.72,21.9,22.17,22.54,22.83,22.97,22.97,23.19,23.19,23.17,23.4,23.22,23.28,23.26,23.24,23.31,23.31,23.12,23.37,23.12,23.22,23.08,23.15,22.94,22.76,22.7,22.54,22.4,22.49,22.24,22.29,22.33,22.63,22.67,22.79,22.97,22.9,23.06,23.17,23.08,23.06,23.17,23.26,23.19,23.44,23.31,23.12,23.08,23.1,23.28,23.12,23.08,23.03,23.28,23.12,23.19,23.1,23.19,23.31,23.37,23.12,23.19,23.35,23.1,23.37,23.26,23.35,23.26,23.17,22.31,22.4,22.15,22.22,22.17,22.38,22.13,22.4,22.26,22.33,22.22,22.42,22.35,22.33,22.33,22.45,22.63,22.31,22.45,22.38,22.56,22.56,22.49,22.65,22.54,22.49,22.54,22.63,22.49,22.33,22.54,22.72,22.49,22.56,22.51,22.6,22.63,22.65,22.63,22.4,22.49,22.6,22.7,22.56,22.83,22.7,22.79,22.76,22.81,22.85,22.85,22.9,22.81,22.63,22.85,22.76,22.79,22.81,22.81,22.74,22.81,22.65,22.56,22.42,22.2,22.22,22.2,22.45,22.65,22.76,22.94,22.79,22.9,23.06,23.01,22.92,22.9,22.99,22.9,22.79,22.67,22.65,22.58,22.56,22.51,22.51,22.31,22.4,22.35,22.35,22.56,22.42,22.56,22.74,22.79,22.83,22.79,22.92,22.83,22.99,23.22,23.1,23.15,23.22,23.24,23.31,23.15,23.01,23.19,23.22,23.42,23.15,23.4,23.31,23.19,23.31,23.26,23.17,23.26,23.31,23.37,23.08,23.33,23.22,23.49,23.37,23.42,23.26,23.33,23.24,23.24,23.28,23.31,23.22,23.31,23.33,23.22,23.19,23.01,23.37,23.17,23.22,23.12,23.22,23.28,23.08,23.06,23.03,22.9,22.9,22.7,22.67,22.42,21.99,21.85,21.58,21.46,21.33,21.49,21.49,21.78,21.72,21.85,21.99,22.06,21.99,22.2,22.15,22.35,22.29,22.31,22.33,22.31,22.58,22.29,22.49,22.38,22.38,22.31,22.49,22.58,22.49,22.56,22.38,22.58,22.49,22.49,22.65,22.51,22.54,22.65,22.65,22.7,22.72,22.47,22.51,22.47,22.6,22.54,22.33,22.63,22.47,22.42,22.33,22.38,22.54,22.51,22.47,22.45,22.31,22.42,22.45,22.49,22.65,22.47,22.42,22.58,22.65,22.47,22.54,22.56,22.38,22.54,22.72,22.63,22.56,22.49,22.35,22.54,22.56,22.49,22.4,22.26,22.42,22.22,22.35,22.29,22.31,22.29,22.42,22.1,22.22,22.13,22.33,22.01,21.99,21.78,21.6,21.35,21.53,21.56,21.67,22.1,22.35,22.67,22.81,22.92,23.1,23.15,23.22,23.22,23.35,23.26,23.22,23.19,23.12,23.08,23.03,23.03,23.24,23.35,23.42,23.22,22.76,23.01,22.99,22.83,22.72,22.63,22.6,22.47,22.4,22.35,22.38,22.47,22.49,22.4,22.79,23.01,23.03,22.88,23.12,23.12,23.15,23.22,23.03,23.28,23.19,23.24,23.15,23.12,23.17,23.28,23.22,23.12,23.26,23.12,23.12,23.03,23.19,23.1,23.28,23.42,23.15,23.19,23.31,23.12,23.17,23.28,23.26,22.33,22.29,22.35,22.2,22.17,22.08,22.4,22.08,22.17,22.29,22.15,22.31,22.31,22.26,22.29,22.35,22.47,22.4,22.42,22.54,22.56,22.51,22.63,22.56,22.49,22.58,22.51,22.51,22.49,22.58,22.6,22.65,22.63,22.6,22.7,22.42,22.49,22.6,22.58,22.49,22.63,22.67,22.79,22.54,22.67,22.65,22.76,22.83,22.9,22.9,22.94,22.7,22.76,22.83,22.79,22.79,22.9,22.81,22.72,22.65,22.63,22.51,22.56,22.35,22.26,22.22,22.38,22.47,22.6,22.85,23.01,22.94,23.12,23.08,22.94,23.1,23.17,23.15,23.03,22.81,22.79,22.94,22.76,22.7,22.63,22.47,22.4,22.45,22.38,22.38,22.26,22.24,22.51,22.35,22.54,22.63,22.67,22.81,22.88,22.97,22.99,23.03,23.08,23.22,23.1,23.33,23.12,23.22,23.24,23.19,23.24,23.15,23.31,23.17,23.31,23.17,23.15,23.19,23.15,23.24,23.42,23.22,23.15,23.17,23.4,23.31,23.31,23.35,23.22,23.24,23.35,23.33,23.44,23.26,23.26,23.1,23.15,22.99,23.19,23.15,23.03,23.15,23.1,23.15,23.19,22.97,23.03,23.1,22.9,22.74,22.67,22.58,22.22,21.88,21.58,21.49,21.53,21.3,21.44,21.51,21.74,21.81,21.83,22.06,22.06,22.08,22.4,22.31,22.26,22.31,22.26,22.35,22.4,22.33,22.51,22.42,22.42,22.4,22.38,22.45,22.47,22.4,22.49,22.38,22.51,22.42,22.2,22.56,22.63,22.6,22.63,22.76,22.6,22.54,22.47,22.51,22.45,22.4,22.54,22.47,22.35,22.51,22.58,22.42,22.49,22.58,22.58,22.47,22.58,22.54,22.33,22.45,22.56,22.6,22.45,22.49,22.6,22.58,22.51,22.56,22.63,22.38,22.38,22.54,22.58,22.54,22.47,22.45,22.51,22.33,22.31,22.31,22.56,22.29,22.22,22.24,22.33,22.38,22.4,22.22,22.26,22.2,22.13,22.06,21.81,21.78,21.67,21.51,21.4,21.58,21.76,22.01,21.94,22.47,22.67,22.99,23.08,23.1,23.12,23.26,23.15,23.17,23.22,23.28,23.26,23.01,23.17,23.19,23.15,23.15,23.26,23.06,23.06,23.24,23.37,22.88,22.88,23.01,22.83,22.74,22.56,22.47,22.49,22.38,22.56,22.58,22.45,22.58,22.58,22.97,22.85,22.99,23.01,23.1,22.92,23.01,23.19,23.24,23.4,23.08,23.28,23.1,23.28,23.28,23.26,23.22,23.26,23.19,23.12,23.35,22.97,23.03,23.08,23.24,23.17,23.1,23.28,23.37,23.4,23.4,22.31,21.99,22.31,22.35,22.35,22.22,22.35,22.31,22.35,22.35,22.42,22.38,22.35,22.47,22.49,22.49,22.54,22.33,22.49,22.49,22.45,22.58,22.54,22.72,22.56,22.56,22.54,22.49,22.56,22.63,22.63,22.54,22.72,22.65,22.67,22.65,22.63,22.33,22.65,22.79,22.67,22.72,22.76,22.63,22.7,22.74,22.81,22.85,22.74,22.74,22.99,22.67,22.7,22.74,22.81,22.83,22.88,22.88,22.74,22.88,22.79,22.65,22.45,22.26,22.06,22.42,22.49,22.63,22.9,22.9,23.06,23.03,23.17,23.03,22.97,23.22,23.17,23.1,22.94,23.06,23.01,22.92,23.08,22.79,22.85,22.67,22.74,22.85,22.42,22.81,22.56,22.49,22.49,22.42,22.42,22.54,22.6,22.67,22.85,22.81,22.92,23.01,23.06,23.03,23.15,23.22,23.12,22.94,23.26,23.22,23.19,23.12,23.03,23.1,23.28,23.24,23.33,23.19,23.12,23.26,23.31,23.15,23.31,23.19,23.35,23.44,23.4,23.28,23.37,23.37,23.33,23.33,23.33,23.24,23.42,23.22,23.01,23.03,23.17,23.19,23.24,23.33,23.1,23.08,23.19,22.94,23.17,23.15,22.97,22.74,22.54,22.29,22.01,21.78,21.58,21.37,21.33,21.33,21.44,21.72,21.85,21.97,22.2,22.13,22.01,22.1,22.13,22.2,22.33,22.31,22.33,22.1,22.42,22.4,22.29,22.33,22.35,22.4,22.31,22.38,22.45,22.42,22.47,22.56,22.47,22.35,22.56,22.51,22.54,22.45,22.54,22.42,22.54,22.51,22.29,22.54,22.49,22.54,22.65,22.42,22.49,22.56,22.47,22.38,22.47,22.51,22.54,22.58,22.54,22.47,22.47,22.54,22.63,22.63,22.54,22.56,22.51,22.54,22.4,22.51,22.51,22.47,22.58,22.42,22.45,22.56,22.47,22.54,22.63,22.67,22.42,22.31,22.47,22.47,22.35,22.35,22.38,22.38,22.29,22.29,22.13,22.2,22.13,22.06,21.99,21.85,21.67,21.46,21.44,21.6,21.81,21.97,22.35,22.54,22.9,23.06,23.01,23.06,23.19,23.44,23.15,23.31,23.24,23.17,23.28,23.19,23.15,23.28,23.26,23.22,23.22,23.22,23.24,23.15,23.33,23.15,23.08,23.08,22.76,23.17,22.85,22.72,22.51,22.47,22.51,22.29,22.4,22.4,22.58,22.81,22.67,23.03,22.88,23.06,22.85,23.08,23.15,23.1,23.1,23.24,23.15,23.19,23.22,23.26,23.24,23.17,23.19,23.35,23.08,23.12,23.26,23.19,23.1,23.31,23.28,23.08,23.24,23.33,23.33,23.35,22.08,22.15,22.31,22.51,22.4,22.26,22.35,22.51,22.22,22.35,22.08,22.29,22.51,22.24,22.51,22.47,22.45,22.4,22.54,22.4,22.45,22.47,22.54,22.54,22.7,22.6,22.47,22.54,22.45,22.58,22.47,22.47,22.67,22.51,22.94,22.76,22.65,22.65,22.54,22.67,22.58,22.7,22.88,22.74,22.67,22.74,22.65,22.7,22.76,22.74,22.88,22.92,22.88,22.81,22.65,22.92,23.03,22.9,22.81,22.88,22.56,22.56,22.4,22.33,22.24,22.24,22.47,22.83,22.97,22.9,22.92,23.01,23.08,23.06,23.1,23.26,23.12,23.22,23.33,23.12,23.06,23.17,23.19,23.1,22.97,22.94,23.1,22.76,22.65,22.79,22.76,22.49,22.42,22.47,22.49,22.51,22.42,22.54,22.67,22.54,22.85,22.88,23.01,23.03,22.9,23.03,23.22,23.17,23.17,23.24,23.1,23.15,23.12,23.31,23.26,23.19,23.4,23.33,23.24,23.31,23.26,23.35,23.33,23.31,23.46,23.33,23.35,23.31,23.19,23.6,23.37,23.31,23.24,23.22,23.26,23.33,23.26,23.15,23.19,23.15,23.22,23.19,23.24,23.08,22.99,23.08,23.03,23.03,22.74,22.74,22.54,22.26,21.81,21.67,21.42,21.46,21.35,21.4,21.56,21.67,21.9,21.88,22.15,22.13,22.17,22.08,22.04,22.2,22.49,22.35,22.31,22.35,22.54,22.35,22.51,22.49,22.45,22.45,22.29,22.45,22.51,22.38,22.49,22.47,22.63,22.56,22.38,22.38,22.45,22.49,22.51,22.65,22.56,22.56,22.58,22.51,22.6,22.54,22.45,22.47,22.47,22.42,22.49,22.42,22.45,22.54,22.54,22.45,22.51,22.51,22.47,22.6,22.51,22.63,22.54,22.49,22.58,22.45,22.56,22.54,22.67,22.58,22.65,22.38,22.65,22.47,22.54,22.4,22.33,22.42,22.56,22.26,22.58,22.4,22.38,22.22,22.49,22.35,22.24,22.26,22.24,22.15,21.9,21.99,21.94,21.88,21.51,21.33,21.3,21.51,21.94,22.22,22.54,22.81,23.03,23.03,23.01,23.15,23.31,23.4,23.42,23.19,23.12,23.26,23.22,23.28,23.19,23.17,23.24,23.26,23.01,23.22,23.22,23.22,23.22,23.17,23.1,23.15,23.33,23.15,22.97,22.88,22.94,22.67,22.63,22.4,22.2,22.24,22.47,22.51,22.63,22.88,22.76,22.85,23.01,23.19,23.06,22.9,23.1,23.22,23.15,23.26,23.22,23.24,23.24,23.06,23.15,23.44,23.15,23.24,23.1,23.35,23.26,23.24,23.19,23.28,23.19,23.26,23.35,23.4,22.63,22.26,22.31,22.33,22.4,22.45,22.35,22.38,22.42,22.4,22.4,22.58,22.42,22.51,22.63,22.35,22.45,22.45,22.56,22.58,22.76,22.85,22.58,22.56,22.58,22.6,22.49,22.58,22.56,22.63,22.67,22.63,22.7,22.74,22.94,22.88,22.72,22.74,22.74,22.72,22.72,22.81,22.88,22.83,22.88,22.7,22.76,22.72,22.88,22.99,22.88,22.99,22.85,22.83,22.88,22.76,22.88,22.85,22.65,22.72,22.49,22.51,22.29,22.1,22.22,22.42,22.58,22.97,22.97,23.03,23.03,22.92,23.17,23.06,23.03,23.15,23.19,23.1,23.26,23.12,23.03,23.31,23.26,23.1,23.08,23.12,22.9,23.08,22.99,22.79,22.9,22.7,22.65,22.63,22.49,22.67,22.49,22.4,22.38,22.45,22.63,22.63,22.79,22.94,22.9,22.97,23.06,23.24,23.19,23.37,23.22,23.1,23.28,23.37,23.35,23.37,23.22,23.12,23.08,23.31,23.26,23.26,23.28,23.46,23.35,23.35,23.37,23.37,23.37,23.42,23.53,23.4,23.4,23.42,23.35,23.51,23.26,23.26,23.22,23.15,23.19,23.42,23.31,23.1,23.12,23.12,23.01,22.94,22.67,22.51,22.22,22.15,21.74,21.53,21.42,21.56,21.53,21.49,21.81,21.97,21.94,22.15,22.31,22.2,22.35,22.04,22.13,22.26,22.42,22.45,22.38,22.4,22.51,22.63,22.67,22.58,22.45,22.49,22.38,22.42,22.65,22.56,22.54,22.56,22.56,22.63,22.35,22.56,22.51,22.56,22.54,22.67,22.74,22.54,22.49,22.54,22.4,22.74,22.49,22.6,22.65,22.58,22.54,22.35,22.45,22.63,22.7,22.76,22.51,22.47,22.35,22.42,22.51,22.56,22.6,22.45,22.54,22.72,22.56,22.6,22.67,22.54,22.58,22.47,22.54,22.4,22.49,22.51,22.45,22.42,22.49,22.42,22.47,22.42,22.38,22.29,22.47,22.38,22.24,22.26,22.33,22.2,22.1,21.94,22.06,21.78,21.58,21.53,21.37,21.58,22.01,22.33,22.65,22.94,23.19,23.08,23.1,23.24,23.33,23.31,23.17,23.35,23.19,23.08,23.35,23.31,23.26,23.26,23.28,23.26,23.19,23.24,23.33,23.24,23.28,23.01,23.22,23.31,23.08,23.01,23.24,23.12,22.88,22.94,22.88,22.54,22.4,22.42,22.47,22.45,22.45,22.56,22.65,22.65,22.83,22.97,22.99,23.1,23.31,23.08,23.22,23.01,23.35,23.1,23.28,23.26,23.22,23.24,23.08,23.33,23.22,23.28,23.28,23.28,23.37,23.4,23.28,23.35,23.49,23.31,22.33,22.15,22.29,22.01,22.35,22.26,22.01,22.29,22.13,22.45,22.35,22.51,22.4,22.54,22.45,22.33,22.38,22.29,22.45,22.45,22.6,22.63,22.63,22.51,22.47,22.42,22.4,22.51,22.38,22.31,22.49,22.56,22.63,22.58,22.88,22.58,22.47,22.58,22.63,22.56,22.72,22.7,22.79,22.72,22.7,22.45,22.63,22.74,22.67,22.79,22.88,22.6,22.7,22.63,22.79,22.6,22.67,22.58,22.63,22.56,22.56,22.38,22.08,22.08,22.24,22.24,22.56,22.81,22.9,22.9,23.03,23.01,23.1,23.03,22.99,23.08,23.24,23.15,23.08,23.06,23.06,23.06,23.12,23.12,23.03,23.08,23.03,22.99,23.06,23.12,23.03,22.9,22.7,22.67,22.67,22.7,22.47,22.56,22.24,22.4,22.56,22.33,22.65,22.67,22.65,22.67,22.81,22.99,23.01,23.12,23.06,23.01,23.12,23.08,23.24,23.15,23.12,23.12,23.08,23.22,23.17,23.22,23.26,23.1,23.31,23.37,23.46,23.33,23.28,23.31,23.31,23.22,23.28,23.37,23.26,23.15,23.15,23.03,23.08,23.06,23.19,23.08,23.15,23.08,23.12,22.81,23.03,22.74,22.6,22.38,22.26,21.88,21.62,21.3,21.37,21.33,21.56,21.44,21.6,21.78,22.08,22.1,22.13,22.13,22.06,22.22,22.17,22.15,22.35,22.42,22.33,22.26,22.24,22.4,22.29,22.35,22.22,22.38,22.38,22.4,22.42,22.51,22.51,22.54,22.45,22.33,22.47,22.47,22.56,22.38,22.4,22.49,22.4,22.35,22.56,22.49,22.4,22.49,22.56,22.4,22.56,22.49,22.54,22.51,22.38,22.54,22.6,22.54,22.47,22.45,22.45,22.49,22.51,22.6,22.6,22.38,22.31,22.4,22.4,22.45,22.49,22.49,22.49,22.45,22.67,22.45,22.33,22.31,22.33,22.24,22.31,22.4,22.26,22.31,22.31,22.13,22.15,22.38,22.1,21.99,22.13,22.08,21.92,21.92,21.69,21.53,21.46,21.42,21.65,21.72,21.99,22.51,22.76,22.94,23.06,22.97,22.94,23.1,23.17,23.15,23.28,23.31,23.19,22.97,23.22,23.24,23.17,23.22,23.31,23.1,23.24,23.12,23.19,23.1,23.17,22.99,22.94,23.06,23.06,23.03,23.03,23.08,22.99,23.1,22.97,22.79,22.63,22.4,22.26,22.33,22.42,22.4,22.42,22.45,22.63,22.6,22.83,22.88,22.94,22.99,23.19,23.01,23.03,23.03,23.15,23.03,23.06,23.12,23.17,23.15,23.1,23.26,23.15,23.31,23.1,22.81,23.08,23.08,23.26,23.33,22.45,22.33,22.45,22.35,22.42,22.38,22.26,22.42,22.33,22.4,22.24,22.35,22.49,22.38,22.45,22.6,22.4,22.45,22.42,22.42,22.47,22.6,22.6,22.74,22.67,22.56,22.38,22.65,22.47,22.54,22.79,22.51,22.56,22.76,22.76,22.65,22.54,22.63,22.7,22.74,22.76,22.88,22.7,22.81,22.7,22.63,22.56,22.88,22.72,22.81,22.88,22.81,22.65,22.65,22.94,22.74,22.88,22.7,22.45,22.58,22.54,22.29,22.31,22.2,22.35,22.49,22.76,22.99,22.97,22.97,23.1,23.06,23.17,23.01,22.94,23.19,23.31,23.03,23.12,23.12,23.06,23.12,23.24,23.26,23.31,23.06,23.31,23.19,23.19,23.22,23.17,23.15,22.94,22.88,22.99,22.79,22.74,22.74,22.63,22.58,22.49,22.4,22.35,22.51,22.54,22.74,22.85,22.88,22.88,23.06,23.1,22.92,23.03,23.1,23.1,23.22,23.17,23.12,23.37,23.17,23.31,23.26,23.31,23.26,23.44,23.22,23.37,23.42,23.35,23.4,23.42,23.31,23.24,23.28,23.17,23.31,23.22,23.15,23.15,23.22,23.17,23.12,23.15,23.03,23.08,22.85,22.9,22.9,22.67,22.38,22.1,21.85,21.53,21.44,21.44,21.26,21.42,21.62,21.76,21.9,22.17,22.08,22.08,22.22,22.29,22.2,22.22,22.24,22.45,22.33,22.4,22.42,22.35,22.6,22.38,22.45,22.33,22.33,22.26,22.6,22.65,22.51,22.56,22.4,22.45,22.26,22.4,22.56,22.49,22.31,22.29,22.38,22.65,22.58,22.51,22.54,22.49,22.51,22.65,22.4,22.4,22.54,22.67,22.42,22.6,22.49,22.63,22.67,22.42,22.51,22.51,22.54,22.51,22.58,22.51,22.54,22.35,22.63,22.6,22.54,22.54,22.4,22.35,22.51,22.35,22.51,22.47,22.42,22.35,22.35,22.4,22.31,22.26,22.35,22.29,22.24,22.15,22.31,22.31,22.2,22.06,22.2,21.81,21.81,21.78,21.67,21.44,21.51,21.65,21.9,22.38,22.63,22.81,23.01,23.15,23.17,23.1,23.1,23.03,23.22,23.19,23.19,23.42,23.22,23.26,23.22,23.28,23.33,23.28,23.24,23.19,23.28,23.28,23.31,23.28,23.12,23.19,23.15,23.06,23.31,23.03,23.26,23.26,23.15,23.12,22.88,22.81,22.63,22.65,22.6,22.49,22.4,22.54,22.38,22.47,22.7,22.81,22.88,22.94,23.12,23.12,23.08,23.06,23.03,23.19,23.03,23.24,23.19,23.19,23.12,23.24,23.19,23.28,23.31,23.22,23.28,23.33,23.42,23.4,23.15,22.38,22.47,22.4,22.33,22.06,22.31,22.42,22.51,22.38,22.35,22.33,22.54,22.49,22.49,22.4,22.58,22.67,22.49,22.56,22.65,22.58,22.56,22.4,22.81,22.58,22.65,22.7,22.79,22.49,22.47,22.74,22.63,22.74,22.58,22.7,22.58,22.63,22.67,22.83,22.74,22.85,22.92,22.74,22.76,22.79,22.74,22.72,22.85,22.83,22.81,22.94,22.65,22.63,22.76,22.74,22.76,22.83,22.72,22.65,22.49,22.29,22.22,22.13,22.17,22.35,22.6,22.85,22.97,22.99,23.08,23.17,22.97,23.19,23.03,23.03,23.19,23.33,23.1,23.22,23.28,23.12,23.26,23.17,23.17,23.19,23.15,23.22,23.22,23.28,23.19,23.24,23.03,23.01,23.12,22.99,22.81,22.85,22.88,22.81,22.63,22.63,22.58,22.47,22.51,22.45,22.6,22.65,22.74,22.63,23.01,22.9,22.88,23.06,23.06,23.1,23.24,23.22,23.26,23.19,23.28,23.28,23.42,23.33,23.37,23.37,23.37,23.31,23.28,23.42,23.31,23.28,23.31,23.49,23.33,23.26,23.08,23.26,23.24,23.12,23.19,23.24,23.19,23.15,23.08,22.92,22.9,22.9,22.83,22.58,22.42,22.08,21.53,21.49,21.35,21.44,21.37,21.37,21.67,21.94,21.94,22.17,22.08,22.13,22.33,22.2,22.15,22.22,22.4,22.35,22.4,22.51,22.17,22.51,22.67,22.56,22.56,22.29,22.45,22.45,22.56,22.47,22.47,22.56,22.58,22.35,22.31,22.42,22.4,22.45,22.38,22.45,22.49,22.56,22.58,22.6,22.51,22.56,22.58,22.63,22.47,22.49,22.49,22.65,22.45,22.51,22.58,22.72,22.67,22.47,22.67,22.56,22.63,22.56,22.58,22.58,22.67,22.58,22.4,22.51,22.58,22.35,22.38,22.54,22.54,22.45,22.42,22.49,22.54,22.47,22.38,22.17,22.38,22.45,22.35,22.2,22.47,22.22,22.29,22.29,22.17,22.13,21.94,21.92,21.76,21.6,21.62,21.44,21.69,21.88,21.92,22.49,22.74,22.97,23.19,23.22,23.15,23.12,23.01,23.24,23.22,23.37,23.31,23.28,23.1,23.22,23.24,23.19,23.35,23.28,23.4,23.42,23.15,23.31,23.42,23.28,23.06,23.17,23.1,23.22,23.08,23.08,23.24,23.17,22.99,23.17,23.03,22.92,22.85,22.67,22.76,22.49,22.33,22.4,22.47,22.35,22.47,22.67,22.74,22.74,22.99,22.85,22.9,23.15,23.08,23.19,23.26,23.17,23.31,23.12,23.12,23.22,23.01,23.24,23.4,23.4,23.24,23.22,23.37,23.46,23.17,22.42,22.31,22.33,22.24,22.06,22.45,22.26,22.58,22.24,22.01,22.24,22.4,22.49,22.35,22.49,22.6,22.58,22.45,22.63,22.35,22.49,22.63,22.7,22.45,22.35,22.63,22.58,22.54,22.6,22.6,22.63,22.58,22.49,22.47,22.74,22.63,22.81,22.54,22.76,22.65,22.67,22.74,22.85,22.65,22.65,22.76,22.83,22.67,22.74,22.97,22.79,22.74,22.72,22.74,22.79,22.7,22.65,22.67,22.4,22.31,22.22,22.26,21.99,22.13,22.42,22.76,23.03,22.83,23.15,23.15,23.22,22.94,23.06,23.03,23.01,23.08,23.15,23.08,23.17,23.12,23.22,23.19,23.24,23.08,23.08,23.1,23.17,23.17,23.22,23.31,23.28,23.08,23.12,23.22,23.15,23.1,23.08,23.06,22.99,22.85,22.88,22.74,22.58,22.49,22.56,22.58,22.56,22.54,22.51,22.56,22.54,22.6,22.97,22.72,22.72,22.99,23.12,22.94,23.06,23.15,23.17,23.15,23.28,23.22,23.22,23.17,23.28,23.31,23.28,23.44,23.31,23.28,23.35,23.31,23.17,23.19,23.15,23.08,23.12,23.1,23.12,22.94,23.08,23.1,23.03,22.88,22.94,22.74,22.38,22.01,21.81,21.6,21.37,21.37,21.37,21.56,21.53,21.78,21.76,21.81,22.08,21.94,22.22,22.08,22.1,22.26,21.99,22.42,22.38,22.42,22.31,22.4,22.35,22.51,22.54,22.4,22.26,22.24,22.33,22.4,22.42,22.47,22.42,22.38,22.31,22.33,22.45,22.24,22.51,22.38,22.35,22.51,22.42,22.51,22.4,22.51,22.45,22.49,22.51,22.56,22.31,22.56,22.63,22.4,22.45,22.54,22.54,22.7,22.6,22.56,22.51,22.51,22.54,22.51,22.38,22.65,22.54,22.51,22.31,22.33,22.51,22.31,22.33,22.47,22.47,22.31,22.45,22.45,22.4,22.31,22.31,22.24,22.38,22.24,22.13,22.35,22.2,22.22,22.04,22.26,21.85,21.92,21.67,21.58,21.51,21.49,21.37,21.46,21.85,22.17,22.47,22.9,23.01,23.08,23.35,23.22,23.12,23.08,23.22,23.12,23.17,23.44,23.24,23.19,23.08,23.15,23.19,23.19,23.42,23.33,23.17,23.24,23.08,23.12,23.33,22.81,23.1,23.15,23.19,23.26,23.08,23.15,23.26,23.1,23.12,23.01,23.03,22.94,22.85,22.97,22.76,22.72,22.45,22.54,22.24,22.29,22.24,22.54,22.49,22.72,22.7,22.9,22.97,23.01,23.22,22.92,23.24,23.24,22.88,23.12,23.19,22.99,23.15,23.19,23.15,23.24,23.08,23.28,23.22,23.37,22.35,22.33,22.31,22.15,22.26,22.26,22.33,22.4,22.06,22.08,22.26,22.31,22.42,22.31,22.49,22.58,22.79,22.45,22.51,22.24,22.56,22.7,22.47,22.54,22.6,22.49,22.63,22.54,22.65,22.45,22.67,22.63,22.56,22.74,22.88,22.6,22.58,22.51,22.83,22.63,22.74,22.76,22.92,22.85,22.76,22.72,22.67,22.67,22.83,22.79,22.85,22.76,22.65,22.58,22.74,22.58,22.54,22.67,22.6,22.4,22.1,21.99,22.08,22.15,22.42,22.79,22.97,22.94,23.01,23.22,22.9,23.06,23.01,23.15,23.26,23.12,23.17,23.28,23.26,23.22,23.1,23.08,23.26,23.28,23.26,23.35,23.33,23.22,23.17,23.24,23.28,23.15,23.28,23.19,23.24,23.17,23.15,23.17,23.24,23.01,23.12,22.99,22.76,22.7,22.67,22.67,22.58,22.42,22.42,22.63,22.63,22.51,22.7,22.72,22.6,22.83,22.99,22.76,23.01,23.08,23.01,23.1,23.22,23.1,23.22,23.28,23.26,23.24,23.26,23.31,23.28,23.26,23.31,23.24,23.26,23.22,23.15,23.1,23.15,23.15,23.1,23.15,23.1,23.19,22.9,22.7,22.65,22.42,22.22,21.9,21.65,21.53,21.33,21.28,21.33,21.44,21.46,21.62,21.92,21.99,22.2,22.08,22.04,22.1,22.17,22.29,22.17,22.26,22.42,22.35,22.31,22.22,22.4,22.49,22.6,22.29,22.4,22.42,22.31,22.17,22.51,22.49,22.31,22.29,22.33,22.38,22.24,22.31,22.45,22.47,22.49,22.51,22.47,22.45,22.42,22.47,22.31,22.56,22.49,22.65,22.45,22.58,22.67,22.35,22.54,22.4,22.47,22.47,22.51,22.54,22.6,22.51,22.22,22.72,22.63,22.56,22.51,22.56,22.29,22.42,22.6,22.47,22.35,22.33,22.58,22.38,22.38,22.35,22.33,22.22,22.35,22.26,22.45,22.24,22.26,22.26,22.29,22.42,22.15,22.1,21.94,21.69,21.76,21.49,21.6,21.49,21.49,21.74,21.92,22.17,22.6,23.06,23.22,23.08,23.03,23.28,23.15,23.17,23.31,23.31,23.26,23.26,23.46,23.24,23.28,23.26,23.19,23.15,23.28,23.15,23.4,23.33,23.22,23.06,23.33,23.03,23.22,23.19,23.03,23.06,23.12,23.22,23.1,22.99,23.24,23.12,23.03,23.03,22.85,22.97,22.92,22.94,22.81,22.54,22.54,22.24,22.26,22.42,22.38,22.49,22.47,22.58,22.7,22.94,22.97,23.08,23.24,22.94,22.99,23.1,23.06,23.12,23.17,23.22,23.31,23.08,23.19,23.28,23.1,23.22,22.29,22.26,22.17,22.2,21.94,22.17,22.2,22.49,22.38,22.24,22.31,22.26,22.49,22.42,22.67,22.35,22.6,22.54,22.58,22.38,22.7,22.67,22.54,22.47,22.58,22.6,22.54,22.56,22.54,22.42,22.47,22.4,22.72,22.7,22.7,22.74,22.74,22.67,22.79,22.74,22.67,22.72,22.74,22.65,22.63,22.72,22.83,22.81,22.9,22.97,22.92,22.81,22.67,22.67,22.67,22.6,22.7,22.58,22.56,22.4,22.17,22.08,22.2,22.2,22.63,22.85,22.85,22.99,23.03,22.99,22.97,23.01,23.12,23.12,23.12,23.15,23.17,23.19,23.12,23.06,23.06,23.06,23.17,23.19,23.17,23.37,23.31,22.99,23.31,23.31,23.08,23.01,23.15,23.17,23.22,23.19,23.28,23.15,23.42,23.17,23.22,23.1,22.99,22.85,22.9,22.76,22.56,22.54,22.58,22.4,22.56,22.38,22.6,22.47,22.4,22.63,22.74,22.72,22.79,22.94,23.12,23.08,23.12,23.08,23.26,23.19,23.17,23.35,23.17,23.24,23.22,23.17,23.19,23.22,23.19,23.15,23.17,23.15,23.1,23.22,23.15,23.22,23.19,23.1,22.88,22.74,22.65,22.38,22.26,21.76,21.65,21.44,21.3,21.3,21.44,21.51,21.69,21.78,21.94,21.9,22.17,22.06,22.06,22.22,22.24,22.26,22.22,22.33,22.33,22.35,22.29,22.24,22.31,22.31,22.33,22.35,22.31,22.26,22.31,22.56,22.38,22.51,22.49,22.31,22.33,22.29,22.35,22.4,22.38,22.47,22.51,22.51,22.47,22.45,22.58,22.56,22.26,22.42,22.58,22.45,22.4,22.51,22.6,22.47,22.56,22.56,22.49,22.56,22.47,22.35,22.38,22.42,22.42,22.4,22.54,22.4,22.58,22.4,22.38,22.51,22.26,22.38,22.45,22.29,22.4,22.29,22.54,22.17,22.51,22.31,22.26,22.24,22.31,22.35,22.26,22.2,22.22,22.17,22.22,22.04,21.94,21.6,21.72,21.67,21.21,21.56,21.53,21.74,22.06,22.35,22.88,22.9,23.12,23.26,23.15,23.12,23.17,23.17,23.24,23.24,23.24,23.17,23.35,23.28,23.17,23.1,23.22,23.15,23.31,23.31,23.28,23.24,23.22,23.01,23.1,22.94,23.06,23.17,23.15,23.17,23.15,23.12,23.08,23.08,23.1,23.12,23.03,23.06,23.06,23.03,22.83,22.97,22.99,22.83,22.74,22.56,22.38,22.4,22.13,22.29,22.29,22.45,22.74,22.65,22.97,22.97,22.99,23.08,22.97,23.12,22.88,23.19,23.24,23.17,23.06,23.17,23.12,23.15,23.08,23.22,22.13,22.08,22.22,22.26,22.13,22.26,22.29,22.26,22.17,22.26,22.38,22.35,22.35,22.45,22.49,22.22,22.49,22.31,22.56,22.24,22.49,22.49,22.54,22.56,22.56,22.51,22.49,22.33,22.31,22.35,22.67,22.54,22.67,22.65,22.7,22.58,22.58,22.47,22.67,22.74,22.6,22.72,22.74,22.74,22.74,22.54,22.9,22.7,22.79,22.76,22.9,22.76,22.72,22.6,22.67,22.29,22.33,22.4,22.38,22.2,22.06,21.97,22.26,22.4,22.54,22.79,23.03,23.08,22.99,22.94,23.01,23.01,23.12,23.15,23.03,23.1,23.01,23.1,23.03,23.12,23.08,23.08,23.08,22.99,23.17,22.99,23.1,23.19,23.08,23.12,23.19,23.1,23.17,23.24,23.1,23.12,23.22,23.12,23.22,23.24,23.22,23.06,23.1,23.06,22.85,22.85,23.06,22.79,22.79,22.67,22.42,22.4,22.42,22.35,22.49,22.47,22.45,22.6,22.65,22.65,22.74,22.85,22.9,23.01,22.99,23.12,23.1,23.22,23.19,23.15,23.12,23.19,23.31,23.26,23.17,23.01,23.01,23.03,23.06,23.06,23.12,23.12,23.12,22.81,22.76,22.58,22.4,22.22,21.99,21.74,21.46,21.33,21.28,21.33,21.56,21.65,21.9,22.01,21.78,21.88,22.06,21.99,22.04,22.22,22.01,22.06,22.17,22.15,22.33,22.24,22.29,22.29,22.33,22.38,22.51,22.26,22.26,22.4,22.33,22.38,22.33,22.38,22.4,22.29,22.33,21.97,22.17,22.35,22.33,22.49,22.47,22.47,22.45,22.35,22.22,22.38,22.17,22.51,22.38,22.56,22.45,22.33,22.49,22.42,22.45,22.51,22.35,22.45,22.47,22.47,22.29,22.49,22.49,22.35,22.51,22.38,22.4,22.42,22.33,22.4,22.54,22.31,22.45,22.49,22.29,22.22,22.35,22.47,22.35,22.29,22.26,22.17,22.42,22.31,22.26,22.22,22.15,22.13,21.99,21.92,21.74,21.65,21.62,21.53,21.26,21.49,21.53,21.81,22.15,22.4,22.83,23.01,22.92,23.12,22.99,23.06,23.19,23.12,23.15,23.17,23.4,23.15,23.28,23.26,23.17,23.08,23.06,23.1,23.26,23.19,23.22,23.12,23.06,23.1,23.19,23.08,23.1,23.06,22.85,23.17,23.03,23.03,23.1,22.94,23.15,23.03,22.94,22.9,22.94,23.03,22.92,22.94,22.81,22.83,22.79,22.65,22.63,22.4,22.15,22.1,22.08,22.26,22.45,22.38,22.7,22.76,22.83,22.76,22.9,23.06,22.99,22.97,23.17,22.99,23.17,23.22,23.08,22.99,23.01,23.01,22.24,22.31,22.35,22.33,22.04,22.2,22.17,22.26,22.29,22.42,22.26,22.49,22.4,22.35,22.47,22.31,22.49,22.45,22.54,22.42,22.65,22.54,22.56,22.49,22.49,22.58,22.54,22.49,22.54,22.51,22.54,22.72,22.7,22.63,22.58,22.56,22.76,22.47,22.6,22.51,22.56,22.76,22.9,22.72,22.47,22.67,22.67,22.76,22.79,22.76,22.79,22.79,22.81,22.74,22.6,22.63,22.58,22.33,22.31,22.31,22.1,21.94,22.31,22.51,22.65,22.83,22.88,22.74,23.12,22.99,22.94,23.12,22.99,23.22,23.15,23.12,23.33,22.94,23.24,23.03,23.1,23.03,23.12,23.22,23.1,23.22,23.26,23.24,23.22,23.19,23.24,23.08,23.19,23.06,23.22,23.31,23.28,23.24,23.06,23.1,23.33,23.28,23.15,23.33,23.08,23.15,22.97,23.03,22.9,22.79,22.49,22.4,22.4,22.45,22.58,22.54,22.51,22.45,22.45,22.63,22.63,22.72,22.74,22.79,22.97,23.1,23.17,23.22,22.97,23.06,23.24,23.35,23.15,23.19,23.22,23.08,23.17,23.03,23.08,23.12,23.15,23.1,23.03,22.94,22.79,22.54,22.31,22.29,21.78,21.42,21.37,21.23,21.12,21.44,21.51,21.72,21.81,21.81,22.06,21.92,22.24,22.13,22.08,22.2,22.2,22.15,22.1,22.38,22.47,22.26,22.26,22.22,22.38,22.47,22.47,22.4,22.15,22.29,22.35,22.33,22.29,22.38,22.45,22.56,22.4,22.31,22.35,22.45,22.31,22.22,22.45,22.54,22.4,22.4,22.24,22.29,22.22,22.4,22.4,22.45,22.58,22.47,22.49,22.54,22.54,22.47,22.42,22.79,22.51,22.47,22.38,22.4,22.49,22.38,22.42,22.45,22.54,22.4,22.38,22.31,22.47,22.33,22.54,22.4,22.54,22.31,22.33,22.29,22.38,22.29,22.26,22.24,22.47,22.29,22.26,22.26,22.22,22.06,22.04,21.83,21.69,21.67,21.44,21.56,21.44,21.51,21.81,22.06,22.2,22.65,22.92,23.01,22.94,23.15,23.12,23.37,23.17,23.06,23.22,23.08,22.99,23.17,23.33,23.22,23.17,23.1,23.03,23.26,23.15,23.24,23.22,23.22,23.1,23.06,23.28,22.85,22.92,23.08,22.94,23.08,22.99,23.22,23.08,22.97,23.03,23.01,22.97,23.06,23.1,23.06,23.08,22.85,22.74,22.92,22.85,22.83,22.7,22.7,22.51,22.45,22.31,22.29,22.29,22.31,22.42,22.56,22.72,22.9,22.85,23.01,22.92,22.92,23.06,22.99,23.06,23.22,23.03,23.22,23.15,23.19,22.33,22.24,22.26,22.35,22.24,22.45,22.2,22.29,22.22,22.42,22.45,22.49,22.33,22.54,22.67,22.47,22.67,22.45,22.54,22.35,22.67,22.63,22.49,22.45,22.67,22.56,22.51,22.47,22.63,22.42,22.49,22.54,22.67,22.67,22.6,22.88,22.72,22.74,22.76,22.6,22.85,22.65,22.65,22.67,22.67,22.74,22.7,22.92,22.9,22.99,22.83,22.76,22.74,22.74,22.7,22.65,22.79,22.49,22.1,22.1,22.2,22.1,22.26,22.54,22.97,23.01,22.94,22.97,22.94,22.94,23.06,22.92,23.08,23.15,23.17,23.01,23.26,23.24,23.26,23.19,23.06,23.1,23.17,23.17,23.17,23.26,23.31,23.15,23.28,23.12,23.24,23.19,23.24,23.24,23.22,23.1,23.42,23.37,23.08,23.31,23.31,23.42,23.28,23.28,23.19,23.24,23.1,23.1,22.99,22.94,22.88,22.74,22.83,22.74,22.58,22.58,22.42,22.38,22.54,22.54,22.7,22.67,22.65,22.72,22.97,22.9,22.88,23.03,23.06,23.06,23.24,23.33,23.28,23.33,23.06,23.08,23.12,23.12,23.08,23.08,23.17,23.17,23.01,22.79,22.81,22.42,22.26,21.97,21.74,21.53,21.4,21.28,21.07,21.37,21.51,21.78,21.97,21.97,22.08,21.92,22.26,22.15,22.01,22.24,22.22,22.24,22.22,22.2,22.35,22.38,22.31,22.35,22.35,22.47,22.33,22.4,22.24,22.22,22.4,22.24,22.26,22.42,22.4,22.56,22.45,22.49,22.29,22.38,22.38,22.35,22.35,22.42,22.42,22.4,22.31,22.31,22.47,22.56,22.54,22.47,22.49,22.45,22.74,22.56,22.47,22.63,22.42,22.58,22.51,22.42,22.56,22.54,22.4,22.67,22.74,22.42,22.38,22.47,22.47,22.26,22.24,22.35,22.47,22.45,22.49,22.51,22.38,22.51,22.42,22.42,22.35,22.45,22.42,22.29,22.29,22.24,22.17,22.17,22.06,21.85,21.67,21.42,21.4,21.42,21.46,21.65,21.94,22.22,22.38,22.76,22.99,23.22,23.06,23.22,23.15,23.24,23.06,23.15,23.24,23.1,23.19,23.24,23.35,23.26,23.06,23.26,23.06,23.33,23.31,23.15,23.19,23.26,23.12,23.08,23.1,23.03,23.01,23.19,23.15,23.08,23.15,23.12,23.08,23.15,23.28,23.26,23.06,23.01,23.08,23.24,23.01,23.08,22.9,22.94,22.94,22.94,22.92,23.01,22.6,22.58,22.4,22.42,22.45,22.47,22.4,22.56,22.58,22.76,22.88,23.03,22.94,23.01,23.01,23.1,23.17,23.1,23.03,23.22,23.15,23.35,22.35,22.45,22.72,22.45,22.31,22.31,22.29,22.31,22.42,22.33,22.26,22.54,22.38,22.58,22.65,22.63,22.7,22.22,22.6,22.45,22.6,22.7,22.65,22.63,22.72,22.65,22.85,22.56,22.58,22.56,22.6,22.63,22.65,22.65,22.9,22.92,22.76,22.7,22.72,22.67,22.72,22.65,22.79,22.76,22.65,22.9,22.65,22.74,22.63,22.85,22.94,22.74,22.85,22.83,22.7,22.56,22.65,22.51,22.38,22.13,22.17,22.4,22.38,22.85,22.88,22.97,23.22,22.9,23.06,23.1,23.03,22.99,23.26,23.15,23.31,23.31,23.26,23.37,23.15,23.22,23.15,23.08,23.22,23.19,23.15,23.31,23.28,23.28,23.33,23.24,23.19,23.19,23.31,23.15,23.24,23.4,23.4,23.6,23.37,23.4,23.4,23.44,23.28,23.49,23.17,23.35,23.26,23.28,23.28,23.17,23.17,23.01,22.97,23.03,22.92,22.7,22.65,22.51,22.6,22.45,22.56,22.56,22.51,22.74,22.76,22.83,22.92,22.99,22.94,22.94,23.1,23.22,23.28,23.26,23.24,22.99,23.19,23.15,23.08,23.19,23.17,23.15,23.06,22.9,22.65,22.38,22.17,22.01,21.62,21.46,21.51,21.42,21.44,21.62,21.83,22.06,22.06,22.1,22.2,22.15,22.31,22.15,22.2,22.13,22.17,22.2,22.4,22.24,22.42,22.2,22.35,22.35,22.29,22.29,22.31,22.47,22.26,22.33,22.2,22.42,22.4,22.56,22.35,22.54,22.6,22.51,22.45,22.35,22.33,22.38,22.49,22.38,22.33,22.49,22.29,22.17,22.4,22.42,22.45,22.45,22.54,22.42,22.54,22.51,22.4,22.47,22.65,22.6,22.56,22.51,22.56,22.63,22.56,22.72,22.51,22.45,22.51,22.49,22.47,22.45,22.51,22.29,22.42,22.49,22.51,22.42,22.31,22.42,22.4,22.54,22.38,22.33,22.31,22.38,22.24,22.26,22.24,22.22,22.13,22.06,21.67,21.58,21.46,21.58,21.58,21.81,22.06,22.4,22.76,23.01,23.19,23.24,23.26,23.31,23.31,23.12,23.12,23.19,23.31,23.4,23.35,23.19,23.42,23.19,23.22,23.19,23.28,23.37,23.22,23.26,23.12,23.19,23.22,23.03,23.24,23.1,23.12,23.12,23.19,23.17,23.15,23.17,23.15,23.24,23.19,23.15,23.01,23.08,23.17,23.22,23.1,23.12,23.22,22.97,23.06,23.03,23.1,22.92,22.72,22.79,22.63,22.7,22.65,22.63,22.45,22.24,22.51,22.49,22.56,22.72,22.88,22.83,23.1,23.03,23.01,23.22,23.15,23.15,23.22,23.24,22.42,22.4,22.38,22.38,22.33,22.33,22.22,22.54,22.24,22.51,22.51,22.33,22.51,22.49,22.85,22.65,22.7,22.38,22.63,22.42,22.45,22.58,22.56,22.67,22.56,22.63,22.51,22.49,22.7,22.58,22.74,22.65,22.83,22.58,22.54,22.67,22.67,22.6,22.7,22.92,22.51,22.7,22.74,22.65,22.9,22.67,22.54,22.79,22.72,22.79,22.79,22.85,22.72,22.7,22.67,22.56,22.26,22.51,22.22,22.06,22.08,22.26,22.51,22.76,22.76,22.81,23.03,22.9,22.83,22.97,23.08,23.1,23.17,23.1,23.24,23.28,23.24,23.17,23.15,23.24,23.12,23.17,23.19,23.15,23.01,23.22,23.33,23.06,23.15,23.19,23.06,23.03,23.08,23.17,23.22,23.28,23.33,23.28,23.33,23.37,23.44,23.42,23.49,23.35,23.28,23.15,23.08,23.24,23.24,23.28,23.22,22.94,23.06,23.01,22.9,22.81,22.79,22.58,22.56,22.56,22.58,22.51,22.31,22.65,22.65,22.74,22.9,22.72,22.81,22.85,22.85,23.03,23.24,23.17,23.03,22.97,23.15,22.94,23.12,23.1,23.01,23.19,22.94,22.54,22.6,22.2,22.15,21.88,21.46,21.44,21.42,21.46,21.37,21.67,21.74,21.99,22.15,21.99,22.15,22.17,22.24,22.22,22.1,22.13,22.15,22.17,22.33,22.26,22.47,22.24,22.29,22.35,22.4,22.31,22.29,22.26,22.26,22.24,22.17,22.29,22.49,22.38,22.45,22.38,22.29,22.22,22.31,22.45,22.47,22.29,22.33,22.45,22.35,22.51,22.29,22.35,22.35,22.4,22.58,22.35,22.4,22.49,22.7,22.49,22.38,22.49,22.58,22.4,22.54,22.49,22.54,22.67,22.45,22.49,22.58,22.47,22.33,22.4,22.24,22.35,22.31,22.24,22.51,22.47,22.38,22.33,22.33,22.24,22.2,22.4,22.47,22.22,22.17,22.01,22.08,22.17,22.13,22.06,22.04,21.69,21.56,21.58,21.37,21.65,21.85,21.99,22.15,22.49,22.6,23.08,23.26,23.12,23.26,23.28,23.22,23.35,23.17,23.17,23.35,23.31,23.1,23.03,23.26,23.24,23.17,23.08,23.22,23.4,23.28,23.26,23.19,23.28,23.17,23.12,23.06,22.92,23.22,23.03,23.03,23.15,23.17,23.24,23.01,23.01,23.12,23.03,23.1,23.12,23.15,23.12,22.9,23.08,23.03,23.06,23.03,22.94,23.15,23.06,23.06,22.9,22.83,22.85,22.72,22.56,22.4,22.26,22.26,22.29,22.38,22.74,22.58,22.72,22.99,22.83,22.94,22.97,23.08,23.1,23.19,23.28,22.51,22.45,22.58,22.33,22.38,22.4,22.42,22.38,22.26,22.58,22.42,22.4,22.51,22.31,22.58,22.51,22.63,22.47,22.7,22.29,22.54,22.58,22.58,22.76,22.63,22.72,22.63,22.63,22.45,22.51,22.94,22.72,22.51,22.51,22.65,22.72,22.79,22.72,22.54,22.79,22.76,22.85,22.83,22.58,22.83,22.7,22.56,22.65,22.74,22.74,22.92,22.76,22.81,22.65,22.7,22.51,22.45,22.33,22.17,22.06,22.17,22.24,22.56,22.83,22.81,23.01,22.9,23.08,22.9,22.81,23.08,23.15,23.03,23.03,22.99,23.26,23.17,23.06,23.26,23.17,23.01,23.22,23.26,23.17,23.22,22.99,23.17,23.1,23.28,23.22,23.24,23.17,23.28,23.19,23.42,23.1,23.17,23.28,23.26,23.22,23.42,23.4,23.42,23.31,23.19,23.22,23.12,23.31,23.37,23.28,23.06,23.08,23.22,23.01,23.17,23.1,22.99,22.81,22.7,22.72,22.72,22.67,22.31,22.56,22.47,22.42,22.56,22.67,22.56,22.63,22.81,22.79,22.9,22.88,22.94,23.03,23.01,22.97,23.08,23.08,23.12,23.08,22.76,22.7,22.63,22.35,22.04,21.76,21.44,21.53,21.44,21.51,21.49,21.56,21.94,22.13,22.13,22.1,22.13,22.13,22.1,22.24,22.15,22.17,22.2,22.04,22.13,22.17,22.31,22.17,22.22,22.45,22.42,22.33,22.2,22.47,22.31,22.35,22.31,22.35,22.49,22.42,22.47,22.45,22.35,22.26,22.29,22.6,22.42,22.38,22.4,22.42,22.33,22.4,22.35,22.51,22.49,22.47,22.38,22.42,22.54,22.67,22.63,22.47,22.6,22.63,22.63,22.65,22.49,22.51,22.38,22.6,22.42,22.6,22.51,22.51,22.49,22.51,22.45,22.6,22.47,22.31,22.42,22.38,22.54,22.29,22.33,22.26,22.38,22.31,22.33,22.47,22.38,22.24,22.26,22.17,22.17,22.08,22.01,21.67,21.6,21.35,21.42,21.72,21.88,22.1,22.33,22.58,22.83,23.06,23.24,23.22,23.15,23.19,23.12,23.31,22.94,23.15,23.22,23.31,22.97,23.35,23.15,23.22,23.17,23.15,23.19,23.15,23.42,23.26,23.15,23.28,23.19,23.31,23.31,23.08,23.24,23.1,23.06,23.22,23.08,23.22,23.24,23.19,23.19,23.03,23.06,22.94,22.97,23.06,22.99,23.08,23.1,23.22,22.94,23.01,23.08,23.06,22.85,23.08,22.92,22.88,22.97,22.81,22.74,22.56,22.54,22.35,22.49,22.54,22.4,22.56,22.7,22.79,23.01,22.97,22.92,23.12,23.17,23.28,22.26,22.31,22.42,22.38,22.33,22.17,22.38,22.26,22.24,22.47,22.31,22.13,22.49,22.45,22.79,22.4,22.24,22.35,22.33,22.38,22.31,22.72,22.7,22.6,22.38,22.6,22.6,22.6,22.31,22.42,22.7,22.63,22.65,22.67,22.63,22.79,22.58,22.56,22.67,22.56,22.51,22.83,22.67,22.76,22.81,22.81,22.76,22.74,22.58,22.63,22.76,22.81,22.63,22.63,22.42,22.38,22.33,22.06,22.06,22.17,22.22,22.22,22.72,22.9,22.81,22.88,22.88,23.03,22.85,22.92,22.94,23.06,23.08,23.15,23.03,23.22,23.15,23.15,23.06,23.1,23.22,23.17,23.31,23.17,23.1,23.15,23.22,23.12,23.24,23.31,23.22,22.97,23.31,23.12,23.24,23.12,23.19,23.15,23.19,23.26,23.53,23.15,23.28,23.15,23.24,23.31,23.28,23.15,23.4,23.35,23.12,23.22,23.15,23.12,23.1,23.26,23.06,23.03,23.01,22.88,22.97,22.88,22.42,22.51,22.6,22.6,22.33,22.58,22.42,22.6,22.51,22.54,22.83,22.65,22.67,22.83,22.79,22.92,22.81,22.88,22.85,22.83,22.81,22.51,22.45,22.01,21.81,21.58,21.46,21.51,21.4,21.42,21.49,21.78,21.97,21.99,21.97,22.15,22.2,22.04,22.13,22.2,22.01,22.2,22.1,22.08,22.26,22.13,22.22,22.29,22.2,22.4,22.22,22.51,22.35,22.08,22.2,22.33,22.2,22.26,22.22,22.2,22.38,22.38,22.26,22.29,22.35,22.31,22.24,22.15,22.15,22.38,22.33,22.42,22.29,22.35,22.56,22.35,22.42,22.38,22.58,22.58,22.4,22.4,22.49,22.42,22.54,22.42,22.47,22.4,22.42,22.4,22.4,22.49,22.45,22.31,22.35,22.31,22.45,22.47,22.2,22.24,22.31,22.49,22.4,22.31,22.45,22.4,22.47,22.31,22.31,22.42,22.26,22.15,22.15,22.04,22.1,21.99,21.81,21.72,21.42,21.35,21.44,21.56,21.76,22.24,22.42,22.79,22.76,23.08,23.22,23.17,23.24,23.19,23.31,23.33,23.06,23.03,23.1,23.35,23.28,23.12,23.22,23.28,23.15,23.22,23.17,23.22,23.22,23.19,23.28,23.12,23.19,23.1,23.17,23.19,23.15,23.15,23.01,23.12,23.08,22.97,23.08,23.03,23.17,23.01,22.97,22.88,22.83,22.97,22.9,23.06,23.12,22.88,22.85,23.1,22.85,22.81,22.99,22.9,22.92,23.03,23.06,23.12,22.92,22.6,22.26,22.54,22.33,22.38,22.31,22.42,22.45,22.63,22.7,22.76,22.94,23.01,23.08,23.19,22.13,22.24,22.35,22.31,22.31,22.33,22.42,22.47,22.29,22.22,22.33,22.24,22.4,22.35,22.56,22.58,22.51,22.38,22.47,22.29,22.7,22.42,22.63,22.31,22.38,22.35,22.54,22.54,22.45,22.54,22.47,22.54,22.72,22.63,22.6,22.67,22.67,22.47,22.81,22.7,22.67,22.58,22.85,22.72,22.51,22.85,22.7,22.56,22.72,22.74,22.72,22.74,22.45,22.63,22.4,22.33,22.15,22.04,22.01,22.1,22.35,22.49,22.83,22.81,22.76,22.99,22.9,22.79,22.94,22.94,22.94,22.99,23.08,23.1,23.15,22.99,23.33,23.17,23.24,23.06,23.17,23.26,23.08,23.03,22.99,23.08,23.06,23.1,23.1,23.22,23.17,23.19,23.22,23.19,23.24,23.35,23.33,23.33,23.31,23.28,23.46,23.28,23.35,23.33,23.24,23.35,23.28,23.24,23.24,23.26,23.28,23.03,23.35,23.22,23.17,23.24,23.22,22.99,23.03,23.15,23.03,22.97,22.83,22.72,22.72,22.72,22.4,22.42,22.49,22.29,22.31,22.24,22.49,22.54,22.4,22.51,22.72,22.54,22.67,22.88,22.88,22.83,22.63,22.58,22.13,22.06,21.62,21.42,21.44,21.35,21.46,21.58,21.62,21.76,21.9,21.92,21.97,21.99,22.08,22.01,22.04,22.2,22.17,22.13,22.26,22.2,22.01,22.15,22.22,22.24,22.29,22.2,22.29,22.4,22.29,22.31,22.29,22.29,22.2,22.33,22.22,22.2,22.2,22.13,22.31,22.29,22.31,22.47,22.31,22.13,22.29,22.4,22.35,22.4,22.29,22.49,22.22,22.35,22.54,22.42,22.31,22.4,22.54,22.49,22.35,22.24,22.6,22.38,22.54,22.42,22.17,22.49,22.54,22.54,22.45,22.17,22.35,22.4,22.35,22.4,22.31,22.26,22.4,22.33,22.31,22.42,22.38,22.31,22.24,22.13,22.1,22.26,22.24,22.06,22.29,22.26,21.92,21.83,21.65,21.35,21.33,21.37,21.56,21.58,21.94,22.22,22.58,22.85,22.76,23.1,23.19,23.1,23.12,23.12,23.22,23.44,23.08,23.03,23.26,23.19,23.1,23.19,23.12,23.22,23.17,23.24,23.03,23.01,23.4,23.22,23.22,23.28,23.15,23.08,23.15,23.12,23.15,23.15,23.06,22.99,23.01,22.99,22.97,23.15,23.12,23.01,22.97,23.06,23.1,23.06,22.74,23.03,23.03,22.97,22.94,23.03,23.1,23.19,23.08,23.1,22.99,23.1,23.12,22.97,22.76,22.81,22.6,22.58,22.42,22.33,22.38,22.47,22.35,22.47,22.49,22.6,22.81,22.99,23.06,23.08,22.13,22.22,22.33,22.1,22.29,22.29,22.47,22.17,22.33,22.4,22.31,22.45,22.42,22.51,22.45,22.45,22.6,22.6,22.54,22.4,22.72,22.49,22.6,22.65,22.38,22.47,22.45,22.4,22.65,22.56,22.47,22.47,22.65,22.7,22.7,22.65,22.4,22.63,22.63,22.58,22.7,22.83,22.54,22.6,22.58,22.7,22.79,22.74,22.79,22.72,22.72,22.67,22.47,22.51,22.47,22.35,22.17,22.1,22.1,22.2,22.31,22.56,22.7,22.74,22.81,22.81,22.79,22.81,22.92,22.81,23.01,23.06,23.08,22.85,23.03,23.08,23.17,23.01,23.24,23.17,23.22,22.92,23.15,23.17,23.06,23.08,23.03,23.03,23.03,23.06,22.99,23.31,23.19,23.15,23.28,23.12,23.19,23.37,23.19,23.17,23.19,23.24,23.31,23.33,23.22,23.35,23.28,23.19,23.03,23.17,23.12,23.15,23.1,23.26,23.15,23.28,23.19,23.24,23.08,23.03,23.03,23.03,23.01,22.85,22.72,22.63,22.63,22.51,22.6,22.54,22.45,22.33,22.42,22.42,22.35,22.45,22.58,22.6,22.58,22.51,22.7,22.63,22.63,22.2,22.2,21.92,21.69,21.56,21.56,21.42,21.44,21.56,21.69,21.9,21.92,22.17,22.01,22.06,22.04,22.06,21.85,22.15,22.2,22.26,22.01,22.26,22.01,22.17,22.31,22.1,22.2,22.22,22.31,22.24,22.31,22.26,22.1,22.24,22.13,22.17,22.4,22.13,22.2,22.29,22.15,22.38,22.15,22.42,22.38,22.29,22.24,22.38,22.35,22.42,22.31,22.4,22.4,22.33,22.38,22.51,22.38,22.42,22.74,22.49,22.31,22.49,22.54,22.38,22.42,22.49,22.38,22.35,22.47,22.38,22.33,22.31,22.24,22.35,22.33,22.24,22.15,22.22,22.42,22.26,22.33,22.29,22.17,22.08,22.26,22.29,22.35,22.26,22.24,22.08,22.13,22.01,22.04,21.69,21.51,21.62,21.4,21.49,21.67,21.76,22.2,22.42,22.65,22.79,22.83,23.03,23.17,23.26,23.19,23.31,23.24,23.19,23.12,23.24,23.17,23.1,23.15,23.19,23.19,23.15,23.15,23.19,22.99,23.03,23.19,23.1,22.88,23.22,23.15,23.1,23.08,23.06,22.9,23.03,23.1,22.99,23.1,23.06,22.99,22.99,23.03,22.97,23.08,22.94,22.88,22.94,22.99,22.97,22.97,23.08,23.01,22.92,22.99,23.03,22.83,22.9,23.01,22.94,23.1,22.99,23.01,22.97,22.81,22.76,22.58,22.51,22.58,22.29,22.45,22.22,22.42,22.42,22.7,22.72,22.81,22.9,22.4,22.26,22.33,22.17,22.17,22.24,22.13,22.47,22.29,22.38,22.4,22.31,22.49,22.38,22.42,22.26,22.51,22.35,22.6,22.4,22.56,22.79,22.65,22.6,22.74,22.47,22.54,22.54,22.6,22.65,22.6,22.7,22.63,22.67,22.72,22.81,22.67,22.58,22.67,22.7,22.6,22.49,22.83,22.67,22.58,22.65,22.74,22.76,22.79,22.88,22.67,22.63,22.51,22.58,22.42,22.33,22.35,22.01,22.08,22.2,22.45,22.72,22.74,22.85,22.74,22.74,22.85,22.85,22.85,22.83,23.01,23.08,23.06,22.92,23.06,23.08,23.03,23.17,23.03,23.08,23.06,23.01,23.06,23.1,23.24,23.17,23.12,23.1,23.15,23.1,23.06,23.1,23.19,23.19,23.19,23.15,23.35,23.33,23.24,23.22,23.26,23.31,23.12,23.33,23.22,23.44,23.1,23.17,23.26,23.28,23.22,23.15,23.17,23.15,23.06,23.17,23.22,23.17,22.97,23.1,23.22,23.22,23.06,23.1,23.15,22.94,23.03,22.81,22.6,22.51,22.7,22.45,22.26,22.22,22.4,22.31,22.31,22.29,22.35,22.49,22.67,22.56,22.45,22.2,21.97,21.67,21.56,21.3,21.3,21.46,21.51,21.44,21.81,22.17,21.9,22.13,22.08,22.06,22.01,21.99,22.01,21.99,22.13,22.04,22.15,22.13,21.92,22.08,22.17,22.15,22.17,22.1,22.08,22.15,22.06,22.22,22.15,22.22,22.2,22.33,22.26,22.29,22.24,22.33,22.31,22.26,22.15,22.24,22.15,22.22,22.26,22.35,22.33,22.49,22.38,22.29,22.26,22.31,22.42,22.4,22.42,22.42,22.58,22.4,22.42,22.42,22.49,22.47,22.4,22.51,22.42,22.49,22.29,22.38,22.47,22.33,22.31,22.51,22.35,22.29,22.29,22.15,22.29,22.31,22.29,22.13,22.31,22.26,22.26,22.22,22.31,22.24,22.08,22.08,22.01,21.92,21.74,21.67,21.44,21.42,21.19,21.21,21.51,21.9,22.35,22.6,22.81,22.94,22.94,23.15,23.12,23.26,23.26,23.12,23.24,23.28,23.26,23.15,23.17,23.17,23.17,23.15,23.06,23.17,22.99,23.08,23.03,23.26,23.17,23.17,23.01,22.94,23.15,22.97,23.08,22.81,22.92,22.83,23.01,23.15,22.97,22.99,22.9,23.12,23.03,22.81,22.76,22.81,22.92,22.88,22.97,22.94,22.92,22.92,22.97,23.15,22.94,23.22,23.03,22.9,23.01,22.99,23.19,23.15,22.99,23.01,22.94,22.9,22.7,22.83,22.4,22.33,22.4,22.17,22.24,22.2,22.47,22.58,22.85,22.79,22.13,22.1,22.38,22.15,21.99,22.24,22.13,22.24,22.33,22.2,22.31,22.22,22.38,22.31,22.29,22.38,22.49,22.4,22.42,22.33,22.58,22.42,22.35,22.45,22.72,22.56,22.35,22.56,22.58,22.51,22.58,22.65,22.6,22.74,22.81,22.63,22.67,22.45,22.54,22.58,22.67,22.76,22.7,22.67,22.74,22.7,22.58,22.65,22.67,22.65,22.76,22.49,22.42,22.65,22.17,22.08,22.22,22.04,22.13,22.26,22.56,22.67,22.81,22.97,22.92,22.9,23.06,22.6,22.92,22.83,22.9,22.92,23.08,22.99,23.1,23.19,23.1,23.08,23.06,23.01,23.15,22.92,23.01,23.15,23.03,22.99,23.03,23.12,23.19,23.06,22.9,22.99,23.01,23.17,23.12,23.08,23.24,23.24,23.31,23.1,23.33,23.24,23.24,23.33,23.22,23.28,23.15,23.17,23.35,23.37,23.22,23.17,23.26,23.19,23.1,23.24,23.01,23.12,23.15,23.12,23.33,23.24,23.12,22.94,23.06,23.08,22.97,23.03,22.9,22.79,22.76,22.6,22.42,22.26,22.22,22.31,22.17,22.13,22.08,22.29,22.54,22.22,22.33,22.04,21.85,21.65,21.53,21.44,21.37,21.4,21.53,21.67,21.78,21.9,21.74,21.88,22.06,21.99,21.97,22.33,22.1,21.97,22.04,22.04,22.08,22.13,22.2,22.13,22.22,22.17,22.24,22.13,22.15,22.15,22.24,22.1,22.24,22.24,22.2,22.15,22.22,22.06,22.17,22.17,22.22,22.29,22.2,22.29,22.15,22.26,22.29,22.4,22.33,22.26,22.29,22.38,22.17,22.29,22.38,22.45,22.45,22.31,22.17,22.33,22.33,22.31,22.45,22.51,22.4,22.33,22.29,22.38,22.35,22.4,22.24,22.38,22.47,22.35,22.38,22.2,22.24,22.08,22.24,22.1,22.2,22.29,22.2,22.24,22.04,22.2,22.33,22.04,22.04,22.04,21.9,21.76,21.69,21.53,21.42,21.4,21.37,21.37,21.65,21.97,22.31,22.76,22.85,22.99,23.08,22.99,23.22,23.24,23.15,23.15,23.1,23.24,23.12,23.22,23.03,23.08,23.17,23.01,23.17,23.17,23.15,22.92,23.06,22.99,23.1,23.12,23.17,23.12,22.99,22.94,23.08,22.92,23.06,23.03,22.9,23.03,22.94,22.83,22.94,23.01,23.08,22.9,22.72,22.9,22.94,23.03,22.99,22.81,23.03,22.83,22.76,23.03,22.9,23.01,23.03,22.92,22.94,22.88,22.99,22.83,23.12,22.97,22.9,22.79,22.83,22.76,22.65,22.58,22.38,22.29,22.15,22.04,22.31,22.17,22.63,22.65,22.49,22.35,22.35,22.49,22.49,22.54,22.29,22.35,22.24,22.26,22.31,22.45,22.42,22.6,22.63,22.7,22.58,22.49,22.51,22.63,22.79,22.65,22.45,22.58,22.7,22.54,22.67,22.58,22.74,22.6,22.67,22.72,22.67,22.7,22.67,22.7,22.56,22.74,22.67,22.67,22.6,22.72,22.74,22.88,22.72,22.76,22.6,22.81,22.63,22.58,22.65,22.65,22.54,22.47,22.47,22.2,22.17,22.24,22.1,22.4,22.88,22.83,22.74,22.81,23.01,22.85,23.08,22.81,22.81,22.79,22.92,23.01,23.03,23.1,22.99,23.1,23.06,23.12,23.19,22.97,23.17,23.06,23.1,23.22,23.06,23.15,23.12,23.22,23.28,23.17,23.17,23.19,23.28,23.31,23.12,23.28,23.17,23.24,23.31,23.42,23.35,23.26,23.31,23.44,23.28,23.22,23.46,23.49,23.26,23.31,23.37,23.19,23.19,23.19,23.24,23.22,23.24,23.31,23.15,23.28,23.15,23.31,23.15,23.1,23.08,23.24,23.22,23.31,23.08,22.94,22.85,22.88,22.67,22.74,22.58,22.45,22.33,22.33,22.26,22.24,22.31,22.47,22.15,21.9,21.92,21.67,21.67,21.69,21.4,21.35,21.58,21.74,21.78,22.01,22.04,22.08,21.94,22.13,22.15,22.2,22.04,22.13,22.33,22.13,22.13,22.06,21.97,22.06,22.22,22.31,22.29,22.22,22.22,22.17,22.13,22.35,22.31,22.24,22.08,22.38,22.2,22.29,22.29,22.2,22.35,22.17,22.35,22.29,22.42,22.29,22.29,22.4,22.4,22.45,22.31,22.26,22.31,22.31,22.33,22.47,22.45,22.38,22.54,22.35,22.38,22.38,22.45,22.45,22.45,22.51,22.35,22.49,22.42,22.42,22.31,22.31,22.26,22.15,22.42,22.2,22.33,22.33,22.38,22.22,22.24,22.22,22.24,22.29,22.35,22.29,22.2,22.24,22.26,22.15,21.97,21.9,21.74,21.6,21.53,21.44,21.46,21.65,21.78,22.24,22.45,22.83,22.97,23.06,23.15,23.19,23.24,23.17,23.19,23.26,23.4,23.35,23.08,23.12,23.31,23.26,23.28,23.26,23.37,23.12,23.19,23.17,22.94,23.03,23.19,23.26,23.28,23.15,23.22,23.17,23.22,23.08,22.99,23.17,23.15,23.17,23.15,22.94,23.1,23.01,23.08,23.1,22.79,22.99,22.9,22.99,22.92,22.99,22.92,22.97,22.79,23.19,23.15,22.97,22.81,22.85,23.1,22.99,23.24,23.15,22.94,23.08,22.97,23.08,22.85,22.94,22.94,22.7,22.63,22.51,22.65,22.47,22.29,22.42,22.47,22.56,22.49,22.17,22.2,22.4,22.22,22.47,22.42,22.58,22.35,22.35,22.31,22.29,22.33,22.42,22.47,22.54,22.6,22.6,22.54,22.49,22.58,22.72,22.67,22.72,22.6,22.79,22.7,22.67,22.65,22.65,22.79,22.65,22.67,22.81,22.56,22.65,22.6,22.67,22.65,22.51,22.67,22.81,22.67,22.6,22.58,22.97,22.56,22.63,22.81,22.63,22.7,22.56,22.72,22.42,22.29,22.08,22.13,22.1,22.17,22.4,23.03,22.88,22.94,22.83,22.9,22.97,22.99,22.88,22.7,22.79,22.9,22.88,23.06,23.17,23.08,23.1,22.99,23.03,23.1,23.08,22.97,23.12,23.19,23.06,23.03,23.22,23.24,23.06,23.06,23.15,23.1,23.08,23.1,23.28,23.17,23.33,23.28,23.28,23.4,23.4,23.37,23.4,23.33,23.26,23.44,23.35,23.33,23.35,23.31,23.26,23.24,23.22,23.17,23.28,23.24,23.42,23.15,23.15,23.08,23.22,23.35,23.12,23.22,23.22,23.1,23.33,23.35,23.17,23.06,23.03,23.12,22.94,23.08,22.9,22.76,22.65,22.49,22.2,22.15,22.13,22.1,22.2,22.08,21.94,21.78,21.6,21.6,21.65,21.33,21.42,21.6,21.65,21.62,21.83,21.83,22.04,21.9,21.92,21.94,22.1,22.15,22.29,22.13,22.13,21.99,22.15,22.08,22.01,22.08,22.17,22.2,21.97,22.06,22.15,22.08,22.29,22.29,22.22,22.01,22.17,22.33,22.33,22.33,22.42,22.22,22.33,22.24,22.2,22.29,22.26,22.4,22.35,22.33,22.47,22.29,22.31,22.35,22.33,22.4,22.45,22.51,22.4,22.35,22.4,22.33,22.42,22.56,22.35,22.35,22.24,22.33,22.42,22.31,22.31,22.24,22.22,22.2,22.29,22.38,22.31,22.38,22.26,22.31,22.29,22.2,22.29,22.26,22.13,22.26,22.15,22.17,22.26,22.22,21.92,21.85,21.53,21.69,21.44,21.42,21.37,21.44,21.85,22.04,22.54,22.83,22.88,23.06,23.06,23.1,23.24,23.08,23.19,23.06,23.31,23.26,23.4,23.15,23.01,23.26,23.33,23.15,23.06,23.1,23.15,23.19,23.28,23.22,23.1,23.12,23.22,23.19,23.24,23.33,23.26,23.22,23.06,22.99,23.03,22.99,23.01,23.01,23.17,22.94,23.22,23.24,22.83,22.97,23.01,22.76,23.01,23.15,23.1,22.97,22.92,22.94,23.06,23.17,23.15,23.03,22.88,23.06,23.03,23.06,22.9,23.01,22.9,22.94,22.74,22.81,23.01,22.94,22.76,22.67,22.65,22.72,22.51,22.45,22.22,22.42,22.33,22.45,22.56,22.42,22.4,22.29,22.35,22.45,22.45,22.51,22.35,22.35,22.47,22.42,22.51,22.67,22.47,22.74,22.58,22.58,22.56,22.51,22.74,22.56,22.63,22.49,22.54,22.83,22.58,22.54,22.63,22.67,22.83,22.79,22.74,22.7,22.72,22.67,22.63,22.79,22.9,22.63,22.65,22.7,22.72,22.65,22.6,22.72,22.81,22.9,22.74,22.85,22.47,22.54,22.42,22.08,22.13,22.08,22.06,22.45,22.6,22.99,22.88,22.83,22.81,22.85,22.88,22.92,22.9,22.92,22.9,22.99,22.94,23.1,23.08,23.06,23.06,23.03,23.12,23.08,23.1,23.24,23.03,23.22,23.15,23.01,23.06,23.17,23.12,23.24,23.19,23.03,23.06,23.01,23.37,23.01,23.24,23.31,23.19,23.26,23.4,23.51,23.37,23.24,23.37,23.42,23.35,23.37,23.31,23.31,23.28,23.35,23.28,23.22,23.35,23.42,23.19,23.31,23.19,23.1,23.35,23.28,23.1,23.12,23.17,23.19,23.33,23.26,23.24,23.17,23.22,23.28,23.19,23.06,23.08,22.88,22.76,22.67,22.45,22.2,22.33,22.22,21.99,22.17,21.92,21.85,21.76,21.83,21.67,21.58,21.4,21.58,21.6,21.53,21.69,21.58,21.78,21.88,21.9,21.83,21.92,21.99,21.97,22.22,22.06,21.97,22.13,22.06,21.99,22.04,22.01,22.15,22.08,22.31,22.2,22.26,22.24,22.15,22.26,22.22,22.2,22.17,22.45,22.35,22.26,22.24,22.31,22.17,22.13,22.4,22.22,22.42,22.38,22.17,22.24,22.15,22.35,22.51,22.47,22.4,22.33,22.49,22.35,22.33,22.29,22.35,22.24,22.47,22.47,22.35,22.26,22.15,22.33,22.35,22.35,22.26,22.29,22.22,22.38,22.47,22.22,22.15,22.2,22.22,22.31,22.2,22.22,22.2,22.29,22.26,22.15,22.22,22.13,22.08,21.92,21.83,21.62,21.49,21.46,21.35,21.44,21.6,21.9,22.22,22.7,22.94,23.01,23.12,22.97,23.24,23.31,23.37,23.4,23.12,23.24,23.28,23.31,23.03,23.12,23.19,23.17,23.15,23.22,23.24,23.24,23.15,23.33,23.24,23.03,23.24,23.22,23.17,23.24,23.24,23.22,23.31,23.12,23.12,23.26,23.06,23.03,23.17,23.35,23.08,23.1,23.08,23.08,22.76,22.83,23.03,22.99,23.03,22.99,22.97,23.03,23.1,23.1,23.06,23.15,23.1,22.97,23.08,23.06,23.12,23.1,23.15,22.99,23.06,23.06,23.12,23.08,22.94,22.79,22.81,22.94,22.94,22.65,22.65,22.49,22.47,22.26,22.38,22.33,22.26,22.51,22.45,22.38,22.4,22.6,22.33,22.49,22.35,22.38,22.6,22.6,22.56,22.4,22.56,22.58,22.76,22.65,22.49,22.79,22.67,22.67,22.63,22.72,22.67,22.74,22.7,22.56,22.6,22.65,22.81,22.79,22.83,22.88,22.74,22.63,22.63,22.7,22.74,22.85,22.9,22.85,22.74,22.88,22.72,22.7,22.74,22.74,22.88,22.6,22.65,22.42,22.13,21.97,21.94,22.26,22.45,22.63,23.03,22.94,22.97,22.92,22.99,23.01,23.26,22.83,23.03,22.99,22.76,23.01,23.28,23.15,23.1,23.03,23.15,22.97,23.12,23.08,22.97,23.35,23.31,23.26,23.08,23.1,23.08,23.15,23.12,23.22,23.22,23.03,23.15,23.1,23.26,23.4,23.22,23.24,23.31,23.26,23.42,23.31,23.4,23.37,23.26,23.4,23.33,23.24,23.33,23.4,23.42,23.22,23.31,23.33,23.42,23.15,23.33,23.33,23.1,23.37,23.37,23.37,23.17,23.19,23.31,23.15,23.35,23.28,23.19,23.06,23.22,23.35,23.1,23.22,23.1,22.85,22.92,22.58,22.45,22.42,22.31,22.17,22.06,21.92,21.9,21.81,21.88,21.88,21.74,21.62,21.44,21.65,21.56,21.58,21.6,21.62,21.76,22.01,21.94,21.83,22.04,22.06,22.01,21.9,22.01,21.92,21.88,21.92,22.01,22.06,22.15,22.15,22.15,22.1,22.17,22.2,22.17,22.1,22.17,22.26,22.4,22.47,22.31,22.2,22.45,22.33,22.17,22.26,22.24,22.22,22.29,22.4,22.35,22.42,22.29,22.35,22.31,22.45,22.45,22.35,22.51,22.49,22.49,22.35,22.38,22.26,22.31,22.29,22.35,22.26,22.31,22.42,22.45,22.4,22.33,22.2,22.22,22.38,22.38,22.33,22.2,22.31,22.35,22.33,22.4,22.22,22.22,22.2,22.47,22.2,22.26,22.1,22.01,21.99,21.76,21.74,21.56,21.4,21.4,21.51,21.85,21.99,22.33,22.85,23.15,23.15,23.19,22.99,23.17,23.28,23.35,23.17,23.1,23.31,23.35,23.31,23.26,23.17,23.28,23.22,23.24,23.15,23.19,23.19,23.33,23.35,23.33,23.22,23.33,23.31,23.17,23.19,23.17,23.15,23.12,22.88,23.1,23.31,23.08,23.17,23.19,23.24,23.06,23.03,23.06,23.01,22.94,22.97,22.97,23.01,23.03,22.94,22.9,22.85,22.99,23.08,22.99,23.12,22.99,23.06,23.08,22.83,23.17,23.01,23.12,23.06,23.06,23.19,23.08,23.1,23.19,23.1,23.01,23.03,22.97,22.85,22.7,22.49,22.54,22.15,22.22,22.4,22.29,22.49,22.42,22.38,22.33,22.51,22.29,22.45,22.26,22.51,22.54,22.49,22.63,22.67,22.54,22.56,22.65,22.67,22.7,22.7,22.9,22.65,22.65,22.7,22.67,22.58,22.58,22.6,22.51,22.7,22.72,22.76,22.9,22.79,22.83,22.67,22.88,22.74,22.81,22.94,22.67,22.94,22.85,22.56,22.76,22.6,22.72,22.79,22.67,22.67,22.51,22.56,22.22,22.06,21.97,22.33,22.6,22.67,22.94,22.7,23.06,22.94,22.92,23.01,23.26,23.03,22.88,22.92,22.9,22.97,23.15,23.15,23.12,23.06,23.03,22.99,23.08,23.01,23.08,23.17,23.15,23.15,23.12,23.08,23.1,23.19,23.28,23.24,23.19,23.08,23.08,23.22,23.35,23.33,23.28,23.31,23.24,23.28,23.49,23.28,23.46,23.42,23.46,23.44,23.31,23.35,23.42,23.51,23.31,23.4,23.31,23.24,23.1,23.22,23.24,23.17,23.12,23.31,23.28,23.22,23.22,23.19,23.44,23.4,23.22,23.28,23.19,23.17,23.22,23.28,23.28,23.19,23.1,23.01,22.79,22.74,22.81,22.51,22.42,22.26,22.01,21.97,22.06,21.85,21.92,21.92,21.78,21.85,21.69,21.6,21.51,21.53,21.46,21.62,21.58,21.6,21.83,21.58,22.04,21.74,21.76,21.85,22.04,22.04,21.9,21.9,22.13,21.97,21.97,22.1,22.04,22.1,22.22,22.2,22.1,22.04,21.99,22.06,22.26,22.26,22.31,22.31,22.31,22.33,22.31,22.38,22.24,22.31,22.13,22.31,22.33,22.38,22.4,22.42,22.49,22.31,22.49,22.4,22.26,22.35,22.45,22.31,22.31,22.29,22.31,22.63,22.45,22.33,22.31,22.31,22.33,22.45,22.4,22.22,22.29,22.33,22.22,22.26,22.24,22.13,22.33,22.2,22.31,22.15,22.24,22.06,22.13,22.15,22.06,21.92,22.01,22.01,21.78,21.6,21.4,21.44,21.44,21.65,21.9,22.17,22.4,22.94,23.15,23.15,23.1,23.08,23.17,23.26,23.33,23.08,23.22,23.24,23.24,23.37,23.17,23.26,23.22,23.19,23.33,23.22,23.19,23.08,23.17,23.12,23.24,23.12,23.24,23.35,23.26,23.12,23.01,23.24,23.1,23.01,23.01,23.08,23.01,23.19,23.06,22.97,23.06,23.03,23.24,23.06,23.01,23.06,22.92,22.92,22.85,22.99,22.9,22.88,22.92,23.03,23.01,22.97,23.1,23.03,22.99,23.06,23.03,23.06,23.1,23.08,23.19,22.94,23.08,23.03,23.17,22.97,23.06,22.99,22.97,22.9,23.1,22.81,22.67,22.26,22.26,22.54,22.31,22.4,22.35,22.45,22.35,22.58,22.38,22.35,22.56,22.56,22.54,22.51,22.54,22.63,22.56,22.54,22.45,22.38,22.58,22.67,22.7,22.74,22.72,22.65,22.67,22.74,22.54,22.6,22.63,22.76,22.7,22.63,22.7,22.58,22.79,22.74,22.74,22.58,22.76,22.74,22.65,22.76,22.63,22.58,22.76,22.76,22.45,22.74,22.63,22.58,22.42,22.22,22.13,22.13,22.24,22.24,22.63,22.81,23.06,23.03,22.97,22.81,22.88,22.97,22.88,22.88,22.94,22.9,23.08,22.92,23.19,23.01,23.03,23.1,23.15,23.1,22.94,23.12,23.1,23.08,23.19,23.03,23.08,23.12,23.15,23.1,22.99,23.08,23.22,23.24,23.06,23.24,23.19,23.26,23.33,23.31,23.37,23.37,23.19,23.28,23.46,23.4,23.35,23.37,23.37,23.33,23.49,23.4,23.31,23.24,23.26,23.26,23.31,23.33,23.12,23.31,23.15,23.28,23.42,23.08,23.24,23.31,23.26,23.28,23.22,23.33,23.12,23.03,23.19,23.31,23.17,23.12,23.08,23.01,22.92,22.72,22.83,22.67,22.49,22.38,22.31,21.9,22.29,22.06,21.94,22.1,21.97,21.85,21.92,21.6,21.58,21.49,21.58,21.53,21.42,21.51,21.53,21.37,21.72,21.65,21.58,21.74,21.76,21.92,21.85,21.94,21.99,21.97,21.97,21.92,22.01,22.1,22.17,22.13,22.13,22.04,21.99,22.13,22.22,22.22,22.29,22.29,22.24,22.31,22.2,22.35,22.2,22.17,22.06,22.29,22.45,22.42,22.35,22.33,22.2,22.47,22.38,22.38,22.31,22.42,22.4,22.2,22.42,22.4,22.42,22.49,22.35,22.29,22.29,22.13,22.15,22.24,22.29,22.29,22.24,22.31,22.08,22.22,22.22,22.31,22.31,22.33,22.31,22.22,22.15,22.06,22.04,22.08,22.08,21.97,21.92,21.72,21.58,21.21,21.46,21.51,21.58,21.83,21.94,22.29,22.63,22.92,23.15,23.24,23.17,23.1,23.12,23.31,23.33,23.35,23.31,23.1,23.26,23.31,23.01,23.08,23.28,23.1,23.19,23.1,23.01,23.17,22.94,23.01,23.12,22.92,23.17,23.42,23.26,23.31,23.15,23.01,23.08,22.9,22.99,23.12,22.92,23.01,23.01,23.15,23.12,23.24,23.15,23.17,22.9,22.9,22.9,22.88,22.81,22.92,22.9,22.92,23.03,23.06,22.94,22.97,23.01,23.08,22.99,22.9,22.92,23.15,23.12,22.94,22.88,22.97,22.88,22.94,22.99,22.97,23.06,23.03,23.1,23.01,22.9,22.72,22.42,22.33,22.26,22.56,22.4,22.29,22.31,22.35,22.31,22.47,22.49,22.49,22.4,22.49,22.54,22.47,22.58,22.4,22.74,22.49,22.56,22.58,22.7,22.7,22.51,22.56,22.49,22.63,22.72,22.74,22.54,22.63,22.58,22.63,22.67,22.58,22.85,22.72,22.72,22.63,22.7,22.83,22.65,22.67,22.72,22.7,22.6,22.81,22.76,22.54,22.74,22.58,22.7,22.56,22.29,22.06,22.08,22.04,22.17,22.45,22.58,22.99,22.94,22.92,22.92,22.99,22.9,22.81,22.85,22.83,22.9,22.83,23.06,22.92,23.15,23.06,23.06,23.12,22.99,23.01,23.19,23.08,23.17,23.12,23.22,23.1,23.06,23.19,23.12,23.24,23.1,23.06,23.26,23.12,23.12,23.17,23.03,23.22,23.19,23.15,23.28,23.22,23.26,23.31,23.33,23.26,23.4,23.37,23.24,23.26,23.46,23.35,23.26,23.03,23.24,23.37,23.42,23.44,23.37,23.03,23.22,23.28,23.42,23.1,23.06,23.1,23.37,23.28,23.26,23.26,23.33,22.92,22.99,23.06,23.26,23.22,23.15,23.12,22.85,22.88,22.85,22.58,22.54,22.35,22.31,22.33,22.45,22.35,22.38,22.38,22.22,22.01,21.97,21.83,21.76,21.6,21.72,21.62,21.58,21.58,21.6,21.4,21.44,21.6,21.58,21.67,21.69,21.67,21.74,21.85,21.99,21.99,22.1,22.1,22.1,22.29,21.9,22.17,22.1,22.04,22.08,22.13,22.08,22.2,22.24,22.31,22.15,22.31,22.26,22.42,22.26,22.26,22.35,22.45,22.24,22.35,22.35,22.29,22.29,22.4,22.38,22.24,22.45,22.2,22.29,22.29,22.33,22.38,22.38,22.4,22.33,22.24,22.26,22.29,22.35,22.38,22.26,22.08,22.24,22.31,22.15,22.2,22.08,22.13,22.15,22.33,22.29,22.24,22.24,22.06,22.13,22.2,22.15,21.94,21.78,21.72,21.56,21.42,21.51,21.33,21.65,21.76,22.13,22.54,22.7,23.03,23.12,23.22,23.22,23.01,23.26,23.17,23.26,23.26,23.22,23.26,23.08,23.33,22.9,23.12,23.42,23.15,23.24,22.99,23.1,23.22,22.94,23.06,23.01,23.17,23.22,23.24,23.19,23.26,22.97,23.06,23.26,22.97,23.03,23.06,22.99,23.03,23.1,23.06,23.12,23.15,23.15,23.08,23.01,22.97,22.9,23.03,23.03,23.03,22.92,22.74,22.99,22.9,22.83,22.97,22.99,22.99,23.08,22.83,22.85,23.01,23.01,23.01,22.85,22.97,22.94,22.92,22.92,23.01,22.9,22.9,22.92,22.74,22.74,22.6,22.6,22.24,22.33,22.49,22.63,22.47,22.4,22.4,22.35,22.49,22.4,22.4,22.35,22.47,22.51,22.56,22.74,22.65,22.67,22.67,22.7,22.6,22.79,22.63,22.83,22.81,22.54,22.7,22.72,22.81,22.56,22.74,22.67,22.85,22.9,22.67,22.79,22.81,22.74,22.58,22.74,22.76,22.79,22.9,22.92,22.74,22.74,22.9,22.76,22.74,22.81,22.72,22.65,22.7,22.35,22.22,22.04,22.22,22.33,22.7,22.92,22.99,22.92,22.88,22.99,22.99,22.99,23.06,23.03,22.94,22.94,22.99,22.83,22.81,23.01,23.12,23.12,23.08,23.1,23.08,23.1,22.99,23.12,23.17,23.26,23.37,23.1,23.26,23.03,23.1,23.01,23.08,23.26,23.19,23.28,23.15,23.22,23.17,23.24,23.24,23.28,23.26,23.44,23.37,23.42,23.37,23.37,23.46,23.26,23.42,23.33,23.46,23.49,23.31,23.31,23.31,23.42,23.51,23.19,23.24,23.24,23.26,23.42,23.4,23.24,23.22,23.26,23.19,23.26,23.4,23.31,23.1,23.24,23.15,23.28,23.28,23.06,23.19,23.08,23.03,22.79,22.79,22.51,22.26,22.33,22.42,22.7,22.81,22.79,22.67,22.38,22.26,22.31,22.17,22.17,21.83,21.76,21.62,21.49,21.56,21.44,21.4,21.49,21.4,21.69,21.65,21.74,21.72,21.69,21.9,22.01,21.85,22.04,21.81,21.94,22.15,22.13,22.15,22.17,22.04,22.06,22.1,22.29,22.22,22.22,22.17,22.17,22.31,22.29,22.2,22.22,22.22,22.38,22.45,22.31,22.45,22.38,22.47,22.33,22.56,22.54,22.38,22.33,22.38,22.45,22.31,22.35,22.33,22.31,22.31,22.4,22.31,22.29,22.22,22.17,22.31,22.38,22.2,22.35,22.22,22.22,22.33,22.29,22.1,22.24,22.2,22.31,22.22,22.13,22.29,22.17,22.1,22.2,21.94,21.78,21.65,21.46,21.49,21.58,21.65,21.83,22.1,22.31,22.6,22.94,23.03,23.1,23.24,23.26,23.17,23.28,23.37,23.51,23.22,23.12,23.31,23.35,23.31,23.19,23.12,23.24,23.33,23.17,23.06,23.01,23.22,23.1,23.03,23.17,23.19,23.03,23.22,23.24,23.22,23.08,23.03,23.12,23.12,23.08,23.01,23.08,23.1,23.08,23.06,23.12,23.1,23.1,23.1,22.85,22.92,22.81,23.03,22.97,22.99,23.01,22.97,22.9,23.12,23.15,23.15,23.01,23.03,22.97,23.03,22.88,23.06,23.03,23.12,22.97,22.9,22.88,23.08,22.94,23.08,23.31,22.88,23.24,23.06,22.79,22.7,22.47,22.42,22.35,22.29,22.54,22.65,22.24,22.35,22.33,22.38,22.47,22.51,22.33,22.42,22.47,22.4,22.58,22.6,22.65,22.51,22.81,22.56,22.63,22.7,22.63,22.81,22.54,22.72,22.65,22.49,22.6,22.54,22.63,22.7,22.99,22.76,22.72,22.79,22.79,22.72,22.88,22.83,22.88,22.9,22.88,22.81,22.7,22.79,22.67,22.72,22.72,22.65,22.49,22.49,22.31,22.22,21.97,22.17,22.51,22.79,22.79,22.88,22.79,22.85,22.88,22.92,22.97,23.06,22.99,22.94,23.12,22.9,23.03,22.92,23.15,22.9,23.1,23.26,23.33,23.17,23.12,23.01,23.01,23.06,23.1,23.03,23.12,23.12,23.19,23.22,23.01,23.22,23.17,23.26,23.15,23.12,23.15,23.17,23.26,23.26,23.33,23.17,23.28,23.31,23.26,23.31,23.42,23.35,23.22,23.26,23.28,23.31,23.24,23.26,23.17,23.24,23.26,23.35,23.24,23.26,23.19,23.19,23.35,23.33,23.24,23.08,23.24,23.31,23.12,23.26,23.31,23.26,23.19,23.15,23.26,23.31,23.06,23.06,22.92,22.63,22.74,22.49,22.38,22.45,22.33,22.35,22.6,22.49,22.88,22.94,22.72,22.67,22.58,22.4,22.04,22.01,22.04,21.81,21.74,21.65,21.51,21.56,21.49,21.44,21.46,21.44,21.4,21.51,21.46,21.76,21.85,21.62,21.9,21.81,21.92,21.94,22.01,22.06,21.97,22.01,22.08,22.1,22.22,22.1,22.15,22.22,22.22,22.13,22.04,22.06,22.35,22.29,22.38,22.47,22.33,22.31,22.22,22.35,22.24,22.42,22.1,22.31,22.2,22.4,22.4,22.17,22.29,22.29,22.31,22.24,22.35,22.2,21.99,22.08,22.08,22.26,22.2,22.26,22.24,22.22,22.26,22.31,22.26,22.06,22.29,22.15,22.26,22.04,22.22,22.13,22.06,22.24,21.99,21.85,21.62,21.49,21.28,21.26,21.53,21.51,21.81,22.35,22.51,22.74,22.99,23.15,23.22,23.28,23.12,23.19,23.17,23.01,23.35,23.17,23.06,23.28,23.33,23.19,23.19,23.1,23.19,23.19,23.19,22.99,23.17,23.12,23.1,23.1,22.9,23.1,23.28,23.51,23.17,23.15,22.97,23.17,23.19,23.01,22.88,22.99,22.97,23.03,23.03,23.03,23.08,23.06,23.08,23.08,22.83,22.88,23.01,22.94,22.72,22.85,23.03,22.85,22.9,22.97,22.99,22.99,23.15,22.76,22.81,22.9,23.06,22.88,22.97,22.92,23.01,23.12,22.88,22.79,22.92,23.03,22.97,22.94,22.94,23.03,22.72,22.51,22.42,22.4,22.4,22.17,22.42,22.45,22.33,22.26,22.24,22.49,22.38,22.26,22.33,22.33,22.33,22.42,22.54,22.51,22.56,22.49,22.7,22.42,22.67,22.58,22.76,22.67,22.47,22.45,22.33,22.45,22.26,22.58,22.49,22.7,22.65,22.65,22.7,22.74,22.63,22.7,22.79,22.6,22.58,22.76,22.76,22.76,22.74,22.7,22.79,22.6,22.74,22.47,22.49,22.54,22.26,22.01,22.08,22.26,22.54,22.83,22.72,22.83,22.92,22.76,22.85,22.83,22.83,23.06,23.06,22.97,22.88,22.79,22.92,23.1,22.92,22.9,23.19,22.97,22.99,23.08,22.94,22.97,22.97,23.06,23.1,23.06,23.01,22.99,22.97,23.1,23.06,23.08,23.1,22.92,22.92,23.06,23.08,23.12,23.31,23.15,23.1,23.06,23.22,23.19,23.26,23.31,23.31,23.46,23.1,23.15,23.19,23.46,23.31,22.99,23.24,23.33,23.26,23.31,23.17,23.31,23.19,23.31,23.15,23.12,23.26,23.12,23.28,23.26,23.24,23.19,23.17,22.94,23.24,23.19,23.08,23.03,23.03,22.97,22.88,22.72,22.31,22.63,22.22,22.31,22.42,22.54,22.72,22.83,23.01,22.99,22.83,22.97,22.81,22.56,22.4,22.35,22.06,22.13,22.04,21.62,21.74,21.6,21.67,21.56,21.42,21.37,21.26,21.35,21.44,21.42,21.65,21.46,21.65,21.65,21.74,21.88,21.83,21.85,21.85,21.85,22.04,21.92,22.17,22.17,22.15,22.2,22.13,22.1,22.01,22.29,22.06,22.13,22.13,22.29,22.35,22.35,22.06,22.35,22.26,22.26,22.38,22.29,22.2,22.2,22.26,22.15,22.24,22.17,22.33,22.4,22.13,22.15,22.17,22.17,22.08,22.22,22.06,22.06,22.15,22.17,22.1,22.22,22.22,22.06,22.1,22.15,22.1,21.9,22.13,21.81,21.97,21.78,21.72,21.81,21.72,21.3,21.17,21.3,21.3,21.42,21.72,22.42,22.58,22.7,22.99,22.97,23.24,23.19,23.15,23.17,23.15,23.1,23.15,23.26,23.22,23.19,23.12,23.08,23.06,23.06,23.03,23.03,23.03,23.24,23.01,23.01,23.15,22.9,23.15,23.08,23.1,23.1,23.03,23.08,22.94,22.83,22.97,23.03,23.03,23.12,22.99,22.76,23.12,23.03,23.06,23.08,23.01,22.88,22.74,22.83,22.76,22.9,22.81,23.01,22.9,22.88,22.85,22.9,22.94,23.01,23.01,22.79,22.79,22.81,22.99,22.94,22.97,23.03,22.76,22.9,22.85,22.88,22.92,22.9,22.9,23.06,22.79,22.58,22.54,22.42,22.29,22.29,22.31,22.2,22.31,22.31,21.92,22.26,22.35,22.47,22.17,22.35,22.38,22.38,22.4,22.45,22.29,22.58,22.38,22.47,22.4,22.4,22.54,22.65,22.7,22.58,22.51,22.6,22.58,22.58,22.26,22.6,22.6,22.67,22.58,22.6,22.79,22.9,22.63,22.56,22.56,22.65,22.45,22.79,22.7,22.51,22.7,22.58,22.7,22.49,22.54,22.47,22.51,22.24,22.01,21.74,22.04,22.1,22.67,22.85,22.72,22.88,22.97,22.99,22.97,22.81,22.6,22.81,22.83,22.94,22.83,22.74,22.97,22.92,23.17,22.94,22.92,22.99,23.08,23.08,23.1,22.92,23.15,22.99,23.01,22.99,23.08,23.03,23.03,23.03,22.99,22.99,23.17,22.9,23.01,22.99,23.12,23.12,22.83,23.17,23.28,23.22,23.28,23.4,23.24,23.22,23.4,23.22,23.12,23.26,23.17,23.12,23.26,23.22,23.17,23.26,23.24,23.31,23.15,23.15,23.08,23.26,23.28,23.19,23.15,23.03,23.33,23.24,23.31,23.28,23.08,23.06,23.17,23.12,23.01,23.06,23.06,22.81,22.81,22.67,22.42,22.35,22.22,22.35,22.45,22.63,22.79,22.81,23.12,23.08,22.88,22.97,23.06,22.94,22.7,22.79,22.65,22.33,21.94,21.92,22.04,21.56,21.85,21.69,21.4,21.37,21.49,21.35,21.3,21.28,21.62,21.23,21.4,21.4,21.74,21.72,21.76,21.67,21.69,21.76,22.08,21.99,22.15,22.04,22.04,22.15,22.06,22.2,21.99,22.22,22.24,22.15,22.1,22.24,22.15,22.31,22.04,22.22,22.26,22.29,22.15,22.26,22.38,22.13,22.29,22.17,22.2,22.26,22.31,22.2,22.24,22.2,22.1,22.13,22.15,22.13,22.24,22.15,22.24,22.13,22.1,22.26,22.06,21.9,22.1,22.1,22.13,22.08,22.08,21.99,21.92,21.88,21.74,21.56,21.49,21.26,21.33,21.21,21.4,21.72,21.99,22.38,22.74,22.85,22.99,23.08,23.26,23.1,23.12,23.08,23.15,22.99,23.06,23.06,23.15,23.12,23.06,22.92,23.08,22.85,23.03,22.99,22.92,23.1,22.83,22.85,23.03,22.94,22.92,22.9,22.99,23.17,23.06,22.92,23.06,22.9,22.97,22.79,22.85,22.79,23.03,23.01,22.99,22.92,22.81,22.92,22.94,22.92,22.67,22.85,22.92,22.79,22.76,22.92,22.79,22.85,22.6,22.76,22.79,22.97,22.9,22.81,22.51,22.9,23.01,22.74,23.08,22.92,22.81,22.79,22.9,22.85,23.06,22.72,22.83,22.92,22.72,22.74,22.42,22.31,22.33,22.22,22.31,22.17,22.35,22.33,22.35,22.33,22.38,22.47,22.42,22.45,22.31,22.65,22.47,22.4,22.63,22.58,22.67,22.4,22.65,22.7,22.63,22.65,22.54,22.65,22.6,22.76,22.56,22.58,22.54,22.56,22.74,22.79,22.67,22.7,22.72,22.81,22.92,22.67,22.74,22.81,22.7,22.76,22.88,22.88,22.65,22.49,22.56,22.63,22.76,22.54,22.47,22.38,22.08,22.08,21.92,22.26,22.9,22.85,22.81,23.06,23.08,22.81,22.92,22.81,22.94,22.94,22.94,22.97,22.85,22.83,23.06,22.92,23.24,23.03,22.94,23.06,23.1,23.17,23.22,23.03,23.15,23.1,23.08,23.1,23.06,23.08,23.33,23.15,23.08,23.08,23.03,23.1,23.01,23.1,23.31,23.22,23.06,23.4,23.28,23.35,23.4,23.4,23.15,23.28,23.26,23.28,23.37,23.4,23.37,23.35,23.35,23.26,23.22,23.1,23.28,23.33,23.15,23.26,23.19,23.33,23.28,23.33,23.17,23.12,23.35,23.28,23.37,23.31,23.26,23.31,23.26,23.22,23.1,23.15,23.06,22.9,22.85,22.65,22.54,22.31,22.26,22.42,22.6,22.81,23.26,23.17,23.19,23.4,23.12,23.19,23.37,23.08,23.03,22.92,22.79,22.58,22.74,22.49,22.33,22.1,22.17,21.83,21.74,21.53,21.37,21.53,21.53,21.42,21.42,21.44,21.42,21.35,21.65,21.65,21.62,21.83,21.76,21.92,21.99,21.94,21.97,22.04,22.04,22.13,22.17,22.22,21.99,22.33,22.35,22.2,22.2,22.33,22.17,22.26,22.24,22.24,22.51,22.2,22.33,22.22,22.35,22.29,22.31,22.06,22.24,22.31,22.45,22.29,22.29,22.13,22.1,22.26,22.24,22.2,22.29,22.17,22.08,22.17,22.22,22.26,22.1,21.97,22.15,22.22,22.1,22.08,22.04,22.01,22.1,21.99,21.72,21.56,21.46,21.4,21.3,21.44,21.85,21.92,22.35,22.7,22.94,23.1,22.99,23.28,23.31,23.19,23.19,23.1,23.24,23.17,23.22,23.26,23.12,23.24,23.15,23.17,23.12,22.99,23.15,22.9,23.15,23.08,23.06,23.12,22.99,22.99,23.03,22.85,23.01,23.15,23.24,23.08,22.92,22.94,23.08,22.92,22.9,23.08,23.08,22.99,23.01,22.9,23.08,23.08,23.1,23.03,23.08,22.88,23.01,22.81,23.03,23.03,22.81,22.65,22.92,22.92,22.99,23.15,22.88,22.92,22.79,23.01,23.1,22.94,22.92,23.06,22.99,22.9,22.88,22.99,22.99,22.76,22.88,22.79,22.76,22.7,22.51,22.26,22.26,22.4,22.38,22.17,22.38,22.47,22.33,22.49,22.24,22.17,22.38,22.4,22.26,22.47,22.42,22.51,22.6,22.6,22.7,22.58,22.51,22.63,22.49,22.79,22.65,22.63,22.56,22.76,22.65,22.76,22.24,22.56,22.63,22.67,22.76,22.79,22.81,22.83,22.83,22.65,22.74,22.63,22.79,22.7,22.83,22.7,22.85,22.72,22.74,22.63,22.51,22.65,22.38,22.2,21.97,22.2,22.15,22.54,22.72,22.79,22.9,23.06,23.06,23.12,22.94,22.9,22.83,23.01,23.03,22.92,22.76,22.92,23.01,22.92,23.24,23.12,23.01,22.97,22.92,22.99,23.17,23.03,23.22,22.99,23.01,23.01,22.99,23.19,23.01,23.12,23.19,23.08,23.06,23.06,22.94,23.12,23.15,23.31,23.28,23.4,23.17,23.17,23.4,23.31,23.15,23.19,23.26,23.28,23.26,23.33,23.31,23.28,23.31,23.31,23.24,23.31,23.26,23.19,23.26,23.31,23.17,23.4,23.4,23.4,23.24,23.31,23.31,23.37,23.37,23.26,23.22,23.08,23.22,23.17,23.12,23.26,22.97,22.9,22.51,22.63,22.33,22.4,22.24,22.54,22.7,22.94,23.19,23.08,23.26,23.22,23.17,23.17,23.19,23.17,23.1,23.12,23.08,23.08,22.85,22.7,22.74,22.45,22.42,22.01,22.04,21.97,21.72,21.69,21.49,21.49,21.53,21.42,21.56,21.35,21.62,21.49,21.58,21.78,21.78,21.53,21.67,21.85,21.85,21.97,22.08,22.08,22.08,22.22,22.13,22.29,22.01,22.04,22.29,22.24,22.08,22.22,22.24,22.24,22.29,22.24,22.15,22.26,22.1,22.22,22.24,22.17,22.1,22.22,22.26,22.29,22.06,22.22,22.08,22.35,22.29,22.17,22.13,22.24,22.35,22.1,22.29,22.24,22.13,21.85,22.13,22.08,22.06,21.9,22.1,21.99,21.97,21.99,21.62,21.56,21.42,21.37,21.4,21.58,21.74,22.1,22.63,22.7,22.99,23.12,23.15,23.19,23.26,23.26,23.12,23.22,23.31,23.22,23.22,23.15,23.17,23.06,23.22,23.1,23.15,23.17,23.15,23.03,22.92,23.12,23.08,23.03,22.97,23.06,22.99,22.9,23.01,23.12,23.12,23.12,22.97,23.03,22.99,22.99,22.99,22.88,23.08,22.99,22.9,22.92,22.85,22.99,23.01,22.99,22.9,22.9,22.9,22.92,22.81,23.01,22.94,22.92,22.92,22.79,22.81,23.01,22.92,22.76,22.81,23.06,22.85,22.83,22.88,22.85,22.9,22.92,22.81,22.97,22.74,22.74,22.9,22.81,22.74,22.51,22.26,22.29,22.35,22.49,22.35,22.24,22.51,22.49,22.26,22.31,22.49,22.29,22.15,22.24,22.47,22.4,22.7,22.4,22.47,22.56,22.74,22.6,22.58,22.45,22.54,22.7,22.54,22.67,22.63,22.67,22.63,22.7,22.7,22.63,22.79,22.67,22.74,22.67,22.79,22.67,22.74,22.79,22.72,22.72,22.6,22.67,22.65,22.79,22.79,22.58,22.65,22.74,22.47,22.54,22.42,22.08,21.92,22.08,22.15,22.56,22.88,22.9,23.01,22.94,22.88,22.85,23.01,23.06,22.94,22.99,22.9,22.74,23.01,22.99,22.94,22.92,23.08,23.26,22.99,23.03,23.15,23.12,23.08,23.1,23.19,23.12,23.19,23.12,23.12,23.17,23.1,23.08,23.08,23.12,22.9,23.12,23.1,23.08,23.15,23.19,23.15,23.28,23.1,23.03,23.26,23.12,23.24,23.26,23.1,23.4,23.28,23.12,23.33,23.28,23.35,23.24,23.19,23.28,23.28,23.19,23.17,23.03,23.01,23.12,23.28,23.33,23.26,23.37,23.28,23.15,23.26,23.08,23.26,23.12,23.35,23.15,22.94,23.22,23.03,22.88,22.45,22.42,22.33,22.2,22.47,22.76,22.85,22.99,23.08,23.1,23.22,23.33,23.26,23.24,23.24,23.17,23.22,23.22,23.19,23.19,23.06,23.08,22.92,22.76,22.7,22.38,22.24,22.06,22.01,21.9,21.83,21.62,21.53,21.51,21.49,21.42,21.49,21.58,21.33,21.65,21.65,21.56,21.62,21.76,21.88,21.92,21.88,21.88,22.06,21.99,22.04,22.24,21.97,22.15,22.15,22.26,22.26,22.22,22.29,22.22,22.1,22.13,22.15,22.13,22.13,22.24,22.01,22.35,22.17,22.17,22.42,22.31,22.22,22.17,21.97,22.29,22.29,22.15,22.13,22.13,22.15,22.13,22.15,22.1,22.15,21.92,22.08,22.17,22.06,22.01,22.04,21.74,21.83,21.81,21.6,21.56,21.37,21.33,21.49,21.49,21.9,22.13,22.6,22.74,23.08,23.06,22.99,23.08,23.22,23.22,23.15,23.17,23.24,23.15,23.1,23.26,23.17,23.06,23.24,23.24,23.1,23.08,22.99,22.99,23.12,23.1,23.06,23.03,22.9,22.97,23.03,22.97,23.06,23.08,23.08,23.12,23.12,22.92,22.99,22.94,22.76,22.97,22.97,23.1,22.92,22.99,22.79,22.85,22.97,23.08,22.83,22.83,22.92,22.9,22.81,22.88,22.9,22.9,22.79,22.83,22.85,22.83,22.9,22.74,22.88,22.9,23.06,22.88,22.97,22.92,22.85,22.88,22.9,22.88,22.81,22.7,22.94,22.7,22.65,22.51,22.2,22.22,22.29,22.54,22.38,22.51,22.51,22.22,22.22,22.51,22.29,22.33,22.49,22.24,22.29,22.38,22.49,22.26,22.54,22.4,22.42,22.29,22.79,22.67,22.76,22.63,22.49,22.54,22.67,22.74,22.74,22.72,22.65,22.47,22.56,22.72,22.63,22.74,22.83,22.9,22.72,22.63,22.76,22.72,22.63,22.72,22.7,22.72,22.7,22.63,22.51,22.47,22.4,22.38,22.42,22.15,22.1,22.2,22.35,22.63,22.79,23.01,22.72,22.97,22.88,22.83,22.74,22.76,22.85,22.88,22.94,22.88,23.01,22.92,23.06,22.99,23.08,23.15,23.1,22.99,23.06,23.03,23.03,23.01,23.01,23.28,23.06,22.99,23.15,23.06,23.1,23.17,23.06,23.12,22.94,23.24,23.24,23.17,23.22,23.17,23.12,23.24,22.99,23.24,23.44,23.44,23.24,23.22,23.08,23.33,23.17,23.31,23.28,23.37,23.37,23.12,23.08,23.19,23.17,23.15,23.1,23.03,23.28,23.42,23.22,23.33,23.26,23.31,23.22,23.37,23.28,23.28,23.31,22.97,23.24,23.01,22.99,23.19,22.81,22.83,22.47,22.4,22.13,22.51,22.47,22.81,23.06,23.1,23.06,23.12,23.17,23.33,23.31,23.17,23.19,23.24,23.08,23.28,23.01,23.24,23.12,23.22,22.99,22.94,23.01,22.79,22.58,22.49,22.26,22.04,22.04,21.78,21.9,21.65,21.78,21.46,21.58,21.65,21.51,21.49,21.56,21.58,21.4,21.58,21.81,21.83,21.85,21.97,21.67,21.94,22.04,21.99,22.06,22.01,22.06,22.15,22.06,22.22,22.04,22.06,22.15,22.2,22.24,22.15,21.99,22.08,22.13,22.17,22.1,22.15,22.31,22.17,22.1,22.13,22.2,22.17,22.2,22.1,21.99,22.01,22.17,22.17,22.17,22.24,22.13,22.17,22.13,22.01,22.06,21.97,21.85,21.9,21.85,21.62,21.53,21.35,21.46,21.33,21.58,21.6,22.08,22.54,22.81,22.83,23.22,23.19,23.08,23.01,23.28,23.31,23.22,23.1,23.19,23.17,23.12,23.33,23.08,23.1,23.1,23.08,23.03,22.97,23.12,22.97,23.19,23.12,23.06,23.1,23.08,22.97,22.88,22.99,23.17,23.15,23.22,23.08,22.92,22.99,23.01,23.01,22.92,23.01,23.03,23.06,22.92,23.12,23.08,22.92,22.88,22.99,22.85,22.92,22.85,22.94,22.76,22.85,22.79,22.9,22.81,23.01,23.01,22.99,22.85,22.56,22.83,22.94,22.85,22.9,22.94,22.94,22.88,22.92,22.85,22.88,22.88,22.92,22.88,22.74,22.6,22.31,22.29,22.33,22.35,22.47,22.42,22.38,22.6,22.49,22.31,22.45,22.26,22.42,22.47,22.29,22.31,22.38,22.72,22.51,22.67,22.54,22.38,22.24,22.85,22.72,22.83,22.81,22.6,22.58,22.58,22.58,22.49,22.67,22.47,22.58,22.65,22.65,22.72,22.6,22.88,22.88,22.7,22.6,22.67,22.74,22.7,22.6,22.63,22.67,22.88,22.79,22.85,22.65,22.54,22.54,22.31,22.15,22.1,22.26,22.38,22.76,22.9,22.97,22.94,22.9,22.94,22.85,22.94,22.99,22.99,23.03,22.81,22.9,22.97,22.81,23.06,22.94,23.1,23.12,23.15,23.06,22.92,23.1,23.19,23.15,23.03,23.17,23.12,23.33,23.22,23.22,23.12,23.08,23.08,23.22,22.97,22.9,23.06,23.33,23.24,23.26,23.17,23.26,23.19,23.15,23.35,23.31,23.12,23.01,23.19,23.44,23.24,23.44,23.37,23.42,23.31,23.19,23.17,23.24,23.12,23.31,23.22,23.15,23.31,23.4,23.31,23.33,23.28,23.31,23.26,23.28,23.4,23.19,23.19,23.08,23.26,23.1,23.24,23.08,22.9,22.74,22.63,22.33,22.22,22.54,22.67,23.01,23.28,23.01,23.1,23.35,23.35,23.44,23.37,23.26,23.55,23.26,23.28,23.31,23.06,23.31,23.26,23.26,23.19,23.24,23.17,23.06,22.92,22.9,22.79,22.56,22.49,22.06,22.24,22.1,21.76,21.74,21.85,21.88,21.78,21.62,21.62,21.6,21.6,21.51,21.58,21.6,21.56,21.74,21.74,21.85,21.78,21.81,21.9,21.99,21.97,22.1,22.01,22.2,22.17,22.24,22.06,22.22,22.1,22.15,22.1,22.1,22.22,22.1,22.2,22.01,22.22,22.15,22.13,22.15,22.01,22.04,22.31,22.17,21.99,22.1,22.08,22.2,22.06,22.2,22.17,22.08,22.08,22.13,22.17,21.85,22.06,21.92,21.92,21.65,21.33,21.35,21.33,21.44,21.65,21.78,22.42,22.58,22.88,23.03,23.19,23.22,23.08,22.94,23.33,23.17,23.19,23.19,23.17,23.28,23.15,23.28,23.17,23.12,23.03,23.17,23.1,23.17,23.26,23.22,23.17,23.12,23.03,23.12,22.94,23.1,23.03,23.03,23.1,23.03,23.03,22.99,23.12,22.97,22.92,23.03,22.88,22.9,22.9,23.12,22.97,23.26,23.03,23.06,23.22,22.79,22.74,22.85,22.76,22.94,22.9,22.85,22.79,22.88,22.88,23.01,23.26,22.92,22.94,22.76,22.79,22.94,22.88,22.81,23.06,22.99,22.97,23.15,23.03,22.92,23.03,22.94,22.83,22.79,22.7,22.22,22.24,22.35,22.54,22.58,22.38,22.38,22.47,22.2,22.4,22.51,22.31,22.45,22.29,22.42,22.26,22.58,22.54,22.56,22.65,22.6,22.63,22.63,22.7,22.63,22.81,22.72,22.67,22.65,22.65,22.63,22.74,22.65,22.58,22.65,22.79,22.63,22.74,22.74,22.7,22.72,22.67,22.65,22.83,22.7,22.65,22.65,22.7,22.85,22.85,22.72,22.65,22.49,22.47,22.2,22.22,22.2,22.1,22.38,22.67,23.08,22.81,22.92,23.08,23.03,22.92,22.79,22.9,22.94,22.92,22.99,23.06,22.92,23.01,22.94,23.03,22.94,22.99,22.94,23.01,23.06,22.99,23.1,23.01,23.01,23.08,22.97,23.17,23.28,23.35,23.24,23.15,23.08,23.12,23.17,23.17,23.1,23.15,23.26,23.17,23.22,23.24,23.15,23.22,23.31,23.4,23.19,23.17,23.24,23.22,23.4,23.37,23.37,23.37,23.37,23.31,23.28,23.26,23.31,23.26,23.17,23.24,23.19,23.24,23.49,23.31,23.35,23.33,23.28,23.26,23.28,23.35,23.35,23.35,23.08,23.26,23.24,23.1,22.94,22.94,22.72,22.7,22.31,22.31,22.63,22.79,23.01,23.22,23.17,23.19,23.26,23.35,23.31,23.33,23.37,23.42,23.35,23.12,23.31,23.33,23.42,23.35,23.19,23.22,23.17,23.24,23.28,23.19,23.17,23.03,23.08,22.74,22.63,22.51,22.17,22.1,22.17,21.9,21.94,21.85,21.83,21.65,21.65,21.56,21.51,21.4,21.49,21.46,21.67,21.67,21.83,21.85,21.88,21.88,21.94,22.04,22.01,22.01,22.01,22.17,22.15,22.01,21.97,22.24,22.13,22.08,22.31,22.17,22.15,22.1,22.08,22.06,22.13,22.15,22.01,21.99,22.2,22.06,22.08,22.08,22.1,22.08,22.1,21.97,22.15,22.1,22.1,22.17,22.1,22.08,21.81,21.97,21.72,21.83,21.6,21.56,21.35,21.35,21.46,21.72,22.1,22.35,22.7,23.01,23.19,23.17,23.26,23.22,23.17,23.19,23.51,23.15,23.26,23.17,23.19,23.15,23.15,22.99,23.1,23.17,23.19,23.06,22.99,23.15,23.15,23.1,23.1,23.06,22.92,23.01,22.94,22.99,23.12,23.03,23.12,23.08,23.12,23.1,22.94,22.94,22.92,22.9,22.88,23.01,23.12,23.15,23.1,22.88,22.99,23.17,22.83,22.85,22.81,22.88,23.06,22.92,22.94,22.81,22.9,22.9,22.9,22.88,23.01,22.88,22.92,22.85,22.76,22.97,22.94,23.01,22.92,22.9,22.97,22.94,22.9,23.06,22.85,22.88,22.83,22.45,22.2,22.22,22.22,22.51,22.6,22.2,22.38,22.49,22.38,22.38,22.58,22.38,22.35,22.33,22.45,22.35,22.49,22.6,22.51,22.63,22.76,22.65,22.51,22.7,22.51,22.85,22.6,22.58,22.56,22.54,22.74,22.74,22.76,22.56,22.76,22.7,22.83,22.85,22.72,22.81,22.76,22.72,22.63,22.67,22.54,22.81,22.56,22.88,22.81,22.74,22.74,22.65,22.56,22.7,22.22,22.26,22.29,22.2,22.54,22.79,22.7,22.97,23.08,23.08,22.97,23.1,22.88,22.94,22.92,22.88,22.92,22.85,22.97,22.79,22.92,22.92,23.01,23.08,23.01,23.08,23.1,23.19,23.1,23.08,23.17,23.17,23.12,23.12,23.12,23.15,23.1,23.19,23.08,22.94,23.22,23.24,22.85,23.15,23.06,23.17,23.28,23.28,23.17,23.28,23.28,23.49,23.26,23.28,23.33,23.19,23.46,23.31,23.15,23.31,23.26,23.19,23.22,23.28,23.08,23.24,23.35,23.26,23.37,23.24,23.35,23.26,23.28,23.26,23.12,23.22,23.19,23.19,23.24,23.24,23.24,23.15,23.1,23.08,22.99,22.83,22.65,22.35,22.45,22.38,22.79,22.88,23.12,23.17,23.24,23.28,23.24,23.33,23.37,23.19,23.33,23.4,23.42,23.17,23.28,23.28,23.22,23.26,23.24,23.1,23.37,23.24,23.15,23.31,23.03,23.12,23.06,22.88,22.92,23.08,22.58,22.47,22.47,22.24,22.4,22.15,21.81,21.6,21.58,21.65,21.78,21.58,21.62,21.56,21.65,21.58,21.72,21.69,21.67,21.83,21.83,21.97,22.06,21.9,21.94,21.97,22.08,22.15,22.01,22.13,22.15,22.17,22.13,22.06,22.01,22.1,22.13,22.1,22.15,22.1,22.06,22.1,22.08,22.06,22.06,21.99,22.15,22.17,22.17,22.31,22.1,21.99,21.85,22.15,21.92,22.24,21.9,21.9,21.6,21.81,21.56,21.44,21.3,21.4,21.67,21.81,22.29,22.42,22.72,23.03,23.26,23.22,23.24,23.28,23.31,23.17,23.31,23.1,23.17,23.19,23.17,23.08,23.26,23.08,23.22,23.26,23.19,23.1,23.01,23.03,23.12,23.03,23.1,23.1,22.9,23.06,23.06,23.1,23.12,22.94,23.19,22.92,23.03,22.85,23.08,23.06,23.01,23.12,22.9,22.94,23.15,23.01,23.06,22.9,22.97,23.03,23.06,22.88,22.76,22.94,23.01,22.9,22.81,22.97,22.83,22.94,22.83,22.9,22.99,22.92,22.88,22.92,22.76,22.9,22.9,22.97,22.79,22.99,22.97,22.88,22.74,22.97,22.85,22.67,22.45,22.24,22.26,22.22,22.4,22.63,22.63,22.2,22.33,22.24,22.54,22.24,22.47,22.51,22.35,22.45,22.33,22.4,22.26,22.26,22.49,22.56,22.45,22.51,22.51,22.63,22.47,22.83,22.58,22.58,22.6,22.6,22.7,22.6,22.7,22.6,22.45,22.79,22.72,22.72,22.72,22.83,22.67,22.79,22.7,22.67,22.7,22.65,22.74,22.76,22.65,22.67,22.74,22.7,22.72,22.29,22.33,22.22,22.2,22.22,22.67,22.72,22.88,22.9,22.88,22.97,22.9,23.03,22.79,22.85,22.9,22.76,22.94,22.92,22.97,22.76,22.92,22.92,23.01,23.15,22.97,22.99,22.85,23.01,22.94,23.01,23.06,23.15,22.99,23.08,23.01,22.94,23.15,23.08,23.15,23.1,23.12,23.24,23.03,23.08,23.01,23.33,23.19,23.42,23.15,23.28,23.26,23.46,23.26,23.26,23.12,22.92,23.31,23.15,23.24,23.26,23.17,23.19,23.12,23.31,23.1,23.19,23.17,23.12,23.17,23.08,23.26,23.19,23.12,23.08,23.19,23.35,23.22,23.06,23.24,23.24,23.17,23.15,23.12,23.01,22.92,22.79,22.56,22.4,22.29,22.4,22.72,23.01,23.08,23.26,23.28,23.31,23.33,23.22,23.31,23.1,23.22,23.1,23.26,23.15,23.12,23.22,23.26,23.22,23.26,23.15,23.22,23.08,23.15,23.24,23.1,23.17,23.22,23.06,22.97,22.99,23.03,22.88,22.81,22.54,22.42,22.33,22.2,21.85,21.72,21.72,21.78,21.67,21.56,21.56,21.46,21.51,21.65,21.58,21.44,21.56,21.88,21.88,21.83,21.65,21.83,21.88,22.01,22.13,21.88,22.06,21.88,21.97,21.88,22.01,22.01,22.1,21.99,22.08,21.97,22.06,21.99,22.04,22.1,21.88,21.9,22.08,22.15,21.97,21.97,22.13,22.1,22.06,21.97,22.04,22.04,22.01,21.78,21.78,21.58,21.49,21.4,21.4,21.37,21.58,21.67,21.92,22.38,22.65,23.03,22.97,23.19,23.26,23.22,23.19,23.01,23.17,23.26,23.03,23.19,23.17,23.15,23.12,23.26,23.22,23.1,23.01,23.12,23.01,23.08,22.97,23.03,23.1,23.1,23.08,23.12,23.03,22.92,22.99,23.03,22.94,22.97,23.01,23.06,22.92,22.81,22.92,22.9,22.94,22.81,22.74,23.08,22.92,22.85,22.9,23.01,22.99,22.88,22.92,22.81,22.88,22.72,22.76,22.72,22.81,22.83,22.56,22.79,22.97,22.85,22.76,22.88,22.74,22.81,22.79,22.79,23.12,22.97,22.76,22.97,22.81,22.76,22.83,22.72,22.15,22.38,22.26,22.1,22.15,22.58,22.74,22.54,22.31,22.63,22.38,22.49,22.42,22.33,22.24,22.51,22.26,22.38,22.29,22.4,22.4,22.42,22.56,22.45,22.65,22.58,22.51,22.65,22.72,22.63,22.65,22.74,22.63,22.74,22.72,22.67,22.65,22.6,22.76,22.65,22.85,22.58,22.85,22.72,22.83,22.67,22.65,22.7,22.76,22.58,22.67,22.67,22.65,22.67,22.6,22.35,22.35,22.26,22.29,22.33,22.45,22.79,22.65,23.01,22.74,22.88,22.92,22.9,23.01,22.81,22.94,22.76,22.94,22.94,23.06,22.81,22.72,22.81,22.88,23.01,23.01,23.01,22.97,23.06,23.06,22.92,23.19,22.99,23.15,23.08,23.22,23.03,22.99,23.08,23.1,23.1,23.15,23.08,23.22,22.99,23.06,23.1,23.15,23.24,23.28,23.17,23.22,23.15,23.24,23.28,23.33,23.1,22.97,23.33,23.17,23.15,23.06,23.24,23.24,23.26,23.37,23.08,23.22,23.24,23.19,23.03,23.1,23.35,23.26,23.15,23.03,23.22,23.12,23.12,23.31,23.17,23.12,23.12,23.12,23.1,22.99,22.88,22.65,22.47,22.54,22.4,22.47,22.74,22.99,23.03,23.19,23.31,23.31,23.22,23.33,23.4,23.35,23.28,23.15,23.15,23.17,23.4,23.31,23.33,23.28,23.24,23.35,23.03,23.26,23.28,23.19,23.35,23.33,23.08,23.12,23.12,23.08,22.99,23.19,22.79,22.9,22.79,22.63,22.42,22.1,21.99,21.88,21.9,21.74,21.58,21.58,21.46,21.56,21.21,21.51,21.51,21.44,21.51,21.72,21.76,21.74,21.74,21.67,21.72,21.81,21.88,21.83,21.97,21.94,21.83,22.22,22.15,21.97,22.06,22.08,22.2,22.1,21.99,21.92,22.1,21.94,21.99,21.99,22.13,22.06,22.04,22.04,22.13,21.99,21.97,22.06,22.01,22.1,21.72,21.85,21.56,21.58,21.4,21.33,21.42,21.76,21.81,22.24,22.35,22.74,23.1,23.08,23.24,23.35,23.22,23.15,23.22,23.31,23.4,23.24,23.26,23.28,23.12,23.15,23.12,23.06,23.19,23.03,23.1,22.88,22.97,23.22,23.12,23.08,22.97,22.85,22.94,22.94,23.03,22.92,22.97,23.1,23.15,22.99,23.01,22.9,22.88,23.01,23.06,22.92,22.99,22.99,23.03,23.06,23.1,22.94,23.08,23.08,22.83,22.83,22.94,22.92,22.92,22.67,22.88,22.72,22.76,22.6,22.81,22.9,22.99,22.88,22.81,22.85,22.72,22.72,22.9,22.85,23.01,22.92,22.88,22.74,22.92,22.94,22.65,22.6,22.35,22.13,22.22,22.33,22.6,22.9,22.83,22.54,22.6,22.38,22.42,22.45,22.38,22.35,22.56,22.4,22.4,22.4,22.47,22.6,22.49,22.67,22.54,22.67,22.6,22.6,22.63,22.72,22.83,22.85,22.6,22.76,22.63,22.63,22.7,22.7,22.58,22.65,22.76,22.83,22.67,22.81,22.76,22.83,22.6,22.72,22.85,22.74,22.88,22.65,22.81,22.76,22.74,22.65,22.47,22.35,22.29,22.4,22.42,22.76,22.74,23.01,22.94,23.03,22.97,22.81,22.85,23.15,23.08,22.99,22.94,23.03,23.03,23.03,22.97,22.99,22.94,22.97,22.92,23.03,22.99,23.06,23.17,23.08,23.12,23.08,22.88,23.1,23.15,23.1,23.15,22.99,23.22,23.12,23.08,23.19,23.08,23.08,23.08,23.17,23.26,23.08,23.31,23.26,23.17,23.15,23.12,23.37,23.28,23.42,23.17,23.19,23.24,23.12,23.26,23.22,23.35,23.15,23.28,23.08,23.03,23.33,23.15,23.06,23.12,23.12,23.31,23.17,23.22,23.35,23.24,23.26,23.22,23.46,23.28,23.15,23.08,23.24,23.15,22.99,22.83,22.72,22.65,22.49,22.29,22.47,22.94,23.08,23.28,23.31,23.33,23.37,23.17,23.33,23.44,23.31,23.53,23.35,23.53,23.22,23.24,23.4,23.35,23.4,23.22,23.44,23.26,23.33,23.22,23.31,23.24,23.46,23.28,23.01,23.35,23.15,23.15,23.1,23.01,22.94,22.94,23.03,22.74,22.42,22.31,22.4,22.29,22.01,21.94,21.81,21.67,21.65,21.56,21.6,21.53,21.53,21.53,21.6,21.74,21.65,21.65,21.74,21.78,21.85,21.94,21.92,21.97,21.92,21.97,21.97,21.97,22.13,22.04,22.06,21.97,22.13,22.01,22.06,22.17,21.83,21.9,21.9,21.97,22.1,22.04,22.01,22.04,22.15,22.1,22.01,22.13,21.97,21.67,21.65,21.46,21.53,21.44,21.53,21.58,21.74,22.01,22.38,22.74,23.12,23.08,23.1,23.24,23.31,23.24,23.12,23.1,23.4,23.26,23.33,23.28,23.19,23.19,23.26,23.26,23.08,23.24,23.19,23.08,23.01,22.97,23.12,23.24,23.12,22.99,22.85,22.81,22.92,22.85,23.03,23.06,23.17,23.26,22.92,23.03,23.22,23.1,22.94,23.06,22.99,22.9,23.01,22.99,23.03,23.22,22.99,22.92,23.24,23.15,23.01,22.97,22.92,22.85,22.88,22.92,22.9,22.72,22.7,22.85,22.92,22.97,22.92,22.81,22.83,22.74,22.97,22.94,23.1,22.99,22.85,22.76,22.79,22.74,22.79,22.74,22.42,22.42,22.22,22.33,22.56,22.63,22.97,22.88,22.31,22.15,22.26,22.33,22.35,22.4,22.31,22.33,22.49,22.31,22.29,22.49,22.47,22.58,22.58,22.51,22.56,22.6,22.7,22.72,22.63,22.65,22.6,22.81,22.56,22.88,22.58,22.65,22.56,22.7,22.92,22.67,22.67,22.74,22.7,22.9,22.85,22.72,22.6,22.67,22.79,22.65,22.7,22.63,22.58,22.54,22.6,22.6,22.17,22.26,22.35,22.42,22.51,22.74,22.94,22.97,22.79,23.03,22.81,22.81,22.97,22.99,23.12,23.01,23.06,23.12,23.06,22.83,22.94,22.9,23.12,22.99,23.01,22.97,23.15,22.99,23.03,23.1,23.12,23.1,23.06,23.12,23.08,23.03,23.06,23.22,23.1,23.08,23.03,23.03,23.22,22.99,23.1,23.19,23.31,23.22,23.26,23.26,23.42,23.15,23.19,23.17,23.08,23.24,23.22,23.26,23.17,23.1,23.35,23.33,23.31,23.06,23.19,23.06,23.08,23.24,23.12,23.28,23.28,23.17,23.17,23.22,23.1,23.24,23.28,23.19,23.22,23.26,23.28,22.97,23.17,22.97,22.83,22.74,22.49,22.49,22.51,22.49,22.7,22.92,23.12,23.08,23.26,23.28,23.31,23.22,23.08,23.46,23.26,23.24,23.17,23.35,23.22,23.35,23.19,23.42,23.35,23.28,23.15,23.1,23.33,23.08,23.26,23.26,23.22,23.15,22.97,23.1,23.33,23.22,23.01,23.1,23.01,23.15,23.06,22.9,22.76,22.58,22.47,22.33,22.13,22.13,21.94,21.78,21.72,21.69,21.53,21.6,21.49,21.42,21.51,21.6,21.58,21.44,21.65,21.58,21.69,21.65,21.83,21.78,21.83,21.97,21.92,22.04,22.06,22.13,22.06,21.99,22.04,21.99,22.01,22.1,22.06,22.15,21.88,21.99,22.17,22.04,22.01,22.15,22.01,21.94,22.15,21.9,21.97,21.72,21.67,21.51,21.3,21.46,21.46,21.62,21.92,22.29,22.58,22.81,22.94,23.12,23.17,23.28,23.4,23.26,23.1,23.28,23.26,23.26,23.33,23.15,23.17,23.22,23.19,23.1,23.22,23.12,23.08,23.15,23.17,22.97,23.28,23.22,23.03,23.1,23.06,22.97,23.03,22.99,22.97,22.97,23.03,23.1,23.22,23.06,23.01,23.03,23.03,22.94,22.99,22.92,23.06,23.01,22.83,22.97,22.92,22.99,23.03,23.01,22.88,22.85,22.81,23.03,22.74,22.92,23.06,22.74,22.76,22.81,22.99,22.92,22.85,22.85,22.94,22.67,22.99,22.81,22.67,22.88,22.9,22.81,22.81,22.76,22.72,22.35,22.29,22.13,22.33,22.35,22.6,22.65,22.9,22.85,22.2,22.22,22.29,22.4,22.29,22.24,22.42,22.33,22.26,22.47,22.45,22.51,22.38,22.58,22.65,22.63,22.58,22.54,22.74,22.63,22.63,22.79,22.74,22.67,22.76,22.79,22.65,22.65,22.79,22.74,22.79,22.65,22.83,22.76,22.81,22.85,22.6,22.56,22.63,22.74,22.72,22.65,22.83,22.67,22.58,22.51,22.38,22.56,22.29,22.29,22.26,22.45,22.74,22.81,22.83,22.9,22.88,23.08,23.08,22.92,23.08,22.99,22.94,22.97,22.97,23.01,23.06,22.97,22.97,22.99,23.12,22.9,23.03,22.9,23.1,23.01,23.19,23.1,23.22,23.03,23.12,22.97,23.1,23.15,23.08,23.17,22.99,23.15,23.1,22.99,23.1,23.17,23.08,23.19,23.1,23.12,23.15,23.22,23.26,23.28,23.44,23.26,23.26,23.28,23.15,23.17,23.19,23.1,23.28,23.33,23.31,23.15,23.01,23.12,23.15,23.17,23.35,23.17,23.19,23.31,23.17,23.12,23.19,23.24,23.26,23.26,23.33,23.22,23.15,23.22,23.1,23.01,22.94,22.67,22.51,22.45,22.42,22.67,22.88,23.19,23.24,23.22,23.24,23.22,23.28,23.35,23.31,23.24,23.4,23.28,23.35,23.31,23.08,23.35,23.24,23.44,23.24,23.19,23.19,23.28,23.22,23.22,23.4,23.4,23.19,23.17,23.19,22.99,23.22,23.08,23.03,23.26,23.17,23.26,23.1,23.15,22.88,22.92,22.85,22.63,22.51,22.4,22.24,21.99,21.97,21.92,21.76,21.81,21.74,21.76,21.37,21.56,21.37,21.51,21.33,21.49,21.6,21.6,21.62,21.53,21.81,21.9,21.9,21.85,21.74,21.97,22.01,21.94,22.04,21.78,21.88,21.81,21.88,21.99,21.97,21.99,21.92,22.06,22.08,22.01,21.99,21.99,21.97,22.01,21.94,21.62,21.58,21.58,21.4,21.28,21.3,21.67,22.01,22.42,22.88,23.01,23.06,23.12,23.24,23.26,23.19,23.28,23.19,23.24,23.4,23.28,23.19,23.15,23.19,23.19,23.22,23.1,23.35,23.17,23.19,23.12,23.01,22.97,23.12,23.1,23.22,23.12,23.17,22.97,23.06,22.92,22.9,22.99,23.06,23.06,23.06,22.99,22.92,23.03,23.15,23.03,22.92,22.92,22.92,23.15,22.97,23.06,22.92,22.88,23.06,22.99,22.92,22.81,22.83,23.01,22.9,22.81,22.67,22.7,22.83,22.88,22.81,22.83,22.74,22.85,22.92,22.7,23.01,22.81,22.81,22.85,22.85,22.81,22.67,22.56,22.56,22.35,22.15,22.13,22.17,22.49,22.54,22.79,22.79,22.83,22.04,22.08,22.04,22.24,22.31,22.31,22.31,22.49,22.45,22.31,22.31,22.45,22.47,22.4,22.63,22.65,22.45,22.72,22.88,22.79,22.85,22.65,22.65,22.63,22.76,22.72,22.76,22.63,22.7,22.79,22.94,22.85,22.79,22.72,22.76,22.92,22.79,22.65,22.83,22.72,22.85,22.58,22.67,22.79,22.63,22.54,22.54,22.45,22.31,22.38,22.4,22.47,22.9,22.94,22.81,22.99,23.03,23.01,22.94,23.06,23.03,22.99,22.94,22.97,22.99,23.06,23.06,22.92,22.97,22.9,23.03,22.9,23.1,23.01,23.06,23.17,23.19,23.15,23.08,23.06,23.1,23.26,23.17,23.17,23.17,23.15,23.1,23.08,23.03,23.06,22.99,23.08,23.08,23.19,23.22,23.31,23.15,23.15,23.03,23.22,23.31,23.44,23.17,23.15,23.24,23.33,23.19,23.03,23.4,23.33,23.15,23.12,23.24,23.31,23.35,23.15,23.28,23.31,23.22,23.35,23.31,23.4,23.06,23.08,23.24,23.31,23.24,23.17,23.1,22.9,23.1,23.01,22.83,22.74,22.49,22.51,22.54,22.76,22.88,23.08,23.24,23.44,23.37,23.26,23.33,23.22,23.22,23.37,23.19,23.46,23.22,23.35,23.19,23.22,23.44,23.31,23.49,23.31,23.26,23.37,23.1,23.15,23.24,23.33,23.17,23.19,23.19,23.15,23.28,23.08,23.31,23.15,23.26,23.26,23.24,23.15,23.12,23.08,22.97,23.03,22.83,22.63,22.63,22.4,22.4,22.24,21.94,21.85,21.76,21.85,21.72,21.67,21.51,21.6,21.58,21.51,21.42,21.56,21.65,21.78,21.69,21.67,21.88,21.85,21.78,21.78,21.83,21.94,21.88,21.99,21.97,21.99,21.88,22.15,21.97,22.04,22.08,22.15,22.08,22.04,22.04,21.9,21.94,21.94,21.9,21.65,21.51,21.44,21.46,21.28,21.69,21.99,22.35,22.51,22.97,23.08,23.19,23.22,23.12,23.19,23.33,23.28,23.22,23.17,23.33,23.35,23.08,23.08,23.26,23.26,23.17,23.31,23.19,23.31,23.31,23.17,23.03,23.01,23.24,23.06,23.1,23.15,23.1,23.03,23.06,22.99,23.01,23.08,23.03,23.19,23.08,23.01,23.01,22.99,23.06,22.85,22.94,22.88,22.92,23.17,22.97,23.22,22.94,23.06,23.15,22.99,22.92,22.9,22.9,22.97,22.97,22.97,22.79,22.74,22.74,22.72,22.94,22.88,23.06,22.85,22.85,22.74,22.85,22.67,22.79,22.79,22.81,22.65,22.72,22.56,22.51,22.4,22.15,22.29,22.42,22.65,22.65,22.7,22.92,22.85,21.74,21.85,22.08,21.92,22.1,22.33,22.22,22.45,22.24,22.47,22.49,22.7,22.63,22.65,22.45,22.65,22.67,22.79,22.81,22.76,22.72,22.7,22.67,22.6,22.72,22.65,22.88,22.58,22.7,22.72,22.7,22.72,22.76,22.74,22.67,22.72,22.85,22.74,22.85,22.63,22.9,22.92,22.76,22.81,22.65,22.6,22.38,22.42,22.2,22.38,22.63,22.79,22.76,22.92,22.88,22.97,23.03,22.9,22.88,22.92,22.92,22.97,22.99,22.85,22.99,23.06,22.99,22.94,23.19,22.9,23.1,23.1,23.17,22.85,23.03,23.03,23.15,23.12,23.1,23.08,23.1,23.12,23.17,22.99,23.12,23.01,23.19,23.06,23.06,22.83,23.17,23.06,22.99,23.26,23.22,23.19,23.15,23.35,23.24,23.22,23.24,23.33,23.1,23.19,23.24,23.17,23.19,23.4,23.33,23.26,23.22,23.12,23.28,23.19,23.17,23.28,23.31,23.15,23.24,23.37,23.26,23.17,23.03,23.15,23.1,23.19,23.15,23.08,23.1,23.08,23.08,22.76,22.72,22.6,22.38,22.56,22.7,22.63,23.26,23.15,23.24,23.35,23.44,23.37,23.33,23.33,23.31,23.31,23.22,23.31,23.12,23.33,23.26,23.35,23.19,23.37,23.26,23.1,23.08,23.17,23.31,23.22,23.24,23.22,23.08,23.12,23.03,23.24,23.24,23.15,23.17,23.15,23.35,23.24,23.12,22.97,23.01,23.26,23.12,23.1,23.12,22.88,22.81,22.85,22.65,22.54,22.29,22.29,21.94,21.74,21.81,21.83,21.56,21.65,21.56,21.42,21.42,21.42,21.56,21.56,21.44,21.74,21.6,21.51,21.72,21.81,21.94,21.9,21.83,21.81,21.81,21.76,21.9,21.85,21.97,21.94,22.08,22.1,22.15,22.13,22.08,22.06,21.92,21.67,21.83,21.62,21.49,21.72,21.37,21.51,21.78,22.22,22.47,22.74,22.97,22.99,23.15,23.24,23.12,23.22,23.24,23.31,23.24,23.37,23.31,23.31,23.12,23.28,23.22,23.26,23.26,23.35,23.26,23.19,23.26,23.24,23.06,23.06,23.24,23.1,23.12,23.06,23.03,22.99,22.99,22.88,23.01,22.94,23.19,23.22,22.99,23.01,22.9,23.1,23.06,22.88,23.01,22.97,23.01,23.06,23.01,23.08,22.9,23.06,23.12,22.76,22.9,22.63,22.74,22.94,22.74,23.17,22.88,22.83,22.9,22.83,23.03,23.03,22.76,22.81,22.74,22.76,22.99,22.67,22.79,22.94,22.9,22.76,22.7,22.45,22.35,22.29,22.33,22.29,22.31,22.45,22.81,22.83,22.88,22.85,21.67,21.53,21.74,21.88,21.78,21.88,22.06,22.24,22.24,22.33,22.47,22.4,22.33,22.56,22.63,22.56,22.63,22.51,22.6,22.45,22.67,22.67,22.6,22.76,22.79,22.79,22.79,22.79,22.67,22.81,22.7,22.49,22.67,22.58,22.7,22.65,22.9,22.67,22.58,22.47,22.58,22.51,22.67,22.63,22.56,22.35,22.29,22.06,22.29,22.26,22.33,22.56,22.6,22.81,22.9,22.85,22.85,22.88,22.79,22.99,23.01,22.88,22.9,22.99,22.94,23.08,22.97,22.94,22.92,22.79,22.97,22.97,23.01,22.9,23.12,22.94,22.92,22.94,22.92,23.03,23.06,22.81,23.15,23.24,22.97,23.03,23.01,23.03,23.12,23.01,23.12,22.94,22.99,23.06,23.17,23.15,23.06,22.92,23.15,23.26,23.26,23.17,23.17,23.31,23.17,23.26,23.22,23.17,23.19,23.12,23.15,23.1,23.19,23.06,23.17,23.26,23.22,23.01,23.03,23.26,23.28,23.06,23.08,23.17,23.31,23.12,23.12,23.01,23.01,22.97,22.83,22.72,22.51,22.42,22.45,22.63,22.76,22.85,23.15,23.24,23.1,23.24,23.26,23.12,23.15,23.26,23.12,23.22,23.15,23.24,23.19,23.17,23.15,23.15,23.24,23.08,23.28,23.17,23.22,23.26,23.35,23.1,23.12,23.22,23.17,23.19,23.1,23.17,23.22,23.08,23.19,23.17,23.1,23.31,23.22,22.99,23.08,22.99,23.08,22.94,23.1,22.92,22.92,23.01,22.9,22.58,22.6,22.38,22.17,22.04,22.13,22.13,21.76,21.67,21.65,21.37,21.37,21.49,21.53,21.42,21.33,21.51,21.51,21.44,21.44,21.69,21.72,21.62,21.74,21.67,21.74,21.9,21.94,21.97,21.99,21.9,21.97,21.9,21.85,22.01,22.04,21.88,21.78,21.72,21.6,21.49,21.49,21.46,21.4,21.67,21.92,22.26,22.6,22.85,22.9,22.99,23.17,23.15,23.17,23.06,23.24,23.24,23.26,23.1,23.31,23.19,23.12,23.24,23.42,23.15,23.06,23.12,23.26,23.19,23.17,23.03,22.99,22.9,23.1,23.08,22.85,22.83,22.97,23.06,22.97,22.9,22.99,23.06,22.9,23.15,22.9,22.9,23.06,22.85,22.94,22.72,22.92,22.85,22.85,22.92,23.03,22.85,22.76,23.03,23.01,22.74,22.74,22.7,22.79,22.81,22.81,22.83,22.83,22.58,22.67,22.92,22.72,22.83,22.7,22.81,22.65,22.67,22.67,22.76,22.88,23.06,22.81,22.74,22.56,22.47,22.24,22.04,22.26,22.26,22.42,22.56,22.65,22.45,22.81,22.7,21.74,21.51,21.65,21.67,21.72,21.9,21.83,21.99,22.06,22.17,22.01,22.24,22.38,22.49,22.45,22.58,22.51,22.76,22.6,22.4,22.42,22.65,22.58,22.79,22.76,22.67,22.74,22.7,22.92,22.74,22.7,22.56,22.79,22.76,22.67,23.03,22.79,22.67,22.81,22.63,22.47,22.7,22.58,22.76,22.4,22.4,22.35,22.24,22.2,22.22,22.4,22.88,22.76,22.81,22.99,22.74,22.9,22.97,22.83,22.97,23.01,23.1,22.9,23.15,23.08,22.97,23.19,23.06,23.03,22.81,23.08,22.99,22.92,23.1,22.88,22.92,23.08,23.12,23.1,23.12,22.97,23.08,23.03,22.99,23.17,22.9,23.22,22.99,23.08,22.88,23.12,23.01,22.99,22.97,23.12,23.15,23.15,23.17,23.03,23.1,23.1,23.17,23.17,23.22,23.26,23.28,23.22,23.06,23.44,23.28,23.15,23.08,23.19,23.03,23.17,23.12,23.1,23.12,23.17,23.22,23.1,23.17,23.06,23.01,23.12,23.17,23.19,23.24,23.06,22.94,22.92,22.7,22.47,22.51,22.42,22.54,22.79,23.01,23.03,23.35,23.26,23.26,23.31,23.35,23.19,23.19,23.22,23.24,23.03,23.19,23.37,23.4,23.33,23.15,23.31,23.19,23.19,23.24,23.06,23.26,23.26,23.1,23.19,23.17,23.08,23.03,22.85,23.12,23.17,23.1,23.17,23.12,23.06,23.12,23.24,23.12,23.08,23.26,23.06,23.06,23.15,22.99,23.1,23.01,23.03,22.99,22.9,22.67,22.38,22.42,22.24,22.15,21.94,21.94,21.74,21.65,21.56,21.53,21.51,21.46,21.44,21.44,21.51,21.4,21.4,21.62,21.58,21.58,21.6,21.69,21.9,22.08,21.83,21.78,21.76,21.9,21.94,22.01,21.97,21.88,22.06,21.85,21.92,21.76,21.69,21.53,21.46,21.51,21.53,21.74,21.99,22.38,22.88,23.22,23.06,22.94,23.4,23.24,23.22,23.28,23.31,23.15,23.19,23.31,23.35,23.31,23.15,23.28,23.24,23.17,23.12,23.1,23.26,23.15,23.08,23.06,22.97,22.9,22.92,23.06,22.92,23.06,23.08,23.01,22.99,22.92,22.97,22.94,22.97,23.12,23.03,22.94,22.92,22.83,23.1,22.9,22.74,22.92,22.79,23.01,22.83,22.88,22.85,23.08,23.03,22.88,22.76,22.92,22.88,22.79,22.88,22.79,22.88,22.67,22.63,22.76,22.99,22.81,22.7,22.56,22.65,22.67,22.85,22.76,22.92,22.79,22.83,22.7,22.4,22.31,22.17,21.92,22.35,22.49,22.42,22.58,22.67,22.79,22.76,22.7,21.85,21.67,21.72,21.72,21.74,21.69,21.81,21.94,21.88,22.1,22.04,22.1,22.35,22.6,22.47,22.51,22.58,22.7,22.6,22.76,22.7,22.74,22.7,22.58,22.65,22.76,22.83,22.79,22.72,22.65,22.72,22.76,22.88,22.76,22.9,22.9,22.74,22.54,22.74,22.72,22.6,22.72,22.72,22.81,22.56,22.29,22.29,22.2,22.13,22.38,22.9,22.94,22.88,22.85,22.88,22.94,22.92,22.9,23.03,22.92,23.01,22.99,22.92,23.01,23.15,22.94,22.94,22.9,22.97,22.81,22.99,23.15,22.97,22.72,23.03,22.99,22.94,23.17,23.15,22.99,23.01,22.97,23.28,23.08,22.99,23.08,23.22,23.15,22.97,22.9,23.08,23.08,23.08,23.08,23.22,23.17,23.24,23.17,23.24,23.22,23.17,23.22,23.33,23.17,23.33,23.33,22.99,23.15,23.1,23.12,23.22,23.22,23.19,23.15,23.33,23.08,23.15,23.17,23.22,23.19,23.19,23.35,23.01,23.06,23.22,23.4,23.12,23.24,23.15,22.85,22.85,22.58,22.54,22.58,22.54,22.67,22.85,23.12,23.31,23.44,23.31,23.26,23.4,23.49,23.37,23.26,23.28,23.44,23.26,23.42,23.31,23.24,23.1,22.97,23.35,23.24,23.26,23.15,23.19,23.26,23.15,23.31,23.26,23.19,22.83,23.1,23.08,23.22,23.26,23.15,23.17,23.15,23.08,23.26,23.12,23.03,23.17,23.19,23.1,23.1,23.12,23.17,22.97,23.12,23.01,22.94,23.01,22.94,22.88,22.65,22.4,22.56,22.13,22.13,21.9,21.99,21.85,21.6,21.53,21.62,21.35,21.35,21.58,21.42,21.44,21.44,21.6,21.58,21.69,21.6,21.67,22.01,21.72,21.88,21.85,21.76,21.97,22.1,21.94,21.9,21.9,21.83,21.85,21.6,21.67,21.69,21.53,21.51,21.53,21.83,22.24,22.45,22.97,22.99,23.15,22.92,23.31,23.35,23.28,23.17,23.37,23.24,23.31,23.24,23.46,23.31,23.28,23.28,23.19,23.19,23.22,23.22,23.28,23.17,23.1,22.99,23.03,23.1,23.01,23.15,23.15,23.01,22.99,23.03,22.94,23.03,22.94,23.03,22.99,23.22,23.12,22.92,22.9,22.83,23.12,22.88,23.03,22.9,23.06,22.99,22.94,23.06,23.06,22.97,23.06,22.83,22.88,22.74,22.79,22.65,22.79,22.65,22.83,22.7,22.85,22.83,23.03,22.92,22.88,22.85,22.92,22.9,23.03,22.88,22.81,22.85,22.74,22.56,22.4,22.24,22.08,22.04,22.49,22.49,22.7,22.76,22.85,22.6,22.74,22.74,22.2,21.92,21.97,21.83,21.67,21.72,21.53,21.72,21.6,22.01,22.04,22.2,22.51,22.45,22.4,22.51,22.56,22.51,22.65,22.63,22.88,22.83,22.83,22.76,22.76,22.7,22.79,22.81,22.74,22.85,22.9,22.85,22.81,22.67,22.92,22.99,22.92,22.76,22.67,22.88,22.79,22.76,22.79,22.67,22.54,22.51,22.26,22.22,22.1,22.54,22.85,22.94,22.92,22.94,22.92,23.15,22.94,23.06,22.94,22.99,23.01,22.92,23.01,23.01,23.1,22.92,23.08,22.85,23.03,23.03,23.12,23.15,22.9,22.92,23.01,23.08,23.12,23.22,23.19,23.08,23.06,23.17,23.19,23.19,23.08,23.08,23.17,23.26,23.24,23.08,23.08,23.01,23.01,23.08,23.24,23.22,23.24,23.08,23.12,23.19,23.24,23.24,23.35,23.19,23.33,23.24,23.28,23.31,23.35,23.22,23.03,23.15,23.22,23.17,23.26,23.19,23.19,23.15,23.24,23.33,23.17,23.17,23.01,23.17,23.26,23.22,23.28,23.12,22.97,22.88,22.81,22.7,22.63,22.7,22.79,22.88,22.99,23.24,23.19,23.15,23.19,23.08,23.22,23.22,23.33,23.33,23.24,23.26,23.33,23.22,23.22,23.26,23.15,23.12,23.12,23.22,23.26,23.24,23.24,23.28,23.31,23.1,23.26,23.28,23.33,23.06,22.99,23.19,23.17,23.22,23.15,23.15,23.24,23.35,23.26,23.17,23.24,23.17,23.08,23.08,23.15,23.1,23.12,23.24,23.17,23.1,22.97,23.31,23.08,22.88,22.72,22.79,22.63,22.47,22.33,22.24,21.99,21.97,21.83,21.74,21.72,21.35,21.62,21.49,21.37,21.4,21.42,21.49,21.56,21.6,21.6,21.67,21.76,21.83,21.85,21.94,21.97,22.04,21.92,21.97,21.94,22.01,21.9,21.6,21.58,21.44,21.51,21.6,21.92,22.17,22.6,22.7,23.19,23.17,23.06,23.1,23.24,23.26,23.4,23.33,23.19,23.26,23.12,23.35,23.31,23.24,23.19,23.08,23.19,23.1,23.19,23.1,23.44,23.17,23.24,23.15,23.01,22.99,23.15,23.17,23.06,23.19,22.99,22.92,23.12,23.17,23.03,23.06,23.03,23.15,23.15,23.08,23.06,22.92,22.99,22.92,23.1,22.97,23.01,23.03,23.01,22.92,22.92,22.9,23.22,22.88,22.7,22.85,22.88,22.81,22.67,22.81,23.08,22.97,22.81,22.81,22.97,22.81,22.9,22.88,22.74,22.88,23.03,22.81,22.81,22.94,22.74,22.6,22.4,22.24,22.26,22.26,22.56,22.63,22.63,22.7,22.79,22.88,22.88,22.85,22.17,22.06,21.99,21.88,21.85,21.81,21.58,21.72,21.76,21.81,21.67,21.92,22.17,22.26,22.54,22.51,22.65,22.65,22.65,22.67,22.56,22.67,22.83,22.7,22.76,22.74,22.81,22.88,22.94,22.88,22.9,22.85,22.7,22.74,22.79,22.9,22.85,22.79,22.51,22.85,22.72,22.81,22.7,22.67,22.29,22.45,22.29,22.29,22.45,22.56,22.99,22.85,22.85,22.94,23.08,23.03,22.88,23.06,23.03,23.03,23.08,22.92,22.85,22.85,22.97,23.1,23.06,23.03,23.03,23.08,23.1,23.03,22.94,22.99,23.22,23.06,23.08,23.19,23.22,23.06,23.06,23.03,23.17,23.03,22.97,23.28,23.06,23.12,23.15,23.08,23.17,23.03,23.06,22.97,23.33,23.26,23.22,23.08,23.08,23.26,23.19,23.26,23.22,23.24,23.01,23.28,23.1,23.28,23.37,23.17,23.24,23.12,23.1,23.17,23.19,23.12,23.1,23.17,23.08,23.37,23.28,23.26,23.19,23.24,23.28,23.15,23.24,23.22,22.97,22.7,22.72,22.51,22.51,22.58,22.72,23.01,23.22,23.12,23.22,23.26,23.24,23.1,23.22,23.22,23.24,23.06,23.44,23.22,23.19,23.28,23.12,23.24,23.28,23.12,23.22,23.28,23.31,23.22,23.26,23.17,23.22,23.17,23.15,23.24,23.24,23.19,23.03,23.24,23.26,23.35,23.24,23.31,23.31,23.31,23.24,23.17,23.17,23.03,23.17,23.08,22.99,23.03,23.24,23.42,23.22,23.15,23.17,23.06,23.1,23.03,22.92,23.08,23.01,22.88,22.74,22.56,22.22,22.2,22.15,21.94,21.78,21.88,21.76,21.56,21.37,21.51,21.51,21.44,21.37,21.58,21.4,21.65,21.65,21.49,21.72,21.74,21.81,21.81,21.88,21.94,21.92,21.81,21.46,21.49,21.6,21.37,21.6,21.78,21.97,22.26,22.54,22.92,23.08,23.26,23.15,23.17,23.31,23.22,23.35,23.26,23.33,23.12,23.33,23.35,23.44,23.26,23.31,23.17,23.33,23.42,23.28,23.26,23.1,23.17,23.19,23.26,22.97,23.01,23.22,23.17,23.12,23.12,23.12,22.99,23.12,23.15,23.1,23.12,23.06,23.12,22.9,23.03,22.97,22.97,23.06,23.03,23.03,23.01,22.81,23.03,23.01,22.88,22.88,22.9,22.85,22.79,22.72,22.85,22.76,22.94,22.7,23.03,22.9,22.81,22.88,22.83,22.81,22.88,22.88,22.9,22.81,22.79,22.99,22.83,22.83,22.81,22.7,22.6,22.24,22.26,22.24,22.24,22.65,22.45,22.74,22.72,22.65,22.92,22.97,22.76,22.45,22.35,22.33,22.29,22.08,21.88,21.88,21.94,21.69,21.76,21.74,21.92,21.9,22.2,22.38,22.58,22.49,22.54,22.6,22.54,22.74,22.79,22.7,22.79,22.72,22.65,22.83,22.94,22.97,22.67,22.74,22.88,22.74,22.63,22.85,23.01,22.74,22.6,22.88,22.79,22.9,22.85,22.9,22.76,22.56,22.45,22.22,22.29,22.49,22.72,22.97,22.92,22.88,22.99,23.03,22.92,22.94,23.03,23.15,22.97,22.92,22.85,22.81,23.01,22.88,23.08,23.1,22.94,22.83,23.03,23.06,23.1,23.06,23.06,22.99,22.99,23.26,23.12,23.1,23.1,23.26,23.1,23.08,23.03,23.12,23.15,23.17,23.22,23.15,23.1,23.19,23.12,23.12,23.17,23.15,23.19,23.06,23.1,23.17,23.22,23.28,23.26,23.1,23.1,23.19,23.28,23.33,23.06,23.17,23.28,23.15,23.22,23.26,23.26,23.19,23.22,23.12,23.17,22.9,23.37,23.33,23.31,23.08,23.06,23.08,23.1,23.28,23.15,23.15,22.81,22.7,22.38,22.58,22.81,22.97,23.24,23.06,23.12,23.19,23.17,23.37,23.31,23.24,23.26,23.17,23.26,23.35,23.46,23.31,23.28,23.37,23.26,23.33,23.17,23.24,23.15,23.15,23.35,23.31,23.24,23.19,23.28,23.31,23.31,23.28,23.15,23.24,23.12,23.19,23.33,23.22,23.15,23.03,23.24,23.22,23.17,23.26,23.08,23.24,23.06,23.01,23.08,23.17,23.26,23.15,23.08,23.22,23.19,23.22,23.22,23.08,23.19,23.19,23.08,22.99,22.81,22.67,22.54,22.47,22.24,22.04,22.06,21.78,21.76,21.53,21.69,21.51,21.42,21.51,21.56,21.51,21.56,21.42,21.44,21.62,21.81,21.72,21.76,21.76,21.78,21.97,21.76,21.72,21.46,21.4,21.6,21.69,21.83,22.26,22.38,22.58,22.99,23.24,23.19,23.12,23.24,23.35,23.33,23.26,23.24,23.26,23.19,23.26,23.44,23.33,23.31,23.31,23.22,23.15,23.28,23.26,23.24,23.19,23.1,23.19,23.08,22.94,22.92,23.12,23.15,23.01,23.17,23.03,22.92,22.99,22.83,23.03,23.06,23.06,23.08,22.88,22.85,22.88,22.97,23.22,22.9,23.01,22.83,22.88,23.08,23.01,22.92,22.9,22.88,22.9,22.85,23.01,22.74,22.97,22.94,22.88,22.88,22.74,22.7,22.97,22.79,22.76,22.85,22.79,22.76,22.88,22.79,22.94,22.85,22.76,22.72,22.81,22.49,22.22,22.17,22.35,22.38,22.49,22.63,22.7,22.74,22.63,22.85,22.81,22.99,22.47,22.47,22.4,22.22,22.22,22.13,22.04,21.94,21.85,21.94,21.76,21.78,21.85,22.1,22.01,22.17,22.17,22.22,22.35,22.45,22.6,22.7,22.67,22.74,22.92,22.88,22.54,22.85,22.85,22.72,22.9,22.81,22.81,22.67,22.74,22.81,22.7,22.58,22.54,22.88,22.76,22.76,22.74,22.58,22.29,22.26,22.13,22.31,22.47,22.81,23.03,22.74,22.9,22.88,22.97,22.79,22.92,22.99,23.03,22.94,23.01,23.06,22.88,22.99,23.03,23.08,22.99,22.83,22.74,22.67,23.06,23.12,23.01,23.01,23.03,22.97,23.1,23.12,23.08,23.12,23.01,23.26,23.17,22.97,23.01,23.22,23.17,23.06,23.24,23.15,23.03,22.97,22.97,23.01,23.12,23.15,23.17,23.22,23.22,23.33,23.26,23.22,23.17,23.33,23.22,23.15,23.26,23.24,23.35,23.22,23.15,23.33,23.12,23.26,23.19,23.33,23.4,23.12,23.19,23.17,23.33,23.22,23.1,23.15,23.15,23.08,23.15,23.15,22.88,22.49,22.51,22.45,22.65,22.79,22.94,23.08,23.15,23.26,23.22,23.17,23.28,23.42,23.42,23.12,23.33,23.26,23.22,23.28,23.28,23.31,23.28,23.4,23.33,23.26,23.22,23.35,23.15,23.24,23.26,23.22,23.24,23.06,23.17,23.35,23.17,23.08,23.19,23.08,23.15,23.1,23.01,23.03,23.26,23.28,23.22,23.06,23.17,22.97,23.22,23.08,23.17,22.9,23.17,23.17,23.1,23.08,23.17,23.17,23.22,23.12,23.12,23.26,23.15,23.03,22.99,23.01,22.94,22.74,22.72,22.54,22.38,22.26,22.17,21.92,21.9,21.72,21.69,21.56,21.49,21.44,21.3,21.35,21.4,21.51,21.53,21.67,21.58,21.53,21.72,21.76,21.6,21.56,21.67,21.58,21.56,21.3,21.74,21.78,22.29,22.51,22.74,22.99,23.19,23.24,23.12,23.1,23.19,23.28,23.26,23.22,23.22,23.33,23.33,23.26,23.26,23.12,23.19,23.24,23.24,23.31,23.08,23.26,23.1,23.1,23.15,23.17,22.97,22.97,23.17,23.01,23.08,23.06,23.08,23.12,22.99,22.88,22.76,22.94,23.22,23.26,22.85,22.92,22.83,22.85,23.1,22.81,22.79,22.76,22.76,23.06,22.76,22.94,22.79,22.9,22.9,22.83,22.74,22.88,22.99,22.7,22.79,22.92,22.79,22.72,22.83,22.83,22.83,22.9,22.76,22.7,22.81,22.65,22.74,22.76,22.74,22.65,22.56,22.49,21.94,22.15,22.33,22.49,22.6,22.63,22.7,22.72,22.76,22.58,22.9,22.97,22.38,22.31,22.47,22.45,22.35,22.24,22.38,22.26,21.97,22.1,21.88,21.74,21.81,22.04,22.15,22.13,22.06,22.24,22.17,22.42,22.54,22.76,22.7,22.9,22.7,22.9,22.7,22.76,22.99,22.79,22.92,22.83,22.7,22.79,22.88,22.9,22.83,22.7,22.54,22.79,22.79,22.67,22.56,22.38,22.22,22.24,22.26,22.29,22.63,22.94,22.9,22.85,23.15,22.85,22.92,22.9,22.92,23.06,23.06,22.94,23.03,22.97,22.99,23.08,22.99,23.15,23.06,23.06,23.12,23.01,23.01,23.08,23.22,23.12,22.94,23.03,23.22,23.17,23.15,23.31,23.22,23.17,23.12,23.22,23.1,23.22,23.1,23.19,23.12,23.01,23.06,22.9,22.99,22.94,23.17,23.24,23.17,23.4,23.26,23.15,23.35,23.12,23.1,23.22,23.31,23.24,23.33,23.28,23.37,23.28,23.37,23.19,23.19,23.03,23.33,23.15,23.26,23.35,23.31,23.31,23.35,23.24,23.24,23.19,23.17,23.17,23.1,23.08,22.9,22.67,22.67,22.58,22.81,22.94,23.03,23.12,23.24,23.26,23.19,23.24,23.33,23.42,23.42,23.35,23.31,23.28,23.33,23.31,23.35,23.35,23.42,23.4,23.19,23.22,23.08,23.49,23.37,23.12,23.22,23.17,23.42,23.15,23.35,23.4,23.35,23.24,23.26,23.19,23.26,23.19,23.24,23.17,23.31,23.22,23.1,23.1,22.97,23.08,23.31,23.22,23.17,23.19,23.12,23.33,23.22,23.15,23.08,23.15,23.17,23.24,23.15,23.28,23.08,23.17,23.08,23.03,23.01,22.97,22.97,23.03,22.79,22.54,22.54,22.17,22.06,22.06,21.78,21.76,21.65,21.58,21.37,21.51,21.49,21.44,21.44,21.56,21.51,21.6,21.65,21.6,21.69,21.42,21.69,21.6,21.72,21.53,21.92,22.22,22.45,22.58,23.06,23.12,23.1,23.17,23.28,23.28,23.33,23.17,23.37,23.37,23.35,23.37,23.31,23.31,23.33,23.28,23.08,23.15,23.33,23.22,23.19,23.17,23.15,23.17,23.37,23.17,23.08,23.15,23.19,23.08,23.08,22.85,23.15,23.01,22.99,22.9,22.97,22.99,23.08,23.1,23.01,22.99,23.01,22.83,23.12,22.88,22.88,22.83,22.88,22.99,22.88,22.85,22.97,22.88,23.28,22.79,22.88,22.92,22.92,22.85,22.72,23.01,22.83,22.9,22.63,22.92,22.94,22.97,22.85,22.83,22.81,22.74,22.74,22.79,22.76,22.65,22.49,22.29,22.15,22.17,22.35,22.49,22.7,22.72,22.79,22.76,22.79,22.81,22.9,22.83,22.4,22.35,22.63,22.45,22.42,22.31,22.63,22.4,22.06,21.94,22.01,21.92,21.92,22.15,22.24,21.97,22.13,21.99,22.22,22.38,22.54,22.38,22.49,22.67,22.58,22.92,22.81,22.99,22.79,22.81,22.81,22.92,22.76,22.85,22.85,22.74,23.01,22.58,22.81,22.76,22.63,22.79,22.72,22.63,22.22,22.29,22.26,22.51,22.7,22.92,23.03,22.92,22.99,23.15,23.03,22.99,22.88,23.15,22.99,22.99,23.19,23.01,23.08,23.15,22.97,23.12,23.12,22.99,23.1,22.99,23.03,23.08,23.1,23.01,23.12,23.15,23.08,23.15,23.24,23.15,23.28,23.33,23.22,23.12,23.17,23.15,23.1,23.15,23.08,23.19,23.03,23.03,23.12,23.15,23.19,23.22,23.24,23.46,23.31,23.4,23.26,23.46,23.35,23.31,23.28,23.46,23.33,23.28,23.31,23.42,23.24,23.19,23.24,23.17,23.24,23.22,23.28,23.17,23.19,23.33,23.24,23.42,23.15,23.15,23.06,23.06,23.03,23.1,22.83,22.67,22.56,22.56,22.76,23.01,23.33,23.28,23.03,23.37,23.35,23.24,23.37,23.28,23.44,23.4,23.33,23.28,23.33,23.42,23.37,23.24,23.35,23.22,23.4,23.22,23.24,23.28,23.49,23.35,23.19,23.24,23.22,23.31,23.31,23.4,23.24,23.19,23.22,23.24,23.22,23.33,23.26,23.24,23.24,23.28,23.26,23.31,23.1,23.22,23.19,23.15,23.26,23.17,23.22,23.44,23.22,23.24,23.19,23.17,23.1,23.15,23.26,23.15,23.15,23.15,23.03,23.1,23.15,23.1,23.33,23.06,22.9,22.85,22.79,22.56,22.38,22.29,22.06,22.06,21.88,21.81,21.53,21.56,21.53,21.6,21.4,21.46,21.4,21.65,21.58,21.53,21.53,21.58,21.69,21.58,21.62,21.81,22.06,22.4,22.63,22.83,22.99,23.15,23.08,23.06,23.15,23.15,23.22,23.26,23.22,23.35,23.26,23.28,23.26,23.24,23.49,23.37,23.17,23.22,23.44,23.12,23.31,23.17,23.28,23.28,23.33,23.26,23.24,23.1,23.22,23.28,23.24,23.31,23.03,23.15,23.01,23.01,23.06,23.12,23.15,23.1,23.01,22.99,22.97,22.99,22.9,22.83,22.92,22.88,22.9,22.99,22.9,22.81,22.79,23.03,23.1,23.03,22.94,22.9,22.99,22.81,22.72,22.76,23.06,22.79,22.85,22.79,22.9,22.72,22.81,22.85,22.97,22.79,22.99,22.72,22.88,22.6,22.51,22.33,22.08,22.35,22.38,22.74,22.92,22.63,22.81,22.63,22.74,23.01,22.9,22.99,22.54,22.6,22.56,22.58,22.38,22.38,22.33,22.6,22.31,22.17,22.24,22.13,22.22,22.1,22.15,22.08,22.24,21.94,22.08,22.1,22.35,22.4,22.4,22.45,22.56,22.72,22.76,22.79,22.88,22.58,22.72,22.83,22.94,22.79,22.97,22.85,23.12,22.85,22.58,22.72,22.74,22.67,22.7,22.49,22.24,22.33,22.45,22.51,22.79,23.12,23.01,23.12,22.85,23.01,23.1,23.01,23.03,22.83,22.97,23.06,23.06,23.24,22.94,23.08,22.92,23.15,23.17,23.08,22.99,22.99,23.17,23.03,23.08,23.01,23.06,23.08,23.08,23.19,23.1,22.99,23.1,22.97,23.12,23.19,23.22,23.15,23.26,23.15,23.22,23.17,23.24,23.28,23.12,23.19,23.22,23.15,23.19,23.28,23.31,23.06,23.17,23.22,23.12,23.15,23.19,23.24,23.15,23.35,23.42,23.22,23.37,23.17,23.22,23.06,23.26,23.17,23.19,23.24,23.12,23.33,23.26,23.26,23.19,23.15,23.15,23.12,23.01,22.88,22.85,22.54,22.49,22.79,22.79,23.1,23.22,23.26,23.24,23.08,23.24,23.33,23.31,23.26,23.42,23.44,23.37,23.26,23.4,23.35,23.35,23.42,23.55,23.4,23.49,23.33,23.42,23.35,23.42,23.4,23.19,23.17,23.19,23.22,23.37,23.28,23.15,23.19,23.15,23.33,23.28,23.33,23.17,23.28,23.35,23.37,23.24,23.28,23.08,23.1,23.31,23.35,23.19,23.1,23.08,23.22,23.19,23.26,23.01,23.15,23.15,23.28,23.26,23.31,23.15,23.24,23.1,22.94,23.08,23.12,23.24,23.12,23.03,23.03,22.99,22.94,22.72,22.67,22.47,22.35,22.2,22.1,21.9,21.65,21.6,21.51,21.49,21.44,21.37,21.44,21.42,21.42,21.65,21.56,21.53,21.58,21.74,21.94,22.08,22.49,22.67,22.72,22.85,23.17,23.1,23.1,23.24,23.15,23.19,23.19,23.24,23.26,23.37,23.26,23.19,23.26,23.33,23.35,23.37,23.15,23.26,23.17,23.4,23.19,23.17,23.12,23.26,23.19,22.94,22.97,23.1,23.22,23.12,23.12,23.28,22.92,22.94,23.08,22.99,22.94,22.97,23.12,23.15,22.97,22.88,22.9,23.03,22.94,22.97,22.94,22.88,23.06,22.99,22.92,23.01,22.9,22.99,22.81,22.94,22.72,22.83,22.88,22.76,22.76,22.92,22.88,22.92,22.88,22.88,22.88,22.67,22.83,22.92,22.63,22.88,22.83,22.7,22.58,22.35,22.22,22.13,22.26,22.54,22.65,22.85,22.63,22.79,22.74,22.94,22.83,22.83,22.99,22.31,22.6,22.74,22.51,22.76,22.38,22.45,22.54,22.6,22.51,22.35,22.45,22.33,22.45,22.42,22.29,22.29,22.01,22.1,22.06,22.17,22.33,22.35,22.35,22.4,22.54,22.72,22.7,22.51,22.65,22.97,22.92,22.97,22.9,22.92,22.99,22.88,22.85,22.9,22.88,22.81,22.79,22.6,22.45,22.31,22.24,22.4,22.7,22.85,22.9,23.06,23.17,22.99,22.99,22.9,22.94,23.15,23.08,22.97,22.97,23.17,23.1,23.01,22.99,22.85,23.19,23.19,23.06,22.9,22.99,23.01,23.08,23.1,23.17,23.24,23.22,23.17,23.24,23.06,23.15,23.12,23.12,23.26,23.26,23.19,23.03,23.17,23.17,23.24,23.17,23.26,23.26,23.22,23.12,23.24,23.33,23.33,23.26,23.1,23.35,23.33,23.19,23.17,23.19,23.26,23.31,23.42,23.4,23.24,23.22,23.35,23.22,23.35,23.28,23.28,23.22,23.37,23.24,23.12,23.37,23.33,23.17,23.22,23.1,23.1,23.1,22.97,22.88,22.74,22.56,22.81,22.79,22.94,23.17,23.26,23.28,23.15,23.12,23.24,23.31,23.31,23.24,23.26,23.33,23.35,23.28,23.33,23.55,23.4,23.35,23.33,23.33,23.33,23.44,23.31,23.31,23.22,23.33,23.35,23.22,23.35,23.26,23.33,23.28,23.28,23.19,23.1,23.19,23.31,23.35,23.17,23.28,23.24,23.22,23.35,23.17,23.15,23.33,23.15,23.1,23.17,23.19,23.1,23.35,23.26,23.08,23.1,23.19,23.17,23.12,23.15,23.28,23.19,23.28,22.97,23.06,23.03,23.08,23.08,23.12,23.15,23.1,23.12,23.06,22.92,22.92,23.01,22.67,22.49,22.31,22.1,21.92,21.88,21.78,21.6,21.49,21.4,21.65,21.53,21.35,21.49,21.56,21.62,21.62,21.97,21.99,22.29,22.58,22.81,22.88,23.01,23.26,23.19,23.26,23.17,23.17,23.15,23.28,23.35,23.24,23.24,23.28,23.24,23.28,23.37,23.22,23.26,23.33,23.28,23.26,23.31,23.22,23.22,23.22,23.12,23.15,23.03,23.03,23.03,23.17,23.19,23.33,23.12,23.1,23.1,23.15,23.06,23.01,23.12,23.03,23.01,23.22,22.99,22.88,22.9,22.83,22.94,23.06,22.97,22.92,22.99,23.12,22.99,23.08,22.92,22.81,22.85,22.7,22.9,22.94,22.81,22.92,22.97,22.9,22.74,22.79,22.9,23.03,22.9,22.85,22.81,22.76,23.06,22.76,22.65,22.47,22.15,22.2,22.22,22.63,22.56,22.81,22.76,22.72,22.94,22.79,22.94,22.79,22.81,22.99,22.38,22.7,22.7,22.51,22.47,22.54,22.45,22.6,22.67,22.6,22.47,22.45,22.49,22.58,22.47,22.49,22.42,22.24,22.17,21.99,22.29,22.2,22.15,22.06,22.2,22.33,22.47,22.42,22.45,22.51,22.72,22.72,22.92,22.9,22.74,23.06,22.9,22.85,22.83,22.74,22.54,22.72,22.63,22.31,22.17,22.33,22.54,22.72,22.92,23.01,22.99,22.83,22.88,22.99,23.15,22.99,22.97,22.99,23.03,23.06,22.97,23.01,22.99,23.08,23.12,23.08,23.08,23.01,22.97,22.88,23.03,23.15,23.1,23.15,23.1,22.99,23.1,23.22,23.33,23.26,22.94,23.12,23.06,23.22,22.97,23.03,23.08,23.15,23.19,23.19,23.19,23.19,23.17,23.31,23.35,23.24,23.24,23.33,23.15,23.12,23.24,23.26,23.24,23.24,23.35,23.33,23.01,23.28,23.33,23.24,23.42,23.08,23.33,23.24,23.4,23.17,23.24,23.17,23.24,23.44,23.42,23.24,23.1,22.99,22.94,22.81,22.99,22.92,22.54,22.58,22.74,22.74,23.12,23.28,23.31,23.46,23.1,23.06,23.33,23.19,23.35,23.28,23.35,23.28,23.35,23.26,23.49,23.4,23.4,23.37,23.37,23.33,23.35,23.31,23.28,23.42,23.28,23.33,23.31,23.26,23.15,23.33,23.22,23.19,23.24,23.12,23.17,23.22,23.37,23.31,23.42,23.31,23.33,23.24,23.35,23.26,23.17,23.03,23.08,23.19,23.26,23.1,23.22,23.15,23.15,23.19,23.15,23.06,23.22,23.22,23.15,23.24,23.31,23.1,23.1,23.17,23.1,23.26,23.17,23.15,23.26,23.17,23.22,23.06,23.12,23.01,22.9,22.83,22.74,22.65,22.45,22.35,22.01,22.08,21.94,21.58,21.72,21.58,21.6,21.58,21.53,21.72,21.67,21.72,21.97,22.15,22.4,22.58,22.99,22.94,23.01,23.15,23.19,23.22,23.26,23.19,23.22,23.22,23.24,23.31,23.19,23.24,23.35,23.22,23.49,23.42,23.17,23.24,23.26,23.28,23.22,23.17,23.22,23.12,23.24,23.17,23.15,23.03,23.06,23.17,23.19,23.12,22.97,23.1,23.17,23.15,22.97,23.12,23.01,22.99,23.01,23.08,23.08,23.03,23.06,22.85,22.92,22.97,23.17,23.01,22.81,23.01,22.99,22.83,22.92,22.83,22.88,22.81,22.88,22.76,22.67,22.83,22.83,22.85,22.94,22.81,22.9,22.83,22.79,22.74,22.74,22.67,22.76,22.65,22.6,22.35,22.13,21.97,22.17,22.35,22.7,22.72,22.81,22.58,22.72,22.83,22.76,22.92,22.88,23.06,22.74,22.6,22.74,22.6,22.51,22.45,22.63,22.6,22.56,22.4,22.54,22.79,22.58,22.65,22.65,22.6,22.51,22.47,22.42,22.4,22.47,22.26,22.17,22.06,21.99,22.29,22.2,22.31,22.26,22.42,22.47,22.58,22.9,22.9,22.85,22.83,22.92,22.85,22.7,22.72,22.79,22.72,22.45,22.42,22.15,22.31,22.54,22.74,23.03,22.85,23.01,22.94,23.01,22.92,23.19,23.01,23.01,23.17,23.1,23.01,22.85,22.99,22.99,23.03,23.1,23.01,23.03,22.99,23.06,22.99,22.94,23.06,23.01,23.06,23.08,23.17,23.31,23.15,23.1,23.01,23.12,23.19,23.24,23.24,23.17,23.24,23.15,23.24,23.19,23.06,23.22,23.22,23.31,23.19,23.31,23.12,23.33,23.49,23.12,23.17,23.28,23.19,23.26,23.28,23.17,23.49,23.24,23.22,23.4,23.15,23.4,23.4,23.26,22.92,23.06,23.22,23.44,23.12,23.4,23.26,23.4,23.46,23.12,23.15,23.01,23.01,22.85,22.67,22.51,22.51,22.67,22.88,23.19,23.46,23.42,23.42,23.17,23.33,23.24,23.15,23.33,23.24,23.28,23.37,23.37,23.24,23.28,23.4,23.35,23.33,23.37,23.31,23.49,23.24,23.33,23.42,23.37,23.17,23.24,23.15,23.28,23.26,23.28,23.06,23.15,23.06,23.19,23.26,23.37,23.26,23.22,23.26,23.17,23.28,23.15,23.4,23.4,22.99,23.19,23.1,23.19,23.22,23.28,23.24,23.17,23.17,23.12,23.22,23.17,23.28,23.31,23.35,23.33,23.12,23.22,23.24,23.19,23.1,23.33,23.35,23.22,23.08,23.15,23.19,23.17,23.12,23.12,22.97,22.88,22.74,22.76,22.67,22.29,22.35,22.15,21.99,21.94,21.9,21.9,21.74,21.65,21.67,21.72,21.83,22.13,22.15,22.42,22.67,22.79,22.92,22.97,23.12,23.22,23.1,23.26,23.12,23.08,23.17,23.08,23.26,23.22,23.17,23.19,23.31,23.49,23.24,23.1,23.26,23.24,23.19,23.19,23.24,23.1,23.26,23.1,23.12,23.01,22.94,23.06,23.19,23.01,23.26,23.1,22.79,23.17,23.26,22.99,23.1,23.17,23.06,23.01,22.99,22.85,22.7,22.94,23.08,22.79,22.88,22.94,23.08,22.88,23.06,22.92,22.97,23.01,22.81,22.74,22.88,22.9,22.99,22.67,22.97,22.94,22.9,22.94,22.88,22.85,22.81,22.81,22.79,22.65,22.85,22.67,22.35,22.56,22.15,22.06,22.1,22.33,22.54,22.74,22.6,22.79,22.49,22.88,22.9,22.97,22.9,22.85,22.83,22.6,22.63,22.56,22.67,22.6,22.54,22.58,22.65,22.47,22.49,22.45,22.54,22.72,22.6,22.7,22.79,22.56,22.54,22.6,22.56,22.33,22.47,22.4,22.08,22.22,22.13,22.24,22.15,22.1,22.1,22.26,22.6,22.7,22.63,22.74,22.9,22.97,22.67,22.74,22.76,22.76,22.65,22.42,22.4,22.04,22.35,22.42,22.85,23.08,22.9,22.88,23.03,22.92,22.79,22.9,22.85,22.92,23.22,23.1,22.94,23.03,23.03,23.03,23.1,22.94,23.01,23.15,22.92,23.01,23.08,23.15,22.9,23.15,23.17,23.03,23.26,23.31,23.33,23.24,23.17,23.15,23.22,23.24,23.15,23.15,23.28,23.08,23.17,23.03,22.99,23.12,23.17,23.08,23.28,23.15,23.35,23.22,23.33,23.17,23.17,23.22,23.31,23.1,23.22,23.1,23.35,23.35,23.12,23.31,23.28,23.35,23.28,23.31,23.12,23.1,23.08,23.12,23.06,23.1,23.17,23.22,23.31,23.03,23.12,23.06,22.76,22.92,22.58,22.65,22.67,22.83,22.88,23.35,23.49,23.19,23.4,23.28,23.28,23.35,23.35,23.24,23.37,23.31,23.28,23.31,23.22,23.26,23.35,23.24,23.51,23.4,23.35,23.4,23.33,23.19,23.37,23.26,23.24,23.15,23.22,23.31,23.22,23.12,23.28,23.31,23.22,23.19,23.28,23.37,23.33,23.26,23.08,23.08,23.31,23.42,23.35,23.28,23.06,23.22,23.15,23.17,23.1,23.08,23.19,23.19,23.1,22.94,23.19,23.33,23.19,23.28,23.31,23.24,23.28,23.15,23.1,22.92,23.06,23.22,23.15,23.12,23.17,23.08,23.12,23.12,23.06,23.08,22.99,22.94,22.97,22.94,22.76,22.6,22.56,22.38,22.17,22.17,21.9,22.04,21.83,21.72,21.6,21.83,21.81,21.92,21.92,22.15,22.6,22.58,22.74,22.94,23.1,23.03,23.1,23.01,23.08,23.17,23.12,23.17,23.19,23.26,23.37,23.31,23.33,23.4,23.08,23.17,23.08,23.12,23.22,23.31,23.31,23.24,23.06,23.08,23.15,23.22,22.94,23.01,23.19,22.99,23.1,22.9,23.08,23.08,23.03,22.85,22.92,23.03,23.15,22.65,22.94,22.79,22.85,22.9,22.88,22.85,22.99,22.83,23.03,22.88,22.7,22.99,22.85,22.88,22.74,22.88,22.63,22.9,23.03,22.63,22.94,22.83,22.88,22.88,22.81,22.85,22.6,22.9,22.72,22.6,22.65,22.7,22.24,22.26,22.17,22.06,22.31,22.26,22.63,22.76,22.42,22.65,22.67,22.79,22.81,22.85,22.72,22.85,22.79,22.6,22.51,22.7,22.56,22.63,22.58,22.49,22.6,22.38,22.65,22.63,22.65,22.67,22.63,22.83,22.7,22.81,22.58,22.65,22.6,22.65,22.67,22.58,22.45,22.42,22.15,22.1,22.22,22.04,22.13,22.24,22.33,22.51,22.4,22.51,22.74,22.74,22.79,22.65,22.76,22.47,22.58,22.35,22.33,22.29,22.4,22.74,23.01,23.1,22.97,23.1,23.1,23.03,22.92,23.12,23.08,22.97,23.1,22.99,23.08,23.03,23.1,23.08,22.94,23.17,23.1,23.24,22.94,23.01,22.99,23.15,23.17,23.22,23.17,23.12,23.22,23.17,23.15,23.06,23.08,23.12,23.15,23.24,23.15,23.08,23.08,23.01,23.26,23.12,23.12,23.26,22.99,23.08,23.15,23.12,23.28,23.35,23.17,23.22,23.26,23.22,23.12,23.1,23.12,23.33,23.35,23.15,23.26,23.28,23.4,23.26,23.17,23.19,23.17,23.22,23.1,23.1,23.28,23.15,23.26,23.33,23.26,23.12,22.92,22.99,22.83,22.79,22.51,22.42,22.7,22.94,23.1,23.33,23.33,23.42,23.37,22.97,23.24,23.28,23.35,23.28,23.42,23.22,23.19,23.26,23.28,23.26,23.35,23.31,23.19,23.33,23.37,23.37,23.33,23.4,23.55,23.37,23.31,23.28,23.19,23.37,23.28,23.28,23.26,23.31,23.19,23.1,23.26,23.42,23.24,23.37,23.24,23.37,23.46,23.28,23.19,23.26,23.12,23.19,23.24,23.12,23.22,23.24,23.12,23.12,23.1,23.01,23.24,23.01,23.12,23.1,23.31,23.22,23.26,23.15,23.17,23.15,23.17,23.12,23.15,23.17,22.94,23.12,23.1,23.1,23.1,23.19,22.97,23.06,23.06,22.88,23.06,22.9,22.81,22.67,22.65,22.54,22.22,22.01,21.94,21.76,21.58,21.99,21.88,22.01,22.08,22.24,22.47,22.51,22.67,22.99,22.92,23.12,23.08,23.15,23.1,23.19,23.22,23.15,23.15,23.24,23.17,23.1,23.19,23.58,23.24,23.22,23.24,23.08,23.24,23.17,23.28,23.22,23.17,23.08,23.24,23.12,22.99,23.28,23.22,22.94,23.19,23.06,23.06,23.12,22.9,23.08,22.92,23.1,23.06,23.12,22.88,23.06,22.99,23.06,22.9,23.01,22.83,22.81,23.06,22.9,23.1,22.97,22.92,22.92,22.79,22.9,22.7,22.9,22.97,22.88,22.9,22.79,22.9,22.74,22.94,22.99,22.97,22.83,22.6,22.79,22.63,22.4,22.33,22.35,22.22,22.4,22.38,22.42,22.54,22.56,22.54,22.56,22.7,22.81,22.9,22.81,22.81,22.99,22.85,22.65,22.51,22.45,22.49,22.35,22.38,22.45,22.56,22.38,22.38,22.56,22.47,22.58,22.54,22.79,22.6,22.74,22.65,22.6,22.65,22.63,22.56,22.47,22.47,22.45,22.45,22.26,22.22,22.22,22.1,21.92,22.08,22.24,22.22,22.26,22.38,22.47,22.51,22.38,22.45,22.33,22.31,22.24,22.1,22.22,22.38,22.83,23.01,22.88,22.97,23.12,22.99,23.03,22.85,23.01,22.79,22.99,22.92,23.01,22.9,22.99,22.99,22.83,22.97,22.92,22.97,22.99,23.03,23.06,22.88,23.03,22.97,23.08,23.1,23.08,23.03,22.97,22.97,23.22,23.19,23.06,23.12,23.12,23.08,22.88,22.9,23.06,23.15,23.08,23.15,23.15,23.1,23.15,23.1,23.15,23.15,23.17,23.15,23.17,23.24,23.31,23.19,23.12,23.1,23.26,23.26,23.12,23.01,23.24,23.28,23.1,23.06,23.22,23.22,23.06,23.03,23.19,23.12,23.06,23.17,23.19,23.12,22.92,22.9,22.83,22.72,22.67,22.56,22.72,22.72,23.01,23.06,23.22,23.4,23.15,23.17,23.1,23.01,23.17,23.15,23.4,23.33,23.35,23.26,23.28,23.1,23.35,23.35,23.31,23.19,23.26,23.35,23.4,23.22,23.1,23.22,23.33,23.24,23.19,23.15,23.19,23.26,23.17,23.31,23.28,23.12,22.97,23.15,23.35,23.24,23.1,23.15,23.24,23.24,23.35,23.17,23.12,23.15,22.97,23.19,23.22,23.17,23.06,23.17,23.1,23.12,22.97,23.15,23.08,23.06,23.06,23.1,23.06,23.28,23.22,23.03,22.97,23.01,23.15,23.24,23.03,22.97,22.92,22.97,22.9,23.06,23.06,23.06,23.1,22.76,22.9,23.01,22.99,22.81,22.9,22.7,22.6,22.45,22.24,21.9,21.88,21.62,21.78,22.08,22.01,22.01,22.15,22.06,22.33,22.58,22.81,22.94,22.92,22.97,22.81,23.12,23.28,22.99,23.08,23.06,22.99,23.08,23.12,23.17,23.19,23.17,23.1,23.12,23.15,23.24,23.19,23.22,23.15,23.1,23.15,23.01,22.99,22.92,23.19,23.01,22.76,23.01,22.83,22.97,22.92,22.81,22.81,22.9,23.08,22.94,22.88,22.92,23.01,22.83,22.88,22.74,22.81,22.94,22.9,22.81,22.81,22.99,22.92,22.65,22.85,22.72,22.76,22.72,22.85,22.88,22.88,22.79,22.74,22.72,22.65,22.79,22.76,22.74,22.83,22.54,22.72,22.33,22.08,22.1,22.29,22.26,22.2,22.4,22.4,22.49,22.6,22.7,22.56,22.7,22.72,22.63,22.76,22.94,22.83,22.9,22.56,22.49,22.51,22.47,22.47,22.42,22.17,22.4,22.31,22.38,22.47,22.54,22.79,22.7,22.83,22.7,22.7,22.47,22.83,22.76,22.79,22.74,22.58,22.56,22.6,22.51,22.26,22.29,22.08,22.17,22.01,21.97,22.06,22.22,22.26,22.2,22.22,22.4,22.29,22.38,22.33,22.35,22.22,22.24,22.17,22.51,22.63,22.79,22.79,22.83,23.15,22.9,22.97,22.97,22.74,22.81,23.01,23.08,22.97,22.97,23.01,22.9,22.88,23.06,22.74,22.99,22.97,23.08,23.06,22.85,22.85,22.99,22.99,22.92,23.01,23.06,22.9,23.12,23.03,23.37,23.01,23.08,23.1,23.15,22.94,22.83,22.99,23.01,22.94,23.22,23.19,23.19,23.17,23.19,23.17,23.1,23.17,23.08,23.1,23.33,23.24,23.06,23.08,23.31,23.08,23.24,22.99,22.97,23.12,23.17,23.22,23.06,23.17,22.97,23.19,23.22,23.15,23.22,23.08,23.12,23.17,23.17,23.1,22.92,22.72,22.54,22.49,22.45,22.63,22.85,23.06,23.15,23.12,23.31,23.22,23.35,23.17,23.17,23.22,23.19,23.49,23.26,23.31,23.08,23.33,23.17,23.22,23.35,23.4,23.4,23.24,23.22,23.19,23.24,23.12,23.19,23.19,23.24,23.19,23.17,23.24,23.26,23.12,23.31,23.24,23.01,23.06,23.15,23.24,23.15,23.26,23.24,23.28,23.24,23.28,23.26,23.12,22.99,23.06,23.01,23.08,23.1,23.01,23.01,22.88,23.19,23.1,23.12,23.1,23.19,23.01,23.06,23.1,22.9,23.03,23.12,23.03,22.83,23.03,23.19,23.12,23.08,23.15,23.15,22.9,22.83,23.1,22.99,22.99,22.97,22.79,22.99,23.03,22.83,22.88,22.58,22.76,22.58,22.4,22.04,21.9,21.72,21.99,21.99,22.15,21.92,22.01,22.17,22.22,22.26,22.56,22.49,22.38,22.7,22.74,22.85,23.03,23.1,22.92,23.08,22.97,22.99,23.15,23.15,23.31,23.03,23.08,22.99,23.12,23.01,23.12,23.08,23.15,23.01,23.15,22.92,22.97,22.79,22.94,22.92,22.97,22.92,22.94,23.03,22.83,22.76,22.85,22.92,22.92,23.06,22.92,23.1,22.92,22.85,22.76,22.74,22.83,22.74,22.83,22.88,22.65,22.85,22.92,22.88,22.76,22.7,22.76,22.67,22.72,22.83,22.67,22.67,22.7,22.67,22.6,22.7,22.74,22.74,22.72,22.58,22.47,22.22,22.33,22.1,22.06,22.13,22.2,22.38,22.47,22.47,22.54,22.49,22.6,22.45,22.63,22.72,22.65,22.81,22.79,22.74,22.6,22.7,22.63,22.38,22.49,22.45,22.56,22.51,22.45,22.45,22.58,22.63,22.7,22.88,22.88,22.79,22.81,22.72,22.83,22.65,22.56,22.7,22.65,22.7,22.58,22.42,22.58,22.38,22.33,22.29,22.17,22.31,22.13,22.15,22.1,22.17,22.42,22.26,22.31,22.38,22.42,22.35,22.1,22.33,22.17,22.54,22.81,22.85,22.97,23.03,23.1,22.97,22.9,23.08,23.17,22.85,23.06,23.01,23.06,23.06,22.99,23.01,23.03,23.12,23.08,23.01,23.03,22.99,23.06,23.08,22.92,23.22,23.03,23.1,23.17,23.1,22.92,23.12,23.17,23.03,23.01,23.1,23.01,23.08,23.08,23.08,23.15,23.15,23.08,23.15,23.06,23.31,23.24,23.15,23.17,23.28,23.1,23.1,22.97,23.19,23.19,23.08,23.33,23.28,23.24,23.24,23.08,23.17,23.33,23.1,23.22,23.08,23.12,23.22,23.12,23.19,23.26,23.24,23.22,23.22,23.15,23.12,22.99,22.85,22.72,22.65,22.63,22.47,22.85,22.85,23.01,23.22,23.26,23.35,23.33,23.31,23.33,23.12,23.24,23.26,23.28,23.24,23.28,23.46,23.4,23.24,23.31,23.26,23.37,23.28,23.35,23.15,23.24,23.37,23.4,23.35,23.24,23.28,23.26,23.17,23.26,23.08,23.33,23.33,23.26,23.24,23.19,23.42,23.26,23.44,23.35,23.24,23.22,23.31,23.28,23.31,23.1,23.15,23.1,23.08,23.15,23.24,23.19,23.19,23.01,23.19,23.1,23.17,23.26,23.12,22.9,23.15,23.19,23.12,23.22,23.26,23.15,23.12,23.15,23.15,23.26,23.12,23.28,23.17,23.03,22.97,22.97,22.99,22.97,23.06,22.99,23.12,23.03,23.06,22.92,22.97,22.79,22.67,22.35,22.29,22.08,21.99,22.13,22.31,22.31,22.06,22.22,22.38,22.35,22.08,22.47,22.24,22.47,22.58,22.7,22.72,22.9,23.01,22.81,22.88,23.19,23.06,23.01,23.17,23.17,23.24,23.03,22.94,23.15,23.12,23.19,23.17,23.12,22.99,22.97,23.08,23.03,22.81,22.94,23.06,22.9,23.03,22.92,22.94,23.06,22.94,22.97,22.9,22.92,23.15,23.01,22.97,22.92,22.81,22.83,22.92,22.85,22.79,22.76,22.81,22.79,22.88,22.81,22.83,22.85,22.81,22.83,22.74,22.88,22.81,22.81,22.7,22.76,22.72,22.67,22.79,22.79,22.67,22.67,22.65,22.4,22.29,22.2,22.04,21.94,22.22,22.42,22.42,22.51,22.63,22.58,22.63,22.76,22.6,22.58,22.72,22.74,22.67,22.63,22.85,22.63,22.65,22.76,22.54,22.54,22.58,22.67,22.76,22.58,22.54,22.6,22.56,22.65,22.74,22.72,22.79,22.58,22.67,22.85,22.76,22.83,22.81,22.65,22.9,22.72,22.74,22.6,22.72,22.58,22.51,22.45,22.31,22.35,22.2,22.04,22.2,22.2,22.08,22.06,22.17,22.17,22.35,22.08,22.29,22.4,22.51,22.83,22.88,22.97,22.94,22.99,23.15,23.03,23.03,22.83,23.15,23.17,22.9,22.94,23.08,23.03,23.15,23.15,23.06,22.9,23.1,23.19,22.9,22.92,22.88,22.88,23.08,23.31,23.12,22.99,23.24,23.1,23.1,23.06,23.19,23.01,23.15,23.17,23.1,23.12,23.17,23.19,23.17,23.1,23.17,23.12,23.08,23.24,23.26,23.15,23.24,23.22,23.26,23.08,23.15,23.28,23.1,23.1,23.33,23.08,23.1,23.19,23.35,23.31,23.24,23.17,23.06,23.19,23.08,23.17,23.31,23.35,23.17,23.06,23.1,23.15,22.97,22.83,22.79,22.65,22.58,22.65,22.56,22.74,23.06,23.22,23.31,23.46,23.42,23.37,23.15,23.26,23.28,23.26,23.26,23.37,23.51,23.35,23.46,23.28,23.42,23.37,23.42,23.31,23.42,23.49,23.35,23.22,23.28,23.35,23.35,23.37,23.28,23.31,23.24,23.1,23.35,23.24,23.4,23.06,23.31,23.31,23.26,23.33,23.26,23.19,23.22,23.15,23.28,23.31,23.31,23.28,23.17,23.15,23.19,23.22,23.24,23.08,23.1,23.15,23.03,23.28,23.24,23.1,23.22,22.99,23.17,23.01,23.19,23.06,23.19,22.99,23.08,23.28,23.03,23.08,23.1,23.06,23.06,22.94,22.92,23.01,23.22,23.03,22.85,22.9,23.01,23.03,22.9,22.9,22.83,22.72,22.58,22.45,22.1,22.1,22.08,22.33,22.31,22.54,22.58,22.31,22.35,22.33,22.35,22.4,22.26,22.4,22.51,22.6,22.45,22.79,22.9,22.83,22.83,22.83,22.88,22.94,23.15,23.15,23.01,23.1,22.97,23.08,23.22,23.24,23.15,23.28,22.99,22.92,23.1,22.99,22.7,23.03,23.08,22.97,23.01,22.94,23.01,22.9,22.81,22.97,22.83,22.88,23.06,22.76,22.85,22.99,22.88,22.83,22.72,22.9,22.83,22.94,22.76,22.81,23.01,22.7,22.74,22.9,22.7,22.72,22.72,22.88,22.74,22.88,22.81,22.76,22.83,22.65,22.65,22.76,22.79,22.7,22.58,22.7,22.13,22.13,22.08,22.33,22.42,22.6,22.54,22.54,22.58,22.7,22.9,22.81,22.67,22.54,22.79,22.79,22.83,22.85,22.83,22.85,22.94,22.72,22.65,22.42,22.54,22.58,22.7,22.65,22.54,22.38,22.47,22.72,22.79,22.76,23.03,22.83,22.76,22.81,22.58,22.63,22.92,22.79,22.88,22.79,22.9,22.67,22.79,22.63,22.74,22.58,22.4,22.58,22.45,22.29,22.24,21.94,21.94,22.01,22.26,22.2,22.17,22.17,22.29,22.42,22.6,22.76,22.88,22.99,22.99,22.9,22.99,23.12,22.97,22.97,22.7,23.1,23.08,23.06,23.06,22.99,22.99,23.15,23.1,22.92,23.12,23.01,22.92,23.03,22.94,23.08,23.19,23.12,23.12,23.06,23.08,23.08,23.22,23.12,22.92,23.03,23.24,23.1,23.01,23.01,23.08,23.1,23.1,22.99,23.17,23.1,23.17,23.08,23.17,22.99,23.17,23.24,23.31,23.15,23.24,23.35,23.15,23.17,23.17,23.37,23.49,23.1,23.24,23.35,23.33,23.26,23.1,23.19,23.24,23.15,23.22,23.12,23.28,23.15,23.12,23.17,22.97,22.92,22.67,22.6,22.63,22.63,22.79,22.94,23.24,23.26,23.19,23.46,23.42,23.53,23.22,23.24,23.31,23.35,23.35,23.33,23.4,23.42,23.4,23.37,23.35,23.26,23.19,23.31,23.37,23.37,23.44,23.33,23.37,23.12,23.35,23.24,23.26,23.26,23.44,23.15,23.31,23.33,23.24,23.12,23.15,23.12,23.17,23.33,23.17,23.19,23.24,23.28,23.4,23.31,23.22,23.19,23.24,23.26,23.31,22.99,23.15,23.19,23.17,23.12,23.15,23.03,23.28,23.08,23.03,23.17,23.37,23.06,23.08,23.1,23.15,22.94,22.94,23.08,22.9,22.94,23.03,23.19,22.9,22.94,23.08,23.22,23.22,23.03,23.03,22.97,23.01,23.17,23.08,22.85,22.76,22.6,22.56,22.29,22.17,22.08,22.2,22.49,22.54,22.88,22.85,22.65,22.63,22.56,22.54,22.4,22.33,22.26,22.4,22.38,22.49,22.51,22.74,22.74,22.74,22.76,22.92,22.94,22.92,23.12,23.19,22.99,22.94,23.08,23.01,23.22,23.12,23.19,22.97,23.08,23.06,23.03,23.06,23.19,23.03,22.99,23.1,23.06,22.83,22.92,22.85,23.12,22.83,23.06,23.01,22.9,23.17,22.94,22.74,22.88,22.88,23.1,22.72,22.99,22.9,22.76,22.9,22.83,22.79,22.97,22.72,22.58,22.65,22.47,22.83,22.97,22.85,22.74,22.88,22.49,22.88,22.7,22.9,22.65,22.65,22.33,22.1,22.01,22.08,22.2,22.45,22.63,22.7,22.49,22.49,22.81,22.58,22.72,22.79,22.56,22.74,22.67,22.72,22.72,22.88,22.56,22.63,22.74,22.56,22.4,22.56,22.58,22.72,22.6,22.56,22.47,22.6,22.85,22.9,22.94,22.74,22.92,22.67,22.76,22.67,22.81,22.94,22.9,22.97,22.99,22.76,22.72,22.92,22.74,22.76,22.7,22.79,22.85,22.56,22.45,22.35,22.13,22.08,21.99,22.17,22.08,22.26,22.42,22.58,22.54,22.6,22.81,22.74,22.81,23.06,22.97,22.92,23.03,23.01,22.97,22.97,22.97,23.24,23.19,22.94,23.03,23.06,23.15,23.01,23.03,23.22,23.24,22.83,22.99,23.12,23.17,23.24,23.12,23.17,23.12,23.12,23.17,23.08,23.26,23.17,23.26,23.26,23.03,23.19,23.15,23.19,23.1,23.1,23.17,23.15,23.22,23.28,23.12,23.1,23.1,23.15,23.31,23.28,23.24,23.28,23.49,23.17,23.26,23.15,23.22,23.4,23.17,23.12,23.26,23.35,23.35,23.22,23.28,23.24,23.08,23.22,23.08,23.06,23.06,23.22,23.22,23.17,22.99,22.7,22.63,22.54,22.67,22.83,23.06,23.26,23.42,23.44,23.37,23.4,23.35,23.35,23.26,23.31,23.42,23.35,23.33,23.33,23.35,23.4,23.33,23.31,23.26,23.33,23.44,23.4,23.55,23.42,23.4,23.22,23.33,23.37,23.4,23.19,23.26,23.31,23.24,23.37,23.24,23.35,23.31,23.35,23.22,23.24,23.4,23.33,23.24,23.31,23.22,23.31,23.17,23.24,23.22,23.08,23.22,23.33,23.26,23.24,23.26,23.15,23.22,23.06,23.08,23.19,23.12,23.1,22.99,23.19,23.1,23.01,22.99,23.06,23.01,23.06,23.12,23.08,23.24,22.99,23.08,23.06,22.99,23.19,23.19,23.12,23.08,23.12,23.01,23.08,23.12,23.03,22.76,22.63,22.4,22.22,22.08,22.08,22.22,22.45,22.51,22.79,22.97,22.88,23.03,22.88,22.81,22.67,22.72,22.63,22.49,22.4,22.29,22.31,22.4,22.4,22.6,22.58,22.9,22.74,22.83,23.06,23.12,23.08,23.06,22.9,22.9,23.06,23.15,23.15,23.06,22.97,23.15,23.06,22.92,22.9,23.19,23.06,22.9,22.97,23.06,22.81,22.85,22.79,22.94,22.94,23.03,23.17,22.92,22.92,22.88,22.88,22.88,22.85,22.81,22.9,22.88,22.79,22.83,22.88,22.88,22.92,22.76,22.72,22.85,22.92,22.88,22.72,22.79,22.79,22.97,22.81,22.6,22.74,22.85,22.97,22.76,22.4,22.26,21.99,22.26,22.2,22.13,22.4,22.54,22.58,22.65,22.51,22.79,22.45,22.7,22.6,22.81,22.74,22.76,22.83,22.81,22.76,22.81,22.81,22.74,22.6,22.47,22.7,22.76,22.6,22.65,22.58,22.47,22.74,22.74,22.81,22.83,22.72,22.85,22.79,22.97,22.83,22.76,22.81,22.63,22.97,22.79,22.99,22.83,22.92,22.72,22.97,22.79,22.88,22.81,22.72,22.63,22.54,22.26,22.29,22.24,22.15,22.08,22.45,22.6,22.6,22.63,22.63,22.72,22.63,22.9,22.94,22.92,22.81,23.03,23.06,23.03,23.08,23.06,22.94,23.08,23.01,23.15,23.08,23.06,23.01,23.06,23.06,22.94,23.15,23.28,23.01,23.01,23.12,23.22,23.17,23.12,23.22,23.17,23.15,23.17,23.03,23.03,23.24,23.26,23.06,23.01,23.1,23.17,23.12,23.17,22.97,23.06,23.28,23.03,23.33,23.26,22.97,23.19,23.17,23.24,23.19,23.28,23.24,23.1,23.15,23.26,23.19,23.22,23.24,23.35,23.26,23.12,23.15,23.33,23.08,23.17,23.15,23.06,23.01,23.17,23.22,23.17,22.94,22.74,22.6,22.51,22.49,22.67,22.85,23.1,23.17,23.33,23.53,23.49,23.44,23.31,23.33,23.31,23.22,23.08,23.24,23.62,23.46,23.31,23.37,23.42,23.35,23.42,23.42,23.4,23.42,23.49,23.35,23.24,23.33,23.35,23.26,23.4,23.37,23.28,23.28,23.26,23.22,23.31,23.24,23.26,23.31,23.31,23.03,23.33,23.24,23.4,23.31,23.19,23.33,23.24,23.24,23.22,23.17,22.99,23.12,23.1,23.19,23.17,23.17,23.24,23.06,23.01,23.22,22.99,23.19,23.03,23.1,23.08,23.08,23.01,23.03,23.01,22.92,23.06,23.08,23.12,23.06,23.08,23.03,23.03,23.1,23.08,23.1,23.03,23.15,23.06,22.99,22.99,22.92,22.72,22.49,22.29,22.2,22.15,22.06,22.26,22.47,22.63,22.81,22.94,22.94,23.03,23.03,23.03,22.83,22.94,22.58,22.49,22.49,22.42,22.29,22.4,22.38,22.42,22.49,22.49,22.47,22.47,22.81,22.85,22.88,22.92,22.85,22.97,23.08,22.99,23.03,23.08,22.9,22.85,23.17,22.85,22.92,22.97,23.01,22.83,23.03,23.01,23.01,22.79,22.94,23.03,22.85,22.9,23.17,22.92,22.85,22.81,22.85,22.99,22.88,22.79,22.83,22.79,22.94,22.92,23.03,22.94,23.12,22.97,22.67,22.7,22.76,22.79,22.79,22.67,22.81,22.6,22.65,22.54,22.67,22.83,22.65,22.54,22.33,22.06,21.97,22.1,22.01,22.47,22.6,22.6,22.7,22.6,22.54,22.6,22.6,22.72,22.65,22.7,22.63,22.79,22.67,22.7,22.88,22.54,22.74,22.7,22.65,22.45,22.45,22.58,22.6,22.67,22.56,22.7,22.79,22.74,22.83,22.72,22.94,22.88,22.76,22.85,22.74,22.88,22.99,23.08,22.74,22.83,23.01,23.08,23.01,22.79,23.01,22.88,22.85,22.81,22.7,22.76,22.45,22.54,22.4,22.17,22.24,22.06,22.33,22.85,22.67,22.67,22.83,22.88,22.7,22.72,22.88,22.99,22.81,23.1,22.9,22.72,22.94,23.01,23.1,22.97,23.03,23.03,22.92,23.08,22.99,22.99,22.99,22.99,23.01,23.03,23.08,23.17,23.24,23.19,23.1,23.06,23.17,23.01,23.26,23.08,23.15,23.19,23.17,23.19,23.06,23.08,23.01,23.15,23.06,23.17,23.12,23.19,23.1,23.12,23.26,23.28,22.99,23.12,23.28,23.19,23.19,23.28,23.12,23.15,23.17,23.26,23.19,23.08,23.31,23.19,23.15,23.22,23.08,23.19,23.17,23.17,23.19,23.01,23.1,22.97,23.1,23.12,23.06,22.56,22.6,22.49,22.56,22.7,22.94,23.17,23.26,23.31,23.15,23.44,23.4,23.28,23.22,23.28,23.35,23.33,23.35,23.28,23.42,23.44,23.33,23.37,23.44,23.37,23.42,23.37,23.37,23.35,23.33,23.33,23.33,23.33,23.33,23.33,23.17,23.15,23.28,23.17,23.44,23.24,23.12,23.26,23.26,23.37,23.35,23.37,23.22,23.19,23.19,23.26,23.33,23.19,23.28,23.06,23.12,23.12,23.01,23.22,23.03,23.17,23.1,23.15,23.08,23.01,23.15,23.26,23.15,23.19,23.22,23.15,23.1,23.1,23.08,23.06,23.15,23.12,23.1,23.03,23.1,23.06,22.94,23.01,23.06,23.06,23.19,23.1,23.17,22.74,22.92,22.88,22.94,22.76,22.42,22.15,22.24,22.06,22.15,22.45,22.51,22.74,22.97,23.03,22.94,23.17,23.01,23.08,22.94,23.03,22.85,22.83,22.88,22.56,22.51,22.63,22.4,22.38,22.47,22.45,22.31,22.51,22.65,22.72,22.67,22.88,22.76,22.9,22.88,22.97,23.03,22.9,23.01,23.03,22.9,22.9,22.94,22.97,22.99,23.1,23.1,23.01,23.01,23.01,22.83,22.79,22.97,22.9,23.06,22.85,22.99,22.76,22.92,22.99,22.9,22.76,22.81,22.79,22.99,22.76,22.97,22.79,22.85,22.81,22.81,22.83,22.7,22.81,22.79,22.94,22.9,22.81,22.74,22.7,22.67,22.76,22.72,22.54,22.26,21.88,22.04,22.22,22.17,22.58,22.38,22.58,22.74,22.65,22.54,22.72,22.65,22.74,22.4,22.63,22.72,22.56,22.72,22.9,22.9,22.65,22.85,22.88,22.67,22.56,22.51,22.67,22.7,22.65,22.65,22.56,22.76,22.7,22.67,22.72,22.79,22.81,22.7,22.94,22.79,22.88,22.99,23.03,22.81,22.94,22.9,22.94,22.76,22.65,22.76,22.9,22.92,22.83,22.58,22.88,22.7,22.58,22.4,22.33,22.42,22.13,22.72,22.6,22.72,22.65,22.72,23.06,22.83,22.99,22.9,22.72,22.81,22.9,22.83,22.94,22.88,23.08,23.17,22.99,22.99,23.03,23.26,23.01,22.97,22.9,23.06,23.01,23.03,23.03,23.08,23.15,23.08,23.12,23.06,23.01,23.08,23.03,23.42,23.22,23.22,23.15,23.06,23.01,23.15,22.99,23.12,23.06,23.03,23.17,23.1,23.22,23.12,23.08,23.4,23.33,23.03,23.22,23.17,23.28,23.17,23.17,23.26,23.17,23.31,23.22,23.26,23.17,23.35,23.33,23.17,23.12,23.24,23.22,23.12,23.1,23.19,23.17,23.03,23.03,23.08,23.03,22.83,22.58,22.51,22.65,22.67,22.88,23.03,23.15,23.26,23.42,23.26,23.42,23.4,23.33,23.31,23.37,23.4,23.42,23.44,23.37,23.35,23.44,23.37,23.44,23.42,23.33,23.37,23.37,23.35,23.49,23.49,23.19,23.37,23.19,23.19,23.24,23.33,23.26,23.35,23.26,23.55,23.26,23.37,23.17,23.33,23.08,23.31,23.28,23.15,23.19,23.19,23.26,23.19,23.24,23.24,23.08,23.24,22.79,23.12,23.19,23.03,23.17,23.17,23.17,23.08,23.01,23.1,22.94,23.03,22.99,23.1,23.03,23.33,22.99,23.12,23.06,23.03,23.03,22.92,23.03,23.12,23.06,22.97,23.01,23.08,23.4,23.1,22.99,23.08,22.9,22.92,22.94,22.83,22.49,22.29,22.13,22.06,22.17,22.29,22.58,22.72,22.94,23.06,23.08,23.1,23.15,23.06,23.17,23.06,23.08,22.99,23.06,22.92,22.79,22.67,22.56,22.31,22.65,22.42,22.47,22.33,22.33,22.42,22.65,22.47,22.65,22.74,22.72,22.74,22.85,22.99,23.06,22.76,23.08,22.9,22.74,22.79,22.92,22.99,23.03,23.06,23.03,23.1,22.72,23.01,22.92,22.9,22.99,23.19,22.99,22.92,22.83,22.83,22.85,22.85,22.99,22.92,22.72,22.9,22.76,22.83,22.79,22.58,22.76,23.03,22.85,22.67,22.83,22.9,22.65,22.76,22.81,22.6,22.7,22.65,22.72,22.74,22.33,22.08,21.94,21.94,22.33,22.29,22.51,22.51,22.47,22.72,22.65,22.51,22.56,22.7,22.6,22.83,22.63,22.76,22.58,22.74,22.9,22.7,22.79,22.56,22.63,22.56,22.51,22.88,22.85,22.67,22.76,22.65,22.47,22.74,22.65,22.85,22.92,22.76,22.92,22.83,23.01,22.9,22.81,22.9,22.92,22.97,22.94,23.03,23.08,23.03,22.9,22.99,22.88,22.74,22.74,22.74,22.65,22.83,22.72,22.58,22.4,22.35,22.31,22.65,22.74,22.74,22.72,22.79,22.83,22.97,23.08,23.03,23.03,22.94,22.81,22.9,22.9,22.97,22.9,22.99,23.03,23.1,23.08,23.22,22.92,23.03,22.9,23.19,23.19,22.9,23.01,22.99,23.06,23.15,23.1,23.12,22.99,23.22,23.17,23.08,22.92,23.06,23.15,23.22,23.17,23.28,22.94,22.97,23.03,23.01,23.15,23.17,23.08,23.03,23.17,23.24,23.22,23.26,23.12,23.22,23.4,23.22,23.19,23.24,23.31,23.19,23.4,23.26,23.22,23.31,23.24,23.37,23.19,23.12,23.1,23.19,23.28,23.37,23.22,23.03,22.97,23.26,22.97,22.83,22.49,22.49,22.51,22.81,22.85,23.19,23.26,23.17,23.44,23.4,23.31,23.4,23.31,23.35,23.42,23.42,23.31,23.37,23.37,23.44,23.46,23.42,23.31,23.37,23.17,23.28,23.33,23.35,23.44,23.28,23.28,23.24,23.22,23.24,23.33,23.28,23.31,23.24,23.4,23.35,23.31,23.42,23.31,23.33,23.19,23.28,23.46,23.44,23.19,23.24,23.22,23.49,23.22,23.12,23.1,23.06,23.17,23.03,23.12,23.01,23.12,23.24,23.17,22.99,23.03,23.15,23.12,23.17,23.01,23.33,22.99,23.15,23.1,23.19,22.94,22.92,22.92,23.12,23.01,22.99,23.06,23.08,23.03,23.15,23.28,23.03,23.08,22.94,23.01,22.94,22.9,22.9,22.54,22.22,22.04,22.04,22.26,22.35,22.67,22.76,22.97,22.88,23.03,23.15,23.06,23.12,23.06,23.17,23.12,23.06,23.22,23.08,23.24,22.9,22.72,22.74,22.58,22.49,22.45,22.56,22.31,22.49,22.35,22.38,22.47,22.49,22.63,22.51,22.81,23.01,23.06,23.01,22.97,22.94,22.83,22.7,23.03,22.88,22.85,22.94,22.81,22.97,22.85,22.85,22.97,22.97,22.97,22.97,22.85,22.88,23.06,22.7,22.79,22.76,22.94,22.92,22.83,22.92,22.85,22.9,22.94,22.76,22.97,22.83,22.88,22.83,22.83,22.67,22.54,22.79,22.85,22.72,22.63,22.79,22.72,22.58,22.22,22.01,22.06,21.94,22.33,22.47,22.45,22.47,22.56,22.54,22.4,22.63,22.54,22.6,22.7,22.6,22.63,22.74,22.74,22.58,22.45,22.7,22.79,22.7,22.65,22.85,22.67,22.72,22.54,22.7,22.6,22.6,22.6,22.63,22.92,22.79,22.9,22.9,23.06,22.94,22.92,23.08,22.81,22.97,22.97,23.03,22.92,22.97,23.06,23.01,22.92,22.99,23.06,22.9,23.01,22.99,22.85,22.79,22.65,22.51,22.54,22.29,22.4,22.63,22.92,22.97,22.92,22.94,23.06,22.92,23.1,23.06,23.01,23.01,22.97,22.92,22.85,22.88,23.06,22.92,22.97,22.99,23.08,23.01,22.99,22.92,23.1,23.1,23.17,23.01,22.99,22.99,23.12,23.19,23.17,23.12,23.24,23.08,23.03,23.06,23.15,23.06,23.03,23.06,23.06,23.22,23.01,23.22,23.22,23.08,23.17,23.1,23.1,23.31,23.22,23.15,23.12,23.22,23.22,23.1,23.4,23.26,23.28,23.28,23.24,23.28,23.12,23.42,23.24,23.33,23.31,23.22,23.28,23.17,23.37,23.24,23.4,23.24,23.15,23.12,23.12,22.92,22.85,22.76,22.49,22.35,22.81,22.92,23.01,23.28,23.44,23.37,23.58,23.44,23.44,23.4,23.42,23.19,23.35,23.37,23.49,23.49,23.51,23.28,23.62,23.28,23.28,23.44,23.31,23.4,23.37,23.26,23.42,23.31,23.4,23.49,23.37,23.28,23.24,23.26,23.22,23.08,23.42,23.4,23.42,23.37,23.31,23.31,23.19,23.35,23.44,23.19,23.22,23.15,23.12,23.26,23.28,23.28,23.01,23.12,23.19,23.15,23.12,23.17,23.12,23.22,23.33,23.22,23.03,23.22,23.17,23.19,23.22,23.19,23.15,23.17,23.19,23.17,23.01,23.22,23.08,22.99,23.08,23.12,23.28,23.12,22.92,23.08,23.17,23.08,23.08,22.97,22.81,23.03,22.79,22.76,22.47,22.17,22.13,22.26,22.15,22.51,22.76,22.88,22.99,23.01,23.06,22.9,23.06,23.08,23.19,23.03,23.12,23.26,23.12,23.24,23.12,22.9,22.9,22.9,22.85,22.88,22.83,22.6,22.42,22.58,22.63,22.58,22.33,22.47,22.56,22.49,22.63,22.65,22.79,22.92,22.79,23.15,22.72,22.83,23.01,22.92,22.83,22.88,22.9,22.9,23.03,22.85,22.88,22.79,22.94,23.15,22.94,22.94,22.72,22.97,22.83,22.83,22.9,22.94,22.99,23.15,22.92,23.03,22.56,22.88,22.9,22.88,22.63,22.79,22.74,22.88,22.72,22.72,22.85,22.65,22.72,22.67,22.6,22.58,22.15,22.13,22.06,22.08,22.26,22.4,22.45,22.63,22.49,22.54,22.67,22.88,22.76,22.72,22.7,22.47,22.81,22.74,22.63,22.72,22.7,22.67,22.63,22.63,22.63,22.81,22.81,22.54,22.63,22.56,22.72,22.63,22.83,22.88,22.85,22.99,22.94,23.06,22.72,22.74,22.99,22.97,22.88,23.12,23.26,22.83,22.9,22.97,22.92,22.99,23.1,23.03,23.1,23.1,22.94,22.88,22.97,22.9,22.7,22.47,22.54,22.42,22.47,22.79,22.74,22.83,22.79,23.01,23.03,22.92,23.03,23.12,23.24,22.99,23.08,23.08,22.88,22.9,23.1,23.06,22.94,22.88,23.17,23.08,22.94,23.1,23.06,23.08,23.15,22.97,23.06,23.1,23.08,23.19,23.03,23.12,23.19,23.01,23.22,23.12,23.06,23.24,23.4,23.26,23.08,23.08,23.06,23.1,23.35,23.1,23.03,23.08,22.99,23.22,23.22,23.17,23.15,23.28,23.24,23.31,23.33,23.19,23.24,23.19,23.17,23.22,23.12,23.35,23.01,23.24,23.22,23.35,23.22,23.03,23.37,23.26,23.35,23.1,23.1,23.03,22.97,22.99,22.9,22.45,22.47,22.45,22.65,23.01,23.17,23.35,23.28,23.42,23.55,23.37,23.49,23.58,23.37,23.44,23.44,23.31,23.49,23.28,23.51,23.37,23.42,23.28,23.33,23.26,23.37,23.37,23.46,23.4,23.37,23.4,23.22,23.35,23.35,23.4,23.4,23.28,23.31,23.26,23.17,23.42,23.49,23.4,23.28,23.26,23.35,23.26,23.28,23.26,23.24,23.12,23.26,23.37,23.28,23.28,23.22,23.24,23.17,23.1,23.17,23.12,23.22,23.17,23.24,23.08,23.06,23.22,23.19,22.99,23.19,23.15,23.12,23.15,23.17,22.94,23.03,23.15,23.01,23.03,23.1,23.17,23.12,22.99,22.99,23.24,23.1,23.06,23.06,23.08,22.85,22.81,22.76,22.56,22.31,22.22,22.08,22.22,22.22,22.67,22.74,22.83,23.1,22.92,23.08,23.15,23.15,23.17,23.24,23.12,23.17,23.35,23.24,23.35,23.26,23.12,23.08,23.12,23.01,22.88,22.83,22.79,22.67,22.54,22.58,22.24,22.22,22.29,22.49,22.54,22.51,22.63,22.7,22.6,22.67,22.79,22.72,22.81,22.94,22.9,22.88,22.81,22.94,22.81,22.85,22.79,22.88,22.9,22.88,23.1,22.94,22.97,22.94,22.92,22.88,22.92,22.88,22.97,22.81,22.83,22.85,22.81,22.85,22.88,22.81,22.74,22.72,22.81,22.83,22.72,22.7,22.72,22.7,22.6,22.67,22.65,22.6,22.38,21.97,22.13,22.15,22.24,22.49,22.4,22.7,22.6,22.51,22.63,22.7,22.76,22.54,22.6,22.74,22.72,22.79,22.6,22.6,22.83,22.67,22.76,22.85,22.85,22.88,22.81,22.58,22.83,22.81,22.6,22.63,22.67,22.74,22.92,22.94,22.99,22.97,22.94,23.01,22.67,22.9,22.9,22.99,23.15,23.08,23.17,23.22,23.15,23.19,23.31,22.83,23.15,23.19,22.97,22.99,22.79,23.26,22.99,22.83,22.56,22.49,22.42,22.85,22.99,22.92,23.01,23.01,23.12,23.17,23.12,23.35,23.37,23.28,23.12,23.22,23.33,23.03,23.12,23.19,23.12,23.08,23.03,23.12,22.99,23.26,23.17,23.12,23.1,23.08,23.19,23.12,23.08,23.24,23.26,23.17,23.28,23.19,23.03,23.19,23.24,23.37,23.17,23.08,23.28,23.33,23.24,23.33,23.12,23.19,23.06,23.15,23.22,23.1,23.15,23.12,23.08,23.26,23.22,23.33,23.24,23.26,23.31,23.37,23.37,23.49,23.26,23.37,23.15,23.24,23.46,23.37,23.17,23.53,23.35,23.22,23.35,23.4,23.31,23.24,23.12,23.06,23.03,22.72,22.74,22.45,22.49,22.83,23.22,23.42,23.51,23.44,23.55,23.42,23.58,23.46,23.78,23.53,23.51,23.42,23.37,23.51,23.28,23.49,23.33,23.26,23.31,23.49,23.42,23.4,23.49,23.33,23.44,23.46,23.42,23.28,23.26,23.46,23.53,23.22,23.4,23.42,23.33,23.35,23.37,23.49,23.46,23.35,23.42,23.4,23.28,23.44,23.22,23.4,23.31,23.6,23.37,23.42,23.51,23.35,23.12,23.08,23.24,23.28,23.12,23.22,23.22,23.35,23.15,23.12,23.1,23.22,23.17,23.33,23.37,23.01,23.22,23.12,23.19,22.94,23.19,23.03,23.15,23.33,23.03,23.28,23.12,23.17,23.06,23.24,23.28,23.12,22.76,22.94,22.76,22.79,22.56,22.42,22.2,22.2,22.42,22.58,22.79,22.79,22.99,23.12,23.03,23.19,23.1,23.24,23.22,23.15,23.22,23.33,23.06,23.28,23.33,23.22,22.94,23.17,23.4,23.17,23.31,23.15,23.15,22.92,22.76,22.88,22.58,22.65,22.42,22.35,22.51,22.4,22.65,22.6,22.56,22.49,22.42,22.67,22.63,22.79,22.76,22.85,22.88,22.92,22.83,22.81,23.06,22.85,22.94,22.99,23.01,23.01,22.94,22.9,22.81,22.81,22.72,22.79,22.97,22.99,22.83,23.01,22.97,22.99,22.9,23.03,22.72,22.7,22.97,22.92,22.76,22.9,22.79,22.94,22.74,22.7,22.6,22.63,22.29,21.99,22.2,22.24,22.42,22.76,22.47,22.63,22.65,22.72,22.79,22.81,22.67,22.56,22.72,22.81,22.74,22.74,22.94,22.79,22.74,22.85,22.7,22.76,22.9,22.83,22.76,22.76,22.81,22.67,22.76,22.58,22.72,22.7,22.65,22.76,23.22,23.1,22.92,22.94,22.92,23.03,22.88,23.01,23.03,23.06,23.15,23.08,23.22,23.08,23.24,22.97,23.19,23.1,23.15,22.97,22.88,22.94,22.85,22.67,22.56,22.35,22.4,22.83,23.1,22.9,23.15,22.81,23.17,23.28,23.1,23.37,23.49,23.46,23.37,23.37,23.22,23.46,23.08,23.19,23.17,23.01,23.1,22.99,23.08,23.15,23.06,23.08,23.19,23.19,23.31,23.01,23.01,23.24,23.26,23.1,23.08,23.08,23.01,23.12,23.26,23.22,23.24,23.51,23.49,23.22,23.31,23.17,23.31,23.19,23.24,23.28,23.24,23.19,22.99,23.17,23.26,23.22,23.22,23.15,23.22,23.03,23.31,23.42,23.28,23.4,23.17,23.4,23.19,23.15,23.26,23.33,23.37,23.4,22.99,23.17,23.28,23.37,23.15,23.06,23.19,23.01,22.76,22.67,22.63,22.54,22.63,22.97,23.19,23.19,23.42,23.37,23.46,23.6,23.49,23.49,23.55,23.55,23.44,23.24,23.33,23.26,23.44,23.51,23.28,23.53,23.4,23.53,23.49,23.46,23.49,23.4,23.49,23.49,23.71,23.42,23.28,23.33,23.55,23.42,23.37,23.26,23.35,23.28,23.31,23.4,23.4,23.42,23.44,23.24,23.44,23.37,23.24,23.31,23.22,23.46,23.31,23.22,23.26,23.24,23.12,23.24,23.06,23.15,23.15,23.22,23.19,23.12,23.06,23.19,23.19,23.06,23.17,23.15,23.1,23.31,23.19,23.1,23.26,22.83,23.06,23.06,22.97,23.06,23.17,23.03,22.97,22.97,22.97,23.15,23.12,23.37,22.99,22.94,23.03,22.67,22.49,22.2,22.06,22.01,22.35,22.83,22.99,22.94,23.12,23.15,23.01,23.17,23.1,23.26,23.24,23.35,23.15,23.19,23.24,23.28,23.33,23.31,23.19,23.4,23.1,23.28,23.26,23.17,23.19,23.08,22.94,22.81,22.81,22.7,22.42,22.45,22.56,22.42,22.47,22.6,22.35,22.42,22.47,22.58,22.54,22.6,22.76,22.67,22.85,22.63,22.54,22.85,22.92,22.9,22.9,22.72,22.97,22.76,22.83,23.03,23.12,22.94,22.72,22.97,22.83,22.88,23.12,22.92,22.81,22.83,22.94,23.03,22.72,22.7,22.72,23.1,22.97,23.01,22.92,22.79,22.7,22.76,22.54,22.51,22.15,21.9,22.17,22.17,22.49,22.7,22.6,22.85,22.74,22.6,22.65,22.74,22.74,22.81,22.58,22.81,22.67,22.76,22.9,22.74,22.65,22.97,22.92,22.7,22.74,22.72,22.49,22.85,22.76,22.65,22.65,22.76,22.56,22.76,22.79,22.83,23.1,22.83,22.81,22.76,22.97,23.15,23.01,23.08,23.17,22.9,23.01,23.01,23.19,23.12,23.33,23.1,23.22,23.03,23.01,22.99,22.85,22.99,22.83,22.54,22.54,22.35,22.54,22.65,22.99,22.99,23.22,23.17,23.24,23.28,23.37,23.58,23.4,23.49,23.58,23.51,23.51,23.46,23.4,23.22,23.33,23.06,23.19,23.35,23.15,23.1,22.97,22.99,23.1,23.24,23.12,23.15,23.22,23.24,23.15,23.19,23.19,23.17,23.08,23.08,23.28,23.28,23.31,23.26,23.35,23.15,23.15,23.08,23.44,23.17,23.28,23.19,23.17,23.15,23.12,23.06,23.19,23.17,23.12,23.17,23.17,23.15,23.35,23.31,23.24,23.24,23.33,23.35,23.28,23.1,23.22,23.22,23.19,23.33,23.06,23.06,23.24,23.33,23.19,22.97,23.06,22.94,22.81,22.72,22.65,22.56,22.65,23.01,23.28,23.42,23.71,23.46,23.49,23.42,23.33,23.51,23.6,23.46,23.46,23.28,23.42,23.31,23.35,23.51,23.46,23.49,23.28,23.46,23.46,23.51,23.49,23.4,23.49,23.46,23.6,23.46,23.4,23.33,23.6,23.44,23.26,23.35,23.19,23.4,23.28,23.44,23.22,23.53,23.6,23.22,23.33,23.42,23.35,23.22,23.37,23.26,23.33,23.4,23.35,23.19,23.22,23.26,23.17,23.15,23.06,23.22,23.15,23.28,23.03,23.12,23.17,23.03,23.15,23.17,23.33,23.24,23.19,23.19,22.97,23.12,23.1,23.22,23.22,23.24,23.12,23.17,23.08,23.03,23.03,23.1,23.08,23.22,23.06,22.88,22.74,22.42,22.38,22.13,22.2,22.29,22.65,22.85,23.08,22.92,23.01,23.1,23.19,22.92,23.08,23.28,23.28,23.51,23.19,23.15,23.33,23.31,23.28,23.22,23.28,23.17,23.17,23.37,23.33,23.33,23.44,23.08,23.12,23.15,23.15,22.97,22.83,22.76,22.58,22.54,22.47,22.33,22.17,22.35,22.22,22.42,22.49,22.49,22.51,22.74,22.6,22.7,22.58,22.9,22.99,22.9,22.88,22.94,22.88,22.9,22.92,22.92,22.74,22.79,22.7,22.85,22.97,22.9,22.81,22.72,23.01,22.92,22.94,23.17,22.72,22.79,22.72,22.72,22.9,22.83,22.92,22.88,22.74,22.7,22.17,22.26,22.15,21.94,22.01,22.15,22.51,22.58,22.58,22.85,22.79,22.81,22.76,22.72,22.42,22.51,22.67,22.63,22.65,22.65,22.88,22.79,22.79,22.85,22.81,22.88,22.88,22.79,22.65,22.72,22.85,22.56,22.76,22.81,22.79,22.72,22.81,22.85,22.85,23.06,23.03,23.01,22.88,23.06,23.03,23.08,23.17,23.1,22.97,23.08,23.08,23.28,23.42,23.12,23.12,23.1,23.1,23.17,23.03,23.08,22.99,22.6,22.58,22.35,22.7,22.67,23.03,23.28,23.33,23.22,23.44,23.46,23.42,23.62,23.53,23.66,23.69,23.62,23.53,23.55,23.42,23.58,23.44,23.28,23.33,23.55,23.33,23.26,23.19,23.1,23.06,23.08,23.12,23.01,22.99,23.19,23.17,23.26,23.26,23.33,23.26,23.44,23.22,23.4,23.17,23.31,23.35,23.06,23.15,23.31,23.26,23.17,23.31,23.26,23.33,23.17,23.28,23.01,23.22,23.22,23.15,23.24,23.22,23.28,23.49,23.37,23.44,23.28,23.35,23.42,23.35,23.31,23.37,23.31,23.42,23.33,23.26,23.17,23.15,23.31,23.19,23.1,23.01,22.81,22.74,22.6,22.65,22.72,22.81,23.15,23.33,23.42,23.37,23.33,23.55,23.49,23.55,23.6,23.49,23.37,23.37,23.55,23.33,23.42,23.42,23.49,23.62,23.55,23.42,23.37,23.26,23.4,23.4,23.37,23.35,23.37,23.44,23.62,23.33,23.4,23.55,23.4,23.26,23.28,23.28,23.35,23.22,23.4,23.4,23.33,23.42,23.31,23.42,23.44,23.33,23.37,23.24,23.24,23.46,23.35,23.42,23.26,23.24,23.17,23.1,23.1,23.03,23.06,23.28,23.08,23.26,23.15,23.22,23.17,23.15,23.19,23.17,23.22,23.26,23.1,23.03,22.94,22.99,23.19,23.24,22.99,23.06,23.08,23.12,23.03,22.99,23.37,23.03,22.99,22.92,22.67,22.56,22.54,22.24,22.13,22.29,22.35,22.65,23.06,23.03,23.01,22.99,23.08,23.03,23.19,23.22,23.22,23.01,23.24,23.19,23.33,23.12,23.35,23.28,23.15,23.19,23.22,23.31,23.49,23.33,23.31,23.22,23.08,23.17,23.24,23.22,22.99,22.88,22.97,22.67,22.67,22.54,22.56,22.56,22.38,22.31,22.2,22.2,22.47,22.54,22.56,22.76,22.56,22.72,22.83,22.97,22.85,22.92,22.65,22.99,22.9,22.9,22.94,22.76,22.9,22.74,22.9,23.01,23.03,22.85,22.9,23.12,22.97,22.76,22.97,22.81,22.79,22.76,22.81,22.97,22.85,22.85,22.85,22.7,22.6,22.29,22.24,22.1,22.2,22.31,22.4,22.54,22.7,22.63,22.67,22.74,22.58,22.83,22.65,22.7,22.63,22.76,22.7,22.76,22.72,22.67,22.79,22.81,22.85,22.74,22.58,22.76,22.76,22.83,22.72,22.67,22.65,22.67,22.79,22.74,22.9,22.74,22.79,22.92,22.88,22.92,23.08,22.94,23.01,22.83,22.94,23.03,22.99,22.97,23.01,23.12,23.06,22.92,22.97,22.99,22.92,23.03,22.97,22.92,22.9,22.81,22.47,22.42,22.47,22.76,22.92,22.97,23.08,23.4,23.19,23.33,23.64,23.53,23.66,23.75,24.02,23.84,23.93,23.82,23.82,23.58,23.55,23.46,23.51,23.49,23.46,23.26,23.17,23.22,23.26,23.15,23.06,23.1,23.06,23.08,23.08,23.08,23.24,23.26,23.35,23.1,23.31,23.33,23.08,23.22,23.28,23.31,23.26,23.24,23.12,23.17,23.24,23.31,23.12,23.22,23.22,23.12,23.06,23.06,23.22,23.06,23.12,23.15,23.19,23.31,23.28,23.28,23.31,23.1,23.26,23.26,23.33,23.19,23.15,23.33,23.42,23.17,23.1,23.19,23.12,23.15,23.01,22.81,22.56,22.65,22.56,22.74,22.76,22.88,23.26,23.4,23.35,23.46,23.44,23.26,23.46,23.42,23.66,23.58,23.17,23.44,23.53,23.31,23.33,23.4,23.51,23.53,23.4,23.4,23.46,23.37,23.46,23.49,23.55,23.4,23.44,23.53,23.44,23.42,23.37,23.35,23.33,23.46,23.19,23.24,23.35,23.24,23.33,23.17,23.28,23.37,23.37,23.26,23.33,23.19,23.4,23.26,23.37,23.28,23.26,23.22,23.19,23.4,23.35,23.19,23.12,23.03,23.15,23.31,23.08,23.1,23.08,23.12,23.24,23.24,23.1,23.22,23.15,22.97,23.06,23.15,23.26,23.19,23.1,22.94,22.99,23.06,23.12,23.01,22.97,23.01,23.06,22.92,22.85,22.74,22.51,22.29,22.31,22.15,22.08,22.42,22.6,22.76,22.85,23.01,22.85,23.03,23.03,23.1,23.19,23.01,23.17,23.33,23.15,23.03,23.15,23.24,23.22,23.28,23.22,23.1,23.22,23.37,23.28,23.17,23.12,23.17,23.1,23.19,23.44,23.22,23.22,23.06,23.01,22.97,22.88,22.67,22.49,22.31,22.26,22.26,22.26,22.22,22.33,22.29,22.26,22.42,22.42,22.29,22.6,22.7,22.72,22.81,22.83,22.81,22.72,22.9,22.83,22.88,22.72,22.7,22.99,22.81,22.9,22.81,23.01,22.92,22.9,22.72,22.76,22.7,22.79,22.72,22.83,22.92,22.76,22.76,22.74,22.67,22.45,22.06,22.17,22.01,22.15,22.17,22.4,22.29,22.72,22.54,22.67,22.72,22.58,22.67,22.72,22.67,22.79,22.65,22.83,22.76,22.54,22.67,22.6,22.72,22.85,22.65,22.45,22.85,22.7,22.67,22.58,22.51,22.72,22.72,22.63,22.74,22.6,22.72,22.85,22.9,22.94,22.94,22.97,23.03,22.85,22.94,23.12,22.92,22.9,23.01,23.12,23.17,23.08,22.85,22.94,23.01,23.03,23.03,23.22,22.97,22.88,22.85,22.67,22.42,22.49,22.94,22.9,23.22,23.24,23.42,23.42,23.64,23.66,23.75,23.75,23.66,23.84,23.91,23.93,23.75,23.89,23.96,23.84,23.89,23.69,23.58,23.6,23.46,23.42,23.12,23.19,23.17,23.22,23.01,22.88,23.03,23.12,23.06,23.08,23.15,23.03,23.15,23.26,23.15,23.19,23.15,23.22,23.22,23.22,23.15,23.08,23.17,23.08,23.1,23.28,23.03,23.03,22.94,23.12,23.26,23.17,23.03,23.15,23.06,23.26,23.26,23.31,23.33,23.28,23.17,23.1,23.31,23.08,23.31,23.22,23.24,23.37,23.22,23.19,23.15,23.17,23.19,23.01,22.76,22.67,22.83,22.56,22.74,22.74,23.08,23.28,23.4,23.44,23.55,23.55,23.22,23.35,23.44,23.44,23.46,23.37,23.35,23.53,23.37,23.31,23.53,23.31,23.35,23.42,23.46,23.33,23.35,23.51,23.53,23.6,23.28,23.46,23.6,23.42,23.33,23.31,23.35,23.31,23.33,23.33,23.31,23.33,23.31,23.46,23.26,23.4,23.4,23.33,23.37,23.19,23.17,23.17,23.22,23.22,23.35,23.4,23.4,23.22,23.24,23.26,23.12,23.19,23.06,23.19,23.28,23.19,22.99,22.85,23.08,23.08,22.99,22.99,23.03,23.06,23.01,23.06,23.26,23.01,23.03,22.99,22.99,23.08,22.97,23.15,23.06,23.01,22.94,23.08,22.97,22.92,22.67,22.42,22.22,22.22,22.1,22.24,22.35,22.47,22.81,22.97,22.85,22.92,22.88,23.08,22.99,22.94,23.03,23.06,23.19,23.1,23.12,23.15,23.26,23.15,23.24,23.15,23.26,23.35,23.17,23.19,23.19,23.28,23.26,23.1,23.33,23.24,23.22,23.06,23.15,23.03,23.17,23.08,22.76,22.83,22.56,22.51,22.35,22.31,22.29,22.22,22.17,22.24,22.22,22.24,22.33,22.2,22.56,22.65,22.65,22.72,22.67,22.67,22.88,22.83,22.83,22.85,22.7,23.01,22.76,22.81,22.76,22.7,22.94,22.85,22.85,22.83,22.85,22.76,22.49,22.58,22.88,22.76,22.79,22.58,22.56,22.35,21.94,22.15,22.22,22.17,22.2,22.29,22.33,22.4,22.56,22.63,22.47,22.56,22.54,22.67,22.79,22.72,22.56,22.81,22.65,22.81,22.63,22.56,22.56,22.67,22.72,22.54,22.49,22.83,22.74,22.6,22.9,22.79,22.94,22.51,22.65,22.54,22.74,22.76,22.74,22.92,22.92,22.94,22.94,22.92,23.03,23.12,23.17,22.99,22.94,23.08,23.19,23.08,22.97,22.85,22.9,22.99,23.15,23.1,22.99,22.9,22.79,22.49,22.35,22.72,23.06,23.01,23.33,23.26,23.58,23.55,23.58,23.71,23.75,23.64,23.87,24.09,23.93,23.84,24.11,24.05,24.09,24.05,24.0,23.73,23.87,23.71,23.62,23.64,23.49,23.55,23.44,23.31,23.12,23.19,23.08,23.12,23.03,23.15,23.31,23.06,23.08,23.42,23.22,23.31,23.22,23.26,23.26,22.99,23.15,23.1,23.08,23.03,23.08,23.33,23.03,22.97,22.94,23.06,23.28,23.06,23.1,23.1,23.19,23.22,23.33,23.22,23.35,23.17,23.26,23.28,23.4,23.26,23.33,23.37,23.33,23.15,23.1,23.1,23.19,23.1,22.92,23.01,22.74,22.76,22.67,22.65,22.67,22.94,23.08,23.33,23.35,23.31,23.42,23.42,23.4,23.49,23.35,23.55,23.37,23.35,23.37,23.37,23.22,23.46,23.42,23.31,23.31,23.35,23.35,23.44,23.35,23.37,23.35,23.31,23.37,23.44,23.37,23.22,23.26,23.19,23.44,23.33,23.22,23.44,23.37,23.28,23.42,23.35,23.35,23.15,23.33,23.24,23.24,23.42,23.4,23.33,23.33,23.31,23.33,23.33,23.19,23.17,23.28,23.22,23.17,23.19,23.22,23.08,23.1,23.26,23.15,23.06,23.08,23.19,23.17,23.08,23.24,23.06,23.08,23.06,22.99,23.03,22.9,23.19,23.17,23.15,23.01,23.06,23.01,23.1,22.99,22.97,23.06,22.79,22.54,22.4,22.26,22.04,22.22,22.24,22.54,22.58,22.92,22.97,23.01,22.97,22.97,23.1,23.03,23.19,23.15,23.37,23.1,23.12,23.12,23.28,23.24,23.15,23.24,23.15,23.19,23.33,23.15,23.22,23.28,23.24,23.17,23.15,23.22,23.28,23.26,23.03,23.28,23.22,23.15,23.1,23.1,23.08,22.85,22.74,22.56,22.6,22.51,22.4,22.15,22.24,22.17,22.15,22.13,22.4,22.35,22.24,22.49,22.49,22.72,22.58,22.74,22.63,22.83,22.6,22.79,22.83,22.88,22.81,22.88,22.85,22.85,22.85,22.83,22.85,22.67,22.56,22.58,22.63,22.74,22.6,22.81,22.6,22.35,22.2,22.13,22.01,22.04,22.29,22.33,22.33,22.42,22.65,22.63,22.6,22.49,22.7,22.56,22.56,22.56,22.45,22.58,22.7,22.72,22.7,22.49,22.63,22.7,22.9,22.9,22.7,22.58,22.74,22.56,22.67,22.74,22.6,22.74,22.65,22.51,22.56,22.65,22.65,22.76,22.9,22.9,22.97,23.01,23.08,23.12,23.01,23.15,23.03,23.01,23.15,23.12,22.97,22.97,22.99,22.9,23.03,23.03,23.15,22.76,22.83,22.7,22.51,22.56,22.99,23.1,23.24,23.55,23.49,23.69,23.71,23.78,23.89,23.96,23.91,23.98,24.07,23.84,23.91,24.18,23.91,24.0,24.07,24.07,23.93,24.07,23.89,23.71,23.62,23.55,23.53,23.55,23.4,23.19,23.19,23.19,23.12,23.15,23.26,23.01,23.12,23.08,23.17,23.06,23.03,23.26,23.17,23.24,23.22,23.17,23.19,23.12,23.15,23.1,23.06,23.1,23.17,22.94,22.97,23.17,23.19,23.06,23.26,23.24,23.15,23.17,23.31,23.26,23.15,23.33,23.37,23.37,23.31,23.17,23.37,23.26,22.99,23.15,23.19,23.19,23.08,23.03,22.88,22.65,22.65,22.51,22.72,22.9,22.97,23.28,23.35,23.37,23.35,23.73,23.44,23.42,23.44,23.42,23.46,23.42,23.31,23.28,23.4,23.46,23.42,23.28,23.37,23.44,23.42,23.26,23.24,23.28,23.28,23.33,23.33,23.42,23.35,23.35,23.53,23.19,23.26,23.44,23.35,23.28,23.22,23.24,23.35,23.17,23.26,23.24,23.24,23.26,23.28,23.22,23.28,23.35,23.26,23.35,23.4,23.37,23.42,23.22,23.19,23.24,23.01,23.17,23.24,23.22,23.1,23.1,23.12,22.99,23.1,23.12,23.1,23.06,23.12,23.15,23.03,23.1,23.1,23.08,22.94,23.03,23.01,23.06,23.12,23.15,23.1,23.1,23.06,22.94,22.99,22.85,22.88,22.58,22.2,22.17,22.13,22.2,22.26,22.76,22.76,22.99,22.94,22.94,23.1,22.94,23.12,23.01,23.24,23.19,23.17,23.28,23.19,23.19,23.22,23.12,23.22,23.19,23.19,23.22,23.37,23.26,23.22,23.15,23.31,23.26,23.1,23.46,23.42,23.31,23.15,23.08,23.15,23.19,23.12,23.12,23.06,22.97,22.9,22.88,22.6,22.58,22.47,22.45,22.31,22.22,22.15,22.01,22.2,22.08,22.22,22.35,22.54,22.56,22.35,22.63,22.7,22.65,22.72,22.76,22.58,22.63,22.88,22.76,22.81,22.81,22.92,22.85,22.74,22.74,22.58,22.63,22.7,22.79,22.51,22.58,22.42,22.24,22.04,21.97,22.04,22.13,22.33,22.45,22.63,22.45,22.65,22.51,22.56,22.63,22.56,22.56,22.56,22.58,22.54,22.56,22.74,22.51,22.7,22.7,22.65,22.81,22.72,22.76,22.79,22.88,22.76,22.67,22.72,22.76,22.74,22.83,22.6,22.76,22.6,22.83,23.08,22.97,23.03,22.92,23.12,23.01,23.03,23.12,23.28,23.17,22.99,23.12,23.28,23.17,23.06,22.92,23.08,23.08,23.08,23.24,23.22,23.03,22.81,22.85,22.79,22.72,23.08,23.35,23.4,23.71,23.84,23.8,23.96,23.89,24.11,24.05,24.07,24.25,24.22,24.16,24.18,24.16,24.31,24.27,24.43,24.2,23.91,24.16,24.09,23.93,23.91,23.96,23.84,23.78,23.62,23.49,23.37,23.31,23.35,23.33,23.28,23.15,23.28,23.26,23.24,23.17,23.19,23.26,23.33,23.22,23.19,23.19,23.19,23.19,23.15,23.12,23.35,23.12,23.12,23.1,23.08,23.28,23.22,23.22,23.22,23.37,23.31,23.17,23.49,23.26,23.19,23.24,23.55,23.33,23.33,23.28,23.33,23.37,23.26,23.4,23.19,23.28,23.22,23.19,22.79,22.6,22.6,22.58,22.74,23.03,23.03,23.37,23.35,23.49,23.66,23.64,23.6,23.51,23.55,23.6,23.44,23.51,23.46,23.37,23.44,23.44,23.44,23.44,23.4,23.37,23.58,23.53,23.4,23.51,23.33,23.42,23.33,23.51,23.53,23.53,23.4,23.33,23.4,23.49,23.46,23.31,23.28,23.28,23.35,23.31,23.42,23.4,23.28,23.24,23.28,23.37,23.42,23.33,23.22,23.4,23.31,23.37,23.49,23.46,23.28,23.31,23.33,23.37,23.31,23.31,23.17,23.22,23.12,23.1,23.22,23.31,23.24,23.19,23.19,23.22,23.19,23.1,23.01,23.08,23.03,22.99,23.03,23.06,23.06,23.19,23.17,23.08,22.9,23.08,23.08,22.9,22.79,22.58,22.31,22.33,22.35,22.26,22.56,22.76,22.76,22.99,23.01,23.19,23.08,22.88,23.06,23.24,23.28,23.17,23.06,23.12,23.35,23.22,23.35,23.12,23.28,23.28,23.35,23.33,23.4,23.33,23.1,23.28,23.22,23.44,23.26,23.33,23.42,23.35,23.24,23.06,23.08,23.22,23.15,23.1,23.03,23.08,23.08,22.88,22.81,22.76,22.7,22.72,22.4,22.56,22.45,22.33,22.22,22.17,22.22,22.29,22.35,22.4,22.49,22.67,22.58,22.54,22.83,22.7,22.85,22.79,22.58,22.79,22.85,22.83,22.76,22.79,22.94,22.88,22.79,22.74,22.76,22.88,22.56,22.56,22.29,22.2,22.1,21.99,22.17,22.38,22.49,22.7,22.7,22.67,22.99,22.63,22.85,22.65,22.67,22.6,22.83,22.67,22.7,22.7,22.81,22.74,22.85,22.9,22.74,22.81,22.97,23.03,22.81,22.7,22.7,22.81,22.6,22.85,22.7,22.81,22.67,22.85,22.9,22.72,22.88,22.92,22.9,23.03,23.01,22.94,22.99,23.01,23.17,23.17,22.92,23.17,23.24,23.12,23.06,23.19,23.06,23.12,23.19,23.17,23.22,22.79,22.94,22.79,22.47,22.76,23.22,23.58,23.66,23.91,24.0,23.91,24.05,24.16,24.18,24.22,23.96,24.25,24.29,24.14,24.16,24.31,24.45,24.4,24.31,24.25,24.2,24.18,24.27,24.16,24.0,24.05,23.98,23.89,23.71,23.66,23.62,23.37,23.58,23.44,23.53,23.17,23.28,23.26,23.15,23.01,23.17,23.12,23.19,23.03,23.22,23.1,23.1,23.17,23.22,23.24,23.4,23.12,23.15,23.06,23.28,23.22,22.99,23.08,23.26,23.22,23.24,23.28,23.26,23.33,23.26,23.24,23.4,23.28,23.33,23.31,23.31,23.22,23.35,23.19,23.26,23.17,23.06,22.92,22.79,22.58,22.51,22.76,22.72,22.97,23.24,23.46,23.58,23.46,23.53,23.44,23.66,23.49,23.51,23.42,23.55,23.55,23.51,23.37,23.26,23.44,23.53,23.49,23.42,23.26,23.17,23.46,23.44,23.33,23.26,23.24,23.35,23.37,23.44,23.46,23.4,23.37,23.42,23.35,23.24,23.26,23.33,23.35,23.49,23.33,23.33,23.4,23.4,23.33,23.28,23.22,23.35,23.46,23.53,23.37,23.35,23.44,23.42,23.4,23.31,23.26,23.26,23.31,23.31,23.24,23.26,23.28,23.26,23.01,23.06,23.22,23.24,23.17,23.24,23.17,23.24,23.31,23.19,23.31,23.15,23.08,23.17,23.12,23.1,23.22,23.12,22.9,22.97,23.19,23.03,22.9,22.56,22.4,22.2,22.17,22.29,22.51,22.67,22.85,22.85,23.06,22.97,23.03,22.94,22.99,23.22,23.17,23.08,23.12,23.08,23.26,23.17,23.08,23.28,23.17,23.24,23.26,23.26,23.31,23.44,23.22,23.1,23.24,23.24,23.35,23.31,23.46,23.31,23.33,23.17,23.19,23.06,23.1,23.24,23.17,23.19,23.28,23.03,23.12,22.81,22.74,23.01,22.83,22.67,22.72,22.51,22.56,22.38,22.45,22.1,22.22,22.26,22.33,22.35,22.54,22.47,22.45,22.51,22.58,22.67,22.88,22.79,22.88,22.72,22.92,22.81,22.92,22.88,22.85,22.88,22.65,22.74,22.81,22.65,22.45,22.33,21.94,22.08,22.01,22.22,22.4,22.56,22.67,22.63,22.54,22.67,22.6,22.76,22.65,22.79,22.74,22.67,22.56,23.1,22.88,22.72,22.7,22.6,22.76,22.67,22.85,22.81,22.67,22.72,22.83,22.58,22.7,22.94,22.9,22.74,22.9,22.63,22.67,22.65,22.72,22.97,23.08,22.9,22.76,22.99,22.97,23.26,22.9,22.99,23.01,22.99,23.03,23.1,23.1,23.12,23.01,23.17,23.1,23.22,23.1,23.06,22.9,22.9,22.79,22.63,22.97,23.31,23.51,23.6,23.96,23.93,24.27,24.22,24.22,24.2,24.47,24.25,24.11,24.31,24.22,24.31,24.2,24.34,24.34,24.31,24.31,24.27,24.18,24.34,24.34,24.31,24.29,24.05,24.05,24.09,23.87,23.78,23.75,23.73,23.55,23.55,23.42,23.42,23.26,23.31,23.22,23.24,23.15,23.1,23.03,23.15,23.03,23.24,23.12,23.12,23.17,23.1,23.1,23.22,23.17,23.1,23.24,23.22,23.17,23.46,23.08,23.24,23.12,23.22,23.31,23.31,23.4,23.31,23.24,23.31,23.4,23.42,23.22,23.26,23.22,23.1,23.08,23.03,22.92,22.65,22.65,22.29,22.7,22.72,23.17,23.35,23.33,23.4,23.44,23.46,23.53,23.44,23.44,23.42,23.44,23.62,23.53,23.35,23.46,23.42,23.37,23.44,23.49,23.33,23.35,23.35,23.33,23.46,23.35,23.35,23.42,23.26,23.35,23.37,23.37,23.37,23.35,23.28,23.53,23.26,23.28,23.28,23.33,23.44,23.31,23.33,23.37,23.37,23.49,23.31,23.46,23.55,23.35,23.37,23.37,23.37,23.4,23.33,23.33,23.26,23.17,23.17,23.28,23.24,23.17,23.17,23.08,23.28,23.17,23.06,23.19,23.28,23.33,23.28,23.24,23.15,23.28,23.06,23.08,23.26,23.15,23.17,23.15,23.12,23.03,23.22,23.06,22.99,23.03,22.97,22.88,22.49,22.06,22.06,22.17,22.33,22.6,22.74,22.83,22.76,23.01,22.97,23.06,22.92,22.92,23.12,22.94,23.06,23.19,23.06,23.08,23.15,23.22,23.31,23.28,23.28,23.19,23.28,23.24,23.22,23.19,23.03,23.31,23.19,23.46,23.46,23.33,23.28,23.33,23.17,23.19,23.15,23.15,23.19,23.19,23.31,23.17,22.94,22.94,22.94,22.99,22.99,23.08,22.74,22.88,22.72,22.58,22.4,22.35,22.29,22.38,22.17,22.15,22.17,22.17,22.2,22.24,22.47,22.54,22.51,22.58,22.7,22.7,22.74,22.79,22.74,22.72,22.88,22.6,22.92,22.56,22.65,22.67,22.42,22.33,22.24,22.17,21.99,22.2,22.4,22.4,22.49,22.45,22.81,22.72,22.7,22.72,22.74,22.7,22.63,22.72,22.49,22.72,22.72,22.72,22.94,22.72,22.85,22.76,22.76,22.85,22.83,22.58,22.81,22.81,22.85,22.76,22.65,22.81,22.76,22.88,22.9,22.74,22.81,22.83,22.76,22.92,23.06,22.83,22.94,22.99,22.81,23.15,23.03,23.01,23.06,23.15,23.46,23.22,23.08,23.01,22.99,22.99,23.01,23.06,23.08,22.9,22.99,22.83,22.76,23.08,23.51,23.64,23.82,23.96,23.98,24.31,24.2,24.18,24.31,24.4,24.49,24.43,24.34,24.45,24.47,24.31,24.47,24.36,24.38,24.45,24.25,24.36,24.27,24.31,24.2,24.18,24.2,24.27,24.18,23.98,23.91,23.96,23.78,23.8,23.69,23.55,23.64,23.37,23.4,23.35,23.33,23.28,23.35,23.03,23.24,23.28,23.15,22.92,23.12,23.08,23.17,23.26,23.22,22.99,23.19,23.33,23.28,23.12,23.17,23.1,23.42,23.33,23.19,23.17,23.28,23.35,23.17,23.4,23.31,23.31,23.26,23.28,23.22,23.46,23.28,23.1,23.03,22.79,22.7,22.54,22.31,22.81,23.17,23.1,23.24,23.37,23.42,23.51,23.37,23.42,23.35,23.46,23.4,23.35,23.53,23.42,23.46,23.4,23.44,23.33,23.55,23.26,23.35,23.35,23.4,23.33,23.37,23.49,23.28,23.4,23.28,23.33,23.44,23.4,23.26,23.31,23.37,23.42,23.4,23.42,23.22,23.33,23.35,23.35,23.44,23.46,23.28,23.37,23.44,23.35,23.51,23.42,23.35,23.24,23.24,23.4,23.42,23.26,23.33,23.19,23.26,23.24,23.33,23.31,23.26,23.08,23.37,23.17,23.24,23.22,23.33,23.26,23.19,23.1,23.26,23.22,23.03,23.12,23.12,23.08,23.12,23.12,23.19,23.01,23.06,23.12,22.92,22.79,22.88,22.65,22.4,22.29,22.06,22.31,22.56,22.72,22.85,22.99,22.88,23.06,23.24,23.17,22.92,22.97,23.06,23.19,23.08,23.12,23.22,23.31,23.19,23.37,23.33,23.44,23.17,23.17,23.15,23.24,23.24,23.31,23.15,23.12,23.12,23.22,23.15,23.19,23.35,23.19,23.26,23.24,23.06,23.08,23.19,23.12,23.08,23.17,23.17,22.94,23.1,22.9,22.9,23.12,22.97,22.97,22.79,22.7,22.56,22.51,22.49,22.45,22.42,22.31,22.15,22.22,22.13,22.35,22.35,22.33,22.51,22.38,22.56,22.63,22.7,22.81,22.74,22.88,22.94,22.67,22.7,22.67,22.63,22.65,22.47,22.26,22.08,21.99,22.04,22.13,22.31,22.67,22.56,22.42,22.76,22.9,22.79,22.65,22.67,22.65,22.67,22.63,22.47,22.58,22.6,22.85,22.88,22.6,22.83,22.9,23.06,23.03,22.76,22.65,22.81,22.67,22.79,22.74,22.67,22.81,22.49,22.79,22.45,22.72,22.65,22.63,22.79,22.85,22.97,22.97,23.06,22.9,23.03,22.79,22.83,23.12,22.94,22.94,23.03,23.15,22.97,22.9,22.99,23.06,22.97,22.9,22.9,22.88,22.88,22.97,22.92,23.31,23.46,23.64,23.91,23.91,24.07,24.2,24.25,24.16,24.27,24.29,24.45,24.25,24.34,24.43,24.36,24.45,24.29,24.09,24.22,24.25,24.22,24.38,24.25,24.27,24.31,24.27,24.14,24.25,24.02,24.16,23.89,23.91,23.89,23.84,23.73,23.75,23.58,23.58,23.35,23.37,23.46,23.35,23.19,23.01,23.01,22.85,23.01,22.83,22.92,22.99,23.03,23.01,22.9,23.06,23.22,23.1,23.31,23.31,23.1,23.06,23.4,23.28,23.28,23.15,23.24,23.22,23.26,23.19,23.19,23.12,23.19,23.06,23.26,23.12,23.17,23.12,22.83,22.49,22.58,22.49,22.4,22.72,23.01,23.08,23.35,23.37,23.37,23.55,23.4,23.42,23.26,23.53,23.4,23.35,23.46,23.44,23.37,23.42,23.17,23.35,23.44,23.26,23.31,23.42,23.24,23.24,23.26,23.44,23.28,23.4,23.28,23.37,23.46,23.33,23.33,23.26,23.17,23.42,23.35,23.26,23.31,23.26,23.31,23.22,23.33,23.31,23.24,23.33,23.4,23.31,23.31,23.28,23.35,23.35,23.28,23.4,23.33,23.26,23.22,23.06,23.28,23.28,23.15,23.03,23.35,23.15,23.08,23.01,23.22,23.19,23.15,23.01,23.01,22.97,23.03,23.1,22.94,22.94,22.97,22.99,23.12,23.06,23.03,23.1,22.97,23.01,22.81,22.67,22.67,22.35,22.26,22.17,22.01,22.1,22.56,22.72,22.9,22.88,22.7,22.9,22.99,23.03,23.19,22.94,23.12,23.17,23.1,23.01,22.99,23.01,23.17,23.26,23.28,23.08,23.06,23.1,23.01,23.26,23.24,23.35,23.06,23.08,23.1,23.1,23.08,23.19,23.1,23.12,23.06,23.12,23.15,23.03,23.12,23.06,23.17,23.17,23.1,22.97,22.85,22.83,22.76,22.94,23.03,22.88,22.81,22.72,22.72,22.56,22.47,22.54,22.63,22.4,22.24,22.24,22.04,21.9,22.01,22.1,22.17,22.24,22.35,22.54,22.58,22.49,22.6,22.6,22.74,22.49,22.54,22.54,22.49,22.7,22.2,22.08,21.78,21.81,22.01,22.1,22.42,22.6,22.65,22.45,22.51,22.45,22.54,22.65,22.56,22.63,22.67,22.56,22.33,22.51,22.65,22.6,22.49,22.58,22.58,22.72,22.45,22.63,22.65,22.67,22.72,22.65,22.81,22.74,22.49,22.6,22.72,22.7,22.81,22.83,22.92,22.83,22.9,22.9,22.83,22.92,23.01,22.83,22.83,22.94,23.06,22.99,23.01,22.92,23.12,23.08,23.15,22.9,23.12,23.08,23.08,22.92,22.99,22.99,22.97,22.63,23.12,23.42,23.64,23.89,24.05,24.25,24.16,24.22,24.22,24.25,24.29,24.4,24.38,24.45,24.56,24.45,24.22,24.43,24.36,24.47,24.31,24.4,24.36,24.36,24.43,24.25,24.29,24.22,24.29,24.29,24.36,24.14,24.25,24.07,24.09,24.02,24.0,23.8,23.71,23.64,23.6,23.55,23.53,23.44,23.28,23.37,23.22,23.08,22.9,22.99,22.99,22.99,22.9,22.99,23.06,22.97,22.99,22.99,23.1,23.22,23.06,23.01,22.99,23.12,23.35,23.24,23.17,23.33,23.12,23.26,23.24,23.22,23.19,23.17,23.17,23.17,23.1,23.03,22.88,22.65,22.54,22.45,22.58,22.92,23.06,23.42,23.37,23.28,23.22,23.53,23.44,23.62,23.58,23.44,23.4,23.4,23.51,23.44,23.51,23.4,23.35,23.46,23.26,23.35,23.42,23.4,23.33,23.35,23.42,23.33,23.33,23.31,23.42,23.35,23.42,23.37,23.22,23.33,23.17,23.37,23.31,23.33,23.35,23.35,23.31,23.35,23.49,23.31,23.42,23.19,23.33,23.28,23.26,23.33,23.28,23.24,23.17,23.46,23.37,23.31,23.33,23.26,23.24,23.17,23.17,23.24,23.17,23.15,23.08,23.12,23.15,23.28,23.17,23.12,23.15,23.17,23.15,23.08,23.19,23.06,23.03,23.17,23.17,22.92,22.99,23.12,23.03,22.9,22.83,22.74,22.58,22.42,22.2,22.1,22.22,22.24,22.65,22.7,22.74,22.85,23.01,22.83,23.06,22.97,22.88,22.97,23.08,23.01,23.24,23.15,23.01,23.15,23.15,23.19,23.19,23.24,23.24,23.28,23.24,23.1,23.17,23.19,23.24,23.1,23.1,23.15,23.06,23.15,23.22,23.19,23.15,23.06,22.92,23.01,23.26,23.12,23.03,23.06,23.1,23.01,22.94,22.97,22.92,23.01,22.83,22.85,22.83,22.9,22.81,22.88,22.7,22.7,22.65,22.49,22.51,22.17,22.15,22.06,22.13,22.08,22.06,22.17,22.2,22.33,22.45,22.51,22.63,22.49,22.79,22.6,22.6,22.65,22.47,22.65,22.17,21.9,21.97,21.92,22.1,22.26,22.58,22.58,22.49,22.63,22.63,22.63,22.72,22.67,22.74,22.74,22.6,22.49,22.76,22.63,22.63,22.58,22.65,22.63,22.58,22.74,22.74,22.74,22.65,22.85,22.72,22.65,22.65,22.76,22.76,22.74,22.6,22.72,22.67,22.81,22.79,22.81,22.76,22.92,22.81,23.03,23.1,22.76,23.01,23.03,22.85,23.24,23.03,23.12,23.19,22.99,23.03,23.1,23.08,22.97,23.01,23.03,23.08,22.81,22.79,22.92,23.17,23.42,23.53,23.75,24.22,24.25,24.25,24.31,24.36,24.29,24.27,24.4,24.47,24.6,24.71,24.6,24.36,24.38,24.31,24.36,24.22,24.29,24.38,24.27,24.56,24.38,24.27,24.29,24.36,24.31,24.31,24.29,24.11,24.22,24.16,24.29,24.14,24.0,23.87,23.98,23.73,23.71,23.75,23.51,23.42,23.35,23.28,23.06,22.94,23.03,22.85,22.83,22.88,23.01,22.92,22.85,22.97,22.99,23.15,23.17,23.22,22.94,23.08,23.33,23.35,23.24,23.12,23.19,23.17,23.33,23.24,23.19,23.31,23.26,23.08,23.08,23.06,22.94,23.01,22.56,22.33,22.49,22.63,22.99,23.17,23.4,23.26,23.31,23.37,23.42,23.49,23.55,23.58,23.49,23.58,23.31,23.35,23.4,23.42,23.28,23.33,23.22,23.55,23.46,23.31,23.28,23.44,23.49,23.28,23.31,23.37,23.28,23.4,23.44,23.35,23.26,23.37,23.37,23.26,23.33,23.28,23.26,23.37,23.35,23.33,23.31,23.26,23.37,23.28,23.53,23.44,23.37,23.33,23.37,23.24,23.33,23.42,23.42,23.42,23.15,23.4,23.26,23.28,23.12,23.35,23.08,23.28,23.24,23.26,23.1,23.03,22.94,23.22,23.24,23.03,23.01,23.28,23.19,23.01,23.1,23.24,23.15,23.17,22.9,23.03,22.92,22.99,22.94,22.79,22.67,22.56,22.24,22.08,22.24,22.26,22.49,22.63,22.72,22.88,22.9,22.83,23.12,22.88,22.99,23.12,23.06,23.08,23.15,23.01,22.92,23.15,23.08,23.22,23.19,23.19,23.15,23.28,23.26,23.22,23.06,23.19,23.22,23.19,23.17,23.28,23.24,23.19,23.31,23.1,23.03,23.17,22.99,23.1,23.06,22.99,22.94,22.94,22.99,22.97,22.97,22.9,22.88,22.9,23.12,22.83,22.99,22.9,22.99,22.97,22.9,22.76,22.81,22.85,22.88,22.67,22.35,22.31,22.29,22.13,22.13,22.13,21.9,22.08,22.29,22.35,22.26,22.35,22.33,22.76,22.54,22.51,22.49,22.35,22.47,22.08,21.9,21.99,22.04,21.99,22.35,22.58,22.51,22.58,22.45,22.51,22.72,22.74,22.65,22.7,22.7,22.83,22.6,22.54,22.65,22.6,22.42,22.65,22.56,22.51,22.76,22.83,22.72,22.79,22.67,22.94,22.63,22.92,22.7,22.51,22.92,22.67,22.7,22.85,22.67,22.79,22.79,22.72,22.81,22.83,22.97,23.06,22.92,23.01,23.06,23.12,23.24,23.03,23.06,23.08,22.94,23.17,23.03,23.06,23.08,23.15,23.08,22.97,22.79,22.74,22.97,23.33,23.53,23.8,23.75,24.18,24.25,24.16,24.38,24.29,24.29,24.47,24.49,24.47,24.67,24.54,24.56,24.54,24.49,24.4,24.45,24.58,24.36,24.47,24.4,24.54,24.4,24.34,24.29,24.36,24.2,24.34,24.22,24.22,24.2,24.29,24.22,24.16,24.16,24.05,24.07,24.02,23.78,23.98,23.55,23.66,23.51,23.55,23.1,23.1,23.12,22.88,22.9,22.81,22.81,22.81,22.79,22.72,22.88,22.9,22.94,23.1,23.15,23.19,23.17,23.17,23.22,23.01,23.12,23.24,23.24,23.15,23.1,23.26,23.26,23.12,22.97,22.92,22.9,22.7,22.54,22.49,22.49,22.76,23.12,23.26,23.42,23.28,23.33,23.46,23.53,23.42,23.4,23.49,23.42,23.62,23.46,23.46,23.37,23.51,23.28,23.24,23.28,23.31,23.37,23.4,23.31,23.46,23.49,23.55,23.28,23.28,23.37,23.22,23.37,23.37,23.28,23.37,23.31,23.31,23.4,23.33,23.26,23.35,23.37,23.35,23.37,23.46,23.37,23.31,23.28,23.33,23.31,23.37,23.37,23.28,23.28,23.31,23.46,23.35,23.33,23.42,23.35,23.22,23.24,23.37,23.08,23.24,23.19,23.26,23.15,23.17,23.1,23.28,23.1,23.15,23.24,23.22,23.19,23.12,23.06,23.01,23.08,23.08,23.03,23.08,23.1,22.99,22.99,22.74,22.54,22.4,22.1,22.15,22.29,22.4,22.6,22.6,22.88,22.99,23.03,22.83,23.12,22.9,23.06,23.08,23.01,23.03,23.12,23.06,23.12,23.12,23.26,23.19,23.1,23.12,23.15,23.31,23.1,23.24,23.12,23.22,23.19,23.19,23.1,23.22,23.24,23.1,23.19,23.17,23.17,23.15,23.03,23.24,23.01,23.24,23.03,23.15,22.88,23.01,23.22,23.06,22.94,22.83,23.08,22.9,23.03,22.97,22.9,22.83,22.81,22.92,22.92,23.06,22.94,22.92,22.7,22.49,22.35,22.22,22.06,22.22,22.08,22.1,22.04,22.01,22.22,22.24,22.26,22.47,22.24,22.54,22.42,22.2,22.08,21.97,21.69,21.92,22.15,22.22,22.35,22.54,22.54,22.47,22.38,22.6,22.6,22.74,22.58,22.65,22.94,22.74,22.51,22.49,22.7,22.67,22.63,22.7,22.67,22.67,22.58,22.81,22.67,22.81,22.67,22.67,22.7,22.7,22.72,22.65,22.72,22.7,22.67,22.58,22.83,22.65,22.81,22.88,22.76,22.88,22.94,22.88,22.81,22.97,23.1,22.97,23.17,23.01,22.94,23.1,23.01,23.08,22.92,23.15,23.1,23.06,22.99,22.85,22.76,22.79,23.1,23.31,23.58,23.69,24.02,24.18,24.54,24.4,24.45,24.47,24.47,24.38,24.63,24.56,24.54,24.74,24.56,24.69,24.51,24.58,24.47,24.58,24.49,24.54,24.49,24.51,24.49,24.38,24.29,24.34,24.11,24.31,24.25,24.2,24.27,24.22,24.14,24.29,24.07,24.16,24.25,24.07,23.96,23.96,23.8,23.91,23.6,23.51,23.22,23.17,23.19,23.17,22.81,23.03,22.81,22.76,22.63,22.65,22.76,22.76,22.7,22.94,22.99,23.06,23.1,23.24,23.1,23.17,23.12,23.19,23.12,22.99,23.06,23.17,23.12,23.06,22.83,22.92,22.7,22.6,22.58,22.42,22.65,22.81,23.51,23.31,23.22,23.24,23.33,23.44,23.44,23.42,23.4,23.42,23.4,23.42,23.28,23.46,23.35,23.33,23.26,23.31,23.28,23.4,23.24,23.4,23.33,23.33,23.33,23.4,23.12,23.28,23.33,23.26,23.37,23.44,23.44,23.22,23.35,23.33,23.49,23.26,23.28,23.44,23.24,23.17,23.44,23.4,23.42,23.44,23.08,23.22,23.26,23.44,23.37,23.17,23.28,23.42,23.46,23.4,23.19,23.1,23.28,23.28,23.35,23.31,23.12,23.17,23.19,23.19,23.03,23.19,23.19,23.1,23.03,23.15,23.15,23.12,23.06,22.99,23.06,23.03,22.92,23.1,23.03,23.06,23.12,23.06,22.9,22.83,22.49,22.26,22.01,21.99,22.33,22.45,22.67,22.72,22.83,22.94,22.9,22.94,23.01,23.1,22.99,22.94,22.99,22.99,23.01,23.1,22.97,23.19,23.17,23.15,23.24,23.17,22.99,22.94,22.83,23.15,23.12,23.33,23.22,23.12,23.15,23.15,23.1,23.26,23.12,23.17,23.15,23.15,22.97,23.03,23.06,23.15,23.08,22.99,22.97,23.06,22.99,22.94,23.1,22.92,22.88,22.92,23.06,22.81,23.08,22.83,22.88,22.9,22.99,22.99,22.92,22.65,22.76,22.65,22.54,22.58,22.26,22.24,22.31,22.04,22.15,22.17,22.08,22.04,22.06,22.35,22.29,22.24,21.97,22.04,22.06,21.9,21.69,22.08,22.26,22.29,22.45,22.47,22.38,22.45,22.49,22.6,22.51,22.54,22.56,22.6,22.7,22.74,22.6,22.35,22.67,22.56,22.56,22.7,22.56,22.63,22.51,22.65,22.72,22.7,22.56,22.76,22.83,22.76,22.58,22.85,22.72,22.81,22.88,22.79,22.76,22.72,22.81,22.9,22.81,22.94,23.1,23.01,23.06,23.06,22.94,23.06,23.01,22.97,22.81,23.19,23.22,23.12,23.03,23.15,22.99,22.97,22.97,22.9,22.76,22.85,23.19,23.51,23.62,23.93,24.16,24.11,24.49,24.45,24.4,24.45,24.38,24.6,24.56,24.65,24.63,24.71,24.65,24.71,24.65,24.58,24.76,24.6,24.63,24.47,24.47,24.56,24.45,24.2,24.36,24.47,24.4,24.27,24.36,24.4,24.4,24.36,24.25,24.38,24.22,24.18,24.18,24.18,24.16,23.98,23.91,23.98,23.73,23.73,23.6,23.51,23.37,23.31,23.15,22.79,23.17,22.81,22.54,22.76,22.6,22.72,22.74,22.92,23.01,22.79,22.97,23.12,23.15,23.19,23.01,23.37,23.15,23.1,23.12,23.24,23.22,23.12,22.9,22.74,22.7,22.56,22.56,22.6,22.65,23.01,23.35,23.4,23.4,23.37,23.37,23.49,23.46,23.42,23.37,23.46,23.35,23.44,23.46,23.46,23.46,23.31,23.4,23.4,23.22,23.37,23.33,23.46,23.4,23.46,23.44,23.37,23.22,23.31,23.37,23.33,23.33,23.49,23.37,23.17,23.49,23.37,23.31,23.37,23.28,23.37,23.37,23.24,23.28,23.33,23.31,23.31,23.31,23.35,23.22,23.4,23.24,23.31,23.31,23.37,23.49,23.33,23.28,23.31,23.24,23.12,23.33,23.28,23.12,23.24,23.24,23.1,23.01,23.1,23.19,23.19,23.12,23.19,23.19,23.31,23.15,23.15,23.1,23.1,22.99,23.15,23.19,23.06,23.08,23.01,22.88,22.58,22.42,22.06,22.06,22.22,22.45,22.63,22.83,22.99,22.99,22.85,22.85,22.94,22.99,23.08,23.06,22.97,22.99,23.03,23.08,23.12,23.15,23.1,23.03,23.17,23.17,23.1,23.06,23.15,23.1,23.22,23.12,23.22,23.22,23.19,23.1,23.15,23.24,23.15,23.1,23.26,23.22,23.17,23.1,23.08,23.01,22.99,22.92,22.94,23.1,22.99,23.1,23.03,23.01,22.88,23.03,23.01,23.01,22.97,22.94,22.99,23.03,23.01,23.1,22.99,23.06,22.92,22.83,22.67,22.76,22.7,22.51,22.47,22.49,22.45,22.29,22.2,22.17,22.2,22.08,22.29,22.08,22.24,22.06,21.94,21.97,21.88,22.1,22.29,22.42,22.4,22.51,22.7,22.6,22.51,22.33,22.35,22.38,22.67,22.74,22.58,22.63,22.56,22.74,22.54,22.74,22.74,22.72,22.6,22.67,22.79,22.58,22.49,22.79,22.65,22.51,22.83,22.9,22.85,22.76,22.81,23.01,22.67,22.7,22.9,22.72,22.85,22.99,22.94,22.88,23.1,23.17,23.15,23.01,23.24,23.31,23.1,23.06,23.06,23.26,23.15,23.12,23.19,23.03,23.15,23.19,22.99,23.06,22.9,23.03,23.06,23.53,23.64,23.91,24.18,24.29,24.43,24.74,24.63,24.51,24.58,24.47,24.58,24.6,24.69,24.83,24.8,24.74,24.76,24.76,24.6,24.85,24.71,24.71,24.58,24.51,24.69,24.69,24.54,24.67,24.45,24.45,24.49,24.49,24.49,24.31,24.38,24.36,24.36,24.49,24.14,24.18,24.29,24.22,24.25,24.2,24.14,24.11,23.82,23.8,23.55,23.55,23.53,23.53,23.33,23.1,23.06,23.06,22.94,22.88,22.94,22.76,22.81,22.94,22.88,22.81,23.01,22.94,23.15,23.19,23.03,23.35,23.37,23.19,23.4,23.08,23.08,22.79,23.03,22.74,22.6,22.65,22.7,22.99,23.26,23.53,23.51,23.49,23.4,23.4,23.49,23.64,23.49,23.58,23.58,23.44,23.51,23.49,23.55,23.42,23.4,23.49,23.42,23.44,23.35,23.44,23.49,23.4,23.4,23.46,23.46,23.33,23.46,23.46,23.37,23.44,23.55,23.51,23.28,23.4,23.4,23.42,23.37,23.33,23.35,23.4,23.49,23.35,23.33,23.44,23.4,23.37,23.28,23.35,23.49,23.42,23.42,23.49,23.42,23.42,23.49,23.31,23.37,23.35,23.28,23.28,23.22,23.35,23.37,23.26,23.24,23.17,23.17,23.12,23.19,23.35,23.26,23.26,23.06,23.28,23.12,23.19,23.33,23.22,23.19,23.06,23.01,23.03,23.03,22.67,22.45,22.38,22.24,22.31,22.38,22.65,22.83,23.03,22.9,22.97,22.97,22.88,22.94,22.94,23.12,23.19,22.97,23.08,23.24,23.26,23.31,23.31,23.28,23.19,23.22,23.26,23.26,23.33,23.37,23.12,23.1,23.22,23.33,23.31,23.24,23.15,23.19,23.17,23.1,23.19,23.24,23.19,23.17,23.31,23.31,23.06,23.26,23.08,23.08,23.15,23.12,23.12,22.99,22.92,23.08,23.01,22.97,22.92,22.94,22.99,23.01,23.1,22.92,23.06,23.03,23.08,22.9,22.92,22.81,22.74,22.79,22.74,22.76,22.72,22.45,22.42,22.4,22.2,21.97,22.2,22.26,22.1,22.29,22.1,21.97,21.81,21.78,22.15,22.26,22.4,22.47,22.42,22.56,22.6,22.54,22.56,22.63,22.58,22.74,22.79,22.72,22.67,22.7,22.6,22.47,22.67,22.67,22.79,22.65,22.79,22.9,22.76,22.58,22.72,22.6,22.76,22.88,22.72,22.83,22.76,22.58,22.81,22.54,22.88,22.76,22.81,22.7,22.81,22.9,22.83,23.06,22.99,22.99,23.22,22.99,23.15,22.9,23.08,22.99,23.1,23.24,23.1,23.1,22.94,22.99,23.03,22.99,23.12,22.76,22.81,23.1,23.58,23.75,23.91,23.96,24.29,24.36,24.56,24.49,24.49,24.69,24.43,24.6,24.69,24.74,24.56,24.76,24.74,24.8,24.91,24.74,24.67,24.67,24.63,24.56,24.74,24.65,24.45,24.51,24.51,24.49,24.4,24.38,24.43,24.49,24.4,24.36,24.4,24.45,24.43,24.29,24.27,24.22,24.31,24.2,24.25,24.11,24.18,23.91,23.78,23.71,23.62,23.58,23.6,23.31,23.31,23.19,23.01,23.01,22.92,22.94,22.79,22.94,22.76,22.74,22.7,22.88,22.92,22.94,23.03,23.12,23.19,23.03,23.08,23.03,23.15,23.01,22.94,22.65,22.51,22.42,22.6,22.74,22.97,23.26,23.53,23.37,23.35,23.35,23.4,23.4,23.28,23.51,23.75,23.53,23.55,23.37,23.49,23.46,23.4,23.28,23.53,23.55,23.33,23.31,23.33,23.22,23.44,23.6,23.35,23.44,23.46,23.28,23.28,23.31,23.4,23.49,23.49,23.37,23.37,23.4,23.35,23.42,23.28,23.26,23.26,23.17,23.24,23.17,23.35,23.4,23.26,23.35,23.51,23.42,23.44,23.28,23.24,23.35,23.49,23.46,23.33,23.4,23.4,23.33,23.24,23.19,23.24,23.24,23.12,23.26,23.19,23.12,23.15,23.08,23.24,23.22,23.22,23.33,23.33,23.06,23.1,23.03,23.12,23.03,23.01,22.99,23.03,22.97,22.51,22.31,22.17,22.17,22.29,22.42,22.56,22.97,22.85,22.94,22.94,23.01,22.99,22.97,23.03,23.12,23.17,23.01,22.99,22.99,23.06,23.06,23.06,23.22,23.15,23.19,23.15,23.15,23.24,23.17,23.01,23.19,23.19,23.17,23.1,23.08,23.17,23.08,23.12,23.12,23.19,23.19,23.22,23.01,23.12,23.06,23.06,23.1,23.17,23.1,22.97,23.03,23.03,22.9,22.81,22.94,22.99,22.85,22.99,22.99,23.1,23.03,22.94,22.92,22.94,22.92,22.99,22.85,22.67,22.83,22.63,22.81,22.76,22.63,22.54,22.54,22.72,22.29,22.47,22.24,22.13,22.33,22.1,21.97,22.04,21.85,21.85,21.92,21.99,22.06,22.22,22.33,22.42,22.38,22.56,22.54,22.33,22.63,22.54,22.67,22.47,22.74,22.81,22.7,22.7,22.63,22.74,22.58,22.67,22.6,22.49,22.56,22.7,22.63,22.85,22.63,22.65,22.85,22.83,22.83,22.6,22.63,22.85,22.7,22.88,22.9,22.94,22.79,22.72,22.79,22.94,22.99,23.19,23.12,23.08,23.06,22.92,23.08,23.24,23.06,22.97,23.35,23.33,23.24,23.24,22.92,23.06,22.88,22.85,22.97,22.7,23.17,23.55,23.87,24.05,24.16,24.45,24.54,24.38,24.49,24.63,24.56,24.56,24.56,24.71,24.71,24.56,24.78,24.85,24.87,24.69,24.91,24.83,24.87,24.78,24.76,24.74,24.74,24.65,24.63,24.56,24.54,24.51,24.45,24.49,24.43,24.45,24.51,24.47,24.34,24.43,24.29,24.34,24.22,24.31,24.43,24.25,24.2,24.18,24.09,23.91,23.93,23.75,23.71,23.73,23.49,23.44,23.37,23.22,23.01,23.06,22.94,22.83,23.06,22.9,22.65,22.79,22.72,22.88,22.9,22.88,22.94,23.03,22.92,22.94,23.08,23.1,23.1,22.79,22.51,22.4,22.63,22.58,23.12,22.99,23.24,23.31,23.42,23.42,23.46,23.24,23.49,23.6,23.53,23.53,23.44,23.37,23.49,23.42,23.51,23.51,23.28,23.44,23.44,23.37,23.35,23.37,23.4,23.31,23.37,23.44,23.49,23.35,23.35,23.4,23.49,23.44,23.42,23.49,23.44,23.42,23.33,23.37,23.28,23.35,23.26,23.35,23.37,23.42,23.49,23.35,23.35,23.24,23.31,23.4,23.33,23.46,23.37,23.33,23.33,23.42,23.49,23.42,23.37,23.31,23.28,23.26,23.24,23.19,23.26,23.22,23.17,23.28,22.97,23.08,23.15,23.12,23.15,23.28,23.26,23.24,23.24,23.1,23.01,23.1,23.01,23.01,22.97,22.81,22.81,22.63,22.1,22.13,22.13,22.35,22.45,22.76,22.83,22.97,22.97,23.19,23.06,22.97,23.01,23.03,22.99,22.97,23.06,23.15,23.17,23.01,23.24,23.03,23.19,23.28,23.08,23.22,23.24,23.15,23.24,23.26,23.22,23.22,23.28,23.28,22.99,23.15,23.15,23.17,23.03,23.22,23.1,23.26,23.03,23.03,22.97,23.17,23.08,23.15,23.15,22.99,23.1,23.08,22.9,22.92,23.03,23.1,23.06,22.97,23.06,23.03,22.74,22.99,22.9,22.92,22.85,22.97,22.85,22.85,22.94,22.76,22.99,22.83,22.81,22.83,22.9,22.67,22.47,22.54,22.35,22.15,22.33,22.01,22.01,21.85,21.85,21.85,21.72,21.92,22.01,22.17,22.17,22.4,22.4,22.42,22.63,22.49,22.54,22.51,22.56,22.49,22.74,22.58,22.88,22.54,22.54,22.56,22.88,22.7,22.49,22.67,22.65,22.76,22.74,22.85,22.7,22.54,22.94,22.81,22.92,22.81,22.92,22.9,22.83,22.92,22.9,22.88,22.94,22.99,22.94,22.99,23.03,23.08,23.19,23.12,23.15,22.94,23.19,23.4,23.08,23.26,22.99,23.26,23.17,23.19,23.01,23.22,23.01,22.9,22.85,22.85,23.24,23.49,24.02,24.09,24.18,24.31,24.54,24.54,24.54,24.58,24.54,24.67,24.56,24.74,24.87,24.65,24.83,24.69,24.76,24.94,24.94,24.78,24.89,24.85,24.71,24.94,24.94,24.74,24.67,24.58,24.67,24.74,24.74,24.65,24.56,24.65,24.4,24.43,24.45,24.45,24.36,24.34,24.47,24.36,24.45,24.18,24.25,24.25,24.22,24.02,23.93,23.98,23.82,23.78,23.8,23.71,23.58,23.42,23.35,23.24,23.19,23.17,22.99,22.9,22.92,22.83,22.92,22.81,22.97,22.92,22.99,23.08,23.06,23.01,23.1,22.99,22.97,22.94,22.79,22.63,22.7,22.85,23.15,23.26,23.42,23.46,23.44,23.66,23.58,23.37,23.44,23.55,23.69,23.55,23.55,23.44,23.51,23.53,23.55,23.44,23.37,23.46,23.49,23.19,23.28,23.51,23.4,23.35,23.49,23.44,23.49,23.31,23.35,23.44,23.55,23.55,23.37,23.46,23.51,23.42,23.37,23.46,23.35,23.44,23.33,23.08,23.37,23.33,23.46,23.33,23.44,23.37,23.37,23.26,23.58,23.53,23.42,23.42,23.44,23.51,23.58,23.49,23.42,23.35,23.31,23.46,23.35,23.06,23.35,23.24,23.17,23.26,23.12,23.33,23.24,23.28,23.17,23.17,23.26,23.22,23.19,23.28,23.15,23.08,23.12,23.08,22.94,22.92,22.74,22.45,22.22,22.17,22.42,22.58,22.76,22.9,22.92,23.12,23.17,23.01,23.1,23.12,23.03,23.15,23.08,23.03,23.06,23.12,23.22,23.22,23.24,23.15,23.22,23.17,23.17,23.17,23.22,23.22,23.22,23.22,23.28,23.17,23.42,23.37,23.15,23.33,23.33,23.24,23.24,23.15,23.22,23.12,23.17,23.08,23.12,23.12,23.06,23.17,23.03,22.97,23.19,23.17,23.1,23.01,22.99,23.1,22.88,22.85,23.01,22.99,22.85,22.97,23.06,22.99,23.01,23.03,22.81,22.94,22.88,22.81,23.01,22.9,22.94,22.9,22.97,22.92,22.49,22.83,22.51,22.33,22.6,22.2,21.92,21.76,22.08,22.06,21.92,21.99,21.92,22.01,21.99,22.13,22.33,22.29,22.35,22.35,22.7,22.56,22.65,22.51,22.76,22.81,22.76,22.49,22.56,22.58,22.72,22.45,22.74,22.56,22.81,22.79,22.83,22.72,22.81,22.65,22.72,22.83,22.81,22.92,22.85,22.88,22.79,22.99,22.74,22.9,22.67,22.81,22.88,22.94,22.97,23.01,23.15,22.94,23.08,23.06,23.24,23.1,22.9,22.94,22.99,23.22,23.49,23.06,23.12,23.12,23.03,22.85,22.9,22.92,23.49,23.87,23.73,24.11,24.38,24.31,24.38,24.56,24.6,24.69,24.63,24.54,24.49,24.76,24.76,24.78,24.87,24.89,24.78,24.69,24.87,24.69,24.71,24.83,24.69,24.83,24.85,24.85,24.74,24.65,24.78,24.76,24.71,24.65,24.47,24.54,24.56,24.51,24.43,24.54,24.14,24.45,24.34,24.4,24.34,24.29,24.38,24.27,24.09,24.02,24.0,24.07,23.87,23.84,23.62,23.69,23.49,23.4,23.31,23.17,23.24,23.17,23.15,23.1,23.01,22.99,22.79,22.79,22.94,22.88,22.72,22.99,22.74,22.63,22.92,22.97,22.9,22.58,22.63,22.63,22.79,22.76,23.12,23.28,23.33,23.44,23.55,23.51,23.4,23.35,23.55,23.42,23.42,23.51,23.51,23.58,23.49,23.35,23.46,23.35,23.33,23.46,23.19,23.26,23.26,23.53,23.46,23.46,23.55,23.4,23.4,23.44,23.33,23.46,23.49,23.42,23.44,23.35,23.35,23.42,23.46,23.42,23.44,23.42,23.22,23.1,23.4,23.49,23.42,23.49,23.28,23.58,23.26,23.35,23.46,23.44,23.35,23.42,23.51,23.44,23.31,23.35,23.28,23.17,23.44,23.33,23.26,23.19,23.31,23.33,23.24,23.26,23.17,23.24,23.19,23.24,23.26,23.06,23.24,23.24,23.35,23.28,23.15,23.22,23.06,23.06,22.92,22.85,22.58,22.24,22.24,22.15,22.45,22.56,22.88,22.81,23.08,23.08,22.99,23.03,23.08,22.99,23.1,23.17,23.15,23.06,22.99,23.08,23.15,23.06,23.12,22.9,23.19,23.26,23.22,23.15,22.99,23.26,23.24,23.22,23.06,23.15,23.1,23.22,23.26,23.17,23.15,23.19,23.33,23.31,23.26,23.03,23.12,23.19,23.12,22.99,23.03,23.15,22.88,23.08,23.1,22.97,23.01,22.99,23.17,23.08,22.92,22.99,22.97,23.17,22.94,22.79,22.74,22.9,22.79,22.97,22.88,22.97,22.76,22.76,22.94,22.67,22.85,22.74,22.72,22.85,22.56,22.81,22.85,22.67,22.31,22.29,21.81,21.88,21.92,22.06,22.15,21.97,22.06,22.08,21.83,22.24,22.38,22.22,22.42,22.06,22.63,22.54,22.54,22.6,22.58,22.56,22.67,22.49,22.65,22.67,22.63,22.72,22.7,22.65,22.83,22.67,22.58,22.58,22.65,22.63,22.6,22.85,22.9,22.76,22.81,22.97,22.85,22.97,23.06,22.76,22.76,22.81,23.08,23.01,22.97,23.15,23.24,23.03,23.12,23.1,23.17,23.19,23.15,22.97,23.22,23.26,23.15,23.15,23.03,23.08,22.88,22.9,22.97,23.12,23.58,23.93,24.0,24.18,24.36,24.47,24.58,24.56,24.56,24.47,24.51,24.4,24.71,24.85,24.89,24.83,24.85,25.0,24.89,24.98,25.0,24.96,24.8,24.94,24.89,24.8,24.91,24.85,24.83,24.96,24.87,24.63,24.78,24.85,24.69,24.74,24.67,24.63,24.58,24.6,24.29,24.45,24.29,24.34,24.45,24.38,24.25,24.22,24.11,24.11,24.11,24.11,24.0,23.82,23.73,23.87,23.75,23.55,23.53,23.42,23.4,23.49,23.33,23.12,23.12,23.17,22.81,22.92,22.88,22.81,23.06,23.22,22.9,22.72,22.97,22.83,22.7,22.56,22.65,22.47,22.76,22.76,23.22,23.22,23.28,23.42,23.46,23.51,23.35,23.42,23.35,23.62,23.46,23.49,23.44,23.49,23.55,23.46,23.44,23.42,23.46,23.44,23.31,23.42,23.31,23.53,23.42,23.53,23.4,23.37,23.55,23.51,23.58,23.46,23.4,23.33,23.58,23.44,23.35,23.42,23.33,23.51,23.42,23.33,23.31,23.35,23.22,23.33,23.35,23.35,23.28,23.35,23.26,23.19,23.37,23.37,23.44,23.42,23.44,23.42,23.37,23.26,23.31,23.37,23.24,23.26,23.24,23.31,23.31,23.26,23.31,23.31,23.28,23.33,23.17,23.17,23.17,23.22,23.15,23.17,23.19,23.1,23.1,23.08,23.12,23.08,22.83,22.6,22.42,22.24,22.22,22.26,22.54,22.67,22.92,22.97,22.99,23.01,23.12,23.08,23.08,23.1,23.19,23.22,23.01,23.01,23.06,22.92,23.12,23.15,23.19,23.01,23.22,23.26,23.22,23.35,23.31,23.42,23.22,23.22,23.31,23.06,23.28,23.17,23.17,23.26,23.19,23.22,23.28,23.24,23.4,23.4,23.24,23.17,23.17,23.12,23.22,23.15,23.08,23.17,23.12,23.01,22.94,22.99,23.1,23.06,23.08,23.01,23.01,22.88,23.08,22.99,22.83,22.9,23.06,23.03,22.92,22.99,22.9,22.85,22.9,22.79,22.9,22.63,22.97,22.81,22.67,22.79,22.7,22.56,22.63,22.06,21.99,22.2,22.1,22.1,22.22,22.04,22.04,21.94,22.01,22.06,21.94,22.22,22.2,22.13,22.1,22.26,22.51,22.6,22.6,22.7,22.65,22.56,22.58,22.76,22.56,22.72,22.76,22.51,22.6,22.65,22.51,22.54,22.9,22.58,22.85,22.97,22.79,22.72,22.88,22.79,22.65,22.85,22.76,22.81,22.9,22.94,22.97,22.99,22.99,22.97,23.12,23.06,23.12,23.12,23.12,23.28,23.15,23.19,23.22,23.12,23.15,23.08,23.01,23.03,23.03,22.94,23.08,23.15,23.71,23.84,24.16,24.16,24.4,24.4,24.51,24.56,24.36,24.58,24.71,24.51,24.78,24.71,24.96,24.96,24.91,24.91,24.94,24.8,25.0,25.03,25.03,24.98,25.0,25.03,25.07,24.98,24.89,24.94,24.8,24.71,24.96,24.76,24.43,24.69,24.63,24.63,24.8,24.67,24.51,24.38,24.4,24.38,24.36,24.38,24.22,24.09,24.25,24.18,24.09,24.14,23.98,23.84,23.71,23.8,23.73,23.58,23.69,23.62,23.51,23.42,23.51,23.31,23.06,23.1,22.85,23.01,23.03,23.12,22.99,22.99,23.06,22.9,22.83,22.74,22.63,22.56,22.56,22.6,22.79,22.97,23.31,23.26,23.4,23.51,23.51,23.42,23.44,23.33,23.35,23.42,23.53,23.58,23.4,23.44,23.53,23.49,23.49,23.33,23.44,23.4,23.49,23.37,23.4,23.31,23.31,23.37,23.26,23.19,23.49,23.35,23.42,23.4,23.4,23.4,23.6,23.35,23.31,23.4,23.4,23.37,23.24,23.37,23.26,23.33,23.35,23.37,23.46,23.4,23.19,23.37,23.15,23.33,23.49,23.42,23.4,23.35,23.37,23.4,23.28,23.35,23.37,23.26,23.35,23.19,23.22,23.22,23.4,23.12,23.26,23.26,23.28,23.19,23.28,23.19,23.17,23.17,23.19,23.17,23.42,23.12,23.19,23.06,22.85,22.94,22.83,22.49,22.33,22.29,22.17,22.42,22.67,22.9,23.03,22.99,22.97,23.08,23.06,23.1,23.01,22.97,23.12,23.12,23.19,23.15,23.06,23.03,23.22,23.15,23.06,23.01,22.97,23.15,23.24,23.24,23.28,23.19,23.22,23.26,23.19,23.1,23.28,23.17,23.08,23.22,23.1,23.24,23.22,23.19,23.26,23.22,23.12,23.08,23.22,23.06,23.15,23.01,23.01,23.06,23.15,23.01,22.94,23.06,23.28,23.1,22.88,23.06,22.97,22.97,22.79,23.03,22.97,22.97,22.94,23.08,23.06,23.01,22.99,22.81,22.85,22.88,22.85,22.76,22.72,22.74,22.7,22.94,22.81,22.49,22.4,22.04,21.99,22.13,22.15,22.15,22.15,22.1,22.2,22.06,21.88,21.94,21.9,21.94,22.13,22.08,22.08,22.2,22.35,22.33,22.56,22.56,22.67,22.72,22.63,22.49,22.56,22.6,22.74,22.7,22.72,22.51,22.67,22.67,22.65,22.6,22.85,22.83,22.85,22.9,22.56,22.94,22.6,22.94,22.79,22.81,22.83,22.85,22.88,23.1,22.97,23.15,23.01,22.88,22.92,23.08,23.03,23.35,23.19,23.08,23.17,23.06,23.15,23.1,23.1,23.15,22.94,22.81,22.99,23.42,23.8,24.02,24.22,24.4,24.43,24.43,24.51,24.71,24.54,24.8,24.78,24.85,24.85,24.8,24.89,24.71,24.98,25.22,25.16,24.98,24.96,25.14,24.89,25.05,24.98,25.0,24.96,25.0,24.78,24.94,24.78,24.87,24.91,24.96,24.69,24.58,24.63,24.49,24.63,24.63,24.63,24.31,24.45,24.47,24.45,24.43,24.29,24.2,24.27,24.18,24.27,24.07,24.05,24.07,23.96,23.82,23.82,23.69,23.62,23.6,23.49,23.46,23.44,23.26,23.19,23.19,22.97,23.1,23.06,22.94,23.06,22.99,22.88,22.83,22.92,22.76,22.81,22.56,22.51,22.56,22.85,22.97,22.94,22.99,23.19,23.4,23.44,23.33,23.22,23.55,23.55,23.58,23.4,23.62,23.69,23.53,23.44,23.51,23.62,23.35,23.31,23.33,23.46,23.35,23.26,23.33,23.42,23.4,23.4,23.44,23.35,23.44,23.4,23.37,23.4,23.44,23.55,23.42,23.46,23.44,23.31,23.35,23.35,23.31,23.28,23.37,23.44,23.28,23.4,23.44,23.26,23.24,23.19,23.28,23.4,23.44,23.31,23.53,23.46,23.51,23.33,23.37,23.37,23.31,23.19,23.33,23.35,23.22,23.37,23.31,23.15,23.19,23.17,23.19,23.31,23.28,23.24,23.17,23.31,23.24,23.03,23.1,23.1,22.97,22.92,22.85,22.7,22.29,22.2,22.04,22.17,22.51,22.72,23.03,23.06,23.12,22.99,23.1,23.1,23.03,23.08,23.03,23.22,23.08,23.17,23.06,23.03,23.1,23.06,23.12,23.28,22.99,23.15,23.08,23.24,23.12,23.28,23.28,23.17,23.26,23.31,23.03,23.31,23.31,23.26,23.17,23.22,23.4,23.12,23.08,23.19,23.28,23.33,23.22,23.19,23.1,23.06,22.97,23.06,23.15,23.26,22.97,23.1,22.97,23.12,23.12,22.97,23.1,22.81,22.83,23.08,22.97,22.9,22.76,22.94,22.88,23.03,22.94,22.79,22.74,22.88,22.85,22.79,22.67,22.63,22.76,22.7,22.83,22.67,22.49,22.29,21.99,21.94,22.1,22.33,22.31,22.24,22.31,22.24,22.22,22.15,22.08,21.92,21.92,21.85,21.94,22.01,22.17,22.33,22.33,22.2,22.45,22.63,22.51,22.56,22.54,22.56,22.54,22.79,22.56,22.72,22.63,22.51,22.67,22.51,22.51,22.81,22.67,22.92,22.67,22.6,22.81,22.92,22.79,22.83,22.9,22.81,22.63,22.92,23.06,23.01,22.99,22.97,22.94,23.08,22.9,23.1,23.15,23.06,22.97,23.12,23.17,23.17,23.1,22.81,22.97,22.94,22.81,23.06,23.33,23.69,24.11,24.18,24.27,24.36,24.56,24.47,24.54,24.58,24.67,24.65,24.58,24.94,24.85,24.94,24.87,24.94,24.96,24.94,24.94,24.87,24.98,24.96,24.89,24.98,24.98,25.0,25.05,24.94,24.89,24.96,24.98,24.96,24.78,24.67,24.76,24.8,24.69,24.74,24.49,24.49,24.63,24.47,24.45,24.47,24.31,24.45,24.31,24.27,24.09,24.05,24.09,24.09,23.98,23.96,23.93,23.91,23.73,23.71,23.6,23.53,23.51,23.58,23.22,23.17,23.26,23.08,23.1,23.08,23.15,22.99,23.15,23.1,22.9,22.99,22.88,22.97,22.81,22.65,22.63,22.6,22.7,22.83,22.99,23.03,23.35,23.35,23.31,23.46,23.35,23.35,23.62,23.44,23.53,23.51,23.44,23.31,23.35,23.55,23.42,23.33,23.4,23.12,23.28,23.35,23.33,23.33,23.4,23.35,23.35,23.42,23.44,23.26,23.19,23.26,23.26,23.46,23.58,23.46,23.53,23.15,23.44,23.28,23.35,23.19,23.35,23.44,23.26,23.33,23.37,23.15,23.31,23.19,23.15,23.46,23.28,23.17,23.33,23.28,23.37,23.51,23.4,23.15,23.33,23.37,23.17,23.35,23.26,23.22,23.17,23.15,23.26,23.15,23.19,23.17,23.03,23.01,23.31,23.17,23.17,22.94,23.17,22.94,23.1,22.92,22.56,22.47,22.17,22.01,22.04,22.42,22.51,22.9,22.85,22.9,23.06,23.06,23.12,22.85,22.99,23.08,23.12,22.9,23.03,23.15,23.19,23.22,22.97,23.08,23.17,23.17,23.12,23.03,23.26,23.19,23.17,23.24,23.19,23.08,22.9,23.31,23.24,22.99,23.12,22.97,23.1,23.22,23.17,23.12,23.17,23.26,23.24,23.17,23.19,22.99,22.92,22.94,23.19,23.22,23.24,23.03,22.99,23.03,22.97,22.94,22.83,22.79,22.83,23.01,22.79,23.06,22.97,22.9,22.92,22.97,22.94,22.79,22.76,22.72,22.79,22.85,22.76,22.7,22.45,22.81,22.81,22.81,22.72,22.35,22.31,22.24,22.04,22.15,22.2,22.24,22.35,22.35,22.31,22.31,22.26,22.13,22.04,22.15,21.97,22.01,21.94,21.9,22.13,22.17,22.2,22.33,22.31,22.2,22.45,22.58,22.42,22.6,22.67,22.63,22.56,22.47,22.45,22.45,22.63,22.49,22.56,22.81,22.76,22.97,22.54,22.74,22.88,22.76,22.92,22.81,22.76,22.83,22.74,22.97,22.99,22.88,22.99,23.1,23.12,23.1,22.92,23.28,23.26,23.12,23.01,23.12,22.94,23.03,22.9,23.08,22.94,22.85,22.72,23.22,23.6,23.73,24.0,24.2,24.29,24.45,24.54,24.49,24.58,24.87,24.69,24.67,24.8,24.83,25.11,25.03,25.0,25.18,25.0,25.11,25.05,24.89,25.11,24.91,25.09,25.07,25.07,25.03,25.05,25.11,24.96,25.05,25.05,24.87,25.11,24.65,24.85,24.8,24.76,24.89,24.63,24.56,24.69,24.67,24.51,24.69,24.49,24.4,24.34,24.31,24.2,24.02,24.18,24.05,24.02,24.11,23.96,23.87,23.8,23.75,23.66,23.73,23.55,23.46,23.24,23.26,23.22,23.19,23.22,23.03,22.94,23.01,23.1,23.17,23.08,23.1,23.12,23.15,23.01,22.85,22.76,22.79,22.7,22.85,22.88,23.06,23.06,23.1,23.26,23.51,23.44,23.37,23.6,23.55,23.53,23.24,23.37,23.49,23.49,23.58,23.46,23.44,23.51,23.53,23.46,23.42,23.26,23.26,23.44,23.37,23.26,23.53,23.24,23.35,23.37,23.28,23.44,23.49,23.53,23.46,23.49,23.4,23.53,23.37,23.35,23.22,23.37,23.35,23.33,23.33,23.44,23.42,23.31,23.33,23.22,23.26,23.49,23.37,23.31,23.26,23.31,23.35,23.44,23.33,23.4,23.35,23.22,23.19,23.17,23.26,23.19,23.28,23.33,23.12,23.08,23.26,23.08,23.17,23.33,23.08,23.12,22.97,23.06,23.06,23.08,22.81,22.58,22.47,22.17,22.1,22.31,22.54,22.85,23.15,22.83,22.76,23.03,23.1,23.06,23.08,22.97,23.1,23.08,22.94,23.15,23.03,23.08,23.03,23.01,23.06,23.15,23.22,23.08,22.92,23.19,23.17,23.19,23.12,23.26,23.1,23.22,23.1,23.17,23.24,23.01,23.06,23.08,23.06,23.22,22.99,23.26,23.08,23.08,23.03,22.97,23.01,23.1,23.03,23.03,23.06,23.22,23.15,22.97,22.9,23.01,22.9,23.03,22.94,23.01,22.99,22.97,22.76,22.85,22.9,22.97,22.85,22.97,22.83,22.76,22.72,22.81,22.74,22.72,22.83,22.74,22.83,22.99,22.51,22.54,22.29,22.01,22.22,22.06,22.13,22.29,22.45,22.45,22.47,22.47,22.6,22.47,22.31,22.26,22.08,22.06,21.97,22.04,21.85,22.06,21.83,22.06,22.22,22.2,22.24,22.29,22.4,22.54,22.58,22.4,22.49,22.29,22.65,22.49,22.54,22.51,22.58,22.58,22.9,22.92,22.9,22.76,22.99,22.81,22.7,22.99,22.79,22.88,22.92,23.03,22.94,23.12,23.03,23.1,23.19,23.06,23.06,23.19,23.17,23.31,23.26,23.12,23.4,23.33,23.37,23.15,23.15,23.03,23.01,23.17,23.53,23.73,24.0,24.22,24.54,24.43,24.45,24.56,24.67,24.71,24.83,24.89,24.83,24.94,24.89,25.03,25.0,25.14,25.31,25.07,25.14,25.09,25.27,25.22,25.05,25.18,25.11,25.0,25.2,25.31,25.05,25.18,25.22,25.2,25.09,25.2,24.94,24.94,25.0,24.74,24.89,24.83,24.76,24.76,24.83,24.74,24.74,24.6,24.56,24.56,24.43,24.36,24.22,24.36,24.22,24.07,24.05,23.98,23.93,23.91,23.91,23.91,23.82,23.69,23.53,23.49,23.35,23.33,23.37,23.33,23.22,23.15,23.08,23.28,23.17,23.06,23.17,23.1,23.15,23.15,23.19,23.17,22.88,22.97,22.74,22.76,23.1,23.06,22.97,23.24,23.42,23.28,23.4,23.53,23.46,23.49,23.46,23.53,23.55,23.62,23.51,23.44,23.49,23.49,23.53,23.42,23.35,23.42,23.49,23.55,23.64,23.49,23.55,23.33,23.46,23.49,23.42,23.49,23.53,23.55,23.46,23.49,23.49,23.55,23.55,23.35,23.53,23.4,23.55,23.37,23.42,23.4,23.35,23.42,23.53,23.42,23.58,23.31,23.44,23.37,23.37,23.51,23.51,23.4,23.46,23.4,23.37,23.37,23.42,23.28,23.33,23.37,23.33,23.37,23.37,23.22,23.22,23.42,23.17,23.17,23.22,23.17,23.17,23.08,22.94,23.03,22.72,22.58,22.42,22.24,22.51,22.45,22.76,22.88,23.19,23.06,23.15,23.1,23.19,23.1,22.99,23.06,23.1,23.01,22.94,23.12,23.08,23.17,23.22,22.99,23.28,23.17,23.15,23.26,23.28,23.26,23.35,23.26,23.24,23.35,23.22,23.24,23.17,23.24,23.4,23.12,23.22,23.22,23.22,23.24,23.06,23.37,23.26,23.15,23.08,23.06,23.19,23.22,23.26,23.17,23.17,23.01,23.15,23.12,23.15,22.94,22.97,23.15,23.06,23.1,23.1,23.08,22.97,23.08,23.12,22.92,23.08,22.99,22.92,22.97,22.79,22.83,22.79,22.83,22.83,22.7,22.99,22.79,22.6,22.47,22.1,22.22,22.4,22.15,22.29,22.45,22.51,22.65,22.47,22.56,22.6,22.47,22.6,22.47,22.26,22.31,22.29,22.29,22.06,22.1,22.08,22.08,22.06,22.29,22.15,22.08,22.24,22.26,22.45,22.51,22.63,22.54,22.81,22.65,22.58,22.7,22.6,22.58,22.92,22.79,22.9,23.01,23.01,22.88,22.79,23.01,22.88,22.92,22.94,22.92,22.81,23.01,22.94,23.1,23.12,23.03,23.06,23.12,23.4,23.03,23.06,23.1,23.19,23.15,23.1,23.1,22.94,22.99,23.01,23.22,23.49,23.78,24.18,24.22,24.47,24.56,24.54,24.49,24.69,24.78,24.94,24.85,24.91,24.89,24.85,25.0,25.07,25.05,25.25,25.25,24.91,24.94,25.05,25.09,25.16,25.16,25.16,25.22,25.27,25.14,24.96,25.22,25.2,25.27,25.14,25.0,25.09,25.07,24.94,24.91,24.94,24.89,24.87,24.74,24.65,24.8,24.69,24.63,24.54,24.45,24.45,24.43,24.36,24.36,24.2,24.22,24.22,24.09,23.96,23.84,23.71,23.82,24.0,23.84,23.62,23.49,23.46,23.37,23.49,23.19,23.17,23.26,23.15,23.31,23.12,23.1,23.19,23.19,23.33,23.15,23.22,23.01,22.85,22.7,22.63,22.72,22.76,22.85,22.83,23.03,23.19,23.01,23.33,23.49,23.42,23.44,23.66,23.58,23.37,23.58,23.64,23.49,23.49,23.37,23.4,23.6,23.33,23.37,23.37,23.49,23.55,23.51,23.4,23.37,23.46,23.49,23.49,23.53,23.49,23.51,23.55,23.51,23.44,23.53,23.58,23.46,23.49,23.42,23.46,23.42,23.51,23.53,23.26,23.4,23.33,23.35,23.69,23.37,23.4,23.44,23.42,23.42,23.44,23.55,23.4,23.4,23.37,23.35,23.51,23.35,23.35,23.26,23.33,23.31,23.22,23.19,23.26,23.28,23.33,23.12,23.19,23.26,23.1,23.17,22.85,22.81,22.63,22.58,22.24,22.26,22.49,22.6,22.79,23.08,23.17,22.99,23.12,23.06,23.1,23.01,23.17,23.19,23.22,23.01,23.03,23.1,23.1,23.19,23.28,23.01,23.24,23.08,23.22,23.26,23.17,23.17,23.33,23.22,23.26,23.4,23.19,23.17,23.19,23.12,23.12,23.28,23.17,23.26,23.28,23.28,23.17,23.24,23.15,23.19,23.06,22.97,23.17,23.12,23.12,23.19,23.17,23.12,23.12,23.15,22.88,22.97,23.03,23.19,23.06,22.88,22.88,22.97,23.03,23.08,23.03,22.7,22.85,22.9,22.94,22.97,22.88,22.81,22.74,22.99,22.76,22.76,22.79,22.83,22.63,22.33,22.22,22.33,22.17,22.26,22.38,22.42,22.49,22.65,22.51,22.6,22.51,22.6,22.63,22.49,22.49,22.42,22.29,22.29,22.22,22.17,22.22,21.99,21.94,21.92,22.01,22.06,22.01,22.01,22.17,22.33,22.47,22.54,22.54,22.79,22.63,22.6,22.6,22.63,22.94,22.88,23.03,22.97,22.9,22.81,22.81,22.99,22.74,22.85,22.85,22.88,22.99,22.92,23.03,23.24,23.15,23.19,23.1,23.12,23.28,23.28,23.24,23.12,23.12,23.1,23.12,22.94,23.08,23.03,22.99,23.12,23.49,23.89,24.09,24.31,24.51,24.38,24.47,24.54,24.51,24.6,24.78,24.91,24.98,24.91,25.03,25.0,25.03,25.16,25.31,25.27,25.0,25.09,25.11,25.14,25.03,25.18,24.98,25.25,25.31,25.18,25.2,25.09,25.14,25.18,25.33,25.09,24.96,25.14,25.14,25.05,25.22,24.94,24.98,24.85,24.91,24.71,24.63,24.58,24.58,24.63,24.63,24.43,24.25,24.36,24.22,24.27,24.2,24.05,24.02,23.91,23.73,23.98,23.87,23.87,23.73,23.46,23.46,23.4,23.37,23.28,23.31,23.33,23.24,23.31,23.26,23.19,23.22,23.15,23.31,23.15,23.28,22.99,22.94,22.83,22.81,22.76,22.72,22.79,22.83,22.85,22.81,22.67,23.06,23.28,23.19,23.19,23.44,23.44,23.51,23.4,23.42,23.6,23.42,23.44,23.42,23.33,23.51,23.4,23.37,23.55,23.6,23.44,23.55,23.35,23.44,23.46,23.37,23.49,23.6,23.51,23.6,23.35,23.37,23.49,23.51,23.4,23.46,23.51,23.44,23.42,23.4,23.51,23.4,23.44,23.33,23.31,23.44,23.44,23.33,23.4,23.37,23.44,23.4,23.49,23.26,23.35,23.26,23.33,23.37,23.4,23.37,23.31,23.42,23.17,23.15,23.19,23.15,23.26,23.15,23.15,23.1,23.26,23.19,23.22,23.01,22.74,22.51,22.6,22.31,22.29,22.54,22.67,22.97,22.92,23.17,22.99,23.15,22.99,23.03,23.24,23.08,23.1,22.99,23.1,23.03,23.12,23.15,23.17,23.22,23.03,23.22,23.19,23.17,23.19,23.08,23.17,23.06,23.17,23.35,23.17,23.19,23.12,23.24,23.22,23.1,23.06,23.15,23.28,23.17,23.31,23.24,23.19,23.33,23.26,23.17,23.06,23.01,23.12,23.22,23.24,23.24,23.01,23.17,23.12,23.01,23.03,23.12,23.01,22.83,23.01,22.88,22.9,22.99,22.99,22.9,22.79,22.76,22.85,23.01,22.99,22.81,22.67,22.79,22.88,22.9,22.79,22.9,22.83,22.33,22.35,22.13,22.2,22.42,22.17,22.26,22.47,22.54,22.74,22.7,22.58,22.56,22.7,22.74,22.54,22.63,22.58,22.6,22.42,22.22,22.22,22.26,22.22,22.29,22.15,21.99,21.83,21.99,22.01,22.1,22.17,22.35,22.4,22.29,22.35,22.54,22.7,22.51,22.63,22.97,22.88,22.9,22.7,22.81,22.83,22.85,22.9,22.85,22.9,22.76,22.85,22.81,22.79,23.1,23.1,23.1,23.22,23.24,23.06,23.06,23.24,23.12,23.06,23.1,23.19,23.17,22.92,23.06,22.83,22.9,23.17,23.6,23.84,24.05,24.27,24.4,24.43,24.54,24.65,24.65,24.69,24.83,24.83,24.94,25.03,24.91,25.0,24.98,25.22,25.27,25.14,25.0,25.03,25.11,25.2,25.18,25.25,25.2,25.27,25.27,25.22,25.05,25.18,25.05,25.16,25.25,25.05,25.07,25.2,25.16,24.94,25.14,24.96,24.94,25.0,24.91,24.94,24.8,24.69,24.54,24.51,24.54,24.45,24.45,24.34,24.4,24.09,24.09,24.07,23.98,23.98,23.89,23.96,23.78,23.69,23.75,23.6,23.51,23.55,23.4,23.33,23.28,23.31,23.19,23.33,23.33,23.1,23.28,23.24,23.37,23.1,23.19,23.08,23.01,22.99,22.92,22.9,22.97,22.94,22.63,22.92,22.63,22.81,22.88,22.85,23.1,23.06,23.24,23.33,23.37,23.4,23.49,23.33,23.37,23.42,23.4,23.33,23.26,23.28,23.4,23.49,23.44,23.31,23.51,23.33,23.51,23.55,23.33,23.46,23.6,23.49,23.49,23.4,23.37,23.42,23.49,23.4,23.46,23.46,23.33,23.44,23.35,23.37,23.42,23.33,23.26,23.28,23.49,23.42,23.31,23.28,23.35,23.4,23.42,23.49,23.33,23.33,23.19,23.33,23.31,23.17,23.31,23.24,23.35,23.15,23.19,23.19,23.24,23.12,23.08,23.12,23.19,23.24,23.1,23.03,22.74,22.67,22.51,22.29,22.24,22.33,22.63,22.67,22.81,22.9,23.1,23.15,23.06,22.99,23.17,23.26,23.03,23.19,23.03,23.1,23.01,23.12,23.06,23.15,23.08,23.12,23.12,22.99,23.24,23.06,23.28,23.24,23.28,23.26,23.26,23.12,22.92,23.19,23.22,23.22,23.03,22.99,23.1,23.1,23.24,23.22,23.24,23.31,23.26,23.12,22.88,23.19,23.03,23.15,23.03,23.17,23.06,23.1,22.94,22.92,23.12,23.12,22.99,23.01,22.88,22.92,22.85,22.83,22.92,22.99,22.92,22.92,23.03,22.88,22.9,22.88,22.83,22.76,22.81,22.81,22.9,22.88,22.72,22.6,22.31,22.06,21.92,22.17,22.22,22.45,22.35,22.26,22.67,22.63,22.65,22.56,22.63,22.63,22.51,22.56,22.58,22.6,22.56,22.54,22.31,22.29,22.47,22.26,22.2,22.22,21.92,22.06,21.67,21.88,21.94,22.04,22.2,22.1,22.26,22.2,22.6,22.49,22.7,22.45,23.08,22.94,22.85,22.83,22.79,22.74,22.94,23.17,23.01,22.83,22.72,22.9,22.94,22.81,23.12,23.15,23.1,22.94,23.1,22.94,23.08,23.15,23.22,22.94,23.08,23.12,22.94,23.01,22.92,22.81,23.12,23.4,23.75,23.91,24.09,24.47,24.51,24.43,24.47,24.67,24.54,24.85,24.78,24.76,25.03,24.91,24.89,25.27,25.07,25.22,25.31,25.38,25.05,24.91,25.22,25.18,25.18,25.18,25.16,25.27,25.18,25.16,25.11,24.96,25.09,25.27,25.07,25.09,25.03,25.05,25.14,25.18,25.07,25.11,24.89,24.98,24.94,24.87,24.91,24.78,24.69,24.8,24.63,24.63,24.58,24.36,24.43,24.29,24.18,24.27,24.22,23.91,23.91,23.89,23.84,23.8,23.73,23.62,23.46,23.51,23.44,23.33,23.26,23.22,23.31,23.31,23.22,23.26,23.28,23.08,23.19,22.97,23.08,22.97,22.99,23.06,22.97,22.99,23.03,22.97,22.92,22.94,22.7,22.65,22.7,22.76,22.92,22.94,23.1,23.06,23.19,23.22,23.49,23.37,23.33,23.35,23.42,23.33,23.26,23.44,23.46,23.55,23.33,23.35,23.31,23.37,23.55,23.49,23.4,23.44,23.69,23.37,23.44,23.35,23.44,23.49,23.46,23.53,23.42,23.35,23.31,23.35,23.33,23.35,23.26,23.33,23.33,23.26,23.46,23.15,23.53,23.46,23.4,23.46,23.44,23.37,23.28,23.22,23.19,23.28,23.42,23.15,23.37,23.31,23.19,23.12,23.19,23.28,23.1,23.12,23.17,23.15,23.12,23.12,22.99,23.01,22.65,22.47,22.42,22.2,22.26,22.58,22.74,22.85,22.88,22.99,23.12,23.08,23.03,23.01,23.19,23.06,23.17,23.17,22.92,22.99,23.03,23.08,23.12,23.15,23.06,23.08,23.17,23.06,23.22,23.03,23.19,23.15,23.12,23.31,23.22,23.06,23.06,23.15,23.15,23.26,23.01,22.99,23.03,23.12,23.15,23.12,23.12,23.17,23.28,23.03,23.08,23.22,23.01,23.01,23.08,23.1,23.06,23.03,23.03,22.94,22.83,22.94,23.06,22.97,22.99,22.99,22.9,22.65,22.92,22.9,22.99,22.9,22.9,23.08,22.88,22.72,22.83,22.6,22.81,22.81,22.76,22.81,22.7,22.38,22.01,22.13,22.17,22.24,22.47,22.4,22.38,22.49,22.65,22.72,22.74,22.47,22.51,22.56,22.63,22.67,22.54,22.58,22.54,22.72,22.6,22.45,22.4,22.4,22.38,22.26,22.08,21.94,21.74,21.81,21.81,21.76,21.9,21.81,22.15,22.22,22.33,22.47,22.45,22.29,23.06,22.97,22.94,22.97,22.9,22.7,22.76,22.94,22.83,22.83,22.83,22.97,23.03,22.97,23.15,23.17,23.12,23.01,23.24,23.06,23.26,23.26,23.31,23.08,23.15,23.17,23.22,23.08,22.97,22.92,23.15,23.58,23.78,24.0,24.25,24.54,24.47,24.54,24.49,24.49,24.6,24.74,24.96,24.87,24.94,25.05,25.11,25.09,25.16,25.36,25.2,25.38,25.33,25.25,25.22,25.16,25.33,25.45,25.31,25.36,25.18,25.18,25.22,25.27,25.22,25.33,25.2,25.18,25.14,25.05,25.18,25.16,25.03,25.27,25.09,25.18,25.2,25.05,24.91,24.85,24.89,24.76,24.76,24.71,24.49,24.58,24.38,24.51,24.36,24.27,24.29,24.14,24.07,23.98,23.96,23.82,23.87,23.66,23.69,23.69,23.53,23.51,23.37,23.31,23.31,23.35,23.22,23.4,23.44,23.33,23.42,23.17,23.28,23.19,23.46,23.28,23.17,23.17,23.24,23.15,23.17,22.94,22.65,22.88,22.79,22.76,22.88,22.9,22.94,22.94,23.06,23.17,23.24,23.24,23.42,23.31,23.44,23.4,23.53,23.51,23.49,23.49,23.53,23.53,23.51,23.44,23.55,23.62,23.55,23.49,23.58,23.53,23.51,23.46,23.37,23.44,23.35,23.44,23.35,23.53,23.42,23.46,23.35,23.49,23.42,23.44,23.33,23.35,23.62,23.51,23.44,23.46,23.49,23.51,23.4,23.35,23.33,23.42,23.19,23.37,23.35,23.28,23.31,23.37,23.35,23.15,23.24,23.35,23.28,23.17,23.15,23.31,23.15,23.12,23.12,22.83,22.74,22.45,22.35,22.29,22.54,22.72,22.92,22.83,22.94,23.17,23.1,23.08,23.31,23.08,23.1,23.12,23.12,23.19,22.97,23.06,22.97,23.12,23.15,23.06,23.24,23.08,23.15,23.17,23.28,23.17,23.06,23.1,23.28,23.28,23.22,23.1,23.03,23.22,23.24,23.15,23.24,23.17,23.24,23.31,23.17,23.19,23.19,23.12,23.19,23.17,23.12,23.06,23.01,23.1,23.17,23.12,23.1,22.92,23.03,23.31,22.97,23.01,23.08,22.94,22.97,22.97,22.97,22.94,22.97,23.03,22.81,22.97,22.9,22.92,22.9,22.88,22.92,22.79,22.83,22.92,22.83,22.83,22.67,22.22,22.13,22.26,22.17,22.24,22.72,22.6,22.47,22.51,22.56,22.74,22.65,22.56,22.76,22.42,22.67,22.6,22.6,22.83,22.67,22.6,22.63,22.67,22.63,22.67,22.56,22.38,22.35,22.29,22.06,22.22,21.94,21.88,21.85,21.78,22.06,22.13,22.13,22.17,22.47,22.24,22.99,22.9,22.85,22.97,22.76,22.79,23.01,23.17,23.03,22.74,22.85,22.76,23.03,22.97,23.12,23.31,23.15,23.01,23.15,23.22,23.24,23.22,23.24,23.15,22.97,22.99,23.08,22.83,22.99,23.01,23.22,23.46,23.78,23.98,24.25,24.71,24.6,24.6,24.67,24.71,24.58,24.85,24.94,24.91,25.05,24.98,25.03,25.16,25.27,25.22,25.31,25.42,25.25,25.27,25.29,25.2,25.53,25.31,25.29,25.31,25.25,25.27,25.27,25.25,25.33,25.16,25.22,25.03,25.22,25.27,25.18,25.31,25.2,25.27,25.2,25.09,25.16,25.11,25.0,24.8,24.89,24.96,24.96,24.69,24.51,24.65,24.65,24.38,24.38,24.34,24.27,24.2,24.16,23.98,23.96,23.82,23.82,23.71,23.58,23.6,23.55,23.64,23.35,23.33,23.35,23.26,23.22,23.42,23.44,23.28,23.33,23.12,23.15,23.28,23.31,23.31,23.37,23.37,23.26,23.28,23.03,23.17,22.85,22.9,22.99,22.97,22.76,22.85,22.85,22.9,22.94,22.85,22.97,23.03,23.08,23.33,23.55,23.31,23.24,23.46,23.33,23.42,23.46,23.51,23.22,23.49,23.51,23.44,23.46,23.44,23.55,23.53,23.66,23.53,23.35,23.4,23.62,23.51,23.53,23.42,23.33,23.33,23.44,23.58,23.44,23.37,23.44,23.49,23.49,23.28,23.53,23.66,23.51,23.46,23.37,23.44,23.4,23.28,23.26,23.28,23.35,23.19,23.37,23.42,23.33,23.22,23.19,23.33,23.19,23.33,23.31,23.15,23.24,23.17,22.85,22.76,22.63,22.31,22.45,22.47,22.76,22.76,22.97,23.1,23.08,23.06,23.08,23.08,23.12,23.1,23.1,23.19,23.17,23.22,23.17,23.08,23.15,23.22,23.03,23.15,23.03,23.12,23.15,23.06,23.22,23.12,23.15,23.03,23.12,22.99,23.1,23.28,23.17,23.17,23.24,23.12,23.19,23.15,23.15,23.26,23.22,23.22,23.19,23.12,23.1,23.31,23.12,23.15,23.17,23.08,23.06,23.17,23.1,23.15,23.03,23.24,22.9,22.92,22.81,22.99,22.92,22.88,22.97,22.81,23.01,22.9,22.67,22.88,22.88,23.01,22.85,22.99,22.79,22.83,22.94,22.76,22.67,22.51,22.45,22.31,21.99,22.1,22.2,22.42,22.76,22.58,22.4,22.65,22.47,22.81,22.72,22.6,22.76,22.72,22.7,22.67,22.65,22.72,22.67,22.38,22.6,22.63,22.65,22.58,22.63,22.42,22.47,22.45,22.31,22.2,21.97,21.88,21.85,21.88,21.85,21.9,21.94,22.01,22.08,22.15,23.1,23.03,22.92,23.08,23.01,22.99,22.85,23.08,22.83,22.92,22.92,22.97,23.1,22.83,23.01,23.01,23.19,23.12,23.28,23.24,23.22,23.31,23.22,23.08,22.99,23.03,23.08,22.88,22.92,22.97,23.44,23.55,23.93,24.02,24.45,24.69,24.69,24.6,24.69,24.85,24.74,24.85,24.83,25.0,25.0,25.03,25.25,25.29,25.27,25.29,25.25,25.2,25.11,25.16,25.25,25.18,25.27,25.33,25.31,25.25,25.38,25.27,25.31,25.27,25.36,25.31,25.2,25.31,25.38,25.09,25.18,25.25,25.29,25.22,25.22,25.29,25.31,25.16,25.09,25.11,25.16,24.94,24.96,24.83,24.6,24.47,24.71,24.76,24.47,24.36,24.36,24.22,24.18,24.07,24.05,23.93,23.93,23.8,23.66,23.87,23.73,23.53,23.49,23.53,23.31,23.37,23.37,23.31,23.44,23.37,23.24,23.03,23.08,23.33,23.31,23.33,23.35,23.42,23.44,23.37,23.19,23.28,23.33,23.22,23.08,23.01,22.94,23.03,22.92,22.83,22.79,22.79,22.85,22.92,23.03,22.97,22.97,23.03,23.22,23.33,23.4,23.42,23.55,23.51,23.46,23.42,23.64,23.55,23.51,23.33,23.64,23.44,23.6,23.46,23.37,23.58,23.6,23.53,23.58,23.42,23.4,23.44,23.42,23.4,23.46,23.26,23.53,23.46,23.49,23.49,23.55,23.49,23.53,23.6,23.44,23.4,23.44,23.51,23.33,23.42,23.28,23.28,23.33,23.33,23.33,23.28,23.24,23.31,23.28,23.03,23.22,23.35,23.15,23.17,22.88,22.63,22.54,22.42,22.56,22.4,23.01,22.94,23.06,22.94,23.06,23.08,23.06,23.1,23.15,23.03,23.1,23.06,23.06,23.17,23.22,23.1,23.15,23.12,23.12,23.22,23.22,23.15,22.97,23.22,23.19,23.31,23.22,23.08,23.19,23.1,23.22,23.19,23.22,23.31,23.17,23.12,23.17,23.22,23.22,23.15,23.31,23.22,23.28,23.28,23.22,23.31,23.12,23.17,23.08,23.1,23.03,23.06,23.03,23.19,23.08,23.08,22.94,23.03,23.03,23.03,23.03,22.99,23.03,22.92,22.9,22.88,22.97,23.01,23.12,23.15,22.99,23.01,22.81,22.88,22.97,22.79,22.74,22.49,22.29,22.29,22.08,22.29,22.42,22.54,22.74,22.67,22.47,22.58,22.56,22.65,22.49,22.65,22.74,22.72,22.6,22.58,22.7,22.67,22.58,22.67,22.74,22.72,22.51,22.67,22.65,22.6,22.6,22.45,22.35,22.45,22.15,22.13,22.1,21.92,22.1,22.06,21.9,21.88,21.83,22.04,23.26,22.92,22.65,23.06,22.97,22.88,22.99,22.97,22.92,22.81,22.79,22.92,22.99,23.01,23.15,22.99,23.15,23.1,23.26,23.1,23.15,23.24,23.06,23.06,23.12,23.15,23.03,22.9,22.97,23.03,23.42,23.69,24.02,24.11,24.43,24.36,24.54,24.51,24.67,24.69,24.71,24.89,25.0,25.05,25.09,25.07,25.16,25.38,25.09,25.36,25.2,25.25,25.11,25.05,25.25,25.2,25.22,25.29,25.31,25.45,25.45,25.42,25.42,25.22,25.2,25.18,25.09,25.16,25.33,25.09,25.22,25.27,25.36,25.29,25.2,25.25,25.0,24.98,25.09,24.89,25.18,25.03,24.8,24.89,24.67,24.98,24.96,24.6,24.56,24.29,24.25,24.22,24.11,24.05,24.05,24.02,23.91,23.87,23.91,23.96,23.75,23.6,23.49,23.55,23.44,23.49,23.28,23.35,23.42,23.1,23.24,22.97,23.15,23.15,23.28,23.26,23.6,23.26,23.35,23.42,23.55,23.37,23.4,23.31,23.22,23.17,23.15,23.17,23.06,22.92,22.94,22.88,22.9,22.7,22.81,22.9,22.85,22.83,23.17,23.12,23.28,23.42,23.42,23.46,23.46,23.46,23.6,23.46,23.58,23.55,23.66,23.6,23.46,23.4,23.33,23.46,23.37,23.44,23.44,23.42,23.55,23.4,23.46,23.49,23.44,23.26,23.24,23.26,23.46,23.44,23.4,23.42,23.33,23.51,23.46,23.44,23.44,23.33,23.33,23.35,23.33,23.37,23.44,23.33,23.33,23.19,23.26,23.22,23.33,23.15,23.22,23.1,23.08,23.01,22.85,22.72,22.49,22.38,22.49,22.7,22.92,23.06,23.08,23.22,23.19,23.22,23.17,22.97,23.1,23.15,23.28,23.17,23.15,23.1,22.99,23.08,23.15,23.26,23.26,23.26,23.17,23.1,23.12,23.08,23.06,22.97,23.15,23.17,23.15,23.03,23.26,23.26,23.12,23.12,23.08,23.08,23.17,23.1,23.17,23.26,23.15,23.19,23.1,23.22,23.28,23.22,23.17,23.03,23.12,23.19,23.19,23.08,23.12,23.17,23.17,23.12,22.94,23.08,23.08,22.97,22.92,23.08,22.92,22.85,22.92,22.83,22.85,22.85,23.1,23.08,22.97,22.79,22.85,22.83,22.88,22.67,22.6,22.26,22.26,22.1,22.15,22.29,22.31,22.51,22.58,22.38,22.58,22.49,22.7,22.79,22.54,22.74,22.63,22.72,22.54,22.65,22.72,22.63,22.81,22.6,22.79,22.63,22.65,22.65,22.58,22.63,22.56,22.49,22.47,22.35,22.35,22.24,22.17,21.85,22.22,22.04,22.01,21.83,21.74,21.76,22.88,22.92,22.83,22.83,22.92,22.99,23.01,23.01,23.01,22.85,22.85,23.06,22.97,22.97,22.99,23.03,23.03,23.06,23.28,23.12,23.28,23.17,23.17,23.12,23.08,23.01,22.88,22.92,22.79,23.12,23.55,23.64,24.16,24.02,24.49,24.63,24.51,24.6,24.56,24.74,24.74,24.91,24.89,25.16,25.14,25.07,25.25,25.25,25.2,25.22,25.38,25.25,25.05,25.33,25.18,25.36,25.49,25.36,25.27,25.42,25.4,25.38,25.29,25.33,25.22,25.2,25.22,25.29,25.14,25.27,25.18,25.09,25.33,25.16,25.2,25.27,25.18,25.07,25.11,24.89,24.98,24.85,24.94,24.87,24.91,24.78,24.8,24.69,24.85,24.51,24.31,24.27,24.07,24.02,24.11,24.07,24.07,23.84,23.89,23.78,23.91,23.69,23.44,23.49,23.4,23.24,23.28,23.42,23.26,23.08,23.1,22.99,23.06,23.06,23.26,23.51,23.44,23.46,23.44,23.42,23.4,23.46,23.4,23.26,23.33,23.26,23.22,23.22,23.15,23.06,23.15,22.94,23.01,22.76,22.79,22.92,22.94,22.72,22.83,22.85,23.01,23.28,23.33,23.42,23.37,23.42,23.49,23.58,23.55,23.4,23.44,23.46,23.4,23.33,23.28,23.55,23.53,23.46,23.46,23.44,23.44,23.44,23.46,23.46,23.35,23.28,23.26,23.31,23.44,23.42,23.55,23.28,23.53,23.4,23.49,23.42,23.33,23.37,23.35,23.4,23.42,23.26,23.35,23.42,23.28,23.17,23.19,23.17,23.22,23.17,23.12,23.22,22.99,22.88,22.58,22.29,22.24,22.2,22.47,22.76,23.01,23.12,23.01,23.1,23.01,23.12,23.15,23.24,23.06,23.26,23.17,23.15,23.01,23.15,23.03,23.1,23.03,23.08,23.12,23.19,23.1,22.94,23.06,22.97,23.15,23.12,23.15,23.08,23.08,23.08,23.17,23.17,23.08,23.4,23.12,23.08,23.15,23.06,23.19,23.22,23.15,23.26,23.1,23.03,23.12,23.06,23.08,22.99,23.15,23.08,23.15,23.19,23.12,23.1,23.1,22.92,22.99,23.08,23.03,23.03,22.88,23.12,22.83,22.92,22.76,22.94,22.97,22.85,22.83,22.99,22.85,22.92,22.76,22.83,22.81,22.67,22.49,22.13,22.2,22.24,22.01,22.56,22.31,22.54,22.76,22.42,22.54,22.51,22.65,22.74,22.6,22.51,22.58,22.54,22.67,22.49,22.65,22.6,22.67,22.65,22.74,22.6,22.67,22.7,22.49,22.65,22.58,22.74,22.51,22.6,22.4,22.42,22.35,22.24,22.22,22.01,22.04,21.94,21.9,21.94,23.08,22.99,22.9,22.85,23.03,23.01,23.01,23.03,22.9,22.83,22.83,22.99,23.01,23.01,23.06,23.1,23.19,23.1,23.12,23.31,23.22,23.35,23.19,23.1,23.03,23.26,22.97,22.9,22.94,23.19,23.51,23.82,24.31,24.18,24.51,24.65,24.38,24.67,24.78,24.78,24.85,25.0,25.09,25.05,25.03,25.07,25.27,25.25,25.14,25.16,25.42,25.31,25.29,25.2,25.18,25.36,25.4,25.29,25.18,25.29,25.27,25.42,25.29,25.4,25.27,25.49,25.25,25.22,25.22,25.07,25.27,25.14,25.25,25.16,25.03,25.18,25.2,25.14,25.2,25.11,25.09,25.0,24.89,24.87,24.89,24.8,24.8,24.51,24.8,24.6,24.4,24.36,24.47,24.16,24.02,24.11,24.02,24.09,24.02,23.93,23.89,23.73,23.69,23.53,23.49,23.44,23.24,23.42,23.19,23.1,23.12,22.99,23.1,23.31,23.49,23.53,23.53,23.49,23.28,23.58,23.44,23.42,23.4,23.37,23.28,23.28,23.35,23.33,23.31,23.26,23.28,23.06,23.06,22.88,22.94,22.83,22.72,22.67,22.79,22.85,22.88,23.22,23.15,23.22,23.22,23.42,23.31,23.44,23.49,23.49,23.55,23.51,23.44,23.46,23.44,23.58,23.62,23.62,23.55,23.64,23.51,23.4,23.42,23.55,23.35,23.44,23.26,23.35,23.46,23.42,23.33,23.44,23.42,23.58,23.44,23.4,23.33,23.31,23.31,23.42,23.42,23.37,23.33,23.37,23.31,23.17,23.24,23.19,23.22,23.28,23.17,23.26,22.92,22.79,22.49,22.54,22.38,22.4,22.63,22.88,23.08,23.08,23.15,22.99,23.03,23.19,23.22,23.15,23.15,23.1,23.17,23.24,23.26,23.26,23.17,23.15,23.1,22.94,23.12,23.22,23.22,23.06,23.22,23.01,23.33,22.97,23.22,23.1,23.24,23.06,23.22,23.24,23.28,23.35,23.19,23.15,23.06,23.01,23.17,23.42,23.22,23.24,23.12,23.15,23.12,23.1,22.99,22.94,22.97,23.12,23.08,23.12,22.99,22.99,23.08,23.15,23.01,22.97,23.06,22.99,23.03,22.94,23.06,22.92,22.79,22.74,22.81,22.76,22.85,22.9,22.83,22.76,22.67,22.88,22.79,22.51,22.38,22.1,22.1,22.49,22.35,22.54,22.47,22.67,22.63,22.67,22.6,22.72,22.7,22.65,22.56,22.74,22.74,22.54,22.74,22.65,22.67,22.7,22.6,22.54,22.65,22.51,22.65,22.65,22.67,22.63,22.63,22.79,22.56,22.56,22.58,22.35,22.54,22.33,22.38,22.26,22.42,22.01,21.97,21.78,22.94,22.88,23.01,22.79,22.94,22.92,22.92,22.9,22.76,22.81,22.88,23.01,23.06,23.1,23.06,23.08,23.22,23.06,23.17,23.17,23.17,23.15,23.01,22.97,23.01,23.15,22.85,22.88,22.85,23.35,23.64,23.75,24.18,24.34,24.47,24.54,24.58,24.63,24.71,24.85,24.74,24.91,25.0,25.2,25.09,25.18,25.2,25.36,25.16,25.22,25.33,25.38,25.2,25.22,25.14,25.27,25.2,25.45,25.47,25.38,25.49,25.36,25.42,25.36,25.38,25.29,25.25,25.22,25.27,25.16,25.2,25.14,25.25,25.27,25.2,25.22,25.25,25.0,25.16,25.03,24.98,25.09,24.91,24.89,24.85,25.0,24.76,24.71,24.83,24.54,24.29,24.29,24.07,24.16,24.09,23.96,23.98,24.0,24.11,24.0,24.05,23.87,23.69,23.51,23.46,23.31,23.17,23.24,23.26,23.22,23.03,23.08,23.19,23.31,23.46,23.51,23.46,23.46,23.26,23.49,23.51,23.58,23.42,23.28,23.26,23.51,23.44,23.4,23.37,23.4,23.26,23.24,23.19,23.15,23.12,23.01,22.9,22.72,22.7,22.76,22.81,22.88,22.88,23.1,22.99,23.19,23.17,23.4,23.42,23.4,23.46,23.51,23.53,23.46,23.49,23.64,23.51,23.55,23.44,23.37,23.31,23.49,23.55,23.58,23.37,23.22,23.4,23.44,23.44,23.51,23.4,23.37,23.55,23.49,23.46,23.44,23.35,23.31,23.26,23.46,23.33,23.15,23.22,23.46,23.19,23.26,23.19,23.35,23.22,23.01,23.26,22.97,22.9,22.72,22.54,22.29,22.38,22.51,22.72,22.81,22.99,23.1,23.1,23.08,23.01,23.24,23.19,23.24,23.1,23.26,23.15,23.19,23.22,23.17,23.24,23.1,23.03,22.97,23.12,23.1,23.24,23.17,23.15,23.06,23.01,23.24,23.03,23.08,23.15,23.08,23.22,23.03,23.19,23.15,23.26,23.22,23.17,23.15,23.15,23.28,23.26,23.12,22.97,23.15,23.24,23.08,23.03,23.08,23.08,23.1,22.94,23.06,23.06,23.1,22.94,23.06,23.12,22.99,22.97,23.1,23.06,23.03,22.88,22.83,22.88,23.01,22.92,22.92,22.83,22.97,22.85,22.97,22.79,22.54,22.65,22.4,22.26,22.15,22.15,22.38,22.24,22.49,22.58,22.63,22.67,22.65,22.45,22.63,22.72,22.83,22.51,22.54,22.79,22.54,22.65,22.58,22.65,22.51,22.65,22.58,22.47,22.51,22.67,22.88,22.79,22.7,22.56,22.6,22.51,22.56,22.65,22.29,22.6,22.45,22.38,22.33,22.49,22.2,22.06,21.88,22.94,22.85,22.94,22.97,22.85,22.9,22.9,22.97,22.63,22.97,23.01,23.08,23.12,22.92,23.01,23.26,23.06,23.08,23.12,23.31,23.19,23.26,23.03,22.94,23.12,22.85,22.92,22.74,23.12,23.46,23.69,24.05,24.27,24.27,24.54,24.54,24.56,24.65,24.71,24.91,24.8,25.0,25.09,25.05,25.11,25.07,25.2,25.2,25.31,25.27,25.11,25.22,25.25,25.31,25.27,25.42,25.36,25.49,25.29,25.45,25.4,25.42,25.42,25.31,25.42,25.22,25.25,25.2,25.25,25.29,25.25,25.22,25.42,25.31,25.2,25.22,25.18,25.09,25.05,24.98,25.11,25.05,24.89,24.89,24.78,24.94,24.83,24.71,24.71,24.49,24.34,24.29,24.14,24.11,24.16,24.05,24.05,23.91,24.02,24.07,23.96,23.91,23.75,23.55,23.49,23.35,23.24,23.31,23.28,23.15,23.19,22.85,23.17,23.4,23.35,23.35,23.46,23.44,23.33,23.44,23.44,23.4,23.4,23.53,23.28,23.53,23.53,23.49,23.37,23.42,23.37,23.37,23.4,23.31,23.1,23.08,23.03,22.81,22.74,22.99,22.94,22.88,22.79,22.83,22.79,22.97,23.06,23.19,23.26,23.33,23.46,23.44,23.49,23.44,23.46,23.55,23.51,23.55,23.53,23.49,23.42,23.46,23.44,23.51,23.42,23.37,23.35,23.37,23.37,23.33,23.44,23.37,23.55,23.46,23.33,23.28,23.42,23.37,23.24,23.26,23.33,23.46,23.35,23.31,23.24,23.26,23.28,23.19,23.19,23.31,23.22,23.06,22.85,22.6,22.47,22.35,22.51,22.63,22.76,23.03,23.03,23.17,23.26,23.1,23.1,23.12,23.15,23.22,23.26,23.24,23.1,23.15,23.17,23.01,23.28,23.1,22.94,23.06,23.06,23.12,23.15,23.06,23.06,23.03,23.08,23.19,23.17,23.01,23.22,23.12,23.19,23.08,23.1,23.19,23.1,23.12,23.15,23.1,23.12,23.15,23.12,23.03,23.19,23.31,23.15,23.17,23.03,22.94,23.08,23.22,23.01,23.12,23.15,23.1,23.12,23.15,22.92,22.85,23.06,23.17,23.1,23.06,22.79,22.99,22.99,22.9,22.9,22.85,22.99,22.99,22.97,22.74,22.79,22.74,22.58,22.2,22.04,22.04,22.2,22.45,22.22,22.7,22.6,22.74,22.74,22.58,22.65,22.54,22.67,22.6,22.47,22.47,22.76,22.7,22.54,22.7,22.63,22.65,22.76,22.51,22.54,22.54,22.67,22.56,22.74,22.79,22.58,22.7,22.56,22.49,22.47,22.54,22.6,22.4,22.47,22.26,22.22,22.29,22.24,22.04,22.72,22.92,22.92,22.97,22.94,22.94,22.9,22.88,23.01,22.72,22.9,22.92,23.03,23.08,22.94,23.08,23.06,23.08,23.03,23.06,23.26,23.24,23.01,23.08,23.22,23.03,22.9,22.9,23.15,23.53,23.73,23.93,24.25,24.47,24.47,24.65,24.69,24.67,24.71,24.78,24.87,25.2,25.16,25.03,25.09,25.14,25.31,25.38,25.25,25.22,25.36,25.25,25.25,25.31,25.11,25.36,25.4,25.27,25.29,25.36,25.51,25.49,25.42,25.42,25.38,25.4,25.38,25.38,25.29,25.22,25.25,25.22,25.2,25.16,25.03,25.2,25.05,25.4,25.22,24.94,25.0,24.89,25.05,24.96,24.96,24.8,24.87,24.98,24.54,24.4,24.51,24.34,24.07,24.11,24.07,23.89,24.14,23.89,23.93,23.96,24.14,23.96,23.82,23.64,23.58,23.53,23.22,23.33,23.12,23.03,23.15,23.17,23.15,23.44,23.4,23.35,23.4,23.46,23.24,23.55,23.4,23.46,23.17,23.53,23.33,23.58,23.44,23.44,23.49,23.44,23.4,23.42,23.64,23.46,23.31,23.31,23.24,22.99,23.1,23.03,23.03,22.85,22.83,22.99,22.88,22.81,22.92,23.03,23.08,23.15,23.35,23.28,23.42,23.55,23.49,23.46,23.6,23.46,23.37,23.4,23.4,23.35,23.51,23.37,23.51,23.44,23.26,23.37,23.44,23.46,23.33,23.49,23.58,23.55,23.49,23.26,23.31,23.44,23.33,23.22,23.37,23.35,23.46,23.46,23.15,23.17,23.22,23.12,23.15,23.12,23.17,22.88,22.81,22.54,22.33,22.38,22.54,22.79,22.94,23.03,22.99,23.22,23.24,22.97,23.1,23.08,23.22,23.19,23.22,23.17,23.03,23.17,23.17,23.08,22.94,23.03,23.15,23.08,23.15,23.08,23.08,23.03,23.28,23.22,23.17,23.12,23.19,23.22,23.24,23.24,23.31,22.94,23.06,23.15,23.17,23.1,23.19,23.1,23.1,23.24,23.24,23.12,23.1,23.19,23.19,23.06,23.15,23.12,23.1,23.1,23.06,23.1,22.94,23.01,23.06,23.1,22.99,23.08,22.88,22.97,23.1,22.9,22.9,22.92,22.85,22.76,22.88,22.99,22.83,23.06,22.92,22.88,22.65,22.72,22.56,22.24,22.1,22.06,22.24,22.45,22.35,22.54,22.56,22.67,22.67,22.49,22.47,22.51,22.63,22.63,22.7,22.6,22.74,22.7,22.65,22.45,22.6,22.63,22.6,22.76,22.47,22.6,22.67,22.65,22.76,22.58,22.45,22.63,22.47,22.51,22.54,22.67,22.45,22.29,22.47,22.4,22.58,22.38,22.35,22.26,22.85,22.38,22.65,22.81,22.97,22.94,22.83,22.99,22.81,22.79,22.85,23.01,23.1,23.17,23.15,23.22,23.08,23.12,23.01,23.01,23.22,23.24,22.92,23.22,22.97,23.06,22.97,22.88,23.19,23.58,23.82,24.07,24.29,24.49,24.6,24.78,24.58,24.67,24.65,24.63,24.94,24.98,25.16,25.11,24.89,25.22,25.36,25.38,25.29,25.33,25.56,25.29,25.27,25.22,25.14,25.22,25.29,25.38,25.31,25.4,25.49,25.31,25.31,25.27,25.33,25.36,25.33,25.18,25.31,25.27,25.2,25.16,25.31,25.27,25.16,25.16,25.22,25.18,25.2,24.98,25.05,25.05,24.89,24.94,25.0,25.03,24.87,24.83,24.85,24.34,24.47,24.4,24.22,24.09,24.18,24.05,24.11,24.18,24.14,24.05,24.02,23.87,23.82,23.6,23.33,23.44,23.19,23.1,23.03,23.03,23.03,23.19,23.35,23.46,23.37,23.44,23.6,23.37,23.44,23.46,23.55,23.35,23.44,23.42,23.28,23.58,23.53,23.51,23.37,23.44,23.46,23.31,23.51,23.44,23.24,23.33,23.28,23.22,23.22,23.28,23.19,23.01,22.97,23.06,22.97,22.79,22.9,22.99,23.1,22.9,23.08,23.26,23.22,23.31,23.33,23.51,23.51,23.46,23.46,23.46,23.42,23.58,23.58,23.46,23.44,23.37,23.42,23.44,23.51,23.44,23.51,23.37,23.6,23.35,23.44,23.24,23.31,23.42,23.31,23.4,23.49,23.35,23.35,23.22,23.22,23.22,23.22,23.1,23.08,23.22,23.03,23.03,22.56,22.45,22.33,22.42,22.65,23.12,22.99,23.08,23.12,23.19,23.03,23.19,23.03,23.08,23.12,23.1,23.19,23.12,23.06,23.12,23.15,23.24,23.15,23.12,23.03,23.1,23.12,23.12,23.12,23.01,23.08,22.99,23.01,23.1,23.17,23.17,23.24,23.22,23.19,23.26,23.12,23.17,23.19,23.12,23.19,23.1,23.19,23.17,23.15,22.99,23.08,23.15,23.17,22.97,22.85,23.06,23.22,23.08,23.08,23.01,23.03,22.94,22.88,23.24,22.94,22.9,22.99,23.01,22.99,23.03,23.01,22.94,22.9,22.67,22.92,22.97,22.92,22.97,22.97,22.88,22.7,22.35,22.31,21.99,21.99,21.97,22.22,22.38,22.31,22.65,22.63,22.65,22.74,22.45,22.49,22.54,22.65,22.63,22.72,22.67,22.51,22.67,22.38,22.72,22.58,22.49,22.56,22.58,22.58,22.51,22.7,22.67,22.6,22.58,22.56,22.51,22.54,22.35,22.49,22.35,22.38,22.35,22.49,22.56,22.67,22.51,22.49,22.2,22.47,22.47,22.67,22.76,22.83,22.85,22.83,23.06,22.85,22.92,22.9,23.03,23.01,23.06,23.19,23.06,23.12,23.12,23.17,22.74,22.99,23.33,23.03,23.06,23.03,23.03,22.92,23.01,23.17,23.87,23.98,24.0,24.31,24.31,24.6,24.67,24.49,24.63,24.71,24.71,25.03,25.07,25.11,24.98,25.07,25.16,25.25,25.29,25.31,25.38,25.38,25.31,25.0,25.09,25.18,25.14,25.33,25.33,25.22,25.4,25.29,25.4,25.42,25.31,25.4,25.36,25.38,25.18,25.27,25.45,25.18,25.25,25.25,25.2,25.05,25.09,25.18,25.05,24.96,25.03,25.11,25.14,25.11,24.96,24.89,25.0,24.91,24.63,24.45,24.45,24.34,24.36,24.25,24.0,24.18,24.22,24.22,24.18,24.02,24.05,24.0,23.93,23.73,23.6,23.46,23.28,23.22,23.15,23.03,23.24,23.24,23.28,23.35,23.35,23.31,23.4,23.37,23.42,23.33,23.4,23.33,23.26,23.37,23.46,23.4,23.49,23.37,23.62,23.55,23.37,23.62,23.35,23.46,23.37,23.31,23.37,23.33,23.24,23.28,23.31,23.22,23.24,23.22,23.06,23.15,23.08,23.06,23.06,22.85,22.83,23.06,23.01,23.03,23.08,23.12,23.24,23.28,23.35,23.46,23.4,23.37,23.53,23.44,23.44,23.33,23.4,23.35,23.33,23.4,23.49,23.37,23.4,23.37,23.28,23.49,23.33,23.31,23.33,23.26,23.35,23.44,23.31,23.44,23.33,23.37,23.26,23.19,23.22,23.15,23.01,22.94,22.72,22.56,22.31,22.33,22.56,22.76,22.97,23.01,23.19,23.22,23.15,23.24,23.06,23.24,23.15,23.28,23.22,23.12,23.15,23.17,23.17,23.12,23.08,23.19,23.1,22.99,23.31,23.15,23.24,23.1,22.76,23.08,22.94,23.17,23.03,23.08,23.17,23.12,23.19,23.1,23.26,23.31,23.19,23.22,23.03,23.01,23.06,23.17,23.17,23.06,23.31,23.22,23.22,23.08,23.03,23.06,23.03,23.22,23.03,22.99,23.03,22.99,22.94,23.06,23.1,23.01,22.92,22.92,22.94,22.88,22.79,23.01,22.85,22.81,22.72,22.76,22.67,22.85,22.85,22.72,22.81,22.6,22.31,22.26,22.15,22.08,22.17,22.4,22.51,22.4,22.65,22.6,22.54,22.83,22.56,22.7,22.65,22.6,22.6,22.56,22.7,22.45,22.4,22.42,22.58,22.74,22.83,22.54,22.47,22.63,22.6,22.72,22.51,22.7,22.74,22.54,22.54,22.49,22.51,22.63,22.38,22.42,22.4,22.49,22.2,22.38,22.29,22.33,22.42,22.26,22.4,22.47,22.56,22.56,22.83,22.7,22.88,22.79,22.81,22.81,22.99,23.26,22.94,23.12,23.1,23.22,23.19,23.12,23.12,22.97,23.19,22.99,23.03,22.94,22.85,22.79,22.88,23.35,23.6,23.93,24.09,24.31,24.45,24.58,24.67,24.63,24.54,24.74,24.8,24.89,25.16,24.94,25.11,25.03,25.07,25.25,25.27,25.2,25.31,25.29,25.14,25.25,25.29,25.22,25.38,25.42,25.42,25.45,25.27,25.49,25.33,25.31,25.29,25.33,25.38,25.27,25.38,25.29,25.29,25.33,25.22,25.22,25.07,25.4,25.22,25.22,25.29,25.2,25.03,25.18,25.2,25.14,24.87,24.91,24.85,24.85,24.63,24.56,24.54,24.38,24.43,24.27,24.14,24.16,24.27,24.27,24.18,24.14,24.07,23.89,23.8,23.6,23.49,23.24,23.24,23.33,23.15,23.08,23.15,23.17,23.12,23.31,23.58,23.49,23.42,23.37,23.28,23.42,23.46,23.53,23.26,23.24,23.28,23.55,23.55,23.46,23.51,23.55,23.46,23.6,23.49,23.53,23.4,23.49,23.44,23.35,23.28,23.37,23.44,23.46,23.31,23.24,23.08,23.19,23.31,23.06,23.08,23.12,22.92,23.03,23.06,22.9,23.17,23.01,23.26,23.1,23.28,23.26,23.44,23.31,23.28,23.51,23.6,23.37,23.46,23.42,23.42,23.42,23.37,23.33,23.42,23.46,23.37,23.46,23.28,23.31,23.4,23.12,23.37,23.31,23.26,23.46,23.46,23.33,23.28,23.24,23.19,23.17,22.94,22.81,22.6,22.51,22.49,22.45,22.45,22.83,23.06,23.06,23.08,23.19,23.17,23.17,23.12,23.15,23.12,23.26,23.33,23.1,23.26,23.19,23.24,23.19,23.24,23.1,22.99,23.12,23.12,23.24,23.1,23.01,23.12,23.1,23.19,23.1,23.12,23.15,23.15,23.12,23.1,23.24,23.12,23.1,23.06,23.15,23.33,23.08,23.08,22.99,23.15,23.15,22.99,22.99,23.1,23.08,23.1,23.08,23.06,23.08,23.01,23.01,23.01,23.08,22.94,23.1,23.01,22.88,22.79,23.03,22.97,23.06,22.83,22.83,22.97,23.03,22.94,22.81,22.81,22.81,23.01,22.74,22.74,22.38,22.22,22.22,22.1,22.13,22.17,22.54,22.56,22.54,22.56,22.67,22.58,22.67,22.6,22.79,22.51,22.47,22.45,22.4,22.58,22.4,22.6,22.58,22.7,22.47,22.76,22.49,22.47,22.54,22.67,22.6,22.56,22.63,22.49,22.56,22.58,22.33,22.47,22.47,22.45,22.38,22.45,22.65,22.22,22.26,22.2,22.42,22.29,22.35,22.38,22.35,22.38,22.6,22.58,22.6,22.92,22.7,22.74,23.03,22.92,23.01,23.22,23.17,23.31,23.19,23.08,23.08,22.97,23.08,23.37,23.03,23.08,23.08,22.9,23.06,22.85,23.64,23.73,23.96,24.11,24.4,24.31,24.51,24.58,24.58,24.6,24.76,24.89,25.07,25.0,25.09,25.09,25.14,25.07,25.42,25.25,25.18,25.18,25.31,25.27,25.2,25.29,25.25,25.27,25.27,25.31,25.2,25.36,25.49,25.31,25.31,25.31,25.22,25.42,25.33,25.25,25.38,25.31,25.45,25.4,25.18,25.14,25.22,25.14,25.18,25.16,25.33,25.09,25.22,25.09,25.2,25.16,24.96,24.89,24.69,24.63,24.54,24.58,24.47,24.22,24.11,24.14,24.16,24.09,24.22,24.09,24.11,24.0,24.0,24.0,23.69,23.49,23.24,23.17,23.08,22.99,23.06,23.15,23.31,23.26,23.37,23.42,23.37,23.42,23.42,23.4,23.37,23.31,23.31,23.28,23.31,23.26,23.46,23.62,23.35,23.64,23.46,23.58,23.37,23.44,23.51,23.49,23.42,23.37,23.4,23.26,23.31,23.44,23.42,23.42,23.42,23.35,23.28,23.24,23.22,23.19,23.12,22.94,23.35,23.15,22.94,22.94,23.01,23.24,23.08,23.1,23.17,23.26,23.31,23.22,23.4,23.46,23.4,23.49,23.4,23.44,23.35,23.46,23.42,23.4,23.46,23.37,23.42,23.44,23.49,23.46,23.31,23.28,23.22,23.24,23.35,23.33,23.24,23.26,23.19,23.15,22.81,22.9,22.58,22.38,22.38,22.4,22.58,22.67,23.01,23.06,23.06,22.97,23.15,23.19,23.19,23.15,23.01,23.15,23.22,23.06,23.24,23.28,23.26,23.17,23.17,23.08,23.08,23.15,23.01,23.03,23.06,23.1,23.17,23.08,23.19,23.08,22.99,23.03,23.17,23.03,23.24,23.06,23.15,23.37,23.24,23.12,23.17,23.22,23.08,23.15,23.1,23.03,23.17,23.08,23.26,22.99,23.15,23.22,23.31,23.1,23.06,22.97,23.03,23.03,22.97,22.99,23.01,22.92,22.94,22.83,22.92,23.06,22.92,22.83,22.9,22.9,22.85,22.92,22.79,22.9,22.63,22.83,22.81,22.7,22.42,22.1,22.06,22.22,22.31,22.29,22.51,22.35,22.65,22.72,22.56,22.6,22.72,22.49,22.58,22.6,22.56,22.47,22.54,22.67,22.51,22.49,22.54,22.63,22.49,22.63,22.47,22.4,22.49,22.49,22.54,22.58,22.63,22.42,22.49,22.56,22.35,22.42,22.51,22.45,22.56,22.56,22.4,22.33,22.35,22.54,22.33,22.24,22.38,22.38,22.22,22.26,22.35,22.33,22.54,22.7,22.45,22.88,22.79,22.79,23.03,23.01,22.88,22.97,23.17,22.97,23.31,23.1,23.17,23.28,23.22,22.99,23.01,22.83,22.94,23.17,23.46,23.78,23.98,24.29,24.4,24.36,24.54,24.49,24.6,24.69,24.74,24.96,25.09,24.96,24.98,24.98,25.05,25.05,25.27,25.27,25.16,25.31,25.29,25.31,25.25,25.29,25.29,25.22,25.38,25.36,25.31,25.29,25.27,25.31,25.29,25.29,25.27,25.47,25.36,25.29,25.36,25.25,25.31,25.31,25.25,25.14,25.16,25.16,25.31,25.11,25.0,25.03,25.09,25.0,25.09,25.07,25.0,24.87,24.65,24.58,24.58,24.38,24.43,24.29,24.05,24.14,24.14,24.05,24.09,23.93,24.07,24.09,23.98,23.71,23.4,23.17,23.17,23.17,23.06,23.19,23.15,23.12,23.33,23.15,23.53,23.42,23.26,23.4,23.35,23.19,23.24,23.28,23.28,23.42,23.33,23.28,23.49,23.37,23.4,23.46,23.51,23.46,23.46,23.33,23.55,23.55,23.49,23.4,23.4,23.17,23.22,23.44,23.35,23.42,23.4,23.28,23.35,23.26,23.28,23.37,23.26,23.26,23.12,23.17,23.06,22.99,22.99,23.01,23.01,22.99,23.1,23.1,23.15,23.22,23.24,23.31,23.26,23.31,23.46,23.35,23.46,23.35,23.4,23.37,23.49,23.49,23.46,23.46,23.35,23.28,23.19,23.4,23.19,23.17,23.12,23.28,23.15,23.15,23.08,23.01,23.03,22.88,22.54,22.45,22.35,22.54,22.76,22.85,22.99,23.19,23.24,23.26,23.19,23.24,23.15,23.22,23.15,23.44,23.26,23.08,23.28,23.28,23.24,23.1,23.06,23.06,23.06,23.12,23.08,23.03,23.03,23.1,23.15,23.12,23.1,22.97,23.06,23.06,23.15,23.17,23.28,23.08,23.03,23.15,23.19,23.37,23.12,23.12,23.17,22.94,23.17,23.03,23.01,23.06,23.17,23.03,23.12,23.08,22.97,23.03,23.03,23.06,23.1,22.99,23.03,22.99,23.1,22.97,22.88,22.88,22.81,22.99,22.92,22.67,22.92,22.79,22.9,22.97,22.88,22.85,22.83,22.9,22.6,22.49,22.15,22.06,21.99,22.2,22.33,22.26,22.58,22.54,22.45,22.56,22.47,22.49,22.45,22.49,22.49,22.58,22.56,22.51,22.47,22.63,22.67,22.45,22.54,22.47,22.45,22.65,22.47,22.45,22.63,22.35,22.7,22.51,22.79,22.45,22.49,22.51,22.42,22.31,22.56,22.4,22.65,22.63,22.45,22.49,22.45,22.47,22.33,22.31,22.56,22.72,22.35,22.13,22.08,22.24,22.24,22.49,22.51,22.6,22.65,22.72,22.83,23.06,23.08,23.1,22.92,23.01,23.28,23.17,22.92,23.15,23.1,22.9,23.03,22.85,22.85,23.24,23.37,23.62,24.02,24.27,24.36,24.34,24.34,24.65,24.58,24.69,24.78,24.83,24.91,25.03,25.0,25.07,25.11,25.0,25.16,25.27,25.25,25.22,25.38,25.18,25.2,25.2,25.33,25.31,25.25,25.31,25.29,25.27,25.38,25.38,25.36,25.16,25.05,25.31,25.14,25.38,25.18,25.22,25.2,25.22,25.2,25.29,25.4,25.11,25.09,25.25,25.18,24.87,25.22,25.07,25.22,24.89,24.83,24.78,24.65,24.78,24.69,24.38,24.45,24.16,24.18,24.07,24.22,24.14,24.22,24.14,24.07,24.07,24.0,23.66,23.53,23.28,23.17,23.31,23.1,23.08,23.19,23.19,23.37,23.33,23.35,23.42,23.33,23.24,23.46,23.19,23.24,23.44,23.28,23.35,23.26,23.51,23.33,23.42,23.31,23.28,23.64,23.49,23.53,23.4,23.46,23.44,23.37,23.4,23.46,23.4,23.31,23.31,23.35,23.4,23.42,23.37,23.46,23.37,23.42,23.51,23.46,23.46,23.44,23.31,23.22,23.22,23.17,23.1,23.1,23.01,22.99,23.01,23.17,23.01,23.1,23.22,23.03,23.08,23.15,23.31,23.33,23.22,23.31,23.31,23.44,23.4,23.46,23.22,23.08,23.26,23.17,23.17,23.28,23.28,23.28,23.24,23.15,23.22,23.12,23.15,22.79,22.74,22.6,22.49,22.49,22.58,22.74,23.01,23.08,23.06,23.15,23.15,23.15,23.17,23.15,23.17,23.4,23.28,23.26,23.17,23.06,23.1,23.15,23.24,23.12,23.08,23.06,23.03,22.99,22.81,23.15,23.03,23.17,23.17,22.99,23.03,23.12,23.03,23.15,23.19,23.19,23.08,23.22,22.97,23.08,23.03,23.15,23.15,23.06,23.03,23.1,23.19,23.06,23.12,22.94,23.06,23.24,23.12,23.08,22.88,23.08,23.15,23.03,23.08,23.08,22.85,22.92,22.94,22.74,22.72,22.85,22.83,22.9,22.76,22.85,22.72,22.83,22.79,23.12,22.76,22.83,22.81,22.45,22.17,21.99,22.04,22.04,22.29,22.45,22.38,22.51,22.51,22.47,22.74,22.4,22.54,22.6,22.56,22.56,22.56,22.51,22.54,22.35,22.54,22.74,22.65,22.51,22.51,22.51,22.56,22.58,22.38,22.47,22.54,22.58,22.47,22.42,22.63,22.49,22.49,22.65,22.45,22.42,22.35,22.47,22.35,22.54,22.4,22.29,22.29,22.38,22.45,22.83,22.63,22.65,22.49,22.38,22.45,22.26,22.45,22.42,22.54,22.51,22.76,22.79,22.99,23.12,22.94,22.99,23.12,23.17,23.06,23.22,23.12,23.08,22.97,23.06,22.94,23.06,23.24,23.64,23.82,23.96,24.02,24.4,24.54,24.67,24.54,24.45,24.69,24.8,24.8,24.83,25.09,25.05,25.11,25.22,25.11,25.2,25.2,25.31,25.07,25.29,25.25,25.31,25.2,25.25,25.29,25.2,25.29,25.27,25.33,25.47,25.33,25.47,25.29,25.27,25.33,25.45,25.31,25.18,25.38,25.42,25.27,25.33,25.38,25.45,25.31,25.33,25.22,25.14,25.18,25.11,25.07,25.14,24.94,24.91,24.87,24.74,24.78,24.67,24.49,24.49,24.11,24.22,24.22,24.18,24.07,24.2,24.05,24.0,23.98,23.84,23.62,23.46,23.35,23.1,23.19,23.01,23.17,23.24,23.26,23.26,23.44,23.35,23.62,23.37,23.55,23.49,23.4,23.42,23.53,23.46,23.51,23.28,23.51,23.4,23.37,23.62,23.35,23.51,23.53,23.46,23.44,23.44,23.51,23.37,23.51,23.33,23.33,23.37,23.53,23.42,23.44,23.55,23.53,23.51,23.42,23.53,23.6,23.53,23.42,23.42,23.46,23.42,23.35,23.35,23.28,23.26,23.22,23.03,23.06,23.12,22.81,23.12,23.1,23.06,23.06,23.1,23.15,23.17,23.28,23.37,23.33,23.42,23.51,23.42,23.42,23.31,23.24,23.24,23.35,23.35,23.49,23.33,23.33,23.26,23.19,23.06,23.17,22.81,22.7,22.56,22.51,22.51,22.79,22.85,23.17,23.17,23.17,23.31,23.12,23.12,23.28,23.35,23.28,23.19,23.31,23.4,23.17,23.08,23.15,23.17,23.19,23.19,23.12,23.08,22.97,23.08,23.08,23.15,23.1,23.28,23.06,23.1,23.08,23.15,23.15,23.08,23.17,23.15,23.22,23.31,23.08,23.17,23.15,23.08,23.03,22.85,23.17,23.12,23.28,23.06,23.12,23.12,23.08,23.15,23.1,23.1,23.03,23.12,23.15,22.97,23.12,23.1,22.92,22.97,23.08,22.92,22.85,23.01,22.72,23.03,22.81,22.58,22.81,22.72,22.79,22.83,22.83,22.94,22.74,22.45,22.31,22.06,21.97,22.26,22.42,22.49,22.35,22.45,22.58,22.47,22.7,22.51,22.56,22.76,22.49,22.58,22.63,22.63,22.51,22.54,22.6,22.76,22.74,22.45,22.56,22.74,22.58,22.65,22.58,22.54,22.6,22.81,22.58,22.63,22.67,22.58,22.67,22.45,22.49,22.38,22.54,22.67,22.47,22.65,22.45,22.47,22.54,22.45,22.35,22.67,22.72,22.65,22.6,22.54,22.4,22.35,22.4,22.15,22.15,22.17,22.63,22.54,22.88,23.19,23.1,23.03,23.28,23.22,23.1,23.17,23.12,23.12,23.03,23.03,22.97,23.24,23.22,23.44,23.84,23.96,24.09,24.49,24.47,24.6,24.58,24.71,24.69,24.76,24.96,24.96,24.94,24.85,25.09,25.18,25.18,25.18,25.4,25.18,25.31,25.36,25.29,25.16,25.2,25.22,25.22,25.31,25.36,25.27,25.31,25.42,25.38,25.36,25.36,25.33,25.36,25.33,25.29,25.27,25.31,25.33,25.29,25.25,25.22,25.25,25.25,25.22,25.16,25.22,25.07,25.14,25.14,25.09,25.09,24.96,24.8,24.71,24.74,24.6,24.29,24.36,24.22,24.27,24.27,24.18,24.18,24.0,24.16,24.02,24.09,23.69,23.51,23.33,23.31,23.15,23.1,22.92,23.22,23.22,23.4,23.31,23.17,23.4,23.42,23.28,23.33,23.4,23.4,23.4,23.37,23.28,23.51,23.22,23.44,23.51,23.53,23.42,23.58,23.46,23.33,23.46,23.35,23.44,23.44,23.4,23.53,23.28,23.26,23.37,23.44,23.46,23.4,23.55,23.58,23.44,23.4,23.33,23.37,23.49,23.4,23.66,23.53,23.44,23.37,23.37,23.4,23.24,23.28,23.17,23.15,23.26,23.06,22.92,22.94,22.97,22.88,23.03,22.92,23.01,23.12,23.22,23.35,23.15,23.49,23.46,23.42,23.26,23.4,23.4,23.42,23.33,23.37,23.35,23.22,23.35,23.17,23.15,23.01,22.67,22.54,22.56,22.47,22.7,22.85,23.12,23.12,23.28,23.08,23.26,23.28,23.24,23.22,23.15,23.1,23.31,23.1,23.28,23.28,23.12,23.19,23.1,23.12,23.31,23.28,22.97,23.22,23.08,23.17,23.12,23.03,23.17,22.97,23.19,22.99,23.22,23.1,23.08,23.06,23.17,23.22,23.22,23.1,23.12,23.19,23.4,23.12,23.06,23.12,22.92,22.88,23.15,23.12,22.99,23.08,23.33,23.1,23.17,23.06,23.12,23.08,22.81,22.97,22.94,23.1,22.94,22.99,22.83,22.92,22.97,22.97,22.9,22.94,22.81,22.83,22.9,22.85,22.67,22.7,22.7,22.79,22.38,22.33,22.06,22.15,22.51,22.33,22.42,22.51,22.54,22.6,22.49,22.63,22.72,22.65,22.67,22.51,22.49,22.6,22.51,22.56,22.6,22.6,22.7,22.58,22.51,22.45,22.51,22.7,22.51,22.65,22.6,22.67,22.74,22.35,22.65,22.63,22.58,22.63,22.4,22.38,22.31,22.42,22.51,22.35,22.56,22.42,22.35,22.42,22.4,22.42,22.88,22.9,22.83,22.7,22.65,22.58,22.58,22.33,22.17,22.24,22.15,22.29,22.33,22.54,22.88,22.92,22.85,23.08,23.19,23.19,23.24,23.01,23.1,22.79,22.88,22.99,23.06,23.42,23.4,23.82,23.55,23.82,24.09,24.18,24.38,24.67,24.6,24.76,24.67,24.96,24.89,25.03,25.05,25.05,25.16,25.14,25.18,25.25,25.22,25.29,25.33,25.42,25.25,25.25,25.22,25.49,25.27,25.27,25.2,25.29,25.4,25.47,25.47,25.29,25.27,25.51,25.53,25.33,25.33,25.29,25.18,25.31,25.25,25.25,25.18,25.29,25.05,25.11,25.14,25.18,25.22,25.18,25.16,25.03,24.89,24.8,24.65,24.74,24.6,24.45,24.38,24.14,24.07,24.2,24.16,24.02,24.07,24.29,23.96,23.89,23.73,23.53,23.33,23.24,23.06,23.06,23.01,23.12,23.33,23.19,23.26,23.26,23.37,23.33,23.26,23.33,23.4,23.42,23.35,23.44,23.33,23.49,23.28,23.44,23.58,23.4,23.31,23.51,23.49,23.46,23.42,23.35,23.37,23.33,23.49,23.42,23.28,23.28,23.44,23.46,23.51,23.49,23.35,23.46,23.44,23.44,23.33,23.35,23.44,23.49,23.51,23.49,23.35,23.37,23.51,23.55,23.42,23.33,23.22,23.22,23.26,23.01,23.1,23.06,22.9,22.7,22.7,22.72,22.99,22.92,23.08,23.12,23.19,23.35,23.37,23.51,23.33,23.28,23.37,23.33,23.44,23.4,23.26,23.26,23.28,22.88,23.15,22.9,22.45,22.47,22.58,22.76,22.7,23.1,22.97,23.1,23.19,23.17,23.28,23.17,23.33,23.26,23.28,23.19,23.01,23.17,23.28,23.26,23.24,22.99,23.15,23.15,23.08,23.06,23.08,23.06,22.99,23.03,23.24,23.01,23.01,23.01,23.01,23.17,23.08,23.03,23.06,23.03,23.12,23.19,23.15,23.01,23.03,23.15,23.24,23.19,23.08,23.08,23.12,23.08,23.03,23.03,23.03,23.06,23.15,22.99,23.06,22.97,23.1,23.01,22.94,23.01,22.9,22.81,23.01,22.94,23.01,22.83,22.83,22.83,22.85,22.88,22.94,22.88,22.92,22.94,22.81,22.85,22.76,22.54,22.17,21.97,21.99,22.06,22.49,22.4,22.56,22.42,22.65,22.63,22.51,22.51,22.58,22.72,22.6,22.45,22.49,22.54,22.49,22.54,22.54,22.47,22.56,22.63,22.51,22.45,22.54,22.74,22.56,22.47,22.38,22.54,22.72,22.51,22.56,22.63,22.58,22.47,22.35,22.49,22.6,22.42,22.45,22.04,22.26,22.35,22.45,22.31,22.24,22.26,22.83,22.85,22.81,22.74,22.81,22.81,22.67,22.51,22.06,22.1,22.08,22.35,22.1,22.29,22.4,22.56,22.7,22.85,23.06,22.72,23.03,23.19,22.99,22.9,22.9,22.9,23.01,23.01,23.22,23.4,23.51,23.78,24.14,24.16,24.43,24.47,24.56,24.58,24.8,24.91,24.87,24.96,24.83,25.18,25.07,25.14,25.03,25.29,25.11,25.31,25.2,25.29,25.07,25.03,25.11,25.09,25.18,25.18,25.31,25.18,25.31,25.38,25.31,25.29,25.14,25.18,25.25,25.03,25.27,25.11,25.25,25.11,25.31,25.2,25.36,25.18,25.0,25.22,25.22,25.11,25.07,25.22,25.25,24.85,24.83,24.67,24.58,24.47,24.38,24.27,24.34,24.2,24.11,24.38,24.02,23.93,23.98,24.11,23.84,23.75,23.66,23.46,23.17,23.1,23.08,23.22,23.01,23.06,23.31,23.24,23.51,23.31,23.35,23.49,23.35,23.33,23.35,23.33,23.33,23.37,23.33,23.44,23.08,23.19,23.49,23.6,23.33,23.42,23.58,23.46,23.51,23.15,23.53,23.49,23.22,23.33,23.31,23.33,23.44,23.6,23.28,23.44,23.37,23.35,23.44,23.12,23.35,23.4,23.55,23.49,23.66,23.42,23.37,23.53,23.44,23.69,23.4,23.51,23.51,23.37,23.28,23.24,23.33,23.28,22.94,22.74,22.6,22.94,22.76,22.9,23.01,22.99,23.01,23.1,23.24,23.19,23.22,23.12,23.24,23.33,23.17,23.28,23.33,23.15,23.22,22.9,22.85,22.76,22.51,22.45,22.31,22.56,22.83,23.03,22.99,23.03,22.99,23.22,23.17,22.92,23.15,23.12,23.03,23.19,23.22,23.22,23.24,23.15,23.12,22.97,22.97,23.06,23.06,23.08,23.06,23.12,22.9,23.22,23.31,23.1,23.12,22.97,23.03,23.06,23.06,23.1,23.01,23.24,23.06,23.15,23.03,23.03,23.06,22.99,23.12,22.97,23.01,23.12,23.17,23.06,22.94,23.08,23.01,22.9,23.12,23.1,23.1,23.01,23.1,23.06,22.97,22.94,22.94,23.01,22.9,22.92,22.88,22.74,22.76,22.99,23.03,22.92,22.83,22.76,22.79,22.88,22.9,22.56,22.6,22.49,21.99,22.15,22.1,22.15,22.42,22.42,22.49,22.42,22.74,22.6,22.49,22.49,22.51,22.65,22.56,22.49,22.42,22.49,22.47,22.76,22.49,22.4,22.7,22.83,22.49,22.38,22.49,22.6,22.45,22.38,22.51,22.51,22.67,22.51,22.54,22.63,22.56,22.56,22.22,22.47,22.49,22.17,22.49,22.29,22.31,22.31,22.35,22.29,22.04,22.15,23.12,22.83,22.9,22.83,22.74,22.67,22.67,22.7,22.2,22.42,22.45,22.38,22.38,22.15,22.47,22.58,22.45,22.6,23.06,22.97,22.99,23.17,22.79,22.94,22.65,22.79,23.08,23.1,23.44,23.53,23.69,23.8,24.0,24.29,24.27,24.6,24.71,24.63,24.83,24.89,24.63,24.76,25.0,25.16,25.03,25.07,25.14,25.11,25.14,24.96,25.14,25.16,25.27,25.2,25.18,25.14,25.16,25.2,25.25,25.22,25.42,25.16,25.22,25.22,25.2,25.22,25.36,25.31,25.14,25.14,25.14,25.18,25.22,25.45,25.25,25.25,25.16,25.29,25.09,25.16,25.16,25.18,25.14,24.83,24.78,24.87,24.6,24.6,24.47,24.47,24.36,24.14,24.22,24.22,24.11,24.22,24.18,23.93,23.87,23.69,23.64,23.4,23.17,23.03,22.97,23.03,22.99,23.01,23.28,23.33,23.37,23.35,23.35,23.33,23.4,23.35,23.33,23.33,23.28,23.28,23.33,23.51,23.33,23.35,23.24,23.53,23.4,23.35,23.53,23.46,23.31,23.42,23.53,23.46,23.26,23.33,23.28,23.31,23.49,23.26,23.4,23.64,23.44,23.42,23.4,23.35,23.46,23.42,23.44,23.55,23.58,23.49,23.4,23.37,23.42,23.44,23.62,23.46,23.49,23.44,23.42,23.37,23.24,23.24,23.24,23.03,22.83,22.76,22.9,22.76,22.76,22.81,22.81,22.85,22.92,22.97,23.03,23.15,23.15,23.19,23.26,23.24,23.24,23.22,23.15,22.92,22.81,22.72,22.47,22.4,22.51,22.99,22.94,22.9,22.9,23.06,23.15,23.06,23.24,23.22,23.17,23.22,23.4,23.19,23.31,23.19,23.35,23.1,23.15,23.1,23.12,23.19,23.01,23.15,23.1,23.06,22.9,23.17,23.08,23.06,23.15,23.01,23.1,23.06,23.06,23.06,23.15,23.15,23.28,23.24,23.24,23.15,23.19,23.17,23.06,23.08,23.1,23.08,23.01,23.1,23.06,23.08,23.1,23.12,23.12,23.12,22.99,23.17,23.12,22.99,23.06,23.06,23.01,23.03,22.99,23.06,22.88,22.79,22.76,22.99,23.01,23.01,22.79,22.92,22.81,22.85,22.56,22.63,22.31,22.17,21.94,22.26,22.31,22.13,22.42,22.15,22.6,22.47,22.58,22.65,22.6,22.72,22.67,22.63,22.56,22.47,22.6,22.51,22.45,22.67,22.65,22.65,22.65,22.76,22.47,22.4,22.42,22.51,22.47,22.42,22.35,22.49,22.65,22.6,22.54,22.54,22.6,22.6,22.31,22.54,22.49,22.4,22.45,22.38,22.47,22.45,22.42,22.15,22.13,22.04,22.99,22.9,22.79,22.85,22.85,22.81,22.79,22.9,22.33,22.56,22.58,22.67,22.49,22.35,22.47,22.31,22.33,22.45,22.7,22.67,22.88,22.76,22.67,22.97,22.7,22.94,23.26,23.1,23.37,23.62,23.64,23.73,23.89,24.02,24.34,24.58,24.56,24.74,24.8,24.6,24.71,24.91,24.89,25.03,25.18,24.98,25.14,25.11,24.91,25.14,25.31,25.09,25.18,25.09,25.11,25.22,25.27,25.31,25.27,25.29,25.27,25.27,25.22,25.18,25.2,25.18,25.09,25.16,25.42,25.09,25.14,25.31,25.27,25.18,25.11,25.22,25.05,25.09,25.22,25.29,25.16,25.14,25.09,24.96,24.67,24.65,24.69,24.56,24.56,24.34,24.16,24.2,24.11,24.2,24.25,24.2,24.14,23.87,23.91,23.58,23.78,23.35,23.12,23.12,22.99,23.1,23.24,23.31,23.35,23.33,23.28,23.26,23.19,23.51,23.31,23.4,23.19,23.22,23.37,23.4,23.31,23.35,23.12,23.28,23.35,23.42,23.44,23.42,23.53,23.37,23.28,23.4,23.51,23.26,23.42,23.44,23.44,23.31,23.33,23.51,23.49,23.42,23.44,23.42,23.46,23.33,23.46,23.42,23.42,23.51,23.58,23.44,23.49,23.62,23.46,23.49,23.55,23.46,23.37,23.53,23.73,23.4,23.35,23.33,23.28,23.19,22.92,23.01,22.99,22.79,22.88,22.65,22.54,22.74,22.67,22.85,22.85,22.83,22.9,22.97,23.1,23.19,23.01,23.06,23.12,22.9,22.49,22.54,22.33,22.47,22.79,23.1,22.99,23.06,23.17,23.24,23.06,23.22,23.12,23.06,23.17,23.26,23.26,23.17,23.28,23.35,23.35,23.12,23.12,23.22,23.15,23.06,23.26,23.24,23.03,22.94,22.99,23.03,22.92,22.97,22.97,23.06,23.06,23.26,23.24,22.97,23.03,23.12,23.12,23.1,23.17,23.06,23.15,23.03,23.12,23.1,23.08,23.12,23.12,23.15,23.08,23.03,23.08,23.12,23.08,22.99,22.97,23.15,23.08,23.17,22.94,23.17,22.97,22.99,22.9,23.03,22.9,23.03,22.88,22.85,22.79,22.99,22.83,22.92,22.88,22.83,22.67,22.45,22.31,22.17,22.08,22.22,22.35,22.38,22.49,22.54,22.56,22.54,22.65,22.67,22.74,22.56,22.58,22.65,22.65,22.45,22.38,22.38,22.42,22.56,22.56,22.35,22.38,22.45,22.35,22.47,22.49,22.56,22.47,22.35,22.4,22.4,22.54,22.47,22.56,22.6,22.47,22.47,22.31,22.54,22.47,22.24,22.31,22.33,22.6,22.45,22.49,22.2,22.26,22.13,22.9,22.99,22.92,22.94,22.72,22.76,22.74,23.06,22.56,22.83,22.65,22.58,22.58,22.54,22.26,22.49,22.33,22.22,22.38,22.38,22.56,22.72,22.79,22.81,22.58,22.81,23.31,23.12,23.24,23.33,23.55,23.6,23.84,23.98,24.34,24.47,24.56,24.78,24.63,24.78,24.83,24.94,24.94,24.96,24.94,25.0,24.91,25.11,25.05,25.05,25.25,25.25,24.96,25.07,25.07,25.22,25.31,25.25,25.14,24.98,25.4,25.22,25.2,25.33,25.16,25.33,25.16,25.11,25.14,25.16,25.18,25.05,25.29,25.11,25.18,25.16,25.16,25.22,25.22,25.05,24.96,24.98,24.85,24.83,24.65,24.69,24.71,24.51,24.54,24.25,24.22,24.16,24.05,24.09,24.22,24.16,24.16,23.96,23.87,23.42,23.55,23.17,23.12,23.1,23.12,23.22,23.26,23.17,23.24,23.26,23.24,23.37,23.28,23.37,23.19,23.35,23.22,23.19,23.26,23.24,23.42,23.44,23.19,23.24,23.49,23.49,23.4,23.37,23.49,23.46,23.37,23.42,23.35,23.35,23.37,23.51,23.46,23.42,23.4,23.31,23.33,23.53,23.44,23.35,23.4,23.28,23.53,23.4,23.42,23.49,23.49,23.49,23.6,23.64,23.33,23.55,23.62,23.55,23.44,23.49,23.51,23.53,23.33,23.53,23.17,23.28,23.15,23.17,22.92,23.06,22.97,22.92,22.7,22.88,22.74,22.79,22.74,22.65,22.74,22.92,22.99,22.76,22.94,22.99,23.08,22.74,22.35,22.42,22.47,22.51,22.92,22.99,23.08,23.19,23.15,23.15,23.22,23.12,23.31,23.08,23.1,23.26,23.31,23.12,23.1,23.22,23.17,23.28,23.03,23.19,23.15,23.19,23.15,23.06,23.06,23.1,23.01,23.12,23.15,22.99,22.94,23.06,23.01,23.01,23.19,23.01,23.08,23.26,23.28,23.17,23.15,23.24,23.06,23.01,22.97,23.01,23.19,23.24,23.15,23.08,23.12,22.99,22.97,23.06,23.08,23.03,22.94,23.06,23.01,22.92,23.15,22.94,23.08,22.88,22.9,22.99,22.92,23.01,22.81,22.9,22.9,22.81,22.85,22.85,23.01,22.76,22.6,22.24,22.29,22.15,22.01,22.35,22.31,22.24,22.54,22.54,22.56,22.51,22.65,22.63,22.33,22.42,22.54,22.49,22.56,22.45,22.45,22.51,22.49,22.58,22.58,22.45,22.33,22.42,22.4,22.24,22.49,22.42,22.42,22.26,22.38,22.42,22.33,22.35,22.51,22.58,22.33,22.38,22.29,22.33,22.45,22.17,22.31,22.2,22.33,22.47,22.33,22.35,22.13,22.33,22.99,23.06,22.97,22.92,22.83,22.97,22.97,23.17,22.63,22.81,22.88,22.79,22.81,22.9,22.65,22.72,22.6,22.56,22.49,22.6,22.47,22.58,22.49,22.76,22.92,22.97,23.33,23.03,23.28,23.42,23.6,23.71,23.87,23.78,24.2,24.45,24.65,24.85,24.63,24.78,24.91,24.91,24.91,25.09,24.91,24.94,24.94,25.31,25.07,24.96,25.22,25.29,25.16,25.05,25.22,25.45,25.45,25.33,25.22,25.29,25.33,25.18,25.14,25.2,25.22,25.16,25.29,25.2,25.25,25.22,25.2,25.4,25.38,25.27,25.22,25.18,25.27,25.25,25.2,25.0,25.11,25.16,25.11,24.83,24.8,24.83,24.78,24.51,24.43,24.38,24.36,24.31,24.11,24.2,24.27,24.11,24.11,24.0,23.78,23.49,23.46,23.35,23.12,23.12,23.17,23.26,23.22,23.17,23.33,23.4,23.53,23.37,23.37,23.42,23.42,23.44,23.33,23.37,23.26,23.24,23.42,23.31,23.33,23.22,23.46,23.53,23.46,23.62,23.55,23.53,23.75,23.55,23.62,23.42,23.35,23.44,23.51,23.49,23.53,23.6,23.49,23.44,23.51,23.44,23.4,23.46,23.53,23.51,23.35,23.51,23.66,23.42,23.49,23.49,23.51,23.66,23.62,23.37,23.55,23.55,23.53,23.64,23.58,23.49,23.49,23.42,23.26,23.31,23.17,23.28,23.1,23.15,23.03,22.88,22.94,22.74,22.76,22.63,22.65,22.72,22.74,22.83,22.83,22.9,22.79,22.65,22.38,22.4,22.65,22.7,22.92,23.15,23.26,23.12,23.15,23.1,23.24,23.15,23.17,23.19,23.24,23.31,23.22,23.24,23.28,23.17,23.4,23.17,23.22,23.26,23.15,23.24,23.26,23.12,23.15,23.08,22.97,23.06,23.08,23.19,23.08,23.15,23.26,23.06,23.19,23.15,23.12,23.17,23.15,23.19,23.24,23.03,23.15,23.22,23.33,23.12,23.19,23.28,23.19,23.06,23.06,23.24,23.12,23.1,23.17,23.01,23.01,22.83,22.88,23.03,23.17,23.17,22.97,22.97,22.9,22.92,22.88,22.72,23.03,22.92,22.97,22.9,22.88,22.9,22.94,22.6,22.51,22.31,22.15,22.2,22.38,22.42,22.35,22.42,22.88,22.56,22.65,22.56,22.74,22.88,22.63,22.63,22.56,22.65,22.76,22.58,22.47,22.49,22.51,22.63,22.49,22.51,22.42,22.4,22.35,22.35,22.31,22.42,22.24,22.17,22.35,22.35,22.54,22.51,22.54,22.4,22.58,22.42,22.51,22.65,22.31,22.33,22.47,22.2,22.45,22.29,22.45,22.22,22.31,22.29,22.85,23.03,22.9,22.85,22.7,22.79,22.74,22.99,22.7,22.79,22.74,22.79,22.81,22.65,22.72,22.67,22.72,22.42,22.6,22.45,22.26,22.33,22.42,22.58,22.72,22.99,22.92,22.94,23.1,23.26,23.42,23.37,23.58,23.78,24.02,24.27,24.22,24.45,24.45,24.71,24.69,24.71,24.76,24.83,24.89,24.91,24.91,25.03,25.07,24.74,25.05,25.16,25.03,25.09,25.03,24.89,25.07,25.16,25.2,25.16,25.27,25.22,25.03,25.07,25.16,25.2,25.09,25.16,25.14,25.27,25.18,25.05,25.36,25.25,25.03,25.09,25.16,25.05,25.07,24.98,25.05,25.05,24.96,24.63,24.78,24.51,24.47,24.38,24.38,24.22,24.29,23.96,24.07,24.18,24.22,23.96,23.89,23.98,23.55,23.4,23.24,23.17,23.19,22.97,23.15,23.17,23.15,23.19,23.19,23.26,23.37,23.22,23.24,23.33,23.31,23.24,23.31,23.17,23.15,23.19,23.19,23.28,23.17,23.33,23.17,23.46,23.37,23.58,23.4,23.35,23.53,23.37,23.42,23.31,23.4,23.35,23.46,23.22,23.28,23.44,23.46,23.46,23.53,23.44,23.35,23.44,23.33,23.33,23.4,23.28,23.42,23.42,23.51,23.42,23.46,23.53,23.58,23.55,23.53,23.49,23.49,23.55,23.49,23.42,23.35,23.4,23.28,23.15,23.22,23.12,23.15,23.15,22.83,23.08,22.99,22.7,22.72,22.65,22.49,22.51,22.42,22.56,22.6,22.63,22.58,22.42,22.35,22.38,22.6,22.63,22.92,23.1,23.12,23.12,23.08,23.1,23.26,23.01,23.08,23.12,23.31,23.24,23.33,23.08,23.15,23.12,23.08,22.97,23.08,23.15,23.03,23.17,22.99,22.97,23.12,23.01,23.08,23.08,23.03,23.28,23.12,22.92,23.15,23.17,23.08,23.08,22.99,22.92,23.1,23.24,23.12,23.01,23.12,23.03,23.08,23.15,23.1,23.08,23.03,23.03,23.1,23.17,23.08,23.08,23.12,23.06,22.97,22.94,22.9,23.12,22.97,22.99,22.81,22.88,22.85,22.79,22.88,22.72,22.83,22.9,22.83,22.85,22.79,22.74,22.79,22.6,22.38,22.08,22.2,22.29,22.38,22.45,22.47,22.54,22.74,22.6,22.72,22.45,22.51,22.54,22.4,22.51,22.49,22.33,22.49,22.49,22.42,22.4,22.42,22.31,22.2,22.35,22.38,22.4,22.1,22.24,22.26,22.17,22.17,22.04,22.08,22.15,22.31,22.24,22.24,22.2,22.24,22.29,22.33,22.31,22.35,22.13,22.22,22.24,22.31,22.15,22.29,22.26,22.24,22.35,22.88,23.1,22.97,22.67,22.74,22.85,22.83,22.9,22.81,22.76,22.81,22.85,22.9,22.97,22.88,22.81,22.81,22.67,22.51,22.51,22.47,22.35,22.35,22.6,22.65,22.9,23.03,22.81,23.12,23.24,23.31,23.46,23.6,23.73,23.93,24.27,24.36,24.51,24.51,24.51,24.49,24.74,24.78,24.83,24.94,24.78,24.85,25.07,24.89,24.89,25.0,24.98,24.96,25.05,25.07,25.2,25.09,25.22,25.05,25.05,25.2,25.16,25.09,25.05,25.16,25.09,25.05,25.16,25.14,25.2,25.18,25.09,25.25,25.11,25.18,25.16,25.36,25.16,25.2,24.89,24.94,25.03,24.87,24.71,24.78,24.65,24.6,24.51,24.27,24.49,24.27,24.25,24.09,24.18,24.09,24.09,24.16,23.84,23.55,23.31,23.22,23.35,23.03,23.03,23.08,23.22,23.22,23.22,23.28,23.26,23.33,23.17,23.33,23.4,23.24,23.19,23.31,23.17,23.17,23.28,23.33,23.22,23.26,23.24,23.42,23.37,23.4,23.46,23.33,23.42,23.4,23.42,23.42,23.44,23.28,23.49,23.37,23.22,23.22,23.35,23.33,23.46,23.49,23.42,23.35,23.28,23.49,23.53,23.49,23.49,23.4,23.51,23.42,23.44,23.33,23.46,23.46,23.53,23.42,23.44,23.64,23.42,23.46,23.4,23.35,23.26,23.31,23.26,23.22,23.33,23.33,23.12,23.06,23.22,22.92,22.79,22.88,22.79,22.7,22.65,22.49,22.51,22.47,22.56,22.26,22.31,22.22,22.31,22.42,22.58,22.85,23.08,23.19,23.19,23.15,23.06,22.99,23.24,23.17,23.1,23.24,23.17,23.08,23.1,23.26,23.17,23.15,23.06,23.1,23.12,22.92,22.99,23.06,23.03,23.17,23.1,23.08,23.19,23.03,23.01,22.9,23.12,23.1,23.17,23.12,23.03,23.17,23.06,22.94,22.99,22.99,23.1,23.06,23.17,23.15,23.01,23.06,23.12,23.1,23.03,22.88,23.19,23.1,23.12,22.99,23.1,23.17,22.99,22.94,22.83,22.99,22.94,22.94,22.79,23.01,22.79,22.83,22.92,22.88,22.9,22.9,22.88,22.7,22.88,22.56,22.33,22.29,22.29,22.24,22.29,22.4,22.49,22.47,22.58,22.76,22.7,22.6,22.56,22.56,22.63,22.51,22.56,22.45,22.56,22.63,22.42,22.54,22.38,22.42,22.24,22.2,22.22,22.2,22.17,22.15,21.99,21.85,21.92,21.83,21.72,21.72,22.08,22.13,21.99,22.13,22.08,22.24,22.22,22.2,22.13,22.26,22.1,22.38,22.29,22.26,22.2,22.15,22.1,22.04,22.17,23.12,23.08,22.97,23.08,22.79,23.08,22.92,22.74,22.97,22.81,22.92,23.1,22.94,22.85,23.03,23.03,22.97,23.01,22.74,22.63,22.72,22.74,22.45,22.26,22.85,22.81,23.06,22.92,23.22,23.28,23.35,23.33,23.64,23.91,24.0,24.2,24.25,24.38,24.65,24.54,24.6,24.71,24.8,24.89,24.89,24.65,24.8,24.96,25.03,25.0,24.91,24.98,24.91,25.09,24.94,25.03,25.11,25.14,25.09,25.22,25.2,25.27,25.16,25.14,25.14,25.03,25.14,25.2,24.96,25.11,25.2,25.2,25.2,25.25,25.14,25.11,25.11,25.2,25.25,25.09,25.16,24.89,24.8,24.76,24.8,24.67,24.54,24.43,24.27,24.45,24.18,24.27,24.07,23.96,24.09,24.09,23.78,23.71,23.66,23.58,23.15,23.1,23.03,23.19,23.19,23.4,23.35,23.51,23.24,23.35,23.35,23.31,23.24,23.33,23.33,23.28,23.42,23.42,23.26,23.37,23.42,23.49,23.35,23.4,23.4,23.49,23.49,23.53,23.71,23.44,23.55,23.51,23.55,23.55,23.49,23.42,23.42,23.31,23.33,23.42,23.33,23.44,23.35,23.55,23.53,23.31,23.49,23.44,23.55,23.37,23.66,23.51,23.46,23.55,23.49,23.55,23.53,23.49,23.46,23.44,23.53,23.53,23.51,23.51,23.42,23.31,23.17,23.24,23.28,23.37,23.28,23.22,23.26,23.19,23.26,23.03,22.99,23.1,22.97,22.81,22.6,22.54,22.42,22.49,22.31,22.17,22.31,22.31,22.45,22.63,22.76,22.94,23.08,23.06,22.92,23.17,23.15,23.1,23.24,23.22,23.17,23.26,23.24,23.31,23.24,23.26,23.24,23.22,23.19,23.26,23.1,23.26,23.12,23.22,23.15,23.12,23.1,23.15,23.03,22.99,23.08,22.94,23.01,23.06,23.1,23.1,23.12,23.15,23.15,23.01,23.08,23.24,23.17,23.19,23.19,23.08,23.15,23.08,23.03,23.1,23.12,23.03,23.03,23.37,23.06,23.15,23.01,23.1,23.03,23.06,23.03,23.08,23.15,22.97,23.03,23.06,22.83,22.54,22.88,22.74,22.92,22.72,22.74,22.63,22.74,22.1,22.2,22.2,22.29,22.45,22.58,22.58,22.54,22.67,22.72,22.58,22.58,22.49,22.6,22.63,22.47,22.47,22.49,22.7,22.7,22.4,22.38,22.31,22.35,22.29,22.06,22.1,22.08,22.24,21.94,21.78,21.83,21.65,21.62,21.58,21.6,21.62,21.85,21.83,22.13,22.35,22.31,22.26,21.99,22.06,22.45,22.15,22.31,22.17,22.33,22.26,22.22,22.29,22.15,22.24,23.12,23.12,23.03,22.92,22.94,22.92,23.06,23.08,22.88,22.92,23.03,23.01,23.03,22.83,23.01,22.88,22.92,22.99,22.97,22.79,22.6,22.6,22.47,22.26,22.47,22.67,22.79,22.9,22.99,23.08,23.22,23.24,23.42,23.6,23.82,24.07,24.34,24.29,24.4,24.51,24.47,24.54,24.83,24.65,24.69,24.67,24.71,25.05,24.85,24.85,25.09,25.0,25.07,25.11,24.96,24.98,24.98,25.07,25.14,25.11,25.11,25.14,25.0,25.18,25.18,25.16,25.14,25.05,25.2,25.11,24.94,25.22,25.22,25.22,25.05,25.03,25.07,25.14,25.25,25.05,25.11,24.96,24.76,24.69,24.69,24.58,24.45,24.47,24.29,24.34,24.29,24.22,24.05,24.05,24.05,24.0,23.75,23.55,23.49,23.4,23.24,23.28,23.15,23.1,23.26,23.37,23.26,23.37,23.33,23.55,23.28,23.12,23.19,23.06,23.26,23.19,23.28,23.26,23.35,23.46,23.35,23.37,23.46,23.28,23.49,23.42,23.49,23.46,23.44,23.42,23.55,23.46,23.51,23.37,23.31,23.37,23.35,23.28,23.33,23.4,23.31,23.4,23.37,23.4,23.37,23.33,23.46,23.55,23.44,23.51,23.37,23.44,23.44,23.31,23.46,23.62,23.37,23.53,23.55,23.35,23.49,23.24,23.4,23.46,23.31,23.31,23.22,23.17,23.42,23.37,23.22,23.31,23.26,23.37,23.22,23.24,23.24,23.12,23.01,22.74,22.76,22.4,22.6,22.4,22.29,22.31,22.15,22.22,22.35,22.56,22.49,22.7,22.79,22.83,22.97,23.03,23.12,23.31,23.31,23.1,23.19,23.01,23.28,23.19,23.08,23.22,23.31,23.15,23.15,23.22,23.08,23.17,23.22,23.06,23.03,23.17,22.99,23.12,22.99,23.08,23.19,23.1,23.08,23.26,23.06,23.03,23.08,23.28,23.08,23.01,23.12,23.15,23.1,23.17,23.12,23.03,23.06,23.22,23.03,23.22,23.15,23.15,23.06,23.03,23.12,22.99,22.94,22.94,22.97,22.88,22.99,22.97,23.03,22.94,22.94,22.92,22.85,22.92,22.9,22.92,22.94,22.81,22.65,22.58,22.22,22.29,22.24,22.2,22.38,22.49,22.65,22.54,22.49,22.58,22.51,22.56,22.58,22.6,22.58,22.67,22.7,22.49,22.51,22.42,22.67,22.38,22.17,22.15,22.17,22.1,21.74,21.78,21.88,21.97,21.83,21.76,21.6,21.49,21.44,21.35,21.3,21.26,21.58,21.44,21.78,21.97,22.13,22.15,22.08,22.15,22.15,22.2,22.33,22.22,22.22,22.38,22.2,22.26,22.13,22.08,23.19,23.03,22.85,23.01,23.06,23.01,23.01,22.99,22.74,22.94,22.94,23.06,22.92,22.97,23.08,23.08,23.06,22.79,23.15,22.88,22.81,22.65,22.54,22.29,22.45,22.65,22.92,22.94,22.97,23.12,23.17,23.22,23.33,23.46,23.87,23.91,24.29,24.36,24.43,24.49,24.45,24.49,24.67,24.54,24.71,24.47,24.63,24.8,24.83,25.0,25.0,24.87,24.89,25.0,25.0,24.87,25.07,24.91,24.91,25.09,25.07,25.11,25.18,25.07,25.07,25.27,25.2,24.98,25.07,24.98,24.98,25.25,25.18,25.09,25.14,25.22,25.31,25.18,25.2,25.07,24.94,24.91,24.74,24.8,24.71,24.58,24.45,24.47,24.47,24.34,24.18,24.18,24.2,24.09,23.93,23.82,23.69,23.69,23.28,23.31,23.24,23.1,23.01,23.22,23.26,23.28,23.37,23.24,23.37,23.26,23.31,23.26,23.33,23.24,23.26,23.22,23.28,23.17,23.42,23.35,23.37,23.31,23.24,23.4,23.4,23.37,23.35,23.31,23.4,23.24,23.4,23.42,23.44,23.35,23.37,23.31,23.26,23.28,23.26,23.33,23.37,23.33,23.46,23.46,23.26,23.33,23.33,23.42,23.49,23.49,23.46,23.4,23.46,23.37,23.4,23.44,23.51,23.49,23.58,23.33,23.4,23.4,23.4,23.53,23.24,23.37,23.17,23.19,23.22,23.19,23.19,23.15,23.33,23.4,23.28,23.28,23.35,23.19,23.1,23.01,22.99,22.6,22.51,22.31,22.42,22.26,22.22,22.33,22.2,22.35,22.4,22.49,22.35,22.6,22.74,22.74,22.79,22.85,23.08,23.03,23.17,23.17,23.17,23.12,23.03,23.26,23.12,23.31,23.1,22.97,23.08,23.17,23.19,23.22,23.08,23.26,22.94,23.06,22.99,22.97,23.01,23.12,23.1,23.12,23.1,23.1,23.08,22.83,23.08,23.08,23.01,23.15,23.08,23.08,22.99,23.03,23.06,23.1,23.1,23.22,23.1,23.19,23.01,22.99,23.06,23.06,23.1,23.03,22.85,22.92,22.94,22.99,22.83,22.83,22.88,22.9,22.76,22.72,22.88,22.85,22.81,22.6,22.63,22.38,22.17,22.26,22.29,22.15,22.33,22.45,22.54,22.56,22.54,22.63,22.65,22.58,22.42,22.65,22.72,22.74,22.42,22.4,22.38,22.29,22.42,22.29,21.94,21.83,21.94,21.74,21.69,21.76,21.65,21.6,21.44,21.56,21.19,21.1,20.87,20.73,20.82,20.98,21.19,21.03,21.42,21.62,21.97,21.85,21.81,21.83,22.13,22.06,22.17,22.17,22.29,22.2,22.15,22.08,22.04,22.06,22.94,22.99,23.08,22.72,22.81,22.79,22.94,23.01,22.9,23.01,22.7,22.79,23.22,22.94,23.19,22.99,23.03,22.9,23.06,22.79,22.67,22.6,22.24,22.38,22.45,22.83,22.9,22.88,22.79,23.01,23.01,23.22,23.37,23.4,23.46,23.62,23.82,23.96,24.25,24.45,24.29,24.38,24.56,24.54,24.69,24.56,24.56,24.78,24.76,24.89,24.87,25.03,24.96,24.96,24.94,25.11,24.96,24.96,24.89,25.11,25.07,24.96,25.03,25.03,25.03,25.05,25.05,25.05,25.18,25.03,25.14,25.18,25.27,25.18,25.03,25.18,25.14,25.16,25.05,25.0,24.94,24.87,24.87,24.65,24.56,24.49,24.51,24.43,24.2,24.22,24.25,24.38,24.31,24.16,23.91,23.87,23.6,23.37,23.37,23.19,23.22,23.01,23.15,23.31,23.35,23.24,23.17,23.33,23.28,23.28,23.24,23.28,23.1,23.24,23.44,23.22,23.22,23.1,23.24,23.28,23.33,23.28,23.37,23.33,23.26,23.31,23.31,23.24,23.26,23.42,23.44,23.33,23.49,23.37,23.42,23.31,23.33,23.31,23.19,23.31,23.37,23.31,23.33,23.35,23.37,23.51,23.4,23.44,23.28,23.33,23.37,23.26,23.28,23.49,23.53,23.51,23.42,23.37,23.44,23.53,23.51,23.35,23.51,23.46,23.22,23.42,23.4,23.19,23.35,23.28,23.24,23.17,23.08,23.46,23.33,23.33,23.33,23.26,23.08,23.17,23.08,22.7,22.58,22.45,22.31,22.29,22.31,22.38,22.38,22.4,22.31,22.31,22.45,22.42,22.63,22.51,22.51,22.6,22.76,22.92,22.97,23.08,23.28,22.99,23.06,22.92,23.22,23.12,22.97,23.01,23.06,23.06,23.03,22.97,22.97,22.99,22.9,22.97,23.08,22.99,22.92,22.97,22.92,23.03,23.06,22.97,23.1,23.08,22.99,23.03,23.06,23.19,23.19,23.12,23.06,23.06,23.08,23.12,23.12,22.97,23.1,23.22,23.1,23.1,22.97,23.12,23.03,22.99,22.88,22.94,22.85,22.92,22.88,23.01,22.92,23.08,22.88,22.79,22.9,22.74,22.7,22.74,22.31,22.38,22.1,22.26,21.99,22.24,22.38,22.49,22.56,22.58,22.58,22.65,22.6,22.47,22.38,22.49,22.45,22.45,22.38,22.49,22.33,22.42,22.33,21.94,21.83,21.53,21.33,21.26,21.21,21.37,21.37,21.17,21.0,20.87,20.7,20.68,20.33,20.31,20.26,20.5,20.63,20.75,20.89,21.17,21.62,21.88,22.01,21.88,22.15,22.26,22.06,22.17,22.22,22.17,22.15,21.92,21.99,21.99,22.9,23.08,23.06,22.88,22.99,22.81,22.9,22.94,22.83,22.85,22.85,23.06,22.85,23.1,23.22,23.1,22.9,23.15,23.1,22.72,22.76,22.58,22.26,22.38,22.42,22.9,22.88,22.92,22.76,23.1,23.1,23.06,23.28,23.26,23.53,23.64,23.8,23.78,23.96,24.36,24.18,24.43,24.47,24.47,24.6,24.49,24.67,24.71,24.74,24.76,24.96,24.8,24.96,24.91,24.91,24.96,25.03,24.87,25.05,25.11,25.11,24.94,25.09,25.11,25.05,25.03,25.11,24.89,25.03,25.07,25.11,25.07,25.18,25.18,25.0,25.22,25.11,25.22,25.07,25.03,24.87,24.89,24.76,24.6,24.54,24.49,24.34,24.29,24.36,24.14,24.25,24.05,24.11,23.93,23.96,23.96,23.4,23.42,23.31,23.22,23.01,23.24,23.1,23.22,23.19,23.33,23.22,23.26,23.26,23.26,23.28,23.08,23.17,23.31,23.31,23.28,23.19,23.01,23.26,23.26,23.19,23.35,23.4,23.31,23.4,23.33,23.37,23.46,23.35,23.26,23.46,23.17,23.33,23.35,23.28,23.19,23.26,23.31,23.12,23.26,23.4,23.42,23.49,23.37,23.35,23.31,23.35,23.31,23.37,23.24,23.4,23.6,23.46,23.53,23.33,23.49,23.42,23.31,23.49,23.37,23.46,23.24,23.53,23.53,23.44,23.35,23.19,23.24,23.33,23.22,23.33,23.31,23.24,23.4,23.28,23.33,23.26,23.33,23.06,23.15,23.01,22.6,22.49,22.24,22.26,22.38,22.67,22.54,22.54,22.51,22.4,22.58,22.51,22.38,22.38,22.49,22.45,22.4,22.58,22.54,22.7,22.81,22.97,22.97,22.94,23.1,23.15,23.12,23.17,23.03,23.08,22.97,22.99,22.92,22.92,23.03,22.94,23.08,23.01,22.94,22.99,23.01,23.08,23.15,23.22,22.97,23.08,23.06,23.26,23.03,23.15,23.17,23.15,23.03,23.03,23.08,23.06,23.17,23.1,22.9,22.81,22.92,23.03,23.22,23.01,23.08,23.08,22.99,23.01,22.92,22.83,23.03,22.83,23.15,23.06,22.79,22.81,22.94,22.99,22.79,22.67,22.7,22.33,22.08,22.17,22.08,22.1,22.4,22.51,22.63,22.56,22.56,22.54,22.51,22.56,22.4,22.47,22.63,22.51,22.35,22.17,22.51,22.31,22.08,22.06,21.74,21.35,20.98,20.98,20.87,21.17,21.28,20.82,20.54,20.33,20.29,20.1,20.22,20.24,20.1,19.71,20.12,20.43,20.52,20.94,21.19,21.46,21.85,22.04,22.04,22.24,22.2,22.17,22.08,22.26,22.06,22.17,22.13,22.1,21.92,23.06,23.12,23.06,22.74,22.92,22.9,22.99,23.12,22.9,23.01,22.83,23.01,22.83,22.97,23.08,23.22,22.97,23.08,23.08,22.81,22.85,22.63,22.33,22.35,22.6,22.74,22.97,22.97,22.88,23.01,23.03,23.01,23.28,23.03,23.22,23.66,23.49,23.69,24.09,24.07,24.09,24.4,24.45,24.36,24.51,24.43,24.49,24.65,24.51,24.47,24.87,24.71,24.56,24.74,24.8,24.91,24.85,24.87,24.91,24.96,24.85,24.87,25.07,25.03,24.96,24.98,24.89,24.91,24.94,24.98,25.09,24.91,25.07,25.05,25.11,25.11,25.22,25.11,25.09,24.98,24.87,24.83,24.67,24.69,24.63,24.43,24.31,24.31,24.49,24.36,24.14,24.09,24.0,23.96,23.84,23.8,23.46,23.22,23.06,23.12,23.17,23.26,23.12,23.15,23.24,23.35,23.22,23.31,23.31,23.15,23.37,23.17,23.03,23.24,23.26,23.31,23.31,23.17,23.26,23.28,23.33,23.19,23.19,23.12,23.31,23.37,23.35,23.51,23.22,23.42,23.31,23.24,23.33,23.26,23.33,23.22,23.35,23.26,23.26,23.22,23.28,23.35,23.4,23.49,23.4,23.28,23.28,23.33,23.35,23.33,23.55,23.49,23.46,23.4,23.24,23.22,23.35,23.4,23.35,23.31,23.28,23.28,23.37,23.4,23.33,23.37,23.28,23.22,23.22,23.33,23.35,23.24,23.28,23.4,23.4,23.28,23.35,23.26,23.12,22.92,22.88,22.67,22.4,22.4,22.45,22.56,22.7,22.76,22.72,22.74,22.42,22.72,22.47,22.45,22.47,22.38,22.24,22.38,22.38,22.47,22.56,22.81,22.72,22.74,22.76,22.99,23.06,23.1,23.03,22.94,22.92,22.99,22.92,23.08,22.99,22.99,23.01,23.03,23.03,23.01,23.01,22.81,23.08,22.94,23.1,22.97,23.12,23.15,22.9,23.15,23.06,23.12,23.19,23.15,23.08,23.12,22.83,23.08,23.17,23.22,23.1,23.06,22.99,23.08,22.9,22.94,22.92,22.85,23.01,22.99,23.08,23.03,22.9,22.97,22.94,22.85,22.81,22.67,22.7,22.72,22.94,22.54,22.13,22.06,21.97,22.06,22.35,22.49,22.35,22.65,22.56,22.51,22.54,22.47,22.58,22.4,22.45,22.4,22.6,22.38,22.22,22.26,22.22,21.88,21.74,21.1,20.73,20.61,20.84,20.87,20.94,20.84,20.22,19.99,19.75,19.82,19.85,19.85,19.75,19.71,19.89,20.01,20.12,19.96,20.61,21.1,21.44,21.9,21.94,21.9,22.06,22.01,22.29,22.04,22.06,22.1,21.99,22.17,21.99,21.99,23.06,23.1,23.03,23.01,23.06,22.94,23.12,23.24,22.99,22.94,23.01,22.92,22.9,22.88,23.01,23.15,23.19,22.92,23.01,22.94,22.85,22.79,22.4,22.4,22.51,22.94,23.17,23.22,23.24,23.15,23.08,23.15,23.22,23.12,23.17,23.35,23.4,23.53,23.75,24.05,24.11,24.22,24.4,24.47,24.4,24.47,24.67,24.65,24.69,24.58,24.85,24.76,24.76,24.71,24.78,24.83,24.89,24.8,24.94,24.87,25.0,24.87,25.05,24.96,24.89,24.98,25.0,25.0,24.94,25.14,25.27,25.03,25.2,25.25,25.11,25.09,25.09,25.22,25.18,24.94,24.98,24.8,24.67,24.56,24.43,24.43,24.31,24.34,24.34,24.29,24.22,24.14,24.14,23.91,24.02,23.49,23.26,23.17,23.22,23.24,23.35,23.42,23.33,23.35,23.24,23.28,23.19,23.24,23.46,23.37,23.4,23.24,23.15,23.26,23.26,23.35,23.28,23.44,23.31,23.49,23.26,23.26,23.37,23.44,23.37,23.35,23.31,23.4,23.28,23.42,23.42,23.4,23.4,23.33,23.26,23.37,23.26,23.28,23.37,23.35,23.33,23.51,23.42,23.33,23.4,23.28,23.35,23.33,23.37,23.44,23.58,23.55,23.51,23.46,23.26,23.4,23.53,23.46,23.49,23.37,23.51,23.4,23.44,23.49,23.33,23.35,23.4,23.37,23.26,23.35,23.31,23.22,23.26,23.58,23.28,23.28,23.19,23.31,23.08,23.01,22.65,22.58,22.38,22.49,22.65,22.72,22.79,22.85,22.88,22.9,22.76,22.83,22.79,22.6,22.56,22.4,22.38,22.31,22.49,22.35,22.4,22.58,22.6,22.65,22.51,23.01,23.01,22.94,22.97,23.12,22.9,23.03,23.01,23.01,23.03,23.01,23.1,23.1,22.99,23.03,22.94,22.92,23.08,23.06,23.22,23.03,23.1,23.15,23.12,23.19,23.17,23.12,23.28,23.19,23.19,23.24,23.1,23.12,22.99,23.01,23.24,23.15,22.99,23.1,23.12,23.31,23.03,23.01,23.03,22.99,22.99,22.97,22.88,22.99,22.88,23.01,22.85,22.92,22.76,22.7,22.54,22.38,21.9,22.17,22.26,22.35,22.45,22.74,22.65,22.74,22.7,22.56,22.65,22.54,22.65,22.58,22.54,22.51,22.51,22.45,22.49,22.29,22.1,21.72,21.21,20.77,20.54,20.57,20.89,20.82,20.59,20.22,19.96,19.82,19.52,19.73,19.59,19.82,19.78,19.61,19.54,19.87,20.1,20.24,20.66,21.07,21.56,21.69,21.92,22.06,22.15,22.17,22.06,22.08,22.13,22.04,22.2,22.2,22.06,22.15,22.97,23.17,22.99,23.1,23.1,22.97,22.94,23.08,22.97,22.99,22.97,22.99,23.08,23.03,23.06,23.08,23.12,22.99,22.9,22.83,22.97,22.7,22.35,22.38,22.83,23.26,23.22,23.06,23.15,23.08,23.17,23.1,23.22,23.17,23.19,23.44,23.42,23.42,23.58,23.66,24.0,23.96,24.18,24.38,24.29,24.4,24.56,24.58,24.6,24.71,24.71,24.69,24.65,24.71,24.87,24.85,24.87,25.0,24.89,24.96,25.0,24.89,24.94,24.91,24.85,24.96,24.85,25.07,24.87,25.03,25.11,25.03,25.07,25.14,25.11,25.18,25.18,25.16,25.11,24.85,24.78,24.85,24.67,24.56,24.45,24.38,24.25,24.43,24.29,24.16,24.31,24.11,23.96,23.96,23.91,23.58,23.46,23.17,23.17,23.1,23.17,23.17,23.12,23.33,23.31,23.28,23.33,23.35,23.31,23.44,23.37,23.4,23.37,23.37,23.37,23.24,23.28,23.22,23.31,23.26,23.22,23.35,23.35,23.22,23.37,23.31,23.33,23.37,23.26,23.37,23.35,23.37,23.46,23.44,23.35,23.28,23.19,23.22,23.4,23.26,23.42,23.58,23.44,23.26,23.31,23.35,23.28,23.28,23.35,23.49,23.46,23.42,23.51,23.42,23.44,23.4,23.44,23.55,23.44,23.4,23.49,23.42,23.31,23.55,23.33,23.28,23.33,23.35,23.4,23.24,23.26,23.4,23.35,23.55,23.33,23.28,23.22,23.19,23.03,22.83,22.65,22.7,22.4,22.56,22.74,22.9,22.97,22.94,23.01,23.1,22.97,22.92,22.85,23.01,22.83,22.79,22.72,22.4,22.49,22.47,22.33,22.49,22.42,22.47,22.49,22.6,22.42,22.67,22.72,23.06,22.92,22.94,23.06,23.01,23.01,22.94,23.1,23.1,23.01,22.99,23.08,23.03,23.24,23.17,23.06,22.97,23.12,23.26,23.24,23.15,23.12,23.35,23.26,23.35,23.17,23.12,23.03,23.06,22.99,23.17,23.06,23.1,23.08,22.9,23.12,23.17,22.99,23.03,22.97,22.94,23.1,22.92,22.72,22.88,22.83,22.92,22.88,22.83,22.92,22.81,22.6,22.22,21.99,22.15,22.26,22.35,22.42,22.49,22.49,22.7,22.56,22.74,22.63,22.51,22.7,22.67,22.56,22.65,22.54,22.35,22.35,22.26,21.97,21.46,20.82,20.38,20.43,20.63,20.87,20.87,20.12,19.71,19.59,19.75,19.68,19.71,19.8,19.8,19.68,19.52,19.54,19.73,20.03,20.15,20.73,21.21,21.72,21.85,21.74,22.01,22.06,22.01,22.2,22.24,22.08,22.24,22.15,22.01,21.99,22.15,23.03,23.1,23.01,22.97,22.97,23.19,22.9,23.12,22.97,23.03,23.03,23.03,23.08,23.15,23.28,23.26,23.03,22.94,23.01,22.67,22.72,22.67,22.38,22.54,23.06,23.26,23.26,23.35,23.08,23.35,23.22,23.31,23.17,23.24,23.1,23.42,23.24,23.33,23.37,23.28,23.58,23.75,24.05,24.14,24.09,24.09,24.51,24.47,24.51,24.54,24.6,24.65,24.67,24.71,24.69,24.74,24.85,24.67,24.69,24.91,24.96,25.03,25.05,24.83,24.76,25.05,24.96,24.94,24.69,24.96,24.98,24.94,25.14,25.07,25.16,25.09,25.14,25.07,25.05,24.8,24.85,24.89,24.67,24.63,24.43,24.43,24.34,24.43,24.31,24.22,24.4,24.11,23.96,23.84,23.66,23.4,23.28,23.17,23.19,23.15,23.24,23.37,23.42,23.28,23.24,23.33,23.31,23.31,23.26,23.4,23.26,23.28,23.31,23.15,23.33,23.35,23.17,23.31,23.22,23.44,23.35,23.31,23.22,23.31,23.35,23.19,23.42,23.37,23.33,23.44,23.33,23.24,23.35,23.4,23.42,23.42,23.37,23.08,23.22,23.35,23.37,23.49,23.46,23.28,23.33,23.4,23.37,23.42,23.35,23.44,23.49,23.58,23.42,23.35,23.12,23.35,23.49,23.46,23.4,23.46,23.44,23.49,23.4,23.49,23.37,23.33,23.26,23.31,23.31,23.22,23.22,23.33,23.49,23.51,23.28,23.35,23.17,23.12,22.85,22.65,22.54,22.26,22.42,22.65,22.85,23.01,23.12,23.17,23.1,23.15,22.97,23.19,22.99,23.03,23.08,22.85,22.56,22.7,22.54,22.45,22.49,22.42,22.38,22.24,22.33,22.4,22.38,22.26,22.51,22.58,22.81,22.79,22.97,22.92,22.94,22.81,22.83,23.03,23.03,22.97,23.1,22.99,23.22,23.24,22.94,23.01,22.99,23.1,23.1,23.19,23.17,23.17,23.19,23.24,23.15,23.06,23.06,22.99,23.15,23.17,22.92,23.06,23.1,22.99,23.15,22.99,22.97,23.01,22.94,22.94,23.06,22.97,23.08,22.97,22.94,22.88,22.81,22.85,22.83,22.72,22.26,22.08,22.06,22.2,22.38,22.42,22.58,22.58,22.6,22.85,22.56,22.56,22.65,22.47,22.6,22.6,22.6,22.4,22.49,22.45,22.56,22.08,21.6,21.14,20.45,20.17,20.26,20.77,20.94,20.43,19.8,19.68,19.61,19.66,19.66,19.78,19.94,19.89,19.75,19.61,19.59,19.73,20.01,20.24,20.87,21.21,21.56,21.88,21.97,21.92,21.97,22.24,22.04,22.13,22.1,22.1,22.01,22.08,21.97,21.92,23.03,23.03,22.94,23.1,22.94,23.08,22.74,23.06,22.97,23.1,23.08,23.12,23.08,23.17,23.31,23.15,23.17,22.97,22.99,22.83,22.74,22.45,22.42,22.54,23.03,23.12,23.42,23.51,23.26,23.26,23.28,23.19,23.15,23.1,23.28,23.35,23.28,23.26,23.15,23.44,23.46,23.55,23.62,23.84,24.05,23.89,24.05,24.25,24.45,24.58,24.54,24.51,24.49,24.78,24.6,24.56,24.6,24.74,24.65,24.67,24.87,24.94,24.74,24.74,24.85,24.94,25.16,25.09,25.05,24.96,24.94,25.03,25.03,24.96,25.11,25.2,25.2,24.8,25.18,24.83,24.67,24.8,24.65,24.38,24.58,24.49,24.34,24.36,24.27,24.11,24.36,24.2,24.02,23.69,23.66,23.42,23.33,23.37,23.03,23.12,23.35,23.28,23.33,23.37,23.26,23.33,23.22,23.24,23.33,23.46,23.31,23.24,23.22,23.28,23.28,23.35,23.4,23.37,23.33,23.28,23.22,23.49,23.37,23.37,23.24,23.26,23.42,23.51,23.44,23.28,23.37,23.35,23.33,23.33,23.35,23.35,23.24,23.26,23.24,23.31,23.4,23.37,23.51,23.24,23.26,23.46,23.35,23.33,23.37,23.19,23.46,23.4,23.46,23.31,23.55,23.51,23.44,23.49,23.51,23.53,23.49,23.42,23.28,23.4,23.35,23.28,23.22,23.4,23.35,23.19,23.26,23.28,23.4,23.4,23.37,23.26,23.22,23.12,22.83,22.54,22.38,22.33,22.51,22.63,23.08,22.97,23.17,23.26,23.03,23.08,23.19,23.15,23.12,23.15,22.99,23.01,22.79,22.79,22.81,22.7,22.6,22.58,22.54,22.4,22.29,22.31,22.22,22.24,22.24,22.35,22.54,22.49,22.67,22.74,22.79,22.83,22.79,22.94,23.06,22.92,23.12,22.92,23.12,23.12,22.97,22.97,22.94,23.03,23.17,23.26,23.17,22.99,23.12,23.19,23.26,23.26,23.06,23.19,23.26,23.17,23.12,22.97,23.12,23.06,22.97,23.15,23.06,23.08,23.01,23.01,22.94,22.99,22.92,22.99,22.83,22.97,22.83,22.76,22.56,22.4,22.2,22.13,22.22,22.15,22.33,22.45,22.54,22.63,22.54,22.63,22.6,22.67,22.58,22.54,22.7,22.6,22.51,22.54,22.38,22.45,22.33,22.01,21.21,20.91,20.24,20.15,20.68,20.82,20.66,20.1,19.5,19.4,19.54,19.59,19.59,19.75,19.92,19.92,19.89,19.94,19.4,19.47,20.08,20.45,21.05,21.53,21.69,21.85,22.13,22.04,21.83,22.13,22.06,21.99,22.04,21.9,22.17,22.13,22.01,21.9,22.88,22.97,22.99,22.99,23.01,22.97,22.72,22.92,22.88,22.79,22.94,22.81,23.06,22.94,22.85,23.24,23.01,22.94,22.74,22.81,22.51,22.31,22.38,22.56,22.76,23.15,23.15,23.24,23.24,23.42,23.28,23.12,23.12,23.12,23.24,23.42,23.28,23.19,23.08,23.17,23.28,23.33,23.37,23.49,23.66,23.75,23.91,24.14,24.2,24.27,24.34,24.47,24.38,24.47,24.54,24.56,24.47,24.6,24.63,24.6,24.71,24.76,24.6,24.76,24.74,24.85,24.91,24.85,24.76,24.71,24.85,24.85,24.96,24.76,24.87,25.0,25.0,25.0,24.87,24.74,24.67,24.71,24.56,24.34,24.43,24.4,24.4,24.25,24.27,24.14,24.18,24.07,23.8,23.64,23.44,23.44,23.08,22.94,22.92,23.19,23.37,23.31,23.33,23.35,23.19,23.4,23.28,23.1,23.24,23.37,23.28,23.31,23.35,23.46,23.26,23.28,23.15,23.42,23.17,23.31,23.17,23.42,23.26,23.33,23.28,23.35,23.31,23.51,23.46,23.28,23.24,23.42,23.4,23.42,23.35,23.35,23.31,23.17,23.31,23.26,23.28,23.24,23.44,23.24,23.24,23.33,23.31,23.24,23.33,23.33,23.53,23.51,23.19,23.37,23.44,23.44,23.37,23.33,23.42,23.35,23.37,23.42,23.31,23.35,23.33,23.31,23.37,23.4,23.37,23.31,23.1,23.24,23.31,23.35,23.26,23.12,23.1,22.85,22.56,22.4,22.38,22.4,22.49,22.67,22.94,23.1,22.92,23.03,23.19,23.08,23.17,23.1,23.06,23.19,23.03,22.99,23.03,22.97,22.88,22.72,22.83,22.81,22.74,22.54,22.35,22.33,22.33,22.13,22.15,22.26,22.22,22.22,22.31,22.45,22.51,22.42,22.63,22.7,22.79,23.08,23.01,22.97,23.03,23.01,22.94,22.9,23.03,22.97,23.08,23.1,23.06,23.03,23.15,23.12,23.24,23.1,22.99,23.12,23.01,22.97,22.97,23.15,23.06,23.12,23.06,22.99,23.08,23.01,22.97,22.94,22.81,22.83,22.9,22.85,22.9,22.67,22.76,22.7,22.45,22.24,22.04,22.17,22.06,22.17,22.42,22.63,22.58,22.6,22.6,22.6,22.58,22.72,22.56,22.47,22.54,22.38,22.58,22.49,22.4,22.45,22.22,21.78,21.19,20.63,20.12,20.05,20.5,20.75,20.45,19.89,19.45,19.5,19.42,19.59,19.8,19.75,19.85,19.96,19.64,19.66,19.45,19.73,20.24,20.61,21.26,21.49,21.92,22.13,21.97,21.99,21.97,21.97,21.97,22.15,22.13,22.1,21.97,22.08,22.1,21.83,22.9,23.08,23.26,22.85,23.03,22.79,22.72,23.08,22.99,22.9,22.94,22.97,22.99,23.06,23.17,22.99,23.22,22.92,22.79,22.56,22.58,22.45,22.35,22.7,23.1,23.22,23.28,23.19,23.19,23.19,23.15,23.44,23.4,23.12,23.42,23.4,23.12,23.33,23.28,23.19,23.19,23.31,23.42,23.37,23.33,23.62,23.69,23.91,24.07,24.05,24.22,24.36,24.34,24.45,24.45,24.45,24.43,24.56,24.71,24.63,24.63,24.65,24.6,24.71,24.65,24.74,24.76,24.78,24.89,24.78,24.87,24.78,25.09,24.83,24.8,24.85,24.89,24.87,24.69,24.8,24.56,24.65,24.54,24.38,24.25,24.29,24.18,24.25,24.25,24.2,23.91,23.89,23.64,23.49,23.42,23.1,23.01,23.03,22.94,23.15,23.37,23.19,23.26,23.33,23.17,23.31,23.26,23.31,23.42,23.22,23.35,23.26,23.31,23.33,23.22,23.33,23.37,23.17,23.1,23.24,23.24,23.15,23.08,23.03,23.31,23.22,23.33,23.31,23.33,23.4,23.44,23.31,23.46,23.4,23.28,23.4,23.33,23.15,23.22,23.37,23.28,23.33,23.28,23.26,23.28,23.22,23.22,23.35,23.31,23.33,23.4,23.31,23.37,23.22,23.33,23.53,23.33,23.37,23.35,23.26,23.33,23.24,23.28,23.35,23.19,23.22,23.31,23.15,23.31,23.33,23.28,23.28,23.26,23.37,23.22,23.15,22.9,22.76,22.42,22.47,22.45,22.56,22.65,22.83,22.94,22.81,22.99,23.12,23.1,23.03,23.15,23.28,22.94,23.15,23.08,22.97,23.06,22.99,23.1,22.81,22.79,22.88,22.85,22.74,22.42,22.56,22.35,22.17,22.17,22.08,22.26,22.08,22.2,22.22,22.45,22.42,22.47,22.54,22.72,22.85,22.9,22.79,22.97,22.85,22.85,22.99,23.03,23.08,23.01,23.12,23.06,23.12,23.1,23.15,23.12,23.01,22.83,23.15,23.19,22.92,22.99,22.94,22.97,23.01,23.08,23.06,22.99,23.01,23.06,22.83,22.83,22.9,23.1,22.85,22.85,22.76,22.65,22.49,22.45,21.99,21.97,22.2,22.31,22.26,22.38,22.6,22.58,22.58,22.56,22.6,22.56,22.56,22.58,22.35,22.63,22.51,22.38,22.4,22.58,22.42,22.22,21.78,21.12,20.52,20.12,20.03,20.4,20.75,20.33,19.68,19.35,19.42,19.28,19.59,19.71,19.66,19.78,19.99,20.03,19.68,19.73,19.99,20.5,20.89,21.21,21.58,21.72,21.99,21.92,22.08,22.01,22.06,22.06,22.06,22.06,21.94,21.97,22.01,21.88,21.97,22.88,23.1,22.92,22.81,22.83,22.83,22.94,22.99,22.88,22.9,22.7,22.79,22.94,23.03,23.17,23.12,23.01,22.85,22.92,22.54,22.45,22.47,22.56,22.58,23.01,23.31,23.24,23.08,23.06,23.12,23.28,23.22,23.06,23.35,23.31,23.33,23.19,23.26,23.17,23.1,23.08,23.28,23.31,23.33,23.37,23.4,23.58,23.6,23.87,23.93,23.96,24.09,24.09,24.18,24.45,24.45,24.29,24.31,24.43,24.49,24.49,24.63,24.47,24.49,24.54,24.6,24.74,24.56,24.65,24.51,24.89,24.58,24.85,24.67,24.83,24.83,24.65,24.78,24.74,24.65,24.6,24.58,24.65,24.27,24.18,24.2,24.05,24.36,24.09,24.05,24.02,23.64,23.53,23.35,23.17,23.01,22.99,22.9,22.97,23.1,23.22,23.12,23.15,23.17,23.22,23.33,23.24,23.15,23.24,23.19,23.22,23.17,23.49,23.26,23.22,23.31,23.08,23.1,23.1,23.42,22.97,23.06,23.1,23.22,23.08,23.17,23.24,23.33,23.26,23.28,23.33,23.28,23.37,23.24,23.24,23.33,23.31,23.26,23.08,23.1,23.19,23.33,23.19,23.26,23.35,23.22,23.26,23.4,23.24,23.28,23.35,23.28,23.22,23.28,23.24,23.35,23.24,23.26,23.37,23.37,23.46,23.22,23.28,23.42,23.26,23.26,23.26,23.24,23.31,23.1,23.17,23.15,23.15,23.31,23.15,23.12,22.83,22.7,22.47,22.22,22.38,22.65,22.76,22.99,22.97,22.99,22.97,23.15,22.92,23.1,23.08,23.03,22.99,23.19,23.15,23.19,23.08,22.9,23.06,22.67,22.83,23.03,22.97,22.92,22.67,22.79,22.51,22.35,22.4,22.35,22.31,22.06,22.15,22.24,22.26,22.22,22.22,22.35,22.33,22.49,22.51,22.45,22.81,22.83,23.01,22.85,22.92,22.99,22.9,22.99,23.01,23.06,23.15,23.17,23.06,23.06,22.88,23.08,22.9,22.97,22.94,23.08,22.97,23.01,23.08,23.01,22.99,22.9,22.88,22.85,22.94,22.99,22.9,22.88,22.88,22.56,22.58,22.38,22.08,22.08,22.04,22.22,22.22,22.31,22.33,22.47,22.54,22.51,22.63,22.7,22.45,22.51,22.26,22.45,22.54,22.67,22.4,22.33,22.4,22.42,22.1,21.62,21.07,20.61,20.15,20.08,20.5,20.47,20.24,19.8,19.4,19.35,19.64,19.42,19.52,19.31,19.89,19.89,19.61,19.57,19.82,20.15,20.63,21.1,21.62,21.58,21.72,21.88,22.01,21.85,21.99,21.9,21.99,21.97,21.97,21.94,22.13,21.9,21.62,21.35,22.94,23.06,22.92,22.81,22.92,22.85,22.94,23.01,22.92,22.94,22.81,23.08,22.92,23.01,23.1,23.01,23.06,22.81,22.74,22.38,22.47,22.22,22.4,22.76,23.06,23.26,23.35,23.24,23.22,23.17,23.24,23.37,23.12,23.15,23.22,23.53,23.33,23.26,23.24,23.12,23.26,23.19,23.26,23.24,23.37,23.17,23.44,23.37,23.69,23.33,23.87,23.87,23.98,24.07,24.2,24.22,24.25,24.36,24.49,24.4,24.6,24.51,24.54,24.51,24.49,24.6,24.58,24.56,24.71,24.54,24.69,24.83,24.74,24.58,24.78,24.89,24.78,24.71,24.74,24.58,24.49,24.54,24.38,24.22,24.29,24.22,24.38,24.34,24.16,23.93,23.91,23.69,23.58,23.24,23.19,22.99,22.92,23.17,22.7,23.1,23.17,23.33,23.17,23.24,23.15,23.33,23.17,23.22,23.28,23.26,23.31,23.22,23.19,23.15,23.19,23.31,23.1,23.03,23.06,23.12,23.24,23.01,23.35,22.99,23.33,23.26,23.28,23.37,23.37,23.28,23.4,23.12,23.28,23.31,23.28,23.31,23.22,23.17,23.24,23.33,23.17,23.31,23.26,23.31,23.26,23.26,23.35,23.33,23.24,23.26,23.35,23.4,23.22,23.33,23.37,23.44,23.4,23.37,23.35,23.49,23.37,23.28,23.24,23.37,23.33,23.12,23.19,23.31,23.26,23.24,23.15,23.01,23.24,23.24,23.19,22.97,22.79,22.67,22.22,22.42,22.58,22.7,22.85,22.97,23.03,22.9,22.94,23.03,23.22,23.1,23.1,23.15,23.08,23.19,23.15,23.12,23.17,23.12,23.06,22.85,22.92,22.9,22.99,22.9,22.81,22.79,22.83,22.63,22.47,22.4,22.38,22.2,22.26,22.26,22.17,22.17,22.15,22.26,22.17,22.35,22.31,22.33,22.58,22.85,22.88,22.65,22.88,22.92,22.99,22.9,22.92,22.97,23.01,22.99,22.99,23.22,23.1,23.08,23.06,22.9,22.92,23.08,22.99,23.1,23.08,22.97,22.88,22.79,22.97,22.92,22.85,22.92,22.88,22.94,22.81,22.49,22.4,22.1,22.08,22.06,22.01,22.31,22.38,22.47,22.6,22.4,22.45,22.4,22.4,22.56,22.58,22.6,22.4,22.33,22.47,22.35,22.58,22.38,22.38,22.51,21.97,21.78,21.17,20.59,20.4,20.26,20.5,20.5,20.31,19.92,19.42,19.24,19.4,19.47,19.64,19.68,19.92,19.82,19.71,19.71,20.15,20.57,21.12,21.28,21.69,21.78,21.76,21.97,22.06,22.13,22.04,22.06,22.06,21.83,21.99,22.1,21.99,21.99,21.72,21.26,22.72,22.94,22.99,22.97,22.99,23.01,22.97,22.74,22.92,23.03,22.9,22.9,23.06,23.03,23.1,23.03,23.01,22.72,22.67,22.4,22.15,22.22,22.49,22.81,23.26,23.35,23.46,23.24,23.31,23.35,23.28,23.33,23.46,23.4,23.42,23.44,23.35,23.33,23.26,23.31,23.28,23.33,23.37,23.42,23.22,23.37,23.46,23.35,23.44,23.33,23.78,23.64,23.8,23.91,24.05,24.16,24.34,24.36,24.34,24.47,24.49,24.49,24.51,24.69,24.47,24.67,24.4,24.43,24.51,24.56,24.83,24.49,24.6,24.58,24.51,24.83,24.76,24.58,24.65,24.69,24.6,24.6,24.4,24.4,24.38,24.31,24.11,24.16,24.2,23.8,23.87,23.73,23.4,23.37,23.28,23.06,23.06,22.99,22.94,23.12,23.35,23.37,23.35,23.35,23.24,23.22,23.19,23.31,23.31,23.24,23.28,23.28,23.17,23.12,23.22,23.26,23.22,23.24,23.19,23.26,23.1,23.24,23.12,23.26,23.28,23.35,23.31,23.33,23.37,23.28,23.44,23.42,23.28,23.26,23.12,23.33,23.22,23.28,23.17,23.31,23.35,23.28,23.24,23.31,23.24,23.35,23.37,23.24,23.35,23.31,23.51,23.44,23.42,23.26,23.37,23.28,23.42,23.37,23.31,23.31,23.42,23.31,23.37,23.49,23.31,23.33,23.15,23.19,23.24,23.22,23.17,23.17,23.24,23.12,23.15,22.9,22.51,22.47,22.33,22.47,22.81,22.49,22.9,23.01,23.1,23.24,23.06,23.08,23.19,23.17,23.12,23.17,23.08,23.06,23.03,23.19,23.01,22.99,23.03,23.06,23.03,23.01,23.03,22.99,22.83,22.79,22.83,22.79,22.67,22.67,22.45,22.49,22.45,22.42,22.17,22.01,22.15,22.17,22.04,22.38,22.22,22.2,22.4,22.42,22.58,22.51,22.65,22.7,22.72,22.85,23.1,22.99,23.12,23.12,22.99,22.97,23.06,23.15,23.1,23.03,23.01,23.01,22.88,23.06,23.03,22.97,23.15,22.79,22.97,22.88,23.03,23.03,22.79,22.97,22.74,22.63,22.22,22.1,22.22,22.17,22.13,22.45,22.51,22.49,22.51,22.49,22.42,22.47,22.54,22.65,22.6,22.47,22.51,22.63,22.51,22.49,22.6,22.33,22.45,22.35,21.94,21.85,21.35,20.89,20.5,20.33,20.59,20.77,20.66,20.19,19.75,19.47,19.57,19.47,19.73,19.61,19.66,19.75,19.85,20.03,20.45,20.87,21.3,21.6,21.9,21.94,22.08,21.92,22.13,22.08,22.06,21.88,21.97,22.15,22.15,22.1,21.74,21.94,21.69,21.14,22.79,22.99,22.9,22.79,22.85,22.97,22.9,22.9,22.81,22.9,22.94,22.85,22.94,23.15,23.08,23.01,22.9,22.79,22.74,22.56,22.29,22.29,22.49,22.97,22.94,23.28,23.1,23.24,23.17,23.08,23.28,23.33,23.37,23.19,23.28,23.4,23.26,23.33,23.15,23.4,23.31,23.22,23.44,23.17,23.37,23.24,23.24,23.28,23.24,23.33,23.35,23.19,23.37,23.62,23.84,23.8,24.16,24.0,24.2,24.31,24.25,24.34,24.38,24.58,24.38,24.47,24.31,24.45,24.58,24.36,24.56,24.56,24.65,24.43,24.6,24.56,24.67,24.58,24.49,24.45,24.49,24.49,24.29,24.2,24.4,24.22,24.29,24.11,24.02,23.78,23.96,23.55,23.35,22.99,23.24,22.9,22.9,23.24,23.17,23.17,23.17,23.19,23.24,23.24,23.17,23.31,23.22,23.28,23.17,23.12,23.28,23.15,23.15,23.08,23.19,23.1,23.26,23.26,23.19,23.28,23.28,23.26,23.22,23.26,23.35,23.31,23.26,23.33,23.31,23.28,23.28,23.15,23.17,23.22,23.28,23.19,23.22,23.12,23.08,23.19,23.28,23.19,23.19,23.26,23.19,23.15,23.19,23.12,23.33,23.22,23.49,23.33,23.33,23.26,23.28,23.31,23.31,23.42,23.26,23.28,23.19,23.19,23.24,23.24,23.17,23.31,23.26,23.22,23.15,23.22,23.17,23.24,23.22,23.15,22.92,22.81,22.49,22.45,22.31,22.38,22.81,22.9,22.88,22.99,23.01,23.03,23.01,22.99,23.15,23.19,23.1,23.12,23.12,23.08,23.1,22.99,22.94,23.08,23.08,22.94,23.06,23.1,23.08,22.92,22.72,22.83,22.9,22.94,22.83,22.76,22.65,22.65,22.72,22.6,22.47,22.29,22.33,22.29,22.17,22.15,22.06,22.04,22.22,22.22,22.29,22.42,22.56,22.51,22.51,22.79,22.99,23.01,22.99,22.97,22.92,22.83,22.94,23.01,22.81,22.9,22.92,23.03,23.08,23.08,22.92,22.99,22.97,22.9,22.85,22.92,22.99,22.88,22.92,22.72,22.74,22.31,22.06,21.97,22.08,22.2,22.13,22.38,22.45,22.58,22.51,22.49,22.42,22.63,22.58,22.65,22.51,22.45,22.2,22.49,22.45,22.42,22.58,22.35,22.22,22.31,22.29,21.99,21.51,21.23,20.77,20.5,20.75,20.7,20.54,20.12,19.85,19.75,19.68,19.42,19.75,19.61,19.59,19.89,19.99,20.52,20.77,21.19,21.6,21.81,21.85,21.92,22.01,22.1,22.01,21.99,22.08,21.81,21.94,21.76,21.97,22.04,21.74,21.58,21.23,20.54,22.88,23.06,22.92,22.99,22.88,23.08,23.01,23.08,22.9,22.92,22.94,23.06,22.94,23.12,23.15,23.03,22.88,22.7,22.79,22.31,22.1,22.26,22.67,23.1,23.15,23.19,23.12,23.26,23.22,23.22,23.4,23.26,23.35,23.26,23.37,23.49,23.22,23.33,23.49,23.33,23.4,23.24,23.4,23.46,23.19,23.31,23.44,23.42,23.26,23.42,23.49,23.33,23.33,23.46,23.55,23.58,23.73,23.82,23.78,24.18,24.09,24.22,24.4,24.38,24.54,24.4,24.43,24.29,24.47,24.45,24.49,24.51,24.56,24.56,24.45,24.51,24.54,24.65,24.6,24.63,24.45,24.45,24.54,24.18,24.18,24.29,24.22,24.11,23.93,23.71,23.75,23.46,23.22,22.92,23.19,23.06,23.01,23.15,23.24,23.24,23.15,23.28,23.4,23.31,23.31,23.37,23.17,23.17,23.22,23.4,23.28,23.28,23.12,23.31,23.31,23.26,23.26,23.19,23.26,23.42,23.17,23.37,23.22,23.31,23.22,23.28,23.35,23.33,23.33,23.26,23.26,23.15,23.17,23.17,23.42,23.19,23.15,23.17,23.12,23.24,23.06,23.22,23.35,23.31,23.19,23.24,23.01,23.35,23.37,23.31,23.55,23.26,23.31,23.31,23.33,23.31,23.33,23.35,23.42,23.42,23.31,23.31,23.28,23.37,23.19,23.28,23.19,23.12,23.28,23.19,23.22,23.24,23.1,23.01,22.88,22.65,22.58,22.42,22.42,22.58,23.01,23.01,22.99,22.99,23.26,23.01,23.06,23.26,23.08,23.1,23.15,23.17,23.08,23.19,23.12,23.1,23.06,23.12,23.08,23.01,23.06,23.17,23.1,22.97,22.85,23.06,23.12,22.9,22.85,22.88,22.79,22.74,22.74,22.72,22.74,22.58,22.47,22.47,22.47,22.24,22.24,22.13,22.31,22.06,22.38,22.26,22.42,22.51,22.58,22.54,22.76,22.85,22.85,23.06,22.99,22.85,23.01,22.92,23.1,23.12,22.97,23.03,22.99,23.1,23.12,22.9,22.92,22.97,22.97,22.92,22.9,22.99,22.7,22.72,22.54,22.29,22.1,21.94,21.99,22.22,22.33,22.31,22.45,22.67,22.58,22.47,22.49,22.51,22.54,22.6,22.6,22.42,22.33,22.24,22.54,22.4,22.47,22.51,22.45,22.29,22.17,22.13,21.76,21.46,21.21,20.77,20.8,20.7,20.63,20.38,20.12,20.1,20.01,19.89,19.92,20.08,20.12,20.36,20.5,21.1,21.19,21.42,21.92,21.88,21.99,22.01,22.1,22.2,21.97,21.76,22.04,22.04,21.9,21.81,22.13,22.01,21.9,21.46,21.19,20.38,22.97,22.99,22.9,23.01,22.88,23.03,23.06,23.06,22.7,23.03,22.88,22.99,23.15,23.19,23.15,23.33,22.97,22.79,22.74,22.45,22.31,22.45,22.74,22.99,23.1,23.33,23.31,23.37,23.15,23.26,23.37,23.4,23.37,23.31,23.35,23.35,23.28,23.51,23.35,23.42,23.53,23.49,23.46,23.53,23.42,23.4,23.46,23.53,23.44,23.49,23.31,23.26,23.46,23.35,23.44,23.6,23.71,23.69,23.75,24.02,24.0,24.25,24.27,24.2,24.29,24.4,24.29,24.43,24.34,24.4,24.65,24.38,24.58,24.36,24.47,24.56,24.45,24.54,24.63,24.4,24.54,24.43,24.51,24.31,24.0,24.22,24.22,24.07,23.93,23.78,23.53,23.33,23.1,23.06,23.01,23.03,23.17,23.24,23.22,23.37,23.4,23.42,23.26,23.24,23.24,23.35,23.17,23.17,23.44,23.28,23.53,23.4,23.31,23.31,23.26,23.22,23.19,23.24,23.19,23.46,23.31,23.35,23.12,23.17,23.4,23.35,23.4,23.44,23.28,23.26,23.31,23.19,23.28,23.22,23.31,23.08,23.42,23.19,23.19,23.33,23.22,23.24,23.24,23.31,23.22,23.19,23.22,23.28,23.37,23.28,23.24,23.19,23.4,23.33,23.12,23.35,23.42,23.46,23.46,23.31,23.28,23.12,23.24,23.35,23.24,23.31,23.08,22.99,23.31,23.24,23.12,23.15,23.17,23.1,22.72,22.54,22.4,22.47,22.49,22.79,22.97,22.94,23.24,23.08,23.17,23.12,23.08,23.22,22.99,23.12,23.22,23.17,23.03,23.06,23.08,23.22,23.15,23.22,23.1,23.17,23.1,23.15,23.08,22.99,22.99,22.99,23.1,23.06,22.9,22.94,22.88,22.72,22.79,22.83,22.81,22.83,22.54,22.67,22.45,22.42,22.49,22.29,22.4,22.13,22.35,22.33,22.22,22.26,22.4,22.26,22.45,22.58,22.67,22.92,22.88,23.03,23.06,22.99,22.92,23.12,23.1,23.17,23.03,23.15,22.92,22.99,23.01,22.92,22.85,22.94,22.88,22.79,22.63,22.63,22.49,22.17,21.99,22.15,22.01,22.29,22.51,22.58,22.42,22.45,22.58,22.76,22.49,22.54,22.54,22.79,22.67,22.58,22.47,22.47,22.33,22.47,22.38,22.38,22.31,22.42,22.26,22.22,21.92,21.67,21.42,21.1,20.98,21.0,20.98,20.75,20.61,20.33,20.33,20.19,20.19,20.15,20.19,20.61,20.91,21.17,21.51,21.81,21.88,22.13,22.13,22.04,22.38,22.08,22.15,22.01,22.04,22.01,21.81,21.97,21.88,21.72,21.76,21.35,20.77,20.19,23.01,23.24,22.94,22.85,22.99,22.9,22.88,23.12,22.83,22.74,22.79,23.01,22.97,22.88,23.01,22.99,23.03,22.74,22.56,22.35,22.33,22.4,22.9,22.97,23.35,23.4,23.31,23.35,23.06,23.19,23.26,23.28,23.28,23.31,23.35,23.33,23.15,23.44,23.37,23.37,23.49,23.31,23.46,23.49,23.42,23.42,23.42,23.58,23.37,23.42,23.31,23.35,23.37,23.46,23.42,23.28,23.42,23.28,23.66,23.64,23.84,23.84,24.02,23.98,24.11,24.2,24.34,24.38,24.27,24.36,24.4,24.4,24.38,24.45,24.36,24.47,24.38,24.4,24.34,24.34,24.38,24.34,24.22,24.2,24.16,24.11,24.0,24.18,23.84,23.69,23.53,23.4,23.08,23.01,23.1,22.99,23.17,23.06,23.22,23.28,23.44,23.33,23.19,23.26,23.24,23.35,23.24,23.22,23.4,23.42,23.28,23.24,23.35,23.28,23.24,23.19,23.08,23.17,23.28,23.24,23.24,23.24,23.26,23.06,23.22,23.31,23.33,23.35,23.28,23.31,23.24,23.26,23.33,23.22,23.24,23.26,23.22,23.1,23.22,23.35,23.28,23.15,23.15,23.15,23.19,23.4,23.15,23.24,23.28,23.31,23.35,23.37,23.49,23.35,23.26,23.22,23.33,23.33,23.33,23.31,23.35,23.24,23.35,23.28,23.19,23.26,23.22,23.01,23.1,23.19,23.1,23.12,23.03,22.85,22.7,22.42,22.49,22.38,22.63,22.79,23.12,23.06,23.12,22.99,23.22,23.17,23.06,23.1,23.19,23.12,23.06,23.28,23.19,23.08,23.03,23.19,23.15,23.19,23.26,22.97,22.94,23.08,23.08,22.97,23.15,23.03,23.01,22.99,22.92,22.94,22.94,22.83,22.85,22.85,22.92,22.74,22.83,22.76,22.74,22.7,22.54,22.47,22.54,22.35,22.4,22.38,22.2,22.17,22.08,22.26,22.35,22.4,22.42,22.65,22.54,22.74,22.65,22.92,22.88,22.94,22.9,23.1,22.92,22.9,23.08,22.99,22.94,22.85,22.99,22.7,22.76,22.97,22.67,22.45,22.29,22.1,22.1,22.13,22.2,22.49,22.47,22.47,22.35,22.33,22.42,22.56,22.54,22.63,22.65,22.63,22.47,22.47,22.45,22.51,22.54,22.51,22.58,22.24,22.35,22.45,22.42,22.29,21.97,21.99,21.76,21.35,21.23,21.26,21.21,21.23,20.98,20.82,20.68,20.47,20.59,20.43,20.84,21.26,21.19,21.56,21.67,21.85,22.15,22.08,22.1,22.01,22.04,22.2,21.97,21.94,21.94,21.81,21.94,21.88,22.04,21.72,21.33,20.96,20.38,19.87,22.99,23.06,22.88,22.88,22.67,22.88,22.85,22.9,22.92,22.99,22.72,23.01,22.97,22.99,22.97,22.85,22.81,22.47,22.58,22.31,22.29,22.63,22.76,23.1,22.99,23.24,23.22,23.26,23.19,23.24,23.28,23.31,23.28,23.28,23.35,23.42,23.26,23.26,23.15,23.42,23.31,23.22,23.15,23.26,23.46,23.42,23.44,23.37,23.35,23.42,23.44,23.31,23.33,23.33,23.33,23.42,23.35,23.4,23.26,23.58,23.6,23.55,23.55,23.82,23.87,23.98,23.96,24.22,24.2,24.18,24.36,24.38,24.34,24.22,24.47,24.34,24.31,24.4,24.31,24.29,24.4,24.16,24.22,23.96,23.96,24.05,23.93,23.89,23.6,23.66,23.33,23.17,22.9,22.97,22.97,22.79,23.1,23.24,23.33,23.31,23.31,23.42,23.22,23.35,23.19,23.46,23.31,23.26,23.31,23.22,23.26,23.08,23.12,23.22,23.28,23.22,23.26,23.22,23.17,23.12,23.4,23.26,23.22,23.26,23.22,23.35,23.24,23.35,23.24,23.24,23.33,23.15,23.12,23.15,23.24,23.15,23.17,23.12,23.08,23.15,23.15,23.17,23.19,23.24,23.1,23.06,23.22,23.33,23.42,23.24,23.26,23.12,23.31,23.31,23.17,23.24,23.31,23.22,23.06,23.08,23.31,23.15,23.22,23.22,23.17,23.15,22.97,23.15,23.15,23.22,22.99,23.08,22.88,22.7,22.47,22.42,22.58,22.56,22.63,22.97,23.1,23.03,23.01,23.12,22.99,23.12,23.12,23.01,23.08,23.03,22.99,23.12,23.15,23.17,23.08,23.03,22.9,23.1,22.9,22.85,23.08,23.01,23.01,22.88,22.92,22.92,22.99,22.88,23.03,22.81,22.92,22.88,22.85,22.85,22.76,22.88,22.74,22.79,22.74,22.76,22.63,22.6,22.7,22.45,22.58,22.29,22.1,22.22,22.33,22.24,22.15,22.22,22.29,22.29,22.38,22.49,22.45,22.54,22.72,22.63,22.76,22.92,22.88,22.88,22.92,22.83,22.99,22.74,22.65,22.79,22.72,22.85,22.63,22.4,22.22,22.13,22.08,22.06,22.4,22.47,22.51,22.67,22.47,22.38,22.56,22.49,22.6,22.65,22.56,22.6,22.49,22.51,22.58,22.54,22.58,22.35,22.51,22.42,22.4,22.47,22.47,22.4,22.15,22.26,21.92,21.78,21.65,21.35,21.3,21.46,21.21,21.23,21.14,20.96,21.03,21.14,21.23,21.51,21.49,21.69,21.78,21.85,21.88,22.13,22.24,21.99,22.15,22.15,21.94,22.06,22.01,21.81,21.88,21.78,21.65,21.49,21.0,20.59,20.19,19.82,22.65,22.81,22.72,22.56,22.67,22.79,22.9,22.97,22.85,22.74,22.72,22.97,22.9,22.97,22.72,22.72,22.76,22.58,22.33,22.06,22.45,22.54,22.72,22.97,23.1,23.26,23.17,23.1,23.03,23.19,23.26,23.22,23.22,23.33,23.28,23.46,23.46,23.26,23.22,23.12,23.17,23.37,23.15,23.17,23.08,23.35,23.15,23.4,23.42,23.28,23.35,23.31,23.33,23.22,23.24,23.26,23.24,23.31,23.35,23.33,23.22,23.28,23.37,23.53,23.55,23.66,23.73,23.82,23.93,24.02,24.11,24.22,24.31,24.27,24.27,24.31,24.22,24.02,24.29,24.0,24.11,23.98,24.05,24.07,23.89,23.82,23.71,23.58,23.46,23.33,23.1,23.12,23.01,22.92,22.99,23.06,23.08,23.31,23.17,23.35,23.19,23.42,23.03,22.99,23.15,23.26,23.24,23.28,23.12,23.28,23.06,23.06,23.08,23.22,23.17,23.19,23.17,23.12,23.03,23.17,23.33,23.08,23.01,23.24,23.12,23.19,23.17,23.12,23.06,23.35,23.17,23.03,23.06,23.22,23.31,23.1,23.03,23.03,23.15,23.17,23.19,23.22,23.15,23.22,23.12,23.28,23.15,23.17,23.28,23.06,23.19,23.15,23.19,23.24,23.12,23.24,22.99,23.15,23.08,23.12,23.17,23.22,23.03,23.15,23.19,23.19,22.97,23.06,23.08,23.12,23.03,22.97,22.76,22.38,22.47,22.42,22.47,22.6,22.74,22.85,23.15,23.01,23.03,23.1,23.1,22.92,22.9,23.17,22.97,22.92,23.03,23.1,22.99,23.08,22.92,22.92,22.99,22.92,22.94,22.76,22.76,23.01,23.03,22.88,22.83,22.81,22.81,22.99,22.85,22.83,22.65,22.92,22.79,22.65,22.79,22.74,22.7,22.56,22.72,22.81,22.7,22.7,22.67,22.54,22.7,22.49,22.47,22.45,22.35,22.2,22.31,22.31,22.31,22.31,22.17,22.29,22.26,22.26,22.42,22.54,22.54,22.63,22.74,22.49,22.79,22.76,22.76,22.7,22.65,22.7,22.74,22.67,22.29,22.04,21.97,22.04,22.17,22.2,22.35,22.29,22.42,22.51,22.51,22.38,22.31,22.49,22.49,22.63,22.56,22.49,22.49,22.38,22.35,22.31,22.45,22.49,22.31,22.31,22.45,22.47,22.35,22.4,22.24,22.15,21.99,21.99,21.88,21.72,21.58,21.6,21.42,21.46,21.44,21.37,21.4,21.4,21.23,21.78,21.92,21.65,21.72,22.04,21.94,21.92,22.04,21.99,21.97,22.13,21.83,21.67,21.76,21.92,21.67,21.6,21.51,21.1,20.66,20.08,20.03,19.75,22.88,22.85,22.83,22.94,22.74,22.67,22.97,23.06,22.65,22.92,22.81,23.08,22.94,22.92,22.92,22.88,22.85,22.58,22.31,22.17,22.45,22.72,22.81,22.83,23.28,23.33,23.19,23.06,23.06,23.28,23.28,23.28,23.33,23.1,23.33,23.4,23.19,23.22,23.31,23.31,23.44,23.44,23.35,23.26,23.12,23.17,23.26,23.35,23.51,23.35,23.44,23.46,23.26,23.22,23.37,23.28,23.22,23.37,23.42,23.46,23.31,23.4,23.33,23.31,23.49,23.51,23.6,23.82,23.96,24.0,24.14,24.11,24.31,24.36,24.25,24.27,24.22,24.2,24.2,23.93,24.11,23.91,23.89,23.78,23.73,23.71,23.66,23.58,23.37,23.22,23.01,22.94,23.01,23.19,22.72,23.19,23.31,23.28,23.17,23.26,23.33,23.35,23.19,23.17,23.24,23.31,23.37,23.46,23.12,23.12,23.17,23.24,23.35,23.22,23.33,23.31,23.33,23.19,23.22,23.31,23.17,23.17,23.24,23.26,23.19,23.33,23.33,23.28,23.35,23.28,23.26,23.06,23.26,23.4,23.4,23.19,23.24,23.03,23.26,23.22,23.31,23.35,23.15,23.06,23.28,23.24,23.19,23.31,23.28,23.24,23.31,23.08,23.24,23.28,23.26,23.35,23.35,23.42,23.28,23.12,23.31,23.06,23.33,23.19,23.15,23.19,23.15,23.17,23.12,23.17,22.94,22.92,22.58,22.45,22.42,22.45,22.56,22.92,22.92,22.94,23.06,23.15,23.06,23.06,23.12,22.99,23.08,22.99,23.03,23.22,23.1,23.24,23.06,23.06,22.92,23.19,22.97,23.08,23.06,22.94,23.01,23.01,23.08,23.08,22.99,23.08,22.99,22.97,22.88,23.01,22.94,22.92,22.9,23.01,22.83,22.83,22.94,22.9,22.79,22.85,22.76,22.63,22.83,22.79,22.88,22.67,22.7,22.56,22.45,22.47,22.58,22.49,22.22,22.29,22.22,22.22,22.42,22.24,22.2,22.35,22.35,22.42,22.35,22.42,22.63,22.72,22.83,22.7,22.79,22.72,22.67,22.31,22.17,22.04,22.15,22.08,22.24,22.17,22.56,22.45,22.54,22.7,22.47,22.38,22.45,22.58,22.47,22.54,22.54,22.47,22.6,22.47,22.29,22.51,22.49,22.31,22.42,22.42,22.47,22.47,22.47,22.42,22.24,22.29,22.42,22.06,22.17,21.97,22.01,21.85,21.9,21.9,21.85,21.65,21.69,21.51,21.99,22.04,21.81,21.76,21.99,21.94,22.08,22.06,22.08,21.99,21.94,22.24,21.97,21.9,21.85,21.94,21.81,21.58,21.37,20.98,20.5,19.85,19.52,19.78,22.72,23.06,22.74,22.81,22.63,22.6,22.92,22.85,22.63,22.65,22.72,22.74,22.7,22.72,23.01,22.83,22.72,22.6,22.49,22.2,22.54,22.83,22.85,23.12,23.33,23.15,23.17,22.99,23.12,23.26,23.28,23.12,23.17,23.26,23.31,23.55,23.35,23.22,23.22,23.24,23.22,23.24,23.35,23.26,23.4,23.37,23.19,23.35,23.28,23.26,23.42,23.26,23.28,23.4,23.35,23.24,23.31,23.37,23.46,23.33,23.51,23.35,23.33,23.37,23.37,23.37,23.35,23.51,23.62,23.71,23.84,23.84,23.91,24.05,24.22,24.02,23.96,23.84,23.98,23.87,23.84,23.89,23.58,23.58,23.49,23.42,23.37,23.4,23.24,23.22,23.12,23.03,22.88,22.79,22.92,23.1,23.17,23.12,23.28,23.31,23.24,23.24,23.17,23.31,23.24,23.24,23.15,23.15,23.03,23.26,23.28,22.94,23.08,23.26,23.19,23.19,23.15,23.31,23.17,23.22,23.28,23.28,23.15,23.22,23.22,23.24,23.49,23.28,23.26,23.08,23.19,23.08,23.17,23.24,23.17,23.08,23.08,23.08,23.15,23.12,23.22,23.26,23.01,23.08,23.17,23.17,23.15,23.17,23.22,23.35,23.24,23.17,23.31,23.17,23.17,23.19,23.31,23.12,23.28,23.15,23.06,23.15,23.33,23.28,23.01,23.15,23.03,22.97,23.01,22.92,22.88,22.7,22.58,22.54,22.38,22.4,22.67,22.79,22.88,22.99,22.9,22.9,23.06,22.99,23.03,23.08,23.03,23.03,22.94,23.08,23.19,23.15,23.17,23.01,23.01,22.92,22.88,23.01,22.99,22.9,22.79,23.01,23.01,22.99,22.85,22.94,23.06,22.76,22.92,22.83,22.65,23.03,22.83,22.74,22.83,22.85,22.79,22.9,22.7,22.97,22.74,22.67,22.83,22.72,22.76,22.7,22.74,22.72,22.79,22.51,22.54,22.6,22.4,22.31,22.33,22.31,22.26,22.22,22.15,22.13,22.2,22.17,22.29,22.29,22.56,22.4,22.4,22.4,22.65,22.6,22.51,22.06,22.08,21.99,22.13,22.2,22.26,22.22,22.4,22.54,22.51,22.54,22.49,22.42,22.38,22.49,22.35,22.45,22.45,22.58,22.49,22.45,22.51,22.58,22.33,22.31,22.4,22.31,22.49,22.42,22.4,22.35,22.26,22.4,22.33,22.2,22.22,22.15,21.92,21.9,21.97,22.01,21.97,21.81,21.83,21.74,21.97,21.94,21.76,22.17,21.85,21.92,21.94,22.13,21.99,22.04,21.85,22.04,21.81,21.76,21.62,21.69,21.76,21.3,20.94,20.24,19.89,19.66,19.57,19.47,22.65,22.92,22.83,22.72,22.83,22.74,22.67,22.88,22.74,22.85,22.85,23.15,22.94,23.12,22.94,22.83,22.79,22.51,22.29,22.17,22.67,22.81,23.06,23.28,23.31,23.15,23.17,23.28,23.46,23.33,23.17,23.33,23.26,23.22,23.26,23.12,23.42,23.31,23.26,23.4,23.35,23.46,23.53,23.33,23.4,23.4,23.44,23.49,23.28,23.53,23.37,23.33,23.28,23.19,23.37,23.28,23.35,23.49,23.44,23.35,23.35,23.12,23.37,23.33,23.37,23.37,23.35,23.51,23.51,23.58,23.69,23.89,23.8,23.73,23.87,23.98,23.87,23.84,23.8,23.78,23.82,23.66,23.62,23.51,23.28,23.44,23.26,23.46,23.22,23.12,23.03,22.94,22.81,23.06,23.17,23.15,23.35,23.28,23.28,23.49,23.28,23.46,23.22,23.42,23.19,23.28,23.08,23.22,23.26,23.33,23.28,23.06,23.4,23.33,23.19,23.15,23.37,23.22,23.19,23.26,23.24,23.51,23.19,23.42,23.22,23.26,23.33,23.31,23.4,23.31,23.4,23.24,23.22,23.24,23.24,23.1,23.15,23.06,23.12,23.33,23.28,23.35,23.28,23.17,23.35,23.08,23.12,23.31,23.26,23.12,23.33,23.28,23.33,23.22,23.33,23.28,23.24,23.28,23.19,23.12,23.06,23.17,23.44,23.19,23.01,23.08,23.01,23.12,22.94,23.06,22.76,22.54,22.51,22.4,22.45,22.79,22.83,23.08,23.08,23.08,23.06,23.08,23.31,23.1,22.92,23.03,23.03,23.15,23.01,23.19,23.19,23.12,23.17,23.12,23.01,23.03,22.99,23.06,22.99,22.94,23.08,23.22,23.24,23.01,22.83,22.94,23.03,22.83,22.88,22.85,22.83,22.85,23.08,22.94,22.85,22.85,22.76,22.92,22.99,22.88,22.83,22.92,22.99,22.83,22.92,22.88,22.85,22.76,22.74,22.88,22.97,22.76,22.79,22.63,22.56,22.4,22.4,22.17,22.13,22.24,22.15,22.29,22.01,22.42,22.31,22.26,22.22,22.24,22.49,22.38,22.38,22.1,22.1,22.08,22.13,22.33,22.26,22.6,22.42,22.63,22.54,22.54,22.54,22.54,22.56,22.4,22.4,22.54,22.6,22.67,22.45,22.4,22.42,22.45,22.54,22.42,22.49,22.38,22.47,22.38,22.4,22.47,22.31,22.35,22.35,22.35,22.33,22.35,22.13,22.26,22.17,22.06,22.01,22.08,21.99,21.92,21.99,22.1,22.06,22.08,22.06,21.92,22.01,21.9,22.04,21.94,22.06,21.88,22.04,21.76,21.74,21.69,21.72,20.98,20.66,20.22,19.87,19.66,19.59,19.54,22.49,22.72,22.56,22.58,22.7,22.6,22.79,22.85,22.7,22.67,22.72,22.9,23.08,22.76,22.83,22.79,22.7,22.47,22.35,22.01,22.54,22.97,23.19,22.94,23.17,23.12,22.99,23.01,23.19,23.26,23.24,23.06,23.31,23.24,23.19,23.46,23.33,23.51,23.19,23.42,23.22,23.28,23.26,23.24,23.19,23.31,23.24,23.51,23.35,23.37,23.44,23.35,23.24,23.42,23.31,23.08,23.42,23.33,23.31,23.26,23.42,23.31,23.35,23.44,23.33,23.33,23.24,23.4,23.22,23.33,23.37,23.35,23.55,23.55,23.66,23.8,23.71,23.6,23.6,23.58,23.58,23.53,23.53,23.31,23.28,23.28,23.15,23.37,23.1,22.9,22.88,22.85,22.83,22.85,23.15,23.24,23.17,23.22,23.19,23.24,23.33,23.31,23.26,23.31,23.26,23.24,23.22,23.33,23.17,23.19,23.44,23.17,23.22,23.28,23.19,23.46,23.26,23.28,23.24,23.35,23.03,23.26,23.12,23.22,23.15,23.37,23.31,23.28,23.26,23.19,23.26,23.1,23.37,23.12,23.17,23.12,23.1,22.99,23.1,23.22,23.03,23.26,23.19,23.22,23.17,23.03,23.19,23.28,23.15,23.26,23.28,23.19,23.22,23.26,23.12,23.24,23.12,23.06,23.08,23.1,23.31,23.17,23.33,23.19,23.06,23.1,23.01,23.1,23.06,22.85,22.7,22.42,22.45,22.35,22.4,22.63,22.9,23.03,23.03,23.01,23.15,23.15,23.06,23.12,23.08,22.94,23.03,23.26,23.12,23.19,23.22,23.1,23.22,23.17,23.01,23.01,23.06,23.01,23.01,22.92,23.12,23.08,23.03,23.06,22.85,22.83,23.03,22.76,22.76,22.9,22.85,22.9,22.9,22.85,22.99,22.79,22.81,22.92,22.72,22.94,22.83,22.72,22.72,22.81,22.99,22.85,22.83,22.74,22.74,22.9,22.99,22.83,22.85,22.81,22.56,22.56,22.65,22.22,22.24,22.33,22.38,22.26,21.97,22.17,22.26,22.2,22.26,22.13,22.38,22.22,22.17,21.99,22.01,22.04,22.24,22.31,22.33,22.38,22.49,22.49,22.54,22.54,22.4,22.51,22.47,22.45,22.54,22.45,22.35,22.7,22.51,22.45,22.56,22.31,22.45,22.38,22.35,22.26,22.29,22.45,22.38,22.4,22.45,22.47,22.31,22.24,22.2,22.08,21.97,22.13,22.06,22.01,22.01,21.99,22.04,21.9,21.88,22.13,22.01,22.04,21.99,21.92,22.01,21.97,22.13,21.99,21.94,21.85,21.78,21.72,21.83,21.81,21.4,20.63,20.24,19.92,19.64,19.57,19.57,19.52,22.22,22.47,22.51,22.4,22.35,22.54,22.76,22.81,22.63,22.7,22.65,22.74,22.88,22.65,22.72,22.35,22.4,22.22,22.06,22.06,22.49,22.94,22.97,23.1,22.92,23.17,23.19,23.1,23.06,23.17,23.03,23.24,23.19,23.01,23.19,23.24,23.12,23.22,23.31,23.22,23.28,23.15,23.26,23.12,23.19,23.4,23.33,23.44,23.28,23.33,23.4,23.28,23.26,23.42,23.28,23.28,23.37,23.17,23.35,23.31,23.35,23.24,23.28,23.44,23.03,23.24,23.22,23.19,23.24,23.1,23.37,23.28,23.42,23.33,23.35,23.4,23.42,23.31,23.37,23.49,23.28,23.53,23.28,23.24,23.1,23.03,22.88,23.12,22.9,22.83,22.7,22.63,22.67,22.83,23.12,23.1,23.17,23.28,23.24,23.33,23.28,23.17,23.17,23.31,23.15,23.15,23.15,23.28,23.17,23.17,23.31,23.06,23.01,23.17,23.17,23.15,23.19,23.17,23.12,23.28,23.28,23.19,23.01,23.15,23.37,23.28,23.37,23.31,23.24,23.08,23.17,23.01,23.08,23.15,23.26,23.08,23.03,23.01,23.19,23.15,23.1,23.08,23.12,23.08,23.19,23.08,23.19,23.15,23.19,23.35,23.22,23.31,23.22,23.17,23.08,23.17,23.17,22.97,23.19,23.12,23.22,23.08,23.24,23.01,23.15,23.01,23.01,23.03,22.94,22.6,22.49,22.42,22.33,22.31,22.51,22.54,22.9,22.97,22.92,22.97,23.22,22.99,22.99,22.94,22.97,22.94,23.03,23.15,22.92,23.08,23.03,23.03,23.15,23.03,22.97,22.94,23.01,22.9,22.97,22.99,23.1,23.01,23.01,22.88,22.85,22.92,23.03,22.94,22.79,22.74,22.67,22.79,22.74,22.81,22.81,22.83,22.79,22.72,22.88,22.79,22.7,22.74,22.83,22.85,22.7,22.81,22.85,22.99,22.88,22.76,22.79,22.74,22.81,22.65,22.58,22.54,22.72,22.47,22.45,22.35,22.31,22.33,22.26,22.26,22.13,21.94,21.99,21.85,22.04,21.92,21.88,21.85,21.81,22.01,22.31,22.15,22.1,22.24,22.29,22.42,22.26,22.49,22.49,22.42,22.54,22.47,22.42,22.42,22.29,22.47,22.49,22.42,22.4,22.24,22.22,22.47,22.49,22.56,22.29,22.51,22.29,22.26,22.31,22.35,22.24,22.26,22.08,22.1,22.06,22.1,22.1,22.01,22.06,21.99,21.99,21.97,21.99,21.9,21.92,21.78,21.88,21.78,21.85,21.94,21.78,21.9,21.9,21.76,21.78,21.49,21.62,21.21,20.94,20.31,19.8,19.64,19.59,19.57,19.47,19.5,21.92,22.2,22.1,22.13,22.31,22.54,22.51,22.72,22.45,22.79,22.63,22.49,22.81,22.81,22.7,22.65,22.47,22.13,22.04,22.26,22.6,22.83,23.01,23.28,22.99,23.06,23.19,23.19,23.03,23.12,23.17,23.35,23.26,23.19,23.31,23.19,23.24,23.19,23.03,23.35,23.12,23.28,23.22,23.19,23.24,23.1,23.35,23.33,23.35,23.1,23.37,23.22,23.15,23.42,23.26,23.33,23.28,23.35,23.31,23.17,23.42,23.26,23.28,23.12,23.35,23.26,23.26,23.24,23.17,22.9,23.33,23.19,23.22,23.12,23.28,23.24,23.28,23.24,23.24,23.17,23.31,23.03,23.1,23.19,23.17,23.03,22.85,22.97,22.88,22.85,22.76,22.76,22.88,22.9,22.97,23.17,22.97,23.03,23.19,23.15,23.44,23.31,23.08,23.31,23.22,23.31,23.12,23.4,23.31,23.35,23.22,23.1,23.17,23.19,23.1,23.1,23.12,23.01,23.17,23.19,23.15,23.26,23.03,23.19,23.37,23.26,23.26,23.33,23.22,23.12,23.28,23.1,23.28,23.1,23.12,23.03,23.12,22.99,23.1,23.19,23.1,23.15,23.1,23.08,22.97,23.12,23.06,23.06,22.99,23.24,23.28,23.26,23.19,23.19,23.26,23.15,23.1,23.19,23.03,23.12,23.15,23.01,23.15,23.12,22.99,23.06,23.01,22.85,22.81,22.58,22.45,22.24,22.26,22.54,22.65,22.79,22.92,23.06,22.97,23.03,23.28,23.1,23.1,22.94,22.94,23.1,22.99,23.1,23.03,23.15,22.92,22.92,23.01,22.99,22.92,22.9,22.9,22.92,23.08,22.83,22.88,23.08,23.22,22.99,22.67,22.94,22.94,22.97,22.67,22.74,22.83,22.88,22.79,22.79,22.9,22.74,22.7,22.79,22.74,22.9,22.74,22.83,22.88,22.74,22.67,22.72,22.72,22.85,22.65,22.74,22.83,22.72,22.85,22.83,22.79,22.54,22.63,22.76,22.65,22.56,22.38,22.47,22.33,22.33,22.26,22.13,21.92,22.06,21.99,21.76,21.72,21.67,21.83,21.92,22.1,22.08,22.22,22.17,22.17,22.24,22.29,22.47,22.51,22.4,22.54,22.45,22.47,22.4,22.58,22.54,22.6,22.29,22.35,22.15,22.47,22.29,22.56,22.45,22.45,22.4,22.26,22.42,22.22,22.38,22.26,22.1,22.24,22.1,22.2,22.13,22.15,22.08,22.06,22.04,22.06,21.85,22.1,22.26,22.08,22.04,21.85,21.78,21.9,21.92,21.85,21.69,21.81,21.88,21.56,21.49,21.65,20.98,20.38,19.96,19.66,19.47,19.57,19.45,19.8,19.52,21.85,22.06,22.08,22.17,22.31,22.47,22.49,22.6,22.42,22.6,22.72,22.76,22.72,22.81,22.81,22.72,22.58,22.13,22.2,22.2,22.56,23.17,23.19,23.19,23.19,22.99,23.15,23.31,23.28,23.33,23.22,23.31,23.17,23.19,23.4,23.55,23.12,23.22,23.22,23.22,23.51,23.31,23.31,23.31,23.44,23.37,23.15,23.51,23.33,23.28,23.42,23.35,23.44,23.44,23.37,23.4,23.44,23.31,23.44,23.28,23.58,23.49,23.42,23.42,23.44,23.44,23.55,23.26,23.08,23.33,23.42,23.35,23.37,23.28,23.44,23.17,23.22,23.31,23.28,23.15,23.24,23.06,23.24,23.1,23.08,23.08,22.94,23.06,23.06,22.85,22.74,22.74,22.92,22.94,23.17,23.22,23.15,23.15,23.33,23.37,23.35,23.37,23.37,23.28,23.33,23.35,23.31,23.44,23.42,23.33,23.35,23.26,23.28,23.33,23.28,23.12,23.19,23.03,23.24,23.28,23.19,23.15,23.24,23.4,23.37,23.37,23.12,23.33,23.17,23.24,23.24,23.15,23.31,23.22,23.22,23.22,23.24,23.22,23.24,23.06,23.15,23.24,23.28,23.35,23.22,23.19,23.22,23.08,23.26,23.17,23.28,23.24,23.26,23.22,23.31,23.22,23.24,23.22,23.28,23.19,23.24,23.17,23.19,23.22,23.01,23.06,23.06,22.99,22.88,22.63,22.51,22.47,22.2,22.65,22.83,22.92,23.08,23.01,23.06,23.06,23.17,23.15,23.06,23.08,22.92,23.12,23.08,23.08,23.15,23.22,22.97,23.01,23.1,23.12,23.1,23.19,23.06,23.03,23.15,23.06,23.22,23.03,23.1,23.08,22.94,23.03,22.97,23.08,22.88,22.99,22.79,22.99,22.9,22.79,22.99,22.92,22.9,22.85,22.85,22.99,22.76,22.85,22.76,22.9,22.9,22.76,22.88,22.9,22.92,22.94,23.03,22.88,22.88,22.92,22.83,22.72,22.79,22.81,22.85,22.79,22.76,22.67,22.65,22.45,22.38,22.35,22.15,22.1,21.99,21.83,21.85,21.88,21.85,21.85,21.85,21.97,21.97,22.17,22.22,22.15,22.38,22.24,22.35,22.4,22.45,22.45,22.42,22.54,22.65,22.72,22.54,22.45,22.38,22.45,22.6,22.47,22.45,22.38,22.49,22.42,22.45,22.42,22.4,22.2,22.33,22.4,22.15,22.26,22.13,22.13,22.15,22.22,22.38,22.15,22.08,22.01,22.2,22.22,22.24,21.97,22.1,21.97,22.04,22.08,21.9,21.9,21.85,21.9,21.65,21.51,21.3,20.84,20.29,19.92,19.64,19.75,19.66,19.54,19.68,19.89,22.01,22.04,22.04,21.74,21.94,22.1,22.26,22.65,22.49,22.65,22.63,22.65,22.6,22.67,22.65,22.56,22.38,21.99,22.4,22.15,22.7,23.06,22.97,22.9,23.26,23.12,23.22,23.19,23.19,23.19,23.17,23.01,23.19,23.31,23.33,23.31,23.26,23.12,23.31,23.22,23.08,23.24,23.35,23.26,23.03,23.1,23.28,23.4,23.46,23.46,23.42,23.33,23.26,23.33,23.35,23.19,23.31,23.4,23.4,23.28,23.53,23.46,23.46,23.4,23.35,23.53,23.4,22.97,23.22,23.42,23.24,23.31,23.28,23.24,23.1,23.26,23.1,23.15,23.22,23.1,23.06,23.06,23.12,22.97,22.83,22.79,22.92,22.92,22.83,22.94,22.81,22.9,22.94,23.12,23.15,23.24,23.15,23.24,23.37,23.26,23.31,23.37,23.33,23.22,23.22,23.26,23.31,23.22,23.17,23.24,23.37,23.17,23.26,23.26,23.35,23.19,23.08,23.06,23.15,23.26,23.28,23.19,23.22,23.24,23.28,23.19,23.19,23.46,23.1,23.26,23.31,23.1,23.19,23.44,23.24,23.12,23.17,23.19,23.06,23.1,23.15,23.19,23.31,23.33,23.15,22.99,23.12,23.24,23.22,23.28,23.26,23.31,23.31,23.08,23.1,23.08,23.15,23.1,23.06,23.1,23.31,23.15,23.06,23.24,23.1,22.92,22.9,22.85,22.85,22.56,22.17,22.45,22.54,22.63,22.9,22.92,23.08,23.06,23.24,23.01,23.03,22.97,23.22,23.08,22.94,23.15,23.15,23.06,23.12,23.08,23.1,23.08,23.19,23.08,23.1,23.08,23.01,23.06,23.03,23.01,22.99,22.99,23.03,22.94,22.99,23.1,22.9,22.88,22.83,22.92,22.7,22.9,22.79,22.81,22.88,22.88,22.7,22.92,22.83,22.88,22.83,22.79,22.97,22.85,22.88,22.67,22.85,22.81,22.9,22.94,22.92,23.06,22.9,22.94,22.88,22.72,22.94,22.94,22.65,22.85,22.74,22.79,22.79,22.74,22.45,22.49,22.2,21.94,21.88,21.72,21.85,21.85,21.74,21.88,21.94,21.92,21.72,21.99,21.88,21.99,22.06,22.31,22.13,22.26,22.35,22.33,22.47,22.47,22.56,22.51,22.56,22.56,22.24,22.33,22.38,22.31,22.31,22.4,22.51,22.4,22.15,22.45,22.29,22.26,22.29,22.33,22.13,22.08,22.1,22.15,22.15,22.33,21.92,22.13,21.83,22.13,22.08,22.26,21.97,22.01,21.83,21.94,21.94,22.13,21.81,21.97,21.88,21.72,21.6,21.37,20.96,20.43,20.08,19.5,19.8,19.73,19.73,19.57,19.59,19.5,22.33,21.97,21.76,21.92,21.83,21.85,22.04,22.24,22.15,22.56,22.67,22.56,22.79,22.72,22.51,22.45,22.13,21.94,22.38,22.4,22.76,22.92,23.03,23.06,22.85,23.22,23.26,23.03,23.08,23.12,23.22,23.15,23.19,22.9,23.1,23.1,23.12,23.26,23.31,23.26,23.12,23.33,23.19,23.28,23.28,23.35,23.24,23.28,23.35,23.26,23.46,23.31,23.28,23.4,23.37,23.17,23.19,23.19,23.28,23.44,23.46,23.42,23.35,23.31,23.26,23.28,23.33,23.28,23.28,23.33,23.33,23.33,23.31,23.28,23.12,23.19,23.01,23.15,23.15,23.12,23.01,23.06,22.97,22.9,22.85,22.99,22.81,22.83,22.7,22.9,22.9,22.99,22.85,23.01,23.15,23.22,23.24,23.08,23.33,23.19,23.42,23.4,23.42,23.4,23.22,23.28,23.17,23.22,23.17,23.19,23.31,23.06,23.08,23.37,23.28,23.26,23.24,23.17,22.99,23.15,23.17,23.22,23.15,23.17,23.22,23.24,23.28,23.31,23.22,23.19,23.22,23.19,23.12,23.35,23.01,23.19,23.15,23.17,23.1,23.1,23.1,23.12,23.28,23.15,23.15,23.12,23.15,23.33,23.28,23.26,23.24,23.26,23.28,22.99,23.08,23.01,23.26,23.15,23.28,23.1,23.19,23.01,23.19,23.26,22.9,22.88,22.81,22.54,22.42,22.45,22.24,22.47,22.6,22.88,22.9,22.92,22.99,23.12,22.97,22.99,23.15,23.03,23.06,23.06,23.06,23.08,23.08,23.17,23.06,23.03,23.03,23.12,22.94,22.99,22.97,23.1,23.06,22.94,22.92,22.97,23.03,23.03,23.15,22.97,22.9,23.15,23.01,22.85,22.88,22.81,22.74,22.88,22.85,22.79,22.81,22.72,22.81,22.72,22.83,23.1,22.76,22.7,22.83,22.76,22.9,22.79,22.72,22.79,22.92,22.94,22.92,22.99,22.92,22.79,23.01,22.83,22.79,22.85,22.74,22.7,22.63,22.7,22.72,22.72,22.76,22.58,22.38,22.04,21.94,21.76,21.83,21.88,21.92,21.9,21.81,21.92,21.76,21.88,21.83,21.67,21.99,21.97,21.92,21.97,22.1,22.22,22.24,22.17,22.35,22.49,22.47,22.42,22.26,22.26,22.17,22.17,22.4,22.45,22.31,22.22,22.01,22.31,22.2,22.22,22.38,22.26,22.1,22.04,22.06,22.08,21.97,22.08,22.04,21.92,21.83,21.92,21.94,22.04,21.92,21.85,21.9,21.83,21.85,21.88,21.83,21.81,21.62,21.69,21.44,20.73,20.57,19.99,19.66,19.31,19.59,19.4,19.38,19.82,19.92,19.82,22.72,22.49,22.04,21.94,21.88,21.99,21.88,21.99,22.31,22.26,22.42,22.24,22.58,22.47,22.35,22.31,22.22,21.88,22.31,22.47,22.7,23.1,23.28,23.1,23.22,23.19,23.15,23.17,23.15,23.22,23.22,23.03,23.28,23.31,23.26,23.22,23.1,23.24,23.37,23.26,23.12,23.19,23.33,23.33,23.33,23.26,23.35,23.35,23.35,23.4,23.28,23.35,23.28,23.49,23.35,23.22,23.37,23.35,23.4,23.22,23.49,23.37,23.4,23.35,23.24,23.42,23.44,23.4,23.46,23.31,23.26,23.46,23.46,23.33,23.33,23.22,23.33,23.33,23.12,23.1,23.06,23.08,23.08,22.92,22.81,22.97,23.01,22.92,22.9,22.81,22.94,23.15,23.06,23.12,23.4,23.35,23.22,23.26,23.49,23.37,23.42,23.22,23.37,23.4,23.37,23.33,23.19,23.28,23.26,23.31,23.4,23.12,23.33,23.28,23.24,23.31,23.26,23.1,23.24,23.22,23.15,23.28,23.22,23.1,23.31,23.31,23.26,23.19,23.26,23.19,23.17,23.31,23.31,23.22,23.08,23.22,23.03,23.08,23.15,23.24,23.12,23.12,23.17,23.19,23.22,23.03,23.19,23.22,23.26,23.24,23.26,23.31,23.26,23.12,23.12,23.24,23.31,23.17,23.22,23.17,23.22,23.12,23.03,23.22,23.1,22.94,22.74,22.67,22.51,22.47,22.45,22.63,22.81,23.1,22.97,23.15,23.03,23.26,23.1,23.01,23.1,23.06,23.08,23.01,23.08,22.99,23.01,23.31,23.15,23.06,23.08,22.99,23.06,23.1,22.9,23.1,22.83,22.97,22.99,23.01,23.01,23.17,23.12,23.24,22.97,22.92,22.97,22.88,22.97,22.94,22.9,22.97,22.81,22.97,22.88,22.9,22.81,22.9,22.9,22.76,22.7,22.74,22.88,22.74,22.99,22.88,22.79,22.88,22.85,22.83,22.72,22.99,22.74,22.97,22.85,22.88,22.88,22.94,22.79,22.79,22.74,22.6,22.7,22.74,22.92,22.49,22.29,22.08,21.92,21.88,22.1,22.17,22.13,21.99,21.97,21.9,21.85,21.78,21.9,21.97,21.9,21.78,21.97,21.88,22.06,22.1,22.01,22.22,22.31,22.47,22.4,22.49,22.26,22.29,22.38,22.31,22.33,22.2,22.31,22.33,22.38,22.33,22.26,22.13,22.2,22.17,22.24,22.13,21.99,22.08,21.97,22.15,22.24,22.04,21.97,21.9,22.04,22.06,21.94,21.83,21.88,22.01,21.97,21.85,21.88,21.83,21.65,21.65,21.21,20.68,20.08,19.82,19.47,19.4,19.45,19.54,19.64,19.92,19.66,19.73,22.76,22.65,22.51,22.47,22.17,22.13,22.01,22.04,21.94,22.15,22.08,22.17,22.33,22.58,22.42,22.31,22.13,21.94,22.1,22.49,22.81,23.15,23.12,23.26,23.26,23.17,23.1,23.19,23.19,23.22,23.24,23.03,23.19,23.37,23.46,23.31,23.31,23.33,23.4,23.4,23.26,23.44,23.35,23.37,23.31,23.35,23.35,23.42,23.42,23.37,23.6,23.4,23.49,23.37,23.35,23.28,23.28,23.55,23.46,23.4,23.49,23.44,23.44,23.49,23.44,23.46,23.44,23.4,23.37,23.37,23.49,23.44,23.49,23.31,23.44,23.31,23.35,23.28,23.06,23.01,23.17,23.06,22.97,22.99,22.81,23.01,23.03,22.88,22.79,22.94,22.74,23.01,23.06,23.17,23.22,23.24,23.17,23.4,23.4,23.46,23.44,23.4,23.37,23.44,23.31,23.31,23.28,23.35,23.44,23.33,23.26,23.24,23.24,23.33,23.33,23.46,23.33,23.19,23.26,23.37,23.44,23.35,23.33,23.17,23.44,23.35,23.44,23.26,23.28,23.22,23.31,23.24,23.22,23.28,23.19,23.35,23.26,23.08,23.19,23.24,23.22,23.37,23.26,23.22,23.4,23.12,23.24,23.28,23.19,23.31,23.17,23.33,23.44,23.28,23.35,23.35,23.24,23.26,23.22,23.15,23.17,23.17,23.06,23.31,23.1,22.88,22.63,22.65,22.54,22.49,22.49,22.67,22.9,23.06,23.15,22.97,23.22,22.99,23.01,23.08,23.22,23.22,23.19,23.26,23.24,23.03,23.22,23.24,23.17,23.01,23.03,23.17,22.99,23.22,23.17,23.03,23.08,23.01,23.12,23.01,22.94,22.97,23.15,23.01,22.99,23.12,23.15,22.9,23.03,22.88,22.9,22.85,22.92,22.85,22.79,22.85,22.99,22.94,23.03,22.99,22.83,22.92,23.08,22.97,22.99,22.83,22.9,22.97,22.92,22.92,23.01,22.99,22.99,22.94,23.03,22.9,22.85,23.06,22.92,22.92,22.81,22.74,22.65,22.74,22.72,22.56,22.22,22.06,21.9,22.01,22.31,22.31,22.2,22.22,22.31,22.13,21.97,22.01,21.97,21.88,21.85,21.83,21.85,21.74,21.9,22.01,21.88,22.08,22.1,22.26,22.38,22.33,22.2,22.31,22.35,22.35,22.35,22.38,22.42,22.51,22.45,22.17,22.45,22.31,22.38,22.26,22.17,22.22,22.26,22.17,22.1,22.17,22.17,22.1,22.04,22.08,22.2,22.17,22.17,22.06,21.9,22.08,21.97,21.94,21.99,21.99,21.74,21.51,20.94,20.54,19.94,19.71,19.61,19.64,19.71,19.75,19.99,19.89,19.92,20.08,22.97,22.99,22.79,22.58,22.38,22.29,22.22,22.13,21.9,22.01,21.74,21.94,22.06,22.17,22.17,22.17,21.9,21.99,22.42,22.58,22.94,23.17,23.03,23.15,23.06,23.08,23.1,23.17,22.94,23.01,22.99,23.15,23.26,23.26,23.35,23.24,23.31,23.31,23.4,23.28,23.26,23.4,23.37,23.22,23.46,23.28,23.46,23.53,23.28,23.33,23.4,23.35,23.35,23.4,23.44,23.28,23.4,23.55,23.42,23.33,23.49,23.4,23.4,23.55,23.42,23.51,23.42,23.35,23.37,23.44,23.24,23.55,23.46,23.37,23.42,23.44,23.44,23.37,23.33,23.19,23.28,23.22,22.94,22.9,22.7,22.76,22.81,22.97,22.65,22.72,22.72,22.79,22.94,23.06,23.33,23.19,23.17,23.35,23.28,23.19,23.35,23.37,23.49,23.22,23.33,23.37,23.35,23.26,23.44,23.33,23.37,23.17,23.35,23.22,23.22,23.33,23.28,23.24,23.03,23.19,23.42,23.22,23.12,23.17,23.31,23.19,23.22,23.31,23.33,23.28,23.19,23.17,23.35,23.24,23.22,23.28,23.1,23.01,23.1,23.22,23.19,23.22,23.19,23.19,23.22,23.17,23.28,23.19,23.31,23.33,23.24,23.31,23.28,23.28,23.42,23.44,23.33,23.22,23.01,23.26,23.24,23.15,23.17,23.12,22.92,22.76,22.49,22.54,22.38,22.45,22.65,22.72,22.9,23.06,23.01,23.08,23.12,23.12,23.06,23.19,23.15,23.1,23.28,23.19,23.26,23.24,23.12,23.15,23.08,23.1,23.03,23.01,23.03,22.97,23.06,22.88,22.99,23.08,23.1,23.08,23.15,23.06,23.01,22.92,23.06,23.1,23.08,22.97,22.88,22.92,22.94,22.79,22.81,22.9,22.9,22.92,22.92,22.88,23.06,22.81,22.94,22.81,23.1,22.92,23.01,22.81,22.88,22.94,22.99,22.83,22.88,22.9,23.06,22.99,22.9,22.92,22.9,22.97,22.85,22.85,22.81,22.85,22.83,22.88,22.81,22.4,21.99,21.99,21.94,22.2,22.15,22.33,22.42,22.45,22.42,22.22,22.08,22.1,22.01,21.99,22.01,22.13,21.94,21.83,21.76,21.85,21.83,21.83,21.94,22.13,22.17,22.26,22.1,22.08,22.22,22.22,22.22,22.45,22.4,22.49,22.2,22.24,22.29,22.1,22.4,22.31,22.2,22.13,21.99,22.26,22.06,21.94,22.2,22.1,22.04,21.92,21.9,22.13,22.08,21.99,21.83,21.94,22.01,21.92,21.92,21.85,21.62,21.35,20.73,20.26,19.64,19.71,19.66,19.61,19.78,19.75,19.99,20.05,20.22,20.12,23.31,22.99,22.94,22.81,22.65,22.4,22.15,22.24,21.83,22.06,21.88,21.78,21.97,21.92,22.04,22.01,21.94,21.81,22.2,22.51,22.74,23.03,22.94,22.92,23.03,23.22,23.35,23.06,23.03,23.19,23.08,23.01,23.12,23.17,23.22,23.19,23.03,23.17,23.22,23.31,23.4,23.24,23.28,23.42,23.33,23.22,23.33,23.28,23.44,23.35,23.37,23.22,23.17,23.4,23.35,23.26,23.37,23.33,23.35,23.49,23.51,23.31,23.4,23.37,23.37,23.35,23.4,23.19,23.44,23.37,23.46,23.28,23.31,23.42,23.37,23.42,23.28,23.37,23.19,23.26,23.26,23.01,22.99,22.83,22.6,22.6,22.72,22.72,22.81,22.74,22.99,22.79,22.72,22.85,22.99,22.99,23.15,23.22,23.33,23.22,23.26,23.28,23.31,23.26,23.15,23.12,23.35,23.44,23.17,23.42,23.31,23.33,23.26,23.15,23.31,23.22,23.19,23.01,23.17,23.33,23.33,23.22,23.22,23.19,23.33,23.28,23.19,23.26,23.33,23.24,23.19,23.12,23.24,23.31,23.15,23.1,23.15,23.15,23.17,23.22,23.15,23.31,23.03,23.08,23.08,23.1,23.06,23.12,23.15,23.26,23.28,23.17,23.28,23.31,23.08,23.17,23.17,23.31,23.17,23.03,23.17,23.17,23.15,22.94,22.81,22.67,22.31,22.33,22.33,22.74,22.79,22.81,22.94,23.08,23.01,22.97,23.08,23.17,23.01,23.06,23.03,23.08,23.24,23.17,23.15,23.19,22.97,23.1,23.03,23.17,23.03,23.12,23.01,22.9,22.88,22.9,22.9,23.01,22.99,22.92,22.92,23.01,22.97,23.06,23.08,22.99,23.06,22.85,22.81,22.92,22.85,22.97,22.88,22.9,22.83,22.85,22.88,22.97,22.85,22.83,22.94,22.9,23.01,22.81,22.76,22.74,22.83,22.92,22.72,22.83,22.97,22.88,22.76,23.12,22.97,22.74,22.83,22.79,22.67,22.88,22.79,22.81,22.72,22.56,22.56,22.38,21.99,21.88,21.94,22.2,22.31,22.47,22.49,22.31,22.42,22.33,22.29,22.15,22.15,22.08,22.15,22.06,21.92,21.74,21.78,21.78,21.62,21.69,21.62,21.81,21.88,22.01,21.9,21.81,22.01,21.97,22.04,22.13,21.99,22.26,22.1,22.33,22.08,22.17,22.2,22.1,22.1,22.1,21.92,21.92,21.99,21.88,21.88,22.04,22.04,21.92,21.92,21.88,21.88,21.85,21.94,21.9,21.92,21.94,21.67,21.72,21.33,21.0,20.33,20.03,19.61,19.64,19.73,19.61,19.73,19.82,19.8,20.03,19.96,20.01,23.55,23.4,23.01,22.92,22.92,22.72,22.38,22.42,22.2,22.2,21.83,21.81,22.01,21.76,21.85,21.88,21.92,21.85,22.17,22.33,22.7,22.88,22.9,23.1,23.17,23.06,23.01,22.99,22.94,22.83,23.31,23.24,23.08,23.03,23.08,23.17,23.19,23.1,23.22,23.15,22.99,23.35,23.46,23.22,23.26,23.26,23.26,23.22,23.42,23.44,23.49,23.33,23.22,23.15,23.44,23.33,23.46,23.4,23.31,23.42,23.24,23.28,23.26,23.53,23.26,23.35,23.37,23.33,23.26,23.35,23.42,23.35,23.35,23.42,23.35,23.37,23.19,23.4,23.24,23.1,23.1,23.03,23.03,22.6,22.54,22.45,22.65,22.83,22.79,22.81,22.92,22.85,22.7,22.7,22.83,22.9,22.97,22.99,23.22,23.22,23.33,23.31,23.37,23.35,23.28,23.28,23.19,23.26,23.26,23.26,23.28,23.33,23.37,23.28,23.31,23.31,23.28,23.17,23.17,23.33,23.12,23.08,23.06,23.28,23.15,23.24,23.06,23.33,23.26,23.15,23.15,23.26,23.24,23.26,23.01,23.17,23.22,23.22,22.97,23.22,23.08,23.12,23.06,23.35,23.12,23.12,23.19,23.15,23.08,23.08,23.22,23.15,23.24,23.28,23.15,23.17,23.12,23.15,23.15,22.9,23.17,23.01,23.08,22.97,22.74,22.45,22.29,22.06,22.49,22.65,22.67,22.9,22.92,23.01,22.99,23.03,23.08,23.19,23.24,23.08,23.08,23.06,23.1,23.08,22.97,23.08,23.03,23.1,23.1,23.01,23.12,23.08,22.97,23.01,22.9,22.92,23.06,22.94,23.01,23.06,22.88,23.01,23.15,23.01,22.92,22.94,23.01,22.94,22.92,22.83,22.92,22.88,22.92,22.92,22.81,22.79,22.85,23.03,22.83,22.76,22.83,22.94,22.92,22.76,22.85,22.63,22.94,22.9,22.74,22.76,22.83,22.81,22.7,22.99,22.72,22.83,22.92,22.85,22.6,22.76,22.63,22.74,22.42,22.42,22.26,21.99,21.92,21.97,22.1,22.15,22.35,22.49,22.26,22.45,22.45,22.45,22.31,22.13,22.29,22.24,22.17,22.22,22.06,21.94,21.81,21.97,21.76,21.72,21.72,21.69,21.67,21.62,21.72,21.74,21.76,21.88,21.85,22.04,22.13,22.13,21.99,22.22,22.01,22.17,22.33,21.99,22.15,22.15,22.04,22.04,21.83,22.01,21.97,21.9,21.85,21.83,22.01,21.85,21.99,21.78,21.81,21.69,21.83,21.78,21.6,21.53,21.19,20.66,19.94,19.66,19.5,19.4,19.57,19.64,19.75,19.85,19.92,20.08,20.01,20.01,23.49,23.44,23.44,23.17,23.01,22.74,22.63,22.56,22.31,22.22,22.1,22.04,22.08,21.72,21.81,21.94,21.76,21.67,21.97,22.22,22.65,22.83,22.83,23.01,22.94,22.97,23.12,22.94,23.12,23.08,23.26,23.28,23.26,23.15,23.19,23.33,23.26,23.08,23.15,23.17,23.24,23.33,23.35,23.17,23.44,23.08,23.24,23.12,23.33,23.26,23.26,23.37,23.12,23.19,23.35,23.31,23.33,23.31,23.46,23.62,23.37,23.42,23.31,23.37,23.35,23.51,23.4,23.26,23.24,23.19,23.46,23.37,23.33,23.33,23.31,23.19,23.4,23.35,23.37,23.17,23.17,23.03,22.85,22.45,22.56,22.4,22.51,22.79,23.06,22.97,22.99,23.03,22.81,22.85,22.88,22.83,22.92,22.79,22.81,23.15,23.08,23.4,23.19,23.26,23.26,23.4,23.17,23.26,23.19,23.17,23.28,23.1,23.31,23.44,23.35,23.33,23.22,23.1,23.19,23.33,23.22,23.22,23.15,23.28,23.24,23.15,23.22,23.19,23.22,23.12,23.24,23.08,23.35,23.17,23.1,23.17,23.22,23.08,23.26,23.19,23.17,23.12,23.22,23.15,23.01,23.17,23.08,23.22,23.1,23.22,23.19,23.06,23.31,23.24,23.22,23.1,23.31,23.28,23.28,23.12,23.03,23.01,23.1,22.85,22.6,22.47,22.13,22.22,22.56,22.63,22.79,23.06,22.99,23.06,23.06,23.1,23.03,23.12,23.06,23.06,22.99,22.99,23.06,23.12,23.19,23.08,23.12,23.06,23.08,23.19,23.03,23.17,22.99,23.03,22.85,22.79,23.01,23.1,23.06,23.01,23.03,23.1,23.06,22.85,22.9,22.92,22.88,22.88,22.92,22.99,22.94,22.88,22.9,22.88,22.63,22.79,22.76,22.72,22.76,22.83,22.88,22.74,22.85,22.85,22.81,22.97,22.76,22.97,22.72,22.7,22.74,22.83,22.79,22.79,22.85,22.83,22.72,22.79,22.72,22.88,22.85,22.81,22.38,22.35,22.26,22.01,21.83,22.2,22.29,22.22,22.33,22.56,22.47,22.33,22.49,22.49,22.42,22.26,22.33,22.49,22.29,22.35,22.22,22.06,22.2,21.9,21.88,22.04,21.9,21.62,21.58,21.6,21.65,21.67,21.65,21.65,21.62,21.72,21.76,21.85,21.85,21.97,21.78,22.15,22.17,22.06,22.01,22.06,21.9,21.81,21.85,21.81,22.01,21.83,21.78,21.83,21.72,22.06,21.99,21.81,21.53,21.81,21.78,21.65,21.6,21.14,20.68,20.24,19.8,19.38,19.57,19.47,19.78,19.73,19.78,19.85,19.96,20.03,20.19,20.19,23.51,23.46,23.35,23.22,23.06,23.17,23.06,22.88,22.4,22.4,22.42,22.22,22.26,22.06,22.13,21.88,21.88,21.42,21.92,22.1,22.35,22.7,22.74,22.76,22.92,22.99,22.94,22.83,22.92,22.99,23.31,23.03,23.1,23.12,23.12,23.12,23.08,23.08,23.03,23.17,23.35,23.35,23.28,23.08,23.33,23.31,23.26,23.33,23.28,23.33,23.28,23.15,23.17,23.26,23.37,23.26,23.44,23.44,23.26,23.53,23.42,23.44,23.35,23.31,23.28,23.24,23.4,23.28,23.49,23.37,23.35,23.37,23.37,23.31,23.15,23.37,23.19,23.31,23.33,23.33,23.15,22.92,22.67,22.58,22.47,22.35,22.51,22.85,23.01,22.99,23.12,22.81,22.88,22.97,22.83,22.9,22.9,22.72,22.88,22.9,22.97,23.01,23.08,22.94,23.1,23.26,23.15,23.24,23.26,23.17,23.15,23.15,23.22,23.42,23.22,23.35,23.17,23.1,23.17,23.26,23.26,23.19,23.03,23.17,23.4,23.1,23.12,23.24,23.19,23.22,23.33,23.28,23.22,23.06,23.15,23.08,23.1,22.99,22.99,23.1,23.12,23.19,23.17,23.33,23.33,23.03,23.03,23.12,23.26,23.12,23.24,23.15,23.24,23.01,23.26,23.26,23.1,23.06,23.06,22.83,23.08,22.83,22.99,22.63,22.49,22.29,22.17,22.26,22.51,22.74,22.97,22.99,23.03,23.12,23.03,23.12,22.97,23.08,23.15,22.99,23.08,23.22,23.03,22.97,22.99,22.92,23.08,23.06,22.99,22.97,22.9,22.9,22.85,23.01,22.97,22.83,22.99,22.99,23.03,23.01,23.03,22.99,23.08,23.08,22.9,22.94,22.94,22.72,22.81,22.94,22.76,22.92,22.88,22.65,22.76,22.54,22.7,22.85,22.54,22.83,22.72,22.74,22.76,22.76,22.7,22.79,22.9,22.85,22.76,22.74,22.74,22.76,23.01,22.9,22.81,22.79,22.72,22.83,22.67,22.76,22.81,22.63,22.2,22.1,22.1,21.88,21.92,22.31,22.31,22.42,22.54,22.49,22.26,22.42,22.24,22.56,22.45,22.26,22.31,22.29,22.06,22.24,22.29,22.17,22.22,22.22,22.13,22.06,21.94,21.97,21.78,21.74,21.53,21.58,21.44,21.51,21.6,21.46,21.6,21.46,21.72,21.72,21.72,21.85,21.9,21.9,21.83,21.74,21.81,21.81,21.78,21.92,21.85,21.94,21.81,21.74,21.83,21.9,21.81,21.81,21.88,21.69,21.72,21.58,21.33,20.84,20.38,19.87,19.73,19.47,19.61,19.57,19.92,19.66,19.82,19.96,19.85,19.96,20.17,20.01,23.58,23.62,23.53,23.42,23.31,23.15,23.17,23.12,22.81,22.72,22.6,22.56,22.65,22.54,22.29,22.01,22.08,21.88,22.13,21.85,22.26,22.56,22.33,22.58,22.85,22.85,22.9,23.06,23.06,22.9,23.12,23.1,23.06,23.1,23.22,23.1,23.24,23.22,23.12,23.24,23.12,23.31,23.17,23.17,23.26,23.33,23.28,23.31,23.15,23.26,23.28,23.28,23.1,23.28,23.19,23.17,23.24,23.42,23.58,23.55,23.58,23.35,23.37,23.37,23.26,23.26,23.46,23.35,23.35,23.46,23.22,23.42,23.33,23.28,23.15,23.42,23.42,23.31,23.35,23.26,23.08,23.08,22.74,22.65,22.42,22.38,22.67,23.01,23.15,23.12,23.1,22.99,22.94,23.17,23.08,22.97,23.03,22.88,22.81,22.92,23.06,22.79,22.94,22.83,22.99,23.06,22.97,23.08,23.15,23.31,23.31,23.31,23.22,23.35,23.31,23.28,23.22,23.24,23.1,23.24,23.24,23.26,23.26,23.28,23.35,23.22,23.31,23.1,23.4,23.17,23.33,23.17,23.19,23.19,23.1,23.12,23.17,23.24,23.17,23.06,23.06,23.06,23.19,23.17,23.12,23.06,23.1,23.17,23.19,23.06,23.1,23.03,23.1,23.15,23.26,23.19,23.24,23.31,23.24,22.99,23.03,22.88,22.83,22.63,22.4,22.29,22.15,22.26,22.67,22.7,22.9,23.06,23.22,22.99,23.08,23.06,23.15,23.08,22.97,23.08,22.94,23.03,23.08,23.08,23.06,23.08,22.83,22.97,22.99,23.01,23.06,23.12,22.85,22.97,23.01,22.9,22.88,23.08,23.08,23.01,23.06,23.06,23.06,23.08,22.92,22.83,23.06,22.79,22.88,22.83,22.76,22.83,22.72,22.83,22.65,22.58,22.65,22.79,22.72,22.83,22.74,22.72,22.79,22.9,22.65,22.88,22.76,22.85,22.74,22.83,22.92,22.83,22.76,22.72,22.7,22.74,22.81,22.92,22.63,22.67,22.74,22.26,22.13,22.01,22.04,21.88,22.06,22.22,22.15,22.42,22.67,22.6,22.33,22.6,22.56,22.45,22.33,22.45,22.45,22.29,22.38,22.29,22.33,22.29,22.33,22.29,22.06,22.2,22.1,22.06,21.78,21.88,21.69,21.6,21.6,21.4,21.65,21.4,21.49,21.44,21.26,21.51,21.46,21.65,21.74,21.76,21.81,21.74,21.83,21.9,21.72,21.78,21.81,21.74,21.85,21.88,22.08,21.85,21.83,21.74,21.51,21.65,21.51,21.33,20.91,20.59,19.89,19.42,19.45,19.54,19.54,19.54,19.68,19.64,19.78,19.73,19.78,19.99,19.96,20.08,23.6,23.66,23.6,23.46,23.33,23.08,23.35,23.26,23.12,22.81,22.85,22.81,22.72,22.35,22.51,22.38,22.35,22.08,22.15,21.74,22.24,22.33,22.33,22.54,22.7,22.76,22.76,22.81,22.88,22.97,23.01,22.97,23.15,23.17,23.08,23.15,23.19,23.19,23.31,23.24,23.15,23.24,23.24,23.22,23.33,23.19,23.06,23.1,23.31,23.33,23.37,23.35,23.24,23.19,23.24,23.37,23.19,23.37,23.44,23.37,23.53,23.26,23.31,23.35,23.35,23.26,23.4,23.35,23.31,23.46,23.44,23.31,23.49,23.37,23.44,23.33,23.46,23.33,23.31,23.17,23.03,22.88,22.67,22.45,22.58,22.56,22.81,23.15,23.24,22.9,23.19,23.12,23.24,23.1,23.19,23.03,22.99,23.03,23.06,23.06,22.97,22.97,22.88,22.99,22.88,23.06,23.06,22.83,23.03,23.22,23.42,23.26,23.15,23.33,23.37,23.26,23.28,23.24,23.22,23.35,23.35,23.35,23.24,23.17,23.17,23.28,23.24,23.26,23.24,23.28,23.17,23.22,23.31,23.37,23.22,23.22,23.19,23.08,23.08,23.12,23.06,23.19,23.08,23.19,23.12,23.15,23.12,23.15,23.22,23.06,23.15,23.15,23.01,23.15,23.28,23.19,23.15,23.08,23.1,23.1,23.03,22.92,22.72,22.47,22.33,22.4,22.35,22.45,22.81,22.99,23.08,23.03,22.97,23.08,23.01,23.28,23.19,23.01,23.08,23.01,23.03,23.08,22.9,23.06,23.08,23.08,22.97,23.01,22.97,23.15,22.99,23.22,22.99,23.01,22.92,22.88,23.01,22.94,23.06,23.01,22.97,23.01,23.1,23.03,22.85,23.06,23.06,22.9,22.88,22.83,22.76,22.72,22.99,22.92,22.81,22.76,22.92,22.94,22.83,22.88,22.85,22.81,22.83,22.74,22.83,22.81,22.85,22.85,22.9,22.88,22.9,22.92,22.79,22.85,22.7,22.85,22.83,22.83,22.76,22.7,22.58,22.38,22.06,22.06,22.08,21.9,22.17,22.45,22.45,22.54,22.42,22.56,22.54,22.45,22.47,22.42,22.33,22.24,22.47,22.51,22.4,22.33,22.33,22.47,22.38,22.33,22.17,22.33,22.22,22.24,22.06,22.1,21.94,21.85,21.78,21.72,21.6,21.56,21.42,21.44,21.4,21.44,21.3,21.51,21.62,21.56,21.67,21.51,21.69,21.74,21.85,21.72,21.65,21.72,21.92,21.9,21.9,21.81,21.83,21.76,21.78,21.56,21.42,21.14,20.59,20.19,19.75,19.54,19.5,19.5,19.73,19.59,20.01,19.61,19.87,19.92,19.85,19.8,19.89,20.24,23.71,23.75,23.55,23.44,23.46,23.46,23.42,23.24,23.17,23.19,22.99,22.83,22.85,22.65,22.65,22.49,22.33,22.08,22.13,22.13,22.17,22.49,22.31,22.33,22.47,22.49,22.56,22.7,22.72,22.97,23.01,22.94,22.97,22.94,23.08,23.12,23.06,23.08,23.17,23.19,23.24,23.24,23.24,23.08,23.24,23.22,23.1,22.97,23.44,23.24,23.33,23.1,23.06,23.15,23.26,23.26,23.08,23.33,23.26,23.35,23.49,23.26,23.33,23.58,23.24,23.4,23.31,23.51,23.31,23.24,23.42,23.33,23.37,23.22,23.31,23.37,23.33,23.19,23.22,23.12,22.9,22.65,22.47,22.54,22.33,22.51,22.81,23.15,23.35,23.12,23.08,23.12,23.15,23.15,23.12,23.01,23.08,23.06,23.01,23.03,23.06,23.1,22.9,22.97,22.83,22.85,22.81,22.76,23.06,23.1,23.1,23.17,22.99,23.19,23.33,23.17,23.26,23.15,23.08,23.12,23.22,23.19,23.08,23.28,23.33,23.24,23.17,23.19,23.28,23.26,23.1,23.1,23.26,23.28,23.1,23.15,23.06,23.06,23.03,23.1,23.17,23.1,23.17,23.15,22.99,23.06,23.08,23.17,23.24,23.22,23.15,23.03,23.1,23.12,23.12,23.17,23.12,23.06,23.06,22.94,22.83,22.65,22.63,22.33,22.29,22.4,22.49,22.58,22.88,22.81,23.06,23.06,23.01,23.1,23.03,23.08,23.12,22.99,22.94,22.9,23.1,23.03,22.97,22.99,23.03,23.08,22.99,23.08,23.1,23.03,22.92,22.99,22.94,23.01,22.76,22.85,22.97,22.99,22.85,22.88,23.01,23.01,23.03,22.88,22.88,23.06,23.01,22.83,22.88,22.9,22.76,22.83,22.79,22.74,22.79,22.76,22.79,22.9,22.83,22.92,22.7,22.79,22.9,22.65,22.74,22.65,22.81,22.92,22.88,22.79,22.81,22.81,22.83,22.7,22.85,22.74,22.79,22.7,22.76,22.7,22.38,22.13,21.94,22.08,22.06,22.24,22.17,22.31,22.35,22.38,22.6,22.6,22.47,22.49,22.4,22.56,22.26,22.42,22.47,22.47,22.4,22.33,22.33,22.29,22.38,22.29,22.24,22.35,22.4,22.49,22.15,22.13,22.08,21.76,21.94,21.74,21.76,21.69,21.56,21.56,21.4,21.28,21.37,21.21,21.35,21.46,21.42,21.42,21.21,21.44,21.44,21.65,21.67,21.49,21.72,21.69,21.83,21.65,21.67,21.72,21.81,21.35,21.4,20.84,20.24,19.94,19.64,19.57,19.45,19.59,19.61,19.61,19.78,19.87,19.94,20.1,20.15,19.87,19.99,20.19,23.84,23.75,23.64,23.46,23.44,23.55,23.28,23.64,23.17,23.22,23.15,23.03,23.01,22.72,22.76,22.63,22.49,22.45,22.31,22.33,22.42,22.2,22.4,22.35,22.38,22.4,22.35,22.47,22.6,22.63,22.83,22.92,22.99,22.94,23.06,23.08,23.06,23.08,22.99,23.01,23.19,23.28,23.37,23.08,23.24,23.24,23.19,23.1,23.19,23.24,23.12,23.17,23.15,23.31,23.35,23.4,23.49,23.33,23.4,23.49,23.33,23.22,23.4,23.17,23.37,23.19,23.33,23.31,23.42,23.37,23.31,23.42,23.35,23.26,23.28,23.4,23.19,23.46,23.26,23.12,23.08,22.74,22.42,22.54,22.54,22.72,22.94,23.19,23.24,22.99,23.15,23.19,23.26,23.08,23.12,23.19,23.17,23.24,23.19,23.19,23.1,22.81,23.01,23.03,22.83,23.03,22.81,22.76,22.97,22.92,23.01,22.88,23.1,23.12,23.08,23.24,23.17,23.1,23.08,23.37,23.26,23.35,23.19,23.28,23.24,23.26,23.19,23.35,23.37,23.17,23.22,23.28,23.28,23.26,23.1,23.15,23.22,23.15,23.12,23.1,23.12,23.15,23.26,23.19,23.22,23.15,23.08,23.22,23.17,23.17,23.19,23.22,23.19,23.17,23.12,23.01,23.1,23.03,23.06,22.99,22.88,22.65,22.42,22.38,22.22,22.38,22.47,22.72,22.97,22.97,22.97,22.94,23.12,23.22,23.1,23.01,23.12,23.06,23.01,23.12,23.08,23.15,23.1,23.15,23.12,23.06,22.94,23.06,22.97,23.01,23.17,23.06,22.88,22.99,22.99,23.1,23.03,23.06,22.97,23.01,22.99,23.01,23.01,22.9,22.76,22.74,22.81,22.97,22.88,22.99,22.72,22.74,22.9,22.79,22.76,22.9,22.76,22.74,22.76,22.88,22.79,22.74,22.81,22.7,22.79,22.72,22.74,22.9,22.81,22.83,22.7,22.67,22.79,22.88,22.79,22.83,22.79,22.79,22.72,22.45,22.24,22.1,21.99,22.08,22.35,22.26,22.33,22.24,22.31,22.45,22.67,22.49,22.54,22.38,22.45,22.6,22.33,22.4,22.45,22.51,22.33,22.33,22.29,22.29,22.35,22.26,22.26,22.31,22.31,22.31,22.31,22.22,22.33,22.1,22.13,21.99,22.01,21.76,21.83,21.81,21.65,21.49,21.42,21.46,21.42,21.05,21.26,21.1,21.12,21.37,21.19,21.56,21.51,21.62,21.51,21.56,21.65,21.67,21.69,21.49,21.53,21.46,21.03,20.33,20.15,19.82,19.66,19.35,19.5,19.68,19.68,19.54,19.78,19.92,20.03,20.01,20.1,19.94,20.01,20.08,23.93,23.73,23.71,23.73,23.64,23.4,23.46,23.58,23.44,23.15,23.12,23.03,23.12,22.97,22.88,22.74,22.7,22.35,22.63,22.56,22.45,22.42,22.47,22.47,22.42,22.2,22.35,22.17,22.35,22.4,22.7,22.74,22.9,22.85,23.12,23.08,22.94,23.06,22.94,23.06,22.97,23.19,23.22,23.12,23.19,23.08,23.1,23.26,23.17,23.28,22.92,23.01,23.24,23.37,23.26,23.49,23.37,23.15,23.35,23.19,23.24,23.28,23.1,23.24,23.26,23.37,23.35,23.24,23.4,23.26,23.44,23.42,23.4,23.31,23.19,23.19,23.15,23.26,23.15,23.01,22.9,22.7,22.4,22.56,22.6,22.92,23.1,23.26,23.22,23.1,23.19,23.1,23.33,23.37,23.19,23.15,23.28,23.19,23.1,23.22,23.15,23.22,23.12,23.15,22.99,23.01,23.06,22.88,22.79,22.9,22.97,22.81,22.76,22.99,22.99,23.17,22.97,23.08,23.22,23.28,23.22,23.31,23.17,23.08,23.12,23.1,23.31,23.22,23.15,23.22,23.33,23.24,23.35,23.26,23.01,23.22,23.24,23.15,23.12,23.1,23.12,23.22,23.22,23.19,23.15,23.12,23.12,23.17,23.12,23.1,23.17,23.08,23.17,23.01,23.26,23.12,23.1,22.9,22.94,22.81,22.81,22.58,22.6,22.4,22.33,22.47,22.51,22.97,22.97,22.99,23.01,23.01,23.03,23.1,23.08,23.12,23.15,23.03,22.97,23.06,23.01,23.12,23.12,23.28,22.97,23.06,23.08,22.9,22.9,23.01,23.15,22.99,22.88,22.88,23.01,22.94,23.06,23.06,22.83,22.99,22.85,22.83,22.94,22.92,22.72,22.88,23.03,23.06,22.85,22.79,22.83,22.72,22.65,22.67,22.76,22.81,22.76,22.9,22.79,22.79,22.76,22.63,22.9,22.63,22.67,22.74,22.83,22.76,22.85,22.81,22.79,22.79,22.67,22.85,22.74,22.81,22.67,22.76,22.54,22.17,21.99,21.92,21.99,22.22,22.4,22.35,22.42,22.42,22.38,22.49,22.49,22.67,22.54,22.49,22.42,22.31,22.51,22.49,22.58,22.35,22.29,22.42,22.33,22.26,22.33,22.31,22.38,22.29,22.47,22.2,22.38,22.35,22.24,22.17,21.99,21.94,22.06,21.88,21.92,21.97,21.67,21.72,21.62,21.58,21.56,21.26,21.37,21.23,21.26,21.03,21.0,21.19,21.17,21.35,21.26,21.58,21.37,21.53,21.44,21.53,21.35,21.14,20.77,20.17,20.05,19.85,19.5,19.45,19.54,19.59,19.61,19.75,19.8,19.82,20.01,20.08,20.15,19.82,20.1,20.22,23.84,23.84,23.89,23.64,23.58,23.53,23.53,23.46,23.33,23.26,23.26,22.9,23.08,23.01,22.88,22.92,22.76,22.56,22.67,22.56,22.72,22.63,22.6,22.29,22.38,22.29,22.31,22.13,22.1,22.31,22.49,22.49,22.63,22.6,22.88,22.9,22.92,22.76,23.03,23.08,23.1,23.28,23.26,23.22,23.15,23.12,23.1,23.22,23.19,23.15,23.35,23.26,23.22,23.24,23.46,23.42,23.1,23.31,23.42,23.17,23.35,23.35,23.31,23.19,23.28,23.33,23.44,23.35,23.28,23.37,23.35,23.28,23.37,23.17,23.12,23.19,23.22,23.24,23.01,23.01,22.79,22.7,22.54,22.51,22.63,22.88,23.12,23.19,23.28,23.06,23.08,23.28,23.17,23.22,23.19,23.17,23.19,23.19,23.19,23.22,23.31,23.26,23.15,23.17,23.1,23.1,23.03,22.94,22.94,22.74,22.85,22.67,22.74,22.72,22.85,22.85,22.9,23.12,23.03,23.19,23.1,23.28,23.17,23.19,23.24,23.19,23.37,23.26,23.12,23.19,23.28,23.19,23.28,23.37,23.28,23.08,23.24,23.01,23.15,23.06,23.08,23.15,23.12,23.17,23.15,23.19,23.12,23.31,23.24,23.01,23.06,23.03,23.08,23.03,23.08,23.19,22.99,22.97,22.97,22.85,22.67,22.49,22.4,22.29,22.45,22.6,22.7,22.85,23.06,23.19,23.1,23.15,23.12,23.1,23.19,23.06,23.17,23.17,23.06,23.03,23.08,23.03,23.06,23.12,23.06,22.94,23.03,22.97,23.12,23.15,23.06,23.06,23.22,23.01,23.06,22.92,22.92,22.97,23.06,23.06,22.99,22.99,22.94,22.88,22.85,22.9,22.9,22.9,22.99,22.9,22.72,22.79,22.72,22.79,22.72,22.81,22.7,22.79,22.83,22.83,22.76,22.81,22.79,22.72,22.85,22.65,22.72,22.7,22.85,22.81,22.9,22.7,22.76,22.9,23.01,22.72,22.83,22.67,22.35,22.17,21.92,21.9,21.81,22.31,22.47,22.54,22.4,22.38,22.35,22.49,22.51,22.63,22.6,22.42,22.4,22.47,22.29,22.38,22.45,22.47,22.33,22.33,22.35,22.29,22.26,22.2,22.33,22.29,22.42,22.35,22.4,22.38,22.22,22.08,22.17,22.29,22.13,22.15,21.76,22.01,21.76,21.81,21.74,21.81,21.78,21.44,21.4,21.21,21.33,21.17,20.87,21.21,21.1,21.1,21.05,20.96,21.14,21.28,21.35,21.37,21.21,20.66,20.29,19.82,19.71,19.59,19.45,19.54,19.57,19.71,19.59,19.73,19.99,19.89,20.05,19.96,20.08,20.1,20.19,20.05,23.96,23.91,23.8,23.64,23.62,23.55,23.51,23.31,23.33,23.19,23.24,23.08,22.9,23.08,22.92,22.88,22.83,22.7,22.83,22.85,22.79,22.85,22.7,22.65,22.72,22.38,22.47,22.42,22.17,22.22,22.4,22.38,22.49,22.58,22.72,22.72,22.92,22.81,23.12,22.99,22.97,23.06,23.19,23.06,23.19,23.22,23.15,23.22,23.08,23.12,23.33,23.26,23.35,23.19,23.33,23.19,23.31,23.17,23.28,23.26,23.33,23.17,23.44,23.35,23.31,23.49,23.37,23.33,23.33,23.19,23.31,23.24,23.4,23.42,23.28,23.24,23.12,23.17,23.1,22.74,22.81,22.81,22.58,22.35,22.72,23.03,23.19,23.33,23.28,23.35,23.33,23.22,23.35,23.17,23.17,23.33,23.24,23.12,23.33,23.28,23.31,23.22,23.15,23.22,23.22,23.12,23.15,23.08,23.06,22.94,22.83,22.79,22.72,22.79,22.88,22.79,22.76,22.72,22.88,23.06,23.08,23.06,23.12,23.08,23.15,23.19,23.19,23.1,23.31,23.24,23.42,23.31,23.22,23.4,23.17,23.06,22.99,23.03,23.08,23.06,23.12,22.99,23.26,23.24,23.12,23.17,22.99,23.28,23.15,23.15,23.06,23.19,23.19,23.17,23.03,23.19,23.17,23.1,22.97,22.81,22.42,22.4,22.4,22.51,22.58,22.79,22.85,22.74,23.19,22.81,23.08,23.1,23.08,23.19,23.12,23.28,23.01,23.06,22.99,23.03,23.03,23.1,23.08,22.99,23.06,23.01,23.01,23.01,23.06,23.1,22.79,23.06,22.94,23.08,22.92,22.97,22.83,22.85,22.92,22.85,23.01,23.08,23.06,22.81,22.88,22.9,22.92,22.9,22.94,22.88,22.9,22.72,22.85,22.81,22.56,22.88,22.63,22.74,22.83,22.76,22.83,22.85,22.97,22.81,22.67,22.58,22.72,22.83,22.99,22.85,22.72,22.72,22.65,22.76,22.7,22.74,22.54,22.42,22.15,22.08,21.9,21.99,22.04,22.17,22.56,22.56,22.4,22.4,22.38,22.35,22.42,22.56,22.49,22.38,22.49,22.31,22.26,22.31,22.42,22.49,22.42,22.35,22.38,22.2,22.42,22.31,22.38,22.24,22.17,22.38,22.2,22.22,22.17,22.1,22.17,22.08,22.04,22.01,21.92,22.1,22.08,21.94,21.83,21.74,21.74,21.6,21.49,21.42,21.33,21.21,20.91,21.1,21.26,21.1,21.0,20.87,21.03,21.1,21.12,20.87,20.87,20.45,19.96,19.73,19.73,19.59,19.38,19.94,19.54,19.45,19.89,19.92,19.89,19.99,20.19,19.87,19.92,20.05,20.33,20.29,23.87,23.78,23.8,23.78,23.42,23.64,23.53,23.44,23.26,23.22,23.17,23.03,23.03,22.99,22.81,22.9,22.94,22.92,22.76,22.9,23.19,22.92,22.85,22.94,22.79,22.56,22.45,22.17,22.2,22.08,22.29,22.51,22.24,22.33,22.54,22.63,22.6,22.72,22.94,23.06,22.97,23.08,22.83,22.94,23.17,23.06,22.97,23.19,23.19,23.17,23.1,23.24,23.24,23.17,23.24,23.19,23.26,23.35,23.37,23.28,23.33,23.22,23.06,23.4,23.17,23.35,23.37,23.31,23.26,23.17,23.49,23.31,23.37,23.42,23.22,23.22,23.22,23.08,22.88,22.83,22.67,22.6,22.56,22.7,22.85,23.03,23.24,23.31,23.31,23.28,23.28,23.19,23.24,23.15,23.15,23.15,23.26,23.15,23.17,23.31,23.31,23.26,23.24,23.24,23.06,23.17,22.97,23.03,23.1,23.22,22.9,22.99,22.85,22.97,22.97,22.81,22.72,22.67,22.63,22.67,22.76,22.94,23.03,22.99,23.17,23.15,23.15,23.26,23.17,23.24,23.24,22.99,23.1,23.15,23.17,23.08,23.08,22.92,23.17,23.12,23.15,22.99,23.19,23.15,23.22,23.03,23.03,23.17,23.19,23.08,23.15,23.01,23.17,23.17,23.17,23.06,23.26,23.03,22.83,22.58,22.4,22.24,22.33,22.45,22.54,22.81,22.88,22.94,23.12,23.24,22.97,22.88,23.08,23.15,23.17,23.15,23.1,22.97,22.92,22.99,23.1,23.01,23.03,22.92,22.88,23.01,22.99,22.92,22.88,22.94,22.88,22.85,22.92,23.1,22.81,22.92,22.9,23.01,23.1,22.94,23.03,22.83,22.88,22.92,22.92,22.85,22.79,22.79,22.94,22.97,22.88,22.88,22.85,22.79,22.56,22.81,22.76,22.65,22.72,22.7,22.76,22.67,22.92,22.63,22.74,22.74,22.79,22.76,22.67,22.83,22.83,22.81,22.88,22.81,22.63,22.67,22.35,22.2,22.04,21.92,21.97,22.06,22.26,22.24,22.42,22.42,22.45,22.42,22.4,22.42,22.51,22.42,22.33,22.4,22.35,22.33,22.49,22.29,22.29,22.2,22.31,22.33,22.31,22.29,22.35,22.35,22.31,22.2,22.26,22.33,22.24,22.35,22.1,21.99,22.08,22.26,22.1,22.06,22.1,21.85,21.99,22.04,21.88,21.92,21.9,21.78,21.72,21.6,21.23,21.33,21.35,21.17,21.28,20.91,20.94,20.84,20.94,20.77,20.84,20.59,20.33,20.08,19.85,19.66,19.66,19.73,19.45,19.54,19.57,19.75,19.73,19.99,20.03,19.87,19.92,20.24,20.15,19.94,20.17,20.38,23.98,23.91,23.8,23.66,23.51,23.46,23.49,23.37,23.22,23.12,23.24,23.22,23.06,22.99,22.85,22.99,23.01,23.01,22.99,23.06,23.17,23.24,23.03,23.15,23.06,22.81,22.76,22.63,22.49,22.33,22.47,22.26,22.29,22.31,22.26,22.4,22.47,22.54,22.79,22.83,23.1,23.08,23.12,23.06,23.06,22.99,23.17,23.26,23.26,23.24,23.28,23.28,23.31,23.22,23.33,23.24,23.31,23.26,23.31,23.24,23.31,23.17,23.35,23.37,23.26,23.03,23.12,23.15,23.24,23.19,23.33,23.37,23.42,23.33,23.17,23.12,23.15,22.99,22.88,22.83,22.72,22.67,22.47,22.79,22.9,23.12,23.22,23.19,23.31,23.26,23.28,23.17,23.24,23.24,23.31,23.06,23.24,23.28,23.22,23.33,23.51,23.31,23.24,23.28,23.28,23.24,23.28,23.17,23.22,23.1,23.06,23.17,23.03,23.12,22.94,22.74,22.81,22.45,22.58,22.7,22.85,22.85,22.76,22.76,22.92,23.22,23.22,23.35,23.19,23.1,23.33,23.19,23.28,23.33,23.12,23.03,23.1,23.1,22.99,23.15,23.17,23.12,23.17,23.12,23.17,22.92,23.06,23.12,23.06,23.01,23.06,23.01,23.26,23.15,22.94,23.06,23.01,23.12,22.79,22.49,22.42,22.31,22.38,22.54,22.76,22.9,22.99,23.17,23.31,23.1,23.17,23.19,23.08,23.08,23.08,22.94,23.08,23.03,22.97,22.99,23.01,22.99,23.15,23.06,22.99,23.01,22.92,23.08,23.12,23.08,22.81,22.9,23.01,23.15,22.88,22.79,22.97,22.99,22.97,22.94,22.9,23.08,23.03,22.83,22.9,23.03,22.88,22.85,22.88,22.85,22.79,22.9,22.88,22.83,22.72,22.81,22.7,22.74,22.76,22.7,22.56,22.81,22.85,22.76,22.76,22.7,22.9,22.79,22.83,22.76,22.85,22.6,22.74,22.85,22.6,22.6,22.31,22.24,21.9,21.78,22.04,22.26,22.35,22.47,22.45,22.47,22.58,22.49,22.58,22.49,22.49,22.56,22.56,22.56,22.35,22.29,22.33,22.24,22.24,22.06,22.2,22.26,22.33,22.06,22.49,22.4,22.42,22.31,22.29,22.26,22.22,22.33,22.04,22.22,22.26,22.17,22.13,21.92,22.1,22.08,22.17,22.22,21.97,21.85,21.99,21.88,21.69,21.58,21.42,21.42,21.56,21.42,21.46,21.21,21.17,20.89,20.8,20.77,20.59,20.38,20.08,19.8,19.71,19.57,19.66,19.57,19.45,19.57,19.68,19.71,19.8,19.75,19.96,19.99,19.92,20.19,20.03,20.17,20.33,20.24,23.93,23.98,23.73,23.44,23.91,23.6,23.49,23.44,23.15,23.31,23.08,23.15,23.1,23.08,23.1,22.99,23.24,23.1,23.4,23.37,23.49,23.46,23.44,23.24,23.22,23.24,23.19,22.97,22.79,22.67,22.67,22.42,22.51,22.31,22.22,22.15,22.33,22.26,22.42,22.67,22.74,22.79,23.1,23.06,22.99,23.01,23.08,23.17,23.03,23.15,23.4,23.26,23.19,23.22,23.19,23.26,23.17,23.33,23.26,23.19,23.46,23.28,23.44,23.28,23.17,23.4,23.46,23.28,23.22,23.19,23.35,23.4,23.35,23.4,23.24,23.24,23.1,23.15,23.1,22.67,22.56,22.51,22.67,22.9,22.92,23.22,23.15,23.22,23.49,23.26,23.28,23.19,23.44,23.37,23.44,23.15,23.22,23.15,23.28,23.37,23.4,23.24,23.33,23.24,23.24,23.33,23.06,23.31,23.28,23.17,23.15,23.24,23.03,23.06,22.99,22.92,23.01,22.85,22.65,23.06,22.81,22.79,22.67,22.63,22.79,23.1,23.12,23.12,23.1,23.19,23.19,23.35,23.26,23.19,23.1,23.31,23.28,22.92,23.22,23.1,23.19,23.19,23.26,23.17,23.06,23.01,23.12,23.17,23.24,23.19,23.31,23.08,23.17,23.28,23.12,23.17,23.03,22.81,22.67,22.29,22.45,22.35,22.51,22.7,22.74,23.1,22.88,23.12,23.19,23.15,23.17,23.19,22.97,23.19,23.17,23.06,23.03,23.03,23.12,23.03,23.06,23.08,23.26,23.17,22.99,22.97,22.92,23.15,23.06,23.19,22.97,23.06,22.99,23.1,22.94,23.06,22.99,22.99,23.12,22.94,22.97,22.92,23.12,23.12,22.83,22.9,23.06,22.94,23.1,22.88,22.92,22.88,22.83,22.7,22.81,22.92,22.76,22.74,22.79,22.65,22.72,22.83,22.83,22.72,22.83,22.85,22.92,22.76,22.83,22.85,22.74,22.83,22.79,22.76,22.58,22.51,22.42,22.08,21.88,22.01,22.17,22.29,22.45,22.42,22.51,22.54,22.58,22.51,22.63,22.65,22.76,22.4,22.45,22.6,22.51,22.42,22.29,22.24,22.38,22.47,22.29,22.42,22.31,22.24,22.38,22.49,22.26,22.31,22.24,22.56,22.31,22.29,22.31,22.13,22.15,22.04,22.2,22.17,22.15,22.06,22.17,22.13,22.06,21.92,22.15,21.92,21.83,21.83,21.78,21.62,21.67,21.62,21.76,21.58,21.49,21.21,20.98,20.89,20.5,20.19,19.82,19.66,19.71,19.82,19.59,19.71,19.61,19.89,19.85,19.85,19.75,19.94,20.1,20.17,19.96,20.19,20.05,20.12,20.38,20.36,23.71,23.78,23.89,23.8,23.53,23.44,23.44,23.4,23.17,23.37,22.94,22.94,22.99,23.19,23.01,23.17,23.15,23.12,23.4,23.4,23.62,23.31,23.44,23.4,23.35,23.28,23.28,23.1,22.94,22.56,22.6,22.65,22.42,22.33,22.29,22.4,22.4,21.99,22.26,22.24,22.54,22.76,22.97,22.83,22.85,22.97,22.99,22.81,22.97,23.01,23.1,23.19,23.15,23.15,23.15,23.12,23.37,23.24,23.12,23.1,23.31,23.22,23.19,23.19,23.1,23.22,23.31,23.28,23.22,23.12,23.24,23.19,23.33,23.06,23.19,23.15,23.19,23.08,22.81,22.51,22.67,22.67,22.76,22.81,23.03,23.19,23.12,23.22,23.31,23.1,23.24,23.22,23.19,23.28,23.31,23.19,23.26,23.17,23.28,23.37,23.03,23.24,23.44,23.26,23.12,23.35,23.28,23.15,23.15,23.17,23.17,23.08,23.1,23.28,23.12,23.03,23.15,23.12,22.83,22.85,22.72,22.65,22.72,22.72,22.74,22.72,22.81,22.9,22.94,22.99,23.01,23.03,23.1,23.31,23.24,23.17,23.1,23.06,23.12,23.17,23.22,23.19,23.1,23.01,23.15,23.24,23.03,23.1,23.17,23.12,23.22,23.19,23.15,23.01,22.97,23.08,22.85,22.63,22.51,22.2,22.35,22.35,22.67,22.81,22.85,22.9,22.81,23.19,23.08,23.01,22.97,23.1,23.12,23.22,23.1,23.12,23.03,23.08,23.1,22.92,23.03,23.06,23.08,23.06,23.01,22.85,22.97,23.01,23.35,23.22,22.9,22.99,23.08,23.1,22.85,22.92,23.1,22.9,22.99,22.97,22.85,22.99,22.88,22.9,22.9,22.85,22.99,23.06,23.01,22.9,22.65,22.79,22.83,22.74,22.67,22.74,22.83,22.79,22.67,22.58,22.76,22.56,22.74,22.7,22.76,22.76,22.79,22.72,22.76,22.58,22.74,22.72,22.79,22.79,22.58,22.31,22.08,22.1,21.97,22.1,22.2,22.45,22.47,22.58,22.51,22.54,22.47,22.31,22.51,22.49,22.63,22.35,22.4,22.47,22.4,22.38,22.2,22.4,22.33,22.29,22.29,22.33,22.22,22.35,22.17,22.26,22.2,22.31,22.35,22.22,22.29,22.31,22.13,22.04,22.15,21.85,21.99,22.08,22.13,22.13,21.97,21.94,21.97,22.01,21.97,21.88,21.76,21.74,21.72,21.76,21.78,21.69,21.67,21.53,21.49,21.33,21.14,20.89,20.45,20.03,19.82,19.52,19.59,19.33,19.78,19.68,19.5,19.66,19.78,19.68,19.82,19.92,20.08,20.01,20.08,20.29,20.33,20.1,20.26,20.33,23.73,23.89,23.69,23.6,23.51,23.58,23.53,23.44,23.22,23.26,23.06,23.06,23.17,23.31,23.37,23.33,23.28,23.4,23.69,23.44,23.6,23.75,23.64,23.53,23.42,23.35,23.35,23.22,23.19,23.08,22.97,22.81,22.63,22.56,22.31,22.49,22.08,22.13,22.04,21.97,22.31,22.54,22.54,22.67,22.56,22.9,22.76,23.06,23.06,23.03,23.1,23.08,23.17,23.24,23.17,23.08,23.19,23.19,23.19,23.33,23.19,23.22,23.15,23.24,23.12,23.15,23.33,23.15,23.26,23.08,23.24,23.19,23.31,23.28,23.22,23.24,23.06,22.9,22.76,22.58,22.67,22.72,22.83,22.99,23.12,23.31,23.19,23.31,23.35,23.26,23.28,23.12,23.24,23.19,23.19,23.12,23.26,23.4,23.42,23.28,23.44,23.4,23.33,23.31,23.22,23.19,23.26,23.24,23.33,23.35,23.28,23.06,23.28,23.28,23.06,22.94,23.08,22.92,22.85,23.01,23.06,22.74,22.83,22.74,22.79,22.76,22.85,22.79,22.81,22.7,22.79,22.81,23.01,22.92,23.17,23.12,22.94,22.99,23.12,23.12,23.12,23.15,23.17,23.17,22.9,22.88,23.01,23.26,23.01,23.12,23.26,23.08,23.12,22.99,22.99,22.99,22.92,22.56,22.42,22.26,22.42,22.58,22.67,22.92,23.01,23.06,23.12,23.1,23.15,22.99,23.22,23.1,23.1,23.01,23.1,23.08,23.08,23.08,22.92,23.01,22.94,23.08,23.15,22.92,22.94,23.06,23.12,22.97,22.92,23.01,22.92,23.01,23.06,22.99,22.88,22.92,22.85,22.9,23.08,22.9,23.06,22.92,22.94,22.85,22.74,22.92,22.9,22.74,22.76,22.97,22.79,22.81,22.9,22.81,22.76,22.7,22.7,22.72,22.85,22.81,22.67,22.6,22.7,22.76,22.74,22.35,22.72,22.74,22.72,22.67,22.81,22.76,22.85,22.6,22.35,22.15,22.06,22.06,22.06,22.2,22.33,22.38,22.4,22.51,22.6,22.51,22.56,22.45,22.58,22.56,22.54,22.38,22.47,22.4,22.4,22.54,22.24,22.31,22.33,22.15,22.22,22.47,22.26,22.22,22.13,22.29,22.2,22.13,22.06,22.29,22.38,22.33,21.99,22.1,22.01,21.9,22.1,21.88,22.15,22.04,21.9,21.76,21.88,21.78,22.06,21.72,21.78,21.9,21.72,21.69,21.76,21.74,21.51,21.67,21.53,21.42,21.23,20.63,20.29,19.94,19.47,19.5,19.28,19.38,19.75,19.75,19.82,19.73,19.75,19.92,19.85,19.92,20.22,19.96,20.05,20.03,20.17,20.15,20.05,20.33,23.91,23.73,23.53,23.55,23.73,23.6,23.44,23.33,22.94,23.28,23.03,22.99,23.1,23.26,23.19,23.44,23.33,23.35,23.51,23.53,23.62,23.66,23.49,23.46,23.71,23.49,23.53,23.37,23.33,23.24,23.31,22.76,22.88,22.54,22.63,22.7,22.33,22.22,22.15,22.22,22.17,22.35,22.47,22.31,22.33,22.54,22.67,23.01,22.92,22.88,22.9,23.12,23.12,23.06,23.17,23.06,23.15,23.15,23.1,23.33,23.35,23.06,23.1,23.22,23.31,23.24,23.33,23.22,23.28,23.17,23.19,23.15,23.15,23.08,23.28,23.08,22.97,22.72,22.7,22.42,22.56,22.7,22.94,23.08,23.19,23.06,22.92,23.24,23.44,23.33,23.28,23.06,23.19,23.31,23.35,23.26,23.33,23.15,23.17,23.46,23.37,23.37,23.42,23.4,23.19,23.17,23.19,23.33,23.26,23.31,23.31,23.19,23.22,23.12,23.06,23.15,23.22,23.03,23.17,22.99,23.1,23.06,22.97,22.85,22.81,22.72,22.88,22.85,22.83,22.67,22.72,22.51,22.7,22.81,22.63,23.03,22.97,22.94,23.03,23.17,23.24,23.24,23.22,23.03,23.15,23.17,23.08,23.06,22.99,23.06,23.08,23.17,23.15,23.1,23.08,22.9,22.63,22.38,22.26,22.29,22.42,22.58,22.79,22.83,22.97,23.06,23.03,23.12,23.19,23.08,22.9,22.92,23.06,23.15,23.03,23.1,23.01,23.06,22.97,23.03,23.01,22.92,23.03,22.97,22.74,22.94,23.01,23.03,22.85,22.9,22.85,22.88,22.97,23.01,22.99,22.85,22.99,22.97,23.03,23.12,22.94,23.03,22.92,22.85,22.79,22.85,22.94,22.97,22.65,22.94,22.81,22.81,22.81,22.79,22.72,22.67,22.65,22.81,22.72,22.79,22.56,22.81,22.83,22.45,22.72,22.74,22.74,22.6,22.65,22.6,22.79,22.92,22.76,22.49,22.24,22.15,22.01,21.97,22.06,22.15,22.22,22.4,22.54,22.63,22.72,22.58,22.49,22.4,22.58,22.56,22.42,22.6,22.45,22.33,22.29,22.31,22.4,22.33,22.35,22.26,22.2,22.22,22.35,22.17,22.29,22.17,22.22,22.31,22.33,22.38,22.29,22.29,22.04,22.01,21.94,21.81,22.06,21.92,21.94,21.97,22.08,21.94,21.94,21.74,21.92,21.9,21.83,21.92,21.81,21.76,21.67,21.56,21.67,21.62,21.37,21.37,20.89,20.5,20.03,19.94,19.35,19.4,19.45,19.64,19.68,19.78,19.87,19.92,19.94,19.66,19.99,19.87,20.03,20.15,20.08,20.01,20.17,20.17,20.05,20.26,24.16,23.84,23.66,23.62,23.6,23.51,23.15,23.4,23.19,23.33,23.22,23.31,23.35,23.4,23.51,23.46,23.55,23.62,23.89,23.73,23.69,23.84,23.78,23.66,23.8,23.58,23.6,23.58,23.58,23.31,23.28,23.35,23.22,23.06,22.9,22.99,22.74,22.38,22.4,22.31,22.17,22.56,22.31,22.38,22.45,22.49,22.63,22.76,22.9,22.99,23.06,23.19,23.15,23.08,23.4,23.19,23.28,23.12,23.12,23.33,23.33,23.17,23.42,23.42,23.44,23.31,23.55,23.49,23.24,23.28,23.4,23.08,23.31,23.31,23.24,23.1,23.12,22.83,22.85,22.4,22.79,22.85,22.99,23.24,23.42,23.33,23.19,23.42,23.46,23.37,23.4,23.15,23.35,23.26,23.24,23.35,23.26,23.28,23.37,23.4,23.46,23.49,23.49,23.37,23.31,23.28,23.35,23.24,23.44,23.28,23.35,23.26,23.22,23.31,23.17,23.31,23.37,23.08,23.19,23.17,23.24,23.1,23.01,23.08,23.08,22.99,23.03,22.88,22.92,22.76,22.7,22.72,22.72,22.74,22.6,22.83,22.85,22.79,22.85,23.19,23.17,23.26,23.19,23.17,23.22,23.31,23.24,23.26,23.03,23.28,23.31,23.35,23.22,23.1,23.17,22.81,22.58,22.56,22.38,22.42,22.7,22.72,23.06,23.06,23.1,23.06,23.06,23.17,23.12,23.06,23.17,23.08,23.24,23.15,23.26,23.26,23.12,23.1,23.03,23.06,22.99,23.19,23.17,23.15,23.08,22.97,23.08,23.1,23.06,23.12,22.97,22.99,23.08,23.26,22.97,22.97,23.01,22.88,22.97,23.03,23.15,22.92,23.12,22.94,22.7,22.99,23.15,23.03,22.97,22.94,22.88,22.72,22.9,22.92,22.85,22.81,22.76,22.83,22.76,22.74,22.67,22.74,22.85,22.65,22.92,22.85,22.85,22.72,22.76,22.74,22.83,22.92,22.7,22.6,22.2,22.2,22.08,22.15,22.29,22.49,22.47,22.49,22.54,22.7,22.6,22.6,22.54,22.47,22.6,22.72,22.76,22.72,22.45,22.51,22.54,22.47,22.29,22.29,22.35,22.42,22.29,22.33,22.29,22.22,22.29,22.26,22.38,22.26,22.31,22.4,22.24,22.31,22.06,22.04,22.17,22.2,22.01,21.83,22.06,22.13,22.04,21.9,21.88,21.99,22.2,21.9,21.81,21.85,21.9,21.83,21.81,21.62,21.72,21.76,21.46,21.21,20.77,20.33,19.92,19.85,19.64,19.54,19.78,19.73,19.71,19.82,19.89,19.92,19.85,19.87,20.12,20.22,20.1,20.12,20.08,20.36,20.31,20.29,20.33,20.17,23.98,23.89,24.18,23.82,23.6,23.58,23.35,23.37,23.26,23.44,23.35,23.37,23.44,23.62,23.6,23.75,23.62,23.78,23.89,23.64,23.71,23.82,23.64,23.78,23.98,24.0,23.71,23.53,23.64,23.6,23.64,23.55,23.46,23.42,23.08,23.26,22.92,22.79,22.65,22.51,22.42,22.6,22.49,22.49,22.49,22.22,22.45,22.58,22.51,22.79,23.03,22.9,23.1,23.22,23.26,23.1,23.26,23.22,23.17,23.26,23.26,23.35,23.28,23.33,23.28,23.44,23.4,23.4,23.26,23.26,23.19,23.22,23.37,23.37,23.12,23.24,22.97,22.85,22.51,22.58,22.72,22.94,23.31,23.24,23.35,23.26,23.46,23.42,23.37,23.42,23.24,23.33,23.55,23.42,23.4,23.06,23.44,23.44,23.42,23.33,23.55,23.33,23.33,23.49,23.37,23.44,23.44,23.37,23.31,23.46,23.44,23.26,23.35,23.33,23.26,23.31,23.35,23.06,23.22,23.24,23.33,23.12,23.22,22.99,23.15,23.06,23.1,23.15,22.97,22.74,22.83,22.67,22.76,22.65,22.54,22.6,22.65,22.6,22.6,22.88,23.08,23.12,22.92,23.15,23.28,23.24,23.17,23.22,23.15,23.06,23.4,23.24,23.1,23.01,22.99,22.67,22.6,22.35,22.54,22.49,22.79,22.83,23.08,23.06,23.01,23.08,22.9,23.12,23.19,23.22,23.1,23.03,23.19,23.24,23.08,23.19,23.35,22.99,23.12,23.15,23.08,23.15,23.12,23.1,22.99,23.03,23.08,22.99,23.1,23.03,23.12,23.06,23.19,23.03,23.01,22.94,22.85,22.85,22.88,22.92,22.92,22.9,23.08,22.99,22.99,23.03,22.9,22.92,22.99,22.94,23.01,22.94,22.99,23.1,22.92,22.79,22.79,22.9,22.67,22.9,22.79,22.81,22.88,22.7,22.85,22.85,22.79,22.94,22.76,22.79,22.88,22.7,22.65,22.38,22.1,22.1,22.15,22.42,22.38,22.51,22.56,22.42,22.42,22.6,22.56,22.56,22.56,22.35,22.56,22.6,22.67,22.54,22.6,22.58,22.47,22.42,22.38,22.49,22.42,22.4,22.49,22.38,22.31,22.2,22.26,22.26,22.26,22.06,22.24,22.29,22.31,22.35,22.1,22.13,22.2,22.08,22.08,22.04,22.13,22.06,21.94,21.97,22.06,21.81,21.97,21.72,21.85,21.74,21.9,21.88,21.78,21.76,21.78,21.67,21.23,20.7,20.31,19.92,19.54,19.45,19.71,19.75,19.89,19.89,20.03,19.89,19.94,19.99,19.99,20.12,20.08,20.19,20.33,20.15,20.33,20.36,20.26,20.47,20.43,20.38,24.09,23.73,23.75,23.58,23.58,23.44,23.26,23.37,23.08,23.22,23.17,23.28,23.42,23.6,23.64,23.75,23.75,23.69,23.78,23.71,23.98,23.93,23.84,23.66,23.62,23.62,23.69,23.58,23.69,23.73,23.6,23.44,23.46,23.37,23.37,23.46,23.28,22.92,22.9,22.74,22.65,22.49,22.33,22.45,22.38,22.35,22.1,22.38,22.24,22.45,22.76,22.67,22.76,22.9,23.06,23.01,23.1,23.08,23.03,23.28,23.28,23.24,23.06,23.24,23.24,23.42,23.33,23.26,23.28,23.19,23.19,23.37,23.33,23.24,23.1,23.19,22.85,22.63,22.6,22.51,22.79,22.99,23.12,23.44,23.35,23.46,23.42,23.28,23.49,23.33,23.33,23.28,23.33,23.37,23.31,23.31,23.31,23.51,23.37,23.46,23.35,23.22,23.42,23.46,23.24,23.31,23.37,23.37,23.44,23.33,23.44,23.37,23.37,23.33,23.33,23.26,23.26,23.24,23.28,23.31,23.31,23.26,23.24,23.12,23.19,23.1,23.1,23.06,23.06,22.97,22.92,22.83,22.83,22.58,22.63,22.65,22.51,22.51,22.51,22.67,22.74,22.79,22.92,23.06,23.06,23.08,23.28,23.28,23.22,23.15,23.19,23.22,23.12,23.03,22.7,22.54,22.58,22.49,22.49,22.67,22.83,22.88,23.1,22.99,22.99,23.12,23.12,23.08,23.06,23.01,23.03,23.1,23.06,23.12,23.12,23.19,23.01,23.1,23.03,23.06,23.1,23.03,23.06,23.19,22.97,22.97,23.08,23.08,23.1,23.1,23.08,23.08,23.17,23.06,22.92,22.99,23.01,22.74,22.94,22.92,22.99,22.94,23.03,22.94,23.03,23.01,23.06,23.03,22.81,23.03,22.88,22.83,22.76,22.92,22.81,22.79,22.72,22.85,22.92,22.9,22.88,22.9,22.9,22.72,22.79,22.88,22.81,22.79,22.65,22.79,22.81,22.67,22.4,22.2,22.01,22.08,22.31,22.31,22.42,22.6,22.56,22.47,22.47,22.63,22.54,22.49,22.45,22.4,22.49,22.47,22.51,22.58,22.49,22.47,22.4,22.38,22.35,22.35,22.31,22.47,22.31,22.35,22.31,22.06,22.24,22.26,22.24,22.26,22.24,22.38,22.17,22.1,22.17,22.2,22.17,22.06,21.97,21.9,22.06,22.01,21.9,21.81,21.99,21.83,22.04,21.85,21.69,21.67,21.74,21.76,21.65,21.42,21.56,21.3,20.8,20.47,20.1,19.66,19.59,19.59,19.57,19.5,19.52,19.82,20.17,20.24,20.08,20.03,20.01,19.99,19.99,19.96,20.15,20.22,20.36,20.19,20.24,20.33,20.31,20.4,23.93,23.98,23.73,23.53,23.46,23.37,23.22,23.69,23.22,23.26,23.37,23.33,23.46,23.66,23.78,23.87,24.02,23.8,23.78,23.82,23.98,23.93,23.71,23.82,24.02,23.91,23.75,23.64,23.6,23.73,23.66,23.69,23.6,23.53,23.58,23.49,23.33,23.33,23.08,22.94,22.88,22.88,22.79,22.63,22.42,22.42,22.26,22.29,22.42,22.54,22.7,22.72,22.76,22.88,22.76,22.79,23.1,22.92,23.31,23.28,23.19,23.22,23.08,23.19,23.24,23.1,23.35,23.28,23.08,23.26,23.22,23.4,23.4,23.24,23.12,22.85,22.81,22.58,22.65,22.72,22.76,23.08,23.08,23.37,23.26,23.4,23.51,23.26,23.37,23.44,23.4,23.37,23.28,23.6,23.26,23.37,23.31,23.44,23.33,23.4,23.33,23.4,23.44,23.46,23.33,23.51,23.24,23.46,23.46,23.42,23.4,23.33,23.46,23.49,23.31,23.4,23.17,23.35,23.31,23.4,23.51,23.37,23.24,23.19,23.33,23.35,23.22,23.28,23.24,23.12,22.94,22.97,22.94,22.83,22.74,22.88,22.65,22.58,22.54,22.6,22.6,22.76,22.63,22.81,22.9,23.03,22.94,23.17,23.24,23.12,23.24,23.19,23.06,22.92,22.65,22.51,22.35,22.45,22.65,22.79,22.79,22.92,23.03,23.1,23.06,23.12,23.12,23.26,23.24,23.24,23.28,23.06,23.01,23.19,23.19,23.06,23.15,23.12,23.03,23.17,23.06,23.08,23.19,23.12,23.12,23.12,23.15,23.01,23.19,23.06,23.15,23.12,23.06,23.19,22.99,23.12,22.97,22.99,22.97,22.97,23.01,23.15,23.03,23.15,22.85,22.94,22.94,23.06,22.97,22.97,22.81,22.92,22.79,22.72,22.88,22.81,22.7,22.74,22.76,22.83,22.74,22.81,22.74,22.94,22.85,22.83,22.97,22.81,22.76,22.76,22.6,22.54,22.4,22.29,22.13,22.24,22.17,22.42,22.58,22.49,22.38,22.51,22.67,22.6,22.7,22.6,22.42,22.42,22.56,22.56,22.56,22.56,22.56,22.65,22.45,22.6,22.24,22.2,22.38,22.33,22.35,22.29,22.15,22.38,22.22,22.35,22.22,22.26,22.35,22.33,22.24,22.22,22.1,22.06,22.08,21.99,22.17,21.92,21.92,22.08,22.01,21.9,21.69,21.97,21.97,21.78,21.83,21.78,21.83,21.76,21.58,21.51,21.28,20.98,20.36,20.05,19.92,19.71,19.57,19.59,19.66,19.8,19.89,19.87,20.1,20.17,20.12,20.1,19.99,20.08,20.19,20.08,20.19,20.26,20.4,20.19,20.5,20.31,20.36,20.43,23.87,23.87,23.73,23.62,23.53,23.26,23.35,23.42,23.35,23.46,23.28,23.4,23.6,23.75,23.62,23.78,24.0,23.78,23.8,23.53,23.87,23.84,23.78,23.71,23.8,24.05,24.05,23.69,23.62,23.69,23.87,23.64,23.87,23.75,23.69,23.73,23.37,23.44,23.44,23.15,23.15,23.1,23.08,22.79,22.74,22.74,22.63,22.33,22.29,22.33,22.54,22.49,22.24,22.56,22.51,22.67,22.85,22.97,23.12,23.15,23.17,23.22,23.01,23.22,23.24,23.24,23.4,23.26,23.15,23.24,23.15,23.17,23.28,23.12,22.9,23.03,22.67,22.81,22.54,22.58,22.9,23.22,23.49,23.28,23.31,23.4,23.42,23.44,23.44,23.53,23.26,23.28,23.31,23.33,23.35,23.33,23.31,23.37,23.46,23.31,23.51,23.26,23.51,23.4,23.31,23.49,23.4,23.46,23.53,23.49,23.46,23.24,23.28,23.46,23.31,23.31,23.19,23.31,23.22,23.42,23.46,23.49,23.24,23.08,23.33,23.26,23.28,23.26,23.31,23.33,23.08,23.01,23.08,23.08,23.08,22.76,22.72,22.65,22.72,22.76,22.67,22.67,22.6,22.51,22.65,22.67,22.81,23.01,22.9,22.99,23.08,23.01,22.9,22.88,22.58,22.54,22.4,22.47,22.7,22.76,22.94,22.99,23.1,23.06,23.1,23.15,23.03,23.22,23.17,23.22,23.22,23.01,23.12,23.17,23.08,23.28,23.26,23.08,23.22,23.12,23.12,23.17,22.99,23.19,23.15,23.08,23.17,23.17,23.17,22.99,23.19,23.01,23.1,23.24,22.88,22.85,22.97,22.83,23.1,22.94,23.06,23.03,23.01,22.99,22.92,23.03,23.08,22.94,22.97,22.92,22.92,22.83,22.85,22.79,22.81,22.85,22.76,22.83,22.74,22.83,22.74,22.81,22.85,22.76,22.76,22.67,22.83,22.76,22.67,22.63,22.42,22.31,22.13,22.04,22.15,22.38,22.42,22.4,22.51,22.47,22.6,22.51,22.51,22.7,22.58,22.56,22.42,22.45,22.49,22.45,22.45,22.56,22.54,22.47,22.24,22.7,22.49,22.35,22.26,22.33,22.54,22.56,22.35,22.38,22.38,22.26,22.24,22.29,22.29,22.2,22.08,22.15,22.17,22.04,21.99,21.97,22.06,21.94,21.94,22.06,21.97,22.08,21.92,21.74,21.94,21.97,21.83,21.69,21.65,21.81,21.67,21.58,21.05,20.57,20.15,19.73,19.64,19.47,19.68,19.66,19.71,19.78,19.85,20.01,19.99,20.05,19.99,20.08,20.12,19.94,20.05,20.03,20.1,20.26,20.22,20.38,20.15,20.31,20.36,20.24,23.91,23.89,23.64,23.62,23.6,23.31,23.26,23.62,23.24,23.71,23.58,23.71,23.73,23.75,23.73,24.05,24.02,23.84,23.8,23.71,24.0,24.11,23.87,23.73,23.93,23.96,23.96,24.07,23.87,23.96,23.96,23.73,23.87,23.64,23.8,23.73,23.55,23.6,23.49,23.51,23.28,23.35,23.33,23.19,22.99,22.97,22.79,22.65,22.47,22.45,22.58,22.42,22.26,22.4,22.45,22.58,22.79,22.9,22.94,23.03,23.03,23.15,23.06,23.33,23.35,23.33,23.08,23.28,23.31,23.24,23.15,23.08,23.17,22.94,22.85,22.92,22.47,22.42,22.51,22.76,23.08,23.19,23.42,23.28,23.33,23.31,23.55,23.19,23.44,23.49,23.46,23.33,23.28,23.35,23.35,23.26,23.4,23.35,23.4,23.37,23.4,23.42,23.55,23.49,23.46,23.49,23.44,23.28,23.58,23.28,23.46,23.33,23.44,23.46,23.49,23.35,23.24,23.4,23.22,23.51,23.33,23.44,23.22,23.22,23.26,23.28,23.31,23.4,23.31,23.08,23.17,23.15,23.15,23.17,23.06,23.03,22.79,22.63,22.76,22.72,22.63,22.88,22.56,22.58,22.47,22.56,22.63,22.72,22.72,22.85,23.03,22.76,22.76,22.65,22.49,22.54,22.45,22.6,22.67,22.9,22.94,22.94,23.03,23.1,23.08,23.08,23.06,23.37,23.1,23.17,23.15,23.26,23.17,23.17,23.1,23.08,23.06,23.19,22.83,23.06,23.28,23.12,23.19,23.03,23.01,23.01,23.08,22.99,23.01,23.08,22.97,23.12,23.15,23.01,23.03,23.01,23.01,23.01,23.28,22.74,23.1,23.03,22.99,22.92,22.99,22.88,23.1,22.9,22.88,22.92,22.9,23.01,22.67,22.85,22.79,22.79,22.81,22.85,22.88,22.9,22.81,22.74,22.88,22.74,22.9,22.74,22.83,22.65,22.74,22.65,22.4,22.2,21.99,22.08,22.29,22.33,22.4,22.63,22.63,22.4,22.56,22.51,22.56,22.6,22.6,22.47,22.38,22.38,22.35,22.38,22.56,22.51,22.31,22.47,22.51,22.6,22.4,22.17,22.38,22.42,22.38,22.42,22.15,22.4,22.1,22.31,22.01,22.22,22.15,22.29,22.26,22.13,22.08,22.06,22.1,22.1,21.97,21.99,21.9,21.97,22.01,21.92,21.81,21.9,22.15,22.01,21.72,21.67,21.53,21.67,21.69,21.19,20.68,20.33,19.85,19.47,19.61,19.64,19.64,19.68,19.73,19.71,19.92,19.94,20.22,20.17,19.99,20.31,20.03,20.05,20.31,20.26,20.12,20.36,20.36,20.26,20.4,20.29,20.19,20.43,23.73,23.96,23.46,23.66,23.49,23.51,23.55,23.62,23.37,23.66,23.62,23.8,23.55,23.66,23.96,23.96,24.02,23.89,24.02,23.87,24.09,24.07,24.05,24.14,24.09,23.84,24.05,23.89,23.73,23.91,24.09,23.69,23.84,23.6,23.82,23.93,23.73,23.71,23.64,23.49,23.66,23.58,23.4,23.22,23.08,23.12,22.92,22.85,22.76,22.65,22.54,22.38,22.33,22.33,22.24,22.45,22.49,22.72,22.63,22.65,22.92,23.01,23.08,23.12,23.22,23.26,23.1,23.03,23.15,23.06,23.22,23.08,23.22,22.9,23.01,22.76,22.47,22.47,22.67,22.85,23.12,23.37,23.35,23.26,23.35,23.35,23.49,23.28,23.33,23.22,23.62,23.31,23.33,23.46,23.44,23.51,23.46,23.46,23.42,23.6,23.4,23.37,23.35,23.4,23.37,23.37,23.55,23.4,23.35,23.31,23.44,23.35,23.44,23.49,23.44,23.4,23.44,23.26,23.37,23.37,23.35,23.4,23.37,23.24,23.15,23.15,23.28,23.35,23.42,23.24,23.22,23.15,23.31,23.17,23.22,23.15,22.88,22.9,22.79,22.83,22.81,22.83,22.9,22.74,22.72,22.56,22.72,22.63,22.58,22.63,22.72,22.74,22.51,22.42,22.38,22.6,22.58,22.74,22.83,22.92,23.17,22.97,23.08,23.17,23.08,23.26,23.26,23.24,23.26,23.17,23.22,23.22,23.22,23.15,23.15,23.22,23.12,23.24,23.08,23.12,23.22,23.06,23.1,23.15,23.08,23.1,23.08,23.19,23.15,23.1,22.92,23.28,23.06,23.12,23.15,23.15,23.01,23.01,23.1,23.01,23.17,22.97,22.99,23.06,23.03,22.94,23.06,23.01,23.1,22.99,22.74,22.99,22.92,22.72,22.83,22.88,22.79,22.72,22.83,22.97,22.92,22.72,22.85,22.85,22.81,22.76,22.76,22.7,22.58,22.51,22.29,22.04,22.24,22.31,22.47,22.56,22.56,22.63,22.51,22.72,22.65,22.49,22.56,22.7,22.58,22.54,22.54,22.51,22.29,22.38,22.47,22.56,22.4,22.49,22.42,22.33,22.38,22.35,22.22,22.2,22.33,22.47,22.24,22.33,22.13,22.17,22.15,22.15,22.17,22.26,22.26,22.17,22.15,22.06,21.9,21.76,22.1,21.88,22.08,21.97,21.97,21.72,21.9,21.74,22.04,21.97,21.81,21.58,21.78,21.67,21.4,20.82,20.33,19.96,19.52,19.54,19.57,19.75,19.71,19.75,19.96,19.96,19.85,20.01,20.01,20.05,20.22,20.26,20.05,20.1,20.38,20.01,20.24,20.31,20.12,20.15,20.17,20.29,20.33,20.4,23.73,23.91,23.62,23.49,23.49,23.66,23.49,23.49,23.66,23.64,23.58,23.78,23.93,23.93,23.84,24.07,23.8,23.8,24.09,23.87,24.11,24.22,24.09,23.98,24.07,24.11,23.91,23.8,23.73,23.75,23.87,23.51,23.73,23.91,24.0,23.96,23.64,23.75,23.78,23.82,23.55,23.6,23.55,23.4,23.33,23.19,23.24,23.06,23.01,22.88,22.83,22.6,22.35,22.51,22.33,22.45,22.45,22.45,22.45,22.56,22.63,22.94,22.88,22.81,22.99,23.15,23.08,23.15,22.99,23.22,23.08,23.26,23.15,22.81,22.74,22.67,22.58,22.42,22.56,22.92,23.17,23.33,23.28,23.31,23.28,23.31,23.4,23.26,23.26,23.28,23.58,23.42,23.28,23.26,23.33,23.4,23.35,23.42,23.49,23.4,23.53,23.46,23.35,23.44,23.42,23.51,23.44,23.37,23.49,23.46,23.46,23.28,23.42,23.49,23.33,23.33,23.4,23.24,23.44,23.49,23.42,23.46,23.35,23.24,23.31,23.33,23.35,23.4,23.44,23.1,23.31,23.22,23.1,23.26,23.31,23.31,23.12,23.08,22.97,23.1,22.92,22.92,22.94,22.76,22.72,22.7,22.74,22.67,22.58,22.38,22.49,22.49,22.45,22.42,22.35,22.33,22.47,22.85,22.92,22.79,23.17,23.01,23.24,23.06,23.06,23.24,23.26,23.28,23.26,23.28,23.08,23.1,23.19,23.12,23.28,23.19,23.26,23.19,23.06,23.01,22.88,23.17,23.15,23.19,23.15,23.1,23.06,23.26,22.99,23.24,23.12,23.12,22.99,23.01,23.12,23.15,23.03,22.9,23.06,23.06,23.08,22.99,23.1,22.99,22.92,22.99,22.99,22.97,22.9,22.94,22.88,22.88,22.97,22.88,22.85,22.92,22.65,22.85,22.92,22.88,22.79,22.85,22.99,22.74,22.88,22.67,22.83,22.63,22.26,22.22,21.97,22.08,22.24,22.4,22.26,22.54,22.76,22.56,22.63,22.72,22.51,22.49,22.54,22.56,22.65,22.63,22.45,22.4,22.31,22.38,22.58,22.7,22.38,22.4,22.38,22.6,22.29,22.1,22.29,22.15,22.38,22.4,22.15,22.2,22.04,22.29,22.17,22.2,22.29,22.1,22.22,22.17,22.1,21.83,21.99,21.99,21.94,21.83,22.06,21.92,21.85,21.97,21.76,21.83,21.92,21.88,21.72,21.56,21.65,21.58,20.98,20.47,19.94,19.75,19.54,19.5,19.52,19.66,19.94,19.61,19.8,19.78,20.1,19.89,20.17,20.12,20.08,20.15,20.05,20.05,20.19,20.17,20.26,20.19,20.12,20.22,20.22,20.26,20.45,20.33,24.02,23.69,23.58,23.62,23.42,23.51,23.58,23.69,23.73,23.75,23.62,23.87,23.89,23.82,23.73,24.02,24.09,23.89,23.91,23.96,24.05,23.87,24.11,23.98,24.2,24.0,24.05,23.98,23.89,23.78,23.8,23.89,24.11,24.0,24.0,23.87,23.8,23.87,23.8,23.75,23.78,23.82,23.71,23.51,23.64,23.35,23.31,23.31,23.24,22.99,23.03,22.83,22.83,22.74,22.4,22.49,22.4,22.42,22.38,22.45,22.38,22.35,22.79,22.79,22.97,22.94,23.08,23.08,23.1,23.06,23.1,23.06,23.03,22.79,22.7,22.6,22.58,22.58,22.74,22.94,23.01,23.33,23.35,23.19,23.26,23.44,23.19,23.49,23.37,23.31,23.4,23.22,23.28,23.26,23.53,23.44,23.37,23.37,23.44,23.44,23.53,23.4,23.31,23.51,23.37,23.62,23.58,23.58,23.6,23.49,23.51,23.37,23.24,23.46,23.49,23.33,23.37,23.42,23.4,23.35,23.44,23.49,23.51,23.28,23.28,23.37,23.49,23.42,23.35,23.28,23.37,23.1,23.4,23.31,23.26,23.12,23.15,23.08,22.92,23.01,22.97,23.06,22.92,22.88,22.97,22.81,22.74,22.79,22.72,22.35,22.47,22.4,22.24,22.29,22.29,22.45,22.51,22.65,22.74,22.74,22.92,23.1,23.06,23.01,23.1,23.08,23.06,23.1,23.12,23.15,23.12,23.17,23.12,23.12,23.17,23.12,23.28,23.1,23.15,23.03,23.17,23.08,23.06,23.31,23.1,23.1,23.26,23.24,23.06,23.15,23.08,23.1,23.22,23.08,23.03,23.15,22.88,22.81,23.22,23.01,23.01,23.03,23.03,22.81,22.81,22.92,23.06,22.92,22.88,22.85,22.76,22.85,22.94,22.85,22.88,22.81,22.56,22.88,22.79,22.7,22.74,22.81,22.88,22.67,22.83,22.79,22.65,22.47,22.13,22.31,22.06,22.08,22.22,22.45,22.4,22.49,22.54,22.56,22.49,22.63,22.6,22.6,22.51,22.67,22.74,22.58,22.51,22.56,22.4,22.51,22.47,22.47,22.4,22.45,22.4,22.38,22.29,22.33,22.26,22.26,22.24,22.26,22.22,22.26,22.24,22.26,22.2,22.22,22.2,22.13,22.22,22.01,21.94,21.9,21.81,21.92,21.94,21.85,21.81,21.85,21.97,21.88,21.74,21.9,22.04,21.76,21.76,21.56,21.42,21.33,20.61,20.26,19.99,19.5,19.57,19.42,19.42,19.82,19.87,19.73,19.71,19.89,19.92,20.1,20.15,20.03,20.08,19.96,19.99,20.19,20.15,20.15,20.29,20.22,20.29,20.36,20.19,20.29,20.33,20.29,23.84,23.6,23.71,23.49,23.4,23.55,23.62,23.55,23.31,23.6,23.8,23.75,23.91,24.02,24.05,24.14,24.27,24.11,24.0,23.8,24.02,24.05,24.0,23.98,24.07,23.96,23.98,23.93,24.02,23.78,23.93,24.0,24.02,23.87,23.98,23.96,23.87,23.51,23.75,24.0,23.91,23.8,23.8,23.73,23.75,23.49,23.4,23.44,23.35,23.28,23.33,23.15,23.22,22.81,22.99,22.65,22.58,22.54,22.38,22.49,22.33,22.33,22.58,22.49,22.58,22.88,22.92,22.97,23.03,23.03,23.08,23.03,23.01,22.72,22.51,22.45,22.47,22.58,22.88,22.97,23.19,23.19,23.26,23.24,23.37,23.06,23.19,23.46,23.37,23.28,23.31,23.12,23.33,23.26,23.35,23.33,23.26,23.33,23.37,23.44,23.62,23.53,23.35,23.51,23.42,23.64,23.55,23.62,23.49,23.4,23.44,23.35,23.4,23.24,23.51,23.33,23.53,23.44,23.26,23.49,23.37,23.4,23.26,23.28,23.4,23.53,23.24,23.42,23.24,23.22,23.24,23.22,23.37,23.4,23.26,23.19,23.19,22.88,22.88,22.99,23.08,22.88,22.97,22.99,23.01,22.99,22.81,22.81,22.67,22.63,22.45,22.17,22.33,22.22,22.29,22.56,22.49,22.35,22.51,22.51,22.76,22.74,22.94,23.03,23.08,22.92,23.1,23.03,23.01,23.06,23.08,23.15,23.24,23.22,23.17,23.24,23.1,23.12,23.06,23.12,23.1,23.26,23.06,23.12,23.1,23.1,22.99,23.01,22.99,23.06,23.06,23.08,23.1,22.97,22.99,23.03,23.01,23.19,23.08,23.08,23.01,23.01,23.08,22.9,23.01,23.03,23.06,22.88,22.94,22.94,22.9,22.85,22.74,22.76,22.81,22.74,22.79,22.83,22.74,22.72,22.67,22.65,22.79,22.72,22.74,22.74,22.65,22.26,21.99,22.15,22.01,22.2,22.47,22.42,22.6,22.47,22.72,22.72,22.65,22.51,22.7,22.49,22.45,22.74,22.65,22.65,22.54,22.6,22.49,22.45,22.47,22.45,22.31,22.35,22.47,22.31,22.29,22.22,22.2,22.31,22.24,22.35,22.29,22.29,22.08,22.08,22.04,22.1,22.15,22.08,21.99,22.04,21.85,21.81,21.97,21.81,21.97,21.83,21.81,21.9,21.83,21.67,21.81,21.78,22.01,21.85,21.67,21.4,21.23,20.91,20.29,19.96,19.73,19.85,19.66,19.59,19.59,19.71,19.75,19.8,19.52,19.94,19.89,20.1,20.12,20.15,20.1,20.01,20.12,20.17,20.29,20.01,20.26,20.17,20.22,20.05,20.15,20.12,20.4,20.33,23.78,23.75,23.62,23.42,23.62,23.64,23.78,23.66,23.84,23.93,23.93,24.11,24.16,24.02,24.09,24.09,24.14,23.98,24.07,23.62,24.25,24.2,24.11,23.89,24.14,24.07,24.07,23.75,24.07,24.07,23.78,24.27,24.02,23.89,23.84,24.16,23.93,23.73,23.75,23.82,23.91,23.69,23.87,23.75,23.69,23.69,23.71,23.49,23.31,23.4,23.44,23.28,23.28,23.17,22.94,22.85,22.76,22.7,22.54,22.49,22.45,22.2,22.4,22.42,22.4,22.49,22.6,22.67,22.7,22.79,22.97,22.85,22.9,22.35,22.29,22.33,22.29,22.49,22.9,23.12,23.28,23.35,23.31,23.22,23.26,23.33,23.28,23.4,23.44,23.46,23.22,23.24,23.22,23.24,23.44,23.35,23.42,23.17,23.4,23.53,23.49,23.53,23.22,23.4,23.37,23.33,23.4,23.53,23.49,23.44,23.55,23.33,23.35,23.4,23.46,23.42,23.31,23.19,23.22,23.4,23.31,23.26,23.33,23.37,23.44,23.35,23.15,23.42,23.37,23.31,23.33,23.26,23.33,23.33,23.17,23.22,23.03,22.97,22.99,22.94,23.06,23.15,23.15,23.12,22.99,23.08,22.92,22.99,22.81,22.67,22.63,22.4,22.22,22.24,22.24,22.49,22.51,22.56,22.4,22.47,22.6,22.4,22.76,22.83,22.81,22.9,23.08,22.99,23.19,23.15,23.03,23.12,22.9,23.12,23.22,23.17,23.08,23.24,23.26,23.28,23.17,23.03,23.03,22.85,22.81,22.97,23.17,23.06,23.26,23.03,23.03,23.08,23.12,23.08,22.92,23.03,23.08,23.15,23.08,22.99,23.06,23.12,22.94,22.94,23.19,23.01,23.1,23.03,22.85,22.88,22.56,22.81,22.74,22.85,22.81,22.94,22.56,22.72,22.83,22.97,22.83,22.67,22.7,22.6,22.67,22.54,22.35,22.17,21.92,21.92,22.24,22.31,22.65,22.7,22.63,22.51,22.56,22.6,22.58,22.74,22.58,22.51,22.49,22.6,22.49,22.56,22.4,22.4,22.35,22.31,22.51,22.58,22.49,22.4,22.38,22.35,22.31,22.24,22.4,22.17,22.42,22.26,22.13,22.15,22.08,22.24,22.22,22.04,22.24,22.2,22.2,21.99,22.08,22.04,22.13,21.69,21.88,21.83,22.01,21.9,21.99,21.69,21.6,21.49,21.72,21.74,21.78,21.37,20.91,20.33,19.89,19.82,19.57,19.57,19.57,19.54,19.82,19.75,19.66,19.99,19.87,20.08,19.96,20.22,20.29,20.03,20.12,20.22,20.15,20.08,20.15,20.31,20.19,20.1,20.43,20.1,20.24,20.24,20.38,20.31,23.51,23.53,23.58,23.6,23.66,23.84,23.8,23.71,23.49,23.84,23.73,24.0,24.02,24.09,24.18,24.16,24.2,23.87,24.11,24.09,24.18,24.16,24.02,24.07,24.22,24.05,24.07,24.09,24.11,24.05,24.0,23.96,24.05,23.89,24.11,23.96,23.98,23.84,23.75,23.75,23.87,23.96,24.07,23.84,23.82,23.75,23.69,23.64,23.66,23.69,23.53,23.49,23.35,23.22,23.12,23.15,23.17,23.1,22.94,22.6,22.6,22.35,22.2,22.42,22.31,22.29,22.54,22.58,22.38,22.54,22.74,22.74,22.88,22.26,22.31,22.29,22.42,22.76,23.03,23.22,23.28,23.42,23.33,23.17,23.24,23.42,23.37,23.28,23.4,23.4,23.17,23.42,23.37,23.4,23.46,23.35,23.37,23.46,23.31,23.35,23.35,23.49,23.49,23.42,23.37,23.46,23.49,23.42,23.64,23.53,23.58,23.51,23.51,23.42,23.37,23.31,23.31,23.31,23.17,23.37,23.37,23.42,23.31,23.28,23.26,23.42,23.28,23.37,23.26,23.35,23.37,23.24,23.37,23.35,23.15,23.22,23.17,23.08,23.26,23.1,23.33,23.17,23.26,23.12,23.19,23.06,22.94,23.15,22.88,22.7,22.56,22.54,22.45,22.33,22.38,22.6,22.49,22.54,22.58,22.54,22.51,22.42,22.54,22.63,22.63,22.56,22.85,22.92,23.12,23.22,23.03,23.12,23.08,23.28,23.35,23.24,23.15,23.35,23.15,23.12,23.28,23.1,23.19,23.06,23.22,23.03,23.06,23.15,23.22,23.15,23.01,23.15,23.24,23.19,23.15,23.08,23.12,23.03,23.06,23.03,23.01,22.99,23.1,22.99,23.1,22.94,23.03,22.94,22.99,22.83,22.92,22.81,22.74,22.97,22.81,22.88,22.74,22.92,22.79,22.79,22.74,22.81,22.79,22.83,22.58,22.35,22.2,22.17,22.1,22.04,22.38,22.51,22.45,22.56,22.49,22.54,22.7,22.72,22.65,22.7,22.51,22.38,22.49,22.56,22.7,22.7,22.54,22.4,22.45,22.38,22.4,22.54,22.51,22.45,22.33,22.33,22.22,22.13,22.31,22.26,22.1,22.24,22.15,22.22,22.17,22.24,22.06,22.06,22.24,22.22,22.08,21.99,21.94,22.1,21.97,21.83,21.76,21.97,21.97,21.94,22.04,21.76,21.74,21.69,21.74,21.67,21.67,21.05,20.57,20.17,19.61,19.54,19.52,19.45,19.68,19.45,19.64,19.8,19.78,20.01,20.1,20.03,20.29,20.36,20.47,20.19,20.29,20.29,20.08,20.4,20.31,20.19,20.24,20.19,20.31,20.22,20.38,20.22,20.29,20.24,23.49,23.69,23.6,23.66,23.55,23.75,23.82,23.78,23.69,23.91,23.87,23.98,24.11,24.0,24.25,24.27,24.16,23.98,24.14,24.11,24.38,24.07,24.07,24.09,24.18,24.14,24.2,23.98,23.96,24.02,23.87,24.14,24.16,23.84,24.25,24.07,23.96,23.84,23.96,23.93,23.96,23.91,23.93,23.84,23.87,23.78,23.66,23.82,23.84,23.62,23.75,23.53,23.55,23.55,23.42,23.35,23.28,23.35,23.22,22.92,22.65,22.63,22.47,22.45,22.4,22.24,22.24,22.33,22.31,22.38,22.35,22.4,22.56,22.31,22.17,22.08,22.26,22.51,23.03,23.17,23.24,23.4,23.22,23.15,23.42,23.33,23.35,23.26,23.33,23.26,23.33,23.44,23.42,23.28,23.35,23.31,23.33,23.44,23.33,23.44,23.58,23.49,23.46,23.51,23.44,23.46,23.53,23.53,23.58,23.53,23.49,23.46,23.42,23.51,23.55,23.31,23.37,23.28,23.35,23.35,23.44,23.46,23.31,23.31,23.26,23.28,23.37,23.35,23.35,23.22,23.4,23.35,23.26,23.26,23.28,23.19,23.06,23.01,23.26,23.24,23.06,23.28,23.31,23.15,23.06,23.03,23.17,23.03,22.88,22.56,22.45,22.49,22.51,22.58,22.76,22.74,22.79,22.65,22.63,22.54,22.58,22.51,22.58,22.4,22.35,22.65,22.49,22.63,22.88,22.92,22.97,22.88,23.15,23.24,23.26,23.28,23.15,23.19,23.08,22.97,23.19,23.17,23.19,23.19,23.03,23.12,23.17,23.06,23.06,23.03,23.08,23.03,23.26,23.08,23.19,23.12,23.22,23.22,23.17,23.03,23.08,23.03,23.12,22.94,22.97,22.94,22.9,22.9,22.94,22.85,22.83,22.74,22.79,22.74,22.79,22.74,22.79,22.67,22.74,22.79,22.67,22.72,22.88,22.6,22.58,22.1,22.13,21.92,22.06,22.17,22.38,22.45,22.6,22.51,22.65,22.42,22.54,22.7,22.72,22.67,22.56,22.54,22.42,22.49,22.54,22.74,22.35,22.58,22.42,22.26,22.35,22.42,22.35,22.42,22.26,22.29,22.13,22.2,22.26,22.2,22.24,22.31,22.01,22.24,22.22,22.17,22.1,22.01,22.24,22.17,22.06,21.9,21.99,22.01,22.01,21.83,21.81,21.83,21.92,21.85,21.69,21.88,21.67,21.83,21.81,21.51,21.26,20.61,20.12,19.75,19.59,19.57,19.52,19.68,19.8,19.59,19.85,20.01,20.05,19.94,20.01,20.08,20.22,20.19,20.36,20.43,20.29,20.45,20.31,20.22,20.31,20.31,20.4,20.26,20.43,20.24,20.31,20.36,20.47,20.54,23.51,23.75,23.64,23.73,23.8,23.8,23.89,23.8,23.75,24.09,24.02,24.09,24.14,24.07,24.34,24.22,24.34,24.05,24.22,24.25,24.11,24.36,23.98,24.18,24.09,24.22,24.18,24.11,24.2,24.16,24.11,24.0,24.16,24.27,24.09,24.14,24.0,24.0,24.11,23.96,24.05,23.98,24.05,23.89,24.02,23.75,23.98,23.87,23.93,23.96,23.91,23.8,23.58,23.82,23.64,23.49,23.4,23.4,23.35,23.24,23.22,23.03,22.92,22.85,22.6,22.76,22.6,22.42,22.38,22.38,22.15,22.13,22.1,22.17,22.1,22.04,22.45,22.9,23.17,23.31,23.42,23.53,23.26,23.26,23.28,23.24,23.35,23.46,23.22,23.42,23.46,23.42,23.37,23.42,23.44,23.33,23.26,23.4,23.6,23.4,23.51,23.64,23.55,23.6,23.44,23.53,23.44,23.49,23.51,23.58,23.55,23.62,23.42,23.49,23.51,23.49,23.37,23.42,23.46,23.66,23.64,23.37,23.44,23.28,23.49,23.49,23.46,23.55,23.42,23.37,23.42,23.4,23.46,23.4,23.42,23.26,23.31,23.22,23.17,23.37,23.33,23.19,23.37,23.42,23.4,23.17,23.03,22.97,22.81,22.67,22.33,22.58,22.67,22.72,23.08,23.08,23.03,22.83,22.85,22.74,22.7,22.72,22.72,22.67,22.56,22.49,22.38,22.51,22.63,22.67,22.79,22.76,22.92,22.92,23.15,23.19,23.28,23.19,23.15,23.28,23.33,23.31,23.33,23.06,23.15,23.15,23.1,23.17,23.15,23.1,22.99,23.15,23.17,23.17,23.15,23.12,23.15,23.08,23.01,22.99,22.94,23.06,23.17,23.17,22.99,22.99,22.92,22.94,22.9,22.94,22.85,22.92,22.97,22.9,22.85,22.9,22.74,22.9,22.88,22.88,22.79,22.88,22.79,22.54,22.38,22.15,22.06,22.1,22.17,22.42,22.54,22.56,22.76,22.85,22.67,22.74,22.6,22.6,22.58,22.67,22.63,22.6,22.56,22.63,22.65,22.51,22.45,22.49,22.51,22.45,22.49,22.47,22.63,22.49,22.33,22.56,22.29,22.04,22.38,22.33,22.24,22.26,22.06,22.22,22.1,22.17,22.04,21.94,22.17,22.08,22.01,22.08,22.22,21.94,21.88,21.9,22.01,21.88,21.92,21.85,21.76,21.92,21.85,21.74,21.67,21.49,20.96,20.38,19.73,19.57,19.61,19.61,19.64,19.8,19.75,19.68,19.82,19.94,20.03,20.01,20.08,20.22,20.26,20.22,20.26,20.19,20.29,20.31,20.24,20.31,20.43,20.31,20.38,20.29,20.33,20.38,20.45,20.24,20.38,20.45,23.78,23.78,23.75,23.87,23.93,23.78,23.82,24.05,23.87,24.09,24.07,23.89,24.14,24.05,24.16,24.25,24.25,24.22,24.05,24.07,24.49,24.11,24.09,24.05,24.43,24.22,24.18,24.05,23.98,24.29,24.02,24.07,24.25,24.25,24.16,24.27,24.14,23.91,24.16,23.93,24.07,24.14,24.11,24.14,23.96,23.6,23.84,23.91,24.2,23.87,23.98,23.87,23.73,23.73,23.93,23.64,23.66,23.6,23.58,23.49,23.44,23.19,23.24,23.01,22.9,22.85,22.74,22.81,22.51,22.33,22.31,22.15,22.01,21.9,21.97,22.22,22.42,22.7,22.9,23.15,23.22,23.28,23.49,23.35,23.19,23.28,23.28,23.28,23.28,23.42,23.33,23.12,23.26,23.22,23.35,23.44,23.44,23.42,23.37,23.51,23.53,23.58,23.44,23.42,23.51,23.44,23.53,23.49,23.51,23.58,23.53,23.49,23.53,23.64,23.69,23.6,23.58,23.35,23.28,23.46,23.37,23.42,23.44,23.33,23.4,23.49,23.35,23.53,23.49,23.33,23.42,23.33,23.55,23.53,23.4,23.26,23.4,23.44,23.37,23.31,23.31,23.26,23.35,23.33,23.12,23.15,23.17,22.92,22.72,22.45,22.54,22.58,22.65,22.67,23.06,23.12,23.12,22.99,22.94,23.1,22.92,22.85,22.85,22.67,22.76,22.81,22.6,22.56,22.49,22.51,22.7,22.72,22.6,22.67,22.81,22.99,23.12,23.06,23.15,23.26,23.1,23.24,23.35,23.19,23.22,23.17,23.08,23.26,23.17,23.1,23.17,23.31,23.15,23.15,23.1,23.28,23.31,23.12,23.22,22.92,23.15,23.01,23.06,23.06,22.97,22.9,22.99,22.94,22.99,22.99,22.88,22.9,22.97,22.9,22.94,22.81,22.79,22.81,22.76,22.9,22.74,22.79,22.79,22.42,22.22,22.15,21.94,22.22,22.17,22.6,22.56,22.63,22.67,22.81,22.74,22.45,22.65,22.76,22.72,22.65,22.76,22.56,22.47,22.58,22.74,22.65,22.54,22.54,22.4,22.76,22.45,22.6,22.49,22.4,22.33,22.38,22.24,22.29,22.29,22.31,22.29,22.04,22.2,22.22,22.1,22.1,22.08,22.06,22.15,22.1,22.04,22.01,22.08,21.92,22.01,21.83,21.97,21.92,21.94,21.76,21.76,21.9,21.78,21.6,21.49,21.1,20.63,19.73,19.54,19.57,19.38,19.57,19.64,19.78,19.75,19.96,19.73,19.99,20.12,20.08,20.12,20.03,20.22,20.17,20.31,20.15,20.36,20.38,20.22,20.12,20.15,20.33,20.12,20.31,20.22,20.19,20.12,20.24,20.31,20.24,23.82,23.62,23.46,23.66,23.58,23.53,23.8,23.89,23.73,23.91,23.93,24.07,23.96,23.87,23.98,23.98,23.78,23.89,24.2,23.84,24.0,23.89,23.93,23.96,23.96,23.93,23.89,23.89,23.96,23.96,23.93,23.84,24.16,24.16,24.09,24.09,23.82,23.8,23.55,23.75,23.93,23.89,24.02,23.73,23.84,23.66,23.69,23.71,23.89,23.91,23.84,23.82,23.8,23.8,23.71,23.69,23.78,23.53,23.44,23.53,23.31,23.28,23.19,23.17,23.1,22.97,22.79,22.72,22.65,22.4,22.29,22.29,22.22,21.9,21.92,21.65,22.01,22.38,22.49,22.74,22.92,23.24,23.1,23.24,23.12,23.15,23.24,23.12,23.33,23.31,23.37,23.22,23.28,23.22,23.22,23.28,23.44,23.24,23.26,23.26,23.49,23.53,23.26,23.26,23.31,23.37,23.42,23.24,23.28,23.1,23.46,23.4,23.4,23.35,23.37,23.37,23.37,23.22,23.12,23.4,23.22,23.44,23.26,23.44,23.24,23.31,23.22,23.44,23.35,23.26,23.4,23.15,23.33,23.31,23.15,23.01,23.1,23.19,23.22,23.26,23.15,23.19,23.33,23.12,23.06,22.88,22.81,22.81,22.45,22.15,22.47,22.65,22.67,22.88,22.85,23.26,23.17,22.9,22.92,23.06,22.88,22.67,22.92,22.74,22.56,22.7,22.49,22.54,22.51,22.54,22.58,22.35,22.35,22.45,22.51,22.63,22.72,22.74,22.67,22.85,22.9,23.01,23.06,22.99,23.19,23.01,23.08,23.03,23.12,22.97,22.88,23.03,23.01,22.85,22.85,22.92,23.06,22.88,23.01,23.06,22.92,22.97,23.06,22.92,22.79,23.1,22.76,22.92,22.9,22.83,22.88,22.74,22.92,22.79,22.6,22.74,22.58,22.72,22.65,22.67,22.47,22.58,22.31,22.15,21.9,21.9,21.97,22.08,22.31,22.47,22.51,22.65,22.63,22.6,22.51,22.56,22.47,22.47,22.58,22.47,22.38,22.47,22.47,22.33,22.51,22.51,22.47,22.47,22.31,22.31,22.51,22.47,22.35,22.26,22.35,22.26,22.17,22.13,22.15,22.04,21.92,22.06,22.04,22.17,21.99,22.01,22.04,21.9,21.9,21.97,21.99,21.83,21.81,21.81,21.76,21.56,21.69,21.65,21.83,21.67,21.76,21.83,21.72,21.4,21.03,20.31,20.12,19.68,19.4,19.42,19.5,19.5,19.66,19.47,19.64,19.96,19.75,20.01,19.85,20.03,19.96,19.78,20.03,19.99,20.08,20.24,20.19,20.15,20.24,20.4,20.4,20.19,20.22,20.03,20.15,20.12,20.19,20.29,20.5,20.29,23.87,23.84,23.89,23.98,23.96,23.98,23.91,24.09,23.87,23.96,24.02,24.09,24.16,24.0,24.14,24.02,24.11,24.02,24.07,24.11,24.16,24.18,24.16,24.07,24.07,23.98,24.31,24.14,24.05,24.25,24.02,24.0,24.18,24.2,24.2,24.11,24.05,24.0,24.07,23.98,24.27,24.02,24.05,23.96,24.0,24.0,23.93,23.96,24.09,23.89,24.18,24.05,23.96,23.75,23.96,23.96,23.93,23.69,23.78,23.8,23.53,23.46,23.53,23.53,23.4,23.33,23.12,23.15,22.99,22.76,22.51,22.45,22.45,22.22,22.15,22.15,22.29,22.26,22.45,22.63,22.67,22.99,22.99,23.15,23.08,23.22,23.22,23.28,23.4,23.35,23.33,23.35,23.44,23.37,23.37,23.37,23.44,23.37,23.46,23.51,23.49,23.62,23.31,23.12,23.35,23.46,23.42,23.51,23.55,23.53,23.6,23.33,23.31,23.49,23.37,23.24,23.35,23.33,23.17,23.33,23.51,23.33,23.31,23.4,23.33,23.4,23.31,23.46,23.53,23.42,23.49,23.55,23.55,23.51,23.4,23.42,23.24,23.12,23.31,23.26,23.15,23.37,23.31,23.1,23.24,22.88,22.76,22.63,22.51,22.38,22.63,22.74,22.85,23.1,23.03,23.17,23.24,23.06,23.17,23.03,23.06,23.06,23.24,22.97,22.88,22.92,22.85,22.9,22.72,22.67,22.7,22.67,22.51,22.76,22.7,22.6,22.58,22.7,22.47,22.72,23.03,22.94,23.08,23.06,23.19,23.17,23.08,23.1,23.17,23.1,23.15,23.22,23.17,23.12,22.94,23.06,23.1,23.06,23.12,23.03,23.06,23.06,22.9,23.19,22.94,23.03,22.99,22.79,22.92,22.97,22.85,22.94,23.12,22.92,22.85,22.9,22.74,22.67,22.7,22.74,22.7,22.54,22.24,22.13,22.1,22.1,22.13,22.1,22.54,22.56,22.67,22.58,22.56,22.85,22.72,22.74,22.51,22.51,22.6,22.6,22.47,22.7,22.47,22.51,22.45,22.54,22.51,22.47,22.42,22.42,22.56,22.38,22.54,22.33,22.24,22.4,22.24,22.31,22.33,22.17,22.31,22.2,22.13,22.29,21.97,22.26,21.99,21.99,21.92,22.04,21.81,22.13,22.04,21.69,21.94,21.78,21.97,21.83,21.88,21.83,21.72,21.74,21.51,21.46,20.8,20.26,19.87,19.61,19.66,19.54,19.54,19.66,19.99,19.73,19.85,19.89,19.94,20.15,20.12,20.17,20.1,20.17,20.1,20.15,20.4,20.45,20.22,20.24,20.26,20.33,20.43,20.29,20.36,20.4,20.24,20.31,20.31,20.24,20.29,20.4,23.93,24.05,23.98,23.96,23.75,24.07,24.05,24.18,23.93,24.02,24.09,24.16,23.93,24.18,24.27,24.31,24.38,24.05,24.14,24.07,24.16,24.22,24.07,24.11,24.09,24.16,24.18,23.93,24.09,24.07,24.07,23.8,24.27,24.07,24.07,24.16,24.09,24.2,24.07,24.16,24.25,24.09,24.2,24.14,23.89,23.96,24.05,24.11,24.0,24.02,23.98,23.96,23.93,24.02,23.96,23.96,23.84,23.87,23.96,23.69,23.93,23.66,23.66,23.73,23.66,23.58,23.37,23.37,23.35,22.99,22.88,22.83,22.81,22.72,22.49,22.51,22.47,22.6,22.26,22.54,22.67,22.79,22.79,22.72,23.01,23.01,22.94,23.28,23.4,23.26,23.22,23.37,23.19,23.42,23.37,23.44,23.51,23.46,23.44,23.53,23.37,23.46,23.35,23.53,23.42,23.51,23.4,23.37,23.58,23.46,23.37,23.33,23.35,23.4,23.53,23.35,23.53,23.26,23.31,23.58,23.26,23.42,23.46,23.53,23.46,23.44,23.46,23.37,23.49,23.35,23.42,23.44,23.58,23.51,23.4,23.42,23.37,23.22,23.22,23.44,23.28,23.35,23.24,23.12,23.17,22.97,22.7,22.51,22.54,22.56,22.72,23.08,22.99,23.08,23.22,23.22,23.08,23.24,23.26,23.08,23.12,23.19,23.31,23.08,22.97,23.01,22.97,22.92,22.85,22.97,22.83,22.67,22.72,22.94,22.81,22.58,22.54,22.51,22.54,22.51,22.45,22.6,22.72,22.79,22.97,22.97,23.06,23.08,23.08,22.99,23.24,23.26,23.12,23.17,23.03,23.03,22.9,22.97,23.12,23.12,23.17,23.1,23.22,22.99,23.1,23.06,23.01,22.9,22.9,22.97,22.81,22.94,22.94,22.83,22.9,22.88,22.76,22.72,22.76,22.72,22.72,22.45,22.17,21.85,21.99,22.22,22.26,22.49,22.72,22.67,22.58,22.74,22.49,22.83,22.74,22.7,22.58,22.49,22.65,22.63,22.67,22.65,22.51,22.58,22.56,22.58,22.42,22.51,22.49,22.49,22.29,22.35,22.47,22.4,22.35,22.22,22.47,22.26,22.15,22.15,22.26,22.13,22.06,22.15,22.15,22.06,22.06,22.04,21.99,22.33,21.83,21.78,22.04,21.92,21.85,21.94,21.92,21.88,21.85,21.78,21.74,21.67,21.37,20.8,20.47,20.03,19.66,19.52,19.57,19.75,19.66,19.8,19.64,19.71,19.87,20.03,20.1,20.08,20.05,20.17,20.22,20.19,20.17,20.24,20.47,20.26,20.4,20.33,20.29,20.47,20.36,20.38,20.36,20.33,20.29,20.43,20.59,20.47,20.7,20.54,23.87,24.02,23.96,24.0,23.96,24.18,24.05,24.14,24.0,24.18,24.2,24.2,24.29,24.2,24.05,24.29,24.29,24.0,24.38,23.98,24.27,24.27,24.16,24.09,23.98,24.4,23.98,24.16,24.14,24.2,24.29,24.09,24.38,24.11,24.11,24.22,23.98,23.98,24.09,24.25,24.18,24.2,23.96,24.31,24.14,24.14,24.16,24.09,24.11,24.0,24.05,23.96,23.91,23.89,24.25,23.78,24.18,24.02,23.84,23.96,23.89,23.84,23.64,23.62,23.8,23.69,23.58,23.44,23.4,23.22,23.17,23.12,23.08,22.76,22.58,22.72,22.6,22.67,22.42,22.38,22.51,22.42,22.54,22.67,22.76,22.81,23.15,23.22,23.1,23.42,23.22,23.28,23.33,23.46,23.4,23.35,23.35,23.31,23.44,23.4,23.44,23.6,23.53,23.53,23.46,23.51,23.64,23.35,23.51,23.42,23.53,23.53,23.37,23.46,23.33,23.44,23.49,23.35,23.17,23.58,23.49,23.33,23.33,23.4,23.49,23.46,23.42,23.55,23.4,23.4,23.53,23.37,23.58,23.46,23.35,23.46,23.51,23.37,23.12,23.46,23.35,23.33,23.24,23.22,23.01,22.79,22.67,22.54,22.49,22.6,22.83,23.06,23.15,23.12,23.24,23.24,23.15,23.31,23.22,23.06,23.28,23.37,23.22,23.37,23.19,23.03,23.01,23.08,23.17,22.92,23.03,22.81,22.81,22.92,22.74,22.74,22.65,22.63,22.54,22.56,22.6,22.47,22.54,22.6,22.67,22.79,22.79,23.06,22.97,23.12,23.06,23.17,23.12,23.1,22.94,23.08,23.12,23.19,23.19,23.06,23.03,23.08,23.22,23.1,23.01,23.01,22.97,22.92,22.7,22.94,22.83,22.83,22.85,22.92,22.94,23.03,22.79,22.74,22.65,22.72,22.47,22.17,21.99,21.92,22.13,22.29,22.45,22.56,22.58,22.76,22.76,22.81,22.92,22.65,22.65,22.65,22.72,22.72,22.63,22.79,22.65,22.6,22.6,22.49,22.54,22.42,22.45,22.31,22.47,22.58,22.47,22.42,22.24,22.24,22.29,22.35,22.33,22.2,22.1,22.26,22.38,22.2,22.2,22.33,22.1,22.13,21.94,21.92,22.2,21.97,21.99,21.97,21.99,22.08,21.92,21.88,21.92,21.81,21.81,21.81,21.69,21.35,21.1,20.52,20.1,19.75,19.52,19.42,19.66,19.82,19.66,19.8,19.85,19.89,19.96,20.17,20.08,20.17,20.12,20.1,20.24,20.08,20.31,20.29,20.4,20.63,20.33,20.29,20.31,20.45,20.57,20.4,20.45,20.36,20.54,20.4,20.52,20.24,20.38,20.29,23.93,23.98,24.0,24.05,24.2,23.82,23.96,24.2,23.87,24.09,23.93,24.0,24.16,24.16,24.18,24.09,24.27,24.2,24.29,23.8,24.36,24.18,24.4,24.22,24.2,24.16,24.2,24.14,24.14,24.07,24.16,24.05,24.14,23.96,24.16,24.27,23.91,23.98,24.07,24.07,24.14,24.05,24.09,24.11,24.02,24.09,23.96,24.0,24.0,24.07,24.09,23.91,24.07,24.2,24.11,24.0,24.16,24.11,24.02,23.98,23.96,23.87,23.69,23.87,23.69,23.84,23.64,23.58,23.53,23.51,23.37,23.26,23.15,23.1,22.9,22.88,22.85,22.76,22.56,22.56,22.49,22.47,22.47,22.6,22.42,22.54,22.72,22.85,23.01,23.28,23.06,23.28,23.46,23.26,23.26,23.24,23.37,23.44,23.42,23.6,23.42,23.51,23.58,23.42,23.37,23.55,23.51,23.51,23.49,23.35,23.44,23.31,23.4,23.53,23.64,23.44,23.31,23.31,23.37,23.42,23.46,23.51,23.37,23.26,23.49,23.44,23.35,23.49,23.55,23.42,23.37,23.37,23.53,23.35,23.44,23.26,23.31,23.33,23.28,23.28,23.4,23.24,23.24,23.17,23.01,22.49,22.51,22.56,22.58,22.74,22.88,23.08,23.22,23.19,23.22,23.22,23.26,23.31,23.19,23.31,23.26,23.15,23.4,23.17,23.1,23.1,23.1,23.17,23.1,23.1,23.01,22.94,22.9,23.12,23.03,22.85,22.79,22.85,22.72,22.54,22.67,22.63,22.54,22.4,22.51,22.6,22.63,22.6,22.7,22.81,22.9,23.19,23.03,23.24,23.06,23.12,23.24,23.26,23.26,23.19,23.01,23.01,23.19,23.03,23.03,23.19,23.17,22.94,22.97,22.92,22.81,22.88,22.85,23.08,22.9,22.97,22.74,22.81,22.58,22.42,22.26,22.13,22.08,21.97,22.42,22.4,22.54,22.47,22.76,22.85,22.67,22.85,22.74,22.7,22.67,22.85,22.83,22.67,22.63,22.65,22.63,22.74,22.6,22.6,22.6,22.63,22.33,22.33,22.38,22.29,22.4,22.45,22.33,22.38,22.31,22.4,22.33,22.24,22.35,22.38,22.2,22.2,22.06,22.15,22.2,22.06,21.83,21.88,22.01,21.97,21.97,22.2,22.08,22.04,21.92,21.85,21.81,21.78,21.9,21.69,21.46,21.14,20.45,20.08,19.82,19.68,19.52,19.52,19.71,19.66,19.57,19.78,19.89,19.8,19.99,20.03,20.03,20.17,20.22,20.19,20.15,20.36,20.33,20.33,20.36,20.29,20.38,20.33,20.22,20.15,20.52,20.4,20.54,20.43,20.43,20.4,20.22,20.22,20.38,20.24,23.75,24.0,23.98,23.75,24.02,24.02,24.05,24.0,24.02,24.09,23.98,24.09,24.05,24.16,24.36,24.18,24.11,24.18,24.25,24.16,24.4,24.34,23.93,24.25,24.09,24.2,24.25,24.25,24.0,24.09,24.11,23.91,24.05,24.05,24.18,24.27,24.02,24.02,24.14,24.05,24.0,24.14,24.16,24.27,24.16,24.02,24.09,24.2,24.07,24.2,24.29,24.18,24.09,24.11,24.05,23.96,24.18,24.0,23.89,23.91,24.05,24.0,24.07,24.07,23.89,23.82,23.8,23.69,23.6,23.49,23.55,23.46,23.44,23.12,22.99,23.12,22.97,22.79,22.79,22.58,22.56,22.74,22.7,22.58,22.49,22.4,22.35,22.58,22.72,22.72,22.92,22.94,23.19,23.15,23.12,23.17,23.46,23.51,23.37,23.51,23.44,23.49,23.42,23.26,23.42,23.46,23.55,23.35,23.51,23.53,23.51,23.44,23.49,23.46,23.58,23.33,23.46,23.28,23.33,23.46,23.46,23.55,23.58,23.49,23.49,23.33,23.31,23.62,23.49,23.4,23.37,23.37,23.46,23.46,23.35,23.37,23.35,23.19,23.33,23.33,23.28,23.31,23.15,22.94,22.81,22.4,22.47,22.58,22.67,22.88,23.03,23.24,23.17,23.26,23.22,23.17,23.1,23.28,23.28,23.24,23.24,23.22,23.24,23.22,23.12,23.17,23.19,23.06,23.24,22.97,23.12,23.1,23.06,23.08,23.15,22.99,22.94,22.97,22.97,22.85,22.83,22.67,22.58,22.63,22.6,22.49,22.58,22.47,22.65,22.63,22.56,22.85,22.81,23.01,22.92,22.92,22.99,23.1,23.19,23.24,23.12,23.19,23.15,23.1,22.92,22.99,23.01,23.01,22.94,23.01,22.83,23.03,22.9,22.83,22.9,22.9,22.79,22.67,22.54,22.35,22.01,22.1,22.2,22.17,22.35,22.47,22.7,22.58,22.74,22.79,22.81,22.74,22.74,22.67,22.85,22.81,22.76,22.7,22.58,22.7,22.65,22.76,22.56,22.49,22.74,22.67,22.54,22.42,22.38,22.49,22.29,22.35,22.4,22.17,22.31,22.38,22.1,22.22,22.31,22.22,22.15,22.15,22.17,22.22,21.92,22.04,21.94,21.85,21.97,22.1,21.88,21.99,22.04,21.9,21.94,21.74,21.74,21.74,21.65,21.74,21.28,20.59,20.19,19.85,19.73,19.59,19.66,19.71,19.68,19.71,19.71,19.99,19.94,19.87,19.89,20.03,20.05,20.15,20.19,20.01,20.15,20.31,20.33,20.33,20.43,20.4,20.4,20.22,20.4,20.45,20.26,20.38,20.4,20.31,20.31,20.4,20.19,20.38,20.38,20.38,23.93,23.96,23.82,23.71,23.84,23.91,23.8,24.18,24.2,24.14,23.98,24.14,24.11,23.98,24.07,24.27,24.0,24.11,24.18,23.93,24.31,24.27,24.27,24.11,24.25,24.2,24.14,24.27,24.09,24.09,24.0,24.18,24.16,24.22,24.05,24.34,24.05,24.2,24.2,24.14,23.82,24.14,24.02,24.16,24.07,24.0,24.05,24.29,24.18,24.2,24.18,23.98,23.89,24.02,24.18,24.09,23.93,24.2,24.05,24.16,23.91,23.91,23.89,23.93,23.96,23.89,23.96,23.75,23.69,23.53,23.55,23.6,23.26,23.26,23.28,23.08,23.08,22.97,22.92,22.76,22.81,22.9,22.63,22.67,22.54,22.31,22.15,22.45,22.49,22.65,22.74,22.76,22.81,22.79,23.06,23.15,23.4,23.37,23.35,23.6,23.51,23.49,23.44,23.26,23.35,23.46,23.4,23.28,23.35,23.46,23.46,23.4,23.42,23.4,23.37,23.35,23.58,23.12,23.42,23.49,23.37,23.37,23.35,23.44,23.42,23.46,23.28,23.46,23.51,23.44,23.37,23.33,23.4,23.55,23.44,23.46,23.46,23.22,23.19,23.1,23.26,23.31,23.08,22.85,22.49,22.42,22.26,22.7,22.56,22.94,23.26,23.31,23.28,23.17,23.22,23.22,23.17,23.15,23.31,23.26,23.28,23.15,23.22,23.35,23.33,23.19,23.12,23.1,23.1,23.01,23.1,23.19,23.17,23.15,23.1,23.1,23.12,23.22,22.94,22.92,22.92,22.94,22.81,22.7,22.7,22.65,22.54,22.58,22.45,22.47,22.54,22.65,22.51,22.58,22.54,22.67,22.76,22.92,22.92,22.97,23.03,23.12,23.01,23.17,22.99,22.92,22.97,22.94,22.9,23.01,22.83,23.06,23.03,22.83,22.83,22.85,22.72,22.65,22.38,22.29,22.04,22.1,22.2,22.31,22.42,22.42,22.67,22.74,22.72,22.76,22.76,22.88,22.63,22.79,22.76,22.58,22.74,22.79,22.67,22.7,22.6,22.6,22.49,22.54,22.74,22.58,22.42,22.47,22.56,22.47,22.4,22.4,22.31,22.47,22.22,22.38,22.35,22.1,22.13,22.08,21.88,22.22,22.15,22.04,21.94,22.04,22.06,22.06,21.92,22.26,22.08,22.01,22.06,21.99,22.01,21.69,21.74,21.58,21.56,21.33,20.84,20.33,19.78,19.61,19.52,19.47,19.47,19.54,19.73,19.66,19.73,19.85,19.85,20.03,20.01,20.15,20.15,20.12,20.12,20.26,20.15,20.45,20.43,20.12,20.33,20.33,20.43,20.24,20.03,20.24,20.1,20.19,20.05,20.15,20.1,20.24,20.17,20.22,20.33,20.15,23.93,23.98,23.87,23.98,23.84,24.02,23.93,24.07,23.78,24.05,24.05,23.96,24.05,24.09,23.98,24.2,24.31,24.16,24.14,24.16,24.29,24.4,24.27,24.36,24.09,24.18,24.07,24.2,24.16,23.98,24.09,24.0,24.2,24.11,24.07,24.11,24.09,24.2,24.07,24.09,23.93,24.11,24.25,24.09,24.09,24.09,24.22,24.11,24.02,24.22,24.07,24.07,23.82,23.98,23.8,23.84,24.0,24.05,24.05,24.05,24.02,23.91,23.8,23.87,23.93,23.91,23.93,23.82,23.91,23.53,23.53,23.4,23.53,23.28,23.28,23.1,22.85,23.01,23.12,22.88,23.06,23.06,22.83,22.85,22.67,22.74,22.58,22.54,22.51,22.38,22.42,22.56,22.7,22.65,22.94,22.88,23.06,23.15,23.24,23.28,23.31,23.26,23.37,23.19,23.31,23.4,23.4,23.35,23.42,23.37,23.35,23.33,23.33,23.44,23.44,23.35,23.37,23.22,23.1,23.31,23.28,23.33,23.4,23.4,23.46,23.28,23.44,23.42,23.44,23.55,23.49,23.42,23.44,23.49,23.42,23.28,23.15,23.4,23.28,23.19,23.24,23.22,22.99,22.72,22.45,22.35,22.47,22.65,22.79,23.1,23.19,23.33,23.22,23.22,23.19,23.24,23.28,23.31,23.17,23.33,23.15,23.31,23.17,23.12,23.03,23.22,23.19,23.31,23.19,23.1,23.08,23.17,23.17,23.24,23.19,23.06,22.99,23.06,22.9,23.08,23.22,22.97,22.92,22.81,22.7,22.79,22.72,22.67,22.6,22.56,22.47,22.51,22.54,22.54,22.42,22.42,22.4,22.6,22.58,22.81,22.72,22.97,22.94,22.97,22.9,22.97,23.06,22.92,22.88,22.94,22.81,22.92,22.92,22.83,22.88,22.83,22.47,22.58,22.31,22.08,22.08,22.13,22.24,22.26,22.38,22.26,22.42,22.47,22.81,22.72,22.7,22.72,22.76,22.74,22.72,22.76,22.74,22.65,22.67,22.58,22.67,22.67,22.49,22.6,22.63,22.47,22.35,22.42,22.35,22.24,22.38,22.35,22.35,22.4,22.35,22.22,22.38,22.08,22.22,22.17,21.88,22.06,22.06,22.2,21.99,22.04,21.99,22.01,21.99,21.99,21.99,21.88,21.92,21.88,21.81,21.69,21.67,21.51,21.44,21.14,20.38,20.03,19.66,19.54,19.5,19.35,19.5,19.68,19.68,19.8,20.01,19.96,20.08,20.01,20.12,20.1,19.94,20.15,20.31,20.08,20.12,20.22,20.15,20.1,20.36,20.43,20.36,20.29,20.12,20.29,20.29,20.19,20.17,20.31,19.94,20.1,20.05,20.24,20.08,19.92,23.87,24.02,24.0,24.05,23.84,23.98,23.98,23.96,23.96,24.02,24.05,23.96,23.98,23.89,24.0,24.22,24.36,24.16,24.25,24.14,24.47,24.22,24.4,24.18,24.2,24.02,24.14,24.09,24.09,24.27,24.05,24.05,24.45,24.18,24.2,24.07,24.07,23.96,24.07,24.18,24.07,24.11,24.36,24.22,24.07,23.78,24.14,24.02,24.18,24.14,24.09,24.14,24.14,24.11,24.2,23.96,24.18,24.18,24.02,24.07,24.02,24.0,24.05,24.02,23.96,24.02,24.02,23.8,23.84,23.84,23.55,23.6,23.51,23.26,23.24,23.22,23.03,23.4,23.12,23.15,23.33,23.26,23.08,23.19,22.9,22.81,22.7,22.63,22.72,22.54,22.45,22.51,22.6,22.54,22.63,22.58,22.83,22.85,23.08,23.26,23.35,23.44,23.31,23.42,23.49,23.49,23.53,23.35,23.4,23.49,23.33,23.26,23.4,23.53,23.4,23.4,23.4,23.28,23.4,23.4,23.42,23.42,23.42,23.26,23.44,23.35,23.53,23.49,23.55,23.44,23.44,23.46,23.33,23.51,23.49,23.24,23.24,23.17,23.33,23.33,23.22,23.1,22.74,22.6,22.31,22.4,22.65,22.9,23.03,23.12,23.1,23.15,23.33,23.22,23.19,23.49,23.35,23.28,23.28,23.24,23.24,23.24,23.24,22.99,23.26,23.24,23.24,23.19,23.33,23.17,23.15,23.1,23.08,23.24,23.17,23.28,23.22,23.1,23.06,23.08,23.26,23.08,22.85,22.88,22.97,22.92,22.74,22.85,22.74,22.74,22.54,22.67,22.74,22.54,22.49,22.4,22.4,22.49,22.45,22.6,22.49,22.7,22.81,22.9,22.83,22.99,22.92,23.01,22.88,22.92,22.9,22.92,22.74,22.79,22.83,22.81,22.51,22.38,22.17,22.04,22.13,22.17,22.31,22.42,22.54,22.47,22.51,22.74,22.7,22.74,22.74,22.83,22.65,22.92,22.88,22.83,22.72,22.74,22.6,22.63,22.6,22.49,22.56,22.6,22.65,22.42,22.47,22.33,22.31,22.47,22.42,22.38,22.31,22.54,22.42,22.24,22.29,22.04,22.1,22.1,22.1,22.1,22.06,21.94,22.13,22.2,22.04,21.81,21.94,22.01,21.97,21.92,21.9,21.92,21.78,21.83,21.72,21.56,21.12,20.82,20.31,20.05,19.73,19.64,19.89,19.61,19.5,19.78,19.71,19.94,19.96,20.12,20.17,20.08,20.01,20.22,20.29,20.29,20.43,20.22,20.29,20.38,20.4,20.24,20.45,20.4,20.43,20.29,20.24,20.47,20.19,20.31,20.33,20.47,20.15,20.33,20.26,20.19,20.38,20.24,23.84,23.6,23.89,23.91,23.87,23.82,23.84,24.43,23.91,23.91,23.82,24.09,24.22,24.22,24.02,24.14,24.36,24.09,24.14,24.2,24.56,24.34,24.29,24.31,24.18,24.22,24.4,24.14,24.14,24.22,24.16,24.22,24.29,24.11,24.38,24.22,24.22,24.27,24.2,24.05,24.05,24.2,24.22,24.05,24.05,24.14,24.2,24.18,24.07,24.2,24.25,24.27,24.07,24.09,24.18,24.14,24.16,24.14,24.0,24.09,24.18,24.05,24.09,23.96,24.05,24.0,23.98,23.91,23.91,23.73,23.31,23.6,23.49,23.44,23.24,23.33,23.22,23.33,23.22,23.26,23.4,23.42,23.42,23.35,23.06,23.26,22.88,22.76,22.9,22.79,22.7,22.47,22.45,22.4,22.47,22.51,22.81,22.58,22.79,22.99,23.17,23.01,23.19,23.24,23.26,23.4,23.4,23.31,23.31,23.49,23.53,23.37,23.19,23.33,23.22,23.42,23.31,23.12,23.26,23.33,23.37,23.49,23.31,23.4,23.4,23.24,23.42,23.46,23.53,23.51,23.53,23.4,23.44,23.49,23.37,23.1,23.42,23.06,23.31,23.31,23.22,22.99,22.76,22.45,22.31,22.35,22.49,22.94,23.12,23.03,23.4,23.42,23.19,23.22,23.28,23.26,23.33,23.15,23.33,23.26,23.24,23.22,23.17,23.22,23.28,23.26,23.1,23.35,23.26,23.12,23.01,23.01,23.03,23.19,23.28,23.33,23.26,23.19,23.06,23.17,23.26,23.17,23.12,23.12,22.99,23.01,22.99,22.94,22.9,22.79,22.76,22.7,22.56,22.58,22.7,22.38,22.4,22.51,22.42,22.45,22.49,22.45,22.6,22.49,22.63,22.58,22.94,22.97,22.74,22.88,22.79,22.88,22.85,22.76,22.88,22.76,22.33,22.2,21.94,22.22,22.15,22.2,22.4,22.58,22.54,22.65,22.63,22.72,22.67,22.7,22.74,22.79,22.85,22.76,22.83,22.85,22.54,22.65,22.6,22.6,22.6,22.67,22.76,22.63,22.58,22.47,22.38,22.63,22.35,22.51,22.47,22.35,22.4,22.4,22.31,22.22,22.17,21.92,22.15,22.01,21.99,21.83,22.04,22.04,22.04,22.04,22.08,22.01,21.81,22.1,22.04,22.01,21.94,21.83,21.74,21.69,21.62,21.37,20.84,20.4,19.99,19.78,19.68,19.5,19.64,19.59,19.66,19.8,19.85,19.99,20.1,20.19,20.12,20.31,20.08,20.17,20.24,20.4,20.22,19.89,20.12,20.33,20.43,20.24,20.36,20.43,20.57,20.38,20.19,20.38,20.31,20.29,20.33,20.38,20.36,20.33,20.29,20.29,20.4,20.43,24.05,23.8,23.87,23.87,24.02,23.87,24.0,24.09,24.07,24.14,24.02,24.02,24.18,24.2,24.25,24.22,24.14,24.05,24.25,24.27,24.11,24.34,24.25,24.16,24.07,24.2,24.29,24.02,23.82,24.05,24.18,23.91,24.07,24.36,24.36,24.27,24.14,24.11,24.0,24.14,24.16,24.11,24.2,24.0,24.2,24.02,24.11,24.16,24.2,24.22,24.25,24.16,24.22,24.27,24.05,24.27,24.27,24.07,24.14,24.2,24.05,24.11,24.05,24.07,23.89,24.11,24.05,24.09,24.02,23.66,23.66,23.69,23.6,23.44,23.49,23.26,23.42,23.24,23.46,23.37,23.6,23.66,23.55,23.49,23.46,23.53,23.15,23.31,23.1,23.01,22.74,22.79,22.51,22.45,22.58,22.54,22.63,22.49,22.67,22.63,22.99,22.99,22.94,22.99,23.1,23.4,23.28,23.24,23.44,23.49,23.4,23.42,23.22,23.46,23.28,23.35,23.35,23.28,23.37,23.37,23.24,23.44,23.4,23.22,23.6,23.42,23.51,23.44,23.42,23.26,23.26,23.33,23.35,23.51,23.26,23.35,23.22,23.28,23.19,23.26,22.94,22.74,22.45,22.38,22.31,22.45,22.76,23.08,23.08,23.12,23.35,23.15,23.31,23.26,23.26,23.37,23.51,23.28,23.31,23.35,23.37,23.28,23.31,23.33,23.26,23.28,23.08,23.12,23.4,23.22,23.35,23.15,23.24,23.24,23.31,23.31,23.15,23.19,23.03,23.22,23.28,23.12,23.1,23.01,23.08,23.15,22.85,23.03,22.97,23.01,22.85,22.9,22.92,22.79,22.6,22.65,22.63,22.49,22.56,22.54,22.49,22.45,22.38,22.26,22.42,22.47,22.51,22.49,22.51,22.63,22.56,22.76,22.79,22.76,22.7,22.49,22.17,22.04,22.06,22.24,22.31,22.35,22.72,22.67,22.63,22.74,22.74,22.7,22.6,22.76,22.63,22.67,22.81,22.79,22.76,22.67,22.45,22.67,22.6,22.63,22.58,22.72,22.51,22.58,22.49,22.63,22.42,22.31,22.35,22.58,22.42,22.47,22.33,22.33,22.38,22.29,22.2,22.08,22.15,22.15,21.9,21.9,22.08,22.15,22.04,21.99,21.97,22.04,21.97,22.2,22.15,21.99,21.94,21.9,21.81,21.81,21.37,20.89,20.5,19.89,19.75,19.75,19.73,19.59,19.8,19.73,19.54,19.78,19.8,19.85,20.22,20.08,20.03,20.24,20.19,20.29,20.19,20.43,20.33,20.52,20.33,20.33,20.54,20.29,20.31,20.45,20.26,20.4,20.31,20.24,20.43,20.26,20.36,20.26,20.15,20.17,20.33,20.22,20.17,20.01,23.91,23.78,24.05,23.89,23.87,23.93,24.05,24.18,23.84,24.07,24.0,24.14,24.38,24.43,24.31,24.29,24.45,24.4,24.22,24.2,24.2,24.31,24.34,24.29,24.34,24.38,24.29,24.18,23.96,24.25,24.31,24.25,24.16,24.25,24.2,24.34,24.14,24.07,24.14,24.05,24.09,24.25,24.16,24.25,24.07,24.14,24.27,24.09,24.14,24.43,24.2,24.16,24.34,24.43,24.11,24.09,24.18,24.18,24.2,24.16,24.14,24.05,24.09,24.11,24.07,24.07,23.96,24.09,23.8,23.73,23.51,23.58,23.46,23.4,23.51,23.4,23.42,23.49,23.49,23.46,23.71,23.64,23.6,23.6,23.53,23.49,23.62,23.46,23.46,23.26,23.08,23.1,22.79,22.85,22.74,22.6,22.67,22.29,22.63,22.58,22.65,22.88,22.49,22.76,22.83,23.1,23.19,23.24,23.26,23.44,23.35,23.31,23.35,23.31,23.35,23.31,23.26,23.33,23.28,23.37,23.33,23.46,23.46,23.4,23.51,23.49,23.44,23.44,23.49,23.37,23.31,23.26,23.33,23.31,23.44,23.26,23.31,23.17,23.01,23.06,22.92,22.6,22.51,22.49,22.42,22.54,22.74,23.12,23.17,23.19,23.31,23.28,23.26,23.37,23.44,23.35,23.42,23.42,23.37,23.26,23.42,23.28,23.49,23.33,23.19,23.33,23.12,23.15,23.28,23.26,23.26,23.1,23.08,23.17,23.26,23.28,23.26,23.31,23.12,23.12,23.22,23.22,23.1,23.19,23.15,23.12,23.06,23.1,23.08,23.24,22.99,22.94,23.08,22.94,22.83,22.7,22.7,22.81,22.58,22.56,22.4,22.38,22.51,22.42,22.42,22.35,22.47,22.38,22.49,22.47,22.4,22.51,22.58,22.42,22.45,22.31,22.17,22.06,22.06,22.22,22.45,22.51,22.9,22.67,22.65,22.63,22.74,22.72,22.72,22.74,22.63,22.74,22.74,22.72,22.81,22.74,22.63,22.74,22.74,22.63,22.65,22.74,22.65,22.74,22.63,22.6,22.38,22.38,22.45,22.42,22.42,22.22,22.2,22.47,22.24,22.17,22.24,22.24,22.29,22.1,22.08,21.97,21.99,22.06,21.94,21.9,22.1,21.99,21.97,22.1,22.13,21.85,21.97,21.76,21.6,21.46,21.07,20.57,20.19,19.71,19.61,19.75,19.78,19.66,19.89,19.71,19.73,19.96,19.92,19.87,20.05,20.22,20.29,20.22,20.19,20.17,20.29,20.26,20.29,20.45,20.5,20.57,20.47,20.29,20.54,20.33,20.47,20.54,20.33,20.31,20.4,20.4,20.31,20.33,20.33,19.99,20.19,20.17,19.94,20.08,23.91,23.96,23.91,23.8,23.93,24.14,23.96,24.2,23.87,24.02,24.07,24.4,24.07,24.18,24.2,24.38,24.27,24.2,24.22,24.11,24.36,24.27,24.18,23.98,24.27,24.38,24.2,24.29,23.98,24.11,24.09,24.16,24.05,24.18,24.14,24.07,23.91,24.16,24.14,24.05,24.14,24.2,24.2,24.38,24.11,24.18,24.16,24.05,24.05,24.07,24.14,24.16,23.98,24.07,24.09,24.07,24.16,24.31,24.02,24.11,24.02,23.96,24.02,23.93,23.84,24.2,23.98,23.89,23.84,23.75,23.64,23.6,23.44,23.51,23.51,23.37,23.44,23.44,23.44,23.58,23.78,23.75,23.82,23.98,23.66,23.64,23.71,23.53,23.49,23.46,23.33,23.42,22.99,22.88,22.9,22.65,22.6,22.54,22.51,22.63,22.56,22.6,22.47,22.6,22.6,22.81,22.81,22.99,23.15,23.1,23.35,23.24,23.51,23.26,23.35,23.35,23.31,23.19,23.31,23.28,23.17,23.15,23.46,23.33,23.31,23.31,23.44,23.44,23.26,23.31,23.35,23.33,23.35,23.42,23.28,23.22,23.1,23.03,23.12,23.08,22.65,22.45,22.31,22.33,22.56,22.7,22.74,23.26,23.08,23.12,23.37,23.35,23.28,23.42,23.24,23.44,23.28,23.12,23.35,23.22,23.35,23.33,23.35,23.31,23.22,23.12,23.1,23.12,23.17,23.08,23.19,23.12,23.26,23.37,23.24,23.26,23.22,23.28,23.08,23.33,23.28,23.22,23.17,23.08,23.03,22.99,23.08,23.08,23.17,23.17,23.19,23.15,23.06,22.94,22.85,22.88,22.74,22.85,22.97,22.74,22.7,22.51,22.49,22.51,22.31,22.45,22.29,22.38,22.26,22.2,22.06,22.31,22.35,22.33,22.22,21.99,21.94,22.08,22.13,22.33,22.47,22.7,22.72,22.74,22.56,22.6,22.63,22.79,22.47,22.58,22.67,22.51,22.6,22.65,22.51,22.63,22.6,22.76,22.72,22.74,22.72,22.58,22.58,22.81,22.67,22.4,22.22,22.35,22.45,22.31,22.26,22.42,22.45,22.31,22.2,22.13,22.22,21.92,22.17,22.08,22.01,21.97,22.1,21.85,22.06,22.04,21.85,21.97,21.92,21.94,21.99,21.78,21.72,21.62,21.42,21.07,20.75,20.33,19.85,19.66,19.57,19.52,19.85,19.71,19.73,19.66,19.89,19.82,19.94,19.99,20.05,20.4,20.12,20.24,20.01,20.4,20.33,20.26,20.31,20.15,20.36,20.5,20.45,20.4,20.4,20.24,20.36,20.52,20.33,20.12,20.45,20.26,20.45,20.38,20.29,19.99,20.15,20.22,20.17,20.24,23.8,23.78,23.87,23.75,23.93,24.07,23.91,24.18,23.89,23.75,24.09,24.22,24.11,24.31,24.27,24.25,24.02,24.14,24.22,24.49,24.38,24.34,24.22,24.25,24.29,24.38,24.36,24.31,24.2,24.16,24.14,24.29,24.27,24.11,24.16,24.34,24.16,24.18,24.07,24.22,24.07,24.05,24.31,24.27,24.16,24.05,24.0,24.2,24.29,24.25,24.29,24.14,24.27,24.02,24.22,24.16,24.07,24.14,24.34,24.18,24.16,24.2,24.0,23.96,24.05,24.09,24.07,24.05,23.87,23.71,23.69,23.55,23.44,23.46,23.55,23.42,23.55,23.8,23.8,23.75,23.87,23.98,23.84,23.96,23.96,23.93,23.82,23.66,23.91,23.62,23.62,23.58,23.42,23.22,23.33,23.12,22.97,22.85,22.74,22.83,22.65,22.56,22.4,22.54,22.51,22.74,22.83,22.74,22.94,23.08,23.28,23.22,23.24,23.19,23.44,23.42,23.37,23.35,23.37,23.42,23.28,23.22,23.37,23.42,23.31,23.31,23.44,23.35,23.71,23.42,23.53,23.49,23.44,23.44,23.51,23.28,23.24,23.03,23.06,22.81,22.42,22.47,22.26,22.38,22.56,22.9,23.15,23.22,23.26,23.31,23.42,23.4,23.44,23.31,23.26,23.44,23.46,23.4,23.26,23.28,23.28,23.28,23.31,23.33,23.31,23.15,23.35,23.19,23.22,23.15,23.37,23.22,23.17,23.33,23.4,23.53,23.28,23.17,23.15,23.22,23.37,23.31,23.35,23.17,23.1,23.15,23.01,23.22,23.19,23.22,23.24,23.12,23.19,22.97,22.94,23.01,22.97,22.97,23.01,23.01,22.7,22.74,22.83,22.6,22.54,22.58,22.58,22.38,22.33,22.35,22.1,22.15,22.29,22.08,22.24,22.06,22.01,22.04,22.17,22.42,22.54,22.6,22.65,22.74,22.74,22.79,22.67,22.83,22.81,22.81,22.83,22.83,22.74,22.74,22.88,22.67,22.81,22.76,22.74,22.72,22.6,22.74,22.74,22.72,22.74,22.65,22.4,22.33,22.4,22.4,22.24,22.42,22.47,22.56,22.26,22.33,22.29,22.13,22.08,22.26,22.01,22.15,22.01,22.08,21.99,21.99,22.01,22.06,22.04,22.04,22.01,21.69,21.81,21.65,21.35,20.89,20.38,20.03,19.54,19.71,19.35,19.47,19.61,19.71,19.94,19.75,19.87,20.15,20.08,20.03,19.96,20.33,20.01,20.17,20.29,20.17,20.47,20.43,20.38,20.17,20.43,20.36,20.52,20.57,20.43,20.36,20.33,20.5,20.5,20.47,20.47,20.45,20.57,20.15,20.43,20.36,20.22,20.12,20.26,20.29]} \ No newline at end of file diff --git a/Thermo.Active/wwwroot/thermoprophet/trasformed/_last.jpg b/Thermo.Active/wwwroot/thermoprophet/trasformed/_last.jpg deleted file mode 100644 index e8de2679..00000000 Binary files a/Thermo.Active/wwwroot/thermoprophet/trasformed/_last.jpg and /dev/null differ diff --git a/Thermo.Cam.Setup.sln b/Thermo.Cam.Setup.sln index be7e9136..09acb08a 100644 --- a/Thermo.Cam.Setup.sln +++ b/Thermo.Cam.Setup.sln @@ -17,18 +17,18 @@ Global Release|x86 = Release|x86 EndGlobalSection GlobalSection(ProjectConfigurationPlatforms) = postSolution - {009978D9-A2D0-4354-A4C1-E181D7F34919}.Debug|Any CPU.ActiveCfg = Debug|x86 - {009978D9-A2D0-4354-A4C1-E181D7F34919}.Debug|Any CPU.Build.0 = Debug|x86 - {009978D9-A2D0-4354-A4C1-E181D7F34919}.Debug|x64.ActiveCfg = Debug|x64 - {009978D9-A2D0-4354-A4C1-E181D7F34919}.Debug|x64.Build.0 = Debug|x64 - {009978D9-A2D0-4354-A4C1-E181D7F34919}.Debug|x86.ActiveCfg = Debug|x86 - {009978D9-A2D0-4354-A4C1-E181D7F34919}.Debug|x86.Build.0 = Debug|x86 - {009978D9-A2D0-4354-A4C1-E181D7F34919}.Release|Any CPU.ActiveCfg = Release|x86 - {009978D9-A2D0-4354-A4C1-E181D7F34919}.Release|Any CPU.Build.0 = Release|x86 - {009978D9-A2D0-4354-A4C1-E181D7F34919}.Release|x64.ActiveCfg = Release|x64 - {009978D9-A2D0-4354-A4C1-E181D7F34919}.Release|x64.Build.0 = Release|x64 - {009978D9-A2D0-4354-A4C1-E181D7F34919}.Release|x86.ActiveCfg = Release|x86 - {009978D9-A2D0-4354-A4C1-E181D7F34919}.Release|x86.Build.0 = Release|x86 + {009978D9-A2D0-4354-A4C1-E181D7F34919}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {009978D9-A2D0-4354-A4C1-E181D7F34919}.Debug|Any CPU.Build.0 = Debug|Any CPU + {009978D9-A2D0-4354-A4C1-E181D7F34919}.Debug|x64.ActiveCfg = Debug|Any CPU + {009978D9-A2D0-4354-A4C1-E181D7F34919}.Debug|x64.Build.0 = Debug|Any CPU + {009978D9-A2D0-4354-A4C1-E181D7F34919}.Debug|x86.ActiveCfg = Debug|Any CPU + {009978D9-A2D0-4354-A4C1-E181D7F34919}.Debug|x86.Build.0 = Debug|Any CPU + {009978D9-A2D0-4354-A4C1-E181D7F34919}.Release|Any CPU.ActiveCfg = Release|Any CPU + {009978D9-A2D0-4354-A4C1-E181D7F34919}.Release|Any CPU.Build.0 = Release|Any CPU + {009978D9-A2D0-4354-A4C1-E181D7F34919}.Release|x64.ActiveCfg = Release|Any CPU + {009978D9-A2D0-4354-A4C1-E181D7F34919}.Release|x64.Build.0 = Release|Any CPU + {009978D9-A2D0-4354-A4C1-E181D7F34919}.Release|x86.ActiveCfg = Release|Any CPU + {009978D9-A2D0-4354-A4C1-E181D7F34919}.Release|x86.Build.0 = Release|Any CPU {E4587942-498B-4AA7-9CC9-9304EB2D05C8}.Debug|Any CPU.ActiveCfg = Debug|Any CPU {E4587942-498B-4AA7-9CC9-9304EB2D05C8}.Debug|Any CPU.Build.0 = Debug|Any CPU {E4587942-498B-4AA7-9CC9-9304EB2D05C8}.Debug|x64.ActiveCfg = Debug|Any CPU diff --git a/Thermo.Cam.Setup/MainForm.cs b/Thermo.Cam.Setup/MainForm.cs index 78d70f5c..0bc4b9f9 100644 --- a/Thermo.Cam.Setup/MainForm.cs +++ b/Thermo.Cam.Setup/MainForm.cs @@ -233,9 +233,11 @@ namespace Thermo.Cam.Setup private void btnSave_Click(object sender, EventArgs e) { - TCamCtrl.takePicture(true); + TCamCtrl.takePicture(); processImage(); refreshDisplay(); + // salvo immagini + TCamCtrl.fileSave(); } private void checkLive_CheckedChanged(object sender, EventArgs e) @@ -429,7 +431,7 @@ namespace Thermo.Cam.Setup else if (readTemp) { // accodo! - TCamCtrl.saveMeasurePoint(true); + TCamCtrl.addMeasurePoint(true); // aggiorno visualizzazione processImage(); refreshDisplay(); @@ -572,9 +574,14 @@ namespace Thermo.Cam.Setup // se è in live view --> continuo if (liveView) { - TCamCtrl.takePicture(saveEnabled); + TCamCtrl.takePicture(); processImage(); refreshDisplay(); + // salvo immagini + if (saveEnabled) + { + TCamCtrl.fileSave(); + } } // avanzo prog bar progBar.Increment(3); diff --git a/Thermo.Cam.Setup/Thermo.Cam.Setup.csproj b/Thermo.Cam.Setup/Thermo.Cam.Setup.csproj index 8c31453f..2001be79 100644 --- a/Thermo.Cam.Setup/Thermo.Cam.Setup.csproj +++ b/Thermo.Cam.Setup/Thermo.Cam.Setup.csproj @@ -16,55 +16,50 @@ SAK SAK + publish\ + true + Disk + false + Foreground + 7 + Days + false + false + true + 0 + 1.0.0.%2a + false + false + true - - x86 + true - full - false - bin\win32\Debug\ + bin\Debug\ DEBUG;TRACE - prompt - 4 - false - - - x86 - pdbonly - true - bin\win32\Release\ - TRACE - prompt - 4 - false - - - x64 - true full - false - bin\x64\Debug\ - DEBUG;TRACE + AnyCPU + 7.3 prompt - 4 - false + MinimumRecommendedRules.ruleset - - x64 - pdbonly - true - bin\x64\Release\ + + bin\Release\ TRACE + true + pdbonly + AnyCPU + 7.3 prompt - 4 - false + MinimumRecommendedRules.ruleset - - $(FLIR_Atlas4)bin\$(Platform)\Flir.Atlas.Image.dll + + False + ..\..\..\..\..\..\Program Files (x86)\FLIR Systems\FLIR Atlas SDK 6\bin\x86\Flir.Atlas.Image.dll - - $(FLIR_Atlas4)bin\$(Platform)\Flir.Atlas.Live.dll + + False + ..\..\..\..\..\..\Program Files (x86)\FLIR Systems\FLIR Atlas SDK 6\bin\x86\Flir.Atlas.Live.dll ..\packages\Newtonsoft.Json.12.0.3\lib\net45\Newtonsoft.Json.dll @@ -136,11 +131,26 @@ Thermo.Cam.Utils + + + False + Microsoft .NET Framework 4.6.2 %28x86 and x64%29 + true + + + False + .NET Framework 3.5 SP1 + false + + - + + call "$(ProjectDir)\FLIR.Atlas.x86.bat" "$(TargetDir)" + + lista di MeasurePoints /// - /// - public void getTemperatures(bool readTemp) + /// Indica se le coordinate siano nello spazio originale (FLIR) = true o nello spazio trasformato = false + /// Lista Point con coordinate dei punti da leggere + public List getPointsTemperature(bool isOrigCoord, List pointReq) + { + // parto dall'oggetto punti richiesti + List answ = pointReq; + if (Thermal != null) + { + // se non è spazio originale --> faccio trasformazione + try + { + // se non è nelle coord originali --> trasformo! + if (!isOrigCoord) + { + answ = reverseMeasurePoint(pointReq); + } + + // ciclo e calcolo valori... + foreach (var item in answ) + { + item.Temperature = lastFlirData.Values[item.Coords.X + Thermal.Size.Width * item.Coords.Y]; + } + } + catch (Exception exc) + { + Console.WriteLine($"EXCEPTION: {exc}"); + } + } + return answ; + } + + /// + /// Recupera temperature (elenco MeasPoints) + /// + /// Aggiorna valore (MeasPoints) di tutte le temperature acquisite con ultima lettura + public void getTemperatures(bool forceUpdate) { if (Thermal != null) { - if (readTemp) + if (forceUpdate) { try { @@ -640,32 +727,6 @@ namespace Thermo.Cam.Utils return answ; } - /// - /// Effettua al lettura di tutte el temperature e le salva nell'oggetto in memoria - /// - public void readAllTemperatures() - { - sw.Restart(); - // richiedo tutte! - var allData = Thermal.GetValues(getReticolo()); - /// riduco info a 1 decimale - double[] floatData = Array.ConvertAll(allData, x => Math.Round(x, 2)); - - // salvo oggetto unico - lastFlirData = new TemperatureData() - { - ArraySize = new Size() - { - X = Thermal.Size.Width, - Y = Thermal.Size.Height - }, - ScanOrder = "YX", - Values = floatData - }; - sw.Stop(); - ExTime.recordData("GetAllTemperatures", sw.ElapsedMilliseconds); - } - /// /// Resetta i punti di misura /// @@ -674,6 +735,26 @@ namespace Thermo.Cam.Utils currConf.MeasPoints = new List(); } + /// + /// Calcola punti con antitrasformata prospettica + /// + /// Elenco punti trasformati da invertire in formato MeasurePoint + /// + public List reverseMeasurePoint(List trasfMPoints) + { + List answ = trasfMPoints; + // trasformo measurepoint --> point + List trasfPoints = trasfMPoints.Select(item => new Point() { X = item.Coords.X, Y = item.Coords.Y }).ToList(); + // reverse + List fixPoints = reversePoint(trasfPoints); + // sostituisco le coordinate... + for (int i = 0; i < trasfMPoints.Count; i++) + { + answ[i].Coords = fixPoints[i]; + } + return answ; + } + /// /// Calcola punti con antitrasformata prospettica /// @@ -706,30 +787,9 @@ namespace Thermo.Cam.Utils } /// - /// Salvo il punto di misura selezionato + /// Acquisisce immagine da FLIR Cam /// - /// - public void saveMeasurePoint(bool addOnEnd) - { - // se NO devo accodare resetto... - if (!addOnEnd) - { - currConf.MeasPoints = new List(); - } - MeasurePoint newPoint = new MeasurePoint() - { - Id = currConf.MeasPoints.Count, - Coords = lastPoint, - Temperature = 0 - }; - currConf.MeasPoints.Add(newPoint); - } - - /// - /// recupera immagine effettuando eventuale salvataggio - /// - /// - public string takePicture(bool doSave) + public string takePicture() { string answ = ""; sw.Restart(); @@ -747,13 +807,8 @@ namespace Thermo.Cam.Utils // salvo img locale Origin = Thermal.Image; Decorated = Thermal.Image; - // recupero le temperature... - readAllTemperatures(); - //verifico se devo salvare... - if (doSave) - { - answ = fileSave(); - } + // recupero TUTTE le temperature... + persistTemperatureData(); } catch (Exception exception) { diff --git a/Thermo.Cam.Utils/Thermo.Cam.Utils.csproj b/Thermo.Cam.Utils/Thermo.Cam.Utils.csproj index 8f5fac3d..0426f290 100644 --- a/Thermo.Cam.Utils/Thermo.Cam.Utils.csproj +++ b/Thermo.Cam.Utils/Thermo.Cam.Utils.csproj @@ -39,12 +39,13 @@ 8.0 - + False - ..\..\..\..\..\..\Program Files (x86)\FLIR Systems\FLIR Atlas SDK 4\bin\x64\Flir.Atlas.Image.dll + ..\..\..\..\..\..\Program Files (x86)\FLIR Systems\FLIR Atlas SDK 6\bin\x86\Flir.Atlas.Image.dll - - ..\..\..\..\..\..\Program Files (x86)\FLIR Systems\FLIR Atlas SDK 4\bin\x64\Flir.Atlas.Live.dll + + False + ..\..\..\..\..\..\Program Files (x86)\FLIR Systems\FLIR Atlas SDK 6\bin\x86\Flir.Atlas.Live.dll ..\packages\Newtonsoft.Json.12.0.3\lib\net45\Newtonsoft.Json.dll @@ -102,6 +103,7 @@ + @@ -110,4 +112,8 @@ + + + + \ No newline at end of file diff --git a/Thermo.Cam.Utils/Thermo.Cam.Utils.csproj.user b/Thermo.Cam.Utils/Thermo.Cam.Utils.csproj.user new file mode 100644 index 00000000..9b86104e --- /dev/null +++ b/Thermo.Cam.Utils/Thermo.Cam.Utils.csproj.user @@ -0,0 +1,6 @@ + + + + ShowAllFiles + + \ No newline at end of file diff --git a/Thermo.Cam.Utils/ThermoConf.json b/Thermo.Cam.Utils/ThermoConf.json new file mode 100644 index 00000000..670b4221 --- /dev/null +++ b/Thermo.Cam.Utils/ThermoConf.json @@ -0,0 +1,31 @@ +{ + "MeasPoints": [], + "CameraName": "FLIR AX5", + "CameraAddress": "", + "DestPoints": { + "Coords": [ + "0, 0", + "1500, 0", + "1500, 1200", + "0, 1200" + ], + "curr": 0 + }, + "OrigPoints": { + "Coords": [ + "55, 214", + "49, 68", + "218, 80", + "197, 226" + ], + "curr": 4 + }, + "TargetRange": { + "Max": 60.0, + "Min": 0.0 + }, + "TargetSize": { + "X": 1500, + "Y": 1200 + } +} \ No newline at end of file