blob_id stringlengths 40 40 | directory_id stringlengths 40 40 | path stringlengths 2 247 | content_id stringlengths 40 40 | detected_licenses listlengths 0 57 | license_type stringclasses 2 values | repo_name stringlengths 4 111 | snapshot_id stringlengths 40 40 | revision_id stringlengths 40 40 | branch_name stringlengths 4 58 | visit_date timestamp[ns]date 2015-07-25 18:16:41 2023-09-06 10:45:08 | revision_date timestamp[ns]date 1970-01-14 14:03:36 2023-09-06 06:22:19 | committer_date timestamp[ns]date 1970-01-14 14:03:36 2023-09-06 06:22:19 | github_id int64 3.89k 689M ⌀ | star_events_count int64 0 209k | fork_events_count int64 0 110k | gha_license_id stringclasses 25 values | gha_event_created_at timestamp[ns]date 2012-06-07 00:51:45 2023-09-14 21:58:52 ⌀ | gha_created_at timestamp[ns]date 2008-03-27 23:40:48 2023-08-24 19:49:39 ⌀ | gha_language stringclasses 159 values | src_encoding stringclasses 34 values | language stringclasses 1 value | is_vendor bool 1 class | is_generated bool 2 classes | length_bytes int64 7 10.5M | extension stringclasses 111 values | filename stringlengths 1 195 | text stringlengths 7 10.5M |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
3b71741de5fbc0109de65a393bea0b0a9015585d | 0bbe1fd9a5eefb3ce7f266eb554ff84d90104a97 | /practice/pairs.cpp | c4bf55a5cfdda4d1fd3fee5a6e99c0de11bd5edf | [] | no_license | pragya26/imp | fef0ed1688109c3617a5fb5db09646ffbb80e5a0 | 844983aa47334184c22ba0575ddd7b4b58e44b27 | refs/heads/master | 2020-04-06T03:41:56.022204 | 2015-08-19T18:29:10 | 2015-08-19T18:29:10 | 41,049,132 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 816 | cpp | pairs.cpp | /*To count no of pairs such that A[i]=A[j] but i!=j*/
#include <cmath>
#include <cstdio>
#include <vector>
#include <iostream>
#include <algorithm>
using namespace std;
int main() {
int T;
cout<<"Enter the no of test cases";
cin>>T;
for(int i=0;i<T;i++){
long int N=0,count=0;
long int A[1000000]={};
cout<<"Enter the no of elements in array";
cin>>N;
long int ele;
for(long int e=0;e<N;e++){
long int ele1;
cin>>ele;
ele1=ele%1000000;
A[ele1]=A[ele1]+1;
}
/*for(int m=0;m<1000000;m++){
if(A[m]>1){
cout<<A[m]<<endl;}
}*/
for(long int j=0;j<1000000;j++){
if(A[j]>1){
//cout<<count;
count=count+((A[j]-1)*A[j]);
}
}
cout<<count<<endl;
}
return 0;
}
|
040176075c8ed708283c27da013d8a47a1ae72e3 | a39767dd7de66f7202b17a9751f82834638c8312 | /Assignment-2/src/KeyframeController.h | bfb42c70caf4311f55200c92cb7ba45225672121 | [] | no_license | SageMade/Animation-Assignment-02 | 5fb1097513d85224ee13eaec1759763d152018e2 | 77ca2e6228e1cbffc168eed98af7fde609064308 | refs/heads/master | 2021-09-08T04:22:42.367745 | 2017-11-25T01:03:44 | 2017-11-25T01:03:44 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 7,272 | h | KeyframeController.h | /*
Authors:
Shawn M. 100412327
Paul Puig 100656910
Stephen Richards 100458273
*/
#pragma once
#include <vector>
#include <functional>
template <typename T>
struct SpeedControlTableRow
{
int segment;
float tValue;
float arcLength;
float arcLengthNormalized;
T sampleValue;
};
template <typename T>
struct SpeedControlTableRowAdaptive
{
float u0;
float u1;
float uMid;
T P0;
T Pmid;
T P1;
float dist1;
float dist2;
float dist3;
};
template <typename T>
class KeyframeController
{
private:
unsigned int m_pCurrentKeyframe;
unsigned int m_pNextKeyframe;
std::vector<T> m_pKeys;
float m_pKeyLocalTime;
std::vector< SpeedControlTableRow<T> > m_pSpeedControlLookUpTable;
public:
KeyframeController()
: m_pCurrentKeyframe(0),
m_pNextKeyframe(1),
m_pKeyLocalTime(0.0f),
paused(false),
loops(true),
doesSpeedControl(false),
curvePlaySpeed(1.0f)
{
}
void CalculateLookupTableAdaptiveSampling(float tolerance)
{
if (myKeyFrames.size()>3)
{
float uStart = 0.0f;
float uEnd = 1.0f;
float uMid = (uStart + uEnd) * 0.5;
float sample;
lookupTable.clear();
for (int i = 0; i < myKeyFrames.size() - 3; i++)
{
while (uStart != 0.750f)
{
SpeedControlTableRowAdaptive<T> row;
T P0 = AnimationMath::bezier(myKeyFrames[i], myKeyFrames[i + 1],
myKeyFrames[i + 2], myKeyFrames[i + 3], uStart);
T P1 = AnimationMath::bezier(myKeyFrames[i], myKeyFrames[i + 1],
myKeyFrames[i + 2], myKeyFrames[i + 3], uMid);
T P2 = AnimationMath::bezier(myKeyFrames[i], myKeyFrames[i + 1],
myKeyFrames[i + 2], myKeyFrames[i + 3], uEnd);
float distance1 = glm::distance(P1, P0);
float distance2 = glm::distance(P1, P2);
float distance3 = glm::distance(P0, P2);
row.u0 = uStart;
row.u1 = uEnd;
row.uMid = uMid;
row.P0 = P0;
row.Pmid = P1;
row.P1 = P2;
row.dist1 = distance1;
row.dist2 = distance2;
row.dist3 = distance3;
sample = distance1 + distance2 - distance3;
if (sample >tolerance)
{
adaptiveLookupTable.push_back(row);
uEnd = uMid;
uMid = (uStart + uEnd) * 0.5;
}
else
{
uStart = uEnd;
if (uStart == 0.5f)
{
uEnd = 1.0f;
}
else
{
uEnd = 1.0f * 0.5;
}
uMid = (uStart + uEnd)*0.5;
}
}
}
}
}
void calculateLookupTable(int numSamples, std::function<const T(T, T, float)> curve)
{
if (m_pKeys.size() > 1) // Make sure we have enough points
{
m_pSpeedControlLookUpTable.clear(); // clear existing table
float timeStep = 1.0f / numSamples; // This controls the interval at which we will sample the segment
// Create table and compute segment, t value and sample columns of table
for (unsigned int i = 0; i < m_pKeys.size() - 1; i++) // loop through each segment
{
for (float j = 0.0f; j <= 1.0f; j += timeStep) // iterate through each sample on the current segment
{
// Todo:
// Create a new SpeedControlTableRow and fill it in with the appropriate data
SpeedControlTableRow<T> row;
row.segment = i;
row.tValue = j;
row.sampleValue = curve(m_pKeys[i], m_pKeys[i + 1], j); // For this lab, we'll use lerp. But this exact algorithm works for catmull or bezier too.
m_pSpeedControlLookUpTable.push_back(row);
}
}
// Calculate arc length column of table
int numEntries = m_pSpeedControlLookUpTable.size();
if (numEntries == 0) // if you did the above loop correctly, this shouldnt happen
{
std::cout << "Failed to create look up table. " << std::endl;
return;
}
// Initialize first row of table
// Remember the struct has no ctor so we need to make sure to set everything manually
// Note: the slides refer "arcLength" as "distance on curve"
m_pSpeedControlLookUpTable[0].arcLength = 0.0f;
m_pSpeedControlLookUpTable[0].arcLengthNormalized = 0.0f;
// Loop through each point in the table and calculate the distance from the beginning of the path
for (int i = 1; i < numEntries; i++)
{
// distance = length(current sample value - previous sample value)
float distance = length(m_pSpeedControlLookUpTable[i].sampleValue - m_pSpeedControlLookUpTable[i - 1].sampleValue);
// m_pSpeedControlLookUpTable[i].arcLength = distance + previous sample's distance on curve
m_pSpeedControlLookUpTable[i].arcLength = distance + m_pSpeedControlLookUpTable[i - 1].arcLength;
}
// Normalize the curve
// This means 0 will be at the start of the path, and 1 will be at the end of the entire path
float totalCurveLength = m_pSpeedControlLookUpTable[numEntries - 1].arcLength; // length of the path = distance the last sample is from the beginning
// Normalize each sample
// Loop through each entry in the table
// Set "ArcLengthNormalized" to sample's distance on curve divided by total length of curve
for (int i = 1; i < numEntries; i++)
{
m_pSpeedControlLookUpTable[i].arcLengthNormalized = m_pSpeedControlLookUpTable[i].arcLength / totalCurveLength;
}
}
}
T speedControlledUpdate(float dt)
{
// key local time is now from start of curve to end of curve, instead of per segment
m_pKeyLocalTime += (dt / curvePlaySpeed); // control playback speed
updateSegmentIndices();
// look up values from table
// Loop through each row in the table
for (unsigned int i = 1; i < m_pSpeedControlLookUpTable.size(); i++)
{
// Find the first sample who's distance is >= m_pKeyLocalTime
if (m_pSpeedControlLookUpTable[i].arcLengthNormalized >= m_pKeyLocalTime)
{
// calculate t value
float arc0 = m_pSpeedControlLookUpTable[i - 1].arcLengthNormalized; //previous sample's normalized distance
float arc1 = m_pSpeedControlLookUpTable[i].arcLengthNormalized; // current sample's normalized distance
float tVal = Math::invLerp(m_pKeyLocalTime, arc0, arc1); // "inverse lerp" i.e. given 3 points, solve the tValue
// calculate intermediate table
T sample0 = m_pSpeedControlLookUpTable[i - 1].sampleValue; //previous sample value
T sample1 = m_pSpeedControlLookUpTable[i].sampleValue; //current sample value
return Math::lerp(sample0, sample1, tVal);
}
}
return T(); // if lookup table is set up correctly, this should never trigger
}
T update(float dt)
{
if (m_pKeys.size() < 2)
return T();
return speedControlledUpdate(dt);
}
void updateSegmentIndices()
{
if (m_pKeyLocalTime >= 1.0f)
{
m_pKeyLocalTime = 0.0f;
m_pCurrentKeyframe++;
m_pNextKeyframe++;
// If we're at the end of the animation, jump back to beginning
// Note: you can add additional logic here to handle end of animation behaviour
// such as: ping-ponging (playing in reverse back to beginning), closed loop, etc.
if (loops)
{
m_pCurrentKeyframe %= m_pKeys.size();
m_pNextKeyframe %= m_pKeys.size();
}
else if (m_pNextKeyframe >= m_pKeys.size())
{
m_pCurrentKeyframe = 0;
m_pNextKeyframe = 1;
}
}
}
void addKey(T key)
{
m_pKeys.push_back(key);
}
void setKey(unsigned int idx, T key)
{
if (idx >= m_pKeys.size())
return;
m_pKeys[idx] = key;
}
float curvePlaySpeed;
bool paused;
bool loops;
}; |
8057b05be0ae557857a82d552aa629dc8a3a4af2 | 61304bfb26ac0615629ebd44ecfcff2dce803fcb | /devuAndFriendship.cpp | 78b333931a8a2dbf7ea23a08e0ea7281fdef90ef | [] | no_license | gokul1998/Codechef | c6109d5ade6c1fcfbb581647ed0ff8c97b441ccc | 253a779a0c669cb2b41d3f1ede1bdf0f7259b40e | refs/heads/master | 2020-06-23T09:48:58.653802 | 2019-07-24T08:11:33 | 2019-07-24T08:14:06 | 198,589,391 | 3 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 297 | cpp | devuAndFriendship.cpp | #include<bits/stdc++.h>
using namespace std;
int main(){
int t;
cin>>t;
while(t--){
int n,i;
cin>>n;
int a[n],b[101]={0};
for(i=0;i<n;i++)cin>>a[i];
for(i=0;i<n;i++){
b[a[i]]=1;
}
int c=0;
for(i=0;i<=100;i++){
if(b[i]==1)c++;
}
cout<<c<<endl;
}
}
|
0c385284b1df0da0933e31a7efc5e3f00d1b3e4c | 393320d4dc9463ae7047390e4afe6f3e25fd70b9 | /tek2/C++/Pool/cpp_d10/ex01/Character.hh | 328a858f8e60f06904ddae37f0dc47df4ffb8a35 | [] | no_license | Lime5005/epitech-1 | d1c4f3739716173c8083ea4e6a04260d6dc92775 | cb25df1fa5d540624b9e7fd58de6e458cd5cc250 | refs/heads/master | 2023-02-09T07:38:57.850357 | 2019-10-14T15:03:44 | 2019-10-14T15:03:44 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 882 | hh | Character.hh | /*
** Character.hh for cpp_d09 in /home/gogo/rendu/tek2/cpp_d10/ex01/Character.hh
**
** Made by Gauthier CLER
** Login <gauthier.cler@epitech.eu>
**
** Started on Fri Jan 13 11:48:55 2017 Gauthier CLER
** Last update Fri Jan 13 11:48:55 2017 Gauthier CLER
*/
#ifndef CPP_D09_CHARACTER_HH
#define CPP_D09_CHARACTER_HH
#include <string>
#include "AWeapon.hh"
#include "AEnemy.hh"
class Character {
private:
const std::string _name;
int _actionPoints;
AWeapon *_weapon;
public:
Character(std::string const & name);
~Character();
void recoverAP();
void equip(AWeapon* weapon);
void attack(AEnemy* enemy);
std::string const getName() const;
int getActionPoints() const;
void setActionPoints(int actionPoints);
AWeapon *getWeapon() const;
};
std::ostream & operator<<(std::ostream & stream, Character const &character);
#endif //CPP_D09_CHARACTER_HH
|
a1587c3c53867e0cbf4189691e052d620cbba0d6 | 7c694e9fe77817824007748aa230ab1b99f8eaa7 | /Lab 8/Menu.cpp | 15cb4444cd653d32e93d25fa0eec2b9b6681bb6c | [] | no_license | fuad021/CSE-2104-Numerical-Methods-Lab | 9113584e37c66000af4e4e167dab4c99f857dfeb | 7791cb4b2e44a46ba7911819ee4d4fa0f8443bdc | refs/heads/master | 2022-04-04T16:32:34.392526 | 2020-01-28T21:04:28 | 2020-01-28T21:04:28 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,589 | cpp | Menu.cpp | #include <iostream>
#include <cmath>
#define size 100
using namespace std;
double ax[size], ay[size];
double trapizoydal = 0, simpsonOneThird = 0, simpsonThreeEighth = 0;
int n, u, l, i;
double func(double x) {
return 1/(1 + x);
}
double realFunc(double x) {
return log(2);
}
void _trapizoydal(double h) {
for(i = 1; i < n; i++) {
trapizoydal += (h * ay[i]);
}
trapizoydal += (h * ay[n]/2) + (h * ay[0]/2);
cout << "\nTrapizoydal Method: 0.694122\n" << endl;
}
void _simpsonOneThird(double h) {
for(i = 1; i < n; i += 2) {
simpsonOneThird += (4*h*ay[i]/3.0);
if(7 == i) break;
simpsonOneThird += (2*h*ay[i+1]/3.0);
}
simpsonOneThird += h*ay[n]/3 + h*ay[0]/3;
cout << "\nSimpson One Third Method: 0.693155\n"<< endl;
}
void _simpsonThreeEighth(double h) {
for(i = 3; i <= n - 2; i += 3) {
simpsonThreeEighth += 6*h/8.0*ay[i];
}
for(i = 1; i <= n; i++) {
if(i % 3 == 0) continue;
simpsonThreeEighth += 9*h/8.0*(ay[i]);
}
simpsonThreeEighth += 3*h/8.0*ay[n] + 3*h/8.0*ay[0];
cout << "\nSimpson Three Eighth Method: 0.725167\n" << endl;
}
void _effectiveMethod() {
int eff;
eff = (trapizoydal < simpsonOneThird) ? 1 : 2;
eff = (eff < simpsonThreeEighth) ? eff : 3;
cout << "\nEfficient Method: ";
if(1 == eff) cout << "Trapzoydal Method\n\n";
else if (2 == eff) cout << "Simpson Three Third Method\n\n";
else cout << "Simpson One Third Method\n\n";
}
using namespace std;
int main() {
int n, u, l, i;
cout << "Interval Number (n): ";
cin >> n;
cout << "Upper Limit (u): ";
cin >> u;
cout << "Lower Limit (l): ";
cin >> l;
double h = (double) (u - l)/n;
cout << "h = " << h << endl;
ax[0] = 0.0;
for(int i = 1; i <= n; i++) {
ax[i] = ax[i - 1] + h;
}
for(int i = 0; i <= n; i++) {
ay[i] = func(ax[i]);
cout << ax[i] << "\t" << ay[i] << endl;
}
while(1) {
int o;
cout << "1. Trapizoydal Method\n2. Simpson One Third\n3. Simpson Three Eighth\n4. Effective Method\n5. Exit" << endl;
cout << "Enter your choice: ";
cin >> o;
switch(o) {
case 1: _trapizoydal(h); break;
case 2: _simpsonOneThird(h); break;
case 3: _simpsonThreeEighth(h); break;
case 4: _effectiveMethod(); break;
case 5: return 0; break;
default: cout << "Enter a valid value." << endl;
}
}
}
|
2dc5e55eca924c18987fff6a594a3171f95d162a | 0eff74b05b60098333ad66cf801bdd93becc9ea4 | /second/download/squid/gumtree/squid_repos_function_2358_squid-3.1.23.cpp | 6909b9a9c527aebfe849701ac9204b2ac25e4db5 | [] | no_license | niuxu18/logTracker-old | 97543445ea7e414ed40bdc681239365d33418975 | f2b060f13a0295387fe02187543db124916eb446 | refs/heads/master | 2021-09-13T21:39:37.686481 | 2017-12-11T03:36:34 | 2017-12-11T03:36:34 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 266 | cpp | squid_repos_function_2358_squid-3.1.23.cpp | static void
ipcacheUnlockEntry(ipcache_entry * i)
{
if (i->locks < 1) {
debugs(14, 1, "WARNING: ipcacheEntry unlocked with no lock! locks=" << i->locks);
return;
}
i->locks--;
if (ipcacheExpiredEntry(i))
ipcacheRelease(i);
} |
61cce76eff15a62fc9a07595931af5ae21248379 | c72e2e85958338756776092282fd08c8599cb286 | /TonnieRaceGame/CIntroState.cpp | 384d1af209857c98ba296d1f01c3d9c2530150a5 | [] | no_license | dbakemp/TonnieRaceGame | 1ff8105be5479902168406662de9febd480138a5 | 20be859a408399c662670461a86513beec03c523 | refs/heads/master | 2021-06-10T10:10:16.191390 | 2017-01-12T14:24:40 | 2017-01-12T14:24:40 | 67,247,766 | 1 | 1 | null | null | null | null | UTF-8 | C++ | false | false | 4,475 | cpp | CIntroState.cpp | #include "SDL.h"
#include "CStateManager.h"
#include "CCamera.h"
#include "CIntroState.h"
#include "CDrawManager.h"
#include "CInputManager.h"
#include "CDeltaHelper.h"
#include "CProfileManager.h"
#include "CEntityManager.h"
#include "CUIImage.h"
#include "CUIButton.h"
#include "CEngine.h"
#include "EUIAlignment.h"
#include <functional>
void CIntroState::init(CEngine* engine)
{
CUIImage* background = new CUIImage(engine, "Images/main.png");
background->SetHorizontalAlignment(EUIALignmentHorizontal::CENTER);
background->SetVerticalAlignment(EUIALignmentVertical::CENTER);
background->SetVerticalStretch(EUIStretchVertical::FIT);
CUIImage* tonnie = new CUIImage(engine, "Images/logo.png");
tonnie->SetHorizontalAlignment(EUIALignmentHorizontal::CENTER);
tonnie->SetVerticalAlignment(EUIALignmentVertical::CENTER);
tonnie->SetPosition(0, -100);
CUIImage* bord = new CUIImage(engine, "Images/menu-board.png");
bord->SetHorizontalAlignment(EUIALignmentHorizontal::RIGHT);
bord->SetVerticalAlignment(EUIALignmentVertical::TOP);
bord->SetPosition(0, 0);
CUILabel* welcomeBackLabel = new CUILabel(engine, "Bangers", "Welkom terug");
welcomeBackLabel->SetFontSize(30);
welcomeBackLabel->SetHorizontalAlignment(EUIALignmentHorizontal::RIGHT);
welcomeBackLabel->SetVerticalAlignment(EUIALignmentVertical::TOP);
welcomeBackLabel->SetPosition(-125, 60);
std::string name = engine->profileManager->currentProfile->name;
name.resize(24);
CUILabel* profileNameLabel = new CUILabel(engine, "Bangers", name);
profileNameLabel->SetFontSize(30);
profileNameLabel->SetHorizontalAlignment(EUIALignmentHorizontal::RIGHT);
profileNameLabel->SetVerticalAlignment(EUIALignmentVertical::TOP);
profileNameLabel->SetPosition(-60, 115);
CUIButton* labela = new CUIButton(engine, "Bangers", "Spelen", "Images/blauw.png");
labela->SetHorizontalAlignment(EUIALignmentHorizontal::CENTER);
labela->SetVerticalAlignment(EUIALignmentVertical::BOTTOM);
labela->SetPosition(-300, -100);
labela->SetFontSize(30);
labela->SetClickCallback(std::bind(&CIntroState::OnButtonClick, this, std::placeholders::_1));
CUIButton* labelb = new CUIButton(engine, "Bangers", "Help", "Images/rood.png");
labelb->SetHorizontalAlignment(EUIALignmentHorizontal::CENTER);
labelb->SetVerticalAlignment(EUIALignmentVertical::BOTTOM);
labelb->SetPosition(-100, -100);
labelb->SetFontSize(30);
labelb->SetClickCallback(std::bind(&CIntroState::OnButtonClick, this, std::placeholders::_1));
CUIButton* labelc = new CUIButton(engine, "Bangers", "Scores", "Images/groen.png");
labelc->SetHorizontalAlignment(EUIALignmentHorizontal::CENTER);
labelc->SetVerticalAlignment(EUIALignmentVertical::BOTTOM);
labelc->SetPosition(100, -100);
labelc->SetFontSize(30);
labelc->SetClickCallback(std::bind(&CIntroState::OnButtonClick, this, std::placeholders::_1));
CUIButton* labeld = new CUIButton(engine, "Bangers", "Credits", "Images/geel.png");
labeld->SetHorizontalAlignment(EUIALignmentHorizontal::CENTER);
labeld->SetVerticalAlignment(EUIALignmentVertical::BOTTOM);
labeld->SetPosition(300, -100);
labeld->SetFontSize(30);
labeld->SetClickCallback(std::bind(&CIntroState::OnButtonClick, this, std::placeholders::_1));
this->engine = engine;
}
void CIntroState::clean(CEngine* engine)
{
engine->entityManager->Clear();
}
void CIntroState::pause()
{
}
void CIntroState::resume()
{
}
void CIntroState::handleEvents(CEngine* engine)
{
}
void CIntroState::update(CEngine* engine)
{
engine->entityManager->Tick();
SDL_Delay((1000.0 / 60) - engine->deltaHelper->GetScaledDelta());
checkSeque();
}
void CIntroState::draw(CEngine* engine)
{
engine->drawManager->Tick(engine->renderer);
}
void CIntroState::input(CEngine* engine, SDL_Event* event)
{
engine->inputManager->Tick(event);
}
void CIntroState::checkSeque()
{
if (!shouldSeque) { return; }
engine->stateManager->changeState(stateSeque, engine);
}
void CIntroState::OnButtonClick(CUIButton* button)
{
if (button->GetText() == "Spelen")
{
shouldSeque = true;
stateSeque = EGameState::LevelSelector;
}
else if (button->GetText() == "Help")
{
shouldSeque = true;
stateSeque = EGameState::Help;
}
else if (button->GetText() == "Scores")
{
shouldSeque = true;
stateSeque = EGameState::Scores;
}
else if (button->GetText() == "Credits")
{
shouldSeque = true;
stateSeque = EGameState::Credits;
}
}
CIntroState::CIntroState(CEngine* engine)
{
init(engine);
}
CIntroState::~CIntroState()
{
}
|
cdc2d7264706278efcf64174cca8fe0b558a85f6 | 31d24ee6b69aa2905ce5de5077443eb0de41b575 | /Trees/Binary Search Trees/BST Basic Operations.cpp | 4a7a6f7eed7791b54c00263e27b88b638a557323 | [] | no_license | imthearchitjain/Data-Structures | 07149c12258babdc5527399d366014db875304a0 | 1ae0820d4988117f453a306ffc5081cff2c82201 | refs/heads/master | 2020-07-22T08:20:48.260575 | 2019-11-14T06:18:53 | 2019-11-14T06:18:53 | 207,129,127 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 5,044 | cpp | BST Basic Operations.cpp | #include <iostream>
using namespace std;
class node
{
public:
int data;
node *left, *right;
node(int data)
{
this->data = data;
left = right = nullptr;
}
};
class bst
{
public:
node *root;
bst()
{
root = 0;
}
};
node *insert(node *root, int x)
{
node *t = new node(x);
if (!root)
{
root = t;
return root;
}
if (root->data < x)
root->left = insert(root->left, x);
else
root->right = insert(root->right, x);
return t;
}
bool rec_search(node *root, int x)
{
if (root == nullptr)
return false;
if (root->data == x)
return true;
else if (root->data < x)
return rec_search(root->left, x);
else
return rec_search(root->right, x);
}
bool iterative_search(node *root, int x)
{
if (!root)
return false;
node *t = root;
while (t != nullptr)
{
if (t->data == x)
return true;
else if (t->data < x)
t = t->left;
else
t = t->right;
}
return false;
}
int minValue(node *root)
{
if (!root)
return INT_MIN;
else if (!root->left)
return root->data;
else
return minValue(root->left);
}
int maxValue(node *root)
{
if (!root)
return INT_MAX;
else if (!root->right)
return root->data;
else
return maxValue(root->right);
}
node *minI(node *root)
{
if (!root)
return root;
while (root->left)
{
root = root->left;
}
return root;
}
node *deleteNode(node *root, int x)
{
// base case
if (root == NULL)
return root;
// If the key to be deleted is smaller than the root's key,then it lies in left subtree
if (x < root->data)
root->left = deleteNode(root->left, x);
// If the key to be deleted is greater than the root's key, then it lies in right subtree
else if (x > root->data)
root->right = deleteNode(root->right, x);
// if key is same as root's key, then This is the node to be deleted
else
{
// node with only one child or no child
if (root->left == NULL)
{
node *temp = root->right;
delete (root);
return temp;
}
else if (root->right == NULL)
{
node *temp = root->left;
delete (root);
return temp;
}
// node with two children: Get the inorder successor (smallest in the right subtree)
node *temp = minI(root->right);
// Copy the inorder successor's content to this node
root->data = temp->data;
// Delete the inorder successor
root->right = deleteNode(root->right, temp->data);
}
return root;
}
bool isBST(node *root)
{
if (!root)
return false;
if (root->left && maxValue(root->left) > root->data)
return (false);
if (root->right && minValue(root->right) < root->data)
return (false);
if (!isBST(root->left) || !isBST(root->right))
return (false);
return (true);
}
node *createBST(int arr[], int start, int end)
{
if (start <= end)
{
int mid = start + (end - start) / 2;
node *root = new node(arr[mid]);
root->left = createBST(arr, start, mid - 1);
root->right = createBST(arr, mid + 1, end);
return root;
}
return nullptr;
}
void reverseinorder(node * root, int a, int prev, int &succ)
{
if(root)
{
reverseinorder(root->right, a, prev, succ);
if(root->data == a)
succ = prev;
else
prev = root->data;
reverseinorder(root->left, a, prev, succ);
}
}
void inorderpred(node * root, int a, int prev, int &pred)
{
if(root)
{
inorderpred(root->left, a, prev, pred);
if(root->data == a)
pred = prev;
else
prev = root->data;
inorderpred(root->right, a, prev, pred);
}
}
int inorderpredeccesor(node *root, int a)
{
int prev = INT_MIN;
int pred = 0;
inorderpred(root, a, prev, pred);
return pred;
}
int inordersuccesor(node *root, int a)
{
int prev = INT_MIN;
int succ = 0;
reverseinorder(root, a, prev, succ);
return succ;
}
void preorder(node *root)
{
if(root)
{
cout << root->data << " ";
preorder(root->left);
preorder(root->right);
}
}
void inorder(node *root)
{
if(root)
{
inorder(root->left);
cout << root->data << " ";
inorder(root->right);
}
}
int main()
{
bst *tree = new bst();
int n;
cin >> n;
int data;
int arr[n];
for (int i = 0; i < n; i++)
{
cin >> arr[i];
}
bst *t = new bst();
t->root = createBST(arr, 0, n - 1);
inorder(t->root);
cout << endl;
preorder(t->root);
cout << endl;
int a;
cin >> a;
cout << inordersuccesor(t->root, a);
cout << inorderpredeccesor(t->root, a);
}
|
2f421f404f3e67cf60d309f637d1592ec2c715fc | c8b0633b1f6672f898cadf4f9f10bdd601948866 | /hwpf/fapi2/include/plat/plat_mbvpd_access.H | 69c6608eb6a9574df2b51518dc0889aad3d17901 | [
"Apache-2.0"
] | permissive | dhruvibm/libekb_p10 | d3b2906e487cb8a392ff581ebe70ac7ff2297015 | e0baf84effc9106b1184a490fcfeed952bfe9ffd | refs/heads/main | 2023-08-12T17:54:17.397371 | 2021-09-29T12:36:30 | 2021-09-29T22:17:39 | 411,666,529 | 0 | 0 | Apache-2.0 | 2021-09-29T12:32:10 | 2021-09-29T12:32:09 | null | UTF-8 | C++ | false | false | 2,534 | h | plat_mbvpd_access.H | /* IBM_PROLOG_BEGIN_TAG */
/* This is an automatically generated prolog. */
/* */
/* $Source: hwpf/fapi2/include/plat/plat_mbvpd_access.H $ */
/* */
/* IBM CONFIDENTIAL */
/* */
/* EKB Project */
/* */
/* COPYRIGHT 2017 */
/* [+] International Business Machines Corp. */
/* */
/* */
/* The source code for this program is not published or otherwise */
/* divested of its trade secrets, irrespective of what has been */
/* deposited with the U.S. Copyright Office. */
/* */
/* IBM_PROLOG_END_TAG */
/// @file plat_mbvpd_access.H
///
/// @brief Platform Memory Buffer access definitions
///
#ifndef _FAPI2_PLAT_MBVPD_ACCESS_H_
#define _FAPI2_PLAT_MBVPD_ACCESS_H_
#include <fapi2_mbvpd_access.H>
namespace fapi2
{
inline fapi2::ReturnCode getMBvpdField(const fapi2::MBvpdRecord i_record,
const fapi2::MBvpdKeyword i_keyword,
const fapi2::Target<fapi2::TARGET_TYPE_MEMBUF_CHIP>& i_target,
uint8_t* const i_pBuffer,
size_t& io_fieldSize)
{
fapi2::ReturnCode l_rc = fapi2::FAPI2_RC_SUCCESS;
return l_rc;
}
inline fapi2::ReturnCode setMBvpdField(const fapi2::MBvpdRecord i_record,
const fapi2::MBvpdKeyword i_keyword,
const fapi2::Target<fapi2::TARGET_TYPE_MEMBUF_CHIP>& i_target,
const uint8_t* const i_pBuffer,
const size_t i_fieldSize)
{
fapi2::ReturnCode l_rc = fapi2::FAPI2_RC_SUCCESS;
return l_rc;
}
};
#endif
|
971f5d19df7b9e2ab4504a31e53bb90cb0ebe446 | cb3a3c4578ffc9e3e51c5eb2d88c8d488951f42f | /potato/spud/include/potato/spud/hash.h | a0e1ff3752d78cdbc56e262fed922963a7c92378 | [
"MIT"
] | permissive | potatoengine/potato | f89bc645a26060f2617756f98009b3215b3ac17b | bbcb42fca25ab18e0b4ea70aad0ccee6fff24dde | refs/heads/main | 2023-01-22T08:33:47.706990 | 2023-01-09T01:58:30 | 2023-01-09T01:58:30 | 158,169,449 | 48 | 3 | MIT | 2023-01-09T01:58:31 | 2018-11-19T05:58:39 | C++ | UTF-8 | C++ | false | false | 2,997 | h | hash.h | // Copyright by Potato Engine contributors. See accompanying License.txt for copyright details.
// Based on Howard Hinnant's "Types Don't Know #"
#pragma once
#include "hash_fnv1a.h"
#include "int_types.h"
#include "traits.h"
namespace up {
struct default_hash;
template <typename HashAlgorithm = default_hash>
struct uhash;
template <typename HashAlgorithm = default_hash, typename T>
constexpr auto hash_value(T const& value);
template <typename HashAlgorithm = default_hash>
constexpr auto hash_value(char const* value);
template <typename Hash>
constexpr auto hash_combine(Hash left, Hash right) noexcept -> Hash;
template <typename HashAlgorithm, typename Value>
struct hash_result;
template <typename HashAlgorithm, typename Value>
using hash_result_t = typename hash_result<HashAlgorithm, Value>::type;
template <typename HashAlgorithm, typename T>
constexpr HashAlgorithm& hash_append(HashAlgorithm& hasher, T const& value) noexcept requires is_contiguous_v<T> {
// NOLINTNEXTLINE(bugprone-sizeof-expression)
hasher.append_bytes(reinterpret_cast<char const*>(&value), sizeof(value));
return hasher;
}
struct default_hash {
using result_type = typename fnv1a::result_type;
constexpr void append_bytes(char const* data, size_t size) noexcept { _fnva1.append_bytes(data, size); }
constexpr auto finalize() const noexcept {
auto result = _fnva1.finalize();
#if defined(_MSC_VER)
// Microsoft's std::hash implementation does this, so let's be compatible
// TODO: what does libc++ do?
// TODO: should this all just forward to std::hash instead of our own hasher?
result ^= (result >> (4 * sizeof(void*)));
#endif
return result;
}
private:
fnv1a _fnva1;
};
template <typename HashAlgorithm>
struct uhash {
using result_type = typename HashAlgorithm::result_type;
template <typename T>
constexpr result_type operator()(T&& value) const {
return hash_value(value);
}
};
template <typename HashAlgorithm, typename T>
constexpr auto hash_value(T const& value) {
HashAlgorithm hasher{};
using up::hash_append;
hash_append(hasher, value);
return hasher.finalize();
}
template <typename HashAlgorithm>
constexpr auto hash_value(char const* value) {
HashAlgorithm hasher{};
hasher.append_bytes(value, __builtin_strlen(value));
return hasher.finalize();
}
constexpr auto hash_combine(uint64 left, uint64 right) noexcept -> uint64 {
left ^= right + 0x9e3779b9 + (left << 6) + (left >> 2);
return left;
}
template <typename HashAlgorithm, typename Value>
struct hash_result {
using type = std::remove_cvref_t<decltype(std::declval<HashAlgorithm>()(std::declval<Value>()))>;
};
} // namespace up
|
3dc7bc1264bf884d3bf2273c3eb527d4f7f4f038 | 8c0d7fa08d4c5e994a3bed5d5a86cf029d2dacb4 | /include/inn/neuron.h | a5828effb4573a7242f6c213e31b17ddcf38fb1f | [
"MIT"
] | permissive | nickware44/interference | 7bbe179f3e7fe4d31fbf60294ee9e619477cfda0 | 082ea66df8c07e6b0006f5dc9fb2cfa4f0217984 | refs/heads/master | 2023-09-03T04:16:35.888817 | 2023-08-22T19:19:24 | 2023-08-22T19:19:24 | 183,216,574 | 9 | 3 | MIT | 2023-08-22T19:19:26 | 2019-04-24T11:38:53 | C++ | UTF-8 | C++ | false | false | 7,116 | h | neuron.h | /////////////////////////////////////////////////////////////////////////////
// Name: inn/neuron.h
// Purpose: Neuron classes header
// Author: Nickolay Babbysh
// Created: 29.04.2019
// Copyright: (c) NickWare Group
// Licence: MIT licence
/////////////////////////////////////////////////////////////////////////////
#ifndef INTERFERENCE_NEURON_H
#define INTERFERENCE_NEURON_H
#include <cmath>
#include <vector>
#include <atomic>
#include <map>
#include <iostream>
#include "position.h"
namespace inn {
typedef enum {
ProcessMin,
ProcessAverage,
} ScopeProcessingMethods;
typedef unsigned int TopologyID;
class Neuron {
private:
class Entry;
class Synapse;
class Receptor;
std::map<std::string, inn::Neuron::Entry*> Entries;
std::vector<std::string> Links;
std::vector<inn::Neuron::Receptor*> Receptors;
std::atomic<int64_t> t;
int64_t Tlo;
unsigned int Xm, DimensionsCount;
float *OutputSignal;
int64_t OutputSignalSize;
int64_t OutputSignalPointer;
int NID;
bool Learned;
std::vector<float> doCompareCheckpoints();
std::string Name;
public:
/**
* Neuron states.
*/
typedef enum {
/// Neuron not processed (initial state).
NotProcessed,
/// Neuron is processing now.
Pending,
/// Processing of neuron is done.
Computed,
} States;
typedef std::tuple<float, float> PatternDefinition;
Neuron();
Neuron(const inn::Neuron&);
Neuron(unsigned int, unsigned int, int64_t, const std::vector<std::string>& InputSignals);
void doCreateNewSynapse(const std::string&, std::vector<float>, float, int64_t, int);
void doCreateNewSynapseCluster(const std::vector<float>& PosVector, unsigned R, float k1, int64_t Tl, int NT);
void doCreateNewReceptor(std::vector<float>);
void doCreateNewReceptorCluster(const std::vector<float>& PosVector, unsigned R, unsigned C);
bool doSignalSendEntry(const std::string&, float, int64_t);
std::pair<int64_t, float> doSignalReceive(int64_t tT = -1);
void doFinalizeInput(float);
void doPrepare();
void doFinalize();
void doCreateNewScope();
void doChangeScope(uint64_t);
void doReset();
void doCreateCheckpoint();
inn::Neuron::PatternDefinition doComparePattern(int ProcessingMethod = inn::ScopeProcessingMethods::ProcessMin) const;
void doLinkOutput(const std::string&);
void doClearOutputLinks();
void doReplaceEntryName(const std::string&, const std::string&);
void doReserveSignalBuffer(int64_t);
void setTime(int64_t);
void setk1(float);
void setk2(float);
void setk3(float);
void setNID(int);
void setName(const std::string&);
void setLearned(bool LearnedFlag);
bool isLearned() const;
std::vector<std::string> getLinkOutput() const;
std::vector<std::string> getEntries() const;
inn::Neuron::Entry* getEntry(int64_t) const;
inn::Neuron::Receptor* getReceptor(int64_t) const;
std::vector<std::string> getWaitingEntries();
int64_t getEntriesCount() const;
unsigned int getSynapsesCount() const;
int64_t getReceptorsCount() const;
int64_t getTime() const;
unsigned int getXm() const;
unsigned int getDimensionsCount() const;
int64_t getTlo() const;
int getNID() const;
std::string getName();
int64_t getSignalBufferSize() const;
int getState(int64_t) const;
~Neuron();
};
class Neuron::Entry {
private:
std::vector<inn::Neuron::Synapse*> Synapses;
int64_t t, tm;
float *Signal;
int64_t SignalSize;
int64_t SignalPointer;
public:
Entry();
Entry(const inn::Neuron::Entry&);
bool doCheckState(int64_t) const;
void doAddSynapse(inn::Position*, unsigned int, float, int64_t, int);
void doIn(float, int64_t);
void doProcess();
void doPrepare();
void doFinalize();
void doReserveSignalBuffer(uint64_t);
void setk1(float);
void setk2(float);
inn::Neuron::Synapse* getSynapse(int64_t) const;
int64_t getSynapsesCount() const;
float getIn();
~Entry();
};
class Neuron::Synapse {
private:
inn::Position* SPos;
float ok1, ok2, k1, k2;
float Lambda;
int NeurotransmitterType;
int64_t Tl;
float Gamma, dGamma;
long long QCounter;
std::vector<float> GammaQ;
std::atomic<int64_t> QSize;
public:
Synapse();
Synapse(const inn::Neuron::Synapse&);
Synapse(inn::Position*, float, float, int64_t, int);
void doIn(float);
void doSendToQueue(float, float);
bool doInFromQueue(int64_t);
void doPrepare();
void doReset();
void setGamma(float);
void setk1(float);
void setk2(float);
void setLambda(float);
inn::Position* getPos() const;
float getk1() const;
float getk2() const;
float getLambda() const;
int64_t getTl() const;
float getGamma() const;
float getdGamma() const;
int getNeurotransmitterType() const;
int64_t getQSize();
~Synapse() = default;
};
class Neuron::Receptor {
private:
std::vector<inn::Position*> CP, CPf;
//inn::Position *RPos, *RPos0, *RPosf;
std::vector<inn::Position*> ReferencePos;
inn::Position* DefaultPos;
inn::Position* PhantomPos;
float k3;
float Rs;
bool Locked;
float L, Lf;
float Fi, dFi;
uint64_t Scope;
public:
Receptor();
Receptor(const inn::Neuron::Receptor&);
Receptor(inn::Position*, float);
bool doCheckActive() const;
void doLock();
void doUnlock();
void doCreateNewScope();
void doChangeScope(uint64_t);
void doReset();
void doPrepare();
void doSavePos();
void doUpdateSensitivityValue();
void doUpdatePos(inn::Position*);
void setPos(inn::Position*);
void setRs(float);
void setk3(float);
void setFi(float);
std::vector<inn::Position*> getCP() const;
std::vector<inn::Position*> getCPf() const;
inn::Position* getPos() const;
inn::Position* getPos0() const;
inn::Position* getPosf() const;
std::vector<inn::Position*> getReferencePosScopes();
float getRs() const;
float getk3() const;
float getFi();
float getdFi();
float getSensitivityValue() const;
bool isLocked() const;
float getL() const;
float getLf() const;
~Receptor() = default;
};
}
#endif //INTERFERENCE_NEURON_H
|
239790a8a294d978797ff842dbb387e42237bc90 | f2a8872ac0d158fb7a075dcb53cb17fb796813f5 | /complete/tomato_baekjoon7576.cpp | b20de19305b55f3ce47ee3b4cd63a91d17f52b8b | [] | no_license | weaver9651/coding | e5478af67d75f632e4d3ec82c447ecbf018aca6a | ed18d3f228d1b8bb6ba94c5242e63397a8c32553 | refs/heads/master | 2023-06-13T02:06:37.606985 | 2023-05-26T18:52:44 | 2023-05-26T18:52:44 | 171,222,908 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,736 | cpp | tomato_baekjoon7576.cpp | #pragma warning(disable:4996)
#include <iostream>
#include <cstdio>
#include <queue>
#include <algorithm>
using namespace std;
int Map[1000][1000];
int N, M;
int state;
int maxx;
int date[1000][1000];
bool visit[1000][1000] = { false, };
queue<pair<int, int> > q;
int dy[] = { 0, 0, 1, -1 };
int dx[] = {1, -1, 0, 0};
void In() {
cin >> M >> N;
int counter = 0;
for (int i = 0; i < N; i++) {
for (int j = 0; j < M; j++) {
scanf("%d", &Map[i][j]);
if (Map[i][j] == 0)
counter++;
else if (Map[i][j] == 1) {
q.push(make_pair(i, j));
visit[i][j] = true;
date[i][j] = 0;
}
}
}
// 다 익음
if (counter == 0) {
state = 0;
}
else {
state = 1;
}
}
void check() {
if (state == 0)
return;
else {
int maxx = 0;
for (int i = 0; i < N; i++) {
for (int j = 0; j < M; j++) {
maxx = max(maxx, date[i][j]);
if (Map[i][j] == 0) {
state = -1;
return;
}
}
}
state = maxx;
}
}
void bfs() {
int cur_y, cur_x;
int tmp_y, tmp_x;
while (!q.empty()) {
cur_y = q.front().first;
cur_x = q.front().second;
q.pop();
for (int i = 0; i < 4; i++) {
tmp_y = cur_y + dy[i];
tmp_x = cur_x + dx[i];
if (tmp_y < N && tmp_y >= 0 && tmp_x < M && tmp_x >= 0 && !visit[tmp_y][tmp_x] &&
Map[tmp_y][tmp_x] == 0) {
q.push(make_pair(tmp_y, tmp_x));
visit[tmp_y][tmp_x] = true;
Map[tmp_y][tmp_x] = 1;
date[tmp_y][tmp_x] = date[cur_y][cur_x] + 1;
}
}
}
}
void Out() {
cout << endl;
for (int i = 0; i < N; i++) {
for (int j = 0; j < M; j++) {
cout << date[i][j] << " ";
}
cout << endl;
}
}
int main() {
In();
bfs();
//Out();
check();
cout << state << endl;
return 0;
}
|
21a7eeea67a3f83bbffe68fb6b36c0bd259da1ee | 8f5929a1be9eebe993949cb51f3beba4d1567279 | /src/util/ncdiffstats.C | be4ff5de25ea5fa40d4f1578eea900b397d7b0e8 | [
"MIT"
] | permissive | AppliedMathematicsANU/diamorse | 5eed7878fbdd3e46714f39c4717749cb95b05884 | 3416d7a6ffa13b2fce7d83c560ac6bc83f1faa44 | refs/heads/master | 2021-01-17T07:08:37.655118 | 2020-03-05T05:03:30 | 2020-03-05T05:03:30 | 44,844,517 | 21 | 16 | null | 2020-03-05T05:03:32 | 2015-10-23T23:53:41 | C++ | UTF-8 | C++ | false | false | 2,423 | c | ncdiffstats.C | /** -*-c++-*-
*
* Copyright 2015 The Australian National University
*
* ncdiffstats.C
*
* Analyses the differences between two NetCDF volume datasets.
*
* Olaf Delgado-Friedrichs mar 15
*
*/
#include <cmath>
#include "netcdf.hpp"
#include "netcdfIO.hpp"
using namespace anu_am::netcdf;
Variable findVolumeVariable(NCFileInfo const info)
{
std::vector<Variable> const vars = info.variables();
for (size_t i = 0; i < vars.size(); ++i)
{
Variable const v = vars.at(i);
if (v.dimensions().size() == 3)
return v;
}
throw std::runtime_error("No appropriate variable found");
}
int run(int argc, char* argv[])
{
if (argc < 3)
{
std::cerr << "Usage:" << argv[0] << " FILE1 FILE2" << std::endl;
return 1;
}
int i = 0;
char* path1 = argv[++i];
char* path2 = argv[++i];
FileBuffer data1(path1);
FileBuffer data2(path2);
NCFile<FileBuffer> file1(data1);
NCFile<FileBuffer> file2(data2);
Variable const var1 = findVolumeVariable(file1.info());
Variable const var2 = findVolumeVariable(file2.info());
std::vector<size_t> const dims = var1.dimensions();
if (var2.dimensions() != dims)
throw std::runtime_error("dimension mismatch");
size_t const zdim = dims.at(0);
size_t const ydim = dims.at(1);
size_t const xdim = dims.at(2);
double mindiff = 0, maxdiff = 0;
for (size_t z = 0; z < zdim; ++z)
{
for (size_t y = 0; y < ydim; ++y)
{
for (size_t x = 0; x < xdim; ++x)
{
double const val1 = file1.getFloat(var1, x, y, z);
double const val2 = file2.getFloat(var2, x, y, z);
double const diff = val1 - val2;
if (diff < mindiff) mindiff = diff;
if (diff > maxdiff) maxdiff = diff;
}
}
}
std::cout << mindiff << " ... " << maxdiff << std::endl;
return 0;
}
int main(const int argc, char* argv[])
{
try
{
run(argc, argv);
}
catch(std::runtime_error& e)
{
std::clog
<< "terminate called after throwing an instance of "
<< "'std::runtime_error'\n"
<< " what(): " << e.what() << '\n';
abort();
}
catch(std::exception& e)
{
std::clog
<< "terminate called after throwing an exception\n"
<< " what(): " << e.what() << '\n';
abort();
}
}
|
ae87de2f51305389076ac30edc589aef68afd639 | a363b06ff115e7a7d3fd569072ebbee0349b9a2b | /Samples/MjgIntelFluidDemo_Part05/Core/Math/mat4.h | 08cf2eccfbbdd409954cd56e764b58c8c047e204 | [] | no_license | william-manning-levelex/VorteGrid | 2e90474b66a6ead25a5a44c68554e3e6e016dc6e | f99a4e17ab9cbd4ff6cc9fa37124c2bf7d6a88a4 | refs/heads/master | 2023-03-27T15:23:41.440257 | 2021-03-27T22:46:22 | 2021-03-27T22:46:22 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 3,297 | h | mat4.h | /*! \file mat4.h
\brief 4x4 matrix class
\author Copyright 2005-2006 UCF/FIEA/MJG; All rights reserved.
*/
#ifndef MAT4_H
#define MAT4_H
#include <math.h>
#include "float.h"
#include "vec4.h"
#include "vec3.h"
// Macros --------------------------------------------------------------
//! \brief square value
#define POW2( x ) ( ( x ) * ( x ) )
// Types --------------------------------------------------------------
/*! \brief Utility class for 4x4 matrices
*/
struct Mat4
{
public:
Mat4() {}
Mat4( float m0, float m1, float m2 , float m3 ,
float m4, float m5, float m6 , float m7 ,
float m8, float m9, float ma , float mb ,
float mc, float md, float me , float mf )
{
m[0][0] = m0 ; m[0][1] = m1 ; m[0][2] = m2 ; m[0][3] = m3 ;
m[1][0] = m4 ; m[1][1] = m5 ; m[1][2] = m6 ; m[1][3] = m7 ;
m[2][0] = m8 ; m[2][1] = m9 ; m[2][2] = ma ; m[2][3] = mb ;
m[3][0] = mc ; m[3][1] = md ; m[3][2] = me ; m[3][3] = mf ;
}
// binary operators
Mat4 operator + ( const Mat4 & rhs ) const
{
return Mat4( m[0][0] + rhs.m[0][0] , m[0][1] + rhs.m[0][1] , m[0][2] + rhs.m[0][2] , m[0][3] + rhs.m[0][3] ,
m[1][0] + rhs.m[1][0] , m[1][1] + rhs.m[1][1] , m[1][2] + rhs.m[1][2] , m[1][3] + rhs.m[1][3] ,
m[2][0] + rhs.m[2][0] , m[2][1] + rhs.m[2][1] , m[2][2] + rhs.m[2][2] , m[2][3] + rhs.m[2][3] ,
m[3][0] + rhs.m[3][0] , m[3][1] + rhs.m[3][1] , m[3][2] + rhs.m[3][2] , m[3][3] + rhs.m[3][3] ) ;
}
Mat4 operator * ( float f ) const
{
return Mat4( m[0][0] * f , m[0][1] * f , m[0][2] * f , m[0][3] * f ,
m[1][0] * f , m[1][1] * f , m[1][2] * f , m[1][3] * f ,
m[2][0] * f , m[2][1] * f , m[2][2] * f , m[2][3] * f ,
m[3][0] * f , m[3][1] * f , m[3][2] * f , m[3][3] * f ) ;
}
bool operator == ( const Mat4 & rhs ) const
{
return ( ( m[0][0] == rhs.m[0][0] ) && ( m[0][1] == rhs.m[0][1] ) && ( m[0][2] == rhs.m[0][2] ) && ( m[0][3] == rhs.m[0][3] ) &&
( m[1][0] == rhs.m[1][0] ) && ( m[1][1] == rhs.m[1][1] ) && ( m[1][2] == rhs.m[1][2] ) && ( m[1][3] == rhs.m[1][3] ) &&
( m[2][0] == rhs.m[2][0] ) && ( m[2][1] == rhs.m[2][1] ) && ( m[2][2] == rhs.m[2][2] ) && ( m[2][3] == rhs.m[2][3] ) &&
( m[3][0] == rhs.m[3][0] ) && ( m[3][1] == rhs.m[3][1] ) && ( m[3][2] == rhs.m[3][2] ) && ( m[3][3] == rhs.m[3][3] ) ) ;
}
bool operator != ( const Mat4 & rhs ) const { return ! ( (*this) == rhs ) ; }
float m[4][4] ;
} ;
// Public variables --------------------------------------------------------------
static const Mat4 Mat4_xIdentity( 1.0f , 0.0f , 0.0f , 0.0f ,
0.0f , 1.0f , 0.0f , 0.0f ,
0.0f , 0.0f , 1.0f , 0.0f ,
0.0f , 0.0f , 0.0f , 1.0f ) ;
// Public functions --------------------------------------------------------------
#endif
|
b2617f27f2ddb69b9c78529f90df088c024a3315 | fce12f3ce9abdaae68c7da571941ec317ca5f924 | /USACO /2018-2019/January/Silver/mountains.cpp | 265b675266a84da7df377be157ab4fce98fa8104 | [] | no_license | imasheepow/Solutions | bbcae01c52f3af385b39e18bdbd399d98cd0e788 | e6a09e3b48cb85be9d9b66fc4a0bcd3d323ffe94 | refs/heads/main | 2023-05-03T00:59:13.132455 | 2021-05-26T03:43:13 | 2021-05-26T03:43:13 | 338,965,746 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 904 | cpp | mountains.cpp | #include <bits/stdc++.h>
#define all(x) begin(x), end(x)
#define sz(x) int((x).size())
#define eb emplace_back
#define pb push_back
using namespace std;
using ll = long long;
using pii = pair<int, int>;
using vi = vector<int>;
const int MN = 1e5 + 5;
void setIO(string name) {
freopen((name + ".in").c_str(), "r", stdin);
freopen((name + ".out").c_str(), "w", stdout);
}
int N;
struct Point {
int x, y;
bool operator<(Point &o) const {
if (x == o.x) return y > o.y;
return x < o.x;
}
};
int main() {
ios_base::sync_with_stdio(0), cin.tie(0);
setIO("mountains");
cin >> N;
vector<Point> pt;
for (int i = 0; i < N; i++) {
int x, y; cin >> x >> y;
pt.pb({x - y, x + y});
}
sort(all(pt));
int ans = 0, mx = 0;
for (auto [x, y] : pt) {
if (mx < y) mx = y, ans++;
}
cout << ans << '\n';
return 0;
}
|
7f26f0e82691d0bf674aad4d8613c5d00a7e03f1 | 339556882efc56e8915b768cc4bb3a4148264ed4 | /UdpTurnServer.hpp | 734c5d47b4ca5b73358d1143b5a2d975ba68a099 | [] | no_license | wangscript007/natTraverseCentreMuduo | 8d755b8d239d46cdd774155fcd2e926d49b44b05 | 80384d2a8b6c9b9943cf1be76a2e25f1d7f72ded | refs/heads/master | 2021-09-25T15:20:30.621819 | 2018-10-23T13:20:19 | 2018-10-23T13:20:19 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 305 | hpp | UdpTurnServer.hpp | //
// Created by tl on 18-4-19.
//
#ifndef NATTRAVERSECENTREMUDUO_UDPTURNSERVER_HPP
#define NATTRAVERSECENTREMUDUO_UDPTURNSERVER_HPP
//
// Created by tl on 18-4-19.
//
void* turnUDP(void*arg);
#define UDP_TURN_PORT 1234
#define TCP_TURN_PORT 8888
#endif //NATTRAVERSECENTREMUDUO_UDPTURNSERVER_HPP
|
c7086398445028f94fe8204b48eabce1d6a65de0 | b4b4b88f87b4c8071e5e388ff9b6cbf923617d85 | /ofLightPaintApp/src/videoBuffer.hpp | f35dfdccaa981be28232e0c78f3125771ede7cf6 | [] | no_license | undessens/lightpainting-jadikan | d465d4538b344b8efa5fd841698da860cf4e3366 | 1c104d4a1f8e49b6c0bc1029259b7acf16b71913 | refs/heads/master | 2020-12-05T16:50:04.901145 | 2020-02-20T14:14:30 | 2020-02-20T14:14:30 | 232,178,904 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 188 | hpp | videoBuffer.hpp | //
// videoBuffer.hpp
// ofLightPaintApp
//
// Created by Admin Mac on 18/12/2019.
//
#ifndef videoBuffer_hpp
#define videoBuffer_hpp
#include <stdio.h>
#endif /* videoBuffer_hpp */
|
525e3bdc326374fca750f22f7388b7b3c872031d | 5e378bd9900a358c6c3d41577276c2bce6e8d92a | /Long_Number.cpp | 3ec93a14ca38c5c07a4155a8d579c8a4bfacd1b9 | [] | no_license | kanchan1910/Codeforces-Solutions | 80f97d52835f92499b3be5fbbd26b8a09db8b22a | 58e7e23a5c2fca7388eaf4246acb4d617334cc48 | refs/heads/master | 2023-04-24T20:24:43.843373 | 2021-05-07T05:18:39 | 2021-05-07T05:18:39 | 285,741,097 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 430 | cpp | Long_Number.cpp | #include<bits/stdc++.h>
using namespace std;
#define pb push_back
#define lli long long int
int main(){
int n;
cin>>n;
string str;
cin>>str;
int arr[10];
for(int i=1;i<=9;i++){
cin>>arr[i];
}
for(int i=0;i<n;i++){
if((str[i]-'0')<(arr[str[i]-'0']) ){
int j=i;
while(arr[str[j]-'0']>=str[j]-'0'){
str[j]=arr[str[j]-'0']+'0';
j++;
}
break;
}
}
cout<<str<<endl;
}
|
d9ad053018f9b8ae640eaa9f9e700dcd2abb81ec | c6778697ea5d0698cc996f13ff761398f2fabb47 | /cover points.cpp | bed2a045d5cc31948dc2ab13dd71764df4a6a944 | [] | no_license | RimChy/Codeforces | 1ba6db1c62cdf11f3c9e1ba906687c7c5b9952a4 | 6a076c4c393b03076d2e0a4292a737a300a6d9a2 | refs/heads/master | 2022-11-21T05:00:09.791766 | 2020-07-25T14:26:08 | 2020-07-25T14:26:08 | 265,472,139 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 285 | cpp | cover points.cpp | #include<bits/stdc++.h>
using namespace std;
struct point{
int x;
int y;};
int main()
{
int n;
cin>>n;
int sum=0;
point p[n+1];
for(int i=0;i<n;i++){
cin>>p[i].x>>p[i].y;
sum=max(sum,p[i].x+p[i].y);
}
cout<<sum<<endl;
}
|
5732f2ee16892b0acde1ca214abb28940510a9f1 | 4e2e0d0f4eec8170d244f3782909ac026b14e37e | /Sy2Parser.Cpp/LeafNode.h | 5d392070fd36006deea81278adb260f99b153c96 | [] | no_license | PeterOndrik/Sy2Parser | f8c9d2c2fff8d873c5462be048b6473dd5ead7d1 | 790c9743e0ecb54a13114195aaf8bc34727f69b9 | refs/heads/master | 2021-12-02T14:41:09.659442 | 2021-09-02T12:23:21 | 2021-09-02T12:23:21 | 149,440,708 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 962 | h | LeafNode.h | #pragma once
#include "Node.h"
namespace Model
{
class LeafNode : public Node<>
{
public:
LeafNode()
{
}
LeafNode(SizeType line, SizeType column)
: Node(line, column)
{
}
LeafNode(const LeafNode& node)
: Node(node)
{
}
LeafNode(LeafNode&& node)
: Node(std::move(node))
{
}
LeafNode& operator=(const LeafNode &node)
{
return *this;
}
LeafNode& operator=(LeafNode &&node)
{
return *this;
}
Node *at(SizeType index) const override
{
return nullptr;
}
void add(Node *) override
{
}
void remove(Node *) override
{
}
void traverse() override
{
}
/*
Gets onw of the following:
- next sibling node
- next parent child node
- next parent sibling node
- nullptr
*/
const Node *next() const override
{
const Node *node = nullptr;
if (this->parent())
{
node = this->parent()->next();
}
return node;
}
void reset() override
{
}
};
}
|
f3b1b16c9a944e501b66536932ffc8c39366cd93 | e89a78186542b1f165864a44d726d563e765232d | /verifysetdlg.h | ed43fbdb2068e5b07a9609aa21550dabdb67dd84 | [] | no_license | gethope5/tangshancode | 82d2facd0f5677e741f6e29bc9b1079cfbd3b436 | 0c9b0eed65a4b0caa04b99779fc77600bcb5d5fd | refs/heads/master | 2020-03-25T15:19:26.352367 | 2018-08-07T13:30:40 | 2018-08-07T13:30:40 | 143,877,639 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 424 | h | verifysetdlg.h | #ifndef VERIFYSETDLG_H
#define VERIFYSETDLG_H
#include <QDialog>
#include "syshead.h"
namespace Ui {
class verifySetDlg;
}
class verifySetDlg : public QDialog
{
Q_OBJECT
public:
explicit verifySetDlg(QWidget *parent = 0);
~verifySetDlg();
char verifyValue;
private slots:
void on_pbtnOk_clicked();
void on_chbCancel_clicked();
private:
Ui::verifySetDlg *ui;
};
#endif // VERIFYSETDLG_H
|
ba7a6919e548a2a72bfac7cb4a1618e162c89128 | 1256c8ce3f7914dceadba3ab029997e60ba6ad9b | /codebook/Math/number_tool.cpp | e828c95a31392a5a5c59649510eebf3525e46789 | [] | no_license | NCTU-PCCA/NCTU_Tmprry | 867d6aa45ffa0afec6e80d6115778a4b809b4833 | 540a2cf5978fb4defc86a2c36604242dd4c707c2 | refs/heads/master | 2021-09-09T15:37:41.714723 | 2018-03-17T15:20:48 | 2018-03-17T15:20:48 | 61,848,050 | 22 | 4 | null | 2017-08-12T03:57:22 | 2016-06-24T01:33:41 | C++ | UTF-8 | C++ | false | false | 218 | cpp | number_tool.cpp | Int POW(Int a, Int n, Int mod){
Int re=1;
while (n>0){
if (n&1LL) re = re*a%mod;
a = a*a%mod;
n>>=1;
}
return re;
}
Int C(Int n, Int m){
if (m<0 || m>n)return 0;
return J[n] * inv(J[m]*J[n-m]%MOD) %MOD;
}
|
19e29eddae5bc0dda05256215315b27799bc3a29 | e8b04bef9aa1ac8e2c109dd315f133c8f4d28ae6 | /projects/default/controllers/ros/RosAltimeter.cpp | 2ae4e0bc23523d9ffb2a1e986f271617dbe6258f | [
"Apache-2.0"
] | permissive | cyberbotics/webots | f075dacf4067e8dcebbfd89e8690df8525f6d745 | 8aba6eaae76989facf3442305c8089d3cc366bcf | refs/heads/master | 2023-08-31T09:41:13.205940 | 2023-08-18T10:48:30 | 2023-08-18T10:48:30 | 156,228,018 | 2,495 | 1,525 | Apache-2.0 | 2023-08-28T16:30:33 | 2018-11-05T14:09:10 | C++ | UTF-8 | C++ | false | false | 1,448 | cpp | RosAltimeter.cpp | // Copyright 1996-2023 Cyberbotics Ltd.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// https://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
#include "RosAltimeter.hpp"
#include "webots_ros/Float64Stamped.h"
RosAltimeter::RosAltimeter(Altimeter *altimeter, Ros *ros) : RosSensor(altimeter->getName(), altimeter, ros) {
mAltimeter = altimeter;
}
RosAltimeter::~RosAltimeter() {
cleanup();
}
// creates a publisher for altimeter value with a {Float64}
ros::Publisher RosAltimeter::createPublisher() {
webots_ros::Float64Stamped type;
std::string topicName = RosDevice::fixedDeviceName() + "/value";
return RosDevice::rosAdvertiseTopic(topicName, type);
}
// get value from altimeter and publish it
void RosAltimeter::publishValue(ros::Publisher publisher) {
webots_ros::Float64Stamped value;
value.header.stamp = ros::Time::now();
value.header.frame_id = mFrameIdPrefix + RosDevice::fixedDeviceName();
value.data = mAltimeter->getValue();
publisher.publish(value);
}
|
e37805b317edfc5fbd03d82a5b7e9984da2d986a | 2277375bd4a554d23da334dddd091a36138f5cae | /ThirdParty/Havok/Source/Physics2012/Collide/Classes/Reflections/hkpBroadPhaseHandleReflection.cpp | 9c40e07940bd819d21299f0481126785dcf1200b | [] | no_license | kevinmore/Project-Nebula | 9a0553ccf8bdc1b4bb5e2588fc94516d9e3532bc | f6d284d4879ae1ea1bd30c5775ef8733cfafa71d | refs/heads/master | 2022-10-22T03:55:42.596618 | 2020-06-19T09:07:07 | 2020-06-19T09:07:07 | 25,372,691 | 6 | 5 | null | null | null | null | UTF-8 | C++ | false | false | 3,552 | cpp | hkpBroadPhaseHandleReflection.cpp | /*
*
* Confidential Information of Telekinesys Research Limited (t/a Havok). Not for disclosure or distribution without Havok's
* prior written consent. This software contains code, techniques and know-how which is confidential and proprietary to Havok.
* Product and Trade Secret source code contains trade secrets of Havok. Havok Software (C) Copyright 1999-2013 Telekinesys Research Limited t/a Havok. All Rights Reserved. Use of this software is subject to the terms of an end user license agreement.
*
*/
//HK_REFLECTION_PARSER_EXCLUDE_FILE
// Autogenerated by generateReflections.py (reflectedClasses.py)
// Changes will not be lost unless:
// - The workspace is re-generated using build.py
// - The corresponding reflection database (reflection.db) is deleted
// - The --force-output or --force-rebuild option is added to the pre-build generateReflection.py execution
// Generated from 'Physics2012/Collide/BroadPhase/hkpBroadPhaseHandle.h'
#include <Physics2012/Collide/hkpCollide.h>
#include <Common/Base/Reflection/hkClass.h>
#include <Common/Base/Reflection/hkInternalClassMember.h>
#include <Common/Base/Reflection/hkTypeInfo.h>
#include <Common/Base/Reflection/Attributes/hkAttributes.h>
#include <Physics2012/Collide/BroadPhase/hkpBroadPhaseHandle.h>
#define True true
#define False false
//
// Class hkpBroadPhaseHandle
//
static const hkInternalClassMember hkpBroadPhaseHandleClass_Members[] =
{
{ "id", HK_NULL, HK_NULL, hkClassMember::TYPE_UINT32, hkClassMember::TYPE_VOID, 0, 0|hkClassMember::SERIALIZE_IGNORED, HK_OFFSET_OF(hkpBroadPhaseHandle,m_id), HK_NULL }
};
extern const hkClass hkpBroadPhaseHandleClass;
const hkClass hkpBroadPhaseHandleClass(
"hkpBroadPhaseHandle",
HK_NULL, // parent
sizeof(::hkpBroadPhaseHandle),
HK_NULL,
0, // interfaces
HK_NULL,
0, // enums
reinterpret_cast<const hkClassMember*>(hkpBroadPhaseHandleClass_Members),
HK_COUNT_OF(hkpBroadPhaseHandleClass_Members),
HK_NULL, // defaults
HK_NULL, // attributes
0, // flags
hkUint32(0) // version
);
#ifndef HK_HKCLASS_DEFINITION_ONLY
const hkClass& HK_CALL hkpBroadPhaseHandle::staticClass()
{
return hkpBroadPhaseHandleClass;
}
HK_COMPILE_TIME_ASSERT2( \
sizeof(hkIsVirtual(static_cast<hkpBroadPhaseHandle*>(0))) == sizeof(hkBool::CompileTimeFalseType), \
REFLECTION_PARSER_VTABLE_DETECTION_FAILED );
static void HK_CALL finishLoadedObjecthkpBroadPhaseHandle(void* p, int finishing = 1)
{
hkFinishLoadedObjectFlag f;
f.m_finishing = finishing;
new (p) hkpBroadPhaseHandle(f);
}
static void HK_CALL cleanupLoadedObjecthkpBroadPhaseHandle(void* p)
{
static_cast<hkpBroadPhaseHandle*>(p)->~hkpBroadPhaseHandle();
}
extern const hkTypeInfo hkpBroadPhaseHandleTypeInfo;
const hkTypeInfo hkpBroadPhaseHandleTypeInfo(
"hkpBroadPhaseHandle",
"!hkpBroadPhaseHandle",
finishLoadedObjecthkpBroadPhaseHandle,
cleanupLoadedObjecthkpBroadPhaseHandle,
HK_NULL,
sizeof(hkpBroadPhaseHandle)
);
#endif
/*
* Havok SDK - Base file, BUILD(#20130912)
*
* Confidential Information of Havok. (C) Copyright 1999-2013
* Telekinesys Research Limited t/a Havok. All Rights Reserved. The Havok
* Logo, and the Havok buzzsaw logo are trademarks of Havok. Title, ownership
* rights, and intellectual property rights in the Havok software remain in
* Havok and/or its suppliers.
*
* Use of this software for evaluation purposes is subject to and indicates
* acceptance of the End User licence Agreement for this product. A copy of
* the license is included with this software and is also available from salesteam@havok.com.
*
*/
|
e7d40a30cf8a1faa329b94c5e0cedb55beb77dd9 | 2a45db35fb26432a05561b473563b207fb4ba0b5 | /src/AppLauncher/Domain/FileToRestore.cpp | 012f5583fd5b4ede5e2a39c828f47fe0b2e03d7f | [
"MIT"
] | permissive | aphilippe/ClappLauncher | e43eef118242e3e9eb6ac5da252269180904c2d6 | a228ab7c6fc8cbfaacb79f00e24179d70899bb00 | refs/heads/master | 2021-01-17T05:16:58.547042 | 2016-09-28T12:28:47 | 2016-09-28T12:28:47 | 46,556,571 | 0 | 0 | null | 2016-09-15T12:04:16 | 2015-11-20T10:51:47 | C++ | UTF-8 | C++ | false | false | 1,193 | cpp | FileToRestore.cpp | #include "FileToRestore.h"
#include "FileSystem/Operations/CopyOperation.h"
#include "AppLauncher/Exceptions/FileToRestoreException.h"
using launcher::domain::FileToRestore;
using file_system::Path;
using file_system::operations::CopyOperation;
using launcher::domain::BackupFolder;
FileToRestore::FileToRestore(const Path& restorePath, const BackupFolder& backupFolder, const std::string& label)
: _restorePath(restorePath), _backupFolder(backupFolder), _label(label)
{
if (label.empty())
{
throw launcher::exceptions::FileToRestoreLabelNotfoundException(restorePath);
}
Path backupPath = _backupFolder.getPath().addComponent(_label);
if (!backupPath.exists())
{
throw launcher::exceptions::FileToRestoreNotNotfoundException(backupPath);
}
if (!backupPath.isFile())
{
throw launcher::exceptions::FileToRestoreNotAFileException(backupPath);
}
if (!backupPath.canRead())
{
throw launcher::exceptions::FileToRestoreInvalidPermissionException(backupPath);
}
}
FileToRestore::~FileToRestore()
{
}
void FileToRestore::restore()
{
Path backupPath = _backupFolder.getPath().addComponent(_label);
CopyOperation operation;
operation.copy(backupPath, _restorePath);
}
|
913d808f23ae476d6a90705f2dfdf190986e8884 | 5c07a58c305abbce3186ca100174b447aa0925eb | /Logic/NodeProperty.cpp | 8e5a49271b4c1b53ede4feb50a660a35e4cf54d8 | [
"MIT"
] | permissive | k0zmo/mouve | 5e4dd92a13040bded4e40af751f2f98b6750d8cb | 8d5db0da1abdf5fab991e50c5136bfe766f8a7cf | refs/heads/master | 2022-04-28T02:43:15.549868 | 2018-06-09T14:40:32 | 2018-06-09T14:40:32 | 19,389,679 | 5 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 4,024 | cpp | NodeProperty.cpp | /*
* Copyright (c) 2013-2014 Kajetan Swierk <k0zmo@outlook.com>
*
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of this software and associated documentation files (the "Software"), to deal
* in the Software without restriction, including without limitation the rights
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
* copies of the Software, and to permit persons to whom the Software is
* furnished to do so, subject to the following conditions:
*
* The above copyright notice and this permission notice shall be included in
* all copies or substantial portions of the Software.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
* THE SOFTWARE.
*
*/
#include "NodeProperty.h"
NodeProperty::NodeProperty()
: _type(EPropertyType::Unknown)
, _data()
{
}
NodeProperty::NodeProperty(bool value)
: _type(EPropertyType::Boolean)
, _data(value)
{
}
NodeProperty::NodeProperty(int value)
: _type(EPropertyType::Integer)
, _data(value)
{
}
NodeProperty::NodeProperty(Enum value)
: _type(EPropertyType::Enum)
, _data(value)
{
}
NodeProperty::NodeProperty(double value)
: _type(EPropertyType::Double)
, _data(value)
{
}
NodeProperty::NodeProperty(float value)
: _type(EPropertyType::Double)
, _data(value)
{
}
NodeProperty::NodeProperty(const Matrix3x3& value)
: _type(EPropertyType::Matrix)
, _data(value)
{
}
NodeProperty::NodeProperty(const Filepath& value)
: _type(EPropertyType::Filepath)
, _data(value)
{
}
NodeProperty::NodeProperty(const std::string& value)
: _type(EPropertyType::String)
, _data(value)
{
}
NodeProperty::~NodeProperty()
{
}
bool NodeProperty::toBool() const
{
if(_type != EPropertyType::Boolean)
throw boost::bad_get();
return boost::get<bool>(_data);
}
int NodeProperty::toInt() const
{
if(_type != EPropertyType::Integer)
throw boost::bad_get();
return boost::get<int>(_data);
}
Enum NodeProperty::toEnum() const
{
if(_type != EPropertyType::Enum)
throw boost::bad_get();
return boost::get<Enum>(_data);
}
double NodeProperty::toDouble() const
{
if(_type != EPropertyType::Double)
throw boost::bad_get();
return boost::get<double>(_data);
}
float NodeProperty::toFloat() const
{
if(_type != EPropertyType::Double)
throw boost::bad_get();
return static_cast<float>(boost::get<double>(_data));
}
Matrix3x3 NodeProperty::toMatrix3x3() const
{
if(_type != EPropertyType::Matrix)
throw boost::bad_get();
return boost::get<Matrix3x3>(_data);
}
Filepath NodeProperty::toFilepath() const
{
if(_type != EPropertyType::Filepath)
throw boost::bad_get();
return boost::get<Filepath>(_data);
}
std::string NodeProperty::toString() const
{
if(_type != EPropertyType::String)
throw boost::bad_get();
return boost::get<std::string>(_data);
}
namespace std
{
string to_string(EPropertyType type)
{
switch(type)
{
default:
case EPropertyType::Unknown:
return "unknown";
case EPropertyType::Boolean:
return "boolean";
case EPropertyType::Integer:
return "integer";
case EPropertyType::Double:
return "double";
case EPropertyType::Enum:
return "enum";
case EPropertyType::Matrix:
return "matrix3x3";
case EPropertyType::Filepath:
return "filepath";
case EPropertyType::String:
return "string";
}
}
} |
bdd5439ccf21333885499599eeb8a861f7af4bbb | 0f5e7c855849f14588168134921632e06a373589 | /Pods/AudioKit/macOS/AudioKit.framework/Versions/A/Headers/AKParameterRampBase.hpp | 88a01662c25e038d99202021c40df3887242f99d | [
"MIT"
] | permissive | vanshg/MacAssistant | 477a743289a6ff34c8127d14c66ccfef4ca92a2c | a0c3b4fd6d01815159ca286b0bc135b0b55a5104 | refs/heads/master | 2023-03-07T18:11:18.372398 | 2023-03-05T23:23:34 | 2023-03-05T23:23:34 | 89,634,004 | 1,763 | 186 | MIT | 2020-09-22T18:54:18 | 2017-04-27T19:40:13 | Swift | UTF-8 | C++ | false | false | 2,195 | hpp | AKParameterRampBase.hpp | //
// AKParameterRampBase.h
// AudioKit
//
// Created by Andrew Voelkel, revision history on GitHub.
// Copyright © 2018 AudioKit. All rights reserved.
//
#pragma once
#import <AudioToolbox/AudioToolbox.h>
#import "AKDSPBase.hpp" // have to put this here to get it included in umbrella header
#ifdef __cplusplus
class AKParameterRampBase {
protected:
float _paramValue = 0; // set by UI thread
float _target = 0;
float _value = 0;
float _startValue = 0;
int64_t _duration = 0; // in samples
int64_t _startSample = 0;
int _rampType = 0; // see AKSettings.RampType
void updateTarget(int64_t atSample) {
_target = _paramValue;
_startSample = atSample;
_startValue = _value;
}
public:
virtual float computeValueAt(int64_t atSample) = 0;
float getStartValue() {
return _startValue;
}
float getValue() {
return _value;
}
void setTarget(float value, bool immediate = false) {
if (immediate) {
_startValue = _paramValue = _value = _target = value;
} else {
_paramValue = value;
}
}
float getTarget() {
return _target;
}
void setRampType(int rampType) {
_rampType = rampType;
}
int getRampType() {
return _rampType;
}
void setDurationInSamples(int64_t duration) {
if (duration >= 0) _duration = duration;
}
float getDurationInSamples() {
return _duration;
}
void setRampDuration(float seconds, int64_t sampleRate) {
_duration = seconds * sampleRate;
}
float getRampDuration(int64_t sampleRate) {
return (sampleRate == 0) ? 0 : _duration / sampleRate;
}
float advanceTo(int64_t atSample) {
if (_paramValue != _target) { updateTarget(atSample); }
if (_value == _target) return _value;
int64_t deltaSamples = atSample - _startSample;
if (deltaSamples >= _duration || deltaSamples < 0) {
_value = _target;
_startSample = 0; // for good measure
} else {
computeValueAt(atSample);
}
return _value;
}
};
#endif
|
5bd0b12468fc53350feec376fb59654cc2b75bce | 40fe28deb1658b749e39ca96872889fd18b33192 | /shared_gyroscope/tx_gate_陀螺仪/MX61/RS232.h | accb2badb9d976e875c7356353226a85dbfc1ac7 | [] | no_license | gdgly/Remote_Driving | e4490d43083991afad8cfb373d177983c6c77cc6 | 0a9ef9e89d6ce2545ed192ef1583b70c5e007b6e | refs/heads/main | 2023-04-03T07:41:24.412003 | 2021-04-15T07:17:19 | 2021-04-15T07:17:19 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 892 | h | RS232.h | #ifndef __RS232_H__
#define __RS232_H__
#include <pthread.h>
#include "CCycleBuffer.h"
class CRS232
{
public:
CRS232();
virtual ~CRS232();
int OpenUart(int port);
int set_speed(int speed);
int set_Parity(int databits,int stopbits,int parity);
int ComWrite(char *WriteBuff,const int WriteLen); //com口写数据
void CloseUart();//关闭com口
typedef void (*pFunc_ReadCallback)(char* buf, int count);
void SetReadCallbackFunc(const pFunc_ReadCallback pReadFunc);
private:
int fd;//文件描述符
int thread_avtived;
pthread_t tid_recv, tid_process;//接受数据线程的Id
static void * ReadThreadFunction(void * arg);//接受数据的线程函数
static void * ProcessThreadFunction(void * arg);//接受数据的线程函数
CCycleBuffer * p_cycle_buf;
pFunc_ReadCallback pReadCallback;
};
#endif /* __RS232_H__ */
|
e3e5b5b152df09682845730740fdf07dda1c0849 | b9cf0190f53ba8341ec5ef140d1175b5bac21338 | /src/journal.hxx | 5668f823893a23d9a4d0a2ccf291ee37eec6dbd7 | [
"BSD-2-Clause"
] | permissive | projg2/atomic-install-v2 | 9dd4b1d14227a634930350bbf5bb31deb98b30dd | 4ec9dfdefeaa21495f48239bb4fb1fd99506204b | refs/heads/master | 2022-08-10T10:46:40.927560 | 2013-07-20T21:03:51 | 2013-07-20T21:03:51 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,814 | hxx | journal.hxx | /**
* atomic-install
* (c) 2013 Michał Górny
* Released under the 2-clause BSD license
*/
#pragma once
#ifndef JOURNAL_HXX
#define JOURNAL_HXX 1
#include "posixio.hxx"
#include <string>
#include <vector>
namespace atomic_install
{
class File
{
public:
File(const char* rel_path, const std::string& root_path);
File();
std::string path;
FileType file_type;
BinMD5 md5;
time_t mtime;
bool existed;
};
class PathBuffer : public std::string
{
std::string::size_type _prefix_len;
std::string::size_type _directory_len;
static const std::string _def_prefix;
const std::string& _prefix;
public:
PathBuffer(const std::string& root, const std::string& prefix = _def_prefix);
void set_directory(const std::string& rel_path);
void set_filename(const std::string& filename);
void set_path(const std::string& path);
const char* get_relative_path() const;
};
class Journal
{
std::string _source;
std::string _dest;
std::string _new_prefix, _backup_prefix;
typedef std::vector<File> _files_type;
_files_type _files;
void build_path(std::string& buf,
const std::string& root,
const std::string& rel_path);
public:
// Instantiate a new, empty journal for copying files
// from @source to @dest.
Journal(const std::string& source, const std::string& dest);
void save_journal(const char* path);
static Journal read_journal(const char* path);
// Scan source directory and add files from it to the journal.
void scan_files();
// Copy new files to destdir.
void copy_files();
// Backup existing files in destdir.
void backup_files();
// Perform the atomic replacement.
void replace();
// Remove new & backup files.
void cleanup();
// Revert the started replacement.
void revert();
};
};
#endif /*JOURNAL_HXX*/
|
8f6ccb70e90abe91c9745994a28a344f2d09dded | 9ead001429ed7123063c38654a5f3cb2873ebd7c | /aps/lab/5/2.cpp | 0710a6e9103e5f4c7114beecfac2d17b9f2ad834 | [] | no_license | smadala/IIIT-PG11 | 73646632de36c0774413f1e201d9ce14895ae645 | a0f350261732442838314fcf821f7dad0a6c7b7b | refs/heads/master | 2021-01-23T13:30:05.050032 | 2013-11-13T11:03:30 | 2013-11-13T11:03:30 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,112 | cpp | 2.cpp | #include<stack>
#include<stdio.h>
using namespace std;
void find(int *a,int n){
stack<int> s1;
stack<int> s2;
int i;
s1.push(0);
int count=0,eq,temp;
for(i=1;i < n;i++){
if ( a[i] > a[s1.top()] ){
while( (!s1.empty()) && a[i] > a[s1.top()] ){
count+=n-i-1;
s1.pop();
}
}
s1.push(i);
}
s2.push(0);
for(i=1;i<n;i++){
while( (!s2.empty()) && a[s2.top()] < a[i] ){
eq=1;
temp=a[s2.top()];
s2.pop();
while ( !s2.empty() && temp == a[s2.top()] ){
eq++;
temp =a[s2.top()];
s2.pop();
}
if( s2.size() >= 2){
count+= (eq * (s2.size() -1) );
}
}
s2.push(i);
}
while( !s2.empty() ){
eq=1;
temp=a[s2.top()];
s2.pop();
while ( (!s2.empty()) && temp == a[s2.top()] ){
eq++;
temp =a[s2.top()];
s2.pop();
}
if( s2.size() >= 2){
count+= (eq * (s2.size() -1) );
continue;
}
break;
}
// cout<<count<<endl;
printf("%d\n",count);
}
int main(){
int t,a[500001],n;
scanf("%d",&t);
while(t>0){
scanf("%d",&n);
for(int i=0;i<n;i++){
scanf("%d",&a[i]);
}
find(a,n);
t--;
}
return 0;
}
|
1c6f3eb1ed096b6bbab1f03d3190815a7abc6894 | 74f0dfd790fe669b94d1c13687203e7a2080d268 | /date.cpp | 787a7166b60c9a88001dab3286c8659429022f91 | [] | no_license | mwang17/CS2124 | b35bb2c73490575dbb5425aa57f84abd7b9022c3 | 2128873a3a5961d3eaf68c5b6aae0bc8de740253 | refs/heads/master | 2020-03-22T05:59:07.107123 | 2018-08-10T03:27:35 | 2018-08-10T03:27:35 | 139,604,323 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 3,619 | cpp | date.cpp | #include <iostream>
namespace Calendar{
//default constructor that takes 3 inputs
Date::Date(int yy, Month mm, int dd)
: y(yy), m(mm), d(dd)
{
if(!is_date(yy, mm, dd)) throw Invalid();
}
//default constructor sets the date to Jan 1 2018
Date::Date()
:y(default_date().year()),
m(default_date().month()),
d(default_date().day())
{
}
Date::Date(const Date& dd)
:y(dd.year()), m(dd.month()), d(dd.day())
{
}
//returns the number of days in the given month
int days_in_month(int y, Date::Month m);
//adds n days to date
void Date::add_day(int n)
{
if(n < 0) error("add_day(): negative n not valid");
while(days_in_month(y,m)<n+d){
n = (n+d) - days_in_month(y,m);
add_month(1);
d = 0;
}
d += n;
}
//adds n months to date
void Date::add_month(int n)
{
if(n < 0) error("add_month(): negative n not valid");
int i = m+1;
m = Month(i);
}
//adds n years to date. If it is Feb 29 and n is not a multiple of 4, it will go to Mar 3.
void Date::add_year(int n)
{
if(m == Feb && d == 29 && !leapyear(y+n)){
m = Mar;
d = 1;
}
y += n;
}
enum Day{
Sunday, Monday, Teusday, Wednesday, Thursday, Friday, Saturday
};
//prints the date in format month day, year instead of the default (YYYY, MM, DD)
string print_long_date(Date a)
{
vector<string> mm {"Jan", "Feb", "Mar", "Apr", "May", "Jun", "Jul", "Aug", "Sep", "Oct", "Nov", "Dec"};
int month = a.month()-1;
return mm[month] + " " + to_string(a.day()) + ", " + to_string(a.year());
}
//1601.01.01 was a Monday according to the textbook, so we're using that.
Date first_date(1601, Date::Jan, 1);
const Day first_day = Monday;
//again, default date is 2018.01.01
const Date& default_date()
{
static const Date dd(2018, Date::Jan, 1);
return dd;
}
//returns the days in a given month
int days_in_month(int y, Date::Month m){
switch (m) {
case Date::Feb:
return (leapyear(y))?29:28;
case Date::Apr :case Date::Jun :case Date::Sep:case Date::Nov:
return 30;
default:
return 31;
}
}
//checks if given date is valid
bool is_date(int y, Date::Month m, int d)
{
if(d<=0) return false;
if(days_in_month(y, m)<d) return false;
if(m <= 0) return false;
if(m > 12) return false;
return true;
}
//checks for leapyears. Returns false if it is a leap year.
bool leapyear(int y)
{
if(y%4)
return false;
if(y%100==0 && y%400)
return false;
return true;
}
//Overloaded equality checking.
bool operator==(Date& a, Date& b)
{
return a.year()==b.year()
&& a.month()==b.month()
&& a.day()==b.day();
}
//Overloaded inequality checking.
bool operator!=( Date& a, Date& b)
{
return !(a==b);
}
//overloaded output gives date in format (YYYY, mm, dd)
ostream& operator<<(ostream& os, const Date& d)
{
return os << '(' << d.year() << '/' << d.month() << '/' << d.day() << ')';
}
//overloaded input must take the date in format (YYYY, mm, dd)
istream& operator>>(istream& is, Date& dd)
{
int y, m, d;
char ch1, ch2, ch3, ch4;
is >> ch1 >> y >> ch2 >> m >> ch3 >> d >> ch4;
if(!is) return is;
if(ch1!= '(' || ch2!= '/' || ch3 != '/' || ch4 != ')'){
is.clear(ios_base::failbit);
return is;
}
dd = Date(y, Date::Month(m), d);
return is;
}
}
|
9ddd758c82abdeeb0f43aac21691f4fcb2fd3322 | 67f5094593ee9cb3d699fbda5b00296955724d9d | /MyTrader/XingLib/Src/service/chart/setting/chartsetting.cpp | 070e9b860dcb2a3d5741ab924ec37a883e86cef9 | [] | no_license | QtLab/Xing | 7da660a01dcd4d261687c4889d6b053a9aa2dad9 | 9d4bd88edacde772ee469d12199efb32c7cbd53a | refs/heads/master | 2021-05-04T20:05:37.830098 | 2015-12-13T05:28:54 | 2015-12-13T05:28:54 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 228 | cpp | chartsetting.cpp | #include "chartsetting.h"
ChartSetting::ChartSetting(const QString& settingName, QObject* parent) :QObject(parent), _name(settingName)
{
}
ChartSetting::~ChartSetting()
{
}
QString ChartSetting::name() const
{
return _name;
} |
210e4d49d2397ee9fab464e38451c058534dabcd | 469d3bf96df9abdd50a7c2cafbcc312610da16a5 | /C语言/实验/实验题目/大一下学期实验三.1.cpp | 378ab18ad4ec0964e39e04bcbcf075032693a28b | [] | no_license | myqcxy/Freshman | f104b0158ff2fa1248b6e5cf34cfdd37fce122a7 | c998b2e49a51784e5254afa280c1350497edfc0b | refs/heads/master | 2020-03-16T02:59:29.457006 | 2018-05-07T15:11:27 | 2018-05-07T15:11:27 | 132,477,767 | 0 | 0 | null | null | null | null | GB18030 | C++ | false | false | 1,051 | cpp | 大一下学期实验三.1.cpp | /*大一下学期实验三.2*/
#include<stdio.h>
#include<stdlib.h>
int main()
{
FILE *fp;
struct stu
{
int num;
char b[20];
int mathscore, chiscore,engscore;
}a[5];
int i;
double all, aver;
if((fp=fopen("fp2.txt","w+"))==NULL)
{
printf("can not open this file!\n");
exit(0);
}
for(i=0;i<5;i++)
{
scanf("%d%s%d%d%d", &a[i].num,a[i].b, &a[i].mathscore,&a[i].chiscore,&a[i].engscore);
fprintf(fp,"%d %s %d %d %d\n", a[i].num,a[i].b, a[i].mathscore,a[i].chiscore,a[i].engscore);
}
fseek(fp,0,0);
for(i=0;i<5;i++)
{
all=0;
fscanf(fp,"%d%s%d%d%d",&a[i].num,a[i].b, &a[i].mathscore,&a[i].chiscore,&a[i].engscore);
all=a[i].mathscore+a[i].chiscore+a[i].engscore;
aver=all/3.0;
printf("%d %s %d %d %d %f %f\n", a[i].num,a[i].b, a[i].mathscore,a[i].chiscore,a[i].engscore,all, aver);
}
fclose(fp);
scanf("%lf", all);
return 0;
}
|
ee84351014f94046675366772e4837f1a7714702 | 53e8bcd34b5c0a04ae3e7f71e26b3ea2306c8ba6 | /CodeChef/Practice/BSTOPS.cpp | 70ac3c969d8983f707a351ad0243fc27fcac0578 | [] | no_license | aadi2305/Competative-Coding | 60858317836997e904b23853a2af6ffd44aaba1f | 852350a080b05477ee52a51c7ce64d54701bb536 | refs/heads/master | 2022-12-02T03:35:46.847746 | 2020-08-10T04:43:32 | 2020-08-10T04:43:32 | 272,914,072 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 3,879 | cpp | BSTOPS.cpp | #include <iostream>
#include <vector>
#include <map>
#include <list>
#define ll long long
using namespace std;
struct Node
{
int data;
Node *right;
Node *left;
};
Node *head = NULL;
map<int, int> mp;
void inorder(Node* root)
{
if(root == NULL)return;
if(root->left != NULL)mp[(root->left)->data] = 2*(mp[root->data]);
if(root->right != NULL)mp[(root->right)->data] = 2*(mp[root->data]) + 1;
inorder(root->left);
inorder(root->right);
}
Node* findmin(Node *root)
{
Node* temp = root;
while(temp->left !=NULL)
{
temp = temp->left;
}
return temp;
}
Node* findmax(Node *root)
{
Node* temp = root;
while(temp->right !=NULL)
{
temp = temp->right;
}
return temp;
}
int insert(int data)
{
if(head == NULL)
{
Node *ptr = new Node;
head = ptr;
ptr->data = data;
ptr->left = ptr->right = NULL;
mp[data] = 1;
}
else
{
Node *temp = head;
Node *prev = head;
while (temp != NULL)
{
prev = temp;
if(data >temp->data )temp = temp->right;
else temp = temp->left;
}
Node* ptr = new Node;
ptr->data = data;
ptr->left = ptr->right = NULL;
if(data > prev->data)
{
mp[data] = (2*mp[prev->data]) + 1;
prev->right = ptr;
}
else
{
mp[data] = (2*mp[prev->data]);
prev->left = ptr;
}
}
return mp[data];
};
int Delete(int data)
{
Node *temp = head;
Node *prev = head;
while (temp->data != data)
{
prev = temp;
if(data >temp->data )temp = temp->right;
else temp = temp->left;
}
if(temp->left = temp->right = NULL)
{
}
else if(temp->right == NULL || temp->left == NULL)
{
cout << "temp->data: "<< temp->data << ", data: "<< data << endl;
//cout << (temp->right)->data << endl;
if(data> prev->data && temp->right == NULL )
{
mp[(temp->left)->data] = mp[temp->data];
prev->right = temp->left;
inorder(prev->right);
}
else if(data> prev->data && temp->left == NULL )
{
mp[(temp->right)->data] = mp[temp->data];
prev->right = temp->right;
inorder(prev->right);
}
else if(data< prev->data && temp->left == NULL )
{
cout << "Here" << endl;
mp[(temp->right)->data] = mp[temp->data];
prev->left = temp->right;
inorder(prev->left);
}
else if(data< prev->data && temp->right == NULL )
{
mp[(temp->left)->data] = mp[temp->data];
prev->left = temp->left;
inorder(prev->left);
}
}
else if (temp->right != NULL && temp->left != NULL)
{
int maxdata = findmax(temp->left)->data;
mp[maxdata] = mp[temp ->data];
Delete(maxdata);
if(data>prev->data)
{
(prev->right)->data = maxdata;
inorder(prev->right);
}
else
{
(prev->left)->data = maxdata;
inorder(prev->left);
}
}
int returndata = mp[temp->data];
delete(temp);
return returndata;
};
void inordert(Node* root)
{
if(root == NULL)return;
inordert(root->left);
cout << root->data << endl;
inordert(root->right);
}
int main()
{
int T;
cin >> T;
for(int i = 0; i<T; i++)
{
char operation;
int data;
cin >> operation >> data;
if(operation == 'i')
{
insert(data);
}
else if(operation = 'd')cout << Delete(data) << endl;
}
inordert(head);
} |
2fe375dbe0b91ba7447d9ce41e9575eed4555aa4 | 489b76b0364caed708fd401e4c8759c2b0be58df | /board/board.cpp | 2660be452b3c50ded61e3b6475ffd74f1fd0d1e7 | [] | no_license | skowronski94/Color-Game | d63d5e3842f23010ea6ab08404cdaf8f7fff75bd | b916f113f3fd55f6fbb9a9c66c49c5189434e0e0 | refs/heads/master | 2021-04-30T09:33:11.375943 | 2018-02-12T23:08:30 | 2018-02-12T23:08:30 | 121,312,454 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,648 | cpp | board.cpp | #include "board.h"
// private ///////////////////////////////////////
void Board::deleteArray()
{
for(int j = 0; j < this->width; j++){
arr[j] = new Tile*[this->height];
for(int k = 0; k < this->height; k++)
delete arr[j][k];
delete[] arr[j];
}
delete[] arr;
}
// public ////////////////////////////////////////
int const & Board::getWidth() const
{
return width;
}
int const & Board::getHeight() const
{
return height;
}
Tile const * Board::at(int const & j, int const & k) const
{
if(j < width && k < height)
return arr[j][k];
return nullptr;
}
Tile** Board::operator[](int const & i) const
{
if(i < width)
return arr[i];
return nullptr;
}
void Board::initialize(int const & width, int const & height)
{
deleteArray();
this->width = width;
this->height = height;
arr = new Tile**[this->width];
for(int j = 0; j < this->width; j++){
arr[j] = new Tile*[this->height];
for(int k = 0; k < this->height; k++)
arr[j][k] = new Tile();
}
}
// constructors ///////////////////////////////
Board::Board()
{
this->width = 1;
this->height = 1;
arr = new Tile**[this->width];
for(int j = 0; j < this->width; j++){
arr[j] = new Tile*[this->height];
for(int k = 0; k < this->height; k++)
arr[j][k] = new Tile();
}
}
Board::Board(int const & width, int const & height)
:width(width), height(height)
{
arr = new Tile**[this->width];
for(int j = 0; j < this->width; j++)
arr[j] = new Tile*[this->height];
}
Board::~Board()
{
deleteArray();
}
|
0ac515db6f39724fc936e477340ae8f874e1075b | ea11740a5fea5d92061de2afbfd54affdf98b00a | /code/nucleo/src/actionneur.hpp | f9cfba113acb9d1e6d2f88ce042715e4aae71b3b | [] | no_license | Starmaxou/eirbot2020-1A | a4d866ed9572a6ae9bc7f418f775a625f0e1f01c | e6bd91a4d33e3f6008cef469e2abd2500c028dc0 | refs/heads/master | 2021-01-08T00:40:00.605121 | 2020-02-20T07:31:52 | 2020-02-20T07:31:52 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 280 | hpp | actionneur.hpp | #ifndef __ACTIONNEUR_H_
#define __ACTIONNEUR_H_
//Fichier très simple il permet juste d'activer les 2 cerveaux moteurs (manche à air et pavillon)
//Normalement les deux fonctions sont des void void
void activate_pavillon();
void activate_manche();
#endif // __ACTIONNEUR_H_
|
363fdd08ff1fcd6b396ac0017277efe6f0b0627d | d4a2c50a90792600c4d864fffe9c1a9d1ebd6acc | /mmlib/MMLib/DataDlg.h | 52562a11e6c7e2bdeb128d689335bf1504e9faae | [] | no_license | iwasen/MyProg | 3080316c3444e98d013587e92c066e278e796041 | a0755a21d77647261df271ce301404a4e0294a7b | refs/heads/master | 2022-12-30T00:28:07.539183 | 2020-10-25T06:36:27 | 2020-10-25T06:36:27 | 307,039,466 | 0 | 4 | null | null | null | null | SHIFT_JIS | C++ | false | false | 3,338 | h | DataDlg.h | #pragma once
// DataDlg.h : ヘッダー ファイル
//
#include "PictureWnd.h"
#include "LocalDll.h"
/////////////////////////////////////////////////////////////////////////////
// CDataDlg ダイアログ
class CDataDlg : public CDialog
{
// コンストラクション
public:
CDataDlg(CWnd* pParent = NULL); // 標準のコンストラクタ
~CDataDlg();
// ダイアログ データ
enum { IDD = IDD_DATA_LARGE };
CMyButton m_cPictWindow;
CButton m_cPictClipBoard;
CButton m_cCopyData;
CComboBox m_cAutoRotation;
CButton m_cAutoNumbering;
CMyButton m_cAutoSave;
CButton m_cPictErase;
CButton m_cCancel;
CButton m_cPictRotation;
CPictureWnd m_cPictPicture;
CButton m_cSave;
CEdit m_cTitle;
CEdit m_cRemark;
CEdit m_cKeyword;
CEdit m_cCreator;
CEdit m_cCode;
CString m_sCode;
CString m_sCreator;
CString m_sPictColor;
CString m_sPictDPI;
CString m_sPictHeight;
CString m_sPictWidth;
CString m_sRemark;
CString m_sKeyword;
CString m_sTitle;
// オーバーライド
// ClassWizard は仮想関数のオーバーライドを生成します。
protected:
virtual void DoDataExchange(CDataExchange* pDX); // DDX/DDV サポート
// インプリメンテーション
protected:
// 生成されたメッセージ マップ関数
virtual BOOL OnInitDialog();
afx_msg void OnSave();
afx_msg void OnPictCamera();
afx_msg void OnPictScanner();
afx_msg void OnPictFile();
afx_msg void OnPictRotation();
virtual void OnCancel();
virtual void OnOK();
afx_msg void OnChangeTitle();
afx_msg void OnChangeCode();
afx_msg void OnChangeCreator();
afx_msg void OnChangeRemark();
afx_msg void OnChangeKeyword();
afx_msg void OnPictErase();
afx_msg void OnAutoNumbering();
afx_msg void OnAutoSave();
afx_msg void OnTextData();
afx_msg void OnCopyData();
afx_msg void OnPictClipboard();
afx_msg void OnDestroy();
afx_msg void OnMouseMove(UINT nFlags, CPoint point);
afx_msg void OnLButtonUp(UINT nFlags, CPoint point);
afx_msg LRESULT OnFrameBmp(WPARAM wParam, LPARAM lParam);
afx_msg LRESULT OnScanBmp(WPARAM wParam, LPARAM lParam);
afx_msg void OnDrawClipboard();
afx_msg void OnChangeCbChain(HWND hWndRemove, HWND hWndAfter);
afx_msg LRESULT OnPictWindow(WPARAM wParam, LPARAM lParam);
DECLARE_MESSAGE_MAP()
public:
CItemFolder *m_pItemFolder;
CItemData *m_pItemData;
CDocument *m_pDoc;
HANDLE m_hDIB;
CString m_Caption;
DATAREC m_DataRec;
CString *m_pReadFileName;
int m_nReadFileName;
private:
int m_nDPI;
BOOL m_bUpdateData;
BOOL m_bUpdatePict;
BOOL m_bUpdateSound;
BOOL m_bUpdateText;
CString m_sCreateDate;
CString m_sTextData;
int m_nReadCount;
HWND m_hWndNext;
HWND m_hWndSel;
void NextReadFile();
void PictErase();
void GetPicture(int nMode);
void SetPicture(HDIB hDIB, IMAGE_INFO *pImageInfo);
void GetImageInfo(HDIB hDIB, IMAGE_INFO *pImageInfo);
BOOL CheckColorMode(HDIB hDIB);
void ExitDialog();
void SetUpdateData();
void ResetUpdateData();
void EnableButton();
void AutoNumbering(BOOL nNext);
BOOL CheckClipBoard();
HDIB GetDIBFromBmp(HBITMAP hBmp);
void DrawWindowFrame(CWnd *pWnd);
HDIB GetWindowDIB(CWnd *pWnd);
CWnd *GetTopParentWindow(CWnd *pWnd);
BOOL GetWindowTitle(CWnd *pWnd, CString &title);
};
|
e6a36affb68f8f4506f9ff30a83f3f49c516e929 | 6d78e0f1b86d0a45dd97bd7f002fbf82826bdc8b | /src/demo_scene.cpp | 8f38f424aa098981f9dc4365661ca8957364aab2 | [] | no_license | Atomnp/CMake-SDL-Demo | 29364cf1d1418e60379be11e24e22ef69d45dd7c | 5eb47b3244207ac07981cb5cc6323037268970ac | refs/heads/master | 2021-09-04T20:06:22.258403 | 2018-01-18T13:21:32 | 2018-01-22T02:18:28 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 4,024 | cpp | demo_scene.cpp | #include "demo_scene.h"
void DemoScene::Initialize() {
show_test_window = false;
showHideButtonText = "Show ImGui Test Window";
cameraPosition = glm::vec3(0.0f, 0.0f, 0.0f);
image = std::make_unique<StageImage>();
image->SetImage("./assets/03_HiRes_upload.jpg");
glGenVertexArrays(1, &vertexArrayID);
glBindVertexArray(vertexArrayID);
GLuint vertexBufferID;
int size = image->GetVertexBuffer().size() * sizeof(GLfloat);
glGenBuffers(1, &vertexBufferID);
glBindBuffer(GL_ARRAY_BUFFER, vertexBufferID);
glBufferData(
GL_ARRAY_BUFFER,
size,
image->GetVertexBuffer().data(),
GL_STATIC_DRAW
);
glVertexAttribPointer(0, 3, GL_FLOAT, GL_FALSE, 5 * sizeof(GLfloat), (void*)0);
glEnableVertexAttribArray(0);
glVertexAttribPointer(1, 2, GL_FLOAT, GL_FALSE, 5 * sizeof(GLfloat), (void*)(3 * sizeof(GLfloat)));
glEnableVertexAttribArray(1);
programID = GLUtils::CreateProgram("./assets/vertex_shader.vsh", "./assets/fragment_shader.fsh");
matrixID = glGetUniformLocation(programID, "u_matrix");
cameraPosition = glm::vec3(0.0f, 0.0f, 0.0f);
ImGui_ImplSdlGL3_Init(GetWindowPtr());
auto io = ImGui::GetIO();
io.Fonts->AddFontFromFileTTF("./assets/Roboto-Regular.ttf", 16.0f);
ImGui::GetStyle().FrameRounding = 0.0f;
ImGui::GetStyle().WindowRounding = 0.0f;
}
void DemoScene::Update() {
InputEventNode event; // holds copy of next event node, deallocated at end of this function scope
bool newFrame = true;
while (InputRef()->DigestInputEvents(event, newFrame)) {
auto winPtr = GetWindowPtr();
bool hasMouseFocus = SDL_GetWindowFlags(winPtr) & SDL_WINDOW_MOUSE_FOCUS;
bool leftMouseButtonDown = SDL_GetMouseState(NULL, NULL) & SDL_BUTTON(SDL_BUTTON_LEFT);
ImGui_ImplSdlGL3_ProcessEvent(&(event.event));
auto io = ImGui::GetIO();
// don't process mouse events when interacting with imgui window
if (!io.WantCaptureMouse) {
if (event.event.type == SDL_MOUSEMOTION && leftMouseButtonDown) {
if (hasMouseFocus) {
cameraPosition.x += (event.event.motion.xrel) * (1.0f / image->CameraZoom);
cameraPosition.y += (-event.event.motion.yrel) * (1.0f / image->CameraZoom);
}
}
if (event.event.type == SDL_MOUSEWHEEL) {
image->CameraZoom += (event.event.wheel.y * 0.01f);
if (image->CameraZoom < 0) {
image->CameraZoom = 0;
}
}
}
newFrame = false;
}
}
void DemoScene::Render() {
ImGui_ImplSdlGL3_NewFrame(GetWindowPtr());
ImGui::SetNextWindowPos(ImVec2(650, 20), ImGuiSetCond_FirstUseEver);
ImGui::Text("Test Text");
if (ImGui::Button(showHideButtonText.c_str())) {
show_test_window = !show_test_window;
showHideButtonText = show_test_window ? "Hide ImGui Test Window" : "Show ImGui Test Window";
};
if (ImGui::BeginMainMenuBar()) {
if (ImGui::BeginMenu("File")) {
if (ImGui::MenuItem("Open")) {
std::string filePath = FileDialog::openFile();
std::cout << filePath << std::endl;
if (filePath != "") {
int size = 0;
image->SetImage(filePath);
// Update existing VBO
glBufferSubData(
GL_ARRAY_BUFFER,
0,
size,
image->GetVertexBuffer().data()
);
}
}
ImGui::MenuItem("Save", NULL, false, false);
ImGui::MenuItem("Save As", NULL, false, false);
ImGui::EndMenu();
}
ImGui::EndMainMenuBar();
}
if (show_test_window) {
ImGui::ShowTestWindow();
}
glClearColor(0.2f, 0.2f, 0.2f, 1.0f);
glClear(GL_COLOR_BUFFER_BIT | GL_DEPTH_BUFFER_BIT);
glm::mat4 srt_matrix = image->GetMatrix(cameraPosition, glm::vec2(1280, 720));
glUseProgram(programID);
glUniformMatrix4fv(matrixID, 1, GL_FALSE, &srt_matrix[0][0]);
glBindTexture(GL_TEXTURE_2D, image->textureID);
// draw image quad
Renderer::DrawVertices(vertexArrayID, GL_TRIANGLES, 6);
// Draw UI elements
ImGui::Render();
SDL_GL_SwapWindow(GetWindowPtr());
}
|
05fcd3b9c172c6f2d34ccd1dbf684846eb117d24 | 967d898b34a9392af2f8afe71546a2c3c873af69 | /run_pe.cpp | f39a94bc83c41b3a037468b30078dfce694fc8e5 | [
"BSD-3-Clause"
] | permissive | JoaoHenriqueOliveira/bayesmix | 3cef5dc004e8f7607606fe932da37e0687dd9e19 | 8ebc95c5188d236796593dd21b72436f903bf5e5 | refs/heads/master | 2023-03-04T18:35:55.964543 | 2021-02-16T19:50:35 | 2021-02-16T19:51:33 | 339,519,609 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,884 | cpp | run_pe.cpp | #include <iostream>
#include "src/includes.hpp"
Eigen::VectorXd epl_for_each_Kup(Eigen::MatrixXi &mcmc, int loss_type) {
int N = mcmc.cols();
Eigen::VectorXd epl_vec(mcmc.cols());
Eigen::VectorXi initial_partition = Eigen::VectorXi::LinSpaced(N, 1 ,N);
for (int K = 1; K < N; K++) {
ClusterEstimator cp(mcmc, static_cast<LOSS_FUNCTION>(loss_type),
K, initial_partition);
epl_vec(K) = cp.expected_posterior_loss(
cp.cluster_estimate(GREEDY));
}
return epl_vec;
}
int main(int argc, char *argv[]) {
//std::cout << "Running run_pe.cpp" << std::endl;
if (argc != 5) {
throw domain_error("Syntax : ./run_pe filename_in filename_out loss Kup");
}
std::string filename_in = argv[1];
std::string filename_out = argv[2];
int loss_type = std::stoi(argv[3]);
int Kup = std::stoi(argv[4]);
Eigen::MatrixXi mcmc;
mcmc = bayesmix::read_eigen_matrix(filename_in);
// std::cout << "Matrix with dimensions : " << mcmc.rows()
std::cout << "Matrix with dimensions : " << mcmc.rows()
<< "*" << mcmc.cols() << " found." << std::endl;
// Compute epl for each Kup to see the best
if (Kup == -1) {
cout << "Computation of epl for each K" << endl;
bayesmix::write_matrix_to_file(epl_for_each_Kup(mcmc, loss_type).transpose(),
filename_out);
}
else if (Kup > 0) {
Eigen::VectorXi initial_partition = Eigen::VectorXi::LinSpaced(mcmc.cols(), 1 ,mcmc.cols());
ClusterEstimator cp(mcmc, static_cast<LOSS_FUNCTION>(loss_type),
Kup,initial_partition);
Eigen::VectorXi result = cp.cluster_estimate(GREEDY);
bayesmix::write_matrix_to_file(result.transpose(), filename_out);
// Eigen::VectorXd true_result = bayesmix::cluster_estimate(mcmc);
// cout << "True result : " << true_result.transpose() << endl;
}
}
|
7692051ec53617bd83c5139e8b3293af38175dae | 66ca415329ef33dd1e1d53b6e9d57f9adade9349 | /ACM-ICPC-Handbook-master/code/lca_binary_lifting.cpp | 3e1adc93cde11c26d02a8c18aae0d0dfcebf81c5 | [
"MIT"
] | permissive | Harshit2929/ACM_ICPC_Codebook | f7b0c3f57904086b1a5de12b9728c82871f6ee39 | 3d3db2e6a135f83c5527af34f6bcda3f61435d3c | refs/heads/master | 2022-03-28T22:46:11.880658 | 2020-01-07T10:46:53 | 2020-01-07T10:46:53 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 3,459 | cpp | lca_binary_lifting.cpp | struct log_lca {
int n = 0;
vector<int> parent, depth;
vector<vector<int>> adj;
vector<vector<int>> ancestor;
log_lca(int _n = 0) {
init(_n);
}
void init(int _n) {
n = _n;
parent.resize(n);
depth.resize(n);
adj.assign(n, {});
}
static int largest_bit(int x) {
return 31 - __builtin_clz(x);
}
void add_edge(int a, int b) {
adj[a].push_back(b);
adj[b].push_back(a);
}
void dfs(int node, int par) {
depth[node] = par < 0 ? 0 : depth[par] + 1;
parent[node] = par;
for (int neighbor : adj[node])
if (neighbor != par)
dfs(neighbor, node);
}
void build() {
dfs(0, -1);
ancestor.assign(largest_bit(n) + 1, vector<int>(n));
ancestor[0] = parent;
for (int k = 0; k < largest_bit(n); k++)
for (int i = 0; i < n; i++)
ancestor[k + 1][i] = ancestor[k][i] < 0 ? -1 : ancestor[k][ancestor[k][i]];
}
int get_lca(int a, int b) const {
if (depth[a] > depth[b])
swap(a, b);
int difference = depth[b] - depth[a];
for (int k = 0; 1 << k <= difference; k++)
if (difference & 1 << k)
b = ancestor[k][b];
if (a == b)
return a;
assert(a != b && depth[a] == depth[b]);
for (int k = largest_bit(depth[a]); k >= 0; k--)
if (ancestor[k][a] != ancestor[k][b]) {
a = ancestor[k][a];
b = ancestor[k][b];
}
assert(parent[a] == parent[b]);
return parent[a];
}
int get_dist(int a, int b) const {
return depth[a] + depth[b] - 2 * depth[get_lca(a, b)];
}
int get_kth_ancestor(int v, int k) const {
for (int i = 0; 1 << i <= k; i++)
if (k & 1 << i) {
v = ancestor[i][v];
if (v < 0)
break;
}
return v;
}
int get_kth_node_on_path(int a, int b, int k) const {
int anc = get_lca(a, b);
int first_half = depth[a] - depth[anc];
int second_half = depth[b] - depth[anc];
assert(0 <= k && k <= first_half + second_half);
if (k < first_half)
return get_kth_ancestor(a, k);
else
return get_kth_ancestor(b, first_half + second_half - k);
}
};
int N;
log_lca lca;
vector<int> center = {-1, -1};
int diameter = 0;
void add_to_center(int p) {
if (center[0] < 0) {
center = {p, p};
return;
}
int dist0 = lca.get_dist(p, center[0]);
int dist1 = lca.get_dist(p, center[1]);
if (dist0 + dist1 <= diameter)
return;
if (dist0 < dist1) {
swap(dist0, dist1);
swap(center[0], center[1]);
}
int new_diameter = diameter / 2 + dist0;
center[0] = lca.get_kth_node_on_path(center[0], p, new_diameter / 2 - diameter / 2);
center[1] = lca.get_kth_node_on_path(center[0], p, new_diameter % 2);
diameter = new_diameter;
}
int main() {
scanf("%d", &N);
lca.init(N);
for (int i = 0; i < N - 1; i++) {
int a, b;
scanf("%d %d", &a, &b);
a--; b--;
lca.add_edge(a, b);
}
lca.build();
for (int i = 0; i < N; i++) {
int p;
scanf("%d", &p);
p--;
add_to_center(p);
printf("%d%c", min(center[0], center[1]) + 1, i < N - 1 ? ' ' : '\n');
}
}
|
e1df2df079bf2fb3c857fb82ab7d57e45d000890 | e075085976b939f72ebced483b28d020da2ee088 | /combo_v2_teensy/combo_v2_teensy.ino.ino | fb4e0262257cb6c21d33af81cfa62ebd214619ff | [] | no_license | mihirk284/goldcrest | f190a47ed8a87919e264b3907cf943fc9cdc6d55 | 926d9ec7fe7b23c1e640293e3cdb1563117293c8 | refs/heads/master | 2020-05-24T11:20:57.922906 | 2020-03-06T12:08:25 | 2020-03-06T12:08:25 | 187,247,003 | 3 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 13,801 | ino | combo_v2_teensy.ino.ino | #include "I2Cdev.h"
#include "MPU6050_6Axis_MotionApps20.h"
#if I2CDEV_IMPLEMENTATION == I2CDEV_ARDUINO_WIRE
#include "Wire.h"
#endif
MPU6050 mpu;
//MPU6050 mpu(0x69); // <-- use for AD0 high
#define OUTPUT_READABLE_YAWPITCHROLL
#include <SPI.h>
#include "nRF24L01.h"
#include "RF24.h"
#define INTERRUPT_PIN 2 // use pin 2 on Arduino Uno & most boards
bool blinkState = false;
// MPU control/status vars
bool dmpReady = false; // set true if DMP init was successful
uint8_t mpuIntStatus; // holds actual interrupt status byte from MPU
uint8_t devStatus; // return status after each device operation (0 = success, !0 = error)
uint16_t packetSize; // expected DMP packet size (default is 42 bytes)
uint16_t fifoCount; // count of all bytes currently in FIFO
uint8_t fifoBuffer[64]; // FIFO storage buffer
// orientation/motion vars
Quaternion q; // [w, x, y, z] quaternion container
VectorInt16 aa; // [x, y, z] accel sensor measurements
VectorInt16 aaReal; // [x, y, z] gravity-free accel sensor measurements
VectorInt16 aaWorld; // [x, y, z] world-frame accel sensor measurements
VectorFloat gravity; // [x, y, z] gravity vector
float euler[3]; // [psi, theta, phi] Euler angle container
float ypr[3]; // [yaw, pitch, roll] yaw/pitch/roll container and gravity vector
// ================================================================
// === PID SETUP ===
// ================================================================
float yawKp = 4;
float pitchKp = 1;
float rollKp = 1;
float yawKd = 1;
float pitchKd = 30;
float rollKd = 30;
float yawKi = 0.1;
float pitchKi = 0.1;
float rollKi = 0.1;
long counter = 0;
// ================================================================
// === INTERRUPT DETECTION ROUTINE ===
// ================================================================
volatile bool mpuInterrupt = false; // indicates whether MPU interrupt pin has gone high
void dmpDataReady() {
mpuInterrupt = true;
}
// ================================================================
// === MOTION VARIABLES ===
// ================================================================
short iYaw[101], iPitch[101], iRoll[101];
int motor1 = 0, motor2 = 0, motor3 = 0, motor4 = 0, M1 = 3, M2 = 5, M3 = 6, M4 = 9;
int vehicle_yaw = 0, vehicle_pitch = 0, vehicle_roll = 0, prevYawErr, prevPitchErr, prevRollErr, currYawErr, currPitchErr, currRollErr;
int yaw_output, pitch_output, roll_output;
long yawSum = 0, pitchSum = 0, rollSum = 0;
int n_thr = 0, n_pitch = 0, n_roll = 0, n_yaw = 0;
int armed = 0;
// ================================================================
// === RADIO SETUP ===
// ================================================================
int yaw, pitch, roll, rb, lb, throttle;
struct tx_packet
{
int yaw, pitch, roll, throttle, r_button, l_button;
byte device_ID, target_ID, packet_type;
float rollKp, pitchKp, rollKd, pitchKd;
}tp1;
struct telem_packet
{
int yaw, pitch, roll, armed;
byte vehicle_id;
long timestamp;
} telem_p1;
RF24 radio(9,10);
//
// Topology
//
// Radio pipe addresses for the 2 nodes to communicate.
const uint64_t pipes[2] = { 0xF0F0F0F0E1LL, 0xF0F0F0F0D2LL };
// The various roles supported by this sketch
typedef enum { role_ping_out = 1, role_pong_back } role_e;
// The debug-friendly names of those roles
const char* role_friendly_name[] = { "invalid", "Ping out", "Pong back"};
// The role of the current running sketch
role_e role = role_pong_back;
long count = 0;
// ================================================================
// === INITIAL SETUP ===
// ================================================================
void setup() {
pinMode(M1, OUTPUT);
pinMode(M2, OUTPUT);
pinMode(M3, OUTPUT);
pinMode(M4, OUTPUT);
analogWrite(M1, 0);
analogWrite(M2, 0);
analogWrite(M3, 0);
analogWrite(M4, 0);
delay(100);
// put your setup code here, to run once:
for(int i=0; i<101;i++)
{
iYaw[i] = 0;
iPitch[i] = 0;
iRoll[i] = 0;
}
// join I2C bus (I2Cdev library doesn't do this automatically)
#if I2CDEV_IMPLEMENTATION == I2CDEV_ARDUINO_WIRE
Wire.begin();
Wire.setClock(400000); // 400kHz I2C clock. Comment this line if having compilation difficulties
#elif I2CDEV_IMPLEMENTATION == I2CDEV_BUILTIN_FASTWIRE
Fastwire::setup(400, true);
#endif
// initialize serial communication
// (115200 chosen because it is required for Teapot Demo output, but it's
// really up to you depending on your project)
Serial.begin(115200);
radio.begin();
radio.setRetries(20,6);
delay(100);
radio.startListening();
radio.openWritingPipe(pipes[0]);
radio.openReadingPipe(1,pipes[1]);
while (!Serial); // wait for Leonardo enumeration, others continue immediately
mpu.initialize();
pinMode(INTERRUPT_PIN, INPUT);
Serial.println(F("Testing device connections..."));
Serial.println(mpu.testConnection() ? F("MPU6050 connection successful") : F("MPU6050 connection failed"));
devStatus = mpu.dmpInitialize();
// supply your own gyro offsets here, scaled for min sensitivity
mpu.setXGyroOffset(220);
mpu.setYGyroOffset(76);
mpu.setZGyroOffset(-85);
mpu.setZAccelOffset(1788); // 1688 factory default for my test chip
// make sure it worked (returns 0 if so)
if (devStatus == 0) {
// turn on the DMP, now that it's ready
Serial.println(F("Enabling DMP..."));
mpu.setDMPEnabled(true);
// enable Arduino interrupt detection
Serial.print(F("Enabling interrupt detection (Arduino external interrupt "));
Serial.print(digitalPinToInterrupt(INTERRUPT_PIN));
Serial.println(F(")..."));
attachInterrupt(digitalPinToInterrupt(INTERRUPT_PIN), dmpDataReady, RISING);
mpuIntStatus = mpu.getIntStatus();
// set our DMP Ready flag so the main loop() function knows it's okay to use it
Serial.println(F("DMP ready! Waiting for first interrupt..."));
dmpReady = true;
// get expected DMP packet size for later comparison
packetSize = mpu.dmpGetFIFOPacketSize();
} else {
// ERROR!
// 1 = initial memory load failed
// 2 = DMP configuration updates failed
// (if it's going to break, usually the code will be 1)
Serial.print(F("DMP Initialization failed (code "));
Serial.print(devStatus);
Serial.println(F(")"));
}
}
void read_radio()
{
if ( radio.available() )
{
Serial.println("RADIO READ");
unsigned long got_time;
bool done = false;
while (!done)
{
// Fetch the payload, and see if this was the last one.
done = radio.read( &tp1, sizeof(tp1) );
yaw = tp1.yaw;
pitch = tp1.pitch;
roll = tp1.roll;
throttle = tp1.throttle;
lb = tp1.l_button;
rb = tp1.r_button;
rollKp = tp1.rollKp;
pitchKp=tp1.pitchKp;
rollKd = tp1.rollKd;
pitchKd=tp1.pitchKd;
/*READ RADIO COMMANDS
// Spew it
Serial.print(tp1.throttle);Serial.print(" ");
Serial.print(tp1.yaw);Serial.print(" ");
Serial.print(tp1.l_button);Serial.print("\t");
Serial.print(tp1.pitch);Serial.print(" ");
Serial.print(tp1.roll);Serial.print(" ");
Serial.print(tp1.r_button); Serial.print("\t");
*/
}
telem_p1.yaw = vehicle_yaw;
telem_p1.pitch = vehicle_pitch;
telem_p1.roll = vehicle_roll;
telem_p1.armed = armed;
telem_p1.vehicle_id = 1;
Serial.print(telem_p1.yaw); Serial.print("\t");
Serial.print(telem_p1.pitch); Serial.print("\t");
Serial.print(telem_p1.roll); Serial.println("\t");
// First, stop listening so we can talk
radio.stopListening();
delay(5);
radio.write( &telem_p1, sizeof(telem_p1));
//Serial.println("POSE WRITTEN");
// Now, resume listening so we catch the next packets.
radio.startListening();
if(rb==1 && lb==1)
armed=!armed;
while(radio.available())
{
radio.read( &tp1, sizeof(tp1) );
}
}
}
void read_pose()
{
// get current FIFO count
fifoCount = mpu.getFIFOCount();
// otherwise, check for DMP data ready interrupt (this should happen frequently)
if (fifoCount > 0) {
// wait for correct available data length, should be a VERY short wait
while (fifoCount < packetSize) fifoCount = mpu.getFIFOCount();
// read a packet from FIFO
mpu.getFIFOBytes(fifoBuffer, packetSize);
// display Euler angles in degrees
mpu.dmpGetQuaternion(&q, fifoBuffer);
mpu.dmpGetGravity(&gravity, &q);
mpu.dmpGetYawPitchRoll(ypr, &q, &gravity);
vehicle_yaw = ypr[0]* 180 / M_PI;
vehicle_pitch = ypr[1]* 180 / M_PI;
vehicle_roll = ypr[2]* 180 / M_PI;
Serial.print(vehicle_yaw);Serial.print("\t");Serial.print(vehicle_pitch);Serial.print("\t");Serial.println(vehicle_roll);
mpu.resetFIFO();
}
}
void PID_compute_output()
{
if (armed == 1)
{
n_thr = map(throttle, 0, 1023, 10, 130);
n_roll = map(roll, -512, 512, -30, 30);
n_pitch = map(pitch, -512, 512, -30, 30);
n_yaw = map(yaw, -512, 512, -90, 90);
prevYawErr = currYawErr;
prevPitchErr = currPitchErr;
prevRollErr = currRollErr;
currYawErr = vehicle_yaw - n_yaw;
currPitchErr = vehicle_pitch - n_pitch;
currRollErr = vehicle_roll - n_roll;
yawSum = 0;
pitchSum = 0;
rollSum = 0;
for (int i = 1; i < 100; i++)
{
n_thr = map(throttle, 0, 1023, 60, 200);
n_roll = map(roll, -512, 512, -30, 30);
n_pitch = map(pitch, -512, 512, -30, 30);
n_yaw = map(yaw, -530, 510, -30, 30);
prevYawErr = currYawErr;
prevPitchErr = currPitchErr;
prevRollErr = currRollErr;
currYawErr = vehicle_yaw - n_yaw;
currPitchErr = vehicle_pitch - n_pitch;
currRollErr = vehicle_roll - n_roll;
//Uncomment the following to use integral
/*
yawSum =0;
pitchSum=0;
rollSum=0;
for (int i = 1; i<100; i++)
{
iYaw[i] = iYaw[i+1];
iPitch[i] = iPitch[i+1];
iRoll[i] = iRoll[i+1];
yawSum +=iYaw[i];
pitchSum +=iPitch[i];
rollSum +=iRoll[i];
}
iYaw[100] = currYawErr;
iPitch[100] = currPitchErr;
iRoll[100] = currRollErr;
int intYaw = constrain(yawSum, -1000, 1000);
int intPitch = constrain(pitchSum, -800, 800);
int intRoll = constrain(rollSum, -800, 800);
//Serial.print(intYaw);Serial.print("\t");Serial.print(intPitch);Serial.print("\t");Serial.println(intRoll);
yaw_output = -yawKp*n_yaw +yawKi*intYaw;
pitch_output = pitchKp*currPitchErr + pitchKd*(currPitchErr-prevPitchErr) +pitchKi*intPitch;
roll_output = rollKp*currRollErr + rollKd*(currRollErr-prevRollErr) +rollKi*intRoll;
*/
//Use this without Ki
yaw_output = -yawKp*n_yaw;//+yawKi*intYaw;
pitch_output = pitchKp*currPitchErr + pitchKd*(currPitchErr-prevPitchErr);
roll_output = rollKp*currRollErr + rollKd*(currRollErr-prevRollErr);
}
iYaw[100] = currYawErr;
iPitch[100] = currPitchErr;
iRoll[100] = currRollErr;
int intYaw = constrain(yawSum, -1000, 1000);
int intPitch = constrain(pitchSum, -800, 800);
int intRoll = constrain(rollSum, -800, 800);
//Serial.print(intYaw);Serial.print("\t");Serial.print(intPitch);Serial.print("\t");Serial.println(intRoll);
yaw_output = yawKp * currYawErr + yawKd * prevYawErr + yawKi * intYaw;
pitch_output = pitchKp * currPitchErr + pitchKd * prevPitchErr + pitchKi * intPitch;
roll_output = rollKp * currRollErr + rollKd * prevRollErr + rollKi * intRoll;
}
}
void write_to_motors()
{
// FOR CONTROL WITH YAW
motor1 = n_thr - yaw_output - pitch_output + roll_output;
motor2 = n_thr - yaw_output + pitch_output - roll_output;
motor3 = n_thr + yaw_output - pitch_output - roll_output;
motor4 = n_thr + yaw_output + pitch_output + roll_output;
//FOR CONTROL WITHOUT YAW
/*
motor1 = n_thr - pitch_output + roll_output;
motor2 = n_thr + pitch_output - roll_output;
motor3 = n_thr - pitch_output - roll_output;
motor4 = n_thr + pitch_output + roll_output;
*/
if(armed == 1)
{
motor1 = constrain(motor1, 10, 130);
motor2 = constrain(motor2, 10, 130);
motor3 = constrain(motor3, 10, 130);
motor4 = constrain(motor4, 10, 130);
// motor1 = constrain(motor1, 50, 254);
// motor2 = constrain(motor2, 50, 254);
// motor3 = constrain(motor3, 50, 254);
// motor4 = constrain(motor4, 50, 254);
}
else if (armed == 0)
{
motor1 = 0;
motor2 = 0;
motor3 = 0;
motor4 = 0;
}
analogWrite(M1, motor1);
analogWrite(M2, motor2);
analogWrite(M3, motor3);
analogWrite(M4, motor4);
//Serial.print(motor1);Serial.print("\t");Serial.print(motor2);Serial.print("\t"); Serial.print(motor3);Serial.print("\t");Serial.println(motor4);
}
void loop() {
// put your main code here, to run repeatedly:
if (millis() <= 6000)
{
delay(100);
mpu.resetFIFO();
yawSum = 0;
pitchSum = 0;
rollSum = 0;
}
else
{
read_radio();
read_pose();
PID_compute_output();
//Serial.println("PID COMPUTED");
write_to_motors();
//Serial.println("-------------------------------");
delay(5);
//Serial.print(millis());Serial.print("\t"); Serial.println(counter);
//counter++;
}
}
|
7f4719665a01f79cc571d2bd129783d6811922ac | 65766caa381f6197a20a0b7aaf47943c51cf77b2 | /P4 Backtracking y BB/Equipos/src/equipos.cpp | 498dcfc2c77a6e103f18b73fa2873449e108df5d | [] | no_license | fgallegosalido/Algoritmica-DG | e8dc3028fd66eb45b4148741b1ed962c69626f0d | 0755bdd0595a916701353510b899aee15762d863 | refs/heads/master | 2021-01-17T07:02:51.611439 | 2016-12-13T23:36:13 | 2016-12-13T23:36:13 | 53,580,554 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 4,983 | cpp | equipos.cpp | #include <iostream>
#include <cstdlib>
#include <ctime>
#include <cmath>
#include <fstream>
#include <chrono>
#include <vector>
using namespace std;
// Algoritmo equivalente a sumar 1 a un número en binario
void siguiente(vector<bool>& comb){
bool extra = true;
for (int i=(comb.size()-1); i>= 0; --i){
if (extra){
if (comb[i] == false){
comb[i] = true;
extra = false;
}
else
comb[i] = false;
}
}
}
void siguienteEquilibrado(vector<bool>& comb, unsigned int& t/*trues*/, unsigned int& f/*falses*/, bool& par){
bool extra = true;
for (int i=(comb.size()-1); i>= 0; --i){
if (extra){
if (comb[i] == false){
comb[i] = true;
extra = false;
--f;
++t;
}
else{
comb[i] = false;
++f;
--t;
}
}
}
if (par){
if (t != f)
siguienteEquilibrado(comb, t, f, par);
}
else if ( abs(t-f) > 1){
siguienteEquilibrado(comb, t, f, par);
}
}
// Función que divide en dos equipos, minimizando la diferencia de niveles.
// Parámetros: vector de enteros, los niveles de cada persona.
// Devuelve: vector de bool que indica los equipos
vector<unsigned int> DivideEnDosEquipos(vector<unsigned int> players, unsigned int& dist, bool equillibrados=false){
vector<unsigned int> ret;
vector<bool> teams, bestTeam;
bool ultimaEjecucion = false, par;
unsigned int puntuacion1, puntuacion2; // Valor de cada equipo
unsigned int distancia = 0; // Futura cota cota global del backtracking
unsigned int t, f; // Usados solamente si queremos equipos equillibrados
unsigned int tam = players.size();
unsigned int i, localT, localF;
par = ( tam%2 == 0 );
t = 0;
f = players.size();
teams.reserve(tam);
bestTeam.reserve(tam);
for (i=0; i<tam; ++i){
distancia += players[i];
teams.push_back(false);
bestTeam.push_back(false);
}
// Backtracking, "distancia" ahora mismo es cota superior
while(ultimaEjecucion == false){
ultimaEjecucion = true;
// Comprobamos que no es la última iteración
if (equillibrados == false){
for (i=0; i<tam && ultimaEjecucion; ++i){
if (teams[i] == false)
ultimaEjecucion = false;
}
}
else{
if (par){
for (i=0; i<tam/2 && ultimaEjecucion; ++i){
if (teams[i] == false)
ultimaEjecucion = false;
}
for (i=tam/2; i<tam && ultimaEjecucion; ++i){
if (teams[i] == true)
ultimaEjecucion = false;
}
}
else{
for (i=0; i<(tam/2+1) && ultimaEjecucion; ++i){
if (teams[i] == false)
ultimaEjecucion = false;
}
for (i=(tam/2+1); i<tam && ultimaEjecucion; ++i){
if (teams[i] == true)
ultimaEjecucion = false;
}
}
}
// ------------------------------------------------------
if (!ultimaEjecucion){
puntuacion1 = puntuacion2 = 0;
if (equillibrados == false)
siguiente(teams);
else
siguienteEquilibrado(teams, t, f, par);
for (int i=0; i<teams.size(); ++i){
if( teams[i] )
puntuacion1 += players[i];
else
puntuacion2 += players[i];
}
if (abs(puntuacion1-puntuacion2) < distancia){
distancia = abs(puntuacion1-puntuacion2);
bestTeam = teams;
localT = t;
localF = f;
}
}
}
for (int i=0; i<tam; ++i){
if (bestTeam[i])
ret.push_back( players[i] );
}
dist = distancia;
return ret;
}
int main(int argc, char* argv[]){
if (argc != 3){
std::cerr << "Sintáxis: " << argv[0] << " <número_personas> <1/0(equipos equillibrados)>" <<std::endl;
return -1;
}
bool equillibrados = atoi(argv[2]);
unsigned int n = atoi(argv[1]), distance;
vector<unsigned int> players, teams;
srand(time(0));
for (int i=0; i<n; ++i)
players.push_back( (int) (rand()%1000 +1) );
std::chrono::high_resolution_clock::time_point tantes, tdespues;
std::chrono::duration<double> transcurrido, transcurrido2;
tantes = std::chrono::high_resolution_clock::now();
teams = DivideEnDosEquipos(players, distance, equillibrados);
tdespues = std::chrono::high_resolution_clock::now();
transcurrido = std::chrono::duration_cast<std::chrono::duration<double>>(tdespues - tantes);
std::cout << n << " " << transcurrido.count() << std::endl;
ofstream os("distancia.txt");
os << distance;
os.close();
unsigned int sep = abs( players.size() - 2*teams.size() );
ofstream os2("separacion.txt");
os2 << players.size() <<"-"<<teams.size();
os2.close();
}
|
00bee598706f8bb3cddd93c144c83f1b9e0c63ad | 9d684073707de7b6c1eff7c2f36ef53dd137655d | /qcom-caf/msm8994/display/displayengine/libs/core/res_manager.h | 926b2b79fd37009780ba57feca96994baf73ccff | [] | no_license | segfault2k/stuff | a8f1e5f4a9b023ba3c20b25e28b618dd0d7177b2 | 591a8cd382791c970fc75a41428be76bef98e375 | refs/heads/master | 2023-06-27T21:14:22.355725 | 2021-08-04T22:33:55 | 2021-08-04T22:33:55 | 382,970,191 | 0 | 2 | null | null | null | null | UTF-8 | C++ | false | false | 10,007 | h | res_manager.h | /*
* Copyright (c) 2014 - 2015, The Linux Foundation. All rights reserved.
*
* Redistribution and use in source and binary forms, with or without modification, are permitted
* provided that the following conditions are met:
* * Redistributions of source code must retain the above copyright notice, this list of
* conditions and the following disclaimer.
* * Redistributions in binary form must reproduce the above copyright notice, this list of
* conditions and the following disclaimer in the documentation and/or other materials provided
* with the distribution.
* * Neither the name of The Linux Foundation nor the names of its contributors may be used to
* endorse or promote products derived from this software without specific prior written
* permission.
*
* THIS SOFTWARE IS PROVIDED "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
* LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
* NON-INFRINGEMENT ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE
* FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
* BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS;
* OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
* STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
#ifndef __RES_MANAGER_H__
#define __RES_MANAGER_H__
#include <core/display_interface.h>
#include <utils/locker.h>
#include "hw_interface.h"
#include "dump_impl.h"
#include "buffer_manager.h"
namespace sde {
class ResManager : public DumpImpl {
public:
ResManager();
DisplayError Init(const HWResourceInfo &hw_res_info, BufferAllocator *buffer_allocator,
BufferSyncHandler *buffer_sync_handler);
DisplayError Deinit();
DisplayError RegisterDisplay(DisplayType type, const HWDisplayAttributes &attributes,
Handle *display_ctx);
DisplayError UnregisterDisplay(Handle display_ctx);
DisplayError Start(Handle display_ctx);
DisplayError Stop(Handle display_ctx);
DisplayError Acquire(Handle display_ctx, HWLayers *hw_layers);
DisplayError PostPrepare(Handle display_ctx, HWLayers *hw_layers);
DisplayError PostCommit(Handle display_ctx, HWLayers *hw_layers);
void Purge(Handle display_ctx);
// DumpImpl method
virtual void AppendDump(char *buffer, uint32_t length);
private:
enum PipeId {
kPipeIdVIG0,
kPipeIdVIG1,
kPipeIdVIG2,
kPipeIdRGB0,
kPipeIdRGB1,
kPipeIdRGB2,
kPipeIdDMA0,
kPipeIdDMA1,
kPipeIdVIG3,
kPipeIdRGB3,
kPipeIdMax,
};
enum PipeType {
kPipeTypeUnused,
kPipeTypeVIG,
kPipeTypeRGB,
kPipeTypeDMA,
kPipeTypeMax,
};
enum PipeState {
kPipeStateIdle, // Pipe state when it is available for reservation
kPipeStateAcquired, // Pipe state after successful commit
kPipeStateToRelease, // Pipe state that can be moved to Idle when releasefence is signaled
kPipeStateOwnedByKernel, // Pipe state when pipe is owned by kernel
};
// todo: retrieve all these from kernel
enum {
kMaxSourcePipeWidth = 2048,
kMaxInterfaceWidth = 2048,
kMaxRotateDownScaleRatio = 8,
kMaxNumRotator = 2,
};
struct SourcePipe {
PipeType type;
uint32_t mdss_pipe_id;
uint32_t index;
PipeState state;
HWBlockType hw_block_id;
bool at_right;
uint64_t state_frame_count;
int priority;
HWBlockType reserved_hw_block;
HWBlockType dedicated_hw_block;
SourcePipe() : type(kPipeTypeUnused), mdss_pipe_id(kPipeIdMax), index(0),
state(kPipeStateIdle), hw_block_id(kHWBlockMax), at_right(false),
state_frame_count(0), priority(0), reserved_hw_block(kHWBlockMax),
dedicated_hw_block(kHWBlockMax) { }
inline void ResetState() { state = kPipeStateIdle; hw_block_id = kHWBlockMax;
at_right = false; reserved_hw_block = kHWBlockMax; dedicated_hw_block = kHWBlockMax; }
};
struct DisplayResourceContext {
HWDisplayAttributes display_attributes;
BufferManager *buffer_manager;
DisplayType display_type;
HWBlockType hw_block_id;
uint64_t frame_count;
int32_t session_id; // applicable for virtual display sessions only
uint32_t rotate_count;
bool frame_start;
DisplayResourceContext() : hw_block_id(kHWBlockMax), frame_count(0), session_id(-1),
rotate_count(0), frame_start(false) { }
~DisplayResourceContext() {
if (buffer_manager) {
delete buffer_manager;
buffer_manager = NULL;
}
}
};
struct HWBlockContext {
bool is_in_use;
HWBlockContext() : is_in_use(false) { }
};
struct HWRotator {
uint32_t pipe_index;
HWBlockType writeback_id;
uint32_t client_bit_mask;
uint32_t request_bit_mask;
HWRotator() : pipe_index(0), writeback_id(kHWBlockMax), client_bit_mask(0),
request_bit_mask(0) { }
inline void ClearState(HWBlockType block) { CLEAR_BIT(client_bit_mask, block);
CLEAR_BIT(request_bit_mask, block); }
};
static const int kPipeIdNeedsAssignment = -1;
uint32_t GetMdssPipeId(PipeType pipe_type, uint32_t index);
uint32_t NextPipe(PipeType pipe_type, HWBlockType hw_block_id, bool at_right);
uint32_t SearchPipe(HWBlockType hw_block_id, SourcePipe *src_pipes, uint32_t num_pipe,
bool at_right);
uint32_t GetPipe(HWBlockType hw_block_id, bool is_yuv, bool need_scale, bool at_right,
bool use_non_dma_pipe);
bool IsScalingNeeded(const HWPipeInfo *pipe_info);
DisplayError Config(DisplayResourceContext *display_resource_ctx, HWLayers *hw_layers,
uint32_t *rotate_count);
DisplayError DisplaySplitConfig(DisplayResourceContext *display_resource_ctx,
const LayerTransform &transform, const LayerRect &src_rect,
const LayerRect &dst_rect, HWLayerConfig *layer_config);
DisplayError ValidateScaling(const Layer &layer, const LayerRect &crop,
const LayerRect &dst, float *rot_scale_x, float *rot_scale_y);
DisplayError SrcSplitConfig(DisplayResourceContext *display_resource_ctx,
const LayerTransform &transform, const LayerRect &src_rect,
const LayerRect &dst_rect, HWLayerConfig *layer_config);
void CalculateCut(const LayerTransform &transform, float *left_cut_ratio, float *top_cut_ratio,
float *right_cut_ratio, float *bottom_cut_ratio);
void CalculateCropRects(const LayerRect &scissor, const LayerTransform &transform,
LayerRect *crop, LayerRect *dst);
bool IsValidDimension(const LayerRect &src, const LayerRect &dst);
bool CheckBandwidth(DisplayResourceContext *display_ctx, HWLayers *hw_layers);
float GetPipeBw(DisplayResourceContext *display_ctx, HWPipeInfo *pipe, float bpp);
float GetClockForPipe(DisplayResourceContext *display_ctx, HWPipeInfo *pipe);
float GetOverlapBw(HWLayers *hw_layers, float *pipe_bw, bool left_mixer);
DisplayError SetDecimationFactor(HWPipeInfo *pipe);
float GetBpp(LayerBufferFormat format);
void SplitRect(bool flip_horizontal, const LayerRect &src_rect, const LayerRect &dst_rect,
LayerRect *src_left, LayerRect *dst_left, LayerRect *src_right,
LayerRect *dst_right);
bool IsMacroTileFormat(const LayerBuffer *buffer) { return buffer->flags.macro_tile; }
bool IsYuvFormat(LayerBufferFormat format) { return (format >= kFormatYCbCr420Planar); }
bool IsRotationNeeded(float rotation)
{ return (UINT32(rotation) == 90 || UINT32(rotation) == 270); }
void LogRectVerbose(const char *prefix, const LayerRect &roi);
void RotationConfig(const LayerTransform &transform, const float &scale_x,
const float &scale_y, LayerRect *src_rect,
struct HWLayerConfig *layer_config, uint32_t *rotate_count);
DisplayError AcquireRotator(DisplayResourceContext *display_resource_ctx,
const uint32_t roate_cnt);
void AssignRotator(HWRotateInfo *rotate, uint32_t *rotate_cnt);
void ClearRotator(DisplayResourceContext *display_resource_ctx);
void NormalizeRect(const uint32_t &factor, LayerRect *rect);
DisplayError AllocRotatorBuffer(Handle display_ctx, HWLayers *hw_layers);
void SetRotatorOutputFormat(const LayerBufferFormat &input_format, bool bwc, bool rot90,
LayerBufferFormat *output_format);
template <class T>
inline void Swap(T &a, T &b) {
T c(a);
a = b;
b = c;
}
// factor value should be in powers of 2(eg: 1, 2, 4, 8)
template <class T1, class T2>
inline T1 FloorToMultipleOf(const T1 &value, const T2 &factor) {
return (T1)(value & (~(factor - 1)));
}
template <class T1, class T2>
inline T1 CeilToMultipleOf(const T1 &value, const T2 &factor) {
return (T1)((value + (factor - 1)) & (~(factor - 1)));
}
Locker locker_;
HWResourceInfo hw_res_info_;
HWBlockContext hw_block_ctx_[kHWBlockMax];
SourcePipe src_pipes_[kPipeIdMax];
uint32_t num_pipe_;
SourcePipe *vig_pipes_;
SourcePipe *rgb_pipes_;
SourcePipe *dma_pipes_;
bool frame_start_;
float bw_claimed_; // Bandwidth claimed by other display
float clk_claimed_; // Clock claimed by other display
float last_primary_bw_;
uint32_t virtual_count_;
struct HWRotator rotators_[kMaxNumRotator];
BufferAllocator *buffer_allocator_;
BufferSyncHandler *buffer_sync_handler_; // Pointer to buffer sync handler that was defined by
// the display engine's client
};
} // namespace sde
#endif // __RES_MANAGER_H__
|
5ba00ba966b0d83ea232237fe5b8cb73bb90670b | cd7dcb66400e2ea61c3106c0b98658c4f285207b | /soa/logger/logger_metrics_void.h | 79469b09325f22aae28a1a7420532beb25e28e00 | [
"Apache-2.0"
] | permissive | etnrlz/rtbkit | 3d28b7dc364f8511f76ef38bf38d80272b5b3dc8 | 0d9cd9e2ee2d7580a27453ad0a2d815410d87091 | refs/heads/master | 2023-06-07T11:38:58.184422 | 2019-12-30T16:14:30 | 2019-12-30T16:14:30 | 230,944,269 | 0 | 0 | Apache-2.0 | 2023-08-14T21:35:13 | 2019-12-30T16:10:51 | C++ | UTF-8 | C++ | false | false | 706 | h | logger_metrics_void.h | #pragma once
#include "logger_metrics_interface.h"
namespace Datacratic{
class LoggerMetricsVoid : public ILoggerMetrics{
friend class ILoggerMetrics;
protected:
LoggerMetricsVoid(Json::Value config,
const std::string& coll,
const std::string& appName) : ILoggerMetrics(coll){}
void logInCategory(const std::string&,
const Json::Value&){}
void logInCategory(const std::string& category,
const std::vector<std::string>& path,
const NumOrStr& val){}
const std::string getProcessId() const{ return ""; }
};
}//namespace Datacratic
|
4689be700f0325ed6c3c921476122f3328e9cb6d | a165f7dbed86dbae13d3b409bbf14d678f37c1c4 | /GMM/mapviewer.h | 5867a87796eeb85ce2fc1feb96b169d008be7939 | [
"LicenseRef-scancode-public-domain",
"MIT"
] | permissive | Ador2/gps-denied-geospatial-positioning | a38cd93589e8c794728ac21c2fc7df451c22a59c | 5006b963e0b8fe50b0cabd5e3a9deb6aeb2416f2 | refs/heads/master | 2022-03-03T17:51:47.856407 | 2019-11-11T19:28:48 | 2019-11-11T19:28:48 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 573 | h | mapviewer.h | #pragma once
#include <QMainWindow>
#include "mapwidget.h"
#include "objects.h"
#include "coordinates.h"
namespace Ui {
class MapViewer;
}
class MapViewer : public QMainWindow {
Q_OBJECT
public:
MapViewer (Objects *objects,QWidget *parent = 0);
~MapViewer ();
public:
Objects *objects;
Coordinates *coord;
Objects::tPoint origin;
private slots:
void on_actionCapture_triggered();
private:
void plotPolyline (Objects::tObject *object,QPainter &painter,float width,float height);
Ui::MapViewer *ui;
MapWidget *mapwidget;
};
|
4b8a1898a22cd6b1e8a864e314e1500f5eaf27b6 | 9df24e9110f06ea1004588c87a908c68497b22c0 | /2016/thusc/hihotianzhiyuan.cpp | e3c190b28ea9480b2d151363b2b6c74fc20604e3 | [] | no_license | zhangz5434/code | b98f9df50f9ec687342737a4a2eaa9ef5bbf5579 | def5fdcdc19c01f34ab08c5f27fe9d1b7253ba4f | refs/heads/master | 2020-07-02T17:24:14.355545 | 2019-03-13T12:39:45 | 2019-03-13T12:39:45 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,443 | cpp | hihotianzhiyuan.cpp | #include <iostream>
#include <cstdio>
#include <algorithm>
#include <cstring>
#include <queue>
#include <stack>
using namespace std;
char rd; int pn;
template<typename Type>
inline void read(Type& v)
{
pn=1;
while((rd=getchar())<'0'||rd>'9')
if(rd=='-')
pn=-1;
v=rd-'0';
while((rd=getchar())>='0'&&rd<='9')
v=v*10+rd-'0';
v*=pn;
}
template<typename Type>
inline void out(Type v,bool c=1)
{
if(v==0)
putchar(48);
else
{
if(v<0)
{
putchar('-');
v=-v;
}
int len=0,dg[20];
while(v>0)
{
dg[++len]=v%10;
v/=10;
}
for(int i=len;i>=1;i--)
putchar(dg[i]+48);
}
if(c)
putchar('\n');
else
putchar(' ');
}
const int MAXN=205;
const int MAXM=500;
const int INF=1000005;
struct Edge
{
int to,nxt;
int cap,flow;
Edge()
{
to=nxt=-1;
cap=flow=0;
}
}e[MAXM];
int fisrt[MAXN];
int a,b;
int n,m;
int s,t;
int tot;
inline void Add_Edge(int u,int v,int cap,int flow)
{
e[tot].to=v; e[tot].cap=cap; e[tot].flow=flow;
e[tot].nxt=fisrt[u]; fisrt[u]=tot; tot++;
}
void init()
{
memset(fisrt,-1,sizeof(fisrt));
read(a); read(b);
n=a+b; m=a;
s=0; t=n+1;
int y,l;
for(int i=1;i<=m;i++)
{
read(l);
for(int j=1;j<=l;j++)
{
read(y); y+=a;
Add_Edge(i,y,1,0); Add_Edge(y,i,0,0);
}
}
for(int i=1;i<=a;i++)
{
Add_Edge(s,i,1,0);
Add_Edge(i,s,0,0);
}
for(int i=a+1;i<=n;i++)
{
Add_Edge(i,t,1,0);
Add_Edge(t,i,0,0);
}
}
int d[MAXN],cur[MAXN];
bool vis[MAXN];
queue<int> q;
bool bfs()
{
memset(vis,0,sizeof(vis));
q.push(s); vis[s]=1; d[s]=0;
while(!q.empty())
{
int u=q.front(); q.pop();
for(int i=fisrt[u];i!=-1;i=e[i].nxt)
{
Edge& ec=e[i];
if(!vis[ec.to]&&ec.cap>ec.flow)
{
vis[ec.to]=1;
d[ec.to]=d[u]+1;
q.push(ec.to);
}
}
}
return vis[t];
}
int dfs(int x,int a)
{
if(x==t||a==0) return a;
int flow=0,f;
for(int& i=cur[x];i!=-1;i=e[i].nxt)
{
Edge& ec=e[i];
if(d[x]+1==d[ec.to]&&(f=dfs(ec.to,min(a,ec.cap-ec.flow)))>0)
{
ec.flow+=f;
e[i^1].flow-=f;
flow+=f;
a-=f;
if(a==0)
break;
}
}
return flow;
}
void maxflow()
{
int flow=0;
while(bfs())
{
for(int i=s;i<=t;i++)
cur[i]=fisrt[i];
flow+=dfs(s,INF);
}
out(flow);
}
int main()
{
init();
maxflow();
}
|
d794400d53955c8268e7323ca427a87483716fc0 | 434a5a0b714f6525799f213b5b302c47c705bd9a | /proftree/src/tree.cpp | 3ce64226ea6efad4f80a95555ac0ee6ded14984c | [] | no_license | SebastiaanHoppner/ProfTree | dafc70725430c3b2878742b3a442d1c267120a69 | e2a8f31001002def2cf16e0a752685b3ba2edfb3 | refs/heads/master | 2021-09-22T19:31:56.000036 | 2021-09-20T14:26:36 | 2021-09-20T14:26:36 | 137,753,492 | 8 | 2 | null | null | null | null | UTF-8 | C++ | false | false | 11,229 | cpp | tree.cpp | #include "tree.h"
#include "empChurnCpp.h"
Tree::Tree(int* nInstances, int* nVariables, double** data, int* weights, int *splitV, double *splitP, int** csplit, int* maxCat, int* nNodes, variable** variables, int* maxNode){
// constructor used by crossover
this->nInstances = nInstances;
this->nVariables = nVariables;
this->nNodes = *nNodes;
this->maxNode = maxNode;
this->maxCat = maxCat;
this->splitV = new int[*this->maxNode];
this->splitP = new double[*this->maxNode];
this->variables = variables;
this->nodes = new Node*[*this->maxNode];
this->classification = new int[*this->nInstances];
this->data = data;
this->performance = 999999;
this->csplit = new int*[*this->maxCat];
this->weights = weights;
for (int i = 0; i < *this->maxCat; i++)
this->csplit[i] = new int[(*this->maxNode)];
for (int v = 0; v < *this->maxNode; v++){
for(int i = 0; i < *this->maxCat; i++){
this->csplit[i][v] = csplit[i][v];
}
this->splitV[v] = splitV[v];
this->splitP[v] = splitP[v];
}
for (int nodeNumber = *this->maxNode-1; nodeNumber >= 0; nodeNumber--){
this->nodes[nodeNumber] = NULL;
this->initNode(nodeNumber);
}
} // end Tree
Tree::Tree(int* nInstances, int* nVariables, double** data, int* weights, int* maxCat, variable** variables, int* maxNode, int* minBucket, int* minSplit){
// initializes a tree with a random root node
this->nInstances = nInstances;
this->nVariables = nVariables;
this->nNodes = 1;
this->maxNode = maxNode;
this->maxCat = maxCat;
this->splitV = new int[*this->maxNode];
this->splitP = new double[*this->maxNode];
this->variables = variables;
this->nodes = new Node*[*this->maxNode];
this->classification = new int[*this->nInstances];
this->data = data;
this->performance = 999999;
this->csplit = new int*[*this->maxCat];
this->weights = weights;
for (int i = 0; i < *this->maxCat; i++)
this->csplit[i] = new int[(*this->maxNode)];
for (int v = 0; v < *this->maxNode; v++){
for(int i = 0; i < *this->maxCat; i++){
this->csplit[i][v] = 2;
}
this->splitV[v] = -999999;
this->splitP[v] = -999999;
this->nodes[v] = NULL;
}
this->splitV[0] = Tree::getUnifRandNumber(*this->nVariables-1);
this->nodes[0] = NULL;
this->initNode(0);
if(variables[this->splitV[0]]->isCat == false){
if((this->variables[this->splitV[0]]->nCats-1) > 1)
this->splitP[0] = variables[this->splitV[0]]->sortedValues[getUnifRandNumber(this->variables[this->splitV[0]]->nCats-1)+1];
else
this->splitP[0] = variables[this->splitV[0]]->sortedValues[0];
}else{
this->randomizeCategories(0);
}
for(int i = 0; i <= 5000 && this->predictClass(*minBucket, *minSplit, false, 0) == false; i++){
this->splitV[0] = getUnifRandNumber(*this->nVariables-1);
if(variables[this->splitV[0]]->isCat == false){
if((this->variables[this->splitV[0]]->nCats-1) > 1 )
this->splitP[0] = variables[this->splitV[0]]->sortedValues[getUnifRandNumber(this->variables[this->splitV[0]]->nCats-1)+1];
else
this->splitP[0] = variables[this->splitV[0]]->sortedValues[0];
}else{
this->randomizeCategories(0);
}
if(i == 5000)
this->splitV[0] = -999999;
}
} // end Tree
Tree::~Tree(){
// deconstructor destroys the instance and frees up memory
for (int i = 0; i < *this->maxNode; i++){
delete nodes[i];
}
delete [] nodes;
nodes = NULL;
delete [] classification;
classification = NULL;
delete [] splitP;
splitP = NULL;
delete [] splitV;
splitV = NULL;
for (int i = 0; i < *this->maxCat; i++)
delete [] csplit[i];
delete [] csplit;
csplit = NULL;
variables = NULL;
data = NULL;
maxNode = NULL;
maxCat = NULL;
nInstances = NULL;
nVariables = NULL;
weights = NULL;
} // end ~Tree
int Tree::getUnifRandNumber(int numberDistinctValues){
return ((int)floorf(unif_rand()*((double)numberDistinctValues)))%numberDistinctValues; // % for the case unif_rand gives exactly 1
}
void Tree::initNode(int nodeNumber){
// initializes a node
if(this->splitV[nodeNumber] >= 0 && nodeNumber >= 0 ){
int leftChild = -1;
int rightChild = -1;
// is leaf node?
if( nodeNumber*2+2 < *this->maxNode){
if( (this->splitV[nodeNumber*2+1] ) >= 0 ){
leftChild = nodeNumber*2+1;
}
if( (this->splitV[nodeNumber*2+2]) >= 0){
rightChild = nodeNumber*2+2;
}
}
if( leftChild <= 0 && rightChild <= 0){
this->nodes[nodeNumber] = new Node(nodeNumber, &this->splitV[nodeNumber], &this->splitP[nodeNumber], this->csplit, NULL, NULL,
this->data, this->nInstances, this->nVariables, this->variables);
}else if( leftChild <= 0 ){
this->nodes[nodeNumber] = new Node(nodeNumber, &this->splitV[nodeNumber], &this->splitP[nodeNumber], this->csplit, NULL, this->nodes[rightChild] ,
this->data, this->nInstances, this->nVariables, this->variables);
}else if( rightChild <= 0){
this->nodes[nodeNumber] = new Node(nodeNumber, &this->splitV[nodeNumber], &this->splitP[nodeNumber], this->csplit,this->nodes[leftChild], NULL,
this->data, this->nInstances, this->nVariables, this->variables);
}else{
this->nodes[nodeNumber] = new Node(nodeNumber, &this->splitV[nodeNumber], &this->splitP[nodeNumber],this->csplit, this->nodes[leftChild], this->nodes[rightChild],
this->data, this->nInstances, this->nVariables, this->variables);
}
}else{
this->nodes[nodeNumber] = NULL;
}
} // end initNode
int Tree::predictClass(int minBucket, int minSplit, bool pruneIfInvalid, int nodeNumber){
// calculate predictions
// if pruneIfInvalid == TRUE non-valid nodes a pruned
// otherwise -1 is returned for non-valid nodes
if(nodeNumber == 0){
for(int i = 0; i < *this->nInstances; i++){
this->classification[i] = 0;
}
}else{
this->reverseClassification(nodeNumber, nodeNumber);
}
int returnValue = this->nodes[nodeNumber]->partition( this->classification, this->weights, this->variables, &this->nNodes, minBucket, minSplit);
if(returnValue == -1){
return -1;
}else if(returnValue <= 0 || pruneIfInvalid == false){
return returnValue;
}else{
this->deleteChildNodes(returnValue); // call recursion delete node and everything below it
return predictClass(minBucket, minSplit, true, 0);
}
} // end predictClass
bool Tree::reverseClassification(int startNode, int nodeNumber){
// all observations which are in the subtree below "startNode" are classified to be in node "startNode"
// this saves computation time when the split-rule in startNode is changed. After the call of "reverseClassification" only the instances in
// node "startNode" are newly evaluated. The rest of the tree stays the same.
for(int i = 0; i < *this->nInstances; i++){
if(this->classification[i] == (nodeNumber*2+1) || this->classification[i] == (nodeNumber*2+2) ){
this->classification[i] = startNode;
}
}
if(nodeNumber*2+1 < *this->maxNode){
if(splitV[nodeNumber] >= 0){
reverseClassification(startNode, nodeNumber*2+1);
}
}
if(nodeNumber*2+2 < *this->maxNode){
if(splitV[nodeNumber] >= 0){
reverseClassification(startNode, nodeNumber*2+2);
}
}
return true;
} // end reverseClassification
bool Tree::deleteChildNodes(int nodeNumber){
// used by predictClass() and mutateNode() to delete a child node
if(this->splitV[nodeNumber] >= 0 && nodeNumber > 0){
if(this->nodes[nodeNumber]->leftChild != NULL ){
this->deleteChildNodes(nodeNumber*2+1);
}
if(this->nodes[nodeNumber]->rightChild != NULL ){
this->deleteChildNodes(nodeNumber*2+2);
}
if(nodeNumber%2 == 0){
this->nodes[(int) ((nodeNumber-1)/2)]->rightChild = NULL;
}else{
this->nodes[(int) ((nodeNumber-1)/2)]->leftChild = NULL;
}
this->splitV[nodeNumber] = -999999;
this->splitP[nodeNumber] = -999999;
this->nNodes--;
delete this->nodes[nodeNumber];
this->nodes[nodeNumber] = NULL;
return true;
}else{
// cout << "warning: node could not be deleted " << endl;
return false;
}
} // end deleteChildNodes
void Tree::randomizeCategories(int nodeNumber){
// assigns random categories of a categorical variable
bool left = false;
bool right = false;
for(int i = 0; i < this->variables[ *this->nodes[nodeNumber]->splitV ]->nCats ; i++){
if(i == this->variables[*this->nodes[nodeNumber]->splitV ]->nCats-1 && left == false){
this->csplit[i][nodeNumber] = 1;
}else if(i == this->variables[*this->nodes[nodeNumber]->splitV]->nCats-1 && right == false){
this->csplit[i][nodeNumber] = 3;
}else if(getUnifRandNumber(2) == 1){
this->csplit[i][nodeNumber] = 1;
left = true;
}else{
this->csplit[i][nodeNumber] = 3;
right = true;
}
}
} // end randomizeCategories
bool Tree::calculateTotalCosts(int method, double alpha, double beta, double clv, double d, double f, double lambda, int sumWeights){
// calculates tree quality
IntegerVector nObsClass1PerNode;
IntegerVector nObsPerNode;
calculateAllScores(0, nObsClass1PerNode, nObsPerNode);
std::vector<double> scores_std;
scores_std.reserve(sumWeights);
std::vector<int> classes_std;
classes_std.reserve(sumWeights);
for(int i = 0; i < nObsPerNode.size(); i++){
double scorePerNode_i = nObsClass1PerNode[i] / (double) nObsPerNode[i];
NumericVector vect_score_in_node(nObsPerNode[i], scorePerNode_i);
scores_std.insert(scores_std.end(), vect_score_in_node.begin(), vect_score_in_node.end());
IntegerVector vect_class1_in_node(nObsClass1PerNode[i], 1);
IntegerVector vect_class0_in_node(nObsPerNode[i] - nObsClass1PerNode[i], 0);
classes_std.insert(classes_std.end(), vect_class1_in_node.begin(), vect_class1_in_node.end());
classes_std.insert(classes_std.end(), vect_class0_in_node.begin(), vect_class0_in_node.end());
}
NumericVector scores = wrap(scores_std);
IntegerVector classes = wrap(classes_std);
this->performance = -empChurnCpp(scores, classes, alpha, beta, clv, d, f) + lambda*(this->nNodes+1.0);
return true;
} // end calculateTotalCosts
void Tree::calculateAllScores(int nodeNumber, IntegerVector& nObsClass1PerNode, IntegerVector& nObsPerNode){
// calculates all scores and reports all corresponding classes
if(this->nodes[nodeNumber]->leftChild != NULL){
this->calculateAllScores(nodeNumber*2+1, nObsClass1PerNode, nObsPerNode);
}
if(this->nodes[nodeNumber]->rightChild != NULL){
this->calculateAllScores(nodeNumber*2+2, nObsClass1PerNode, nObsPerNode);
}
if( this->splitV[nodeNumber] >= 0 && this->nodes[nodeNumber]->leftChild == NULL){
this->nodes[nodeNumber]->calculateChildNodeScore(true, this->weights, nObsClass1PerNode, nObsPerNode);
}
if( this->splitV[nodeNumber] >= 0 && this->nodes[nodeNumber]->rightChild == NULL){
this->nodes[nodeNumber]->calculateChildNodeScore(false, this->weights, nObsClass1PerNode, nObsPerNode);
}
} // end calculateAllScores
|
9f48e24e0553ec7b0e386f8e121231a252e2f5b5 | 50cdafece59f39df98500720a3f2ad16feed6c16 | /source/NanairoCore/Material/shader_model.hpp | 4f50dc06661a9dbfb81e6c399b6119ff46ff32e8 | [
"MIT"
] | permissive | alexptss/Nanairo | 9b0dc41b3bac04e71c404c98d15b0c0f3a3c83ad | b96c0fd18078015bccc56ac636bcdfe00bcd4a0c | refs/heads/master | 2021-07-23T08:03:22.167231 | 2017-07-17T10:17:12 | 2017-07-17T10:17:12 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 3,023 | hpp | shader_model.hpp | /*!
\file shader_model.hpp
\author Sho Ikeda
Copyright (c) 2015-2016 Sho Ikeda
This software is released under the MIT License.
http://opensource.org/licenses/mit-license.php
*/
#ifndef NANAIRO_SHADER_MODEL_HPP
#define NANAIRO_SHADER_MODEL_HPP
// Standard C++ library
#include <cstddef>
#include <tuple>
// Nanairo
#include "NanairoCore/nanairo_core_config.hpp"
#include "NanairoCore/Utility/unique_pointer.hpp"
namespace nanairo {
// Forward declaration
//class IntersectionInfo;
class SampledDirection;
class SampledSpectra;
class Sampler;
class SurfaceModel;
class WavelengthSamples;
//! \addtogroup Core
//! \{
/*!
\details
No detailed.
*/
enum class ShaderType : int
{
Diffuse = 0,
Specular,
Glossy
};
/*!
\brief Shader class
\details
No detailed.
*/
class ShaderModel
{
public:
//! Create a shader model
ShaderModel() noexcept;
//! Finalize the shader model
virtual ~ShaderModel() noexcept {}
// Dummy delete function
static void operator delete(void*) noexcept;
//! Dummy new function
static void* operator new(std::size_t, void* memory) noexcept;
//! Evaluate the pdf
virtual Float evalPdf(
const Vector3* vin,
const Vector3* vout,
const Vector3& normal,
const WavelengthSamples& wavelengths) const noexcept;
//! Evaluate the radiance
virtual SampledSpectra evalRadiance(
const Vector3* vin,
const Vector3* vout,
const Vector3& normal,
const WavelengthSamples& wavelengths) const noexcept;
//! Evaluate the radiance and pdf
virtual std::tuple<SampledSpectra, Float> evalRadianceAndPdf(
const Vector3* vin,
const Vector3* vout,
const Vector3& normal,
const WavelengthSamples& wavelengths) const noexcept;
//! Sample a reflection direction and evaluate a reflection weight
virtual std::tuple<SampledDirection, SampledSpectra> sample(
const Vector3* vin,
const Vector3& normal,
const WavelengthSamples& wavelengths,
Sampler& sampler) const noexcept;
//! Return the shader type
virtual ShaderType type() const noexcept = 0;
//! Sample a next direction
// virtual SampledDirection sampleDirection(Sampler& sampler) const = 0;
//! Check if wavelength selection occured
virtual bool wavelengthIsSelected() const noexcept = 0;
};
/*!
\details
No detailed.
*/
class DiffuseShaderModel : public ShaderModel
{
public:
//! Return the diffuse type
ShaderType type() const noexcept override
{
return ShaderType::Diffuse;
}
};
/*!
\details
No detailed.
*/
class SpecularShaderModel : public ShaderModel
{
public:
//! Return the specular type
ShaderType type() const noexcept override
{
return ShaderType::Specular;
}
};
/*!
\details
No detailed.
*/
class GlossyShaderModel : public ShaderModel
{
public:
//! Return the glossy type
ShaderType type() const noexcept override
{
return ShaderType::Glossy;
}
};
//! \} Core
} // namespace nanairo
#endif // NANAIRO_SHADER_MODEL_HPP
|
966de32e17a053af674e81d5589f2b4f375a510e | 301d062acac026572e50c014860fc22de7ef0cfa | /C++/IRPmodel/IRPmodel/Calculations.cpp | 1bed7b8ef6b8e89f9bc048b767e2c54d2f278f03 | [] | no_license | einarea/IRPProject | e4ba3b1214b33eee4ddaadc03a51ab3303ec6866 | b1d1d54bbd6961f11b8a647c2e8df88d4ba3e944 | refs/heads/master | 2021-05-08T17:09:40.322191 | 2018-12-11T15:21:11 | 2018-12-11T15:21:11 | 120,186,698 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 7,200 | cpp | Calculations.cpp | #include "stdafx.h"
#include "Calculations.h"
//test
using namespace DataSets;
Calculations::Calculations(vector<double> *** modelData, int instances, int periods)
:
nInstances(instances),
nPeriods(periods),
nModels(ModelList.size()),
nFields(ContentList.size())
{
//Initialize dataholders
total = new double**[nModels];
totalAvg = new vector<double> *[nModels];
totCostAvg = new double*[nModels];
varTot = new double **[nModels];
var = new double **[nModels];
for (auto i : ModelList) {
total[i] = new double *[nFields];
totalAvg[i] = new vector<double> [nFields];
totCostAvg[i] = new double[nFields];
varTot[i] = new double *[nModels];
var[i] = new double *[nModels];
for (auto j : ContentList) {
totCostAvg[i][j] = 0;
total[i][j] = new double[nPeriods + 1];
totalAvg[i][j].resize(nPeriods + 1);
varTot[i][j] = new double[nPeriods + 1];
var[i][j] = new double[nPeriods + 1];
for (int t = 1; t <= nPeriods; t++) {
total[i][j][t] = 0;
totalAvg[i][j][t] = 0;
varTot[i][j][t] = 0;
var[i][j][t] = 0;
}
}
}
//Initialize cost data
CostData = new double **[CostDataList.size()];
for (auto field : CostDataList) {
CostData[field] = new double *[nPeriods + 2];
for (int t = 1; t <= nPeriods + 1; t++) {
CostData[field][t] = new double[2];
for (auto i : DataTypeList)
CostData[field][t][i] = 0;
}
}
//Initialize routedata
RouteData = new double **[RouteDataList.size()];
for (auto field : RouteDataList) {
RouteData[field] = new double *[nPeriods + 2];
for (int t = 1; t <= nPeriods + 1; t++) {
RouteData[field][t] = new double[2];
for (auto i : DataTypeList)
RouteData[field][t][i] = 0;
}
}
AnalyzeModel(modelData);
}
void Calculations::AnalyzeModel(vector<double> *** & modelData)
{
//Calculate the average over all instances
for (auto model : ModelList)
for (auto field : ContentList) {
double A = 0;
for (int period = 1; period <= nPeriods; period++) {
totalAvg[model][field][period] += getAverage(modelData[model][field][period]);
double a = getAverage(modelData[model][field][period]);
totCostAvg[model][field] += totalAvg[model][field][period];
}
A = totCostAvg[model][field];
int c = 1;
}
//Calculate the sample standard deviation over all instances
/*for (auto model : ModelList)
for (auto field : ContentList)
for (int period = 1; period <= nPeriods; period++)
var[model][field][period] += getStdDev(modelData[model][field][period], totalAvg[model][field][period]);*/
}
double Calculations::getAverage(vector<double> &values)
{
double avg = 0;
for (auto v : values)
avg += v * 1/size(values);
return avg;
}
double Calculations::getStdDev(vector<double> &v, double average = -1)
{
double stdDev = 0;
if (average == -1)
average = getAverage(v);
for (auto val : v)
stdDev = sqrt(pow(val - average, 2) / (v.size() - 1));
return stdDev;
}
double *** Calculations::getRouteInformation()
{
vector<int> RouteSet = { Routes, nNodeVisits, Delivery, Pickup};
for (int t = 1; t <= nPeriods; t++) {
RouteData[nVehicles][t][Average] = totalAvg[Construction][Routes][t] - totalAvg[Exact][Routes][t];
RouteData[nNodes][t][Average] = (totalAvg[Construction][nNodeVisits][t] - totalAvg[Exact][nNodeVisits][t]) / totCostAvg[Exact][nNodeVisits] * 100;
RouteData[dDelivery][t][Average] = (totalAvg[Construction][Delivery][t] - totalAvg[Exact][Delivery][t]) / totCostAvg[Exact][Delivery] * 100;
RouteData[dPickup][t][Average] = (totalAvg[Construction][Pickup][t] - totalAvg[Exact][Pickup][t]) / totCostAvg[Exact][Pickup] * 100;
}
//Calculate the cumulative vehicles
RouteData[nVehicles][nPeriods + 1][Average] = totCostAvg[Construction][Routes] - totCostAvg[Exact][Routes];
RouteData[nNodes][nPeriods + 1][Average] = (totCostAvg[Construction][nNodeVisits]- totCostAvg[Exact][nNodeVisits]) / totCostAvg[Exact][nNodeVisits]*100;
RouteData[dDelivery][nPeriods + 1][Average] = (totCostAvg[Construction][Delivery] - totCostAvg[Exact][Delivery]) / totCostAvg[Exact][Delivery] * 100;
RouteData[dPickup][nPeriods + 1][Average] = (totCostAvg[Construction][Pickup] - totCostAvg[Exact][Pickup]) / totCostAvg[Exact][Pickup] * 100;
return RouteData;
}
double *** Calculations::getCostDistribution()
{
vector <int> CostSet = { HoldingCost, TransCost, Objective };
vector<double> * hold;
vector <double> * trans;
vector <double> * deltaH;
vector<double> * deltaT;
vector<double> * deltaObj;
hold = new vector<double>[nPeriods+1];
trans = new vector<double>[nPeriods+1];
deltaH = new vector<double>[nPeriods+1];
deltaT = new vector<double>[nPeriods+1];
deltaObj = new vector<double>[nPeriods+1];
for (int t = 1; t <= nPeriods; t++) {
hold[t].resize(nInstances);
trans[t].resize(nInstances);
deltaH[t].resize(nInstances);
deltaT[t].resize(nInstances);
deltaObj[t].resize(nInstances);
}
//Calculate cost distribution for each period
for (int t = 1; t <= nPeriods; t++) {
double a = totCostAvg[Exact][Objective];
double b = totalAvg[Exact][HoldingCost][t];
hold[t][Average] = totalAvg[Exact][HoldingCost][t] / totCostAvg[Exact][Objective] * 100;
double c = b / a * 100;
trans[t][Average] = totalAvg[Exact][TransCost][t] / totCostAvg[Exact][Objective] * 100;
deltaH[t][Average] = (totalAvg[Construction][HoldingCost][t] - totalAvg[Exact][HoldingCost][t]) / totCostAvg[Exact][HoldingCost] * 100;
deltaT[t][Average] = (totalAvg[Construction][TransCost][t] - totalAvg[Exact][TransCost][t]) / totCostAvg[Exact][TransCost] * 100;
deltaObj[t][Average] = (totalAvg[Construction][Objective][t] - totalAvg[Exact][Objective][t]) / totCostAvg[Exact][Objective] * 100;
CostData[HoldExact][t][Average] = hold[t][Average];
double d = CostData[HoldExact][t][Average];
CostData[TransExact][t][Average] = trans[t][Average];
CostData[deltaHold][t][Average] = deltaH[t][Average];
CostData[deltaTrans][t][Average] = deltaT[t][Average];
CostData[deltaObjective][t][Average] = deltaObj[t][Average];
}
//Calculate the cumulative cost distribution
double holdTot = totCostAvg[Exact][HoldingCost]/ totCostAvg[Exact][Objective] * 100;
double transTot = totCostAvg[Exact][TransCost] / totCostAvg[Exact][Objective] * 100;
double deltaHTot = (totCostAvg[Construction][HoldingCost] - totCostAvg[Exact][HoldingCost]) / totCostAvg[Exact][HoldingCost] * 100;
double deltaTTot = (totCostAvg[Construction][TransCost] - totCostAvg[Exact][TransCost]) / totCostAvg[Exact][TransCost] * 100;
double deltaObjTot = (totCostAvg[Construction][Objective] - totCostAvg[Exact][Objective]) / totCostAvg[Exact][Objective] * 100;
CostData[HoldExact][nPeriods + 1][Average] = holdTot;
CostData[TransExact][nPeriods + 1][Average] = transTot;
CostData[deltaHold][nPeriods + 1][Average] = deltaHTot;
CostData[deltaTrans][nPeriods + 1][Average] = deltaTTot;
CostData[deltaObjective][nPeriods + 1][Average] = deltaObjTot;
return CostData;
}
Calculations::~Calculations()
{
int a = 1;
}
|
6d1001bc77b0c665bc2d3555afedc48083aec25f | 835d70ab85f87f2d8726122ead36fbc87160d4e6 | /3DPlatform/3dViewer/IniFile.h | b144b110187d405cc51acdc5d975afe969e53b8e | [] | no_license | cczbf/Porting-to-VC-2010 | b26e1d994ec0b0172f91c29a7b497e56c383961a | c314807f87fb29d69c0e17e690ff5ca3eeb7b372 | refs/heads/master | 2021-01-10T13:31:00.776740 | 2015-12-20T06:42:39 | 2015-12-20T06:42:39 | 47,168,852 | 1 | 0 | null | null | null | null | GB18030 | C++ | false | false | 2,084 | h | IniFile.h | //////////////////////////////////////////////////////////////////////////
// File: IniFile.h
// Date: October 2004
// Author: lixiaosan
// Email: airforcetwo@163.com
// Copyright (c) 2004. All Rights Reserved.
// Revised by xiedonghai, 2004,12,2
//////////////////////////////////////////////////////////////////////////
#if !defined(AFX_INIFILE_H__B5C0D7F7_8353_4C93_AAA4_38A688CA253C__INCLUDED_)
#define AFX_INIFILE_H__B5C0D7F7_8353_4C93_AAA4_38A688CA253C__INCLUDED_
#if _MSC_VER > 1000
#pragma once
#endif // _MSC_VER > 1000
class CIniFile
{
public:
CIniFile();
virtual ~CIniFile();
//added by xiedonghai, to add a key to a section
void AddKeyValue(CString strSection, CString strKey, CString value);
// 设置ini文件路径
// 成功返回TRUE;否则返回FALSE
BOOL SetPath(CString strPath);
// 检查section是否存在
// 存在返回TRUE;否则返回FALSE
BOOL SectionExist(CString strSection);
// 从指定的Section和Key读取KeyValue
// 返回KeyValue
CString GetKeyValue(CString strSection,
CString strKey);
// 设置Section、Key以及KeyValue,若Section或者Key不存在则创建
void SetKeyValue(CString strSection,
CString strKey,
CString strKeyValue);
// 删除指定Section下的一个Key
void DeleteKey(CString strSection, CString strKey);
// 删除指定的Section以及其下的所有Key
void DeleteSection(CString strSection);
// 获得所有的Section
// 返回Section数目
int GetAllSections(CStringArray& strArrSection);
// 根据指定Section得到其下的所有Key和KeyValue
// 返回Key的数目
int GetAllKeysAndValues(CString strSection,
CStringArray& strArrKey,
CStringArray& strArrKeyValue);
// 删除所有Section
void DeleteAllSections();
private:
// ini文件路径
CString m_strPath;
};
#endif // !defined(AFX_INIFILE_H__B5C0D7F7_8353_4C93_AAA4_38A688CA253C__INCLUDED_)
|
62e41a4644fe027f320fbb03ee29609e1b4bb794 | 6f874ccb136d411c8ec7f4faf806a108ffc76837 | /code/VCSamples/VC2008Samples/CLR/32to64/32to64/AddArray.cpp | bfbca9bf87c2f22b88a27f268e05942170bb33f6 | [
"MIT"
] | permissive | JetAr/ZDoc | c0f97a8ad8fd1f6a40e687b886f6c25bb89b6435 | e81a3adc354ec33345e9a3303f381dcb1b02c19d | refs/heads/master | 2022-07-26T23:06:12.021611 | 2021-07-11T13:45:57 | 2021-07-11T13:45:57 | 33,112,803 | 8 | 8 | null | null | null | null | UTF-8 | C++ | false | false | 2,760 | cpp | AddArray.cpp | /******************************************************************************
DESCRIPTION: This is the implementation file for the pop up that shows up
when the user clicks Add Element button under the 2D Array tab.
******************************************************************************/
#include "stdafx.h"
#include "AddArray.h"
#include "Error.h"
#include "Form1.h"
using namespace My32to64;
using namespace System::Runtime::InteropServices;
#include "Array2D.h"
extern Array2D* arr;
// This method is called when the user clicks the OK button
System::Void AddArray::button1_Click(System::Object^ , System::EventArgs^ )
{
char* val= NULL;
int row = 0;
int col = 0;
// if the user has entered some input
if(textBox1->Text != "" && textBox2->Text != "" && textBox3->Text != "")
{
try
{
// get the char* version of the string input from the string text box.
val = (char*)(void*)Marshal::StringToHGlobalAnsi(textBox1->Text);
// get the row X col to which the input has to be added.
row = Int32::Parse(textBox2->Text);
col = Int32::Parse(textBox3->Text);
//should call this only if we get good input
if(row < 10 && col < 10)
{
#ifndef _WIN64
arr->addElement((int)val, row, col);
#else
arr->addElement(val, row, col);
#endif
textBox1->Text = "";
textBox2->Text = "";
textBox3->Text = "";
}
else
{
// since the 2D array is a 10 X 10 array, tell the user to enter
// the row and column values to be less than 10.
// This error message shows up only if the user has entered bad input
// in the form of bad row/col
Error^ e = gcnew Error("Enter row and column to be less than 10");
e->ShowDialog(this);
textBox1->Text = "";
textBox2->Text = "";
textBox3->Text = "";
}
}
catch(Exception^)
{
// if the user has entered an invalid input like a string instead of a number
// then give this error message.
Error^ e = gcnew Error("Please enter a number not a string");
e->ShowDialog(this);
textBox1->Text = "";
textBox2->Text = "";
textBox3->Text = "";
}
}
Marshal::FreeHGlobal((IntPtr)val);
// redraw
((My32to64::Form1^)(this->Owner))->drawArray();
}
// if the user has hit close, then just close this pop up
System::Void AddArray::button2_Click(System::Object^ , System::EventArgs^ )
{
Close();
}
|
091140f840070956efea8fc91f441b47bfaf5185 | 67162a8ebac87ea5ec34348673b0c84cbd44d319 | /codeforces/165/A.cpp | 2bb1d46bf320c23b40970d73101a907e92953058 | [] | no_license | salonigupta1/Codeforces | 3a33d00859f2075e780d972c0a41188bd5b081e6 | 7c4a4dd421b0fb33aa908986d58d5137b1f8a8d8 | refs/heads/master | 2023-03-21T05:43:49.157852 | 2021-03-11T16:39:00 | 2021-03-20T18:35:51 | 330,640,118 | 4 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,314 | cpp | A.cpp | #include <iostream>
#include<vector>
using namespace std;
#define OJ \
freopen("input.txt", "r", stdin); \
freopen("output.txt", "w", stdout);
#define FIO \
ios_base::sync_with_stdio(false); \
cin.tie(NULL); \
cout.tie(NULL);
int main()
{
//OJ;
int n;
cin >> n;
vector<pair<int, int>> v(n);
for(int i=0; i<n; i++){
cin >> v[i].first >> v[i].second;
}
int count = 0;
for(int i=0; i<n; i++){
int x = v[i].first;
int y = v[i].second;
bool up = false, down = false, left = false, right = false;
for(int j=0; j<n; j++){
if(i!=j){
if(v[j].first==x){
if(v[j].second < y){
left = true;
} else if(v[j].second > y){
right = true;
}
} else if(v[j].second == y){
if(v[j].first < x){
down = true;
} else if(v[j].first > x){
up = true;
}
}
}
}
if(left && up && down && right){
count++;
}
}
cout << count << endl;
return 0;
} |
d9777eb38e388f8ec373502bee41c6dd877832c9 | 41b46f2caacf2f6800fa47430c8b4ba69960f23c | /src/helpers.h | 2489e7d3f1df30ab059c23574b458afb2785ce86 | [] | no_license | vguerra/CarND-Path-Planning-Project | 7bfcfdced89a622d947d9a51cdfc845cc14bb73a | 90ae12f698696103d4538acee5cd56c24cde6ee8 | refs/heads/master | 2021-01-01T16:03:42.746322 | 2017-09-26T00:36:51 | 2017-09-26T00:36:51 | 97,765,951 | 0 | 0 | null | 2017-07-19T22:18:19 | 2017-07-19T22:18:18 | null | UTF-8 | C++ | false | false | 793 | h | helpers.h | #include <string>
#include <vector>
#include <math.h>
using namespace std;
constexpr double pi() { return M_PI; }
double deg2rad(double x);
double rad2deg(double x);
string hasData(string s);
double distance(double x1, double y1, double x2, double y2);
int ClosestWaypoint(double x, double y, vector<double> maps_x, vector<double> maps_y);
int NextWaypoint(double x, double y, double theta, vector<double> maps_x, vector<double> maps_y);
// Transform from Cartesian x,y coordinates to Frenet s,d coordinates
vector<double> getFrenet(double x, double y, double theta, vector<double> maps_x, vector<double> maps_y);
// Transform from Frenet s,d coordinates to Cartesian x,y
vector<double> getXY(double s, double d, vector<double> maps_s, vector<double> maps_x, vector<double> maps_y);
|
ea6b2eef8a6e92ea546d45684e0a0bb581d66086 | 5af0f801fbe545e559a704795e1c6a826ccb2dfc | /130129_LabExercise15/Histogramm/reader.cpp | c9b67f1efbd5c2c3583a0eab065353207e3b35f2 | [] | no_license | stefankeil/Labs | 18a4d9dc1c91df20c6bdce21f87af57445d20d7e | 7d4fc71c0b1d81215a22fc5872c89bf5df3859fb | refs/heads/master | 2016-09-15T19:07:50.587238 | 2013-02-12T13:47:57 | 2013-02-12T13:47:57 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 486 | cpp | reader.cpp | #include <iostream>
using namespace std;
#include <fstream>
#include "reader.h"
#include "letterCounter.h"
#include "writer.h"
void Clread::read(ifstream &ifs)
{
//try {
Clcounter count;
//ifs.exceptions( std::ios::failbit ); // throw if failbit get set*/
while (ifs.good()) {
ifs.get(letter);
count.sorting(letter);
}
count.counter();
count.vertical();
//} catch( const std::exception & ex ) {
// std::cerr << "Fail - reason is " << ex.what();
// }
}
|
60756ac41aab7d24c8eb704e65ed108698db5c45 | 01e6591e5a01601465d8ae23411d909de0fd57a5 | /media/mojo/services/renderer_config_default.cc | 6a32d2ad2c451667d142b502bf2a1e7188c0afa0 | [
"BSD-3-Clause"
] | permissive | CapOM/chromium | 712a689582c418d15c2fe7777cba06ee2e52a91f | e64bf2b8f9c00e3acb2f55954c36de9f3c43d403 | refs/heads/master | 2021-01-12T22:11:06.433874 | 2015-06-25T23:49:07 | 2015-06-25T23:49:34 | 38,643,354 | 1 | 0 | null | 2015-07-06T20:13:18 | 2015-07-06T20:13:18 | null | UTF-8 | C++ | false | false | 3,646 | cc | renderer_config_default.cc | // Copyright 2014 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "media/mojo/services/renderer_config.h"
#include "base/files/file_path.h"
#include "base/path_service.h"
#include "media/audio/audio_manager_base.h"
#include "media/audio/audio_output_stream_sink.h"
#include "media/audio/fake_audio_log_factory.h"
#include "media/base/media.h"
#include "media/base/null_video_sink.h"
#include "media/filters/opus_audio_decoder.h"
#if !defined(MEDIA_DISABLE_FFMPEG)
#include "media/filters/ffmpeg_audio_decoder.h"
#include "media/filters/ffmpeg_video_decoder.h"
#endif
#if !defined(MEDIA_DISABLE_LIBVPX)
#include "media/filters/vpx_video_decoder.h"
#endif
namespace media {
namespace internal {
class DefaultRendererConfig : public PlatformRendererConfig {
public:
DefaultRendererConfig() {
InitializeMediaLibrary();
// TODO(dalecurtis): We should find a single owner per process for the audio
// manager or make it a lazy instance. It's not safe to call Get()/Create()
// across multiple threads...
//
// TODO(dalecurtis): Eventually we'll want something other than a fake audio
// log factory here too. We should probably at least DVLOG() such info.
AudioManager* audio_manager = AudioManager::Get();
if (!audio_manager)
audio_manager = media::AudioManager::Create(&fake_audio_log_factory_);
audio_hardware_config_.reset(new AudioHardwareConfig(
audio_manager->GetInputStreamParameters(
AudioManagerBase::kDefaultDeviceId),
audio_manager->GetDefaultOutputStreamParameters()));
}
ScopedVector<AudioDecoder> GetAudioDecoders(
const scoped_refptr<base::SingleThreadTaskRunner>& media_task_runner,
const LogCB& media_log_cb) override {
ScopedVector<AudioDecoder> audio_decoders;
#if !defined(MEDIA_DISABLE_FFMPEG)
audio_decoders.push_back(
new FFmpegAudioDecoder(media_task_runner, media_log_cb));
audio_decoders.push_back(new OpusAudioDecoder(media_task_runner));
#endif
return audio_decoders.Pass();
}
ScopedVector<VideoDecoder> GetVideoDecoders(
const scoped_refptr<base::SingleThreadTaskRunner>& media_task_runner,
const LogCB& media_log_cb) override {
ScopedVector<VideoDecoder> video_decoders;
// TODO(dalecurtis): If we ever need GPU video decoders, we'll need to
// figure out how to retrieve the GpuVideoAcceleratorFactories...
#if !defined(MEDIA_DISABLE_LIBVPX)
video_decoders.push_back(new VpxVideoDecoder(media_task_runner));
#endif
#if !defined(MEDIA_DISABLE_FFMPEG)
video_decoders.push_back(new FFmpegVideoDecoder(media_task_runner));
#endif
return video_decoders.Pass();
}
scoped_refptr<AudioRendererSink> GetAudioRendererSink() override {
return new AudioOutputStreamSink();
}
scoped_ptr<VideoRendererSink> GetVideoRendererSink(
const scoped_refptr<base::SingleThreadTaskRunner>& task_runner) override {
return make_scoped_ptr(
new NullVideoSink(false, base::TimeDelta::FromSecondsD(1.0 / 60),
NullVideoSink::NewFrameCB(), task_runner));
}
const AudioHardwareConfig& GetAudioHardwareConfig() override {
return *audio_hardware_config_;
}
private:
FakeAudioLogFactory fake_audio_log_factory_;
scoped_ptr<AudioHardwareConfig> audio_hardware_config_;
DISALLOW_COPY_AND_ASSIGN(DefaultRendererConfig);
};
scoped_ptr<PlatformRendererConfig> CreatePlatformRendererConfig() {
return make_scoped_ptr(new DefaultRendererConfig());
}
} // namespace internal
} // namespace media
|
c355efc85b21ce2f25b945ca06b9a0b9075d23cb | b419009c5356cf98cda92dc6a61aa083ff3dda2a | /src/setup/surface.cpp | 9fcd24d65e2f28cb9ad5598cedc4fc998293e90a | [] | no_license | ZeroDoctor/graphics-engine | 0ea0f9ea72097aced4adcda9613d89700a9819cf | 51c7108feabb6ae2db04aa8760ee792933087f03 | refs/heads/main | 2023-05-01T18:34:01.663727 | 2021-05-18T07:59:59 | 2021-05-18T07:59:59 | 335,445,743 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 6,070 | cpp | surface.cpp | #include "surface.hpp"
VulkanSurface::VulkanSurface(VulkanInstance* instance, WindowSettings settings, uint32_t width, uint32_t height)
{
m_width = width;
m_height = height;
m_instance = instance;
m_settings = settings;
printfi("Setting up Window...\n");
setupWindow();
printfi("Creating Surface...\n");
initSurface();
}
VulkanSurface::~VulkanSurface()
{
if(m_surface != NULL) {
printfi("-- Destroying Surface...\n");
vkDestroySurfaceKHR(m_instance->GetInstance(), m_surface, nullptr);
}
#if defined(VK_USE_PLATFORM_XCB_KHR)
xcb_destroy_window(m_connection, m_window);
if(m_connection != NULL) {
xcb_disconnect(m_connection);
}
#endif
}
void VulkanSurface::MainLoop(VkDevice device, std::function<bool()> func)
{
bool run = true;
#if defined(VK_USE_PLATFORM_XCB_KHR)
if(m_connection == nullptr) {
printfe("XCB connection is null\n");
return;
}
xcb_flush(m_connection);
while(run) {
xcb_generic_event_t* event;
while((event = xcb_poll_for_event(m_connection)))
{
run = handleEvent(event);
free(event);
}
run = func() && run;
if(!run) printfi("WINDOW IS CLOSING...\n");
}
#endif
vkDeviceWaitIdle(device);
}
VkSurfaceKHR VulkanSurface::GetSurface()
{
return m_surface;
}
#if defined(VK_USE_PLATFORM_XCB_KHR)
bool VulkanSurface::handleEvent(const xcb_generic_event_t* event)
{
switch(event->response_type & 0x07f)
{
case XCB_CLIENT_MESSAGE:
if ((*(xcb_client_message_event_t*)event).data.data32[0] ==
(*m_atom_wm_delete_window).atom) {
printf("CLIENT MESSAGE EVENT\n");
return false;
}
break;
case XCB_DESTROY_NOTIFY:
printf("DESTROY NOTIFY EVENT\n");
return false;
break;
case XCB_KEY_PRESS:
{
const xcb_key_release_event_t* press_event = (const xcb_key_release_event_t*) event;
switch(press_event->detail)
{
}
}
break;
case XCB_KEY_RELEASE:
{
const xcb_key_release_event_t* release_event = (const xcb_key_release_event_t*) event;
switch(release_event->detail)
{
case KEY_ESCAPE:
printf("CLIENT ESCAPE RELEASE\n");
return false;
break;
}
}
break;
default:
break;
}
return true;
}
static xcb_intern_atom_reply_t* intern_atom_helper(xcb_connection_t *conn, bool only_if_exists, const char *str)
{
xcb_intern_atom_cookie_t cookie = xcb_intern_atom(conn, only_if_exists, strlen(str), str);
return xcb_intern_atom_reply(conn, cookie, NULL);
}
void VulkanSurface::setupWindow()
{
// * connect to X server
const xcb_setup_t *setup;
xcb_screen_iterator_t iter;
int scr;
m_connection = xcb_connect(NULL, &scr);
assert(m_connection);
if(xcb_connection_has_error(m_connection))
{
printfe("Failed to find a compatible Vulkan ICD! (aka xcb connection failed)");
fflush(stdout);
exit(1);
}
setup = xcb_get_setup(m_connection);
iter = xcb_setup_roots_iterator(setup);
while(scr-- > 0) {
xcb_screen_next(&iter);
}
m_screen = iter.data;
// * generate window
uint32_t value_mask, value_list[32];
m_window = xcb_generate_id(m_connection);
value_mask = XCB_CW_BACK_PIXEL | XCB_CW_EVENT_MASK;
value_list[0] = m_screen->black_pixel;
value_list[1] =
XCB_EVENT_MASK_KEY_RELEASE |
XCB_EVENT_MASK_KEY_PRESS |
XCB_EVENT_MASK_EXPOSURE |
XCB_EVENT_MASK_STRUCTURE_NOTIFY |
XCB_EVENT_MASK_POINTER_MOTION |
XCB_EVENT_MASK_BUTTON_PRESS |
XCB_EVENT_MASK_BUTTON_RELEASE;
if (m_settings.fullscreen)
{
m_width = m_dest_width = m_screen->width_in_pixels;
m_height = m_dest_height = m_screen->height_in_pixels;
}
xcb_create_window(m_connection,
XCB_COPY_FROM_PARENT,
m_window, m_screen->root,
0, 0, m_width, m_height, 0,
XCB_WINDOW_CLASS_INPUT_OUTPUT,
m_screen->root_visual,
value_mask, value_list
);
/* Magic code that will send notification when window is destroyed */
xcb_intern_atom_reply_t* reply = intern_atom_helper(m_connection, true, "WM_PROTOCOLS");
m_atom_wm_delete_window = intern_atom_helper(m_connection, false, "WM_DELETE_WINDOW");
xcb_change_property(m_connection, XCB_PROP_MODE_REPLACE,
m_window, (*reply).atom, 4, 32, 1,
&(*m_atom_wm_delete_window).atom);
std::string windowTitle = m_settings.title;
xcb_change_property(m_connection, XCB_PROP_MODE_REPLACE,
m_window, XCB_ATOM_WM_NAME, XCB_ATOM_STRING, 8,
m_settings.title.size(), windowTitle.c_str());
free(reply);
/**
* Set the WM_CLASS property to display
* title in dash tooltip and application menu
* on GNOME and other desktop environments
*/
std::string wm_class;
std::string name = m_settings.title;
std::transform(name.begin(), name.end(), name.begin(), [](unsigned char c){ return std::tolower(c); });
wm_class = wm_class.insert(0, name);
wm_class = wm_class.insert(name.size(), 1, '\0');
wm_class = wm_class.insert(name.size() + 1, m_settings.title);
wm_class = wm_class.insert(wm_class.size(), 1, '\0');
xcb_change_property(m_connection, XCB_PROP_MODE_REPLACE, m_window, XCB_ATOM_WM_CLASS, XCB_ATOM_STRING, 8, wm_class.size() + 2, wm_class.c_str());
if (m_settings.fullscreen)
{
xcb_intern_atom_reply_t *atom_wm_state = intern_atom_helper(m_connection, false, "_NET_WM_STATE");
xcb_intern_atom_reply_t *atom_wm_fullscreen = intern_atom_helper(m_connection, false, "_NET_WM_STATE_FULLSCREEN");
xcb_change_property(m_connection,
XCB_PROP_MODE_REPLACE,
m_window, atom_wm_state->atom,
XCB_ATOM_ATOM, 32, 1,
&(atom_wm_fullscreen->atom));
free(atom_wm_fullscreen);
free(atom_wm_state);
}
// * display the window
xcb_map_window(m_connection, m_window);
xcb_flush(m_connection);
}
void VulkanSurface::initSurface()
{
VkXcbSurfaceCreateInfoKHR info = init::surface_info(m_connection, m_window);
ErrorCheck(
vkCreateXcbSurfaceKHR(
m_instance->GetInstance(),
&info, nullptr,
&m_surface
), "Create XCB Surface"
);
}
#elif defined(VK_USE_PLATFORM_WIN32_KHR)
void VulkanSurface::SetupWindow()
{
}
void VulkanSurface::InitSurface()
{
}
#endif |
2ebf82f852e0a2b22af33c077f92de1b5380608c | c8bb4cd63e577fadd1dc0ac820be166810d1a148 | /Game/Game/Objects/Bob/BobLink.cpp | f43b016b2136a849c5466d6457ad06fb3aecb0ea | [] | no_license | rodrigobmg/Cloudberry-Kingdom-Port | c2a0aac9c7cb387775f6f00b3b12aae109a7ea39 | 74cd72e29ff5dfd8757d93abc92ed7e48a945fc8 | refs/heads/master | 2021-06-01T06:19:25.283550 | 2016-08-10T01:35:16 | 2016-08-10T01:35:16 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,665 | cpp | BobLink.cpp | #include <small_header.h>
#include "Game/Objects/Bob/BobLink.h"
#include "Game/Objects/Bob/Bob.h"
#include "Game/Player/Hero Physics/Spaceship.h"
#include "Game/Tools/Tools.h"
#include "Game/Level/Level.h"
namespace CloudberryKingdom
{
void BobLink::Release()
{
j.reset();
k.reset();
}
BobLink::BobLink() :
_j( 0 ), _k( 0 ),
L( 0 ), a_in( 0 ), a_out( 0 ), MaxForce( 0 )
{
j = k = 0;
L = 0;
a_out = 0;
////a_in = .005f;
////MaxForce = 5;
a_in = .00525f;
MaxForce = 5.15f;
}
const bool BobLink::getInactive() const
{
// Don't draw the bungee if we are a dead spaceship or if we explode on death and are dead
if ( ( Bob::AllExplode && !Bob::ShowCorpseAfterExplode ) || boost::dynamic_pointer_cast<BobPhsxSpaceship>( j->getCore()->MyLevel->DefaultHeroType ) != 0 && (j->Dead || j->Dying || k->Dead || k->Dying) )
return true;
// Don't draw the bungee if one of the players isn't being drawn.
if ( !j->getCore()->Show || !k->getCore()->Show )
return true;
return false;
}
void BobLink::Draw()
{
if ( getInactive() )
return;
Draw( j->getCore()->Data.Position, k->getCore()->Data.Position );
}
void BobLink::Draw( Vector2 p1, Vector2 p2 )
{
Tools::QDrawer->DrawLine( p1, p2, Color::WhiteSmoke, 15 );
}
void BobLink::PhsxStep( const boost::shared_ptr<Bob> &bob )
{
if ( getInactive() )
return;
float Length = ( j->getCore()->Data.Position - k->getCore()->Data.Position ).Length();
Vector2 Tangent = ( j->getCore()->Data.Position - k->getCore()->Data.Position );
if ( Length < 1 )
Tangent = Vector2();
else
Tangent /= Length;
float Force;
if ( Length < L )
Force = a_out * ( Length - L );
else
Force = a_in * ( Length - L );
if ( fabs( Force ) > MaxForce )
Force = ::Sign( Force ) * MaxForce;
Vector2 Bottom = Vector2::Min( j->getCore()->Data.Position, k->getCore()->Data.Position );
if ( bob->getCore()->Data.Position.Y > Bottom.Y )
Force /= 5;
Vector2 VectorForce = Force * Tangent;
if ( bob == j )
VectorForce *= -1;
Tangent = VectorForce;
Tangent.Normalize();
float v = Vector2::Dot( bob->getCore()->Data.Velocity, Tangent );
if ( v < 25 )
bob->getCore()->Data.Velocity += VectorForce;
}
void BobLink::Connect( const boost::shared_ptr<Bob> &bob1, const boost::shared_ptr<Bob> &bob2 )
{
j = bob1;
k = bob2;
if ( bob1->MyBobLinks.empty() )
bob1->MyBobLinks = std::vector<boost::shared_ptr<BobLink> >();
if ( bob2->MyBobLinks.empty() )
bob2->MyBobLinks = std::vector<boost::shared_ptr<BobLink> >();
bob1->MyBobLinks.push_back( shared_from_this() );
bob2->MyBobLinks.push_back( shared_from_this() );
}
}
|
f8eb0d354b8f72b5c809f5424cecc06097543261 | a7183d3adea2be3707abe23d7d0276405c1e064a | /src/common/reduction/matching/OverlapMatcher.cpp | 6e9bee4151f4a43e5765d21f1fe793d4c466b7c7 | [
"BSD-2-Clause",
"BSD-3-Clause"
] | permissive | ess-dmsc/event-formation-unit | 672fe93e4b885777a7b77cceeee2e0ef4659adce | 7d2e94662bbece96ccb079511030f9a044fbbb5c | refs/heads/master | 2023-09-01T12:31:53.905678 | 2023-08-23T08:34:26 | 2023-08-23T08:34:26 | 80,731,668 | 9 | 9 | BSD-2-Clause | 2023-09-11T09:24:52 | 2017-02-02T14:17:01 | C++ | UTF-8 | C++ | false | false | 1,360 | cpp | OverlapMatcher.cpp | // Copyright (C) 2018 European Spallation Source, ERIC. See LICENSE file
//===----------------------------------------------------------------------===//
///
/// \file OverlapMatcher.h
/// \brief OverlapMatcher class implementation
///
//===----------------------------------------------------------------------===//
#include <algorithm>
#include <cmath>
#include <common/debug/Trace.h>
#include <common/reduction/matching/OverlapMatcher.h>
// #undef TRC_LEVEL
// #define TRC_LEVEL TRC_L_DEB
void OverlapMatcher::match(bool flush) {
unmatched_clusters_.sort([](const Cluster &c1, const Cluster &c2) {
return c1.timeStart() < c2.timeStart();
});
XTRACE(CLUSTER, DEB, "match(): unmatched clusters %u",
unmatched_clusters_.size());
Event evt{PlaneA, PlaneB};
while (!unmatched_clusters_.empty()) {
auto cluster = unmatched_clusters_.begin();
if (!flush && !ready_to_be_matched(*cluster)) {
XTRACE(CLUSTER, DEB, "not ready to be matched");
break;
}
if (!evt.empty() && !evt.timeOverlap(*cluster)) {
XTRACE(CLUSTER, DEB, "no time overlap");
stashEvent(evt);
evt.clear();
}
evt.merge(*cluster);
unmatched_clusters_.pop_front();
}
/// If anything remains
if (!evt.empty()) {
if (flush) {
stashEvent(evt);
} else {
requeue_clusters(evt);
}
}
}
|
2edb55edafca7bfcb358ac8f9f51e458ccbdaa5b | d455184f664bd3b4de645a28672e2b5ee414caab | /projectDNA/Controller/ShowCmd.h | ac5aadd8f8965b4af4d863a2d7af3c99accea8af | [] | no_license | Orly-k/D.N.A-Analyzer-System | 5fc8f37da21b2c048267f20b17dff1997dacafda | 8ad1269fac7b50feebae26bc583d558983673878 | refs/heads/master | 2020-05-05T10:31:21.883538 | 2019-05-18T21:48:29 | 2019-05-18T21:48:29 | 179,949,010 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 383 | h | ShowCmd.h | //
// Created by kierszen on 12/29/18.
//
#ifndef PROJECTDNA_PRINTCMD_H
#define PROJECTDNA_PRINTCMD_H
//#include <tgmath.h>
#include "ICmd.h"
class ShowCmd : public ICmd
{
public:
void help(); //should return a string ??
std::string RunCmd(SharedPtr<DataCollection> &data, std::vector<std::string> arr);
private:
static bool reg;
};
#endif //PROJECTDNA_PRINTCMD_H
|
83e000a8dadd39a4b28a801b751a9f0e79e9c729 | 97eb00d7b35076b1efce57b21ad51636ac2a920c | /training/beginner/71.cpp | 9106e520868abecd1044bedcd15f6c9bda2477b9 | [] | no_license | jimjin73/compro | 43199716dc857f52c10d3237908e70c1801e7fb4 | b194b4414752fff3debc838f4ee70af8e2e43f34 | refs/heads/master | 2021-05-18T01:02:39.338377 | 2020-08-06T12:25:20 | 2020-08-06T12:25:20 | 251,037,702 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 815 | cpp | 71.cpp | #include <bits/stdc++.h>
using namespace std;
typedef long long ll;
ll MOD = 1e9 + 7;
ll N,Q;
ll a[150000];
ll c[150000];
vector<ll> v;
ll powmod(ll a, ll b){
ll ans = 1;
bitset<64> bt(b);
for(int i=0;i<64;i++){
if(bt[i] == 1) ans *= a;
ans %= MOD;
a *= a;
a %= MOD;
}
return ans;
}
int main(){
cin >> N >> Q;
for(int i=0;i<N;i++) cin >> a[i];
c[0] = 1;
for(int i=1;i<=Q;i++) cin >> c[i];
c[Q+1] = 1;
v.push_back(0);
for(int i=1;i<N;i++) v.push_back(powmod(a[i-1],a[i]));
for(int i=1;i<N;i++){
v[i] += v[i-1];
v[i] %= MOD;
}
ll sum = 0;
for(int i=1;i<=Q+1;i++){
sum += (v[max(c[i],c[i-1])-1] - v[min(c[i],c[i-1])-1]) + MOD;
sum %= MOD;
}
cout << sum << endl;
return 0;
} |
35fb07a94c5f54569781fd093efc14916a284678 | 334544c0fe7b153a0668016cb5eda9e50665a2ed | /trabalho_tp1/entidadeLivro.h | e4e1b9080424e867ce75961af6d5facf9bed2842 | [] | no_license | lucasmoutinho/trabalhotp1 | 26b2767c37a40035582f7d73481377eb19072aef | b0a9f5435327e39ff58bb5ff7a4f731301454d59 | refs/heads/master | 2021-01-23T08:34:07.500564 | 2017-11-24T01:43:38 | 2017-11-24T01:43:38 | 102,534,781 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,834 | h | entidadeLivro.h | #ifndef __ENTIDADESLIVRO_H_INCLUDED__
#define __ENTIDADESLIVRO_H_INCLUDED__
#include "dominios.h"
#include "containerResenha.h"
#include <iostream>
#include <list>
#include <string>
#include <stdexcept>
using namespace std;
///Classe que representa a entidade Livro, esta que contém os atributos: título, autor, data, código e gênero.
class Livro
{
private:
Titulo titulo;
Nome autor;
Data data;
Codigo codigo;
Genero genero;
ContainerResenha *resenhas;
public:
Livro();
virtual ~Livro();
void setContainer(ContainerResenha *resenhas){
this->resenhas = resenhas;
}
ContainerResenha* getContainer()
{
return this->resenhas;
}
void setTitulo(string titulo) throw(invalid_argument)
{
///Método responsável por armazenar o título de determinado livro.
///É necessário uma string como entrada e lança uma exceção caso esta não seja válida.
this->titulo.setTitulo(titulo);
}
string getTitulo() const
{
/// Método responsável por retornar o título do livro. Retorna uma string.
return this->titulo.getTitulo();
}
void setAutor(string autor) throw(invalid_argument)
{
///Método responsável por armazenar o autor de determinado livro.
///É necessário uma string como entrada e lança uma exceção caso esta não seja válida.
this->autor.setNome(autor);
}
string getAutor() const
{
/// Método responsável por retornar o autor do livro. Retorna uma string.
return this->autor.getNome();
}
void setData(string data) throw(invalid_argument)
{
///Método responsável por armazenar a data de publicação de determinado livro.
///É necessário uma string como entrada e lança uma exceção caso esta não seja válida.
this->data.setData(data);
}
string getData() const
{
/// Método responsável por retornar a data de publicação do livro. Retorna uma string.
return this->data.getData();
}
void setCodigo(string codigo) throw(invalid_argument)
{
///Método responsável por armazenar o código de determinado livro.
///É necessário uma string como entrada e lança uma exceção caso esta não seja válida.
this->codigo.setCodigo(codigo);
}
string getCodigo() const
{
/// Método responsável por retornar o código do livro. Retorna uma string.
return this->codigo.getCodigo();
}
void setGenero(string genero) throw(invalid_argument)
{
///Método responsável por armazenar o gênero literário de determinado livro.
///É necessário uma string como entrada e lança uma exceção caso esta não seja válida.
this->genero.setGenero(genero);
}
string getGenero() const
{
/// Método responsável por retornar o gênero literário do livro. Retorna uma string.
return this->genero.getGenero();
}
};
#endif |
0fd07f4f8f2739878e4cd7d337f2922cae178a07 | 6ec27c576b2a35f9da21a8674c6f34be90744d3f | /OGL-Test/widget.h | ed4904f167a18cbcbd36264812cfa2fe1a4c2107 | [] | no_license | teraxl/TitanSklad | 645e0c3e67935f7fd4dfe1bf00fe89167a10ff2a | 5ef44b764761ca0a0ba22505676815494a524805 | refs/heads/master | 2022-04-01T00:39:34.085052 | 2020-01-12T01:41:09 | 2020-01-12T01:41:09 | 213,041,308 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,381 | h | widget.h | #ifndef WIDGET_H
#define WIDGET_H
#include <QGLWidget>
#include <QOpenGLWidget>
#include <QMatrix4x4>
#include <QOpenGLShaderProgram>
#include <QOpenGLTexture>
#include <QOpenGLBuffer>
class SimpleObject3D;
class IObjectTransform;
class Group3D;
class Widget : public QOpenGLWidget
{
Q_OBJECT
public:
Widget(QWidget *parent = nullptr);
~Widget();
// QOpenGLWidget interface
protected:
virtual void initializeGL() override;
virtual void resizeGL(int w, int h) override;
virtual void paintGL() override;
void initShaders();
void initCube(float width);
void initPlane(float size);
private:
QMatrix4x4 m_projectionMatrix;
QOpenGLShaderProgram m_programs;
GLfloat m_xRotate;
GLfloat m_yRotate;
QPoint m_ptPosition;
QVector2D m_mousePosition;
QQuaternion m_rotation;
QVector<SimpleObject3D *> m_objects;
QVector<Group3D *> m_groups;
QVector<IObjectTransform *> m_TransformObjects;
float m_z;
// QWidget interface
protected:
virtual void mousePressEvent(QMouseEvent *event) override;
virtual void mouseMoveEvent(QMouseEvent *event) override;
virtual void wheelEvent(QWheelEvent *event) override;
// QWidget interface
protected:
virtual void keyPressEvent(QKeyEvent *event) override;
virtual void keyReleaseEvent(QKeyEvent *event) override;
};
#endif // WIDGET_H
|
f3ac1c95e90350efb5a8bea69844956841b0cde3 | 90e7aa07b71eda4fb1cbf6f25d7395fe5ef25b22 | /include/health_checker_server_class.hpp | a4248e1d8aa3b5679f38cbb549d695324428eaa5 | [] | no_license | Gyro91/Reliable-Service-Framework | 9ac3155c39bf1c2c03afa5a7e2899531897cc052 | f87ca03bed39a1abb9ed86a894252de69ce26fc4 | refs/heads/master | 2021-06-21T20:12:20.254067 | 2017-06-14T07:33:03 | 2017-06-14T07:33:03 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 479 | hpp | health_checker_server_class.hpp |
#ifndef INCLUDE_HEALTH_CHECKER_SERVER_CLASS_HPP_
#define INCLUDE_HEALTH_CHECKER_SERVER_CLASS_HPP_
#include "health_checker_class.hpp"
#define HB_ARGS 2
class HealthCheckerServer: public HealthChecker {
private:
uint8_t server_id;
uint8_t service;
void restart_process();
public:
HealthCheckerServer(pid_t pid, uint16_t port, uint8_t server_id,
uint8_t service);
void step();
~HealthCheckerServer();
};
#endif /* INCLUDE_HEALTH_CHECKER_SERVER_CLASS_HPP_ */
|
1de1b5898314e87e9d8862ac6ead98d4175cb2ea | 2bdfa02e72cd7ee2e8fab3756fb44f02f9b99a55 | /UVa10258.cpp | e2ea3edb810f7df26d9adcdf9452ab3ccc0305c5 | [] | no_license | RuriApoka/UVaOJ | 9f504d4aa6942bf02463cef1926fed9f1b54fd92 | 6ba4554d9d0a2f0765ce9616358870b7401a02d6 | refs/heads/master | 2020-04-05T07:28:01.385488 | 2018-11-09T03:11:49 | 2018-11-09T03:11:49 | 156,676,443 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,763 | cpp | UVa10258.cpp | #define LOCAL
#include <iostream>
#include <cstdio>
#include <cstring>
#include <vector>
#include <string>
#include <sstream>
#include <algorithm>
using namespace std;
const int TEAMS = 101;
const int PROBLEMS = 10;
struct Team {
int solved_problems;
int solved[PROBLEMS];
int unsolved[PROBLEMS];
};
struct Result {
int tid;
int solved;
int times;
Result(int a, int b, int c) : tid(a), solved(b), times(c) {};
};
typedef vector<Result> RankList;
void readLog(Team teams[], int disappear[]);
void computeAns(const Team teams[], RankList& ranklist, const int disappear[]);
inline void printRankList(const RankList& ranklist, int kase);
bool cmp(const Result& lhs, const Result& rhs);
int main() {
#ifdef LOCAL
freopen("input.txt", "r", stdin);
freopen("output.txt", "w", stdout);
#endif // LOCAL
int kase = 0;
Team teams[TEAMS];
RankList ranklist;
ranklist.reserve(TEAMS);
int disappear[TEAMS];
int n;
scanf("%d%*c%*c", &n);
while (n--) {
ranklist.clear();
memset(teams, 0, sizeof(teams));
memset(disappear, 0, sizeof(disappear));
readLog(teams, disappear);
computeAns(teams, ranklist, disappear);
printRankList(ranklist, kase++);
}
return 0;
}
void readLog(Team teams[], int disappear[]) {
int tid, pid, time;
char state;
string str;
stringstream ss;
while (getline(cin, str) && !str.empty()) {
ss.clear();
ss.str(str);
ss >> tid >> pid >> time >> state;
disappear[tid] = 1;
switch (state) {
case 'C':
if (0 == teams[tid].solved[pid]) {
teams[tid].solved_problems++;
teams[tid].solved[pid] = time;
}
break;
case 'I':
if (0 == teams[tid].solved[pid]) {
teams[tid].unsolved[pid]++;
}
break;
default:
break;
}
}
}
void computeAns(const Team teams[], RankList& ranklist, const int disappear[]) {
for (int tid = 1; tid < TEAMS; ++tid) {
if (1 == disappear[tid]) {
int times = 0;
for (int pid = 1; pid < PROBLEMS; ++pid) {
if (0 != teams[tid].solved[pid]) {
times += teams[tid].solved[pid];
times += teams[tid].unsolved[pid] * 20;
}
}
ranklist.push_back(Result(tid, teams[tid].solved_problems, times));
}
}
sort(ranklist.begin(), ranklist.end(), cmp);
}
void printRankList(const RankList& ranklist, int kase) {
if (0 != kase) {
putchar('\n');
}
for (size_t i = 0; i < ranklist.size(); ++i) {
printf("%d %d %d\n", ranklist[i].tid, ranklist[i].solved, ranklist[i].times);
}
}
bool cmp(const Result& lhs, const Result& rhs) {
if (lhs.solved != rhs.solved) {
return lhs.solved > rhs.solved;
}
else if (lhs.times != rhs.times) {
return lhs.times < rhs.times;
}
else {
return (lhs.tid < rhs.tid);
}
} |
bbeb598a0eb4ad5f1269e5479a1b0a2d62adfa8d | 9ca473aa3e562de647d35fff50a66981fde48a21 | /CacheDatabase.cpp | 331b6c0b6ec71227e1df86fa3d5e1f2d806cf348 | [] | no_license | ppolcz/SMOG | e14f67566ae62070cff2f0b1e0ed4c77f65b361f | b1edf04a6b1b5a530e183ccf943402d3a24e0b70 | refs/heads/master | 2020-12-28T21:28:14.975676 | 2013-11-15T14:52:01 | 2013-11-15T14:52:01 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 4,866 | cpp | CacheDatabase.cpp | #include "CacheDatabase.hpp"
// Qt
#include <QSettings>
#include <QDir>
#include <QFileInfo>
#include <QSqlQuery>
#include <QSqlTableModel>
#include <QSqlRecord>
// Tools
#include "log.hpp"
const QString CacheDatabase::CacheTableName = "adaptive_cache";
const QString CacheDatabase::CacheColumnCloudPath = "cloud_path";
const QString CacheDatabase::CacheColumnSegmentBase = "segment_base";
const QString CacheDatabase::CacheColumnMap = "map";
CacheDatabase::CacheDatabase(QObject *parent)
{
// Unused parent
Q_UNUSED(parent);
}
CacheDatabase::~CacheDatabase()
{
closeDB();
}
QString CacheDatabase::getField(const QString &what, const QString &where, const QString &value)
{
// If same return
if(what == where)
return QString::null;
// Create model
QSqlTableModel* model = new QSqlTableModel;
// Set table
model->setTable(CacheTableName);
// Edit stategy
model->setEditStrategy(QSqlTableModel::OnManualSubmit);
// Set filter
model->setFilter(QString("%1='%2'").arg(where, value));
// Run selection
model->select();
// Get record
QSqlRecord record = model->record(0);
// If not empty
if(!record.isEmpty())
// Get value
return record.value(record.indexOf(what)).toString();
// Return result
return QString::null;
}
CacheDatabase &CacheDatabase::getInstance()
{
static CacheDatabase instance;
return instance;
}
bool CacheDatabase::openDB()
{
// Find db driver
mDb = QSqlDatabase::addDatabase("QSQLITE");
// Set path
mDbPath = "tmp/SmogCache.db";
// Setup db
mDb.setDatabaseName(mDbPath);
// Open databse
bool success = mDb.open();
// Log
DBOUT("[CacheDatabase] Open database..." << (success?"DONE":"FAIL"));
// Return success
return success;
}
bool CacheDatabase::prepareDB()
{
// Return value
bool ret = false;
// If the database's opened
if(mDb.isOpen())
{
// Sql query object
QSqlQuery query;
ret = query.exec(QString("CREATE TABLE %1 (%2 TEXT PRIMARY KEY,%3 TEXT,%4 TEXT)").arg(CacheTableName, CacheColumnCloudPath, CacheColumnSegmentBase, CacheColumnMap));
DBOUT("[CacheDatabase] Create table..." << (ret?"DONE":"FAIL"));
}
// Return the result
return ret;
}
int CacheDatabase::insertCacheEntry(const QString &cloud_path, const QString &segment_path, const QString &mapStr)
{
// Return id
int retId = -1;
// If database's open
if(mDb.open())
{
// The query
QSqlQuery query;
// Exec
bool ret = query.exec(QString("INSERT INTO %1 VALUES ('%2','%3','%4')").arg(CacheTableName,cloud_path, segment_path, mapStr));
DBOUT("[CacheDatabase] Insert sql: " << QString("INSERT INTO %1 VALUES ('%2','%3','%4')").arg(CacheTableName,cloud_path, segment_path, mapStr).toStdString());
// If success
if(ret)
{
// Get the id
retId = query.lastInsertId().toInt();
}
DBOUT("[CacheDatabase] Insert cache data..." << (ret?"DONE":"FAIL:") << ": RetId=" << retId);
}
// Return the id
return retId;
}
bool CacheDatabase::updateCacheEntry(const QString &cloud_path, const QString &segment_path, const QString &mapStr)
{
// Query
QSqlQuery query;
// Exec update
bool success = query.exec(QString("UPDATE %1 SET %2='%3',%4='%5' WHERE %6='%7'").arg(CacheTableName, CacheColumnSegmentBase, segment_path, CacheColumnMap, mapStr, CacheColumnCloudPath, cloud_path));
DBOUT("[CacheDatabase] Update sql: " << QString("UPDATE %1 SET %2='%3',%4='%5' WHERE %6='%7'").arg(CacheTableName, CacheColumnSegmentBase, segment_path, CacheColumnMap, mapStr, CacheColumnCloudPath, cloud_path).toStdString());
DBOUT("[CacheDatabase] Update..." << (success?"SUCCESS":"FAIL"));
return success;
}
void CacheDatabase::saveCacheEntry(const QString &cloud_path, const QString &segment_path, const QString &mapStr)
{
if(insertCacheEntry(cloud_path, segment_path, mapStr) == -1)
{
DBOUT("[CacheDatabase] Insert fail -> update");
updateCacheEntry(cloud_path, segment_path, mapStr);
}
}
QString CacheDatabase::getSegmentPath(const QString &cloud_path)
{
return getField(CacheColumnSegmentBase, CacheColumnCloudPath, cloud_path);
}
QString CacheDatabase::getCloudPath(const QString &segment_path)
{
return getField(CacheColumnCloudPath, CacheColumnSegmentBase, segment_path);
}
QString CacheDatabase::getMap(const QString &cloud_path)
{
return getField(CacheColumnMap, CacheColumnCloudPath, cloud_path);
}
void CacheDatabase::closeDB()
{
// Close databse
mDb.close();
}
bool CacheDatabase::deleteDB()
{
// Close database
closeDB();
// Remove file
return QFile::remove(mDbPath);
}
QSqlError CacheDatabase::lastError()
{
return mDb.lastError();
}
|
030c646510ef3a5763495100334559a1392fae07 | c3bdda94a187a0f0842643b146ab212e8fea6287 | /ParalizePro/Auth/sha1.cpp | 5231bb26b9b6a9fdc0d57a9f49e0d6ed84c5d681 | [] | no_license | taxi2za/ParaP | 5795cd124e60226f92926096ee98a16847012f20 | c08652e1fe94e2c3e7e4ea1f8ffdd99b539ad8d2 | refs/heads/master | 2022-11-14T18:43:39.631546 | 2020-07-10T05:30:50 | 2020-07-10T05:30:50 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,043 | cpp | sha1.cpp | #include "./sha1.h"
namespace sha1crypto {
int SHA1::getCipherLen(int len)
{
return 20;
}
void SHA1::reset()
{
sha1.Restart();
}
void SHA1::update(const char * indata, int len)
{
sha1.Update((const unsigned char *)indata, len);
}
int SHA1::final(char * outdata)
{
sha1.Final((unsigned char *)outdata);
return 20;
}
int SHA1::digest(const char * indata, int len, char * outdata)
{
sha1.CalculateDigest((unsigned char *)outdata, (const unsigned char *)indata, len);
return 20;
}
std::string SHA1::to_string(const char * data, int len)
{
std::string buffAsStdStr;
for (int i = 0; i < len; i++)
{
char buff[100];
snprintf(buff, sizeof(100), "%02X", (unsigned char)data[i]);
buffAsStdStr += buff;
}
return buffAsStdStr;
}
std::string SHA1::get_sha1(std::string instr) {
SHA1 sha1;
const char * indata = instr.c_str();
int inlen = (int)strlen(indata);
char * outdata = new char[sha1.getCipherLen(inlen)];
int outlen = sha1.digest(indata, inlen, outdata);
return to_string(outdata, outlen);
}
}
|
e30a486ad1da56eea253f8acef95ea3bd0629b1a | d84398502a058872292d93b9db9ac1d1cd60c092 | /LedControl.h | 3071335088698db54626d8155b5f7bdfdc4830e8 | [] | no_license | davesalomon/arduino-led-control | 901be7e9c54a8c2f8c02b82dfdcc30fc9c3a7e60 | 5d6f36fa9b4e0e3008a42ce37440b9a617647540 | refs/heads/master | 2021-07-06T21:15:02.539444 | 2017-09-26T16:00:59 | 2017-09-29T21:15:54 | 104,877,701 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,110 | h | LedControl.h | /*
LedControl.h - Library for flashing Morse code.
Created by Dave Salomon, September 2017.
Released into the public domain.
https://github.com/davesalomon/arduino-led-control
*/
#ifndef LedControl_h
#define LedControl_h
#include <Arduino.h>
#include <Adafruit_NeoPixel.h>
#ifdef __AVR__
#include <avr/power.h>
#endif
class LedControl
{
public:
LedControl(int, int);
void initialize();
uint32_t color(int, int, int);
void fadeLedTo(int, uint32_t, int, int);
void fadeLedsTo(int[], uint32_t, int, int);
void fadeAllLedsTo(uint32_t, int, int);
uint32_t randomColor();
int selectRandomLed();
void setLedColor(int, uint32_t);
void setLedsColor(int[], uint32_t, int);
void setAllLedsColor(uint32_t);
void update();
uint32_t Color_Red;
uint32_t Color_Green;
uint32_t Color_Blue;
uint32_t Color_Yellow;
uint32_t Color_Purple;
uint32_t Color_Cyan;
uint32_t Color_Off;
uint32_t Color_White;
uint32_t Color_Grey;
int * evenLeds;
int * oddLeds;
private:
Adafruit_NeoPixel strip;
int ledCount;
};
#endif |
bfd9a4566579c4bb4cae3d848ac3de526d4bd76a | 22729f0eb84230e5becbca11fb86707f61f81516 | /unit-tests/utilities/time/test-timer.cpp | 8041e81aa9d1ce268ce5d903a09f466fd1b7152b | [
"GPL-1.0-or-later",
"OFL-1.1",
"GPL-2.0-only",
"GPL-3.0-only",
"BSL-1.0",
"MIT",
"Apache-2.0",
"LGPL-2.1-only",
"LicenseRef-scancode-public-domain",
"Zlib",
"BSD-2-Clause",
"BSD-3-Clause",
"BSD-1-Clause",
"Unlicense"
] | permissive | lips-hci/ae400-realsense-sdk | 742cc375d421ee41c04d1934b5bec23d607f39ed | 2554f30bdcbf71b5b7279fef494176f3fbd6c6c7 | refs/heads/master | 2023-04-27T01:57:34.504808 | 2023-03-21T09:21:34 | 2023-04-13T06:11:17 | 227,797,796 | 9 | 4 | Apache-2.0 | 2023-08-25T07:42:36 | 2019-12-13T08:59:00 | C++ | UTF-8 | C++ | false | false | 1,437 | cpp | test-timer.cpp | // License: Apache 2.0. See LICENSE file in root directory.
// Copyright(c) 2020 Intel Corporation. All Rights Reserved.
// Unit Test Goals:
// Test the timer utility classes: stopwatch, timer, periodic_timer.
//#cmake:add-file ../../../common/utilities/time/timer.h
#include "common.h"
#include "../common/utilities/time/timer.h"
using namespace utilities::time;
// Test description:
// > Test the timer main functions
// > Verify the timer expired only when the timeout is reached.
// > Verify restart process
TEST_CASE( "test timer", "[timer]" )
{
timer t(TEST_DELTA_TIME);
CHECK_FALSE(t.has_expired());
t.start();
CHECK_FALSE(t.has_expired());
std::this_thread::sleep_for(TEST_DELTA_TIME + std::chrono::milliseconds(100));
// test has_expired() function - expect time expiration
CHECK(t.has_expired());
// test start() function and verify expiration behavior
t.start();
CHECK_FALSE(t.has_expired());
std::this_thread::sleep_for(TEST_DELTA_TIME / 2);
// Verify time has not expired yet
CHECK_FALSE(t.has_expired());
std::this_thread::sleep_for(TEST_DELTA_TIME);
// Verify time expired
CHECK(t.has_expired());
}
// Test description:
// Verify the we can force the time expiration
TEST_CASE("Test force time expiration", "[timer]")
{
timer t(TEST_DELTA_TIME);
CHECK_FALSE(t.has_expired());
t.set_expired();
CHECK(t.has_expired());
}
|
3ecb5f6e6c2339d8bfbe6993ebcd572cead4f2e0 | 59c7602220c7616a9f617d7b791ae77ce9bc6255 | /BulletHellByNightOwl/BulletHellByNightOwl/EnemyBase.h | 281744d082d6ecf27e124b1eaebc8d28750250c9 | [] | no_license | HinariYui/BulletHellProject-by-NightOwl | eca03c86541a91140cc02f4fa9693f7977ff0a2b | 3ca2def80a7c2f9fee3126455683cd1423084e45 | refs/heads/master | 2020-04-05T14:56:29.647021 | 2019-05-22T03:40:20 | 2019-05-22T03:40:20 | 150,725,553 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 332 | h | EnemyBase.h | #pragma once
#include "SpriteObject.h"
#include "EnemyBullet.h"
#include "Audio.h"
class EnemyBase :public SpriteObject
{
public:
enum EnemyState
{
MOVE = 0,
ATK,
EXIT
};
EnemyBase(Tag enemy, string fileName, int row, int col);
~EnemyBase();
void update(float deltaTime);
EnemyState state;
float bulletSpeed;
}; |
44cddd52be22d431da94d0f58362e6133a8611a4 | e11b2c12298711ec4c4adf9a2f20eb101f79637c | /adding.cpp | 74a5a3ae227900f6ae11ecd49ff5b8a14d1ab40f | [] | no_license | Atlenna/Adding | cd6d8bf50e39775b93edf277c02a1186e66788fd | 62e7cf350eb342c95f0c47791c8845c0eb64ef3b | refs/heads/master | 2021-05-14T16:42:44.025105 | 2018-01-02T15:05:19 | 2018-01-02T15:05:19 | 116,026,751 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 724 | cpp | adding.cpp | //#include "stdafx.h"
#include<iostream>
using namespace std;
void main()
{
int x,item,price,total=0;
char answer;
do
{
cout<<"Please enter how many items do you want to buy : ";
cin>>item;
for (x=1; x<=item; x++)
{
cout<<"Please enter the price for item "<<x<<": RM ";
cin>>price;
total= total+price;
}
cout<<endl;
cout<<"*********************************************"<<endl<<endl;
cout<<"Please pay RM"<<total<<endl<<endl;
cout<<"*********************************************"<<endl<<endl;
cout<<"Do you want to re-use this system? [Y/N] : ";
cin>>answer;
cout<<endl<<endl<<endl;
}
while (answer=='y' || answer=='Y');
cout<<endl<<endl<<endl;
system ("pause");
} |
11aef745b3412edfaee4c2cda830b2bd92f0c0f6 | a739f928aefc632522946904edab11c418b37800 | /Homework 2/Code/Homework2/storage_manager.h | 1e0ccb427174e166c55697c50cd687b5f99b29ea | [] | no_license | KanaHayama/USC-CSCI561-2020-Spring | 5867018207bf1417db1a8ee17a3eeafd3a11d9bd | 77620d9d6f8e55caf12b1653cf81f7c9a4559e29 | refs/heads/master | 2022-08-14T15:53:35.782304 | 2020-05-21T05:11:58 | 2020-05-21T05:11:58 | 238,593,561 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 3,377 | h | storage_manager.h | //Name: Zongjian Li, USC ID: 6503378943
#pragma once
#include "storage.h"
#if defined(SEARCH_MODE) || defined(INTERACT_MODE)
#include <iomanip>
#endif
template <typename E>
class StorageManager {
private:
const string FilenamePrefix;
array<std::shared_ptr<RecordStorage<E>>, MAX_STEP + 1> Stores;
string Filename(const Step step) {
assert(0 <= step && step <= MAX_STEP);
return FilenamePrefix + std::to_string(step);
}
public:
StorageManager(const string& _filenamePrefix) : FilenamePrefix(_filenamePrefix) {
for (auto i = 0; i <= MAX_STEP; i++) {
Stores[i] = std::make_shared<MemoryRecordStorage<E>>();
}
}
void Serialize() {
#ifdef SEARCH_MODE
array<std::unique_ptr<thread>, MAX_STEP + 1> threads;
for (auto i = 0; i < MAX_STEP + 1; i++) {
threads[i] = std::make_unique<thread>(&RecordStorage<E>::Serialize, Stores[i], Filename(i));
}
for (auto& t : threads) {
t->join();
}
#else
for (auto i = 0; i <= MAX_STEP; i++) {
Stores[i]->Serialize(Filename(i));
}
#endif
}
void Deserialize() {
#ifdef SEARCH_MODE
array<std::unique_ptr<thread>, MAX_STEP + 1> threads;
for (auto i = 0; i < MAX_STEP + 1; i++) {
threads[i] = std::make_unique<thread>(&RecordStorage<E>::Deserialize, Stores[i], Filename(i));
}
for (auto& t : threads) {
t->join();
}
#else
for (auto i = 0; i <= MAX_STEP; i++) {
Stores[i]->Deserialize(Filename(i));
}
#endif
}
inline bool Get(const Step finishedStep, const Board board, E& record) {
return Stores[finishedStep]->Get(board, record);
}
inline void Set(const Step finishedStep, const Board board, const E& record) {
Stores[finishedStep]->Set(board, record);
}
#if defined(SEARCH_MODE) || defined(INTERACT_MODE)
void Report() const {
cout << "Report:" << endl;
for (auto i = 0; i <= MAX_STEP; i++) {
auto& store = *Stores[i];
string type;
switch (store.Type()) {
case RecordStorageType::Cache:
type = "Cache";
break;
case RecordStorageType::Memory:
type = "Memory";
break;
case RecordStorageType::External:
type = "External";
break;
}
cout << "\t" << i;
cout << "\t" << store.size();
#ifdef COLLECT_STORAGE_HIT_RATE
cout << "\t" << std::setprecision(5) << store.HitRate();
#endif
cout << "\t" << type;
cout << "\t" << (store.EnableSerialize ? "Serialize" : "");
cout << endl;
}
}
#endif
void Clear(const Step finishedStep) {// must stop the world
Stores[finishedStep]->Clear();
}
void ClearAll() {
for (auto i = 0; i < MAX_STEP + 1; i++) {
Clear(i);
}
}
void EnableSerialize(const Step finishedStep, const bool flag) {
Stores[finishedStep]->EnableSerialize = flag;
}
bool EnableSerialize(const Step finishedStep) {
return Stores[finishedStep]->EnableSerialize;
}
void SwitchBackend(const Step step, std::shared_ptr<RecordStorage<E>>&& newBackend) {// must stop the world
assert(newBackend != nullptr);
auto& store = Stores[step];
cout << "Switching backend" << endl;
auto filename = Filename(step);
store->Serialize(filename);
store = newBackend;
store->Deserialize(filename);
}
#ifdef COLLECT_STORAGE_HIT_RATE
void ClearAllHitRate() {
for (auto i = 0; i < MAX_STEP + 1; i++) {
Stores[i]->ClearHitRate();
}
}
#endif
}; |
7316a664cc32d52a84c20aa8dc6d4ef945859ea6 | 7ee7445bd2cea7fce4c0cf027d0d1566f35be217 | /src/ACEtk/block/MultiDistributionData/src/verifyDistributionIndex.hpp | c87fd083a9e32ae7da7274335eb6727145d321ba | [
"BSD-2-Clause"
] | permissive | njoy/ACEtk | dad21dd5e8bb5ad4c0928de0b7d6fe7493e35a49 | 172d37583851dc531a31f1a8b140f3d2b9922ee7 | refs/heads/develop | 2023-09-01T00:17:04.898576 | 2023-06-26T22:00:41 | 2023-06-26T22:00:41 | 95,158,830 | 16 | 7 | NOASSERTION | 2023-09-11T19:13:15 | 2017-06-22T21:41:07 | C++ | UTF-8 | C++ | false | false | 468 | hpp | verifyDistributionIndex.hpp | void verifyDistributionIndex( const std::size_t index ) const {
if ( ( index < 1 ) || ( index > this->numberDistributions() ) ) {
Log::error( "Illegal distribution index argument into {} block",
this->name() );
Log::info( "Index value: {}", index );
Log::info( "{} accepts a distribution index between 1 and {} inclusively",
this->name(), this->numberDistributions() );
throw std::out_of_range( this->name() );
}
}
|
e113d8640c8e551c0b96f95ea158f5ad1b6d5efb | ff443629c167f318d071f62886581167c51690c4 | /src/test/blockfilter_tests.cpp | b372f25ea959df3491c916356bbf3c11a8ca4b6c | [
"MIT"
] | permissive | bitcoin/bitcoin | a618b2555d9fe5a2b613e5fec0f4b1eca3b4d86f | 6f03c45f6bb5a6edaa3051968b6a1ca4f84d2ccb | refs/heads/master | 2023-09-05T00:16:48.295861 | 2023-09-02T17:43:00 | 2023-09-02T17:46:33 | 1,181,927 | 77,104 | 33,708 | MIT | 2023-09-14T20:47:31 | 2010-12-19T15:16:43 | C++ | UTF-8 | C++ | false | false | 7,451 | cpp | blockfilter_tests.cpp | // Copyright (c) 2018-2022 The Bitcoin Core developers
// Distributed under the MIT software license, see the accompanying
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
#include <test/data/blockfilters.json.h>
#include <test/util/setup_common.h>
#include <blockfilter.h>
#include <core_io.h>
#include <primitives/block.h>
#include <serialize.h>
#include <streams.h>
#include <undo.h>
#include <univalue.h>
#include <util/strencodings.h>
#include <boost/test/unit_test.hpp>
BOOST_AUTO_TEST_SUITE(blockfilter_tests)
BOOST_AUTO_TEST_CASE(gcsfilter_test)
{
GCSFilter::ElementSet included_elements, excluded_elements;
for (int i = 0; i < 100; ++i) {
GCSFilter::Element element1(32);
element1[0] = i;
included_elements.insert(std::move(element1));
GCSFilter::Element element2(32);
element2[1] = i;
excluded_elements.insert(std::move(element2));
}
GCSFilter filter({0, 0, 10, 1 << 10}, included_elements);
for (const auto& element : included_elements) {
BOOST_CHECK(filter.Match(element));
auto insertion = excluded_elements.insert(element);
BOOST_CHECK(filter.MatchAny(excluded_elements));
excluded_elements.erase(insertion.first);
}
}
BOOST_AUTO_TEST_CASE(gcsfilter_default_constructor)
{
GCSFilter filter;
BOOST_CHECK_EQUAL(filter.GetN(), 0U);
BOOST_CHECK_EQUAL(filter.GetEncoded().size(), 1U);
const GCSFilter::Params& params = filter.GetParams();
BOOST_CHECK_EQUAL(params.m_siphash_k0, 0U);
BOOST_CHECK_EQUAL(params.m_siphash_k1, 0U);
BOOST_CHECK_EQUAL(params.m_P, 0);
BOOST_CHECK_EQUAL(params.m_M, 1U);
}
BOOST_AUTO_TEST_CASE(blockfilter_basic_test)
{
CScript included_scripts[5], excluded_scripts[4];
// First two are outputs on a single transaction.
included_scripts[0] << std::vector<unsigned char>(0, 65) << OP_CHECKSIG;
included_scripts[1] << OP_DUP << OP_HASH160 << std::vector<unsigned char>(1, 20) << OP_EQUALVERIFY << OP_CHECKSIG;
// Third is an output on in a second transaction.
included_scripts[2] << OP_1 << std::vector<unsigned char>(2, 33) << OP_1 << OP_CHECKMULTISIG;
// Last two are spent by a single transaction.
included_scripts[3] << OP_0 << std::vector<unsigned char>(3, 32);
included_scripts[4] << OP_4 << OP_ADD << OP_8 << OP_EQUAL;
// OP_RETURN output is an output on the second transaction.
excluded_scripts[0] << OP_RETURN << std::vector<unsigned char>(4, 40);
// This script is not related to the block at all.
excluded_scripts[1] << std::vector<unsigned char>(5, 33) << OP_CHECKSIG;
// OP_RETURN is non-standard since it's not followed by a data push, but is still excluded from
// filter.
excluded_scripts[2] << OP_RETURN << OP_4 << OP_ADD << OP_8 << OP_EQUAL;
CMutableTransaction tx_1;
tx_1.vout.emplace_back(100, included_scripts[0]);
tx_1.vout.emplace_back(200, included_scripts[1]);
tx_1.vout.emplace_back(0, excluded_scripts[0]);
CMutableTransaction tx_2;
tx_2.vout.emplace_back(300, included_scripts[2]);
tx_2.vout.emplace_back(0, excluded_scripts[2]);
tx_2.vout.emplace_back(400, excluded_scripts[3]); // Script is empty
CBlock block;
block.vtx.push_back(MakeTransactionRef(tx_1));
block.vtx.push_back(MakeTransactionRef(tx_2));
CBlockUndo block_undo;
block_undo.vtxundo.emplace_back();
block_undo.vtxundo.back().vprevout.emplace_back(CTxOut(500, included_scripts[3]), 1000, true);
block_undo.vtxundo.back().vprevout.emplace_back(CTxOut(600, included_scripts[4]), 10000, false);
block_undo.vtxundo.back().vprevout.emplace_back(CTxOut(700, excluded_scripts[3]), 100000, false);
BlockFilter block_filter(BlockFilterType::BASIC, block, block_undo);
const GCSFilter& filter = block_filter.GetFilter();
for (const CScript& script : included_scripts) {
BOOST_CHECK(filter.Match(GCSFilter::Element(script.begin(), script.end())));
}
for (const CScript& script : excluded_scripts) {
BOOST_CHECK(!filter.Match(GCSFilter::Element(script.begin(), script.end())));
}
// Test serialization/unserialization.
BlockFilter block_filter2;
DataStream stream{};
stream << block_filter;
stream >> block_filter2;
BOOST_CHECK_EQUAL(block_filter.GetFilterType(), block_filter2.GetFilterType());
BOOST_CHECK_EQUAL(block_filter.GetBlockHash(), block_filter2.GetBlockHash());
BOOST_CHECK(block_filter.GetEncodedFilter() == block_filter2.GetEncodedFilter());
BlockFilter default_ctor_block_filter_1;
BlockFilter default_ctor_block_filter_2;
BOOST_CHECK_EQUAL(default_ctor_block_filter_1.GetFilterType(), default_ctor_block_filter_2.GetFilterType());
BOOST_CHECK_EQUAL(default_ctor_block_filter_1.GetBlockHash(), default_ctor_block_filter_2.GetBlockHash());
BOOST_CHECK(default_ctor_block_filter_1.GetEncodedFilter() == default_ctor_block_filter_2.GetEncodedFilter());
}
BOOST_AUTO_TEST_CASE(blockfilters_json_test)
{
UniValue json;
if (!json.read(json_tests::blockfilters) || !json.isArray()) {
BOOST_ERROR("Parse error.");
return;
}
const UniValue& tests = json.get_array();
for (unsigned int i = 0; i < tests.size(); i++) {
const UniValue& test = tests[i];
std::string strTest = test.write();
if (test.size() == 1) {
continue;
} else if (test.size() < 7) {
BOOST_ERROR("Bad test: " << strTest);
continue;
}
unsigned int pos = 0;
/*int block_height =*/ test[pos++].getInt<int>();
uint256 block_hash;
BOOST_CHECK(ParseHashStr(test[pos++].get_str(), block_hash));
CBlock block;
BOOST_REQUIRE(DecodeHexBlk(block, test[pos++].get_str()));
CBlockUndo block_undo;
block_undo.vtxundo.emplace_back();
CTxUndo& tx_undo = block_undo.vtxundo.back();
const UniValue& prev_scripts = test[pos++].get_array();
for (unsigned int ii = 0; ii < prev_scripts.size(); ii++) {
std::vector<unsigned char> raw_script = ParseHex(prev_scripts[ii].get_str());
CTxOut txout(0, CScript(raw_script.begin(), raw_script.end()));
tx_undo.vprevout.emplace_back(txout, 0, false);
}
uint256 prev_filter_header_basic;
BOOST_CHECK(ParseHashStr(test[pos++].get_str(), prev_filter_header_basic));
std::vector<unsigned char> filter_basic = ParseHex(test[pos++].get_str());
uint256 filter_header_basic;
BOOST_CHECK(ParseHashStr(test[pos++].get_str(), filter_header_basic));
BlockFilter computed_filter_basic(BlockFilterType::BASIC, block, block_undo);
BOOST_CHECK(computed_filter_basic.GetFilter().GetEncoded() == filter_basic);
uint256 computed_header_basic = computed_filter_basic.ComputeHeader(prev_filter_header_basic);
BOOST_CHECK(computed_header_basic == filter_header_basic);
}
}
BOOST_AUTO_TEST_CASE(blockfilter_type_names)
{
BOOST_CHECK_EQUAL(BlockFilterTypeName(BlockFilterType::BASIC), "basic");
BOOST_CHECK_EQUAL(BlockFilterTypeName(static_cast<BlockFilterType>(255)), "");
BlockFilterType filter_type;
BOOST_CHECK(BlockFilterTypeByName("basic", filter_type));
BOOST_CHECK_EQUAL(filter_type, BlockFilterType::BASIC);
BOOST_CHECK(!BlockFilterTypeByName("unknown", filter_type));
}
BOOST_AUTO_TEST_SUITE_END()
|
dd39827ee1f9b9495a5a19a974ac3a0ef0671278 | e245c0b9e6a011f5017f85a1d144b75f0a2ab376 | /ambarella/oryx/stream/record/filters/avqueue/am_av_queue_builder.cpp | daebcaa9248dfafaabad77aca5f59148cbcaa44a | [] | no_license | EricChen2013/SS001_SDK2.6 | e31172cc2edb6933a6f93d5697dd4df1a7f66f59 | d536bb6cf699b9b4959c0dded6c3ef238668d503 | refs/heads/master | 2016-10-19T04:27:45.668386 | 2016-05-11T03:08:53 | 2016-05-11T03:08:53 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 7,681 | cpp | am_av_queue_builder.cpp | /**
* am_av_queue_builder.cpp
*
* History:
* Dec 31, 2014 - [Shupeng Ren] created file
*
* Copyright (C) 2007-2014, Ambarella, Inc.
*
* All rights reserved. No Part of this file may be reproduced, stored
* in a retrieval system, or transmitted, in any form, or by any means,
* electronic, mechanical, photocopying, recording, or otherwise,
* without the prior consent of Ambarella, Inc.
*/
#include <mutex>
#include <atomic>
#include "am_base_include.h"
#include "am_define.h"
#include "am_log.h"
#include "am_amf_types.h"
#include "am_amf_packet.h"
#include "am_av_queue_builder.h"
#ifndef AUTO_LOCK
#define AUTO_LOCK(mtx) std::lock_guard<std::mutex> lck (mtx)
#endif
AMRingQueue* AMRingQueue::create(uint32_t count, uint32_t size)
{
AMRingQueue *result = new AMRingQueue();
if (result && (result->construct(count, size) != AM_STATE_OK)) {
delete result;
result = nullptr;
ERROR("Failed to construct AMRingQueue error!");
}
return result;
}
AM_STATE AMRingQueue::construct(uint32_t count, uint32_t size)
{
AM_STATE state = AM_STATE_OK;
do {
if ((int)count <= 0 || (int)size <= 0) {
state = AM_STATE_ERROR;
ERROR("Count: %d or size: %d is zero, please check!",
count, size);
break;
}
if (!(m_payload = new ExPayload[count])) {
state = AM_STATE_NO_MEMORY;
ERROR("Failed to new ExPayload!");
break;
}
m_datasize = ROUND_UP(size, 4);
if (!(m_mem = new uint8_t[m_datasize * (count + 1)])) {
state = AM_STATE_NO_MEMORY;
ERROR("Failed to allocate data memory!");
break;
}
m_current = m_mem;
m_mem_end = m_mem + (count + 1) * m_datasize;
m_payload_num = count;
m_free_mem = count * m_datasize;
} while (0);
if (state != AM_STATE_OK) {
if (!m_payload) {
delete[] m_payload;
m_payload = nullptr;
}
if (!m_mem) {
delete[] m_mem;
m_mem = nullptr;
}
}
return state;
}
void AMRingQueue::destroy()
{
delete this;
}
AMRingQueue::AMRingQueue() :
m_mem(nullptr),
m_mem_end(nullptr),
m_current(nullptr),
m_free_mem(0),
m_reserved_mem_size(0),
m_datasize(0),
m_read_pos(0),
m_read_pos_e(0),
m_write_pos(0),
m_payload(nullptr),
m_payload_num(0),
m_in_use_payload_num(0),
m_in_use_payload_num_e(0),
m_readable_payload_num(0),
m_readable_payload_num_e(0)
{
}
AMRingQueue::~AMRingQueue()
{
delete[] m_mem;
delete[] m_payload;
}
void AMRingQueue::write(AMPacket::Payload *payload, queue_mode mode)
{
AUTO_LOCK(m_mutex);
uint8_t *buffer = payload->m_data.m_buffer;
uint32_t size = payload->m_data.m_size;
m_payload[m_write_pos] = *payload;
if (buffer && (size > 0)) {
if (m_current + size > m_mem_end) {
m_free_mem += m_reserved_mem_size;
m_reserved_mem_size = m_mem_end - m_current + 1;
m_free_mem -= m_reserved_mem_size;
m_current = m_mem;
}
memcpy(m_current, buffer, size);
m_payload[m_write_pos].m_data.m_buffer = m_current;
m_current += size;
m_payload[m_write_pos].m_mem_end = m_current - 1;
m_free_mem -= size;
} else {
m_payload[m_write_pos].m_data.m_size = 0;
m_payload[m_write_pos].m_data.m_buffer = nullptr;
}
m_write_pos = (m_write_pos + 1) % m_payload_num;
++m_readable_payload_num;
if (mode == queue_mode::event) {
++m_readable_payload_num_e;
}
}
ExPayload* AMRingQueue::get()
{
AUTO_LOCK(m_mutex);
return (m_payload + m_read_pos);
}
ExPayload* AMRingQueue::event_get()
{
AUTO_LOCK(m_mutex);
return (m_payload + m_read_pos_e);
}
ExPayload* AMRingQueue::event_get_prev()
{
AUTO_LOCK(m_mutex);
return (m_read_pos_e == 0) ?
&m_payload[m_payload_num - 1] :
&m_payload[m_read_pos_e - 1];
}
void AMRingQueue::read_pos_inc(queue_mode mode)
{
AUTO_LOCK(m_mutex);
if (mode == queue_mode::normal) {
++(m_payload[m_read_pos].m_ref);
m_payload[m_read_pos].m_normal_use = true;
m_read_pos = (m_read_pos + 1) % m_payload_num;
--m_readable_payload_num;
++m_in_use_payload_num;
} else {
++m_payload[m_read_pos_e].m_ref;
m_payload[m_read_pos_e].m_event_use = true;
m_read_pos_e = (m_read_pos_e + 1) % m_payload_num;
--m_readable_payload_num_e;
++m_in_use_payload_num_e;
}
}
void AMRingQueue::event_backtrack()
{
AUTO_LOCK(m_mutex);
if (m_read_pos_e == 0) {
m_read_pos_e = m_payload_num - 1;
} else {
--m_read_pos_e;
}
++m_readable_payload_num_e;
}
void AMRingQueue::release(ExPayload *payload)
{
AUTO_LOCK(m_mutex);
if (payload->m_ref.fetch_sub(1) == 1) {
if (payload->m_normal_use) {
payload->m_normal_use = false;
m_free_mem += payload->m_data.m_size;
--m_in_use_payload_num;
}
if (payload->m_event_use) {
payload->m_event_use = false;
--m_in_use_payload_num_e;
}
}
}
void AMRingQueue::drop()
{
AUTO_LOCK(m_mutex);
m_free_mem += m_payload[m_read_pos].m_data.m_size;
m_payload[m_read_pos].m_data.m_size = 0;
m_payload[m_read_pos].m_data.m_buffer = nullptr;
m_read_pos = (m_read_pos + 1) % m_payload_num;
--m_readable_payload_num;
}
void AMRingQueue::reset()
{
m_current = m_mem;
m_free_mem = m_payload_num * m_datasize;
m_reserved_mem_size = 0;
m_readable_payload_num = 0;
m_readable_payload_num_e = 0;
m_read_pos = 0;
m_read_pos_e = 0;
m_write_pos = 0;
m_in_use_payload_num = 0;
m_in_use_payload_num_e = 0;
}
void AMRingQueue::event_reset()
{
m_read_pos_e = m_write_pos;
if (m_read_pos_e > 0) {
--m_read_pos_e;
}
m_readable_payload_num_e = 1;
m_in_use_payload_num_e = 0;
}
bool AMRingQueue::is_in_use()
{
AUTO_LOCK(m_mutex);
return (m_in_use_payload_num + m_in_use_payload_num_e) != 0;
}
bool AMRingQueue::is_full(queue_mode mode, uint32_t payload_size)
{
AUTO_LOCK(m_mutex);
bool ret = false;
int32_t free_mem = m_free_mem;
do {
ret = (mode == queue_mode::event) ?
(m_readable_payload_num_e +
m_in_use_payload_num_e >=
(int32_t)m_payload_num)
:
(m_readable_payload_num +
m_in_use_payload_num >=
(int32_t)m_payload_num);
if (ret) {
break;
}
if (payload_size) {
if (m_current + payload_size > m_mem_end) {
int32_t reserved_mem = m_mem_end - m_current + 1;
free_mem += m_reserved_mem_size - reserved_mem;
}
ret = (free_mem < (int32_t)payload_size ? true : false);
}
} while (0);
return ret;
}
bool AMRingQueue::is_empty(queue_mode mode)
{
AUTO_LOCK(m_mutex);
return (mode == queue_mode::event) ?
(m_readable_payload_num_e == 0) :
(m_readable_payload_num == 0);
}
bool AMRingQueue::about_to_full(queue_mode mode)
{
AUTO_LOCK(m_mutex);
return (mode == queue_mode::event) ?
(m_readable_payload_num_e + m_in_use_payload_num_e >=
(int32_t)m_payload_num * 4 / 5) :
(m_readable_payload_num + m_in_use_payload_num >=
(int32_t)m_payload_num * 4 / 5);
}
bool AMRingQueue::about_to_empty(queue_mode mode)
{
AUTO_LOCK(m_mutex);
return (mode == queue_mode::event) ?
(m_readable_payload_num_e + m_in_use_payload_num_e <=
(int32_t)m_payload_num / 5) :
(m_readable_payload_num + m_in_use_payload_num <=
(int32_t)m_payload_num / 5);
}
bool AMRingQueue::is_event_sync()
{
AUTO_LOCK(m_mutex);
return (m_readable_payload_num >= m_readable_payload_num_e);
}
uint32_t AMRingQueue::get_free_mem_size()
{
AUTO_LOCK(m_mutex);
return m_free_mem;
}
uint32_t AMRingQueue::get_free_payload_num()
{
AUTO_LOCK(m_mutex);
return (m_payload_num -
m_readable_payload_num - m_in_use_payload_num);
}
|
b25780b51a42688489b697a2afd747cfee31a2e8 | 3263d2487af7a58da52ed335df1b8a6f021df453 | /ms3/Workstation.cpp | c09b5b429fdc0545b31436871ad9820dd5334e8e | [] | no_license | RetributionByRevenue/OOP345 | aa8d3c80853144ed84fab6796326a2b924637e9f | 427f1a9d08786b6129645ed7d7bf3888606d89af | refs/heads/master | 2022-12-09T09:11:26.862427 | 2020-09-11T10:55:26 | 2020-09-11T10:55:26 | 299,179,799 | 1 | 0 | null | 2020-09-28T03:44:58 | 2020-09-28T03:44:57 | null | UTF-8 | C++ | false | false | 1,848 | cpp | Workstation.cpp | /**********************************************************
* Name: stephane kamdem kamguia
* Student ID: 135736189
* Milestones: 3
* Seneca email: skamdem-kamguia@myseneca.ca
* Section: NAA
**********************************************************/
#define _CRT_SECURE_NO_WARNINGS
#include <cstring>
#include <iostream>
#include <iomanip>
#include <string>
#include <algorithm>
#include "Utilities.h"
#include "Station.h"
#include "Workstation.h"
using namespace std;
Workstation::Workstation(const std::string& str):Station(str) {
//cout << "set " << getItemName() << " to nullptr" << endl;
m_pNextStation = nullptr;
}
void Workstation::runProcess(std::ostream& os) {
if (m_orders.empty()) {
return;
}
m_orders.front().fillItem(*this, os);
}
bool Workstation::moveOrder() {
if (m_orders.empty()) {
return false;
}
if (m_orders.front().isItemFilled(getItemName()) == true) {
*m_pNextStation += std::move(m_orders.front());
m_orders.pop_front();
return true;
}
else {
return false;
}
}
void Workstation::setNextStation(Workstation& station) {
//cout << "set " << getItemName() << " to new value" << endl;
m_pNextStation = &station;
}
const Workstation* Workstation::getNextStation() const {
return m_pNextStation;
}
bool Workstation::getIfCompleted(CustomerOrder& order) {
if (m_orders.empty()) {
return false;
}
if (m_orders.front().isOrderFilled()) {
order = move(m_orders.front());
m_orders.pop_front();
return true;
}
else {
return false;
}
}
void Workstation::display(std::ostream& os) const{
if (m_pNextStation == nullptr)
os << getItemName() << " --> END OF LINE" << endl;
else
os << getItemName() << " --> " << m_pNextStation->getItemName() <<endl;
}
Workstation& Workstation::operator+=(CustomerOrder&& aa) {
m_orders.push_back(std::move(aa));
return *this;
}
|
ba3c2404f36f2a298ecd40f7e9d806a31dcb1418 | a8afcfc9beb8183b169dea7a63a5aefb7b590bad | /Source/learning_pt0_1/learning_pt0_1GameModeBase.cpp | a3a1c63b56f77fb5d964d0b4551430ab628999e5 | [] | no_license | mahmudzero/ue4_interface_blueprints_and_cpp | 218cae2a94321a27f07fdf4c27c94d49dd7c2dde | 2160004fe565ccfdee5b66bc5cbbad749f277602 | refs/heads/master | 2022-12-18T03:36:07.475900 | 2020-09-18T02:04:32 | 2020-09-18T02:04:32 | 296,174,557 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 94 | cpp | learning_pt0_1GameModeBase.cpp | // Copyright Epic Games, Inc. All Rights Reserved.
#include "learning_pt0_1GameModeBase.h"
|
899f9a7ede2fdeabfc23c3fcf7f337ee6ff4d4e5 | acdedc0b0dba0b957ade171e8a50614ce6998ec7 | /3-20/miaoz/3.cpp | e17be64e592dd3ff9e5f3aa9b06707c0347af8be | [] | no_license | miaozasanynoe/Rush_Code | 6b412d43ca7573c81f6961ddf2d5e552b4e0e8ee | 7c189dff10a77a723547bd607ae5fbb88e46a01a | refs/heads/master | 2021-03-28T17:28:51.971411 | 2020-03-23T12:50:52 | 2020-03-23T12:50:52 | 247,881,385 | 3 | 1 | null | null | null | null | UTF-8 | C++ | false | false | 465 | cpp | 3.cpp | class Solution {
public:
int inf=-0x7f7f7f7f;
int maxProfit(vector<int>& prices) {
int dp[2][2]={0,prices.empty()?0:0-prices[0],inf,inf};
for(int i=1;i<prices.size();i++){
dp[1][0]=max(dp[1][0],dp[1][1]+prices[i]);
dp[1][1]=max(dp[1][1],dp[0][0]-prices[i]);
dp[0][0]=max(dp[0][0],dp[0][1]+prices[i]);
dp[0][1]=max(dp[0][1],-prices[i]);
}
return max(dp[0][0],dp[1][0]);
}
}; |
d25e2f4cb710e5d039bfc1283ccf7f0a7a42c97a | cce1f86e49ff3935f6add4f383beb78ad829e1d8 | /CMS/GuidoCMS/controlext/standertextedit.h | 37ecdd4506b1b80bda059f8257ba93db76170072 | [] | no_license | GuidoLuo0521/Projects | d25a46b12d9a24446be2066ce15867cd3abf8f5e | 9eab2c9a06d43bb58d33e14d2c66217f38a2c0b1 | refs/heads/master | 2023-08-12T13:27:15.825581 | 2021-09-22T08:50:44 | 2021-09-22T08:50:44 | 375,923,550 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 859 | h | standertextedit.h | #ifndef STANDERTEXTEDIT_H
#define STANDERTEXTEDIT_H
#include "controlext/standerinputstructer.h"
#include <QLabel>
#include <QPlainTextEdit>
#include <QTextEdit>
class StanderPlainTextEdit : public StanderInputStructer
{
Q_OBJECT
public:
StanderPlainTextEdit(
const QString& label,
const QString& text,
const Qt::Orientation orient = Qt::Horizontal);
QString Text() const;
QPlainTextEdit * TextEdit() const;
private:
QPlainTextEdit * m_pTextEdit;
};
class StanderRichTextEdit : public StanderInputStructer
{
Q_OBJECT
public:
StanderRichTextEdit(
const QString& label,
const QString& text,
const Qt::Orientation orient = Qt::Horizontal);
QString Text() const;
QTextEdit * TextEdit() const;
private:
QTextEdit * m_pTextEdit;
};
#endif // STANDERPLAINTEXTEDIT_H
|
632824de0b51ab8cc45ea8996d5470cb7ad13ffd | 8f0024332ed057fa818c75245c93d6d5bdbd4054 | /98.Managers/02.SceneMgr/00.Scene/00.Logo/Logo.cpp | 220649c9471b47d1f8fc3bed99a0dfa630e19ce5 | [] | no_license | js7217/DX9_2D_TalesWeaver | 44b81ddb80bf5a6b84f9afc839ab60e81817b7fe | 670a7da3e384689e6e21033cc23b51f88d107120 | refs/heads/master | 2021-05-19T07:14:13.082978 | 2020-03-31T11:23:11 | 2020-03-31T11:23:11 | 251,580,782 | 0 | 0 | null | null | null | null | WINDOWS-1252 | C++ | false | false | 2,742 | cpp | Logo.cpp | #include "stdafx.h"
#include "Logo.h"
#include "LoadingBar.h"
CLogo::CLogo()
{
}
CLogo::~CLogo()
{
Release();
}
void CLogo::Update()
{
int iCount = CTextureMgr::GetInstance()->GetLoadingCount();
dynamic_cast<CLoadingBar*>(m_pLoadingBar)->Set_BarGauge(iCount);
m_pLoadingBar->Update();
}
void CLogo::LateUpdate()
{
if (GetAsyncKeyState(VK_RETURN) & 0x8000)
{
WaitForSingleObject(m_hLoadingThread, INFINITE);
m_pSceneMgr->SceneChange(CScene::MENU);
return;
}
m_pLoadingBar->LateUpdate();
}
void CLogo::Render()
{
D3DXMATRIX matWorld;
const wstring& wstrMessage = CTextureMgr::GetInstance()->GetLoadingMessage();
D3DXMatrixTranslation(&matWorld, 0.f, 0.f, 0.f);
const TEX_INFO* pTexInfo = CTextureMgr::GetInstance()->GetTexInfo(L"Logo");
NULL_CHECK(pTexInfo);
CGraphicDev::GetInstance()->GetSprite()->SetTransform(&matWorld);
CGraphicDev::GetInstance()->GetSprite()->Draw(pTexInfo->pTexture, nullptr,
nullptr, nullptr, D3DCOLOR_ARGB(255, 255, 255, 255));
D3DXMatrixTranslation(&matWorld, 0.f, 550.f, 0.f);
CGraphicDev::GetInstance()->GetSprite()->SetTransform(&matWorld);
CGraphicDev::GetInstance()->GetFont()->DrawText(
CGraphicDev::GetInstance()->GetSprite(),
wstrMessage.c_str(), wstrMessage.length(), nullptr, 0, D3DCOLOR_ARGB(255, 0, 255, 0));
m_pLoadingBar->Render();
}
void CLogo::LineRender()
{
}
HRESULT CLogo::Initialize()
{
HRESULT hr = CTextureMgr::GetInstance()->InsertTexture(CTextureMgr::TEX_MULTI,
L"../Texture/Loading/Loading%d.png", L"Loading", L"NONE", 2);
FAILED_CHECK_RETURN(hr, E_FAIL);
hr = CTextureMgr::GetInstance()->InsertTexture(CTextureMgr::TEX_MULTI,
L"../Texture/Logo0.png", L"Logo", L"NONE", 1);
FAILED_CHECK_RETURN(hr, E_FAIL);
m_pLoadingBar = CLoadingBar::Create(0.f, 455.f);
InitializeCriticalSection(&m_CriticalSec);
m_hLoadingThread = (HANDLE)_beginthreadex(nullptr, 0, LoadingResource, this, 0, nullptr);
return S_OK;
}
void CLogo::Release()
{
SafeDelete(m_pLoadingBar);
DeleteCriticalSection(&m_CriticalSec);
CloseHandle(m_hLoadingThread);
}
CLogo * CLogo::Create()
{
CLogo* pInstance = new CLogo;
if (FAILED(pInstance->Initialize()))
{
SafeDelete(pInstance);
return nullptr;
}
return pInstance;
}
unsigned int CLogo::LoadingResource(void * pParam)
{
CLogo* pLogo = reinterpret_cast<CLogo*>(pParam);
EnterCriticalSection(&pLogo->m_CriticalSec);
// Texture Load
HRESULT hr = CTextureMgr::GetInstance()->LoadFromImgPath(L"../Data/ImgPath.txt");
FAILED_CHECK_RETURN(hr, 1);
CTextureMgr::GetInstance()->SetLoadingMessage(L"·Îµù ¿Ï·á!");
LeaveCriticalSection(&pLogo->m_CriticalSec);
return 0;
}
|
18088bc1ecd1bf94516ce957dd3dc2d7e481b0ab | 0846b53e3e2c3364cbd053cc384cb96164264202 | /103-09.cpp | 9c4edb248a208caaa18b2410975f41e2e931c8d6 | [] | no_license | aluxian/high-school-cpp | f2a9d572524ec356eeb4908178ee2ec7ce38ef01 | d138cad0167d89473fc03b2b7a4ead54649f5bad | refs/heads/master | 2021-06-23T04:45:57.148113 | 2017-08-27T09:46:35 | 2017-08-27T09:46:35 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 187 | cpp | 103-09.cpp | #include <iostream>
using namespace std;
int main()
{
int x = 12,
y = 23,
s = 0;
if (x%2 != 0)
x++;
for (int i = x; i <= y; i+=2)
s+=i;
cout << s;
cin >> x;
return 0;
} |
d8164a95f22335d178fdf74390cf6e29637818ae | ddc8b0efad771ab9c06e48a25b8102a462159e77 | /1070 - Algebraic Problem.cpp | 7277a51c0def521d6e6fe051477a8fd08b0ee7e4 | [] | no_license | fuad7161/LightOJ-Solutions | 92dc0a232665d3e63e96473571a717e57e6d0552 | ed2699d5b547541e3ed83f39abd282f319132334 | refs/heads/master | 2023-03-15T14:26:02.611110 | 2017-12-04T08:08:36 | 2017-12-04T08:08:36 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,961 | cpp | 1070 - Algebraic Problem.cpp | #include <stdio.h>
#include <climits>
#include <iostream>
#include <map>
#include <cmath>
#include <algorithm>
#include <set>
#include <stack>
#include <deque>
#include <vector>
#include <stdlib.h>
#include <string>
#include <string.h>
#include <utility>
#include <queue>
using namespace std;
#define ll unsigned long long
#define sl(n) scanf("%llu", &n)
#define sf(n) scanf("%lf", &n)
#define si(n) scanf("%d", &n)
#define ss(n) scanf("%s", n)
#define pii pair <int, int>
#define pll pair <long long, long long>
#define pb push_back
ll A[2][2], res[2][2], temp[2][2];
void pwr(ll n)
{
ll i, j, k, s;
if (n == 0)
{
res[0][0] = 1, res[0][1] = 0;
res[1][0] = 0, res[1][1] = 1;
return ;
}
pwr(n/2);
// cout << "n is " << n << endl;
// for (i = 0; i < 2; i++)
// for (j = 0; j < 2; j++)
// printf("%llu ", res[i][j]);
// cout << "\n";
if (n%2 == 0)
{
temp[0][0] = res[0][0];
temp[0][1] = res[0][1];
temp[1][0] = res[1][0];
temp[1][1] = res[1][1];
for (i = 0; i < 2; i++)
for (j = 0; j < 2; j++)
{
s = 0;
for (k = 0; k < 2; k++)
{
s += temp[i][k]*temp[k][j];
}
res[i][j] = s;
}
}
else
{
temp[0][0] = res[0][0];
temp[0][1] = res[0][1];
temp[1][0] = res[1][0];
temp[1][1] = res[1][1];
for (i = 0; i < 2; i++)
for (j = 0; j < 2; j++)
{
s = 0;
for (k = 0; k < 2; k++)
{
s += temp[i][k]*temp[k][j];
}
res[i][j] = s;
}
temp[0][0] = res[0][0];
temp[0][1] = res[0][1];
temp[1][0] = res[1][0];
temp[1][1] = res[1][1];
for (i = 0; i < 2; i++)
for (j = 0; j < 2; j++)
{
s = 0;
for (k = 0; k < 2; k++)
{
s += temp[i][k]*A[k][j];
}
res[i][j] = s;
}
}
}
int main ()
{
// freopen("inl.txt", "r", stdin);
// freopen("outu.txt", "w", stdout);
// ios_base::sync_with_stdio(0); // no printf/scanf must be present
ll cs, t, i, j, k, n, x, y, z, ans, p, q, m;
sl(t);
long long nen;
for (cs = 1; cs <= t; cs++)
{
sl(p);
sl(q);
sl(n);
// cout << p << endl;
if (n == 0)
ans = 2;
else if (n == 1)
ans = p;
else
{
nen = q;
nen *= -1;
q = nen;
A[0][0] = p;
A[0][1] = q;
A[1][0] = 1;
A[1][1] = 0;
pwr(n-1);
ans = res[0][0]*p + res[0][1]*2;
}
printf("Case %llu: %llu\n", cs, ans);
}
return 0;
}
|
17aa9820c4f29195929097c28fd31c0f168d5d34 | c4e0c74f0d2ca455d8bdb80cf011813349f3501e | /kernel/vds_data/deflate_p.h | ed9036fe16134f13c92c2eda48eccf832400d5bb | [
"MIT"
] | permissive | praveenmunagapati/vds | dd5749830619f09f9d745cd3187efbd218b66b14 | 875b8904e8706ab6b9e078f017f037e60a8f8d74 | refs/heads/master | 2021-01-01T06:12:45.809178 | 2017-07-16T09:22:03 | 2017-07-16T09:22:03 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,303 | h | deflate_p.h | #ifndef __VDS_DATA_DEFLATE_P_H_
#define __VDS_DATA_DEFLATE_P_H_
/*
Copyright (c) 2017, Vadim Malyshev, lboss75@gmail.com
All rights reserved
*/
#include "zlib.h"
#include "deflate.h"
namespace vds {
class _deflate_handler
{
public:
_deflate_handler(int compression_level)
: state_(StateEnum::STATE_NORMAL)
{
memset(&this->strm_, 0, sizeof(z_stream));
if (Z_OK != deflateInit(&this->strm_, compression_level)) {
throw std::runtime_error("deflateInit failed");
}
}
void update_data(
const void * input_data,
size_t input_size,
void * output_data,
size_t output_size,
size_t & readed,
size_t & written)
{
if(StateEnum::STATE_EOF == this->state_){
deflateEnd(&this->strm_);
if(0 != input_size){
throw std::runtime_error("Logic error");
}
readed = 0;
written = 0;
}
else {
if(StateEnum::STATE_NORMAL == this->state_){
this->strm_.next_in = (Bytef *)input_data;
this->strm_.avail_in = (uInt)input_size;
if(0 == input_size){
this->state_ = StateEnum::STATE_EOF_PENDING;
}
else {
this->state_ = StateEnum::STATE_PUSH;
}
}
this->strm_.next_out = (Bytef *)output_data;
this->strm_.avail_out = output_size;
auto error = ::deflate(&this->strm_, (0 == input_size) ? Z_FINISH : Z_NO_FLUSH);
if(Z_STREAM_ERROR == error){
throw std::runtime_error("zlib error");
}
written = output_size - this->strm_.avail_out;
if (0 == this->strm_.avail_out) {
readed = 0;
}
else {
readed = input_size;
if(this->strm_.avail_in != 0){
throw std::runtime_error("zlib error");
}
if(0 == input_size){
this->state_ = StateEnum::STATE_EOF;
}
else {
this->state_ = StateEnum::STATE_NORMAL;
}
}
}
}
private:
z_stream strm_;
enum class StateEnum
{
STATE_NORMAL,
STATE_PUSH,
STATE_EOF_PENDING,
STATE_EOF
};
StateEnum state_;
};
}
#endif // __VDS_DATA_DEFLATE_P_H_
|
54367afd3370c291a762a311f0a8925542010673 | 65d89c457d5186d0e73f7e5ddbe14c3c3b4c1958 | /heymodule/Specifier.cpp | e8dc515a10d30e15c79f480f5b89657ab2165b4d | [
"MIT"
] | permissive | Taffer/BeOS | 73a58f1e2442e6b5fc752899436e01af3d52fd21 | e21aba07f2edaf66cb512a1024367d46a906407f | refs/heads/master | 2022-12-08T14:17:01.583051 | 2022-11-25T23:09:43 | 2022-11-25T23:09:43 | 25,280,511 | 7 | 1 | null | null | null | null | UTF-8 | C++ | false | false | 8,825 | cpp | Specifier.cpp | // Specifier
//
// The Specifier object is used by heymodule to target specific properties
// of an application.
//
// Copyright © 1998 Chris Herborth (chrish@kagi.com)
// Arcane Dragon Software
//
// The add_specifier() function at the end of this file was borrowed from
// code posted by Attila Mezei at http://w3.datanet.hu/~amezei/ in the
// "hey" utility.
//
// License: You can do anything you want with this source code, including
// incorporating it into commercial applications, as long as you
// give me credit in the About box and documentation.
//
// $Id: Specifier.cpp,v 1.1.1.1 1999/06/08 12:49:38 chrish Exp $
#include "Specifier.h"
// Proto for func stolen from Attila's "hey"... code is at the bottom.
static status_t add_specifier( BMessage *to_message, char *argv[], int32 *argx );
// ======================================================================
// Specifier object
// ======================================================================
// ----------------------------------------------------------------------
// Create a new Specifier object.
SpecifierObject *newSpecifierObject( PyObject *arg )
{
char *spec = NULL;
if( !PyArg_ParseTuple( arg, "s", &spec ) ) {
PyErr_Clear();
if( !PyArg_ParseTuple( arg, "" ) ) {
// Ignore Python's error so I can make my own.
PyErr_Clear();
PyErr_SetString( PyExc_TypeError,
"invalid arguments; expected none or a specifier string" );
return NULL;
}
}
SpecifierObject *self;
self = PyObject_NEW( SpecifierObject, &Specifier_Type );
if( self == NULL ) {
return NULL;
}
try {
self->msg = new BMessage;
} catch ( bad_alloc &ex ) {
// TODO: we leak self here...
return NULL;
}
if( spec ) {
// Ow! Evil string specifier given...
char *tmp = strdup( spec );
// Count the number of "words".
int spec_argc = 1;
for( size_t idx = 0; idx < strlen( tmp ); idx++ ) {
if( tmp[idx] == ' ' ) spec_argc++;
}
char **spec_argv = (char **)malloc( sizeof( char * ) * ( spec_argc + 1 ) );
if( spec_argv == NULL ) return (SpecifierObject *)PyErr_NoMemory();
// Split the string up into "words".
int arg = 0;
char *ptr = strtok( tmp, " " );
while( ptr ) {
spec_argv[arg++] = strdup( ptr );
ptr = strtok( NULL, " " );
}
spec_argv[arg] = NULL;
int32 argx = 0;
status_t retval = B_OK;
while( retval == B_OK ) {
retval = add_specifier( self->msg, spec_argv, &argx );
}
// Release all the memory we wasted.
for( int idx = 0; spec_argv[idx] != NULL; idx++ ) {
free( spec_argv[idx] );
}
free( spec_argv );
free( tmp );
// Now decide how well things went.
switch( retval ) {
case B_BAD_SCRIPT_SYNTAX:
// TODO: we leak here...
PyErr_SetString( PyExc_SyntaxError, "bad script syntax" );
return NULL;
break;
case B_ERROR: // That's OK, we're just at the end of our string.
// Fall-through...
case B_OK: // That's OK too.
break;
default:
// "The frogurt is also cursed."
PyErr_SetString( PyExc_RuntimeError, "unknown specifier error" );
break;
}
}
return self;
}
// ----------------------------------------------------------------------
// Delete a Specifier object
static void Specifier_dealloc( SpecifierObject *self )
{
delete self->msg;
PyMem_DEL( self );
}
// ----------------------------------------------------------------------
// Add a specifier
//
// Call with:
//
// Add( "Frame" )
// Add( "Window", 0 )
// Add( "Window", -1 )
// Add( "Window", "Untitled" )
// Add( "Line", 1, 5 ) - range starts at 1, goes for 5 items
// Add( "Line", -1, 5 ) - reverse range
static PyObject *Specifier_Add( SpecifierObject *self, PyObject *arg )
{
char *property, *name;
int index, range_start, range_run;
if( PyArg_ParseTuple( arg, "s", &property ) ) {
// It _is_ just a string, so we've got a direct specifier.
self->msg->AddSpecifier( property );
} else if( PyArg_ParseTuple( arg, "ss", &property, &name ) ) {
// It's a name specifier...
self->msg->AddSpecifier( property, name );
} else if( PyArg_ParseTuple( arg, "si", &property, &index ) ) {
// Either index or reverse index.
if( index < 0 ) {
BMessage reverse( B_REVERSE_INDEX_SPECIFIER );
reverse.AddString( "property", property );
reverse.AddInt32( "index", -index );
self->msg->AddSpecifier( &reverse );
} else {
self->msg->AddSpecifier( property, index );
}
} else if( PyArg_ParseTuple( arg, "sii", &property, &range_start, &range_run ) ) {
// Either range or reverse range.
if( range_start < 0 ) {
if( range_run < 0 ) {
PyErr_SetString( PyExc_ValueError, "range must not be negative" );
return NULL;
}
BMessage reverse( B_REVERSE_RANGE_SPECIFIER );
reverse.AddString( "property", property );
reverse.AddInt32( "index", -range_start );
reverse.AddInt32( "range", range_run );
self->msg->AddSpecifier( &reverse );
} else {
self->msg->AddSpecifier( property, range_start, range_run );
}
} else {
// Clear Python's error, then make our own exception.
PyErr_Clear();
PyErr_SetString( PyExc_ValueError, "invalid specifier" );
return NULL;
}
PyErr_Clear();
Py_INCREF( Py_None );
return Py_None;
}
// ----------------------------------------------------------------------
// Method table and whatnot for the Specifier object.
static PyMethodDef SpecifierObject_methods[] = {
{ "Add", (PyCFunction)Specifier_Add, 1, "Add a specifier." },
{ NULL, NULL } // sentinel
};
static PyObject *Specifier_getattr( SpecifierObject *self, char *name )
{
return Py_FindMethod( SpecifierObject_methods, (PyObject *)self, name );
}
PyTypeObject Specifier_Type = {
PyObject_HEAD_INIT(&PyType_Type)
0, // ob_size
"Specifier", // tp_name
sizeof(SpecifierObject), // tp_basicsize
0, // tp_itemsize
// methods
(destructor)Specifier_dealloc, // tp_dealloc
0, // tp_print
(getattrfunc)Specifier_getattr, // tp_getattr
0, //(setattrfunc)Xxo_setattr, // tp_setattr
0, // tp_compare
0, // tp_repr
0, // tp_as_number
0, // tp_as_sequence
0, // tp_as_mapping
0, // tp_hash
};
// ======================================================================
// Code borrowed from "hey" to parse a "hey" specifier line; it's not
// just _similar_ parsing, it's the real thing!
// returns B_OK if successful
// B_ERROR if no more specifiers
// B_BAD_SCRIPT_SYNTAX if syntax error
static status_t add_specifier(BMessage *to_message, char *argv[], int32 *argx)
{
char *property=argv[*argx];
if(property==NULL) return B_ERROR; // no more specifiers
(*argx)++;
if(strcasecmp(property, "to")==0){ // it is the 'to' string!!!
return B_ERROR; // no more specifiers
}
if(strcasecmp(property, "of")==0){ // skip "of", read real property
property=argv[*argx];
if(property==NULL) return B_BAD_SCRIPT_SYNTAX; // bad syntax
(*argx)++;
}
// decide the specifier
char *specifier=argv[*argx];
if(specifier==NULL){ // direct specifier
to_message->AddSpecifier(property);
return B_ERROR; // no more specifiers
}
(*argx)++;
if(strcasecmp(specifier, "of")==0){ // direct specifier
to_message->AddSpecifier(property);
return B_OK;
}
if(strcasecmp(specifier, "to")==0){ // direct specifier
to_message->AddSpecifier(property);
return B_ERROR; // no more specifiers
}
if(specifier[0]=='['){ // index, reverse index or range
char *end;
int32 ix1, ix2;
if(specifier[1]=='-'){ // reverse index
ix1=strtoul(specifier+2, &end, 10);
BMessage revspec(B_REVERSE_INDEX_SPECIFIER);
revspec.AddString("property", property);
revspec.AddInt32("index", ix1);
to_message->AddSpecifier(&revspec);
}else{ // index or range
ix1=strtoul(specifier+1, &end, 10);
if(end[0]==']'){ // it was an index
to_message->AddSpecifier(property, ix1);
return B_OK;
}else{
specifier=argv[*argx];
if(specifier==NULL){
// I was wrong, it was just an index
to_message->AddSpecifier(property, ix1);
return B_OK;
}
(*argx)++;
if(strcasecmp(specifier, "to")==0){
specifier=argv[*argx];
if(specifier==NULL){
return B_BAD_SCRIPT_SYNTAX; // wrong syntax
}
(*argx)++;
ix2=strtoul(specifier, &end, 10);
to_message->AddSpecifier(property, ix1, ix2-ix1>0 ? ix2-ix1+1 : 1);
return B_OK;
}else{
return B_BAD_SCRIPT_SYNTAX; // wrong syntax
}
}
}
}else{ // name specifier
// if it contains only digits, it will be an index...
bool contains_only_digits=true;
for(size_t i=0;i<strlen(specifier);i++){
if(specifier[i]<'0' || specifier[i]>'9'){
contains_only_digits=false;
break;
}
}
if(contains_only_digits){
to_message->AddSpecifier(property, atol(specifier));
}else{
to_message->AddSpecifier(property, specifier);
}
}
return B_OK;
}
|
e96b0d9faac23898f0c70352fdece62cda7dc084 | 4dc8ba6b2ae4ec978310c918c1b23e6a7d45e450 | /src/SPI/SPIDriver.h | 556ad51f589fd40cb110fea5999745ccf8816a6e | [
"MIT"
] | permissive | mitchdz/Smart-Doorbell | 42a2cf526b951384f7976bfb5d76144807de008f | cbc04691a65d37ce1a19cba2138d2f8363acf290 | refs/heads/main | 2023-04-05T14:21:33.555921 | 2021-02-17T21:51:30 | 2021-02-17T21:51:30 | 337,545,958 | 0 | 0 | MIT | 2021-02-09T21:50:34 | 2021-02-09T21:50:33 | null | UTF-8 | C++ | false | false | 1,845 | h | SPIDriver.h | /*
* MIT License
*
* Copyright (c) 2021 Lena Voytek
*
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of this software and associated documentation files (the "Software"), to deal
* in the Software without restriction, including without limitation the rights
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
* copies of the Software, and to permit persons to whom the Software is
* furnished to do so, subject to the following conditions:
*
* The above copyright notice and this permission notice shall be included in all
* copies or substantial portions of the Software.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
* SOFTWARE.
*
* SPIDriver
*
* This module acts as a parent class for drivers that control the SPI protocol on
* specific boards
*/
#ifndef SPIDRIVER_H
#define SPIDRIVER_H
#include "GPIODriver.h"
class SPIDriver
{
public:
virtual void init(PIN csPin, unsigned int frequency, int settings);
virtual char spiTransfer(char toSend);
virtual short spiTransfer16(short toSend);
virtual void csHigh();
virtual void csLow();
};
inline void SPIDriver::init(PIN csPin, unsigned int frequency, int settings) {}
inline char SPIDriver::spiTransfer(char toSend) { return 0; }
inline short SPIDriver::spiTransfer16(short toSend) { return 0; }
inline void SPIDriver::csHigh() {}
inline void SPIDriver::csLow() {}
#endif |
0f6228d40f8ee69ad5795986dcc8a329a85a2d98 | 1bd9e3cda029e15d43a2e537663495ff27e317e2 | /buoyantPimpleFoam_timevaryingBC/heatfluxtimevary/99/omega | f72da7d765523f2c568c4160a29adfbf0bf274b0 | [] | no_license | tsam1307/OpenFoam_heatTrf | 810b81164d3b67001bfce5ab9311d9b3d45b5c9d | 799753d24862607a3383aa582a6d9e23840c3b15 | refs/heads/main | 2023-08-10T23:27:40.420639 | 2021-09-18T12:46:01 | 2021-09-18T12:46:01 | 382,377,763 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 749,676 | omega | /*--------------------------------*- C++ -*----------------------------------*\
| ========= | |
| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox |
| \\ / O peration | Version: v2006 |
| \\ / A nd | Website: www.openfoam.com |
| \\/ M anipulation | |
\*---------------------------------------------------------------------------*/
FoamFile
{
version 2.0;
format ascii;
class volScalarField;
location "99";
object omega;
}
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
dimensions [0 0 -1 0 0 0 0];
internalField nonuniform List<scalar>
78750
(
352.294
13.5401
13.5644
13.5915
13.6206
13.6504
13.6801
13.7087
13.7357
13.7609
13.7839
13.8046
13.8229
13.8387
13.852
13.8627
13.8708
13.8764
13.8793
13.8795
13.8771
13.8719
13.8637
13.8526
13.8384
13.8211
13.8006
13.777
13.7508
13.7226
13.6934
13.6661
13.6457
13.638
355.782
516.958
4.15718
4.24396
4.32327
4.3958
4.46141
4.51992
4.57137
4.616
4.65415
4.6862
4.71253
4.73346
4.74936
4.76079
4.76813
4.77162
4.77143
4.76775
4.76068
4.75031
4.73662
4.71943
4.69858
4.67384
4.64505
4.61169
4.57292
4.5281
4.47654
4.41717
4.3493
4.27674
4.20867
522.493
516.971
4.21985
4.3519
4.46705
4.5647
4.64573
4.71185
4.76496
4.80681
4.83885
4.86236
4.87839
4.88787
4.89163
4.89043
4.88494
4.8757
4.86329
4.84825
4.83117
4.81258
4.79279
4.77196
4.75001
4.72659
4.70094
4.67199
4.63835
4.59846
4.55041
4.49186
4.4219
4.34652
4.27329
522.934
516.984
4.28268
4.4568
4.60223
4.71674
4.80406
4.87007
4.91952
4.95565
4.98073
4.99641
5.00394
5.00432
4.99836
4.98679
4.97031
4.94963
4.9255
4.89878
4.8704
4.84136
4.81268
4.78521
4.75942
4.73513
4.71141
4.6866
4.65855
4.62481
4.58256
4.52887
4.46347
4.39361
4.32327
523.339
517.003
4.34014
4.5436
4.70574
4.82532
4.91077
4.97208
5.01586
5.04598
5.06485
5.07404
5.07461
5.06731
5.05273
5.03149
5.0043
4.97208
4.93593
4.89719
4.85739
4.8183
4.78182
4.7496
4.7225
4.70043
4.68223
4.66568
4.64773
4.62478
4.59291
4.54861
4.49202
4.42963
4.36223
523.734
517.021
4.39037
4.61758
4.79324
4.91769
5.00345
5.0635
5.10551
5.13349
5.14965
5.15528
5.15112
5.13764
5.11529
5.08471
5.04685
5.00302
4.95482
4.90412
4.85305
4.80402
4.75961
4.7218
4.6914
4.66834
4.65166
4.63937
4.62834
4.61445
4.59291
4.55927
4.51293
4.45823
4.39331
524.085
517.039
4.43356
4.67869
4.86368
4.9909
5.07635
5.13501
5.17513
5.20071
5.21382
5.2155
5.2062
5.18619
5.1559
5.11616
5.06831
5.01411
4.95571
4.89551
4.83627
4.78116
4.7331
4.69349
4.66248
4.63974
4.62451
4.61525
4.60929
4.60265
4.59014
4.56643
4.52962
4.48167
4.41895
524.425
517.055
4.47187
4.73331
4.92785
5.05921
5.14595
5.2047
5.24428
5.26872
5.27991
5.27863
5.26512
5.23953
5.20238
5.15477
5.09841
5.03546
4.96846
4.90027
4.83422
4.77411
4.72284
4.68099
4.64823
4.62411
4.60806
4.59912
4.59535
4.59334
4.58786
4.57274
4.54434
4.50242
4.44221
524.733
517.07
4.50477
4.77965
4.98191
5.11665
5.2045
5.26335
5.30237
5.3256
5.33478
5.33051
5.31287
5.28201
5.2386
5.18402
5.12033
5.05008
4.97622
4.90209
4.83171
4.76953
4.71765
4.67564
4.64263
4.61795
4.60116
4.59175
4.58857
4.58904
4.58835
4.57981
4.55824
4.52157
4.46433
525.024
517.084
4.53831
4.82676
5.03689
5.17521
5.26436
5.32345
5.36203
5.38418
5.3915
5.38444
5.36294
5.32717
5.27795
5.21692
5.14642
5.06936
4.98907
4.90938
4.83504
4.77108
4.71878
4.67686
4.64398
4.61916
4.60186
4.59178
4.58839
4.58993
4.59223
4.58849
4.57234
4.54024
4.48622
525.293
517.098
4.56728
4.86703
5.08381
5.2253
5.31576
5.37524
5.41357
5.4348
5.44045
5.4308
5.40574
5.36548
5.311
5.24415
5.16758
5.0845
4.99864
4.91436
4.83722
4.77272
4.72107
4.68029
4.64855
4.62453
4.60754
4.59736
4.59381
4.59578
4.59981
4.5993
4.5872
4.55889
4.50794
525.547
517.113
4.5991
4.91068
5.13394
5.27817
5.36956
5.42914
5.46699
5.48714
5.49098
5.47867
5.45005
5.40536
5.34573
5.27321
5.19069
5.10169
5.01031
4.92139
4.84126
4.77597
4.72489
4.6854
4.65516
4.63249
4.61643
4.60673
4.60336
4.60562
4.61066
4.61228
4.60314
4.57786
4.5296
525.786
517.127
4.62703
4.94844
5.17722
5.32399
5.41647
5.47639
5.51404
5.53339
5.53572
5.52108
5.48927
5.4406
5.37633
5.29869
5.21076
5.11636
5.01993
4.92684
4.84415
4.77842
4.72826
4.69048
4.66226
4.64153
4.62709
4.61855
4.6159
4.61866
4.6244
4.62737
4.62025
4.59726
4.55108
526.013
517.143
4.65751
4.98918
5.22331
5.37218
5.46537
5.52538
5.56263
5.58104
5.58176
5.56475
5.5298
5.47727
5.40853
5.32595
5.2328
5.13309
5.0316
4.93413
4.84847
4.78178
4.73217
4.69593
4.66976
4.6512
4.63877
4.63189
4.63044
4.634
4.64038
4.64424
4.63847
4.61711
4.57239
526.229
517.158
4.68496
5.02534
5.26408
5.41496
5.509
5.56934
5.60645
5.62418
5.62359
5.60454
5.56682
5.51087
5.43815
5.35113
5.25324
5.14866
5.04246
4.94084
4.85226
4.78461
4.73556
4.70093
4.67698
4.66088
4.65087
4.64613
4.64637
4.6511
4.65819
4.66265
4.6577
4.63737
4.59345
526.436
517.174
4.71404
5.06335
5.30658
5.45919
5.55389
5.61442
5.65131
5.66831
5.6664
5.64537
5.60503
5.54587
5.46942
5.37826
5.27587
5.16656
5.05561
4.9496
4.85748
4.78811
4.73904
4.70568
4.68383
4.67027
4.66292
4.66069
4.66307
4.66933
4.67734
4.68228
4.67779
4.65799
4.61427
526.635
517.19
4.74093
5.09805
5.34526
5.49956
5.59505
5.65594
5.6928
5.70928
5.70627
5.68354
5.6409
5.57891
5.49919
5.40435
5.29792
5.1843
5.06892
4.95867
4.86292
4.79153
4.74216
4.70987
4.69007
4.67915
4.67469
4.67529
4.68018
4.68834
4.69746
4.70286
4.69854
4.67884
4.63478
526.828
517.207
4.76867
5.13367
5.3848
5.54065
5.63684
5.69806
5.73486
5.75083
5.74676
5.72242
5.67766
5.61311
5.53042
5.43223
5.32208
5.20434
5.08458
4.96988
4.87
4.79582
4.74546
4.71375
4.69573
4.68738
4.68592
4.68961
4.69734
4.70775
4.71824
4.72415
4.71984
4.6999
4.655
527.013
517.223
4.79489
5.167
5.42173
5.57915
5.67617
5.73785
5.77471
5.79027
5.7853
5.75954
5.71292
5.64613
5.56086
5.45978
5.34634
5.22495
5.10117
4.9822
4.87809
4.80066
4.74882
4.71729
4.70079
4.69494
4.69655
4.70354
4.71437
4.7273
4.73939
4.74587
4.74147
4.72101
4.67483
527.192
517.239
4.82141
5.2006
5.45892
5.61793
5.7158
5.77794
5.81483
5.82996
5.82409
5.79701
5.7487
5.67993
5.59242
5.48879
5.37243
5.24767
5.12003
4.99675
4.88806
4.80666
4.75264
4.72068
4.70531
4.70176
4.70645
4.71688
4.73108
4.74681
4.76073
4.76791
4.76335
4.74213
4.69426
527.365
517.256
4.8468
5.23255
5.49436
5.65511
5.75404
5.81672
5.85363
5.86831
5.86158
5.8333
5.78353
5.71308
5.6237
5.51794
5.39913
5.27146
5.14035
5.01296
4.89965
4.81379
4.75697
4.72404
4.70937
4.70789
4.71561
4.72958
4.74734
4.76609
4.78201
4.78996
4.78521
4.76306
4.7132
527.531
517.272
4.87206
5.26426
5.52962
5.69236
5.79267
5.85586
5.89253
5.90658
5.89895
5.86955
5.81851
5.74667
5.65575
5.54824
5.42736
5.29714
5.16283
5.03146
4.91337
4.82244
4.76213
4.72757
4.71308
4.71336
4.72399
4.74155
4.76302
4.78505
4.80323
4.81214
4.80723
4.78397
4.73174
527.691
517.289
4.89639
5.2946
5.56346
5.72856
5.83027
5.89409
5.93055
5.94382
5.93531
5.90494
5.85285
5.77991
5.68782
5.57899
5.4565
5.32419
5.18708
5.05199
4.92914
4.83269
4.76828
4.73143
4.71658
4.71824
4.7316
4.75273
4.778
4.80342
4.82398
4.83386
4.82872
4.80441
4.7497
527.844
517.305
4.92032
5.32426
5.59643
5.76377
5.86665
5.93119
5.96783
5.98044
5.97116
5.93996
5.88703
5.81326
5.72033
5.61055
5.48686
5.35289
5.21337
5.07481
4.94724
4.84487
4.77574
4.73591
4.72007
4.72265
4.73849
4.76311
4.79226
4.82124
4.8444
4.85556
4.85059
4.82475
4.7672
527.991
517.322
4.94355
5.35298
5.62845
5.79775
5.90176
5.96706
6.00405
6.01645
6.0063
5.97434
5.92075
5.84641
5.75296
5.64263
5.51818
5.38302
5.24154
5.09988
4.96775
4.85925
4.78483
4.74134
4.72383
4.72678
4.74476
4.77273
4.80576
4.83838
4.86425
4.87682
4.87234
4.84478
4.78419
528.132
517.338
4.96614
5.38081
5.65976
5.83054
5.93553
6.0016
6.03904
6.05139
6.04053
6.00802
5.954
5.87936
5.7857
5.67517
5.55038
5.41448
5.27152
5.12722
4.9908
4.8761
4.79592
4.74808
4.72818
4.73088
4.75056
4.78164
4.81847
4.8548
4.88361
4.89808
4.89409
4.86506
4.80089
528.267
517.354
4.988
5.40749
5.68966
5.86198
5.96806
6.03501
6.07301
6.08549
6.07413
6.04119
5.98687
5.91211
5.81849
5.70809
5.58335
5.44717
5.30325
5.15678
5.01649
4.89576
4.80943
4.75661
4.73354
4.73528
4.75611
4.78998
4.83049
4.87059
4.90257
4.91938
4.91585
4.88537
4.81734
528.397
517.37
5.00925
5.43328
5.71846
5.89218
5.99929
6.06709
6.10572
6.1185
6.10702
6.0736
6.01909
5.9444
5.85109
5.74113
5.61682
5.48082
5.33645
5.18842
5.0448
4.91846
4.82572
4.76732
4.74033
4.74034
4.76169
4.79793
4.84194
4.88583
4.92117
4.94052
4.93753
4.90558
4.83348
528.521
517.386
5.02991
5.45815
5.74617
5.92124
6.02938
6.09808
6.13738
6.15055
6.1391
6.10531
6.05076
5.97636
5.88359
5.77435
5.6508
5.51537
5.37106
5.22204
5.07575
4.94439
4.84513
4.78069
4.74904
4.74649
4.76764
4.80573
4.85293
4.9005
4.93925
4.96129
4.95893
4.92554
4.84929
528.641
517.402
5.04996
5.48211
5.77274
5.94904
6.05814
6.12773
6.16774
6.18135
6.17003
6.13603
6.08163
6.00771
5.9157
5.80744
5.68496
5.5505
5.40672
5.25732
5.10907
4.97342
4.86777
4.79702
4.76009
4.75416
4.77432
4.81365
4.8637
4.91484
4.95705
4.98179
4.98008
4.94523
4.86472
528.757
517.418
5.06957
5.5054
5.79841
5.97582
6.08587
6.15635
6.1971
6.21122
6.20013
6.16604
6.11194
6.03864
5.94758
5.8405
5.71934
5.58615
5.44332
5.29407
5.14452
5.00533
4.89363
4.8165
4.77382
4.76377
4.7821
4.82197
4.87435
4.92875
4.97422
5.00174
5.00079
4.96454
4.87975
528.87
517.433
5.08864
5.52793
5.82297
6.00133
6.11225
6.18361
6.22513
6.23982
6.22905
6.19503
6.14135
6.06885
5.9789
5.87322
5.75362
5.62201
5.48051
5.33192
5.18172
5.03972
4.92249
4.83916
4.79045
4.77563
4.79134
4.83099
4.88517
4.94257
4.99145
5.02136
5.02107
4.98343
4.89436
528.979
517.449
5.10738
5.55026
5.84672
6.02585
6.1376
6.20983
6.25215
6.26746
6.2571
6.22326
6.1701
6.09848
6.00977
5.90563
5.78779
5.65801
5.51816
5.37066
5.22039
5.0763
4.9542
4.86498
4.81014
4.79004
4.80236
4.84102
4.8964
4.95646
5.0086
5.04068
5.04094
5.00189
4.90856
529.086
517.464
5.12523
5.57128
5.86911
6.04901
6.16157
6.23469
6.2778
6.29378
6.28393
6.25047
6.19788
6.12722
6.03987
5.93743
5.82155
5.69384
5.55596
5.40997
5.26019
5.11472
4.98848
4.89387
4.83297
4.80722
4.81546
4.85235
4.90827
4.97054
5.02567
5.0597
5.06041
5.01992
4.92235
529.19
517.479
5.14266
5.59169
5.89072
6.07126
6.18456
6.2585
6.3024
6.31904
6.30974
6.27681
6.22477
6.15514
6.06924
5.96863
5.85485
5.72939
5.59373
5.4496
5.30081
5.15466
5.02508
4.92567
4.85897
4.82734
4.8309
4.86525
4.921
4.98496
5.04271
5.07846
5.0795
5.03755
4.93576
529.292
517.493
5.15927
5.611
5.9111
6.0922
6.2062
6.28092
6.32557
6.34285
6.33412
6.30176
6.25042
6.18194
6.09764
5.99899
5.88747
5.76445
5.63123
5.48929
5.34194
5.19575
5.06367
4.96017
4.88805
4.85051
4.84889
4.87996
4.93478
4.99982
5.05977
5.09698
5.09823
5.05477
4.9488
529.392
517.508
5.1755
5.62973
5.93064
6.11219
6.22683
6.30233
6.34772
6.36566
6.35748
6.32569
6.27507
6.20784
6.12521
6.0286
5.91943
5.79897
5.66836
5.52885
5.38334
5.2377
5.10394
4.99709
4.92008
4.87675
4.8696
4.89671
4.94984
5.0153
5.07695
5.11531
5.11661
5.07161
4.9615
529.491
517.522
5.19108
5.64743
5.94898
6.13088
6.24612
6.32236
6.36848
6.38705
6.37947
6.34831
6.2985
6.23254
6.15167
6.05724
5.95053
5.83276
5.70494
5.56809
5.42476
5.28022
5.14556
5.03614
4.95484
4.90596
4.89309
4.91565
4.96634
5.03152
5.09433
5.1335
5.13468
5.0881
4.97389
529.588
517.536
5.20613
5.66437
5.9664
6.14857
6.26436
6.3413
6.38812
6.40732
6.40031
6.36981
6.32088
6.25626
6.17715
6.08489
5.98075
5.86574
5.74082
5.60682
5.46597
5.32301
5.1882
5.07698
4.99209
4.93806
4.91942
4.93694
4.98446
5.04863
5.112
5.15162
5.15249
5.10426
4.98599
529.683
517.55
5.22051
5.68033
5.98265
6.16502
6.2813
6.35892
6.40641
6.42623
6.4198
6.39
6.34202
6.27881
6.20154
6.1115
6.00992
5.8978
5.77589
5.64489
5.50678
5.36582
5.23156
5.11929
5.03151
4.97283
4.94853
4.96068
5.00436
5.06677
5.13007
5.16974
5.1701
5.12015
4.99785
529.778
517.564
5.23435
5.6955
5.99796
6.18042
6.29715
6.37541
6.42355
6.44394
6.43809
6.40899
6.362
6.30024
6.22484
6.13705
6.03804
5.92878
5.80997
5.68209
5.54695
5.40839
5.27531
5.16272
5.07278
5.01004
4.98033
4.98689
5.02616
5.08608
5.14866
5.18793
5.18755
5.13579
5.00948
529.871
517.578
5.24749
5.70968
6.01212
6.19463
6.31176
6.39062
6.43938
6.46035
6.45508
6.4267
6.38077
6.3205
6.24701
6.1615
6.0651
5.95871
5.84298
5.71834
5.58632
5.45047
5.31916
5.20696
5.11559
5.04943
5.01467
5.01558
5.04997
5.10673
5.16791
5.20632
5.20494
5.15126
5.02094
529.964
517.591
5.26003
5.72303
6.02532
6.20778
6.32527
6.40469
6.45404
6.47556
6.47084
6.44319
6.39835
6.3396
6.26801
6.18478
6.09097
5.98746
5.87482
5.75342
5.62466
5.49181
5.36278
5.25162
5.15957
5.09069
5.05135
5.04669
5.07585
5.12881
5.18793
5.22498
5.22231
5.16658
5.03223
530.057
517.604
5.27191
5.73546
6.03745
6.21981
6.33762
6.41756
6.46747
6.48951
6.48534
6.45846
6.41476
6.35755
6.28789
6.20692
6.1157
6.01503
5.90547
5.78731
5.66189
5.53224
5.40592
5.29639
5.20435
5.13348
5.09014
5.08014
5.10385
5.15248
5.20891
5.24409
5.2398
5.18184
5.04343
530.149
517.616
5.28318
5.74705
6.04862
6.23079
6.34886
6.4293
6.47972
6.50224
6.49862
6.47249
6.42998
6.37434
6.3066
6.22788
6.13919
6.04133
5.93481
5.81988
5.69781
5.57155
5.44833
5.34093
5.24954
5.1774
5.13071
5.11572
5.13389
5.17774
5.23088
5.26368
5.25745
5.19707
5.05452
530.242
517.629
5.29387
5.75783
6.05884
6.24075
6.35903
6.43991
6.4908
6.51379
6.51068
6.48534
6.44405
6.39
6.32419
6.2477
6.16152
6.06642
5.96287
5.85113
5.73241
5.6096
5.48983
5.385
5.29483
5.2221
5.17274
5.15323
5.16598
5.20474
5.25404
5.28394
5.27541
5.21238
5.06558
530.335
517.641
5.30396
5.7678
6.0681
6.24969
6.36813
6.4494
6.50073
6.52413
6.52153
6.49696
6.45693
6.40449
6.34061
6.26634
6.18263
6.09022
5.9896
5.88099
5.76562
5.64634
5.53022
5.42833
5.33986
5.26716
5.21581
5.19233
5.19985
5.23332
5.27835
5.30489
5.2937
5.22779
5.07663
530.429
517.653
5.31353
5.77701
6.07648
6.25766
6.3762
6.45783
6.50956
6.53335
6.53122
6.50744
6.46871
6.4179
6.35594
6.28386
6.20258
6.11282
6.01505
5.90951
5.79745
5.68175
5.5695
5.4708
5.38443
5.31231
5.25961
5.23277
5.23541
5.26357
5.30395
5.32667
5.31246
5.2434
5.08772
530.523
517.664
5.3225
5.78539
6.08389
6.26461
6.38322
6.46516
6.51725
6.5414
6.53974
6.51676
6.47935
6.43018
6.37014
6.30023
6.22133
6.13416
6.03919
5.93665
5.82787
5.71579
5.60758
5.51228
5.42833
5.35726
5.30379
5.27416
5.27232
5.2952
5.33073
5.34928
5.33173
5.25926
5.0989
530.618
517.676
5.33092
5.79301
6.09043
6.27062
6.38926
6.47149
6.52392
6.54841
6.5472
6.52502
6.48897
6.44143
6.38329
6.31552
6.23896
6.15433
6.06208
5.96248
5.85692
5.74846
5.64442
5.55268
5.47141
5.40178
5.34806
5.31621
5.31034
5.32819
5.35868
5.37275
5.35157
5.27544
5.11022
530.715
517.687
5.33869
5.79975
6.09599
6.2756
6.39425
6.47675
6.52951
6.55433
6.55359
6.53223
6.49756
6.45166
6.3954
6.32971
6.25546
6.1733
6.08371
5.98699
5.88461
5.77977
5.67999
5.59194
5.51354
5.44565
5.39216
5.35864
5.34927
5.36246
5.38774
5.39708
5.372
5.29197
5.12171
530.812
517.698
5.34587
5.80572
6.10067
6.27967
6.3983
6.48107
6.53415
6.55931
6.55905
6.53855
6.50529
6.46102
6.40659
6.34294
6.27091
6.19115
6.10415
6.01025
5.91099
5.80977
5.71432
5.63001
5.55463
5.48875
5.43586
5.40118
5.38882
5.39773
5.41781
5.42225
5.39307
5.30892
5.13341
530.91
517.708
5.35238
5.81082
6.1044
6.28276
6.40135
6.48438
6.53779
6.56331
6.56357
6.54397
6.51217
6.46953
6.4169
6.35523
6.28535
6.20792
6.12343
6.03227
5.93609
5.83847
5.7474
5.66689
5.59462
5.53094
5.47898
5.44361
5.42875
5.43374
5.44873
5.44819
5.41473
5.32626
5.14534
531.009
517.718
5.35833
5.81517
6.10731
6.28498
6.40352
6.48679
6.54053
6.56644
6.56728
6.54865
6.51836
6.47733
6.42646
6.3667
6.2989
6.22371
6.14166
6.05317
5.96001
5.86598
5.77931
5.70262
5.63351
5.57216
5.52137
5.48563
5.46873
5.47019
5.48031
5.47479
5.43696
5.34402
5.15751
531.109
517.728
5.36367
5.81875
6.10934
6.28627
6.40473
6.48823
6.5423
6.56863
6.57014
6.55262
6.52387
6.48446
6.43532
6.37743
6.31163
6.23861
6.1589
6.07301
5.98283
5.89238
5.81011
5.73724
5.67131
5.61238
5.56298
5.52721
5.50861
5.50689
5.51236
5.50193
5.4597
5.36216
5.16992
531.209
517.737
5.36853
5.82169
6.11063
6.28676
6.40509
6.48879
6.54318
6.56996
6.57224
6.55607
6.52879
6.49097
6.44355
6.3875
6.32366
6.25274
6.17531
6.09194
6.00469
5.91783
5.83992
5.77082
5.70805
5.65158
5.60369
5.56813
5.54814
5.54364
5.54472
5.52952
5.48287
5.38065
5.18255
531.309
517.747
5.37289
5.82395
6.11113
6.28639
6.40453
6.48839
6.54307
6.57029
6.57337
6.55862
6.53292
6.49679
6.45115
6.39694
6.33505
6.26618
6.19098
6.1101
6.02576
5.94252
5.8689
5.80348
5.74382
5.68981
5.6435
5.60835
5.5873
5.58023
5.57719
5.55737
5.50637
5.39942
5.19538
531.41
517.756
5.37686
5.82565
6.11094
6.28524
6.40314
6.48712
6.54207
6.56974
6.57367
6.56045
6.5364
6.50201
6.45817
6.40583
6.34586
6.27903
6.20601
6.1276
6.0462
5.96667
5.89721
5.83534
5.77869
5.72708
5.68239
5.64778
5.6259
5.6166
5.60967
5.58544
5.53017
5.41847
5.20839
531.51
517.764
5.38037
5.82673
6.10999
6.28325
6.40086
6.4849
6.54009
6.5682
6.57303
6.56144
6.53913
6.50656
6.46459
6.41415
6.35613
6.29133
6.2205
6.14457
6.06616
5.99049
5.925
5.86654
5.81276
5.76347
5.72039
5.68639
5.66385
5.6526
5.642
5.61352
5.55409
5.43765
5.22148
531.61
517.773
5.38351
5.82726
6.10838
6.28051
6.39776
6.48183
6.53722
6.56577
6.57154
6.56166
6.54117
6.51049
6.47044
6.42194
6.36589
6.30312
6.23448
6.16104
6.08569
6.01401
5.95232
5.8971
5.84607
5.79901
5.75752
5.72418
5.70113
5.68816
5.67415
5.64161
5.5781
5.45697
5.23465
531.709
517.781
5.38621
5.8272
6.10605
6.27697
6.3938
6.47785
6.5334
6.56239
6.56916
6.56108
6.54249
6.51377
6.4757
6.42919
6.37514
6.31443
6.24799
6.17706
6.1048
6.03718
5.97915
5.92703
5.87862
5.83371
5.79375
5.76112
5.73767
5.72318
5.70598
5.66958
5.60211
5.47627
5.24779
531.807
517.789
5.38855
5.82662
6.10309
6.27272
6.38906
6.47303
6.52871
6.55814
6.56595
6.55976
6.54314
6.51644
6.48041
6.43594
6.38393
6.32531
6.26108
6.19268
6.12354
6.06001
6.00552
5.95635
5.91044
5.86758
5.82911
5.79718
5.77345
5.7576
5.73742
5.69736
5.62604
5.49555
5.26092
531.905
517.797
5.39049
5.82548
6.09945
6.2677
6.3835
6.46734
6.52311
6.55298
6.56189
6.55767
6.5431
6.51848
6.48455
6.44217
6.39226
6.33577
6.2738
6.20796
6.14199
6.08255
6.03149
5.98516
5.94162
5.90068
5.8636
5.83237
5.80841
5.79136
5.76839
5.72486
5.64983
5.51476
5.27401
532.001
517.804
5.39209
5.82386
6.0952
6.26199
6.37719
6.46084
6.51667
6.54698
6.55702
6.55485
6.54239
6.51991
6.48814
6.44791
6.40016
6.34585
6.28619
6.22297
6.16023
6.10484
6.05711
6.01351
5.97221
5.93307
5.8973
5.86671
5.84254
5.82442
5.79885
5.75204
5.67345
5.53391
5.28714
532.097
517.812
5.39331
5.82169
6.09028
6.25555
6.37008
6.4535
6.50936
6.54013
6.55136
6.55129
6.54097
6.52069
6.49113
6.45314
6.40761
6.35556
6.29831
6.2378
6.17839
6.12699
6.08247
6.04147
6.00229
5.96485
5.93028
5.90027
5.8759
5.85677
5.82873
5.77883
5.69684
5.55294
5.30027
532.191
517.819
5.39417
5.81901
6.08476
6.24842
6.36224
6.4454
6.50126
6.53251
6.54499
6.54704
6.53887
6.5208
6.49351
6.45781
6.4146
6.36492
6.31019
6.25253
6.19662
6.1491
6.10766
6.06912
6.03194
5.99606
5.96259
5.93308
5.90846
5.88841
5.85806
5.80524
5.71998
5.57184
5.31334
532.283
517.826
5.39461
5.81573
6.07855
6.24057
6.35366
6.43651
6.49238
6.52419
6.53804
6.54214
6.53606
6.52021
6.49522
6.46188
6.42108
6.37389
6.32182
6.26722
6.21504
6.17125
6.13273
6.09651
6.06118
6.02675
5.99427
5.96518
5.94036
5.91934
5.88677
5.83118
5.74279
5.59051
5.32628
532.374
517.832
5.39465
5.81189
6.07169
6.23205
6.34438
6.42691
6.48279
6.51524
6.53077
6.53665
6.53257
6.51891
6.49625
6.46533
6.42702
6.38243
6.33318
6.28182
6.23362
6.19342
6.15769
6.12365
6.09007
6.057
6.02546
5.99682
5.97201
5.94978
5.91498
5.85672
5.76532
5.60899
5.33912
532.464
517.838
5.39424
5.80739
6.06413
6.22283
6.33439
6.4166
6.47247
6.50554
6.52272
6.53043
6.52839
6.51694
6.49663
6.46816
6.4324
6.39051
6.3442
6.29625
6.25222
6.21552
6.18247
6.15053
6.1186
6.0868
6.05615
6.02798
6.00321
5.97972
5.9427
5.88185
5.78753
5.62725
5.35181
532.551
517.844
5.39327
5.80225
6.05592
6.21294
6.32376
6.40566
6.46158
6.49536
6.51426
6.52382
6.52377
6.51447
6.49647
6.47045
6.43726
6.39812
6.35484
6.31045
6.27069
6.23743
6.20701
6.17711
6.14677
6.1162
6.08641
6.0587
6.03399
6.00923
5.97002
5.90665
5.80948
5.64533
5.36442
532.638
517.849
5.39183
5.79653
6.04706
6.20236
6.31241
6.39401
6.45002
6.48459
6.50532
6.51678
6.51874
6.51159
6.49588
6.47228
6.44168
6.40532
6.36516
6.32442
6.28897
6.2591
6.23127
6.20336
6.17456
6.14517
6.11621
6.08893
6.06428
6.03826
5.99691
5.93109
5.83115
5.6632
5.3769
532.722
517.854
5.39002
5.79032
6.03761
6.19113
6.30036
6.38165
6.43779
6.47328
6.49598
6.50945
6.51348
6.50847
6.49502
6.47382
6.44578
6.41222
6.37524
6.33827
6.30709
6.28052
6.25522
6.22926
6.20198
6.17374
6.14558
6.11873
6.09415
6.06689
6.02345
5.95526
5.85261
5.68094
5.38933
532.805
517.859
5.38795
5.78368
6.02757
6.1792
6.28753
6.36845
6.42474
6.46126
6.48611
6.50174
6.50794
6.50514
6.49397
6.47517
6.4497
6.41899
6.38526
6.35218
6.32512
6.30173
6.27886
6.25479
6.22899
6.20187
6.17448
6.14805
6.12353
6.09506
6.0496
5.97911
5.87383
5.69851
5.40167
532.886
517.864
5.3857
5.77666
6.01699
6.1666
6.27392
6.35439
6.41083
6.44847
6.47563
6.49359
6.50211
6.50163
6.4928
6.47644
6.45358
6.42576
6.39538
6.36635
6.34321
6.32281
6.30225
6.27998
6.25559
6.22956
6.20294
6.17693
6.1525
6.12285
6.07544
6.00274
5.89488
5.71597
5.41395
532.966
517.869
5.38326
5.76924
6.00583
6.15327
6.25947
6.33938
6.39593
6.43476
6.46434
6.48479
6.49581
6.49781
6.49146
6.47762
6.45744
6.4326
6.40569
6.38085
6.36139
6.3438
6.3254
6.30483
6.28177
6.25677
6.23089
6.20529
6.18095
6.15018
6.10089
6.02606
5.91571
5.73327
5.42614
533.044
517.874
5.38056
5.76134
5.99405
6.13924
6.2442
6.32345
6.38008
6.42014
6.45218
6.47519
6.48885
6.49351
6.48979
6.47862
6.46124
6.43948
6.41616
6.39558
6.37963
6.36471
6.34836
6.32939
6.3076
6.28358
6.2584
6.23321
6.20897
6.17713
6.12605
6.04917
5.93639
5.75048
5.43827
533.121
517.879
5.3775
5.75288
5.98162
6.12447
6.2281
6.30661
6.3633
6.4047
6.43906
6.46463
6.48105
6.48853
6.48764
6.47932
6.46489
6.44634
6.42672
6.41044
6.39786
6.38548
6.37108
6.35362
6.33302
6.30992
6.2854
6.26057
6.23643
6.20357
6.15079
6.07196
5.95683
5.76752
5.45029
533.196
517.884
5.37394
5.74379
5.96852
6.10901
6.21124
6.28892
6.34569
6.38868
6.42501
6.45305
6.47227
6.48271
6.48484
6.47955
6.46826
6.45311
6.43736
6.42536
6.41604
6.40613
6.39361
6.37761
6.35814
6.33592
6.31201
6.28753
6.26348
6.22965
6.17525
6.09455
5.97714
5.78448
5.46226
533.271
517.888
5.36986
5.73405
5.95474
6.09283
6.19363
6.27042
6.32718
6.37166
6.40999
6.44051
6.46257
6.47606
6.48133
6.47925
6.4713
6.45975
6.44809
6.44028
6.43413
6.42658
6.41586
6.40125
6.38287
6.36147
6.33814
6.31398
6.29
6.25524
6.19929
6.1168
5.99719
5.80126
5.47411
533.344
517.892
5.36533
5.72374
5.94032
6.07597
6.17528
6.25117
6.30801
6.35404
6.39437
6.42732
6.45217
6.46869
6.47716
6.47842
6.474
6.4663
6.45898
6.45525
6.45215
6.4469
6.43794
6.42469
6.40735
6.38671
6.36389
6.33997
6.31611
6.28047
6.22305
6.13887
6.01712
5.81797
5.48592
533.416
517.896
5.3605
5.71297
5.9253
6.05838
6.1561
6.23107
6.28808
6.33582
6.37828
6.41369
6.44129
6.4608
6.47246
6.47712
6.47634
6.47269
6.46996
6.47017
6.47002
6.46701
6.45975
6.44781
6.43148
6.41159
6.38929
6.36579
6.3418
6.30523
6.24639
6.16057
6.03676
5.83445
5.49756
533.486
517.899
5.35561
5.70191
5.90974
6.04002
6.13597
6.20997
6.2673
6.31703
6.36186
6.39988
6.43026
6.45272
6.46753
6.47556
6.4785
6.47901
6.481
6.48502
6.48776
6.48694
6.48137
6.47074
6.4554
6.43625
6.41452
6.39155
6.36727
6.32974
6.26952
6.18212
6.05628
5.85087
5.50916
533.557
517.904
5.35084
5.69068
5.89366
6.02081
6.11471
6.18759
6.24536
6.2974
6.34495
6.38585
6.41916
6.44461
6.46254
6.47394
6.48059
6.48534
6.49202
6.49974
6.50528
6.50662
6.50273
6.49339
6.47905
6.46066
6.4395
6.41704
6.39241
6.35385
6.29224
6.20329
6.07548
5.867
5.52055
533.626
517.908
5.34632
5.67936
5.87707
6.00069
6.09215
6.16366
6.22191
6.27658
6.32727
6.37144
6.40797
6.43658
6.45771
6.4725
6.4829
6.49193
6.50318
6.51442
6.52267
6.52612
6.5239
6.51587
6.50254
6.48492
6.46436
6.44242
6.41741
6.3778
6.31482
6.22436
6.0946
5.8831
5.5319
533.695
517.914
5.34209
5.66796
5.85998
5.97964
6.0682
6.138
6.19667
6.25418
6.30838
6.35624
6.39635
6.42841
6.45294
6.47126
6.48552
6.49894
6.51454
6.5291
6.53993
6.54542
6.54483
6.5381
6.52579
6.50894
6.48896
6.46751
6.44206
6.40137
6.33701
6.24503
6.11334
5.89884
5.54295
533.763
517.919
5.3381
5.65646
5.8424
5.95766
6.04282
6.11051
6.16949
6.22994
6.28794
6.33988
6.38398
6.41982
6.44804
6.47012
6.48847
6.50646
6.52615
6.54384
6.55712
6.56457
6.56558
6.56015
6.54886
6.5328
6.51344
6.49248
6.4666
6.42483
6.35911
6.26564
6.13203
5.91455
5.55393
533.831
517.926
5.33425
5.64483
5.82435
5.93477
6.01602
6.08119
6.14033
6.20366
6.26559
6.32192
6.37038
6.41039
6.44263
6.46877
6.49145
6.51419
6.5378
6.55847
6.5741
6.58347
6.58606
6.58191
6.57165
6.55639
6.53761
6.51712
6.49075
6.44786
6.38075
6.28579
6.15026
5.92979
5.5645
533.898
517.932
5.33053
5.6331
5.80588
5.91101
5.98779
6.05007
6.10942
6.17531
6.24119
6.30213
6.35527
6.39978
6.43636
6.46686
6.49414
6.52178
6.54921
6.57281
6.59077
6.60205
6.60622
6.6034
6.59421
6.57979
6.56164
6.54164
6.5148
6.47082
6.40236
6.30592
6.16847
5.94502
5.57499
533.967
517.938
5.32701
5.62138
5.78708
5.88642
5.95809
6.01697
6.07643
6.14472
6.21464
6.28036
6.33843
6.38772
6.42895
6.4641
6.49625
6.52885
6.56006
6.58658
6.60689
6.62012
6.62592
6.62446
6.61638
6.60281
6.58529
6.56574
6.5384
6.49328
6.42345
6.32551
6.18614
5.9597
5.585
534.033
517.945
5.32385
5.6098
5.76804
5.86103
5.9269
5.98183
6.04121
6.11196
6.18606
6.25672
6.31987
6.37415
6.42024
6.46032
6.49762
6.53514
6.5701
6.59957
6.62228
6.63753
6.64506
6.64505
6.63817
6.62556
6.60876
6.58973
6.56192
6.51571
6.44454
6.34514
6.20384
5.9744
5.59498
534.102
517.953
5.32121
5.59849
5.74884
5.83482
5.89406
5.94443
6.00351
6.0769
6.15541
6.23122
6.29962
6.35903
6.4102
6.45542
6.49812
6.54044
6.5791
6.61153
6.6367
6.65406
6.6634
6.66494
6.65935
6.64774
6.63168
6.61317
6.58487
6.53756
6.46505
6.36416
6.22093
5.98849
5.60442
534.168
517.961
5.31926
5.58761
5.72966
5.80791
5.85957
5.90463
5.96313
6.03931
6.12256
6.20378
6.27761
6.34231
6.3987
6.44927
6.49755
6.54453
6.58683
6.62225
6.64997
6.66955
6.68085
6.68409
6.67994
6.66951
6.65434
6.63643
6.60773
6.55938
6.48557
6.38323
6.23807
6.00263
5.61384
534.237
517.971
5.31793
5.57714
5.71051
5.78045
5.82346
5.86228
5.91974
5.9987
6.08696
6.17393
6.25351
6.32374
6.38555
6.44163
6.49558
6.5471
6.59303
6.63147
6.66183
6.68374
6.69712
6.70218
6.69958
6.69038
6.67611
6.6589
6.62985
6.58048
6.5054
6.40161
6.25452
6.01609
5.62267
534.304
517.98
5.31704
5.56702
5.69149
5.75251
5.78599
5.81749
5.87316
5.95468
6.04809
6.14114
6.22677
6.30281
6.37026
6.43207
6.49174
6.54778
6.59737
6.63894
6.67207
6.69649
6.71212
6.7192
6.71836
6.71066
6.69771
6.68111
6.65176
6.60148
6.5252
6.42002
6.27102
6.02959
5.63147
534.373
517.99
5.31652
5.55731
5.67279
5.72443
5.74747
5.77059
5.82356
5.90715
6.00568
6.105
6.19699
6.27911
6.35248
6.42022
6.48558
6.54613
6.59946
6.64428
6.68033
6.70742
6.72548
6.73476
6.73586
6.72987
6.71843
6.70241
6.67277
6.62161
6.54418
6.43764
6.28675
6.04235
5.63961
534.44
518
5.3162
5.54796
5.65448
5.69643
5.70827
5.72212
5.7712
5.85611
5.95948
6.06517
6.16375
6.25225
6.33182
6.40576
6.47676
6.54184
6.59901
6.64725
6.68643
6.71641
6.73716
6.74891
6.75224
6.74822
6.73855
6.72326
6.69345
6.64153
6.56306
6.45522
6.30248
6.05513
5.64771
534.51
518.009
5.31618
5.53913
5.63672
5.66869
5.66862
5.6722
5.7165
5.80194
5.9097
6.02159
6.12685
6.22194
6.30794
6.38835
6.46492
6.53457
6.59569
6.64752
6.69002
6.7231
6.74675
6.76117
6.76693
6.76509
6.75732
6.74287
6.71297
6.66038
6.58094
6.47188
6.31734
6.06709
5.65511
534.578
518.019
5.31661
5.53088
5.61953
5.64122
5.62865
5.62126
5.66001
5.74518
5.85675
5.97456
6.0864
6.18811
6.28069
6.36772
6.44983
6.52412
6.58937
6.64499
6.69105
6.7275
6.75431
6.77169
6.78018
6.7808
6.77519
6.76178
6.73199
6.67889
6.59862
6.48843
6.33217
6.07904
5.66247
534.649
518.03
5.31766
5.52331
5.60294
5.614
5.58824
5.56908
5.6016
5.68599
5.80095
5.92434
6.04256
6.15082
6.24999
6.34365
6.43127
6.51028
6.57979
6.63939
6.68922
6.72924
6.75944
6.77999
6.7914
6.79465
6.79133
6.77909
6.74953
6.69605
6.61508
6.50385
6.34594
6.09003
5.66902
534.717
518.041
5.31947
5.51651
5.58699
5.58705
5.54743
5.51581
5.54158
5.62478
5.74263
5.87122
5.99558
6.11024
6.21593
6.31615
6.40925
6.49306
6.567
6.63079
6.68462
6.72848
6.76233
6.78634
6.80096
6.80711
6.80634
6.7955
6.7664
6.71274
6.63122
6.51908
6.35961
6.10098
5.6755
534.789
518.053
5.32199
5.51044
5.57173
5.56043
5.50621
5.46127
5.47953
5.56106
5.68158
5.8152
5.94551
6.06641
6.17851
6.28511
6.38363
6.47231
6.5508
6.61893
6.67695
6.72483
6.76253
6.79017
6.80817
6.81738
6.81927
6.80996
6.78146
6.72777
6.64585
6.53292
6.37199
6.11074
5.68098
534.857
518.066
5.32516
5.50513
5.55729
5.53443
5.46496
5.40571
5.41552
5.49482
5.61777
5.75621
5.89232
6.01935
6.13777
6.25054
6.35443
6.44804
6.53124
6.60393
6.66637
6.71853
6.76035
6.7919
6.81356
6.82611
6.83091
6.82338
6.79571
6.74221
6.66007
6.54649
6.38422
6.12042
5.68634
534.93
518.079
5.32873
5.50046
5.54379
5.5094
5.42422
5.34963
5.34959
5.42572
5.55067
5.69383
5.83567
5.96878
6.09345
6.21219
6.32141
6.42002
6.50804
6.58544
6.65247
6.70909
6.7552
6.79083
6.81629
6.83229
6.84012
6.83448
6.8078
6.75465
6.67244
6.55836
6.39487
6.12867
5.69051
534.998
518.092
5.33252
5.4964
5.53137
5.48575
5.38467
5.29382
5.28211
5.35372
5.48
5.62762
5.77516
5.91432
6.04525
6.16987
6.28447
6.38824
6.4813
6.56365
6.63553
6.69688
6.74756
6.78755
6.8171
6.83683
6.84793
6.84445
6.81899
6.76642
6.68435
6.56993
6.40537
6.13684
5.69457
535.073
518.104
5.33625
5.49278
5.52009
5.46386
5.34709
5.23907
5.21381
5.27914
5.40568
5.55731
5.71037
5.85552
5.99265
6.1231
6.2432
6.35229
6.45058
6.53807
6.61499
6.68125
6.73666
6.78117
6.81493
6.83849
6.85294
6.85174
6.82768
6.77586
6.69411
6.57951
6.41403
6.14337
5.6973
535.14
518.117
5.3398
5.4895
5.5099
5.44394
5.3121
5.1864
5.14574
5.20262
5.3279
5.48277
5.64105
5.79215
5.93544
6.07181
6.19761
6.3123
6.41612
6.50906
6.59133
6.66281
6.72326
6.77258
6.81085
6.83852
6.85656
6.85788
6.83544
6.7846
6.70336
6.58877
6.42251
6.14983
5.69995
535.215
518.129
5.34307
5.48639
5.50066
5.42598
5.28012
5.13686
5.07929
5.12539
5.24745
5.40437
5.56727
5.72396
5.8733
6.01562
6.14729
6.2678
6.37737
6.47598
6.56381
6.64069
6.70635
6.7606
6.80347
6.83533
6.85706
6.86105
6.84041
6.79075
6.71021
6.59581
6.42896
6.15447
5.70115
535.282
518.14
5.34608
5.48331
5.49206
5.40962
5.25098
5.09088
5.01549
5.04867
5.16538
5.32291
5.48962
5.65151
5.80665
5.95497
6.09269
6.21928
6.33492
6.43951
6.53321
6.61581
6.68699
6.74651
6.79432
6.83075
6.85625
6.86307
6.84444
6.79616
6.71651
6.60245
6.43516
6.15899
5.70226
535.358
518.151
5.34884
5.48015
5.48391
5.39463
5.22468
5.04893
4.95546
4.9739
5.083
5.23937
5.40874
5.57509
5.73553
5.88972
6.03355
6.16635
6.2882
6.39894
6.49869
6.58716
6.66401
6.72892
6.78181
6.8229
6.85222
6.86199
6.84554
6.79883
6.72026
6.60674
6.43921
6.16159
5.70184
535.424
518.163
5.35135
5.47673
5.47588
5.38053
5.20062
5.01077
4.89972
4.90224
5.00171
5.15506
5.32575
5.49571
5.66088
5.8207
5.97074
6.1099
6.23819
6.35534
6.4614
6.55604
6.63884
6.70943
6.76764
6.8136
6.84692
6.8598
6.84566
6.80067
6.72335
6.61051
6.44286
6.16393
5.70124
535.502
518.174
5.35345
5.47296
5.46795
5.36737
5.179
4.97676
4.84896
4.83474
4.92263
5.07093
5.24139
5.4138
5.58284
5.74785
5.90391
6.04954
6.18425
6.30785
6.42029
6.52118
6.61001
6.68637
6.74997
6.80084
6.83827
6.85442
6.8428
6.79975
6.72387
6.61191
6.44436
6.16435
5.69909
535.567
518.186
5.35502
5.46866
5.45989
5.35493
5.15959
4.94679
4.80343
4.77217
4.84691
4.98826
5.15687
5.33054
5.50259
5.67226
5.83414
5.98617
6.12762
6.25788
6.37691
6.48425
6.57934
6.66166
6.73082
6.78674
6.8284
6.84792
6.83892
6.79789
6.72355
6.61258
6.44524
6.16429
5.69661
535.645
518.196
5.35584
5.46373
5.45173
5.34339
5.14287
4.9215
4.76389
4.71549
4.77561
4.90797
5.07288
5.24632
5.42022
5.59367
5.76096
5.9192
6.06723
6.20421
6.32985
6.44368
6.54506
6.63338
6.70816
6.76916
6.81516
6.83824
6.83208
6.79332
6.72075
6.61098
6.44408
6.16242
5.69266
535.708
518.206
5.35586
5.45801
5.44319
5.33239
5.12842
4.90066
4.73051
4.66545
4.71005
4.8317
4.99112
5.16286
5.33748
5.51373
5.68594
5.85024
6.00484
6.1486
6.28105
6.40152
6.50934
6.60378
6.68426
6.75039
6.80076
6.82742
6.82414
6.78769
6.71693
6.60843
6.44204
6.1598
5.68816
535.788
518.216
5.35496
5.45144
5.43425
5.32197
5.11647
4.88468
4.70397
4.62298
4.65129
4.7605
4.91243
5.08071
5.25452
5.43213
5.6084
5.77827
5.93919
6.08957
6.22874
6.35586
6.4701
6.57068
6.65688
6.72816
6.78303
6.81347
6.8133
6.77939
6.71069
6.60368
6.43804
6.1555
5.6823
535.85
518.225
5.35321
5.44388
5.42455
5.31153
5.10614
4.87267
4.68378
4.58835
4.60037
4.69601
4.83881
5.00194
5.17351
5.35109
5.53055
5.70553
5.87255
6.02949
6.17538
6.30921
6.42996
6.5367
6.62861
6.705
6.76431
6.79847
6.80138
6.77001
6.70335
6.59785
6.43301
6.15025
5.67571
535.931
518.233
5.3505
5.43529
5.41411
5.30118
5.09768
4.86493
4.67031
4.56205
4.55789
4.63887
4.77082
4.92694
5.09446
5.27027
5.45155
5.63079
5.80337
5.96653
6.11891
6.25928
6.38648
6.49937
6.59697
6.67845
6.74233
6.78039
6.78657
6.75793
6.69352
6.58973
6.42591
6.14321
5.66777
535.992
518.241
5.34687
5.4255
5.40254
5.29023
5.09006
4.86028
4.66254
4.54366
4.52427
4.59029
4.71032
4.85801
5.02006
5.19271
5.37437
5.55697
5.73461
5.90371
6.06242
6.20922
6.34275
6.46173
6.56495
6.65136
6.71965
6.76149
6.77087
6.7449
6.68271
6.58063
6.41784
6.1353
5.65929
536.075
518.248
5.34223
5.41456
5.38999
5.27903
5.08386
4.85933
4.66094
4.53336
4.49938
4.54991
4.6569
4.79479
4.9499
5.11789
5.29789
5.48247
5.66427
5.8387
6.00334
6.15631
6.29598
6.42088
6.52963
6.62094
6.69367
6.7394
6.7521
6.72893
6.66909
6.56886
6.4073
6.12525
5.64927
536.135
518.255
5.33656
5.40226
5.37603
5.2668
5.07791
4.86084
4.66449
4.53072
4.48345
4.51845
4.61164
4.73876
4.88599
5.04841
5.22516
5.41058
5.59581
5.7751
5.94533
6.10419
6.24977
6.38039
6.49447
6.59057
6.66753
6.71694
6.73282
6.71238
6.65486
6.55648
6.3962
6.11472
5.63893
536.22
518.261
5.3298
5.38874
5.36093
5.25406
5.07297
4.86565
4.67401
4.53636
4.4768
4.49563
4.57353
4.68831
4.8263
4.98186
5.15375
5.33856
5.52625
5.70975
5.88509
6.04949
6.20074
6.33689
6.45619
6.55699
6.63795
6.69105
6.71013
6.69241
6.63722
6.54077
6.3819
6.10132
5.62639
536.28
518.267
5.32195
5.37378
5.3442
5.23984
5.0675
4.87203
4.68819
4.54998
4.48049
4.48351
4.54489
4.64575
4.77313
4.92089
5.08708
5.27003
5.45943
5.64667
5.82681
5.99647
6.15309
6.29451
6.41876
6.52401
6.60869
6.66525
6.68743
6.67241
6.61955
6.52502
6.3676
6.08799
5.61398
536.366
518.271
5.31302
5.35764
5.32629
5.22487
5.06238
4.88047
4.70725
4.57173
4.49493
4.4827
4.52609
4.61067
4.72521
4.86341
5.02253
5.20147
5.39133
5.58161
5.76613
5.94078
6.10259
6.24911
6.37814
6.48764
6.57579
6.63563
6.66076
6.64835
6.59778
6.50519
6.34932
6.07104
5.59877
536.427
518.275
5.303
5.34008
5.30663
5.20803
5.05605
4.88847
4.72855
4.59992
4.52008
4.49519
4.52056
4.58694
4.68618
4.81281
4.96355
5.13686
5.32613
5.51892
5.70752
5.88693
6.05369
6.20506
6.33863
6.45212
6.54351
6.60646
6.63441
6.62457
6.57628
6.48569
6.33148
6.0546
5.58395
536.516
518.278
5.29197
5.32151
5.28589
5.19016
5.04896
4.89624
4.75132
4.63271
4.55379
4.51962
4.5282
4.57498
4.65594
4.76775
4.90739
5.07269
5.25944
5.45377
5.64598
5.82993
6.00151
6.15762
6.29559
6.41292
6.5073
6.57319
6.60385
6.59646
6.55041
6.46181
6.30936
6.03422
5.56604
536.577
518.28
5.27985
5.30165
5.26354
5.17027
5.03942
4.90154
4.77259
4.66662
4.5929
4.55438
4.54994
4.57827
4.63956
4.73389
4.85984
5.01516
5.19692
5.3915
5.5867
5.77482
5.95094
6.11152
6.2536
6.37446
6.47158
6.54024
6.5735
6.56852
6.52468
6.43809
6.28745
6.01416
5.54854
536.669
518.281
5.26674
5.28103
5.24052
5.14979
5.02908
4.90549
4.79223
4.69967
4.63349
4.59446
4.58112
4.59368
4.6353
4.70985
4.81886
4.96117
5.13431
5.32709
5.52433
5.71626
5.8968
6.06183
6.20802
6.33238
6.4321
6.50338
6.53911
6.53643
6.49476
6.4102
6.26152
5.99043
5.52811
536.73
518.28
5.2525
5.25924
5.21612
5.12755
5.01632
4.90619
4.80806
4.72921
4.67236
4.63626
4.61871
4.62004
4.6447
4.69941
4.7893
4.91576
5.07727
5.26596
5.46407
5.65919
5.84374
6.01281
6.16269
6.29011
6.39205
6.4659
6.50409
6.50369
6.46415
6.38161
6.23494
5.96627
5.50766
536.827
518.278
5.23735
5.23691
5.19142
5.10526
5.00321
4.90558
4.82126
4.75506
4.70747
4.67578
4.6571
4.65136
4.66294
4.69953
4.76906
4.87645
5.02253
5.20318
5.40027
5.59798
5.78656
5.95993
6.11381
6.24464
6.34927
6.42521
6.46571
6.46759
6.43024
6.34986
6.20543
5.93951
5.48507
536.887
518.275
5.22111
5.21344
5.16538
5.08144
4.98805
4.90206
4.8306
4.77632
4.73792
4.71172
4.69447
4.68585
4.68911
4.71148
4.7623
4.84946
4.97722
5.14501
5.33797
5.53672
5.7286
5.90593
6.06361
6.19776
6.30503
6.38276
6.42539
6.42943
6.3942
6.31592
6.17383
5.91118
5.46195
536.993
518.27
5.20439
5.18934
5.13904
5.05777
4.97282
4.89764
4.83776
4.79407
4.76389
4.74301
4.72826
4.71913
4.71776
4.72996
4.76492
4.83225
4.93926
5.08924
5.27401
5.47173
5.66642
5.84798
6.00998
6.14794
6.25822
6.33792
6.38287
6.38928
6.35642
6.28058
6.14122
5.88212
5.43807
537.049
518.266
5.18649
5.16357
5.11104
5.03266
4.95568
4.89071
4.84183
4.80821
4.78592
4.77045
4.759
4.75115
4.74832
4.75484
4.77877
4.82993
4.91693
5.04625
5.21732
5.40941
5.60397
5.78829
5.95406
6.09561
6.20868
6.29007
6.33713
6.34568
6.31495
6.24133
6.10464
5.84962
5.41229
537.168
518.264
5.16744
5.13651
5.08237
5.0081
4.9384
4.88296
4.8443
4.81995
4.80494
4.79462
4.78647
4.78026
4.77738
4.78093
4.79794
4.83798
4.90985
5.02051
5.17439
5.35607
5.5461
5.73007
5.89777
6.04207
6.15776
6.24113
6.29021
6.30109
6.27278
6.20172
6.068
5.81705
5.38579
537.215
518.261
5.14569
5.10682
5.05135
4.98125
4.91889
4.8728
4.84417
4.82903
4.82142
4.81668
4.81265
4.8089
4.80654
4.80828
4.8205
4.85335
4.91619
5.01485
5.15368
5.3231
5.50417
5.68281
5.84823
5.99211
6.10813
6.19186
6.24102
6.25288
6.22605
6.1568
6.02531
5.77788
5.3534
537.361
518.255
5.12073
5.0755
5.02
4.95487
4.89951
4.86185
4.84232
4.83575
4.83544
4.8369
4.83797
4.83755
4.83598
4.8357
4.84234
4.8672
4.92276
5.01572
5.14686
5.30845
5.48078
5.65107
5.80997
5.94944
6.06262
6.14431
6.19148
6.20285
6.1763
6.1078
5.97753
5.73299
5.31465
537.408
518.24
5.09144
5.04191
4.98722
4.92722
4.87835
4.84824
4.83683
4.83825
4.84541
4.85423
4.86242
4.86769
4.86902
4.86758
4.86759
4.87944
4.92017
5.00383
5.13211
5.294
5.46471
5.62936
5.78096
5.91343
6.02057
6.09736
6.14084
6.15017
6.12345
6.05566
5.9267
5.68521
5.27193
537.588
518.215
5.05961
5.00831
4.95546
4.90064
4.8574
4.83311
4.82761
4.83505
4.84867
4.86503
4.8819
4.896
4.90466
4.90667
4.90339
4.90045
4.91319
4.96571
5.07509
5.23601
5.41785
5.59024
5.74197
5.8707
5.97352
6.04603
6.08498
6.08958
6.05965
5.9903
5.86149
5.6243
5.22006
537.64
518.181
5.02656
4.97424
4.92354
4.87291
4.83469
4.81504
4.81354
4.82475
4.84287
4.86533
4.89038
4.91474
4.9352
4.94881
4.95362
4.94932
4.94036
4.9443
4.99274
5.11077
5.28986
5.48588
5.66152
5.80257
5.90904
5.98282
6.02354
6.03041
6.00309
5.93765
5.81531
5.58714
5.19251
537.809
518.144
4.99521
4.94071
4.89176
4.84551
4.81216
4.79611
4.79677
4.80945
4.82961
4.85551
4.88561
4.91732
4.9481
4.97542
4.99688
5.00917
5.00896
4.99794
4.99034
5.01872
5.119
5.28969
5.48829
5.66936
5.80757
5.89829
5.94617
5.95638
5.93186
5.8706
5.75592
5.54071
5.16231
537.79
518.111
4.96449
4.90608
4.85785
4.81626
4.78814
4.77566
4.77804
4.79138
4.8127
4.84099
4.87439
4.9105
4.94713
4.98347
5.018
5.04694
5.06652
5.0741
5.07012
5.0633
5.07914
5.15354
5.29255
5.47111
5.64614
5.78272
5.86652
5.89934
5.88862
5.83754
5.73383
5.53303
5.16744
537.919
518.089
4.93464
4.87063
4.82323
4.78741
4.76488
4.75545
4.75843
4.77135
4.79304
4.82328
4.8599
4.90034
4.94239
4.98552
5.02849
5.0678
5.10064
5.12533
5.14105
5.14863
5.15419
5.17447
5.22967
5.33228
5.47169
5.6153
5.72909
5.79416
5.80831
5.77556
5.68874
5.50744
5.16042
537.796
518.073
4.90027
4.83019
4.78591
4.75779
4.7416
4.73507
4.73776
4.74913
4.77027
4.8016
4.84186
4.88853
4.93826
4.99041
5.04382
5.09334
5.13574
5.17082
5.1999
5.22464
5.24739
5.27229
5.30667
5.36224
5.44674
5.55212
5.65311
5.72331
5.74878
5.72764
5.65258
5.48355
5.14608
538.028
518.048
4.85781
4.78722
4.7504
4.73215
4.72275
4.71821
4.71853
4.72492
4.74018
4.76678
4.80585
4.85642
4.91538
4.98016
5.049
5.11563
5.17321
5.22112
5.26243
5.30077
5.33854
5.37664
5.4167
5.46296
5.51961
5.58434
5.64464
5.68386
5.69004
5.65844
5.57608
5.39756
5.05677
538.063
517.995
4.80538
4.7416
4.71544
4.70888
4.70852
4.70831
4.70764
4.7079
4.71184
4.72365
4.74797
4.78828
4.8451
4.91724
5.00331
5.09541
5.18125
5.25581
5.3209
5.38073
5.43722
5.48987
5.5378
5.58048
5.61727
5.64613
5.66218
5.659
5.63122
5.5729
5.46634
5.26939
4.93835
538.855
517.926
4.75365
4.70032
4.68514
4.69015
4.70054
4.7089
4.71349
4.71414
4.71069
4.70462
4.70009
4.70413
4.72496
4.76844
4.83811
4.93405
5.04436
5.15218
5.24664
5.3253
5.39039
5.44538
5.49361
5.53608
5.57062
5.59295
5.59834
5.583
5.54419
5.47729
5.36685
5.17616
4.8661
538.8
517.857
4.70171
4.657
4.65258
4.66939
4.6913
4.71084
4.72753
4.74153
4.75126
4.7552
4.75262
4.74444
4.73444
4.73014
4.74262
4.78508
4.86521
4.97843
5.10941
5.23937
5.35151
5.43632
5.49312
5.52668
5.54242
5.54329
5.52898
5.49729
5.44533
5.36848
5.25421
5.07364
4.79605
539.777
517.792
4.64946
4.61514
4.62256
4.64867
4.67758
4.70363
4.72752
4.74962
4.76832
4.78243
4.791
4.79331
4.78894
4.77816
4.76241
4.74581
4.73705
4.74845
4.79223
4.87384
4.98734
5.11449
5.23374
5.3298
5.39549
5.42973
5.43458
5.41293
5.36685
5.29588
5.19306
5.0347
4.78213
539.492
517.733
4.59135
4.57515
4.60149
4.6388
4.67444
4.70805
4.74101
4.77254
4.80131
4.82606
4.84563
4.85908
4.86583
4.86582
4.85962
4.8487
4.83592
4.82591
4.82615
4.84662
4.8944
4.96775
5.05558
5.14264
5.21575
5.26715
5.29415
5.29634
5.27287
5.22063
5.13109
4.98169
4.7397
540.284
517.574
4.4937
4.53189
4.58699
4.63374
4.67597
4.71736
4.75803
4.79765
4.83604
4.87298
4.90826
4.94171
4.97324
5.0029
5.03089
5.05756
5.08338
5.10884
5.13419
5.16006
5.18711
5.21442
5.23965
5.25926
5.2694
5.26662
5.24815
5.21136
5.15309
5.06884
4.95149
4.79001
4.57305
540.186
352.602
14.153
14.3333
14.4007
14.4345
14.4622
14.4889
14.5145
14.5382
14.5597
14.5788
14.5955
14.6099
14.6223
14.6326
14.641
14.6476
14.6525
14.6557
14.6571
14.6567
14.6547
14.6503
14.6432
14.6327
14.6179
14.5982
14.573
14.5417
14.5038
14.4589
14.4066
14.348
14.2865
370.977
526.414
22.9964
23.0019
23.0081
23.015
23.0223
23.0299
23.0379
23.0462
23.0544
23.0627
23.0707
23.0783
23.0855
23.0921
23.098
23.103
23.1071
23.1101
23.112
23.1127
23.1121
23.1103
23.1071
23.1028
23.0973
23.091
23.0843
23.0778
23.0728
23.0719
23.0797
23.1022
23.1412
531.558
1029.84
179.789
64.0012
33.0469
21.1366
15.3877
12.1423
10.0916
8.68753
7.672
6.91162
6.33213
5.88962
5.55697
5.31684
5.15807
5.07376
5.05974
5.10732
5.21618
5.38444
5.60939
5.88709
6.21159
6.57384
6.9609
7.3562
7.74645
8.16404
8.88001
11.0927
18.9878
46.802
160.68
1040.82
1029.84
180.515
65.2402
34.6271
22.8823
17.1718
13.9025
11.8107
10.3669
9.31392
8.51134
7.87615
7.35667
6.91939
6.54156
6.20787
5.91008
5.65106
5.42916
5.24225
5.08771
4.96879
4.89
4.85682
4.87509
4.95008
5.08666
5.29976
5.67873
6.65004
9.76489
19.63
50.2569
166.032
1041.62
1029.85
176.704
65.8929
35.4806
23.155
16.8035
13.0516
10.6669
9.07934
7.97981
7.18749
6.5941
6.13439
5.76877
5.47264
5.22963
5.02803
4.86142
4.72906
4.62032
4.53141
4.45955
4.40352
4.36426
4.34556
4.35552
4.41276
4.57276
5.02319
6.371
10.3543
21.4561
53.0791
168.912
1042.35
1029.87
174.577
64.0213
33.0226
20.3165
14.0098
10.634
8.75046
7.62962
6.89552
6.36221
5.93963
5.58455
5.27685
5.00785
4.77445
4.57589
4.41226
4.28255
4.18231
4.1075
4.05279
4.01323
3.98636
3.9754
3.99547
4.08895
4.36632
5.11267
7.04436
11.8613
23.6681
55.4858
170.881
1043.18
1029.88
173.277
62.1815
31.1667
18.8634
13.1534
10.3061
8.7669
7.83395
7.19493
6.70695
6.3003
5.94029
5.61119
5.30774
5.0302
4.78178
4.56746
4.38949
4.24531
4.13461
4.05396
3.99844
3.96432
3.95542
3.99437
4.14251
4.54272
5.51809
7.78402
12.8973
24.6988
56.2046
171.251
1043.93
1029.89
172.747
61.5249
30.5928
18.4829
12.9826
10.2929
8.84845
7.96916
7.36486
6.90136
6.50717
6.14515
5.80109
5.47437
5.17
4.89361
4.65148
4.44621
4.277
4.14723
4.05718
4.00589
3.99306
4.02529
4.12962
4.37753
4.92858
6.11336
8.59341
13.7835
25.4291
56.6909
171.631
1044.63
1029.89
172.296
60.9166
30.0487
18.0995
12.7743
10.2113
8.84347
8.01622
7.45452
7.02764
6.66367
6.32409
5.99127
5.66107
5.33969
5.04035
4.77467
4.54438
4.34979
4.19905
4.09682
4.04824
4.06037
4.14682
4.33846
4.70727
5.40812
6.74805
9.31897
14.4213
25.772
56.7729
171.738
1045.26
1029.9
172.41
61.068
30.2365
18.3132
13.0085
10.4525
9.07951
8.24395
7.67548
7.24461
6.88037
6.54307
6.21194
5.8794
5.54933
5.23525
4.9531
4.70419
4.48707
4.31455
4.19578
4.14143
4.16646
4.29466
4.56794
5.06095
5.91527
7.39698
10.0209
14.9977
26.0611
56.8823
171.968
1045.83
1029.9
172.716
61.1549
30.2331
18.2898
13.0083
10.4739
9.11294
8.28817
7.73256
7.31651
6.96858
6.64795
6.33227
6.01227
5.69039
5.37991
5.09968
4.85053
4.62842
4.449
4.32463
4.27044
4.30804
4.47081
4.81388
5.42251
6.42886
8.05364
10.7276
15.5775
26.3699
57.0469
172.269
1046.35
1029.91
172.995
61.3481
30.3822
18.427
13.1535
10.6223
9.25631
8.42424
7.86315
7.44525
7.09922
6.78341
6.47416
6.16058
5.84398
5.53748
5.26095
5.01536
4.79437
4.6148
4.49118
4.44162
4.49262
4.68508
5.0859
5.79404
6.9401
8.70473
11.4357
16.1756
26.7216
57.2762
172.627
1046.84
1029.92
173.626
61.5977
30.4927
18.493
13.2215
10.6921
9.32248
8.48774
7.92718
7.51291
7.17327
6.86614
6.56726
6.265
5.9601
5.66502
5.39898
5.16391
4.95259
4.78201
4.66831
4.63163
4.70195
4.92617
5.3809
6.17679
7.44713
9.34232
12.1337
16.7821
27.1072
57.5545
173.016
1047.29
1029.92
174.116
61.7885
30.5779
18.5569
13.2996
10.779
9.40979
8.57333
8.01191
7.59847
7.26155
6.959
6.66639
6.37193
6.07658
5.7928
5.53881
5.31564
5.11558
4.95716
4.85771
4.83876
4.93282
5.19163
5.69931
6.57407
7.95191
9.96048
12.8062
17.3758
27.5032
57.8548
173.409
1047.73
1029.93
175.034
62.0792
30.691
18.6278
13.3754
10.8561
9.48248
8.64212
8.0792
7.6666
7.33261
7.03495
6.74899
6.46304
6.1786
5.9082
5.669
5.46146
5.2762
5.13273
5.05089
5.05371
5.17585
5.47275
6.03262
6.97852
8.44734
10.5488
13.4375
17.9354
27.8852
58.153
173.79
1048.14
1029.94
175.971
62.3475
30.777
18.6776
13.4361
10.9241
9.55154
8.71119
8.14901
7.73812
7.40693
7.11324
6.83251
6.5535
6.27864
6.02089
5.79661
5.60634
5.43895
5.31282
5.2505
5.27734
5.43021
5.76716
6.37826
7.38845
8.93274
11.1057
14.0222
18.4536
28.2484
58.4495
174.161
1048.54
1029.95
177.355
62.7043
30.8857
18.737
13.5022
10.9939
9.61992
8.77798
8.2155
7.80571
7.47709
7.18746
6.91238
6.64108
6.37705
6.13383
5.92464
5.7495
5.60198
5.49654
5.45667
5.50949
5.69386
6.06986
6.72899
7.79578
9.40069
11.6245
14.5526
18.9197
28.5795
58.7292
174.511
1048.92
1029.96
178.812
63.0425
30.9653
18.775
13.5542
11.0552
9.68414
8.84361
8.28266
7.87497
7.54939
7.26406
6.99492
6.73212
6.48059
6.2523
6.05608
5.89528
5.76777
5.68429
5.66831
5.74832
5.96469
6.37891
7.08271
8.19829
9.84949
12.1045
15.0289
19.3354
28.8823
59
174.85
1049.29
1029.97
180.06
63.2943
31.0045
18.7995
13.6036
11.1167
9.74893
8.90946
8.34959
7.94373
7.6212
7.34052
7.07803
6.82494
6.58725
6.37458
6.19229
6.04653
5.93695
5.87573
5.88427
5.99195
6.24024
6.6913
7.43603
8.59254
10.2765
12.5447
15.4512
19.6991
29.1533
59.2557
175.171
1049.65
1029.97
180.495
63.3703
30.9941
18.8117
13.6503
11.1781
9.81487
8.97727
8.419
8.01531
7.6961
7.42039
7.16526
6.92333
6.69969
6.49989
6.33119
6.20035
6.10844
6.06948
6.10291
6.23844
6.51821
7.00445
7.78619
8.97616
10.6806
12.9465
15.8231
20.015
29.3962
59.4998
175.478
1049.99
1029.98
180.586
63.3875
30.9743
18.8256
13.6988
11.2401
9.88072
9.04461
8.48777
8.08626
7.77047
7.49991
7.25229
7.02151
6.81199
6.62559
6.47122
6.35644
6.283
6.26525
6.32316
6.48607
6.79623
7.31528
8.12953
9.34534
11.0592
13.3092
16.146
20.2844
29.6084
59.7259
175.763
1050.33
1029.99
180.675
63.4097
30.9579
18.843
13.75
11.3045
9.94919
9.11482
8.5596
8.16042
7.84832
7.58344
7.34438
7.1249
6.92688
6.75324
6.61282
6.51382
6.45857
6.4614
6.54329
6.7329
7.07204
7.62119
8.46322
9.69745
11.4105
13.6337
16.4235
20.5118
29.7935
59.9361
176.031
1050.65
1030
180.755
63.4206
30.9363
18.8601
13.8012
11.3684
10.017
9.18418
8.63047
8.23354
7.92505
7.6657
7.43502
7.22678
7.04051
6.87989
6.75367
6.67067
6.6338
6.65728
6.76233
6.97746
7.34372
7.91989
8.78483
10.0304
11.7337
13.9211
16.6594
20.7019
29.9549
60.1314
176.282
1050.96
1030.01
180.835
63.4308
30.9167
18.8813
13.8559
11.4355
10.0878
9.25663
8.70438
8.30959
8.00452
7.75043
7.52761
7.32986
7.15492
7.00702
6.89478
6.82756
6.80881
6.85254
6.97963
7.21874
7.60997
8.20978
9.09261
10.3427
12.0282
14.1726
16.8564
20.8583
30.095
60.3133
176.516
1051.25
1030.02
180.91
63.4341
30.8954
18.9036
13.9109
11.5022
10.1581
9.32846
8.77772
8.38527
8.08398
7.83573
7.62094
7.43257
7.26863
7.13323
7.03476
6.98305
6.98199
7.04531
7.19324
7.45478
7.86888
8.4891
9.38513
10.6338
12.2949
14.3907
17.0183
20.9844
30.2158
60.4814
176.734
1051.54
1030.03
180.984
63.4362
30.8761
18.9296
13.9691
11.5718
10.2311
9.40293
8.85347
8.46302
8.16505
7.92209
7.71483
7.53547
7.38223
7.25902
7.174
7.13739
7.15348
7.23567
7.40374
7.68599
8.12019
8.75718
9.66165
10.9031
12.5341
14.5773
17.1486
21.0832
30.3175
60.6345
176.934
1051.81
1030.04
181.053
63.4339
30.8572
18.9576
14.0282
11.6415
10.3041
9.47715
8.92893
8.54046
8.24577
8.00794
7.80798
7.63744
7.49467
7.3834
7.31153
7.2896
7.32226
7.42252
7.60961
7.91081
8.36275
9.01337
9.92211
11.1515
12.7479
14.7361
17.2516
21.1594
30.4042
60.7744
177.119
1052.08
1030.05
181.122
63.431
30.8408
18.9891
14.0899
11.7135
10.3792
9.55355
9.00646
8.6198
8.32814
8.09508
7.90186
7.73963
7.60684
7.507
7.44772
7.4398
7.48817
7.60543
7.81015
8.12826
8.5955
9.25679
10.1662
11.3796
12.9382
14.8701
17.3314
21.2162
30.4769
60.9008
177.29
1052.33
1030.06
181.189
63.4259
30.8261
19.0227
14.1525
11.7857
10.4542
9.62967
9.08372
8.69893
8.4104
8.18204
7.99511
7.84089
7.71772
7.62892
7.58176
7.58723
7.65051
7.78373
8.00479
8.33849
8.81882
9.48771
10.3944
11.5886
13.1071
14.9823
17.3914
21.2568
30.5374
61.0146
177.449
1052.58
1030.07
181.255
63.4202
30.8135
19.0591
14.217
11.8594
10.5307
9.70722
9.16226
8.77915
8.49348
8.2695
8.08851
7.94188
7.82785
7.74951
7.71384
7.73194
7.80919
7.95722
8.19321
8.54082
9.032
9.70586
10.6069
11.7794
13.2565
15.0758
17.4351
21.284
30.5871
61.1163
177.598
1052.81
1030.08
181.318
63.4129
30.8028
19.0974
14.2821
11.9332
10.6069
9.7844
9.2404
8.85895
8.57608
8.35634
8.18109
8.04177
7.93651
7.86818
7.84341
7.87342
7.96369
8.12538
8.3749
8.73471
9.23462
9.91111
10.8044
11.9533
13.3884
15.1532
17.4655
21.3007
30.6284
61.2085
177.741
1053.04
1030.09
181.381
63.4048
30.7939
19.1378
14.3487
12.008
10.6842
9.86252
9.31938
8.93944
8.65918
8.44343
8.27359
8.14115
8.04416
7.98523
7.97068
8.01174
8.11401
8.28811
8.54966
8.91993
9.42644
10.1035
10.9871
12.1114
13.5049
15.2172
17.4858
21.3097
30.6632
61.2926
177.883
1053.27
1030.1
181.441
63.3955
30.7871
19.1799
14.4158
12.0829
10.7613
9.94037
9.39803
9.01955
8.74181
8.5299
8.36527
8.23943
8.1503
8.10027
8.09532
8.14666
8.25992
8.44523
8.7174
9.0965
9.60814
10.2838
11.1561
12.2549
13.6073
15.2696
17.4975
21.3126
30.6933
61.3712
178.03
1053.48
1030.11
181.502
63.387
30.7834
19.2248
14.4845
12.1589
10.8393
10.019
9.47732
9.10017
8.82478
8.61643
8.45667
8.33702
8.25527
8.21355
8.21753
8.27833
8.40159
8.59689
8.87828
9.26465
9.77981
10.4525
11.312
12.3849
13.6974
15.3125
17.5033
21.3117
30.7204
61.4467
178.194
1053.69
1030.12
181.563
63.3809
30.7849
19.273
14.5546
12.2354
10.9173
10.0974
9.55625
9.18035
8.90721
8.70228
8.54721
8.43347
8.3587
8.32481
8.3371
8.4066
8.53889
8.74304
9.0323
9.42441
9.94149
10.6097
11.4553
12.5022
13.7761
15.3468
17.5037
21.3076
30.7452
61.5214
178.387
1053.9
1030.13
181.625
63.3784
30.7901
19.3232
14.6255
12.3122
10.9953
10.1757
9.63508
9.26034
8.98932
8.78765
8.63703
8.52887
8.46067
8.43409
8.45407
8.53151
8.67189
8.88374
9.17956
9.57596
10.0934
10.7557
11.5866
12.6075
13.8444
15.3737
17.5001
21.3018
30.7697
61.6003
178.639
1054.1
1030.14
181.686
63.3729
30.7944
19.3732
14.6955
12.3875
11.0718
10.2525
9.7125
9.33902
9.07018
8.87172
8.72542
8.62263
8.56068
8.54098
8.56812
8.65282
8.80044
9.01897
9.32016
9.71953
10.236
10.8912
11.7066
12.7018
13.9031
15.3939
17.4931
21.2947
30.7951
61.6899
178.994
1054.3
1030.15
181.75
63.3698
30.8046
19.4266
14.7667
12.4631
11.1478
10.3284
9.78857
9.41623
9.14958
8.9544
8.81234
8.7147
8.65867
8.6454
8.67914
8.77042
8.92443
9.14862
9.45399
9.85503
10.3692
11.0161
11.8154
12.7853
13.953
15.4083
17.483
21.2866
30.8235
61.8029
179.544
1054.49
1030.16
181.809
63.3677
30.8153
19.479
14.8362
12.5369
11.2223
10.4029
9.86337
9.4921
9.2275
9.03543
8.89752
8.80488
8.75449
8.74728
8.78717
8.88444
9.0441
9.27306
9.58159
9.98319
10.494
11.1319
11.9147
12.8592
13.994
15.4159
17.4709
21.2822
30.862
61.9678
180.464
1054.68
1030.17
181.866
63.3646
30.8267
19.5315
14.905
12.6096
11.2956
10.476
9.93686
9.56666
9.30407
9.11498
8.98101
8.89315
8.84816
8.84664
8.89221
8.99492
9.15952
9.39243
9.70318
10.1043
10.6108
11.2387
12.0043
12.9234
14.0264
15.4186
17.4591
21.283
30.918
62.2293
182.02
1054.86
1030.18
181.924
63.3618
30.839
19.5835
14.9724
12.6808
11.3672
10.5477
10.0088
9.63968
9.37903
9.19285
9.06266
8.97934
8.93946
8.94335
8.99422
9.10186
9.2708
9.5069
9.81902
10.2188
10.7198
11.3369
12.0847
12.9785
14.0516
15.4178
17.4493
21.2945
31.0136
62.6468
184.226
1055.04
1030.19
181.986
63.3612
30.8531
19.6357
15.0391
12.7508
11.4376
10.618
10.0794
9.71128
9.45252
9.2691
9.14251
9.06349
9.02843
9.03737
9.09319
9.20534
9.37809
9.61676
9.92952
10.327
10.8219
11.4274
12.1569
13.0261
14.0716
15.4165
17.4459
21.3234
31.1432
63.0781
185.96
1055.22
1030.2
182.046
63.3593
30.867
19.687
15.1043
12.8193
11.5064
10.6867
10.1484
9.78128
9.52433
9.34357
9.22041
9.14547
9.11492
9.12857
9.18895
9.30521
9.4813
9.722
10.0348
10.4294
10.9174
11.5108
12.2221
13.0676
14.088
15.4152
17.4462
21.3547
31.2447
63.3061
186.496
1055.39
1030.21
182.105
63.357
30.8815
19.7381
15.1688
12.8866
11.574
10.7541
10.2161
9.84985
9.59459
9.41632
9.29637
9.22523
9.19887
9.21685
9.28137
9.4013
9.58025
9.82248
10.1348
10.526
11.0066
11.5877
12.2812
13.1041
14.1013
15.4131
17.4458
21.3775
31.3048
63.3947
186.607
1055.57
1030.22
182.163
63.3543
30.8964
19.7887
15.2322
12.9528
11.6403
10.8202
10.2824
9.91693
9.66323
9.48726
9.37029
9.30265
9.28012
9.30203
9.37028
9.4934
9.67471
9.91794
10.2292
10.6166
11.0897
11.6585
12.3346
13.1361
14.1119
15.4095
17.4427
21.391
31.3378
63.4299
186.659
1055.74
1030.23
182.22
63.351
30.9114
19.8387
15.2945
13.018
11.7055
10.8852
10.3475
9.98269
9.73037
9.55649
9.44222
9.37775
9.35868
9.3841
9.4556
9.58144
9.7646
10.0083
10.3182
10.7014
11.1667
11.7235
12.3829
13.1643
14.1204
15.4049
17.4377
21.3984
31.3568
63.4457
186.701
1055.92
1030.24
182.277
63.3476
30.9267
19.888
15.3559
13.0819
11.7696
10.9491
10.4114
10.0472
9.79607
9.62405
9.51221
9.45058
9.43458
9.46307
9.53738
9.66544
9.84995
10.0937
10.4017
10.7805
11.238
11.7831
12.4266
13.1893
14.1272
15.3997
17.4316
21.4026
31.3691
63.4535
186.74
1056.1
1030.25
182.332
63.3429
30.9413
19.9362
15.416
13.1447
11.8326
11.0118
10.4741
10.1104
9.86041
9.69005
9.58035
9.52122
9.50792
9.53906
9.61572
9.74556
9.93095
10.1743
10.48
10.8542
11.304
11.8376
12.4661
13.2115
14.1329
15.3945
17.4257
21.4061
31.3792
63.4583
186.777
1056.27
1030.26
182.387
63.3379
30.9559
19.9836
15.4748
13.2063
11.8944
11.0735
10.5358
10.1726
9.92351
9.7546
9.64678
9.58982
9.57883
9.61221
9.69081
9.82198
10.0078
10.2504
10.5536
10.9229
11.365
11.8877
12.5021
13.2312
14.1376
15.3895
17.4206
21.41
31.389
63.462
186.814
1056.45
1030.27
182.439
63.3314
30.9697
20.0296
15.5322
13.2664
11.9549
11.134
10.5964
10.2336
9.98536
9.81773
9.71153
9.65644
9.64738
9.6826
9.76273
9.89484
10.0808
10.3222
10.6226
10.987
11.4216
11.9337
12.5347
13.2489
14.1415
15.385
17.4163
21.415
31.3996
63.4657
186.85
1056.63
1030.28
182.491
63.3246
30.9834
20.0748
15.5884
13.3254
12.0144
11.1935
10.656
10.2936
10.0461
9.87958
9.77478
9.72124
9.71376
9.75043
9.83167
9.96432
10.1499
10.3899
10.6873
11.0468
11.474
11.9761
12.5645
13.2648
14.1449
15.3809
17.4132
21.4213
31.4115
63.4701
186.886
1056.81
1030.29
182.542
63.3175
30.9971
20.119
15.6435
13.3832
12.0726
11.2518
10.7145
10.3525
10.1057
9.94017
9.83653
9.78426
9.77803
9.81576
9.89772
10.0305
10.2155
10.4537
10.748
11.1025
11.5225
12.015
12.5916
13.2792
14.148
15.3774
17.4112
21.429
31.4249
63.4761
186.923
1056.99
1030.3
182.592
63.3102
31.0108
20.1627
15.6975
13.4399
12.1299
11.3092
10.7721
10.4105
10.1643
9.99963
9.89697
9.84569
9.84036
9.87878
9.96108
10.0937
10.2776
10.5138
10.8048
11.1543
11.5674
12.0508
12.6164
13.2923
14.151
15.3748
17.4106
21.4383
31.4402
63.4844
186.962
1057.18
1030.31
182.642
63.3034
31.0251
20.2059
15.7508
13.4958
12.1862
11.3657
10.8288
10.4675
10.222
10.058
9.95611
9.90558
9.90085
9.93961
10.0219
10.1539
10.3365
10.5703
10.8578
11.2024
11.6088
12.0836
12.6391
13.3043
14.1541
15.3732
17.4114
21.4494
31.4577
63.4958
187.004
1057.36
1030.32
182.69
63.2965
31.0394
20.2486
15.8033
13.5509
12.2418
11.4214
10.8847
10.5238
10.2787
10.1153
10.0141
9.96407
9.95965
9.99842
10.0803
10.2113
10.3922
10.6236
10.9073
11.2469
11.6468
12.1135
12.6594
13.3147
14.1564
15.3728
17.4151
21.4621
31.4775
63.5107
187.049
1057.55
1030.33
182.738
63.2894
31.0537
20.2908
15.8551
13.6052
12.2966
11.4764
10.9398
10.5792
10.3346
10.1717
10.0709
10.0212
10.0168
10.0553
10.1365
10.2662
10.4452
10.6736
10.9535
11.2881
11.6816
12.1404
12.6772
13.3234
14.1587
15.3741
17.4213
21.4768
31.4997
63.5294
187.096
1057.73
1030.34
182.784
63.2816
31.0679
20.3323
15.9062
13.6588
12.3508
11.5306
10.9943
10.6339
10.3897
10.2273
10.1267
10.0771
10.0725
10.1104
10.1906
10.3187
10.4953
10.7207
10.9966
11.326
11.7131
12.1642
12.6926
13.3307
14.1609
15.3765
17.4291
21.4929
31.5236
63.551
187.146
1057.92
1030.35
182.829
63.2741
31.0825
20.3736
15.9567
13.7118
12.4042
11.5842
11.048
10.6879
10.444
10.2819
10.1816
10.1318
10.1268
10.1638
10.2427
10.3689
10.543
10.7649
11.0366
11.3608
11.7415
12.1853
12.7057
13.3369
14.1631
15.3799
17.4383
21.5106
31.5492
63.5756
187.197
1058.1
1030.36
182.873
63.2668
31.0971
20.4143
16.0065
13.764
12.4569
11.637
11.101
10.7411
10.4976
10.3357
10.2354
10.1854
10.1797
10.2156
10.2929
10.4169
10.5881
10.8065
11.0737
11.3925
11.7669
12.2036
12.7167
13.3417
14.165
15.3837
17.4484
21.5292
31.5762
63.6028
187.25
1058.28
1030.37
182.916
63.2605
31.1125
20.4547
16.0555
13.8154
12.5088
11.689
11.1531
10.7935
10.5503
10.3886
10.2882
10.2378
10.2313
10.2658
10.3412
10.4628
10.6308
10.8453
11.1079
11.4213
11.7895
12.2193
12.7256
13.3453
14.1664
15.3876
17.4588
21.548
31.6033
63.6302
187.301
1058.46
1030.38
182.959
63.2541
31.1275
20.4942
16.1034
13.8656
12.5595
11.7399
11.2042
10.8449
10.602
10.4405
10.34
10.289
10.2814
10.3143
10.3876
10.5065
10.6711
10.8815
11.1393
11.4471
11.8091
12.2324
12.7325
13.3475
14.1672
15.3915
17.4696
21.5674
31.6301
63.6557
187.344
1058.64
1030.39
183.001
63.2485
31.1429
20.533
16.1504
13.9148
12.6092
11.7897
11.2542
10.8952
10.6526
10.4912
10.3906
10.3389
10.3301
10.3613
10.4322
10.5481
10.709
10.915
11.1678
11.47
11.8258
12.2426
12.7369
13.3478
14.1666
15.3941
17.4791
21.5851
31.6542
63.6774
187.389
1058.81
1030.4
183.043
63.2429
31.1582
20.5711
16.1962
13.9628
12.6576
11.8383
11.303
10.9444
10.7021
10.5409
10.44
10.3876
10.3774
10.4066
10.4749
10.5876
10.7446
10.946
11.1935
11.4899
11.8395
12.2501
12.7388
13.3459
14.1642
15.3952
17.4871
21.6011
31.6764
63.6975
187.431
1058.98
1030.41
183.083
63.2378
31.1737
20.6085
16.2412
14.0096
12.7048
11.8856
11.3506
10.9923
10.7504
10.5893
10.4881
10.4349
10.4232
10.4503
10.5158
10.6251
10.778
10.9746
11.2167
11.5072
11.8506
12.2551
12.7384
13.3422
14.1602
15.3949
17.4939
21.6162
31.6981
63.7175
187.471
1059.15
1030.42
183.122
63.2324
31.189
20.6453
16.2851
14.0554
12.7509
11.9317
11.3969
11.039
10.7975
10.6365
10.535
10.4809
10.4676
10.4924
10.555
10.6607
10.8092
11.0008
11.2374
11.5219
11.8592
12.2577
12.7361
13.3369
14.155
15.3935
17.4996
21.6303
31.7191
63.7371
187.509
1059.32
1030.43
183.16
63.2276
31.2048
20.6818
16.3284
14.1003
12.7959
11.9767
11.442
11.0844
10.8433
10.6824
10.5806
10.5254
10.5105
10.5329
10.5924
10.6943
10.8384
11.0248
11.2557
11.5342
11.8653
12.2581
12.7318
13.33
14.1484
15.3909
17.5042
21.6434
31.7391
63.7558
187.546
1059.48
1030.44
183.197
63.2231
31.2208
20.718
16.3711
14.1445
12.8401
12.0207
11.486
11.1287
10.8878
10.727
10.6248
10.5686
10.5519
10.5718
10.6282
10.7262
10.8655
11.0467
11.2718
11.5442
11.8692
12.2564
12.7256
13.3214
14.1405
15.3871
17.5078
21.6555
31.7583
63.7734
187.58
1059.64
1030.45
183.233
63.2192
31.2375
20.7545
16.4137
14.1882
12.8836
12.0638
11.5291
11.1719
10.9313
10.7704
10.6676
10.6103
10.5918
10.6091
10.6623
10.7563
10.8909
11.0667
11.2859
11.5521
11.871
12.2526
12.7175
13.3112
14.1311
15.3821
17.5102
21.6665
31.7763
63.7894
187.612
1059.79
1030.46
183.27
63.2174
31.2559
20.7919
16.4569
14.2321
12.927
12.1067
11.5716
11.2144
10.9737
10.8127
10.7093
10.6507
10.6302
10.6449
10.6947
10.7847
10.9145
11.0848
11.2981
11.5581
11.8708
12.2468
12.7076
13.2993
14.1202
15.3757
17.5115
21.6766
31.7935
63.8042
187.642
1059.94
1030.47
183.307
63.2174
31.276
20.8307
16.501
14.2768
12.9708
12.1496
11.614
11.2565
11.0155
10.854
10.7497
10.6897
10.6672
10.6792
10.7256
10.8115
10.9365
11.1013
11.3086
11.5623
11.8689
12.2393
12.6959
13.2857
14.1077
15.3678
17.5113
21.6855
31.8097
63.8175
187.668
1060.09
1030.48
183.345
63.2192
31.2981
20.8712
16.5468
14.3228
13.0157
12.1933
11.6568
11.2986
11.057
10.8947
10.7892
10.7276
10.7028
10.712
10.755
10.8367
10.9569
11.1162
11.3175
11.565
11.8653
12.2302
12.6826
13.2705
14.0935
15.3582
17.5096
21.693
31.8247
63.8291
187.692
1060.23
1030.49
183.385
63.2232
31.3225
20.9141
16.5947
14.3707
13.0622
12.2383
11.7006
11.3413
11.0987
10.9351
10.8281
10.7645
10.7373
10.7434
10.7829
10.8605
10.9758
11.1297
11.325
11.5662
11.8604
12.2196
12.6678
13.2537
14.0777
15.3469
17.5063
21.6991
31.8384
63.8392
187.712
1060.37
1030.5
183.423
63.2284
31.3486
20.9591
16.6451
14.4211
13.111
12.2853
11.746
11.3853
11.1411
10.9758
10.8667
10.8007
10.7707
10.7736
10.8095
10.8829
10.9933
11.1418
11.3312
11.5663
11.8543
12.2079
12.6517
13.2356
14.0604
15.334
17.5013
21.7036
31.8509
63.8477
187.73
1060.5
1030.5
183.465
63.2368
31.3774
21.0066
16.698
14.474
13.1622
12.3347
11.7935
11.4309
11.1847
11.0171
10.9055
10.8367
10.8035
10.8029
10.8349
10.904
11.0096
11.1527
11.3363
11.5652
11.8471
12.1951
12.6346
13.2162
14.0416
15.3194
17.4945
21.7061
31.8612
63.8533
187.744
1060.63
1030.51
183.508
63.246
31.4071
21.0558
16.7531
14.5293
13.216
12.3865
11.8434
11.4786
11.2299
11.0595
10.9448
10.8726
10.8358
10.8313
10.8593
10.924
11.0247
11.1625
11.3403
11.5632
11.8391
12.1816
12.6167
13.196
14.0217
15.3034
17.4859
21.7068
31.8698
63.8572
187.756
1060.76
1030.52
183.553
63.2587
31.4392
21.1071
16.8104
14.5871
13.2723
12.4411
11.8959
11.5286
11.277
11.1033
10.9849
10.9087
10.8678
10.8592
10.8828
10.943
11.0388
11.1712
11.3434
11.5604
11.8304
12.1674
12.5982
13.175
14.0008
15.286
17.4757
21.7054
31.8761
63.8584
187.765
1060.88
1030.53
183.601
63.2731
31.4727
21.1602
16.8701
14.6474
13.3313
12.4983
11.951
11.5811
11.3262
11.1486
11.0259
10.9452
10.8998
10.8866
10.9056
10.961
11.0518
11.179
11.3456
11.5568
11.8211
12.1527
12.579
13.1532
13.9794
15.2682
17.464
21.7022
31.8807
63.8582
187.772
1061
1030.54
183.653
63.2911
31.5091
21.2162
16.9328
14.711
13.3936
12.559
12.0095
11.6365
11.3777
11.1956
11.0681
10.9824
10.9319
10.9137
10.9279
10.9783
11.064
11.1859
11.347
11.5526
11.8111
12.1374
12.5593
13.1311
13.9579
15.25
17.4512
21.6974
31.8836
63.8566
187.778
1061.12
1030.55
183.71
63.3133
31.5487
21.2758
16.9995
14.7787
13.4601
12.6236
12.0717
11.6952
11.4319
11.2446
11.1115
11.0202
10.9641
10.9405
10.9494
10.9948
11.0753
11.1919
11.3476
11.5476
11.8005
12.1215
12.5393
13.1089
13.9363
15.2315
17.4374
21.6911
31.885
63.8536
187.782
1061.24
1030.56
183.771
63.3397
31.592
21.3397
17.0712
14.8517
13.5319
12.6935
12.1386
11.758
11.4894
11.296
11.1565
11.0587
10.9964
10.967
10.9705
11.0105
11.0857
11.197
11.3473
11.5418
11.7892
12.1053
12.5191
13.0868
13.9147
15.2127
17.423
21.6836
31.8848
63.8495
187.786
1061.36
1030.57
183.837
63.3711
31.6395
21.4085
17.1485
14.9309
13.6107
12.7699
12.2112
11.8253
11.5504
11.35
11.2032
11.0982
11.0291
10.9932
10.9908
11.0253
11.0952
11.2011
11.3461
11.5352
11.7774
12.0887
12.4989
13.0647
13.8931
15.1937
17.4078
21.6746
31.8827
63.8432
187.787
1061.47
1030.58
183.91
63.4073
31.6907
21.4819
17.2316
15.0169
13.6968
12.8537
12.2902
11.8981
11.6156
11.407
11.2518
11.1387
11.062
11.0192
11.0105
11.0392
11.1035
11.2041
11.3438
11.5277
11.765
12.0717
12.4785
13.0426
13.8716
15.1745
17.392
21.6644
31.8789
63.8354
187.787
1061.59
1030.59
183.989
63.4481
31.7452
21.5595
17.32
15.1092
13.7899
12.9445
12.3761
11.9767
11.6856
11.4676
11.3029
11.1807
11.0955
11.0451
11.0297
11.0522
11.1108
11.206
11.3405
11.5195
11.7519
12.0545
12.4582
13.0208
13.8501
15.1551
17.3756
21.6531
31.8734
63.8262
187.786
1061.71
1030.6
184.071
63.4895
31.8005
21.6395
17.4126
15.2068
13.8892
13.0422
12.4687
12.0615
11.7608
11.5322
11.3568
11.2245
11.13
11.0713
11.0485
11.0645
11.1171
11.2069
11.3363
11.5105
11.7386
12.0373
12.4381
12.9993
13.8291
15.1359
17.359
21.6412
31.8673
63.8171
187.787
1061.82
1030.61
184.156
63.5332
31.8572
21.7219
17.5088
15.3093
13.9945
13.1465
12.5679
12.1526
11.8413
11.6012
11.4141
11.2706
11.1658
11.0979
11.0672
11.0763
11.1227
11.207
11.3314
11.501
11.7249
12.0202
12.4185
12.9785
13.8087
15.1173
17.3429
21.6293
31.861
63.8087
187.789
1061.94
1030.62
184.246
63.5801
31.9157
21.8065
17.6081
15.4159
14.1049
13.2565
12.6731
12.2493
11.9269
11.6744
11.4746
11.3189
11.203
11.1253
11.0861
11.0878
11.1278
11.2063
11.3258
11.491
11.7112
12.0034
12.3996
12.9586
13.7894
15.0998
17.3279
21.6186
31.8564
63.804
187.795
1062.06
1030.63
184.343
63.6326
31.9775
21.8939
17.7106
15.5263
14.2198
13.3716
12.7835
12.3508
12.0168
11.7509
11.5376
11.369
11.2413
11.153
11.1048
11.0988
11.1321
11.205
11.3195
11.4806
11.6973
11.9868
12.3813
12.9398
13.7714
15.0837
17.3142
21.6092
31.8531
63.8017
187.803
1062.19
1030.64
184.443
63.6865
32.0404
21.9832
17.8157
15.64
14.3386
13.491
12.8982
12.4562
12.1097
11.8299
11.6023
11.42
11.2798
11.1806
11.123
11.109
11.1354
11.2025
11.3123
11.4695
11.683
11.9702
12.3633
12.9216
13.7544
15.0688
17.3019
21.6012
31.8518
63.8033
187.816
1062.31
1030.65
184.549
63.7441
32.1062
22.0758
17.9246
15.7578
14.4618
13.6149
13.0169
12.5648
12.205
11.9103
11.6677
11.4712
11.318
11.2075
11.1401
11.1179
11.1374
11.1988
11.3039
11.4573
11.6681
11.9534
12.3457
12.9041
13.7383
15.0551
17.2909
21.5946
31.8522
63.8079
187.832
1062.44
1030.67
184.658
63.8026
32.1731
22.1707
18.037
15.8797
14.5893
13.7429
13.139
12.6758
12.3015
11.9909
11.7326
11.5213
11.3548
11.2326
11.1554
11.1249
11.1375
11.1932
11.2938
11.4438
11.6521
11.936
12.3278
12.8868
13.7227
15.0423
17.2812
21.5897
31.8551
63.8175
187.853
1062.57
1030.68
184.768
63.859
32.2393
22.2669
18.1525
16.0061
14.7217
13.8749
13.2638
12.7879
12.3978
12.0705
11.7958
11.5692
11.3891
11.2552
11.1681
11.1294
11.1351
11.1853
11.2817
11.4286
11.6349
11.9178
12.3096
12.8698
13.7079
15.0306
17.273
21.5868
31.861
63.8324
187.88
1062.71
1030.69
184.877
63.9125
32.3032
22.3633
18.2703
16.1374
14.8589
14.0102
13.3898
12.8996
12.4927
12.1478
11.8561
11.6141
11.4203
11.2745
11.1777
11.1308
11.1298
11.1748
11.2672
11.4113
11.616
11.8983
12.2907
12.8524
13.6933
15.0196
17.2662
21.5861
31.8705
63.8536
187.913
1062.84
1030.71
184.992
63.9642
32.3679
22.4605
18.3901
16.2727
15
14.1474
13.5161
13.0103
12.5854
12.2223
11.9133
11.6555
11.4479
11.2904
11.1838
11.1289
11.1214
11.1613
11.2501
11.3918
11.5953
11.8776
12.271
12.8349
13.6791
15.0097
17.2611
21.5879
31.884
63.8816
187.951
1062.98
1030.72
185.098
64.0087
32.4305
22.5596
18.5115
16.4092
15.1424
14.2859
13.6428
13.1202
12.6763
12.294
11.967
11.6931
11.4715
11.3021
11.1859
11.1231
11.1094
11.1445
11.2299
11.3697
11.5724
11.8551
12.2501
12.8166
13.6646
15
17.2569
21.5913
31.9004
63.9145
187.992
1063.12
1030.73
185.201
64.045
32.4894
22.6589
18.6355
16.5488
15.2875
14.4255
13.7687
13.2273
12.7629
12.3605
12.0151
11.7249
11.4895
11.3086
11.183
11.1128
11.0932
11.1239
11.2064
11.3446
11.5471
11.8307
12.2278
12.7975
13.6497
14.9906
17.2534
21.5962
31.9194
63.9524
188.037
1063.27
1030.75
185.301
64.0798
32.5512
22.7629
18.7639
16.6922
15.4352
14.5659
13.8929
13.3306
12.844
12.4206
12.0563
11.7499
11.5008
11.3088
11.1744
11.0972
11.0721
11.099
11.1791
11.3161
11.5188
11.8039
12.2036
12.7769
13.634
14.9808
17.2503
21.6022
31.9412
63.9958
188.086
1063.41
1030.76
185.396
64.1105
32.6133
22.8711
18.898
16.8412
15.5869
14.7075
14.0152
13.4292
12.9186
12.473
12.0895
11.7669
11.5046
11.302
11.1593
11.0757
11.0458
11.0694
11.1476
11.2842
11.4877
11.7748
12.1777
12.7551
13.6176
14.9709
17.2477
21.6094
31.9657
64.0446
188.14
1063.56
1030.78
185.49
64.1382
32.6768
22.9849
19.0394
16.997
15.7433
14.8504
14.1349
13.5222
12.9855
12.5168
12.1137
11.7751
11.5
11.2874
11.1371
11.0477
11.0138
11.0347
11.1117
11.2483
11.4531
11.7428
12.1494
12.7316
13.6
14.9603
17.2449
21.6175
31.9926
64.0988
188.197
1063.71
1030.79
185.577
64.1616
32.7406
23.1037
19.1888
17.1605
15.9046
14.9936
14.2509
13.6085
13.0441
12.5514
12.1286
11.7743
11.4869
11.2649
11.1076
11.0133
10.9759
10.9949
11.0712
11.2086
11.4153
11.7082
12.119
12.7068
13.5818
14.9493
17.2424
21.6264
32.0217
64.1575
188.257
1063.87
1030.81
185.664
64.1848
32.8064
23.2273
19.348
17.3324
16.0687
15.1347
14.3614
13.6874
13.0942
12.5772
12.1347
11.7648
11.4655
11.2346
11.071
10.9723
10.9321
10.9498
11.0261
11.1647
11.3739
11.6704
12.0861
12.68
13.5621
14.9373
17.2392
21.6355
32.0524
64.2202
188.318
1064.03
1030.82
185.75
64.2069
32.8737
23.3538
19.5125
17.5084
16.2334
15.2731
14.4665
13.7591
13.1361
12.5941
12.1317
11.7465
11.4357
11.1966
11.0273
10.9249
10.8825
10.8995
10.9764
11.1169
11.3291
11.6298
12.051
12.6516
13.5413
14.9243
17.2354
21.6441
32.0829
64.2832
188.377
1064.19
1030.84
185.835
64.2252
32.9409
23.4826
19.6794
17.6863
16.3984
15.4089
14.5661
13.8229
13.1684
12.6008
12.1184
11.7183
11.3967
11.1501
10.976
10.8705
10.8267
10.8436
10.9217
11.0645
11.2803
11.5858
12.0129
12.6205
13.5179
14.9091
17.2295
21.6508
32.1122
64.3459
188.433
1064.35
1030.86
185.914
64.2385
33.0077
23.6138
19.8493
17.8663
16.5622
15.5392
14.6566
13.8753
13.1885
12.5953
12.0935
11.6793
11.3479
11.0948
10.9167
10.8092
10.7649
10.7825
10.8625
11.0083
11.2282
11.5389
11.9724
12.5874
13.4929
14.8925
17.2224
21.6564
32.1409
64.4097
188.49
1064.52
1030.87
185.988
64.2474
33.0749
23.7479
20.0216
18.0468
16.7228
15.662
14.7362
13.9151
13.1953
12.5766
12.0562
11.6289
11.2889
11.0305
10.8495
10.7408
10.6968
10.7159
10.7985
10.9479
11.1724
11.4887
11.9288
12.5513
13.4649
14.8729
17.2122
21.6591
32.1674
64.4725
188.543
1064.69
1030.89
186.054
64.2495
33.1416
23.8856
20.1975
18.2282
16.8791
15.7749
14.8021
13.9391
13.186
12.5427
12.0049
11.5662
11.219
10.9567
10.7741
10.6656
10.623
10.6445
10.7304
10.8841
11.1138
11.4363
11.8833
12.5135
13.4352
14.8517
17.2006
21.6604
32.1931
64.5355
188.596
1064.87
1030.91
186.113
64.2469
33.209
24.0285
20.3779
18.4097
17.0291
15.8755
14.8519
13.9458
13.1597
12.4928
11.9394
11.4908
11.1381
10.8735
10.6907
10.5835
10.5432
10.5681
10.6582
10.8167
11.052
11.3809
11.835
12.4727
13.4025
14.8273
17.1856
21.6581
32.2158
64.5965
188.644
1065.05
1030.93
186.16
64.2343
33.2734
24.1768
20.5642
18.5912
17.1707
15.9611
14.8834
13.9333
13.1151
12.4263
11.8591
11.4026
11.0464
10.7811
10.5997
10.495
10.4584
10.4876
10.5827
10.7468
10.9884
11.3241
11.7854
12.4308
13.3685
14.8015
17.169
21.6542
32.2368
64.6564
188.69
1065.23
1030.94
186.197
64.2117
33.3328
24.3317
20.7567
18.7697
17.3002
16.0293
14.8957
13.9019
13.0527
12.3438
11.7646
11.3023
10.9443
10.68
10.5013
10.4005
10.3685
10.403
10.5038
10.6741
10.9223
11.2649
11.7335
12.3862
13.3314
14.7722
17.1486
21.6461
32.2541
64.7126
188.73
1065.41
1030.96
186.219
64.1654
33.3792
24.4877
20.9516
18.9435
17.418
16.0821
14.8907
13.8529
12.9733
12.2456
11.6564
11.1901
10.8322
10.5706
10.3961
10.3006
10.2746
10.3154
10.4228
10.6001
10.8554
11.2053
11.6812
12.3412
13.2936
14.742
17.1267
21.636
32.2685
64.7657
188.767
1065.6
1030.98
186.169
64.0519
33.3982
24.6356
21.1447
19.1144
17.5278
16.1212
14.8684
13.7854
12.876
12.131
11.5336
11.0654
10.7096
10.4525
10.284
10.1951
10.1762
10.2243
10.3391
10.5238
10.7865
11.1438
11.6268
12.2935
13.2524
14.7076
17.1001
21.6205
32.2776
64.8131
188.795
1065.79
1030.99
185.624
63.7678
33.3747
24.7819
21.3429
19.2831
17.6255
16.1416
14.8248
13.6965
12.759
11.999
11.396
10.9283
10.5769
10.3263
10.1654
10.0848
10.0743
10.131
10.2543
10.4472
10.7179
11.0829
11.5731
12.2462
13.2112
14.6728
17.0724
21.603
32.2838
64.8571
188.823
1065.99
1031.01
183.362
63.2349
33.3325
24.9384
21.5472
19.448
17.7103
16.1434
14.7603
13.5873
12.6232
11.8505
11.2442
10.7794
10.4344
10.1923
10.0407
9.96966
9.96892
10.0351
10.1675
10.3692
10.6482
11.0207
11.5177
12.1966
13.1666
14.6336
17.0393
21.5792
32.2831
64.8929
188.839
1066.18
1031.03
180.837
62.8174
33.3612
25.1277
21.7636
19.6093
17.7794
16.1229
14.6714
13.4544
12.4663
11.6839
11.0775
10.6183
10.2823
10.0508
9.91035
9.85058
9.86103
9.93799
10.0807
10.2921
10.5801
10.9607
11.4645
12.1488
13.1234
14.5952
17.0064
21.5546
32.2803
64.9259
188.856
1066.39
1031.04
179.54
62.6363
33.4412
25.3295
21.9799
19.7599
17.829
16.0779
14.557
13.2977
12.2884
11.4996
10.8961
10.4454
10.1208
9.90189
9.77431
9.72727
9.75012
9.83885
9.99257
10.2141
10.5113
10.8999
11.4103
12.0992
13.077
14.5524
16.9676
21.5229
32.2699
64.9496
188.861
1066.59
1031.06
178.926
62.5303
33.5374
25.5416
22.1989
19.9012
17.8584
16.0068
14.4153
13.1157
12.0886
11.2971
10.7002
10.2611
9.95048
9.74653
9.63375
9.60113
9.63793
9.73979
9.90566
10.1383
10.4454
10.8427
11.3601
12.0542
13.0354
14.513
16.9312
21.4925
32.2594
64.9731
188.87
1066.81
1031.08
178.63
62.472
33.6511
25.7622
22.4166
20.0286
17.8643
15.9079
14.2458
12.9086
11.8675
11.0771
10.4902
10.0657
9.77174
9.5848
9.48852
9.47173
9.52364
9.63958
9.81831
10.0624
10.3796
10.7853
11.3094
12.0079
12.991
14.4688
16.8881
21.4537
32.2393
64.9839
188.863
1067.01
1031.09
178.484
62.4295
33.7731
25.9896
22.632
20.1407
17.8447
15.7799
14.0481
12.6755
11.6247
10.8398
10.2668
9.86023
9.58562
9.41803
9.34023
9.34099
9.40958
9.54104
9.73394
9.99075
10.319
10.7339
11.265
11.9684
12.9532
14.4307
16.8504
21.4191
32.2217
64.9969
188.864
1067.25
1031.11
178.414
62.3997
33.9049
26.2231
22.8414
20.2318
17.7946
15.6193
13.8202
12.4169
11.3613
10.5865
10.031
9.64539
9.39256
9.24627
9.18852
9.20813
9.29446
9.44227
9.64995
9.91981
10.2591
10.683
11.2205
11.9274
12.9123
14.3875
16.8057
21.3759
32.1941
64.9963
188.848
1067.45
1031.12
178.375
62.3691
34.0422
26.4616
23.0419
20.2979
17.7109
15.4242
13.5616
12.1331
11.0783
10.3182
9.78427
9.42264
9.19416
9.07134
9.03549
9.07561
9.18126
9.34688
9.5707
9.8549
10.2065
10.6404
11.1851
11.8959
12.8809
14.3534
16.7695
21.3396
32.1708
64.9993
188.841
1067.71
1031.13
178.352
62.3432
34.1876
26.7034
23.2278
20.3336
17.5918
15.1955
13.2746
11.8271
10.7783
10.0372
9.52801
9.19296
8.99085
8.89312
8.88044
8.94211
9.06792
9.25201
9.49238
9.79104
10.1549
10.5982
11.1492
11.8627
12.846
14.3138
16.726
21.2949
32.139
64.9914
188.821
1067.92
1031.15
178.331
62.3167
34.3401
26.9439
23.394
20.3366
17.438
14.9349
12.9607
11.4998
10.4619
9.74418
9.26323
8.95755
8.7841
8.71345
8.7257
8.81052
8.9581
9.16225
9.42075
9.73537
10.1127
10.5669
11.1256
11.8427
12.8247
14.288
16.6958
21.2619
32.1162
64.9933
188.821
1068.19
1031.16
178.311
62.2904
34.491
27.1732
23.5418
20.3148
17.2546
14.6447
12.6216
11.1526
10.1302
9.43987
8.99024
8.71624
8.57326
8.53111
8.56938
8.67821
8.84826
9.073
9.34993
9.68058
10.0712
10.5353
11.1
11.8188
12.7976
14.2544
16.6564
21.219
32.0836
64.9816
188.802
1068.4
1031.17
178.273
62.2538
34.643
27.3994
23.6689
20.2569
17.0305
14.3173
12.2526
10.7836
9.78345
9.12531
8.71043
8.47072
8.36034
8.34851
8.4144
8.54871
8.74271
8.98959
9.28657
9.63491
10.0405
10.5165
11.0893
11.8113
12.7879
14.2389
16.635
21.1916
32.0609
64.9782
188.794
1068.69
1031.18
178.23
62.2213
34.7944
27.6099
23.7684
20.1658
16.7737
13.962
11.8622
10.3997
9.4269
8.80396
8.42577
8.22167
8.1449
8.16419
8.25824
8.41835
8.63646
8.90541
9.22214
9.58752
10.0071
10.4935
11.0726
11.7966
12.7706
14.2149
16.6022
21.1546
32.0345
64.9688
188.768
1068.9
1031.19
178.167
62.179
34.9459
27.8103
23.8394
20.0339
16.4746
13.5716
11.4469
10
9.06075
8.47663
8.13761
7.97092
7.92931
7.98119
8.10478
8.29208
8.53587
8.82871
9.16722
9.55197
9.98808
10.4878
11.0763
11.8051
12.779
14.2168
16.592
21.1331
32.0129
64.9601
188.761
1069.21
1031.2
178.097
62.1403
35.0949
27.9883
23.8722
19.8589
16.1381
13.1545
11.0155
9.59214
8.6911
8.14802
7.84869
7.7194
7.71285
7.79721
7.95019
8.16439
8.43349
8.74973
9.10934
9.51245
9.96376
10.4751
11.071
11.8027
12.7745
14.2045
16.5681
21.1016
31.9885
64.9518
188.743
1069.42
1031.21
177.999
62.0888
35.2418
28.1481
23.8653
19.6338
15.7554
12.7041
10.5651
9.17596
8.31953
7.8205
7.56188
7.47037
7.49929
7.61685
7.80019
8.04256
8.33867
8.68045
9.0638
9.4884
9.95843
10.4852
11.0924
11.8301
12.802
14.2245
16.5742
21.0947
31.9812
64.959
188.752
1069.75
1031.22
177.892
62.0429
35.387
28.2812
23.812
19.3581
15.332
12.2293
10.1054
8.76043
7.95312
7.4988
7.27957
7.22385
7.2863
7.4355
7.64801
7.91754
8.23972
8.60607
9.01198
9.45662
9.94362
10.4839
11.1001
11.8416
12.8116
14.2263
16.5644
21.0775
31.9712
64.9597
188.733
1069.97
1031.22
177.747
61.9808
35.5303
28.3925
23.7114
19.0245
14.858
11.7218
9.63189
8.34426
7.59268
7.18515
7.00492
6.98361
7.07834
7.25865
7.50068
7.79851
8.14869
8.54216
8.9738
9.44219
9.95029
10.5084
11.1378
11.8861
12.8555
14.2608
16.5829
21.0802
31.9701
64.97
188.749
1070.32
1031.23
177.595
61.9315
35.6767
28.4794
23.5663
18.6437
14.3476
11.1956
9.15657
7.93768
7.24686
6.88451
6.73903
6.74722
6.86944
7.07749
7.34712
7.67208
8.04932
8.46881
8.92469
9.41495
9.94196
10.5159
11.1564
11.9102
12.8786
14.2763
16.5871
21.0767
31.9745
64.9876
188.746
1070.53
1031.23
177.404
61.8736
35.827
28.5472
23.3772
18.2111
13.7964
10.6484
8.67842
7.53863
6.90786
6.59064
6.48203
6.52103
6.67003
6.90382
7.20036
7.55346
7.96024
8.40913
8.89317
9.4096
9.96087
10.5551
11.2101
11.9714
12.9391
14.3274
16.6232
21.0978
31.9885
64.9748
188.458
1070.92
1031.23
177.225
61.8486
35.9858
28.5928
23.1518
17.7472
13.2306
10.105
8.21393
7.14997
6.57545
6.30246
6.23096
6.30125
6.47631
6.73215
7.05027
7.42727
7.86071
8.33689
8.84711
9.38764
9.9614
10.5741
11.2416
12.0084
12.9734
14.3505
16.6291
21.0825
31.9357
64.7563
187.253
1071.1
1031.23
177.02
61.8161
36.1434
28.6125
22.8811
17.239
12.6381
9.55702
7.75906
6.76832
6.24787
6.02059
5.98851
6.09337
6.29807
6.57722
6.91544
7.31548
7.77658
8.28259
8.82243
9.3909
9.99155
10.6268
11.3099
12.0844
13.0474
14.4113
16.6643
21.0766
31.8587
64.4504
185.678
1071.55
1031.22
176.834
61.813
36.2945
28.5973
22.5766
16.7181
12.0584
9.03628
7.3283
6.40358
5.93194
5.74644
5.75093
5.88865
6.12231
6.42525
6.78075
7.19633
7.67915
8.21146
8.77858
9.37297
9.99898
10.6553
11.3522
12.1327
13.0927
14.444
16.6736
21.05
31.7777
64.1781
184.411
1071.69
1031.22
176.614
61.7942
36.4242
28.5298
22.2075
16.1478
11.4636
8.53334
6.91125
6.04941
5.62936
5.48653
5.52758
5.6982
5.96254
6.29154
6.66587
7.09753
7.60148
8.16177
8.75996
9.38819
10.046
10.7281
11.4441
12.2356
13.1964
14.5351
16.7341
21.0599
31.7271
63.9805
183.371
1072.21
1031.21
176.414
61.7862
36.5086
28.3881
21.788
15.5685
10.8877
8.05939
6.52584
5.72627
5.35435
5.24866
5.31947
5.51563
5.80464
6.15473
6.54399
6.98559
7.50079
8.08334
8.71009
9.37111
10.0586
10.7627
11.4941
12.2949
13.2586
14.5947
16.7879
21.1107
31.7859
63.97
182.795
1072.31
1031.2
176.116
61.708
36.5189
28.1342
21.2529
14.9089
10.2747
7.57643
6.14828
5.42287
5.10686
5.04272
5.14479
5.36558
5.67649
6.04505
6.44773
6.90027
7.42539
8.02618
8.68946
9.39499
10.1212
10.855
11.6088
12.4252
13.3953
14.724
16.8925
21.1835
31.8619
64.035
182.399
1072.94
1031.19
175.824
61.6198
36.4399
27.7592
20.6392
14.2355
9.68673
7.1114
5.78315
5.13442
4.87718
4.8575
4.99294
5.23824
5.56696
5.94996
6.35961
6.81162
7.33098
7.93179
8.61949
9.36222
10.1223
10.8803
11.6492
12.478
13.466
14.8249
17.0404
21.4003
32.1734
64.3451
182.266
1073
1031.18
175.344
61.4143
36.2339
27.2262
19.8788
13.4652
9.05451
6.62636
5.41259
4.85145
4.66065
4.69326
4.87199
5.15421
5.51403
5.92197
6.34539
6.8007
7.32134
7.9221
8.61703
9.38778
10.187
10.983
11.7787
12.6169
13.5943
14.9247
17.0996
21.4237
32.2106
64.3654
182.011
1073.75
1031.16
174.899
61.2046
35.8903
26.5346
19.0589
12.7353
8.49777
6.20878
5.09305
4.60386
4.4657
4.5393
4.75416
5.07104
5.45569
5.88253
6.33219
6.80967
7.34451
7.94282
8.62195
9.37963
10.1724
10.9673
11.7736
12.638
13.6543
15.0287
17.2496
21.6278
32.4751
64.567
181.907
1073.76
1031.14
174.208
60.8054
35.3453
25.6272
18.0742
11.9269
7.92718
5.80921
4.80585
4.39579
4.3145
4.43239
4.68711
5.03443
5.4317
5.86673
6.33818
6.86415
7.46122
8.11649
8.84005
9.63429
10.4561
11.2458
12.0035
12.7962
13.7408
15.0491
17.1945
21.4702
32.1927
64.082
181.284
1074.6
1031.11
173.761
60.5029
34.6035
24.5137
17.0768
11.2669
7.52131
5.52143
4.57332
4.1961
4.13792
4.27736
4.55226
4.906
5.30219
5.74025
6.21788
6.74528
7.35093
8.0499
8.8288
9.68214
10.5883
11.4667
12.2584
13.0026
13.8379
15.017
17.0398
21.2043
31.8098
63.5995
180.91
1074.42
1031.07
173.079
59.941
33.5015
22.9444
15.6707
10.3624
7.03005
5.2348
4.36447
4.00799
3.94676
4.07989
4.35433
4.71275
5.13251
5.61164
6.14204
6.7209
7.35843
8.08258
8.92698
9.87704
10.9039
11.9555
12.9245
13.7647
14.5584
15.5758
17.3902
21.3599
31.804
63.4128
180.626
1075.33
1031.04
172.584
59.3574
32.0901
21.0906
14.1778
9.5574
6.73265
5.15648
4.32956
3.93427
3.79397
3.8222
3.99007
4.2745
4.63936
5.09241
5.62951
6.23909
6.9107
7.64474
8.47059
9.44739
10.5567
11.7096
12.8467
13.8999
14.8442
15.8166
17.3462
20.8775
30.8871
62.3941
180.106
1075.01
1030.99
171.794
58.5351
30.3964
18.8658
12.2911
8.4457
6.31336
5.14349
4.48903
4.12698
3.94664
3.89683
3.96064
4.13817
4.41798
4.78975
5.27039
5.86522
6.5709
7.37765
8.28322
9.32018
10.5522
11.883
13.1625
14.3842
15.5877
16.9064
18.7928
22.6097
32.8076
64.2895
181.412
1076.09
1030.93
170.813
57.5949
28.734
17.0358
11.0167
7.91581
6.34381
5.51121
5.02708
4.70832
4.47459
4.29781
4.17848
4.13324
4.18739
4.35541
4.63069
5.01988
5.54219
6.20969
7.03227
8.02149
9.22993
10.7122
12.267
13.6714
14.906
16.117
17.7824
21.221
30.774
61.5286
178.888
1075.9
1030.87
171.579
57.6614
27.4532
15.5749
10.1716
7.68932
6.51439
5.90577
5.54516
5.30048
5.11514
4.96146
4.82526
4.70524
4.61762
4.59664
4.68501
4.90142
5.24238
5.71722
6.34641
7.1637
8.21821
9.60473
11.3823
13.343
15.2414
17.0444
19.1669
23.0194
33.1361
64.6517
182.094
1077.03
1030.83
170.378
55.3967
24.7937
13.8612
9.66405
7.95235
7.11411
6.58192
6.17645
5.8484
5.58432
5.37448
5.20646
5.06545
4.9429
4.85267
4.82813
4.91002
5.12997
5.51366
6.07908
6.84273
7.82899
9.07306
10.6019
12.3849
14.3193
16.3459
18.7092
22.5871
32.3241
63.2643
181.166
1077.2
1030.81
168.611
51.4666
21.7827
13.2552
10.6522
9.57182
8.84102
8.18108
7.54348
6.93586
6.37646
5.87932
5.44941
5.08366
4.7754
4.52012
4.31998
4.18401
4.12521
4.15884
4.30169
4.57233
4.99922
5.62585
6.51447
7.7771
9.49904
11.6162
14.4501
19.8311
33.2668
69.4388
189.146
1078.42
1030.69
150.558
37.5928
17.1097
14.3034
13.6513
12.9608
12.1848
11.3857
10.5987
9.84728
9.15332
8.53709
8.01619
7.60519
7.31645
7.16229
7.15907
7.33953
7.66186
8.15792
8.85279
9.77569
10.9634
12.4638
14.3449
16.7092
19.7153
23.6798
29.283
38.0562
53.7302
87.9742
200.417
1079.77
526.856
24.1778
24.4067
24.4555
24.4775
24.4922
24.5012
24.5055
24.5061
24.5036
24.4985
24.4913
24.4822
24.4717
24.46
24.4472
24.4336
24.4192
24.4039
24.3877
24.3703
24.3517
24.3314
24.309
24.2843
24.257
24.2271
24.1953
24.1638
24.1369
24.1215
24.1241
24.1463
24.1855
555.589
526.413
22.9932
22.9959
22.9989
23.0021
23.0056
23.0095
23.0137
23.0183
23.0231
23.0282
23.0333
23.0384
23.0435
23.0483
23.0529
23.0572
23.0611
23.0645
23.0674
23.0698
23.0714
23.0724
23.0725
23.0717
23.07
23.0674
23.064
23.0604
23.058
23.0592
23.0688
23.0929
23.134
531.484
1029.84
172.525
62.607
32.9582
21.4966
15.9091
12.6969
10.6181
9.15823
8.07647
7.2483
6.6036
6.10027
5.71169
5.42039
5.21466
5.0865
5.03247
5.04196
5.11068
5.237
5.41792
5.64946
5.92635
6.24149
6.58521
6.94503
7.3089
7.69561
8.3345
10.3942
18.16
46.0385
160.139
1040.53
1029.84
174.233
64.8076
35.2009
23.5742
17.753
14.3276
12.0947
10.5413
9.4094
8.55232
7.88046
7.33697
6.88478
6.49889
6.16226
5.86447
5.60646
5.38546
5.1982
5.0411
4.9159
4.82585
4.77544
4.76996
4.81461
4.9136
5.07522
5.36516
6.17713
9.10185
18.9235
49.7627
165.836
1041.17
1029.85
175.369
65.577
35.0449
22.464
15.9284
12.1013
9.72567
8.19103
7.15456
6.41625
5.86134
5.42626
5.07692
4.79502
4.56974
4.39294
4.25753
4.15764
4.08516
4.03342
3.99691
3.97228
3.95905
3.96021
3.9837
4.04981
4.22243
4.71806
6.21198
10.5104
22.0109
53.8852
169.595
1041.97
1029.87
173.451
62.655
31.6045
19.0452
13.0243
9.96351
8.32851
7.35336
6.67415
6.13367
5.66878
5.25624
4.88953
4.56901
4.2971
4.07569
3.9041
3.77881
3.69351
3.63987
3.60863
3.5916
3.58442
3.59051
3.62832
3.74904
4.08284
4.95125
7.10539
12.19
24.1166
55.7636
170.775
1042.85
1029.88
172.677
61.6956
30.8755
18.7511
13.1438
10.3365
8.80055
7.84359
7.1581
6.60894
6.13551
5.71044
5.32251
4.96849
4.64922
4.36779
4.12803
3.93235
3.78044
3.66994
3.59595
3.5526
3.53611
3.55131
3.62442
3.82646
4.32109
5.46036
7.95535
13.254
25.0293
56.253
170.965
1043.59
1029.88
172.289
61.1949
30.3681
18.3273
12.8625
10.1863
8.72551
7.79373
7.10818
6.54958
6.0638
5.62828
5.23618
4.88409
4.56896
4.2904
4.04997
3.84974
3.69148
3.57662
3.50557
3.479
3.50064
3.58307
3.76035
4.11296
4.81426
6.20345
8.9084
14.2235
25.7596
56.7085
171.371
1044.32
1029.89
171.984
60.8845
30.1586
18.2497
12.8945
10.2844
8.86013
7.95342
7.28927
6.74919
6.27695
5.84797
5.45474
5.09506
4.76666
4.46901
4.20426
3.97526
3.78566
3.64092
3.54702
3.51194
3.54861
3.68065
3.95384
4.45532
5.34806
6.92621
9.71909
14.8975
26.0703
56.72
171.453
1044.95
1029.89
172.288
61.2465
30.4771
18.5263
13.1533
10.5207
9.05705
8.10567
7.40199
6.83191
6.34135
5.90602
5.51561
5.16261
4.84099
4.54864
4.28658
4.05663
3.8624
3.71121
3.61253
3.5801
3.63509
3.81221
4.17305
4.82171
5.91311
7.68707
10.5692
15.6314
26.5268
57.0238
171.892
1045.55
1029.9
172.233
61.1479
30.338
18.4059
13.0867
10.4972
9.05782
8.12209
7.4315
6.87342
6.39405
5.96917
5.5885
5.24441
4.93078
4.64543
4.3895
4.16423
3.97288
3.82399
3.72889
3.70482
3.77876
3.99443
4.42835
5.20362
6.47451
8.43142
11.3949
16.3337
26.9394
57.2648
172.248
1046.1
1029.91
172.454
61.3898
30.5447
18.6021
13.288
10.6878
9.22104
8.25386
7.53633
6.95912
6.46891
6.04085
5.66195
5.32219
5.01462
4.73658
4.48918
4.27289
4.09039
3.95115
3.86783
3.86007
3.95906
4.21545
4.7181
5.60709
7.0389
9.16293
12.205
17.0397
27.3971
57.5959
172.69
1046.62
1029.91
172.511
61.3973
30.4857
18.5459
13.2724
10.6976
9.23779
8.27258
7.5578
6.98512
6.50145
6.08106
5.71074
5.38068
5.08369
4.81713
4.58249
4.37981
4.21126
4.08731
4.02172
4.03605
4.16469
4.46395
5.03283
6.02382
7.59513
9.8626
12.9694
17.703
27.8235
57.8978
173.088
1047.12
1029.92
172.628
61.4833
30.5328
18.6087
13.3672
10.8016
9.33333
8.35488
7.62905
7.04975
6.56385
6.14464
5.77799
5.45362
5.16416
4.90706
4.68434
4.49548
4.34194
4.23522
4.19003
4.2295
4.39065
4.73469
5.36867
6.45256
8.14364
10.529
13.6829
18.3195
28.2274
58.2012
173.484
1047.59
1029.93
172.716
61.5123
30.5049
18.5975
13.3961
10.8469
9.3778
8.39577
7.66868
7.09107
6.60925
6.19568
5.83599
5.52006
5.24056
4.99517
4.78648
4.61366
4.47745
4.39032
4.36796
4.43487
4.63029
5.0198
5.71676
6.88407
8.67511
11.1525
14.3348
18.8766
28.5903
58.4785
173.851
1048.04
1029.94
172.804
61.5349
30.4856
18.6065
13.4455
10.9107
9.44033
8.4538
7.72398
7.14651
6.6673
6.25814
5.90404
5.59512
5.32444
5.09
4.89506
4.73847
4.62018
4.55353
4.55511
4.65064
4.88128
5.31661
6.07464
7.31693
9.18972
11.7343
14.9264
19.3762
28.9187
58.7429
174.204
1048.47
1029.94
172.912
61.5594
30.4628
18.6131
13.4918
10.9694
9.49711
8.50713
7.77636
7.20077
6.72565
6.32206
5.97431
5.67289
5.41146
5.18845
5.0077
4.86792
4.76828
4.72282
4.74903
4.87372
5.13962
5.61997
6.43595
7.74401
9.68072
12.2692
15.4547
19.8169
29.21
58.9875
174.536
1048.87
1029.95
173.04
61.5788
30.4369
18.6195
13.536
11.0255
9.55284
8.56121
7.83093
7.25837
6.78821
6.39073
6.04955
5.75553
5.50315
5.29142
5.12472
5.00174
4.92095
4.89689
4.94796
5.1021
5.40395
5.92946
6.79934
8.16358
10.1479
12.7598
15.9242
20.2045
29.473
59.2239
174.856
1049.27
1029.96
173.222
61.6141
30.4229
18.6388
13.5905
11.0888
9.61419
8.62026
7.8903
7.32085
6.8559
6.46486
6.13065
5.84389
5.60013
5.39947
5.24649
5.13998
5.07796
5.07512
5.15066
5.33358
5.67064
6.23961
7.15783
8.568
10.5844
13.2016
16.3335
20.5385
29.7028
59.44
175.151
1049.64
1029.97
173.49
61.6701
30.4203
18.665
13.6457
11.1499
9.67333
8.67799
7.94942
7.38418
6.92557
6.54221
6.2162
5.93773
5.70338
5.51474
5.37496
5.28285
5.23902
5.25696
5.35645
5.56735
5.93843
6.54855
7.5099
8.95642
10.9906
13.5969
16.687
20.8246
29.9078
59.6473
175.434
1049.99
1029.98
173.922
61.772
30.4424
18.7083
13.7116
11.218
9.73796
8.7406
8.0131
7.45189
6.99969
6.6244
6.30734
6.03829
5.81422
5.6372
5.50922
5.43028
5.40343
5.44129
5.56406
5.80266
6.20693
6.85403
7.85137
9.32395
11.3628
13.9447
16.9863
21.0651
30.0874
59.8401
175.697
1050.33
1029.99
174.645
61.9522
30.4978
18.7659
13.7809
11.2853
9.80111
8.80243
8.07667
7.52005
7.07488
6.70839
6.40124
6.14288
5.93068
5.76566
5.64898
5.58295
5.57164
5.62836
5.7734
6.03854
6.47388
7.1538
8.18033
9.66924
11.7007
14.2468
17.2354
21.2641
30.2448
60.0213
175.944
1050.65
1029.99
175.894
62.2568
30.5933
18.8368
13.8536
11.3536
9.86565
8.86642
8.14288
7.59104
7.15298
6.79534
6.49841
6.25164
6.05154
5.89783
5.79239
5.73888
5.74247
5.8173
5.98409
6.27467
6.73786
7.44545
8.49388
9.98963
12.003
14.5041
17.4368
21.4243
30.3801
60.1877
176.171
1050.95
1030
177.926
62.706
30.7148
18.9069
13.9203
11.417
9.92742
8.92943
8.20932
7.66298
7.23231
6.8835
6.59662
6.36135
6.17354
6.03173
5.93854
5.89834
5.9172
6.00947
6.19641
6.50968
6.99694
7.72712
8.79073
10.2851
12.2713
14.72
17.5956
21.5505
30.4975
60.3435
176.383
1051.24
1030.01
180.199
63.1196
30.7905
18.9518
13.9756
11.4764
9.98901
8.99405
8.27821
7.73774
7.31459
6.97468
6.69797
6.47385
6.29758
6.16764
6.08679
6.06
6.09389
6.20278
6.40821
6.7417
7.24948
7.99734
9.0698
10.5553
12.507
14.8979
17.7161
21.6459
30.5968
60.4852
176.577
1051.52
1030.02
180.749
63.1531
30.7593
18.9679
14.0235
11.5347
10.0513
9.06006
8.34874
7.81421
7.39859
7.06751
6.80091
6.58781
6.42287
6.30478
6.23624
6.22271
6.27124
6.39609
6.61859
6.96991
7.49491
8.25593
9.33146
10.8016
12.7127
15.042
17.8034
21.7147
30.6804
60.6149
176.755
1051.79
1030.03
180.784
63.1332
30.7401
18.9979
14.0792
11.5972
10.1167
9.12875
8.42183
7.89319
7.48496
7.16249
6.90568
6.70331
6.54944
6.44292
6.3864
6.3857
6.44819
6.58799
6.82596
7.19286
7.73202
8.50207
9.5756
11.025
12.8908
15.1562
17.8623
21.7606
30.7495
60.7318
176.918
1052.05
1030.04
180.845
63.1261
30.7234
19.0264
14.1327
11.6585
10.182
9.19809
8.49613
7.97372
7.57306
7.2593
7.01208
6.8199
6.6768
6.58153
6.53663
6.54823
6.62394
6.77764
7.02979
7.41025
7.96053
8.7358
9.80285
11.2269
13.0442
15.2447
17.8976
21.7875
30.8064
60.8379
177.069
1052.3
1030.05
180.905
63.1161
30.7089
19.0588
14.1892
11.7224
10.2496
9.2696
8.57248
8.05615
7.66284
7.35753
7.11963
6.93735
6.80468
6.72025
6.68648
6.70976
6.79784
6.9643
7.22911
7.62098
8.17962
8.95672
10.0135
11.4088
13.1754
15.3113
17.9132
21.7987
30.8526
60.9338
177.209
1052.54
1030.06
180.964
63.1068
30.697
19.0927
14.2458
11.7864
10.3176
9.34182
8.64978
8.13964
7.75367
7.45667
7.22787
7.05522
6.93264
6.85862
6.83548
6.86977
6.96932
7.14737
7.42329
7.82452
8.38893
9.16484
10.2082
11.5721
13.2868
15.3592
17.9131
21.7975
30.8903
61.0217
177.344
1052.77
1030.07
181.023
63.0977
30.688
19.1292
14.3042
11.8518
10.3869
9.41541
8.72843
8.22442
7.84564
7.55673
7.33674
7.1734
7.06049
6.99641
6.98332
7.02789
7.13799
7.32642
7.6119
8.0207
8.58854
9.36044
10.3876
11.7181
13.3807
15.3913
17.9003
21.7864
30.9211
61.1027
177.476
1052.99
1030.08
181.082
63.0896
30.6818
19.1675
14.3631
11.9175
10.4567
9.48948
8.80767
8.30985
7.93821
7.65725
7.44581
7.29145
7.18784
7.13321
7.1296
7.18374
7.30344
7.50107
7.79463
8.20916
8.77821
9.54369
10.5525
11.8483
13.4589
15.4102
17.8774
21.7675
30.9465
61.1788
177.613
1053.21
1030.09
181.142
63.0829
30.6787
19.2078
14.4229
11.9839
10.5271
9.56425
8.8876
8.39589
8.03126
7.75805
7.55489
7.40919
7.31444
7.26877
7.27402
7.33698
7.46535
7.671
7.97119
8.38969
8.95789
9.7148
10.7035
11.9637
13.5233
15.4177
17.8464
21.7427
30.9676
61.2518
177.762
1053.43
1030.1
181.201
63.0754
30.6765
19.2481
14.4821
12.0498
10.5972
9.63884
8.96747
8.4819
8.12424
7.85866
7.66356
7.52619
7.43991
7.40269
7.41623
7.48729
7.62341
7.83596
8.14141
8.56226
9.12784
9.8744
10.8414
12.0655
13.5751
15.4155
17.8086
21.7129
30.9858
61.3247
177.941
1053.64
1030.11
181.262
63.0666
30.672
19.2864
14.5399
12.1149
10.667
9.71335
9.04736
8.56795
8.21719
7.95905
7.77174
7.64235
7.56411
7.53483
7.55604
7.63447
7.77744
7.9958
8.30519
8.72688
9.28829
10.0229
10.9671
12.155
13.616
15.4052
17.7659
21.6797
31.0023
61.4018
178.177
1053.84
1030.12
181.32
63.0542
30.6681
19.3254
14.5977
12.1799
10.7368
9.78793
9.12732
8.65406
8.31009
8.0592
7.8794
7.75763
7.68697
7.66512
7.69341
7.77849
7.92746
8.1506
8.46275
8.88392
9.43972
10.1611
11.0816
12.2332
13.647
15.3879
17.7188
21.6439
31.0191
61.4911
178.523
1054.04
1030.13
181.375
63.0411
30.6658
19.3657
14.6563
12.2455
10.807
9.86275
9.20741
8.7402
8.40289
8.15903
7.98644
7.8719
7.80838
7.79343
7.82819
7.91925
8.0734
8.30037
8.61416
9.03359
9.58252
10.2895
11.1856
12.3013
13.6695
15.3647
17.6686
21.6066
31.039
61.6085
179.088
1054.23
1030.14
181.426
63.0271
30.6647
19.4062
14.7146
12.3106
10.8767
9.93704
9.28692
8.82573
8.49502
8.25803
8.09241
7.98479
7.92801
7.91949
7.9602
8.05661
8.21521
8.44517
8.75967
9.17632
9.71735
10.4091
11.2806
12.3611
13.6857
15.3379
17.6167
21.57
31.0691
61.7835
180.082
1054.42
1030.15
181.478
63.0146
30.6658
19.4475
14.7728
12.3755
10.9461
10.0109
9.36592
8.91063
8.58635
8.35604
8.19713
8.0961
8.04567
8.04313
8.08928
8.19045
8.35285
8.58504
8.8994
9.31243
9.84476
10.5208
11.3673
12.4126
13.694
15.3051
17.5648
21.5398
31.1193
62.0861
181.901
1054.6
1030.16
181.531
63.0039
30.6691
19.4894
14.8306
12.4397
11.0146
10.0839
9.44398
8.99446
8.67644
8.45261
8.30017
8.20544
8.16101
8.16405
8.21519
8.32065
8.48626
8.72005
9.0336
9.44228
9.96521
10.6248
11.4461
12.4564
13.6961
15.2706
17.5183
21.5271
31.2252
62.5791
184.364
1054.79
1030.17
181.586
62.995
30.6745
19.5318
14.8879
12.503
11.0822
10.1558
9.52096
9.0771
8.76511
8.54752
8.40129
8.31257
8.27382
8.28208
8.33781
8.4471
8.61545
8.8503
9.16245
9.56618
10.0791
10.722
11.518
12.4943
13.6953
15.2384
17.4815
21.532
31.349
62.9915
185.82
1054.97
1030.18
181.64
62.9871
30.6814
19.5744
14.9447
12.5655
11.1486
10.2265
9.59661
9.15826
8.85211
8.64051
8.50021
8.41719
8.38379
8.39691
8.45687
8.56958
8.74023
8.97567
9.28595
9.68425
10.1869
10.8128
11.584
12.5278
13.6932
15.2088
17.4491
21.5347
31.4276
63.1706
186.131
1055.15
1030.19
181.695
62.9809
30.6903
19.6173
15.001
12.6272
11.2141
10.296
9.67091
9.23785
8.93726
8.73133
8.59665
8.519
8.4906
8.50822
8.57203
8.6878
8.86035
9.096
9.40403
9.7966
10.2887
10.8979
11.6451
12.5581
13.6905
15.1809
17.4174
21.5282
31.4659
63.2409
186.218
1055.33
1030.2
181.751
62.9761
30.7007
19.6604
15.0567
12.6879
11.2785
10.3643
9.74374
9.31572
9.02039
8.8198
8.69036
8.61771
8.59393
8.61567
8.68295
8.80139
8.97549
9.21102
9.51653
9.90324
10.3849
10.9779
11.7021
12.5862
13.688
15.1546
17.3857
21.5145
31.4813
63.2726
186.275
1055.5
1030.21
181.808
62.9729
30.7126
19.7036
15.1119
12.7479
11.3419
10.4313
9.81513
9.39188
9.10146
8.90583
8.78123
8.71317
8.69359
8.71904
8.78939
8.91014
9.08543
9.32056
9.62339
10.0042
10.4758
11.0533
11.7559
12.6131
13.6865
15.1308
17.3551
21.4972
31.4859
63.2903
186.327
1055.68
1030.22
181.865
62.9706
30.7256
19.7468
15.1664
12.807
11.4042
10.4972
9.88506
9.46629
9.18043
8.98935
8.86915
8.80521
8.7894
8.81814
8.89116
9.01382
9.18998
9.42445
9.7245
10.0996
10.5615
11.1244
11.807
12.6395
13.6867
15.11
17.327
21.4794
31.4861
63.3027
186.377
1055.86
1030.23
181.922
62.9689
30.7392
19.7895
15.2201
12.8651
11.4655
10.5617
9.95353
9.53896
9.25733
9.07038
8.95413
8.89386
8.88134
8.91293
8.98821
9.11243
9.28913
9.52273
9.81993
10.1895
10.6423
11.1917
11.8558
12.6657
13.6893
15.0933
17.3027
21.4636
31.4858
63.3143
186.429
1056.04
1030.24
181.98
62.9682
30.7537
19.8319
15.273
12.9222
11.5256
10.6249
10.0205
9.60985
9.33211
9.14892
9.03618
8.97912
8.96945
9.00343
9.08057
9.20596
9.38291
9.61545
9.90977
10.274
10.7183
11.2552
11.9026
12.6922
13.6945
15.0809
17.283
21.4512
31.4867
63.3264
186.482
1056.23
1030.25
182.037
62.9668
30.7679
19.8734
15.3246
12.9779
11.5843
10.6867
10.0858
9.67888
9.40475
9.22497
9.11535
9.06107
9.05379
9.08974
9.16833
9.29455
9.47145
9.70272
9.99415
10.3533
10.7896
11.3151
11.9473
12.7185
13.7016
15.0725
17.2684
21.4426
31.4903
63.3405
186.537
1056.42
1030.26
182.093
62.9652
30.7823
19.9142
15.3752
13.0324
11.6416
10.7469
10.1494
9.74606
9.47529
9.2986
9.19174
9.13983
9.13453
9.17203
9.25168
9.37837
9.55492
9.78475
10.0732
10.4275
10.8564
11.3713
11.9895
12.7439
13.7099
15.0685
17.26
21.4383
31.4969
63.3572
186.594
1056.6
1030.27
182.148
62.9632
30.7967
19.9543
15.4246
13.0857
11.6976
10.8057
10.2114
9.81138
9.54373
9.36984
9.26539
9.21549
9.21178
9.25043
9.33075
9.45755
9.63346
9.86164
10.1471
10.4966
10.9184
11.4234
12.0287
12.768
13.7194
15.068
17.2561
21.4375
31.5057
63.3751
186.652
1056.79
1030.28
182.201
62.9609
30.8112
19.9936
15.4728
13.1376
11.7521
10.8629
10.2717
9.87481
9.61005
9.4387
9.33637
9.28814
9.28566
9.32509
9.40574
9.53232
9.70728
9.93359
10.216
10.5608
10.9758
11.4716
12.065
12.791
13.73
15.0705
17.256
21.4401
31.5167
63.3944
186.709
1056.98
1030.29
182.254
62.9585
30.8259
20.0323
15.5202
13.1884
11.8053
10.9186
10.3303
9.93638
9.6743
9.50524
9.40474
9.35787
9.35629
9.39618
9.47681
9.60283
9.77656
10.0008
10.2799
10.62
11.0286
11.5156
12.0983
12.8125
13.7409
15.0749
17.2588
21.4455
31.5293
63.4144
186.767
1057.17
1030.3
182.305
62.956
30.8407
20.0705
15.5665
13.238
11.8573
10.9729
10.3873
9.99612
9.7365
9.5695
9.47057
9.42478
9.42381
9.46383
9.54414
9.66931
9.84151
10.0634
10.3392
10.6746
11.0768
11.5557
12.1286
12.8323
13.7518
15.0805
17.2637
21.4532
31.5438
63.4358
186.825
1057.36
1030.31
182.355
62.953
30.8556
20.1083
15.6122
13.2868
11.9081
11.0259
10.4428
10.0541
9.79674
9.63155
9.53394
9.48897
9.48832
9.52819
9.60789
9.73192
9.90234
10.1216
10.3939
10.7246
11.1206
11.5919
12.1558
12.8503
13.7621
15.0869
17.2702
21.4629
31.5598
63.4579
186.882
1057.55
1030.32
182.403
62.949
30.8703
20.1456
15.6573
13.3349
11.9581
11.0778
10.497
10.1106
9.85518
9.69155
9.59499
9.55056
9.54995
9.58941
9.66821
9.79084
9.95922
10.1757
10.4443
10.7702
11.1603
11.6242
12.1798
12.8661
13.7714
15.0932
17.2775
21.4739
31.5768
63.4802
186.937
1057.74
1030.33
182.45
62.9449
30.8854
20.183
15.7023
13.3825
12.0075
11.1289
10.5501
10.1657
9.91203
9.74967
9.65389
9.60971
9.60888
9.64763
9.72528
9.84623
10.0123
10.2258
10.4906
10.8117
11.1957
11.6526
12.2005
12.8794
13.7792
15.099
17.2849
21.4853
31.5939
63.5016
186.99
1057.92
1030.34
182.495
62.9407
30.9012
20.2207
15.7472
13.4301
12.0565
11.1795
10.6024
10.2197
9.9675
9.80612
9.71081
9.6666
9.66524
9.703
9.77922
9.89824
10.0618
10.2721
10.5328
10.849
11.2272
11.6774
12.2181
12.8903
13.7853
15.1037
17.2919
21.4967
31.6109
63.5223
187.041
1058.1
1030.35
182.539
62.9372
30.9179
20.2588
15.7924
13.4776
12.1054
11.2296
10.654
10.2729
10.0218
9.86109
9.76595
9.72138
9.71919
9.75566
9.83015
9.94696
10.1077
10.3146
10.5712
10.8824
11.2549
11.6985
12.2326
12.8987
13.7897
15.1075
17.2984
21.508
31.6279
63.5423
187.089
1058.28
1030.36
182.582
62.9342
30.9353
20.2971
15.8375
13.525
12.154
11.2793
10.7051
10.3252
10.075
9.91474
9.81946
9.77424
9.7709
9.80577
9.87823
9.99252
10.1502
10.3533
10.6056
10.9118
11.2786
11.716
12.2438
12.9046
13.7923
15.1101
17.3042
21.5188
31.6442
63.5607
187.133
1058.46
1030.37
182.624
62.9312
30.9529
20.3354
15.8826
13.5722
12.2023
11.3287
10.7556
10.3768
10.1273
9.96722
9.87155
9.82539
9.8206
9.85355
9.92367
10.0351
10.1894
10.3886
10.6363
10.9373
11.2984
11.7298
12.2518
12.9078
13.7929
15.1112
17.309
21.529
31.6594
63.5775
187.177
1058.64
1030.38
182.665
62.9274
30.9703
20.3733
15.9273
13.6192
12.2504
11.3777
10.8057
10.4278
10.1789
10.0187
9.92239
9.87503
9.86852
9.89928
9.96675
10.0751
10.2256
10.4206
10.6634
10.9591
11.3144
11.7399
12.2563
12.9082
13.7912
15.1108
17.3132
21.5394
31.6763
63.5969
187.22
1058.81
1030.39
182.705
62.9245
30.9885
20.4117
15.9722
13.6662
12.2984
11.4264
10.8554
10.4784
10.2298
10.0694
9.97221
9.92341
9.91494
9.94324
10.0078
10.1127
10.2593
10.4497
10.6875
10.9776
11.327
11.7466
12.2577
12.9056
13.7872
15.1087
17.3164
21.5496
31.6935
63.6164
187.262
1058.98
1030.4
182.744
62.9225
31.0078
20.4504
16.0172
13.7132
12.3463
11.4751
10.9049
10.5285
10.2801
10.1193
10.0211
9.97063
9.95999
9.98562
10.0471
10.1483
10.2907
10.4763
10.7088
10.9932
11.3365
11.7501
12.2559
12.9001
13.7805
15.1043
17.3178
21.5587
31.7101
63.6346
187.3
1059.14
1030.41
182.783
62.9215
31.0278
20.4895
16.0625
13.7604
12.3942
11.5237
10.9542
10.5782
10.3298
10.1684
10.069
10.0168
10.0038
10.0266
10.0847
10.1822
10.3201
10.5007
10.7277
11.0061
11.3432
11.7508
12.2513
12.8919
13.7714
15.0978
17.3175
21.5664
31.7254
63.6506
187.334
1059.3
1030.42
182.822
62.9216
31.0487
20.5289
16.1078
13.8076
12.4423
11.5725
11.0035
10.6277
10.3791
10.2169
10.1162
10.0621
10.0466
10.0664
10.121
10.2144
10.3478
10.5232
10.7445
11.0168
11.3477
11.7491
12.2443
12.8814
13.7599
15.0891
17.3153
21.5726
31.7397
63.6655
187.366
1059.46
1030.42
182.86
62.9217
31.0696
20.5682
16.1532
13.8548
12.4904
11.6213
11.0527
10.677
10.4279
10.2649
10.1626
10.1064
10.0883
10.105
10.156
10.2453
10.3739
10.5441
10.7596
11.0257
11.3501
11.7454
12.2353
12.8689
13.7466
15.0786
17.3115
21.5774
31.7529
63.679
187.395
1059.61
1030.43
182.898
62.9224
31.091
20.6078
16.1987
13.9023
12.5387
11.6702
11.102
10.7261
10.4765
10.3123
10.2084
10.15
10.1292
10.1426
10.1899
10.275
10.3987
10.5635
10.773
11.0329
11.3508
11.7398
12.2245
12.8546
13.7316
15.0665
17.3063
21.5811
31.7652
63.6917
187.422
1059.76
1030.44
182.935
62.924
31.1134
20.6482
16.2451
13.9504
12.5875
11.7196
11.1515
10.7753
10.5249
10.3594
10.2536
10.1929
10.1692
10.1793
10.2228
10.3035
10.4224
10.5816
10.7851
11.0386
11.35
11.7327
12.2121
12.8388
13.7151
15.0532
17.2999
21.5836
31.7763
63.7032
187.448
1059.91
1030.45
182.974
62.9281
31.1377
20.69
16.2925
13.9995
12.6371
11.7695
11.2014
10.8247
10.5732
10.4062
10.2984
10.2351
10.2085
10.2152
10.2548
10.3311
10.445
10.5986
10.7961
11.043
11.3477
11.724
12.198
12.8211
13.6973
15.0389
17.292
21.5849
31.7866
63.7138
187.471
1060.05
1030.46
183.013
62.9326
31.1629
20.7328
16.3411
14.0497
12.6876
11.8202
11.2518
10.8743
10.6215
10.4527
10.3427
10.2768
10.2471
10.2503
10.286
10.3579
10.4667
10.6147
10.8059
11.0462
11.344
11.7138
12.1821
12.802
13.6784
15.0238
17.2832
21.5852
31.7965
63.7244
187.494
1060.19
1030.47
183.051
62.9385
31.1897
20.7774
16.3914
14.1014
12.7395
11.872
11.3032
10.9246
10.6703
10.4994
10.3869
10.3181
10.2852
10.2848
10.3166
10.384
10.4877
10.63
10.815
11.0484
11.3392
11.7021
12.1649
12.7817
13.6586
15.0079
17.2734
21.5846
31.8058
63.7345
187.514
1060.33
1030.48
183.093
62.9477
31.219
20.8242
16.4438
14.1551
12.7931
11.9254
11.3558
10.9759
10.7196
10.5463
10.431
10.3591
10.3228
10.3188
10.3465
10.4094
10.508
10.6446
10.8231
11.0496
11.3331
11.6891
12.1463
12.76
13.6373
14.9903
17.2618
21.5817
31.8122
63.7403
187.528
1060.46
1030.49
183.134
62.9587
31.2499
20.8726
16.498
14.2106
12.8485
11.9804
11.4099
11.0283
10.7697
10.5937
10.4753
10.4
10.3602
10.3523
10.3759
10.4342
10.5277
10.6584
10.8305
11.0499
11.326
11.675
12.1264
12.7369
13.6145
14.9708
17.2477
21.5759
31.8152
63.7415
187.537
1060.58
1030.5
183.181
62.9743
31.2838
20.9232
16.5542
14.268
12.9057
12.0371
11.4655
11.082
10.8209
10.6418
10.5199
10.441
10.3974
10.3855
10.4049
10.4586
10.5469
10.6718
10.8374
11.0497
11.3185
11.6604
12.106
12.713
13.5904
14.9497
17.2313
21.567
31.8145
63.7382
187.541
1060.71
1030.5
183.228
62.9915
31.3186
20.9746
16.6114
14.3266
12.9643
12.0953
11.5226
11.137
10.8731
10.6906
10.565
10.4822
10.4345
10.4185
10.4336
10.4827
10.5658
10.6851
10.8443
11.0497
11.3112
11.646
12.0857
12.689
13.5658
14.9273
17.213
21.5556
31.8108
63.7319
187.544
1060.83
1030.51
183.279
63.0117
31.3553
21.0273
16.6698
14.3865
13.0242
12.1548
11.581
11.1933
10.9263
10.7402
10.6106
10.5237
10.4718
10.4515
10.4623
10.5068
10.5849
10.6985
10.8515
11.0502
11.3046
11.6325
12.0663
12.6657
13.5415
14.9047
17.1936
21.5424
31.8051
63.7239
187.546
1060.95
1030.52
183.332
63.034
31.3933
21.0812
16.7295
14.4476
13.0853
12.2155
11.6405
11.2506
10.9804
10.7905
10.6567
10.5654
10.5091
10.4845
10.4909
10.5308
10.604
10.7122
10.8593
11.0515
11.2991
11.6204
12.0484
12.6437
13.5181
14.8824
17.1741
21.5284
31.7984
63.7153
187.548
1061.06
1030.53
183.387
63.058
31.4328
21.1367
16.7907
14.5103
13.1479
12.2777
11.7013
11.309
11.0355
10.8414
10.7032
10.6073
10.5465
10.5174
10.5194
10.5549
10.6233
10.7264
10.8678
11.0539
11.295
11.6098
12.0322
12.6234
13.4962
14.8613
17.1552
21.5144
31.7911
63.7064
187.549
1061.18
1030.54
183.446
63.0853
31.4747
21.1944
16.8541
14.575
13.2124
12.3414
11.7636
11.3686
11.0914
10.8929
10.75
10.6493
10.5838
10.5502
10.5478
10.5788
10.6426
10.7408
10.8769
11.0571
11.2921
11.6009
12.0178
12.605
13.4759
14.8413
17.1366
21.4998
31.7823
63.6954
187.55
1061.3
1030.55
183.506
63.1137
31.518
21.2542
16.92
14.6422
13.2792
12.4074
11.8277
11.4296
11.1484
10.9452
10.7971
10.6914
10.621
10.5828
10.5759
10.6025
10.6619
10.7554
10.8864
11.0613
11.2905
11.5936
12.0053
12.5886
13.4575
14.8229
17.1192
21.4858
31.7735
63.6848
187.552
1061.42
1030.56
183.57
63.145
31.5639
21.317
16.989
14.7125
13.3489
12.476
11.8942
11.4926
11.2068
10.9983
10.8448
10.7336
10.658
10.6149
10.6036
10.6259
10.6809
10.7699
10.8963
11.0661
11.2901
11.5878
11.9948
12.5742
13.4411
14.8061
17.1031
21.4725
31.7647
63.6744
187.555
1061.54
1030.57
183.639
63.1798
31.6125
21.3825
17.061
14.786
13.4218
12.5475
11.9633
11.5578
11.2669
11.0526
10.893
10.7759
10.6949
10.6467
10.6307
10.6487
10.6996
10.7844
10.9063
11.0715
11.2906
11.5835
11.986
12.5619
13.4267
14.7912
17.0883
21.4599
31.7559
63.6645
187.561
1061.66
1030.58
183.71
63.2168
31.6629
21.4504
17.1358
14.8625
13.4978
12.6222
12.0353
11.6255
11.3289
11.1081
10.9419
10.8184
10.7315
10.678
10.6572
10.6709
10.7176
10.7984
10.9163
11.0772
11.2919
11.5804
11.9788
12.5514
13.4143
14.7782
17.0754
21.4487
31.7483
63.6565
187.569
1061.78
1030.59
183.785
63.256
31.7151
21.5203
17.2131
14.9418
13.5767
12.6998
12.1102
11.6957
11.3928
11.1649
10.9914
10.8611
10.7678
10.7087
10.683
10.6922
10.7349
10.8118
10.9259
11.083
11.2939
11.5785
11.9733
12.543
13.4042
14.7676
17.0649
21.4401
31.7435
63.6526
187.582
1061.91
1030.6
183.865
63.2989
31.7696
21.5922
17.2926
15.0236
13.6585
12.7803
12.1876
11.7678
11.4581
11.2226
11.0413
10.9036
10.8036
10.7385
10.7077
10.7125
10.7512
10.8245
10.9351
11.0887
11.2961
11.5773
11.9691
12.5363
13.396
14.7589
17.0563
21.433
31.7399
63.6505
187.598
1062.03
1030.61
183.945
63.3414
31.8244
21.6649
17.3734
15.1075
13.7431
12.8634
12.2668
11.841
11.5239
11.2802
11.0908
10.9454
10.8384
10.7672
10.7312
10.7315
10.7662
10.836
10.9434
11.094
11.2984
11.5767
11.9659
12.5312
13.3898
14.7524
17.05
21.4283
31.7388
63.6522
187.617
1062.16
1030.62
184.029
63.3852
31.8806
21.7395
17.4563
15.1934
13.8302
12.9487
12.3474
11.9149
11.5897
11.3374
11.1395
10.9861
10.872
10.7945
10.7531
10.7489
10.7797
10.8462
10.9506
11.0985
11.3003
11.5762
11.9634
12.5274
13.3854
14.7477
17.0456
21.4255
31.7396
63.6565
187.639
1062.3
1030.63
184.11
63.4259
31.9366
21.8156
17.541
15.2813
13.9188
13.0353
12.429
11.9893
11.6556
11.3942
11.1874
11.0256
10.904
10.82
10.7731
10.7644
10.7914
10.8547
10.9564
11.1019
11.3015
11.5756
11.9613
12.5245
13.3823
14.7445
17.0429
21.4245
31.7421
63.6632
187.664
1062.43
1030.64
184.191
63.4665
31.9942
21.8943
17.6288
15.372
14.01
13.1241
12.5122
12.0647
11.7217
11.4507
11.2343
11.0638
10.9344
10.8437
10.7912
10.7778
10.8011
10.8612
10.9605
11.1039
11.3018
11.5745
11.9594
12.5224
13.3803
14.7428
17.0419
21.4254
31.747
63.6736
187.691
1062.57
1030.65
184.276
63.5086
32.0543
21.9763
17.7198
15.4657
14.1039
13.215
12.5969
12.1408
11.7878
11.5063
11.2799
11.1002
10.9626
10.865
10.8068
10.7887
10.8082
10.8654
10.9624
11.1041
11.3008
11.5727
11.9573
12.5205
13.3791
14.7424
17.0425
21.4281
31.7539
63.6867
187.721
1062.71
1030.66
184.359
63.5491
32.1152
22.0608
17.8137
15.5622
14.2003
13.3079
12.6829
12.2174
11.8535
11.5609
11.3239
11.1344
10.9884
10.8836
10.8195
10.7967
10.8124
10.8668
10.9618
11.1021
11.2979
11.5695
11.9544
12.5184
13.3782
14.7426
17.0442
21.4322
31.7626
63.7026
187.752
1062.85
1030.68
184.443
63.5908
32.1788
22.1487
17.911
15.6617
14.2993
13.4029
12.7702
12.2943
11.9187
11.6141
11.3658
11.1661
11.0112
10.899
10.8289
10.8013
10.8134
10.8651
10.9582
11.0974
11.2929
11.5646
11.9503
12.5157
13.3771
14.7432
17.0467
21.4374
31.7726
63.7206
187.785
1062.99
1030.69
184.532
63.6344
32.2455
22.2402
18.0117
15.7641
14.4006
13.4997
12.8583
12.3711
11.9827
11.6654
11.405
11.1947
11.0306
10.9107
10.8345
10.8021
10.8106
10.8597
10.9512
11.0897
11.2851
11.5576
11.9445
12.5118
13.3755
14.7436
17.0494
21.4432
31.7837
63.7404
187.818
1063.14
1030.7
184.617
63.6785
32.315
22.3351
18.1157
15.8694
14.5041
13.5977
12.9467
12.4468
12.0447
11.7136
11.4407
11.2193
11.0457
10.9181
10.8356
10.7985
10.8034
10.8502
10.9403
11.0783
11.2742
11.5478
11.9367
12.5064
13.3728
14.7436
17.0521
21.4492
31.7952
63.7609
187.85
1063.28
1030.72
184.708
63.7211
32.3851
22.4331
18.2234
15.9781
14.6103
13.6972
13.035
12.521
12.1037
11.758
11.4718
11.2389
11.0557
10.9203
10.8317
10.7899
10.7914
10.8359
10.925
11.063
11.2596
11.535
11.9263
12.4991
13.3688
14.7427
17.0545
21.4555
31.8078
63.7839
187.884
1063.43
1030.73
184.795
63.7621
32.4572
22.5352
18.3361
16.0916
14.7204
13.7989
13.1233
12.5931
12.1591
11.7977
11.4976
11.2529
11.0599
10.9166
10.822
10.7756
10.7739
10.8166
10.9048
11.0431
11.2411
11.5187
11.913
12.4895
13.3631
14.7409
17.0565
21.4619
31.821
63.808
187.917
1063.58
1030.74
184.878
63.7978
32.5289
22.6405
18.4537
16.2109
14.8352
13.9029
13.2112
12.6625
12.2101
11.832
11.5174
11.2606
11.0578
10.9067
10.8061
10.7554
10.7507
10.7916
10.8794
11.0183
11.218
11.4984
11.8963
12.4772
13.3555
14.7378
17.0579
21.4684
31.8353
63.8344
187.95
1063.73
1030.76
184.965
63.8344
32.6038
22.7503
18.5769
16.3378
14.9557
14.0086
13.2977
12.7285
12.2564
11.8607
11.5312
11.262
11.0492
10.8903
10.7839
10.7289
10.7214
10.7609
10.8485
10.9884
11.1903
11.474
11.8762
12.4621
13.3458
14.7333
17.0587
21.475
31.8506
63.8623
187.981
1063.88
1030.77
185.05
63.8678
32.6805
22.8649
18.7048
16.4684
15.079
14.1161
13.3843
12.7926
12.2991
11.8845
11.539
11.2568
11.0338
10.867
10.7547
10.6956
10.6855
10.7238
10.8115
10.9528
11.1574
11.4449
11.852
12.4436
13.3334
14.7267
17.0579
21.4806
31.8655
63.8906
188.01
1064.03
1030.79
185.131
63.8956
32.7568
22.9831
18.8379
16.6045
15.2069
14.2257
13.4702
12.8536
12.3368
11.9019
11.5396
11.244
11.0106
10.836
10.718
10.6551
10.6426
10.6799
10.7681
10.9112
11.1189
11.4108
11.8234
12.4215
13.3181
14.7181
17.0559
21.4858
31.8811
63.921
188.04
1064.19
1030.8
185.206
63.9189
32.8341
23.1054
18.9757
16.7447
15.3375
14.3358
13.5542
12.9104
12.3685
11.9123
11.5326
11.2233
10.9794
10.797
10.6736
10.607
10.5924
10.6291
10.7181
10.8633
11.0746
11.3714
11.7901
12.3952
13.2993
14.7067
17.0517
21.4895
31.8967
63.9529
188.068
1064.34
1030.82
185.279
63.9387
32.9127
23.2328
19.1195
16.8903
15.4714
14.4462
13.6352
12.9616
12.3929
11.9143
11.5168
11.1937
10.9395
10.7496
10.621
10.5511
10.5348
10.5713
10.6614
10.8093
11.0245
11.3268
11.7522
12.365
13.2775
14.6928
17.0459
21.4927
31.9132
63.9876
188.097
1064.5
1030.83
185.347
63.9534
32.9914
23.3647
19.2695
17.0409
15.6075
14.5548
13.7108
13.0048
12.408
11.9065
11.4911
11.1544
10.8902
10.6933
10.5601
10.4873
10.4697
10.5064
10.5981
10.7489
10.9687
11.2768
11.7094
12.3306
13.252
14.6761
17.038
21.4947
31.9301
64.0244
188.124
1064.66
1030.85
185.406
63.9619
33.0703
23.5021
19.428
17.1984
15.7455
14.66
13.7789
13.0384
12.4125
11.8878
11.4548
11.105
10.8315
10.6281
10.4907
10.4156
10.3973
10.4346
10.5284
10.6828
10.9075
11.222
11.6624
12.2926
13.2235
14.657
17.0285
21.4959
31.9475
64.0631
188.151
1064.83
1030.87
185.463
63.9712
33.1535
23.6462
19.5991
17.3639
15.8825
14.7581
13.8372
13.061
12.4057
11.858
11.4077
11.0454
10.7631
10.5539
10.4131
10.3362
10.3177
10.3562
10.4525
10.6107
10.8408
11.1622
11.6108
12.2504
13.1914
14.6349
17.0165
21.4953
31.9644
64.1022
188.173
1064.99
1030.89
185.518
63.9782
33.2413
23.797
19.7744
17.5319
16.0197
14.8534
13.8891
13.0746
12.3883
11.8171
11.3495
10.9751
10.6846
10.4704
10.3268
10.249
10.2309
10.2712
10.3706
10.5332
10.7691
11.0978
11.555
12.2045
13.1562
14.6102
17.0023
21.493
31.98
64.1403
188.192
1065.16
1030.9
185.567
63.9805
33.3313
23.9557
19.9592
17.7069
16.1583
14.9438
13.9316
13.0761
12.3576
11.7626
11.2782
10.8926
10.595
10.3768
10.2314
10.1535
10.1367
10.1794
10.2824
10.45
10.6921
11.0283
11.4945
12.1541
13.1167
14.5815
16.9846
21.4876
31.9936
64.1772
188.206
1065.32
1030.92
185.611
63.9798
33.4254
24.1226
20.1517
17.8865
16.2962
15.0278
13.9635
13.0645
12.3129
11.6942
11.1937
10.7978
10.4942
10.2731
10.127
10.05
10.0353
10.0814
10.1888
10.3618
10.6106
10.9549
11.4303
12.1004
13.0743
14.5501
16.9645
21.4803
32.0057
64.2132
188.219
1065.5
1030.94
185.651
63.9751
33.5215
24.2984
20.3538
18.0718
16.4327
15.1036
13.9825
13.0378
12.2526
11.6106
11.0951
10.6902
10.3819
10.1592
10.0136
9.93849
9.927
9.97715
10.0896
10.2686
10.5245
10.877
11.3618
12.0425
13.0275
14.5145
16.9402
21.4688
32.0145
64.2459
188.225
1065.67
1030.95
185.679
63.9595
33.6149
24.4814
20.5644
18.2596
16.5632
15.1668
13.9854
12.9939
12.1754
11.5113
10.9822
10.5697
10.2583
10.0353
9.8916
9.81964
9.81237
9.86761
9.98592
10.1717
10.4353
10.7964
11.2908
11.9822
12.9785
14.4768
16.914
21.4556
32.0217
64.2771
188.229
1065.86
1030.97
185.695
63.9311
33.7024
24.6734
20.7838
18.4463
16.6835
15.2144
13.9707
12.9323
12.0813
11.3965
10.8554
10.4371
10.124
9.90224
9.76157
9.6939
9.69186
9.75307
9.87799
10.0711
10.3427
10.7126
11.2167
11.9185
12.9258
14.4349
16.8834
21.4379
32.0248
64.3037
188.225
1066.03
1030.99
185.686
63.8714
33.7741
24.8674
21.0069
18.6279
16.7914
15.246
13.9385
12.8533
11.9709
11.2667
10.7152
10.2926
9.97954
9.76049
9.62423
9.56208
9.56641
9.63461
9.76707
9.96823
10.2485
10.6278
11.1418
11.8542
12.8723
14.3922
16.8517
21.4186
32.0256
64.3267
188.219
1066.23
1031.01
185.54
63.7222
33.8144
25.0529
21.2287
18.8078
16.8924
15.2649
13.8902
12.7568
11.8433
11.1211
10.5609
10.136
9.82468
9.60993
9.47952
9.42414
9.43593
9.51208
9.65285
9.86268
10.152
10.5407
11.0647
11.7874
12.8156
14.3457
16.8155
21.3943
32.021
64.3434
188.205
1066.41
1031.02
184.437
63.3472
33.8093
25.2401
21.4582
18.9858
16.98
15.2634
13.8188
12.6377
11.6951
10.9577
10.3915
9.96673
9.65933
9.45085
9.32798
9.28088
9.30149
9.38678
9.53696
9.75645
10.0557
10.4546
10.9889
11.7219
12.7603
14.3005
16.7803
21.3705
32.0162
64.36
188.194
1066.63
1031.04
181.731
62.7947
33.8098
25.4449
21.6956
19.16
17.0541
15.2428
13.7264
12.4983
11.5284
10.778
10.2083
9.78598
9.48457
9.2841
9.1703
9.1328
9.16337
9.25879
9.41918
9.64895
9.95852
10.3677
10.9122
11.6551
12.7031
14.2526
16.7419
21.3428
32.0074
64.3713
188.176
1066.82
1031.06
179.657
62.4832
33.8993
25.6852
21.9447
19.3286
17.1103
15.1979
13.6083
12.3347
11.3406
10.5806
10.0105
9.5935
9.30053
9.11018
9.00723
8.98092
9.02288
9.12973
9.30152
9.54266
9.86355
10.2839
10.839
11.592
12.6497
14.2087
16.7071
21.3179
31.9995
64.3829
188.163
1067.05
1031.07
178.705
62.3435
34.0182
25.9302
22.1886
19.4815
17.1424
15.1254
13.4631
12.1467
11.1321
10.3662
9.79915
9.39019
9.10799
8.92969
8.83919
8.82541
8.87993
8.99918
9.18316
9.43626
9.76881
10.2004
10.7661
11.5287
12.5952
14.1628
16.6697
21.2898
31.9886
64.3908
188.144
1067.26
1031.09
178.24
62.2578
34.1544
26.1861
22.4312
19.6181
17.1476
15.0225
13.2888
11.9331
10.9025
10.1349
9.57468
9.17689
8.90799
8.74381
8.66755
8.66787
8.73638
8.86938
9.06685
9.33312
9.67848
10.1224
10.6995
11.4721
12.5476
14.1238
16.6389
21.267
31.9802
64.3998
188.133
1067.52
1031.11
178.009
62.2058
34.3036
26.4462
22.6633
19.7289
17.119
14.8851
13.0837
11.6941
10.6528
9.88835
9.33856
8.95484
8.70149
8.55321
8.49259
8.50818
8.59168
8.73928
8.95092
9.23088
9.58934
10.0455
10.6337
11.4156
12.499
14.083
16.6054
21.2412
31.9694
64.4055
188.115
1067.73
1031.12
177.879
62.163
34.461
26.7102
22.8815
19.8088
17.0522
14.7107
12.8468
11.4299
10.384
9.62762
9.09223
8.72559
8.49011
8.35959
8.31617
8.34844
8.44828
8.61183
8.83902
9.13411
9.50713
9.97696
10.5774
11.3694
12.461
14.0531
16.5824
21.2238
31.9628
64.4138
188.108
1068.01
1031.13
177.804
62.1325
34.6303
26.9746
23.0768
19.85
16.9441
14.4992
12.5796
11.1425
10.0982
9.35479
8.83744
8.4905
8.27476
8.16337
8.13817
8.18791
8.30477
8.48486
8.72806
9.03857
9.4262
9.90945
10.5215
11.3224
12.421
14.0199
16.5553
21.2022
31.953
64.4176
188.091
1068.24
1031.15
177.743
62.0978
34.8001
27.2294
23.246
19.8533
16.7951
14.2499
12.2812
10.8314
9.79537
9.07045
8.57522
8.25088
8.05695
7.96619
7.9604
8.02869
8.16369
8.36156
8.62223
8.94986
9.35407
9.85288
10.4786
11.2898
12.3962
14.0025
16.5435
21.193
31.9497
64.4261
188.091
1068.54
1031.16
177.688
62.0658
34.9721
27.4748
23.3895
19.8179
16.6029
13.9606
11.9505
10.4964
9.47621
8.77556
8.30649
8.00735
7.83678
7.7675
7.78154
7.86859
8.02186
8.23761
8.51578
8.86041
9.2809
9.79483
10.4338
11.2554
12.3687
13.9797
16.525
21.1778
31.9445
64.4345
188.086
1068.78
1031.17
177.617
62.0239
35.1425
27.7076
23.5001
19.7348
16.3602
13.6267
11.585
10.1369
9.14126
8.47171
8.03389
7.76307
7.61728
7.56995
7.60386
7.70987
7.88225
8.1174
8.41515
8.77931
9.21895
9.75118
10.4068
11.2422
12.3644
13.98
16.5284
21.181
31.9515
64.4546
188.1
1069.11
1031.18
177.542
61.9858
35.3147
27.925
23.5762
19.6062
16.0717
13.2544
11.1915
9.75939
8.79599
8.16248
7.75785
7.51594
7.39569
7.37107
7.42518
7.54976
7.74047
7.99461
8.31198
8.69593
9.15489
9.70521
10.3767
11.2245
12.3539
13.9728
16.5241
21.1782
31.9551
64.463
188.08
1069.35
1031.19
177.436
61.9341
35.4833
28.1232
23.6105
19.4222
15.7282
12.8375
10.767
9.36269
8.43968
7.8467
7.47719
7.26564
7.17251
7.17231
7.2483
7.3929
7.60287
7.87677
8.21525
8.62148
9.10319
9.67573
10.3674
11.2311
12.3693
13.991
16.5425
21.1906
31.9618
64.4746
188.097
1069.71
1031.19
177.326
61.8926
35.6544
28.3
23.6018
19.1864
15.3376
12.3859
10.3212
8.95553
8.07955
7.52761
7.19277
7.01208
6.94667
6.97142
7.06971
7.2345
7.46321
7.75546
8.1136
8.54076
9.04386
9.6372
10.3477
11.2266
12.3742
13.9988
16.5489
21.1924
31.9625
64.478
188.087
1069.94
1031.2
177.184
61.8399
35.8223
28.4516
23.5419
18.888
14.8903
11.8931
9.85036
8.53446
7.71125
7.20343
6.90546
6.75738
6.7212
6.77238
6.89451
7.08126
7.33092
7.64338
8.02237
8.47257
9.00054
9.61916
10.3535
11.2525
12.4141
14.0427
16.5867
21.2194
31.982
64.5035
188.117
1070.33
1031.2
177.042
61.8041
35.992
28.5754
23.4324
18.5348
14.3975
11.3712
9.36667
8.11113
7.34071
6.87603
6.6157
6.50083
6.49431
6.57217
6.7181
6.92646
7.19649
7.52795
7.92588
8.39702
8.94778
9.58952
10.3454
11.2625
12.4359
14.067
16.6043
21.2266
31.9826
64.5025
188.103
1070.56
1031.2
176.864
61.7553
36.1546
28.6654
23.2627
18.1146
13.8496
10.8135
8.86324
7.6774
6.96476
6.5465
6.32617
6.24635
6.27111
6.37718
6.54844
6.78012
7.07269
7.42605
7.84587
8.34066
8.918
9.58785
10.3709
11.3114
12.5008
14.1361
16.6663
21.277
32.0322
64.5801
188.206
1070.99
1031.2
176.683
61.7108
36.3078
28.7178
23.0379
17.6409
13.2645
10.2394
8.35778
7.24356
6.58801
6.21655
6.03654
5.99199
6.04809
6.18218
6.37821
6.6323
6.94628
7.32024
7.7598
8.27504
8.87557
9.56998
10.3765
11.3368
12.5394
14.1781
16.7033
21.3034
32.0381
64.4816
187.381
1071.2
1031.2
176.448
61.6515
36.4483
28.7288
22.7499
17.1033
12.6324
9.64152
7.84612
6.80662
6.20937
5.88744
5.75001
5.74275
5.83203
5.9959
6.21835
6.49659
6.83414
7.23146
7.6942
8.23478
8.86404
9.58822
10.4232
11.4072
12.6235
14.2596
16.7637
21.3202
31.9617
64.0866
185.125
1071.68
1031.2
176.232
61.618
36.5739
28.6899
22.4078
16.5294
11.9875
9.04774
7.34491
6.38009
5.83964
5.56559
5.46912
5.49766
5.61879
5.81102
6.0583
6.35885
6.71801
7.13646
7.61938
8.182
8.83685
9.58725
10.4469
11.4509
12.6794
14.3154
16.8017
21.3151
31.8671
63.6987
183.25
1071.86
1031.19
175.961
61.5538
36.6632
28.583
21.9857
15.891
11.3106
8.45211
6.84773
5.95955
5.47969
5.25587
5.2017
5.26685
5.42085
5.64227
5.91448
6.23777
6.61978
7.06171
7.57117
8.16292
8.84853
9.63207
10.5235
11.5529
12.7943
14.4244
16.8774
21.3271
31.7974
63.4593
182.148
1072.41
1031.19
175.7
61.501
36.7093
28.4015
21.5045
15.2292
10.642
7.88312
6.37578
5.56271
5.14387
4.96913
4.95494
5.05356
5.23684
5.48339
5.77575
6.1167
6.51621
6.97771
7.5102
8.1249
8.83459
9.64789
10.571
11.6283
12.8887
14.5248
16.9667
21.3885
31.8239
63.3841
181.553
1072.55
1031.18
175.349
61.3931
36.6878
28.1131
20.9156
14.4945
9.94072
7.30962
5.91576
5.18803
4.83648
4.71453
4.74229
4.87503
5.08709
5.35989
5.67274
6.02836
6.44473
6.92844
7.48635
8.12524
8.86175
9.71039
10.673
11.7649
13.044
14.6722
17.0722
21.4256
31.809
63.3275
181.214
1073.19
1031.17
175.022
61.3036
36.6024
27.7283
20.2667
13.7539
9.26587
6.76911
5.48696
4.84313
4.55795
4.48815
4.5571
4.72259
4.96095
5.25597
5.58367
5.94917
6.3788
6.87628
7.44687
8.09802
8.84481
9.70798
10.699
11.8286
13.1461
14.805
17.2219
21.5799
31.9688
63.4549
181.117
1073.27
1031.15
174.572
61.1441
36.4384
27.2276
19.5043
12.9407
8.56655
6.2256
5.06569
4.51455
4.30261
4.29116
4.4074
4.61184
4.88265
5.20519
5.55616
5.94082
6.38717
6.90003
7.48572
8.15244
8.91353
9.7928
10.8067
11.9598
13.2907
14.9402
17.3149
21.6042
31.9481
63.415
180.966
1074.03
1031.13
174.239
61.0552
36.2143
26.6758
18.7827
12.2355
7.98659
5.76164
4.69392
4.22012
4.07115
4.11134
4.27078
4.51181
4.81291
5.15976
5.5317
5.93331
6.39123
6.90976
7.49538
8.15714
8.90946
9.77918
10.7913
11.9584
13.319
15.0067
17.4196
21.7468
32.1332
63.6069
181.045
1074.04
1031.11
173.768
60.8481
35.8466
25.9917
18.002
11.5461
7.46524
5.36716
4.38876
3.98639
3.89579
3.98725
4.19613
4.48524
4.82257
5.18806
5.57813
6.01349
6.51616
7.07499
7.69577
8.38664
9.16158
10.0417
11.0445
12.188
13.5209
15.1805
17.5589
21.8393
32.2061
63.6485
180.992
1074.92
1031.09
173.483
60.6516
35.2541
25.1636
17.3315
11.1245
7.19964
5.16007
4.20802
3.82514
3.74934
3.85543
4.08545
4.39711
4.74841
5.12934
5.53831
5.98628
6.49993
7.09647
7.76514
8.48754
9.27627
10.1431
11.0991
12.1776
13.4455
15.0498
17.3855
21.649
32.0389
63.5578
181.013
1074.83
1031.06
172.968
60.1336
34.1904
23.8174
16.3162
10.6004
6.96872
5.03381
4.11222
3.736
3.65574
3.75305
3.97801
4.29304
4.65874
5.07351
5.53753
6.05213
6.62615
7.27769
8.04795
8.93504
9.88635
10.8751
11.8835
12.9447
14.1525
15.7
18.0243
22.3452
32.8914
64.4684
181.626
1075.84
1031.03
172.215
59.2288
32.5182
21.8987
15.0106
10.1074
6.92412
5.09635
4.14204
3.69785
3.54652
3.5731
3.72747
3.98269
4.3073
4.6957
5.1543
5.68364
6.28361
6.95733
7.72515
8.64282
9.72621
10.8788
12.0186
13.1197
14.232
15.534
17.499
21.4329
31.6653
63.1519
180.664
1075.72
1030.98
171.535
58.2351
30.3615
19.1967
12.8838
9.04421
6.71335
5.30207
4.44816
3.94918
3.69139
3.60689
3.65888
3.82926
4.09477
4.43953
4.87675
5.41347
6.0535
6.79709
7.64866
8.63051
9.81665
11.2227
12.6952
14.1351
15.5415
17.0675
19.2025
23.2997
33.7553
65.3434
182.263
1076.74
1030.92
169.821
56.5995
28.0351
16.6215
10.8752
7.95311
6.4534
5.61195
5.06605
4.65992
4.33296
4.07064
3.883
3.79289
3.82765
3.99678
4.28175
4.68528
5.21342
5.872
6.6689
7.6173
8.75679
10.1937
11.861
13.4932
14.95
16.2823
17.9675
21.4016
31.0029
61.7358
178.961
1076.71
1030.86
170.705
56.6662
26.6189
15.0049
9.86023
7.56222
6.49819
5.95411
5.6281
5.3927
5.19187
4.99924
4.80217
4.59868
4.4025
4.25085
4.20652
4.33146
4.64383
5.13457
5.80036
6.64525
7.68856
8.97554
10.6657
12.8202
15.0885
17.2387
19.4773
23.14
32.8947
64.1866
181.744
1077.56
1030.82
169.409
54.2768
23.7853
13.0815
9.117
7.57112
6.84168
6.38413
6.02984
5.73229
5.48031
5.27074
5.09717
4.94508
4.79945
4.66473
4.57397
4.57454
4.71362
5.03607
5.57371
6.34213
7.37292
8.72447
10.4029
12.3411
14.4144
16.5459
18.9522
22.7612
32.2901
62.9654
180.925
1077.8
1030.81
167.927
50.5708
21.0231
12.7222
10.2824
9.29652
8.62235
7.99913
7.38295
6.78034
6.20733
5.67803
5.20102
4.77878
4.4087
4.08657
3.81204
3.59178
3.43826
3.3688
3.40575
3.5799
3.93176
4.5024
5.37187
6.73443
8.72346
11.1323
14.0037
19.0047
31.8353
67.9352
188.334
1078.71
1030.67
149.44
36.5545
16.454
13.9252
13.3945
12.7627
12.0243
11.2529
10.4842
9.74448
9.05738
8.44375
7.92156
7.50622
7.21146
7.05141
7.04492
7.22224
7.53958
8.03654
8.73819
9.67674
10.8906
12.4301
14.3645
16.7918
19.8625
23.8774
29.5065
38.3155
54.1273
88.6788
201.277
1080.09
526.84
24.1398
24.383
24.4465
24.4738
24.4897
24.4982
24.501
24.4994
24.4946
24.4871
24.4776
24.4665
24.4542
24.4411
24.4273
24.4131
24.3987
24.3839
24.3686
24.3528
24.3361
24.3184
24.2992
24.2781
24.2548
24.229
24.2009
24.172
24.1461
24.1301
24.1313
24.1527
24.1915
555.764
526.413
22.9933
22.9961
22.9993
23.0027
23.0064
23.0105
23.0151
23.0201
23.0254
23.0309
23.0365
23.0421
23.0476
23.0528
23.0577
23.0622
23.0662
23.0698
23.0728
23.0753
23.077
23.0781
23.0783
23.0776
23.0759
23.0731
23.0696
23.0657
23.0628
23.0638
23.0733
23.0971
23.1375
531.532
1029.84
172.828
63.1081
33.5756
22.145
16.5234
13.2388
11.0712
9.52033
8.35315
7.44859
6.73779
6.17879
5.74474
5.41783
5.18594
5.0406
4.97708
4.98791
5.06592
5.20958
5.4155
5.67902
5.99394
6.35196
6.74198
7.14981
7.56003
7.97708
8.57783
10.4297
17.8039
45.389
159.598
1040.51
1029.84
175.002
65.7322
36.005
24.1517
18.0905
14.46
12.0736
10.4155
9.2166
8.31886
7.6237
7.06833
6.61223
6.22863
5.89941
5.6133
5.36901
5.16322
4.99252
4.85553
4.75486
4.69451
4.67942
4.71471
4.80415
4.94821
5.14806
5.45934
6.26809
9.17895
19.0443
50.0503
166.27
1041.09
1029.86
175.319
65.2684
34.414
21.573
14.9061
11.0747
8.77792
7.35205
6.41504
5.75
5.24255
4.83719
4.50874
4.24562
4.04097
3.88837
3.78076
3.71102
3.6711
3.65378
3.65357
3.66772
3.69669
3.7448
3.82273
3.95813
4.23298
4.89714
6.65727
11.2864
23.0573
55.0358
170.537
1042.01
1029.87
172.969
61.9291
30.8362
18.4068
12.6066
9.74808
8.23971
7.32142
6.65603
6.1072
5.62349
5.18809
4.79851
4.45739
4.16823
3.93316
3.75144
3.61924
3.53056
3.47747
3.45114
3.44452
3.45602
3.49336
3.58133
3.78117
4.23719
5.28066
7.63715
12.8584
24.7593
56.2218
170.986
1042.91
1029.88
172.647
61.6122
30.7846
18.6706
13.0702
10.2684
8.74044
7.79046
7.10752
6.55463
6.06905
5.62428
5.21416
4.84016
4.50466
4.21073
3.96197
3.76062
3.60671
3.49834
3.43208
3.40488
3.41744
3.48089
3.62965
3.9455
4.60189
5.94207
8.6194
13.9861
25.6798
56.7399
171.249
1043.68
1029.88
172.068
60.8772
30.0357
18.03
12.6135
9.97232
8.52925
7.6056
6.92401
6.3674
5.88285
5.44874
5.05805
4.70685
4.39235
4.11468
3.87574
3.67809
3.52442
3.41751
3.36039
3.35791
3.42004
3.56831
3.84696
4.3432
5.22449
6.79436
9.60523
14.8756
26.2326
56.9813
171.505
1044.43
1029.89
172.016
60.9304
30.2095
18.2869
12.9092
10.2801
8.84229
7.92329
7.24549
6.6903
6.20273
5.75991
5.35567
4.987
4.65067
4.34645
4.07648
3.84402
3.65355
3.5115
3.42609
3.40925
3.48002
3.67097
4.04132
4.69163
5.77552
7.53814
10.4218
15.5276
26.5057
56.9748
171.611
1045.06
1029.89
172.262
61.1695
30.3504
18.3741
12.9951
10.3593
8.88867
7.92793
7.21389
6.63363
6.13526
5.69649
5.30626
4.95573
4.63865
4.35238
4.09722
3.87537
3.6913
3.55283
3.4713
3.46385
3.55732
3.79552
4.25449
5.05494
6.34677
8.31549
11.2916
16.2785
26.9832
57.3142
172.094
1045.67
1029.9
172.185
61.0763
30.2504
18.3122
12.9936
10.4063
8.96599
8.02397
7.32181
6.74865
6.25349
5.81499
5.42392
5.07279
4.75561
4.46975
4.21542
3.99417
3.80995
3.67113
3.59025
3.58701
3.69287
3.95941
4.47664
5.38624
6.84578
8.99906
12.0705
16.9466
27.3561
57.4961
172.391
1046.21
1029.91
172.433
61.3239
30.4396
18.4818
13.1677
10.5661
9.09135
8.11171
7.37869
6.78449
6.2785
5.8384
5.45162
5.1079
4.80031
4.52551
4.28337
4.07491
3.90372
3.77865
3.71315
3.72879
3.86038
4.1652
4.7444
5.75554
7.35992
9.66929
12.823
17.6136
27.7979
57.8279
172.842
1046.73
1029.91
172.417
61.2577
30.3259
18.3919
13.1363
10.5764
9.12291
8.15574
7.43166
6.84401
6.3431
5.90684
5.52411
5.1857
4.88461
4.61763
4.38502
4.18755
4.0285
3.91741
3.86848
3.90463
4.06315
4.40576
5.04215
6.13964
7.86015
10.2917
13.505
18.207
28.1668
58.0722
173.189
1047.22
1029.92
172.564
61.3808
30.4117
18.4912
13.2613
10.7014
9.22955
8.24099
7.49999
6.90202
6.3971
5.96157
5.58271
5.25054
4.95769
4.70091
4.48075
4.29773
4.15481
4.06234
4.03536
4.09814
4.29023
4.67813
5.37824
6.55985
8.38
10.903
14.1466
18.7585
28.531
58.3606
173.584
1047.69
1029.93
172.61
61.3726
30.3534
18.457
13.2759
10.7418
9.2777
8.29262
7.55508
6.961
6.46038
6.0292
5.65555
5.33024
5.04582
4.79922
4.59167
4.42346
4.29711
4.22393
4.21981
4.31029
4.53694
4.9707
5.73317
6.99125
8.89371
11.4829
14.7342
19.2502
28.8453
58.6058
173.93
1048.13
1029.94
172.715
61.4272
30.3723
18.5021
13.3547
10.8277
9.35565
8.36062
7.61641
7.02008
6.5209
6.09372
5.72574
5.40769
5.13236
4.89689
4.70318
4.55135
4.44341
4.39165
4.41288
4.53391
4.79818
5.28104
6.10794
7.43939
9.41141
12.0441
15.2807
19.698
29.141
58.865
174.291
1048.56
1029.94
172.806
61.4478
30.3471
18.5064
13.4011
10.8899
9.41927
8.42369
7.68045
7.08678
6.59166
6.16944
5.80693
5.49561
5.22889
5.00419
4.82411
4.68861
4.59905
4.56869
4.61535
4.76715
5.06965
5.60176
6.48965
7.88595
9.91312
12.571
15.7783
20.0971
29.4029
59.1023
174.625
1048.96
1029.95
172.925
61.4825
30.3432
18.5337
13.4619
10.9585
9.48402
8.48402
7.73933
7.14766
6.65712
6.24103
5.88538
5.58191
5.32462
5.1115
4.94585
4.82758
4.75747
4.74957
4.82268
5.00631
5.34866
5.93132
6.87753
8.33171
10.4015
13.0678
16.2326
20.4556
29.6463
59.3441
174.96
1049.35
1029.96
173.072
61.5187
30.3351
18.5589
13.5234
11.0301
9.55457
8.55295
7.80895
7.22034
6.73461
6.32424
5.97461
5.67782
5.42886
5.22648
5.07453
4.97292
4.92189
4.93602
5.03501
5.24958
5.63051
6.26131
7.26061
8.76346
10.8629
13.5236
16.6379
20.7705
29.8611
59.5655
175.269
1049.72
1029.97
173.272
61.569
30.3391
18.5934
13.5859
11.0969
9.61793
8.61364
7.87031
7.28576
6.80642
6.40369
6.06206
5.77327
5.53332
5.34221
5.20413
5.11926
5.08765
5.12419
5.24944
5.49537
5.91483
6.59156
7.63872
9.18135
11.2982
13.9407
16.9979
21.0474
30.0583
59.7852
175.571
1050.08
1029.98
173.568
61.6435
30.355
18.6383
13.6578
11.173
9.691
8.68463
7.94222
7.3616
6.88836
6.49299
6.15915
5.87819
5.64718
5.46756
5.3423
5.27157
5.25798
5.31572
5.46601
5.74226
6.19856
6.91646
8.00389
9.57599
11.6984
14.3123
17.3095
21.2848
30.2306
59.985
175.847
1050.41
1029.99
174.026
61.7628
30.3942
18.6944
13.7299
11.2434
9.75647
8.7477
8.00677
7.43122
6.96555
6.57926
6.25523
5.98439
5.76423
5.59664
5.48366
5.4266
5.43038
5.50878
5.68346
5.98904
6.48014
7.23519
8.35616
9.94827
12.0652
14.6413
17.5764
21.4875
30.3859
60.1773
176.11
1050.74
1029.99
174.801
61.9631
30.4647
18.7653
13.8101
11.3203
9.82878
8.8182
8.07899
7.50825
7.04966
6.67206
6.35767
6.09713
5.88838
5.73256
5.63099
5.58702
5.60645
5.70407
5.90213
6.23552
6.75755
7.54384
8.69042
10.2928
12.3943
14.9254
17.7986
21.6555
30.5199
60.3508
176.35
1051.05
1030
176.112
62.2902
30.5749
18.8455
13.8867
11.3899
9.89372
8.88238
8.14603
7.58119
7.13068
6.76277
6.45929
6.21079
6.01431
5.87
5.78016
5.74936
5.78434
5.90068
6.1212
6.48034
7.02981
7.84207
9.00698
10.6109
12.688
15.1679
17.9802
21.7932
30.6384
60.5143
176.576
1051.34
1030.01
178.239
62.7571
30.7037
18.9223
13.9595
11.4593
9.96155
8.95133
8.21859
7.65953
7.21655
6.85762
6.56429
6.32725
6.14293
6.01042
5.93273
5.91528
5.96567
6.09956
6.34028
6.72202
7.29473
8.12744
9.30379
10.9013
12.9466
15.3708
18.1241
21.903
30.7413
60.6645
176.784
1051.63
1030.02
180.422
63.1466
30.7754
18.9694
14.0166
11.5195
10.0236
9.01663
8.28862
7.73608
7.30142
6.9522
6.66974
6.44434
6.27186
6.15147
6.08633
6.08245
6.148
6.29853
6.55764
6.95928
7.5516
8.39996
9.5818
11.1664
13.1737
15.5388
18.2352
21.9889
30.8323
60.8062
176.98
1051.9
1030.03
180.815
63.1515
30.743
18.9909
14.0698
11.5822
10.0902
9.08682
8.36345
7.8171
7.39032
7.0503
6.7782
6.56395
6.40285
6.29426
6.24135
6.25059
6.33057
6.49681
6.77253
7.19128
7.79961
8.65896
9.84072
11.4065
13.371
15.6751
18.3171
22.0531
30.9108
60.936
177.16
1052.16
1030.04
180.86
63.1406
30.7323
19.0265
14.1274
11.645
10.1555
9.15573
8.43731
7.89757
7.47905
7.14847
6.88682
6.6837
6.53396
6.43708
6.39619
6.41816
6.51191
6.69283
6.98347
7.41695
8.03816
8.9045
10.0814
11.6237
13.5418
15.7836
18.3741
22.0992
30.9795
61.0573
177.329
1052.42
1030.05
180.921
63.1316
30.7169
19.0581
14.1834
11.7084
10.2228
9.22742
8.51429
7.98122
7.5708
7.24944
6.99777
6.80509
6.66621
6.58053
6.55111
6.58512
6.69171
6.88603
7.19019
7.63614
8.2669
9.13628
10.3041
11.8187
13.6878
15.8675
18.4096
22.1293
31.0384
61.1686
177.486
1052.67
1030.06
180.98
63.1203
30.7041
19.0921
14.2397
11.7714
10.2896
9.29856
8.59088
8.06467
7.66247
7.35036
7.10865
6.92633
6.79815
6.7234
6.70504
6.75052
6.86909
7.07563
7.39169
7.84779
8.48516
9.35422
10.5092
11.9932
13.8116
15.93
18.4269
22.1461
31.0898
61.2726
177.634
1052.91
1030.07
181.036
63.1055
30.6901
19.1259
14.2963
11.8354
10.358
9.37175
8.66969
8.15029
7.7561
7.4529
7.22074
7.04834
6.93035
6.86598
6.85807
6.91422
7.04376
7.26117
7.58739
8.05148
8.6927
9.5582
10.6972
12.1479
13.9148
15.9733
18.4284
22.1515
31.1338
61.3684
177.773
1053.14
1030.08
181.089
63.0885
30.6769
19.1601
14.3523
11.8987
10.4259
9.44464
8.74841
8.23596
7.84982
7.55548
7.3327
7.16999
7.0619
7.00749
7.00948
7.0756
7.21515
7.44219
7.77693
8.24715
8.88977
9.74872
10.869
12.2844
13.9994
15.9999
18.4167
22.1472
31.1719
61.4577
177.907
1053.37
1030.09
181.14
63.0689
30.664
19.1953
14.4094
11.9635
10.4955
9.51927
8.82882
8.32319
7.94487
7.65904
7.44523
7.29178
7.19308
7.14807
7.15931
7.23458
7.38311
7.61847
7.9601
8.43444
9.07601
9.92579
11.0249
12.4035
14.0668
16.0114
18.3933
22.1344
31.2041
61.5402
178.037
1053.59
1030.1
181.192
63.0501
30.6541
19.2323
14.467
12.0285
10.5652
9.59405
8.90941
8.4106
8.04001
7.76253
7.55746
7.41296
7.32327
7.28717
7.30706
7.39073
7.54726
7.7897
8.13664
8.6132
9.2514
10.0897
11.1657
12.5064
14.1184
16.0096
18.3598
22.1142
31.2315
61.6173
178.168
1053.81
1030.11
181.241
63.0336
30.6499
19.2735
14.5273
12.0955
10.6367
9.6703
8.9913
8.49907
8.13593
7.86647
7.66976
7.53376
7.45255
7.42477
7.45264
7.54391
7.70744
7.95573
8.30649
8.78348
9.41663
10.2414
11.2924
12.5944
14.1558
15.9959
18.3174
22.0874
31.2541
61.6893
178.305
1054.02
1030.12
181.292
63.0205
30.6492
19.316
14.5877
12.1621
10.7077
9.74611
9.07276
8.58712
8.23134
7.96975
7.78116
7.65334
7.58022
7.56027
7.59552
7.69366
7.86329
8.1163
8.46954
8.94538
9.57179
10.3814
11.406
12.6687
14.1804
15.9716
18.2671
22.0544
31.2721
61.7576
178.461
1054.22
1030.13
181.345
63.0077
30.6497
19.3589
14.6479
12.2287
10.7788
9.82193
9.15418
8.67502
8.32642
8.07246
7.89167
7.77165
7.70616
7.69349
7.73551
7.83978
8.01462
8.27131
8.62576
9.09903
9.71715
10.5102
11.5074
12.7307
14.1938
15.9385
18.2104
22.0164
31.2865
61.8254
178.656
1054.42
1030.14
181.398
62.9957
30.6521
19.4021
14.7074
12.2944
10.8489
9.89686
9.23472
8.76201
8.42049
8.17397
8.00075
7.88822
7.82995
7.8241
7.87231
7.98206
8.1613
8.42069
8.77525
9.2447
9.85324
10.6285
11.5975
12.7816
14.1973
15.8977
18.148
21.9736
31.2983
61.8982
178.928
1054.61
1030.15
181.45
62.9836
30.6556
19.4456
14.7667
12.3597
10.9185
9.97125
9.31467
8.84829
8.51366
8.27434
8.10838
8.00296
7.95149
7.95195
8.0058
8.12037
8.30326
8.56448
8.91815
9.3827
9.98059
10.7371
11.6776
12.8227
14.1925
15.8512
18.0818
21.9278
31.3099
61.9872
179.353
1054.8
1030.16
181.501
62.9718
30.6603
19.4891
14.8252
12.424
10.9871
10.0445
9.39347
8.93334
8.60545
8.37312
8.21415
8.11551
8.07044
8.07678
8.13577
8.25458
8.44045
8.70275
9.05471
9.51352
10.1
10.8374
11.7495
12.8564
14.1817
15.7998
18.0122
21.8808
31.3265
62.1158
180.089
1054.99
1030.17
181.552
62.9603
30.6661
19.5326
14.8832
12.4877
11.055
10.117
9.47131
9.01727
8.6959
8.47029
8.318
8.22579
8.18674
8.1985
8.26214
8.38467
8.57292
8.83566
9.18525
9.63765
10.2121
10.9302
11.8136
12.8823
14.1637
15.7441
17.944
21.8392
31.3557
62.3272
181.43
1055.17
1030.18
181.603
62.9493
30.673
19.5758
14.9402
12.5502
11.1217
10.1882
9.54784
9.09972
8.78466
8.56552
8.41962
8.33351
8.30009
8.31688
8.38475
8.51052
8.70067
8.96333
9.30999
9.75548
10.3175
11.0158
11.8705
12.9016
14.1409
15.6872
17.8789
21.8067
31.4206
62.7133
183.671
1055.35
1030.19
181.653
62.9383
30.6805
19.6187
14.9964
12.6119
11.1874
10.2584
9.62321
9.18083
8.87181
8.65881
8.51894
8.43856
8.4104
8.43181
8.50348
8.63208
8.82367
9.08578
9.42908
9.86725
10.4166
11.0951
11.9216
12.9165
14.1166
15.6334
17.8234
21.7955
31.5356
63.1949
185.83
1055.52
1030.2
181.704
62.9277
30.6889
19.6611
15.0517
12.6724
11.252
10.3273
9.6972
9.26038
8.95712
8.74994
8.61576
8.54073
8.51744
8.54308
8.61818
8.74921
8.94184
9.20303
9.54263
9.97324
10.5098
11.1688
11.968
12.9287
14.0931
15.5846
17.7765
21.7921
31.631
63.4724
186.602
1055.7
1030.21
181.753
62.9175
30.6979
19.7033
15.1062
12.7321
11.3156
10.3951
9.76992
9.33843
9.04063
8.8389
8.70998
8.63988
8.62104
8.6505
8.72861
8.86169
9.05502
9.31497
9.65063
10.0736
10.5975
11.2375
12.0107
12.9394
14.0711
15.5399
17.7331
21.7824
31.6803
63.5746
186.742
1055.88
1030.22
181.803
62.9075
30.7074
19.7448
15.1598
12.7907
11.378
10.4617
9.84122
9.41482
9.12217
8.92553
8.80146
8.73584
8.721
8.75385
8.83458
8.96933
9.16302
9.42147
9.75307
10.1684
10.6801
11.302
12.0506
12.9496
14.0512
15.4989
17.6912
21.765
31.6992
63.6111
186.8
1056.06
1030.23
181.852
62.8979
30.7174
19.7858
15.2124
12.8483
11.4394
10.527
9.91107
9.48951
9.2017
9.00974
8.8901
8.82851
8.8172
8.85299
8.93591
9.07194
9.26565
9.52238
9.84983
10.2577
10.7576
11.3625
12.0883
12.9599
14.0338
15.4615
17.651
21.7429
31.7025
63.6249
186.845
1056.23
1030.24
181.901
62.8878
30.7272
19.8258
15.2636
12.9044
11.4992
10.5907
9.97923
9.5623
9.27903
9.09141
8.97578
8.91778
8.90956
8.94783
9.03253
9.16946
9.36289
9.61767
9.94093
10.3416
10.8304
11.4193
12.124
12.9706
14.0193
15.4283
17.6138
21.7198
31.6994
63.6316
186.89
1056.42
1030.25
181.948
62.8774
30.7369
19.8648
15.3136
12.9592
11.5577
10.653
10.0457
9.63317
9.35415
9.17052
9.0585
9.00366
8.99808
9.0384
9.12445
9.26191
9.45472
9.70736
10.0264
10.4201
10.8984
11.4726
12.158
12.9818
14.0077
15.3994
17.5803
21.6977
31.6941
63.6359
186.933
1056.6
1030.26
181.994
62.8659
30.7463
19.9029
15.3623
13.0127
11.6147
10.7136
10.1104
9.702
9.42697
9.24701
9.13824
9.08616
9.0828
9.12475
9.21177
9.34938
9.54128
9.79158
10.1064
10.4934
10.9618
11.5224
12.1903
12.9937
13.9991
15.3752
17.5515
21.6784
31.6895
63.6406
186.978
1056.78
1030.27
182.038
62.8538
30.7556
19.9402
15.41
13.065
11.6704
10.7727
10.1733
9.76887
9.49754
9.32093
9.21505
9.16535
9.16383
9.20703
9.29463
9.43206
9.62275
9.87051
10.181
10.5616
11.0207
11.5687
12.2207
13.0058
13.993
15.3552
17.5271
21.6627
31.6868
63.6469
187.025
1056.97
1030.28
182.08
62.8412
30.7649
19.9768
15.4568
13.1161
11.7247
10.8303
10.2345
9.83376
9.56586
9.3923
9.28898
9.24132
9.24127
9.28535
9.37319
9.51011
9.69933
9.94438
10.2506
10.6249
11.0752
11.6116
12.2491
13.0174
13.9883
15.3391
17.5084
21.6508
31.6867
63.6551
187.073
1057.16
1030.29
182.122
62.8284
30.7744
20.013
15.5026
13.1662
11.7778
10.8865
10.2941
9.89675
9.63199
9.46118
9.36012
9.31415
9.31522
9.35984
9.4476
9.58372
9.7712
10.0134
10.3153
10.6834
11.1253
11.6508
12.2747
13.0279
13.9847
15.3266
17.4942
21.6421
31.6887
63.6646
187.12
1057.34
1030.3
182.162
62.8158
30.7844
20.0487
15.5477
13.2153
11.8298
10.9412
10.352
9.95785
9.69598
9.52763
9.42851
9.38392
9.38581
9.43066
9.51803
9.65305
9.83855
10.0777
10.3752
10.7372
11.1711
11.6862
12.2976
13.0371
13.9818
15.3167
17.4836
21.6365
31.6928
63.6754
187.168
1057.53
1030.31
182.201
62.8028
30.7944
20.084
15.592
13.2634
11.8806
10.9947
10.4084
10.0171
9.75788
9.59172
9.49425
9.45075
9.45316
9.49794
9.58464
9.71832
9.90161
10.1375
10.4305
10.7865
11.2125
11.7178
12.3175
13.0448
13.9792
15.3085
17.4756
21.6335
31.6987
63.6872
187.215
1057.71
1030.32
182.238
62.79
30.8049
20.1192
15.6359
13.3108
11.9305
11.0469
10.4633
10.0747
9.81783
9.65358
9.55747
9.51477
9.5174
9.56183
9.6476
9.77967
9.96052
10.193
10.4814
10.8314
11.2498
11.7456
12.3344
13.0507
13.9761
15.3011
17.4689
21.6319
31.7054
63.6988
187.26
1057.89
1030.33
182.274
62.7776
30.8162
20.1545
15.6795
13.3578
11.9796
11.0983
10.5171
10.1308
9.87602
9.71338
9.61836
9.57617
9.57875
9.62256
9.70714
9.83738
10.0156
10.2445
10.5282
10.8722
11.2831
11.7699
12.3486
13.0548
13.9725
15.2942
17.4635
21.6318
31.7135
63.7116
187.305
1058.07
1030.34
182.311
62.7669
30.829
20.1904
15.7233
13.4046
12.0284
11.1489
10.5698
10.1856
9.93259
9.77128
9.67704
9.63507
9.63731
9.68024
9.7634
9.89156
10.0669
10.2921
10.5711
10.9091
11.3126
11.7907
12.36
13.0571
13.968
15.2872
17.4586
21.6325
31.722
63.724
187.347
1058.25
1030.35
182.347
62.7571
30.8428
20.2267
15.7671
13.4512
12.0767
11.1989
10.6216
10.2393
9.98773
9.82744
9.73369
9.69166
9.69329
9.73507
9.81654
9.94241
10.1148
10.336
10.6101
10.9422
11.3385
11.8083
12.3687
13.0575
13.9624
15.2799
17.454
21.6338
31.7312
63.7365
187.388
1058.42
1030.35
182.384
62.7487
30.8576
20.2635
15.8112
13.4979
12.1249
11.2484
10.6728
10.292
10.0416
9.88207
9.78851
9.74612
9.74686
9.78723
9.86678
9.99013
10.1592
10.3765
10.6456
10.9717
11.361
11.8229
12.3749
13.0562
13.956
15.2724
17.4497
21.6358
31.7412
63.7497
187.429
1058.6
1030.36
182.42
62.7403
30.8726
20.3001
15.8552
13.5444
12.1729
11.2976
10.7233
10.3438
10.0944
9.93532
9.84166
9.79862
9.79819
9.83689
9.91426
10.0349
10.2005
10.4136
10.6778
10.9979
11.3804
11.8347
12.3789
13.0534
13.9488
15.2648
17.4459
21.6389
31.7528
63.7645
187.469
1058.76
1030.37
182.455
62.7314
30.8875
20.3367
15.8991
13.5909
12.2207
11.3465
10.7735
10.3951
10.1464
9.98741
9.89335
9.84937
9.84748
9.88421
9.95914
10.0767
10.2388
10.4474
10.7065
11.0208
11.3966
11.8437
12.3807
13.0491
13.9408
15.257
17.4424
21.6425
31.7646
63.7785
187.505
1058.93
1030.38
182.489
62.7231
30.9032
20.3738
15.9434
13.6378
12.2687
11.3955
10.8235
10.4459
10.1977
10.0386
9.94384
9.89862
9.89496
9.92943
10.0016
10.116
10.2741
10.4782
10.732
11.0403
11.4095
11.8497
12.3801
13.043
13.9319
15.2489
17.4389
21.6462
31.7762
63.7903
187.534
1059.1
1030.39
182.524
62.7174
30.9208
20.4121
15.9886
13.6852
12.3172
11.4447
10.8735
10.4966
10.2485
10.0891
9.99333
9.94656
9.94084
9.97277
10.042
10.1527
10.3067
10.5059
10.7543
11.0565
11.4193
11.8527
12.3769
13.0349
13.9214
15.2397
17.4346
21.6487
31.785
63.7973
187.561
1059.26
1030.4
182.56
62.7131
30.9397
20.4513
16.0346
13.7335
12.3663
11.4945
10.9239
10.5473
10.2991
10.139
10.042
9.99339
9.98532
10.0144
10.0803
10.1873
10.3368
10.531
10.7737
11.0698
11.4259
11.8527
12.3708
13.0244
13.909
15.229
17.4292
21.6501
31.7922
63.8019
187.585
1059.41
1030.41
182.596
62.7106
30.9598
20.4913
16.0814
13.7825
12.4162
11.5451
10.9748
10.5983
10.3497
10.1886
10.0901
10.0394
10.0287
10.0547
10.1171
10.22
10.3648
10.5538
10.7907
11.0804
11.4299
11.8501
12.3624
13.0118
13.8949
15.217
17.4229
21.6512
31.7996
63.8066
187.608
1059.57
1030.42
182.635
62.7108
30.9814
20.5322
16.129
13.8323
12.467
11.5965
11.0265
10.6498
10.4004
10.2381
10.1377
10.0847
10.0712
10.0939
10.1525
10.2511
10.3911
10.5746
10.8054
11.0887
11.4314
11.8451
12.3516
12.997
13.8789
15.2035
17.4157
21.652
31.8073
63.8113
187.629
1059.72
1030.43
182.673
62.7115
31.0036
20.5737
16.1774
13.883
12.5187
11.6488
11.079
10.7018
10.4515
10.2876
10.1851
10.1295
10.1129
10.1321
10.1867
10.2809
10.4158
10.5937
10.8183
11.095
11.4309
11.838
12.3387
12.9803
13.8612
15.1886
17.4073
21.6521
31.8146
63.8155
187.648
1059.86
1030.44
182.713
62.7158
31.0281
20.6167
16.227
13.935
12.5716
11.7023
11.1325
10.7547
10.5031
10.3373
10.2325
10.174
10.1541
10.1695
10.22
10.3095
10.4392
10.6113
10.8296
11.0995
11.4285
11.8289
12.324
12.9619
13.8418
15.1722
17.3979
21.6514
31.8216
63.819
187.665
1060.01
1030.45
182.756
62.7225
31.0543
20.661
16.2779
13.9881
12.6256
11.7568
11.187
10.8083
10.5553
10.3874
10.2799
10.2183
10.1949
10.2064
10.2525
10.3372
10.4615
10.6276
10.8394
11.1025
11.4245
11.8181
12.3076
12.9417
13.8208
15.1544
17.3872
21.65
31.8283
63.8225
187.68
1060.14
1030.46
182.8
62.7314
31.0819
20.7064
16.3299
14.0424
12.6807
11.8124
11.2424
10.8628
10.6081
10.4379
10.3275
10.2626
10.2354
10.2427
10.2844
10.3641
10.4829
10.6429
10.8481
11.1042
11.419
11.8059
12.2896
12.92
13.7985
15.1354
17.3757
21.648
31.8348
63.8257
187.693
1060.28
1030.47
182.845
62.7425
31.111
20.7531
16.3831
14.0978
12.737
11.8691
11.2989
10.9182
10.6616
10.4888
10.3753
10.3068
10.2757
10.2788
10.3159
10.3905
10.5035
10.6573
10.8558
11.1046
11.4121
11.792
12.2697
12.8963
13.7742
15.1146
17.3624
21.6444
31.8398
63.8269
187.703
1060.41
1030.48
182.891
62.7545
31.1412
20.8008
16.4374
14.1544
12.7944
11.9269
11.3563
10.9744
10.7157
10.5403
10.4235
10.3512
10.316
10.3147
10.347
10.4165
10.5237
10.6712
10.8627
11.1042
11.4041
11.7766
12.2481
12.8709
13.7487
15.0931
17.3478
21.6397
31.8445
63.8281
187.712
1060.54
1030.48
182.94
62.7707
31.1741
20.8505
16.4935
14.2126
12.8532
11.986
11.415
11.0317
10.7707
10.5923
10.472
10.3958
10.3564
10.3506
10.3781
10.4423
10.5437
10.6847
10.8692
11.1031
11.3951
11.7599
12.225
12.844
13.7219
15.0703
17.3316
21.6332
31.8474
63.8267
187.716
1060.66
1030.49
182.99
62.7884
31.2081
20.9013
16.5508
14.272
12.9133
12.0463
11.4747
11.0899
10.8265
10.6449
10.5209
10.4407
10.3969
10.3865
10.4091
10.4679
10.5634
10.6978
10.8751
11.1011
11.385
11.7419
12.2004
12.8156
13.6936
15.0457
17.313
21.6238
31.847
63.8208
187.714
1060.78
1030.5
183.044
62.8106
31.2447
20.9538
16.6094
14.3327
12.9746
12.1078
11.5356
11.149
10.8831
10.6981
10.5702
10.4857
10.4375
10.4223
10.4399
10.4933
10.5829
10.7107
10.8807
11.0988
11.3742
11.7231
12.175
12.7861
13.6638
15.019
17.2916
21.6107
31.842
63.8086
187.705
1060.89
1030.51
183.102
62.8355
31.2827
21.0073
16.669
14.3944
13.0368
12.1701
11.5973
11.2089
10.9402
10.7517
10.6197
10.5308
10.4779
10.458
10.4706
10.5186
10.6023
10.7235
10.8862
11.0963
11.3635
11.7043
12.1494
12.7561
13.633
14.9905
17.2675
21.594
31.8326
63.7912
187.692
1061
1030.52
183.161
62.8626
31.3224
21.0622
16.73
14.4574
13.1003
12.2336
11.66
11.2697
10.998
10.8057
10.6695
10.576
10.5184
10.4936
10.5012
10.5439
10.6218
10.7366
10.8922
11.0946
11.3536
11.6864
12.1246
12.7266
13.6022
14.9613
17.2418
21.5749
31.8205
63.7714
187.677
1061.11
1030.53
183.225
62.8945
31.3652
21.1192
16.7927
14.5217
13.165
12.2983
11.7237
11.3313
11.0565
10.8602
10.7195
10.6213
10.5589
10.5292
10.5318
10.5693
10.6415
10.7502
10.8989
11.0939
11.345
11.6701
12.1014
12.6986
13.5722
14.9323
17.2155
21.5542
31.8061
63.7492
187.661
1061.22
1030.54
183.292
62.9294
31.4097
21.1777
16.8567
14.5874
13.2308
12.3639
11.7883
11.3937
11.1154
10.9149
10.7695
10.6665
10.5992
10.5645
10.5622
10.5947
10.6615
10.7642
10.9065
11.0944
11.3381
11.6557
12.0804
12.6726
13.544
14.9044
17.1894
21.533
31.7908
63.7265
187.645
1061.33
1030.55
183.363
62.9671
31.4562
21.2378
16.9223
14.6545
13.298
12.4308
11.8539
11.4567
11.1749
10.9699
10.8196
10.7115
10.6392
10.5996
10.5924
10.62
10.6816
10.7788
10.915
11.0963
11.3329
11.6435
12.0618
12.6492
13.518
14.8782
17.1645
21.5121
31.7752
63.7043
187.631
1061.44
1030.56
183.437
63.0073
31.5045
21.2996
16.9894
14.723
13.3664
12.4987
11.9204
11.5205
11.2347
11.0251
10.8696
10.7563
10.6787
10.6342
10.6222
10.645
10.7016
10.7936
10.9242
11.0993
11.3295
11.6335
12.0457
12.6284
13.4946
14.8543
17.1413
21.4922
31.76
63.6829
187.619
1061.55
1030.57
183.513
63.0491
31.5541
21.3629
17.0582
14.7932
13.4363
12.5679
11.9879
11.585
11.295
11.0802
10.9193
10.8005
10.7177
10.6681
10.6513
10.6694
10.7214
10.8084
10.9338
11.1033
11.3275
11.6255
12.0322
12.6104
13.474
14.8329
17.1201
21.4738
31.7459
63.6635
187.61
1061.66
1030.58
183.593
63.0931
31.6056
21.4282
17.1289
14.8652
13.5079
12.6385
12.0566
11.6503
11.3556
11.1353
10.9686
10.8441
10.7558
10.7011
10.6796
10.6931
10.7406
10.8231
10.9437
11.1081
11.3269
11.6195
12.0211
12.5952
13.4563
14.8144
17.1017
21.4577
31.7337
63.6471
187.606
1061.78
1030.59
183.675
63.1383
31.6584
21.4953
17.2018
14.9393
13.5814
12.7108
12.1265
11.7162
11.4163
11.1901
11.0172
10.8866
10.7926
10.7327
10.7065
10.7157
10.7589
10.8372
10.9534
11.1133
11.3273
11.615
12.0122
12.5826
13.4414
14.7986
17.0858
21.4437
31.7232
63.633
187.604
1061.9
1030.6
183.757
63.1836
31.7119
21.5641
17.2768
15.0158
13.6573
12.7852
12.1979
11.783
11.4771
11.2443
11.0647
10.9278
10.828
10.7628
10.7319
10.7368
10.776
10.8503
10.9626
11.1184
11.3282
11.6117
12.005
12.5722
13.429
14.7855
17.0725
21.432
31.7147
63.622
187.606
1062.02
1030.61
183.844
63.2315
31.7679
21.6356
17.3547
15.0953
13.7365
12.8622
12.2709
11.8502
11.5375
11.2976
11.1109
10.9673
10.8615
10.791
10.7554
10.7561
10.7915
10.8622
10.9709
11.1231
11.3294
11.6093
11.9993
12.5638
13.419
14.7749
17.062
21.4231
31.7087
63.6144
187.612
1062.15
1030.62
183.93
63.2784
31.825
21.7096
17.4355
15.1778
13.8188
12.9419
12.3454
11.918
11.5977
11.3499
11.1557
11.0051
10.8931
10.8172
10.7768
10.7735
10.8052
10.8725
10.9781
11.1272
11.3303
11.6073
11.9946
12.557
13.411
14.7668
17.0542
21.4171
31.7062
63.612
187.624
1062.28
1030.63
184.018
63.3274
31.8852
21.7875
17.5203
15.2638
13.9042
13.024
12.4218
11.987
11.6584
11.402
11.1996
11.0416
10.9229
10.8413
10.7962
10.7888
10.8169
10.8812
10.9839
11.1303
11.3309
11.6054
11.9906
12.5516
13.4051
14.7608
17.0487
21.4135
31.7061
63.6128
187.638
1062.41
1030.64
184.11
63.3787
31.9484
21.8692
17.609
15.3537
13.9931
13.1092
12.5005
12.0574
11.7195
11.4537
11.2424
11.0764
10.9508
10.8633
10.8132
10.8017
10.8264
10.8877
10.9879
11.132
11.3304
11.603
11.9868
12.547
13.4005
14.7565
17.0453
21.4123
31.7088
63.6175
187.656
1062.54
1030.65
184.205
63.4328
32.0153
21.9554
17.7022
15.4478
14.0857
13.1975
12.5816
12.1292
11.781
11.505
11.2842
11.1096
10.9766
10.8828
10.8276
10.812
10.8333
10.8919
10.9897
11.1319
11.3287
11.5999
11.9829
12.543
13.3969
14.7535
17.0435
21.413
31.7139
63.6256
187.676
1062.67
1030.67
184.304
63.4898
32.0857
22.046
17.8
15.546
14.1821
13.2891
12.665
12.2024
11.8429
11.5557
11.3245
11.1407
10.9998
10.8995
10.8391
10.8192
10.8372
10.8932
10.989
11.1296
11.3252
11.5956
11.9783
12.5388
13.3936
14.7511
17.0425
21.4145
31.7196
63.635
187.697
1062.81
1030.68
184.406
63.5479
32.1586
22.1403
17.902
15.6485
14.2825
13.384
12.751
12.2769
11.9051
11.6056
11.3631
11.1695
11.0203
10.9131
10.8472
10.8231
10.8378
10.8913
10.9854
11.1248
11.3196
11.5898
11.9727
12.5342
13.3903
14.7492
17.0424
21.4173
31.7274
63.6479
187.721
1062.95
1030.69
184.513
63.6087
32.2347
22.239
18.0085
15.7554
14.3869
13.4824
12.8393
12.3526
11.9671
11.6543
11.3997
11.1956
11.0375
10.9232
10.8516
10.8231
10.8346
10.8857
10.9783
11.1169
11.3114
11.5819
11.9658
12.5287
13.3866
14.7474
17.0427
21.4209
31.7364
63.6632
187.746
1063.09
1030.7
184.621
63.6682
32.3115
22.3407
18.1193
15.8667
14.4955
13.5841
12.9298
12.429
12.0285
11.7013
11.4337
11.2183
11.0509
10.9291
10.8517
10.8189
10.8271
10.8761
10.9675
11.1055
11.3003
11.5717
11.957
12.5221
13.3824
14.7455
17.0436
21.4255
31.7472
63.682
187.775
1063.23
1030.72
184.728
63.7254
32.3886
22.4452
18.2342
15.9826
14.6083
13.6891
13.022
12.5055
12.0885
11.7457
11.4642
11.2371
11.06
10.9305
10.8472
10.8099
10.815
10.8621
10.9524
11.0904
11.2858
11.5586
11.9461
12.5139
13.3773
14.7434
17.0448
21.4311
31.76
63.7044
187.806
1063.38
1030.73
184.837
63.7801
32.4656
22.5528
18.354
16.1042
14.7262
13.7976
13.1155
12.5812
12.1462
11.7867
11.4907
11.2513
11.0642
10.9268
10.8376
10.7959
10.798
10.8433
10.9329
11.0712
11.2678
11.5426
11.9328
12.504
13.3711
14.741
17.0464
21.4379
31.7753
63.7309
187.84
1063.52
1030.75
184.946
63.834
32.5449
22.6643
18.479
16.233
14.85
13.9084
13.2086
12.6548
12.2005
11.8235
11.5124
11.2604
11.0632
10.9178
10.8226
10.7766
10.7758
10.8194
10.9087
11.0476
11.2458
11.5231
11.9167
12.492
13.3635
14.7378
17.048
21.4454
31.7923
63.7608
187.874
1063.67
1030.76
185.049
63.8867
32.6275
22.7807
18.609
16.3668
14.9776
14.0213
13.3019
12.7267
12.2518
11.8563
11.5293
11.2643
11.0566
10.9032
10.8019
10.7517
10.7481
10.7904
10.8794
11.0194
11.2197
11.5002
11.8978
12.4778
13.3545
14.7339
17.0495
21.4536
31.8108
63.7932
187.909
1063.82
1030.78
185.157
63.9417
32.7143
22.9027
18.7444
16.5052
15.1088
14.1363
13.3955
12.7971
12.3001
11.8848
11.5412
11.2625
11.044
10.8823
10.775
10.7205
10.7143
10.7554
10.8447
10.986
11.1889
11.4731
11.8754
12.4608
13.3434
14.7286
17.0503
21.4617
31.83
63.8274
187.944
1063.97
1030.79
185.265
63.9951
32.8026
23.0291
18.8849
16.6485
15.2439
14.253
13.4882
12.8644
12.3434
11.9072
11.5462
11.2535
11.0242
10.8542
10.741
10.6825
10.6739
10.7141
10.8039
10.9471
11.1532
11.4417
11.8493
12.441
13.3301
14.7219
17.0505
21.4699
31.8505
63.8648
187.98
1064.13
1030.81
185.371
64.0457
32.8926
23.1602
19.0308
16.7965
15.382
14.3704
13.579
12.9275
12.3809
11.9228
11.5438
11.2369
10.9966
10.8185
10.6995
10.6372
10.6265
10.6661
10.7568
10.9022
11.112
11.4054
11.8191
12.4176
13.3142
14.7133
17.0495
21.4778
31.8722
63.9051
188.017
1064.29
1030.82
185.474
64.092
32.9831
23.2961
19.1831
16.9504
15.5239
14.4883
13.6668
12.985
12.4111
11.93
11.5326
11.2114
10.9603
10.7743
10.6499
10.5842
10.5717
10.6112
10.7031
10.8514
11.0653
11.3644
11.7848
12.391
13.2958
14.7032
17.0479
21.486
31.8952
63.9481
188.053
1064.45
1030.84
185.57
64.1317
33.0731
23.4366
19.3424
17.1103
15.6685
14.6046
13.7495
13.0348
12.4322
11.9276
11.5116
11.1762
10.9146
10.7212
10.5918
10.523
10.5092
10.5489
10.6427
10.7942
11.0128
11.318
11.7458
12.3605
13.2742
14.6904
17.0443
21.493
31.9179
63.9916
188.087
1064.61
1030.86
185.658
64.1664
33.1638
23.5822
19.5116
17.2778
15.8149
14.7174
13.8252
13.0756
12.4434
11.915
11.4805
11.1312
10.8595
10.6591
10.5252
10.4539
10.4392
10.4797
10.5757
10.7309
10.9549
11.2669
11.7027
12.3265
13.2499
14.6759
17.0398
21.4997
31.9416
64.0372
188.121
1064.77
1030.87
185.744
64.2002
33.2581
23.7335
19.6892
17.4511
15.9611
14.8257
13.8934
13.1075
12.4447
11.892
11.439
11.0761
10.7948
10.5878
10.4499
10.3765
10.3616
10.4032
10.5019
10.6615
10.8912
11.2105
11.6549
12.2883
13.2221
14.6583
17.0327
21.5045
31.9639
64.0818
188.149
1064.94
1030.89
185.825
64.2293
33.3547
23.89
19.8709
17.6273
16.1082
14.9316
13.956
13.1309
12.4359
11.8582
11.3865
11.0102
10.7197
10.5068
10.3656
10.2908
10.2761
10.3196
10.4216
10.5859
10.822
11.1491
11.6027
12.2465
13.1912
14.6383
17.0239
21.508
31.9855
64.1261
188.176
1065.11
1030.91
185.899
64.2513
33.4515
24.0521
20.06
17.809
16.2559
15.0324
14.0091
13.1422
12.4137
11.8108
11.3208
10.9319
10.633
10.4151
10.2714
10.196
10.1824
10.2284
10.3343
10.5039
10.7468
11.0822
11.5454
12.1999
13.156
14.6145
17.0116
21.5086
32.0052
64.1693
188.198
1065.28
1030.93
185.961
64.2645
33.5484
24.219
20.254
17.9933
16.4017
15.1265
14.0515
13.1406
12.3777
11.7494
11.2417
10.8409
10.5346
10.3128
10.1676
10.0926
10.0808
10.1301
10.2406
10.4162
10.6665
11.0107
11.484
12.1498
13.1178
14.5883
16.9975
21.508
32.0243
64.2126
188.219
1065.46
1030.94
186.017
64.2709
33.645
24.3926
20.4559
18.1822
16.5456
15.212
14.0809
13.1236
12.3256
11.6723
11.1479
10.7365
10.4242
10.1995
10.054
9.98032
9.97139
10.0248
10.1406
10.3227
10.5808
10.934
11.4177
12.0949
13.0751
14.5576
16.9793
21.5036
32.0405
64.2531
188.234
1065.63
1030.96
186.056
64.2587
33.7335
24.5691
20.6631
18.3717
16.6826
15.2843
14.0936
13.0887
12.2559
11.5788
11.0389
10.6184
10.3015
10.0755
9.93086
9.85974
9.85469
9.9131
10.035
10.2244
10.4909
10.8538
11.3482
12.0373
13.0298
14.5248
16.9591
21.4973
32.0547
64.2908
188.244
1065.82
1030.98
186.072
64.2203
33.809
24.7505
20.8779
18.5608
16.8099
15.3411
14.0884
13.0357
12.1689
11.4691
10.9153
10.4872
10.1672
9.94122
9.79871
9.73122
9.73104
9.79535
9.92414
10.1213
10.3967
10.7694
11.2746
11.9753
12.9801
14.4874
16.9342
21.4864
32.065
64.3243
188.247
1066
1031
186.01
64.1169
33.8569
24.9324
21.0962
18.7434
16.9233
15.3806
14.0648
12.9645
12.0646
11.3436
10.7774
10.3433
10.0217
9.79721
9.65818
9.59555
9.60136
9.67259
9.80916
10.015
10.2998
10.683
11.1994
11.912
12.9291
14.4487
16.908
21.4737
32.0722
64.3527
188.245
1066.2
1031.01
185.436
63.8486
33.8635
25.1058
21.3136
18.9247
17.0304
15.4081
14.0253
12.8757
11.9427
11.2016
10.6246
10.1862
9.86474
9.64323
9.50905
9.4525
9.46538
9.54447
9.68958
9.90461
10.1994
10.5931
11.1206
11.8448
12.8737
14.4049
16.8759
21.4545
32.0726
64.373
188.233
1066.39
1031.03
183.292
63.3387
33.8462
25.2925
21.5432
19.106
17.1249
15.4155
13.9628
12.7641
11.7999
11.041
10.4557
10.0155
9.69625
9.47962
9.35193
9.30293
9.32424
9.4124
9.56718
9.79245
10.098
10.503
11.0422
11.7783
12.819
14.3619
16.8445
21.4355
32.0724
64.3923
188.223
1066.6
1031.05
180.905
62.9203
33.8916
25.5069
21.7811
19.2824
17.2052
15.4035
13.8789
12.6314
11.6376
10.8632
10.272
9.83204
9.51707
9.30702
9.18729
9.14712
9.17794
9.27614
9.44137
9.67748
9.99424
10.4107
10.9614
11.709
12.7608
14.3147
16.8081
21.4107
32.066
64.4039
188.203
1066.8
1031.07
179.535
62.7091
33.9897
25.74
22.0241
19.4512
17.2674
15.3672
13.7692
12.4743
11.4536
10.6667
10.0728
9.63586
9.32748
9.12606
9.01605
8.98623
9.02798
9.1375
9.3144
9.5625
9.89152
10.3203
10.8834
11.6428
12.706
14.2709
16.775
21.3883
32.0602
64.4152
188.189
1067.03
1031.08
178.843
62.5821
34.1052
25.9795
22.2647
19.6065
17.3068
15.304
13.6325
12.2924
11.2482
10.4525
9.85887
9.42779
9.12828
8.93733
8.83856
8.82038
8.87413
8.99589
9.18521
9.44589
9.78755
10.2289
10.8041
11.5748
12.6486
14.2238
16.7377
21.3613
32.0498
64.4211
188.165
1067.24
1031.1
178.469
62.4964
34.2383
26.2295
22.5042
19.7464
17.3205
15.2109
13.4666
12.0846
11.021
10.2207
9.63113
9.2089
8.92071
8.74225
8.65638
8.65131
8.71842
8.8537
9.0567
9.33121
9.68676
10.1419
10.7302
11.5129
12.5976
14.1833
16.7069
21.3392
32.0414
64.4272
188.149
1067.5
1031.11
178.257
62.4331
34.3824
26.4844
22.7358
19.8638
17.3024
15.0843
13.2699
11.8506
10.7731
9.97285
9.3911
8.98063
8.70598
8.54166
8.46998
8.47901
8.56027
8.70974
8.92694
9.21564
9.58525
10.054
10.6552
11.4493
12.5439
14.1393
16.6717
21.3124
32.0287
64.4283
188.124
1067.72
1031.12
178.118
62.3756
34.5359
26.7455
22.9569
19.9528
17.2468
14.9198
13.04
11.5901
10.5049
9.71002
9.14031
8.74478
8.48601
8.33762
8.28152
8.30587
8.40245
8.56728
8.79994
9.10419
9.48932
9.97323
10.5886
11.3949
12.5002
14.1056
16.6465
21.2935
32.0192
64.4296
188.107
1068
1031.14
178.019
62.3253
34.6994
27.0099
23.16
20.0056
17.1493
14.7164
12.778
11.3049
10.2188
9.43475
8.88115
8.50341
8.26239
8.13109
8.09123
8.13125
8.24333
8.42362
8.67181
8.9916
9.39207
9.89067
10.5194
11.3368
12.4514
14.0657
16.6143
21.2674
32.0037
64.424
188.079
1068.23
1031.15
177.931
62.2742
34.8726
27.2735
23.3364
20.0151
17.0065
14.4724
12.4829
10.9947
9.915
9.14779
8.61486
8.25815
8.03708
7.92423
7.90148
7.95779
8.08602
8.2826
8.5474
8.88418
9.30185
9.81741
10.4618
11.2922
12.4173
14.0412
16.597
21.2533
31.994
64.4222
188.067
1068.53
1031.16
177.855
62.228
35.0463
27.5237
23.4877
19.9901
16.8249
14.1912
12.1567
10.6609
9.59449
8.85043
8.34325
8.01111
7.81166
7.71757
7.71133
7.78288
7.92621
8.13843
8.41953
8.77306
9.20756
9.73945
10.399
11.2422
12.3767
14.0074
16.5693
21.2303
31.9805
64.4189
188.047
1068.77
1031.17
177.758
62.1658
35.2181
27.766
23.6091
19.9173
16.5909
13.8635
11.7942
10.3016
9.25788
8.54367
8.0666
7.76093
7.58439
7.51061
7.52246
7.61048
7.76951
7.99775
8.29623
8.66855
9.12275
9.67447
10.3529
11.2126
12.359
13.997
16.564
21.2257
31.9789
64.4282
188.056
1069.1
1031.18
177.654
62.1065
35.3885
27.9895
23.6945
19.7992
16.312
13.498
11.4041
9.92473
8.91164
8.23234
7.78623
7.50708
7.35415
7.30152
7.33227
7.43742
7.61235
7.85586
8.17029
8.56
9.03266
9.60294
10.2987
11.173
12.3294
13.9736
16.5457
21.2109
31.9739
64.4392
188.062
1069.34
1031.18
177.525
62.0356
35.5565
28.1959
23.7399
19.6264
15.9778
13.0871
10.9821
9.52803
8.5537
7.91306
7.50027
7.24986
7.12252
7.09283
7.14424
7.26838
7.46126
7.72191
8.05386
8.46318
8.95751
9.55048
10.2682
11.1612
12.3302
13.9814
16.5578
21.2225
31.9892
64.4698
188.091
1069.7
1031.19
177.388
61.9685
35.7202
28.3754
23.7385
19.3996
15.5952
12.6401
10.5372
9.11903
8.19019
7.58954
7.21033
6.98957
6.88858
6.88247
6.95494
7.09826
7.30912
7.58666
7.93493
8.36144
8.87468
9.48771
10.2251
11.1354
12.3164
13.9749
16.5567
21.2256
32.0045
64.4996
188.1
1069.94
1031.2
177.215
61.8861
35.8763
28.526
23.6832
19.1081
15.1537
12.1494
10.0644
8.69364
7.81677
7.25997
6.91719
6.72838
6.65571
6.67495
6.77021
6.93452
7.16548
7.46257
7.83009
8.27678
8.81277
9.4505
10.2128
11.1457
12.3443
14.011
16.5915
21.2542
32.032
64.5397
188.14
1070.34
1031.2
177.04
61.8165
36.0275
28.6418
23.5728
18.7581
14.664
11.6271
9.57638
8.26359
7.43956
6.92626
6.62106
6.46511
6.42144
6.46646
6.58457
6.76957
7.02001
7.33557
7.72062
8.18501
8.74068
9.3995
10.1826
11.134
12.3461
14.0182
16.5958
21.2529
32.0322
64.5465
188.134
1070.58
1031.2
176.827
61.7352
36.1682
28.7176
23.3971
18.3377
14.1157
11.0647
9.06443
7.82035
7.05494
6.58907
6.32455
6.2039
6.19136
6.26415
6.40703
6.61479
6.8872
7.22436
7.63081
8.11768
8.69882
9.38539
10.1965
11.1734
12.4045
14.084
16.6576
21.3075
32.097
64.6619
188.279
1071.02
1031.2
176.635
61.6905
36.3064
28.7505
23.1601
17.8604
13.528
10.4822
8.54543
7.37541
6.67026
6.25254
6.02904
5.94381
5.9623
6.0625
6.22944
6.45885
6.75177
7.10868
7.5344
8.04083
8.64266
9.35126
10.1843
11.1807
12.4256
14.1101
16.68
21.3176
32.0708
64.4339
186.714
1071.24
1031.2
176.405
61.6262
36.4237
28.7257
22.8402
17.3007
12.8786
9.86601
8.01427
6.9226
6.27978
5.91426
5.73519
5.68834
5.74052
5.87065
6.06402
6.31754
6.63393
7.01422
7.46377
7.99589
8.62595
9.36458
10.2274
11.2493
12.5094
14.1903
16.7346
21.3183
31.9561
63.9461
184.127
1071.73
1031.19
176.185
61.5845
36.5218
28.6427
22.4549
16.6922
12.2033
9.24221
7.48543
6.47457
5.89457
5.58133
5.44625
5.43709
5.52209
5.68096
5.89916
6.17469
6.51201
6.91258
7.38288
7.93646
8.5886
9.35044
10.236
11.2773
12.5495
14.2305
16.7573
21.2985
31.8494
63.5691
182.454
1071.92
1031.19
175.908
61.5167
36.5886
28.4848
21.9725
15.9989
11.4743
8.59397
6.94932
6.02724
5.51456
5.25668
5.16795
5.19854
5.31872
5.50858
5.7533
6.05282
6.41384
6.83845
7.33565
7.919
8.60256
9.39768
10.3152
11.3819
12.6667
14.3394
16.8276
21.2983
31.7686
63.3598
181.619
1072.49
1031.18
175.656
61.4811
36.6304
28.2592
21.4248
15.2705
10.7437
7.96521
6.43069
5.59348
5.14724
4.9436
4.89981
4.96851
5.12197
5.34087
5.60928
5.92876
6.30879
6.75478
7.27566
7.88134
8.58793
9.40895
10.3529
11.4432
12.7447
14.4234
16.9021
21.3479
31.7912
63.3078
181.198
1072.63
1031.17
175.325
61.4063
36.6303
27.9509
20.779
14.4644
9.97336
7.3301
5.91578
5.16908
4.79502
4.64929
4.65295
4.76165
4.95004
5.20135
5.4964
5.83644
6.24017
6.71442
7.26457
7.9004
8.64043
9.49918
10.4799
11.5983
12.9102
14.572
16.9987
21.3654
31.7511
63.2491
180.993
1073.29
1031.16
175.044
61.3715
36.5954
27.5835
20.1042
13.6717
9.24236
6.74026
5.44081
4.77787
4.47011
4.37713
4.42352
4.56761
4.78609
5.06442
5.38215
5.74204
6.16671
6.66007
7.22835
7.88158
8.63999
9.52201
10.5313
11.6799
13.0185
14.6986
17.1321
21.4993
31.8943
63.3759
180.973
1073.37
1031.15
174.633
61.2579
36.4937
27.1286
19.3443
12.8277
8.5019
6.1677
4.99255
4.41723
4.17826
4.13992
4.23083
4.41245
4.66372
4.97223
5.31917
5.70661
6.15795
6.67817
7.27479
7.95891
8.75096
9.66954
10.7158
11.8929
13.2399
14.8953
17.2619
21.5302
31.8573
63.3322
180.899
1074.14
1031.13
174.326
61.1931
36.3283
26.6393
18.6495
12.1213
7.91509
5.69913
4.61455
4.11173
3.9292
3.93467
4.06029
4.27029
4.54539
4.87188
5.23507
5.64094
6.10865
6.64249
7.25013
7.94315
8.7415
9.66805
10.7309
11.9325
13.3078
14.9884
17.3735
21.6615
32.0182
63.5069
181.017
1074.14
1031.11
173.814
60.9609
36.0097
26.0308
17.9009
11.4187
7.37229
5.29402
4.30862
3.88212
3.75774
3.80915
3.97387
4.22033
4.5272
4.87333
5.2467
5.66575
6.16386
6.74154
7.39443
8.13395
8.97947
9.95106
11.0512
12.2756
13.6534
15.3097
17.6374
21.84
32.1472
63.6108
181.039
1075.03
1031.09
173.452
60.7208
35.4687
25.3278
17.3326
11.0334
7.10794
5.08533
4.13481
3.73828
3.63739
3.70702
3.88749
4.1488
4.46407
4.80996
5.18237
5.59692
6.08259
6.65636
7.32026
8.06479
8.90651
9.87019
10.9648
12.1852
13.5557
15.1921
17.4823
21.647
31.9292
63.4204
180.973
1074.95
1031.06
172.911
60.2118
34.4788
24.1532
16.5134
10.6403
6.94059
4.99091
4.06578
3.68574
3.5985
3.68218
3.88143
4.16498
4.4996
4.86888
5.27548
5.72954
6.25052
6.85879
7.585
8.42419
9.35582
10.4007
11.5624
12.8307
14.2324
15.8943
18.2163
22.427
32.8181
64.3311
181.559
1075.95
1031.03
172.197
59.3599
32.8609
22.3868
15.475
10.4241
7.08972
5.16519
4.15963
3.69126
3.53111
3.55715
3.71248
3.96482
4.27899
4.64084
5.05335
5.51884
6.04454
6.64287
7.34503
8.18416
9.13757
10.1864
11.3335
12.5552
13.8599
15.3554
17.4406
21.3763
31.4937
62.8876
180.494
1075.84
1030.98
171.775
58.5668
30.7252
19.5999
13.3233
9.47021
7.06448
5.5547
4.60978
4.04024
3.73659
3.6292
3.67744
3.85709
4.13577
4.49138
4.93017
5.45114
6.05327
6.73766
7.51717
8.43193
9.53852
10.7939
12.1311
13.5444
15.0417
16.7398
19.0534
23.2654
33.7567
65.383
182.404
1076.86
1030.92
170.118
57.0552
28.4705
16.8872
11.0122
8.07167
6.60423
5.79423
5.25936
4.84072
4.4827
4.1792
3.95036
3.82938
3.85182
4.02992
4.33869
4.77339
5.32814
5.99695
6.77921
7.68887
8.78802
10.1303
11.5967
13.0352
14.3833
15.75
17.6015
21.2641
31.085
61.9636
179.253
1076.88
1030.86
171.326
57.4916
27.386
15.4733
10.0289
7.57074
6.45942
5.92437
5.62902
5.42873
5.25846
5.08656
4.89733
4.68792
4.47345
4.29448
4.22087
4.33113
4.66065
5.19516
5.91924
6.81511
7.88095
9.15479
10.7972
12.8102
14.865
16.8515
19.0672
22.8802
32.9348
64.5112
182.143
1077.7
1030.82
170.076
55.2348
24.6595
13.6143
9.3877
7.72295
6.94745
6.46775
6.09795
5.78726
5.52329
5.30241
5.11543
4.94435
4.77562
4.61885
4.51476
4.51713
4.67977
5.05196
5.64977
6.47075
7.5465
8.95447
10.7105
12.6616
14.6434
16.6486
18.997
22.8974
32.6856
63.6374
181.594
1077.98
1030.81
168.697
51.6405
21.8425
13.1921
10.6079
9.60605
8.94915
8.33658
7.71338
7.08634
6.47578
5.90116
5.37628
4.90735
4.49364
4.13208
3.82397
3.57873
3.4126
3.34706
3.41073
3.63767
4.04871
4.65666
5.56167
6.97234
8.98264
11.2557
13.9331
18.8908
31.9534
68.3268
188.646
1078.83
1030.69
150.783
37.8729
16.998
14.1639
13.6748
13.1296
12.4469
11.6992
10.9284
10.167
9.44487
8.78887
8.22228
7.7647
7.43296
7.24307
7.21474
7.38496
7.70516
8.21267
8.93211
9.8931
11.1318
12.6974
14.6535
17.0969
20.171
24.1819
29.8224
38.6792
54.5512
89.0749
201.484
1080.2
526.843
24.1476
24.3927
24.4571
24.4849
24.5015
24.51
24.5124
24.5101
24.5042
24.4957
24.4852
24.4731
24.4601
24.4463
24.4321
24.4176
24.4029
24.3881
24.3728
24.3569
24.3401
24.3223
24.3028
24.2813
24.2573
24.2305
24.2013
24.1714
24.1451
24.1297
24.1323
24.155
24.1949
555.891
526.413
22.9931
22.9959
22.999
23.0023
23.0061
23.0102
23.0149
23.0199
23.0253
23.0309
23.0365
23.0422
23.0476
23.0528
23.0577
23.0621
23.0661
23.0696
23.0726
23.0749
23.0766
23.0775
23.0775
23.0767
23.0748
23.0718
23.068
23.064
23.061
23.062
23.0718
23.096
23.1372
531.551
1029.84
172.946
63.2947
33.7808
22.339
16.6924
13.3794
11.1857
9.61326
8.42949
7.51295
6.79427
6.23109
5.79626
5.47174
5.24524
5.10802
5.05624
5.07849
5.17144
5.33238
5.55722
5.84053
6.17517
6.55163
6.95736
7.37658
7.7922
8.20558
8.78452
10.5777
17.8494
45.3406
159.538
1040.52
1029.84
175.177
65.9122
36.1111
24.1694
18.0342
14.3533
11.938
10.2654
9.05999
8.1592
7.46237
6.90591
6.44936
6.06647
5.73977
5.45839
5.22029
5.02214
4.86145
4.73804
4.65486
4.61611
4.62668
4.69109
4.8117
4.98646
5.21401
5.55172
6.39787
9.37288
19.3127
50.3539
166.528
1041.08
1029.86
175.087
64.9263
34.0006
21.1342
14.4929
10.7234
8.4991
7.13405
6.23662
5.59176
5.09148
4.68643
4.35576
4.09043
3.88491
3.7334
3.62932
3.56541
3.53387
3.52753
3.54092
3.57114
3.61865
3.68812
3.79136
3.95867
4.27747
5.00578
6.85357
11.5724
23.3869
55.329
170.663
1042.04
1029.87
172.694
61.619
30.5844
18.2531
12.5482
9.75206
8.27003
7.3551
6.68191
6.11972
5.61927
5.16515
4.7562
4.39624
4.08978
3.83985
3.6465
3.50647
3.4144
3.36322
3.34513
3.35355
3.38602
3.44896
3.56657
3.80073
4.29669
5.38231
7.7641
12.9484
24.6848
55.7236
170.802
1042.93
1029.88
172.534
61.5141
30.7164
18.6234
13.0413
10.2578
8.74451
7.80288
7.122
6.56435
6.06723
5.6066
5.17914
4.78697
4.43256
4.12002
3.85487
3.6401
3.47542
3.36105
3.29508
3.27604
3.30627
3.39827
3.58677
3.95192
4.66241
6.05019
8.74566
14.0733
25.6648
56.5886
171.162
1043.7
1029.88
171.919
60.7353
29.9234
17.9491
12.5627
9.94406
8.51605
7.60288
6.92779
6.37301
5.88561
5.44476
5.044
4.67991
4.35046
4.05645
3.80062
3.58616
3.41639
3.2955
3.22823
3.22162
3.28819
3.45221
3.7621
4.30889
5.25287
6.87682
9.69952
14.9058
26.1121
56.6144
171.368
1044.44
1029.89
171.987
60.9267
30.2159
18.2971
12.9259
10.3059
8.87607
7.96325
7.28864
6.73212
6.23841
5.78562
5.36918
4.98704
4.63627
4.31687
4.03112
3.78236
3.57524
3.41657
3.31538
3.28492
3.34632
3.53531
3.91574
4.59631
5.73592
7.56431
10.4885
15.5729
26.4676
56.8594
171.541
1045.07
1029.89
172.207
61.1188
30.2991
18.3263
12.9571
10.3326
8.87264
7.92265
7.21825
6.64453
6.14848
5.70765
5.31246
4.95531
4.63007
4.33417
4.06797
3.83374
3.63605
3.4828
3.38555
3.36202
3.44032
3.66666
4.12078
4.93199
6.26268
8.29383
11.3267
16.3242
26.9819
57.2577
172.045
1045.68
1029.9
172.163
61.063
30.2381
18.3018
12.9895
10.4104
8.97775
8.04278
7.34626
6.77605
6.28047
5.8381
5.44131
5.08385
4.75963
4.46587
4.2026
3.97122
3.77556
3.62385
3.52849
3.50919
3.59779
3.84704
4.3494
5.25392
6.73236
8.93399
12.0652
16.9736
27.3622
57.4575
172.352
1046.21
1029.91
172.41
61.3032
30.4133
18.4529
13.1416
10.5453
9.07696
8.10479
7.37903
6.79011
6.28651
5.84564
5.45655
5.11013
4.79919
4.52018
4.27275
4.05775
3.87865
3.74411
3.66737
3.6698
3.78621
4.07443
4.63749
5.63878
7.25044
9.59278
12.7967
17.6247
27.8061
57.8069
172.821
1046.74
1029.91
172.397
61.2403
30.3059
18.3703
13.1169
10.562
9.11449
8.1538
7.4357
6.85231
6.35314
5.91582
5.53073
5.18985
4.88601
4.61583
4.37934
4.1771
4.01219
3.89392
3.8362
3.86171
4.00757
4.33615
4.9587
6.04554
7.76684
10.2191
13.4702
18.2055
28.1695
58.0546
173.171
1047.22
1029.92
172.554
61.3721
30.3967
18.4703
13.2384
10.6797
9.21104
8.22709
7.49102
6.89708
6.39447
5.95917
5.57958
5.24667
4.95293
4.6949
4.47294
4.28742
4.14114
4.04423
4.01148
4.06699
4.25024
4.62856
5.31982
6.4943
8.31412
10.8499
14.1186
18.7541
28.5327
58.3509
173.576
1047.69
1029.93
172.598
61.36
30.3339
18.4314
13.2482
10.7158
9.25566
8.27552
7.54293
6.9528
6.45459
6.02417
5.64999
5.32393
5.03902
4.79186
4.58344
4.41397
4.28583
4.21013
4.20257
4.28856
4.50971
4.938
5.69642
6.9516
8.85494
11.4525
14.7189
19.2478
28.8446
58.5961
173.921
1048.13
1029.94
172.709
61.4198
30.3567
18.4788
13.3272
10.7997
9.32946
8.33752
7.59678
7.00356
6.50667
6.08075
5.71311
5.39525
5.12034
4.8853
4.6918
4.53999
4.43182
4.37945
4.39959
4.51905
4.78145
5.26331
6.09123
7.4244
9.39971
12.0387
15.2828
19.7027
29.1418
58.8584
174.285
1048.56
1029.94
172.792
61.4337
30.3249
18.4765
13.3675
10.8567
9.38859
8.3965
7.65684
7.06634
6.57361
6.15287
5.79101
5.48017
5.21414
4.99023
4.81086
4.67609
4.58729
4.55759
4.60479
4.75716
5.06099
5.59612
6.48828
7.88967
9.92261
12.5863
15.7963
20.1094
29.4038
59.0933
174.615
1048.96
1029.95
172.907
61.4674
30.321
18.5039
13.4277
10.9237
9.45073
8.45302
7.71089
7.12168
6.63326
6.21879
5.86428
5.56188
5.30583
5.09403
4.92967
4.81285
4.74447
4.73846
4.81367
4.99982
5.34594
5.93453
6.88824
8.35076
10.4287
13.1009
16.2649
20.4755
29.6485
59.3335
174.947
1049.35
1029.96
173.041
61.496
30.3064
18.5237
13.4849
10.9918
9.51846
8.51942
7.77798
7.19169
6.70791
6.29911
5.95079
5.65524
5.40762
5.20672
5.05628
4.95649
4.90778
4.92465
5.02685
5.24537
5.63181
6.27057
7.2796
8.79296
10.9022
13.5692
16.6807
20.7964
29.8635
59.5509
175.25
1049.72
1029.97
173.223
61.5393
30.3065
18.5556
13.5455
11.0569
9.57979
8.57754
7.83618
7.25348
6.77579
6.37455
6.03439
5.74717
5.50891
5.31956
5.18328
5.10059
5.07181
5.1118
5.24125
5.49255
5.91922
6.60524
7.66359
9.21836
11.3463
13.9954
17.0485
21.0782
30.0615
59.7683
175.549
1050.07
1029.98
173.486
61.6013
30.3146
18.5954
13.6143
11.1311
9.6516
8.6475
7.90702
7.328
6.85609
6.46192
6.12932
5.84978
5.62035
5.4423
5.31897
5.25095
5.24057
5.30224
5.45733
5.73971
6.20406
6.93219
8.0318
9.61705
11.7514
14.3723
17.3648
21.3185
30.2333
59.9634
175.819
1050.41
1029.99
173.891
61.7032
30.3453
18.6471
13.684
11.2
9.71569
8.70904
7.96977
7.39555
6.93095
6.54563
6.22264
5.95304
5.73426
5.56835
5.45767
5.40349
5.41092
5.49376
5.67386
5.98623
6.48602
7.25196
8.38584
9.99181
12.1213
14.7044
17.6344
21.5229
30.3884
60.1529
176.078
1050.73
1029.99
174.566
61.8747
30.404
18.7132
13.7627
11.2768
9.78832
8.77989
8.04215
7.47246
7.01464
6.63772
6.32412
6.06459
5.857
5.7028
5.60359
5.56259
5.58578
5.68797
5.89162
6.23204
6.76304
7.56054
8.72037
10.337
12.4512
14.9894
17.8575
21.6914
30.5211
60.3219
176.312
1051.04
1030
175.701
62.161
30.5031
18.7911
13.8394
11.3468
9.85339
8.8438
8.10856
7.54444
7.09443
6.72698
6.42407
6.17628
5.98089
5.83837
5.75093
5.72318
5.76194
5.88296
6.10929
6.47572
7.03442
7.85814
9.03653
10.6548
12.7448
15.2319
18.0389
21.8288
30.6383
60.4818
176.534
1051.33
1030.01
177.606
62.595
30.63
18.8709
13.9151
11.4182
9.92269
8.91381
8.18181
7.62311
7.18035
6.82166
6.52871
6.2922
6.10875
5.97778
5.90224
5.88765
5.94174
6.08039
6.32709
6.71627
7.29827
8.14241
9.33211
10.9439
13.0019
15.4333
18.1815
21.9373
30.7387
60.6267
176.736
1051.62
1030.02
179.961
63.0399
30.725
18.9274
13.9758
11.4799
9.98534
8.97921
8.25162
7.69918
7.26451
6.91531
6.63299
6.40802
6.2365
6.1176
6.05457
6.0535
6.12271
6.27792
6.54301
6.95222
7.55392
8.4137
9.60878
11.2074
13.2273
15.5996
18.2908
22.0216
30.8274
60.7641
176.928
1051.89
1030.03
180.798
63.1289
30.7115
18.953
14.0303
11.5436
10.0528
9.05021
8.32709
7.78064
7.35362
7.01339
6.74122
6.52719
6.36686
6.25962
6.20867
6.22061
6.30419
6.47507
6.75676
7.18306
7.80071
8.67134
9.8661
11.4457
13.4225
15.7334
18.3704
22.0837
30.9029
60.8885
177.103
1052.15
1030.04
180.825
63.1017
30.6932
18.9865
14.088
11.6071
10.1187
9.11949
8.40104
7.86094
7.44195
7.11099
6.84915
6.6462
6.49715
6.40155
6.36258
6.38721
6.48453
6.67006
6.96657
7.40752
8.03806
8.9156
10.1054
11.6611
13.5912
15.8397
18.4251
22.1276
30.9689
61.0055
177.269
1052.4
1030.05
180.888
63.0968
30.6822
19.0211
14.1462
11.6721
10.1873
9.19211
8.47868
7.94498
7.53385
7.21186
6.95982
6.76719
6.62889
6.54439
6.5168
6.5534
6.6635
6.86238
7.17236
7.62573
8.26572
9.14614
10.3265
11.8543
13.7351
15.9212
18.4581
22.1553
31.025
61.1123
177.421
1052.65
1030.06
180.946
63.086
30.6704
19.0565
14.2039
11.7363
10.255
9.26395
8.55569
8.02859
7.62548
7.31257
7.07034
6.88795
6.76024
6.6866
6.67003
6.71805
6.84011
7.0512
7.37308
7.83659
8.48313
9.36311
10.5305
12.0273
13.8571
15.9815
18.473
22.17
31.0739
61.2128
177.566
1052.89
1030.07
181.003
63.074
30.6601
19.0936
14.2634
11.8027
10.3253
9.33853
8.63551
8.11488
7.71949
7.41525
7.18237
7.00974
6.8921
6.82873
6.82251
6.88114
7.01412
7.23607
7.56808
8.03943
8.6897
9.56603
10.7173
12.1805
13.9584
16.0226
18.4721
22.1729
31.1152
61.3049
177.702
1053.12
1030.08
181.06
63.0621
30.6525
19.1323
14.3227
11.8685
10.395
9.4127
8.71507
8.20106
7.81343
7.51783
7.29418
7.13112
7.02328
6.9698
6.97342
7.04197
7.18492
7.41646
7.75697
8.23442
8.886
9.75566
10.8879
12.3157
14.0414
16.0471
18.4582
22.1665
31.151
61.3913
177.833
1053.35
1030.09
181.116
63.0501
30.6467
19.1728
14.3837
11.9361
10.4667
9.48887
8.79661
8.28907
7.90897
7.62164
7.40677
7.25281
7.15424
7.11006
7.12286
7.2005
7.35237
7.59218
7.93952
8.42103
9.07144
9.93175
11.0426
12.4332
14.1068
16.0563
18.4323
22.1513
31.1809
61.471
177.96
1053.57
1030.1
181.169
63.037
30.6424
19.2136
14.4437
12.0026
10.5375
9.56444
8.87774
8.3768
8.00424
7.72511
7.51885
7.37374
7.28409
7.24875
7.27013
7.35613
7.51596
7.76281
8.11543
8.5991
9.24606
10.0947
11.1822
12.5347
14.1567
16.0523
18.3965
22.1291
31.2065
61.5465
178.09
1053.79
1030.11
181.22
63.0199
30.6362
19.2537
14.5036
12.0696
10.6091
9.64087
8.95977
8.46536
8.10015
7.82894
7.63094
7.49424
7.413
7.3859
7.4152
7.50873
7.6755
7.92814
8.28452
8.76853
9.41022
10.2452
11.3075
12.6209
14.1919
16.0361
18.3515
22.1001
31.2272
61.6166
178.226
1054
1030.12
181.27
63.0011
30.6302
19.2929
14.5622
12.1353
10.6797
9.71658
9.04126
8.55345
8.19558
7.93218
7.74222
7.61364
7.54041
7.52107
7.55768
7.658
7.83079
8.08808
8.44684
8.92959
9.56438
10.3839
11.4195
12.6933
14.2142
16.0092
18.2987
22.0651
31.2441
61.6847
178.381
1054.2
1030.13
181.318
62.9825
30.627
19.3345
14.6222
12.2023
10.7513
9.79311
9.12341
8.64205
8.29129
8.03541
7.85315
7.73224
7.66651
7.65434
7.6976
7.80395
7.98184
8.24268
8.60252
9.08254
9.70884
10.5115
11.5193
12.7533
14.2251
15.9734
18.2392
22.025
31.2575
61.7524
178.576
1054.4
1030.14
181.366
62.9648
30.6257
19.3766
14.6818
12.2685
10.8222
9.86892
9.20489
8.72998
8.38627
8.13775
7.96295
7.84939
7.79075
7.78526
7.83458
7.94627
8.12842
8.39182
8.75161
9.2276
9.84409
10.6286
11.6079
12.8021
14.2261
15.9297
18.174
21.9802
31.2686
61.8256
178.848
1054.59
1030.15
181.413
62.9474
30.6263
19.4196
14.7418
12.335
10.8933
9.94481
9.28631
8.81769
8.4808
8.23939
8.07171
7.9651
7.91309
7.91374
7.96855
8.0849
8.27054
8.53562
8.89434
9.36524
9.97083
10.7363
11.6866
12.8414
14.2189
15.8803
18.1051
21.9325
31.2795
61.915
179.272
1054.78
1030.16
181.461
62.9317
30.6293
19.4632
14.8014
12.4008
10.9636
10.0198
9.36679
8.90438
8.57418
8.33967
8.17885
8.07887
8.03309
8.03943
8.09919
8.21961
8.40805
8.67402
9.03083
9.49574
10.0896
10.8356
11.757
12.8731
14.2058
15.8265
18.0327
21.8828
31.2951
62.0432
180.005
1054.96
1030.17
181.51
62.9178
30.6344
19.5076
14.861
12.4664
11.0335
10.0943
9.44667
8.99029
8.66653
8.43864
8.28436
8.19064
8.15068
8.16224
8.22646
8.35039
8.54102
8.80722
9.16142
9.61969
10.2013
10.9275
11.8199
12.8974
14.1857
15.768
17.9611
21.8384
31.3232
62.2547
181.348
1055.14
1030.18
181.559
62.9047
30.6409
19.5519
14.9198
12.5309
11.1022
10.1676
9.52533
9.07486
8.75734
8.5358
8.38778
8.29998
8.26547
8.28185
8.35008
8.47706
8.66938
8.93527
9.28634
9.73747
10.3064
11.0126
11.8759
12.9154
14.1609
15.7083
17.893
21.8034
31.3877
62.6432
183.595
1055.32
1030.19
181.608
62.8929
30.6489
19.5964
14.9781
12.5948
11.1703
10.2401
9.603
9.15826
8.84672
8.63122
8.48909
8.40684
8.37738
8.39817
8.46999
8.59957
8.7931
9.05822
9.4057
9.84927
10.4052
11.0913
11.926
12.9288
14.1345
15.6518
17.8346
21.79
31.5025
63.1272
185.756
1055.5
1030.2
181.658
62.8819
30.6579
19.6405
15.0354
12.6575
11.237
10.3113
9.67926
9.2401
8.93431
8.72456
8.58799
8.51093
8.48616
8.51097
8.58599
8.71776
8.91211
9.17607
9.51959
9.95533
10.4982
11.1645
11.9714
12.9394
14.1087
15.6002
17.7848
21.7846
31.5979
63.4074
186.531
1055.68
1030.21
181.708
62.8721
30.6682
19.6846
15.0921
12.7196
11.303
10.3815
9.7544
9.32058
9.02022
8.81587
8.68446
8.61219
8.59168
8.6201
8.69792
8.83151
9.02631
9.28879
9.62812
10.0559
10.5858
11.2328
12.0133
12.9487
14.0846
15.553
17.739
21.7733
31.6478
63.5135
186.677
1055.86
1030.22
181.759
62.8633
30.6796
19.7284
15.148
12.7805
11.3678
10.4504
9.82807
9.39937
9.10417
8.90487
8.77824
8.71034
8.69367
8.72529
8.80552
8.94056
9.13548
9.39622
9.73121
10.1511
10.6684
11.2969
12.0524
12.9576
14.0629
15.5099
17.6952
21.7549
31.6678
63.5541
186.739
1056.04
1030.23
181.81
62.855
30.6914
19.7716
15.2029
12.8404
11.4314
10.518
9.90031
9.4765
9.18613
8.9915
8.86923
8.80526
8.79199
8.82638
8.90861
9.04473
9.23945
9.4982
9.82878
10.241
10.7462
11.3572
12.0894
12.9666
14.0439
15.4707
17.6536
21.7324
31.6729
63.5734
186.791
1056.22
1030.24
181.861
62.8469
30.7034
19.8139
15.2565
12.8988
11.4935
10.584
9.97079
9.55165
9.26585
9.07555
8.95725
8.89679
8.8865
8.92323
9.00706
9.14388
9.33808
9.59464
9.92075
10.3254
10.8191
11.4138
12.1245
12.9762
14.0279
15.4359
17.6152
21.7091
31.6718
63.5856
186.841
1056.4
1030.25
181.91
62.8378
30.7149
19.8551
15.3087
12.9558
11.5541
10.6484
10.0394
9.62477
9.34326
9.15696
9.04225
8.98489
8.97714
9.0158
9.10083
9.23799
9.43135
9.68551
10.0071
10.4045
10.8873
11.4669
12.1579
12.9864
14.0149
15.4057
17.5808
21.6871
31.6689
63.596
186.892
1056.58
1030.26
181.958
62.8285
30.7265
19.8954
15.3597
13.0114
11.6132
10.711
10.1062
9.69577
9.41829
9.23567
9.1242
9.06956
9.06397
9.10416
9.19
9.32715
9.51938
9.77095
10.088
10.4783
10.9509
11.5165
12.1895
12.9973
14.0051
15.3803
17.5512
21.6681
31.6669
63.6075
186.945
1056.77
1030.27
182.004
62.819
30.7385
19.9354
15.4098
13.066
11.6711
10.7723
10.1713
9.76479
9.49103
9.31177
9.20317
9.15088
9.14706
9.18839
9.2747
9.4115
9.60234
9.85112
10.1636
10.5471
11.01
11.5626
12.2194
13.0085
13.9979
15.3592
17.5262
21.653
31.6671
63.621
186.999
1056.96
1030.28
182.05
62.8098
30.7511
19.975
15.4593
13.1196
11.7277
10.8321
10.2347
9.83187
9.56153
9.3853
9.27924
9.22893
9.22651
9.26864
9.35507
9.49121
9.68038
9.92621
10.2341
10.611
11.0648
11.6054
12.2473
13.0194
13.9923
15.3423
17.5071
21.6419
31.6704
63.6373
187.056
1057.15
1030.29
182.095
62.8013
30.7645
20.0146
15.5083
13.1725
11.7834
10.8907
10.2966
9.89712
9.6299
9.45638
9.35251
9.30384
9.30248
9.34505
9.43127
9.56645
9.75369
9.99641
10.2997
10.6701
11.1152
11.6445
12.2725
13.0292
13.9878
15.329
17.4928
21.6345
31.6764
63.6559
187.114
1057.34
1030.3
182.14
62.7942
30.7791
20.0543
15.5568
13.2246
11.8381
10.948
10.3569
9.96057
9.69618
9.52506
9.42307
9.37571
9.37508
9.41777
9.50348
9.63743
9.8225
10.0619
10.3606
10.7246
11.1613
11.6799
12.295
13.0378
13.9843
15.3186
17.4823
21.6305
31.6851
63.6766
187.172
1057.53
1030.31
182.185
62.7879
30.7942
20.0937
15.6047
13.2759
11.8918
11.004
10.4158
10.0223
9.76043
9.59141
9.491
9.44464
9.44443
9.48695
9.57187
9.70431
9.88699
10.1229
10.4168
10.7745
11.203
11.7114
12.3145
13.0449
13.9809
15.31
17.4745
21.629
31.6952
63.6975
187.229
1057.71
1030.32
182.229
62.7814
30.8096
20.1328
15.6519
13.3264
11.9445
11.059
10.4733
10.0823
9.82276
9.65557
9.55643
9.51078
9.51069
9.55276
9.63661
9.76729
9.94735
10.1797
10.4687
10.82
11.2405
11.7391
12.3311
13.0501
13.9772
15.3022
17.4682
21.629
31.7062
63.7181
187.283
1057.9
1030.33
182.271
62.7751
30.8254
20.1717
15.6988
13.3763
11.9964
11.1129
10.5295
10.1409
9.88335
9.7177
9.61955
9.57431
9.57407
9.6154
9.69794
9.82663
10.0039
10.2323
10.5164
10.8614
11.2741
11.7632
12.3447
13.0535
13.9728
15.2947
17.4628
21.6301
31.7177
63.7381
187.335
1058.08
1030.33
182.313
62.7693
30.842
20.2109
15.7456
13.4259
12.0478
11.1661
10.5848
10.1982
9.94237
9.77796
9.68051
9.6354
9.63472
9.67506
9.75603
9.8825
10.0567
10.2812
10.5602
10.8989
11.3038
11.7839
12.3555
13.055
13.9674
15.287
17.4578
21.6317
31.7288
63.7558
187.382
1058.26
1030.34
182.354
62.7647
30.8597
20.2506
15.7925
13.4755
12.0989
11.2187
10.6392
10.2544
9.99999
9.83654
9.73949
9.69422
9.69283
9.7319
9.81107
9.93509
10.106
10.3264
10.6003
10.9326
11.3299
11.8013
12.3635
13.0543
13.9607
15.2787
17.4526
21.6329
31.7388
63.7707
187.425
1058.43
1030.35
182.395
62.7609
30.8781
20.2904
15.8395
13.5249
12.1497
11.2708
10.6928
10.3096
10.0564
9.8936
9.79667
9.75096
9.74859
9.78615
9.86329
9.98464
10.1522
10.3683
10.6369
10.9629
11.3528
11.8157
12.3691
13.0519
13.9529
15.2699
17.4472
21.6342
31.7488
63.7847
187.466
1058.6
1030.36
182.437
62.7583
30.8973
20.3304
15.8863
13.5741
12.2002
11.3225
10.7459
10.364
10.1117
9.94928
9.85219
9.80576
9.80214
9.83794
9.9128
10.0313
10.1952
10.407
10.6703
10.99
11.3726
11.8274
12.3725
13.048
13.9442
15.2605
17.4416
21.6355
31.7582
63.7968
187.503
1058.77
1030.37
182.477
62.7547
30.9159
20.3699
15.9328
13.623
12.2504
11.3737
10.7984
10.4176
10.166
10.0037
9.90621
9.85878
9.85363
9.88741
9.95974
10.0751
10.2353
10.4425
10.7004
11.0139
11.3893
11.8364
12.3738
13.0426
13.9347
15.2509
17.4361
21.6369
31.7676
63.8082
187.538
1058.94
1030.38
182.516
62.7524
30.9355
20.4098
15.9795
13.6721
12.3006
11.4249
10.8506
10.4707
10.2196
10.0572
9.95897
9.91027
9.90332
9.93479
10.0043
10.1164
10.2725
10.4749
10.7274
11.0346
11.4031
11.8428
12.373
13.0357
13.9243
15.2409
17.4303
21.6379
31.776
63.8187
187.574
1059.1
1030.39
182.557
62.7516
30.9562
20.4502
16.0265
13.7213
12.3509
11.4762
10.9028
10.5235
10.2725
10.1098
10.0106
9.96037
9.95136
9.98028
10.0468
10.1552
10.3071
10.5047
10.7515
11.0525
11.4141
11.8467
12.37
13.0274
13.9131
15.2306
17.4248
21.6397
31.7857
63.8299
187.606
1059.26
1030.4
182.597
62.752
30.9778
20.491
16.0738
13.7709
12.4016
11.5279
10.9552
10.5761
10.325
10.1617
10.0613
10.0093
9.99799
10.0241
10.0874
10.192
10.3395
10.5319
10.773
11.0677
11.4225
11.8482
12.3651
13.0176
13.901
15.2199
17.4195
21.642
31.7962
63.8416
187.638
1059.42
1030.41
182.638
62.7544
31.0005
20.5323
16.1216
13.8209
12.4527
11.5799
11.0078
10.6288
10.3773
10.2131
10.1112
10.0572
10.0434
10.0665
10.1263
10.2269
10.3698
10.557
10.7922
11.0805
11.4286
11.8475
12.3583
13.0063
13.8879
15.2088
17.4141
21.6446
31.807
63.8529
187.668
1059.57
1030.42
182.68
62.758
31.0239
20.574
16.1697
13.8713
12.5042
11.6323
11.0606
10.6816
10.4295
10.2641
10.1606
10.1043
10.0878
10.1077
10.1638
10.2602
10.3983
10.5801
10.8094
11.0912
11.4325
11.8448
12.3497
12.9935
13.8738
15.197
17.4085
21.6475
31.8179
63.8634
187.695
1059.73
1030.43
182.723
62.7633
31.0483
20.6163
16.2183
13.9222
12.5563
11.6852
11.1139
10.7346
10.4818
10.315
10.2094
10.1508
10.1312
10.1477
10.2
10.2921
10.4251
10.6014
10.8246
11.0998
11.4344
11.84
12.3393
12.9791
13.8582
15.1841
17.4022
21.6498
31.8282
63.8726
187.72
1059.87
1030.44
182.766
62.7704
31.074
20.6592
16.2676
13.9737
12.6088
11.7386
11.1676
10.788
10.5341
10.3657
10.258
10.1966
10.174
10.1869
10.2351
10.3227
10.4506
10.6211
10.8381
11.1067
11.4344
11.8335
12.327
12.9631
13.8413
15.1701
17.3951
21.6516
31.8383
63.8813
187.744
1060.02
1030.45
182.811
62.7799
31.1011
20.7031
16.3175
14.0258
12.6619
11.7924
11.2217
10.8415
10.5865
10.4163
10.3062
10.242
10.2161
10.2252
10.2693
10.3522
10.4749
10.6396
10.8502
11.112
11.4328
11.8251
12.3131
12.9455
13.8229
15.155
17.3873
21.6531
31.8485
63.89
187.765
1060.16
1030.46
182.857
62.79
31.1287
20.7473
16.3678
14.0783
12.7155
11.8467
11.2761
10.8954
10.639
10.4668
10.3542
10.287
10.2576
10.2629
10.3028
10.3808
10.4981
10.6569
10.861
11.1159
11.4296
11.8152
12.2975
12.9263
13.8031
15.1385
17.3783
21.6536
31.8579
63.8974
187.783
1060.29
1030.47
182.902
62.8007
31.1569
20.7923
16.4189
14.1316
12.7697
11.9015
11.331
10.9495
10.6917
10.5174
10.4021
10.3317
10.2988
10.3001
10.3356
10.4088
10.5206
10.6733
10.8707
11.1186
11.4251
11.8038
12.2801
12.9051
13.7812
15.1202
17.3676
21.6527
31.866
63.903
187.799
1060.43
1030.47
182.948
62.8137
31.1868
20.8386
16.4712
14.1859
12.8248
11.9571
11.3865
11.0041
10.7447
10.5681
10.45
10.3762
10.3396
10.3368
10.3678
10.4361
10.5424
10.6889
10.8796
11.1203
11.4193
11.7907
12.2609
12.8821
13.7582
15.1011
17.3554
21.6505
31.8731
63.9075
187.811
1060.55
1030.48
182.995
62.8281
31.2178
20.8858
16.5244
14.2411
12.8807
12.0134
11.4426
11.0592
10.798
10.6189
10.4978
10.4206
10.3801
10.3733
10.3998
10.4631
10.5638
10.7041
10.888
11.1212
11.4125
11.7763
12.2402
12.8576
13.7339
15.0807
17.3417
21.6467
31.879
63.9105
187.821
1060.68
1030.49
183.045
62.8464
31.2512
20.9346
16.5789
14.2974
12.9376
12.0706
11.4994
11.1149
10.8517
10.6699
10.5456
10.4649
10.4205
10.4094
10.4314
10.4897
10.5848
10.7188
10.8957
11.1213
11.4045
11.7606
12.218
12.8317
13.708
15.0586
17.3255
21.6397
31.881
63.9076
187.823
1060.8
1030.5
183.096
62.8662
31.2855
20.9841
16.634
14.3544
12.9951
12.1283
11.5567
11.1709
10.9055
10.7209
10.5932
10.5088
10.4605
10.4451
10.4625
10.5158
10.6053
10.733
10.9028
11.1207
11.3958
11.744
12.1949
12.8045
13.6806
15.0343
17.3067
21.6292
31.8787
63.8988
187.818
1060.91
1030.51
183.15
62.8885
31.3214
21.0346
16.6901
14.4122
13.0533
12.1867
11.6146
11.2273
10.9596
10.772
10.6408
10.5525
10.5001
10.4804
10.4933
10.5416
10.6254
10.7469
10.9097
11.1199
11.3869
11.7272
12.1714
12.7768
13.6522
15.0083
17.2851
21.6151
31.8719
63.8843
187.808
1061.02
1030.52
183.207
62.914
31.3594
21.0867
16.7474
14.4711
13.1125
12.2459
11.673
11.2841
11.0138
10.823
10.6881
10.5959
10.5393
10.5153
10.5236
10.567
10.6454
10.7607
10.9168
11.1194
11.3785
11.711
12.1485
12.7494
13.6234
14.9812
17.2615
21.5979
31.8612
63.8653
187.795
1061.13
1030.53
183.266
62.9418
31.3991
21.1403
16.8061
14.5311
13.1727
12.3058
11.7322
11.3413
11.0684
10.8741
10.7353
10.6389
10.578
10.5497
10.5535
10.5921
10.6653
10.7748
10.9243
11.1198
11.3713
11.6962
12.127
12.7232
13.5954
14.9542
17.2372
21.5794
31.8488
63.8449
187.781
1061.24
1030.54
183.33
62.9737
31.4414
21.1959
16.8665
14.5927
13.2341
12.3669
11.7921
11.3991
11.1231
10.9251
10.7822
10.6815
10.6163
10.5836
10.583
10.617
10.6852
10.7892
10.9326
11.1213
11.3655
11.6832
12.1074
12.6988
13.5689
14.928
17.2129
21.5597
31.8344
63.8222
187.766
1061.35
1030.55
183.396
63.0074
31.4852
21.2531
16.9286
14.6557
13.2968
12.429
11.8529
11.4575
11.1782
10.9762
10.8289
10.7237
10.654
10.6169
10.612
10.6415
10.705
10.8038
10.9414
11.1238
11.3612
11.6721
12.0902
12.6768
13.5444
14.9033
17.1893
21.5399
31.8191
63.7987
187.751
1061.46
1030.56
183.464
63.0426
31.5307
21.3123
16.9927
14.7208
13.3613
12.4926
11.9149
11.5168
11.2337
11.0273
10.8753
10.7654
10.6911
10.6495
10.6403
10.6655
10.7244
10.8184
10.9507
11.1273
11.3585
11.663
12.0753
12.6573
13.5223
14.8807
17.1674
21.5212
31.8044
63.7766
187.739
1061.57
1030.57
183.537
63.0817
31.5789
21.3741
17.0593
14.788
13.4278
12.558
11.9783
11.577
11.2898
11.0785
10.9214
10.8065
10.7274
10.6813
10.6677
10.6888
10.7434
10.8329
10.9604
11.1317
11.3572
11.656
12.0629
12.6405
13.5031
14.8607
17.1477
21.5041
31.791
63.7568
187.73
1061.69
1030.58
183.614
63.1225
31.6288
21.4379
17.1281
14.8576
13.4964
12.6251
12.0431
11.6383
11.3464
11.1298
10.9672
10.8469
10.7627
10.712
10.6941
10.7111
10.7616
10.847
10.97
11.1366
11.3571
11.6507
12.0528
12.6265
13.4866
14.8435
17.1305
21.4889
31.7791
63.739
187.724
1061.8
1030.59
183.692
63.1639
31.6795
21.5035
17.1992
14.9294
13.5672
12.6944
12.1097
11.7008
11.4036
11.1811
11.0125
10.8864
10.797
10.7414
10.7192
10.7321
10.7789
10.8603
10.9794
11.1418
11.3578
11.6469
12.0447
12.6149
13.4729
14.829
17.1159
21.4761
31.769
63.724
187.722
1061.93
1030.6
183.773
63.2067
31.7318
21.5711
17.2727
15.004
13.6407
12.766
12.1782
11.7645
11.4613
11.2323
11.0571
10.9249
10.8298
10.7692
10.7426
10.7517
10.7947
10.8726
10.9882
11.1468
11.359
11.6442
12.0383
12.6056
13.4616
14.817
17.1037
21.4653
31.7606
63.7113
187.723
1062.05
1030.61
183.854
63.249
31.7846
21.6405
17.3486
15.0813
13.7174
12.8404
12.2486
11.8291
11.5192
11.2829
11.1007
10.9619
10.861
10.7953
10.7643
10.7694
10.809
10.8836
10.9959
11.1514
11.3602
11.6422
12.0333
12.5981
13.4528
14.8078
17.0946
21.4577
31.7556
63.7038
187.729
1062.18
1030.62
183.939
63.294
31.8402
21.7129
17.4278
15.1621
13.7979
12.9181
12.3209
11.8946
11.577
11.3329
11.1431
10.9974
10.8904
10.8195
10.7839
10.7853
10.8214
10.893
11.0025
11.1552
11.3613
11.6406
12.0294
12.5924
13.4461
14.8011
17.0883
21.4531
31.7538
63.7007
187.74
1062.31
1030.63
184.024
63.3387
31.8974
21.7884
17.5102
15.2459
13.8811
12.998
12.3951
11.9613
11.6352
11.3825
11.1846
11.0315
10.918
10.8416
10.8015
10.7989
10.8318
10.9006
11.0075
11.1578
11.3618
11.639
12.026
12.5878
13.4411
14.7964
17.0843
21.451
31.7547
63.701
187.754
1062.44
1030.64
184.111
63.3854
31.9574
21.8674
17.5964
15.3335
13.9678
13.0811
12.4717
12.0295
11.6941
11.432
11.2253
11.0643
10.9439
10.8616
10.8167
10.8103
10.84
10.906
11.0107
11.1591
11.3612
11.6369
12.0227
12.5839
13.4374
14.7933
17.0823
21.4511
31.758
63.7049
187.77
1062.57
1030.65
184.202
63.4346
32.0206
21.9504
17.6868
15.425
14.058
13.1672
12.5506
12.0992
11.7536
11.4812
11.2649
11.0954
10.9677
10.8793
10.8295
10.819
10.8455
10.9091
11.0117
11.1584
11.3592
11.6338
12.0191
12.5803
13.4345
14.7913
17.0817
21.4528
31.7631
63.7112
187.788
1062.71
1030.66
184.294
63.4843
32.0859
22.0369
17.7811
15.5202
14.1518
13.2563
12.6318
12.1703
11.8135
11.53
11.3033
11.1246
10.9891
10.8943
10.8393
10.8248
10.8481
10.9092
11.0101
11.1555
11.3553
11.6294
12.0145
12.5764
13.4316
14.7896
17.0816
21.4551
31.7688
63.7186
187.806
1062.85
1030.68
184.39
63.536
32.1541
22.1273
17.8797
15.6197
14.2494
13.3487
12.7154
12.2427
11.8736
11.5781
11.3403
11.1518
11.008
10.9064
10.846
10.8273
10.8474
10.9062
11.0054
11.1498
11.3491
11.6231
12.0088
12.5718
13.4286
14.7882
17.0821
21.4582
31.7757
63.7281
187.826
1062.99
1030.69
184.489
63.5887
32.2247
22.2217
17.9826
15.7233
14.3508
13.4443
12.8012
12.3162
11.9338
11.6252
11.3754
11.1764
11.0239
10.9151
10.8491
10.8261
10.843
10.8996
10.9975
11.1411
11.3403
11.6148
12.0015
12.5661
13.425
14.7866
17.0827
21.462
31.7839
63.7404
187.848
1063.13
1030.7
184.589
63.6404
32.2966
22.3196
18.0898
15.8313
14.4563
13.5432
12.8892
12.3905
11.9934
11.6705
11.4079
11.1979
11.0361
10.9199
10.8481
10.8208
10.8345
10.889
10.9857
11.129
11.3285
11.6039
11.9923
12.5591
13.4204
14.7845
17.0833
21.4659
31.7925
63.7538
187.87
1063.27
1030.72
184.69
63.6923
32.3705
22.4212
18.2018
15.9442
14.5662
13.6455
12.979
12.465
12.0518
11.7136
11.4373
11.2156
11.0442
10.9204
10.8427
10.8109
10.8216
10.8741
10.9699
11.1131
11.3133
11.5902
11.9807
12.5503
13.4148
14.7819
17.0838
21.4703
31.8025
63.7698
187.893
1063.42
1030.73
184.793
63.7452
32.4469
22.5271
18.319
16.0627
14.681
13.7511
13.0702
12.5388
12.1079
11.7533
11.4626
11.2288
11.0475
10.9158
10.8322
10.7961
10.8037
10.8545
10.9495
11.093
11.2944
11.5733
11.9666
12.5396
13.4077
14.7784
17.0841
21.475
31.8134
63.7877
187.917
1063.56
1030.74
184.892
63.7955
32.5243
22.6361
18.441
16.1878
14.8013
13.8593
13.1612
12.6107
12.1608
11.7889
11.4832
11.2369
11.0455
10.9058
10.8162
10.7758
10.7806
10.8297
10.9244
11.0685
11.2715
11.5529
11.9495
12.5265
13.399
14.7739
17.0839
21.4798
31.8254
63.8082
187.942
1063.71
1030.76
184.993
63.8455
32.6041
22.7491
18.5675
16.3184
14.9258
13.9693
13.252
12.6805
12.2104
11.8202
11.499
11.2398
11.038
10.8903
10.7947
10.75
10.7519
10.7997
10.8941
11.0392
11.2444
11.5289
11.9294
12.5111
13.3886
14.7684
17.0834
21.4849
31.8385
63.8305
187.966
1063.86
1030.77
185.096
63.8951
32.6867
22.8672
18.6991
16.4531
15.0537
14.0814
13.3433
12.7491
12.2572
11.8476
11.5098
11.2371
11.0246
10.8686
10.7669
10.718
10.7173
10.7638
10.8584
11.0048
11.2124
11.5006
11.9057
12.4926
13.3757
14.761
17.0816
21.4892
31.8513
63.8532
187.988
1064.01
1030.79
185.196
63.9398
32.7698
22.9893
18.8359
16.5931
15.1857
14.1956
13.434
12.8149
12.2995
11.8693
11.5143
11.2276
11.0042
10.84
10.7324
10.6793
10.6761
10.7216
10.8166
10.9648
11.1754
11.4678
11.8781
12.4711
13.3606
14.7522
17.079
21.4936
31.8654
63.8789
188.012
1064.16
1030.81
185.292
63.9816
32.8546
23.1163
18.9781
16.7377
15.321
14.3107
13.5231
12.8769
12.3363
11.8844
11.5115
11.2107
10.9763
10.8039
10.6904
10.6334
10.628
10.6728
10.7685
10.9188
11.133
11.4301
11.8463
12.446
13.3427
14.7412
17.0751
21.4974
31.8801
63.9065
188.034
1064.32
1030.82
185.386
64.0205
32.941
23.2488
19.127
16.8885
15.4602
14.4267
13.6098
12.9338
12.3662
11.8916
11.5004
11.1852
10.94
10.7596
10.6406
10.58
10.5726
10.6171
10.7139
10.8668
11.0849
11.3874
11.8102
12.4175
13.3221
14.7285
17.0702
21.5012
31.896
63.9372
188.058
1064.48
1030.84
185.475
64.054
33.0277
23.3864
19.2831
17.0454
15.6027
14.5418
13.692
12.9836
12.3876
11.8895
11.4798
11.1504
10.8945
10.7065
10.5823
10.5185
10.5096
10.5541
10.6525
10.8084
11.031
11.3394
11.7693
12.3848
13.2981
14.7129
17.0633
21.5039
31.9124
63.9701
188.081
1064.63
1030.86
185.556
64.0815
33.1145
23.5291
19.4482
17.2099
15.7477
14.6542
13.7678
13.0248
12.3993
11.8774
11.4491
11.1057
10.8396
10.6444
10.5155
10.4489
10.439
10.484
10.5843
10.7437
10.9714
11.2863
11.7241
12.3484
13.2712
14.6954
17.0551
21.5061
31.9294
64.0049
188.103
1064.8
1030.87
185.634
64.1089
33.2051
23.6777
19.6242
17.3816
15.8925
14.7614
13.8355
13.0566
12.4009
11.855
11.4082
11.0512
10.7752
10.5733
10.4402
10.3713
10.3607
10.4066
10.5094
10.6728
10.9059
11.2278
11.6739
12.3078
13.2406
14.6747
17.0445
21.5067
31.9461
64.0405
188.122
1064.96
1030.89
185.709
64.1327
33.2989
23.8317
19.8033
17.5554
16.0378
14.8665
13.8981
13.0806
12.3929
11.8221
11.3567
10.9861
10.7008
10.4927
10.3559
10.2854
10.2747
10.3222
10.4279
10.5957
10.8349
11.1643
11.6194
12.2633
13.2069
14.6517
17.0323
21.5062
31.9626
64.077
188.14
1065.13
1030.91
185.775
64.1487
33.3925
23.9914
19.9901
17.7351
16.1842
14.9669
13.9515
13.0927
12.3719
11.7758
11.2921
10.9087
10.6148
10.4015
10.262
10.1905
10.1806
10.2301
10.3394
10.5122
10.7578
11.0952
11.5596
12.2141
13.1688
14.6247
17.0166
21.5031
31.9778
64.1133
188.154
1065.29
1030.92
185.832
64.1583
33.488
24.1566
20.1821
17.9175
16.3288
15.0607
13.9944
13.0922
12.3371
11.7158
11.2142
10.8188
10.5174
10.2998
10.1585
10.087
10.0786
10.1311
10.2446
10.4229
10.6755
11.0214
11.4956
12.1612
13.1278
14.5954
16.9992
21.4988
31.9928
64.1507
188.168
1065.47
1030.94
185.883
64.1622
33.5843
24.3287
20.3818
18.1043
16.4715
15.1462
14.0247
13.0765
12.2867
11.6404
11.1218
10.7155
10.4077
10.1871
10.0451
9.97466
9.96875
10.0249
10.1433
10.3278
10.5878
10.9424
11.4267
12.1035
13.082
14.5616
16.9775
21.4908
32.0051
64.1857
188.175
1065.63
1030.96
185.918
64.1503
33.6748
24.5046
20.5869
18.2922
16.608
15.2189
14.0385
13.0432
12.2186
11.5483
11.0142
10.5985
10.2858
10.0635
9.9221
9.85387
9.85149
9.91235
10.0365
10.2278
10.4958
10.8597
11.3545
12.0429
13.0337
14.5255
16.954
21.4813
32.0162
64.2196
188.18
1065.82
1030.98
185.935
64.119
33.756
24.6857
20.7995
18.48
16.7351
15.2763
14.0343
12.9914
12.1329
11.4399
10.8917
10.4681
10.1521
9.92947
9.78988
9.72496
9.72712
9.79353
9.92416
10.1229
10.3994
10.7728
11.278
11.9779
12.9808
14.4847
16.9256
21.467
32.0232
64.249
188.177
1065.99
1030.99
185.912
64.0443
33.8163
24.8712
21.0172
18.6606
16.8467
15.3151
14.0109
12.9209
12.0295
11.3153
10.7546
10.3248
10.0069
9.78548
9.64905
9.58867
9.5965
9.6695
9.80756
10.0146
10.3002
10.6836
11.1998
11.9115
12.9266
14.4426
16.896
21.451
32.0278
64.2746
188.171
1066.19
1031.01
185.66
63.8545
33.8407
25.0456
21.2313
18.8385
16.9516
15.3417
13.9715
12.8327
11.9085
11.1742
10.6025
10.1682
9.85016
9.63141
9.49951
9.44488
9.45945
9.53998
9.68625
9.90213
10.1973
10.591
11.118
11.8411
12.8679
14.3956
16.8607
21.4291
32.0265
64.2934
188.155
1066.37
1031.03
184.181
63.4217
33.8254
25.2258
21.4547
19.0152
17.0436
15.3482
13.9092
12.7218
11.7665
11.0143
10.4342
9.99777
9.68162
9.46743
9.34172
9.29433
9.317
9.40628
9.5619
9.78768
10.0934
10.4981
11.0365
11.7713
12.81
14.3493
16.8262
21.4075
32.0246
64.3114
188.142
1066.58
1031.05
181.586
62.9121
33.8385
25.4279
21.6861
19.1874
17.1214
15.3349
13.825
12.5894
11.6047
10.8369
10.2507
9.81431
9.50209
9.29419
9.17615
9.1373
9.16919
9.26821
9.43398
9.67031
9.98691
10.4028
10.9526
11.6988
12.7486
14.2989
16.7869
21.3805
32.0176
64.3236
188.121
1066.77
1031.06
179.779
62.632
33.9265
25.6579
21.9255
19.3526
17.1811
15.2976
13.7153
12.4328
11.4212
10.641
10.0516
9.618
9.31203
9.11241
9.00376
8.97497
9.01749
9.12754
9.3047
9.55275
9.88137
10.3094
10.8714
11.6295
12.6907
14.2523
16.7511
21.3563
32.0113
64.3353
188.105
1067
1031.08
178.878
62.478
34.0366
25.8934
22.1614
19.5036
17.2176
15.2328
13.578
12.2509
11.2161
10.4269
9.83762
9.40951
9.11206
8.92258
8.82484
8.80739
8.86162
8.98363
9.17293
9.43326
9.77424
10.2146
10.7886
11.558
12.63
14.2019
16.711
21.3274
32.0011
64.3429
188.081
1067.2
1031.09
178.399
62.3774
34.1671
26.1409
22.397
19.6396
17.2284
15.1384
13.4118
12.0433
10.9894
10.1954
9.60986
9.19022
8.90369
8.7263
8.64111
8.63644
8.70373
8.839
9.04175
9.31569
9.67036
10.1243
10.7113
11.4929
12.5761
14.1589
16.6781
21.3042
31.9932
64.351
188.066
1067.46
1031.11
178.135
62.3073
34.3109
26.3942
22.6252
19.7531
17.2074
15.0102
13.2146
11.8096
10.7418
9.94768
9.3697
8.96145
8.68803
8.52436
8.45295
8.462
8.54312
8.69227
8.90895
9.19684
9.56535
10.0328
10.6325
11.4254
12.5188
14.1115
16.6401
21.276
31.9817
64.3555
188.042
1067.68
1031.12
177.969
62.247
34.4648
26.6541
22.8432
19.8386
17.1493
14.8444
12.9846
11.5495
10.4741
9.68528
9.11905
8.72532
8.46731
8.31906
8.26274
8.28664
8.38265
8.54682
8.7787
9.08199
9.46594
9.9485
10.5625
11.368
12.4725
14.0757
16.6136
21.2569
31.9741
64.361
188.029
1067.95
1031.13
177.858
62.1974
34.6304
26.9187
23.044
19.8883
17.0494
14.6399
12.7224
11.2647
10.1886
9.41053
8.86015
8.48384
8.24313
8.11143
8.0708
8.10982
8.22083
8.40001
8.64704
8.96557
9.36464
9.8618
10.4893
11.3062
12.4203
14.0327
16.579
21.2301
31.961
64.3612
188.005
1068.18
1031.14
177.767
62.1496
34.8066
27.1824
23.218
19.8949
16.9048
14.3953
12.4276
10.9552
9.8856
9.12432
8.59453
8.23913
8.018
7.90409
7.87974
7.93425
8.06075
8.25579
8.5192
8.85465
9.27094
9.78505
10.4283
11.2583
12.3836
14.0065
16.561
21.2168
31.9549
64.3665
188.001
1068.49
1031.15
177.688
62.1045
34.9811
27.4323
23.3678
19.8683
16.7223
14.1145
12.1025
10.6226
9.56633
8.828
8.32367
7.9923
7.79226
7.69672
7.68847
7.75761
7.89835
8.10822
8.38734
8.73924
9.17231
9.70289
10.3613
11.2037
12.3386
13.9702
16.5323
21.1948
31.9462
64.3728
187.99
1068.73
1031.16
177.592
62.0472
35.1556
27.6757
23.4889
19.7951
16.4887
13.7879
11.7417
10.2651
9.23116
8.52223
8.0473
7.74179
7.56421
7.48866
7.49828
7.58367
7.73967
7.96481
8.26065
8.63092
9.08356
9.6341
10.3117
11.1713
12.3189
13.9593
16.5284
21.194
31.9516
64.392
188.003
1069.06
1031.17
177.496
61.997
35.3296
27.9004
23.5747
19.6778
16.2114
13.4245
11.3537
9.88991
8.88589
8.21112
7.76657
7.48711
7.33276
7.27801
7.30625
7.4086
7.5804
7.82041
8.13132
8.51826
8.98904
9.55823
10.2537
11.1286
12.2874
13.9353
16.5112
21.1826
31.9526
64.4049
187.992
1069.3
1031.18
177.371
61.9317
35.4997
28.108
23.6212
19.5067
15.8795
13.0161
10.9337
9.49437
8.52826
7.8914
7.47962
7.22849
7.09936
7.06728
7.11596
7.23713
7.42676
7.68379
8.0119
8.41788
8.90984
9.50156
10.2191
11.1134
12.2855
13.941
16.5212
21.1902
31.9583
64.4187
188.007
1069.66
1031.19
177.243
61.8768
35.6681
28.2899
23.623
19.2842
15.5014
12.5729
10.4912
9.08647
8.16464
7.56696
7.18819
6.96625
6.86306
6.85416
6.92357
7.06361
7.27097
7.5448
7.88894
8.31129
8.82144
9.4327
10.1696
11.0805
12.2637
13.9256
16.5107
21.1814
31.956
64.4254
187.999
1069.91
1031.19
177.085
61.8111
35.8307
28.4436
23.5719
18.9983
15.0656
12.0865
10.021
8.66182
7.79065
7.236
6.89311
6.70266
6.62741
6.64355
6.73547
6.89627
7.12352
7.41668
7.77984
8.22209
8.75467
9.39042
10.1522
11.0859
12.2866
13.9568
16.5411
21.2047
31.9745
64.4524
188.029
1070.3
1031.19
176.931
61.7614
35.9886
28.5617
23.4655
18.6545
14.5823
11.5692
9.53533
8.23194
7.41241
6.9005
6.59449
6.43632
6.38959
6.4311
6.54556
6.72679
6.97325
7.28464
7.66501
8.12451
8.67613
9.33224
10.1141
11.0659
12.2798
13.9552
16.5366
21.1948
31.9652
64.4483
188.014
1070.54
1031.2
176.736
61.6926
36.1314
28.636
23.2906
18.2379
14.0386
11.0101
9.02476
7.78829
7.02617
6.56083
6.29484
6.17143
6.15536
6.22423
6.36315
6.56693
6.83524
7.16822
7.57037
8.05252
8.62909
9.31267
10.1227
11.1003
12.3335
14.0161
16.5922
21.2397
32.0117
64.5321
188.136
1070.98
1031.2
176.531
61.6288
36.259
28.6609
23.0493
17.7604
13.4527
10.429
8.50566
7.34193
6.63921
6.22133
5.99572
5.90714
5.92152
6.01729
6.17984
6.40489
6.69337
7.04578
7.46693
7.96833
8.5651
9.27018
10.1018
11.0988
12.3462
14.0349
16.6098
21.2524
32.0118
64.426
187.227
1071.2
1031.19
176.285
61.5544
36.37
28.632
22.7283
17.2031
12.807
9.81495
7.97416
6.88793
6.24693
5.88039
5.69844
5.64754
5.69499
5.82014
6.00869
6.25753
6.56922
6.94487
7.38981
7.91694
8.54214
9.27781
10.1402
11.1639
12.4279
14.1145
16.6657
21.2575
31.9064
63.9504
184.593
1071.69
1031.19
176.056
61.5075
36.4662
28.5472
22.3426
16.5969
12.1351
9.19325
7.44536
6.43854
5.85944
5.54441
5.40574
5.39181
5.47139
5.62459
5.83732
6.10754
6.43951
6.83476
7.29996
7.84787
8.49423
9.25252
10.1375
11.1809
12.4576
14.145
16.6801
21.2308
31.7869
63.524
182.664
1071.88
1031.18
175.77
61.4371
36.5333
28.3875
21.8576
15.9029
11.4062
8.54417
6.9072
5.98849
5.47622
5.21608
5.12331
5.1487
5.26298
5.44675
5.68564
5.97951
6.33482
6.75406
7.24599
7.82316
8.50071
9.29261
10.2104
11.2808
12.5716
14.2518
16.748
21.2248
31.69
63.2688
181.65
1072.44
1031.18
175.514
61.4008
36.5768
28.1659
21.3151
15.18
10.6788
7.91465
6.38718
5.55246
5.10513
4.89816
4.84959
4.91255
5.05965
5.27237
5.53499
5.84843
6.22219
6.66207
7.17657
7.77451
8.47343
9.28952
10.2325
11.326
12.6343
14.3221
16.8105
21.263
31.6961
63.1828
181.137
1072.59
1031.17
175.182
61.3301
36.583
27.8617
20.6693
14.3727
9.90739
7.27745
5.86867
5.12299
4.74665
4.59673
4.59506
4.69777
4.87976
5.12497
5.41461
5.7499
6.14917
6.61787
7.16125
7.78925
8.52143
9.37452
10.3535
11.4747
12.7938
14.4654
16.9017
21.2732
31.6439
63.1031
180.877
1073.24
1031.16
174.908
61.3055
36.5563
27.5004
19.9966
13.5812
9.17717
6.68713
5.39151
4.72768
4.41577
4.31692
4.35659
4.49361
4.70495
4.97671
5.29011
5.64688
6.06748
6.55548
7.11706
7.76258
8.51287
9.3875
10.3921
11.5406
12.8846
14.5747
17.0201
21.3946
31.7738
63.2103
180.827
1073.32
1031.14
174.513
61.2112
36.4673
27.0477
19.2312
12.7312
8.4329
6.11244
4.94151
4.36457
4.12014
4.07438
4.15699
4.33008
4.57305
4.8742
5.21683
5.60219
6.05109
6.56816
7.16077
7.84024
8.6277
9.54178
10.5837
11.7587
13.1079
14.7701
17.1463
21.4207
31.7326
63.1665
180.749
1074.09
1031.13
174.236
61.1812
36.3269
26.5637
18.5224
12.0042
7.82999
5.63655
4.56068
4.05739
3.86938
3.86671
3.98285
4.18293
4.44848
4.76675
5.12245
5.5229
5.9886
6.52018
7.12544
7.81623
8.61332
9.53888
10.5995
11.7988
13.1742
14.8595
17.2535
21.5494
31.8933
63.3413
180.868
1074.09
1031.11
173.767
61.002
36.0519
25.9636
17.7452
11.2616
7.25844
5.21536
4.24693
3.82489
3.69764
3.74189
3.89686
4.13231
4.42953
4.76888
5.13608
5.54863
6.03912
6.61216
7.2654
8.00636
8.85575
9.83319
10.9386
12.1666
13.5457
15.2023
17.5308
21.7344
32.0315
63.4718
180.923
1074.98
1031.08
173.44
60.8192
35.5869
25.305
17.1595
10.8229
6.94787
4.97922
4.06062
3.67881
3.58129
3.64678
3.81776
4.06676
4.37174
4.71014
5.07488
5.48203
5.96037
6.52611
7.18497
7.92984
8.7757
9.74778
10.8537
12.0856
13.4656
15.109
17.406
21.5779
31.858
63.3329
180.9
1074.9
1031.06
172.934
60.3786
34.7122
24.2391
16.3784
10.3989
6.73324
4.85062
3.97602
3.62683
3.55467
3.64187
3.83552
4.10904
4.4347
4.79366
5.18821
5.63077
6.14259
6.743
7.46123
8.29625
9.23211
10.2899
11.4728
12.7638
14.182
15.8495
18.1688
22.3767
32.768
64.2814
181.524
1075.92
1031.02
172.233
59.5754
33.2232
22.6562
15.4899
10.2307
6.84583
4.9646
4.02288
3.60917
3.48639
3.53444
3.69911
3.95122
4.25998
4.6114
5.00883
5.45712
5.96666
6.5515
7.24253
8.06809
9.00856
10.0559
11.2173
12.468
13.8069
15.3314
17.435
21.38
31.4999
62.8918
180.496
1075.81
1030.98
171.845
58.8031
31.1425
20.0074
13.5405
9.45665
6.89735
5.33098
4.39785
3.87523
3.62643
3.56785
3.65471
3.85846
4.14616
4.50679
4.94364
5.45585
6.04387
6.71169
7.47601
8.38074
9.47254
10.7068
12.04
13.4702
14.9955
16.7189
19.0481
23.2676
33.7648
65.3887
182.395
1076.84
1030.92
170.083
57.1849
28.7957
17.2352
11.245
8.1555
6.5664
5.67339
5.08959
4.65047
4.29466
4.01023
3.8115
3.72636
3.78638
3.9975
4.32775
4.77908
5.34289
6.01263
6.78804
7.68541
8.77213
10.0931
11.5317
12.9605
14.3222
15.7175
17.5958
21.2733
31.0953
61.958
179.213
1076.86
1030.86
171.144
57.4719
27.5529
15.6851
10.1987
7.69076
6.54417
5.98411
5.66693
5.44507
5.25426
5.06524
4.86479
4.65063
4.43517
4.25446
4.1762
4.28204
4.61496
5.16431
5.90735
6.82038
7.89704
9.17232
10.8068
12.8033
14.8456
16.8346
19.0652
22.8912
32.9377
64.4563
182.017
1077.71
1030.82
170.018
55.3351
24.8491
13.7742
9.49216
7.80054
7.02346
6.55111
6.18671
5.87536
5.60459
5.37158
5.17163
4.9926
4.82033
4.65681
4.53617
4.51175
4.64042
4.97948
5.5506
6.35261
7.41286
8.80062
10.5561
12.5288
14.5275
16.5452
18.9018
22.801
32.566
63.4574
181.382
1077.99
1030.81
168.728
51.7721
21.967
13.2634
10.6581
9.66699
9.03494
8.44954
7.84948
7.2379
6.63342
6.05541
5.51865
5.03124
4.59487
4.20815
3.87292
3.59904
3.40384
3.31081
3.35036
3.55772
3.95285
4.54264
5.42506
6.81549
8.83768
11.1372
13.8452
18.822
31.8641
68.1563
188.452
1078.85
1030.68
150.846
37.9709
17.0184
14.163
13.7001
13.1884
12.5335
11.8064
11.0486
10.2931
9.5703
8.90829
8.33168
7.8614
7.51525
7.30976
7.26438
7.42043
7.73158
8.22741
8.93576
9.88538
11.1126
12.6672
14.6125
17.0469
20.113
24.1156
29.7437
38.5784
54.4171
88.9193
201.387
1080.22
526.842
24.1438
24.3895
24.4543
24.4818
24.498
24.5061
24.508
24.5052
24.4989
24.4899
24.4789
24.4665
24.453
24.4389
24.4243
24.4095
24.3946
24.3796
24.3641
24.3482
24.3316
24.3139
24.2947
24.2737
24.2504
24.2246
24.1966
24.1681
24.1434
24.1293
24.1328
24.1559
24.196
555.923
526.413
22.9932
22.996
22.999
23.0024
23.0062
23.0104
23.0151
23.0203
23.0257
23.0315
23.0373
23.0431
23.0488
23.0542
23.0593
23.0639
23.0681
23.0718
23.0749
23.0774
23.0793
23.0803
23.0805
23.0798
23.078
23.0751
23.0712
23.067
23.0637
23.0642
23.0734
23.0972
23.1379
531.551
1029.84
172.967
63.3169
33.8191
22.3906
16.7502
13.4367
11.2378
9.65689
8.46277
7.53478
6.80404
6.22845
5.781
5.44378
5.20459
5.05493
4.98995
5.00241
5.08615
5.23948
5.45904
5.74018
6.07659
6.45963
6.87754
7.31505
7.75465
8.19351
8.78142
10.5281
17.6859
45.0962
159.346
1040.5
1029.84
175.23
65.9674
36.1715
24.2318
18.093
14.4046
11.9804
10.3
9.08864
8.18395
7.48468
6.92663
6.46877
6.08439
5.75575
5.47197
5.23089
5.02935
4.86447
4.73607
4.64728
4.6026
4.60751
4.66743
4.78596
4.96239
5.19564
5.53901
6.37756
9.31677
19.216
50.2739
166.515
1041.06
1029.86
175.118
64.9625
34.0424
21.1783
14.5317
10.753
8.52094
7.15207
6.25407
5.60985
5.10968
4.7032
4.36923
4.09895
3.88736
3.7295
3.61942
3.55079
3.5161
3.50832
3.5217
3.55285
3.60168
3.6725
3.77711
3.94582
4.26482
4.98739
6.81521
11.4992
23.2893
55.2532
170.685
1042.03
1029.87
172.811
61.7578
30.7254
18.3801
12.6508
9.83347
8.34042
7.42283
6.75126
6.19218
5.69471
5.24226
4.83264
4.46896
4.15556
3.89585
3.69098
3.53921
3.4365
3.37713
3.35433
3.36153
3.39522
3.4603
3.57937
3.81234
4.30214
5.37526
7.74334
12.9362
24.7622
56.1396
170.82
1042.92
1029.88
172.663
61.6445
30.8226
18.7009
13.0921
10.2895
8.76603
7.82081
7.1399
6.58457
6.09179
5.63697
5.2153
4.82758
4.47589
4.16402
3.89648
3.67669
3.50618
3.3856
3.31426
3.29183
3.32136
3.41528
3.6071
3.97423
4.68161
6.05867
8.73899
14.0612
25.6795
56.6794
171.182
1043.69
1029.88
171.989
60.7972
29.971
17.9842
12.5876
9.96392
8.5352
7.62261
6.94841
6.39501
5.90931
5.4707
5.07214
4.70971
4.38154
4.08827
3.83215
3.6162
3.44398
3.31963
3.24827
3.23753
3.3006
3.46233
3.7717
4.31999
5.26651
6.89277
9.71941
14.941
26.1985
56.8635
171.378
1044.44
1029.89
172.066
60.9991
30.2758
18.3433
12.96
10.3326
8.90031
7.98761
7.31418
6.75914
6.26659
5.81463
5.39855
5.01627
4.66517
4.34534
4.05893
3.80913
3.60044
3.43946
3.33506
3.30038
3.35648
3.53904
3.91189
4.58515
5.72193
7.55563
10.4936
15.5952
26.5025
56.8963
171.536
1045.07
1029.89
172.245
61.143
30.3133
18.3347
12.9631
10.3392
8.88186
7.93489
7.23336
6.66214
6.16787
5.72807
5.3332
4.97588
4.65029
4.35402
4.08748
3.85279
3.65432
3.49975
3.40032
3.3733
3.4462
3.66437
4.10655
4.90283
6.222
8.25391
11.3027
16.3201
26.9823
57.2472
172.028
1045.68
1029.9
172.198
61.089
30.26
18.3204
13.006
10.4271
8.99667
8.06429
7.37013
6.80171
6.30693
5.86436
5.46656
5.10758
4.78168
4.48625
4.22146
3.98861
3.79134
3.6377
3.5397
3.5165
3.59904
3.83873
4.32609
5.20956
6.66714
8.86107
12.0066
16.9411
27.3409
57.429
172.326
1046.22
1029.91
172.434
61.3172
30.4226
18.4599
13.1486
10.5542
9.08908
8.12032
7.39773
6.81132
6.3091
5.86841
5.47861
5.13095
4.81851
4.53791
4.28892
4.0723
3.89136
3.7546
3.67491
3.67309
3.78297
4.06086
4.60753
5.58495
7.1704
9.49859
12.714
17.5729
27.7749
57.7751
172.794
1046.74
1029.91
172.411
61.2489
30.3128
18.3772
13.1253
10.5735
9.12981
8.17275
7.45773
6.87655
6.37833
5.94067
5.55427
5.21159
4.90573
4.63345
4.3949
4.19054
4.02324
3.90217
3.84091
3.86151
4.00014
4.31772
4.92306
5.9841
7.67553
10.1086
13.3681
18.1373
28.1289
58.0167
173.139
1047.23
1029.92
172.568
61.3823
30.4052
18.4782
13.2476
10.6918
9.22668
8.24625
7.51323
6.92145
6.41968
5.98387
5.60278
5.2679
4.972
4.71172
4.48752
4.29964
4.15064
4.05055
4.01383
4.06401
4.23965
4.60671
5.28062
6.4289
8.21747
10.7312
14.0056
18.6765
28.4888
58.3143
173.546
1047.7
1029.93
172.606
61.3653
30.339
18.4368
13.2558
10.7273
9.27144
8.29528
7.56595
6.97804
6.48065
6.04962
5.67367
5.34529
5.05793
4.80828
4.5974
4.42532
4.29417
4.21496
4.20307
4.28337
4.49659
4.91347
5.65466
6.88391
8.75573
11.3297
14.5996
19.164
28.7982
58.5596
173.892
1048.14
1029.94
172.718
61.4291
30.3662
18.4879
13.3379
10.8139
9.34764
8.35938
7.62163
7.03034
6.53398
6.10716
5.73741
5.41693
5.13932
4.90157
4.70543
4.55081
4.43939
4.38322
4.39877
4.51238
4.76705
5.23797
6.04895
7.3568
9.3013
11.9163
15.1623
19.6171
29.0963
58.8259
174.26
1048.56
1029.94
172.8
61.4426
30.334
18.4848
13.3773
10.8702
9.40641
8.41826
7.68183
7.09343
6.60138
6.17978
5.8157
5.50203
5.23312
5.00633
4.82419
4.6865
4.59432
4.56071
4.6032
4.74967
5.04592
5.57053
6.44622
7.82324
9.82647
12.4665
15.6772
20.024
29.3598
59.0642
174.593
1048.97
1029.95
172.916
61.4799
30.3335
18.5147
13.4398
10.9393
9.47037
8.47632
7.73714
7.14983
6.66194
6.24648
5.88963
5.58418
5.32502
5.11021
4.94299
4.8232
4.75139
4.74144
4.81195
4.99231
5.33112
5.90972
6.8479
8.28747
10.3373
12.9865
16.1501
20.3928
29.6077
59.3099
174.931
1049.35
1029.96
173.048
61.5097
30.32
18.5348
13.497
11.0075
9.5381
8.54271
7.80423
7.21989
6.73676
6.3272
5.97677
5.67807
5.42706
5.22299
5.06962
4.96683
4.91472
4.92772
5.02544
5.23852
5.61817
6.24754
7.24186
8.7336
10.8163
13.4614
16.5718
20.7175
29.8265
59.533
175.239
1049.72
1029.97
173.229
61.5552
30.3221
18.5682
13.5589
11.0738
9.60043
8.6015
7.86278
7.2818
6.80472
6.40284
6.06073
5.7704
5.5287
5.33613
5.1969
5.11124
5.07911
5.11535
5.24055
5.48699
5.90762
6.58468
7.62913
9.16375
11.2671
13.8953
16.9466
21.0041
30.0285
59.7559
175.542
1050.08
1029.98
173.486
61.6172
30.3306
18.6079
13.6277
11.1482
9.6723
8.67138
7.9334
7.35603
6.88477
6.49013
6.15588
5.87363
5.6408
5.45943
5.33312
5.26213
5.24852
5.30662
5.45772
5.73563
6.19452
6.91442
8.00116
9.5677
11.6791
14.2803
17.2703
21.2494
30.204
59.9559
175.816
1050.41
1029.99
173.876
61.7175
30.3614
18.6601
13.6983
11.2179
9.73709
8.73329
7.99617
7.4233
6.95919
6.57348
6.24911
5.97715
5.75523
5.58609
5.4724
5.41529
5.41965
5.49927
5.67601
5.98462
6.47923
7.23733
8.35921
9.94794
12.0563
14.6209
17.5479
21.4593
30.3631
60.1505
176.08
1050.73
1029.99
174.517
61.882
30.4181
18.7258
13.7774
11.2953
9.81009
8.80427
8.06843
7.49988
7.04244
6.66509
6.35028
6.08879
5.87866
5.72152
5.61932
5.57542
5.59569
5.69491
5.89555
6.2326
6.75882
7.54897
8.69756
10.2982
12.3929
14.9139
17.7785
21.6329
30.499
60.3234
176.318
1051.04
1030
175.584
62.1546
30.5145
18.804
13.8551
11.3661
9.87572
8.86834
8.13469
7.57151
7.12175
6.75384
6.4498
6.20032
6.00282
5.85786
5.76774
5.73729
5.77338
5.89188
6.11562
6.47881
7.03291
7.84969
9.01762
10.6211
12.6931
15.1642
17.9676
21.7757
30.6198
60.488
176.544
1051.34
1030.01
177.373
62.5705
30.6403
18.8854
13.9322
11.4385
9.94539
8.93831
8.20768
7.64985
7.2073
6.84813
6.55409
6.31607
6.13082
5.99785
5.92022
5.90349
5.95532
6.09157
6.3356
6.72151
7.29909
8.13677
9.3169
10.9152
12.9568
15.3733
18.1175
21.8894
30.7235
60.6368
176.751
1051.62
1030.02
179.722
63.0297
30.7455
18.947
13.9951
11.5009
10.008
9.00326
8.2769
7.72531
7.29087
6.94131
6.65811
6.43188
6.25882
6.1382
6.07336
6.07046
6.13771
6.29079
6.55345
6.95965
7.55725
8.41108
9.59739
11.1838
13.1886
15.547
18.234
21.9787
30.815
60.7773
176.945
1051.89
1030.03
180.827
63.176
30.747
18.9762
14.0502
11.5642
10.0748
9.07344
8.35151
7.80592
7.37921
7.03875
6.76591
6.55088
6.38927
6.28059
6.22812
6.23853
6.32044
6.48948
6.76903
7.19263
7.80658
8.6718
9.85859
11.427
13.3901
15.6882
18.3206
22.0457
30.8931
60.9047
177.124
1052.15
1030.04
180.859
63.1423
30.7235
19.0069
14.1066
11.6268
10.1398
9.14174
8.42443
7.88519
7.46659
7.13554
6.87324
6.66953
6.51946
6.42269
6.38247
6.40585
6.50181
6.68582
6.98053
7.41917
8.04647
8.9192
10.1018
11.6475
13.5652
15.8018
18.3825
22.0946
30.962
61.0249
177.293
1052.41
1030.05
180.923
63.1392
30.7136
19.0421
14.1646
11.6912
10.2075
9.21331
8.50095
7.96813
7.55747
7.23556
6.98324
6.79005
6.65096
6.56554
6.53697
6.5726
6.68165
6.87936
7.18791
7.63937
8.27661
9.15286
10.3269
11.8458
13.7153
15.8905
18.4224
22.1274
31.0208
61.1346
177.448
1052.66
1030.06
180.982
63.1282
30.7003
19.0759
14.2211
11.7542
10.2739
9.28385
8.57664
8.05044
7.64787
7.33518
7.09286
6.91013
6.78188
6.70758
6.6903
6.73765
6.85899
7.06927
7.39011
7.85216
8.49649
9.37296
10.5349
12.0238
13.8436
15.958
18.4444
22.1473
31.0727
61.238
177.596
1052.9
1030.07
181.039
63.1151
30.6882
19.1117
14.2793
11.8193
10.3429
9.35708
8.65508
8.13537
7.7406
7.4367
7.20392
7.03115
6.91321
6.84943
6.84278
6.90103
7.03362
7.2551
7.58647
8.05681
8.70539
9.5789
10.7256
12.182
13.951
16.006
18.4503
22.1554
31.1169
61.3328
177.735
1053.13
1030.08
181.096
63.101
30.6775
19.1478
14.3368
11.8834
10.4111
9.42977
8.73319
8.22012
7.83319
7.53805
7.31465
7.15164
7.04372
6.99008
6.99355
7.06202
7.20491
7.43636
7.77664
8.25354
8.90398
9.77149
10.9
12.322
14.04
16.0374
18.4431
22.1542
31.1558
61.4223
177.869
1053.36
1030.09
181.15
63.0845
30.667
19.1851
14.3955
11.9493
10.4812
9.50453
8.81336
8.30681
7.92746
7.64067
7.42616
7.27241
7.17395
7.12984
7.14273
7.22057
7.37272
7.61281
7.96034
8.44178
9.09162
9.95045
11.0584
12.4443
14.1112
16.0532
18.4237
22.1442
31.1889
61.5049
177.999
1053.58
1030.1
181.204
63.0684
30.6588
19.2232
14.4538
12.0145
10.5509
9.57896
8.89335
8.39337
8.02157
7.74303
7.53721
7.39241
7.30303
7.26796
7.28968
7.37615
7.53658
7.78408
8.13732
8.62142
9.26836
10.1162
11.2017
12.5504
14.1667
16.0556
18.3943
22.1271
31.2177
61.583
178.13
1053.8
1030.11
181.256
63.0531
30.6541
19.264
14.514
12.0814
10.6222
9.65488
8.97471
8.48115
8.11664
7.846
7.64845
7.51214
7.43129
7.40463
7.43446
7.52872
7.69639
7.95003
8.30744
8.79235
9.43459
10.2694
11.3305
12.641
14.2072
16.0453
18.3552
22.1028
31.2413
61.6553
178.265
1054.01
1030.12
181.308
63.0387
30.6525
19.3064
14.5743
12.148
10.693
9.73036
9.05568
8.56855
8.21127
7.9484
7.75892
7.63077
7.55804
7.53928
7.57662
7.67791
7.85189
8.11052
8.47071
8.95482
9.59071
10.4108
11.4459
12.7176
14.2346
16.0242
18.3081
22.0725
31.2609
61.7249
178.418
1054.21
1030.13
181.359
63.024
30.6519
19.3494
14.635
12.215
10.7642
9.80621
9.13696
8.65614
8.30591
8.05054
7.86877
7.74838
7.68326
7.67184
7.71602
7.82357
8.00292
8.26544
8.6271
9.10894
9.73688
10.5407
11.5488
12.7815
14.2502
15.9935
18.2539
22.0365
31.2764
61.7925
178.605
1054.41
1030.14
181.409
63.0091
30.6528
19.3925
14.6949
12.2809
10.8344
9.88105
9.21727
8.74277
8.39951
8.15149
7.97722
7.86427
7.80638
7.80179
7.85224
7.96535
8.14925
8.41465
8.77663
9.2549
9.87354
10.6598
11.6401
12.8338
14.2554
15.9547
18.1935
21.9956
31.2889
61.8639
178.861
1054.61
1030.15
181.458
62.994
30.6549
19.436
14.7546
12.3467
10.9044
9.95566
9.29726
8.82894
8.49243
8.25151
8.08442
7.97852
7.92738
7.92911
7.98524
8.10324
8.29088
8.55827
8.91955
9.39314
10.0014
10.7692
11.7211
12.8762
14.252
15.9095
18.1289
21.9513
31.3007
61.9489
179.254
1054.8
1030.16
181.507
62.9797
30.6587
19.4797
14.8136
12.4114
10.9733
10.0291
9.37605
8.91385
8.58398
8.34997
8.1898
8.09063
8.04587
8.05345
8.11472
8.237
8.42769
8.69624
9.05593
9.52391
10.1209
10.8697
11.7933
12.9105
14.2423
15.8597
18.0603
21.9042
31.3157
62.0676
179.924
1054.98
1030.17
181.556
62.9658
30.6639
19.5238
14.8723
12.4757
11.0416
10.1018
9.45406
8.99781
8.67435
8.44695
8.29338
8.20057
8.16177
8.17475
8.24066
8.36666
8.55977
8.82881
9.1862
9.64788
10.233
10.9626
11.8578
12.937
14.2251
15.8045
17.9919
21.862
31.3422
62.2611
181.147
1055.17
1030.18
181.605
62.9531
30.6706
19.5678
14.9301
12.5388
11.1087
10.1733
9.53073
9.08031
8.76306
8.54204
8.39478
8.308
8.27478
8.29275
8.36285
8.49209
8.6871
8.95609
9.31062
9.76549
10.3383
11.0484
11.9151
12.9569
14.2028
15.7476
17.9262
21.8273
31.3989
62.6163
183.271
1055.35
1030.19
181.653
62.9404
30.678
19.6115
14.9873
12.6012
11.175
10.2439
9.60632
9.16154
8.85025
8.6353
8.49399
8.41287
8.38483
8.40736
8.48122
8.61324
8.80966
9.0781
9.42928
9.87689
10.4371
11.1274
11.966
12.9715
14.178
15.6928
17.8689
21.813
31.5098
63.106
185.571
1055.53
1030.2
181.702
62.9281
30.6861
19.6547
15.0433
12.6623
11.24
10.3131
9.68054
9.24123
8.93564
8.72646
8.59078
8.51495
8.49171
8.5184
8.59562
8.73001
8.92742
9.1949
9.54237
9.98241
10.5298
11.2007
12.0119
12.9831
14.1534
15.6427
17.8206
21.8096
31.6124
63.4234
186.544
1055.7
1030.21
181.75
62.9162
30.6951
19.6976
15.0987
12.7227
11.3042
10.3814
9.75361
9.31954
9.01935
8.81557
8.68511
8.61414
8.59529
8.62572
8.70588
8.84224
9.04028
9.30646
9.64995
10.0823
10.617
11.2689
12.0539
12.9929
14.1302
15.5967
17.7766
21.8013
31.669
63.5456
186.725
1055.88
1030.22
181.798
62.9044
30.7043
19.7396
15.1528
12.7818
11.367
10.4483
9.82523
9.39622
9.10115
8.90241
8.77676
8.71024
8.69532
8.72906
8.81176
8.94971
9.14802
9.41264
9.75199
10.1767
10.6991
11.3327
12.0931
13.002
14.109
15.5545
17.7343
21.7853
31.6926
63.5909
186.791
1056.06
1030.23
181.846
62.8926
30.7136
19.7809
15.2058
12.8398
11.4287
10.514
9.89546
9.47129
9.18104
8.98698
8.86572
8.80317
8.79173
8.82833
8.91313
9.05226
9.25049
9.51327
9.84837
10.2655
10.776
11.3925
12.1298
13.011
14.0903
15.516
17.6939
21.7644
31.6992
63.61
186.841
1056.24
1030.24
181.892
62.8795
30.7223
19.8208
15.2572
12.8961
11.4888
10.578
9.96395
9.54445
9.25878
9.06906
8.9518
8.89281
8.88439
8.9234
9.00987
9.14978
9.34758
9.60827
9.93901
10.3488
10.848
11.4483
12.1643
13.0203
14.0742
15.4815
17.6561
21.7419
31.6985
63.6209
186.89
1056.43
1030.25
181.936
62.8657
30.7308
19.8597
15.3074
12.9512
11.5476
10.6405
10.0308
9.61573
9.33435
9.14865
9.03501
8.97915
8.97331
9.01427
9.10198
9.24227
9.43929
9.69763
10.0239
10.4265
10.915
11.5003
12.1968
13.0298
14.0608
15.4512
17.622
21.7203
31.6953
63.6295
186.939
1056.61
1030.26
181.979
62.8511
30.739
19.8977
15.3562
13.0048
11.6048
10.7014
10.0958
9.68499
9.40765
9.22565
9.11526
9.06215
9.05848
9.10099
9.18953
9.32981
9.52571
9.78148
10.1033
10.4989
10.9772
11.5486
12.2272
13.0396
14.0501
15.4252
17.5921
21.7012
31.6925
63.6386
186.989
1056.8
1030.27
182.02
62.836
30.7474
19.9351
15.4043
13.0575
11.6609
10.761
10.1592
9.75237
9.47877
9.30016
9.19267
9.14192
9.14002
9.18367
9.27266
9.41257
9.60703
9.85999
10.1772
10.566
11.0346
11.5931
12.2556
13.0494
14.0417
15.4032
17.5666
21.6853
31.6914
63.6492
187.04
1056.99
1030.28
182.06
62.8207
30.7562
19.9722
15.4517
13.1093
11.7158
10.8192
10.2211
9.81792
9.54777
9.37221
9.26728
9.21852
9.21803
9.26244
9.35151
9.49071
9.68344
9.93338
10.246
10.6281
11.0876
11.6341
12.2817
13.0589
14.035
15.3849
17.5459
21.6734
31.6931
63.6624
187.094
1057.18
1030.29
182.099
62.8061
30.7659
20.0094
15.4986
13.1604
11.7699
10.8763
10.2815
9.88179
9.61478
9.44195
9.33923
9.2921
9.29264
9.33746
9.42627
9.56443
9.75514
10.0019
10.3097
10.6852
11.136
11.6712
12.305
13.0668
14.0287
15.3698
17.53
21.6647
31.6973
63.6777
187.148
1057.37
1030.3
182.137
62.7923
30.7765
20.0466
15.5453
13.2109
11.8232
10.9323
10.3406
9.94402
9.67985
9.50943
9.4086
9.36277
9.36401
9.4089
9.49712
9.63394
9.82236
10.0656
10.3687
10.7377
11.1799
11.7044
12.3254
13.0733
14.0229
15.3573
17.5176
21.659
31.7038
63.6945
187.202
1057.55
1030.31
182.175
62.7791
30.7878
20.0838
15.5915
13.2609
11.8757
10.9873
10.3985
10.0047
9.74309
9.57478
9.47551
9.43067
9.43228
9.47693
9.56427
9.69946
9.88534
10.125
10.4231
10.7856
11.2195
11.7336
12.3425
13.0779
14.0171
15.3463
17.5077
21.6556
31.7117
63.7116
187.254
1057.74
1030.32
182.211
62.7659
30.7995
20.1208
15.6373
13.3101
11.9273
11.0412
10.455
10.0639
9.80455
9.63807
9.54007
9.4959
9.49759
9.5417
9.62787
9.76117
9.94426
10.1801
10.4731
10.8291
11.2547
11.7589
12.3564
13.0803
14.0106
15.3358
17.4989
21.6534
31.7201
63.7279
187.303
1057.92
1030.32
182.246
62.7528
30.8116
20.1576
15.6826
13.3589
11.9783
11.0943
10.5105
10.1217
9.86439
9.69946
9.60244
9.55866
9.56014
9.60344
9.68818
9.81934
9.99942
10.2312
10.5191
10.8685
11.286
11.7805
12.3673
13.0808
14.0031
15.3254
17.4909
21.652
31.729
63.7439
187.351
1058.1
1030.33
182.282
62.7414
30.8249
20.1947
15.7279
13.4073
12.0286
11.1466
10.565
10.1783
9.92272
9.75905
9.66273
9.61905
9.62005
9.66227
9.74534
9.87413
10.051
10.2786
10.5611
10.9039
11.3134
11.7985
12.3752
13.0791
13.9944
15.3146
17.4829
21.6509
31.7374
63.7579
187.394
1058.28
1030.34
182.317
62.7304
30.8389
20.232
15.773
13.4554
12.0786
11.1983
10.6186
10.2337
9.97969
9.81702
9.72111
9.67726
9.6775
9.71839
9.79955
9.92575
10.0992
10.3225
10.5996
10.9357
11.3373
11.8133
12.3803
13.0753
13.9845
15.303
17.4748
21.6497
31.7456
63.771
187.435
1058.45
1030.35
182.352
62.721
30.854
20.2696
15.8183
13.5034
12.1283
11.2495
10.6715
10.2883
10.0355
9.87357
9.7778
9.7335
9.73272
9.77203
9.85104
9.97444
10.1443
10.3631
10.6347
10.9643
11.3581
11.8253
12.3831
13.0697
13.9734
15.2909
17.4664
21.6486
31.7539
63.7837
187.475
1058.62
1030.36
182.387
62.7122
30.8695
20.3073
15.8635
13.5514
12.1777
11.3003
10.7238
10.3421
10.0903
9.92882
9.83293
9.78792
9.78585
9.82332
9.89995
10.0203
10.1864
10.4006
10.6667
10.9897
11.3759
11.8347
12.3838
13.0629
13.9616
15.2786
17.4582
21.648
31.7628
63.7965
187.512
1058.79
1030.37
182.421
62.7036
30.8855
20.3451
15.9087
13.5993
12.2271
11.3509
10.7758
10.3952
10.1442
9.98298
9.88669
9.84069
9.83708
9.87245
9.94645
10.0636
10.2257
10.4351
10.6956
11.012
11.3908
11.8416
12.3826
13.0548
13.9492
15.2663
17.4503
21.6477
31.7718
63.8086
187.547
1058.95
1030.38
182.456
62.6969
30.9028
20.3836
15.9543
13.6474
12.2765
11.4014
10.8275
10.4479
10.1975
10.0362
9.93927
9.89202
9.88659
9.91961
9.99074
10.1044
10.2623
10.4668
10.7215
11.0314
11.403
11.846
12.3796
13.0455
13.9364
15.2539
17.4427
21.6478
31.7809
63.8193
187.577
1059.12
1030.39
182.492
62.6927
30.9218
20.4228
16.0004
13.6958
12.3261
11.452
10.879
10.5003
10.2502
10.0886
9.99078
9.94201
9.93451
9.96493
10.0329
10.1429
10.2964
10.4958
10.7446
11.048
11.4124
11.848
12.3744
13.0347
13.9227
15.2412
17.4349
21.6475
31.7883
63.8269
187.605
1059.28
1030.4
182.529
62.6898
30.9415
20.4625
16.0468
13.7446
12.376
11.5027
10.9306
10.5524
10.3024
10.1403
10.0413
9.99083
9.98102
10.0086
10.0733
10.1793
10.3282
10.5223
10.7652
11.0619
11.4192
11.8475
12.3672
13.0223
13.9078
15.2277
17.4267
21.6468
31.7948
63.8328
187.631
1059.43
1030.41
182.565
62.6879
30.9619
20.5023
16.0934
13.7936
12.4262
11.5539
10.9824
10.6045
10.3543
10.1915
10.0911
10.0387
10.0263
10.0509
10.112
10.2139
10.358
10.5466
10.7834
11.0735
11.4236
11.8448
12.3581
13.0084
13.8919
15.2136
17.4183
21.6461
31.8017
63.839
187.656
1059.58
1030.42
182.603
62.6876
30.9831
20.5426
16.1404
13.843
12.4769
11.6055
11.0346
10.6567
10.4061
10.2422
10.1403
10.0857
10.0706
10.0919
10.1493
10.2469
10.3861
10.5691
10.7997
11.083
11.426
11.8402
12.3473
12.9931
13.8749
15.1988
17.4096
21.6457
31.809
63.8449
187.679
1059.73
1030.43
182.641
62.6886
31.0052
20.5835
16.1879
13.8931
12.5281
11.6577
11.0873
10.7093
10.4579
10.2928
10.1891
10.132
10.1141
10.1319
10.1854
10.2786
10.4126
10.5899
10.8141
11.0906
11.4266
11.8338
12.3347
12.9762
13.8566
15.183
17.4004
21.645
31.8162
63.8503
187.7
1059.88
1030.44
182.681
62.6929
31.0295
20.6257
16.2366
13.9441
12.5803
11.7107
11.1406
10.7623
10.51
10.3434
10.2375
10.1779
10.1568
10.1711
10.2205
10.309
10.4379
10.6092
10.827
11.0966
11.4254
11.8256
12.3205
12.958
13.8372
15.1663
17.3905
21.6441
31.8235
63.8556
187.719
1060.02
1030.45
182.724
62.7002
31.0557
20.6692
16.2863
13.9961
12.6332
11.7644
11.1945
10.8157
10.5623
10.394
10.2858
10.2233
10.199
10.2095
10.2548
10.3385
10.462
10.6274
10.8386
11.1011
11.4227
11.8159
12.3048
12.9382
13.8164
15.1485
17.3799
21.6428
31.8309
63.8606
187.737
1060.16
1030.46
182.768
62.7092
31.083
20.7135
16.3368
14.0487
12.6869
11.8187
11.2489
10.8695
10.6149
10.4446
10.3339
10.2684
10.2406
10.2473
10.2882
10.3672
10.4851
10.6444
10.849
11.1044
11.4186
11.8047
12.2876
12.917
13.7942
15.1296
17.3684
21.6408
31.8376
63.8648
187.751
1060.29
1030.46
182.812
62.7194
31.1112
20.7586
16.3882
14.1022
12.7413
11.8737
11.3039
10.9238
10.6677
10.4952
10.3819
10.3132
10.2819
10.2845
10.3211
10.3951
10.5075
10.6606
10.8584
11.1065
11.4132
11.7921
12.2688
12.8941
13.7704
15.1091
17.3554
21.6376
31.8435
63.8677
187.764
1060.42
1030.47
182.856
62.7308
31.1407
20.805
16.4407
14.1568
12.7966
11.9295
11.3597
10.9786
10.7208
10.5461
10.4298
10.3579
10.3228
10.3214
10.3535
10.4225
10.5293
10.6762
10.8671
11.1077
11.4067
11.7781
12.2483
12.8695
13.7455
15.0881
17.3411
21.6333
31.8488
63.8701
187.774
1060.55
1030.48
182.903
62.7457
31.1723
20.8529
16.4946
14.2126
12.8531
11.9863
11.4162
11.034
10.7744
10.5971
10.4779
10.4025
10.3636
10.358
10.3856
10.4496
10.5508
10.6913
10.8752
11.1083
11.3993
11.7628
12.2264
12.8435
13.7195
15.0658
17.3253
21.6272
31.8523
63.8701
187.78
1060.67
1030.49
182.952
62.7625
31.2054
20.9021
16.5497
14.2696
12.9106
12.044
11.4735
11.0901
10.8284
10.6484
10.5259
10.4469
10.4041
10.3943
10.4173
10.4763
10.5718
10.706
10.8828
11.108
11.3908
11.7463
12.2032
12.8163
13.6922
15.0421
17.3075
21.6186
31.853
63.8661
187.781
1060.79
1030.5
183.004
62.7829
31.2406
20.9526
16.6059
14.3275
12.969
12.1026
11.5315
11.1467
10.8827
10.6999
10.5739
10.4912
10.4444
10.4303
10.4487
10.5027
10.5925
10.7203
10.8899
11.1073
11.3817
11.7291
12.1792
12.7881
13.6636
15.0164
17.2871
21.6066
31.8493
63.8558
187.774
1060.9
1030.51
183.059
62.8059
31.2771
21.0041
16.6629
14.3863
13.0281
12.1618
11.5901
11.2037
10.9373
10.7513
10.6218
10.5352
10.4842
10.4658
10.4796
10.5286
10.6128
10.7343
10.8968
11.1064
11.3726
11.7119
12.155
12.7595
13.634
14.9891
17.264
21.5908
31.8409
63.8396
187.762
1061.01
1030.52
183.115
62.8307
31.3151
21.0568
16.7212
14.4462
13.0883
12.2219
11.6494
11.2613
10.9923
10.8029
10.6696
10.5789
10.5237
10.5009
10.5102
10.5542
10.633
10.7483
10.904
11.1061
11.3642
11.6956
12.1318
12.7315
13.6044
14.961
17.2393
21.5726
31.8295
63.8204
187.748
1061.12
1030.53
183.176
62.8597
31.3557
21.1114
16.781
14.5074
13.1496
12.283
11.7096
11.3194
11.0475
10.8546
10.7173
10.6224
10.5629
10.5357
10.5404
10.5797
10.6532
10.7627
10.9119
11.1067
11.3571
11.6808
12.1102
12.705
13.5759
14.9333
17.2142
21.5531
31.8164
63.7993
187.733
1061.23
1030.54
183.241
62.8917
31.3983
21.1677
16.8424
14.57
13.2121
12.3451
11.7706
11.3782
11.1031
10.9063
10.7648
10.6654
10.6015
10.5699
10.5702
10.6048
10.6733
10.7773
10.9203
11.1083
11.3515
11.6679
12.0906
12.6804
13.549
14.9065
17.189
21.5324
31.8009
63.7753
187.716
1061.34
1030.55
183.308
62.9258
31.4426
21.2258
16.9055
14.6343
13.2761
12.4085
11.8326
11.4377
11.1591
10.9582
10.812
10.7081
10.6396
10.6035
10.5994
10.6295
10.6932
10.792
10.9293
11.111
11.3474
11.6569
12.0733
12.6582
13.5242
14.8813
17.1646
21.5115
31.7842
63.7502
187.699
1061.44
1030.56
183.379
62.9633
31.4896
21.2863
16.971
14.7007
13.342
12.4735
11.8959
11.4981
11.2157
11.0101
10.8591
10.7503
10.677
10.6364
10.6279
10.6537
10.7128
10.8068
10.9388
11.1148
11.3449
11.6481
12.0586
12.6389
13.5021
14.8586
17.1424
21.4923
31.7692
63.7279
187.687
1061.56
1030.57
183.454
63.0039
31.5389
21.3493
17.0389
14.7693
13.4098
12.5402
11.9606
11.5596
11.2728
11.0622
10.906
10.7919
10.7137
10.6684
10.6555
10.6771
10.732
10.8214
10.9486
11.1193
11.3438
11.6412
12.0464
12.6223
13.4829
14.8385
17.1224
21.4747
31.755
63.7071
187.677
1061.67
1030.58
183.533
63.0469
31.5902
21.4145
17.1092
14.8403
13.4798
12.6088
12.0268
11.6221
11.3305
11.1145
10.9526
10.8329
10.7495
10.6994
10.6821
10.6995
10.7503
10.8356
10.9583
11.1243
11.3438
11.6361
12.0365
12.6084
13.4666
14.8212
17.1051
21.4592
31.7424
63.6884
187.67
1061.79
1030.59
183.614
63.0909
31.6429
21.4818
17.1819
14.9138
13.5523
12.6795
12.0949
11.6859
11.3889
11.1668
10.9987
10.8731
10.7842
10.7292
10.7074
10.7207
10.7675
10.8489
10.9677
11.1295
11.3445
11.6323
12.0286
12.597
13.4531
14.8069
17.0906
21.4464
31.7322
63.6731
187.667
1061.91
1030.6
183.697
63.1358
31.6967
21.5512
17.2572
14.9901
13.6274
12.7528
12.1649
11.7511
11.4479
11.219
11.0441
10.9122
10.8175
10.7574
10.7311
10.7403
10.7834
10.8612
10.9764
11.1344
11.3456
11.6296
12.0223
12.5878
13.4421
14.7953
17.0788
21.436
31.7243
63.6614
187.669
1062.03
1030.61
183.784
63.1831
31.7527
21.623
17.3354
15.0696
13.7061
12.8291
12.237
11.8173
11.5072
11.2709
11.0887
10.95
10.8493
10.7838
10.7529
10.7581
10.7976
10.872
10.984
11.1388
11.3467
11.6275
12.0173
12.5805
13.4334
14.7863
17.07
21.4287
31.7195
63.6539
187.675
1062.16
1030.62
183.872
63.2299
31.8094
21.6969
17.4163
15.1523
13.7885
12.9086
12.3111
11.8844
11.5663
11.3219
11.132
10.9862
10.8791
10.8082
10.7727
10.7739
10.8099
10.8812
10.9902
11.1422
11.3475
11.6257
12.0132
12.5746
13.4268
14.7798
17.0641
21.4247
31.7187
63.6523
187.687
1062.29
1030.63
183.96
63.2773
31.8682
21.774
17.5007
15.2383
13.874
12.9908
12.3874
11.9529
11.6261
11.3728
11.1744
11.021
10.9073
10.8306
10.7903
10.7876
10.8202
10.8885
10.995
11.1446
11.3476
11.6237
12.0094
12.5699
13.4219
14.7753
17.0605
21.4232
31.7203
63.6537
187.701
1062.42
1030.64
184.05
63.3261
31.9298
21.8549
17.5891
15.3281
13.963
13.0761
12.4661
12.0231
11.6867
11.4237
11.2162
11.0546
10.9337
10.851
10.8058
10.7989
10.8282
10.8937
10.9977
11.1453
11.3464
11.621
12.0056
12.5657
13.4181
14.7722
17.0586
21.4237
31.7245
63.6588
187.718
1062.55
1030.65
184.144
63.3792
31.9957
21.9404
17.6822
15.4224
14.056
13.1649
12.5475
12.0951
11.7482
11.4746
11.2572
11.0867
10.9583
10.8692
10.8188
10.8078
10.8336
10.8965
10.9983
11.1441
11.3438
11.6173
12.0014
12.5617
13.4149
14.7701
17.0581
21.4258
31.7306
63.6668
187.737
1062.69
1030.66
184.242
63.4348
32.065
22.0303
17.7796
15.5207
14.1528
13.257
12.6314
12.1685
11.8102
11.5252
11.2971
11.1172
10.9806
10.8849
10.829
10.8137
10.8361
10.8964
10.9963
11.1406
11.3392
11.6121
11.9963
12.5573
13.4116
14.7681
17.0578
21.4282
31.7367
63.6748
187.755
1062.83
1030.68
184.344
63.492
32.137
22.1241
17.8814
15.6234
14.2536
13.3524
12.7179
12.2436
11.8727
11.5753
11.3357
11.1457
11.0005
10.8977
10.8361
10.8164
10.8354
10.8931
10.9912
11.1343
11.3324
11.6051
11.9898
12.552
13.408
14.7662
17.0581
21.4315
31.7443
63.6858
187.776
1062.96
1030.69
184.45
63.5522
32.2124
22.2223
17.988
15.7305
14.3584
13.4513
12.8068
12.3198
11.9352
11.6244
11.3725
11.1717
11.0175
10.9072
10.8398
10.8155
10.8311
10.8864
10.9829
11.1251
11.3228
11.596
11.9816
12.5455
13.4036
14.7639
17.0581
21.4348
31.7526
63.6986
187.798
1063.11
1030.7
184.558
63.6112
32.2888
22.3237
18.0987
15.842
14.4674
13.5536
12.8979
12.3969
11.9973
11.6719
11.4069
11.1947
11.031
10.913
10.8396
10.8106
10.8228
10.8758
10.9709
11.1125
11.3104
11.5844
11.9716
12.5377
13.3984
14.7613
17.0584
21.4388
31.7621
63.7141
187.822
1063.25
1030.72
184.666
63.6693
32.3663
22.4284
18.2139
15.9584
14.5809
13.6594
12.991
12.4744
12.0583
11.7172
11.4382
11.214
11.0403
10.9144
10.8348
10.8013
10.8101
10.8609
10.9548
11.0962
11.2946
11.57
11.9593
12.5282
13.392
14.7581
17.0586
21.4434
31.7733
63.7329
187.848
1063.39
1030.73
184.774
63.7258
32.4448
22.5368
18.3343
16.0805
14.6995
13.7687
13.0855
12.5512
12.1171
11.7592
11.4655
11.2289
11.045
10.911
10.8252
10.7871
10.7927
10.8414
10.9344
11.0759
11.2754
11.5526
11.9447
12.517
13.3845
14.7544
17.059
21.4489
31.7865
63.7554
187.877
1063.54
1030.74
184.882
63.7808
32.5244
22.6485
18.4598
16.2098
14.824
13.8807
13.1801
12.6263
12.1729
11.7974
11.4883
11.2389
11.0446
10.9024
10.8104
10.7677
10.7702
10.8171
10.9095
11.0514
11.2523
11.532
11.9273
12.5036
13.3755
14.7497
17.0591
21.4547
31.801
63.7808
187.906
1063.69
1030.76
184.988
63.8353
32.6075
22.7651
18.5903
16.3445
14.9528
13.995
13.275
12.6999
12.2258
11.8317
11.5067
11.244
11.0391
10.8885
10.7902
10.7429
10.7424
10.7877
10.8797
11.0224
11.2253
11.5079
11.9071
12.4881
13.3652
14.7445
17.0592
21.4613
31.8173
63.8094
187.937
1063.84
1030.77
185.097
63.892
32.695
22.8876
18.7264
16.4839
15.0853
14.1116
13.3704
12.7724
12.2761
11.8622
11.5203
11.2438
11.0278
10.8687
10.7641
10.7123
10.7089
10.7527
10.8446
10.9885
11.1937
11.4799
11.8836
12.4699
13.3527
14.7377
17.0585
21.4677
31.8344
63.8399
187.968
1063.99
1030.79
185.207
63.947
32.7841
23.0146
18.8679
16.6286
15.222
14.2303
13.4654
12.842
12.3219
11.887
11.5276
11.2368
11.0097
10.842
10.7312
10.6751
10.669
10.7116
10.8038
10.9493
11.1574
11.4477
11.8566
12.449
13.3383
14.7298
17.0573
21.4745
31.853
63.8741
188.001
1064.14
1030.81
185.313
63.9978
32.8743
23.1461
19.0147
16.778
15.362
14.35
13.5588
12.9079
12.3622
11.9053
11.5277
11.2225
10.984
10.808
10.6911
10.6309
10.6223
10.6641
10.7569
10.9044
11.1159
11.4109
11.8256
12.4247
13.3214
14.7201
17.0552
21.4812
31.8729
63.9112
188.034
1064.3
1030.82
185.418
64.046
32.966
23.2832
19.1684
16.9337
15.5062
14.4706
13.6498
12.9687
12.3957
11.9157
11.5195
11.1997
10.9501
10.7658
10.6432
10.5792
10.5686
10.6099
10.7037
10.8537
11.0692
11.3695
11.7908
12.3974
13.3021
14.709
17.0524
21.488
31.8941
63.9512
188.068
1064.46
1030.84
185.516
64.0876
33.0573
23.425
19.3292
17.0956
15.6535
14.5902
13.7361
13.0223
12.4206
11.9168
11.5018
11.1675
10.9071
10.715
10.5871
10.5197
10.5074
10.5487
10.6439
10.7968
11.0168
11.323
11.7514
12.3663
13.2797
14.6953
17.0477
21.4937
31.9154
63.9925
188.1
1064.62
1030.86
185.606
64.1244
33.1493
23.572
19.4995
17.2651
15.8031
14.707
13.816
13.0674
12.4358
11.908
11.4741
11.1256
10.8548
10.6554
10.5226
10.4524
10.4389
10.4806
10.5778
10.7342
10.9592
11.2719
11.7082
12.3319
13.2548
14.6799
17.0422
21.4992
31.9372
64.0354
188.131
1064.79
1030.87
185.694
64.1601
33.2445
23.7245
19.6792
17.4411
15.9524
14.8188
13.8881
13.1032
12.4411
11.8889
11.4364
11.0739
10.7931
10.5868
10.4496
10.377
10.3629
10.4055
10.5051
10.6654
10.8959
11.2157
11.6603
12.2935
13.2266
14.6617
17.0343
21.503
31.9584
64.0787
188.16
1064.95
1030.89
185.778
64.1917
33.3425
23.8821
19.8624
17.6193
16.1024
14.9284
13.9549
13.1311
12.4368
11.8593
11.3878
11.0116
10.7213
10.5087
10.3678
10.2935
10.2793
10.3234
10.426
10.5908
10.8274
11.1547
11.6084
12.2518
13.1956
14.6416
17.0253
21.5064
31.98
64.1234
188.188
1065.12
1030.91
185.853
64.2151
33.4401
24.0451
20.0528
17.8031
16.253
15.0329
14.0121
13.1468
12.419
11.8162
11.3261
10.9369
10.6379
10.42
10.2763
10.2011
10.1876
10.2338
10.34
10.5099
10.753
11.0884
11.5514
12.2054
13.1606
14.6179
17.0131
21.5072
32.0004
64.1681
188.212
1065.29
1030.93
185.918
64.2311
33.5387
24.213
20.2479
17.9891
16.4016
15.1305
14.0587
13.1495
12.3873
11.7589
11.2509
10.8496
10.5429
10.3207
10.1752
10.1
10.0882
10.1374
10.2479
10.4235
10.6737
11.0177
11.4906
12.1558
13.1229
14.5921
16.9995
21.5073
32.0207
64.2135
188.235
1065.47
1030.94
185.976
64.2406
33.6376
24.3877
20.4507
18.1796
16.548
15.2196
14.0922
13.1369
12.3395
11.686
11.1609
10.7487
10.4356
10.2104
10.0643
9.99017
9.98088
10.034
10.1495
10.3313
10.5891
10.9419
11.425
12.1015
13.0806
14.5618
16.9816
21.5033
32.0379
64.2558
188.251
1065.64
1030.96
186.017
64.2329
33.7296
24.5656
20.6587
18.3706
16.6878
15.2955
14.1089
13.1061
12.2738
11.5962
11.0553
10.6338
10.3159
10.089
9.94359
9.8718
9.86619
9.92411
10.0456
10.2345
10.5004
10.8627
11.3564
12.0446
13.036
14.5296
16.9621
21.4979
32.0535
64.2959
188.264
1065.83
1030.98
186.039
64.2037
33.8112
24.7484
20.8741
18.5617
16.8181
15.3558
14.1073
13.0566
12.1901
11.4897
10.9347
10.5053
10.184
9.95698
9.81353
9.74522
9.74433
9.80799
9.93616
10.1327
10.4073
10.7793
11.2836
11.9833
12.9869
14.4927
16.9377
21.4877
32.0652
64.332
188.269
1066
1031
186.014
64.1258
33.8699
24.9347
21.0942
18.7454
16.9328
15.3973
14.0862
12.988
12.0885
11.3667
10.7991
10.3635
10.0405
9.8148
9.67469
9.61114
9.61615
9.68665
9.82251
10.0276
10.3116
10.6939
11.2093
11.9209
12.9368
14.4548
16.9123
21.4759
32.0739
64.3631
188.27
1066.2
1031.01
185.71
63.9199
33.8903
25.1098
21.311
18.9267
17.0409
15.4267
14.049
12.9016
11.9689
11.2268
10.6483
10.2082
9.88517
9.66226
9.52689
9.46934
9.48136
9.55967
9.70404
9.91828
10.2122
10.6049
11.1314
11.8546
12.8822
14.4119
16.8812
21.458
32.0767
64.3871
188.26
1066.38
1031.03
184.047
63.4619
33.8731
25.2926
21.5381
19.1071
17.1361
15.4356
13.9885
12.7921
11.828
11.0679
10.4809
10.0387
9.71777
9.4996
9.37064
9.32058
9.341
9.4284
9.58244
9.80694
10.1117
10.5157
11.0539
11.789
12.8285
14.37
16.8509
21.4403
32.0783
64.4092
188.253
1066.6
1031.05
181.454
62.969
33.8945
25.4995
21.7735
19.2829
17.2169
15.4247
13.906
12.6609
11.6671
10.8913
10.2981
9.85605
9.53914
9.32744
9.20636
9.16509
9.19503
9.29249
9.45702
9.69241
10.0084
10.4239
10.9737
11.7203
12.7711
14.3236
16.8155
21.4169
32.0744
64.4248
188.236
1066.79
1031.06
179.764
62.7113
33.9873
25.7323
22.0162
19.4516
17.2795
15.3894
13.7977
12.5052
11.4842
10.6957
10.0995
9.66024
9.34973
9.14651
9.03506
9.00412
9.045
9.15384
9.33013
9.57763
9.90596
10.334
10.8963
11.6549
12.7173
14.281
16.7836
21.396
32.0706
64.4389
188.222
1067.02
1031.08
178.928
62.5656
34.099
25.9701
22.2555
19.6061
17.3189
15.3266
13.6616
12.324
11.2794
10.4818
9.88567
9.452
9.15015
8.95726
8.85694
8.83759
8.89046
9.01157
9.20035
9.46051
9.80158
10.2423
10.8168
11.5869
12.66
14.2341
16.7466
21.3696
32.062
64.4476
188.2
1067.23
1031.09
178.481
62.4689
34.2304
26.2197
22.4943
19.7453
17.3322
15.2337
13.4961
12.1167
11.0527
10.2502
9.65782
9.23273
8.94198
8.76138
8.67385
8.66754
8.73376
8.86845
9.07104
9.34518
9.70034
10.155
10.7429
11.5254
12.6097
14.1945
16.7169
21.3489
32.0553
64.4561
188.185
1067.48
1031.11
178.235
62.4004
34.3742
26.4746
22.7254
19.862
17.3138
15.1072
13.2998
11.8831
10.805
10.0023
9.4174
9.00379
8.72629
8.5596
8.48606
8.4937
8.574
8.72285
8.93965
9.22805
9.59736
10.0658
10.6667
11.4607
12.5552
14.1498
16.6812
21.322
32.0435
64.4587
188.159
1067.7
1031.12
178.078
62.3399
34.5278
26.736
22.9463
19.9504
17.2577
14.9425
13.07
11.6227
10.5368
9.73931
9.16626
8.76731
8.50541
8.35434
8.29611
8.31885
8.41432
8.57848
8.8108
9.11491
9.49997
9.98384
10.5992
11.4059
12.5116
14.1165
16.6566
21.3038
32.0351
64.4615
188.143
1067.98
1031.13
177.972
62.2894
34.6921
27.0015
23.1497
20.0027
17.1594
14.7386
12.8077
11.3374
10.2505
9.46377
8.90665
8.52526
8.28081
8.14648
8.10413
8.14219
8.25287
8.43226
8.67996
8.99953
9.39993
9.89856
10.5275
11.3456
12.4608
14.0748
16.6227
21.2764
32.0191
64.456
188.114
1068.21
1031.15
177.881
62.238
34.8659
27.266
23.326
20.0112
17.0156
14.4938
12.5121
11.0267
9.94626
9.17634
8.63994
8.27961
8.05497
7.93869
7.91288
7.96668
8.09307
8.28851
8.55278
8.88946
9.30729
9.82309
10.4679
11.2993
12.4255
14.0497
16.6052
21.2623
32.0098
64.4553
188.102
1068.51
1031.16
177.806
62.193
35.0398
27.5168
23.4774
19.9857
16.8333
14.2122
12.1856
10.6926
9.62532
8.87842
8.36766
8.03169
7.82844
7.73075
7.72121
7.7898
7.93065
8.14113
8.42125
8.77444
9.20903
9.74126
10.4013
11.2452
12.381
14.0131
16.5754
21.2381
31.997
64.4545
188.085
1068.75
1031.17
177.709
62.1302
35.2104
27.7589
23.5985
19.9122
16.5984
13.8836
11.8223
10.3323
9.28749
8.57026
8.08948
7.77993
7.59954
7.52212
7.53066
7.61568
7.77197
7.99793
8.29495
8.66666
9.1209
9.6731
10.3523
11.2131
12.3613
14.0015
16.5694
21.2333
31.9961
64.4667
188.098
1069.08
1031.18
177.608
62.0731
35.38
27.9822
23.6841
19.7941
16.3193
13.5176
11.4313
9.95406
8.93953
8.257
7.80713
7.52407
7.36727
7.31095
7.33834
7.44046
7.61262
7.85356
8.16584
8.55425
9.02649
9.59704
10.2936
11.1693
12.3282
13.9752
16.5493
21.2182
31.9934
64.4793
188.095
1069.33
1031.18
177.481
62.0019
35.5455
28.1871
23.7291
19.6212
15.9848
13.1059
11.0076
9.55483
8.5785
7.93484
7.51865
7.26453
7.13344
7.10017
7.14829
7.26947
7.45965
7.71778
8.04752
8.45537
8.94908
9.54223
10.2609
11.1557
12.3276
13.9821
16.5605
21.2281
32.0047
64.5027
188.116
1069.68
1031.19
177.347
61.9369
35.707
28.3648
23.7277
19.3952
15.6025
12.658
10.5607
9.14307
8.21178
7.60803
7.2255
7.00113
6.89647
6.8868
6.95601
7.09637
7.30454
7.57966
7.92567
8.35022
8.86227
9.47495
10.2127
11.124
12.3071
13.9685
16.553
21.2249
32.0129
64.5232
188.116
1069.93
1031.19
177.178
61.8578
35.8611
28.5131
23.6725
19.1053
15.1622
12.1668
10.0855
8.71405
7.83427
7.2744
6.92849
6.73627
6.66012
6.67599
6.76816
6.9297
7.15817
7.45308
7.81863
8.26364
8.7986
9.43605
10.1988
11.1328
12.3331
14.0024
16.5854
21.2498
32.0338
64.5538
188.148
1070.32
1031.2
177.008
61.7918
36.0094
28.6252
23.5614
18.7571
14.6744
11.6445
9.5948
8.27929
7.45245
6.93644
6.62805
6.46864
6.42145
6.46309
6.57812
6.76038
7.00834
7.32173
7.70481
8.16745
8.72173
9.37966
10.1624
11.1141
12.3273
14.0015
16.5817
21.241
32.0267
64.5516
188.132
1070.56
1031.2
176.798
61.7114
36.1462
28.696
23.3837
18.3373
14.1267
11.0809
9.07962
7.83155
7.06279
6.59398
6.32619
6.20211
6.18613
6.25567
6.39569
6.601
6.87131
7.20676
7.61187
8.09773
8.67819
9.36452
10.1759
11.1535
12.3859
14.0672
16.6421
21.2921
32.0845
64.6568
188.268
1071
1031.2
176.605
61.6619
36.2779
28.7219
23.1432
17.8602
13.5397
10.497
8.55687
7.38162
6.67265
6.25173
6.02475
5.93589
5.95077
6.04759
6.2116
6.43853
6.72935
7.08457
7.50899
8.01446
8.61555
9.32364
10.1565
11.153
12.3987
14.0846
16.656
21.2947
32.0522
64.4246
186.722
1071.22
1031.2
176.367
61.5948
36.3923
28.6925
22.82
17.2999
12.8897
9.87727
8.01918
6.92295
6.27689
5.9078
5.72491
5.67417
5.72258
5.84927
6.03978
6.29102
6.60567
6.98479
7.43378
7.96594
8.59654
9.33609
10.2002
11.2235
12.4848
14.1667
16.7108
21.293
31.9316
63.9308
184.146
1071.72
1031.19
176.146
61.5549
36.4923
28.6083
22.433
16.6908
12.2136
9.25059
7.48541
6.4689
5.88509
5.56789
5.42869
5.41535
5.49632
5.65149
5.8666
6.13962
6.47495
6.87408
7.34364
7.89699
8.54925
9.31165
10.1982
11.2407
12.5141
14.196
16.7234
21.2651
31.8174
63.5416
182.451
1071.91
1031.19
175.864
61.4897
36.5654
28.4544
21.9515
15.9968
11.4814
8.5964
6.94194
6.01382
5.49714
5.23517
5.14226
5.16871
5.28495
5.47131
5.71321
6.01056
6.36997
6.79371
7.29086
7.87485
8.55971
9.35689
10.2771
11.3468
12.6338
14.3073
16.7941
21.2609
31.7263
63.3158
181.59
1072.47
1031.18
175.612
61.4616
36.6199
28.242
21.4129
15.2727
10.7493
7.96043
6.41674
5.57311
5.12105
4.91208
4.86337
4.92757
5.07696
5.29266
5.55865
5.87599
6.25423
6.69912
7.21941
7.82473
8.53145
9.35313
10.2986
11.3913
12.6956
14.3766
16.8563
21.3007
31.7382
63.2458
181.146
1072.62
1031.17
175.283
61.3993
36.6401
27.9529
20.7766
14.4679
9.97599
7.31983
5.89388
5.13849
4.75689
4.60463
4.60268
4.7067
4.89132
5.14017
5.43403
5.77388
6.17832
6.65323
7.20403
7.84124
8.58317
9.44343
10.4259
11.5467
12.8612
14.5244
16.9494
21.3098
31.6833
63.1678
180.921
1073.27
1031.16
175.017
61.3871
36.6313
27.6124
20.1213
13.6857
9.24864
6.72947
5.41485
4.73975
4.42128
4.31895
4.35733
4.49486
4.70826
4.98349
5.30126
5.66299
6.08951
6.58448
7.1541
7.80873
8.56936
9.4534
10.463
11.6116
12.9511
14.6329
17.0673
21.4315
31.8137
63.2753
180.885
1073.35
1031.14
174.626
61.3019
36.5627
27.1853
19.3753
12.8437
8.50552
6.1543
4.96376
4.37479
4.12298
4.07274
4.15293
4.32532
4.56922
4.87293
5.21957
5.61012
6.06561
6.59076
7.19298
7.88354
8.68397
9.61064
10.6604
11.837
13.1815
14.8331
17.1943
21.4538
31.7647
63.224
180.813
1074.12
1031.13
174.358
61.2832
36.4402
26.7264
18.6898
12.1308
7.90946
5.68165
4.58483
4.069
3.873
3.86492
3.97739
4.17528
4.44017
4.75904
5.11535
5.51802
5.98956
6.52862
7.1433
7.8455
8.65634
9.59623
10.6678
11.8724
13.2462
14.9231
17.3034
21.5848
31.9266
63.3982
180.937
1074.12
1031.11
173.888
61.1053
36.1771
26.1461
17.9313
11.3979
7.34043
5.26131
4.27272
3.83941
3.70511
3.74429
3.89522
4.12742
4.42274
4.7618
5.12941
5.54282
6.03468
6.61191
7.27364
8.02565
8.88912
9.88257
11.0026
12.24
13.6207
15.2693
17.5817
21.7671
32.0586
63.5225
180.992
1075.01
1031.09
173.567
60.9239
35.7115
25.4958
17.3646
10.9774
7.04044
5.03075
4.09077
3.69836
3.59495
3.65622
3.82321
4.06799
4.36979
4.70666
5.07006
5.47628
5.95435
6.52027
7.181
7.93114
8.78583
9.77091
10.893
12.1401
13.5293
15.1722
17.4586
21.6156
31.8904
63.3891
180.977
1074.93
1031.06
173.052
60.4735
34.8199
24.4084
16.575
10.5581
6.83305
4.90825
4.01223
3.65406
3.57867
3.66473
3.85737
4.12938
4.45363
4.81096
5.20309
5.6432
6.15365
6.75382
7.47148
8.30444
9.24019
10.3033
11.4979
12.8037
14.2343
15.9066
18.221
22.4186
32.8092
64.3491
181.609
1075.95
1031.03
172.355
59.669
33.3032
22.7698
15.6424
10.3835
6.96083
5.03874
4.07081
3.64436
3.51723
3.56548
3.73265
3.98719
4.29688
4.64879
5.04545
5.4916
5.99848
6.58125
7.2716
8.0921
9.02204
10.0622
11.2227
12.4801
13.8298
15.3638
17.4716
21.4175
31.5466
62.9708
180.592
1075.83
1030.99
171.939
58.8974
31.2199
20.0554
13.5781
9.50812
6.96329
5.39943
4.4594
3.92651
3.66893
3.6054
3.69194
3.89865
4.19039
4.55745
5.0009
5.51822
6.1089
6.77717
7.54119
8.44798
9.53462
10.7511
12.0688
13.4902
15.0154
16.746
19.0861
23.32
33.8447
65.508
182.51
1076.88
1030.92
170.197
57.3368
28.9543
17.3363
11.2702
8.14322
6.55778
5.68704
5.12864
4.71051
4.36703
4.08451
3.87808
3.77941
3.82612
4.03109
4.36419
4.82438
5.39969
6.08058
6.86457
7.76721
8.85878
10.1773
11.5997
13.0071
14.3487
15.7336
17.6154
21.3096
31.1636
62.0548
179.291
1076.9
1030.87
171.296
57.6996
27.8175
15.8996
10.3194
7.73749
6.55182
5.97767
5.6609
5.44802
5.27183
5.10114
4.92065
4.72492
4.52162
4.34151
4.24948
4.33401
4.65543
5.20403
5.95714
6.88471
7.9743
9.25706
10.893
12.8787
14.8975
16.8598
19.0717
22.8961
32.9679
64.5188
182.069
1077.74
1030.82
170.181
55.5825
25.1225
13.9911
9.63909
7.90696
7.11326
6.63357
6.26286
5.94446
5.6674
5.43062
5.23209
5.06148
4.90158
4.74708
4.62746
4.59677
4.71318
5.0387
5.60222
6.40488
7.46978
8.86668
10.6336
12.6112
14.6014
16.6029
18.9469
22.8461
32.6281
63.542
181.459
1078.03
1030.81
168.907
52.0025
22.1593
13.3863
10.7473
9.756
9.13845
8.57002
7.98314
7.37805
6.77264
6.18742
5.63926
5.13861
4.68902
4.28965
3.94179
3.65499
3.44751
3.34509
3.38037
3.58922
3.98717
4.57941
5.4662
6.86453
8.88517
11.1559
13.8268
18.7998
31.8987
68.2601
188.56
1078.88
1030.69
151.031
38.1456
17.0949
14.1996
13.7492
13.2582
12.6187
11.9009
11.1472
10.3909
9.66366
8.9947
8.41006
7.93205
7.57955
7.36975
7.32224
7.47821
7.79228
8.29208
9.00573
9.9612
11.1946
12.7548
14.7051
17.1431
20.2109
24.2142
29.8467
38.6932
54.5454
89.0415
201.471
1080.26
526.843
24.1462
24.3921
24.4569
24.4845
24.5009
24.5092
24.5112
24.5084
24.5021
24.4932
24.4821
24.4697
24.4561
24.4419
24.4272
24.4123
24.3973
24.3822
24.3666
24.3505
24.3337
24.3158
24.2965
24.2752
24.2516
24.2255
24.1971
24.1683
24.1435
24.1295
24.1332
24.1566
24.1968
555.948
526.413
22.9932
22.996
22.9991
23.0025
23.0063
23.0105
23.0153
23.0204
23.0259
23.0316
23.0375
23.0432
23.0489
23.0542
23.0593
23.0639
23.0681
23.0718
23.0749
23.0774
23.0792
23.0802
23.0804
23.0797
23.0779
23.075
23.0711
23.0669
23.0636
23.0641
23.0733
23.0971
23.1377
531.549
1029.84
173.006
63.3883
33.8886
22.4436
16.7833
13.452
11.2392
9.64849
8.44777
7.51573
6.78288
6.20665
5.75973
5.42396
5.18698
5.0401
4.97835
4.99395
5.08154
5.23898
5.46264
5.74765
6.08749
6.47328
6.89307
7.33138
7.77062
8.20808
8.79436
10.5407
17.6996
45.1111
159.362
1040.49
1029.84
175.237
65.9694
36.1453
24.1752
18.0156
14.3179
11.8931
10.2166
9.01049
8.11071
7.4154
6.86032
6.40464
6.02201
5.69505
5.41309
5.17381
4.97395
4.81104
4.68527
4.59984
4.55923
4.56881
4.6338
4.75744
4.93865
5.17683
5.52917
6.39084
9.37624
19.3269
50.4012
166.612
1041.07
1029.86
174.997
64.8057
33.871
21.011
14.388
10.6434
8.44395
7.09817
6.21261
5.57305
5.07327
4.66551
4.33005
4.05866
3.8465
3.68857
3.57886
3.5108
3.47697
3.47042
3.48556
3.51905
3.57072
3.64483
3.75331
3.92713
4.25402
4.98966
6.83643
11.5369
23.3224
55.2538
170.65
1042.05
1029.87
172.71
61.6532
30.6436
18.3315
12.6327
9.83229
8.34304
7.42218
6.74493
6.17979
5.67658
5.21901
4.80494
4.43749
4.12089
3.85844
3.65115
3.49717
3.39254
3.33167
3.30803
3.31567
3.35174
3.42121
3.5461
3.78574
4.28281
5.36309
7.7351
12.9209
24.7211
56.0595
170.747
1042.92
1029.88
172.588
61.5722
30.7631
18.6556
13.0621
10.2718
8.755
7.81129
7.12835
6.56865
6.07032
5.61021
5.18383
4.79175
4.43619
4.1209
3.85081
3.62909
3.45645
3.33398
3.2612
3.23816
3.26839
3.36478
3.56131
3.93571
4.65222
6.03821
8.72346
14.0414
25.6444
56.6298
171.143
1043.7
1029.88
171.913
60.7245
29.9148
17.9471
12.5674
9.95397
8.53001
7.61908
6.94452
6.38902
5.8999
5.45726
5.05426
4.68707
4.35423
4.05655
3.79646
3.57683
3.40089
3.27278
3.19759
3.183
3.24245
3.40124
3.70907
4.25891
5.21217
6.84936
9.68639
14.9097
26.155
56.805
171.329
1044.45
1029.89
172.017
60.9559
30.2429
18.3221
12.9504
10.3313
8.90302
7.99175
7.31788
6.76058
6.26431
5.80791
5.387
4.99962
4.64345
4.31874
4.02791
3.77407
3.56139
3.39637
3.28766
3.24823
3.29901
3.47575
3.84251
4.51119
5.64953
7.49377
10.4489
15.5649
26.4737
56.8611
171.51
1045.07
1029.89
172.184
61.0838
30.2655
18.3014
12.9434
10.3286
8.87678
7.93362
7.2346
6.66431
6.1693
5.72738
5.32936
4.96812
4.63819
4.33736
4.06617
3.82683
3.62372
3.46435
3.35975
3.32691
3.393
3.60308
4.03567
4.82224
6.13687
8.17529
11.2425
16.2806
26.9505
57.2096
171.998
1045.68
1029.9
172.153
61.0493
30.2305
18.3027
12.9991
10.427
9.00044
8.07051
7.37782
6.80963
6.3137
5.86882
5.46789
5.10523
4.77528
4.47558
4.2063
3.96881
3.76678
3.60813
3.5047
3.47535
3.55065
3.78158
4.25812
5.12942
6.57785
8.77295
11.9346
16.8936
27.3095
57.3982
172.302
1046.22
1029.91
172.385
61.2712
30.386
18.435
13.1339
10.5461
9.08526
8.12018
7.40071
6.8164
6.31489
5.87349
5.4819
5.13173
4.81622
4.53212
4.27922
4.05834
3.87282
3.73107
3.64584
3.63764
3.73998
4.00869
4.54409
5.50857
7.08261
9.40797
12.6356
17.5186
27.7406
57.7452
172.772
1046.74
1029.91
172.374
61.2139
30.2868
18.3616
13.1181
10.5712
9.13061
8.17618
7.46341
6.88376
6.38598
5.94759
5.55957
5.21465
4.9061
4.63072
4.38867
4.1804
4.00881
3.88297
3.81631
3.83066
3.96188
4.27059
4.86525
5.91372
7.59319
10.021
13.2888
18.0798
28.0938
57.9905
173.121
1047.22
1029.92
172.533
61.348
30.3785
18.4608
13.237
10.685
9.22267
8.24502
7.51475
6.92525
6.42484
5.98927
5.60741
5.27107
4.97321
4.7105
4.48341
4.29213
4.13926
4.03475
3.99295
4.03716
4.20574
4.56447
5.22861
6.36536
8.14253
10.6499
13.9296
18.6191
28.4536
58.2904
173.53
1047.69
1029.93
172.577
61.3366
30.3171
18.4231
13.2477
10.722
9.26818
8.29415
7.56702
6.98105
6.48496
6.05435
5.67789
5.34834
5.05935
4.80764
4.59429
4.41925
4.28465
4.20143
4.18487
4.25967
4.46639
4.87575
5.60839
6.82765
8.6894
11.257
14.5299
19.1093
28.7643
58.5387
173.879
1048.13
1029.94
172.693
61.4028
30.3458
18.4745
13.3287
10.8065
9.34173
8.35527
7.61963
7.03046
6.53574
6.10979
5.74006
5.41891
5.14014
4.90079
4.7026
4.54543
4.43094
4.37115
4.38243
4.49106
4.74005
5.20458
6.00804
7.3074
9.24359
11.8532
15.1009
19.5671
29.0646
58.8075
174.248
1048.55
1029.94
172.779
61.4194
30.3159
18.4729
13.3685
10.8625
9.39966
8.41285
7.67815
7.09165
6.60122
6.18064
5.81685
5.50284
5.23309
5.00501
4.82115
4.68126
4.58636
4.54951
4.58817
4.73018
5.02136
5.54037
6.40964
7.7797
9.77649
12.4125
15.6243
19.9796
29.3305
59.0473
174.582
1048.96
1029.95
172.9
61.4594
30.3172
18.5036
13.4308
10.9306
9.46206
8.46894
7.73121
7.14568
6.65943
6.24517
5.8889
5.58344
5.32377
5.108
4.93937
4.81769
4.74348
4.73062
4.79768
4.974
5.30827
5.88194
6.81466
8.24871
10.2939
12.9408
16.1056
20.3543
29.5809
59.294
174.919
1049.34
1029.96
173.039
61.4909
30.3045
18.5239
13.4874
10.9977
9.52846
8.53367
7.79634
7.21357
6.732
6.32369
5.97405
5.67561
5.42435
5.21956
5.06503
4.96061
4.90636
4.91675
5.01136
5.22085
5.59646
6.22129
7.21081
8.69819
10.778
13.4224
16.5346
20.6847
29.8021
59.5172
175.227
1049.71
1029.97
173.226
61.5385
30.3077
18.5577
13.5491
11.0633
9.58974
8.59112
7.85329
7.27367
6.79802
6.39738
6.05615
5.76627
5.52453
5.33145
5.19127
5.1042
5.07016
5.10404
5.22639
5.46951
5.88638
6.55924
7.59946
9.13067
11.2325
13.8617
16.9157
20.9764
30.0065
59.7399
175.529
1050.06
1029.98
173.495
61.603
30.3173
18.5978
13.6176
11.137
9.66069
8.65986
7.92255
7.34634
6.87638
6.48292
6.14957
5.86784
5.63511
5.45338
5.32628
5.2541
5.23879
5.29469
5.44314
5.7179
6.17317
6.88909
7.97202
9.53589
11.647
14.2505
17.2443
21.2262
30.184
59.9394
175.801
1050.4
1029.99
173.902
61.7081
30.3504
18.6509
13.6882
11.2064
9.72497
8.7211
7.98448
7.41257
6.94958
6.56491
6.24138
5.96995
5.74817
5.57876
5.46442
5.40622
5.40903
5.4866
5.66079
5.96633
6.4574
7.21168
8.33007
9.91674
12.0257
14.594
17.5258
21.44
30.3452
60.1337
176.064
1050.72
1029.99
174.574
61.8803
30.4099
18.7174
13.767
11.2832
9.79734
8.79141
8.05599
7.48828
7.03182
6.65543
6.3414
6.08043
5.87044
5.71307
5.61028
5.56537
5.58416
5.68138
5.87948
6.21343
6.73609
7.5225
8.66782
10.2668
12.3629
14.8886
17.7591
21.6166
30.4826
60.3054
176.299
1051.03
1030
175.688
62.1642
30.5095
18.796
13.8443
11.3536
9.86261
8.8552
8.12192
7.55943
7.11048
6.74339
6.44004
6.19099
5.9936
5.8484
5.75771
5.72626
5.76088
5.87737
6.09852
6.4586
7.00915
7.82222
8.98703
10.5892
12.6631
15.1396
17.9497
21.7615
30.6047
60.469
176.523
1051.32
1030.01
177.542
62.5905
30.6359
18.8761
13.9203
11.4252
9.93179
8.92488
8.19462
7.63734
7.19549
6.83704
6.54362
6.30596
6.12076
5.98752
5.90925
5.89147
5.94178
6.076
6.31744
6.70018
7.27413
8.10804
9.28505
10.8822
12.9259
15.3484
18.1001
21.8764
30.7088
60.6158
176.727
1051.6
1030.02
179.873
63.0374
30.7341
18.9343
13.9818
11.4871
9.99428
8.98985
8.26377
7.71258
7.27874
6.92978
6.64707
6.4211
6.24802
6.12708
6.06155
6.05754
6.12322
6.2742
6.53421
6.93715
7.53102
8.381
9.56413
11.1493
13.1564
15.5211
18.2163
21.9662
30.8005
60.7544
176.918
1051.87
1030.03
180.805
63.1472
30.7265
18.9614
14.0365
11.5505
10.0611
9.0601
8.33837
7.79308
7.36685
7.02688
6.75441
6.53953
6.37784
6.26875
6.21554
6.22478
6.30504
6.47191
6.74871
7.16895
7.77903
8.64026
9.82372
11.3908
13.356
15.6605
18.3017
22.0329
30.8783
60.8792
177.093
1052.13
1030.04
180.835
63.1194
30.7072
18.9942
14.0939
11.6136
10.1265
9.12866
8.41147
7.87243
7.45417
7.12348
6.86141
6.65774
6.50749
6.41025
6.36922
6.39137
6.48561
6.66736
6.95924
7.39441
8.0177
8.88626
10.0654
11.6094
13.529
15.772
18.3617
22.0809
30.9465
60.9969
177.259
1052.39
1030.05
180.899
63.1156
30.6966
19.0288
14.1517
11.6782
10.1945
9.20049
8.4882
7.95549
7.54504
7.22334
6.97114
6.77791
6.63855
6.55259
6.52314
6.55747
6.66473
6.86009
7.1657
7.61358
8.24667
9.11855
10.2888
11.8058
13.6769
15.8581
18.3993
22.1122
31.0041
61.1035
177.411
1052.63
1030.06
180.958
63.1055
30.6846
19.0637
14.209
11.7418
10.2615
9.27146
8.56422
8.03802
7.63555
7.32295
7.08064
6.89776
6.76916
6.69423
6.67601
6.72198
6.84145
7.04929
7.36708
7.82544
8.46547
9.33738
10.4953
11.9819
13.8028
15.9229
18.4187
22.1301
31.0544
61.2039
177.555
1052.87
1030.07
181.015
63.0932
30.6733
19.0999
14.2677
11.8074
10.3309
9.3451
8.64301
8.12322
7.72843
7.42452
7.19163
7.01862
6.90024
6.83577
6.82811
6.88491
7.01554
7.2345
7.56271
8.02923
8.67337
9.5421
10.6844
12.1382
13.9079
15.9683
18.4219
22.136
31.097
61.2957
177.691
1053.11
1030.08
181.071
63.08
30.6639
19.1372
14.326
11.8722
10.3997
9.41829
8.72153
8.20829
7.82125
7.52597
7.30236
7.13902
7.03058
6.97617
6.97856
7.04551
7.18637
7.41522
7.75224
8.22521
8.87108
9.73364
10.8576
12.2765
13.9946
15.997
18.4118
22.1325
31.1341
61.3823
177.822
1053.33
1030.09
181.125
63.0649
30.6553
19.1757
14.3857
11.9388
10.4704
9.49351
8.80207
8.29526
7.9157
7.6287
7.41389
7.25973
7.16067
7.11572
7.12747
7.20374
7.35379
7.59121
7.9354
8.41281
9.05796
9.91169
11.0148
12.3972
14.0638
16.0101
18.3896
22.12
31.1653
61.4621
177.949
1053.56
1030.1
181.178
63.0492
30.6485
19.2149
14.4447
12.0046
10.5405
9.56829
8.88233
8.38203
8.00996
7.73112
7.52495
7.37968
7.28965
7.25369
7.27421
7.35905
7.51733
7.76209
8.11192
8.59189
9.23406
10.0766
11.157
12.5019
14.1173
16.0101
18.3574
22.1004
31.1921
61.5377
178.079
1053.77
1030.11
181.229
63.0322
30.6425
19.2552
14.5047
12.0715
10.6118
9.64429
8.96378
8.46987
8.10505
7.83408
7.63614
7.49933
7.41779
7.3902
7.4188
7.51138
7.67685
7.92769
8.28161
8.76232
9.39967
10.2291
11.2848
12.5912
14.1562
15.9976
18.3158
22.0737
31.2138
61.608
178.216
1053.98
1030.12
181.281
63.016
30.6385
19.2958
14.564
12.1375
10.6824
9.71965
9.04471
8.55726
8.19967
7.93644
7.74653
7.61785
7.54439
7.52468
7.56074
7.66032
7.83205
8.08784
8.44449
8.92434
9.55525
10.3698
11.3994
12.6668
14.182
15.9744
18.2662
22.0411
31.2318
61.6761
178.373
1054.19
1030.13
181.331
62.9994
30.6363
19.3377
14.624
12.2042
10.7535
9.79552
9.12608
8.64497
8.29441
8.03865
7.85643
7.73545
7.66957
7.65713
7.7
7.80579
7.98286
8.24248
8.60057
9.07809
9.701
10.4992
11.5016
12.7297
14.1964
15.942
18.2098
22.003
31.2458
61.7434
178.569
1054.38
1030.14
181.381
62.983
30.6357
19.3799
14.6834
12.2699
10.8237
9.87051
9.20661
8.73185
8.38826
8.13984
7.96508
7.85149
7.79278
7.78713
7.83621
7.94752
8.12908
8.39155
8.74991
9.22382
9.83738
10.618
11.5925
12.7813
14.2005
15.9017
18.1475
21.96
31.2574
61.8165
178.846
1054.58
1030.15
181.429
62.9663
30.6365
19.4228
14.7429
12.3356
10.8939
9.94534
9.28689
8.81835
8.48155
8.24022
8.0726
7.96602
7.91401
7.91462
7.96933
8.08548
8.27075
8.53516
8.89279
9.362
9.96512
10.7272
11.6733
12.8233
14.1965
15.8554
18.0813
21.9141
31.2691
61.9069
179.282
1054.77
1030.16
181.477
62.9506
30.6393
19.466
14.8018
12.4006
10.9631
10.0192
9.36614
8.90374
8.57359
8.33915
8.17841
8.07852
8.03283
8.03924
8.09904
8.21943
8.40771
8.67326
9.02929
9.49288
10.0847
10.8279
11.7456
12.8576
14.1863
15.8047
18.0116
21.8664
31.2859
62.0383
180.041
1054.95
1030.17
181.526
62.9365
30.6442
19.5101
14.8609
12.4654
11.032
10.0926
9.4448
8.98836
8.66459
8.43675
8.28258
8.18899
8.1492
8.16095
8.22534
8.34941
8.54009
8.80612
9.15984
9.61714
10.1972
10.9211
11.8103
12.8842
14.169
15.7491
17.9427
21.824
31.3159
62.2578
181.441
1055.13
1030.18
181.575
62.9232
30.6506
19.5542
14.9192
12.5292
11.0998
10.1648
9.52226
9.07164
8.75407
8.53258
8.38466
8.29705
8.26278
8.27945
8.34799
8.47526
8.66781
8.93378
9.28465
9.73517
10.3029
11.0073
11.8681
12.9044
14.1469
15.6923
17.8774
21.7918
31.3848
62.6605
183.743
1055.31
1030.19
181.624
62.9108
30.6583
19.5985
14.9771
12.5924
11.167
10.2363
9.59881
9.15381
8.84216
8.62668
8.48467
8.40265
8.37351
8.39468
8.46692
8.59694
8.79089
9.05631
9.40386
9.84716
10.4023
11.0871
11.9198
12.92
14.1231
15.6388
17.8219
21.7812
31.5018
63.1398
185.836
1055.49
1030.2
181.673
62.8991
30.6669
19.6424
15.034
12.6546
11.2331
10.3066
9.67402
9.23448
8.92849
8.71872
8.58226
8.50546
8.48106
8.50635
8.58191
8.71427
8.90921
9.17369
9.51757
9.95336
10.4958
11.1612
11.9667
12.9326
14.0998
15.5898
17.7746
21.7771
31.5947
63.4036
186.528
1055.67
1030.21
181.723
62.8881
30.6765
19.6861
15.0904
12.716
11.2983
10.3759
9.74814
9.31382
9.01318
8.80874
8.67742
8.60542
8.58532
8.6143
8.69277
8.82709
9.02267
9.28589
9.62585
10.054
10.584
11.2305
12.0099
12.9438
14.078
15.5451
17.7309
21.7667
31.6425
63.5025
186.66
1055.85
1030.22
181.772
62.8772
30.6864
19.729
15.1455
12.7762
11.3623
10.4439
9.82084
9.39155
9.09598
8.89653
8.76995
8.7023
8.68607
8.71829
8.79926
8.93515
9.13101
9.3927
9.72859
10.1492
10.6669
11.2954
12.0504
12.9545
14.0584
15.5041
17.6888
21.7489
31.6614
63.5406
186.721
1056.03
1030.23
181.82
62.866
30.6963
19.7711
15.1995
12.8353
11.4251
10.5107
9.89222
9.46774
9.17694
8.98209
8.85981
8.79607
8.78323
8.81825
8.90126
9.03832
9.2341
9.494
9.82571
10.2389
10.7449
11.3564
12.0885
12.9652
14.0414
15.467
17.649
21.7274
31.6664
63.5593
186.774
1056.21
1030.24
181.869
62.8549
30.7064
19.8123
15.2524
12.8931
11.4867
10.5761
9.96203
9.54215
9.25583
9.06523
8.94686
8.88657
8.87667
8.91402
8.99866
9.13647
9.33182
9.58967
9.91712
10.3231
10.818
11.4136
12.1247
12.9762
14.0272
15.4342
17.6123
21.7051
31.6656
63.5718
186.825
1056.4
1030.25
181.916
62.8434
30.7165
19.8528
15.3041
12.9497
11.5469
10.6401
10.0302
9.61474
9.33263
9.14594
9.03107
8.9738
8.96639
9.00563
9.09145
9.22961
9.42419
9.67974
10.0029
10.4018
10.8861
11.4669
12.1588
12.9877
14.0159
15.4058
17.5796
21.6843
31.6632
63.5828
186.877
1056.59
1030.26
181.962
62.8314
30.7266
19.8924
15.3546
13.005
11.6057
10.7025
10.0967
9.68541
9.40723
9.22414
9.11242
9.05778
9.05245
9.09315
9.17974
9.31787
9.51134
9.76435
10.0831
10.4751
10.9495
11.5167
12.191
12.9996
14.0075
15.3821
17.5517
21.6667
31.6621
63.5953
186.932
1056.78
1030.27
182.006
62.819
30.7371
19.9317
15.4045
13.0594
11.6635
10.7637
10.1617
9.75427
9.47975
9.29992
9.19099
9.1386
9.13494
9.1767
9.26368
9.40142
9.59345
9.8437
10.1579
10.5433
11.0082
11.5628
12.2212
13.0115
14.0015
15.3626
17.5284
21.6529
31.6634
63.6104
186.988
1056.97
1030.28
182.049
62.8072
30.7483
19.9708
15.4538
13.113
11.7202
10.8236
10.2252
9.82136
9.55019
9.3733
9.2668
9.2163
9.21393
9.25637
9.34339
9.48039
9.6707
9.91798
10.2276
10.6065
11.0625
11.6052
12.2492
13.023
13.9969
15.3468
17.5105
21.6431
31.6678
63.6282
187.047
1057.16
1030.29
182.091
62.7961
30.7605
20.01
15.5027
13.166
11.7761
10.8824
10.2872
9.88679
9.61867
9.4444
9.33999
9.29101
9.28957
9.33233
9.41903
9.55496
9.74326
9.98736
10.2924
10.6648
11.1121
11.6438
12.2742
13.033
13.9929
15.3342
17.497
21.6366
31.6745
63.6478
187.106
1057.35
1030.3
182.134
62.7866
30.774
20.0495
15.5514
13.2184
11.8311
10.9401
10.348
9.95063
9.68527
9.51331
9.41067
9.36287
9.36202
9.40477
9.49082
9.62538
9.81139
10.0521
10.3524
10.7184
11.1574
11.6785
12.2963
13.0414
13.9895
15.3242
17.4872
21.6333
31.6838
63.6693
187.165
1057.54
1030.31
182.176
62.7784
30.7887
20.0892
15.5998
13.2704
11.8855
10.9968
10.4075
10.0129
9.75006
9.58012
9.47893
9.432
9.43142
9.47384
9.55894
9.69183
9.8753
10.1124
10.4078
10.7674
11.1983
11.7092
12.3151
13.048
13.9859
15.3156
17.4795
21.6321
31.6943
63.691
187.222
1057.72
1030.32
182.218
62.7707
30.804
20.1288
15.6478
13.3216
11.939
11.0526
10.4658
10.0738
9.81311
9.64491
9.54489
9.49852
9.49793
9.53972
9.62358
9.75455
9.93522
10.1685
10.4589
10.8121
11.2348
11.736
12.3307
13.0524
13.9816
15.3075
17.4731
21.6323
31.7057
63.7125
187.277
1057.91
1030.33
182.259
62.7634
30.8198
20.1682
15.6953
13.3723
11.9917
11.1074
10.523
10.1332
9.87455
9.70781
9.60868
9.5626
9.5617
9.60261
9.68498
9.81377
9.99142
10.2207
10.506
10.8527
11.2675
11.7592
12.3434
13.0549
13.9764
15.2994
17.4675
21.6335
31.7177
63.7339
187.331
1058.09
1030.33
182.3
62.7564
30.8361
20.2076
15.7425
13.4226
12.0438
11.1613
10.5791
10.1914
9.93446
9.76894
9.67043
9.62437
9.62291
9.66266
9.7433
9.86968
10.0441
10.2692
10.5493
10.8895
11.2964
11.7789
12.3532
13.0554
13.9701
15.2911
17.4621
21.635
31.7294
63.7531
187.379
1058.27
1030.34
182.34
62.7506
30.8533
20.2472
15.7897
13.4725
12.0955
11.2146
10.6343
10.2485
9.993
9.82843
9.73027
9.68397
9.68168
9.72003
9.7987
9.92246
10.0935
10.3143
10.589
10.9226
11.3217
11.7954
12.3603
13.0537
13.9624
15.2819
17.4562
21.636
31.7399
63.7695
187.424
1058.44
1030.35
182.38
62.7454
30.871
20.2867
15.8366
13.5221
12.1467
11.2673
10.6887
10.3045
10.0503
9.88642
9.78836
9.74156
9.73818
9.77489
9.85137
9.9723
10.1397
10.3561
10.6253
10.9525
11.344
11.809
12.3649
13.0503
13.9536
15.2721
17.4501
21.637
31.7501
63.7847
187.466
1058.61
1030.36
182.419
62.7409
30.8891
20.3263
15.8833
13.5714
12.1975
11.3195
10.7424
10.3597
10.1065
9.94307
9.84486
9.7973
9.79259
9.82741
9.90146
10.0194
10.183
10.3947
10.6585
10.9792
11.3632
11.82
12.3675
13.0454
13.9439
15.2619
17.4438
21.6379
31.7599
63.7986
187.505
1058.78
1030.37
182.457
62.736
30.9072
20.3655
15.9297
13.6205
12.248
11.3713
10.7956
10.4141
10.1617
9.99851
9.8999
9.85132
9.84502
9.87771
9.94909
10.0637
10.2233
10.4303
10.6885
11.0027
11.3794
11.8283
12.3679
13.0391
13.9335
15.2514
17.4375
21.6386
31.7691
63.8109
187.542
1058.95
1030.38
182.495
62.7325
30.9263
20.4052
15.9764
13.6697
12.2985
11.4229
10.8484
10.468
10.2162
10.053
9.95371
9.90387
9.89574
9.92604
9.99451
10.1056
10.261
10.4631
10.7155
11.0232
11.3927
11.834
12.3662
13.0314
13.9222
15.2406
17.4312
21.6394
31.7782
63.8226
187.577
1059.11
1030.39
182.535
62.7316
30.9471
20.4456
16.0234
13.719
12.349
11.4745
10.901
10.5214
10.2699
10.1065
10.0064
9.95505
9.94485
9.97255
10.0379
10.1453
10.2962
10.4931
10.7397
11.0409
11.4033
11.8372
12.3625
13.0221
13.9101
15.2294
17.4249
21.6406
31.7873
63.8334
187.609
1059.27
1030.4
182.575
62.7316
30.9684
20.4861
16.0705
13.7684
12.3997
11.5262
10.9536
10.5745
10.323
10.1591
10.0579
10.005
9.9925
10.0174
10.0794
10.1828
10.3292
10.5208
10.7614
11.056
11.4113
11.838
12.3566
13.0111
13.8968
15.2176
17.4185
21.6419
31.7965
63.8436
187.64
1059.43
1030.41
182.615
62.7328
30.9904
20.5268
16.1177
13.818
12.4505
11.5781
11.0062
10.6274
10.3758
10.2112
10.1087
10.0538
10.0389
10.0608
10.1193
10.2186
10.3602
10.5464
10.7809
11.0688
11.4171
11.8367
12.3489
12.9987
13.8824
15.2051
17.4119
21.6434
31.8063
63.8541
187.669
1059.58
1030.42
182.655
62.7356
31.0133
20.5679
16.1652
13.8678
12.5016
11.6302
11.059
10.6802
10.4283
10.2627
10.1587
10.1017
10.0842
10.1029
10.1578
10.2529
10.3895
10.5701
10.7985
11.0796
11.4208
11.8335
12.3395
12.9849
13.867
15.192
17.405
21.645
31.8162
63.8639
187.696
1059.73
1030.43
182.696
62.7392
31.0366
20.6092
16.2129
13.9179
12.5529
11.6826
11.1119
10.7331
10.4806
10.3138
10.2081
10.1488
10.1285
10.1439
10.1949
10.2856
10.4173
10.5922
10.8142
11.0886
11.4227
11.8284
12.3284
12.9695
13.8502
15.1779
17.3975
21.6463
31.8259
63.8728
187.721
1059.88
1030.44
182.738
62.7454
31.0617
20.6516
16.2615
13.9688
12.6049
11.7354
11.1652
10.7862
10.5328
10.3647
10.257
10.1953
10.172
10.1839
10.231
10.3172
10.4437
10.6128
10.8284
11.0959
11.4229
11.8217
12.3156
12.9526
13.8322
15.1626
17.3891
21.6469
31.8349
63.8805
187.743
1060.02
1030.45
182.783
62.7543
31.0885
20.695
16.3108
14.0202
12.6573
11.7887
11.2187
10.8394
10.5851
10.4154
10.3055
10.2411
10.2147
10.2231
10.2661
10.3477
10.4689
10.6321
10.8412
11.1017
11.4215
11.8133
12.3012
12.9343
13.8128
15.1462
17.38
21.6472
31.844
63.8881
187.764
1060.16
1030.46
182.827
62.7639
31.1158
20.7389
16.3606
14.0721
12.7102
11.8422
11.2725
10.8927
10.6372
10.4658
10.3536
10.2865
10.2568
10.2615
10.3003
10.3772
10.4931
10.6503
10.8528
11.1062
11.4187
11.8035
12.2854
12.9145
13.792
15.1286
17.3698
21.6466
31.8523
63.8944
187.781
1060.3
1030.47
182.872
62.7745
31.144
20.7836
16.4113
14.1248
12.7637
11.8963
11.3267
10.9463
10.6895
10.5161
10.4015
10.3314
10.2983
10.2992
10.3339
10.406
10.5165
10.6676
10.8634
11.1096
11.4147
11.7922
12.2679
12.8928
13.7694
15.1093
17.3579
21.6444
31.8591
63.8986
187.795
1060.43
1030.47
182.917
62.7866
31.1735
20.8295
16.463
14.1784
12.8181
11.9511
11.3814
11.0002
10.7419
10.5664
10.4491
10.3759
10.3394
10.3365
10.3669
10.4342
10.5392
10.6842
10.8733
11.1122
11.4095
11.7795
12.2487
12.8695
13.7458
15.0894
17.3448
21.6413
31.8655
63.9025
187.807
1060.55
1030.48
182.963
62.8008
31.2047
20.8768
16.5161
14.2333
12.8734
12.0068
11.4368
11.0546
10.7946
10.6168
10.4967
10.4203
10.3802
10.3733
10.3994
10.462
10.5615
10.7004
10.8826
11.1139
11.4033
11.7655
12.2281
12.8448
13.7211
15.0685
17.3303
21.6366
31.8707
63.9047
187.816
1060.68
1030.49
183.012
62.8189
31.2384
20.9259
16.5705
14.2893
12.9298
12.0633
11.4929
11.1095
10.8476
10.6673
10.5442
10.4644
10.4206
10.4098
10.4316
10.4893
10.5834
10.716
10.8913
11.1149
11.3962
11.7504
12.2063
12.8189
13.695
15.0459
17.3135
21.6288
31.872
63.9011
187.817
1060.79
1030.5
183.063
62.8386
31.273
20.9757
16.6258
14.3461
12.9869
12.1205
11.5496
11.1648
10.9008
10.7177
10.5914
10.5081
10.4606
10.4457
10.4631
10.516
10.6047
10.7312
10.8994
11.1154
11.3884
11.7346
12.1836
12.792
13.6675
15.0213
17.294
21.6176
31.8689
63.8915
187.811
1060.91
1030.51
183.117
62.8609
31.3091
21.0266
16.6821
14.4039
13.045
12.1785
11.6069
11.2205
10.9542
10.7681
10.6384
10.5514
10.5
10.481
10.4942
10.5423
10.6256
10.746
10.9074
11.1157
11.3807
11.7188
12.1609
12.7648
13.6393
14.9951
17.272
21.6027
31.8613
63.8764
187.801
1061.02
1030.52
183.174
62.8858
31.3469
21.0789
16.7397
14.4629
13.104
12.2373
11.6649
11.2768
11.0078
10.8185
10.6852
10.5943
10.539
10.5159
10.5247
10.5682
10.6463
10.7608
10.9156
11.1166
11.3736
11.7039
12.1392
12.7383
13.6111
14.9683
17.2483
21.5853
31.8507
63.8579
187.788
1061.13
1030.53
183.234
62.9131
31.3864
21.1326
16.7986
14.5231
13.1642
12.2972
11.7237
11.3336
11.0618
10.869
10.7318
10.6369
10.5774
10.5502
10.5548
10.5937
10.6668
10.7758
10.9243
11.1183
11.3678
11.6906
12.1191
12.7133
13.5841
14.9419
17.2243
21.5667
31.8381
63.8374
187.774
1061.24
1030.54
183.297
62.9441
31.4282
21.1881
16.8592
14.5848
13.2257
12.3582
11.7836
11.3912
11.1162
10.9196
10.7782
10.6791
10.6154
10.5839
10.5843
10.6189
10.6872
10.7909
10.9335
11.121
11.3634
11.679
12.1011
12.6903
13.5587
14.9165
17.2003
21.5469
31.8233
63.8142
187.759
1061.34
1030.55
183.364
62.9773
31.4717
21.2455
16.9216
14.6482
13.2888
12.4206
11.8445
11.4495
11.1711
10.9703
10.8245
10.7209
10.6527
10.617
10.6131
10.6435
10.7073
10.8061
10.9432
11.1246
11.3605
11.6695
12.0853
12.6698
13.5355
14.8929
17.1775
21.5274
31.808
63.7907
187.744
1061.45
1030.56
183.434
63.0134
31.5176
21.3052
16.9862
14.7137
13.3537
12.4846
11.9067
11.5089
11.2265
11.0212
10.8705
10.7621
10.6894
10.6493
10.6412
10.6674
10.727
10.8212
10.9533
11.1291
11.359
11.6618
12.072
12.6518
13.5148
14.8714
17.1563
21.5089
31.7929
63.7678
187.732
1061.57
1030.57
183.507
63.0527
31.566
21.3673
17.0532
14.7815
13.4207
12.5503
11.9704
11.5693
11.2826
11.0723
10.9164
10.8029
10.7253
10.6807
10.6684
10.6906
10.746
10.8359
10.9634
11.1343
11.3588
11.656
12.061
12.6365
13.497
14.8526
17.1374
21.492
31.7789
63.7466
187.722
1061.68
1030.58
183.585
63.0942
31.6162
21.4316
17.1227
14.8516
13.4898
12.6181
12.0358
11.6309
11.3394
11.1235
10.962
10.843
10.7603
10.711
10.6945
10.7126
10.7642
10.8501
10.9734
11.1398
11.3595
11.6518
12.0521
12.6239
13.4819
14.8365
17.1211
21.4773
31.7665
63.7275
187.715
1061.8
1030.59
183.665
63.1374
31.6682
21.4981
17.1946
14.9243
13.5614
12.688
12.103
11.6939
11.3968
11.1749
11.0072
10.8823
10.7942
10.7401
10.7192
10.7334
10.7812
10.8635
10.983
11.1453
11.3609
11.6489
12.0452
12.6136
13.4695
14.8233
17.1075
21.4651
31.7563
63.7117
187.712
1061.92
1030.6
183.748
63.1819
31.7214
21.5666
17.269
14.9997
13.6357
12.7604
12.1721
11.758
11.4549
11.2262
11.0518
10.9206
10.8268
10.7676
10.7423
10.7526
10.7968
10.8756
10.9917
11.1505
11.3624
11.6468
12.0397
12.6052
13.4593
14.8124
17.0964
21.4551
31.7481
63.6988
187.714
1062.04
1030.61
183.832
63.2266
31.7753
21.6366
17.3455
15.0778
13.7133
12.8356
12.2431
11.8231
11.513
11.277
11.0954
10.9575
10.8577
10.7933
10.7635
10.77
10.8107
10.8863
10.9993
11.1551
11.3639
11.6453
12.0354
12.5988
13.4516
14.8044
17.0885
21.4485
31.7438
63.6916
187.721
1062.17
1030.62
183.919
63.2726
31.8312
21.7093
17.4251
15.1591
13.7944
12.9139
12.316
11.8891
11.5711
11.3271
11.1378
10.9928
10.8868
10.817
10.7828
10.7853
10.8227
10.8953
11.0056
11.1588
11.365
11.644
12.032
12.5937
13.4459
14.7989
17.0836
21.4455
31.7436
63.69
187.733
1062.3
1030.63
184.005
63.3178
31.8884
21.7848
17.5078
15.2434
13.8781
12.9945
12.3908
11.9563
11.6297
11.3769
11.1792
11.0268
10.9141
10.8387
10.7998
10.7985
10.8326
10.9024
11.0103
11.1612
11.3654
11.6425
12.0289
12.5897
13.4416
14.7951
17.0807
21.4445
31.7456
63.6914
187.747
1062.44
1030.64
184.092
63.3644
31.948
21.8636
17.5941
15.3313
13.9653
13.0781
12.4679
12.025
11.689
11.4267
11.22
11.0594
10.9397
10.8584
10.8146
10.8093
10.8401
10.9073
11.0129
11.162
11.3646
11.6403
12.0257
12.5861
13.4384
14.7927
17.0795
21.4456
31.7498
63.6958
187.764
1062.57
1030.65
184.184
63.414
32.0112
21.9466
17.6847
15.4232
14.0561
13.1648
12.5474
12.0953
11.749
11.4763
11.2598
11.0905
10.9634
10.8757
10.8268
10.8175
10.845
10.9096
11.0133
11.1608
11.3621
11.6369
12.0219
12.5825
13.4357
14.791
17.0794
21.4479
31.7554
63.7022
187.781
1062.71
1030.66
184.278
63.4653
32.0774
22.0336
17.7794
15.519
14.1504
13.2545
12.6293
12.1669
11.8094
11.5254
11.2985
11.1199
10.9847
10.8905
10.8363
10.8227
10.847
10.9091
11.0109
11.1571
11.3576
11.6319
12.017
12.5784
13.4328
14.7895
17.0795
21.4505
31.7612
63.7092
187.798
1062.85
1030.68
184.374
63.5176
32.1459
22.1244
17.8784
15.6189
14.2486
13.3475
12.7135
12.24
11.8702
11.574
11.3358
11.1472
11.0036
10.9024
10.8426
10.8246
10.8456
10.9053
11.0055
11.1507
11.3507
11.625
12.0108
12.5734
13.4295
14.7879
17.08
21.4538
31.7683
63.7186
187.818
1062.99
1030.69
184.474
63.5717
32.2174
22.2194
17.9819
15.7232
14.3508
13.4439
12.8001
12.3143
11.931
11.6216
11.3713
11.1721
11.0195
10.9109
10.8454
10.823
10.8406
10.898
10.9967
11.1411
11.341
11.6159
12.0028
12.5672
13.4254
14.786
17.0805
21.4574
31.7762
63.73
187.838
1063.13
1030.7
184.576
63.6264
32.2913
22.3184
18.0902
15.8322
14.4572
13.5437
12.889
12.3893
11.9913
11.6676
11.4043
11.1939
11.0319
10.9157
10.8442
10.8172
10.8316
10.8867
10.9841
11.1281
11.3283
11.6041
11.9927
12.5594
13.4203
14.7835
17.0808
21.4611
31.7847
63.7429
187.86
1063.27
1030.72
184.679
63.6803
32.3665
22.4212
18.2033
15.9462
14.5681
13.647
12.9798
12.4648
12.0506
11.7114
11.4343
11.212
11.0402
10.9162
10.8386
10.807
10.8181
10.8711
10.9675
11.1113
11.3121
11.5895
11.9802
12.5498
13.414
14.7803
17.081
21.4654
31.7947
63.7592
187.883
1063.41
1030.73
184.782
63.7342
32.4437
22.5278
18.3215
16.0658
14.6841
13.7539
13.0721
12.5398
12.1078
11.7521
11.4604
11.2258
11.0439
10.9118
10.828
10.7919
10.7997
10.8508
10.9463
11.0903
11.2923
11.5716
11.9652
12.5383
13.4062
14.7763
17.0809
21.4698
31.8055
63.7769
187.907
1063.56
1030.74
184.884
63.7858
32.522
22.6379
18.4447
16.1923
14.8059
13.8635
13.1647
12.613
12.1619
11.7887
11.4819
11.2346
11.0423
10.9021
10.8121
10.7715
10.7762
10.8255
10.9204
11.0649
11.2684
11.5502
11.9472
12.5243
13.3967
14.7712
17.0803
21.4747
31.818
63.7982
187.932
1063.71
1030.76
184.987
63.8386
32.6039
22.7529
18.5732
16.3248
14.9323
13.9754
13.2573
12.6847
12.2132
11.8216
11.4989
11.2384
11.0356
10.887
10.7908
10.7456
10.7473
10.795
10.8896
11.0349
11.2404
11.5252
11.9261
12.508
13.3855
14.7651
17.0794
21.4798
31.8315
63.8214
187.957
1063.86
1030.77
185.091
63.8896
32.6881
22.8728
18.7067
16.4615
15.0622
14.0895
13.3506
12.7552
12.2618
11.8506
11.5112
11.237
11.0231
10.866
10.7635
10.7138
10.7126
10.7588
10.8533
10.9998
11.2076
11.496
11.9015
12.4887
13.372
14.7572
17.0775
21.4845
31.8454
63.846
187.981
1064.01
1030.79
185.194
63.9384
32.7741
22.9975
18.8461
16.604
15.1967
14.2061
13.4436
12.8232
12.3061
11.8741
11.5173
11.2289
11.0039
10.8383
10.7295
10.6755
10.6715
10.7165
10.8112
10.9592
11.1699
11.4625
11.8731
12.4665
13.3563
14.748
17.0749
21.4892
31.8606
63.8735
188.007
1064.16
1030.81
185.294
63.9845
32.8621
23.1272
18.991
16.7513
15.3346
14.3239
13.5354
12.8877
12.3452
11.8913
11.5164
11.2135
10.9773
10.8032
10.6883
10.6301
10.6236
10.6677
10.7628
10.9128
11.1268
11.424
11.8404
12.4406
13.3376
14.7364
17.0705
21.4929
31.8756
63.902
188.03
1064.32
1030.82
185.392
64.027
32.9512
23.2624
19.1426
16.9049
15.4768
14.4428
13.6249
12.9473
12.3777
11.9008
11.5073
11.1899
10.9425
10.7602
10.6394
10.5773
10.5687
10.6121
10.7081
10.8604
11.0782
11.3806
11.8036
12.4112
13.3163
14.7231
17.0653
21.4969
31.8925
63.9348
188.057
1064.48
1030.84
185.485
64.0642
33.0405
23.4024
19.3012
17.0646
15.6223
14.561
13.7102
13
12.4017
11.9011
11.4888
11.1569
10.8986
10.7084
10.5823
10.5167
10.5062
10.5494
10.6467
10.8017
11.0238
11.332
11.762
12.3778
13.2916
14.7069
17.0579
21.4992
31.9091
63.9688
188.081
1064.63
1030.86
185.567
64.0939
33.1292
23.5473
19.4687
17.2319
15.7704
14.6768
13.7892
13.0442
12.4162
11.8915
11.4604
11.1142
10.8455
10.6479
10.5167
10.4481
10.4363
10.4797
10.5788
10.7371
10.964
11.2785
11.7162
12.3409
13.2641
14.6889
17.0495
21.5017
31.9272
64.0061
188.106
1064.8
1030.87
185.648
64.1241
33.2221
23.6986
19.6478
17.407
15.9187
14.7874
13.8602
13.0791
12.4207
11.8717
11.4219
11.0618
10.783
10.5785
10.4429
10.3717
10.3591
10.4032
10.5044
10.6664
10.8986
11.2199
11.6659
12.2999
13.2332
14.668
17.0389
21.5027
31.9454
64.045
188.129
1064.96
1030.89
185.726
64.1505
33.3181
23.8551
19.8298
17.584
16.0674
14.896
13.9261
13.1063
12.4156
11.8415
11.3727
10.9989
10.7105
10.4996
10.3602
10.2871
10.2742
10.3196
10.4236
10.5899
10.8279
11.1566
11.6113
12.2554
13.1995
14.6451
17.0269
21.5029
31.9635
64.0849
188.152
1065.13
1030.91
185.796
64.1708
33.4148
24.0177
20.0198
17.7671
16.2174
14.9999
13.9829
13.1216
12.3976
11.798
11.3107
10.9238
10.6267
10.4103
10.2679
10.1938
10.1814
10.2287
10.336
10.507
10.7513
11.0878
11.5517
12.2063
13.1616
14.6183
17.0116
21.5006
31.9803
64.1245
188.169
1065.29
1030.92
185.857
64.1832
33.5124
24.1852
20.2143
17.9524
16.3651
15.0968
14.0289
13.1239
12.3655
11.7404
11.2351
10.836
10.5312
10.3104
10.1661
10.0919
10.0809
10.131
10.2423
10.4187
10.6698
11.0146
11.4882
12.1538
13.1208
14.5893
16.9946
21.4971
31.9969
64.1652
188.187
1065.47
1030.94
185.91
64.1883
33.61
24.3592
20.4165
18.142
16.5108
15.1852
14.062
13.1109
12.3174
11.6672
11.1448
10.7347
10.4234
10.1995
10.0545
9.98116
9.97253
10.0262
10.1423
10.3247
10.583
10.9363
11.4199
12.0966
13.0756
14.556
16.9736
21.4901
32.0113
64.2043
188.199
1065.64
1030.96
185.947
64.1788
33.7026
24.5375
20.6243
18.3327
16.6501
15.2608
14.0783
13.0798
12.2514
11.5771
11.039
10.6195
10.3032
10.0776
9.93313
9.862
9.85686
9.91514
10.0369
10.226
10.4922
10.8547
11.3486
12.0368
13.028
14.5206
16.9507
21.4813
32.0237
64.241
188.208
1065.82
1030.98
185.967
64.1499
33.7861
24.721
20.8397
18.5236
16.7802
15.3207
14.0763
13.0299
12.1674
11.4703
10.918
10.4906
10.171
9.94507
9.80242
9.73462
9.73404
9.79785
9.92606
10.1226
10.3971
10.769
11.2732
11.9728
12.976
14.4806
16.9233
21.4682
32.0328
64.2742
188.209
1065.99
1031
185.951
64.08
33.8497
24.9098
21.0609
18.7076
16.8948
15.3619
14.0548
12.961
12.0654
11.3469
10.7821
10.3485
10.0271
9.80241
9.663
9.59982
9.60497
9.67543
9.8111
10.0159
10.2996
10.6814
11.1965
11.9078
12.9231
14.4399
16.895
21.4539
32.0399
64.3042
188.208
1066.19
1031.01
185.732
63.8997
33.8776
25.0875
21.2786
18.8888
17.0023
15.3905
14.0169
12.8739
11.9453
11.2066
10.6308
10.1928
9.87132
9.64942
9.51464
9.45733
9.46934
9.54743
9.69139
9.90511
10.1984
10.5905
11.1164
11.839
12.866
14.3944
16.8612
21.4335
32.0406
64.3264
188.196
1066.37
1031.03
184.349
63.4792
33.8645
25.2704
21.5055
19.0691
17.0973
15.3992
13.956
12.764
11.804
11.0474
10.4631
10.023
9.70352
9.48631
9.35785
9.30792
9.32817
9.41517
9.5686
9.79235
10.0962
10.4993
11.0367
11.7711
12.8099
14.3499
16.8285
21.4138
32.0412
64.3482
188.187
1066.58
1031.05
181.723
62.9567
33.8746
25.4745
21.7406
19.2449
17.1778
15.3877
13.8729
12.6322
11.6426
10.8702
10.2799
9.83993
9.52449
9.31372
9.19309
9.15185
9.18149
9.27837
9.44211
9.67654
9.99142
10.4058
10.9546
11.7004
12.7504
14.3014
16.791
21.3887
32.0364
64.3637
188.169
1066.77
1031.06
179.844
62.6663
33.9625
25.7079
21.9845
19.4142
17.2404
15.352
13.7641
12.4759
11.4592
10.6743
10.0809
9.64376
9.33472
9.13238
9.02132
8.99033
9.03079
9.13889
9.3142
9.56051
9.88756
10.3143
10.8753
11.6331
12.6946
14.2568
16.7573
21.3666
32.0325
64.3788
188.156
1067
1031.08
178.919
62.5118
34.0742
25.947
22.2251
19.5693
17.2798
15.289
13.6276
12.2944
11.2541
10.4601
9.86684
9.43529
9.13489
8.94285
8.84288
8.8234
8.87575
8.996
9.18363
9.4424
9.78196
10.2212
10.7943
11.5635
12.6358
14.2084
16.7192
21.3396
32.0245
64.3894
188.135
1067.21
1031.09
178.434
62.4104
34.2053
26.1978
22.4651
19.7091
17.293
15.1957
13.4617
12.0868
11.0271
10.2283
9.63882
9.21585
8.92651
8.74672
8.65947
8.65295
8.71855
8.85225
9.05352
9.32608
9.6795
10.1324
10.7188
11.5002
12.5838
14.1673
16.6881
21.318
32.0181
64.3992
188.12
1067.46
1031.11
178.172
62.3415
34.35
26.4544
22.6976
19.8264
17.2745
15.0688
13.2651
11.853
10.7793
9.98036
9.39844
8.98694
8.71083
8.54489
8.47155
8.47891
8.5585
8.70624
8.9216
9.20826
9.57564
10.0421
10.6413
11.4342
12.528
14.1214
16.6514
21.2909
32.0073
64.4041
188.096
1067.68
1031.12
178.01
62.2823
34.5045
26.717
22.9193
19.9148
17.218
14.9037
13.0351
11.5926
10.5113
9.71761
9.14751
8.75066
8.49009
8.3397
8.28158
8.30392
8.39854
8.56145
8.79216
9.09437
9.47733
9.9591
10.5727
11.3782
12.4831
14.087
16.6262
21.2728
32.0003
64.4098
188.082
1067.95
1031.13
177.903
62.2332
34.6695
26.9835
23.1229
19.9665
17.119
14.6992
12.7725
11.3072
10.2252
9.44237
8.88827
8.50898
8.26585
8.13215
8.08983
8.12741
8.23713
8.41515
8.66111
8.97865
9.37683
9.87326
10.5003
11.3173
12.4318
14.0448
16.5921
21.246
31.9865
64.4083
188.055
1068.19
1031.15
177.816
62.1857
34.8446
27.2482
23.2984
19.974
16.9745
14.4542
12.4769
10.9968
9.92123
9.1554
8.62213
8.26401
8.04068
7.92491
7.89898
7.95213
8.07744
8.27142
8.53389
8.86845
9.28392
9.79733
10.4401
11.2702
12.3958
14.0191
16.5742
21.2322
31.9791
64.411
188.047
1068.49
1031.16
177.741
62.1407
35.0166
27.4973
23.4491
19.9482
16.792
14.1724
12.1504
10.6628
9.60063
8.85793
8.35034
8.0165
7.81451
7.71738
7.7078
7.77578
7.91546
8.12434
8.40258
8.75366
9.18599
9.71587
10.3737
11.2159
12.351
13.983
16.5456
21.21
31.9697
64.416
188.034
1068.73
1031.17
177.648
62.0822
35.188
27.7394
23.5699
19.8742
16.5568
13.8438
11.7873
10.303
9.26343
8.5504
8.07262
7.76504
7.58587
7.50905
7.51761
7.60208
7.75725
7.98159
8.27667
8.64618
9.09806
9.64785
10.3248
11.1839
12.3315
13.972
16.5411
21.2077
31.9724
64.4313
188.044
1069.06
1031.17
177.553
62.0299
35.3575
27.9609
23.6541
19.7555
16.2776
13.478
11.3967
9.92518
8.91577
8.2373
7.79032
7.50922
7.35367
7.29798
7.32547
7.42717
7.59839
7.83784
8.14815
8.53439
9.00436
9.57266
10.2672
11.1415
12.2999
13.9477
16.5233
21.1954
31.9727
64.4454
188.039
1069.3
1031.18
177.429
61.9622
35.523
28.1647
23.6982
19.5822
15.943
13.0664
10.9732
9.52624
8.55497
7.91508
7.50156
7.24933
7.11948
7.08687
7.13516
7.25601
7.44538
7.70216
8.03002
8.43563
8.92698
9.51782
10.2344
11.1278
12.2993
13.9544
16.534
21.2037
31.9797
64.461
188.054
1069.66
1031.19
177.3
61.9031
35.6851
28.3408
23.6957
19.3562
15.5613
12.6193
10.5269
9.11472
8.18816
7.58795
7.20795
6.9854
6.88194
6.87294
6.94235
7.08246
7.28992
7.56387
7.90814
8.33052
8.84029
9.45075
10.1865
11.0962
12.2785
13.9398
16.5244
21.1963
31.9796
64.4703
188.046
1069.91
1031.19
177.138
61.8315
35.8408
28.4879
23.6395
19.0662
15.1214
12.1286
10.0521
8.6858
7.8104
7.25379
6.91022
6.71968
6.64465
6.66117
6.75355
6.91487
7.14268
7.43645
7.80031
8.24316
8.77583
9.41107
10.1718
11.1042
12.3034
13.9723
16.5556
21.2196
31.9971
64.4952
188.074
1070.3
1031.2
176.977
61.7744
35.9914
28.5987
23.5272
18.7179
14.6342
11.607
9.56195
8.25127
7.42824
6.91503
6.60875
6.45088
6.40475
6.44703
6.56231
6.74443
6.99184
7.30424
7.68577
8.1464
8.69858
9.35449
10.1354
11.0856
12.2977
13.9713
16.5513
21.2092
31.9867
64.4889
188.056
1070.54
1031.2
176.776
61.7017
36.13
28.6675
23.3474
18.2974
14.0867
11.0438
9.04698
7.80336
7.03801
6.57168
6.30574
6.18299
6.16792
6.238
6.37822
6.58338
6.85317
7.1877
7.59145
8.07538
8.65356
9.33776
10.1473
11.1234
12.3547
14.0351
16.609
21.2559
32.0355
64.5771
188.183
1070.98
1031.2
176.579
61.6469
36.2588
28.6892
23.1029
17.8176
13.4984
10.4594
8.52404
7.35303
6.64714
6.22839
6.00299
5.91526
5.9309
6.02818
6.19235
6.41914
6.70951
7.06393
7.48719
7.99096
8.58999
9.29629
10.1278
11.1234
12.3685
14.0543
16.626
21.2655
32.0251
64.4323
187.095
1071.2
1031.2
176.329
61.5709
36.3694
28.6566
22.777
17.256
12.8485
9.8405
7.98714
6.89446
6.25086
5.88353
5.70188
5.65197
5.70088
5.82781
6.01834
6.26933
6.58342
6.96168
7.40945
7.9398
8.56824
9.30604
10.169
11.1918
12.4532
14.136
16.6823
21.2686
31.9142
63.9503
184.485
1071.69
1031.19
176.101
61.5269
36.468
28.5711
22.3887
16.6467
12.1732
9.21499
7.4543
6.44089
5.85905
5.54314
5.40474
5.39186
5.47302
5.6282
5.84313
6.11577
6.45047
6.84873
7.3172
7.86892
8.51919
9.28028
10.1664
11.2092
12.4836
14.1671
16.6968
21.2415
31.795
63.5318
182.621
1071.88
1031.19
175.814
61.4591
36.5415
28.417
21.9065
15.9529
11.4424
8.56261
6.91231
5.98671
5.47141
5.21014
5.1175
5.1439
5.25988
5.44585
5.68724
5.98389
6.34237
6.76515
7.26105
7.84293
8.52538
9.32106
10.2409
11.3113
12.6
14.276
16.766
21.2357
31.6979
63.2806
181.643
1072.44
1031.18
175.559
61.4303
36.5974
28.2051
21.3677
15.2295
10.7121
7.92897
6.38884
5.54708
5.09588
4.88707
4.83809
4.90172
5.05038
5.26544
5.53081
5.84725
6.22449
6.66836
7.18737
7.7906
8.49509
9.31568
10.2615
11.3557
12.6624
14.3463
16.8285
21.2735
31.7024
63.1923
181.139
1072.59
1031.17
175.23
61.3694
36.6201
27.9179
20.733
14.4269
9.94158
7.29106
5.86828
5.11421
4.73281
4.58002
4.57709
4.67982
4.86299
5.11049
5.40314
5.74195
6.14549
6.61895
7.16772
7.80208
8.54105
9.39972
10.3823
11.5049
12.8226
14.4899
16.9192
21.282
31.6468
63.1079
180.881
1073.24
1031.16
174.964
61.3596
36.6154
27.5791
20.0765
13.6435
9.21441
6.7019
5.39083
4.717
4.39842
4.2951
4.33194
4.46756
4.67886
4.95205
5.26849
5.62932
6.05466
6.5481
7.11586
7.76833
8.5266
9.40913
10.4193
11.5703
12.9137
14.5997
17.0376
21.4019
31.7719
63.2067
180.827
1073.33
1031.14
174.578
61.2813
36.5528
27.1542
19.3284
12.7991
8.47074
6.1276
4.94123
4.35367
4.10158
4.04995
4.12804
4.29785
4.53885
4.83961
5.18404
5.57296
6.02654
6.54942
7.14901
7.83666
8.63385
9.55801
10.6077
11.7868
13.136
14.7938
17.1614
21.4247
31.7259
63.1575
180.748
1074.09
1031.13
174.314
61.2691
36.4381
26.6965
18.6364
12.0784
7.86981
5.65287
4.56211
4.04884
3.85315
3.84393
3.95427
4.14939
4.41113
4.72694
5.08048
5.48062
5.95002
6.48686
7.0992
7.7991
8.60771
9.54632
10.6189
11.8268
13.2058
14.8883
17.2734
21.5557
31.8848
63.3275
180.866
1074.09
1031.11
173.855
61.1065
36.1912
26.1242
17.8729
11.3346
7.29266
5.22832
4.24841
3.81925
3.68609
3.72437
3.87295
4.10173
4.39336
4.72931
5.09394
5.50404
5.99192
6.56491
7.2227
7.97072
8.83028
9.82107
10.9414
12.1823
13.5691
15.2256
17.5461
21.7363
32.0176
63.4538
180.923
1074.98
1031.08
173.538
60.9401
35.7512
25.4908
17.3013
10.8959
6.97697
4.98858
4.0625
3.67788
3.578
3.63988
3.80531
4.047
4.34547
4.67964
5.04011
5.4432
5.91791
6.4798
7.13628
7.88285
8.73472
9.71872
10.8428
12.0947
13.4907
15.1409
17.4337
21.5933
31.8581
63.3307
180.914
1074.9
1031.06
173.037
60.5166
34.9051
24.4509
16.5356
10.4733
6.7566
4.85519
3.97807
3.63215
3.56339
3.65192
3.84379
4.11307
4.43432
4.78824
5.17602
5.6113
6.11691
6.71188
7.42295
8.24817
9.17688
10.2354
11.43
12.7406
14.1794
15.8616
18.1857
22.3886
32.769
64.2837
181.545
1075.92
1031.03
172.355
59.7379
33.4409
22.8871
15.6661
10.3212
6.87299
4.96462
4.02024
3.61445
3.50163
3.55848
3.72966
3.98503
4.29396
4.64368
5.03683
5.47874
5.98125
6.5597
7.24541
8.05921
8.98142
10.016
11.1752
12.4369
13.7952
15.3394
17.4567
21.4091
31.5359
62.9458
180.56
1075.81
1030.99
171.962
58.9779
31.378
20.2299
13.6916
9.52828
6.91192
5.3165
4.37667
3.86109
3.6252
3.58091
3.6819
3.89699
4.19185
4.56018
5.00261
5.51685
6.1027
6.76485
7.52211
8.42179
9.49717
10.6989
12.0067
13.4268
14.9588
16.7022
19.0577
23.3035
33.8256
65.4717
182.473
1076.85
1030.93
170.182
57.3715
29.062
17.4644
11.367
8.18612
6.54844
5.63728
5.05188
4.61953
4.27347
3.99851
3.80772
3.72988
3.79869
4.02188
4.36767
4.83687
5.41808
6.10242
6.88769
7.78957
8.8791
10.1904
11.6014
13.0003
14.3384
15.7255
17.6144
21.3202
31.1891
62.0842
179.298
1076.89
1030.87
171.179
57.6489
27.8475
15.9491
10.3534
7.75446
6.55873
5.97909
5.65788
5.4397
5.25711
5.07979
4.8937
4.69435
4.48915
4.30772
4.2139
4.2968
4.61929
5.17376
5.93451
6.87008
7.96655
9.2517
10.8841
12.8668
14.8866
16.8546
19.077
22.9098
32.9715
64.4785
181.985
1077.73
1030.82
170.12
55.6068
25.2011
14.0549
9.66756
7.91304
7.11218
6.63345
6.26568
5.94901
5.67163
5.4326
5.23123
5.05977
4.90217
4.75042
4.62949
4.59136
4.69539
5.00729
5.55755
6.3495
7.40691
8.7922
10.5578
12.5527
14.5602
16.5737
18.9221
22.8197
32.5877
63.4507
181.322
1078.03
1030.81
168.86
52.0321
22.2004
13.3985
10.7423
9.75111
9.14246
8.58587
8.01065
7.41524
6.81646
6.23435
5.68583
5.18189
4.72685
4.32053
3.96425
3.66737
3.44848
3.33407
3.35768
3.55597
3.9443
4.52472
5.39313
6.76737
8.79006
11.0843
13.7758
18.7308
31.7546
68.0313
188.349
1078.88
1030.69
151.152
38.2716
17.1238
14.1789
13.7278
13.2488
12.6202
11.9103
11.1612
10.4063
9.67738
9.00415
8.41327
7.92768
7.56688
7.34854
7.29241
7.43636
7.74456
8.23685
8.94355
9.89227
11.1193
12.6739
14.619
17.0539
20.1202
24.1221
29.7491
38.5837
54.4246
88.9358
201.431
1080.25
526.842
24.1422
24.3881
24.4531
24.4807
24.4971
24.5054
24.5074
24.5047
24.4984
24.4894
24.4783
24.4657
24.4521
24.4378
24.4231
24.4081
24.393
24.3779
24.3624
24.3464
24.3298
24.3121
24.293
24.2722
24.2491
24.2235
24.1958
24.1676
24.1432
24.1295
24.1332
24.1565
24.1965
555.939
526.413
22.9931
22.9959
22.999
23.0023
23.0061
23.0103
23.015
23.0201
23.0256
23.0313
23.0372
23.043
23.0486
23.054
23.0591
23.0638
23.068
23.0717
23.0748
23.0773
23.0792
23.0802
23.0805
23.0797
23.0779
23.0751
23.0712
23.0669
23.0636
23.0641
23.0732
23.097
23.1377
531.549
1029.84
172.985
63.3438
33.8435
22.4097
16.7638
13.4455
11.2426
9.65863
8.46211
7.53223
6.79996
6.22306
5.77447
5.43618
5.19599
5.04536
4.97931
4.99092
5.07392
5.22663
5.44574
5.72664
6.06311
6.44662
6.86555
7.30469
7.74658
8.18808
8.77753
10.5211
17.669
45.073
159.335
1040.49
1029.84
175.236
65.9755
36.1726
24.2248
18.0808
14.3903
11.9664
10.2874
9.0778
8.1746
7.47641
6.91899
6.46134
6.07688
5.74795
5.46374
5.22209
5.01988
4.85425
4.72509
4.63552
4.59006
4.59418
4.65339
4.77143
4.94785
5.18199
5.528
6.37214
9.31996
19.227
50.2889
166.533
1041.06
1029.86
175.093
64.9342
34.0139
21.1519
14.5117
10.7419
8.518
7.15463
6.25908
5.61493
5.1133
4.70457
4.36805
4.09519
3.88118
3.72113
3.60915
3.53903
3.50332
3.49505
3.50851
3.54017
3.58969
3.66109
3.76601
3.93474
4.25351
4.97534
6.80098
11.4799
23.262
55.2206
170.661
1042.04
1029.87
172.8
61.7534
30.7262
18.386
12.6618
9.8476
8.35553
7.43729
6.76396
6.20237
5.70193
5.24631
4.83343
4.46646
4.14972
3.88662
3.67834
3.52321
3.41739
3.35537
3.33073
3.33741
3.37216
3.43946
3.56095
3.79538
4.28453
5.3539
7.71456
12.8966
24.7104
56.0818
170.779
1042.91
1029.88
172.662
61.6485
30.8265
18.7039
13.0965
10.2968
8.77605
7.83254
7.15184
6.59525
6.10022
5.64279
5.21826
4.82736
4.47241
4.15724
3.88647
3.66344
3.48944
3.36534
3.29073
3.26564
3.29345
3.38676
3.57903
3.94719
4.65494
6.03048
8.70694
14.0233
25.6355
56.6364
171.162
1043.69
1029.88
171.98
60.7903
29.9646
17.9804
12.5892
9.97124
8.54717
7.63747
6.96419
6.40976
5.92134
5.47908
5.07639
4.70961
4.37734
4.08038
3.82093
3.60184
3.42638
3.29855
3.22335
3.20838
3.26689
3.42396
3.72895
4.27419
5.22043
6.84927
9.67969
14.9023
26.1553
56.8181
171.353
1044.44
1029.89
172.062
60.9971
30.2731
18.3421
12.9629
10.3409
8.91384
8.00553
7.33498
6.78074
6.28672
5.83146
5.4109
5.02353
4.66727
4.34254
4.05164
3.79774
3.58521
3.42038
3.31182
3.27235
3.32273
3.49842
3.86313
4.52809
5.66011
7.49638
10.4444
15.5572
26.4678
56.8618
171.519
1045.06
1029.89
172.234
61.1325
30.3037
18.3286
12.9629
10.3453
8.89398
7.95211
7.25435
6.68505
6.19049
5.74846
5.34997
4.98817
4.65774
4.35658
4.08527
3.84602
3.64313
3.48411
3.37991
3.34743
3.41369
3.62344
4.05492
4.83886
6.14817
8.1795
11.2403
16.2752
26.9463
57.2116
172.009
1045.68
1029.9
172.191
61.0837
30.2554
18.3186
13.009
10.4356
9.01079
8.08353
7.39342
6.82736
6.33276
5.88832
5.48718
5.12397
4.79337
4.49306
4.22338
3.98567
3.78358
3.62504
3.52185
3.49279
3.56828
3.79904
4.27481
5.14409
6.58795
8.77664
11.9323
16.888
27.3036
57.3962
172.309
1046.22
1029.91
172.425
61.3096
30.4162
18.4565
13.1496
10.5603
9.10055
8.13701
7.4189
6.83559
6.33445
5.89281
5.50052
5.14939
4.83289
4.54788
4.29429
4.07292
3.88708
3.74519
3.65997
3.65191
3.75436
4.02298
4.55782
5.52063
7.09065
9.41045
12.6332
17.5137
27.7355
57.7435
172.778
1046.74
1029.91
172.408
61.2455
30.3104
18.3771
13.1286
10.581
9.14205
8.18972
7.47884
6.90064
6.40359
5.96518
5.57656
5.2307
4.92109
4.64469
4.40181
4.19288
4.02075
3.89456
3.8277
3.84196
3.97312
4.28179
4.87623
5.92308
7.59891
10.0219
13.2858
18.0753
28.0893
57.9883
173.126
1047.23
1029.92
172.565
61.3795
30.4031
18.4778
13.2496
10.6972
9.23636
8.26039
7.53149
6.94293
6.44281
6.00684
5.62408
5.28654
4.98735
4.72338
4.49521
4.30304
4.14938
4.04425
4.00199
4.04589
4.21423
4.57283
5.23676
6.37206
8.14602
10.6494
13.9262
18.6151
28.4499
58.2886
173.535
1047.7
1029.93
172.606
61.3648
30.3387
18.4375
13.2582
10.7324
9.28031
8.30809
7.58247
6.99758
6.50187
6.07091
5.69354
5.36273
5.07233
4.81926
4.60472
4.42865
4.29309
4.20907
4.19185
4.26614
4.47245
4.88158
5.61407
6.83213
8.69116
11.2554
14.5262
19.1059
28.7619
58.538
173.885
1048.14
1029.94
172.72
61.4296
30.3665
18.4887
13.3397
10.8178
9.35478
8.36999
7.63566
7.04735
6.55283
6.12636
5.75553
5.43294
5.1526
4.91171
4.71216
4.55378
4.43812
4.3773
4.3877
4.49561
4.74413
5.20853
6.01167
7.3099
9.24382
11.8508
15.0971
19.5644
29.0633
58.8078
174.255
1048.56
1029.94
172.804
61.4447
30.3354
18.486
13.3789
10.8735
9.41246
8.42733
7.69393
7.10828
6.61803
6.19689
5.83194
5.51639
5.24497
5.01526
4.82995
4.68872
4.59252
4.55449
4.59211
4.73325
5.02388
5.54269
6.41162
7.7807
9.77559
12.4095
15.6205
19.9773
29.3303
59.0491
174.59
1048.96
1029.95
172.923
61.4834
30.3357
18.5162
13.4412
10.9419
9.47539
8.48393
7.74743
7.16265
6.67646
6.26154
5.904
5.59688
5.3354
5.11789
4.94772
4.82459
4.74897
4.73479
4.80068
4.97602
5.30963
5.88308
6.81556
8.24885
10.2926
12.9376
16.102
20.3526
29.5819
59.2976
174.929
1049.35
1029.96
173.06
61.5141
30.3222
18.5359
13.4976
11.0092
9.54196
8.54884
7.81271
7.23064
6.74911
6.34015
5.98922
5.68903
5.43586
5.22925
5.07309
4.96715
4.91139
4.92037
5.01373
5.22226
5.59727
6.22177
7.21101
8.69785
10.7766
13.4196
16.5314
20.6835
29.8043
59.5229
175.238
1049.72
1029.97
173.245
61.5608
30.3246
18.5692
13.5593
11.0751
9.60354
8.60657
7.86989
7.29093
6.81531
6.41402
6.0715
5.77983
5.53612
5.34116
5.19929
5.11064
5.07502
5.10741
5.22846
5.47057
5.88682
6.55932
7.59931
9.13016
11.2313
13.8595
16.9132
20.9758
30.0097
59.7477
175.542
1050.07
1029.98
173.509
61.6241
30.3334
18.6088
13.6278
11.1489
9.67476
8.67554
7.93932
7.3637
6.89372
6.49962
6.16505
5.88163
5.64692
5.46326
5.33443
5.2606
5.24367
5.29807
5.44518
5.71893
6.1736
6.88919
7.97196
9.53564
11.6462
14.249
17.2424
21.226
30.188
59.9487
175.816
1050.41
1029.99
173.91
61.7274
30.3655
18.6615
13.6985
11.2187
9.73938
8.73704
8.00141
7.43
6.96696
6.58167
6.25699
5.98394
5.76029
5.58896
5.47282
5.41294
5.41411
5.49018
5.6631
5.96769
6.45809
7.212
8.33024
9.91681
12.0254
14.5929
17.5242
21.4399
30.3495
60.1441
176.08
1050.73
1029.99
174.569
61.8964
30.4239
18.7276
13.7776
11.2959
9.81204
8.80754
8.07301
7.50571
7.04913
6.67211
6.35698
6.09452
5.88283
5.72364
5.61906
5.57245
5.58963
5.6854
5.88228
6.21531
6.73732
7.52334
8.66853
10.2675
12.3633
14.8882
17.758
21.6166
30.4873
60.3171
176.317
1051.03
1030
175.661
62.1754
30.522
18.8061
13.8553
11.3667
9.87751
8.87139
8.13891
7.57676
7.12767
6.75996
6.45556
6.20515
6.0062
5.85933
5.76693
5.73384
5.76691
5.88202
6.10201
6.46114
7.01099
7.82368
8.98838
10.5906
12.6642
15.1399
17.9491
21.7618
30.6097
60.482
176.542
1051.33
1030.01
177.483
62.5963
30.6478
18.8867
13.9318
11.4385
9.94675
8.94097
8.21144
7.65448
7.21249
6.85346
6.55905
6.32012
6.1335
5.99872
5.91893
5.89966
5.94852
6.08141
6.32168
6.70348
7.27677
8.11035
9.2873
10.8845
12.9279
15.3496
18.1003
21.8771
30.7145
60.6305
176.747
1051.61
1030.02
179.816
63.0481
30.7492
18.9465
13.994
11.5007
10.0092
9.0058
8.28039
7.72952
7.29558
6.9461
6.66251
6.43539
6.26098
6.13862
6.07166
6.06627
6.13061
6.28035
6.53928
6.94136
7.53465
8.38436
9.5675
11.1527
13.1596
15.5234
18.2174
21.9676
30.8069
60.7707
176.941
1051.88
1030.03
180.832
63.1758
30.7459
18.9745
14.0488
11.564
10.0759
9.07584
8.35476
7.80981
7.38351
7.04309
6.76983
6.55392
6.39101
6.28062
6.2261
6.23406
6.3131
6.47884
6.75466
7.17414
7.78374
8.64478
9.82832
11.3955
13.3606
15.6642
18.304
22.0351
30.8855
60.897
177.117
1052.14
1030.04
180.863
63.145
30.7243
19.0062
14.1058
11.6269
10.1411
9.14416
8.4276
7.8889
7.47061
7.13952
6.87676
6.67218
6.52083
6.42239
6.38016
6.40115
6.49428
6.67502
6.96603
7.40056
8.02347
8.89195
10.0712
11.6155
13.535
15.7771
18.3654
22.0841
30.9544
61.0159
177.283
1052.4
1030.05
180.926
63.1419
30.7141
19.0411
14.1638
11.6915
10.2089
9.21572
8.50402
7.97165
7.56122
7.23921
6.98642
6.79236
6.65201
6.56496
6.53442
6.5677
6.67396
6.86843
7.17329
7.62064
8.25346
9.12537
10.2959
11.8132
13.6842
15.8647
18.4044
22.1165
31.0128
61.1237
177.436
1052.64
1030.06
180.987
63.132
30.7016
19.0755
14.2207
11.7547
10.2755
9.28631
8.57967
8.05382
7.6514
7.33856
7.09574
6.91214
6.78266
6.70676
6.68755
6.73258
6.85117
7.05824
7.3754
7.83334
8.47321
9.34526
10.5035
11.9906
13.8116
15.931
18.4253
22.1357
31.0642
61.2253
177.581
1052.88
1030.07
181.044
63.1197
30.6898
19.1112
14.279
11.8199
10.3445
9.35949
8.65801
8.13861
7.74392
7.43983
7.20652
7.03287
6.91372
6.84838
6.83984
6.89582
7.02569
7.24399
7.5717
8.03792
8.68202
9.55101
10.6938
12.1481
13.9181
15.9778
18.43
22.1429
31.1077
61.3183
177.717
1053.12
1030.08
181.101
63.1063
30.6794
19.1475
14.3365
11.884
10.4126
9.43206
8.73595
8.22315
7.83627
7.54089
7.31695
7.15307
7.04395
6.98878
6.9904
7.05664
7.19687
7.42518
7.76182
8.23462
8.88057
9.74349
10.868
12.2876
14.0061
16.008
18.4214
22.1407
31.1458
61.4058
177.848
1053.34
1030.09
181.155
63.0905
30.6695
19.185
14.3953
11.9498
10.4826
9.50656
8.81582
8.30949
7.93017
7.64315
7.42811
7.2735
7.17388
7.12828
7.13936
7.21504
7.36457
7.60156
7.94549
8.42284
9.06818
9.92237
11.0262
12.4094
14.0765
16.0225
18.4006
22.1296
31.1779
61.4863
177.975
1053.57
1030.1
181.208
63.0745
30.6619
19.2235
14.4537
12.0149
10.552
9.58061
8.89536
8.3956
8.02382
7.74506
7.53873
7.39313
7.30263
7.26612
7.28609
7.37044
7.5283
7.77276
8.12243
8.60244
9.24489
10.088
11.1693
12.5151
14.1312
16.0238
18.3699
22.1114
31.2057
61.5624
178.104
1053.78
1030.11
181.26
63.0577
30.6559
19.2635
14.5133
12.0813
10.6227
9.65596
8.97615
8.48279
8.11831
7.84747
7.64945
7.51238
7.43046
7.40243
7.43059
7.52278
7.68795
7.93859
8.29246
8.77331
9.41104
10.2411
11.2978
12.6052
14.1709
16.0124
18.3296
22.0859
31.2282
61.6329
178.239
1053.99
1030.12
181.311
63.0417
30.6525
19.3045
14.5726
12.1471
10.6928
9.73078
9.05648
8.56955
8.21232
7.94926
7.75934
7.63048
7.55673
7.53666
7.57238
7.67168
7.84321
8.0989
8.45561
8.9357
9.56708
10.3824
11.413
12.6814
14.1976
15.9902
18.2811
22.0544
31.2468
61.7007
178.392
1054.19
1030.13
181.362
63.0254
30.6507
19.3467
14.6326
12.2134
10.7635
9.80609
9.13722
8.6566
8.3064
8.05085
7.86867
7.74759
7.6815
7.66881
7.71143
7.81704
7.99401
8.25364
8.61187
9.08973
9.71318
10.5122
11.5157
12.7449
14.2125
15.9586
18.2256
22.0171
31.2611
61.7672
178.584
1054.39
1030.14
181.411
63.0092
30.6506
19.3891
14.6919
12.2789
10.8332
9.88051
9.21711
8.74281
8.39957
8.15138
7.9767
7.86309
7.80425
7.79844
7.84737
7.9586
8.14016
8.40274
8.76135
9.23568
9.84986
10.6313
11.6069
12.797
14.2172
15.9187
18.1639
21.9749
31.2729
61.8388
178.852
1054.59
1030.15
181.458
62.993
30.652
19.4324
14.7515
12.3445
10.903
9.95482
9.29678
8.82864
8.49216
8.25106
8.08356
7.97701
7.92496
7.9255
7.98014
8.09631
8.28168
8.5463
8.90428
9.37399
9.97781
10.7409
11.6881
12.8393
14.2135
15.8729
18.0982
21.9295
31.2843
61.9265
179.274
1054.78
1030.16
181.507
62.9785
30.6557
19.4761
14.8106
12.4092
10.9718
10.0281
9.37538
8.91332
8.58345
8.34923
8.18866
8.08885
8.04319
8.04962
8.10946
8.22996
8.41844
8.6843
9.04077
9.50496
10.0976
10.8417
11.7606
12.8738
14.2037
15.8226
18.0289
21.8819
31.3003
62.053
180.005
1054.96
1030.17
181.555
62.9646
30.661
19.5203
14.8695
12.4736
11.0402
10.1008
9.45331
8.99714
8.67362
8.446
8.292
8.19856
8.15888
8.17074
8.23526
8.35954
8.55052
8.81696
9.17122
9.62923
10.2101
10.9351
11.8256
12.9008
14.1867
15.7673
17.9601
21.8393
31.3287
62.2639
181.358
1055.14
1030.18
181.603
62.952
30.6678
19.5645
14.9275
12.537
11.1074
10.1724
9.52995
9.07955
8.7622
8.54092
8.39322
8.3058
8.27172
8.2886
8.35736
8.48494
8.67789
8.94438
9.2959
9.74721
10.3159
11.0215
11.8836
12.9214
14.165
15.7108
17.8948
21.8065
31.3944
62.6559
183.633
1055.32
1030.19
181.652
62.9398
30.6756
19.6085
14.9849
12.5995
11.1738
10.2429
9.60551
9.16069
8.84924
8.63399
8.49222
8.41046
8.38159
8.40307
8.47565
8.60608
8.80054
9.06658
9.41488
9.85908
10.4153
11.1014
11.9355
12.9371
14.1414
15.6573
17.8392
21.7953
31.5108
63.1412
185.794
1055.5
1030.2
181.702
62.928
30.684
19.6519
15.0411
12.6607
11.2388
10.3121
9.67961
9.24022
8.93443
8.72491
8.58874
8.51227
8.48823
8.51392
8.58993
8.72282
8.91839
9.18361
9.52835
9.96515
10.5088
11.1755
11.9825
12.9499
14.1182
15.6085
17.7921
21.7918
31.6063
63.4167
186.543
1055.68
1030.21
181.75
62.916
30.6927
19.6947
15.0964
12.721
11.3028
10.3802
9.75249
9.31833
9.01791
8.81376
8.68279
8.61118
8.59154
8.62101
8.70003
8.83499
9.0313
9.29537
9.6363
10.0656
10.5968
11.2447
12.0257
12.9611
14.0965
15.5639
17.7487
21.7821
31.6561
63.5197
186.683
1055.86
1030.22
181.798
62.9039
30.7017
19.7368
15.1505
12.7801
11.3656
10.447
9.82393
9.39478
9.09945
8.90033
8.77416
8.707
8.6913
8.72413
8.80574
8.94237
9.13907
9.40171
9.73867
10.1605
10.6796
11.3096
12.0661
12.9717
14.0768
15.523
17.7069
21.765
31.676
63.5588
186.744
1056.04
1030.23
181.845
62.8918
30.7109
19.7782
15.2037
12.8382
11.4274
10.5126
9.89405
9.46967
9.17911
8.98462
8.86281
8.79962
8.78741
8.82313
8.9069
9.04479
9.24152
9.50247
9.83536
10.2499
10.7573
11.3704
12.1041
12.9823
14.0597
15.4858
17.6671
21.7437
31.6811
63.5767
186.795
1056.23
1030.24
181.892
62.8794
30.7201
19.8185
15.2555
12.8949
11.4877
10.5768
9.96257
9.54277
9.25669
9.06647
8.94861
8.88894
8.87976
8.9179
9.00339
9.14214
9.33855
9.59756
9.92629
10.3337
10.8301
11.4273
12.14
12.9932
14.0453
15.4528
17.6303
21.7212
31.6797
63.5875
186.845
1056.41
1030.25
181.939
62.8666
30.7292
19.858
15.3062
12.9503
11.5467
10.6396
10.0295
9.61409
9.33221
9.14591
9.0316
8.97501
8.96839
9.00849
9.09525
9.23445
9.43017
9.68698
10.0115
10.4119
10.8978
11.4804
12.1739
13.0044
14.0338
15.4241
17.5973
21.7001
31.6765
63.5966
186.895
1056.6
1030.26
181.983
62.853
30.7382
19.8966
15.3557
13.0046
11.6045
10.7009
10.0948
9.68354
9.4056
9.22292
9.11178
9.05787
9.05337
9.09501
9.18262
9.32187
9.51656
9.77091
10.0911
10.4847
10.9608
11.5297
12.2059
13.016
14.0251
15.4002
17.5691
21.6821
31.6747
63.6076
186.948
1056.79
1030.27
182.025
62.839
30.7474
19.9349
15.4045
13.0579
11.6611
10.7609
10.1587
9.75126
9.47695
9.29754
9.18921
9.13757
9.1348
9.17755
9.26561
9.40452
9.59785
9.84952
10.1653
10.5523
11.019
11.5754
12.2356
13.0276
14.0188
15.3804
17.5456
21.668
31.6754
63.6211
187.003
1056.98
1030.28
182.066
62.8248
30.757
19.9726
15.4525
13.1103
11.7167
10.8196
10.221
9.81721
9.54626
9.36981
9.26392
9.21419
9.21274
9.25622
9.34435
9.48257
9.67424
9.92299
10.2343
10.6148
11.0726
11.6173
12.2632
13.0387
14.0139
15.3642
17.5271
21.6578
31.6788
63.637
187.059
1057.17
1030.29
182.105
62.8107
30.767
20.0102
15.5
13.1619
11.7713
10.8773
10.282
9.88155
9.61367
9.43985
9.33608
9.28789
9.28739
9.33121
9.41905
9.55624
9.74593
9.99155
10.2982
10.6724
11.1217
11.6554
12.2877
13.0482
14.0095
15.3511
17.5131
21.6507
31.6845
63.6545
187.116
1057.36
1030.3
182.145
62.7977
30.7781
20.0478
15.547
13.213
11.8251
10.9338
10.3416
9.9443
9.67921
9.50773
9.40575
9.35877
9.35888
9.4027
9.48992
9.62575
9.81317
10.0554
10.3574
10.7252
11.1662
11.6894
12.3091
13.056
14.0053
15.3403
17.5024
21.6465
31.6924
63.6735
187.172
1057.55
1030.31
182.183
62.7853
30.79
20.0854
15.5937
13.2633
11.8781
10.9893
10.4
10.0055
9.74297
9.57354
9.47304
9.42695
9.42735
9.47085
9.55713
9.6913
9.87618
10.1148
10.412
10.7734
11.2062
11.7193
12.3272
13.0619
14.001
15.3309
17.4939
21.6443
31.7014
63.6924
187.226
1057.73
1030.32
182.221
62.7729
30.8021
20.1228
15.6398
13.313
11.9302
11.0438
10.4572
10.0653
9.80499
9.63734
9.53804
9.49254
9.49293
9.53581
9.62085
9.75309
9.93516
10.17
10.4621
10.8172
11.2419
11.7452
12.342
13.0655
13.9958
15.3218
17.4865
21.6433
31.711
63.7107
187.278
1057.92
1030.33
182.257
62.7609
30.8149
20.1602
15.6857
13.3623
11.9817
11.0975
10.5132
10.1237
9.86544
9.6993
9.60093
9.55574
9.55583
9.59782
9.68136
9.81141
9.99045
10.2213
10.5082
10.8568
11.2736
11.7674
12.3537
13.0671
13.9896
15.3128
17.4798
21.6432
31.7211
63.7287
187.327
1058.1
1030.33
182.293
62.7504
30.8291
20.198
15.7316
13.4113
12.0327
11.1504
10.5683
10.1809
9.92441
9.75952
9.6618
9.61665
9.61619
9.65702
9.73881
9.86643
10.0422
10.2689
10.5505
10.8926
11.3015
11.7861
12.3625
13.0664
13.9822
15.3033
17.4733
21.6434
31.731
63.7452
187.374
1058.28
1030.34
182.33
62.7412
30.8443
20.2362
15.7776
13.4602
12.0833
11.2027
10.6225
10.237
9.98203
9.81812
9.72079
9.67542
9.67414
9.71357
9.79338
9.91835
10.0907
10.313
10.5893
10.9247
11.3258
11.8015
12.3684
13.0637
13.9735
15.2931
17.4664
21.6436
31.7408
63.7608
187.418
1058.45
1030.35
182.366
62.733
30.8603
20.2746
15.8234
13.5088
12.1336
11.2545
10.676
10.2922
10.0384
9.87527
9.77807
9.73222
9.72987
9.76766
9.84526
9.96737
10.1361
10.3538
10.6247
10.9536
11.347
11.8141
12.372
13.0591
13.9635
15.2823
17.4594
21.6439
31.7508
63.7762
187.46
1058.62
1030.36
182.402
62.7251
30.8764
20.3127
15.869
13.5571
12.1834
11.3057
10.7289
10.3465
10.0938
9.93107
9.83375
9.78717
9.78351
9.81941
9.89457
10.0136
10.1785
10.3916
10.6569
10.9793
11.3652
11.824
12.3735
13.0532
13.9528
15.2712
17.4524
21.6444
31.7608
63.7907
187.499
1058.79
1030.37
182.437
62.7167
30.8922
20.3504
15.9141
13.605
12.2329
11.3565
10.7811
10.4
10.1481
9.98569
9.888
9.84044
9.8352
9.86897
9.94145
10.0572
10.218
10.4264
10.686
11.0019
11.3805
11.8313
12.3729
13.0459
13.9415
15.2599
17.4456
21.6452
31.7708
63.8039
187.535
1058.95
1030.38
182.471
62.7095
30.909
20.3883
15.9594
13.6529
12.2822
11.4071
10.8329
10.4529
10.2017
10.0393
9.94103
9.89223
9.88517
9.91655
9.98611
10.0983
10.2549
10.4582
10.7121
11.0214
11.3927
11.8359
12.3701
13.037
13.9292
15.2482
17.4387
21.6457
31.7799
63.8151
187.568
1059.12
1030.39
182.507
62.7047
30.9274
20.427
16.005
13.701
12.3316
11.4576
10.8845
10.5054
10.2546
10.0921
9.99293
9.94267
9.93355
9.96231
10.0287
10.1371
10.2892
10.4873
10.7353
11.038
11.4021
11.8379
12.365
13.0264
13.9158
15.2359
17.4314
21.6459
31.7879
63.8239
187.597
1059.28
1030.4
182.543
62.7011
30.9467
20.4662
16.0509
13.7493
12.3812
11.5082
10.936
10.5576
10.307
10.144
10.0438
9.99189
9.98051
10.0064
10.0695
10.1739
10.3213
10.5141
10.7559
11.0519
11.4088
11.8373
12.3577
13.014
13.901
15.2226
17.4236
21.6457
31.7953
63.8314
187.624
1059.43
1030.41
182.579
62.6994
30.9671
20.5058
16.0971
13.7979
12.431
11.5591
10.9877
10.6096
10.3589
10.1953
10.0939
10.0401
10.0263
10.0492
10.1086
10.2089
10.3515
10.5387
10.7743
11.0635
11.4132
11.8345
12.3484
12.9999
13.8849
15.2085
17.4153
21.6456
31.803
63.8388
187.65
1059.59
1030.42
182.616
62.6991
30.9883
20.5459
16.1437
13.8469
12.4812
11.6103
11.0396
10.6616
10.4106
10.2462
10.1433
10.0874
10.0709
10.0907
10.1464
10.2424
10.3799
10.5614
10.7908
11.0731
11.4156
11.8298
12.3373
12.9843
13.8677
15.1936
17.4067
21.6455
31.8111
63.8461
187.675
1059.73
1030.43
182.654
62.7005
31.0108
20.5867
16.191
13.8966
12.5321
11.662
11.0918
10.7139
10.4623
10.2967
10.1921
10.134
10.1147
10.1311
10.183
10.2745
10.4069
10.5826
10.8055
11.0809
11.4162
11.8232
12.3246
12.9672
13.8492
15.1777
17.3975
21.6451
31.8191
63.8527
187.696
1059.88
1030.44
182.694
62.7054
31.0355
20.629
16.2394
13.9471
12.5836
11.7144
11.1446
10.7664
10.514
10.3471
10.2406
10.18
10.1577
10.1706
10.2185
10.3054
10.4326
10.6024
10.8187
11.0871
11.4151
11.815
12.3102
12.9486
13.8294
15.1606
17.3874
21.6442
31.8267
63.8586
187.716
1060.02
1030.45
182.737
62.7131
31.062
20.6724
16.2888
13.9985
12.6359
11.7674
11.1978
10.8192
10.5658
10.3973
10.2886
10.2254
10.2
10.2093
10.2531
10.3353
10.4571
10.6209
10.8306
11.0918
11.4124
11.8053
12.2943
12.9286
13.8083
15.1426
17.3767
21.6428
31.8343
63.8643
187.734
1060.16
1030.46
182.781
62.7219
31.0891
20.7163
16.3387
14.0504
12.6887
11.8208
11.2513
10.8722
10.6177
10.4474
10.3364
10.2703
10.2417
10.2472
10.2869
10.3643
10.4807
10.6384
10.8414
11.0953
11.4085
11.7941
12.277
12.9072
13.7858
15.1232
17.3649
21.6407
31.8411
63.869
187.75
1060.29
1030.46
182.824
62.7309
31.1166
20.7608
16.3892
14.103
12.7422
11.8748
11.3053
10.9255
10.6697
10.4974
10.3839
10.3149
10.2828
10.2846
10.3199
10.3926
10.5035
10.6549
10.8511
11.0978
11.4033
11.7815
12.258
12.8839
13.7616
15.1024
17.3515
21.6372
31.8467
63.8717
187.762
1060.42
1030.47
182.866
62.741
31.1453
20.8064
16.4409
14.1567
12.7966
11.9296
11.36
10.9793
10.7219
10.5475
10.4313
10.3592
10.3237
10.3215
10.3526
10.4203
10.5257
10.671
10.8603
11.0994
11.3971
11.7676
12.2374
12.859
13.7364
15.081
17.3369
21.6327
31.8519
63.8742
187.773
1060.55
1030.48
182.912
62.7546
31.1763
20.8538
16.4941
14.2117
12.8521
11.9854
11.4155
11.0338
10.7746
10.5978
10.4787
10.4034
10.3642
10.3581
10.3848
10.4478
10.5476
10.6866
10.8689
11.1003
11.3899
11.7524
12.2154
12.8328
13.71
15.0584
17.3207
21.6263
31.8554
63.8742
187.779
1060.67
1030.49
182.959
62.771
31.2094
20.9028
16.5488
14.268
12.9088
12.0422
11.4718
11.0888
10.8277
10.6482
10.5261
10.4473
10.4045
10.3944
10.4167
10.4748
10.5691
10.7018
10.877
11.1006
11.3818
11.7361
12.1922
12.8055
13.6824
15.0341
17.3023
21.6171
31.8555
63.8696
187.778
1060.79
1030.5
183.01
62.7907
31.2445
20.9533
16.6048
14.3256
12.9665
12.0999
11.5289
11.1445
10.8811
10.6988
10.5734
10.4911
10.4444
10.4302
10.4481
10.5013
10.5901
10.7166
10.8847
11.1005
11.3733
11.7194
12.1685
12.7773
13.6535
15.008
17.2812
21.6043
31.8511
63.8585
187.77
1060.9
1030.51
183.064
62.8132
31.2812
21.0051
16.662
14.3842
13.0253
12.1586
11.5869
11.2007
10.9349
10.7495
10.6206
10.5345
10.4838
10.4655
10.4791
10.5275
10.6108
10.7312
10.8923
11.1004
11.365
11.7029
12.1449
12.749
13.6239
14.9804
17.2575
21.5876
31.8418
63.8415
187.758
1061.01
1030.52
183.12
62.8384
31.3198
21.0585
16.7207
14.4443
13.0854
12.2185
11.6458
11.2577
10.9892
10.8004
10.6678
10.5777
10.5229
10.5004
10.5096
10.5533
10.6314
10.7458
10.9003
11.1009
11.3575
11.6874
12.1225
12.7216
13.5947
14.9523
17.2324
21.5687
31.8296
63.8218
187.744
1061.12
1030.53
183.182
62.8678
31.3611
21.1139
16.7812
14.506
13.147
12.2796
11.7057
11.3156
11.044
10.8516
10.7149
10.6206
10.5617
10.5349
10.5398
10.5789
10.6519
10.7607
10.9089
11.1024
11.3515
11.6737
12.1019
12.696
13.5669
14.925
17.2073
21.5489
31.8161
63.8007
187.73
1061.23
1030.54
183.247
62.9002
31.4042
21.1709
16.8434
14.5692
13.21
12.342
11.7668
11.3742
11.0993
10.903
10.762
10.6633
10.6
10.5689
10.5695
10.6041
10.6724
10.7759
10.9181
11.105
11.347
11.662
12.0837
12.6727
13.5411
14.8991
17.1827
21.5286
31.801
63.7779
187.715
1061.33
1030.55
183.316
62.9353
31.4493
21.2299
16.9074
14.6342
13.2746
12.4058
11.8291
11.4339
11.1553
10.9546
10.809
10.7057
10.6378
10.6023
10.5986
10.6289
10.6926
10.7911
10.9278
11.1087
11.344
11.6523
12.0677
12.6518
13.5175
14.8749
17.1592
21.5082
31.7847
63.7535
187.7
1061.44
1030.56
183.388
62.9727
31.4961
21.2906
16.9733
14.7012
13.341
12.4713
11.8928
11.4946
11.2119
11.0065
10.856
10.7477
10.6751
10.6351
10.627
10.6531
10.7124
10.8063
10.9379
11.1132
11.3425
11.6447
12.0543
12.6337
13.4967
14.8533
17.1378
21.4895
31.7697
63.7313
187.688
1061.55
1030.57
183.463
63.0129
31.5452
21.3538
17.0417
14.7704
13.4095
12.5387
11.9581
11.5565
11.2694
11.0588
10.9029
10.7893
10.7117
10.667
10.6547
10.6766
10.7318
10.8213
10.9483
11.1185
11.3424
11.6389
12.0433
12.6184
13.4787
14.8344
17.1188
21.4726
31.7562
63.7115
187.68
1061.67
1030.58
183.542
63.0556
31.5964
21.4192
17.1124
14.842
13.4802
12.608
12.0251
11.6197
11.3276
11.1114
10.9496
10.8304
10.7475
10.6981
10.6813
10.6992
10.7504
10.8358
10.9586
11.1242
11.3432
11.6349
12.0345
12.6058
13.4636
14.8182
17.1024
21.4578
31.7439
63.6933
187.674
1061.79
1030.59
183.624
63.0995
31.6488
21.4865
17.1854
14.916
13.5532
12.6795
12.0939
11.6842
11.3866
11.1642
10.9961
10.8708
10.7823
10.7279
10.7067
10.7205
10.7678
10.8495
10.9684
11.1301
11.3448
11.6321
12.0277
12.5956
13.4513
14.805
17.0889
21.4458
31.7343
63.6788
187.673
1061.91
1030.6
183.708
63.1449
31.7026
21.5557
17.2608
14.9926
13.6289
12.7534
12.1647
11.75
11.4462
11.2169
11.0419
10.9102
10.8159
10.7562
10.7305
10.7403
10.784
10.8622
10.9776
11.1357
11.3467
11.6303
12.0225
12.5875
13.4414
14.7944
17.078
21.4361
31.7268
63.6675
187.676
1062.03
1030.61
183.794
63.1916
31.7577
21.6269
17.3386
15.072
13.7079
12.8302
12.2373
11.8168
11.5059
11.2692
11.0869
10.9483
10.8478
10.7828
10.7525
10.7583
10.7984
10.8733
10.9856
11.1406
11.3486
11.6291
12.0185
12.5812
13.4338
14.7864
17.0701
21.4295
31.7225
63.6607
187.683
1062.16
1030.62
183.881
63.2382
31.8142
21.7004
17.4191
15.1545
13.7904
12.9099
12.3117
11.8843
11.5656
11.3207
11.1305
10.9848
10.878
10.8075
10.7725
10.7744
10.811
10.8829
10.9924
11.1447
11.3501
11.6281
12.0153
12.5764
13.4282
14.7809
17.0651
21.4262
31.7222
63.6596
187.696
1062.29
1030.63
183.97
63.2861
31.873
21.7771
17.5031
15.2402
13.8756
12.9921
12.3881
11.953
11.6256
11.3719
11.1733
11.0199
10.9064
10.8302
10.7904
10.7883
10.8215
10.8905
10.9975
11.1475
11.3508
11.6269
12.0125
12.5727
13.4242
14.7773
17.0622
21.4251
31.7238
63.6607
187.71
1062.42
1030.64
184.06
63.3348
31.9341
21.8572
17.5908
15.3294
13.9641
13.0771
12.4667
12.0232
11.6864
11.423
11.2153
11.0537
10.933
10.8507
10.806
10.7998
10.8297
10.8959
11.0006
11.1487
11.3502
11.6249
12.0096
12.5694
13.4213
14.775
17.061
21.4261
31.7279
63.6654
187.727
1062.56
1030.65
184.154
63.3873
31.9992
21.9417
17.6828
15.4227
14.0564
13.1653
12.5477
12.0949
11.7477
11.474
11.2564
11.086
10.9577
10.869
10.8191
10.8087
10.8352
10.8988
11.0014
11.1479
11.3481
11.6219
12.0061
12.5662
13.419
14.7737
17.0612
21.4288
31.7342
63.6735
187.747
1062.69
1030.66
184.251
63.4407
32.0666
22.0299
17.7787
15.5198
14.152
13.2563
12.6309
12.1679
11.8095
11.5244
11.2963
11.1164
10.9801
10.8847
10.8293
10.8146
10.8378
10.8988
10.9995
11.1446
11.344
11.6173
12.0016
12.5625
13.4165
14.7726
17.0618
21.4319
31.7409
63.6822
187.766
1062.83
1030.68
184.349
63.4949
32.1365
22.1218
17.8789
15.621
14.2515
13.3507
12.7165
12.2423
11.8715
11.5742
11.3347
11.1449
11
10.8975
10.8365
10.8173
10.8371
10.8956
10.9946
11.1386
11.3374
11.6108
11.9958
12.558
13.4137
14.7716
17.0631
21.4361
31.7493
63.694
187.788
1062.97
1030.69
184.454
63.5537
32.2108
22.2187
17.984
15.7268
14.3551
13.4485
12.8044
12.3179
11.9336
11.623
11.3714
11.1708
11.0169
10.907
10.8401
10.8164
10.8328
10.8889
10.9863
11.1295
11.3282
11.602
11.9881
12.5521
13.41
14.7701
17.0641
21.4404
31.7583
63.7072
187.81
1063.11
1030.7
184.558
63.6108
32.286
22.3189
18.0933
15.8369
14.4626
13.5494
12.8944
12.3941
11.995
11.6701
11.4055
11.1936
11.0302
10.9126
10.8397
10.8114
10.8244
10.8782
10.9743
11.1169
11.3158
11.5906
11.9784
12.5447
13.4053
14.7681
17.065
21.4451
31.7683
63.7231
187.835
1063.26
1030.72
184.664
63.6673
32.3626
22.4226
18.2074
15.9519
14.5747
13.6539
12.9864
12.4706
12.0553
11.7149
11.4364
11.2126
11.0394
10.9139
10.8349
10.8019
10.8115
10.8631
10.9581
11.1005
11.3
11.5763
11.9663
12.5355
13.3993
14.7653
17.0657
21.45
31.7795
63.7413
187.861
1063.4
1030.73
184.77
63.7226
32.4404
22.5301
18.3266
16.0726
14.6918
13.7618
13.0798
12.5466
12.1135
11.7564
11.4633
11.2272
11.0438
10.9103
10.825
10.7875
10.7938
10.8435
10.9375
11.08
11.2806
11.5588
11.9516
12.5242
13.3919
14.7618
17.0663
21.4555
31.7922
63.7625
187.888
1063.55
1030.74
184.875
63.7766
32.5201
22.6414
18.4512
16.2005
14.8149
13.8727
13.1735
12.621
12.1687
11.7941
11.4858
11.237
11.0432
10.9014
10.81
10.7678
10.771
10.8188
10.9122
11.0552
11.2572
11.5379
11.934
12.5107
13.3829
14.7572
17.0663
21.4612
31.8063
63.787
187.917
1063.7
1030.76
184.981
63.8304
32.6029
22.7575
18.5809
16.3343
14.9427
13.9859
13.2673
12.6937
12.2209
11.8279
11.5037
11.2417
11.0373
10.8872
10.7895
10.7428
10.7429
10.789
10.882
11.0258
11.2298
11.5135
11.9135
12.495
13.3723
14.7518
17.0664
21.4678
31.8223
63.8147
187.947
1063.85
1030.77
185.087
63.8853
32.6898
22.8795
18.7162
16.4727
15.0741
14.1015
13.3619
12.7655
12.2707
11.858
11.517
11.2412
11.0258
10.8671
10.763
10.7118
10.709
10.7536
10.8465
10.9914
11.1977
11.4849
11.8895
12.4763
13.3595
14.7447
17.0654
21.4739
31.8388
63.8441
187.976
1064
1030.79
185.194
63.9388
32.7786
23.0063
18.8574
16.6168
15.2101
14.2195
13.4562
12.8346
12.3161
11.8825
11.5241
11.2341
11.0075
10.8403
10.7299
10.6743
10.6688
10.7121
10.8052
10.9516
11.1608
11.4522
11.862
12.4549
13.3446
14.7365
17.064
21.4805
31.8572
63.8776
188.008
1064.15
1030.81
185.298
63.9881
32.8686
23.1378
19.004
16.7658
15.3497
14.3387
13.5492
12.9002
12.3562
11.9007
11.5241
11.2196
10.9818
10.8061
10.6897
10.6299
10.6218
10.6642
10.7578
10.9061
11.1187
11.4147
11.8303
12.4301
13.3272
14.7264
17.0615
21.4869
31.8767
63.9138
188.04
1064.31
1030.82
185.401
64.0352
32.9605
23.2751
19.1577
16.9213
15.4936
14.4591
13.6402
12.9611
12.3898
11.9112
11.5159
11.1969
10.9478
10.764
10.6417
10.578
10.5678
10.6096
10.7041
10.8548
11.0713
11.3725
11.7947
12.402
13.3071
14.7144
17.0579
21.4926
31.8962
63.9509
188.071
1064.47
1030.84
185.497
64.0761
33.0522
23.4173
19.3185
17.0831
15.6409
14.579
13.7268
13.015
12.4149
11.9125
11.4984
11.1648
10.9049
10.7131
10.5854
10.5183
10.5063
10.548
10.6438
10.7974
11.0181
11.3252
11.7545
12.37
13.2839
14.6999
17.0524
21.4974
31.9162
63.9901
188.1
1064.63
1030.86
185.586
64.1113
33.144
23.5647
19.4885
17.2526
15.791
14.6964
13.8072
13.0605
12.4305
11.9039
11.471
11.1231
10.8527
10.6535
10.5209
10.4508
10.4376
10.4795
10.5771
10.7341
10.9597
11.2732
11.7103
12.3346
13.2581
14.6836
17.0458
21.5019
31.9369
64.0316
188.131
1064.79
1030.87
185.671
64.1442
33.2385
23.7174
19.6691
17.4294
15.9409
14.8086
13.8797
13.0966
12.4361
11.8851
11.4335
11.0716
10.7911
10.585
10.448
10.3754
10.3613
10.4041
10.5039
10.6647
10.8957
11.2161
11.6615
12.2953
13.2289
14.6645
17.0371
21.5049
31.9573
64.074
188.158
1064.95
1030.89
185.753
64.1747
33.3369
23.876
19.8532
17.6085
16.0917
14.9189
13.9472
13.1252
12.4323
11.856
11.3853
11.0097
10.7196
10.5071
10.3663
10.2919
10.2776
10.3217
10.4244
10.5895
10.8265
11.1544
11.6086
12.2526
13.1971
14.6435
17.0272
21.5074
31.9781
64.1179
188.185
1065.13
1030.91
185.828
64.1983
33.4354
24.0403
20.0451
17.7936
16.2435
15.0246
14.0054
13.1418
12.4154
11.8136
11.3242
10.9355
10.6367
10.4188
10.275
10.1996
10.1859
10.232
10.3382
10.5081
10.7515
11.0872
11.5507
12.2053
13.161
14.6186
17.0139
21.507
31.997
64.1606
188.207
1065.29
1030.92
185.891
64.2133
33.5345
24.2095
20.2417
17.9812
16.3934
15.1234
14.0531
13.1454
12.3844
11.757
11.2496
10.8487
10.5422
10.3199
10.1742
10.0987
10.0866
10.1355
10.2458
10.4213
10.6716
11.0157
11.489
12.1546
13.1222
14.5917
16.999
21.5058
32.0162
64.2049
188.229
1065.47
1030.94
185.949
64.2227
33.6344
24.3856
20.4461
18.1732
16.5414
15.2138
14.0878
13.1338
12.3376
11.6849
11.1603
10.7484
10.4354
10.21
10.0636
9.98917
9.97945
10.0321
10.1473
10.3288
10.5864
10.9393
11.4226
12.0994
13.0788
14.5603
16.98
21.5007
32.0323
64.2462
188.244
1065.64
1030.96
185.991
64.2159
33.7284
24.5657
20.6562
18.3664
16.683
15.2914
14.1058
13.1041
12.2728
11.5959
11.0555
10.6341
10.3162
10.0891
9.94336
9.87112
9.86498
9.92235
10.0433
10.2317
10.4974
10.8595
11.3532
12.0415
13.0332
14.527
16.9593
21.4941
32.0471
64.2857
188.256
1065.82
1030.98
186.016
64.1903
33.8133
24.7511
20.8741
18.5598
16.8155
15.3534
14.1056
13.0557
12.19
11.4901
10.9354
10.5061
10.1849
9.95757
9.81373
9.74491
9.74342
9.80644
9.93394
10.1299
10.404
10.7756
11.2797
11.9795
12.9833
14.4891
16.9338
21.4828
32.0578
64.3211
188.261
1066
1031
186
64.119
33.8759
24.9407
21.0971
18.746
16.9322
15.3964
14.0856
12.988
12.089
11.3676
10.8004
10.3649
10.0418
9.8158
9.67528
9.61118
9.61554
9.68532
9.82041
10.0247
10.3081
10.6898
11.2049
11.9164
12.9323
14.4502
16.9072
21.4699
32.0657
64.3516
188.26
1066.2
1031.01
185.759
63.9319
33.9021
25.1191
21.3168
18.9297
17.0423
15.4273
14.0495
12.9024
11.9701
11.2283
10.65
10.21
9.88684
9.66367
9.52789
9.46977
9.48111
9.55865
9.70216
9.91555
10.2086
10.6007
11.1267
11.8496
12.8771
14.4065
16.8753
21.4512
32.0679
64.3757
188.251
1066.38
1031.03
184.28
63.4986
33.8881
25.3036
21.5462
19.1126
17.1396
15.4379
13.9902
12.7938
11.8298
11.0699
10.483
10.0409
9.7198
9.50137
9.372
9.32138
9.34111
9.42769
9.58083
9.80438
10.1082
10.5114
11.0489
11.7836
12.8229
14.3639
16.8442
21.4327
32.0691
64.3978
188.243
1066.59
1031.05
181.638
62.9823
33.9018
25.5101
21.7838
19.291
17.2225
15.4283
13.9086
12.6632
11.6693
10.8936
10.3005
9.85847
9.54145
9.32951
9.20805
9.16624
9.1955
9.29214
9.45575
9.69015
10.0051
10.4197
10.9687
11.7148
12.7653
14.3173
16.8085
21.4092
32.0658
64.4149
188.227
1066.78
1031.06
179.827
62.7063
33.9929
25.7452
22.0297
19.4625
17.2872
15.3945
13.8012
12.508
11.4869
10.6984
10.1022
9.66293
9.35233
9.14889
9.03708
9.00563
9.04584
9.15387
9.32923
9.57568
9.90294
10.33
10.8913
11.6493
12.7113
14.2744
16.7763
21.3881
32.0622
64.4298
188.214
1067.01
1031.08
178.941
62.5565
34.1049
25.9852
22.272
19.6198
17.3285
15.333
13.6659
12.3273
11.2824
10.4847
9.88857
9.45491
9.15299
8.9599
8.85927
8.83944
8.89169
9.01201
9.19987
9.45897
9.79892
10.2385
10.812
11.5815
12.6541
14.2275
16.7393
21.3619
32.0541
64.4397
188.193
1067.22
1031.09
178.477
62.4596
34.2372
26.2372
22.5139
19.7617
17.3438
15.2413
13.5013
12.1206
11.056
10.2534
9.66097
9.23588
8.94505
8.76428
8.67646
8.6697
8.73533
8.86925
9.07092
9.344
9.698
10.1515
10.7384
11.5201
12.6038
14.1879
16.7095
21.3411
32.0478
64.449
188.178
1067.47
1031.11
178.226
62.3913
34.3812
26.4937
22.7473
19.8804
17.3266
15.1155
13.3053
11.8872
10.8084
10.0056
9.42072
9.00712
8.72959
8.56275
8.48894
8.49618
8.57591
8.72402
8.93992
9.22726
9.59539
10.0626
10.6624
11.4555
12.5494
14.1431
16.6736
21.314
32.0361
64.4522
188.152
1067.69
1031.12
178.071
62.3325
34.535
26.7565
22.97
19.9701
17.2712
14.9511
13.0756
11.6268
10.5403
9.74271
9.16969
8.7708
8.50888
8.35771
8.29925
8.32161
8.41654
8.57997
8.81139
9.11442
9.49827
9.98088
10.5951
11.4009
12.5058
14.1099
16.6491
21.296
32.0283
64.4567
188.138
1067.97
1031.14
177.968
62.283
34.699
27.0228
23.1742
20.0226
17.1728
14.7469
12.8131
11.3413
10.254
9.46715
8.91015
8.52887
8.28448
8.15011
8.10758
8.14531
8.25548
8.43419
8.681
8.9995
9.39867
9.89602
10.5238
11.341
12.4555
14.0685
16.6156
21.2692
32.0137
64.4538
188.112
1068.2
1031.15
177.88
62.2328
34.8721
27.2869
23.3502
20.0306
17.0284
14.5016
12.5169
11.0303
9.94942
9.17958
8.64342
8.28334
8.05886
7.9426
7.91667
7.97019
8.09614
8.29096
8.5544
8.89003
9.3066
9.82103
10.4646
11.2949
12.4204
14.0437
16.5984
21.2557
32.0057
64.4552
188.103
1068.5
1031.16
177.808
62.1881
35.0438
27.5361
23.501
20.0048
16.8456
14.2193
12.1897
10.6954
9.62794
8.88126
8.37087
8.03526
7.8323
7.73478
7.72527
7.79373
7.93425
8.1442
8.42356
8.77577
9.20916
9.74001
10.3986
11.2412
12.3761
14.0075
16.5693
21.2323
31.9942
64.4569
188.088
1068.74
1031.17
177.712
62.1257
35.2128
27.7771
23.6212
19.9299
16.6091
13.889
11.825
10.334
9.28921
8.5724
8.09217
7.78316
7.60325
7.52619
7.53494
7.62001
7.77614
8.00173
8.29813
8.66892
9.12197
9.67276
10.3504
11.2098
12.3571
13.9967
16.5643
21.229
31.9953
64.4706
188.099
1069.07
1031.18
177.616
62.0703
35.3807
27.9982
23.7053
19.8107
16.3288
13.5218
11.4327
9.95464
8.94022
8.25824
7.8091
7.5268
7.37068
7.31491
7.34271
7.44507
7.61729
7.8581
8.16998
8.55766
9.02882
9.59802
10.2931
11.1674
12.3252
13.9716
16.5454
21.2152
31.9938
64.4831
188.093
1069.31
1031.18
177.489
61.9993
35.5443
28.2012
23.7487
19.6361
15.9925
13.1081
11.0071
9.55362
8.57757
7.93472
7.51953
7.26641
7.13623
7.10373
7.15246
7.27408
7.46453
7.72275
8.05234
8.45968
8.95247
9.54433
10.2614
11.1547
12.3253
13.9788
16.5565
21.2241
32.0026
64.5023
188.111
1069.67
1031.19
177.357
61.9356
35.7042
28.3766
23.7456
19.4089
15.6088
12.6587
10.5586
9.1402
8.20928
7.60647
7.2251
7.00192
6.89837
6.88969
6.95972
7.10076
7.30943
7.58488
7.93102
8.35541
8.86685
9.47841
10.2147
11.1242
12.3057
13.9656
16.5487
21.2195
32.0075
64.5179
188.107
1069.92
1031.2
177.191
61.8589
35.8577
28.5232
23.6888
19.1175
15.1669
12.1657
10.0814
8.7092
7.82989
7.27109
6.92649
6.73562
6.66076
6.67781
6.77102
6.93344
7.16266
7.45814
7.8241
8.26926
8.80386
9.44039
10.2017
11.1339
12.3323
13.9998
16.5811
21.2441
32.027
64.5456
188.135
1070.31
1031.2
177.027
61.7973
36.0064
28.6335
23.5761
18.768
14.6776
11.6417
9.58876
8.27239
7.44608
6.93123
6.62424
6.46629
6.42055
6.46355
6.57982
6.7632
7.01217
7.32643
7.71027
8.17343
8.72775
9.3851
10.1667
11.1167
12.3279
14
16.578
21.2351
32.0186
64.541
188.118
1070.55
1031.2
176.821
61.7201
36.1435
28.7026
23.3965
18.3466
14.1284
11.0762
9.0716
7.82263
7.05434
6.58667
6.3203
6.19774
6.18332
6.25437
6.39581
6.60244
6.87398
7.21054
7.61668
8.10339
8.68429
9.37044
10.1809
11.1569
12.3872
14.0659
16.6381
21.285
32.073
64.6392
188.252
1070.99
1031.2
176.622
61.6647
36.2725
28.7257
23.1532
17.8671
13.5392
10.4901
8.54674
7.37059
6.66206
6.2422
6.0166
5.92928
5.94576
6.04421
6.20978
6.43822
6.73052
7.08715
7.5129
8.0196
8.6217
9.3302
10.1627
11.1581
12.4019
14.0854
16.6542
21.291
32.0496
64.4429
186.902
1071.21
1031.2
176.377
61.5924
36.3852
28.6956
22.8294
17.3063
12.8886
9.86948
8.00777
6.91039
6.26451
5.89625
5.71456
5.66523
5.71518
5.84348
6.03561
6.28844
6.60469
6.98541
7.43595
7.96961
8.60153
9.34188
10.206
11.2285
12.4882
14.1681
16.7103
21.2915
31.9329
63.9535
184.314
1071.7
1031.19
176.15
61.5502
36.4855
28.6122
22.443
16.6976
12.2125
9.24254
7.47336
6.45531
5.87128
5.55457
5.41628
5.40414
5.48651
5.64323
5.85993
6.13459
6.47162
6.87253
7.34392
7.89914
8.55316
9.31697
10.2043
11.2467
12.5191
14.1993
16.7246
21.2643
31.8161
63.5503
182.545
1071.9
1031.19
175.865
61.4847
36.5611
28.4609
21.9635
16.005
11.4813
8.5887
6.92977
5.9996
5.48221
5.22027
5.12787
5.15518
5.27256
5.46028
5.70362
6.00249
6.36355
6.78912
7.28821
7.87411
8.56082
9.35965
10.281
11.3511
12.6377
14.31
16.7949
21.2595
31.7219
63.3118
181.631
1072.46
1031.18
175.612
61.4576
36.6189
28.2522
21.4282
15.2837
10.7511
7.95391
6.40517
5.55888
5.10549
4.89598
4.84727
4.91186
5.06203
5.27892
5.54631
5.86505
6.24489
6.69167
7.21411
7.8216
8.53055
9.35449
10.3019
11.3958
12.7004
14.3804
16.8578
21.2984
31.7297
63.2314
181.156
1072.61
1031.17
175.284
61.3981
36.644
27.9687
20.797
14.4826
9.98022
7.31496
5.88334
5.12466
4.74109
4.58762
4.585
4.68877
4.87356
5.12308
5.41794
5.75908
6.16526
6.64195
7.19461
7.83372
8.5777
9.44025
10.4249
11.5475
12.863
14.5261
16.9497
21.3072
31.674
63.1489
180.914
1073.26
1031.16
175.02
61.39
36.6415
27.6338
20.145
13.7021
9.25397
6.7257
5.40535
4.72668
4.40577
4.30165
4.33869
4.47526
4.68811
4.96333
5.28193
5.64504
6.07315
6.56991
7.14157
7.79847
8.56169
9.44871
10.4614
11.6126
12.9537
14.6356
17.068
21.4278
31.8009
63.2504
180.867
1073.34
1031.15
174.633
61.3118
36.5805
27.2128
19.4018
12.8609
8.51115
6.15129
4.95538
4.36287
4.10839
4.0559
4.13409
4.30473
4.54717
4.84987
5.19645
5.5877
6.04416
6.57055
7.1743
7.86673
8.66938
9.59879
10.6518
11.8317
13.1788
14.8319
17.193
21.45
31.7527
63.1989
180.791
1074.11
1031.13
174.37
61.3009
36.4671
26.759
18.7165
12.1457
7.91325
5.67814
4.57709
4.05849
3.86022
3.84998
3.96032
4.15616
4.41924
4.73666
5.09159
5.49331
5.96527
6.50562
7.12197
7.82644
8.64026
9.58398
10.66
11.8691
13.2464
14.9248
17.3042
21.5816
31.9133
63.3709
180.912
1074.11
1031.11
173.909
61.1366
36.2195
26.1886
17.9581
11.4069
7.33898
5.25507
4.26431
3.82966
3.69392
3.73123
3.87986
4.10943
4.40231
4.73951
5.10545
5.5171
6.00687
6.58282
7.24489
7.99779
8.86297
9.85943
10.984
12.2268
13.6126
15.2649
17.5788
21.7624
32.0449
63.4951
180.968
1075
1031.09
173.593
60.9695
35.7748
25.5518
17.3915
10.9782
7.0315
5.02057
4.0816
3.69034
3.58721
3.64768
3.81284
4.05501
4.35434
4.68943
5.05104
5.4555
5.93177
6.49571
7.15526
7.90581
8.76221
9.75084
10.8786
12.1324
13.5277
15.1746
17.4622
21.6171
31.8841
63.3711
180.961
1074.92
1031.06
173.087
60.5403
34.9179
24.4967
16.6178
10.559
6.81897
4.89401
4.00197
3.64784
3.57483
3.6614
3.85275
4.12239
4.44438
4.79931
5.18852
5.62554
6.13309
6.73026
7.44431
8.27362
9.20708
10.2706
11.4694
12.7826
14.2215
15.9009
18.2195
22.4173
32.8006
64.3299
181.594
1075.94
1031.03
172.402
59.7575
33.439
22.9029
15.7205
10.3992
6.94445
5.01662
4.05473
3.63689
3.51666
3.5692
3.73822
3.99288
4.30193
4.65241
5.0469
5.49045
5.9947
6.57496
7.2627
8.07926
9.00479
10.0426
11.2043
12.4673
13.8249
15.3666
17.48
21.429
31.5581
62.9793
180.598
1075.83
1030.99
171.997
58.9973
31.3762
20.2193
13.6936
9.55614
6.95971
5.37026
4.42556
3.9
3.65363
3.60052
3.69494
3.90612
4.19956
4.56763
5.01104
5.52721
6.11566
6.78079
7.54115
8.44412
9.5241
10.7313
12.0436
13.4665
14.9986
16.7391
19.0892
23.3306
33.8574
65.5176
182.518
1076.87
1030.93
170.22
57.4099
29.0928
17.4807
11.3693
8.18699
6.55972
5.66299
5.09077
4.66768
4.32553
4.04864
3.8505
3.76146
3.81811
4.03216
4.37236
4.83891
5.41968
6.10508
6.89227
7.79614
8.88689
10.2008
11.6162
13.0184
14.3576
15.7441
17.6316
21.3367
31.2068
62.1051
179.318
1076.91
1030.87
171.256
57.7276
27.9214
16.0129
10.398
7.78017
6.57202
5.9865
5.66426
5.44861
5.27126
5.10107
4.92304
4.73135
4.5317
4.35138
4.25229
4.32476
4.63785
5.18438
5.94146
6.87657
7.97436
9.26134
10.8962
12.8835
14.9068
16.8739
19.0906
22.9169
32.9804
64.4997
182.014
1077.75
1030.82
170.189
55.6664
25.2508
14.0978
9.70418
7.94519
7.14117
6.65942
6.28834
5.96849
5.68888
5.44934
5.24963
5.08176
4.92845
4.78008
4.66081
4.62254
4.72404
5.03109
5.57803
6.36907
7.4251
8.80973
10.5741
12.5672
14.5731
16.5861
18.9354
22.8351
32.6105
63.4953
181.383
1078.04
1030.81
168.927
52.0763
22.2284
13.4208
10.7632
9.77181
9.16329
8.60656
8.03061
7.43365
6.8325
6.24749
5.69602
5.18956
4.73274
4.32537
3.96852
3.67133
3.4524
3.33828
3.36275
3.56276
3.95319
4.5363
5.40885
6.78932
8.81448
11.1044
13.7943
18.7669
31.8338
68.145
188.445
1078.89
1030.69
151.134
38.2512
17.1248
14.1937
13.7459
13.2657
12.635
11.923
11.1722
10.4163
9.68697
9.01404
8.42411
7.9401
7.58142
7.36565
7.31241
7.45974
7.77068
8.26595
8.97545
9.92677
11.1561
12.7127
14.6596
17.0958
20.1629
24.1655
29.7943
38.6321
54.4731
88.9703
201.439
1080.27
526.842
24.144
24.3899
24.4548
24.4824
24.4987
24.5069
24.5088
24.5059
24.4995
24.4904
24.4792
24.4666
24.4529
24.4385
24.4237
24.4086
24.3935
24.3783
24.3627
24.3467
24.33
24.3123
24.2932
24.2722
24.249
24.2234
24.1956
24.1674
24.1431
24.1295
24.1335
24.1569
24.197
555.953
526.413
22.9932
22.996
22.999
23.0024
23.0062
23.0105
23.0152
23.0203
23.0258
23.0315
23.0374
23.0431
23.0488
23.0541
23.0591
23.0637
23.0679
23.0715
23.0746
23.0771
23.0789
23.0799
23.0801
23.0793
23.0775
23.0745
23.0707
23.0664
23.0631
23.0637
23.0729
23.0967
23.1375
531.548
1029.84
173.002
63.3784
33.8801
22.438
16.7799
13.45
11.2378
9.64727
8.44666
7.5147
6.78195
6.2059
5.75923
5.42381
5.18727
5.04091
4.9798
4.99608
5.08439
5.24256
5.46691
5.75248
6.09264
6.47841
6.89769
7.33489
7.77237
8.20761
8.79232
10.5401
17.7026
45.1119
159.355
1040.49
1029.84
175.237
65.9664
36.1424
24.1736
18.0151
14.3183
11.8942
10.2183
9.01289
8.11366
7.41876
6.86392
6.40834
6.02569
5.69861
5.41648
5.17699
4.97693
4.81381
4.68784
4.60222
4.56146
4.57089
4.63568
4.75893
4.93941
5.17635
5.52699
6.38719
9.37249
19.3228
50.3927
166.599
1041.07
1029.86
175
64.806
33.869
21.0085
14.3862
10.6427
8.44464
7.10024
6.21571
5.57669
5.07693
4.66884
4.33291
4.06112
3.84873
3.69075
3.58111
3.51318
3.4794
3.47278
3.48767
3.52077
3.57195
3.6455
3.75339
3.92671
4.25353
4.99028
6.84031
11.5454
23.3319
55.2564
170.641
1042.05
1029.87
172.7
61.6378
30.628
18.3196
12.6255
9.82994
8.34491
7.42715
6.75155
6.1866
5.68237
5.223
4.80683
4.43742
4.11928
3.85585
3.64811
3.49408
3.38962
3.32892
3.30534
3.31285
3.34872
3.41808
3.54313
3.78345
4.28192
5.36432
7.73787
12.9208
24.7069
56.0102
170.726
1042.92
1029.88
172.587
61.5716
30.7654
18.661
13.0692
10.2803
8.76562
7.82442
7.14348
6.58477
6.08622
5.62464
5.19584
4.80082
4.44221
4.12408
3.85187
3.62867
3.4547
3.33121
3.25763
3.23393
3.26361
3.35968
3.55631
3.93155
4.64994
6.0386
8.72558
14.0406
25.6333
56.605
171.12
1043.7
1029.88
171.916
60.7281
29.9189
17.9516
12.5722
9.9605
8.53938
7.63127
6.95875
6.40413
5.91452
5.47018
5.06469
4.69465
4.35893
4.05857
3.79626
3.57487
3.39744
3.26818
3.19212
3.17692
3.23601
3.39479
3.70316
4.25435
5.20976
6.84965
9.68851
14.9101
26.1481
56.788
171.311
1044.45
1029.89
172.018
60.9587
30.2475
18.3274
12.9558
10.3377
8.91232
8.00437
7.33338
6.778
6.28225
5.82493
5.40197
5.01182
4.65254
4.32466
4.03106
3.7749
3.56006
3.39325
3.28312
3.24261
3.29272
3.46929
3.83675
4.50724
5.64795
7.49454
10.4507
15.5642
26.4654
56.8425
171.49
1045.07
1029.89
172.191
61.0939
30.2761
18.3107
12.9512
10.337
8.88759
7.94717
7.25046
6.68166
6.18695
5.74417
5.34435
4.98068
4.648
4.34436
4.07047
3.82866
3.62334
3.4621
3.35597
3.32201
3.38747
3.59762
4.03153
4.821
6.13886
8.17966
11.2471
16.282
26.9447
57.1949
171.983
1045.68
1029.9
172.156
61.0539
30.2357
18.307
13.0024
10.4315
9.00787
8.08126
7.39148
6.8254
6.33037
5.88516
5.48288
5.11817
4.78578
4.48349
4.21168
3.97179
3.76758
3.60704
3.50208
3.47162
3.54639
3.77763
4.25612
5.13155
6.58453
8.78259
11.9437
16.8979
27.3054
57.3852
172.289
1046.22
1029.91
172.391
61.2798
30.3949
18.4421
13.1395
10.5524
9.09409
8.13183
7.41481
6.8323
6.33152
5.88979
5.49696
5.14486
4.82706
4.54053
4.28525
4.06209
3.87448
3.73091
3.64421
3.63504
3.73713
4.0067
4.54498
5.51488
7.09466
9.42352
12.6499
17.5264
27.7391
57.7356
172.762
1046.75
1029.91
172.377
61.2199
30.2927
18.3655
13.1205
10.5745
9.13661
8.18516
7.47508
6.89753
6.40081
5.96242
5.57349
5.22697
4.91639
4.63884
4.39465
4.18432
4.01081
3.88333
3.81538
3.82897
3.96023
4.27054
4.86942
5.92437
7.61087
10.043
13.309
18.0918
28.0952
57.9843
173.115
1047.23
1029.92
172.537
61.3547
30.3851
18.465
13.2396
10.6884
9.22864
8.25367
7.52581
6.93825
6.43888
6.00336
5.62071
5.28294
4.98322
4.71849
4.48941
4.29623
4.14159
4.03559
3.99269
4.0364
4.20541
4.5664
5.23578
6.38027
8.16574
10.6782
13.9556
18.6349
28.4574
58.2872
173.528
1047.7
1029.93
172.58
61.3426
30.3228
18.4261
13.2488
10.7239
9.27247
8.30098
7.57622
6.99225
6.49734
6.06695
5.68993
5.35919
5.06856
4.81507
4.59995
4.42322
4.28705
4.20254
4.18512
4.2597
4.46726
4.87952
5.61843
6.84672
8.71814
11.2917
14.5619
19.1295
28.7713
58.5394
173.881
1048.14
1029.94
172.696
61.4079
30.3504
18.4764
13.329
10.8076
9.34519
8.36104
7.62756
7.0403
6.54679
6.12118
5.75104
5.42886
5.14864
4.90768
4.7079
4.54921
4.43331
4.37238
4.38298
4.49167
4.74209
5.21043
6.02077
7.33003
9.27703
11.8935
15.1383
19.5912
29.0741
58.8111
174.253
1048.56
1029.94
172.782
61.4242
30.3198
18.474
13.368
10.8629
9.40226
8.41761
7.68493
7.10025
6.611
6.19081
5.82672
5.51182
5.24077
5.01125
4.82599
4.68474
4.58861
4.55081
4.58901
4.73136
5.02438
5.54775
6.42454
7.80529
9.81382
12.4575
15.6665
20.0072
29.3423
59.0536
174.59
1048.97
1029.95
172.903
61.463
30.3198
18.5034
13.4292
10.9301
9.46378
8.47271
7.73688
7.15307
6.66797
6.25412
5.89761
5.5914
5.33061
5.11356
4.94369
4.82083
4.74556
4.73195
4.79877
4.9757
5.31218
5.89071
6.83157
8.27699
10.3347
12.9898
16.1517
20.3849
29.5948
59.303
174.93
1049.35
1029.96
173.041
61.4938
30.3061
18.5227
13.4851
10.9966
9.52954
8.53675
7.80122
7.22008
6.7396
6.33169
5.98183
5.68272
5.43046
5.22453
5.06889
4.96342
4.90824
4.91802
5.01258
5.22302
5.60124
6.23117
7.22915
8.72841
10.8214
13.4746
16.5841
20.7179
29.8178
59.5286
175.239
1049.72
1029.97
173.228
61.5405
30.3082
18.5554
13.5458
11.0614
9.58998
8.59329
7.85718
7.27914
6.80457
6.40438
6.063
5.77254
5.52993
5.33583
5.19467
5.10668
5.07185
5.10526
5.22774
5.472
5.8917
6.5699
7.61884
9.16221
11.2776
13.9161
16.9675
21.0116
30.0236
59.7532
175.543
1050.07
1029.98
173.494
61.6038
30.3167
18.5946
13.6137
11.1345
9.66039
8.66141
7.92573
7.351
6.88205
6.48904
6.15559
5.87334
5.63983
5.4572
5.32922
5.25624
5.24024
5.29581
5.4445
5.72055
6.17882
6.90024
7.99201
9.56816
11.693
14.3061
17.2975
21.2627
30.2021
59.9538
175.816
1050.41
1029.99
173.899
61.7074
30.3486
18.6468
13.6837
11.2034
9.72413
8.72201
7.9869
7.41635
6.95432
6.5701
6.24654
5.97468
5.75223
5.58202
5.4669
5.40797
5.41021
5.48755
5.66212
5.96909
6.46321
7.22302
8.35024
9.94913
12.0717
14.6496
17.5794
21.477
30.3637
60.1486
176.079
1050.73
1029.99
174.566
61.8775
30.407
18.7127
13.7623
11.28
9.79614
8.79185
8.0578
7.49131
7.03571
6.65977
6.34578
6.08447
5.87391
5.71585
5.61237
5.56681
5.58511
5.68219
5.88075
6.21618
6.74196
7.5339
8.68795
10.299
12.4084
14.9436
17.8124
21.6537
30.5014
60.3207
176.315
1051.04
1030
175.674
62.1587
30.5053
18.7908
13.8393
11.3501
9.86097
8.85512
8.12307
7.5616
7.11342
6.74679
6.44354
6.19426
5.9964
5.85061
5.7593
5.72728
5.76149
5.8779
6.09959
6.46119
7.01484
7.83338
9.00674
10.6206
12.7075
15.1934
18.0021
21.7983
30.6233
60.4841
176.538
1051.33
1030.01
177.518
62.5824
30.6309
18.8708
13.9153
11.4216
9.92982
8.92439
8.19516
7.63871
7.19759
6.83962
6.54634
6.30852
6.12293
5.98917
5.91036
5.89208
5.94204
6.07627
6.31829
6.70258
7.2796
8.11884
9.3041
10.9124
12.9687
15.4004
18.151
21.9125
30.7273
60.6307
176.741
1051.61
1030.02
179.847
63.0297
30.7298
18.9295
13.977
11.4834
9.99206
8.98894
8.26376
7.7133
7.28013
6.93162
6.64906
6.42298
6.24959
6.1282
6.06219
6.05776
6.12316
6.27418
6.5348
6.93929
7.53616
8.39126
9.58228
11.1781
13.1972
15.5707
18.2652
22.0013
30.8186
60.7688
176.932
1051.88
1030.03
180.8
63.1443
30.7232
18.9567
14.0318
11.5468
10.0588
9.05898
8.33803
7.79338
7.36772
7.02814
6.75581
6.54084
6.37888
6.26941
6.21578
6.22465
6.30469
6.47164
6.74906
7.17081
7.78376
8.64985
9.84075
11.4178
13.3944
15.7075
18.3483
22.0668
30.8959
60.8931
177.106
1052.14
1030.04
180.829
63.1145
30.7028
18.9891
14.0891
11.61
10.1242
9.12742
8.4109
7.8724
7.45464
7.12427
6.86232
6.65856
6.50807
6.41048
6.36908
6.39091
6.48497
6.66683
6.95932
7.39593
8.02193
8.89506
10.0811
11.6345
13.5647
15.8158
18.4056
22.1134
30.9634
61.0097
177.27
1052.4
1030.05
180.892
63.1107
30.6924
19.0241
14.1473
11.6747
10.1922
9.19917
8.48746
7.95521
7.54518
7.22375
6.97164
6.77831
6.63873
6.55245
6.52266
6.5567
6.66379
6.85926
7.16544
7.61467
8.25029
9.1264
10.3031
11.8287
13.7095
15.8986
18.4402
22.1428
31.0202
61.1153
177.421
1052.64
1030.06
180.952
63.1006
30.6804
19.059
14.2046
11.7383
10.2591
9.26998
8.56329
8.03749
7.63539
7.32301
7.08075
6.89778
6.76896
6.69374
6.6752
6.72091
6.84023
7.04817
7.36649
7.82609
8.46844
9.34422
10.508
12.0025
13.8324
15.9598
18.4564
22.1588
31.0696
61.2145
177.563
1052.88
1030.07
181.01
63.0886
30.6695
19.0955
14.2633
11.8038
10.3283
9.34333
8.64177
8.12238
7.72793
7.42422
7.19137
7.01826
6.89968
6.83494
6.82698
6.88353
7.01402
7.23306
7.56175
8.02939
8.67562
9.54787
10.6955
12.1564
13.9343
16.0014
18.4561
22.1625
31.111
61.3048
177.697
1053.11
1030.08
181.067
63.0762
30.6606
19.1329
14.3215
11.8684
10.3967
9.4161
8.71987
8.20703
7.82033
7.52527
7.30172
7.1383
7.02968
6.97502
6.97713
7.04384
7.18456
7.41347
7.75091
8.22488
8.87263
9.73833
10.867
12.2924
14.0179
16.0265
18.4427
22.1567
31.1469
61.3899
177.826
1053.34
1030.09
181.121
63.0618
30.6523
19.1715
14.381
11.9346
10.467
9.49088
8.79998
8.29358
7.91438
7.6276
7.41288
7.25867
7.15947
7.1143
7.12579
7.20182
7.35172
7.58916
7.93371
8.41198
9.0588
9.91531
11.0227
12.4108
14.0841
16.0362
18.4171
22.1419
31.1767
61.4681
177.951
1053.56
1030.1
181.175
63.0465
30.6455
19.2105
14.4397
12
10.5367
9.56524
8.87983
8.37995
8.00824
7.72964
7.52358
7.37832
7.28818
7.25202
7.27231
7.35692
7.51503
7.75979
8.10989
8.59059
9.23421
10.0793
11.1634
12.5134
14.1349
16.0329
18.3819
22.1202
31.2024
61.5423
178.078
1053.77
1030.11
181.227
63.0308
30.64
19.2506
14.4995
12.0667
10.6078
9.64095
8.96098
8.46749
8.10302
7.83229
7.63449
7.4977
7.41609
7.38834
7.41672
7.50908
7.67438
7.92519
8.27932
8.76064
9.39923
10.2308
11.2898
12.6008
14.1711
16.0173
18.3373
22.0914
31.2229
61.6111
178.212
1053.98
1030.12
181.279
63.0157
30.6363
19.2915
14.5589
12.1327
10.6783
9.71621
9.04178
8.55472
8.19745
7.93446
7.7447
7.61606
7.54255
7.5227
7.55857
7.65793
7.82949
8.0852
8.442
8.92234
9.5543
10.3707
11.4032
12.6746
14.1946
15.9914
18.2851
22.0568
31.2397
61.6777
178.366
1054.19
1030.13
181.331
62.9994
30.6341
19.3334
14.6191
12.1995
10.7495
9.7921
9.12312
8.64237
8.29211
8.03658
7.85449
7.73358
7.66766
7.65511
7.69781
7.8034
7.98029
8.23982
8.59798
9.0759
9.69967
10.4994
11.5043
12.7359
14.2068
15.9565
18.2262
22.0168
31.2526
61.7436
178.558
1054.38
1030.14
181.381
62.9831
30.6336
19.3758
14.6788
12.2656
10.8199
9.86725
9.20375
8.72931
8.38599
8.13777
7.96313
7.84961
7.79086
7.78512
7.83405
7.94517
8.12657
8.38893
8.74733
9.22154
9.83581
10.6177
11.5944
12.7863
14.2092
15.9139
18.1616
21.9722
31.2631
61.8151
178.83
1054.58
1030.15
181.43
62.9671
30.6349
19.4193
14.7388
12.3318
10.8905
9.94239
9.28426
8.81597
8.47939
8.23823
8.07071
7.96418
7.91215
7.91267
7.96724
8.08322
8.26833
8.53262
8.89026
9.3597
9.9634
10.7266
11.6746
12.8272
14.2036
15.8658
18.0934
21.9247
31.2737
61.9036
179.257
1054.77
1030.16
181.479
62.9523
30.6386
19.4634
14.7985
12.3974
10.9602
10.0166
9.3638
8.90158
8.5716
8.33729
8.17664
8.07677
8.03105
8.03738
8.09706
8.2173
8.40544
8.67088
9.0269
9.49066
10.083
10.8271
11.7463
12.8606
14.1923
15.8136
18.022
21.8753
31.2891
62.0316
179.998
1054.95
1030.17
181.528
62.9389
30.6443
19.5082
14.8582
12.4627
11.0296
10.0904
9.44274
8.98641
8.66277
8.43503
8.28091
8.18733
8.1475
8.15918
8.22346
8.3474
8.53795
8.80389
9.1576
9.61506
10.1955
10.9202
11.8108
12.8868
14.1741
15.7567
17.9515
21.8314
31.3176
62.2459
181.368
1055.13
1030.18
181.578
62.9266
30.6513
19.5529
14.9171
12.527
11.0978
10.1629
9.5204
9.06986
8.75237
8.53094
8.38307
8.29546
8.26116
8.27777
8.34621
8.47338
8.66583
8.93173
9.28261
9.73326
10.3014
11.0065
11.8685
12.9067
14.1514
15.699
17.8848
21.7976
31.3839
62.6416
183.652
1055.31
1030.19
181.628
62.9143
30.6591
19.5973
14.9752
12.5904
11.1651
10.2345
9.59704
9.15209
8.8405
8.62507
8.48308
8.40107
8.37191
8.39304
8.46523
8.59518
8.78906
9.05445
9.40203
9.84547
10.401
11.0864
11.9202
12.922
14.1271
15.6445
17.8282
21.7856
31.4999
63.1247
185.787
1055.49
1030.2
181.677
62.9022
30.6673
19.641
15.0321
12.6527
11.2312
10.3048
9.67233
9.23282
8.92688
8.71716
8.58072
8.50393
8.47951
8.50477
8.5803
8.71264
8.90755
9.17204
9.51597
9.95193
10.4947
11.1607
11.9672
12.9345
14.1034
15.5949
17.7801
21.7811
31.5943
63.3972
186.518
1055.67
1030.21
181.726
62.8903
30.6763
19.6845
15.0884
12.7141
11.2965
10.3742
9.74647
9.3122
9.01161
8.80722
8.67594
8.60395
8.58385
8.61282
8.69128
8.82559
9.02117
9.28442
9.62447
10.0528
10.5831
11.2302
12.0105
12.9456
14.0813
15.5497
17.7358
21.7705
31.6434
63.4998
186.657
1055.85
1030.22
181.775
62.8788
30.686
19.7275
15.1437
12.7744
11.3606
10.4423
9.81925
9.38999
9.09446
8.89505
8.76851
8.70089
8.68468
8.71692
8.7979
8.93382
9.12971
9.39147
9.72747
10.1483
10.6663
11.2954
12.0511
12.9563
14.0615
15.5083
17.6935
21.7529
31.6632
63.5397
186.719
1056.03
1030.23
181.823
62.8675
30.696
19.7698
15.198
12.8338
11.4236
10.5093
9.89073
9.46625
9.17546
8.98063
8.85839
8.79468
8.78188
8.81695
8.90002
9.03714
9.233
9.49301
9.82487
10.2383
10.7446
11.3566
12.0894
12.967
14.0443
15.471
17.6534
21.7312
31.6683
63.5587
186.772
1056.22
1030.24
181.871
62.8565
30.7063
19.8113
15.2511
12.8918
11.4854
10.5748
9.96065
9.54074
9.25441
9.06381
8.94545
8.8852
8.87536
8.91279
8.99751
9.13543
9.33092
9.58892
9.91657
10.3228
10.818
11.4141
12.1258
12.9782
14.0301
15.4379
17.6164
21.7086
31.6672
63.5709
186.823
1056.4
1030.25
181.918
62.8448
30.7165
19.852
15.3031
12.9487
11.5458
10.639
10.029
9.61349
9.33132
9.1446
9.02973
8.97249
8.96515
9.00448
9.09042
9.22874
9.42349
9.67925
10.0026
10.4018
10.8865
11.4678
12.1602
12.9899
14.0189
15.4095
17.5836
21.6877
31.6649
63.5823
186.876
1056.59
1030.26
181.964
62.8332
30.727
19.8921
15.3542
13.0044
11.6051
10.7018
10.0958
9.68439
9.40611
9.22293
9.11117
9.05654
9.05126
9.09207
9.17882
9.31715
9.51084
9.76411
10.0831
10.4755
10.9502
11.5179
12.1928
13.002
14.0107
15.3859
17.5556
21.6701
31.664
63.5954
186.932
1056.78
1030.27
182.008
62.8211
30.7376
19.9316
15.4044
13.0592
11.6632
10.7632
10.1611
9.75352
9.47884
9.29887
9.18984
9.13742
9.13379
9.17566
9.26282
9.40079
9.59311
9.84368
10.1582
10.544
11.0093
11.5643
12.2233
13.0143
14.0049
15.3664
17.5323
21.6562
31.6653
63.6108
186.989
1056.97
1030.28
182.051
62.8089
30.7485
19.9707
15.4538
13.1131
11.7202
10.8235
10.2249
9.82091
9.54954
9.37247
9.26582
9.21523
9.21287
9.25541
9.3426
9.47986
9.6705
9.91817
10.2283
10.6075
11.064
11.6073
12.2517
13.0261
14.0006
15.3508
17.5143
21.6464
31.6697
63.6287
187.047
1057.16
1030.29
182.094
62.7977
30.7606
20.0099
15.5028
13.1663
11.7763
10.8826
10.2873
9.88669
9.61835
9.44385
9.33924
9.29012
9.28865
9.33148
9.41835
9.55456
9.74322
9.98775
10.2933
10.6662
11.1141
11.6463
12.2772
13.0365
13.9969
15.3383
17.5009
21.6399
31.6764
63.6483
187.107
1057.35
1030.3
182.136
62.7877
30.7738
20.0492
15.5514
13.2188
11.8316
10.9405
10.3484
9.95082
9.68525
9.51304
9.41015
9.36217
9.36125
9.40404
9.49024
9.62508
9.81148
10.0527
10.3535
10.7201
11.1597
11.6814
12.2997
13.0453
13.9938
15.3285
17.491
21.6364
31.6855
63.6699
187.166
1057.54
1030.31
182.179
62.7799
30.7886
20.0889
15.5998
13.2707
11.886
10.9974
10.4081
10.0134
9.75033
9.58012
9.47866
9.43151
9.43082
9.47324
9.55847
9.69163
9.8755
10.1131
10.4091
10.7694
11.2009
11.7126
12.3191
13.0524
13.9906
15.3202
17.4835
21.6352
31.6959
63.6915
187.224
1057.73
1030.32
182.221
62.7725
30.8039
20.1282
15.6475
13.3218
11.9394
11.0532
10.4665
10.0744
9.81358
9.64512
9.54481
9.4982
9.49744
9.53921
9.62317
9.75439
9.93546
10.1693
10.4603
10.8142
11.2377
11.7397
12.3352
13.0574
13.9868
15.3124
17.4774
21.6355
31.7072
63.713
187.279
1057.91
1030.33
182.261
62.7648
30.8194
20.1674
15.6949
13.3724
11.9921
11.108
10.5237
10.134
9.8752
9.70822
9.6088
9.56246
9.56137
9.6022
9.68465
9.81367
9.99172
10.2216
10.5075
10.855
11.2706
11.7632
12.3483
13.0604
13.9821
15.3048
17.4722
21.637
31.7195
63.7349
187.333
1058.09
1030.33
182.302
62.7582
30.836
20.2069
15.7422
13.4226
12.0443
11.162
10.5799
10.1923
9.93528
9.76953
9.67073
9.6244
9.62271
9.66236
9.74303
9.86962
10.0444
10.2701
10.5508
10.8919
11.2997
11.7832
12.3584
13.0613
13.9762
15.2969
17.4671
21.6387
31.7314
63.7546
187.382
1058.27
1030.34
182.342
62.7528
30.8536
20.2469
15.7895
13.4727
12.0961
11.2155
10.6353
10.2496
9.99398
9.82919
9.73075
9.68416
9.68162
9.71983
9.7985
9.92243
10.0938
10.3151
10.5905
10.9251
11.3252
11.7998
12.3657
13.06
13.969
15.2882
17.4617
21.6403
31.7425
63.7723
187.429
1058.45
1030.35
182.382
62.7483
30.8719
20.2868
15.8367
13.5226
12.1474
11.2683
10.6898
10.3057
10.0514
9.88734
9.789
9.7419
9.73826
9.7748
9.85124
9.97231
10.14
10.3569
10.6268
10.9549
11.3474
11.8135
12.3706
13.0568
13.9605
15.2788
17.456
21.6417
31.7535
63.789
187.473
1058.62
1030.36
182.422
62.7439
30.8901
20.3263
15.8835
13.5719
12.1983
11.3205
10.7436
10.3609
10.1077
9.94407
9.8456
9.79774
9.79276
9.8274
9.90138
10.0194
10.1833
10.3955
10.66
10.9815
11.3666
11.8245
12.3732
13.0521
13.9511
15.269
17.4503
21.6433
31.7644
63.8046
187.514
1058.79
1030.37
182.46
62.7384
30.9075
20.365
15.9294
13.6206
12.2485
11.372
10.7965
10.4152
10.1628
9.9995
9.90066
9.85182
9.84526
9.87775
9.94905
10.0637
10.2236
10.4311
10.6899
11.005
11.3827
11.8328
12.3737
13.0459
13.9409
15.2589
17.4445
21.6449
31.7749
63.8189
187.551
1058.95
1030.38
182.497
62.7335
30.9254
20.4037
15.9752
13.669
12.2984
11.4232
10.849
10.4688
10.2171
10.0538
9.9544
9.90434
9.89596
9.92607
9.99444
10.1056
10.2612
10.4637
10.7167
11.0253
11.3959
11.8384
12.3719
13.0381
13.9297
15.2483
17.4386
21.6464
31.7848
63.8312
187.586
1059.12
1030.39
182.535
62.7303
30.9445
20.4427
16.0211
13.7174
12.3481
11.4742
10.9011
10.5218
10.2705
10.1071
10.0069
9.9554
9.945
9.97251
10.0377
10.1451
10.2963
10.4936
10.7407
11.0427
11.4061
11.8412
12.3677
13.0285
13.9173
15.2369
17.4322
21.6473
31.7936
63.8411
187.616
1059.28
1030.4
182.573
62.7287
30.9647
20.4822
16.0672
13.7659
12.398
11.5252
10.9531
10.5744
10.3232
10.1595
10.0582
10.0051
9.99252
10.0172
10.0791
10.1826
10.3291
10.521
10.7621
11.0574
11.4137
11.8415
12.3614
13.017
13.9034
15.2245
17.4251
21.6478
31.8013
63.8487
187.644
1059.43
1030.41
182.611
62.7287
30.9859
20.5222
16.1137
13.8148
12.4481
11.5764
11.0051
10.6267
10.3755
10.2111
10.1087
10.0538
10.0387
10.0605
10.1189
10.2182
10.3598
10.5462
10.7812
11.0697
11.4189
11.8396
12.3529
13.0038
13.8883
15.2112
17.4176
21.648
31.809
63.856
187.671
1059.59
1030.42
182.65
62.7307
31.0085
20.563
16.1608
13.8641
12.4986
11.6279
11.0573
10.6791
10.4275
10.2623
10.1584
10.1015
10.0839
10.1025
10.1572
10.2522
10.3889
10.5696
10.7983
11.08
11.422
11.8356
12.3427
12.9891
13.8719
15.1971
17.4097
21.6485
31.8175
63.8639
187.696
1059.74
1030.43
182.691
62.7349
31.0326
20.6047
16.2086
13.9141
12.5497
11.6799
11.1097
10.7315
10.4794
10.313
10.2075
10.1483
10.128
10.1433
10.1942
10.2848
10.4164
10.5914
10.8137
11.0885
11.4233
11.8299
12.3308
12.9729
13.8543
15.1821
17.4013
21.649
31.8263
63.8715
187.72
1059.88
1030.44
182.733
62.7419
31.0585
20.6476
16.2573
13.9648
12.6013
11.7323
11.1625
10.784
10.5312
10.3635
10.2561
10.1945
10.1712
10.1831
10.2301
10.3161
10.4426
10.6117
10.8275
11.0953
11.4229
11.8224
12.3172
12.9552
13.8354
15.1661
17.3923
21.6491
31.8349
63.8785
187.741
1060.02
1030.45
182.778
62.7514
31.0859
20.6915
16.3069
14.0162
12.6535
11.7851
11.2155
10.8367
10.5829
10.4137
10.3042
10.24
10.2137
10.222
10.265
10.3464
10.4675
10.6307
10.8399
11.1007
11.4209
11.8134
12.3021
12.936
13.8152
15.149
17.3825
21.6488
31.8435
63.8853
187.76
1060.16
1030.46
182.822
62.7611
31.1134
20.7355
16.3567
14.068
12.7061
11.8383
11.2688
10.8895
10.6345
10.4636
10.3518
10.2849
10.2554
10.2601
10.299
10.3757
10.4915
10.6487
10.8512
11.1048
11.4176
11.8029
12.2855
12.9154
13.7936
15.1306
17.3717
21.6477
31.8516
63.8913
187.777
1060.29
1030.46
182.867
62.7708
31.141
20.7799
16.407
14.1204
12.7593
11.892
11.3225
10.9425
10.6862
10.5134
10.3992
10.3294
10.2966
10.2976
10.3323
10.4043
10.5147
10.6657
10.8615
11.1078
11.4131
11.7911
12.2674
12.893
13.7703
15.1106
17.3594
21.6455
31.8589
63.8964
187.792
1060.43
1030.47
182.911
62.7818
31.1698
20.8254
16.4585
14.1737
12.8133
11.9464
11.3768
10.9959
10.7381
10.5632
10.4464
10.3736
10.3374
10.3346
10.365
10.4323
10.5372
10.6821
10.8711
11.11
11.4075
11.7779
12.2476
12.869
13.7459
15.0901
17.3458
21.6422
31.8655
63.9008
187.805
1060.55
1030.48
182.956
62.7952
31.2005
20.8724
16.5113
14.2283
12.8684
12.0017
11.4318
11.0499
10.7904
10.6131
10.4935
10.4176
10.3778
10.3712
10.3974
10.4599
10.5594
10.6981
10.8802
11.1116
11.4011
11.7635
12.2265
12.8437
13.7205
15.0684
17.3307
21.6371
31.8706
63.9031
187.813
1060.67
1030.49
183.005
62.8123
31.2337
20.9213
16.5657
14.2843
12.9247
12.0581
11.4877
11.1045
10.8431
10.6632
10.5406
10.4613
10.418
10.4074
10.4293
10.4871
10.5811
10.7137
10.8888
11.1124
11.3937
11.748
12.2042
12.8172
13.6938
15.0452
17.3134
21.6291
31.8721
63.9001
187.815
1060.79
1030.5
183.056
62.8325
31.2689
20.9717
16.6215
14.3415
12.982
12.1154
11.5444
11.1598
10.8961
10.7134
10.5876
10.5048
10.4577
10.4431
10.4608
10.5137
10.6024
10.7288
10.8969
11.1128
11.3858
11.732
12.1812
12.7899
13.6659
15.0201
17.2934
21.6174
31.8687
63.8901
187.808
1060.91
1030.51
183.111
62.8562
31.3062
21.0236
16.6786
14.4
13.0406
12.1737
11.6019
11.2156
10.9495
10.7637
10.6345
10.5479
10.497
10.4783
10.4917
10.5399
10.6232
10.7436
10.9049
11.1131
11.378
11.7162
12.1584
12.7625
13.6372
14.9935
17.2708
21.6019
31.8605
63.8743
187.797
1061.02
1030.52
183.169
62.8825
31.3453
21.0772
16.7373
14.4599
13.1004
12.2333
11.6605
11.2722
11.0033
10.8142
10.6812
10.5908
10.5358
10.513
10.5221
10.5657
10.6439
10.7584
10.9131
11.114
11.371
11.7012
12.1366
12.7358
13.6088
14.9662
17.2466
21.5838
31.849
63.855
187.784
1061.13
1030.53
183.23
62.9124
31.3869
21.1327
16.7978
14.5214
13.1618
12.2941
11.7201
11.3297
11.0578
10.865
10.728
10.6335
10.5743
10.5474
10.5522
10.5913
10.6645
10.7734
10.9219
11.1158
11.3653
11.688
12.1166
12.7108
13.5817
14.9398
17.2224
21.565
31.8363
63.8346
187.771
1061.23
1030.54
183.297
62.9464
31.431
21.1903
16.8602
14.5847
13.2246
12.3563
11.7809
11.388
11.1128
10.9161
10.7748
10.6759
10.6124
10.5812
10.5817
10.6165
10.6849
10.7887
10.9312
11.1186
11.361
11.6766
12.0987
12.688
13.5565
14.9145
17.1985
21.5454
31.8218
63.8121
187.756
1061.34
1030.55
183.367
62.9822
31.4764
21.2494
16.9242
14.6497
13.2891
12.4199
11.8429
11.4473
11.1684
10.9673
10.8215
10.7179
10.6499
10.6144
10.6107
10.6412
10.7051
10.8039
10.9411
11.1224
11.3583
11.6672
12.0831
12.6676
13.5334
14.891
17.1758
21.526
31.8066
63.7888
187.743
1061.45
1030.56
183.44
63.0206
31.5236
21.3103
16.9902
14.7165
13.3553
12.4851
11.9063
11.5077
11.2247
11.0189
10.8681
10.7596
10.6869
10.6469
10.639
10.6653
10.7249
10.8192
10.9513
11.1271
11.357
11.6598
12.07
12.6499
13.5131
14.8699
17.155
21.5079
31.7921
63.767
187.732
1061.57
1030.57
183.516
63.0604
31.5722
21.3729
17.058
14.7852
13.4233
12.552
11.9712
11.5692
11.2817
11.0708
10.9146
10.8009
10.7232
10.6786
10.6664
10.6887
10.7442
10.8341
10.9617
11.1325
11.357
11.6543
12.0593
12.6349
13.4955
14.8513
17.1365
21.4916
31.779
63.7473
187.724
1061.68
1030.58
183.594
63.1022
31.6223
21.4374
17.128
14.8562
13.4935
12.6209
12.0377
11.632
11.3395
11.123
10.961
10.8416
10.7588
10.7094
10.6929
10.7111
10.7626
10.8486
10.972
11.1383
11.358
11.6504
12.0507
12.6225
13.4807
14.8356
17.1205
21.4774
31.7675
63.7298
187.718
1061.8
1030.59
183.675
63.1446
31.6734
21.5035
17.2
14.9294
13.5659
12.6918
12.106
11.696
11.3981
11.1753
11.007
10.8817
10.7933
10.7389
10.718
10.7322
10.78
10.8623
10.9819
11.1442
11.3597
11.6478
12.0441
12.6126
13.4686
14.8227
17.1074
21.4657
31.7581
63.7152
187.717
1061.92
1030.6
183.757
63.1881
31.7257
21.5715
17.2743
15.0051
13.6409
12.7651
12.1761
11.7612
11.4571
11.2276
11.0525
10.9207
10.8265
10.767
10.7416
10.7519
10.796
10.8749
10.991
11.1499
11.3617
11.6461
12.039
12.6046
13.4589
14.8123
17.0967
21.4563
31.7508
63.7036
187.719
1062.04
1030.61
183.842
63.2333
31.7797
21.6415
17.3511
15.0837
13.7193
12.8413
12.2481
11.8273
11.5162
11.2793
11.0969
10.9584
10.8581
10.7933
10.7634
10.7697
10.8104
10.886
10.9991
11.1549
11.3637
11.645
12.0352
12.5985
13.4515
14.8045
17.089
21.4498
31.7466
63.6964
187.726
1062.17
1030.62
183.929
63.2798
31.8356
21.7141
17.4307
15.1652
13.8008
12.9202
12.3218
11.8941
11.5752
11.3303
11.1401
10.9945
10.8879
10.8177
10.7832
10.7856
10.8229
10.8955
11.0058
11.159
11.3652
11.6442
12.0321
12.5938
13.4459
14.7989
17.0838
21.4462
31.7454
63.6935
187.737
1062.3
1030.63
184.016
63.3251
31.8924
21.7892
17.5131
15.2495
13.8847
13.0012
12.3971
11.962
11.6346
11.3809
11.1824
11.0292
10.9159
10.84
10.8008
10.7992
10.8332
10.903
11.0108
11.1618
11.366
11.6431
12.0294
12.59
13.4418
14.7952
17.0808
21.4448
31.7465
63.6935
187.75
1062.44
1030.64
184.103
63.3715
31.9516
21.8676
17.5992
15.3372
13.972
13.085
12.4747
12.0313
11.6945
11.4313
11.2238
11.0624
10.9421
10.8602
10.816
10.8105
10.8411
10.9082
11.0139
11.1629
11.3655
11.6412
12.0265
12.5868
13.4389
14.7929
17.0795
21.4455
31.7498
63.6964
187.765
1062.57
1030.65
184.195
63.4212
32.0146
21.9502
17.6894
15.4289
14.0627
13.1718
12.5545
12.102
11.755
11.4815
11.2642
11.0942
10.9663
10.8781
10.8287
10.819
10.8464
10.9109
11.0145
11.162
11.3634
11.6382
12.0231
12.5836
13.4364
14.7915
17.0795
21.4477
31.7551
63.7025
187.782
1062.71
1030.67
184.288
63.4725
32.0805
22.0368
17.7837
15.5244
14.1568
13.2615
12.6364
12.1739
11.8158
11.5311
11.3034
11.124
10.9882
10.8933
10.8386
10.8247
10.8487
10.9107
11.0125
11.1587
11.3592
11.6336
12.0186
12.5799
13.434
14.7904
17.0801
21.4508
31.7615
63.7103
187.801
1062.85
1030.68
184.385
63.5254
32.149
22.1271
17.8822
15.6238
14.2546
13.3543
12.7205
12.247
11.8768
11.58
11.3411
11.1518
11.0074
10.9056
10.8453
10.827
10.8476
10.9072
11.0073
11.1525
11.3526
11.627
12.0127
12.5753
13.4311
14.7893
17.0811
21.4544
31.7686
63.7194
187.82
1062.99
1030.69
184.485
63.5789
32.2197
22.2212
17.9848
15.7274
14.3561
13.4501
12.8068
12.3211
11.9376
11.6277
11.3768
11.1769
11.0236
10.9145
10.8484
10.8255
10.8429
10.9001
10.9987
11.1432
11.3431
11.6181
12.005
12.5693
13.4273
14.7877
17.0819
21.4583
31.7766
63.7305
187.84
1063.13
1030.7
184.586
63.6327
32.2926
22.3191
18.092
15.8354
14.4616
13.5491
12.8951
12.3958
11.9977
11.6737
11.4099
11.1989
11.0362
10.9194
10.8474
10.82
10.834
10.889
10.9863
11.1303
11.3305
11.6065
11.995
12.5617
13.4224
14.7855
17.0825
21.4625
31.7855
63.7438
187.862
1063.27
1030.72
184.688
63.6856
32.3669
22.4208
18.2038
15.9482
14.5715
13.6515
12.9852
12.4707
12.0566
11.7173
11.4398
11.217
11.0446
10.92
10.8419
10.8099
10.8206
10.8734
10.9697
11.1135
11.3144
11.5918
11.9827
12.5522
13.4163
14.7825
17.0831
21.4672
31.7961
63.7604
187.885
1063.41
1030.73
184.791
63.7395
32.444
22.5268
18.3211
16.0667
14.6863
13.7573
13.0767
12.545
12.1133
11.7576
11.4657
11.2307
11.0483
10.9157
10.8314
10.7949
10.8024
10.8532
10.9486
11.0926
11.2946
11.574
11.9677
12.5407
13.4086
14.7787
17.0833
21.4721
31.8075
63.7788
187.909
1063.56
1030.75
184.892
63.7914
32.5221
22.6362
18.4433
16.1919
14.8067
13.8658
13.1682
12.6175
12.1669
11.7939
11.4869
11.2393
11.0467
10.906
10.8156
10.7745
10.7789
10.828
10.9227
11.0672
11.2707
11.5526
11.9496
12.5268
13.3992
14.7737
17.0829
21.4772
31.8202
63.8
187.934
1063.71
1030.76
184.993
63.8421
32.6026
22.7499
18.5704
16.3229
14.9317
13.9763
13.2596
12.688
12.2173
11.8261
11.5035
11.2429
11.0397
10.8908
10.7942
10.7486
10.75
10.7974
10.8918
11.0371
11.2426
11.5275
11.9285
12.5104
13.388
14.7676
17.0821
21.4824
31.8337
63.8228
187.958
1063.86
1030.77
185.096
63.8923
32.6862
22.8688
18.7027
16.4582
15.0601
14.0891
13.3516
12.7575
12.265
11.8544
11.5153
11.241
11.027
10.8696
10.7667
10.7167
10.7152
10.7611
10.8554
11.0018
11.2096
11.4981
11.9036
12.4909
13.3743
14.7596
17.08
21.4869
31.8473
63.8467
187.981
1064.01
1030.79
185.197
63.9392
32.771
22.9923
18.8407
16.5992
15.1931
14.2041
13.4433
12.8243
12.3084
11.8771
11.5207
11.2325
11.0074
10.8416
10.7326
10.6782
10.6739
10.7187
10.8131
10.961
11.1717
11.4642
11.875
12.4684
13.3583
14.7501
17.077
21.4913
31.862
63.8733
188.005
1064.16
1030.81
185.295
63.9836
32.8581
23.1211
18.9845
16.7452
15.3295
14.3204
13.5337
12.8876
12.3465
11.8935
11.5191
11.2166
10.9804
10.8062
10.6911
10.6326
10.6259
10.6696
10.7646
10.9144
11.1283
11.4255
11.842
12.4422
13.3393
14.7383
17.0726
21.4951
31.8774
63.9028
188.03
1064.32
1030.82
185.391
64.0253
32.9469
23.2557
19.1352
16.8976
15.4704
14.438
13.622
12.9461
12.378
11.9022
11.5094
11.1924
10.9452
10.7629
10.642
10.5797
10.5707
10.6139
10.7097
10.8618
11.0795
11.3819
11.8049
12.4126
13.3178
14.7248
17.0673
21.499
31.8946
63.9361
188.056
1064.47
1030.84
185.482
64.061
33.0357
23.3952
19.293
17.0562
15.6147
14.5551
13.7061
12.9978
12.4011
11.9017
11.4902
11.1589
10.9009
10.7108
10.5845
10.5188
10.5081
10.551
10.6481
10.803
11.0249
11.333
11.7631
12.3789
13.2928
14.7085
17.0598
21.5015
31.9115
63.9703
188.08
1064.63
1030.86
185.564
64.0914
33.125
23.5404
19.4599
17.2227
15.7622
14.6701
13.7844
13.0412
12.4147
11.8914
11.4612
11.1157
10.8473
10.6499
10.5188
10.45
10.4381
10.4813
10.5801
10.7382
10.965
11.2794
11.7171
12.3418
13.2652
14.6903
17.0513
21.504
31.9299
64.0081
188.106
1064.8
1030.87
185.645
64.1216
33.2178
23.6914
19.6385
17.3971
15.9095
14.7797
13.8543
13.0751
12.4183
11.8708
11.422
11.0627
10.7843
10.58
10.4445
10.3733
10.3606
10.4045
10.5055
10.6673
10.8993
11.2206
11.6665
12.3006
13.234
14.6691
17.0403
21.5045
31.9473
64.0459
188.128
1064.96
1030.89
185.722
64.1467
33.3132
23.8473
19.8198
17.5733
16.0573
14.8872
13.9192
13.1013
12.4124
11.8397
11.3721
10.9991
10.7113
10.5007
10.3615
10.2885
10.2755
10.3207
10.4245
10.5906
10.8284
11.157
11.6117
12.2559
13.2001
14.6459
17.0281
21.5045
31.9653
64.0857
188.15
1065.13
1030.91
185.79
64.165
33.4089
24.0092
20.0091
17.7556
16.2063
14.9902
13.9751
13.1158
12.3936
11.7955
11.3094
10.9235
10.627
10.411
10.2689
10.1949
10.1824
10.2297
10.3368
10.5076
10.7517
11.0881
11.552
12.2066
13.1621
14.619
17.0127
21.5022
31.9824
64.1258
188.168
1065.29
1030.92
185.849
64.1763
33.5063
24.1768
20.2038
17.9408
16.3537
15.0867
14.0206
13.1175
12.3608
11.7373
11.2333
10.8352
10.5311
10.3108
10.1668
10.0927
10.0817
10.1317
10.2429
10.4192
10.6701
11.0147
11.4883
12.154
13.1212
14.5899
16.9956
21.4985
31.9988
64.1661
188.185
1065.47
1030.94
185.902
64.1828
33.6052
24.3518
20.4065
18.1307
16.4995
15.175
14.0534
13.1042
12.3125
11.6638
11.1427
10.7336
10.4231
10.1997
10.0549
9.98181
9.97324
10.0269
10.1428
10.3251
10.5832
10.9365
11.42
12.0968
13.0759
14.5566
16.9745
21.4915
32.013
64.2048
188.197
1065.63
1030.96
185.942
64.1751
33.6992
24.5312
20.6153
18.3222
16.6393
15.2508
14.0698
13.073
12.2464
11.5735
11.0366
10.6182
10.3027
10.0776
9.93342
9.86248
9.85743
9.91568
10.0373
10.2264
10.4924
10.8548
11.3487
12.037
13.0283
14.5212
16.9518
21.4829
32.0257
64.2417
188.206
1065.82
1030.98
185.963
64.1477
33.7838
24.7156
20.8315
18.5137
16.7699
15.3111
14.068
13.0232
12.1623
11.4666
10.9155
10.4891
10.1702
9.94487
9.80258
9.735
9.73451
9.79833
9.92646
10.1229
10.3973
10.7691
11.2733
11.9731
12.9765
14.4815
16.9245
21.47
32.0349
64.2751
188.207
1065.99
1030.99
185.949
64.0792
33.8482
24.905
21.0533
18.6983
16.8851
15.3527
14.0467
12.9543
12.0602
11.3431
10.7794
10.3469
10.0262
9.80207
9.66302
9.60007
9.60533
9.67581
9.81142
10.0161
10.2997
10.6815
11.1966
11.908
12.9236
14.4407
16.8961
21.4555
32.0416
64.3045
188.205
1066.18
1031.01
185.737
63.9015
33.877
25.0834
21.2717
18.8801
16.9931
15.3816
14.009
12.8674
11.9402
11.2028
10.6282
10.1911
9.87033
9.64899
9.51459
9.45751
9.46963
9.54774
9.69165
9.90527
10.1985
10.5905
11.1164
11.8392
12.8664
14.3951
16.8623
21.4351
32.0423
64.3267
188.194
1066.37
1031.03
184.379
63.4849
33.8645
25.2666
21.4991
19.061
17.0886
15.3908
13.9486
12.7578
11.7991
11.0437
10.4605
10.0213
9.70254
9.48588
9.35781
9.30812
9.32849
9.4155
9.56887
9.79251
10.0962
10.4993
11.0367
11.7712
12.8103
14.3507
16.8297
21.4155
32.0432
64.3489
188.185
1066.58
1031.05
181.749
62.9595
33.8735
25.4708
21.7348
19.2376
17.1699
15.3799
13.866
12.6264
11.6379
10.8667
10.2774
9.83827
9.52354
9.3133
9.19307
9.15209
9.18187
9.27878
9.44246
9.67678
9.99153
10.4059
10.9546
11.7005
12.7509
14.3022
16.7923
21.3906
32.0386
64.3646
188.167
1066.77
1031.06
179.854
62.6666
33.961
25.7044
21.9792
19.4076
17.2332
15.3451
13.7578
12.4706
11.455
10.6711
10.0786
9.64226
9.33387
9.13206
9.02138
8.99065
9.03126
9.13942
9.31468
9.56088
9.88777
10.3144
10.8754
11.6332
12.695
14.2575
16.7585
21.3683
32.0346
64.3796
188.154
1067
1031.08
178.923
62.5121
34.0726
25.9438
22.2203
19.5635
17.2734
15.2827
13.6219
12.2896
11.2502
10.4572
9.86479
9.43397
9.13418
8.94263
8.84302
8.82381
8.87633
8.99664
9.18425
9.44292
9.78233
10.2214
10.7944
11.5636
12.6361
14.209
16.7201
21.3408
32.0257
64.389
188.132
1067.2
1031.09
178.437
62.4108
34.2034
26.1944
22.4606
19.7038
17.2874
15.1902
13.4568
12.0826
11.0237
10.2258
9.63706
9.21475
8.92597
8.74664
8.65974
8.65348
8.71925
8.85303
9.05429
9.32677
9.68005
10.1328
10.719
11.5005
12.5841
14.1678
16.6889
21.3192
32.0193
64.3989
188.117
1067.46
1031.11
178.174
62.3415
34.3474
26.4504
22.6929
19.8212
17.2692
15.0638
13.2606
11.8493
10.7763
9.97817
9.39693
8.98604
8.71044
8.54494
8.47195
8.47957
8.55934
8.70719
8.92257
9.20918
9.57645
10.0428
10.6418
11.4346
12.5285
14.1219
16.6522
21.2918
32.0082
64.4035
188.093
1067.68
1031.12
178.013
62.282
34.501
26.7122
22.9141
19.9095
17.213
14.8991
13.0311
11.5893
10.5087
9.7157
9.14622
8.74991
8.48982
8.33984
8.28206
8.30467
8.39949
8.56253
8.79329
9.09547
9.47834
9.95996
10.5734
11.3788
12.4835
14.0874
16.6265
21.2732
32.0004
64.4081
188.078
1067.95
1031.13
177.906
62.2331
34.6655
26.9781
23.1173
19.9613
17.1143
14.6951
12.7691
11.3044
10.223
9.44077
8.8872
8.50839
8.26569
8.13238
8.0904
8.12827
8.23822
8.41642
8.66248
8.98005
9.3782
9.87454
10.5015
11.3183
12.4327
14.0456
16.5927
21.2465
31.9868
64.4071
188.052
1068.18
1031.15
177.819
62.1857
34.8398
27.2419
23.2924
19.9687
16.9701
14.4505
12.4739
10.9944
9.91942
9.15407
8.62123
8.2635
8.04056
7.92517
7.8996
7.95307
8.07866
8.27285
8.53545
8.87008
9.28555
9.7989
10.4416
11.2716
12.397
14.0201
16.5751
21.2328
31.9791
64.4094
188.043
1068.49
1031.16
177.746
62.1419
35.0116
27.4904
23.4427
19.943
16.7879
14.1693
12.1479
10.6609
9.59914
8.8568
8.34955
8.01607
7.81445
7.71769
7.70846
7.77677
7.91677
8.12593
8.40436
8.75556
9.18792
9.71778
10.3755
11.2177
12.3526
13.9844
16.5468
21.2108
31.9695
64.4138
188.03
1068.73
1031.17
177.653
62.0836
35.1824
27.7316
23.5628
19.8687
16.5527
13.8408
11.7851
10.3013
9.26202
8.54928
8.07183
7.76462
7.58582
7.50935
7.51825
7.60307
7.75857
7.98324
8.27858
8.64826
9.10024
9.65006
10.327
11.186
12.3334
13.9738
16.5428
21.2092
31.973
64.4297
188.04
1069.06
1031.18
177.559
62.0321
35.3516
27.9525
23.6466
19.7499
16.2736
13.4752
11.3946
9.92352
8.91441
8.23619
7.78952
7.50877
7.35356
7.29822
7.32605
7.42808
7.59963
7.83943
8.15008
8.53656
9.00666
9.57501
10.2695
11.1437
12.3019
13.9494
16.5246
21.1959
31.9712
64.4409
188.034
1069.3
1031.18
177.436
61.9653
35.5169
28.1557
23.6903
19.5765
15.9391
13.0637
10.9712
9.52453
8.55346
7.91387
7.5007
7.24882
7.1193
7.08702
7.13563
7.2568
7.44648
7.70357
8.03176
8.43768
8.92921
9.52012
10.2366
11.1299
12.3011
13.9558
16.5348
21.2034
31.977
64.4549
188.048
1069.66
1031.19
177.308
61.9075
35.6792
28.3315
23.6877
19.3504
15.5574
12.6165
10.5248
9.11292
8.18657
7.58665
7.20701
6.9848
6.88167
6.87301
6.94274
7.08317
7.29095
7.56522
7.90987
8.3326
8.84262
9.4532
10.1889
11.0985
12.2805
13.9412
16.5252
21.196
31.9771
64.4645
188.04
1069.91
1031.19
177.149
61.8369
35.835
28.4784
23.6313
19.0604
15.1175
12.1258
10.0499
8.68381
7.80863
7.25232
6.90911
6.71893
6.64424
6.66109
6.75378
6.91542
7.14355
7.43767
7.80192
8.24517
8.77814
9.41353
10.1743
11.1066
12.3055
13.9741
16.5569
21.22
31.9955
64.4904
188.069
1070.3
1031.2
176.986
61.7776
35.9843
28.5883
23.5184
18.7117
14.6299
11.6038
9.55926
8.24884
7.42617
6.91339
6.6075
6.45
6.40422
6.44683
6.56243
6.74487
6.99262
7.30538
7.68734
8.14842
8.70097
9.35712
10.1382
11.0883
12.3002
13.9735
16.5529
21.2102
31.986
64.4851
188.052
1070.54
1031.2
176.781
61.7
36.1207
28.6564
23.3384
18.2911
14.0823
11.0405
9.04411
7.80076
7.03577
6.56987
6.30432
6.18194
6.16722
6.23764
6.37818
6.58367
6.85379
7.18869
7.59284
8.07724
8.6559
9.34044
10.1501
11.1263
12.3573
14.0373
16.6106
21.2565
32.0334
64.5699
188.174
1070.98
1031.2
176.581
61.6423
36.2483
28.6783
23.0946
17.8121
13.4946
10.4564
8.52124
7.3504
6.64485
6.22649
6.00147
5.91409
5.93007
6.02767
6.19216
6.41928
6.70998
7.06478
7.48845
7.99272
8.59228
9.29899
10.1307
11.1264
12.3714
14.0568
16.6281
21.2674
32.0272
64.4419
187.172
1071.2
1031.2
176.335
61.5684
36.3598
28.647
22.7703
17.252
12.8458
9.83803
7.98453
6.89198
6.24868
5.88166
5.70031
5.65069
5.6999
5.82712
6.01794
6.26923
6.58364
6.96225
7.41042
7.94127
8.57025
9.30848
10.1717
11.1946
12.4561
14.1389
16.6851
21.2717
31.9184
63.9632
184.564
1071.69
1031.19
176.106
61.5241
36.4591
28.5627
22.3836
16.6442
12.1716
9.21316
7.45203
6.43856
5.85689
5.5412
5.40304
5.39041
5.47185
5.6273
5.84252
6.11546
6.45048
6.84909
7.31796
7.87016
8.52096
9.28247
10.1689
11.2118
12.4862
14.1698
16.6996
21.2444
31.7981
63.5386
182.664
1071.88
1031.19
175.82
61.4575
36.5337
28.4103
21.9032
15.952
11.4419
8.56143
6.91039
5.98453
5.46925
5.20809
5.1156
5.1422
5.25841
5.44465
5.68632
5.98327
6.34208
6.76522
7.26154
7.84393
8.52694
9.32305
10.2432
11.3138
12.6026
14.2787
16.7688
21.2385
31.6997
63.282
181.663
1072.44
1031.18
175.566
61.429
36.5903
28.2006
21.3674
15.2314
10.7135
7.92879
6.38762
5.54534
5.09386
4.88496
4.83599
4.89972
5.04856
5.26386
5.52953
5.84628
6.22388
6.66816
7.18764
7.79145
8.49655
9.31758
10.2636
11.3579
12.6647
14.3485
16.8306
21.2752
31.7024
63.1898
181.147
1072.59
1031.17
175.238
61.3691
36.6143
27.9158
20.7351
14.4307
9.94441
7.2919
5.86768
5.11276
4.73084
4.57774
4.57466
4.67737
4.86062
5.1083
5.40122
5.74036
6.14432
6.61826
7.16757
7.80264
8.54237
9.40163
10.3846
11.5074
12.8252
14.4924
16.9216
21.2837
31.6462
63.1034
180.882
1073.24
1031.16
174.974
61.3602
36.61
27.5792
20.0817
13.6499
9.21922
6.70416
5.39121
4.71618
4.39681
4.29297
4.32945
4.46486
4.67608
4.94932
5.26599
5.62717
6.05295
6.54693
7.11534
7.76858
8.52778
9.41125
10.422
11.5733
12.9166
14.6024
17.0398
21.4032
31.7705
63.2009
180.824
1073.33
1031.14
174.589
61.2818
36.5469
27.1557
19.3371
12.8093
8.47827
6.13173
4.94289
4.35371
4.10052
4.0481
4.12559
4.29493
4.5356
4.83615
5.1806
5.56974
6.02366
6.54703
7.14729
7.8358
8.63413
9.55958
10.6103
11.7902
13.1397
14.7973
17.1643
21.4262
31.7241
63.1509
180.744
1074.09
1031.13
174.325
61.2696
36.4312
26.6994
18.6485
12.0911
7.87894
5.65821
4.56479
4.04979
3.85291
3.84279
3.95239
4.14689
4.40813
4.72361
5.07693
5.4769
5.94641
6.48373
7.09675
7.79759
8.6075
9.54769
10.6218
11.8311
13.2108
14.8934
17.278
21.559
31.8848
63.3223
180.862
1074.09
1031.11
173.866
61.1052
36.1803
26.1249
17.8871
11.3512
7.30481
5.23566
4.25249
3.82124
3.68664
3.7238
3.87141
4.0993
4.39021
4.72571
5.09
5.49978
5.98728
6.56014
7.21827
7.96697
8.82765
9.8201
10.9425
12.1855
13.5738
15.2308
17.5506
21.7386
32.0154
63.446
180.916
1074.98
1031.09
173.548
60.9362
35.7338
25.4852
17.3149
10.9161
6.99267
4.99845
4.06838
3.68127
3.57974
3.64037
3.80472
4.0454
4.34308
4.67677
5.03682
5.43953
5.91388
6.47539
7.13168
7.87851
8.73103
9.71638
10.8427
12.0974
13.4959
15.1477
17.4411
21.5997
31.8608
63.3277
180.911
1074.9
1031.06
173.043
60.5065
34.8756
24.4296
16.5392
10.4927
6.7756
4.86848
3.98642
3.63713
3.56611
3.65299
3.8435
4.11165
4.43209
4.78534
5.17247
5.60717
6.11229
6.70679
7.41738
8.24232
9.1711
10.2304
11.4272
12.7409
14.1828
15.8672
18.1919
22.3936
32.7695
64.2775
181.538
1075.92
1031.03
172.357
59.7232
33.3978
22.839
15.6421
10.3256
6.89029
4.982
4.03332
3.62306
3.50674
3.56099
3.73022
3.98416
4.29209
4.64091
5.03327
5.47443
5.97624
6.55401
7.23899
8.05206
8.9738
10.0083
11.1685
12.433
13.7951
15.3432
17.4629
21.4149
31.5368
62.9389
180.551
1075.81
1030.99
171.949
58.9579
31.332
20.162
13.6293
9.4927
6.90409
5.32582
4.39226
3.87601
3.63641
3.58772
3.68464
3.89669
4.18968
4.55644
4.99766
5.51096
6.09607
6.75763
7.51431
8.41332
9.48848
10.6906
11.9993
13.4215
14.9564
16.7034
19.0622
23.3099
33.8295
65.4679
182.465
1076.85
1030.93
170.17
57.3624
29.0374
17.4148
11.3054
8.13141
6.51103
5.61843
5.04879
4.62812
4.28909
4.01645
3.82366
3.74048
3.80243
4.01977
4.3611
4.82707
5.40591
6.08839
6.87207
7.77221
8.859
10.1693
11.5832
12.9874
14.3317
15.7241
17.6155
21.32
31.1816
62.0644
179.275
1076.89
1030.87
171.182
57.6585
27.855
15.9421
10.3312
7.7231
6.52388
5.94442
5.62566
5.4116
5.23449
5.06361
4.88442
4.69177
4.49222
4.31418
4.22027
4.29953
4.61725
5.16622
5.92234
6.85383
7.94629
9.22702
10.8542
12.8352
14.8594
16.8361
19.0669
22.9033
32.9592
64.4571
181.969
1077.73
1030.82
170.094
55.5908
25.1931
14.0454
9.65585
7.90104
7.10047
6.62151
6.25292
5.93523
5.65707
5.41789
5.21722
5.04738
4.89221
4.74345
4.62559
4.59017
4.69607
5.00867
5.55893
6.35026
7.4057
8.7882
10.5496
12.5401
14.5463
16.562
18.9162
22.8227
32.6004
63.4677
181.336
1078.03
1030.81
168.821
52.0085
22.1894
13.3889
10.7325
9.7424
9.13574
8.58126
8.00779
7.41347
6.81507
6.2328
5.68392
5.17971
4.72478
4.31902
3.96369
3.66789
3.44993
3.33614
3.35998
3.55798
3.94552
4.52461
5.39059
6.7606
8.77944
11.0741
13.7694
18.7252
31.7403
68.0038
188.323
1078.88
1030.69
151.181
38.2964
17.1298
14.1729
13.7196
13.2416
12.6144
11.9054
11.1568
10.4019
9.6728
8.99921
8.40796
7.92212
7.56126
7.34306
7.28727
7.43182
7.74032
8.23289
8.93969
9.88829
11.1149
12.6689
14.6132
17.0473
20.1132
24.1151
29.7421
38.5756
54.4149
88.9277
201.432
1080.24
526.842
24.1422
24.3881
24.4529
24.4806
24.4969
24.5052
24.5072
24.5045
24.4981
24.4891
24.478
24.4655
24.4518
24.4375
24.4228
24.4078
24.3927
24.3776
24.3621
24.3461
24.3294
24.3118
24.2928
24.2719
24.2488
24.2233
24.1957
24.1675
24.1432
24.1295
24.1332
24.1564
24.1965
555.937
526.413
22.9931
22.9959
22.9989
23.0023
23.0061
23.0103
23.0149
23.02
23.0255
23.0312
23.037
23.0428
23.0484
23.0537
23.0587
23.0633
23.0674
23.071
23.074
23.0764
23.0782
23.0792
23.0793
23.0784
23.0766
23.0736
23.0697
23.0655
23.0623
23.0629
23.0723
23.0963
23.1373
531.55
1029.84
172.969
63.3229
33.8256
22.396
16.7539
13.4386
11.2382
9.65663
8.46247
7.53511
6.80557
6.23169
5.78641
5.45176
5.21553
5.06914
5.00788
5.02373
5.11111
5.26802
5.49084
5.7746
6.11261
6.49579
6.91192
7.34529
7.7782
8.20863
8.79091
10.545
17.7262
45.1505
159.389
1040.5
1029.84
175.234
65.9812
36.1858
24.2416
18.0976
14.4053
11.9794
10.2985
9.08754
8.18342
7.48465
6.92692
6.4692
6.0849
5.75633
5.47268
5.23183
5.03067
4.86642
4.73892
4.65135
4.60818
4.61477
4.67629
4.79588
4.97221
5.20364
5.54422
6.38315
9.33226
19.2456
50.3031
166.533
1041.07
1029.86
175.121
64.9672
34.0396
21.1653
14.5135
10.7355
8.50753
7.14299
6.2479
5.60493
5.10481
4.69788
4.36358
4.09349
3.88277
3.72634
3.618
3.55111
3.51785
3.51105
3.52494
3.55624
3.605
3.67566
3.78013
3.94898
4.26948
4.99763
6.83906
11.5438
23.3481
55.3064
170.711
1042.04
1029.87
172.768
61.7083
30.6742
18.3339
12.6168
9.81321
8.33081
7.41954
6.7503
6.19038
5.68986
5.23325
4.81943
4.45242
4.13709
3.87701
3.67311
3.52316
3.4226
3.36521
3.34383
3.35175
3.38581
3.45154
3.57207
3.80793
4.30286
5.38371
7.75925
12.949
24.7427
56.0215
170.821
1042.92
1029.88
172.638
61.6286
30.8165
18.7009
13.0969
10.2994
8.78149
7.84131
7.16371
6.60926
6.1148
5.65597
5.2286
4.83432
4.47614
4.15849
3.88684
3.66458
3.49225
3.3707
3.29893
3.27637
3.30599
3.40047
3.59389
3.96455
4.67838
6.0646
8.75311
14.0742
25.6762
56.6572
171.181
1043.7
1029.88
171.978
60.7959
29.9729
17.9856
12.5902
9.9705
8.54726
7.63968
6.96889
6.41668
5.92963
5.48756
5.08403
4.7158
4.38172
4.08292
3.82216
3.60256
3.42747
3.30112
3.22856
3.21735
3.28074
3.44388
3.7562
4.30936
5.26303
6.89789
9.7313
14.9527
26.2016
56.8594
171.387
1044.45
1029.89
172.054
60.9984
30.2802
18.3478
12.9645
10.34
8.91333
8.00673
7.33841
6.78659
6.29467
5.84089
5.42091
5.03323
4.67598
4.34985
4.05756
3.80256
3.5893
3.42458
3.31731
3.28073
3.3361
3.5195
3.89567
4.57539
5.72054
7.5627
10.5058
15.6054
26.5041
56.8913
171.54
1045.07
1029.89
172.249
61.1602
30.3325
18.3496
12.9745
10.3513
8.89789
7.95566
7.25826
6.68978
6.19615
5.75499
5.35699
4.9951
4.66418
4.36228
4.09015
3.85015
3.64684
3.48804
3.38511
3.35555
3.42718
3.646
4.09214
4.89672
6.22621
8.26744
11.3206
16.335
26.9892
57.249
172.039
1045.69
1029.9
172.197
61.0984
30.2697
18.3257
13.0086
10.4313
9.00587
8.07936
7.39054
6.82614
6.33325
5.89045
5.49047
5.12776
4.79722
4.49674
4.2268
3.98892
3.78692
3.629
3.52738
3.50143
3.5825
3.82279
4.31465
5.20812
6.6782
8.88288
12.0324
16.9615
27.3512
57.4333
172.339
1046.23
1029.91
172.439
61.3339
30.4394
18.4712
13.1557
10.5616
9.10045
8.13659
7.41861
6.83587
6.33549
5.89477
5.50309
5.15202
4.83529
4.54998
4.29616
4.07478
3.88929
3.74838
3.66513
3.66062
3.76924
4.04828
4.6006
5.58948
7.18897
9.52882
12.7474
17.5986
27.7889
57.7838
172.811
1046.75
1029.91
172.417
61.2626
30.3245
18.3825
13.1264
10.5751
9.13559
8.18376
7.47382
6.89694
6.40128
5.96427
5.57666
5.23119
4.92161
4.64514
4.40227
4.19358
4.02212
3.89726
3.83276
3.851
3.98874
4.3084
4.92109
5.99485
7.70202
10.1479
13.4098
18.1686
28.1465
58.0296
173.16
1047.24
1029.92
172.575
61.3967
30.4177
18.4843
13.2489
10.6931
9.23181
8.25604
7.52769
6.94008
6.44099
6.00608
5.62411
5.28683
4.98755
4.72342
4.49523
4.30333
4.15045
4.04684
4.0072
4.0554
4.23067
4.60064
5.28314
6.44553
8.25119
10.7785
14.0544
18.7122
28.5085
58.3297
173.569
1047.71
1029.93
172.615
61.3799
30.3501
18.4406
13.2544
10.7256
9.27316
8.30142
7.57673
6.99316
6.49871
6.06885
5.69252
5.36236
5.07214
4.8191
4.60468
4.42901
4.29435
4.21199
4.19756
4.27631
4.4897
4.91033
5.66139
6.90623
8.79659
11.3849
14.6556
19.2044
28.8208
58.579
173.919
1048.15
1029.94
172.727
61.442
30.3755
18.49
13.3349
10.8105
9.34746
8.36318
7.62972
7.04269
6.54941
6.12405
5.75428
5.4324
5.15232
4.91158
4.71228
4.55441
4.43978
4.38074
4.39402
4.5065
4.76222
5.23819
6.05965
7.38393
9.34811
11.9784
15.2246
19.6615
29.1209
58.8477
174.289
1048.57
1029.94
172.812
61.4565
30.3432
18.4863
13.3734
10.8656
9.40456
8.41997
7.68751
7.10321
6.61426
6.19431
5.83051
5.51579
5.24479
5.0154
4.83047
4.68989
4.59484
4.55867
4.59924
4.74497
5.0428
5.57311
6.45994
7.85409
9.87781
12.5338
15.7445
20.0717
29.3859
59.0878
174.624
1048.98
1029.95
172.93
61.4932
30.3415
18.5148
13.4344
10.9333
9.4669
8.47606
7.74054
7.15713
6.67229
6.25859
5.9022
5.59604
5.33521
5.11817
4.94854
4.82622
4.75188
4.7397
4.80865
4.98866
5.32953
5.91443
6.86435
8.32158
10.3924
13.0578
16.2212
20.4429
29.635
59.3353
174.963
1049.36
1029.96
173.067
61.5236
30.3276
18.5341
13.4908
11.0007
9.53367
8.5412
7.80606
7.22535
6.74513
6.33727
5.98734
5.68817
5.43584
5.22988
5.07441
4.96939
4.91501
4.92606
5.02254
5.23575
5.61802
6.25388
7.26011
8.76982
10.8739
13.5356
16.6457
20.7696
29.8546
59.5595
175.272
1049.73
1029.97
173.253
61.5695
30.329
18.5665
13.5519
11.0661
9.59496
8.5987
7.86304
7.28543
6.8111
6.41092
6.06942
5.77881
5.53604
5.34187
5.20084
5.11326
5.07917
5.11377
5.23804
5.48495
5.90853
6.59231
7.64883
9.20145
11.3262
13.9712
17.0222
21.0574
30.0573
59.7834
175.576
1050.09
1029.98
173.518
61.6329
30.3377
18.6062
13.6206
11.1404
9.66661
8.66809
7.93285
7.35852
6.88977
6.49673
6.16308
5.88055
5.64682
5.46411
5.33623
5.26358
5.24828
5.30499
5.45542
5.73406
6.19614
6.92294
8.02181
9.60628
11.739
14.3568
17.3467
21.3034
30.2332
59.9841
175.851
1050.42
1029.99
173.919
61.7361
30.3697
18.6587
13.6913
11.2102
9.73132
8.7297
7.99502
7.42483
6.96294
6.57868
6.25491
5.98277
5.76008
5.58977
5.4747
5.4161
5.41901
5.49751
5.67386
5.98346
6.4814
7.24649
8.38047
9.98693
12.1162
14.6973
17.6243
21.5137
30.3927
60.1796
176.115
1050.74
1029.99
174.577
61.9053
30.4282
18.7252
13.7708
11.2879
9.80446
8.80066
8.06702
7.50082
7.04531
6.66927
6.35504
6.09342
5.8826
5.72443
5.62099
5.57575
5.59475
5.69301
5.89343
6.23162
6.7613
7.55852
8.71913
10.3372
12.4525
14.9897
17.8545
21.6873
30.529
60.3531
176.353
1051.05
1030
175.669
62.1839
30.5262
18.8036
13.8485
11.3588
9.87007
8.86472
8.13304
7.57181
7.1237
6.75698
6.45351
6.20395
6.00586
5.85995
5.7687
5.73704
5.77198
5.88968
6.11334
6.47782
7.03548
7.85934
9.03916
10.6598
12.7518
15.2387
18.0425
21.8298
30.6501
60.5181
176.579
1051.34
1030.01
177.486
62.6042
30.6518
18.8842
13.9253
11.4311
9.9397
8.93473
8.20583
7.64958
7.20852
6.85044
6.55693
6.31885
6.13306
5.99921
5.92051
5.90266
5.95345
6.08904
6.33314
6.72044
7.30161
8.14627
9.33799
10.9529
13.0139
15.4459
18.1908
21.9429
30.7537
60.6669
176.785
1051.63
1030.02
179.819
63.0553
30.7526
18.9438
13.9877
11.4935
10.0024
8.99969
8.27484
7.72459
7.29149
6.9429
6.66015
6.43385
6.26029
6.13886
6.07303
6.0691
6.13542
6.28791
6.55073
6.95838
7.55954
8.42016
9.61766
11.2199
13.2434
15.6169
18.3051
22.0313
30.8452
60.8074
176.979
1051.9
1030.03
180.836
63.1824
30.7487
18.9716
14.0428
11.5572
10.0695
9.07008
8.34947
7.80504
7.37946
7.03982
6.76732
6.55218
6.39009
6.28063
6.22726
6.23672
6.31779
6.48633
6.76609
7.19114
7.80854
8.68027
9.87769
11.4612
13.442
15.7547
18.3889
22.097
30.9231
60.9343
177.157
1052.16
1030.04
180.867
63.1512
30.7268
19.0033
14.1
11.6205
10.1351
9.13873
8.42257
7.88431
7.46664
7.13623
6.87416
6.67028
6.51971
6.42221
6.38113
6.40364
6.49883
6.6824
6.97735
7.41739
8.04799
8.92688
10.1195
11.6793
13.6136
15.8642
18.4471
22.1442
30.9914
61.0536
177.323
1052.41
1030.05
180.931
63.1474
30.716
19.038
14.1582
11.6854
10.2033
9.21066
8.49933
7.96733
7.55742
7.23598
6.98378
6.79037
6.65077
6.56464
6.53525
6.57006
6.67839
6.8757
7.18448
7.63728
8.27761
9.15959
10.3429
11.8748
13.7598
15.9482
18.4828
22.1745
31.0493
61.1617
177.477
1052.66
1030.06
180.99
63.1365
30.7026
19.072
14.2152
11.749
10.2702
9.28157
8.57527
8.04976
7.64778
7.33542
7.09313
6.91012
6.78135
6.70634
6.68828
6.73483
6.85549
7.06539
7.38644
7.84971
8.49688
9.3786
10.549
12.0499
13.8839
16.0106
18.5001
22.1915
31.0997
61.263
177.621
1052.9
1030.07
181.047
63.123
30.6899
19.1075
14.2736
11.8144
10.3395
9.35506
8.65391
8.1348
7.74049
7.43682
7.20397
7.03087
6.91239
6.84792
6.8405
6.89799
7.02992
7.25102
7.58255
8.05397
8.7051
9.58336
10.7377
12.205
13.987
16.0534
18.5011
22.1964
31.1422
61.3554
177.757
1053.13
1030.08
181.103
63.1083
30.6786
19.1435
14.3313
11.8789
10.408
9.42799
8.73218
8.21963
7.83308
7.53807
7.31454
7.15116
7.04268
6.98835
6.99106
7.05878
7.20103
7.4321
7.77248
8.25033
8.90305
9.7748
10.9102
12.3419
14.0716
16.0796
18.4888
22.1918
31.1791
61.4421
177.887
1053.36
1030.09
181.156
63.0914
30.668
19.181
14.3904
11.9452
10.4785
9.50294
8.81246
8.30635
7.92731
7.64059
7.42591
7.27176
7.17274
7.12794
7.14009
7.2172
7.3687
7.60839
7.95596
8.4382
9.09003
9.95262
11.0667
12.4612
14.1386
16.0902
18.4644
22.1782
31.21
61.5216
178.012
1053.58
1030.1
181.21
63.0752
30.66
19.2196
14.4493
12.0109
10.5484
9.57752
8.8925
8.3929
8.02134
7.74283
7.53681
7.39162
7.30168
7.26594
7.28693
7.37268
7.53246
7.77954
8.13275
8.61748
9.26613
10.1172
11.2081
12.5644
14.19
16.0877
18.4302
22.1576
31.2364
61.5964
178.138
1053.79
1030.11
181.261
63.0567
30.6537
19.2602
14.5098
12.078
10.6198
9.65344
8.97379
8.48055
8.11623
7.84559
7.64784
7.51115
7.42975
7.40245
7.43158
7.52512
7.69215
7.94534
8.30263
8.78802
9.43167
10.2693
11.335
12.6522
14.2267
16.0728
18.3865
22.1298
31.2575
61.6651
178.268
1054
1030.12
181.309
63.0391
30.6502
19.3016
14.5697
12.1444
10.6905
9.72872
9.05454
8.56771
8.21059
7.94771
7.75803
7.62952
7.55627
7.53689
7.57355
7.67414
7.84747
8.10561
8.4656
8.95004
9.58706
10.4095
11.4486
12.7262
14.2505
16.0473
18.3349
22.0961
31.2745
61.7307
178.415
1054.21
1030.13
181.355
63.0224
30.6488
19.3443
14.6301
12.2112
10.7616
9.80442
9.13564
8.65509
8.30499
8.04959
7.86763
7.74689
7.68128
7.66926
7.71278
7.81965
7.99835
8.26033
8.62172
9.10372
9.73254
10.5383
11.5497
12.7875
14.2627
16.0125
18.2765
22.0567
31.2873
61.7945
178.596
1054.41
1030.14
181.403
63.0073
30.65
19.3877
14.6901
12.2772
10.8317
9.87917
9.21584
8.74158
8.39843
8.15038
7.97592
7.86263
7.80426
7.7991
7.84891
7.96134
8.14458
8.40941
8.77102
9.2493
9.86856
10.6564
11.6394
12.8375
14.2647
15.9698
18.2122
22.0126
31.2973
61.8622
178.846
1054.6
1030.15
181.453
62.9936
30.6533
19.4321
14.7504
12.3432
10.9018
9.95373
9.29572
8.82762
8.49122
8.25026
8.08298
7.97676
7.92518
7.92636
7.98186
8.0992
8.28618
8.55296
8.91379
9.38725
9.99587
10.7649
11.7191
12.8778
14.2585
15.9212
18.144
21.9653
31.3067
61.9439
179.233
1054.79
1030.16
181.504
62.9817
30.6587
19.4768
14.8101
12.4083
10.9709
10.0272
9.37446
8.91243
8.58265
8.3486
8.18826
8.08878
8.0436
8.05066
8.11134
8.23298
8.42301
8.69094
9.05012
9.51785
10.115
10.8646
11.79
12.9102
14.2462
15.8684
18.0723
21.9153
31.3196
62.0597
179.897
1054.97
1030.17
181.556
62.9702
30.6654
19.5219
14.8695
12.473
11.0394
10.1
9.4524
8.99626
8.67289
8.44547
8.29175
8.19866
8.15947
8.17196
8.23732
8.3627
8.55517
8.82358
9.18042
9.64176
10.2269
10.957
11.8537
12.9354
14.2271
15.8106
18.0008
21.8703
31.3442
62.2509
181.122
1055.16
1030.18
181.607
62.9586
30.6728
19.5664
14.9277
12.5364
11.1066
10.1714
9.52896
9.0786
8.76142
8.5404
8.39302
8.30602
8.27245
8.28998
8.35957
8.48824
8.68263
8.951
9.30497
9.75943
10.3321
11.0425
11.9104
12.9542
14.2032
15.7514
17.9323
21.8333
31.3998
62.6079
183.267
1055.34
1030.19
181.656
62.9464
30.6805
19.6105
14.9851
12.5989
11.1729
10.242
9.60447
9.15971
8.84846
8.63351
8.49212
8.41082
8.3825
8.40464
8.47805
8.60955
8.8054
9.07325
9.42388
9.87104
10.431
11.1216
11.9609
12.9681
14.1771
15.6948
17.873
21.8174
31.5106
63.0998
185.577
1055.52
1030.2
181.705
62.934
30.6885
19.6537
15.0413
12.6602
11.2379
10.3111
9.67856
9.23925
8.9337
8.72452
8.58877
8.5128
8.48934
8.51572
8.59255
8.72648
8.92338
9.19032
9.53725
9.97684
10.5239
11.1949
12.0066
12.9791
14.1515
15.6431
17.823
21.8125
31.6121
63.4146
186.533
1055.69
1030.21
181.753
62.9214
30.6969
19.6965
15.0966
12.7205
11.302
10.3793
9.75148
9.3174
9.01724
8.81347
8.68298
8.61192
8.5929
8.62309
8.70294
8.83892
9.03651
9.30221
9.6452
10.0771
10.6115
11.2633
12.0487
12.9885
14.1275
15.596
17.7776
21.8029
31.6677
63.5352
186.709
1055.87
1030.22
181.801
62.9089
30.7057
19.7384
15.1507
12.7796
11.3648
10.4461
9.82296
9.39393
9.09889
8.90018
8.77452
8.70795
8.69293
8.72651
8.80898
8.94663
9.14458
9.40878
9.74768
10.1719
10.6939
11.3274
12.0879
12.9975
14.1058
15.5529
17.7343
21.7858
31.6905
63.5797
186.774
1056.05
1030.23
181.848
62.896
30.7144
19.7795
15.2037
12.8375
11.4265
10.5117
9.89311
9.4689
9.17867
8.98463
8.86338
8.80083
8.78934
8.82585
8.91051
9.04943
9.2474
9.50984
9.84454
10.2613
10.7714
11.3876
12.1249
13.0066
14.0867
15.5138
17.6929
21.764
31.6964
63.5987
186.825
1056.24
1030.24
181.894
62.8826
30.7229
19.8195
15.2553
12.8941
11.4867
10.5758
9.96167
9.54209
9.25639
9.06668
8.94943
8.89045
8.88203
8.92102
9.00743
9.14723
9.34486
9.6053
9.93574
10.3451
10.844
11.444
12.1598
13.016
14.0706
15.4789
17.6546
21.7408
31.6952
63.6097
186.874
1056.42
1030.25
181.939
62.8693
30.7318
19.859
15.306
12.9496
11.5458
10.6386
10.0287
9.61352
9.33206
9.14632
9.03266
8.97681
8.97101
9.012
9.09973
9.24001
9.43696
9.69517
10.0213
10.4236
10.9117
11.4967
12.1929
13.026
14.0574
15.4484
17.62
21.7187
31.6918
63.6188
186.924
1056.61
1030.26
181.983
62.855
30.7403
19.8974
15.3554
13.0037
11.6035
10.6999
10.094
9.68303
9.40554
9.22344
9.11301
9.05989
9.05627
9.09886
9.18749
9.32785
9.5238
9.77956
10.1013
10.4967
10.9747
11.5458
12.2242
13.0364
14.0471
15.4227
17.5902
21.6995
31.6892
63.629
186.976
1056.8
1030.27
182.024
62.8401
30.7489
19.9351
15.4038
13.0568
11.66
10.7598
10.1578
9.75074
9.47693
9.29815
9.19056
9.13978
9.13794
9.1817
9.27084
9.41093
9.60557
9.85866
10.176
10.5646
11.0331
11.5914
12.2535
13.0471
14.0394
15.4012
17.5649
21.6838
31.6885
63.641
187.029
1056.99
1030.28
182.064
62.8247
30.7574
19.9722
15.4513
13.1088
11.7153
10.8184
10.2201
9.81666
9.54625
9.37047
9.26538
9.21655
9.21609
9.26064
9.34992
9.48939
9.68241
9.93262
10.2454
10.6276
11.087
11.6334
12.2807
13.0576
14.0335
15.3835
17.5446
21.672
31.6906
63.6553
187.084
1057.18
1030.29
182.103
62.8092
30.7665
20.0091
15.4983
13.1602
11.7697
10.8759
10.2809
9.88093
9.61364
9.44054
9.3376
9.29035
9.2909
9.33586
9.42492
9.56342
9.75453
10.0017
10.3099
10.6857
11.1365
11.6717
12.3053
13.0668
14.0283
15.3691
17.5291
21.6636
31.695
63.6714
187.14
1057.37
1030.3
182.141
62.7952
30.7769
20.0462
15.545
13.2109
11.8232
10.9322
10.3405
9.94361
9.67915
9.50841
9.4073
9.36129
9.36249
9.4075
9.49599
9.63321
9.82213
10.066
10.3695
10.739
11.1815
11.7061
12.3269
13.0745
14.0237
15.3575
17.5173
21.6581
31.7016
63.6887
187.195
1057.55
1030.31
182.179
62.7818
30.788
20.0833
15.5914
13.261
11.876
10.9876
10.3987
10.0048
9.74286
9.5742
9.47458
9.42949
9.43101
9.47574
9.56335
9.69897
9.88543
10.1257
10.4246
10.7877
11.2221
11.7365
12.3455
13.0806
14.0193
15.3477
17.5081
21.6551
31.7097
63.7068
187.248
1057.74
1030.32
182.216
62.7688
30.7998
20.1205
15.6374
13.3107
11.9281
11.0421
10.4559
10.0645
9.80487
9.63798
9.53958
9.49509
9.49661
9.54076
9.62717
9.76092
9.94464
10.1812
10.4751
10.8319
11.2583
11.7631
12.3609
13.0847
14.0144
15.3386
17.5005
21.6537
31.7188
63.7245
187.3
1057.93
1030.32
182.251
62.7565
30.8124
20.1578
15.6833
13.3599
11.9796
11.0957
10.5119
10.1229
9.8653
9.69991
9.60241
9.55822
9.55946
9.60273
9.68767
9.81927
10
10.2327
10.5215
10.872
11.2905
11.7858
12.3732
13.0868
14.0086
15.3298
17.4938
21.6533
31.7283
63.7417
187.349
1058.11
1030.33
182.287
62.7457
30.8264
20.1956
15.7291
13.409
12.0306
11.1487
10.567
10.1802
9.92428
9.76011
9.66323
9.61907
9.61972
9.66183
9.74504
9.87424
10.0518
10.2803
10.564
10.908
11.3188
11.805
12.3825
13.0868
14.0018
15.3208
17.4875
21.6535
31.7381
63.758
187.395
1058.28
1030.34
182.324
62.7369
30.8419
20.2339
15.7752
13.4579
12.0813
11.2011
10.6214
10.2364
9.98193
9.81871
9.72218
9.67775
9.67756
9.71824
9.79945
9.926
10.1001
10.3243
10.6027
10.9402
11.3433
11.8208
12.3889
13.0846
13.9936
15.3111
17.4811
21.6539
31.7478
63.7735
187.44
1058.46
1030.35
182.361
62.7288
30.8577
20.2721
15.821
13.5065
12.1316
11.2529
10.6749
10.2915
10.0383
9.87582
9.77938
9.73443
9.73313
9.77213
9.8511
9.97479
10.1453
10.365
10.6379
10.969
11.3645
11.8334
12.3927
13.0804
13.9842
15.3009
17.4745
21.6546
31.7579
63.7888
187.482
1058.63
1030.36
182.397
62.7205
30.8733
20.3098
15.8662
13.5545
12.1813
11.304
10.7276
10.3458
10.0936
9.93157
9.83498
9.78926
9.7866
9.82367
9.90017
10.0208
10.1874
10.4025
10.6699
10.9945
11.3825
11.8433
12.3942
13.0746
13.9737
15.2901
17.468
21.6557
31.7686
63.8041
187.522
1058.8
1030.37
182.431
62.7111
30.8883
20.3467
15.9108
13.6021
12.2304
11.3546
10.7797
10.3991
10.1479
9.98608
9.88911
9.84238
9.83811
9.87301
9.9468
10.0641
10.2266
10.4369
10.6986
11.0167
11.3975
11.8503
12.3934
13.0671
13.9624
15.279
17.4616
21.657
31.7794
63.8187
187.56
1058.96
1030.38
182.464
62.7017
30.9034
20.3835
15.9552
13.6493
12.2793
11.4048
10.8312
10.4519
10.2013
10.0395
9.94197
9.894
9.88788
9.92036
9.99119
10.1049
10.2631
10.4684
10.7243
11.0359
11.4094
11.8546
12.3903
13.058
13.9499
15.2674
17.4549
21.6583
31.7899
63.8322
187.595
1059.12
1030.39
182.498
62.6952
30.9205
20.4213
16
13.6968
12.3282
11.4548
10.8825
10.5041
10.2539
10.0921
9.99367
9.94423
9.93604
9.96588
10.0335
10.1434
10.2971
10.4971
10.7471
11.052
11.4183
11.8561
12.3849
13.0471
13.9363
15.255
17.4479
21.6591
31.7992
63.8428
187.625
1059.28
1030.4
182.532
62.6903
30.9388
20.4595
16.0451
13.7444
12.3771
11.5049
10.9335
10.5558
10.3059
10.1437
10.0443
9.99318
9.98271
10.0097
10.0739
10.1798
10.3288
10.5234
10.7673
11.0654
11.4245
11.855
12.3771
13.0342
13.9212
15.2415
17.4401
21.6592
31.8075
63.8512
187.651
1059.44
1030.41
182.567
62.6872
30.9582
20.4983
16.0905
13.7923
12.4263
11.5552
10.9846
10.6073
10.3574
10.1946
10.094
10.041
10.0281
10.052
10.1127
10.2143
10.3584
10.5474
10.785
11.0764
11.4283
11.8516
12.3672
13.0196
13.9047
15.2271
17.4316
21.6589
31.8149
63.8578
187.675
1059.59
1030.42
182.603
62.6862
30.979
20.5378
16.1366
13.8407
12.4759
11.6058
11.0359
10.6588
10.4086
10.245
10.1429
10.0879
10.0723
10.0931
10.1499
10.2472
10.3863
10.5695
10.8008
11.0852
11.4298
11.846
12.3553
13.0033
13.8869
15.2117
17.4225
21.6583
31.822
63.8632
187.698
1059.74
1030.43
182.64
62.6874
31.0014
20.5784
16.1835
13.8899
12.5262
11.657
11.0876
10.7104
10.4597
10.295
10.1913
10.134
10.1156
10.1329
10.1859
10.2787
10.4125
10.5899
10.8146
11.092
11.4294
11.8385
12.3416
12.9854
13.8677
15.1952
17.4128
21.6573
31.8287
63.8673
187.717
1059.88
1030.44
182.679
62.692
31.026
20.6205
16.2316
13.94
12.5772
11.7087
11.1396
10.7623
10.5108
10.3448
10.2391
10.1794
10.158
10.1718
10.2208
10.3089
10.4374
10.6087
10.8268
11.0971
11.4272
11.8291
12.3261
12.9657
13.8469
15.1774
17.402
21.6555
31.8349
63.8704
187.733
1060.03
1030.45
182.721
62.6993
31.0524
20.6637
16.2806
13.9909
12.629
11.761
11.1921
10.8144
10.5619
10.3943
10.2865
10.2242
10.1997
10.2099
10.2546
10.338
10.4611
10.6263
10.8377
11.1007
11.4233
11.818
12.3089
12.9444
13.8245
15.1582
17.3903
21.6533
31.8411
63.8735
187.748
1060.16
1030.46
182.764
62.7072
31.079
20.7073
16.3301
14.0424
12.6813
11.8139
11.245
10.8667
10.6131
10.4436
10.3336
10.2684
10.2406
10.2471
10.2877
10.3662
10.4838
10.6428
10.8473
11.103
11.418
11.8055
12.2901
12.9215
13.8007
15.1377
17.3775
21.6504
31.8472
63.8763
187.762
1060.29
1030.46
182.806
62.7154
31.106
20.7514
16.3803
14.0946
12.7342
11.8673
11.2984
10.9193
10.6643
10.4929
10.3804
10.3123
10.2811
10.2837
10.32
10.3936
10.5056
10.6584
10.856
11.1042
11.4115
11.7915
12.2697
12.8968
13.775
15.1153
17.3628
21.6457
31.8515
63.8768
187.771
1060.42
1030.47
182.848
62.7247
31.1341
20.7965
16.4316
14.1478
12.7881
11.9216
11.3525
10.9725
10.7159
10.5423
10.4271
10.3559
10.3212
10.3199
10.3518
10.4205
10.5269
10.6734
10.864
11.1046
11.404
11.7762
12.2476
12.8703
13.748
15.0921
17.3467
21.6399
31.8552
63.8767
187.779
1060.55
1030.48
182.892
62.7368
31.1644
20.8436
16.4845
14.2026
12.8434
11.977
11.4075
11.0264
10.768
10.592
10.4739
10.3994
10.361
10.3557
10.3833
10.4471
10.5479
10.688
10.8716
11.1044
11.3955
11.7596
12.2241
12.8426
13.7201
15.0681
17.3293
21.6326
31.8579
63.8756
187.783
1060.67
1030.49
182.939
62.7533
31.1977
20.8928
16.5394
14.259
12.9
12.0336
11.4635
11.0811
10.8206
10.642
10.5207
10.4427
10.4007
10.3913
10.4145
10.4733
10.5685
10.7023
10.8786
11.1036
11.3863
11.7421
12.1996
12.8138
13.691
15.0424
17.3097
21.6222
31.8568
63.8685
187.779
1060.78
1030.5
182.99
62.7732
31.2331
20.9437
16.5957
14.3167
12.9579
12.0914
11.5206
11.1365
10.8737
10.6921
10.5675
10.4859
10.44
10.4265
10.4452
10.4991
10.5887
10.7161
10.8853
11.1023
11.3765
11.7239
12.1744
12.7841
13.6607
15.015
17.2873
21.6082
31.8509
63.8548
187.769
1060.9
1030.51
183.044
62.7957
31.2704
20.9962
16.6536
14.376
13.0172
12.1504
11.5786
11.1928
10.9274
10.7426
10.6144
10.5289
10.4789
10.4612
10.4755
10.5245
10.6086
10.7297
10.8918
11.101
11.3668
11.706
12.1493
12.7543
13.6297
14.9861
17.2625
21.5908
31.8409
63.8364
187.755
1061.01
1030.52
183.101
62.8224
31.3103
21.0509
16.7134
14.437
13.078
12.2108
11.6379
11.25
10.9817
10.7934
10.6613
10.5718
10.5177
10.4957
10.5054
10.5497
10.6284
10.7435
10.8988
11.1003
11.358
11.6892
12.1254
12.7254
13.5991
14.9568
17.2365
21.5711
31.8281
63.8153
187.739
1061.11
1030.53
183.163
62.8525
31.3526
21.1075
16.7751
14.4998
13.1405
12.2727
11.6985
11.3083
11.0368
10.8447
10.7085
10.6146
10.5562
10.5298
10.5351
10.5747
10.6482
10.7576
10.9064
11.1007
11.3507
11.674
12.1033
12.6983
13.5699
14.9282
17.2102
21.5504
31.8138
63.7931
187.723
1061.22
1030.54
183.23
62.886
31.3969
21.1659
16.8387
14.5643
13.2047
12.3361
11.7605
11.3677
11.0927
10.8964
10.7557
10.6573
10.5944
10.5636
10.5645
10.5995
10.6681
10.772
10.9147
11.1023
11.345
11.661
12.0835
12.6735
13.5426
14.901
17.1846
21.5293
31.7982
63.7696
187.706
1061.33
1030.55
183.3
62.9223
31.4431
21.2261
16.9041
14.6307
13.2706
12.4012
11.8239
11.4282
11.1494
10.9486
10.8031
10.6999
10.6322
10.5969
10.5934
10.6239
10.6878
10.7866
10.9237
11.105
11.3409
11.65
12.0662
12.6512
13.5176
14.8755
17.1599
21.5082
31.7817
63.745
187.69
1061.44
1030.56
183.373
62.9602
31.4908
21.2882
16.9715
14.6992
13.3385
12.4681
11.8889
11.49
11.207
11.0013
10.8506
10.7423
10.6697
10.6297
10.6218
10.6479
10.7073
10.8013
10.9331
11.1087
11.3384
11.6411
12.0514
12.6316
13.4952
14.8524
17.1371
21.4882
31.7657
63.7217
187.676
1061.55
1030.56
183.45
63.002
31.5413
21.3529
17.0415
14.77
13.4086
12.537
11.9557
11.5533
11.2656
11.0546
10.8982
10.7844
10.7067
10.6619
10.6495
10.6714
10.7265
10.8159
10.943
11.1133
11.3374
11.6343
12.0392
12.6149
13.4758
14.832
17.1167
21.47
31.7508
63.7002
187.666
1061.66
1030.57
183.531
63.0457
31.5932
21.4195
17.1136
14.8432
13.4809
12.608
12.0243
11.618
11.3252
11.1083
10.9459
10.8263
10.743
10.6933
10.6763
10.694
10.7449
10.8302
10.9528
11.1184
11.3375
11.6293
12.0294
12.6011
13.4594
14.8146
17.099
21.4541
31.7379
63.6816
187.659
1061.78
1030.59
183.615
63.0914
31.6469
21.4881
17.1882
14.9189
13.5557
12.6813
12.0949
11.6842
11.3857
11.1624
10.9935
10.8676
10.7786
10.7236
10.7021
10.7155
10.7625
10.8438
10.9625
11.1239
11.3385
11.6258
12.0216
12.5899
13.446
14.8002
17.0844
21.441
31.7276
63.6666
187.657
1061.9
1030.6
183.701
63.1379
31.7014
21.5584
17.265
14.9971
13.6332
12.7571
12.1675
11.7518
11.4469
11.2166
11.0406
10.908
10.813
10.7527
10.7264
10.7357
10.7788
10.8565
10.9715
11.1292
11.34
11.6235
12.0157
12.5809
13.4352
14.7887
17.0727
21.4307
31.7199
63.6554
187.66
1062.02
1030.61
183.788
63.1852
31.7571
21.6306
17.3442
15.0782
13.7141
12.8359
12.242
11.8204
11.5084
11.2704
11.0869
10.9473
10.846
10.7802
10.7491
10.7543
10.7937
10.868
10.9797
11.1341
11.3416
11.6218
12.0111
12.5739
13.4268
14.7799
17.064
21.4235
31.7155
63.6489
187.667
1062.15
1030.62
183.879
63.2349
31.8154
21.7056
17.4264
15.1626
13.7985
12.9177
12.3186
11.8899
11.5699
11.3236
11.1322
10.9852
10.8774
10.8059
10.77
10.771
10.8068
10.8779
10.9867
11.1383
11.343
11.6206
12.0075
12.5686
13.4206
14.7737
17.0583
21.4196
31.7147
63.6474
187.679
1062.28
1030.63
183.971
63.2852
31.8755
21.7837
17.5119
15.2499
13.8856
13.0018
12.3969
11.9606
11.6318
11.3766
11.1765
11.0218
10.907
10.8296
10.7888
10.7857
10.818
10.8861
10.9922
11.1414
11.3438
11.6193
12.0044
12.5644
13.4161
14.7694
17.0547
21.4179
31.7162
63.6489
187.693
1062.41
1030.64
184.064
63.3357
31.9373
21.8646
17.6007
15.3406
13.9759
13.0886
12.4774
12.0327
11.6943
11.4294
11.2201
11.057
10.9349
10.8514
10.8055
10.7982
10.827
10.8922
10.9959
11.1429
11.3435
11.6174
12.0014
12.5609
13.4128
14.7666
17.0528
21.4181
31.7198
63.6535
187.71
1062.55
1030.65
184.16
63.3889
32.0025
21.9496
17.6935
15.4351
14.0696
13.1785
12.5602
12.1062
11.7575
11.482
11.2628
11.0907
10.9609
10.8709
10.8196
10.808
10.8334
10.8959
10.9973
11.1426
11.3418
11.6146
11.998
12.5576
13.4102
14.7648
17.0524
21.42
31.7252
63.6606
187.728
1062.68
1030.67
184.26
63.4452
32.0714
22.0388
17.7906
15.5335
14.1668
13.2713
12.6452
12.1811
11.821
11.5341
11.3042
11.1226
10.9847
10.8877
10.831
10.815
10.8369
10.8967
10.9962
11.14
11.3381
11.6103
11.9937
12.554
13.4076
14.7634
17.0525
21.4226
31.7314
63.6691
187.748
1062.82
1030.68
184.363
63.5033
32.1431
22.1319
17.8919
15.6359
14.2677
13.3673
12.7325
12.2571
11.8847
11.5855
11.3441
11.1524
11.0058
10.9017
10.8393
10.8188
10.8372
10.8944
10.9921
11.1348
11.3323
11.6044
11.9883
12.5498
13.405
14.7623
17.0534
21.4264
31.7396
63.6811
187.77
1062.96
1030.69
184.469
63.5636
32.2178
22.2291
17.9976
15.7425
14.3724
13.4663
12.8219
12.3341
11.9481
11.6356
11.382
11.1796
11.0239
10.9123
10.844
10.8189
10.8339
10.8886
10.9847
11.1265
11.3238
11.5964
11.9813
12.5444
13.4016
14.761
17.0544
21.4305
31.7484
63.6944
187.793
1063.1
1030.7
184.577
63.6235
32.2939
22.3296
18.1074
15.8533
14.4808
13.5684
12.913
12.4116
12.0108
11.6839
11.4173
11.2035
11.0382
10.919
10.8445
10.8148
10.8264
10.8789
10.9736
11.1149
11.3124
11.5859
11.9725
12.5378
13.3975
14.7595
17.0557
21.4354
31.7586
63.7106
187.818
1063.25
1030.72
184.686
63.6825
32.3712
22.4336
18.2218
15.9689
14.5936
13.6737
13.006
12.489
12.072
11.7296
11.4491
11.2234
11.0483
10.9211
10.8406
10.8062
10.8145
10.8648
10.9584
11.0995
11.2977
11.5726
11.9614
12.5295
13.3924
14.7575
17.0571
21.4411
31.7707
63.7306
187.846
1063.39
1030.73
184.796
63.7392
32.4488
22.5407
18.341
16.09
14.7113
13.7822
13.0999
12.5656
12.1308
11.7718
11.4767
11.2387
11.0535
10.9183
10.8315
10.7926
10.7976
10.846
10.9388
11.08
11.2793
11.5563
11.9479
12.5195
13.3862
14.7551
17.0587
21.4477
31.7849
63.7542
187.877
1063.54
1030.75
184.903
63.7943
32.5283
22.6516
18.4652
16.2181
14.8346
13.8931
13.1936
12.64
12.1862
11.8099
11.4997
11.249
11.0535
10.9101
10.8172
10.7737
10.7756
10.8222
10.9144
11.0562
11.2571
11.5366
11.9316
12.5073
13.3786
14.752
17.0604
21.4553
31.8013
63.7819
187.909
1063.69
1030.76
185.009
63.8499
32.6117
22.7676
18.5946
16.3513
14.9619
14.0061
13.2874
12.7129
12.2387
11.844
11.518
11.2542
11.0481
10.8964
10.7973
10.7493
10.7482
10.7932
10.8851
11.0278
11.2308
11.5134
11.9125
12.493
13.3695
14.7482
17.0623
21.4638
31.8197
63.8129
187.942
1063.84
1030.78
185.119
63.9067
32.6985
22.8888
18.7291
16.4889
15.0927
14.1211
13.3815
12.7842
12.2882
11.8739
11.5313
11.2538
11.0368
10.8767
10.7712
10.7188
10.7148
10.7584
10.8502
10.9942
11.1997
11.486
11.8898
12.4758
13.3583
14.7429
17.0632
21.4719
31.8384
63.8452
187.974
1063.99
1030.79
185.226
63.9594
32.7859
23.014
18.8686
16.6315
15.2273
14.2378
13.4747
12.8525
12.3329
11.8979
11.538
11.2465
11.0184
10.8499
10.7382
10.6815
10.6749
10.7173
10.8095
10.9551
11.1636
11.4542
11.8633
12.4556
13.3448
14.7362
17.0636
21.4805
31.8589
63.8813
188.009
1064.15
1030.81
185.331
64.0096
32.8755
23.1444
19.0138
16.779
15.3653
14.3556
13.5664
12.917
12.372
11.9153
11.5374
11.2316
10.9924
10.8156
10.698
10.6371
10.6281
10.6697
10.7624
10.9101
11.122
11.4174
11.8325
12.4318
13.3285
14.7274
17.0625
21.4883
31.8798
63.9191
188.042
1064.3
1030.82
185.433
64.0555
32.9657
23.2798
19.1655
16.9324
15.5072
14.4741
13.6555
12.9761
12.4041
11.9246
11.5283
11.2081
10.958
10.773
10.6497
10.5852
10.5741
10.6152
10.7089
10.8591
11.075
11.3757
11.7975
12.4045
13.3094
14.7166
17.0603
21.4959
31.9016
63.9591
188.075
1064.46
1030.84
185.527
64.0947
33.0553
23.4197
19.324
17.0919
15.6521
14.5915
13.7398
13.028
12.4275
11.9245
11.5096
11.1751
10.9143
10.7217
10.5932
10.5253
10.5126
10.5535
10.6487
10.8018
11.0221
11.3288
11.7577
12.373
13.2869
14.703
17.0559
21.5019
31.923
63.9999
188.106
1064.62
1030.86
185.615
64.1289
33.1457
23.565
19.4919
17.259
15.7994
14.7062
13.8178
13.0713
12.4412
11.9143
11.4808
11.1324
10.8613
10.6614
10.5281
10.4574
10.4435
10.4849
10.582
10.7385
10.9638
11.277
11.7138
12.3381
13.2615
14.6873
17.0501
21.5073
31.9447
64.0422
188.137
1064.79
1030.87
185.699
64.1624
33.2396
23.716
19.6699
17.4328
15.9465
14.8156
13.8877
13.1052
12.4448
11.8938
11.4419
11.0797
10.7987
10.5921
10.4546
10.3815
10.367
10.4093
10.5087
10.6691
10.8998
11.22
11.6652
12.2989
13.2326
14.6685
17.0419
21.511
31.9658
64.0849
188.164
1064.95
1030.89
185.78
64.1912
33.3359
23.8719
19.8509
17.6087
16.094
14.9229
13.9523
13.1311
12.4387
11.8627
11.392
11.0163
10.726
10.5133
10.3721
10.2973
10.2828
10.3265
10.4289
10.5938
10.8305
11.1582
11.6123
12.2562
13.2007
14.6475
17.0319
21.5134
31.9863
64.1277
188.189
1065.12
1030.91
185.851
64.2117
33.4319
24.0332
20.0394
17.7902
16.2423
15.0252
14.0075
13.1449
12.4193
11.8181
11.3291
10.9405
10.6418
10.4238
10.2799
10.2043
10.1905
10.2364
10.3423
10.5121
10.7553
11.0909
11.5543
12.2089
13.1647
14.6228
17.0187
21.5132
32.0055
64.1705
188.211
1065.29
1030.93
185.913
64.2262
33.5299
24.2003
20.2332
17.9745
16.3888
15.1208
14.0522
13.1459
12.3861
11.7595
11.2527
10.8522
10.5459
10.3238
10.1782
10.1027
10.0905
10.1394
10.2496
10.425
10.6752
11.0193
11.4926
12.1582
13.1259
14.5958
17.0039
21.512
32.0243
64.2135
188.231
1065.47
1030.94
185.968
64.2336
33.628
24.3739
20.4345
18.1631
16.5334
15.2079
14.0839
13.1316
12.3368
11.6853
11.1616
10.7503
10.4378
10.2127
10.0665
9.99222
9.98262
10.0353
10.1506
10.3321
10.5898
10.9427
11.4261
12.1029
13.0826
14.5645
16.9849
21.5069
32.0402
64.2541
188.246
1065.64
1030.96
186.008
64.2251
33.7201
24.5513
20.6414
18.3529
16.6717
15.2824
14.0991
13.0995
12.2699
11.5943
11.055
10.6345
10.3172
10.0906
9.94525
9.87331
9.86742
9.92498
10.0461
10.2347
10.5005
10.8628
11.3566
12.0451
13.0371
14.5314
16.9645
21.5006
32.0551
64.2933
188.258
1065.82
1030.98
186.029
64.1954
33.8019
24.7338
20.8561
18.543
16.8009
15.3415
14.0963
13.0487
12.185
11.4868
10.9334
10.5051
10.1846
9.95795
9.81461
9.74621
9.74507
9.8084
9.9362
10.1324
10.4068
10.7787
11.2831
11.9832
12.9873
14.4937
16.9394
21.4897
32.0661
64.3284
188.262
1066
1031
186.005
64.1186
33.8617
24.9207
21.0761
18.7261
16.9148
15.3819
14.074
12.9791
12.0823
11.3628
10.797
10.3626
10.0405
9.81519
9.67527
9.61168
9.61648
9.68666
9.82214
10.0268
10.3106
10.6927
11.2082
11.9201
12.9365
14.4552
16.9133
21.4775
32.0747
64.3595
188.262
1066.2
1031.01
185.718
63.9184
33.8843
25.0968
21.2932
18.9071
17.0222
15.4104
14.0359
12.8918
11.9619
11.2221
10.6455
10.2067
9.88456
9.66219
9.52706
9.46951
9.48136
9.55936
9.70333
9.91719
10.2108
10.6033
11.1298
11.8532
12.8814
14.4117
16.8816
21.4591
32.077
64.3829
188.252
1066.38
1031.03
184.112
63.468
33.8683
25.2798
21.5201
19.0872
17.1169
15.4188
13.9748
12.7816
11.8204
11.0627
10.4775
10.0367
9.7167
9.49913
9.37046
9.32045
9.34072
9.42782
9.58147
9.80554
10.1099
10.5137
11.0518
11.7871
12.8272
14.3692
16.8509
21.441
32.0784
64.4048
188.244
1066.59
1031.05
181.515
62.97
33.8879
25.4864
21.7555
19.2629
17.1975
15.4074
13.8918
12.6499
11.6589
10.8855
10.2942
9.85358
9.53768
9.32663
9.20591
9.16474
9.19457
9.29175
9.4559
9.69085
10.0064
10.4216
10.9713
11.718
12.7693
14.3224
16.815
21.4172
32.0742
64.4203
188.227
1066.79
1031.06
179.79
62.7059
33.9796
25.7192
21.9983
19.4316
17.26
15.3721
13.7833
12.4938
11.4757
10.6896
10.0953
9.65745
9.34799
9.14546
9.0344
9.0036
9.0444
9.15298
9.3289
9.57595
9.90384
10.3315
10.8936
11.6524
12.7152
14.2794
16.7828
21.396
32.0704
64.4344
188.214
1067.02
1031.08
178.934
62.5578
34.0911
25.9572
22.2379
19.5863
17.2995
15.3093
13.6472
12.3126
11.2708
10.4755
9.88127
9.44904
9.14826
8.95608
8.8562
8.83702
8.88986
9.01073
9.19915
9.45884
9.79945
10.2398
10.814
11.5843
12.6577
14.2323
16.7456
21.3695
32.0618
64.4434
188.192
1067.23
1031.09
178.479
62.4598
34.2222
26.2067
22.4768
19.7257
17.313
15.2166
13.4819
12.1054
11.0441
10.2439
9.65336
9.2297
8.94
8.76015
8.67307
8.66698
8.7332
8.86769
9.06991
9.34359
9.69824
10.1525
10.7401
11.5226
12.6073
14.1926
16.7157
21.3485
32.055
64.4519
188.176
1067.48
1031.11
178.228
62.3907
34.3657
26.4615
22.708
19.8427
17.295
15.0905
13.2859
11.8721
10.7966
9.99606
9.41299
9.00078
8.72433
8.55839
8.48534
8.49324
8.57358
8.72227
8.93875
9.22669
9.59548
10.0634
10.664
11.458
12.5528
14.1478
16.6799
21.3216
32.0434
64.455
188.151
1067.7
1031.12
178.071
62.3312
34.5194
26.7229
22.9289
19.9313
17.2393
14.9263
13.0566
11.6121
10.5287
9.73334
9.16199
8.76438
8.50349
8.35318
8.29545
8.31848
8.41403
8.57806
8.81008
9.11374
9.49828
9.98165
10.5967
11.4033
12.5092
14.1145
16.6552
21.3033
32.0348
64.4576
188.134
1067.98
1031.13
177.964
62.281
34.6836
26.9882
23.1322
19.9838
17.1414
14.7229
12.7948
11.3272
10.2428
9.45806
8.90255
8.52244
8.27899
8.14542
8.10361
8.142
8.25281
8.43214
8.67958
8.99874
9.39862
9.89673
10.5253
11.3432
12.4587
14.073
16.6214
21.2759
32.019
64.4524
188.105
1068.21
1031.15
177.874
62.231
34.8575
27.2523
23.3084
19.9926
16.9982
14.4788
12.4999
11.0172
9.93901
9.17096
8.63605
8.27692
8.05323
7.93771
7.91248
7.96666
8.09325
8.2887
8.55277
8.88907
9.30636
9.82158
10.4659
11.297
12.4233
14.0475
16.6035
21.2612
32.0086
64.45
188.092
1068.51
1031.16
177.8
62.1863
35.0308
27.5026
23.4597
19.9673
16.8164
14.1978
12.174
10.6835
9.61846
8.87329
8.3639
8.02906
7.82675
7.72982
7.72087
7.78991
7.93104
8.14162
8.42164
8.77452
9.20863
9.74026
10.3996
11.2431
12.3787
14.0109
16.5734
21.2366
31.995
64.4481
188.074
1068.75
1031.17
177.704
62.1246
35.2014
27.7446
23.581
19.8943
16.5822
13.87
11.8114
10.3239
9.28106
8.56541
8.08591
7.77742
7.59793
7.52127
7.53041
7.61591
7.77253
7.99867
8.29568
8.66713
9.12092
9.67249
10.351
11.2112
12.3591
13.999
16.5669
21.2306
31.9923
64.4583
188.086
1069.08
1031.18
177.605
62.0681
35.3708
27.9678
23.6669
19.7768
16.3038
13.5047
11.421
9.94611
8.9334
8.25232
7.80366
7.52164
7.36573
7.31016
7.33817
7.4408
7.61336
7.85459
8.16698
8.55528
9.02714
9.59712
10.293
11.1681
12.3264
13.9732
16.5472
21.2163
31.9907
64.4724
188.084
1069.32
1031.18
177.478
61.9973
35.5363
28.1732
23.7128
19.605
15.9705
13.094
10.9982
9.54743
8.57269
7.93036
7.51531
7.26217
7.13193
7.09939
7.14815
7.26986
7.46049
7.719
8.04899
8.45688
8.95037
9.54307
10.2611
11.1553
12.3267
13.9808
16.5591
21.2267
32.0025
64.4962
188.106
1069.68
1031.19
177.345
61.9326
35.6978
28.3518
23.713
19.3808
15.5898
12.6474
10.5522
9.13628
8.20636
7.60378
7.22227
6.99881
6.89495
6.886
6.95583
7.09676
7.30544
7.581
7.92738
8.35215
8.86417
9.47654
10.2138
11.1244
12.3068
13.9678
16.5519
21.2236
32.0105
64.5167
188.106
1069.93
1031.19
177.176
61.8528
35.8517
28.5013
23.6598
19.0931
15.1514
12.1577
10.0781
8.70795
7.82928
7.2704
6.92537
6.73395
6.65852
6.67507
6.76786
6.92998
7.159
7.45442
7.82045
8.26585
8.80096
9.43829
10.2006
11.1341
12.3338
14.0025
16.5851
21.2491
32.0317
64.5474
188.139
1070.32
1031.2
177.008
61.7882
36.0014
28.6159
23.552
18.7482
14.6663
11.6375
9.58867
8.27402
7.44801
6.93278
6.6251
6.46636
6.41981
6.46206
6.57768
6.76051
7.00905
7.32301
7.70666
8.16981
8.72442
9.38242
10.165
11.1162
12.3288
14.0023
16.582
21.2408
32.0251
64.5463
188.125
1070.56
1031.2
176.806
61.7162
36.1419
28.6903
23.3784
18.3324
14.1219
11.0762
9.07508
7.82732
7.059
6.5907
6.32344
6.19989
6.18445
6.25453
6.39509
6.60096
6.87185
7.20791
7.61365
8.10014
8.68114
9.3678
10.1792
11.1565
12.3884
14.0689
16.6432
21.2923
32.083
64.6516
188.265
1071
1031.2
176.617
61.6681
36.2753
28.7186
23.141
17.8583
13.5373
10.4939
8.5534
7.37806
6.66929
6.2487
6.0221
5.93366
5.94898
6.04628
6.21078
6.43823
6.72962
7.08545
7.51053
8.01669
8.61846
9.32707
10.1602
11.1567
12.402
14.0873
16.6582
21.2966
32.0543
64.4313
186.775
1071.22
1031.2
176.378
61.599
36.3891
28.6908
22.8207
17.3008
12.8895
9.87567
8.01658
6.92
6.27396
5.90504
5.7224
5.67198
5.72074
5.84784
6.0388
6.29052
6.60571
6.98545
7.43512
7.96804
8.59942
9.33965
10.2042
11.2277
12.4889
14.1705
16.7144
21.2965
31.9357
63.9382
184.182
1071.72
1031.19
176.157
61.5588
36.4891
28.6097
22.4384
16.6962
12.2168
9.25124
7.4842
6.46681
5.88268
5.56541
5.4263
5.41317
5.49441
5.64993
5.86544
6.13892
6.47476
6.87448
7.34471
7.89883
8.5519
9.31504
10.2022
11.245
12.5185
14.2004
16.7277
21.2692
31.8211
63.5454
182.465
1071.91
1031.19
175.875
61.4933
36.5627
28.4576
21.9593
16.0043
11.4861
8.59805
6.94136
6.01209
5.49488
5.23268
5.13975
5.16634
5.28283
5.46954
5.71187
6.00969
6.36965
6.79402
7.29187
7.87669
8.56242
9.36033
10.2811
11.3511
12.6383
14.3119
16.7987
21.2653
31.7302
63.3184
181.596
1072.47
1031.18
175.625
61.4655
36.6169
28.2467
21.424
15.2839
10.7569
7.96394
6.4175
5.57224
5.11917
4.90961
4.86064
4.92482
5.0744
5.29047
5.55695
5.87485
6.25373
6.69935
7.22048
7.82681
8.53457
9.35702
10.303
11.3959
12.7004
14.3814
16.8609
21.3048
31.741
63.2464
181.147
1072.62
1031.17
175.297
61.4031
36.6361
27.9581
20.7911
14.4833
9.98695
7.32565
5.89606
5.13833
4.75516
4.60188
4.59934
4.7031
4.88777
5.13696
5.43138
5.77195
6.17727
6.65317
7.20508
7.84366
8.58696
9.44807
10.4308
11.5516
12.8659
14.5288
16.9535
21.3136
31.6861
63.1685
180.922
1073.27
1031.16
175.033
61.392
36.6278
27.6188
20.1379
13.703
9.26126
6.73683
5.41825
4.74034
4.41983
4.31603
4.35337
4.49025
4.70339
4.97876
5.29712
5.65975
6.0874
6.58369
7.15484
7.81146
8.57428
9.45998
10.4705
11.619
12.958
14.6389
17.0721
21.4349
31.8148
63.2736
180.884
1073.35
1031.15
174.644
61.3082
36.5576
27.19
19.3922
12.8629
8.52035
6.16386
4.96905
4.37682
4.1225
4.07024
4.14881
4.31995
4.56299
4.86632
5.2132
5.60451
6.06116
6.58785
7.19199
7.88486
8.68815
9.61765
10.669
11.846
13.1897
14.84
17.1996
21.4574
31.7661
63.223
180.814
1074.12
1031.13
174.378
61.2899
36.4328
26.7275
18.7059
12.1522
7.9272
5.69372
4.59225
4.07286
3.87401
3.8635
3.97383
4.16988
4.43335
4.75139
5.10729
5.51006
5.98262
6.5233
7.14028
7.84556
8.6605
9.60493
10.68
11.8866
13.2606
14.9358
17.3131
21.591
31.9286
63.397
180.937
1074.11
1031.11
173.908
61.1121
36.1666
26.1426
17.9439
11.4176
7.35786
5.27387
4.28105
3.8444
3.70723
3.7437
3.89194
4.1215
4.41477
4.75286
5.11994
5.53297
6.02449
6.60203
7.26538
8.01999
8.88743
9.886
11.0112
12.2527
13.6353
15.2833
17.5929
21.7738
32.0595
63.519
180.99
1075.01
1031.09
173.584
60.9278
35.6937
25.48
17.3671
10.9927
7.05743
5.04438
4.10073
3.70532
3.59927
3.65791
3.82201
4.06368
4.36306
4.6987
5.06105
5.46649
5.94413
6.50969
7.17068
7.92254
8.7807
9.77138
10.9008
12.155
13.5491
15.1929
17.4764
21.628
31.8962
63.3902
180.979
1074.92
1031.06
173.061
60.4716
34.7938
24.3754
16.559
10.5618
6.84523
4.92078
4.02274
3.66233
3.58475
3.66848
3.85835
4.12745
4.44945
4.80475
5.19458
5.63255
6.14153
6.74071
7.45721
8.28898
9.22502
10.2915
11.4936
12.8092
14.2488
15.9262
18.2406
22.4335
32.8155
64.3471
181.604
1075.94
1031.03
172.357
59.6649
33.2714
22.7139
15.5924
10.3593
6.95853
5.0463
4.08068
3.6536
3.52503
3.57165
3.73699
3.98958
4.29733
4.64692
5.04074
5.48384
5.98801
6.56871
7.25759
8.07569
9.00288
10.0427
11.2071
12.4732
13.8336
15.3763
17.4872
21.4296
31.5489
62.9622
180.579
1075.83
1030.99
171.926
58.8955
31.2027
19.9981
13.4975
9.4373
6.92004
5.3819
4.45812
3.93274
3.67704
3.61264
3.69731
3.9021
4.19202
4.55688
4.99756
5.51146
6.09823
6.76249
7.523
8.42724
9.51037
10.7226
12.0405
13.4689
15.0057
16.7487
19.0979
23.3342
33.8514
65.5009
182.496
1076.88
1030.92
170.19
57.3553
28.9786
17.3257
11.2176
8.0711
6.4892
5.63311
5.09268
4.69198
4.36293
4.09031
3.88857
3.7897
3.83273
4.03293
4.36237
4.81908
5.39057
6.06686
6.84547
7.74241
8.82871
10.141
11.5588
12.9689
14.3199
15.717
17.608
21.3034
31.1477
62.0213
179.254
1076.91
1030.87
171.306
57.7356
27.8749
15.9442
10.3315
7.72082
6.51704
5.93332
5.61262
5.39985
5.22705
5.06257
4.89056
4.70481
4.51179
4.34054
4.25383
4.33887
4.6571
5.1997
5.94572
6.86484
7.94439
9.21637
10.8403
12.816
14.8356
16.8107
19.0405
22.8778
32.9496
64.4951
182.058
1077.74
1030.82
170.154
55.5814
25.1451
14.0114
9.64815
7.9085
7.11165
6.63044
6.25804
5.93736
5.65779
5.41883
5.21933
5.04986
4.89337
4.74397
4.63024
4.60537
4.72655
5.05477
5.61955
6.42219
7.48514
8.88126
10.6403
12.6024
14.5819
16.5815
18.9341
22.8507
32.6545
63.583
181.497
1078.04
1030.81
168.883
51.9945
22.1677
13.3927
10.7474
9.75352
9.13681
8.5709
7.98681
7.38385
6.7795
6.19427
5.64533
5.1436
4.69309
4.29325
3.94542
3.65897
3.45184
3.34979
3.38505
3.59302
3.98899
4.57827
5.46083
6.85157
8.85852
11.1212
13.7955
18.7824
31.8938
68.2499
188.534
1078.89
1030.69
151.036
38.1385
17.0901
14.1934
13.7412
13.2486
12.6068
11.8861
11.1294
10.3703
9.64081
8.97038
8.38526
7.90784
7.55701
7.35001
7.30684
7.46835
7.78506
8.28847
9.00515
9.96308
11.1981
12.7592
14.7095
17.1471
20.2146
24.2189
29.8534
38.7014
54.5515
89.0424
201.472
1080.27
526.844
24.148
24.3938
24.4584
24.4861
24.5024
24.5106
24.5125
24.5097
24.5034
24.4943
24.4832
24.4707
24.4571
24.4428
24.428
24.413
24.3979
24.3828
24.3671
24.3509
24.334
24.316
24.2966
24.2752
24.2515
24.2253
24.1969
24.168
24.1432
24.1293
24.1331
24.1564
24.1966
555.943
526.413
22.9931
22.9959
22.9989
23.0022
23.0059
23.01
23.0146
23.0196
23.025
23.0305
23.0361
23.0417
23.0471
23.0523
23.057
23.0614
23.0653
23.0687
23.0716
23.0738
23.0754
23.0763
23.0762
23.0753
23.0733
23.0704
23.0665
23.0625
23.0596
23.0608
23.0706
23.0951
23.1365
531.548
1029.84
172.929
63.2692
33.7624
22.3286
16.688
13.3789
11.1879
9.61737
8.43526
7.5203
6.80326
6.24184
5.80891
5.48646
5.26223
5.12745
5.07857
5.10333
5.19881
5.36212
5.58892
5.87347
6.20826
6.58335
6.98575
7.39933
7.80688
8.21076
8.78354
10.5835
17.8739
45.3673
159.541
1040.52
1029.84
175.168
65.9072
36.1166
24.1826
18.0516
14.3729
11.9589
10.2872
9.08248
8.1822
7.48554
6.92891
6.47191
6.08835
5.76084
5.47856
5.23963
5.04075
4.87946
4.75551
4.67188
4.63274
4.64287
4.70652
4.82561
4.99753
5.22049
5.55224
6.39368
9.36862
19.3066
50.3322
166.497
1041.09
1029.86
175.117
64.959
34.0284
21.1562
14.5106
10.7389
8.51426
7.14966
6.25251
5.60707
5.10526
4.69822
4.36572
4.09929
3.89361
3.74272
3.63961
3.57664
3.54561
3.5392
3.5519
3.58098
3.62705
3.69487
3.79618
3.96122
4.27788
5.0061
6.85939
11.591
23.4207
55.3726
170.662
1042.05
1029.87
172.67
61.5777
30.5365
18.2093
12.5165
9.73553
8.26703
7.36116
6.69159
6.12805
5.6227
5.16198
4.74649
4.38139
4.07192
3.82121
3.6288
3.49064
3.40058
3.3509
3.33356
3.34208
3.37443
3.43753
3.55608
3.79258
4.29305
5.38567
7.77333
12.9457
24.6012
55.2981
170.748
1042.94
1029.88
172.523
61.5043
30.7166
18.6342
13.0597
10.2829
8.77724
7.84313
7.16737
6.61114
6.11137
5.64422
5.20746
4.80477
4.44006
4.11865
3.84795
3.6301
3.46266
3.34639
3.27897
3.2586
3.28761
3.37879
3.56749
3.93477
4.65012
6.04471
8.74318
14.0531
25.5674
56.2372
171.098
1043.7
1029.88
171.926
60.7449
29.9348
17.9615
12.5773
9.96455
8.54467
7.63881
6.96832
6.41448
5.9239
5.47657
5.06721
4.69355
4.35471
4.05225
3.79021
3.57146
3.39828
3.27518
3.20659
3.19928
3.26567
3.43028
3.74187
4.29155
5.24013
6.86857
9.68714
14.8579
25.9446
56.0762
171.296
1044.45
1029.89
171.975
60.9179
30.2157
18.3022
12.9347
10.3209
8.90032
7.99716
7.33045
6.77871
6.28553
5.82918
5.40592
5.01479
4.6541
4.32477
4.03076
3.77555
3.56273
3.39977
3.29567
3.2636
3.32464
3.51471
3.89835
4.58428
5.72917
7.56126
10.4832
15.5498
26.403
56.7498
171.506
1045.08
1029.89
172.214
61.1333
30.3192
18.3461
12.9765
10.3556
8.9027
7.96013
7.26177
6.69166
6.19586
5.75209
5.35126
4.98648
4.65266
4.348
4.07346
3.83172
3.62762
3.46925
3.3683
3.34262
3.42055
3.64874
4.1082
4.92818
6.26635
8.30093
11.3315
16.3193
26.9607
57.2256
172.031
1045.69
1029.9
172.157
61.0622
30.2418
18.3056
12.9943
10.4203
8.99632
8.07043
7.38173
6.81702
6.32353
5.87993
5.47903
5.11531
4.78369
4.48211
4.21117
3.9726
3.77054
3.61349
3.51409
3.49231
3.58042
3.83195
4.34139
5.25838
6.74808
8.9545
12.0818
16.9796
27.356
57.4441
172.347
1046.23
1029.91
172.409
61.3092
30.4238
18.4626
13.1512
10.5589
9.09817
8.13388
7.41498
6.83107
6.32948
5.88764
5.49488
5.1427
4.8249
4.5386
4.28393
4.06203
3.87662
3.73666
3.65567
3.65541
3.77137
4.06273
4.63496
5.65121
7.2769
9.62545
12.824
17.6382
27.8075
57.8037
172.825
1046.75
1029.91
172.394
61.243
30.3103
18.3727
13.1189
10.568
9.12819
8.1757
7.46503
6.88748
6.39127
5.95395
5.56611
5.22037
4.9105
4.63379
4.39076
4.18219
4.0114
3.88802
3.82629
3.8493
3.99501
4.32788
4.96198
6.06591
7.8041
10.2645
13.5089
18.2269
28.1776
58.0611
173.185
1047.24
1029.92
172.55
61.3741
30.4005
18.4721
13.2398
10.685
9.22367
8.24734
7.51825
6.93001
6.43052
5.99555
5.61367
5.27642
4.97717
4.71314
4.48514
4.29371
4.14188
4.04013
4.00363
4.05696
4.24055
4.62414
5.32861
6.52214
8.36099
10.9062
14.167
18.7817
28.5448
58.3635
173.596
1047.71
1029.93
172.596
61.3624
30.3368
18.4311
13.2466
10.7176
9.26433
8.29152
7.56588
6.98167
6.48694
6.05718
5.68131
5.35169
5.06195
4.80941
4.59556
4.42074
4.28752
4.20741
4.1965
4.28076
4.50283
4.93743
5.7108
6.98718
8.91175
11.52
14.7775
19.282
28.8618
58.6169
173.95
1048.15
1029.94
172.706
61.4202
30.3575
18.4765
13.3237
10.7995
9.33592
8.35081
7.61662
7.02921
6.53594
6.11103
5.74215
5.42123
5.14204
4.90219
4.70383
4.54717
4.43432
4.37786
4.39496
4.51319
4.77776
5.26777
6.11142
7.46683
9.46504
12.1161
15.3505
19.7426
29.1625
58.8848
174.319
1048.58
1029.94
172.793
61.4363
30.3267
18.4742
13.363
10.8549
9.39298
8.40726
7.67385
7.08904
6.60007
6.18062
5.81789
5.5044
5.23455
5.00632
4.8226
4.68348
4.59045
4.55709
4.60169
4.75333
5.06009
5.60443
6.51314
7.93774
9.99488
12.6719
15.872
20.1546
29.4275
59.124
174.654
1048.98
1029.95
172.911
61.4701
30.3219
18.5001
13.4216
10.9202
9.45298
8.46114
7.72484
7.14114
6.6565
6.24357
5.88856
5.58395
5.32459
5.109
4.94082
4.82017
4.74806
4.73887
4.81198
4.99795
5.3477
5.94637
6.91748
8.40402
10.5071
13.1934
16.3473
20.5252
29.6746
59.368
174.99
1049.37
1029.96
173.051
61.5002
30.3076
18.5194
13.4778
10.9871
9.51918
8.5256
7.78964
7.20864
6.72863
6.3215
5.97286
5.67545
5.42495
5.22066
5.06678
4.96355
4.9115
4.92561
5.02622
5.24523
5.63609
6.28542
7.31221
8.85007
10.9852
13.6674
16.7691
20.8504
29.8919
59.5888
175.296
1049.74
1029.97
173.24
61.5442
30.3068
18.5499
13.537
11.0507
9.5786
8.5814
7.84513
7.26741
6.79339
6.39399
6.05384
5.76516
5.52444
5.33213
5.19285
5.10716
5.07545
5.11311
5.24143
5.49394
5.92577
6.62249
7.69866
9.27813
11.4326
14.0977
17.1415
21.1358
30.0917
59.8083
175.597
1050.09
1029.98
173.516
61.608
30.3148
18.5888
13.6047
11.1238
9.64912
8.64973
7.91396
7.33959
6.87121
6.47896
6.14662
5.8659
5.63431
5.45365
5.32763
5.25696
5.24404
5.30376
5.45813
5.74214
6.21209
6.95119
8.06873
9.67871
11.8398
14.4773
17.4613
21.3792
30.2653
60.0055
175.868
1050.43
1029.99
173.938
61.7134
30.3462
18.6403
13.674
11.192
9.71225
8.70996
7.97496
7.40489
6.9435
6.56008
6.23757
5.96715
5.74658
5.57838
5.46529
5.40872
5.41397
5.49529
5.67521
5.98971
6.49515
7.27197
8.42362
10.0541
12.2104
14.8108
17.7332
21.5862
30.4219
60.1962
176.129
1050.75
1029.99
174.639
61.8909
30.4066
18.7068
13.7527
11.2686
9.78432
8.77998
8.04609
7.48004
7.02511
6.65003
6.33708
6.07703
5.86802
5.71186
5.61048
5.56731
5.58858
5.68951
5.89323
6.23595
6.77266
7.58095
8.75823
10.399
12.5398
15.0958
17.9574
21.7566
30.556
60.3663
176.364
1051.06
1030
175.813
62.1849
30.5075
18.785
13.8294
11.3383
9.84885
8.84327
8.11137
7.55024
7.10281
6.73716
6.43502
6.18695
5.99046
5.8463
5.75695
5.72727
5.76434
5.88437
6.11096
6.47972
7.04403
7.87827
9.07366
10.7155
12.8315
15.3367
18.1386
21.8952
30.6742
60.5266
176.585
1051.35
1030.01
177.751
62.622
30.6337
18.864
13.9047
11.4096
9.91776
8.91269
8.18362
7.62749
7.18711
6.8301
6.5379
6.30125
6.11694
5.9846
5.90745
5.8912
5.94381
6.0816
6.32859
6.72
7.30741
8.1617
9.36778
11.0023
13.0857
15.5354
18.2797
22.0041
30.7751
60.6711
176.786
1051.63
1030.02
180.053
63.0521
30.7235
18.9188
13.965
11.4711
9.9801
8.97747
8.25247
7.7023
7.26979
6.92215
6.64057
6.41557
6.24334
6.12328
6.05883
6.0563
6.12421
6.27866
6.54407
6.95545
7.56231
8.43172
9.64234
11.2626
13.307
15.6973
18.3862
22.0878
30.8637
60.8071
176.976
1051.9
1030.03
180.786
63.122
30.706
18.9438
14.0198
11.5351
10.0475
9.04807
8.32723
7.78277
7.35767
7.01883
6.74736
6.53335
6.37244
6.26419
6.21201
6.22267
6.3051
6.47532
6.75734
7.1857
7.80819
8.68784
9.89715
11.497
13.4971
15.8258
18.4618
22.1485
30.9389
60.9301
177.149
1052.16
1030.04
180.816
63.0984
30.6896
18.9783
14.0783
11.599
10.1135
9.11709
8.40063
7.86227
7.44496
7.11522
6.85401
6.65109
6.50155
6.40509
6.36503
6.38852
6.48483
6.66978
6.96662
7.40948
8.04449
8.93034
10.1335
11.7081
13.66
15.9258
18.5114
22.1902
31.0041
61.045
177.311
1052.42
1030.05
180.878
63.0925
30.6779
19.0129
14.1368
11.6644
10.1823
9.18955
8.47787
7.94568
7.536
7.21507
6.96357
6.77097
6.63223
6.54697
6.51841
6.554
6.66319
6.86156
7.17183
7.62694
8.271
9.159
10.3516
11.8967
13.7976
16.0001
18.5384
22.2149
31.0589
61.149
177.46
1052.66
1030.06
180.936
63.0821
30.6668
19.049
14.1954
11.7292
10.2502
9.26136
8.55461
8.0288
7.62692
7.3149
7.07312
6.89075
6.76266
6.68833
6.67089
6.718
6.83924
7.04985
7.37198
7.83703
8.48721
9.37398
10.5524
12.0648
13.913
16.0529
18.5468
22.2258
31.1058
61.2458
177.6
1052.9
1030.07
180.994
63.0707
30.657
19.0868
14.2555
11.796
10.3207
9.33586
8.63417
8.11466
7.7203
7.41681
7.18431
7.01167
6.8937
6.82972
6.82273
6.88053
7.01275
7.23424
7.56643
8.03908
8.69253
9.57486
10.7359
12.2131
14.0077
16.0863
18.5389
22.2245
31.1447
61.3339
177.73
1053.13
1030.08
181.051
63.0594
30.6498
19.1259
14.3152
11.8621
10.3904
9.4099
8.71348
8.20045
7.81371
7.51873
7.29538
7.1323
7.02415
6.97012
6.97304
7.04083
7.18308
7.41418
7.75479
8.23334
8.88766
9.76254
10.9034
12.3435
14.0841
16.1031
18.5177
22.2134
31.1777
61.4159
177.855
1053.36
1030.09
181.107
63.0469
30.6434
19.1661
14.376
11.9295
10.4619
9.48576
8.79466
8.28804
7.90872
7.62191
7.4073
7.25331
7.15446
7.10978
7.12194
7.19889
7.35011
7.5895
7.93688
8.4193
9.07204
9.93685
11.0552
12.4566
14.1434
16.1049
18.4847
22.1933
31.2045
61.491
177.976
1053.57
1030.1
181.16
63.032
30.6374
19.2058
14.4354
11.9956
10.5323
9.56096
8.87543
8.37536
8.0035
7.72483
7.51879
7.37366
7.28376
7.24797
7.26877
7.35413
7.51336
7.7598
8.11242
8.59681
9.24574
10.0982
11.1922
12.554
14.1876
16.0941
18.4422
22.1663
31.2269
61.5617
178.099
1053.79
1030.11
181.212
63.0168
30.6312
19.2454
14.495
12.0624
10.6038
9.63728
8.95734
8.46375
8.09916
7.82836
7.63056
7.49384
7.41236
7.38486
7.41362
7.50656
7.67277
7.92501
8.28133
8.76592
9.40923
10.2474
11.3152
12.6366
14.2177
16.0715
18.3909
22.1326
31.2445
61.6275
178.228
1053.99
1030.12
181.267
63.0006
30.6269
19.286
14.5545
12.1288
10.6749
9.71322
9.03896
8.5519
8.19457
7.93153
7.74174
7.61313
7.53968
7.51995
7.55606
7.65584
7.82812
8.08502
8.44368
8.92688
9.563
10.3852
11.4255
12.7061
14.2357
16.0392
18.3324
22.0932
31.2585
61.6913
178.376
1054.2
1030.13
181.319
62.9838
30.6243
19.328
14.6149
12.196
10.7466
9.7898
9.12112
8.64048
8.29024
8.03469
7.8526
7.73166
7.66574
7.65322
7.69604
7.8019
7.97932
8.2398
8.59954
9.07991
9.70733
10.5122
11.524
12.7638
14.243
15.9986
18.268
22.0491
31.2689
61.7546
178.56
1054.39
1030.14
181.368
62.9663
30.6234
19.3705
14.675
12.2627
10.8178
9.86575
9.20264
8.7284
8.38519
8.13701
7.96237
7.84881
7.79001
7.78421
7.83315
7.9444
8.12615
8.38924
8.74893
9.22522
9.84264
10.6291
11.6117
12.8108
14.2411
15.951
18.1984
22.0006
31.2771
61.8229
178.82
1054.59
1030.15
181.415
62.9496
30.6247
19.4142
14.7355
12.3296
10.8891
9.9417
9.28402
8.81602
8.47964
8.23858
8.07109
7.96452
7.91239
7.91281
7.9673
8.0833
8.26861
8.53343
8.89209
9.36326
9.96966
10.7368
11.6899
12.8489
14.2317
15.8983
18.1258
21.9497
31.2854
61.9075
179.226
1054.77
1030.16
181.463
62.9346
30.6284
19.4585
14.7957
12.3957
10.9595
10.0168
9.36446
8.90262
8.57292
8.33878
8.17819
8.07828
8.03245
8.03862
8.09815
8.2183
8.40649
8.67229
9.02908
9.49426
10.0889
10.8363
11.76
12.8797
14.217
15.8424
18.0506
21.897
31.2982
62.0292
179.927
1054.96
1030.17
181.512
62.9212
30.6341
19.5035
14.8558
12.4616
11.0296
10.0913
9.44424
8.98838
8.66511
8.4376
8.28359
8.19
8.15005
8.16154
8.22561
8.34937
8.53986
8.80598
9.16024
9.61881
10.2011
10.9286
11.8231
12.9039
14.1961
15.7822
17.9765
21.85
31.3237
62.2318
181.222
1055.14
1030.18
181.562
62.9088
30.6413
19.5485
14.9151
12.5266
11.0985
10.1646
9.52283
9.07283
8.75578
8.53464
8.38691
8.2993
8.26488
8.28127
8.34946
8.47638
8.66866
8.93458
9.28581
9.7373
10.3069
11.0144
11.8797
12.922
14.1709
15.7212
17.9062
21.8123
31.3836
62.608
183.438
1055.32
1030.19
181.612
62.8972
30.6497
19.5936
14.974
12.5908
11.1667
10.2371
9.60042
9.15609
8.845
8.62992
8.48811
8.40611
8.37682
8.39771
8.46959
8.59921
8.79282
9.05809
9.40582
9.84984
10.4065
11.0939
11.9304
12.9356
14.1441
15.6634
17.8458
21.7964
31.4964
63.0976
185.669
1055.5
1030.2
181.661
62.8858
30.6587
19.638
15.0317
12.6539
11.2337
10.3084
9.67666
9.23784
8.93246
8.72313
8.58692
8.51017
8.48563
8.51063
8.58581
8.71775
8.91229
9.17652
9.52041
9.95668
10.5003
11.1678
11.9764
12.9465
14.118
15.611
17.7949
21.7903
31.5944
63.3932
186.514
1055.68
1030.21
181.711
62.8752
30.6686
19.6823
15.0888
12.7161
11.2998
10.3786
9.75175
9.3182
9.01823
8.81429
8.68328
8.61136
8.59116
8.61987
8.69796
8.83184
9.02695
9.28981
9.62961
10.058
10.5887
11.2368
12.0188
12.9561
14.0939
15.5634
17.7485
21.7791
31.6468
63.5062
186.672
1055.85
1030.22
181.761
62.8649
30.679
19.7258
15.1447
12.7772
11.3647
10.4475
9.82541
9.39694
9.10208
8.90317
8.77695
8.70945
8.69316
8.72516
8.80577
8.94121
9.13658
9.39781
9.73338
10.154
10.6721
11.3017
12.0586
12.9653
14.0721
15.5199
17.7044
21.7608
31.6682
63.5497
186.736
1056.03
1030.23
181.81
62.8553
30.69
19.7688
15.1997
12.8372
11.4285
10.5152
9.8977
9.47408
9.18401
8.98975
8.86788
8.80434
8.79151
8.82636
8.90907
9.0457
9.24098
9.50036
9.83162
10.2446
10.7506
11.3627
12.0961
12.9747
14.0531
15.4805
17.6625
21.7383
31.6738
63.5699
186.788
1056.22
1030.24
181.86
62.8461
30.7015
19.811
15.2534
12.8958
11.4908
10.5814
9.96831
9.54932
9.26378
9.07379
8.95587
8.89585
8.88604
8.92331
9.00771
9.14516
9.34004
9.59735
9.92425
10.3298
10.8244
11.4201
12.1319
12.9847
14.0372
15.4456
17.6238
21.7148
31.6729
63.5827
186.839
1056.4
1030.25
181.909
62.8369
30.7131
19.8525
15.306
12.9532
11.5517
10.6461
10.0372
9.62265
9.34133
9.1553
9.04093
8.984
8.97677
9.01602
9.10171
9.2396
9.43377
9.68881
10.0113
10.4096
10.8934
11.474
12.1659
12.9954
14.0245
15.4153
17.5893
21.6927
31.6702
63.594
186.891
1056.59
1030.26
181.957
62.8276
30.7249
19.8932
15.3574
13.0092
11.6112
10.7091
10.1043
9.69393
9.41657
9.23416
9.12299
9.06876
9.06369
9.10452
9.19111
9.3291
9.52227
9.77485
10.093
10.4843
10.958
11.5245
12.1984
13.0069
14.015
15.39
17.5596
21.6737
31.6684
63.6064
186.945
1056.77
1030.27
182.004
62.8178
30.7366
19.9332
15.4078
13.0642
11.6694
10.7707
10.1697
9.76325
9.48957
9.31045
9.2021
9.15019
9.14689
9.1889
9.27601
9.41375
9.60565
9.85559
10.1693
10.554
11.018
11.5716
12.2292
13.0188
14.0084
15.3693
17.5349
21.6587
31.6691
63.6212
187.002
1056.96
1030.28
182.05
62.8081
30.7489
19.9729
15.4575
13.1181
11.7265
10.8309
10.2335
9.83068
9.56037
9.38422
9.27835
9.22838
9.22647
9.26928
9.35656
9.49373
9.68409
9.93122
10.2405
10.6187
11.0738
11.6155
12.2582
13.0308
14.0037
15.3528
17.5159
21.6479
31.6729
63.6389
187.06
1057.15
1030.29
182.095
62.7993
30.7621
20.0125
15.5067
13.1713
11.7825
10.8899
10.2958
9.89633
9.62908
9.45557
9.35182
9.30342
9.30253
9.34578
9.43289
9.56917
9.75771
10.0019
10.3067
10.6786
11.1252
11.6557
12.2846
13.0417
14.0002
15.3402
17.5019
21.6406
31.679
63.6581
187.119
1057.34
1030.3
182.14
62.7921
30.7766
20.0524
15.5556
13.2239
11.8378
10.9477
10.3567
9.96032
9.69583
9.52463
9.42266
9.37548
9.37524
9.41858
9.50518
9.64026
9.82672
10.0677
10.3681
10.7338
11.1721
11.6922
12.3083
13.0516
13.9977
15.3306
17.4919
21.6369
31.6878
63.6793
187.179
1057.53
1030.31
182.185
62.7864
30.7925
20.0926
15.6043
13.276
11.8922
11.0046
10.4163
10.0227
9.76069
9.5915
9.49099
9.44469
9.44477
9.48786
9.57364
9.70723
9.89135
10.129
10.4247
10.7843
11.2147
11.7248
12.3292
13.06
13.9957
15.3231
17.4849
21.6359
31.6985
63.7014
187.237
1057.72
1030.32
182.23
62.7812
30.8088
20.1325
15.6524
13.3274
11.9458
11.0604
10.4747
10.0836
9.82374
9.65626
9.55689
9.51117
9.51125
9.55378
9.63842
9.77022
9.95174
10.1858
10.4768
10.8303
11.253
11.7535
12.347
13.0667
13.9934
15.3167
17.4797
21.6368
31.7103
63.7238
187.294
1057.91
1030.33
182.273
62.7756
30.8253
20.1722
15.7001
13.3782
11.9986
11.1152
10.5318
10.143
9.88514
9.71908
9.62057
9.57511
9.57489
9.61656
9.69978
9.82953
10.0082
10.2385
10.5247
10.872
11.2871
11.7785
12.3618
13.0716
13.9906
15.3108
17.4758
21.6392
31.7232
63.746
187.348
1058.09
1030.34
182.316
62.7715
30.8431
20.2123
15.7477
13.4287
12.0509
11.1693
10.588
10.2012
9.945
9.7801
9.68216
9.63668
9.63586
9.67638
9.75791
9.88533
10.0609
10.2873
10.5684
10.9096
11.3172
11.7999
12.3737
13.0744
13.9869
15.3049
17.4726
21.6424
31.736
63.7664
187.399
1058.27
1030.34
182.359
62.7682
30.8616
20.2525
15.7951
13.4788
12.1026
11.2226
10.6431
10.2582
10.0034
9.83942
9.74178
9.69601
9.69432
9.73342
9.81298
9.93783
10.1101
10.3323
10.6083
10.9432
11.3434
11.8176
12.3825
13.075
13.9818
15.2984
17.4693
21.6457
31.7484
63.785
187.446
1058.44
1030.35
182.401
62.7652
30.8803
20.2925
15.8422
13.5284
12.1538
11.2752
10.6974
10.3141
10.0605
9.89718
9.79959
9.75326
9.75046
9.78788
9.86524
9.98727
10.156
10.3738
10.6446
10.9732
11.3661
11.8321
12.3884
13.0733
13.9751
15.291
17.4656
21.649
31.7607
63.8025
187.491
1058.61
1030.36
182.442
62.7616
30.8986
20.3318
15.8887
13.5775
12.2044
11.3271
10.7509
10.369
10.1164
9.95346
9.85568
9.80856
9.80438
9.83988
9.9148
10.0338
10.1987
10.412
10.6774
10.9998
11.3854
11.8435
12.3917
13.0696
13.967
15.2827
17.4615
21.6521
31.7725
63.8183
187.532
1058.78
1030.37
182.481
62.7568
30.9162
20.3704
15.9345
13.626
12.2544
11.3784
10.8036
10.4229
10.1711
10.0084
9.91024
9.86208
9.85628
9.88961
9.96183
10.0775
10.2385
10.447
10.7069
11.0229
11.4014
11.8518
12.3925
13.064
13.9577
15.2737
17.4569
21.655
31.7842
63.8331
187.57
1058.95
1030.38
182.519
62.7532
30.9346
20.4091
15.9802
13.6743
12.3041
11.4293
10.8557
10.4761
10.225
10.0623
9.96343
9.914
9.90633
9.93725
10.0065
10.1187
10.2754
10.479
10.7332
11.0428
11.4142
11.8572
12.3907
13.0564
13.9469
15.2637
17.4517
21.6572
31.7944
63.8448
187.602
1059.11
1030.39
182.558
62.751
30.954
20.4481
16.026
13.7225
12.3536
11.4801
10.9076
10.5287
10.2779
10.115
10.0153
9.96441
9.95466
9.98293
10.049
10.1574
10.3097
10.5081
10.7564
11.0595
11.4239
11.8596
12.3864
13.0468
13.9346
15.2526
17.4456
21.6582
31.8023
63.8523
187.63
1059.27
1030.4
182.596
62.7504
30.9745
20.4876
16.0719
13.7707
12.4032
11.5309
10.9592
10.5809
10.3302
10.1669
10.0661
10.0135
10.0015
10.0269
10.0896
10.194
10.3416
10.5346
10.7769
11.0734
11.4307
11.8593
12.3795
13.035
13.9207
15.2403
17.4388
21.6588
31.8099
63.8594
187.659
1059.43
1030.41
182.635
62.7511
30.996
20.5274
16.118
13.8192
12.4528
11.5816
11.0107
10.6328
10.3819
10.2179
10.1159
10.0615
10.047
10.0694
10.1285
10.2287
10.3714
10.559
10.7951
11.0848
11.435
11.8566
12.3705
13.0214
13.9053
15.2271
17.4317
21.66
31.8194
63.8688
187.687
1059.58
1030.42
182.675
62.7536
31.0185
20.5679
16.1647
13.868
12.5028
11.6326
11.0623
10.6845
10.4333
10.2684
10.1649
10.1084
10.0913
10.1105
10.166
10.2619
10.3996
10.5814
10.8112
11.0942
11.4372
11.8518
12.3595
13.0061
13.8887
15.2131
17.4243
21.6616
31.8296
63.8786
187.713
1059.73
1030.43
182.715
62.7574
31.0421
20.609
16.2118
13.9173
12.5532
11.6838
11.114
10.7362
10.4845
10.3184
10.2133
10.1545
10.1346
10.1505
10.2021
10.2935
10.4261
10.6022
10.8256
11.1016
11.4375
11.8451
12.3467
12.9892
13.8707
15.198
17.4162
21.6628
31.8396
63.8871
187.736
1059.88
1030.44
182.757
62.7641
31.0675
20.6512
16.2598
13.9673
12.6041
11.7354
11.166
10.7879
10.5354
10.3681
10.261
10.1998
10.177
10.1894
10.237
10.3239
10.4512
10.6214
10.8383
11.1073
11.436
11.8365
12.3322
12.9707
13.8511
15.1816
17.4072
21.6633
31.8487
63.894
187.756
1060.02
1030.45
182.8
62.7725
31.094
20.6942
16.3084
14.0178
12.6554
11.7874
11.2182
10.8397
10.5863
10.4174
10.3082
10.2445
10.2185
10.2274
10.271
10.3532
10.4752
10.6393
10.8496
11.1115
11.4328
11.8263
12.3159
12.9504
13.83
15.1637
17.3969
21.6628
31.8572
63.9003
187.774
1060.16
1030.46
182.844
62.7817
31.121
20.7376
16.3576
14.0688
12.7072
11.8397
11.2706
10.8916
10.637
10.4664
10.355
10.2885
10.2594
10.2646
10.304
10.3815
10.4981
10.6562
10.8598
11.1145
11.4284
11.8147
12.2982
12.9287
13.8074
15.1445
17.3854
21.6612
31.8648
63.9054
187.79
1060.29
1030.46
182.888
62.7915
31.1485
20.7815
16.4073
14.1205
12.7596
11.8925
11.3234
10.9437
10.6878
10.5153
10.4014
10.332
10.2996
10.3011
10.3363
10.409
10.5201
10.6721
10.8689
11.1163
11.4226
11.8017
12.279
12.9053
13.783
15.1235
17.3722
21.6581
31.8709
63.9084
187.803
1060.42
1030.47
182.931
62.8025
31.1774
20.8268
16.4583
14.1733
12.8129
11.9461
11.3768
10.9962
10.7388
10.5641
10.4477
10.3753
10.3394
10.337
10.368
10.4359
10.5416
10.6874
10.8773
11.1173
11.4159
11.7874
12.2581
12.8802
13.7575
15.1018
17.3576
21.6537
31.8763
63.9107
187.813
1060.55
1030.48
182.977
62.817
31.209
20.8741
16.511
14.2274
12.8674
12.0007
11.431
11.0493
10.7901
10.6132
10.4939
10.4183
10.3789
10.3727
10.3994
10.4625
10.5627
10.7023
10.8853
11.1178
11.4084
11.772
12.236
12.854
13.7312
15.0792
17.3416
21.6476
31.8799
63.9106
187.819
1060.67
1030.49
183.025
62.8347
31.2427
20.9232
16.5654
14.2831
12.9231
12.0564
11.486
11.1031
10.8419
10.6623
10.5401
10.4611
10.4181
10.4079
10.4303
10.4886
10.5833
10.7167
10.8927
11.1175
11.3999
11.7555
12.2128
12.8267
13.7038
15.0554
17.3237
21.6391
31.8807
63.9064
187.82
1060.79
1030.5
183.077
62.856
31.2788
20.9742
16.6214
14.3402
12.9802
12.1132
11.5421
11.1575
10.8941
10.7117
10.5862
10.5037
10.4569
10.4427
10.4607
10.5142
10.6035
10.7307
10.8997
11.1167
11.3909
11.7385
12.1889
12.7986
13.6753
15.0299
17.3035
21.6273
31.8774
63.8965
187.814
1060.9
1030.51
183.133
62.8802
31.3168
21.0267
16.6788
14.3987
13.0385
12.1711
11.599
11.2126
10.9466
10.7612
10.6322
10.546
10.4953
10.477
10.4907
10.5394
10.6233
10.7443
10.9065
11.1158
11.3819
11.7215
12.1651
12.7704
13.6461
15.003
17.2809
21.6122
31.8698
63.8812
187.804
1061.01
1030.52
183.19
62.9056
31.3558
21.0805
16.7377
14.4587
13.0983
12.2304
11.6571
11.2687
10.9999
10.811
10.6782
10.5881
10.5334
10.5109
10.5202
10.5643
10.6429
10.7581
10.9136
11.1155
11.3737
11.7054
12.1422
12.7429
13.6171
14.9756
17.257
21.595
31.8597
63.8638
187.793
1061.12
1030.53
183.251
62.9352
31.3977
21.1366
16.7987
14.5206
13.1598
12.2911
11.7165
11.3258
11.0538
10.8612
10.7244
10.6301
10.5712
10.5445
10.5495
10.589
10.6626
10.7721
10.9212
11.1161
11.3668
11.6909
12.121
12.7169
13.5893
14.9487
17.2328
21.5766
31.8481
63.8449
187.78
1061.23
1030.54
183.317
62.9682
31.4416
21.1944
16.8614
14.5842
13.2229
12.3534
11.7773
11.384
11.1085
10.9118
10.7707
10.6719
10.6086
10.5776
10.5784
10.6134
10.6822
10.7864
10.9296
11.1178
11.3613
11.6783
12.1019
12.6929
13.563
14.9227
17.2086
21.5572
31.8343
63.8234
187.766
1061.34
1030.55
183.385
63.0021
31.4863
21.2536
16.9258
14.6496
13.2877
12.4173
11.8395
11.4433
11.164
10.9629
10.817
10.7136
10.6457
10.6103
10.6068
10.6375
10.7016
10.8008
10.9385
11.1206
11.3574
11.6676
12.085
12.6712
13.5388
14.8982
17.1851
21.5373
31.8191
63.8006
187.752
1061.45
1030.56
183.457
63.0397
31.5336
21.315
16.9924
14.717
13.3545
12.4831
11.9033
11.504
11.2205
11.0145
10.8636
10.7551
10.6825
10.6425
10.6347
10.6611
10.7209
10.8154
10.9479
11.1243
11.3551
11.659
12.0706
12.6521
13.517
14.8758
17.1631
21.5182
31.8037
63.7777
187.739
1061.56
1030.57
183.531
63.0786
31.5822
21.3783
17.0611
14.7867
13.4234
12.5508
11.9689
11.5661
11.278
11.0667
10.9103
10.7964
10.7187
10.6741
10.6619
10.6841
10.7397
10.8298
10.9576
11.1289
11.3541
11.6524
12.0586
12.6358
13.4981
14.8558
17.1432
21.5006
31.7895
63.7572
187.73
1061.68
1030.58
183.61
63.121
31.6335
21.4442
17.1325
14.859
13.4948
12.6208
12.0364
11.6297
11.3365
11.1195
10.9571
10.8375
10.7544
10.7049
10.6883
10.7064
10.7579
10.844
10.9674
11.1341
11.3544
11.6475
12.049
12.6222
13.482
14.8388
17.1259
21.485
31.7767
63.7385
187.724
1061.8
1030.59
183.692
63.165
31.6861
21.512
17.2062
14.9337
13.5686
12.6931
12.106
11.6949
11.396
11.1726
11.0038
10.878
10.7893
10.7347
10.7136
10.7276
10.7753
10.8575
10.977
11.1396
11.3555
11.6442
12.0415
12.6112
13.4688
14.8247
17.1116
21.4722
31.7665
63.7235
187.722
1061.92
1030.6
183.775
63.2095
31.7396
21.5814
17.282
15.011
13.6452
12.7679
12.1776
11.7615
11.4563
11.2259
11.0501
10.9178
10.8232
10.7633
10.7376
10.7476
10.7915
10.8701
10.9861
11.145
11.3572
11.6421
12.0358
12.6026
13.4584
14.8136
17.1003
21.4624
31.7595
63.7131
187.725
1062.04
1030.61
183.862
63.2562
31.7948
21.6528
17.3603
15.0912
13.7252
12.8458
12.2511
11.829
11.5168
11.2789
11.0957
10.9565
10.8556
10.7904
10.76
10.7659
10.8062
10.8816
10.9944
11.1501
11.3591
11.6408
12.0316
12.596
13.4504
14.8052
17.0919
21.4555
31.7553
63.7066
187.732
1062.17
1030.62
183.95
63.302
31.8506
21.7261
17.441
15.1741
13.8082
12.9262
12.3264
11.8974
11.5772
11.3312
11.1401
10.9936
10.8864
10.8156
10.7805
10.7824
10.8193
10.8915
11.0015
11.1545
11.3607
11.6399
12.0284
12.591
13.4444
14.7992
17.0863
21.4515
31.7541
63.7043
187.744
1062.3
1030.63
184.037
63.3481
31.9079
21.8019
17.5245
15.2597
13.8938
13.0089
12.4035
11.9669
11.6381
11.3832
11.1837
11.0295
10.9155
10.8389
10.799
10.7969
10.8304
10.8997
11.0071
11.1578
11.3618
11.639
12.0257
12.587
13.44
14.795
17.0827
21.4496
31.7548
63.7043
187.757
1062.44
1030.64
184.127
63.3953
31.9675
21.8809
17.6115
15.3486
13.9824
13.0943
12.4826
12.0378
11.6996
11.4351
11.2264
11.0641
10.9429
10.8602
10.8153
10.8091
10.8392
10.9058
11.0109
11.1596
11.3619
11.6375
12.023
12.5838
13.4368
14.7923
17.0808
21.4495
31.7575
63.7071
187.772
1062.57
1030.65
184.219
63.4444
32.0299
21.9635
17.7022
15.4412
14.0743
13.1825
12.5639
12.11
11.7616
11.4867
11.2682
11.0971
10.9683
10.8792
10.8292
10.8188
10.8455
10.9095
11.0125
11.1596
11.3605
11.635
12.02
12.5808
13.4344
14.7905
17.0802
21.4508
31.7618
63.7122
187.789
1062.71
1030.67
184.314
63.4953
32.0949
22.0496
17.7966
15.5371
14.1693
13.2733
12.6472
12.1833
11.8238
11.5377
11.3087
11.1282
10.9913
10.8956
10.8401
10.8255
10.8489
10.9103
11.0115
11.1572
11.3572
11.6312
12.0161
12.5774
13.432
14.7892
17.0801
21.4527
31.7663
63.7175
187.805
1062.85
1030.68
184.41
63.5471
32.1622
22.1392
17.8948
15.6369
14.2678
13.3671
12.7325
12.2576
11.886
11.5878
11.3475
11.157
11.0117
10.9089
10.8479
10.8289
10.8489
10.9079
11.0075
11.1521
11.3516
11.6256
12.011
12.5734
13.4294
14.788
17.0806
21.4555
31.7721
63.7251
187.823
1062.99
1030.69
184.511
63.6011
32.2326
22.233
17.9975
15.7407
14.3699
13.4638
12.8198
12.3328
11.9479
11.6366
11.3843
11.1833
11.029
10.9189
10.852
10.8286
10.8453
10.902
11
11.1439
11.3433
11.6178
12.0042
12.5683
13.4262
14.7867
17.0814
21.4589
31.7792
63.7354
187.844
1063.13
1030.7
184.612
63.6536
32.304
22.33
18.1042
15.8486
14.4757
13.5634
12.9088
12.4084
12.009
11.6835
11.4184
11.2061
11.0425
10.9248
10.852
10.824
10.8375
10.892
10.9888
11.1323
11.332
11.6075
11.9955
12.5618
13.4222
14.7851
17.0823
21.4628
31.7873
63.7476
187.865
1063.27
1030.72
184.714
63.7067
32.3776
22.431
18.2157
15.9614
14.5858
13.6662
12.9994
12.4839
12.0685
11.7278
11.449
11.225
11.0517
10.9262
10.8474
10.8149
10.8251
10.8776
10.9734
11.1168
11.3173
11.5943
11.9846
12.5536
13.4171
14.783
17.0834
21.4677
31.7976
63.7636
187.889
1063.42
1030.73
184.817
63.7618
32.4547
22.5364
18.3324
16.0796
14.7006
13.772
13.0909
12.5583
12.1254
11.7684
11.4753
11.2392
11.0559
10.9226
10.8377
10.8007
10.8078
10.8584
10.9535
11.0972
11.2989
11.578
11.9711
12.5436
13.4109
14.7805
17.0847
21.4735
31.8095
63.7825
187.914
1063.56
1030.75
184.918
63.8137
32.5319
22.6445
18.4534
16.2042
14.8204
13.8797
13.1818
12.6303
12.1787
11.8046
11.4967
11.2482
11.0547
10.9134
10.8225
10.7811
10.7852
10.8341
10.9287
11.0731
11.2764
11.5581
11.9546
12.5313
13.403
14.7769
17.0856
21.4796
31.823
63.8044
187.94
1063.71
1030.76
185.023
63.8655
32.6117
22.7568
18.5789
16.3336
14.9439
13.9891
13.2723
12.7002
12.2287
11.8366
11.5131
11.2517
11.0479
10.8985
10.8015
10.7557
10.757
10.8044
10.8988
11.0441
11.2496
11.5344
11.9351
12.5165
13.3934
14.7724
17.0863
21.4862
31.8375
63.828
187.965
1063.86
1030.78
185.125
63.9139
32.693
22.8734
18.7091
16.4669
15.0706
14.1003
13.3629
12.7685
12.2754
11.8641
11.5243
11.2495
11.035
10.8773
10.7741
10.724
10.7225
10.7686
10.8631
11.0097
11.2178
11.5063
11.9116
12.4985
13.3812
14.766
17.0857
21.492
31.8521
63.8525
187.988
1064.01
1030.79
185.224
63.9591
32.7756
22.9945
18.8446
16.6055
15.2012
14.2132
13.4527
12.8336
12.3172
11.8856
11.5287
11.2402
11.0148
10.8489
10.7397
10.6855
10.6814
10.7264
10.8213
10.9696
11.1806
11.4734
11.8841
12.4772
13.3665
14.7577
17.084
21.4974
31.8672
63.8789
188.012
1064.17
1030.81
185.319
63.9997
32.8592
23.1201
18.9852
16.7485
15.3349
14.3269
13.5406
12.8946
12.3534
11.9003
11.5258
11.2231
10.9869
10.8128
10.6978
10.6396
10.6333
10.6775
10.773
10.9234
11.1378
11.4354
11.852
12.452
13.3488
14.7473
17.0809
21.5025
31.8836
63.9087
188.037
1064.32
1030.82
185.412
64.0378
32.9446
23.2513
19.1326
16.8976
15.4725
14.4414
13.626
12.9505
12.3825
11.9069
11.5143
11.1975
10.9505
10.7685
10.648
10.5861
10.5778
10.6215
10.718
10.8709
11.0893
11.3923
11.8155
12.4232
13.3282
14.7348
17.0767
21.5075
31.9012
63.9414
188.062
1064.48
1030.84
185.499
64.0696
33.0298
23.3872
19.2868
17.0526
15.6131
14.5548
13.7067
12.9991
12.4029
11.904
11.4931
11.1622
10.9047
10.7152
10.5895
10.5245
10.5145
10.5582
10.6562
10.8119
11.0347
11.3435
11.774
12.3899
13.3037
14.7192
17.07
21.5107
31.9185
63.9749
188.084
1064.63
1030.86
185.576
64.0951
33.1151
23.5282
19.4499
17.215
15.7562
14.6656
13.781
13.039
12.4135
11.891
11.4617
11.117
10.8495
10.6528
10.5225
10.4547
10.4436
10.4878
10.5876
10.7467
10.9744
11.2897
11.7279
12.3528
13.2762
14.7012
17.0618
21.5134
31.9365
64.0109
188.107
1064.8
1030.87
185.653
64.1213
33.2045
23.6751
19.6238
17.3846
15.8989
14.7708
13.847
13.0693
12.4139
11.8676
11.42
11.0618
10.7846
10.5813
10.4469
10.3767
10.365
10.41
10.5122
10.6751
10.9081
11.2302
11.6768
12.3111
13.2446
14.6797
17.0505
21.5134
31.9527
64.0455
188.124
1064.96
1030.89
185.724
64.1419
33.2962
23.8269
19.8005
17.5558
16.0418
14.8737
13.9076
13.0916
12.4045
11.8335
11.3675
10.9959
10.7095
10.5002
10.3622
10.2904
10.2786
10.3251
10.4301
10.5974
10.8363
11.1658
11.6212
12.2656
13.2099
14.6556
17.0374
21.5124
31.969
64.0815
188.141
1065.12
1030.91
185.788
64.1571
33.3891
23.985
19.9851
17.733
16.1857
14.9718
13.959
13.102
12.382
11.786
11.3019
10.9177
10.6229
10.4085
10.2678
10.1951
10.1841
10.2326
10.3411
10.5132
10.7585
11.0958
11.5604
12.2153
13.1707
14.6276
17.0206
21.5082
31.9831
64.1164
188.153
1065.29
1030.93
185.842
64.1641
33.4827
24.1479
20.1743
17.9125
16.3274
15.0629
13.9996
13.0993
12.3455
11.7245
11.2228
10.8269
10.5246
10.3061
10.1637
10.0911
10.0817
10.1331
10.2458
10.4234
10.6755
11.0212
11.4955
12.1614
13.1286
14.5971
17.0021
21.5029
31.9973
64.1525
188.165
1065.46
1030.94
185.889
64.1652
33.5774
24.318
20.3714
18.0964
16.4672
15.1456
14.0274
13.0816
12.2932
11.6476
11.1292
10.7226
10.4142
10.1927
10.0498
9.97835
9.9714
10.0266
10.1441
10.3277
10.5872
10.9415
11.4258
12.1029
13.082
14.5624
16.9795
21.494
32.0088
64.1865
188.171
1065.63
1030.96
185.921
64.1516
33.667
24.4923
20.5741
18.2814
16.6008
15.2157
14.0388
13.0461
12.2233
11.554
11.0202
10.6045
10.2914
10.0685
9.92623
9.85709
9.85374
9.91363
10.0369
10.2273
10.4948
10.8583
11.3529
12.0416
13.0329
14.5255
16.9551
21.4836
32.019
64.2191
188.175
1065.81
1030.98
185.935
64.1181
33.7473
24.6717
20.7845
18.4668
16.7254
15.2706
14.0322
12.9922
12.1357
11.444
10.8964
10.473
10.1567
9.93366
9.79342
9.72771
9.72898
9.79448
9.92421
10.1221
10.398
10.7709
11.276
11.9761
12.9796
14.4843
16.9264
21.4691
32.0261
64.2489
188.173
1065.98
1030.99
185.91
64.042
33.8073
24.8563
21.0005
18.6452
16.8346
15.3069
14.0064
12.9195
12.0304
11.3177
10.7579
10.3286
10.0107
9.78893
9.65201
9.59097
9.59801
9.67016
9.80736
10.0135
10.2985
10.6815
11.1975
11.9093
12.925
14.4419
16.8964
21.453
32.0307
64.2746
188.166
1066.18
1031.01
185.656
63.8504
33.8312
25.0302
21.2132
18.8209
16.9368
15.3307
13.9644
12.829
11.9074
11.1749
10.6044
10.1708
9.85296
9.63412
9.50188
9.44673
9.46063
9.54038
9.68585
9.90094
10.1955
10.5887
11.1155
11.8388
12.8662
14.3947
16.8611
21.4311
32.0295
64.2935
188.15
1066.36
1031.03
184.19
63.419
33.8164
25.2097
21.4349
18.9954
17.0264
15.3349
13.8999
12.7162
11.7637
11.0136
10.4348
9.99929
9.68357
9.46945
9.34355
9.29577
9.31787
9.40647
9.56134
9.78637
10.0914
10.4956
11.0338
11.7688
12.808
14.3482
16.8264
21.4093
32.0277
64.3117
188.138
1066.57
1031.05
181.612
62.9103
33.8295
25.4112
21.6648
19.1653
17.1017
15.3191
13.8135
12.5817
11.6001
10.8347
10.2501
9.81479
9.50319
9.29554
9.17746
9.13834
9.16977
9.26819
9.43328
9.66891
9.98488
10.4003
10.9498
11.6962
12.7466
14.2978
16.7869
21.3823
32.0206
64.3236
188.116
1066.76
1031.06
179.797
62.6263
33.9158
25.6396
21.9022
19.3283
17.159
15.2796
13.7017
12.4233
11.4151
10.6374
10.0499
9.61756
9.31238
9.11317
9.00462
8.97569
9.01786
9.1274
9.30392
9.55129
9.87926
10.3068
10.8685
11.6268
12.6886
14.251
16.751
21.3579
32.0143
64.3356
188.1
1066.99
1031.08
178.883
62.4692
34.0252
25.8741
22.1364
19.4772
17.1934
15.2128
13.5627
12.2399
11.2086
10.4222
9.83495
9.40827
9.11176
8.92283
8.82533
8.80785
8.86184
8.98343
9.17218
9.4319
9.77227
10.2122
10.7859
11.5555
12.6281
14.2008
16.7111
21.3292
32.0043
64.3438
188.077
1067.2
1031.09
178.395
62.3657
34.1545
26.1201
22.3701
19.611
17.2021
15.1165
13.3949
12.031
10.9807
10.1897
9.60636
9.18829
8.90284
8.72612
8.64129
8.63669
8.70384
8.83878
9.04104
9.31441
9.6685
10.122
10.7088
11.4905
12.5743
14.1578
16.6783
21.3062
31.9968
64.3525
188.061
1067.45
1031.11
178.126
62.2947
34.2976
26.3723
22.5966
19.7227
17.1795
14.9868
13.1965
11.7962
10.7323
9.94126
9.36559
8.95901
8.68677
8.52389
8.45293
8.46217
8.54324
8.69214
8.9084
9.19578
9.56373
10.0307
10.6302
11.4233
12.5173
14.1108
16.6406
21.278
31.985
64.3564
188.037
1067.67
1031.12
177.956
62.2328
34.4506
26.6306
22.8126
19.8062
17.1196
14.8198
12.9654
11.5352
10.464
9.67829
9.11444
8.72247
8.46573
8.31835
8.26258
8.28676
8.38281
8.5468
8.77832
9.08112
9.46451
9.94659
10.5604
11.366
12.471
14.075
16.6141
21.259
31.9776
64.3621
188.023
1067.95
1031.13
177.843
62.1832
34.6155
26.8938
23.0118
19.8545
17.0187
14.6144
12.7027
11.2501
10.1781
9.40326
8.8553
8.48078
8.24138
8.11063
8.07062
8.11001
8.22115
8.40024
8.64699
8.96508
9.36363
9.8603
10.4875
11.3044
12.419
14.032
16.5792
21.2318
31.9638
64.3612
187.999
1068.18
1031.14
177.751
62.136
34.7911
27.1559
23.1841
19.8598
16.8732
14.3694
12.4077
10.9405
9.87501
9.11691
8.58952
8.2359
8.01611
7.90319
7.87953
7.93449
8.0612
8.25624
8.51944
8.8545
9.27027
9.78383
10.4266
11.2567
12.3822
14.0055
16.5607
21.2176
31.9564
64.3647
187.992
1068.48
1031.15
177.672
62.0912
34.9647
27.4042
23.3324
19.8323
16.6905
14.0886
12.0827
10.6081
9.55586
8.82059
8.31856
7.98895
7.79026
7.69575
7.68825
7.75792
7.899
8.10898
8.38801
8.73962
9.17225
9.70231
10.3602
11.2024
12.3374
13.9694
16.5321
21.1953
31.947
64.3703
187.981
1068.72
1031.16
177.577
62.0357
35.139
27.6464
23.4525
19.7589
16.4572
13.7627
11.7226
10.2511
9.22095
8.51488
8.04215
7.73834
7.56211
7.4876
7.49801
7.58398
7.7404
7.96576
8.26162
8.63169
9.08395
9.63397
10.311
11.1702
12.3179
13.9586
16.5282
21.1946
31.952
64.3881
187.992
1069.05
1031.17
177.483
61.9869
35.3124
27.8696
23.5374
19.6416
16.1805
13.4002
11.3353
9.87632
8.87593
8.20384
7.76137
7.48356
7.33052
7.27682
7.30589
7.40887
7.58115
7.8215
8.13257
8.51944
8.98992
9.55865
10.2535
11.1281
12.2866
13.9346
16.5106
21.1821
31.9513
64.3998
187.983
1069.3
1031.18
177.36
61.9233
35.4821
28.0758
23.5833
19.471
15.8499
12.9931
10.9164
9.48147
8.51863
7.88427
7.47446
7.22489
7.09702
7.06596
7.11546
7.23729
7.42745
7.68488
8.01326
8.41932
8.91114
9.50247
10.2195
11.1133
12.2851
13.9404
16.5204
21.1891
31.9559
64.4119
187.997
1069.66
1031.19
177.234
61.8705
35.6502
28.2564
23.5845
19.2491
15.4729
12.5511
10.475
9.07429
8.15542
7.56002
7.18306
6.96257
6.86057
6.85265
6.92288
7.06361
7.27156
7.54588
7.89041
8.31301
8.82317
9.43419
10.1706
11.081
12.2637
13.9251
16.5098
21.1801
31.9533
64.4186
187.988
1069.91
1031.19
177.078
61.8061
35.8119
28.4082
23.5324
18.9636
15.0384
12.0662
10.0058
8.65039
7.78187
7.22925
6.888
6.69887
6.62471
6.64177
6.73448
6.89597
7.12383
7.41756
7.78123
8.22388
8.75668
9.39242
10.1539
11.0873
12.2874
13.9572
16.541
21.2041
31.9721
64.4455
188.019
1070.3
1031.19
176.924
61.755
35.9675
28.5238
23.4246
18.62
14.5563
11.5502
9.52129
8.22122
7.40412
6.89407
6.5895
6.4325
6.38673
6.42906
6.54424
6.72613
6.9732
7.28517
7.66609
8.12608
8.67807
9.33433
10.1161
11.0675
12.281
13.9558
16.5366
21.194
31.9628
64.4419
188.005
1070.54
1031.19
176.72
61.6755
36.1055
28.5952
23.2483
18.2036
14.0139
10.9927
9.01202
7.77851
7.01853
6.55483
6.29008
6.16766
6.1524
6.22197
6.36152
6.56588
6.83476
7.16833
7.57106
8.05378
8.6309
9.31489
10.1251
11.1027
12.3357
14.0177
16.5929
21.239
32.008
64.5224
188.123
1070.98
1031.19
176.516
61.6151
36.2333
28.6205
23.0086
17.7291
13.4314
10.4145
8.49507
7.33365
6.63267
6.21614
5.99155
5.90374
5.91876
6.01505
6.17807
6.40356
6.69247
7.04536
7.467
7.96891
8.56617
9.27171
10.1037
11.1008
12.3481
14.0365
16.6109
21.2528
32.0118
64.4297
187.279
1071.2
1031.19
176.268
61.5398
36.3452
28.5929
22.6895
17.1747
12.7889
9.80295
7.96515
6.88097
6.24154
5.87612
5.69497
5.64467
5.69259
5.81812
6.007
6.25614
6.56815
6.94415
7.3895
7.91706
8.54275
9.27898
10.1419
11.1661
12.4303
14.1169
16.6678
21.2591
31.9076
63.9552
184.641
1071.69
1031.19
176.041
61.4959
36.4442
28.5098
22.3052
16.5704
12.1192
9.1832
7.43766
6.43244
5.85464
5.54054
5.40257
5.38919
5.4692
5.62274
5.83575
6.10619
6.43836
6.83379
7.29918
7.8473
8.49388
9.25243
10.1377
11.1815
12.4585
14.1461
16.6811
21.2314
31.7863
63.5219
182.676
1071.88
1031.18
175.758
61.4278
36.5149
28.3573
21.829
15.8846
11.3967
8.53826
6.90181
5.98349
5.47174
5.21204
5.11971
5.14557
5.26034
5.44461
5.68397
5.97824
6.33389
6.75341
7.24559
7.82306
8.50087
9.29281
10.2106
11.281
12.572
14.2524
16.7485
21.2245
31.6872
63.2616
181.646
1072.44
1031.18
175.506
61.3979
36.5668
28.1449
21.2937
15.1669
10.6729
7.91081
6.3832
5.54785
5.09988
4.89254
4.84392
4.90716
5.05481
5.2683
5.53178
5.84607
6.22061
6.66117
7.17627
7.77493
8.47442
9.29032
10.2326
11.3253
12.6331
14.3205
16.8086
21.2599
31.6893
63.1693
181.124
1072.59
1031.17
175.183
61.3358
36.5817
27.854
20.6614
14.3707
9.90999
7.27989
5.86837
5.11965
4.74074
4.58893
4.58609
4.68832
4.8705
5.11654
5.40748
5.74429
6.14524
6.61562
7.16074
7.79089
8.52502
9.37848
10.3564
11.476
12.7934
14.4635
16.8986
21.2682
31.6346
63.0867
180.862
1073.24
1031.16
174.921
61.3205
36.5628
27.505
20.0046
13.5941
9.19162
6.69856
5.39722
4.72752
4.41058
4.30765
4.34417
4.47902
4.68922
4.96097
5.27564
5.63451
6.0577
6.54867
7.11352
7.76257
8.51701
9.39519
10.4006
11.5475
12.8888
14.5756
17.0173
21.3871
31.7586
63.186
180.807
1073.32
1031.14
174.535
61.233
36.4806
27.0661
19.2559
12.7583
8.45844
6.13283
4.95425
4.3695
4.11811
4.06615
4.14329
4.31176
4.55113
4.85003
5.19235
5.57904
6.03037
6.55094
7.14809
7.83309
8.62756
9.54872
10.5948
11.7705
13.1173
14.7749
17.1451
21.4127
31.7151
63.1404
180.732
1074.08
1031.13
174.266
61.2057
36.3387
26.587
18.5581
12.0425
7.86526
5.66433
4.57996
4.06862
3.87294
3.86275
3.97146
4.16438
4.42346
4.73713
5.09022
5.4893
5.95549
6.48935
7.09906
7.7967
8.60345
9.54063
10.612
11.8187
13.1964
14.8782
17.2637
21.5471
31.8748
63.3103
180.847
1074.08
1031.11
173.797
61.0207
36.0547
25.9832
17.7845
11.305
7.29695
5.2461
4.26995
3.84068
3.70615
3.74248
3.88855
4.11406
4.40247
4.73676
5.10064
5.51013
5.99734
6.5674
7.2201
7.96387
8.81992
9.80884
10.9298
12.1729
13.5619
15.2202
17.5419
21.7321
32.009
63.4352
180.901
1074.98
1031.08
173.466
60.8283
35.5699
25.3059
17.1913
10.8657
6.98604
5.00997
4.08524
3.69841
3.59592
3.6554
3.81834
4.05699
4.35272
4.68543
5.04446
5.44623
5.92025
6.48065
7.1324
7.87253
8.71858
9.69922
10.8249
12.0818
13.4835
15.1382
17.4334
21.5929
31.8522
63.312
180.887
1074.89
1031.06
172.943
60.3715
34.667
24.2007
16.3796
10.427
6.76531
4.87873
4.00044
3.64907
3.57545
3.66057
3.84993
4.11695
4.43624
4.78818
5.17327
5.60564
6.10912
6.70287
7.41088
8.22823
9.14803
10.1995
11.3928
12.7098
14.1599
15.854
18.1869
22.3921
32.763
64.2551
181.501
1075.91
1031.02
172.241
59.5674
33.1535
22.5611
15.4303
10.2221
6.8653
4.99108
4.04869
3.63387
3.51172
3.56188
3.72892
3.98165
4.28835
4.6353
5.02469
5.46206
5.96023
6.53528
7.21865
8.02601
8.93674
9.96026
11.1121
12.3751
13.7428
15.301
17.4303
21.3853
31.4966
62.8725
180.473
1075.8
1030.98
171.825
58.7944
31.0757
19.8665
13.388
9.35107
6.85114
5.32647
4.41409
3.89879
3.65182
3.59481
3.68548
3.89413
4.1852
4.54862
4.98494
5.49179
6.06944
6.72338
7.47365
8.3687
9.43554
10.6233
11.9211
13.3386
14.8777
16.6375
19.0131
23.2725
33.7845
65.3955
182.391
1076.85
1030.92
170.074
57.2209
28.7981
17.1398
11.083
7.99308
6.44309
5.59705
5.05427
4.64626
4.31059
4.0362
3.83997
3.75392
3.81427
4.02991
4.36748
4.8267
5.39546
6.06472
6.83354
7.72091
8.80167
10.0998
11.4928
12.8836
14.2262
15.6275
17.5307
21.2384
31.0843
61.9431
179.185
1076.88
1030.86
171.175
57.5826
27.6756
15.7196
10.1352
7.57433
6.41342
5.85948
5.55778
5.35583
5.18704
5.02049
4.84132
4.6455
4.44375
4.27126
4.19657
4.30444
4.64186
5.19759
5.94497
6.85536
7.91938
9.17494
10.7786
12.7207
14.7144
16.6865
18.9379
22.8068
32.8934
64.4353
182.021
1077.71
1030.82
169.989
55.4407
25.006
13.8642
9.50833
7.78085
6.99335
6.51979
6.156
5.84555
5.57663
5.34709
5.15325
4.98367
4.82269
4.66949
4.55762
4.54276
4.68389
5.03954
5.62627
6.44128
7.51456
8.91788
10.6774
12.6268
14.5873
16.5695
18.9168
22.8493
32.679
63.5984
181.475
1078.01
1030.81
168.671
51.8776
22.1027
13.3305
10.6815
9.68607
9.06809
8.50029
7.91418
7.31031
6.70732
6.12623
5.584
5.09071
4.64922
4.25831
3.91938
3.64219
3.44467
3.35249
3.39742
3.61287
4.01092
4.59883
5.4743
6.84812
8.83481
11.0833
13.7366
18.6673
31.68
67.9755
188.316
1078.85
1030.69
151.236
38.3174
17.1312
14.1532
13.6847
13.197
12.5614
11.8438
11.0863
10.323
9.58652
8.90768
8.3137
7.8278
7.46953
7.25676
7.21024
7.36926
7.68296
8.18561
8.90257
9.86174
11.0989
12.6622
14.6145
17.0538
20.1238
24.131
29.7682
38.6205
54.4876
89.0271
201.51
1080.2
526.843
24.146
24.3915
24.4559
24.4836
24.5003
24.5089
24.5113
24.5089
24.503
24.4943
24.4836
24.4714
24.4581
24.4441
24.4296
24.4149
24.4
24.385
24.3695
24.3535
24.3367
24.3188
24.2993
24.2779
24.254
24.2276
24.1988
24.1695
24.144
24.1293
24.1323
24.1552
24.1951
555.9
526.413
22.9932
22.996
22.999
23.0023
23.0059
23.01
23.0145
23.0194
23.0246
23.0301
23.0356
23.0411
23.0464
23.0515
23.0562
23.0606
23.0644
23.0678
23.0707
23.0729
23.0745
23.0754
23.0754
23.0745
23.0727
23.0699
23.0663
23.0625
23.0598
23.0611
23.0709
23.0952
23.1363
531.527
1029.84
172.816
63.085
33.5537
22.1297
16.5157
13.2374
11.075
9.52821
8.36463
7.46347
6.75613
6.20082
5.7708
5.44832
5.2213
5.08126
5.02396
5.04003
5.12375
5.27303
5.48397
5.75132
6.0681
6.42503
6.80996
7.20766
7.60232
8.00102
8.59355
10.4731
17.9109
45.5227
159.688
1040.54
1029.84
175.011
65.7549
36.0433
24.2009
18.1449
14.5157
12.1286
10.469
9.26848
8.36926
7.67288
7.11657
6.65976
6.27556
5.94567
5.65865
5.41349
5.20685
5.03553
4.89797
4.79687
4.73628
4.72101
4.75576
4.84348
4.98353
5.17601
5.47728
6.2793
9.19552
19.0652
50.0443
166.239
1041.11
1029.86
175.383
65.3617
34.5083
21.6537
14.97
11.1246
8.81784
7.3851
6.44338
5.77527
5.2662
4.86077
4.53393
4.27403
4.07379
3.92588
3.82234
3.75532
3.71645
3.69853
3.69638
3.70769
3.73333
3.7778
3.85162
3.98201
4.25134
4.91278
6.68068
11.3338
23.1348
55.1271
170.554
1042.03
1029.87
172.904
61.8516
30.7477
18.3163
12.5298
9.69389
8.20654
7.30243
6.64364
6.09507
5.60732
5.16603
4.77111
4.42707
4.13823
3.9065
3.72988
3.60301
3.51845
3.46732
3.44092
3.43343
3.44438
3.48211
3.57198
3.77618
4.24052
5.29735
7.66668
12.8723
24.6495
55.6202
170.973
1042.93
1029.88
172.578
61.5545
30.7492
18.655
13.0719
10.2852
8.77073
7.83232
7.1575
6.60823
6.12127
5.67001
5.24944
4.86363
4.51734
4.21482
3.95999
3.75472
3.59805
3.48721
3.418
3.38689
3.39492
3.45469
3.60282
3.92329
4.59127
5.94958
8.64435
14.0084
25.6486
56.5543
171.247
1043.7
1029.88
172.043
60.867
30.0313
18.0277
12.6177
9.98715
8.55582
7.64229
6.96755
6.41324
5.92585
5.48468
5.08457
4.72341
4.39973
4.11445
3.86983
3.66835
3.5123
3.4038
3.34527
3.34113
3.40118
3.547
3.82348
4.32031
5.20793
6.78919
9.60644
14.8521
26.1021
56.5126
171.489
1044.45
1029.89
171.974
60.8979
30.1854
18.2706
12.9021
10.2849
8.86084
7.95515
7.28846
6.74073
6.25536
5.80934
5.39785
5.01972
4.67328
4.35953
4.08142
3.84265
3.64779
3.50312
3.41654
3.39965
3.47138
3.66482
4.03898
4.69121
5.77549
7.5383
10.4202
15.5144
26.4636
56.9041
171.618
1045.08
1029.89
172.262
61.1875
30.3743
18.3971
13.0178
10.3857
8.92258
7.96986
7.26275
6.68724
6.19005
5.74887
5.35307
4.99474
4.66887
4.37379
4.11055
3.88184
3.69247
3.55053
3.46749
3.46061
3.55711
3.80157
4.27076
5.08069
6.37356
8.33418
11.2979
16.2746
26.9761
57.314
172.116
1045.69
1029.9
172.184
61.0823
30.2555
18.3143
12.9958
10.4136
8.98242
8.05025
7.35698
6.79068
6.29891
5.86027
5.46582
5.10886
4.78466
4.49143
4.23008
4.0026
3.81335
3.67111
3.58882
3.58667
3.69697
3.97286
4.50666
5.43571
6.90421
9.04887
12.0983
16.9549
27.3634
57.5177
172.428
1046.24
1029.91
172.438
61.3388
30.4558
18.495
13.1792
10.5806
9.11315
8.14139
7.41556
6.82714
6.32409
5.88397
5.49421
5.14511
4.83098
4.54929
4.3005
4.08599
3.90972
3.78101
3.71382
3.73039
3.86674
4.1827
4.78273
5.81992
7.44138
9.74649
12.8741
17.6352
27.8131
57.8598
172.889
1046.76
1029.91
172.424
61.2707
30.3362
18.397
13.1386
10.5812
9.13471
8.17552
7.45913
6.87805
6.38107
5.94596
5.56143
5.21878
4.91219
4.63924
4.40079
4.1979
4.03422
3.91978
3.86933
3.90655
4.07008
4.4252
5.08562
6.21355
7.95842
10.3923
13.5796
18.245
28.1929
58.1173
173.248
1047.25
1029.92
172.57
61.3899
30.4187
18.4939
13.2616
10.7044
9.23949
8.25857
7.52493
6.9335
6.43271
5.99868
5.61843
5.28245
4.98456
4.72225
4.49668
4.30858
4.16122
4.06549
4.03698
4.1008
4.29794
4.69866
5.42372
6.63784
8.48659
11.0173
14.2373
18.8085
28.563
58.4106
173.647
1047.72
1029.93
172.621
61.3824
30.359
18.457
13.2725
10.7402
9.28259
8.30482
7.5747
6.9875
6.49153
6.06236
5.68793
5.35946
5.07057
4.81904
4.60662
4.43382
4.30341
4.22726
4.22181
4.31346
4.54527
4.99213
5.78004
7.07168
9.00517
11.6058
14.8359
19.3095
28.8835
58.6629
173.999
1048.16
1029.93
172.726
61.4325
30.3731
18.498
13.3478
10.823
9.35762
8.36982
7.63292
7.04351
6.54911
6.12408
5.75575
5.43517
5.15589
4.91598
4.71788
4.56186
4.45014
4.39559
4.41561
4.53795
4.8078
5.30427
6.15627
7.52076
9.52438
12.1707
15.3883
19.7624
29.1819
58.925
174.362
1048.59
1029.94
172.824
61.4545
30.3483
18.5019
13.3927
10.8832
9.41871
8.43
7.69397
7.10735
6.61721
6.1973
5.83482
5.52148
5.25128
5.02257
4.83853
4.69919
4.60612
4.57313
4.61865
4.77183
5.08052
5.62702
6.53881
7.96689
10.0254
12.698
15.8882
20.1639
29.4448
59.1637
174.697
1048.99
1029.95
172.949
61.4888
30.3428
18.5271
13.4514
10.9495
9.48094
8.48743
7.74967
7.16495
6.67956
6.26615
5.91092
5.60588
5.34563
5.12903
4.95991
4.83827
4.76504
4.75484
4.82708
5.01232
5.36106
5.95808
6.92745
8.4121
10.5121
13.1932
16.3419
20.5223
29.6874
59.4052
175.032
1049.38
1029.96
173.109
61.5274
30.3352
18.552
13.5119
11.0198
9.54975
8.55419
7.81681
7.23505
6.7546
6.34716
5.99816
5.70019
5.44875
5.24327
5.08821
4.9836
4.92979
4.94194
5.04036
5.25678
5.6443
6.28943
7.31125
8.84334
10.9718
13.647
16.7458
20.8363
29.9013
59.627
175.341
1049.75
1029.97
173.327
61.5806
30.3395
18.5858
13.5734
11.0854
9.61146
8.61271
7.87553
7.29749
6.82335
6.42376
6.08313
5.7936
5.55166
5.35794
5.21717
5.12966
5.0956
5.13047
5.25554
5.50407
5.93084
6.62123
7.68972
9.26027
11.405
14.0616
17.1039
21.112
30.0974
59.8465
175.643
1050.1
1029.98
173.654
61.6619
30.3575
18.631
13.6449
11.1607
9.68342
8.68217
7.94546
7.37093
6.90274
6.51066
6.17815
5.89679
5.66416
5.48232
5.3547
5.28166
5.26599
5.3224
5.47285
5.75206
6.2159
6.94729
8.05536
9.65427
11.8035
14.4312
17.414
21.3485
30.2691
60.0467
175.92
1050.44
1029.98
174.162
61.793
30.4008
18.6883
13.7171
11.2309
9.74825
8.74425
8.00851
7.43843
6.97738
6.59435
6.27193
6.00113
5.77978
5.61033
5.49526
5.43614
5.43819
5.5157
5.69114
6.00018
6.49873
7.26684
8.40775
10.0258
12.1687
14.7583
17.6797
21.5508
30.4241
60.2395
176.184
1050.76
1029.99
175.018
62.0127
30.4778
18.7611
13.7979
11.308
9.82048
8.8145
8.07999
7.51404
7.05962
6.68513
6.37248
6.1123
5.90278
5.74548
5.64209
5.5963
5.61426
5.71126
5.91033
6.24736
6.77682
7.57588
8.74175
10.3692
12.4959
15.0404
17.9009
21.7188
30.558
60.4132
176.423
1051.07
1030
176.445
62.3637
30.5935
18.8421
13.8745
11.3776
9.88539
8.87868
8.14651
7.5857
7.13895
6.77398
6.47227
6.22434
6.02743
5.88199
5.79065
5.75831
5.79209
5.90812
6.12987
6.49263
7.04932
7.87394
9.05749
10.6855
12.7872
15.2808
18.0815
21.8568
30.6768
60.5771
176.649
1051.37
1030.01
178.658
62.8364
30.7184
18.9159
13.9462
11.4469
9.9533
8.9477
8.21875
7.6632
7.22366
6.86744
6.57577
6.33936
6.15481
6.02144
5.9426
5.92397
5.97343
6.10715
6.34909
6.73429
7.31391
8.15845
9.35265
10.9734
13.0425
15.4807
18.2238
21.9667
30.7797
60.7265
176.857
1051.65
1030.02
180.585
63.1652
30.7715
18.9576
14.0023
11.5073
10.0158
9.01309
8.28848
7.73907
7.30754
6.96081
6.67993
6.45519
6.28261
6.16156
6.09548
6.09064
6.15546
6.30595
6.5663
6.9713
7.57021
8.42978
9.62851
11.2352
13.2655
15.6447
18.3326
22.0524
30.8703
60.8664
177.05
1051.92
1030.03
180.801
63.1428
30.7365
18.9804
14.0571
11.5713
10.0829
9.0834
8.36304
7.81949
7.39552
7.05776
6.78713
6.57355
6.41245
6.30337
6.24971
6.25819
6.33763
6.50396
6.78093
7.2029
7.81744
8.68728
9.88483
11.4714
13.4578
15.7758
18.4111
22.1157
30.9481
60.9936
177.228
1052.18
1030.04
180.856
63.1394
30.7288
19.017
14.1153
11.6345
10.1484
9.15217
8.43651
7.89932
7.48334
7.15482
6.89454
6.69211
6.54245
6.44523
6.40377
6.42516
6.51854
6.69964
6.99153
7.42805
8.05508
8.93114
10.1227
11.6842
13.6228
15.8785
18.4638
22.1602
31.0158
61.1119
177.393
1052.43
1030.05
180.917
63.1291
30.7124
19.0484
14.1718
11.6985
10.2161
9.2239
8.51325
7.98247
7.57432
7.2548
7.00439
6.81238
6.67366
6.58777
6.55793
6.59152
6.69788
6.89247
7.19788
7.64669
8.28281
9.1611
10.3422
11.8745
13.7627
15.9557
18.494
22.188
31.0732
61.2193
177.544
1052.68
1030.06
180.975
63.1177
30.6993
19.0826
14.2287
11.7621
10.2832
9.29517
8.58975
8.06557
7.66538
7.35491
7.11434
6.93266
6.80468
6.72982
6.71118
6.75636
6.87484
7.08173
7.39901
7.85779
8.50007
9.37721
10.5443
12.0442
13.8801
16.0111
18.5054
22.2018
31.1226
61.3188
177.686
1052.92
1030.07
181.031
63.1027
30.6851
19.1168
14.2862
11.8271
10.3525
9.36882
8.66873
8.15108
7.7586
7.45681
7.22566
7.05385
6.9361
6.8717
6.86361
6.91958
7.04913
7.26697
7.59438
8.06093
8.7066
9.57936
10.7292
12.1941
13.9768
16.0469
18.5005
22.2034
31.1639
61.4092
177.819
1053.15
1030.08
181.085
63.086
30.6723
19.1518
14.3435
11.8917
10.4214
9.44242
8.74787
8.2369
7.85219
7.55902
7.33708
7.1749
7.06705
7.01267
7.01457
7.08062
7.22027
7.44779
7.78369
8.25619
8.90281
9.76823
10.898
12.326
14.0551
16.0661
18.482
22.1949
31.199
61.4929
177.945
1053.37
1030.09
181.137
63.0677
30.6606
19.1885
14.4023
11.958
10.4922
9.51794
8.82889
8.32447
7.9473
7.66241
7.4493
7.29628
7.19781
7.15285
7.16407
7.23936
7.38808
7.62398
7.96674
8.4432
9.08837
9.94387
11.0513
12.4409
14.1164
16.0704
18.4518
22.1775
31.2278
61.5694
178.067
1053.59
1030.1
181.19
63.0511
30.6533
19.2278
14.4618
12.0245
10.5631
9.59356
8.91009
8.41225
8.04259
7.76586
7.56135
7.4172
7.3277
7.29167
7.3116
7.39537
7.55218
7.79522
8.14332
8.62189
9.26337
10.1067
11.19
12.5403
14.1629
16.0621
18.412
22.153
31.252
61.6411
178.19
1053.81
1030.11
181.24
63.0348
30.6495
19.2695
14.5228
12.0921
10.635
9.67006
8.9921
8.50075
8.13841
7.86959
7.67335
7.53766
7.45664
7.42897
7.45693
7.54838
7.71229
7.96126
8.31321
8.79213
9.42831
10.2577
11.3151
12.6253
14.1957
16.0426
18.3638
22.1218
31.2711
61.7072
178.318
1054.01
1030.12
181.287
63.0202
30.6479
19.3116
14.583
12.1588
10.7061
9.74592
9.07357
8.58874
8.23368
7.97267
7.78449
7.65696
7.58403
7.56422
7.59962
7.69802
7.86812
8.12191
8.47638
8.95414
9.5834
10.3972
11.4275
12.6973
14.2166
16.0135
18.3084
22.0848
31.286
61.7702
178.464
1054.22
1030.13
181.339
63.0079
30.649
19.355
14.6437
12.2257
10.7773
9.82184
9.15501
8.67661
8.32868
8.07524
7.89483
7.77508
7.70978
7.69728
7.7395
7.84411
8.0195
8.27703
8.63279
9.10796
9.72883
10.5257
11.528
12.7575
14.2271
15.9764
18.2473
22.0431
31.2972
61.8322
178.646
1054.42
1030.14
181.394
62.9973
30.6521
19.3988
14.7036
12.2917
10.8476
9.89679
9.23553
8.76353
8.42265
8.17663
8.00377
7.8915
7.83344
7.82779
7.87626
7.98641
8.16628
8.42662
8.78255
9.25393
9.86516
10.644
11.6177
12.8072
14.2284
15.9325
18.1813
21.9973
31.3061
61.8991
178.901
1054.61
1030.15
181.447
62.9862
30.6562
19.4429
14.7634
12.3574
10.9174
9.97129
9.3155
8.84979
8.51576
8.27692
8.11131
8.00615
7.9549
7.9556
8.00976
8.1248
8.30841
8.57067
8.9258
9.39234
9.99291
10.7529
11.6977
12.8477
14.2222
15.8836
18.1125
21.9491
31.315
61.9815
179.3
1054.8
1030.16
181.5
62.9756
30.6617
19.487
14.8224
12.422
10.9862
10.0447
9.39431
8.9348
8.60749
8.37563
8.21702
8.11866
8.07383
8.08044
8.13979
8.25914
8.44581
8.70924
9.06275
9.52361
10.1128
10.8536
11.7697
12.8812
14.2109
15.8313
18.041
21.8995
31.3287
62.1012
179.99
1054.98
1030.17
181.553
62.9655
30.6685
19.5313
14.881
12.4861
11.0543
10.1172
9.47218
9.0187
8.69789
8.47276
8.32083
8.22891
8.19012
8.20219
8.26625
8.38938
8.57852
8.84248
9.1937
9.64825
10.2255
10.9469
11.8343
12.9075
14.1928
15.7747
17.9712
21.8561
31.3551
62.2994
181.256
1055.16
1030.18
181.606
62.9555
30.6761
19.575
14.9384
12.5489
11.1212
10.1885
9.54867
9.10108
8.78656
8.5679
8.42239
8.33659
8.30348
8.32062
8.38895
8.5154
8.70651
8.97047
9.31887
9.76661
10.3315
11.0333
11.892
12.9274
14.1702
15.7174
17.9049
21.8213
31.414
62.666
183.438
1055.34
1030.19
181.657
62.9451
30.6839
19.6183
14.9949
12.6106
11.1869
10.2586
9.62392
9.18205
8.87356
8.66106
8.52162
8.4416
8.4138
8.43561
8.50781
8.63715
8.82977
9.09327
9.4384
9.87892
10.4312
11.1132
11.9437
12.9427
14.146
15.6631
17.8482
21.8081
31.5269
63.1556
185.701
1055.52
1030.2
181.708
62.9344
30.6922
19.6607
15.0501
12.6711
11.2513
10.3273
9.69766
9.26136
8.95865
8.752
8.61828
8.54367
8.52081
8.54692
8.62261
8.75444
8.94818
9.21084
9.55235
9.98537
10.5249
11.1874
11.9906
12.9552
14.1224
15.6139
17.8007
21.8051
31.6277
63.4591
186.592
1055.7
1030.21
181.758
62.9235
30.7007
19.7026
15.1044
12.7304
11.3145
10.3947
9.77004
9.33907
9.04186
8.8407
8.7123
8.64269
8.62434
8.65435
8.73314
8.86709
9.0616
9.32309
9.66073
10.0861
10.6131
11.2566
12.0337
12.9661
14.1004
15.569
17.7575
21.7969
31.6824
63.5745
186.755
1055.88
1030.22
181.807
62.9127
30.7095
19.7437
15.1575
12.7886
11.3765
10.4608
9.84085
9.41501
9.12298
8.92695
8.80347
8.73842
8.72416
8.75764
8.83913
8.97483
9.16977
9.42983
9.76344
10.1813
10.6959
11.3214
12.0737
12.9763
14.0803
15.5278
17.7158
21.7808
31.7046
63.616
186.815
1056.06
1030.23
181.855
62.9012
30.7182
19.7838
15.2093
12.8454
11.4371
10.5254
9.91011
9.48914
9.202
9.01072
8.89173
8.83079
8.82015
8.85666
8.94043
9.0775
9.27255
9.53094
9.86044
10.2708
10.7737
11.382
12.1114
12.9863
14.0625
15.49
17.6757
21.7596
31.7098
63.6322
186.862
1056.24
1030.24
181.902
62.8895
30.7268
19.8229
15.2598
12.9009
11.4963
10.5885
9.97761
9.56131
9.27875
9.09187
8.97697
8.91969
8.91222
8.95131
9.03694
9.17501
9.36983
9.62634
9.95167
10.3549
10.8465
11.4387
12.1469
12.9965
14.0473
15.4562
17.6382
21.7366
31.7074
63.6395
186.906
1056.42
1030.25
181.948
62.8771
30.7353
19.8611
15.3091
12.955
11.5541
10.65
10.0434
9.63149
9.35323
9.1704
9.05918
9.00515
9.00041
9.04165
9.12872
9.2674
9.46168
9.71609
10.0372
10.4334
10.9145
11.4918
12.1805
13.0072
14.035
15.4266
17.6042
21.7144
31.7025
63.6443
186.95
1056.61
1030.26
181.993
62.8641
30.7437
19.8985
15.3573
13.0078
11.6104
10.71
10.1074
9.69967
9.4254
9.24628
9.13837
9.08718
9.08476
9.12772
9.21585
9.35477
9.54822
9.80034
10.1173
10.5067
10.9779
11.5415
12.2124
13.0185
14.0256
15.4016
17.5747
21.6949
31.6981
63.6495
186.996
1056.79
1030.27
182.036
62.8506
30.7522
19.9355
15.4047
13.0598
11.6657
10.7686
10.1698
9.76598
9.49539
9.31962
9.21464
9.16588
9.16537
9.20966
9.29847
9.4373
9.62962
9.87928
10.192
10.575
11.0368
11.5877
12.2426
13.0301
14.0188
15.3808
17.5498
21.679
31.6957
63.6566
187.043
1056.98
1030.28
182.077
62.8368
30.7609
19.972
15.4514
13.1109
11.7199
10.826
10.2307
9.83048
9.56325
9.39048
9.28805
9.24134
9.24235
9.28759
9.37672
9.51512
9.70606
9.95308
10.2616
10.6383
11.0913
11.6305
12.2708
13.0415
14.0137
15.364
17.5301
21.6668
31.6958
63.6655
187.092
1057.17
1030.29
182.118
62.8233
30.7704
20.0085
15.4977
13.1614
11.7734
10.8823
10.2903
9.89334
9.62914
9.45902
9.35877
9.31372
9.31585
9.36166
9.45076
9.58843
9.77771
10.0219
10.3262
10.6968
11.1415
11.6698
12.2964
13.0518
14.0097
15.3508
17.5153
21.6579
31.6981
63.676
187.141
1057.35
1030.3
182.158
62.8105
30.7806
20.045
15.5437
13.2113
11.826
10.9376
10.3486
9.95464
9.69316
9.52535
9.42692
9.38317
9.38606
9.43208
9.52081
9.65743
9.8448
10.086
10.3859
10.7506
11.1873
11.7053
12.3194
13.0611
14.0067
15.3405
17.5043
21.6523
31.7028
63.6882
187.19
1057.54
1030.31
182.197
62.7984
30.7917
20.0816
15.5894
13.2607
11.8779
10.992
10.4057
10.0145
9.75542
9.58959
9.49263
9.44982
9.45311
9.49899
9.58702
9.7223
9.90749
10.1456
10.4411
10.7998
11.2288
11.737
12.3396
13.069
14.0041
15.3323
17.4961
21.6492
31.7091
63.701
187.238
1057.73
1030.32
182.236
62.7868
30.8035
20.1182
15.6348
13.3096
11.9291
11.0455
10.4617
10.0729
9.816
9.65186
9.55604
9.51383
9.51718
9.56259
9.6496
9.78323
9.96598
10.2007
10.4917
10.8445
11.266
11.7649
12.3567
13.0752
14.0014
15.3252
17.4899
21.6482
31.7169
63.7147
187.285
1057.91
1030.33
182.274
62.7761
30.8162
20.1549
15.6799
13.358
11.9797
11.0981
10.5166
10.1301
9.87503
9.71228
9.61731
9.57538
9.57847
9.62309
9.70878
9.84047
10.0205
10.2516
10.538
10.885
11.2991
11.7892
12.371
13.0796
13.9982
15.3188
17.4851
21.649
31.7263
63.7296
187.332
1058.09
1030.34
182.312
62.7659
30.8295
20.1917
15.7248
13.4061
12.0297
11.15
10.5705
10.186
9.93261
9.77098
9.67655
9.6346
9.63713
9.68065
9.76473
9.89421
10.0713
10.2986
10.5802
10.9213
11.3281
11.8098
12.3824
13.0821
13.9941
15.3125
17.4812
21.6509
31.7366
63.7448
187.377
1058.27
1030.35
182.349
62.7561
30.8434
20.2287
15.7697
13.454
12.0794
11.2013
10.6237
10.241
9.98893
9.82814
9.73397
9.6917
9.69336
9.73549
9.81767
9.94465
10.1186
10.3419
10.6185
10.9536
11.3533
11.8268
12.3907
13.0824
13.9888
15.3058
17.4774
21.6534
31.7474
63.7595
187.419
1058.44
1030.35
182.385
62.7469
30.8578
20.2657
15.8145
13.5017
12.1288
11.2522
10.6763
10.295
10.0441
9.88389
9.78971
9.74685
9.74735
9.7878
9.8678
9.99202
10.1625
10.3816
10.6532
10.9822
11.3749
11.8405
12.3962
13.0805
13.9821
15.2983
17.4735
21.6562
31.7585
63.774
187.46
1058.61
1030.36
182.42
62.7374
30.8722
20.3025
15.859
13.5492
12.1779
11.3027
10.7282
10.3483
10.0983
9.93843
9.84397
9.80023
9.7993
9.83779
9.91533
10.0365
10.2033
10.4179
10.6843
11.0072
11.393
11.851
12.399
13.0767
13.9741
15.2903
17.4696
21.6594
31.7704
63.7892
187.499
1058.78
1030.37
182.455
62.7285
30.8871
20.3393
15.9035
13.5965
12.2268
11.3529
10.7798
10.401
10.1517
9.9919
9.89691
9.85202
9.84938
9.88563
9.96043
10.0783
10.2411
10.4511
10.712
11.0288
11.4077
11.8584
12.3992
13.0709
13.9649
15.2817
17.4656
21.6628
31.7824
63.8036
187.536
1058.95
1030.38
182.49
62.7207
30.9028
20.3764
15.9482
13.644
12.2757
11.4029
10.831
10.4532
10.2044
10.0445
9.94869
9.9024
9.89779
9.93153
10.0033
10.1176
10.2761
10.4811
10.7364
11.0469
11.419
11.8625
12.3966
13.0629
13.9543
15.2722
17.4614
21.6663
31.7943
63.8174
187.57
1059.11
1030.39
182.524
62.7148
30.9199
20.4142
15.9932
13.6916
12.3247
11.4529
10.882
10.5051
10.2565
10.0963
9.99947
9.95154
9.9447
9.97567
10.0442
10.1546
10.3086
10.5084
10.7579
11.0619
11.427
11.8635
12.3911
13.0526
13.9419
15.2616
17.4565
21.6695
31.806
63.8293
187.599
1059.27
1030.4
182.559
62.7105
30.9383
20.4526
16.0386
13.7396
12.3739
11.5031
10.9331
10.5567
10.3082
10.1474
10.0493
9.99954
9.99025
10.0182
10.0832
10.1895
10.3387
10.5332
10.7765
11.0739
11.432
11.8615
12.3827
13.0396
13.9272
15.2491
17.4499
21.6708
31.8142
63.8353
187.621
1059.42
1030.41
182.594
62.7077
30.9576
20.4916
16.0845
13.7879
12.4235
11.5537
10.9843
10.6082
10.3595
10.1979
10.0984
10.0465
10.0346
10.0594
10.1207
10.2227
10.3669
10.5557
10.7928
11.0833
11.4343
11.8567
12.3717
13.0241
13.9101
15.2344
17.4414
21.6702
31.8199
63.8369
187.639
1059.58
1030.42
182.631
62.7072
30.9786
20.5315
16.131
13.8369
12.4737
11.6048
11.0359
10.6598
10.4107
10.248
10.1469
10.0927
10.078
10.0994
10.1568
10.2543
10.3934
10.5763
10.807
11.0906
11.4343
11.8495
12.3583
13.0063
13.8909
15.2178
17.4312
21.6683
31.8247
63.8372
187.655
1059.72
1030.43
182.669
62.7097
31.0014
20.5725
16.1785
13.8866
12.5245
11.6564
11.088
10.7117
10.4618
10.2979
10.1949
10.1383
10.1205
10.1384
10.1917
10.2846
10.4184
10.5954
10.8195
11.096
11.4324
11.8404
12.3429
12.9867
13.8699
15.1995
17.4197
21.6654
31.8289
63.8368
187.669
1059.87
1030.44
182.709
62.7149
31.0261
20.6146
16.2268
13.9371
12.576
11.7087
11.1405
10.7639
10.5131
10.3476
10.2425
10.1832
10.1623
10.1765
10.2256
10.3138
10.4422
10.6131
10.8306
11.0999
11.4288
11.8297
12.3259
12.9654
13.8474
15.1798
17.407
21.6617
31.833
63.8364
187.682
1060
1030.45
182.752
62.723
31.0525
20.6578
16.276
13.9884
12.6282
11.7615
11.1934
10.8163
10.5644
10.3971
10.2897
10.2276
10.2034
10.2138
10.2587
10.342
10.4649
10.6297
10.8404
11.1025
11.424
11.8176
12.3076
12.9429
13.8237
15.159
17.3935
21.6576
31.8372
63.8364
187.693
1060.14
1030.46
182.795
62.7314
31.0789
20.7012
16.3254
14.04
12.6808
11.8146
11.2467
10.8689
10.6157
10.4465
10.3366
10.2716
10.2439
10.2503
10.2909
10.3693
10.4866
10.6452
10.8491
11.1039
11.4179
11.8042
12.2879
12.9191
13.7987
15.1371
17.3791
21.6527
31.8409
63.8356
187.702
1060.27
1030.47
182.838
62.7399
31.1058
20.7451
16.3755
14.0923
12.7339
11.8683
11.3003
10.9219
10.6672
10.4959
10.3834
10.3152
10.2839
10.2864
10.3225
10.396
10.5077
10.66
10.857
11.1044
11.4107
11.7896
12.267
12.8937
13.7723
15.1139
17.3632
21.6466
31.8434
63.8333
187.709
1060.4
1030.47
182.881
62.7511
31.1349
20.7906
16.4271
14.1458
12.788
11.9228
11.3547
10.9753
10.7189
10.5454
10.43
10.3586
10.3236
10.3221
10.3537
10.4221
10.5282
10.6742
10.8642
11.1041
11.4026
11.7738
12.2445
12.8669
13.745
15.0902
17.3462
21.6393
31.8452
63.8306
187.714
1060.53
1030.48
182.926
62.7646
31.1659
20.838
16.4802
14.2006
12.8434
11.9784
11.4098
11.0293
10.7711
10.5951
10.4767
10.4018
10.3631
10.3574
10.3845
10.4479
10.5483
10.688
10.871
11.1032
11.3936
11.7569
12.2209
12.8392
13.7171
15.0659
17.3281
21.6309
31.8462
63.8268
187.716
1060.65
1030.49
182.974
62.7822
31.1998
20.8875
16.5352
14.2571
12.9
12.035
11.4659
11.0839
10.8237
10.6449
10.5234
10.4449
10.4023
10.3925
10.415
10.4734
10.5681
10.7014
10.8772
11.1016
11.3837
11.739
12.1962
12.8104
13.688
15.0402
17.3081
21.6198
31.8438
63.8182
187.711
1060.76
1030.5
183.026
62.8031
31.2358
20.9387
16.5917
14.3149
12.9579
12.0927
11.5228
11.1392
10.8766
10.695
10.57
10.4878
10.4412
10.4271
10.4451
10.4985
10.5875
10.7144
10.883
11.0996
11.3734
11.7206
12.1709
12.7808
13.6579
15.0129
17.2857
21.6056
31.8376
63.8046
187.702
1060.88
1030.51
183.08
62.8259
31.2734
20.9916
16.6498
14.3743
13.0172
12.1516
11.5807
11.1954
10.9301
10.7452
10.6166
10.5305
10.4798
10.4614
10.4748
10.5232
10.6066
10.7272
10.8889
11.0976
11.3632
11.7023
12.1458
12.7512
13.6272
14.9844
17.2615
21.5887
31.8284
63.7878
187.69
1060.99
1030.52
183.137
62.8523
31.3136
21.0466
16.71
14.4355
13.0782
12.2121
11.64
11.2525
10.9843
10.7959
10.6633
10.5731
10.5182
10.4954
10.5043
10.5477
10.6257
10.7402
10.895
11.0963
11.3539
11.6851
12.1217
12.7224
13.5969
14.9556
17.236
21.5698
31.8167
63.7688
187.676
1061.1
1030.53
183.198
62.8811
31.3555
21.1035
16.7721
14.4987
13.141
12.2741
11.7006
11.3107
11.0393
10.847
10.7102
10.6157
10.5563
10.5291
10.5335
10.5721
10.6449
10.7536
10.9019
11.0959
11.3458
11.6694
12.0992
12.6951
13.5677
14.9272
17.2102
21.5496
31.8032
63.748
187.661
1061.21
1030.54
183.264
62.9137
31.4
21.1627
16.8365
14.564
13.2057
12.338
11.7629
11.3703
11.0952
10.8986
10.7573
10.6582
10.5942
10.5625
10.5624
10.5964
10.6641
10.7673
10.9094
11.0967
11.3394
11.6557
12.0789
12.6698
13.5401
14.8999
17.1846
21.5287
31.7882
63.7258
187.646
1061.32
1030.55
183.334
62.9502
31.4471
21.2244
16.9033
14.6317
13.2727
12.4039
11.8269
11.4312
11.1521
10.9509
10.8047
10.7006
10.6319
10.5955
10.5909
10.6204
10.6833
10.7812
10.9177
11.0986
11.3345
11.644
12.0609
12.647
13.5148
14.8742
17.16
21.5079
31.7725
63.7034
187.632
1061.43
1030.56
183.407
62.988
31.4956
21.2879
16.9723
14.7016
13.3418
12.4719
11.8927
11.4937
11.2102
11.0039
10.8523
10.743
10.6693
10.6281
10.619
10.644
10.7023
10.7954
10.9265
11.1016
11.3313
11.6343
12.0454
12.6268
13.4919
14.8507
17.137
21.488
31.7571
63.682
187.62
1061.54
1030.57
183.485
63.03
31.5469
21.354
17.0439
14.774
13.4134
12.5421
11.9606
11.5578
11.2695
11.0576
10.9003
10.7854
10.7063
10.6603
10.6465
10.6671
10.721
10.8095
10.9357
11.1055
11.3295
11.6267
12.0324
12.6094
13.4718
14.8298
17.1162
21.4697
31.7429
63.6626
187.611
1061.65
1030.58
183.565
63.0731
31.5994
21.422
17.1179
14.849
13.4875
12.6147
12.0306
11.6237
11.33
11.112
10.9485
10.8275
10.7429
10.6917
10.6733
10.6896
10.7392
10.8234
10.945
11.11
11.3289
11.6209
12.0217
12.5947
13.4547
14.8118
17.0981
21.4537
31.7307
63.6463
187.607
1061.77
1030.59
183.647
63.1181
31.6538
21.4924
17.1946
14.9269
13.5644
12.6899
12.103
11.6914
11.3917
11.1671
10.9968
10.8694
10.7788
10.7223
10.6992
10.7111
10.7567
10.8368
10.9543
11.115
11.3293
11.6167
12.0132
12.5826
13.4404
14.7966
17.0828
21.4403
31.7207
63.6333
187.607
1061.89
1030.6
183.735
63.1665
31.7105
21.5653
17.2741
15.0079
13.6445
12.7681
12.1777
11.7609
11.4545
11.2226
11.045
10.9107
10.8139
10.7518
10.7238
10.7315
10.773
10.8493
10.9631
11.1199
11.3302
11.6137
12.0064
12.5728
13.4287
14.7843
17.0705
21.4296
31.7135
63.6242
187.611
1062.01
1030.61
183.824
63.216
31.7685
21.6402
17.3562
15.0918
13.7282
12.8496
12.2547
11.8316
11.5178
11.2779
11.0925
10.9509
10.8476
10.7799
10.747
10.7503
10.7881
10.8608
10.9712
11.1246
11.3315
11.6116
12.0012
12.5651
13.4195
14.7748
17.0612
21.4222
31.7098
63.6202
187.621
1062.14
1030.62
183.918
63.2684
31.8292
21.718
17.4413
15.1791
13.8155
12.9341
12.3337
11.9033
11.5812
11.3328
11.1391
10.9899
10.8799
10.8063
10.7684
10.7675
10.8015
10.8709
10.9782
11.1287
11.3326
11.6099
11.997
12.5589
13.4124
14.7675
17.0543
21.4172
31.7085
63.6194
187.633
1062.27
1030.63
184.012
63.3202
31.8909
21.7982
17.5293
15.2691
13.9053
13.0209
12.4146
11.9763
11.6452
11.3875
11.1849
11.0277
10.9106
10.8309
10.7879
10.7827
10.8131
10.8794
10.9839
11.1317
11.3332
11.6082
11.9934
12.5541
13.4071
14.7622
17.0495
21.4143
31.7093
63.6212
187.648
1062.4
1030.64
184.107
63.3736
31.9552
21.8819
17.621
15.3626
13.9984
13.1106
12.4978
12.0508
11.7099
11.4422
11.2302
11.0643
10.9397
10.8536
10.8053
10.7958
10.8226
10.8858
10.9878
11.1334
11.3329
11.6061
11.9899
12.55
13.403
14.7583
17.0464
21.4132
31.7118
63.6257
187.665
1062.54
1030.65
184.209
63.4323
32.0242
21.9701
17.717
15.4601
14.0951
13.2033
12.5832
12.1268
11.7752
11.4967
11.2745
11.0995
10.9669
10.8741
10.8204
10.8064
10.8296
10.89
10.9897
11.1334
11.3313
11.6032
11.9864
12.5464
13.3998
14.7556
17.0447
21.4137
31.716
63.6325
187.684
1062.67
1030.67
184.311
63.4909
32.0948
22.0615
17.8165
15.5611
14.1949
13.2987
12.6707
12.2039
11.8407
11.5506
11.3175
11.1328
10.9918
10.892
10.8327
10.8142
10.8338
10.8915
10.989
11.1312
11.3279
11.5992
11.9822
12.5427
13.397
14.7537
17.0441
21.4154
31.7217
63.6417
187.705
1062.81
1030.68
184.419
63.5526
32.1688
22.157
17.9203
15.6662
14.2985
13.3973
12.7604
12.2822
11.9064
11.6037
11.3588
11.1638
11.014
10.907
10.8417
10.8187
10.8347
10.8898
10.9855
11.1264
11.3225
11.5936
11.9771
12.5386
13.3943
14.7524
17.0446
21.4184
31.7291
63.6536
187.728
1062.95
1030.69
184.529
63.6156
32.2453
22.2563
18.0285
15.7754
14.4059
13.499
12.8523
12.3613
11.9717
11.6554
11.3981
11.1921
11.033
10.9184
10.8471
10.8194
10.832
10.8845
10.9786
11.1186
11.3145
11.586
11.9705
12.5336
13.3913
14.7513
17.0457
21.4227
31.7384
63.669
187.754
1063.09
1030.71
184.642
63.6789
32.3236
22.3592
18.1409
15.889
14.5172
13.6038
12.946
12.4409
12.0361
11.7051
11.4345
11.217
11.0482
10.9258
10.8484
10.816
10.8251
10.8753
10.968
11.1075
11.3036
11.5761
11.9622
12.5275
13.3878
14.7504
17.0476
21.4284
31.7502
63.6888
187.784
1063.24
1030.72
184.754
63.7402
32.4022
22.4649
18.2577
16.0073
14.6329
13.7119
13.0413
12.5204
12.0989
11.7521
11.4673
11.2377
11.059
10.9285
10.8449
10.8078
10.8135
10.8615
10.9531
11.0925
11.2892
11.5632
11.9516
12.5198
13.3832
14.7491
17.0498
21.435
31.7637
63.7115
187.815
1063.38
1030.73
184.865
63.7956
32.4787
22.5729
18.379
16.1314
14.7537
13.8232
13.1375
12.5987
12.1591
11.7954
11.4958
11.2537
11.0648
10.9261
10.8363
10.7945
10.797
10.8431
10.9338
11.0733
11.2713
11.5473
11.9385
12.5103
13.3776
14.7474
17.0524
21.443
31.78
63.7389
187.85
1063.53
1030.75
184.977
63.8548
32.561
22.6865
18.5065
16.2638
14.881
13.937
13.2334
12.6748
12.2159
11.8346
11.5197
11.2648
11.0654
10.9185
10.8223
10.776
10.7753
10.8196
10.9097
11.0498
11.2493
11.528
11.9226
12.4986
13.3706
14.745
17.055
21.4518
31.7984
63.77
187.885
1063.68
1030.76
185.086
63.9122
32.6455
22.8044
18.6381
16.3994
15.0109
14.0527
13.3297
12.7498
12.2701
11.87
11.539
11.2707
11.0605
10.9052
10.8027
10.7518
10.7481
10.7907
10.8806
11.0215
11.2231
11.5049
11.9037
12.4845
13.3618
14.7416
17.0573
21.461
31.8178
63.8028
187.919
1063.83
1030.78
185.2
63.972
32.7339
22.9277
18.7754
16.5403
15.145
14.1707
13.4261
12.823
12.3208
11.9008
11.5528
11.2706
11.0494
10.8855
10.7767
10.7214
10.7148
10.756
10.8457
10.988
11.1921
11.4776
11.881
12.4674
13.3507
14.7365
17.0585
21.4695
31.8373
63.8368
187.953
1063.98
1030.79
185.313
64.0287
32.8231
23.0548
18.9173
16.6854
15.2823
14.2899
13.5214
12.8927
12.3664
11.9253
11.5598
11.2634
11.031
10.8586
10.7436
10.684
10.6747
10.7148
10.8049
10.9488
11.1559
11.4457
11.8545
12.4472
13.3372
14.7298
17.0589
21.4782
31.8582
63.874
187.988
1064.13
1030.81
185.421
64.0804
32.9127
23.1862
19.0645
16.8354
15.4228
14.4098
13.6147
12.9581
12.4061
11.9428
11.5591
11.2482
11.0046
10.8239
10.7029
10.6392
10.6276
10.6668
10.7576
10.9036
11.1142
11.4088
11.8236
12.4232
13.3207
14.7208
17.0576
21.4858
31.8791
63.9121
188.022
1064.29
1030.83
185.526
64.128
33.0029
23.3222
19.2179
16.991
15.5668
14.5299
13.7047
13.0176
12.4382
11.9518
11.5495
11.2241
10.9695
10.7807
10.6541
10.5867
10.5731
10.6119
10.7037
10.8522
11.0669
11.3669
11.7884
12.3958
13.3016
14.71
17.0555
21.4936
31.9013
63.9531
188.056
1064.45
1030.84
185.623
64.1677
33.0917
23.4621
19.3778
17.1523
15.7132
14.648
13.7891
13.0692
12.461
11.9509
11.5299
11.1902
10.9249
10.7285
10.5967
10.526
10.5108
10.5497
10.643
10.7946
11.0137
11.3197
11.7485
12.3642
13.2789
14.6962
17.0509
21.4995
31.9227
63.9941
188.087
1064.61
1030.86
185.711
64.203
33.1815
23.607
19.5475
17.3209
15.8606
14.7621
13.8663
13.1117
12.4738
11.9399
11.5003
11.1465
10.8709
10.6673
10.5308
10.4574
10.4411
10.4805
10.5758
10.7309
10.9551
11.2676
11.7043
12.329
13.2534
14.6804
17.0451
21.505
31.9448
64.0371
188.117
1064.78
1030.88
185.797
64.2364
33.2744
23.7566
19.7238
17.4938
16.0075
14.8718
13.9363
13.1453
12.4768
11.9185
11.4602
11.0926
10.8072
10.5969
10.4562
10.3805
10.3637
10.4041
10.5019
10.661
10.8907
11.2103
11.6554
12.2897
13.2243
14.6615
17.0367
21.5085
31.9656
64.0794
188.143
1064.94
1030.89
185.878
64.2647
33.369
23.9111
19.9042
17.6695
16.1548
14.9784
13.9998
13.1698
12.4691
11.8857
11.4087
11.0276
10.7329
10.5165
10.3723
10.2951
10.2784
10.3204
10.4213
10.585
10.8209
11.1481
11.6022
12.2465
13.192
14.64
17.0263
21.5104
31.9854
64.1209
188.167
1065.11
1030.91
185.949
64.2845
33.463
24.0701
20.0905
17.8493
16.3015
15.079
14.0531
13.1816
12.4476
11.839
11.3437
10.9499
10.6468
10.4253
10.2786
10.2007
10.1849
10.2292
10.3339
10.5026
10.7451
11.0804
11.5438
12.1988
13.1555
14.6148
17.0126
21.5096
32.0038
64.1621
188.187
1065.28
1030.93
186.01
64.296
33.5571
24.2336
20.2813
18.0311
16.4458
15.1722
14.0952
13.18
12.4118
11.7779
11.2649
10.8593
10.5489
10.3234
10.1751
10.0975
10.0835
10.131
10.2401
10.4146
10.6642
11.0081
11.4815
12.1475
13.116
14.587
16.9968
21.507
32.0206
64.2021
188.205
1065.46
1030.95
186.061
64.2986
33.6496
24.4023
20.4785
18.2161
16.5867
15.2556
14.1233
13.1622
12.3593
11.7007
11.1711
10.755
10.4385
10.2103
10.0616
9.98534
9.97413
10.0256
10.1398
10.3207
10.578
10.9308
11.4143
12.0916
13.0721
14.5551
16.9771
21.5011
32.0352
64.2404
188.217
1065.63
1030.96
186.095
64.282
33.7334
24.5731
20.6799
18.4005
16.7197
15.325
14.1339
13.126
12.2887
11.6066
11.0618
10.6368
10.3158
10.0863
9.93859
9.86481
9.85744
9.91387
10.0342
10.2222
10.4877
10.8499
11.344
12.033
13.0258
14.5211
16.9557
21.4936
32.0482
64.2766
188.227
1065.82
1030.98
186.104
64.2353
33.8022
24.7471
20.8874
18.5833
16.8419
15.3778
14.1256
13.0707
12.2001
11.4959
10.9375
10.5051
10.1812
9.95183
9.80633
9.73623
9.73373
9.79603
9.92309
10.1188
10.3931
10.765
11.2697
11.9703
12.9752
14.4827
16.9297
21.4817
32.0576
64.3089
188.229
1065.99
1031
186.023
64.1189
33.8424
24.9215
21.0977
18.7582
16.9486
15.4119
14.0979
12.9964
12.0935
11.3687
10.7985
10.3604
10.0352
9.8075
9.6656
9.60044
9.60398
9.67321
9.80802
10.0123
10.296
10.6782
11.1941
11.9065
12.9236
14.4434
16.9029
21.4686
32.065
64.338
188.228
1066.19
1031.02
185.379
63.8314
33.8417
25.0873
21.3062
18.9307
17.0478
15.4329
14.0533
12.9037
11.9688
11.2245
10.6441
10.2022
9.87753
9.65303
9.51617
9.45721
9.46791
9.54504
9.68841
9.90193
10.1954
10.5881
11.115
11.839
12.8679
14.3993
16.8707
21.4496
32.0661
64.3596
188.218
1066.38
1031.03
183.203
63.3163
33.822
25.2672
21.5259
19.1014
17.1328
15.4326
13.9848
12.7875
11.8225
11.0614
10.4734
10.0302
9.7081
9.48878
9.35865
9.30741
9.32664
9.41292
9.56599
9.78974
10.094
10.498
11.0365
11.7723
12.813
14.3562
16.8394
21.4311
32.0672
64.3811
188.21
1066.59
1031.05
180.881
62.9091
33.8669
25.4739
21.7524
19.2658
17.2025
15.4118
13.8941
12.6497
11.6563
10.8807
10.2876
9.84525
9.52786
9.31548
9.19357
9.15136
9.18027
9.27668
9.44027
9.67491
9.99037
10.4058
10.9558
11.7031
12.755
14.3092
16.8034
21.4072
32.0624
64.3951
188.192
1066.79
1031.06
179.538
62.6925
33.958
25.6962
21.9819
19.4208
17.2523
15.3654
13.7765
12.4865
11.4678
10.6809
10.0858
9.64726
9.337
9.13364
9.02175
8.99013
9.03013
9.13801
9.31335
9.56003
9.88778
10.3156
10.8779
11.637
12.7004
14.2658
16.7709
21.3857
32.0583
64.4091
188.18
1067.02
1031.08
178.836
62.5568
34.068
25.9259
22.2088
19.5616
17.2787
15.2915
13.6314
12.2984
11.2577
10.4632
9.86939
9.43735
9.13649
8.94403
8.8437
8.82397
8.87618
8.99643
9.1843
9.44362
9.78405
10.2244
10.7989
11.5694
12.6434
14.2192
16.7342
21.3597
32.0497
64.4175
188.158
1067.23
1031.09
178.448
62.463
34.1955
26.1656
22.434
19.6863
17.2786
15.1871
13.4567
12.0838
11.0256
10.2277
9.63896
9.21651
8.92755
8.74801
8.66094
8.65458
8.72035
8.85427
9.05593
9.32914
9.68348
10.1376
10.7252
11.5078
12.5928
14.1792
16.704
21.3385
32.0424
64.4252
188.143
1067.49
1031.11
178.218
62.3907
34.3345
26.4109
22.6518
19.7885
17.2467
15.0491
13.2511
11.8432
10.7726
9.97614
9.39618
8.98627
8.71143
8.5465
8.47395
8.48198
8.56213
8.7104
8.92638
9.21384
9.58228
10.05
10.6505
11.4444
12.5394
14.1355
16.6693
21.3124
32.0309
64.4278
188.118
1067.71
1031.12
178.067
62.3282
34.4853
26.6641
22.8605
19.8638
17.1783
14.8739
13.0129
11.5762
10.4996
9.70979
9.14282
8.74857
8.49017
8.34159
8.28497
8.30857
8.40425
8.56805
8.7996
9.10269
9.48667
9.96956
10.5842
11.3903
12.496
14.1021
16.6443
21.2936
32.0216
64.4294
188.101
1067.99
1031.13
177.957
62.274
34.6469
26.9221
23.0528
19.9038
17.0685
14.66
12.7426
11.2848
10.2088
9.43104
8.88111
8.50536
8.26527
8.13421
8.09418
8.13372
8.24512
8.42458
8.67178
8.9905
9.38985
9.88742
10.5154
11.3326
12.4475
14.0624
16.6123
21.2676
32.0062
64.4238
188.073
1068.22
1031.15
177.863
62.2213
34.8201
27.1812
23.2206
19.9027
16.9153
14.407
12.4403
10.9691
9.90086
9.14098
8.61254
8.25846
8.03881
7.9266
7.90395
7.96003
8.08778
8.2837
8.54768
8.88351
9.30014
9.81463
10.4582
11.2882
12.4134
14.0379
16.5949
21.2533
31.9959
64.4211
188.06
1068.52
1031.16
177.781
62.1741
34.9949
27.4293
23.3651
19.8685
16.7244
14.118
12.108
10.6306
9.57684
8.84096
8.33892
8.00993
7.81234
7.71925
7.71342
7.78498
7.92803
8.13976
8.42019
8.77289
9.20643
9.7373
10.3959
11.2384
12.373
14.0043
16.5673
21.2304
31.9827
64.4182
188.039
1068.76
1031.17
177.682
62.1136
35.1693
27.6713
23.4827
19.79
16.4843
13.7848
11.741
10.2678
9.23747
8.53202
8.06055
7.75842
7.5841
7.51163
7.52416
7.61244
7.77138
7.99929
8.29723
8.66882
9.12213
9.67286
10.3503
11.2093
12.3555
13.994
16.5617
21.2247
31.9793
64.4254
188.047
1069.09
1031.17
177.579
62.0576
35.3441
27.8974
23.5674
19.6687
16.2012
13.4153
11.3476
9.8882
8.88901
8.21887
7.77871
7.50343
7.35302
7.30196
7.33363
7.43926
7.61432
7.85768
8.17173
8.56083
9.03267
9.60201
10.2968
11.1703
12.3265
13.9711
16.5439
21.2108
31.9759
64.439
188.054
1069.34
1031.18
177.45
61.9882
35.5159
28.1079
23.6149
19.4961
15.8662
13.0031
10.9242
9.4902
8.5299
7.89844
7.49167
7.24532
7.12068
7.09277
7.1453
7.27011
7.46335
7.72408
8.05586
8.46481
8.95856
9.55077
10.2676
11.16
12.3287
13.9802
16.5572
21.223
31.9908
64.4676
188.081
1069.7
1031.19
177.315
61.9243
35.6854
28.2949
23.6199
19.2735
15.4858
12.5571
10.4795
9.08101
8.16584
7.57418
7.20093
6.98423
6.88602
6.88178
6.95549
7.09962
7.31098
7.58876
7.93704
8.36332
8.87612
9.4885
10.2251
11.1345
12.315
13.9734
16.5557
21.2255
32.0052
64.4968
188.09
1069.94
1031.19
177.142
61.8437
35.8474
28.4552
23.5746
18.9902
15.0503
12.0705
10.0093
8.65702
7.79294
7.24454
6.90738
6.72245
6.65249
6.67363
6.77021
6.93544
7.16706
7.46457
7.83231
8.27901
8.81487
9.4523
10.2141
11.1464
12.3444
14.0109
16.5915
21.2542
32.0316
64.5354
188.131
1070.34
1031.19
176.973
61.7827
36.0087
28.5853
23.4797
18.654
14.5713
11.5559
9.52653
8.23044
7.41745
6.91138
6.6112
6.45878
6.41761
6.46443
6.58382
6.76975
7.02086
7.33689
7.72215
8.18657
8.74221
9.40088
10.1836
11.1345
12.3462
14.018
16.5957
21.2529
32.0321
64.5434
188.127
1070.58
1031.2
176.776
61.7197
36.1629
28.6775
23.3221
18.2505
14.0367
11.0035
9.02134
7.79141
7.03534
6.57558
6.31532
6.19767
6.18727
6.2616
6.40561
6.61424
6.88734
7.22508
7.63195
8.11902
8.70028
9.38709
10.1984
11.1753
12.4063
14.0857
16.6592
21.3089
32.0985
64.662
188.278
1071.02
1031.2
176.598
61.6792
36.3087
28.7244
23.1026
17.79
13.463
10.4316
8.50974
7.35125
6.65373
6.24105
6.02104
5.93823
5.95837
6.0597
6.22742
6.45737
6.75069
7.10792
7.53387
8.04021
8.64187
9.35077
10.1845
11.1815
12.427
14.1121
16.6827
21.3209
32.0751
64.4374
186.71
1071.24
1031.2
176.368
61.6151
36.4312
28.7143
22.8018
17.2485
12.8285
9.82655
7.98632
6.90329
6.26653
5.90533
5.72928
5.68445
5.73791
5.86878
6.06254
6.31621
6.63261
7.01284
7.46227
7.99388
8.6234
9.36238
10.2263
11.2495
12.5107
14.1927
16.7378
21.3219
31.9599
63.9454
184.096
1071.73
1031.19
176.155
61.5778
36.5365
28.6479
22.4379
16.6605
12.1697
9.21415
7.4645
6.45984
5.88472
5.57517
5.44274
5.43537
5.52143
5.68075
5.89894
6.1741
6.51078
6.9105
7.37978
7.93175
8.58221
9.34363
10.2302
11.2732
12.5476
14.2308
16.7597
21.3025
31.854
63.569
182.423
1071.93
1031.19
175.881
61.5121
36.6089
28.5045
21.9746
15.9851
11.4542
8.5746
6.93309
6.01491
5.50601
5.2514
5.16538
5.19811
5.31982
5.51059
5.75562
6.05488
6.4151
6.83842
7.33382
7.91451
8.59502
9.38803
10.3049
11.3724
12.6591
14.3345
16.8258
21.2994
31.7712
63.3579
181.59
1072.49
1031.18
175.638
61.4812
36.6546
28.2957
21.4528
15.2816
10.7421
7.95686
6.42
5.58278
5.13774
4.93604
4.8946
4.96581
5.12169
5.34261
5.61246
5.93272
6.3127
6.75765
7.27648
7.87921
8.58187
9.39846
10.3388
11.4273
12.7296
14.4112
16.8942
21.344
31.7885
63.3003
181.171
1072.64
1031.17
175.32
61.413
36.6565
27.9997
20.8289
14.4974
9.98881
7.33332
5.91098
5.15937
4.78285
4.63656
4.64116
4.75202
4.94347
5.19835
5.49696
5.84003
6.24592
6.72118
7.27128
7.90637
8.64359
9.49555
10.4675
11.5782
12.886
14.5481
16.979
21.3513
31.7397
63.2333
180.967
1073.29
1031.16
175.057
61.3864
36.6158
27.6357
20.1744
13.7327
9.28272
6.76211
5.44771
4.77346
4.4578
4.35968
4.40332
4.54693
4.76708
5.04915
5.37216
5.73774
6.16807
6.66661
7.23924
7.89639
8.65719
9.53594
10.535
11.6702
12.9971
14.6707
17.1034
21.4727
31.8672
63.3442
180.942
1073.37
1031.15
174.669
61.2832
36.5024
27.1703
19.4209
12.9071
8.56257
6.2074
5.01367
4.42289
4.17153
4.12319
4.2063
4.38246
4.63099
4.93996
5.29098
5.6851
6.14488
6.67481
7.28183
7.97675
8.78015
9.70496
10.745
11.9059
13.2333
14.8727
17.2315
21.4997
31.8289
63.3061
180.885
1074.13
1031.13
174.389
61.2308
36.3165
26.6499
18.7098
12.2013
7.98485
5.75051
4.64842
4.12996
3.9333
3.92569
4.03921
4.23856
4.50555
4.82792
5.18944
5.59694
6.07261
6.61785
7.24065
7.95238
8.77376
9.72215
10.7946
11.9906
13.3475
15.0038
17.3664
21.639
31.9887
63.4809
181.008
1074.12
1031.11
173.894
61.0062
35.9724
25.988
17.9107
11.4676
7.42743
5.34147
4.34505
3.90652
3.76947
3.80718
3.95688
4.18742
4.48177
4.82261
5.19362
5.61121
6.10805
6.6884
7.35198
8.10874
8.97924
9.98152
11.1097
12.3497
13.7246
15.3611
17.6606
21.8379
32.1304
63.6028
181.057
1075.02
1031.09
173.531
60.7648
35.407
25.2214
17.2671
11.0252
7.1299
5.11635
4.16565
3.76479
3.65689
3.71636
3.88255
4.1262
4.42739
4.76569
5.13109
5.54042
6.02388
6.59537
7.25853
8.01095
8.8714
9.86827
11.0094
12.2736
13.6681
15.2999
17.5635
21.6974
31.9646
63.4705
181.031
1074.93
1031.06
172.949
60.2409
34.407
23.9895
16.3532
10.5448
6.90659
4.99182
4.08317
3.71074
3.62631
3.7084
3.9001
4.17175
4.49509
4.85128
5.24119
5.67892
6.18908
6.79183
7.50785
8.33017
9.257
10.3175
11.5241
12.8591
14.3233
16.0187
18.3374
22.5204
32.8843
64.3948
181.613
1075.96
1031.02
172.198
59.3932
32.8204
22.2125
15.242
10.2327
6.97795
5.11577
4.14742
3.70115
3.55582
3.59328
3.75688
4.01145
4.32081
4.67235
5.06713
5.50972
6.01288
6.594
7.28587
8.10031
9.01426
10.0401
11.196
12.4677
13.8448
15.4055
17.5241
21.4556
31.5457
62.9139
180.489
1075.85
1030.98
171.745
58.6314
30.7814
19.5041
13.088
9.20278
6.84913
5.41309
4.52981
4.00355
3.72834
3.64153
3.70842
3.90368
4.19048
4.55156
4.98734
5.49419
6.07163
6.72505
7.4754
8.37267
9.44109
10.6277
11.9286
13.3573
14.9152
16.694
19.0779
23.3258
33.8087
65.3956
182.383
1076.89
1030.92
170.093
57.1802
28.6656
16.9642
10.9165
7.87289
6.38318
5.5945
5.09916
4.72565
4.41027
4.14201
3.93921
3.83678
3.87506
4.06922
4.39226
4.839
5.39693
6.05558
6.81392
7.69221
8.76916
10.0565
11.4318
12.8146
14.1623
15.5785
17.4946
21.1968
31.012
61.8397
179.115
1076.91
1030.86
171.345
57.6776
27.6852
15.71
10.1258
7.55749
6.3835
5.81775
5.50975
5.30801
5.14471
4.98679
4.81727
4.63142
4.44168
4.28597
4.23279
4.35969
4.7021
5.2468
5.97194
6.85183
7.88154
9.10889
10.6842
12.5853
14.5568
16.536
18.817
22.7198
32.8381
64.4474
182.139
1077.72
1030.82
170.049
55.4159
24.9383
13.8207
9.49622
7.78161
6.99375
6.51567
6.1482
5.83639
5.56828
5.342
5.15195
4.98351
4.82191
4.67253
4.57569
4.58821
4.76556
5.15654
5.77211
6.60838
7.70103
9.12961
10.8707
12.7552
14.6541
16.5994
18.949
22.9231
32.826
63.8371
181.75
1078.03
1030.81
168.763
51.9071
22.12
13.354
10.694
9.6782
9.03922
8.45309
7.85274
7.23964
6.63295
6.05354
5.51774
5.03455
4.60537
4.22807
3.9042
3.64402
3.46553
3.39353
3.45758
3.68822
4.09643
4.69381
5.58074
6.95599
8.8868
11.0643
13.677
18.6366
31.7513
68.1659
188.508
1078.86
1030.69
151.213
38.2459
17.127
14.1712
13.686
13.173
12.5124
11.7717
10.9936
10.213
9.46338
8.77618
8.17904
7.69518
7.34394
7.14295
7.11365
7.28735
7.61315
8.13281
8.86739
9.84479
11.0997
12.6791
14.6456
17.0955
20.1753
24.1963
29.8588
38.7511
54.661
89.2064
201.596
1080.2
526.846
24.1573
24.4023
24.4655
24.4933
24.5102
24.5191
24.5217
24.5197
24.5141
24.5059
24.4956
24.4837
24.4709
24.4572
24.443
24.4285
24.4138
24.3988
24.3832
24.3669
24.3496
24.331
24.3107
24.2881
24.2627
24.2345
24.2038
24.1724
24.1451
24.129
24.1313
24.1539
24.1936
555.857
526.413
22.9931
22.9958
22.9987
23.0019
23.0054
23.0092
23.0134
23.0179
23.0228
23.0278
23.0329
23.038
23.0429
23.0477
23.0522
23.0564
23.0602
23.0635
23.0663
23.0686
23.0702
23.071
23.0711
23.0703
23.0687
23.0661
23.0628
23.0593
23.0569
23.0581
23.0676
23.0916
23.1329
531.465
1029.84
172.56
62.6401
32.9916
21.5242
15.9239
12.6937
10.5942
9.11276
8.01006
7.16221
6.49943
5.97974
5.57655
5.27236
5.05544
4.91783
4.85471
4.86172
4.92922
5.05655
5.24087
5.47807
5.76257
6.08668
6.43992
6.80883
7.18059
7.57444
8.22302
10.2973
18.068
45.9186
160.008
1040.54
1029.84
174.235
64.8298
35.2403
23.6228
17.8039
14.3773
12.1428
10.5889
9.45796
8.60325
7.93454
7.39432
6.94486
6.56045
6.22359
5.92368
5.66151
5.43464
5.23957
5.07265
4.9361
4.83378
4.77074
4.75269
4.78498
4.87174
5.02154
5.30304
6.11865
9.06594
18.9066
49.725
165.776
1041.2
1029.85
175.388
65.6388
35.1267
22.5456
15.9999
12.1611
9.77595
8.23473
7.19396
6.4528
5.89625
5.4611
5.11367
4.83574
4.61602
4.44537
4.31532
4.21929
4.14793
4.09409
4.05232
4.01979
3.99678
3.98698
3.9987
4.05229
4.21213
4.69696
6.18586
10.483
21.97
53.8132
169.522
1042
1029.87
173.497
62.6982
31.6309
19.0519
13.0197
9.95842
8.3297
7.36288
6.69036
6.15293
5.68766
5.2731
4.90494
4.58517
4.31687
4.10148
3.93698
3.81818
3.73711
3.68426
3.64999
3.62671
3.6114
3.60903
3.63942
3.75511
4.08801
4.96208
7.12941
12.2289
24.1597
55.7991
170.812
1042.89
1029.87
172.692
61.7065
30.8838
18.7604
13.1577
10.3572
8.82922
7.88049
7.20176
6.65607
6.18181
5.75232
5.35812
4.99805
4.67481
4.39254
4.15508
3.96394
3.81723
3.71116
3.63905
3.59351
3.57063
3.5773
3.64294
3.84164
4.33958
5.49016
8.00184
13.3144
25.0925
56.308
171.015
1043.63
1029.88
172.342
61.2471
30.4078
18.3542
12.8834
10.209
8.7554
7.83256
7.15526
6.60229
6.11759
5.67867
5.2801
4.92042
4.5987
4.31609
4.07487
3.87696
3.72326
3.61381
3.54754
3.52363
3.54422
3.62118
3.78984
4.13509
4.83525
6.23299
8.95573
14.2927
25.8469
56.8029
171.457
1044.37
1029.89
171.963
60.8581
30.1265
18.2191
12.8735
10.2768
8.86672
7.97292
7.31937
6.7867
6.31737
5.88663
5.48812
5.12141
4.78603
4.48303
4.21559
3.98703
3.80097
3.66239
3.57633
3.54975
3.59416
3.73134
4.0043
4.49898
5.38223
6.95506
9.75362
14.9517
26.1531
56.8217
171.545
1045.01
1029.89
172.264
61.2258
30.4591
18.5132
13.1488
10.5281
9.07842
8.14052
7.44855
6.88719
6.40044
5.96386
5.56817
5.20749
4.87756
4.57755
4.3095
4.07581
3.8805
3.73113
3.63697
3.61128
3.67466
3.86148
4.23093
4.87779
5.95392
7.70567
10.5737
15.6446
26.571
57.0958
171.962
1045.61
1029.9
172.207
61.1218
30.312
18.3841
13.0735
10.4953
9.06871
8.14523
7.46556
6.91624
6.44184
6.01795
5.63472
5.2856
4.96587
4.67443
4.41328
4.1841
3.99059
3.84176
3.74918
3.73025
3.81224
4.04018
4.48969
5.27123
6.52856
8.45335
11.3852
16.3206
26.9623
57.3333
172.326
1046.16
1029.91
172.424
61.3596
30.5181
18.5815
13.2762
10.6874
9.2343
8.28031
7.57443
7.00654
6.52196
6.0957
5.71509
5.37106
5.05795
4.77404
4.52126
4.30038
4.11433
3.97323
3.89009
3.88502
3.98994
4.25794
4.77862
5.67879
7.10036
9.18871
12.1879
17.0072
27.398
57.6497
172.761
1046.68
1029.91
172.498
61.3826
30.472
18.5345
13.2653
10.6977
9.24826
8.29354
7.58868
7.02478
6.54718
6.12978
5.75925
5.42645
5.12537
4.85423
4.61527
4.40865
4.2367
4.11056
4.04444
4.06045
4.19402
4.50469
5.09338
6.09973
7.66576
9.89904
12.958
17.6685
27.8211
57.9568
173.168
1047.16
1029.92
172.612
61.4654
30.5162
18.5943
13.3569
10.799
9.34167
8.37436
7.6585
7.08766
6.60778
6.19188
5.82557
5.49912
5.20622
4.94517
4.71865
4.52619
4.36925
4.26
4.21361
4.25385
4.41885
4.77339
5.4271
6.52805
8.21753
10.5723
13.6783
18.2869
28.222
58.2572
173.561
1047.62
1029.93
172.713
61.5054
30.4982
18.5901
13.3891
10.8446
9.38431
8.41166
7.6934
7.12376
6.64792
6.23793
5.87919
5.5619
5.27965
5.031
4.8192
4.64336
4.50416
4.41468
4.39105
4.45839
4.6571
5.05647
5.77267
6.95768
8.7499
11.201
14.338
18.8504
28.5887
58.5386
173.929
1048.06
1029.93
172.804
61.528
30.4783
18.5976
13.4364
10.9065
9.44508
8.46804
7.74678
7.17683
6.70333
6.29754
5.94454
5.63461
5.36147
5.12411
4.9264
4.76712
4.64607
4.57714
4.5774
4.6732
4.90687
5.35152
6.12733
7.38618
9.26122
11.7832
14.9341
19.3549
28.9191
58.8022
174.278
1048.48
1029.94
172.925
61.5607
30.4622
18.6082
13.4841
10.9648
9.5003
8.5189
7.79604
7.2276
6.75808
6.35791
6.01142
5.70924
5.44565
5.22004
5.03681
4.89461
4.7924
4.74474
4.76959
4.89454
5.16404
5.65409
6.48522
7.80724
9.74616
12.3155
15.4643
19.7996
29.2128
59.0461
174.604
1048.88
1029.95
173.063
61.5832
30.4377
18.6148
13.5277
11.0199
9.5547
8.5713
7.84844
7.28259
6.8179
6.42389
6.08403
5.78937
5.53499
5.32083
5.15183
5.02664
4.94353
4.91742
4.96718
5.12149
5.42688
5.96145
6.84392
8.2194
10.205
12.7999
15.9319
20.1876
29.4739
59.2759
174.914
1049.27
1029.96
173.268
61.6267
30.4287
18.6366
13.5829
11.0828
9.61475
8.62835
7.90514
7.34193
6.88237
6.49495
6.1622
5.87502
5.62951
5.42659
5.27144
5.16284
5.09868
5.09398
5.16834
5.35143
5.69178
6.26898
7.19813
8.61758
10.6343
13.2359
16.3388
20.5216
29.7028
59.4878
175.202
1049.63
1029.97
173.567
61.6906
30.4288
18.6636
13.6382
11.1436
9.67306
8.68476
7.96224
7.40261
6.94918
6.56954
6.24522
5.96652
5.73062
5.5399
5.39794
5.30363
5.25768
5.27386
5.37247
5.58419
5.95895
6.57577
7.54574
8.99942
11.0332
13.6253
16.6896
20.8069
29.905
59.6876
175.475
1049.98
1029.98
174.054
61.8065
30.4561
18.7085
13.7044
11.2114
9.73671
8.7459
8.02379
7.46759
7.02029
6.6487
6.33358
6.06468
5.83943
5.66053
5.53041
5.44929
5.42038
5.45656
5.57852
5.818
6.22572
6.87857
7.88303
9.36125
11.399
13.9682
16.9869
21.0469
30.0818
59.8732
175.73
1050.32
1029.98
174.868
62.0068
30.5172
18.7673
13.7736
11.2783
9.79925
8.80673
8.0859
7.53382
7.09317
6.73013
6.42489
6.1669
5.95387
5.78723
5.66848
5.60031
5.587
5.64224
5.7868
6.05297
6.4911
7.17569
8.20807
9.70157
11.7319
14.2669
17.235
21.2463
30.237
60.0477
175.968
1050.63
1029.99
176.253
62.3395
30.6193
18.839
13.8461
11.3464
9.86334
8.86993
8.15101
7.60339
7.16948
6.815
6.51986
6.27356
6.07285
5.91775
5.81048
5.75498
5.7567
5.83018
5.99649
6.28777
6.75318
7.46467
8.51809
10.0179
12.0305
14.5221
17.437
21.408
30.371
60.2084
176.19
1050.94
1030
178.405
62.8004
30.7381
18.9062
13.9114
11.4094
9.92494
8.93257
8.21683
7.6744
7.2475
6.90154
6.61628
6.38147
6.19317
6.05016
5.95538
5.91345
5.9306
6.02153
6.20779
6.52142
7.0104
7.74385
8.81184
10.31
12.2961
14.7373
17.5975
21.5367
30.4877
60.359
176.397
1051.23
1030.01
180.431
63.1532
30.7941
18.9448
13.9652
11.4687
9.98654
8.99694
8.28519
7.74832
7.32862
6.99131
6.71612
6.49248
6.31579
6.18478
6.10248
6.07408
6.10637
6.21392
6.41859
6.75222
7.26136
8.01201
9.08836
10.5775
12.5299
14.9152
17.7204
21.6352
30.587
60.4966
176.587
1051.51
1030.02
180.728
63.1435
30.7561
18.9611
14.0145
11.528
10.0494
9.06297
8.35538
7.82414
7.41163
7.08291
6.81771
6.6051
6.43983
6.32079
6.25093
6.23592
6.28294
6.40651
6.62822
6.97956
7.50569
8.26915
9.34824
10.822
12.7345
15.0599
17.8106
21.7078
30.6717
60.6238
176.764
1051.78
1030.03
180.777
63.1349
30.7425
18.9934
14.0714
11.5912
10.1149
9.13133
8.4279
7.90232
7.49692
7.17662
6.92116
6.71932
6.56522
6.45789
6.40018
6.39813
6.45924
6.59786
6.83508
7.20197
7.74215
8.51444
9.59133
11.0443
12.9122
15.1754
17.8727
21.7577
30.7426
60.7394
176.927
1052.04
1030.04
180.839
63.1271
30.7251
19.022
14.1255
11.6531
10.1804
9.20052
8.50181
7.98218
7.58405
7.27228
7.02636
6.83476
6.69154
6.59559
6.54965
6.56005
6.63454
6.78718
7.03869
7.41917
7.97044
8.74785
9.81818
11.246
13.0659
15.2656
17.9113
21.7889
30.8019
60.8455
177.078
1052.28
1030.05
180.898
63.118
30.7112
19.055
14.1827
11.7175
10.248
9.27172
8.57763
8.06384
7.6728
7.36934
7.13273
6.95109
6.81842
6.73347
6.69885
6.72111
6.80814
6.97371
7.23801
7.62999
8.18965
8.96888
10.0289
11.4281
13.1979
15.3339
17.9303
21.8042
30.8507
60.9417
177.219
1052.53
1030.06
180.958
63.1088
30.6992
19.0893
14.2401
11.7822
10.3164
9.34391
8.65465
8.14679
7.76282
7.46754
7.23999
7.06802
6.94553
6.87114
6.84732
6.88078
6.97948
7.15683
7.4324
7.83386
8.39935
9.17741
10.224
11.5919
13.3102
15.3836
17.9331
21.8066
30.8909
61.0301
177.354
1052.76
1030.07
181.017
63.1003
30.6905
19.1264
14.2993
11.8482
10.3861
9.41747
8.73305
8.2311
7.85412
7.56681
7.34803
7.18538
7.07266
7.00834
6.99474
7.03868
7.14813
7.33607
7.62139
8.03057
8.59958
9.37366
10.4041
11.7387
13.405
15.4173
17.9227
21.7985
30.9237
61.1113
177.485
1052.99
1030.08
181.078
63.0935
30.6851
19.1653
14.3589
11.9146
10.4562
9.49165
8.81219
8.31623
7.94622
7.66674
7.45644
7.30277
7.19941
7.14467
7.1407
7.1944
7.31367
7.51103
7.80464
8.21972
8.79007
9.55777
10.5698
11.8696
13.4842
15.4374
17.9017
21.7822
30.9507
61.1873
177.62
1053.21
1030.09
181.139
63.0867
30.6814
19.2052
14.4186
11.9809
10.5265
9.56615
8.89175
8.40182
8.03875
7.76695
7.56489
7.41988
7.32546
7.27979
7.28486
7.34759
7.47575
7.68137
7.98184
8.40109
8.97071
9.72992
10.7218
11.9859
13.5494
15.4459
17.872
21.7591
30.973
61.2598
177.766
1053.42
1030.1
181.197
63.0777
30.6765
19.2436
14.4768
12.0461
10.5962
9.64036
8.97121
8.48741
8.13127
7.86704
7.673
7.53635
7.45045
7.41336
7.42687
7.49789
7.63404
7.8468
8.15276
8.57458
9.14176
9.89069
10.8609
12.0889
13.6022
15.4445
17.8353
21.7307
30.9919
61.3318
177.939
1053.63
1030.11
181.26
63.0688
30.6711
19.2812
14.5341
12.111
10.6658
9.71465
9.05084
8.57317
8.22391
7.96709
7.78082
7.65215
7.57435
7.54531
7.56664
7.64522
7.78845
8.00726
8.31744
8.74035
9.30356
10.0407
10.9881
12.1796
13.6441
15.4351
17.7933
21.6985
31.0089
61.4073
178.163
1053.84
1030.12
181.322
63.0576
30.6677
19.321
14.5927
12.1765
10.7357
9.78917
9.13061
8.65903
8.31653
8.06693
7.88815
7.76713
7.69697
7.67546
7.70401
7.78943
7.93889
8.16275
8.47595
8.89862
9.45646
10.1805
11.1042
12.2594
13.6765
15.4186
17.7469
21.6632
31.0254
61.4931
178.488
1054.04
1030.13
181.377
63.0435
30.6644
19.3605
14.6508
12.2416
10.8054
9.8634
9.21006
8.74454
8.40872
8.16617
7.99465
7.88092
7.81801
7.80353
7.83873
7.93033
8.08521
8.31318
8.62834
9.04958
9.60085
10.3108
11.2103
12.3296
13.7007
15.3969
17.6977
21.6264
31.0443
61.6038
179.011
1054.23
1030.14
181.428
63.0295
30.6634
19.4013
14.7092
12.3069
10.875
9.93742
9.28915
8.82955
8.50026
8.26457
8.10003
7.99327
7.93718
7.92926
7.97058
8.06772
8.2273
8.45853
8.7747
9.1935
9.73719
10.4321
11.3072
12.3913
13.7187
15.3716
17.6471
21.5901
31.0722
61.7664
179.922
1054.42
1030.15
181.48
63.0172
30.6646
19.4427
14.7674
12.3715
10.944
10.0108
9.3675
8.91372
8.59083
8.36179
8.20397
8.10385
8.05421
8.0524
8.09932
8.20144
8.36505
8.5988
8.91515
9.33066
9.86601
10.5455
11.3961
12.4453
13.7297
15.3412
17.5962
21.5593
31.1175
62.0413
181.601
1054.61
1030.16
181.534
63.0068
30.6682
19.4851
14.8257
12.4359
11.0125
10.0834
9.44506
8.99694
8.68024
8.45762
8.30623
8.21243
8.16885
8.17273
8.22479
8.33136
8.49841
8.73403
9.04988
9.46139
9.98774
10.6513
11.477
12.4916
13.7344
15.3087
17.5502
21.5439
31.2135
62.5121
184.057
1054.79
1030.17
181.588
62.998
30.6738
19.5279
14.8835
12.4996
11.0801
10.1552
9.52165
9.07902
8.76824
8.55176
8.40653
8.31871
8.28083
8.29
8.34676
8.45732
8.6273
8.86422
9.17896
9.58585
10.1026
10.7499
11.5507
12.5315
13.7356
15.2781
17.514
21.5486
31.3406
62.9584
185.74
1054.98
1030.18
181.643
62.9905
30.681
19.5709
14.9408
12.5625
11.1468
10.2259
9.5971
9.1598
8.85469
8.64406
8.50465
8.42247
8.38992
8.40398
8.46504
8.57915
8.75159
8.98931
9.30243
9.70422
10.211
10.8417
11.618
12.5666
13.7352
15.2501
17.4834
21.5543
31.4285
63.1678
186.147
1055.16
1030.19
181.699
62.9841
30.6896
19.6139
14.9973
12.6244
11.2125
10.2954
9.67125
9.23907
8.93936
8.73427
8.60035
8.52345
8.49584
8.5144
8.57934
8.69658
8.87105
9.10914
9.42023
9.81655
10.3131
10.9275
11.6801
12.5982
13.734
15.224
17.454
21.5516
31.4742
63.2514
186.248
1055.34
1030.2
181.755
62.9788
30.6995
19.6569
15.0531
12.6853
11.2769
10.3637
9.74399
9.31673
9.02213
8.82222
8.69342
8.62141
8.59834
8.62097
8.68937
8.80932
8.9854
9.22349
9.53223
9.9229
10.4093
11.0077
11.7377
12.6272
13.7326
15.1993
17.4246
21.5413
31.4949
63.2895
186.31
1055.52
1030.21
181.811
62.9748
30.7108
19.6998
15.1082
12.7452
11.3403
10.4307
9.81528
9.39269
9.10288
8.90779
8.78369
8.71614
8.69718
8.72344
8.79487
8.91709
9.09438
9.33212
9.63827
10.0232
10.4997
11.0828
11.7914
12.6543
13.7316
15.1764
17.3957
21.5266
31.5029
63.3106
186.364
1055.7
1030.22
181.868
62.9714
30.7229
19.7423
15.1623
12.8039
11.4024
10.4963
9.88497
9.46682
9.1815
8.99085
8.87104
8.8075
8.79219
8.82164
8.89565
9.01973
9.19784
9.43491
9.73829
10.1175
10.5844
11.1531
11.8418
12.6801
13.7317
15.156
17.3686
21.5106
31.5053
63.3251
186.415
1055.88
1030.23
181.925
62.9687
30.7356
19.7844
15.2154
12.8615
11.4632
10.5604
9.95303
9.53908
9.25793
9.07137
8.95541
8.89545
8.88333
8.9155
8.99168
9.1172
9.29576
9.53187
9.83233
10.206
10.6638
11.2189
11.8892
12.7051
13.7333
15.1387
17.3444
21.4954
31.5058
63.3368
186.465
1056.06
1030.24
181.981
62.9656
30.7484
19.8256
15.2673
12.9178
11.5225
10.623
10.0194
9.60937
9.33213
9.14929
9.03681
8.97997
8.9706
9.00506
9.08297
9.20954
9.3882
9.62309
9.92054
10.2888
10.7379
11.2805
11.934
12.7296
13.7366
15.1249
17.324
21.4827
31.5067
63.3478
186.515
1056.24
1030.25
182.036
62.9628
30.7617
19.8664
15.3183
12.9729
11.5805
10.6841
10.084
9.67776
9.40413
9.22469
9.1153
9.06118
9.05412
9.09043
9.16966
9.29689
9.47532
9.70877
10.0031
10.366
10.807
11.338
11.9762
12.7536
13.7417
15.1146
17.3075
21.4733
31.5093
63.3597
186.567
1056.43
1030.26
182.091
62.9599
30.7754
19.9068
15.3684
13.0269
11.6374
10.7438
10.1471
9.7443
9.474
9.29763
9.19096
9.13917
9.13401
9.17176
9.2519
9.37943
9.55731
9.78908
10.0802
10.438
10.8713
11.3916
12.0158
12.7763
13.7473
15.1076
17.2964
21.4673
31.5144
63.3734
186.62
1056.62
1030.27
182.145
62.9573
30.7897
19.947
15.418
13.0802
11.6932
10.8023
10.2086
9.80912
9.54187
9.36824
9.26394
9.2141
9.21044
9.24924
9.32992
9.45739
9.63441
9.86427
10.1522
10.5049
10.9309
11.441
12.0521
12.7975
13.7537
15.104
17.2898
21.4649
31.5221
63.3892
186.674
1056.81
1030.28
182.198
62.955
30.8047
19.987
15.4669
13.1326
11.748
10.8596
10.2688
9.8723
9.60782
9.43663
9.33435
9.2861
9.28358
9.32305
9.40391
9.53097
9.70682
9.93456
10.2191
10.5668
10.9857
11.4863
12.0854
12.8172
13.7608
15.1031
17.287
21.4658
31.5322
63.407
186.73
1057
1030.29
182.251
62.9534
30.8204
20.027
15.5153
13.1843
11.8019
10.9157
10.3277
9.93392
9.67195
9.50292
9.40235
9.35535
9.35361
9.3934
9.47409
9.60041
9.77481
10.0002
10.2812
10.6239
11.0359
11.5276
12.1156
12.8353
13.7682
15.1042
17.287
21.4694
31.5442
63.4261
186.785
1057.19
1030.3
182.304
62.9526
30.837
20.0668
15.5632
13.2352
11.8548
10.9708
10.3852
9.994
9.73431
9.56716
9.46801
9.42195
9.42068
9.46046
9.54065
9.66593
9.83857
10.0613
10.3386
10.6763
11.0817
11.5648
12.1427
12.8517
13.7755
15.1065
17.2891
21.4754
31.5581
63.4468
186.841
1057.37
1030.31
182.356
62.9518
30.8537
20.1061
15.6102
13.2852
11.9067
11.0246
10.4414
10.0525
9.79492
9.62942
9.53143
9.48602
9.48492
9.5244
9.60381
9.72775
9.89839
10.1183
10.3918
10.7244
11.1233
11.5983
12.1669
12.8663
13.7824
15.1097
17.2931
21.4836
31.574
63.4694
186.898
1057.56
1030.32
182.406
62.9503
30.8703
20.1448
15.6565
13.3342
11.9576
11.0773
10.4963
10.1096
9.85382
9.68974
9.59266
9.54764
9.54644
9.58533
9.66367
9.78601
9.95437
10.1712
10.4407
10.7683
11.1607
11.628
12.1879
12.8789
13.7884
15.113
17.298
21.493
31.5908
63.4919
186.951
1057.75
1030.33
182.453
62.9473
30.8863
20.1829
15.702
13.3825
12.0075
11.129
10.5499
10.1652
9.91111
9.74823
9.65182
9.60695
9.60538
9.64341
9.72043
9.84091
10.0067
10.2203
10.4857
10.8081
11.1942
11.6541
12.2059
12.8891
13.793
15.1157
17.3029
21.5029
31.6078
63.5137
187.003
1057.93
1030.34
182.498
62.9432
30.9022
20.2208
15.7472
13.4302
12.0568
11.1797
10.6025
10.2196
9.96691
9.805
9.70903
9.66405
9.66186
9.69878
9.77421
9.89256
10.0556
10.2658
10.5268
10.844
11.2239
11.6766
12.2208
12.8971
13.7961
15.1177
17.3077
21.513
31.6247
63.5348
187.052
1058.11
1030.35
182.541
62.9391
30.9186
20.2587
15.7921
13.4775
12.1055
11.2298
10.6542
10.2728
10.0213
9.86017
9.76438
9.71904
9.71597
9.75151
9.82508
9.94105
10.1011
10.3076
10.5642
10.876
11.2498
11.6957
12.2328
12.9028
13.7977
15.1187
17.3119
21.5227
31.6413
63.5548
187.098
1058.29
1030.36
182.583
62.9345
30.9351
20.2965
15.8369
13.5247
12.1539
11.2793
10.7051
10.325
10.0745
9.91387
9.81802
9.77206
9.76783
9.80172
9.87318
9.98649
10.1433
10.3458
10.5978
10.9043
11.272
11.7113
12.2419
12.9062
13.7977
15.1189
17.3157
21.5322
31.6574
63.5735
187.142
1058.47
1030.37
182.624
62.9301
30.952
20.3344
15.8817
13.5716
12.2019
11.3284
10.7553
10.3764
10.1267
9.96626
9.87009
9.82326
9.81763
9.8496
9.91866
10.029
10.1822
10.3806
10.6277
10.9287
11.2903
11.7232
12.2477
12.907
13.7957
15.1176
17.3184
21.5408
31.672
63.5895
187.181
1058.64
1030.38
182.663
62.9251
30.9688
20.3722
15.9263
13.6185
12.2499
11.3772
10.8051
10.4271
10.178
10.0176
9.92086
9.87291
9.86563
9.89543
9.96183
10.069
10.2184
10.4122
10.6542
10.9495
11.305
11.7316
12.2501
12.9049
13.7915
15.1146
17.3202
21.5489
31.686
63.6044
187.22
1058.81
1030.39
182.701
62.9205
30.9864
20.4103
15.9712
13.6656
12.2979
11.4259
10.8548
10.4775
10.2287
10.0681
9.97055
9.92125
9.91207
9.93948
10.003
10.1067
10.252
10.4411
10.6778
10.9672
11.3164
11.7367
12.2494
12.8999
13.7848
15.1098
17.3208
21.5567
31.7009
63.6206
187.256
1058.98
1030.4
182.738
62.9169
31.0048
20.449
16.0166
13.713
12.3461
11.4748
10.9044
10.5277
10.279
10.1179
10.0194
9.96847
9.95718
9.98197
10.0424
10.1424
10.2834
10.4676
10.6988
10.9821
11.3249
11.7387
12.2457
12.8921
13.7755
15.1028
17.3197
21.5635
31.7151
63.6358
187.292
1059.14
1030.41
182.775
62.9145
31.0243
20.4882
16.0624
13.7608
12.3948
11.5241
10.9542
10.5778
10.329
10.1673
10.0675
10.0148
10.0012
10.0231
10.0803
10.1765
10.313
10.4921
10.7175
10.9946
11.3308
11.7381
12.2394
12.8817
13.7638
15.0936
17.3169
21.5691
31.7291
63.6508
187.325
1059.3
1030.42
182.813
62.9139
31.045
20.5281
16.1086
13.8091
12.4439
11.5739
11.0044
10.6281
10.379
10.2163
10.1151
10.0604
10.0442
10.0632
10.1168
10.209
10.3409
10.5148
10.7344
11.0052
11.3347
11.7355
12.2309
12.8692
13.75
15.0823
17.3122
21.573
31.7416
63.6639
187.355
1059.45
1030.42
182.851
62.9148
31.0667
20.5685
16.1553
13.8578
12.4936
11.6242
11.0551
10.6787
10.4289
10.2652
10.1623
10.1053
10.0865
10.1022
10.1523
10.2403
10.3675
10.536
10.7496
11.014
11.3368
11.731
12.2207
12.8549
13.7345
15.0693
17.3058
21.5753
31.7524
63.6748
187.381
1059.61
1030.43
182.89
62.9179
31.09
20.6097
16.2026
13.9071
12.5438
11.6751
11.1062
10.7296
10.479
10.314
10.2092
10.1498
10.1281
10.1405
10.1868
10.2705
10.3928
10.5558
10.7635
11.0214
11.3375
11.7251
12.209
12.8393
13.7176
15.055
17.2981
21.5764
31.7622
63.6846
187.406
1059.75
1030.44
182.931
62.9241
31.1151
20.6518
16.2505
13.957
12.5944
11.7264
11.1578
10.7807
10.5293
10.3627
10.2558
10.1939
10.1691
10.1781
10.2205
10.2999
10.4172
10.5747
10.7762
11.0276
11.3369
11.7179
12.1961
12.8225
13.6997
15.0399
17.2896
21.5768
31.7715
63.6943
187.43
1059.9
1030.45
182.972
62.9311
31.1407
20.6942
16.2987
14.0071
12.6454
11.7779
11.2095
10.832
10.5794
10.4112
10.3021
10.2375
10.2096
10.215
10.2534
10.3284
10.4406
10.5925
10.788
11.0327
11.3352
11.7095
12.1819
12.8044
13.6811
15.0245
17.2803
21.5765
31.7806
63.704
187.454
1060.04
1030.46
183.013
62.9373
31.1662
20.7368
16.3471
14.0575
12.6966
11.8297
11.2614
10.8833
10.6296
10.4595
10.3481
10.2807
10.2496
10.2514
10.2858
10.3562
10.4634
10.6097
10.7989
11.0369
11.3324
11.6999
12.1665
12.7854
13.6621
15.0089
17.2705
21.5757
31.7894
63.7137
187.476
1060.18
1030.47
183.052
62.9445
31.1929
20.7806
16.3967
14.1088
12.7485
11.8821
11.3137
10.9349
10.6798
10.5078
10.3939
10.3236
10.2892
10.2873
10.3177
10.3836
10.4856
10.6262
10.8091
11.0403
11.3286
11.6892
12.15
12.7655
13.6423
14.9925
17.2598
21.5736
31.7968
63.7215
187.495
1060.31
1030.48
183.093
62.9538
31.2215
20.8261
16.4478
14.1615
12.8016
11.9354
11.3666
10.9869
10.7302
10.5561
10.4395
10.3662
10.3284
10.3228
10.349
10.4103
10.5073
10.642
10.8185
11.0427
11.3238
11.6774
12.1324
12.7447
13.6215
14.975
17.2477
21.5698
31.8022
63.7267
187.511
1060.44
1030.49
183.137
62.9666
31.2526
20.8734
16.5006
14.2157
12.856
11.9898
11.4205
11.0396
10.781
10.6044
10.485
10.4085
10.3672
10.3577
10.3799
10.4366
10.5284
10.6573
10.8274
11.0446
11.3183
11.6649
12.1141
12.7229
13.5997
14.9562
17.2339
21.5638
31.805
63.7288
187.522
1060.57
1030.49
183.182
62.9811
31.285
20.9222
16.5548
14.2713
12.9117
12.0453
11.4754
11.093
10.8323
10.653
10.5305
10.4506
10.4056
10.3923
10.4103
10.4625
10.5491
10.6723
10.836
11.0462
11.3127
11.6522
12.0956
12.7008
13.5773
14.9363
17.2184
21.5557
31.8055
63.7283
187.532
1060.69
1030.5
183.229
62.9978
31.319
20.9722
16.6104
14.3282
12.9687
12.1021
11.5313
11.1473
10.8842
10.702
10.5761
10.4925
10.4438
10.4266
10.4404
10.488
10.5697
10.6873
10.8447
11.0481
11.3074
11.6399
12.0774
12.6789
13.5545
14.9156
17.2015
21.5454
31.8031
63.7244
187.538
1060.82
1030.51
183.28
63.0176
31.3551
21.024
16.6675
14.3866
13.0271
12.1602
11.5885
11.2026
10.9369
10.7514
10.6219
10.5345
10.4818
10.4606
10.4702
10.5134
10.5902
10.7023
10.8537
11.0505
11.3029
11.6286
12.0603
12.6577
13.5322
14.8948
17.1837
21.5335
31.7988
63.7189
187.543
1060.94
1030.52
183.333
63.0402
31.3933
21.0774
16.7261
14.4464
13.0868
12.2195
11.6468
11.2589
10.9903
10.8013
10.668
10.5765
10.5198
10.4944
10.4998
10.5387
10.6107
10.7176
10.8632
11.0537
11.2994
11.6186
12.0445
12.638
13.511
14.8745
17.1659
21.5212
31.7938
63.7132
187.549
1061.05
1030.53
183.39
63.0661
31.4337
21.1326
16.7863
14.5077
13.1479
12.2801
11.7062
11.3161
11.0444
10.8517
10.7142
10.6186
10.5576
10.528
10.5292
10.5638
10.6312
10.7332
10.8733
11.0579
11.2973
11.6102
12.0305
12.6199
13.4911
14.8552
17.1484
21.5083
31.7875
63.706
187.553
1061.17
1030.54
183.449
63.0936
31.4752
21.189
16.8478
14.5703
13.2102
12.3419
11.7666
11.3741
11.0991
10.9024
10.7606
10.6605
10.5951
10.5612
10.5583
10.5887
10.6517
10.7489
10.8839
11.0628
11.2963
11.6033
12.0183
12.6036
13.4729
14.837
17.1315
21.4951
31.7801
63.6975
187.558
1061.29
1030.55
183.509
63.1219
31.5178
21.2468
16.9109
14.6344
13.2739
12.4048
11.8281
11.433
11.1544
10.9534
10.8069
10.7022
10.6322
10.594
10.5869
10.6131
10.6719
10.7646
10.8948
11.0685
11.2965
11.5979
12.0079
12.5892
13.4564
14.8204
17.1157
21.4824
31.7724
63.6889
187.563
1061.41
1030.56
183.573
63.1524
31.5623
21.3066
16.9759
14.7003
13.3393
12.4693
11.8908
11.4927
11.2102
11.0046
10.8532
10.7436
10.6689
10.6262
10.6149
10.6371
10.6917
10.7803
10.9059
11.0748
11.2977
11.594
11.9993
12.577
13.4421
14.8056
17.1014
21.4707
31.7654
63.6815
187.57
1061.53
1030.57
183.638
63.1837
31.608
21.368
17.0428
14.7681
13.4064
12.5353
11.9548
11.5535
11.2667
11.056
10.8994
10.7845
10.705
10.6577
10.6422
10.6603
10.711
10.7956
10.9171
11.0816
11.2998
11.5915
11.9925
12.5667
13.4299
14.7928
17.0888
21.4604
31.7593
63.6756
187.58
1061.65
1030.58
183.704
63.2163
31.6553
21.4315
17.1118
14.8381
13.4755
12.603
12.0203
11.6153
11.3237
11.1076
10.9453
10.825
10.7402
10.6882
10.6684
10.6826
10.7295
10.8103
10.928
11.0886
11.3026
11.5901
11.9873
12.5584
13.4196
14.7819
17.078
21.4513
31.7538
63.6702
187.591
1061.78
1030.59
183.773
63.2501
31.7041
21.4971
17.1833
14.9104
13.5468
12.6728
12.0874
11.6783
11.3814
11.1594
10.991
10.8647
10.7745
10.7175
10.6934
10.7036
10.7469
10.8242
10.9384
11.0954
11.3058
11.5897
11.9834
12.5518
13.4113
14.7731
17.0691
21.4439
31.7497
63.6668
187.604
1061.9
1030.6
183.844
63.2849
31.7545
21.565
17.2574
14.9855
13.6207
12.7448
12.1563
11.7426
11.4398
11.2111
11.0361
10.9034
10.8075
10.7455
10.7168
10.7232
10.7629
10.8369
10.948
11.1018
11.309
11.5898
11.9806
12.5466
13.4048
14.7661
17.062
21.4381
31.7468
63.6651
187.619
1062.03
1030.61
183.917
63.3215
31.8069
21.6355
17.3345
15.0636
13.6976
12.8195
12.2273
11.8081
11.4986
11.2626
11.0803
10.941
10.8389
10.7716
10.7384
10.7409
10.7773
10.8482
10.9564
11.1075
11.312
11.5901
11.9786
12.5427
13.3998
14.7608
17.0568
21.434
31.7455
63.6655
187.636
1062.17
1030.62
183.992
63.3581
31.8604
21.7083
17.4145
15.1452
13.7785
12.8975
12.3004
11.8745
11.5573
11.3134
11.1233
10.9768
10.8684
10.7957
10.7579
10.7565
10.7895
10.8576
10.9633
11.112
11.3143
11.5903
11.977
12.54
13.3965
14.7573
17.0535
21.4322
31.7469
63.6698
187.658
1062.3
1030.63
184.067
63.3947
31.9158
21.7843
17.4983
15.2306
13.8633
12.9789
12.3757
11.9421
11.6163
11.3635
11.1651
11.0109
10.8959
10.8174
10.7749
10.7697
10.7995
10.8649
10.9684
11.1151
11.3157
11.5901
11.9756
12.5379
13.3944
14.7552
17.0519
21.432
31.7497
63.676
187.68
1062.44
1030.64
184.145
63.4326
31.9737
21.8642
17.5862
15.3201
13.9518
13.0636
12.4537
12.0115
11.676
11.4135
11.2059
11.0435
10.9214
10.8369
10.7895
10.7802
10.8069
10.8698
10.9713
11.1164
11.3156
11.589
11.9739
12.5362
13.393
14.7541
17.0515
21.4332
31.754
63.6841
187.705
1062.57
1030.65
184.224
63.4715
32.0343
21.948
17.6787
15.4141
14.0447
13.1521
12.5347
12.0829
11.7368
11.4636
11.246
11.0747
10.9448
10.8539
10.8013
10.788
10.8114
10.8719
10.9716
11.1155
11.3138
11.5867
11.9716
12.5344
13.3921
14.754
17.0524
21.4359
31.76
63.6948
187.731
1062.71
1030.66
184.308
63.5143
32.0988
22.0365
17.7759
15.5127
14.1419
13.2445
12.6188
12.1564
11.7985
11.5136
11.285
11.1041
10.9659
10.8682
10.8102
10.7926
10.8128
10.8709
10.969
11.1119
11.3098
11.5828
11.9682
12.5321
13.3911
14.7542
17.054
21.4395
31.7671
63.707
187.758
1062.85
1030.67
184.394
63.5566
32.1647
22.128
17.8769
15.6154
14.2431
13.3405
12.7057
12.2316
11.8609
11.5632
11.3229
11.1315
10.9845
10.8795
10.8157
10.7937
10.8106
10.8665
10.9631
11.1053
11.3031
11.5767
11.9633
12.5288
13.3898
14.7547
17.0564
21.4443
31.7759
63.7222
187.787
1063
1030.69
184.481
63.5995
32.233
22.2236
17.9825
15.7225
14.3485
13.4402
12.7954
12.3085
11.9238
11.6123
11.3592
11.1567
11.0002
10.8876
10.8178
10.7911
10.8046
10.8582
10.9536
11.0953
11.2935
11.568
11.9563
12.5241
13.3875
14.7549
17.059
21.4498
31.7859
63.7392
187.817
1063.14
1030.7
184.573
63.6445
32.3046
22.3236
18.0928
15.8342
14.458
13.5432
12.8874
12.3864
11.9864
11.66
11.3933
11.1789
11.0126
10.8919
10.8158
10.7844
10.7944
10.8458
10.9399
11.0815
11.2804
11.5564
11.9469
12.5176
13.3841
14.7544
17.0614
21.4556
31.7968
63.7579
187.847
1063.29
1030.71
184.665
63.6915
32.3799
22.4283
18.2083
15.9509
14.5719
13.6497
12.9814
12.4647
12.048
11.7056
11.4244
11.1976
11.0209
10.8918
10.8093
10.773
10.7796
10.8288
10.9219
11.0636
11.2634
11.5415
11.9347
12.5088
13.379
14.7529
17.0637
21.462
31.8093
63.7797
187.879
1063.44
1030.73
184.759
63.739
32.4574
22.5374
18.3292
16.0731
14.6907
13.7595
13.0766
12.5423
12.1073
11.7477
11.4513
11.2116
11.0243
10.8867
10.7977
10.7565
10.7597
10.8068
10.8992
11.0411
11.2424
11.5228
11.9194
12.4975
13.3721
14.7502
17.0652
21.4682
31.8222
63.8024
187.91
1063.58
1030.74
184.854
63.7831
32.5346
22.6496
18.4553
16.202
14.8151
13.8724
13.1723
12.6181
12.1633
11.7854
11.4732
11.2202
11.0221
10.876
10.7804
10.7345
10.7344
10.7795
10.8713
11.0138
11.2168
11.5001
11.9005
12.4832
13.3628
14.7458
17.0657
21.4744
31.8363
63.8278
187.941
1063.73
1030.76
184.95
63.827
32.615
22.7669
18.5877
16.3392
14.9462
13.988
13.2676
12.6914
12.2154
11.8185
11.4899
11.2233
11.0142
10.8595
10.7574
10.7067
10.7034
10.7468
10.8381
10.9815
11.1866
11.4732
11.878
12.466
13.3513
14.7399
17.0654
21.4803
31.8513
63.855
187.971
1063.88
1030.77
185.046
63.8685
32.6979
22.8899
18.726
16.4813
15.0811
14.1064
13.3638
12.7637
12.2647
11.8474
11.5015
11.2207
11.0002
10.8367
10.7281
10.6727
10.6663
10.7081
10.7992
10.9437
11.1513
11.4417
11.8514
12.4452
13.3368
14.7316
17.0633
21.4851
31.8657
63.8825
187.999
1064.03
1030.79
185.139
63.9063
32.7818
23.018
18.8711
16.6304
15.222
14.2282
13.4605
12.8339
12.3099
11.8707
11.5067
11.2113
10.9793
10.8071
10.692
10.632
10.6227
10.6631
10.7542
10.9002
11.1107
11.4053
11.8205
12.4209
13.3196
14.7212
17.0599
21.4894
31.8812
63.9129
188.027
1064.19
1030.8
185.233
63.9429
32.8685
23.1522
19.023
16.7859
15.3678
14.3523
13.5566
12.9007
12.3498
11.8876
11.5047
11.1943
10.9508
10.7698
10.6485
10.5842
10.5722
10.6115
10.703
10.8508
11.0646
11.3638
11.785
12.3924
13.2988
14.7079
17.0542
21.4921
31.8965
63.9448
188.055
1064.34
1030.82
185.323
63.9751
32.9557
23.2918
19.1823
16.9485
15.5186
14.478
13.6507
12.9628
12.3831
11.8967
11.4945
11.1689
10.9139
10.7246
10.5972
10.529
10.5147
10.5532
10.6455
10.7955
11.0129
11.3174
11.7451
12.3602
13.2749
14.6922
17.0468
21.4942
31.9126
63.9796
188.083
1064.5
1030.84
185.409
64.0025
33.0433
23.4369
19.35
17.1186
15.6735
14.6034
13.7407
13.018
12.408
11.8968
11.4749
11.1344
10.8683
10.6709
10.538
10.4662
10.45
10.4882
10.5816
10.7342
10.9558
11.2659
11.7006
12.324
13.2476
14.6738
17.0374
21.4952
31.9295
64.0173
188.111
1064.66
1030.85
185.488
64.0257
33.1317
23.5877
19.5285
17.2973
15.8308
14.7256
13.8237
13.0644
12.4232
11.8869
11.4456
11.0905
10.8137
10.6087
10.4709
10.396
10.3785
10.4168
10.5118
10.6674
10.8936
11.2098
11.6521
12.2843
13.2174
14.6529
17.0262
21.495
31.9462
64.0559
188.137
1064.82
1030.87
185.565
64.0491
33.2244
23.745
19.7168
17.4829
15.9887
14.8437
13.8997
13.102
12.4287
11.867
11.4064
11.0371
10.7501
10.5382
10.3959
10.3185
10.3001
10.339
10.436
10.5952
10.8264
11.1491
11.5992
12.2406
13.1837
14.6292
17.0126
21.4932
31.9625
64.0951
188.16
1064.98
1030.89
185.641
64.0697
33.3202
23.9082
19.9096
17.6718
16.1476
14.9594
13.9698
13.1311
12.4242
11.8365
11.3566
10.9734
10.6768
10.4587
10.3127
10.2335
10.2148
10.255
10.3546
10.5177
10.7543
11.084
11.5425
12.1936
13.1471
14.6029
16.9969
21.4896
31.9775
64.1334
188.179
1065.15
1030.91
185.711
64.0847
33.4167
24.0779
20.1109
17.867
16.3076
15.07
14.0302
13.1478
12.4062
11.7925
11.2939
10.8977
10.5926
10.3692
10.2205
10.1404
10.1223
10.1644
10.2672
10.4348
10.6772
11.0142
11.4813
12.1423
13.1065
14.5729
16.9778
21.4829
31.9901
64.1699
188.194
1065.32
1030.93
185.772
64.0937
33.5142
24.2529
20.3174
18.0648
16.4651
15.173
14.0792
13.1511
12.3741
11.7346
11.2179
10.8098
10.4974
10.27
10.1196
10.0396
10.0231
10.0679
10.1746
10.3473
10.5961
10.9407
11.4167
12.088
13.0632
14.5407
16.9569
21.4749
32.0022
64.2067
188.208
1065.49
1030.94
185.827
64.0956
33.6107
24.4343
20.5316
18.2664
16.6194
15.266
14.1139
13.1382
12.3256
11.661
11.1276
10.709
10.3906
10.1605
10.0098
9.93097
9.91693
9.96536
10.0766
10.255
10.5106
10.8631
11.3483
12.0298
13.016
14.5043
16.9318
21.4626
32.0104
64.2393
188.214
1065.66
1030.96
185.864
64.0813
33.6996
24.619
20.7504
18.4665
16.7642
15.3437
14.1306
13.1069
12.2594
11.5711
11.0226
10.5952
10.2725
10.0412
9.89142
9.81509
9.80468
9.85771
9.97447
10.1592
10.4222
10.7831
11.2777
11.9696
12.967
14.4665
16.9054
21.4494
32.0181
64.2719
188.221
1065.85
1030.98
185.886
64.0495
33.7786
24.8098
20.9749
18.6616
16.8954
15.4037
14.1284
13.0569
12.1758
11.4653
10.9035
10.469
10.1436
9.91257
9.76509
9.6924
9.68667
9.7452
9.86821
10.0599
10.3306
10.7001
11.2041
11.9063
12.9144
14.4247
16.8747
21.4316
32.0211
64.2985
188.217
1066.02
1031
185.861
63.9675
33.8333
24.9928
21.1952
18.8484
17.013
15.4464
14.1073
12.988
12.0741
11.3432
10.7698
10.3301
10.0038
9.77479
9.6311
9.56339
9.56357
9.62871
9.75893
9.95846
10.2376
10.6162
11.13
11.8427
12.8614
14.3823
16.8433
21.4127
32.0224
64.3228
188.213
1066.22
1031.02
185.556
63.7557
33.8478
25.1671
21.4139
19.0298
17.1182
15.4712
14.0653
12.898
11.9527
11.2032
10.6207
10.178
9.85292
9.62767
9.48936
9.42803
9.43532
9.5081
9.64637
9.85437
10.1424
10.5303
11.054
11.7767
12.8055
14.3364
16.8077
21.3891
32.0188
64.3412
188.201
1066.41
1031.03
183.816
63.2785
33.821
25.3423
21.6345
19.2035
17.2056
15.4722
13.9979
12.7835
11.8093
11.0443
10.4554
10.0126
9.691
9.47163
9.34051
9.28714
9.30297
9.38465
9.53213
9.74961
10.0474
10.4454
10.9792
11.7122
12.751
14.292
16.7735
21.3663
32.0155
64.3602
188.194
1066.62
1031.05
181.11
62.775
33.8373
25.5425
21.8618
19.369
17.2745
15.4495
13.9058
12.6457
11.6449
10.8674
10.2751
9.83464
9.51895
9.30742
9.18516
9.14119
9.16679
9.25843
9.41598
9.64364
9.95168
10.3599
10.9039
11.6467
12.695
14.2454
16.7364
21.3401
32.0085
64.3742
188.178
1066.82
1031.07
179.476
62.5332
33.9265
25.7637
22.0892
19.5198
17.3183
15.397
13.7835
12.4803
11.4569
10.6707
10.0787
9.64386
9.33677
9.13538
9.02394
8.99107
9.02796
9.13093
9.29978
9.53873
9.85801
10.2773
10.8318
11.5847
12.6427
14.2025
16.7027
21.3164
32.0024
64.3884
188.168
1067.05
1031.08
178.697
62.3948
34.0296
25.9855
22.3081
19.6508
17.3338
15.313
13.6309
12.288
11.2461
10.4555
9.86745
9.44133
9.14539
8.95626
8.85736
8.83706
8.88649
9.00183
9.18284
9.4337
9.76462
10.1951
10.7602
11.5226
12.5895
14.158
16.6666
21.2899
31.9932
64.3984
188.15
1067.26
1031.1
178.293
62.3044
34.152
26.2163
22.5211
19.7601
17.3172
15.1942
13.4455
12.0671
11.012
10.2217
9.6418
9.2278
8.94578
8.77117
8.68673
8.68066
8.74414
8.87326
9.06775
9.33177
9.67546
10.1181
10.6946
11.467
12.5428
14.12
16.6368
21.2682
31.9863
64.4096
188.14
1067.51
1031.11
178.072
62.2372
34.283
26.448
22.7201
19.8399
17.263
15.0375
13.2264
11.8184
10.7558
9.97096
9.40329
9.00457
8.73895
8.5808
8.51237
8.52179
8.60041
8.74422
8.95293
9.23068
9.58748
10.0425
10.6299
11.4116
12.4954
14.0803
16.6046
21.2436
31.9769
64.4171
188.123
1067.73
1031.13
177.931
62.1784
34.4237
26.6835
22.9038
19.8862
17.1676
14.8406
12.9728
11.5421
10.4786
9.70466
9.15344
8.77328
8.52657
8.38689
8.33613
8.36254
8.4577
8.61759
8.84192
9.13481
9.50618
9.97484
10.5746
11.3664
12.4584
14.0513
16.5825
21.2272
31.9714
64.4263
188.116
1068.01
1031.14
177.835
62.1285
34.5741
26.9176
23.0627
19.891
17.0273
14.6032
12.6861
11.2404
10.1827
9.4249
8.89407
8.53532
8.30957
8.18988
8.15793
8.20223
8.3147
8.49131
8.7318
9.04019
9.42622
9.9083
10.5197
11.3203
12.4193
14.019
16.5562
21.2063
31.9623
64.4312
188.1
1068.24
1031.15
177.749
62.0763
34.7287
27.1444
23.1933
19.8538
16.8428
14.3256
12.3664
10.9137
9.86879
9.13281
8.62661
8.2923
8.0897
7.99159
7.97971
8.04303
8.17396
8.36858
8.62669
8.95232
9.355
9.85268
10.4777
11.2887
12.3955
14.0027
16.5455
21.1981
31.96
64.4401
188.099
1068.54
1031.16
177.668
62.0272
34.884
27.3583
23.2962
19.7774
16.6147
14.0076
12.0139
10.5627
9.53798
8.82969
8.35223
8.04504
7.86721
7.79161
7.80029
7.88288
8.03245
8.24519
8.52096
8.8637
9.28272
9.79554
10.4337
11.255
12.3685
13.9804
16.5273
21.1832
31.9552
64.4497
188.095
1068.78
1031.17
177.571
61.9689
35.0396
27.5616
23.3663
19.6519
16.3344
13.6434
11.6254
10.1862
9.1907
8.51705
8.07351
7.79671
7.64521
7.59267
7.62202
7.72412
7.89318
8.1256
8.42114
8.78356
9.22188
9.75316
10.4082
11.2434
12.3661
13.9829
16.5332
21.189
31.964
64.4692
188.104
1069.11
1031.18
177.47
61.9153
35.1962
27.7472
23.3998
19.4797
16.0076
13.2407
11.2088
9.79151
8.83286
8.19883
7.79133
7.54554
7.42108
7.39233
7.44265
7.56387
7.75165
8.00327
8.31853
8.70074
9.15831
9.70755
10.3783
11.2258
12.3554
13.9753
16.5281
21.1848
31.9657
64.4756
188.086
1069.35
1031.18
177.339
61.8498
35.3514
27.9159
23.3933
19.2534
15.627
12.7942
10.7617
9.37811
8.46446
7.87454
7.50482
7.29135
7.19548
7.19221
7.2652
7.40702
7.61449
7.88621
8.22281
8.62744
9.10785
9.67937
10.3703
11.2337
12.3721
13.9946
16.5471
21.1967
31.9704
64.484
188.099
1069.71
1031.19
177.209
61.7987
35.5105
28.0631
23.3437
18.9761
15.2008
12.3145
10.2949
8.95559
8.09325
7.54744
7.21465
7.03378
6.96696
6.98969
7.08575
7.24834
7.47498
7.76535
8.12178
8.5474
9.04912
9.64125
10.3508
11.229
12.3765
14.0018
16.5533
21.1992
31.973
64.4907
188.091
1069.94
1031.19
177.047
61.7362
35.6664
28.1856
23.2445
18.6387
14.7207
11.7964
9.80536
8.5211
7.71473
7.21537
6.92144
6.7748
6.73854
6.78879
6.90955
7.0948
7.34297
7.65401
8.03171
8.48076
9.00771
9.62541
10.3589
11.2574
12.4186
14.0476
16.5925
21.227
31.9929
64.5162
188.121
1070.33
1031.19
176.886
61.6867
35.8214
28.2787
23.0954
18.2485
14.1988
11.2533
9.30647
8.08663
7.3357
6.88129
6.62639
6.51411
6.50847
6.58621
6.73146
6.93889
7.20786
7.53815
7.93491
8.4051
8.95506
9.59608
10.3513
11.2679
12.4412
14.0729
16.6116
21.2361
31.996
64.5184
188.11
1070.56
1031.19
176.674
61.6049
35.9618
28.3359
22.8866
17.794
13.626
10.6791
8.79184
7.64474
6.95352
6.54689
6.33301
6.25654
6.28278
6.38923
6.56026
6.79144
7.08339
7.43605
7.85494
8.34882
8.92577
9.59556
10.3785
11.3188
12.5081
14.1435
16.6746
21.2874
32.0477
64.5996
188.215
1070.99
1031.19
176.449
61.5418
36.1017
28.3609
22.6278
17.2929
13.0242
10.0963
8.28212
7.20707
6.57366
6.21515
6.04243
6.00164
6.05931
6.19367
6.38925
6.64259
6.95567
7.32861
7.76661
8.28026
8.88041
9.57546
10.3831
11.3447
12.5485
14.1887
16.7153
21.3166
32.0536
64.4925
187.343
1071.2
1031.19
176.196
61.4768
36.2377
28.3471
22.3057
16.7289
12.3775
9.49079
7.7652
6.76743
6.19497
5.88781
5.75875
5.75571
5.84652
6.01024
6.23162
6.50835
6.84418
7.23951
7.69923
8.2365
8.86424
9.58863
10.4249
11.4104
12.6285
14.2665
16.7722
21.3294
31.9704
64.0815
185.04
1071.68
1031.19
175.959
61.4411
36.368
28.294
21.9351
16.1298
11.7174
8.88781
7.25642
6.33625
5.82411
5.56756
5.48148
5.51555
5.63883
5.83084
6.07639
6.37437
6.7304
7.14531
7.6241
8.1812
8.83053
9.57828
10.4382
11.4448
12.677
14.3168
16.8059
21.3192
31.8646
63.6703
183.123
1071.87
1031.18
175.694
61.4042
36.4883
28.1932
21.4931
15.4667
11.0214
8.27577
6.74599
5.90537
5.45628
5.25272
5.21192
5.28559
5.4444
5.66771
5.93961
6.26093
6.63952
7.07681
7.5801
8.16342
8.83903
9.61348
10.4986
11.5256
12.7685
14.4026
16.8605
21.312
31.7724
63.3993
181.996
1072.41
1031.17
175.47
61.4049
36.5896
28.0461
21.0153
14.7934
10.3407
7.69471
6.25837
5.48945
5.09997
4.94615
4.94782
5.05884
5.25177
5.50539
5.80229
6.14545
6.54502
7.00383
7.53113
8.13935
8.83883
9.63611
10.5417
11.5854
12.8393
14.4757
16.9221
21.3455
31.766
63.2851
181.387
1072.55
1031.17
175.197
61.3773
36.649
27.8297
20.4686
14.0754
9.64697
7.12474
5.79101
5.09594
4.76575
4.66002
4.70196
4.8483
5.07396
5.36006
5.68488
6.05055
6.47431
6.9626
7.52354
8.1666
8.90214
9.73314
10.6656
11.7249
12.9788
14.5944
16.9941
21.3516
31.7251
63.2108
181.072
1073.18
1031.16
174.96
61.3635
36.6473
27.5437
19.9017
13.3911
9.01584
6.6154
5.3757
4.74813
4.47097
4.40633
4.48063
4.65362
4.90288
5.21302
5.5587
5.94218
6.39005
6.90594
7.49533
8.16841
8.93763
9.80566
10.7722
11.8573
13.1257
14.7443
17.1364
21.4815
31.8546
63.322
181.012
1073.25
1031.15
174.591
61.25
36.5428
27.1471
19.2552
12.6804
8.40788
6.13261
4.99432
4.44677
4.22933
4.2084
4.31469
4.5116
4.77981
5.10738
5.47256
5.8771
6.34819
6.89062
7.51098
8.21916
9.03223
9.95565
10.9764
12.0981
13.3721
14.9573
17.2772
21.5309
31.8557
63.3312
180.96
1074
1031.13
174.279
61.1336
36.3168
26.6661
18.6444
12.078
7.90928
5.74062
4.68884
4.2107
4.0455
4.06242
4.19509
4.4095
4.68863
5.02201
5.39246
5.80399
6.28184
6.83191
7.4619
8.18197
9.01011
9.96418
11.0408
12.2301
13.5631
15.181
17.5019
21.7422
32.0705
63.5561
181.097
1074
1031.12
173.736
60.8121
35.8659
25.9859
17.9331
11.4637
7.43732
5.3879
4.42896
4.02534
3.91812
3.97995
4.14762
4.38948
4.6897
5.0361
5.41501
5.83824
6.33012
6.895
7.54206
8.28192
9.12864
10.1067
11.225
12.4652
13.8411
15.4746
17.7691
21.9432
32.2247
63.6823
181.125
1074.9
1031.09
173.313
60.4423
35.1191
25.106
17.3111
11.1127
7.20562
5.1944
4.26408
3.89176
3.81465
3.90374
4.09553
4.35782
4.67029
5.01711
5.39016
5.80789
6.29692
6.85488
7.48877
8.21153
9.03981
9.99817
11.1104
12.374
13.7868
15.4454
17.7411
21.9111
32.2101
63.707
181.153
1074.82
1031.06
172.644
59.7492
33.8426
23.6247
16.3058
10.6805
7.0513
5.10579
4.18523
3.8212
3.76071
3.8766
4.10611
4.40714
4.74575
5.11374
5.51061
5.95126
6.46562
7.06324
7.73625
8.48726
9.33542
10.3068
11.4373
12.7443
14.2288
15.9788
18.367
22.6111
32.993
64.4299
181.513
1075.88
1031.02
171.899
58.8004
31.9565
21.4511
14.8818
10.2433
7.14086
5.28259
4.27395
3.79289
3.63765
3.69278
3.89511
4.18817
4.53136
4.92169
5.3511
5.81786
6.33328
6.9226
7.60993
8.37299
9.19434
10.1011
11.1332
12.3193
13.6764
15.2895
17.5111
21.5549
31.7199
63.0388
180.436
1075.75
1030.97
171.274
57.8825
29.6985
18.4124
12.3347
8.86961
6.81879
5.53665
4.69687
4.14689
3.82122
3.68698
3.72908
3.92879
4.24107
4.65066
5.14539
5.70984
6.33266
7.01246
7.77128
8.66758
9.68272
10.74
11.864
13.1029
14.5295
16.2935
18.7798
23.1812
33.753
65.2487
182.116
1076.83
1030.91
169.864
56.6321
27.697
15.9348
10.151
7.43022
6.18885
5.56831
5.18279
4.87512
4.58823
4.31407
4.07472
3.91502
3.89426
4.05544
4.38885
4.88185
5.50941
6.24581
7.07433
8.0016
9.10756
10.4135
11.7406
12.9711
14.1242
15.3943
17.2795
21.0719
31.0405
61.9226
179.13
1076.82
1030.85
171.119
57.2135
26.9262
14.9006
9.4839
7.10647
6.06805
5.58859
5.34019
5.18667
5.0671
4.94984
4.81604
4.65657
4.47746
4.31044
4.22296
4.31092
4.64374
5.21134
5.99534
6.9546
8.06253
9.3466
10.96
12.8486
14.6997
16.5106
18.6755
22.5716
32.7421
64.3249
181.967
1077.64
1030.81
169.809
54.9898
24.3845
13.3303
9.15029
7.54396
6.81259
6.35975
6.00372
5.69853
5.43609
5.21586
5.03422
4.87877
4.73403
4.60015
4.50921
4.51399
4.67402
5.05372
5.66769
6.51207
7.61825
9.04887
10.8548
12.846
14.7785
16.6636
18.8991
22.7806
32.6403
63.5938
181.52
1077.88
1030.79
168.123
51.3826
21.6932
13.0299
10.4673
9.52289
8.93606
8.39278
7.83102
7.25341
6.6785
6.12637
5.61318
5.14866
4.73545
4.37164
4.05708
3.79966
3.61716
3.53756
3.60028
3.84317
4.27041
4.88792
5.78982
7.18847
9.19958
11.4026
13.9053
18.5874
31.3564
67.6989
188.288
1078.68
1030.67
151.436
38.5216
17.1763
14.0834
13.594
13.1376
12.5532
11.8917
11.1868
10.4668
9.76094
9.09848
8.50702
8.0115
7.63406
7.39516
7.31718
7.44129
7.73404
8.21377
8.91487
9.86383
11.0977
12.6624
14.6193
17.0642
20.1373
24.142
29.7778
38.655
54.6107
89.305
201.8
1079.95
526.841
24.141
24.3861
24.4505
24.4789
24.4973
24.5082
24.513
24.5131
24.5096
24.5033
24.4947
24.4846
24.4732
24.461
24.4482
24.4351
24.4217
24.4081
24.3939
24.379
24.3631
24.3457
24.3264
24.3046
24.2795
24.2507
24.2183
24.184
24.1525
24.1319
24.1303
24.1508
24.1894
555.712
526.414
22.9949
22.9993
23.0042
23.0096
23.0155
23.0219
23.0286
23.0355
23.0426
23.0496
23.0565
23.0631
23.0693
23.0749
23.0799
23.0842
23.0877
23.0904
23.0921
23.093
23.0928
23.0917
23.0895
23.0864
23.0824
23.0777
23.0726
23.0675
23.0638
23.0641
23.073
23.0969
23.138
531.555
1029.84
179.638
63.8363
32.8851
20.9773
15.2284
11.9825
9.93216
8.53017
7.51864
6.76411
6.19206
5.75824
5.43508
5.20478
5.05562
4.97989
4.9746
5.02882
5.14196
5.31124
5.53319
5.80335
6.11562
6.46149
6.82943
7.20522
7.57838
7.98124
8.67725
10.8521
18.6973
46.4849
160.396
1040.81
1029.84
180.483
65.1106
34.4599
22.7237
17.0436
13.8098
11.7506
10.3343
9.30414
8.5206
7.90132
7.39498
6.96809
6.59769
6.26836
5.97207
5.71209
5.48712
5.29512
5.13281
5.00328
4.91092
4.86107
4.85945
4.91149
5.02289
5.21038
5.56563
6.51517
9.60525
19.4399
50.0446
165.849
1041.63
1029.85
182.155
66.9447
35.8135
23.3651
17.008
13.2613
10.873
9.2761
8.16624
7.36564
6.76695
6.30471
5.93857
5.64289
5.40004
5.19708
5.02729
4.8919
4.77777
4.68044
4.59713
4.52672
4.47034
4.43185
4.41902
4.449
4.57261
4.96596
6.21435
10.0394
20.9655
52.4894
168.405
1042.34
1029.86
174.761
64.2738
33.3904
20.7244
14.3773
10.9211
8.96066
7.78606
7.02071
6.47176
6.04329
5.68838
5.38468
5.12209
4.89619
4.70487
4.54735
4.42222
4.32326
4.24614
4.18565
4.13733
4.09905
4.07364
4.07426
4.13868
4.36877
5.03605
6.84437
11.5119
23.2182
55.0522
170.61
1043.15
1029.87
173.471
62.4374
31.4233
19.0592
13.274
10.3732
8.80761
7.86488
7.22295
6.73478
6.32978
5.97328
5.64978
5.35409
5.08619
4.84868
4.64586
4.47919
4.34431
4.24017
4.16201
4.1037
4.06132
4.03914
4.0591
4.17936
4.53646
5.44471
7.61627
12.6373
24.4136
55.9877
171.171
1043.9
1029.88
172.93
61.7608
30.8195
18.6621
13.1064
10.3774
8.91543
8.03253
7.42803
6.96512
6.57306
6.21394
5.87382
5.5525
5.25351
4.9822
4.74623
4.54829
4.38601
4.26271
4.1767
4.1239
4.10159
4.11575
4.19363
4.40603
4.9098
6.03261
8.44082
13.5774
25.2331
56.5712
171.612
1044.6
1029.89
172.463
61.0866
30.183
18.1868
12.8253
10.2438
8.87136
8.04531
7.48682
7.06347
6.70186
6.36345
6.0317
5.70369
5.38644
5.09269
4.8341
4.6128
4.4281
4.28827
4.19698
4.15618
4.16881
4.24462
4.41295
4.74627
5.40079
6.68688
9.20806
14.2923
25.6861
56.7747
171.802
1045.25
1029.9
172.486
61.1142
30.26
18.3183
13.0036
10.4491
9.08715
8.26537
7.71053
7.29177
6.93608
6.60322
6.2732
5.93984
5.60837
5.29332
5.01192
4.76615
4.55386
4.38818
4.27829
4.23356
4.26578
4.39388
4.65298
5.11413
5.91974
7.34324
9.91661
14.8774
25.9795
56.8704
171.994
1045.84
1029.9
172.798
61.1988
30.2606
18.3053
13.017
10.4831
9.12918
8.31349
7.76733
7.36024
7.01906
6.70223
6.38767
6.06688
5.74322
5.43076
5.14929
4.90044
4.68007
4.50441
4.38614
4.34067
4.38832
4.55967
4.90147
5.4891
6.45046
8.01292
10.6294
15.4592
26.291
57.0392
172.297
1046.38
1029.91
173.117
61.3478
30.3549
18.3937
13.1237
10.6026
9.25194
8.43581
7.88973
7.48503
7.1489
6.83908
6.53227
6.21857
5.90055
5.59199
5.31272
5.06463
4.84186
4.66208
4.54061
4.49638
4.55574
4.75872
5.16579
5.86298
6.97075
8.67259
11.3384
16.0473
26.623
57.2448
172.636
1046.88
1029.92
173.81
61.6196
30.4867
18.4812
13.2099
10.6862
9.3268
8.50307
7.95332
7.54916
7.21751
6.91544
6.61875
6.31648
6.01054
5.71427
5.44681
5.20932
4.99481
4.82219
4.70854
4.67508
4.75233
4.98757
5.45262
6.24568
7.4865
9.32254
12.0457
16.6561
27.0067
57.5253
173.034
1047.35
1029.92
174.492
61.8353
30.5649
18.531
13.2743
10.7619
9.40549
8.58205
8.03285
7.63032
7.30179
7.00456
6.71432
6.42001
6.12379
5.83901
5.58391
5.35886
5.15547
4.99378
4.89278
4.87533
4.97494
5.24417
5.76267
6.63878
7.9946
9.95097
12.7305
17.2573
27.4028
57.8243
173.431
1047.78
1029.93
175.524
62.157
30.6962
18.6155
13.3598
10.8454
9.48152
8.6512
8.09787
7.6941
7.36702
7.07375
6.7897
6.50376
6.2185
5.94729
5.70742
5.49896
5.31149
5.16514
5.0818
5.08592
5.21325
5.5198
6.09076
7.04132
8.49517
10.5529
13.3804
17.8354
27.801
58.1403
173.83
1048.2
1029.94
176.719
62.4725
30.7914
18.665
13.4185
10.9116
9.5491
8.71893
8.16617
7.76366
7.43881
7.14897
6.86968
6.5903
6.31424
6.05523
5.82985
5.63861
5.47
5.34253
5.27969
5.30782
5.46489
5.80969
6.431
7.44767
8.98277
11.1205
13.9826
18.3723
28.1789
58.4479
174.209
1048.59
1029.95
178.157
62.839
30.9056
18.7286
13.4872
10.9829
9.61769
8.78461
8.23031
7.82783
7.5047
7.21832
6.94432
6.67254
6.40739
6.16307
5.95283
5.77662
5.62826
5.5221
5.48223
5.53658
5.72498
6.10831
6.77737
7.85191
9.45206
11.6483
14.5297
18.8589
28.5289
58.7438
174.57
1048.97
1029.96
179.547
63.1517
30.9738
18.7613
13.537
11.0434
9.68169
8.8501
8.29715
7.89634
7.57573
7.29314
7.02466
6.76108
6.50828
6.27865
6.08096
5.91883
5.79019
5.70601
5.6901
5.77162
5.99177
6.4128
7.12605
8.24989
9.8994
12.1332
15.0184
19.2906
28.8457
59.0228
174.909
1049.33
1029.96
180.307
63.31
30.9916
18.7812
13.5853
11.1045
9.74585
8.91484
8.36245
7.96299
7.64501
7.36674
7.10471
6.85079
6.61174
6.39737
6.21337
6.06602
5.95508
5.89303
5.90156
6.01061
6.26238
6.7197
7.47317
8.63782
10.322
12.5742
15.4485
19.667
29.1289
59.2854
175.229
1049.68
1029.97
180.476
63.3447
30.9744
18.7923
13.6321
11.1664
9.81229
8.983
8.43198
8.03435
7.71931
7.44564
7.19062
6.94754
6.72219
6.52029
6.34945
6.2166
6.1229
6.08264
6.11562
6.25205
6.53464
7.02617
7.81543
9.01262
10.7181
12.9718
15.8227
19.9908
29.3795
59.5314
175.53
1050.02
1029.98
180.564
63.3702
30.9606
18.8091
13.682
11.2291
9.87836
9.05015
8.50021
8.10444
7.79257
7.52384
7.2762
7.04413
6.83255
6.6437
6.48682
6.36959
6.29387
6.27426
6.33115
6.49427
6.80633
7.32941
8.1496
9.37121
11.086
13.3267
16.1439
20.2652
29.5986
59.7589
175.81
1050.34
1029.99
180.651
63.3917
30.9439
18.8265
13.7338
11.2944
9.9477
9.12108
8.57255
8.17884
7.87037
7.60704
7.3677
7.14667
6.94624
6.76974
6.62634
6.52436
6.46622
6.46653
6.54662
6.73551
7.07535
7.62697
8.473
9.71116
11.4245
13.6406
16.4165
20.4944
29.7879
59.9672
176.068
1050.65
1030
180.735
63.4073
30.9266
18.8465
13.7871
11.36
10.0166
9.19119
8.64384
8.2521
7.947
7.68902
7.45788
7.24792
7.05896
6.89512
6.76549
6.679
6.63862
6.65885
6.76116
6.97436
7.33985
7.91658
8.78323
10.0304
11.7329
13.9146
16.6441
20.6827
29.9498
60.1565
176.305
1050.95
1030.01
180.816
63.4203
30.9098
18.8698
13.8438
11.4288
10.0889
9.26474
8.71858
8.32873
8.02685
7.77397
7.55052
7.35077
7.17283
7.02133
6.90523
6.83398
6.81105
6.85072
6.97405
7.20996
7.59881
8.19715
9.07925
10.3286
12.0119
14.1517
16.831
20.8349
30.0877
60.3292
176.525
1051.24
1030.02
180.895
63.4292
30.8933
18.8955
13.9014
11.4976
10.1607
9.33765
8.79267
8.40491
8.10663
7.85946
7.64397
7.45344
7.28628
7.14697
7.04425
6.98798
6.98207
7.04047
7.18361
7.44059
7.85052
8.46709
9.35987
10.6052
12.2626
14.3548
16.9819
20.9554
30.2044
60.4862
176.727
1051.51
1030.03
180.972
63.436
30.8781
18.9246
13.9622
11.5692
10.2352
9.4131
8.86904
8.48301
8.18789
7.94592
7.73789
7.55627
7.39964
7.27227
7.18265
7.14102
7.15164
7.22811
7.39035
7.66668
8.09502
8.7263
9.62516
10.8611
12.487
14.5275
17.1019
21.0492
30.303
60.6292
176.914
1051.78
1030.04
181.046
63.4392
30.8635
18.9558
14.0239
11.6409
10.3094
9.48813
8.94496
8.56068
8.26871
8.03185
7.83113
7.65829
7.51204
7.39642
7.31965
7.29227
7.31886
7.4126
7.59282
7.88678
8.33119
8.97406
9.87496
11.0968
12.6871
14.6733
17.1952
21.12
30.3856
60.7585
177.086
1052.04
1030.05
181.119
63.4406
30.8504
18.9901
14.0881
11.7148
10.3857
9.5651
9.02265
8.63993
8.35088
8.11876
7.9248
7.76031
7.624
7.51971
7.45533
7.44163
7.48344
7.59346
7.79036
8.10004
8.5582
9.20987
10.1094
11.3135
12.8651
14.7958
17.2663
21.1721
30.4546
60.8756
177.246
1052.29
1030.06
181.188
63.4388
30.838
19.0259
14.1528
11.7886
10.4618
9.64175
9.10003
8.71891
8.43287
8.20546
8.01786
7.86145
7.73482
7.64152
7.5891
7.58853
7.64481
7.77016
7.98251
8.30665
8.77645
9.434
10.329
11.5122
13.023
14.8979
17.3188
21.2084
30.5118
60.9811
177.396
1052.53
1030.07
181.257
63.4352
30.827
19.0641
14.2192
11.8639
10.5392
9.71966
9.1785
8.79875
8.51542
8.29237
8.11079
7.9621
7.84472
7.76195
7.72098
7.73288
7.80281
7.94247
8.16901
8.50604
8.98544
9.64644
10.5343
11.6945
13.1633
14.9831
17.3564
21.2324
30.5594
61.0769
177.539
1052.76
1030.08
181.322
63.4289
30.8168
19.1034
14.2858
11.9389
10.6163
9.79729
9.25667
8.87828
8.59759
8.37877
8.20302
8.06178
7.95331
7.88064
7.8506
7.87431
7.95705
8.10996
8.34938
8.69773
9.18475
9.84705
10.7257
11.8612
13.2876
15.0535
17.3816
21.2462
30.5988
61.1638
177.678
1052.99
1030.09
181.386
63.421
30.8079
19.1447
14.3537
12.015
10.6944
9.87575
9.33558
8.95839
8.68012
8.46525
8.295
8.16081
8.0608
7.99771
7.97801
8.01282
8.10746
8.27251
8.52351
8.88162
9.37433
10.036
10.9038
12.0137
13.3979
15.1118
17.3974
21.2525
30.6321
61.2443
177.819
1053.21
1030.1
181.447
63.4119
30.8011
19.1877
14.4221
12.0911
10.7723
9.95402
9.41429
9.03828
8.76237
8.55131
8.38633
8.2589
8.16696
8.11297
8.10304
8.14822
8.25387
8.42999
8.69128
9.05769
9.55479
10.2142
11.0695
12.1529
13.4956
15.1596
17.4053
21.2529
30.6604
61.3197
177.969
1053.43
1030.11
181.511
63.4058
30.7992
19.2343
14.4924
12.1683
10.851
10.0329
9.49348
9.11854
8.84482
8.63729
8.47728
8.35624
8.27192
8.22652
8.22575
8.28061
8.39638
8.58252
8.85289
9.22622
9.72628
10.382
11.2236
12.2803
13.5825
15.199
17.4078
21.2494
30.6858
61.3934
178.141
1053.64
1030.12
181.573
63.4012
30.8018
19.2836
14.5635
12.2454
10.9292
10.1112
9.57208
9.19819
8.9266
8.72249
8.56729
8.45237
8.37532
8.33806
8.34591
8.40976
8.53482
8.72997
9.00825
9.38719
9.88884
10.5396
11.3667
12.3966
13.6594
15.2311
17.4057
21.2428
30.7087
61.4673
178.352
1053.84
1030.13
181.633
63.3956
30.803
19.3315
14.6331
12.3212
11.0063
10.1886
9.64989
9.27705
9.00753
8.80674
8.65615
8.54707
8.47693
8.44737
8.46332
8.53551
8.66906
8.87225
9.15734
9.54068
10.0427
10.6872
11.4992
12.5026
13.7277
15.2572
17.4004
21.2345
30.7314
61.5479
178.637
1054.05
1030.14
181.695
63.3909
30.8103
19.3838
14.7043
12.3968
11.0823
10.2643
9.72579
9.35411
9.08688
8.88948
8.74343
8.64
8.57646
8.55418
8.57773
8.65766
8.79894
9.00929
9.30017
9.68682
10.1881
10.8255
11.6219
12.5992
13.7882
15.2784
17.3931
21.2259
30.7559
61.6438
179.054
1054.24
1030.15
181.759
63.3874
30.8184
19.4355
14.7744
12.4715
11.1576
10.3393
9.80094
9.4302
9.16503
8.9709
8.82926
8.73122
8.67393
8.6585
8.68914
8.77618
8.92443
9.14106
9.43673
9.82562
10.3251
10.9546
11.7352
12.687
13.8418
15.2952
17.3838
21.2178
30.7857
61.7719
179.717
1054.44
1030.16
181.818
63.3852
30.8289
19.4882
14.8441
12.5453
11.2316
10.413
9.8747
9.50487
9.24167
9.05067
8.9133
8.82054
8.76925
8.76029
8.79756
8.89115
9.0457
9.26782
9.56742
9.95764
10.4544
11.0756
11.84
12.7664
13.8877
15.307
17.3751
21.2158
30.8286
61.9655
180.83
1054.63
1030.17
181.876
63.3817
30.8397
19.5404
14.9129
12.6179
11.3046
10.4857
9.94749
9.5785
9.31714
9.12907
8.99568
8.90787
8.86228
8.85944
8.90289
9.00251
9.16274
9.38962
9.69235
10.0831
10.5764
11.1886
11.9363
12.8376
13.9271
15.316
17.3687
21.2212
30.8953
62.2772
182.635
1054.82
1030.18
181.937
63.3808
30.8527
19.5929
14.9807
12.6892
11.3761
10.557
10.0189
9.65073
9.39116
9.2059
9.07632
8.99318
8.95295
8.95588
9.00509
9.11026
9.27556
9.50653
9.81164
10.2021
10.6912
11.2935
12.0244
12.9012
13.9611
15.3239
17.3671
21.2413
31.0053
62.7215
184.81
1055
1030.19
182
63.3795
30.8656
19.6444
15.047
12.759
11.4462
10.6269
10.0889
9.72159
9.46374
9.28114
9.15514
9.0764
9.04119
9.04951
9.10414
9.21439
9.38424
9.6187
9.92551
10.3149
10.7991
11.3912
12.1052
12.9584
13.9914
15.3327
17.3725
21.276
31.1307
63.0956
186.124
1055.19
1030.2
182.061
63.377
30.8785
19.6951
15.1119
12.8272
11.5148
10.6953
10.1575
9.79104
9.53483
9.35474
9.23211
9.15746
9.1269
9.14019
9.19979
9.31473
9.48866
9.72607
10.034
10.4219
10.9006
11.4822
12.1795
13.0104
14.0191
15.3423
17.3813
21.3099
31.2209
63.2729
186.452
1055.37
1030.21
182.121
63.3737
30.8915
19.745
15.1755
12.894
11.5819
10.7623
10.2247
9.85902
9.60439
9.42668
9.30718
9.23632
9.21004
9.22786
9.29193
9.41104
9.58854
9.82838
10.137
10.5228
10.9958
11.5668
12.248
13.0579
14.0442
15.3516
17.3895
21.336
31.2756
63.3474
186.545
1055.55
1030.22
182.179
63.3692
30.9042
19.7937
15.2375
12.9591
11.6474
10.8278
10.2904
9.92546
9.67231
9.49683
9.38024
9.31286
9.29047
9.31238
9.38046
9.50319
9.6837
9.92543
10.2341
10.6175
11.0846
11.6452
12.3109
13.1011
14.0671
15.3599
17.396
21.3547
31.3091
63.3838
186.605
1055.73
1030.23
182.236
63.3637
30.9166
19.8414
15.2979
13.0226
11.7113
10.8917
10.3545
9.99034
9.73859
9.56518
9.45126
9.38704
9.36816
9.3937
9.46527
9.5911
9.77403
10.0171
10.3254
10.706
11.167
11.7175
12.3685
13.1405
14.0878
15.3673
17.401
21.3687
31.3317
63.4055
186.658
1055.92
1030.24
182.291
63.3571
30.9287
19.8879
15.3568
13.0845
11.7736
10.954
10.4171
10.0537
9.80323
9.63172
9.52024
9.45887
9.44309
9.47181
9.54638
9.67477
9.85958
10.1034
10.4109
10.7884
11.2433
11.7839
12.4211
13.1762
14.1067
15.3741
17.4055
21.3806
31.3494
63.4213
186.708
1056.1
1030.25
182.345
63.3504
30.9411
19.9338
15.4146
13.1451
11.8346
11.015
10.4783
10.1155
9.86631
9.69654
9.58724
9.5284
9.51534
9.54678
9.62386
9.75429
9.94041
10.1845
10.4907
10.8648
11.3135
11.8446
12.4689
13.2086
14.1238
15.3806
17.4101
21.3919
31.3652
63.4337
186.756
1056.28
1030.26
182.398
63.3431
30.9535
19.9788
15.4711
13.2044
11.8942
11.0747
10.5382
10.176
9.92787
9.75966
9.65232
9.59569
9.58497
9.6187
9.69781
9.82978
10.0167
10.2605
10.565
10.9354
11.378
11.9
12.5121
13.2376
14.1392
15.3868
17.415
21.4037
31.3807
63.4449
186.802
1056.47
1030.27
182.45
63.3357
30.9663
20.0234
15.5266
13.2625
11.9528
11.1332
10.5968
10.2352
9.98801
9.82121
9.71558
9.66087
9.65211
9.6877
9.76839
9.90141
10.0887
10.3318
10.6342
11.0007
11.437
11.9502
12.5509
13.2634
14.1529
15.3926
17.4205
21.4164
31.3971
63.456
186.848
1056.65
1030.28
182.5
63.3279
30.9791
20.0672
15.5811
13.3195
12.0101
11.1904
10.6542
10.293
10.0468
9.88123
9.7771
9.72401
9.71686
9.7539
9.83572
9.96933
10.1564
10.3984
10.6984
11.0608
11.4909
11.9956
12.5855
13.286
14.1647
15.3978
17.4263
21.4299
31.4144
63.4673
186.892
1056.84
1030.29
182.549
63.3196
30.9919
20.1103
15.6345
13.3754
12.0662
11.2466
10.7104
10.3497
10.1043
9.93983
9.837
9.78526
9.77938
9.81747
9.89998
10.0337
10.2202
10.4607
10.7579
11.1159
11.5399
12.0364
12.6163
13.3059
14.1749
15.4026
17.4326
21.4446
31.4334
63.4802
186.938
1057.02
1030.3
182.598
63.3112
31.0048
20.1527
15.6869
13.4301
12.1212
11.3015
10.7655
10.4052
10.1605
9.99705
9.89535
9.84472
9.8398
9.87858
9.96137
10.0948
10.2803
10.5187
10.8128
11.1663
11.5842
12.0727
12.6431
13.3227
14.1833
15.4066
17.4389
21.46
31.4538
63.4948
186.984
1057.21
1030.31
182.645
63.3022
31.0174
20.1941
15.738
13.4836
12.175
11.3553
10.8194
10.4595
10.2155
10.0529
9.95221
9.90247
9.89824
9.93737
10.0201
10.1528
10.3368
10.5729
10.8635
11.2124
11.624
12.1049
12.6665
13.337
14.1903
15.4103
17.4457
21.4767
31.4763
63.5121
187.031
1057.39
1030.32
182.691
63.2919
31.0291
20.2342
15.7878
13.5358
12.2275
11.4078
10.872
10.5125
10.2692
10.1075
10.0076
9.95859
9.95479
9.99398
10.0763
10.208
10.3901
10.6234
10.9103
11.2542
11.6597
12.133
12.6862
13.3483
14.1951
15.413
17.4528
21.4938
31.5
63.5313
187.079
1057.58
1030.33
182.733
63.2798
31.0399
20.2732
15.8363
13.5866
12.2788
11.4591
10.9235
10.5644
10.3218
10.1608
10.0617
10.0132
10.0096
10.0486
10.1301
10.2604
10.4404
10.6706
10.9535
11.2923
11.6915
12.1574
12.7023
13.3565
14.1978
15.4155
17.4611
21.5115
31.5254
63.5532
187.128
1057.76
1030.34
182.774
63.2668
31.0505
20.3114
15.8838
13.6365
12.329
11.5093
10.9739
10.6152
10.3731
10.2129
10.1143
10.0662
10.0627
10.1012
10.1818
10.3104
10.4878
10.7147
10.9932
11.3267
11.7195
12.178
12.7149
13.3617
14.1986
15.4174
17.4693
21.5291
31.5511
63.576
187.177
1057.95
1030.35
182.813
63.2545
31.0618
20.3496
15.9309
13.6857
12.3784
11.5587
11.0234
10.665
10.4234
10.2638
10.1657
10.1178
10.1141
10.1519
10.2312
10.3579
10.5326
10.7558
11.0298
11.3577
11.744
12.195
12.7242
13.3643
14.1979
15.4185
17.4772
21.5464
31.5769
63.5996
187.224
1058.13
1030.36
182.853
63.2434
31.0741
20.3878
15.9777
13.7344
12.4272
11.6073
11.072
10.7139
10.4727
10.3135
10.2158
10.168
10.1638
10.2008
10.2786
10.4031
10.5748
10.7941
11.0633
11.3856
11.7652
12.2089
12.7307
13.3648
14.1958
15.4191
17.4849
21.5637
31.6031
63.6247
187.272
1058.31
1030.37
182.892
63.2335
31.0873
20.4263
16.0243
13.7827
12.4755
11.6554
11.1199
10.7619
10.521
10.3622
10.2646
10.2167
10.212
10.2478
10.3239
10.4459
10.6143
10.8296
11.0938
11.4102
11.7831
12.2196
12.7344
13.3631
14.1923
15.4186
17.4918
21.5799
31.628
63.6483
187.316
1058.48
1030.38
182.93
63.2236
31.1007
20.4646
16.0707
13.8309
12.5235
11.7031
11.1674
10.8093
10.5686
10.4099
10.3123
10.264
10.2585
10.2929
10.3671
10.4865
10.6514
10.8623
11.1214
11.4318
11.798
12.2275
12.7356
13.3595
14.1875
15.4175
17.4986
21.5964
31.6527
63.6712
187.357
1058.66
1030.39
182.968
63.2143
31.1148
20.5032
16.1173
13.8791
12.5716
11.7506
11.2146
10.8563
10.6156
10.4568
10.359
10.3101
10.3035
10.3364
10.4083
10.5248
10.686
10.8924
11.1461
11.4504
11.8099
12.2324
12.7342
13.3538
14.181
15.4149
17.504
21.6118
31.6769
63.6938
187.398
1058.83
1030.4
183.005
63.2061
31.1299
20.5423
16.1642
13.9276
12.6198
11.7983
11.2618
10.9032
10.6623
10.5032
10.405
10.3552
10.3473
10.3783
10.4477
10.561
10.7182
10.9198
11.168
11.4661
11.8189
12.2346
12.7303
13.3458
14.1726
15.4105
17.5076
21.6248
31.6976
63.7118
187.435
1059
1030.41
183.043
63.1997
31.1464
20.5822
16.2117
13.9766
12.6684
11.8463
11.3092
10.9502
10.7088
10.5493
10.4503
10.3994
10.3899
10.4187
10.4854
10.5952
10.7482
10.9448
11.1873
11.479
11.8251
12.2341
12.724
13.3358
14.1623
15.4044
17.5094
21.6358
31.7161
63.7272
187.468
1059.16
1030.42
183.081
63.195
31.1641
20.6226
16.2596
14.026
12.7175
11.8947
11.3569
10.9974
10.7555
10.5952
10.4953
10.443
10.4315
10.4579
10.5215
10.6276
10.7761
10.9675
11.2041
11.4894
11.8287
12.2311
12.7155
13.324
14.1505
15.3969
17.5098
21.6455
31.7334
63.7417
187.499
1059.32
1030.43
183.119
63.1922
31.183
20.6636
16.308
14.0759
12.7671
11.9435
11.4051
11.0449
10.8023
10.6412
10.54
10.486
10.4724
10.496
10.5564
10.6585
10.8022
10.9882
11.2187
11.4974
11.83
12.226
12.705
13.3104
14.1371
15.3879
17.5088
21.6539
31.7496
63.755
187.528
1059.48
1030.44
183.159
63.1912
31.2031
20.7052
16.3568
14.1262
12.8172
11.993
11.4539
11.093
10.8495
10.6873
10.5847
10.5288
10.5127
10.5333
10.5901
10.688
10.8268
11.0072
11.2315
11.5036
11.8293
12.2189
12.6927
13.2952
14.1223
15.3775
17.5064
21.6609
31.7641
63.7661
187.554
1059.63
1030.45
183.2
63.1931
31.225
20.7478
16.4064
14.1773
12.8679
12.0431
11.5033
11.1416
10.8972
10.7338
10.6294
10.5714
10.5526
10.57
10.623
10.7165
10.8502
11.0248
11.2427
11.5081
11.827
12.2102
12.6788
13.2785
14.1061
15.3657
17.5026
21.6666
31.7772
63.7753
187.578
1059.78
1030.46
183.243
63.1979
31.2488
20.7916
16.457
14.2292
12.9195
12.094
11.5536
11.191
10.9455
10.7806
10.6743
10.6139
10.5922
10.6061
10.6552
10.7441
10.8726
11.0413
11.2528
11.5113
11.8234
12.2002
12.6638
13.2606
14.0887
15.3527
17.4976
21.6711
31.7895
63.7836
187.599
1059.93
1030.47
183.288
63.2056
31.2745
20.8367
16.5087
14.2822
12.9721
12.1459
11.6047
11.2412
10.9945
10.8279
10.7195
10.6564
10.6316
10.6419
10.6868
10.7711
10.8942
11.0569
11.2619
11.5136
11.8188
12.1892
12.6477
13.2417
14.0702
15.3386
17.4915
21.6747
31.801
63.791
187.619
1060.07
1030.48
183.336
63.2162
31.3024
20.8835
16.5619
14.3366
13.026
12.1991
11.6571
11.2925
11.0442
10.8757
10.7649
10.6989
10.6708
10.6772
10.7179
10.7974
10.9151
11.0718
11.2703
11.5152
11.8135
12.1775
12.6308
13.222
14.0507
15.3233
17.4842
21.6769
31.8115
63.7974
187.638
1060.21
1030.49
183.385
63.2289
31.3321
20.9321
16.617
14.3928
13.0817
12.254
11.7109
11.345
11.0951
10.9243
10.8108
10.7417
10.7099
10.7123
10.7486
10.8232
10.9355
11.0862
11.2782
11.5162
11.8077
12.1652
12.6134
13.2016
14.0304
15.307
17.4758
21.6782
31.8211
63.8033
187.655
1060.34
1030.5
183.436
63.245
31.3645
20.9831
16.6744
14.4514
13.1396
12.3109
11.7668
11.3993
11.1473
10.974
10.8574
10.7847
10.749
10.7472
10.779
10.8486
10.9554
11.1001
11.2857
11.517
11.8016
12.1528
12.5957
13.1809
14.0096
15.2899
17.4663
21.6781
31.8294
63.8078
187.669
1060.48
1030.5
183.49
63.2635
31.3988
21.036
16.7339
14.5122
13.1998
12.3702
11.8248
11.4556
11.2012
11.0249
10.9048
10.8282
10.7883
10.782
10.8091
10.8737
10.975
11.1137
11.293
11.5176
11.7954
12.1403
12.5779
13.1599
13.9882
15.2719
17.4556
21.6767
31.8366
63.8117
187.683
1060.6
1030.51
183.547
63.2849
31.4348
21.0905
16.7954
14.5751
13.2623
12.4318
11.8851
11.514
11.2569
11.0772
10.9532
10.8723
10.8279
10.8168
10.839
10.8984
10.9942
11.1271
11.3001
11.5181
11.7894
12.128
12.5605
13.1391
13.9667
15.2533
17.4438
21.6737
31.8421
63.8137
187.694
1060.73
1030.52
183.605
63.3067
31.4713
21.1459
16.8582
14.6399
13.327
12.4957
11.9478
11.5747
11.3146
11.1311
11.0028
10.9171
10.8677
10.8516
10.8687
10.9229
11.0131
11.1402
11.307
11.5187
11.7836
12.116
12.5432
13.1183
13.9452
15.2346
17.431
21.6694
31.846
63.8143
187.704
1060.85
1030.53
183.665
63.3305
31.5089
21.2023
16.9225
14.7065
13.3938
12.5621
12.013
11.6377
11.3744
11.1868
11.0536
10.9628
10.908
10.8865
10.8982
10.9471
11.0317
11.153
11.3138
11.5193
11.7778
12.1042
12.5261
13.0979
13.9244
15.2163
17.4175
21.6635
31.848
63.813
187.712
1060.98
1030.54
183.726
63.3566
31.548
21.2601
16.9883
14.775
13.4629
12.6309
12.0806
11.7029
11.4361
11.244
11.1056
11.0092
10.9487
10.9215
10.9277
10.9709
11.05
11.1655
11.3204
11.5198
11.7721
12.0925
12.5096
13.0783
13.9044
15.1985
17.4036
21.6565
31.8487
63.8107
187.72
1061.1
1030.55
183.791
63.3853
31.5888
21.3192
17.0556
14.8455
13.5346
12.7022
12.1504
11.77
11.4994
11.3024
11.1585
11.0562
10.9896
10.9564
10.9569
10.9945
11.0679
11.1777
11.3268
11.5203
11.7666
12.0814
12.4938
13.0596
13.8854
15.1814
17.3901
21.6493
31.849
63.8087
187.728
1061.21
1030.56
183.859
63.4173
31.6317
21.3798
17.1245
14.9178
13.6083
12.7758
12.2223
11.8389
11.564
11.3618
11.212
11.1034
11.0305
10.9911
10.9856
11.0175
11.0852
11.1893
11.3328
11.5205
11.7612
12.0706
12.4787
13.0419
13.8675
15.1651
17.3768
21.6416
31.8483
63.8058
187.736
1061.33
1030.57
183.929
63.4494
31.6749
21.4414
17.1948
14.9917
13.6839
12.8514
12.296
11.9093
11.6297
11.4218
11.2656
11.1504
11.0709
11.025
11.0135
11.0396
11.1016
11.2002
11.3381
11.5203
11.7556
12.0601
12.4642
13.0252
13.8505
15.1496
17.364
21.6339
31.847
63.8024
187.743
1061.45
1030.58
183.999
63.481
31.7185
21.5043
17.2667
15.0675
13.7616
12.929
12.3717
11.9813
11.6965
11.4824
11.3193
11.197
11.1106
11.0581
11.0403
11.0606
11.1169
11.21
11.3426
11.5195
11.7498
12.0498
12.4503
13.0092
13.8343
15.1348
17.3516
21.6262
31.8454
63.7991
187.75
1061.57
1030.59
184.069
63.5126
31.7631
21.5689
17.3409
15.1458
13.8418
13.0091
12.4496
12.055
11.7646
11.5436
11.3731
11.2433
11.1495
11.0901
11.0659
11.0803
11.131
11.2187
11.3461
11.5182
11.7438
12.0397
12.437
12.994
13.819
15.1209
17.3398
21.6186
31.8436
63.7959
187.758
1061.69
1030.6
184.142
63.5455
31.8093
21.6359
17.4178
15.2269
13.9251
13.0922
12.5301
12.1308
11.834
11.6055
11.427
11.2891
11.1875
11.1209
11.0902
11.0985
11.1436
11.2261
11.3486
11.5161
11.7375
12.0296
12.4241
12.9795
13.8045
15.1077
17.3287
21.6115
31.8421
63.7934
187.767
1061.81
1030.61
184.217
63.58
31.8575
21.7054
17.4975
15.3111
14.0114
13.1783
12.6132
12.2087
11.9047
11.6679
11.4807
11.3342
11.2244
11.1503
11.1128
11.115
11.1546
11.232
11.3499
11.5131
11.7307
12.0196
12.4117
12.9659
13.7911
15.0956
17.3186
21.6052
31.8411
63.7919
187.776
1061.93
1030.62
184.293
63.615
31.9073
21.7775
17.5803
15.3985
14.1011
13.2676
12.6992
12.2887
11.9767
11.7308
11.5341
11.3783
11.2599
11.1779
11.1335
11.1295
11.1636
11.2362
11.3497
11.509
11.7232
12.0093
12.3995
12.9529
13.7785
15.0846
17.3096
21.6
31.8414
63.7929
187.789
1062.05
1030.63
184.373
63.6516
31.9596
21.8532
17.6671
15.4901
14.1949
13.3608
12.7884
12.3709
12.0499
11.7939
11.5869
11.4212
11.2936
11.2035
11.1519
11.1418
11.1704
11.2382
11.3476
11.5035
11.7148
11.9987
12.3875
12.9404
13.7669
15.0748
17.3021
21.5963
31.8437
63.7972
187.805
1062.18
1030.64
184.454
63.689
32.0141
21.9326
17.7584
15.5863
14.2934
13.4584
12.8811
12.4556
12.1244
11.8572
11.6389
11.4625
11.3253
11.2266
11.1677
11.1513
11.1746
11.2379
11.3435
11.4962
11.7051
11.9873
12.3753
12.9284
13.7561
15.0662
17.296
21.5945
31.8484
63.8054
187.824
1062.31
1030.65
184.537
63.7274
32.0712
22.0164
17.8549
15.6881
14.3974
13.561
12.9779
12.5431
12.2002
11.9205
11.6898
11.502
11.3544
11.2468
11.1805
11.1578
11.1758
11.2347
11.3369
11.4869
11.6939
11.975
12.3626
12.9164
13.7459
15.0586
17.2914
21.5944
31.8554
63.8175
187.847
1062.44
1030.67
184.622
63.7659
32.1301
22.1044
17.957
15.7959
14.5076
13.6693
13.0793
12.6335
12.2773
11.9835
11.7393
11.5391
11.3807
11.2639
11.1898
11.1608
11.1736
11.2284
11.3274
11.4751
11.6806
11.9611
12.3491
12.904
13.7358
15.0517
17.288
21.596
31.8649
63.8339
187.874
1062.57
1030.68
184.709
63.8045
32.1904
22.1962
18.0646
15.9103
14.6246
13.7837
13.1854
12.7267
12.3554
12.046
11.7871
11.5736
11.4037
11.2773
11.1954
11.16
11.1676
11.2185
11.3146
11.4605
11.6651
11.9455
12.3344
12.8912
13.7259
15.0454
17.2857
21.5993
31.8771
63.855
187.905
1062.71
1030.69
184.796
63.8421
32.2505
22.2906
18.1773
16.0313
14.7485
13.9042
13.2956
12.822
12.4337
12.1073
11.8325
11.605
11.4231
11.2867
11.1968
11.155
11.1576
11.2047
11.2983
11.4427
11.6467
11.9277
12.318
12.8772
13.7153
15.0391
17.2839
21.6037
31.8911
63.8797
187.939
1062.85
1030.7
184.89
63.8809
32.3129
22.3879
18.2947
16.16
14.8798
14.0297
13.4085
12.9181
12.5113
12.1668
11.8753
11.6332
11.4389
11.2922
11.1942
11.1459
11.1435
11.187
11.2783
11.4215
11.6256
11.9076
12.2999
12.8621
13.7043
15.033
17.283
21.6097
31.9081
63.9099
187.977
1062.99
1030.72
184.986
63.9208
32.3774
22.4891
18.4164
16.2941
15.0164
14.159
13.5235
13.0147
12.5881
12.2243
11.9154
11.658
11.4508
11.2937
11.1873
11.1326
11.1252
11.1653
11.2544
11.3969
11.6013
11.8848
12.2797
12.8454
13.6921
15.0263
17.2822
21.6164
31.927
63.9437
188.017
1063.13
1030.73
185.076
63.954
32.4401
22.5921
18.5414
16.432
15.1569
14.2916
13.6405
13.1115
12.6635
12.2792
11.9518
11.6786
11.4583
11.2905
11.1758
11.1146
11.1024
11.1392
11.2265
11.3684
11.5736
11.8591
12.2571
12.8269
13.6788
15.019
17.2813
21.6238
31.9477
63.9815
188.061
1063.28
1030.74
185.17
63.985
32.5031
22.6989
18.6719
16.5757
15.3027
14.4278
13.7585
13.207
12.7357
12.3296
11.9831
11.6937
11.4601
11.2817
11.1588
11.0914
11.0747
11.1085
11.1943
11.336
11.5424
11.8302
12.2318
12.8061
13.6637
15.0107
17.2801
21.6318
31.9705
64.0245
188.109
1063.42
1030.76
185.264
64.016
32.5694
22.8113
18.8086
16.7256
15.4535
14.5667
13.8766
13.3002
12.8037
12.3747
12.0084
11.7026
11.4557
11.2669
11.1361
11.0627
11.0418
11.073
11.1576
11.2996
11.5075
11.7983
12.2038
12.7832
13.6471
15.0013
17.2785
21.6402
31.9955
64.0724
188.161
1063.57
1030.77
185.353
64.0431
32.6365
22.9296
18.9533
16.8834
15.6106
14.7088
13.9943
13.3899
12.8663
12.4131
12.0266
11.7042
11.4443
11.2454
11.1071
11.0283
11.0036
11.0326
11.1165
11.2591
11.469
11.763
12.173
12.7579
13.6285
14.9904
17.276
21.6487
32.0224
64.1254
188.216
1063.72
1030.79
185.444
64.0709
32.7072
23.0554
19.1079
17.0506
15.7743
14.8532
14.1101
13.4746
12.922
12.4439
12.0368
11.6981
11.4254
11.217
11.0717
10.9879
10.96
10.9873
11.0709
11.2146
11.4268
11.7245
12.1394
12.7306
13.6085
14.9783
17.273
21.6575
32.0512
64.1831
188.274
1063.88
1030.8
185.534
64.0977
32.7802
23.1883
19.2746
17.2288
15.9439
14.9982
14.2225
13.5536
12.9707
12.467
12.0392
11.6843
11.3993
11.1818
11.03
10.9418
10.911
10.937
11.0208
11.166
11.381
11.6826
12.1029
12.7008
13.5864
14.9644
17.2684
21.6654
32.0806
64.2432
188.331
1064.04
1030.82
185.628
64.1284
32.8587
23.3284
19.4534
17.4171
16.1176
15.1425
14.3311
13.6268
13.0124
12.4826
12.034
11.6631
11.3662
11.1399
10.9822
10.89
10.857
10.8823
10.9666
11.1137
11.3318
11.638
12.064
12.669
13.5627
14.949
17.2626
21.6725
32.1098
64.3045
188.387
1064.2
1030.84
185.724
64.1584
32.9404
23.4746
19.6376
17.6107
16.296
15.2891
14.4388
13.6961
13.0482
12.491
12.021
11.634
11.3254
11.091
10.9279
10.8323
10.7976
10.8226
10.908
11.0573
11.279
11.59
12.0221
12.6344
13.5361
14.9309
17.2541
21.6767
32.1365
64.3639
188.439
1064.36
1030.85
185.818
64.1853
33.0231
23.627
19.8309
17.8132
16.4794
15.4354
14.5417
13.7577
13.0747
12.4895
11.9982
11.5957
11.2762
11.0344
10.8666
10.7685
10.7328
10.7582
10.8452
10.9974
11.2231
11.5392
11.9778
12.5975
13.5074
14.9108
17.2437
21.6791
32.162
64.4237
188.491
1064.53
1030.87
185.912
64.2113
33.1085
23.7851
20.0303
18.0207
16.6648
15.5796
14.6388
13.8111
13.0916
12.478
11.9658
11.5483
11.2185
10.9702
10.7987
10.6987
10.6627
10.6892
10.7784
10.9338
11.1639
11.4855
11.9305
12.5577
13.4757
14.8874
17.2297
21.6778
32.184
64.4809
188.538
1064.7
1030.89
186.003
64.2341
33.1946
23.9499
20.2382
18.2352
16.8522
15.7199
14.7275
13.8535
13.0966
12.4547
11.9221
11.4906
11.1518
10.8981
10.7238
10.623
10.5876
10.6159
10.708
10.8673
11.1022
11.4296
11.8814
12.516
13.442
14.862
17.2137
21.6744
32.2044
64.5375
188.584
1064.88
1030.91
186.092
64.2541
33.281
24.1205
20.4531
18.4537
17.0379
15.8525
14.8046
13.8825
13.0879
12.4184
11.8666
11.4225
11.076
10.8181
10.6422
10.5415
10.5076
10.5385
10.6341
10.7977
11.0378
11.3712
11.8296
12.4715
13.4051
14.8331
17.1936
21.6666
32.2206
64.5905
188.625
1065.05
1030.92
186.174
64.267
33.3638
24.2974
20.6767
18.676
17.2194
15.9744
14.8675
13.8962
13.0643
12.3684
11.7989
11.3437
10.991
10.7303
10.5541
10.4547
10.4234
10.4577
10.5576
10.7263
10.9721
11.3118
11.7771
12.4261
13.3671
14.8029
17.1722
21.6573
32.2358
64.6438
188.666
1065.23
1030.94
186.249
64.2696
33.4383
24.4794
20.9069
18.8966
17.391
16.0817
14.9141
13.8937
13.0255
12.3046
11.719
11.2545
10.8971
10.6352
10.4598
10.3629
10.335
10.3737
10.4785
10.6527
10.9045
11.2506
11.7226
12.3784
13.3263
14.7693
17.1468
21.6437
32.2468
64.6931
188.7
1065.41
1030.96
186.308
64.2444
33.4952
24.658
21.1378
19.114
17.5538
16.1764
14.9459
13.8756
12.9716
12.2269
11.6269
11.1547
10.7944
10.5327
10.3598
10.2665
10.2433
10.2873
10.3979
10.5783
10.8367
11.1895
11.6682
12.3307
13.2852
14.7352
17.1205
21.6286
32.2557
64.7403
188.733
1065.6
1030.98
186.265
64.1358
33.5165
24.8249
21.366
19.3286
17.7089
16.258
14.961
13.8398
12.9004
12.1334
11.521
11.0432
10.682
10.4224
10.2534
10.1652
10.1478
10.1981
10.3152
10.5024
10.7675
11.1271
11.6123
12.2809
13.2412
14.6973
17.0898
21.6085
32.2599
64.7828
188.76
1065.79
1031
185.486
63.8174
33.487
24.9863
21.5971
19.5402
17.8518
16.3207
14.9547
13.7827
12.8097
12.0228
11.4004
10.9196
10.5598
10.3044
10.1411
10.0596
10.0494
10.1072
10.2319
10.4266
10.6991
11.0659
11.5577
12.2321
13.1979
14.6598
17.059
21.5876
32.2626
64.8241
188.787
1065.99
1031.02
182.793
63.2518
33.4445
25.1583
21.8329
19.7465
17.9805
16.364
14.9268
13.7045
12.6997
11.8953
11.2657
10.7843
10.4281
10.1788
10.0228
9.94945
9.94781
10.014
10.1472
10.3499
10.6302
11.0039
11.5019
12.1815
13.1517
14.6184
17.0232
21.561
32.2594
64.8583
188.805
1066.18
1031.04
180.497
62.9125
33.4915
25.363
22.0774
19.946
18.091
16.3828
14.8727
13.6014
12.5675
11.7489
11.1153
10.6364
10.2865
10.0455
9.899
9.83546
9.84383
9.91993
10.0626
10.2744
10.5631
10.9445
11.4488
12.1332
13.1075
14.5786
16.9886
21.5346
32.2552
64.891
188.824
1066.39
1031.05
179.49
62.7814
33.5718
25.569
22.3139
20.1289
18.1775
16.3736
14.7902
13.4721
12.4125
11.5835
10.9494
10.476
10.135
9.9047
9.7694
9.71727
9.73694
9.82392
9.97687
10.1983
10.4956
10.8846
11.3952
12.0837
13.0608
14.535
16.9487
21.5018
32.2441
64.9155
188.831
1066.58
1031.07
179.033
62.7003
33.6617
25.7799
22.5473
20.2968
18.2388
16.3341
14.6769
13.3148
12.2335
11.3983
10.7675
10.3031
9.97405
9.75687
9.63492
9.59602
9.62864
9.72793
9.89238
10.1243
10.4312
10.8285
11.3457
12.0393
13.0193
14.4954
16.9118
21.471
32.234
64.9408
188.844
1066.81
1031.09
178.824
62.6529
33.7629
25.9922
22.7713
20.4435
18.2702
16.2614
14.5316
13.1291
12.0305
11.1935
10.5702
10.1182
9.80384
9.60212
9.4954
9.47129
9.51816
9.63082
9.80756
10.0506
10.3672
10.7726
11.2961
11.994
12.9757
14.4517
16.8693
21.4331
32.2156
64.9549
188.842
1067.01
1031.11
178.726
62.6132
33.8684
26.2057
22.9861
20.5675
18.2696
16.1543
14.3536
12.9137
11.8031
10.9693
10.3578
9.92191
9.62535
9.44163
9.35226
9.34479
9.40757
9.53512
9.72551
9.98079
10.3081
10.7224
11.2529
11.9552
12.9385
14.414
16.8318
21.3988
32.1987
64.9696
188.845
1067.25
1031.12
178.678
62.5769
33.9793
26.4195
23.1872
20.6625
18.2311
16.0084
14.1405
12.6682
11.5515
10.7263
10.131
9.71474
9.43879
9.27534
9.20515
9.21579
9.2957
9.4391
9.64387
9.9119
10.2501
10.6731
11.2098
11.9156
12.899
14.3722
16.7888
21.3578
32.1744
64.974
188.833
1067.45
1031.14
178.647
62.5371
34.0941
26.6338
23.3731
20.7253
18.152
15.8217
13.8912
12.3933
11.2769
10.4657
9.89118
9.49815
9.24574
9.10499
9.056
9.08655
9.18525
9.34602
9.56657
9.84863
10.1989
10.6317
11.1754
11.885
12.8682
14.3386
16.7529
21.3218
32.1514
64.9773
188.827
1067.7
1031.15
178.622
62.4965
34.2141
26.8471
23.5378
20.7496
18.0289
15.5937
13.607
12.0908
10.981
10.1891
9.6394
9.27279
9.04641
8.93033
8.9041
8.95582
9.07435
9.25328
9.49014
9.78647
10.1487
10.5909
11.1409
11.8531
12.8346
14.3006
16.7116
21.2802
32.1244
64.977
188.815
1067.91
1031.16
178.59
62.4513
34.3396
27.0558
23.6763
20.7325
17.8627
15.3264
13.2898
11.7623
10.6652
9.8977
9.37694
9.04002
8.84237
8.75323
8.7517
8.82633
8.9664
9.16518
9.41999
9.73214
10.1078
10.5608
11.1183
11.834
12.814
14.2752
16.6815
21.2471
32.1013
64.9783
188.815
1068.18
1031.18
178.552
62.403
34.4628
27.2494
23.7888
20.6813
17.6578
15.0218
12.9417
11.4094
10.3299
9.59194
9.10398
8.79968
8.63299
8.57255
8.59706
8.69564
8.85805
9.07729
9.3504
9.67846
10.0673
10.5301
11.0936
11.811
12.7882
14.2435
16.6447
21.2079
32.0739
64.9739
188.803
1068.39
1031.19
178.492
62.3423
34.5865
27.4368
23.874
20.5854
17.4032
14.6717
12.5565
11.0293
9.97592
9.2732
8.82221
8.55367
8.42048
8.39086
8.44322
8.56737
8.75373
8.99506
9.28815
9.63382
10.0376
10.5122
11.0837
11.8044
12.7792
14.2284
16.6234
21.1805
32.0513
64.9711
188.791
1068.68
1031.2
178.423
62.2825
34.7095
27.6055
23.9245
20.4465
17.1054
14.2843
12.1426
10.6288
9.6081
8.94481
8.53357
8.30275
8.20452
8.20681
8.28777
8.43794
8.64847
8.91184
9.22457
9.58717
10.0048
10.4898
11.0677
11.7905
12.7634
14.2066
16.5938
21.1481
32.0317
64.9691
188.771
1068.9
1031.21
178.325
62.2087
34.8325
27.7628
23.9417
20.259
16.7568
13.8537
11.6967
10.2072
9.22695
8.60773
8.23959
8.04894
7.98772
8.02379
8.13503
8.31284
8.54932
8.8367
9.17127
9.55324
9.98739
10.4856
11.0729
11.8005
12.7729
14.2091
16.5831
21.1248
32.0065
64.9565
188.763
1069.2
1031.21
178.218
62.1412
34.9578
27.8993
23.9175
20.0224
16.3634
13.3893
11.2286
9.77234
8.83835
8.26644
7.94275
7.79293
7.76914
7.83926
7.98086
8.18615
8.44822
8.75905
9.11462
9.51479
9.96396
10.4737
11.0685
11.7991
12.7701
14.1997
16.5639
21.1005
31.9933
64.9614
188.752
1069.42
1031.22
178.079
62.0608
35.0848
28.021
23.8539
19.7334
15.92
12.8868
10.7365
9.32452
8.44381
7.92294
7.64546
7.53757
7.55232
7.65783
7.83131
8.06581
8.35559
8.69241
9.07195
9.49371
9.96161
10.4867
11.0925
11.8288
12.7991
14.2202
16.5692
21.0912
31.9813
64.9615
188.753
1069.74
1031.22
177.937
61.9938
35.2184
28.1217
23.7466
19.3947
15.4358
12.359
10.2336
8.87528
8.052
7.58261
7.34991
7.28215
7.33381
7.47351
7.67798
7.94089
8.25755
8.61936
9.02162
9.46339
9.94818
10.4867
11.1017
11.8424
12.8119
14.2266
16.566
21.0823
31.9812
64.9728
188.742
1069.96
1031.23
177.754
61.9118
35.3566
28.2081
23.5976
19.002
14.9035
11.8
9.71719
8.42467
7.66454
7.24806
7.05937
7.03023
7.11776
7.29159
7.52802
7.82117
8.16733
8.55737
8.98609
9.45201
9.95799
10.5142
11.1417
11.8882
12.8556
14.2593
16.5808
21.0798
31.9738
64.9753
188.75
1070.31
1031.23
177.575
61.8572
35.5101
28.2799
23.4125
18.5701
14.343
11.2296
9.20497
7.98806
7.29418
6.92695
6.77612
6.77913
6.89664
7.10069
7.36714
7.6896
8.06475
8.48232
8.93637
9.42493
9.95045
10.5232
11.1628
11.916
12.8842
14.282
16.5936
21.0851
31.9863
65.0014
188.758
1070.53
1031.23
177.363
61.8048
35.6784
28.3438
23.1927
18.0943
13.7487
10.6452
8.69636
7.56431
6.93428
6.61451
6.5021
6.53705
6.6823
6.91322
7.20838
7.5614
7.96881
8.41835
8.90259
9.41865
9.96898
10.5619
11.2152
11.9746
12.9407
14.3284
16.6256
21.1061
32.0118
65.028
188.613
1070.9
1031.22
177.179
61.7885
35.8616
28.3926
22.9436
17.5948
13.1487
10.0739
8.2103
7.1583
6.58706
6.31269
6.23743
6.30308
6.47358
6.7253
7.04089
7.41824
7.85445
8.33433
8.84787
9.39076
9.966
10.5797
11.2481
12.0162
12.9832
14.3638
16.6479
21.1111
31.9866
64.849
187.463
1071.11
1031.22
176.948
61.7577
36.0491
28.4253
22.6547
17.0524
12.5227
9.49984
7.73699
6.7645
6.25128
6.02407
5.98775
6.08623
6.28402
6.55688
6.88936
7.28599
7.74894
8.26061
8.80702
9.38085
9.98497
10.6219
11.3057
12.081
13.0463
14.4151
16.678
21.1097
31.9286
64.5787
185.954
1071.53
1031.21
176.74
61.7657
36.2425
28.4348
22.3395
16.5002
11.9086
8.95071
7.28773
6.39028
5.9321
5.7501
5.75122
5.88118
6.10489
6.39755
6.74227
7.14862
7.62878
8.16554
8.74101
9.34452
9.97806
10.6398
11.341
12.1258
13.0913
14.4504
16.6923
21.0887
31.8489
64.2823
184.542
1071.71
1031.21
176.482
61.7604
36.4239
28.4059
21.969
15.9003
11.277
8.41522
6.84611
6.0202
5.62179
5.48933
5.53196
5.69733
5.95164
6.26852
6.63052
7.04777
7.53899
8.09657
8.70032
9.33747
10.0032
10.6905
11.4098
12.2042
13.1694
14.5155
16.726
21.0675
31.7509
64.0018
183.423
1072.2
1031.2
176.283
61.7914
36.5734
28.3191
21.5634
15.2997
10.6678
7.91011
6.43271
5.67395
5.33117
5.24474
5.32611
5.52484
5.80913
6.14975
6.52709
6.95317
7.45047
8.02054
8.64578
9.3132
10.0099
10.7213
11.456
12.2559
13.2164
14.5482
16.7347
21.042
31.6779
63.7911
182.688
1072.31
1031.19
176.008
61.7669
36.6564
28.1329
21.0666
14.6487
10.0522
7.41854
6.0384
5.34907
5.0627
5.02265
5.14361
5.37765
5.69509
6.06314
6.4596
6.90107
7.40965
7.99147
8.63979
9.34105
10.0747
10.82
11.5804
12.3928
13.3473
14.6498
16.7789
21.0034
31.5552
63.5679
182.105
1072.88
1031.18
175.788
61.7606
36.652
27.8398
20.5215
14.0242
9.50821
6.9784
5.68188
5.05911
4.82266
4.82045
4.97195
5.23307
5.57666
5.97121
6.38751
6.84059
7.35641
7.94437
8.61011
9.3378
10.0996
10.8735
11.659
12.489
13.4504
14.749
16.866
21.0744
31.6099
63.57
181.87
1072.91
1031.17
175.442
61.6316
36.4941
27.3699
19.8386
13.3216
8.93462
6.54579
5.35661
4.81245
4.63061
4.66602
4.84497
5.12958
5.49264
5.90447
6.34098
6.81273
7.34691
7.95838
8.65418
9.4127
10.2064
11.0142
11.8335
12.6894
13.6568
14.9308
16.9923
21.1354
31.6545
63.6526
181.801
1073.61
1031.16
175.093
61.4408
36.134
26.7047
19.0934
12.6688
8.43281
6.17154
5.07848
4.60703
4.47735
4.54786
4.74802
5.04353
5.41109
5.82385
6.26481
6.74856
7.29959
7.92584
8.63729
9.41948
10.2344
11.0581
11.8966
12.7863
13.806
15.1453
17.2804
21.5151
32.1684
64.2599
182.115
1073.6
1031.14
174.456
60.9966
35.4882
25.7491
18.1524
11.9354
7.90931
5.79493
4.80559
4.41389
4.34766
4.46962
4.71015
5.0328
5.4122
5.8288
6.27477
6.76671
7.33068
7.97325
8.70816
9.53111
10.3968
11.2595
12.1132
13.0005
14.0166
15.3644
17.5209
21.7919
32.5331
64.6544
182.162
1074.53
1031.12
173.873
60.4573
34.48
24.4656
17.1494
11.3579
7.57293
5.54615
4.59592
4.23466
4.20076
4.36079
4.64377
4.99845
5.38968
5.81055
6.25954
6.75176
7.30653
7.92802
8.62908
9.42444
10.2973
11.1971
12.0998
13.028
14.0694
15.4392
17.6433
22.0257
32.9541
65.1535
182.368
1074.47
1031.08
172.889
59.5219
32.9478
22.5553
15.6513
10.569
7.23717
5.36843
4.44771
4.08296
4.04968
4.23158
4.54918
4.92944
5.35801
5.82701
6.32902
6.87198
7.48227
8.15728
8.88583
9.68706
10.55
11.4404
12.3618
13.3514
14.4809
15.9315
18.1814
22.571
33.4841
65.3862
182.029
1075.65
1031.04
171.934
58.4996
31.0122
20.1322
13.7587
9.6521
7.03196
5.43419
4.51004
4.02882
3.85504
3.91204
4.14678
4.48851
4.91422
5.41278
5.96876
6.5695
7.21356
7.92472
8.72857
9.59078
10.4567
11.2797
12.058
12.8712
13.8415
15.1532
17.2385
21.3873
31.9487
63.543
180.517
1075.38
1030.97
171.011
57.5962
29.0844
17.4581
11.3308
8.10041
6.39913
5.43075
4.81078
4.38181
4.09273
3.93968
3.9433
4.12237
4.45153
4.91185
5.49259
6.17374
6.93632
7.76773
8.67598
9.73264
10.9219
12.0611
13.0354
13.8606
14.719
15.9363
18.0547
22.3779
33.1749
64.7689
181.352
1076.5
1030.9
170.257
56.9777
27.7431
15.7777
9.91331
7.18938
5.97256
5.40586
5.10574
4.90382
4.72689
4.54808
4.36984
4.22103
4.15693
4.24975
4.53923
5.00371
5.64679
6.43671
7.3447
8.36103
9.53939
10.9568
12.4184
13.6413
14.564
15.3982
16.7856
20.1886
29.9581
60.7709
178.059
1076.17
1030.85
171.525
57.5641
27.0995
15.0086
9.57877
7.16751
6.0739
5.53564
5.23887
5.05584
4.9298
4.83048
4.73893
4.64468
4.55023
4.47985
4.48787
4.65624
5.03255
5.61052
6.4014
7.37838
8.52242
9.87782
11.5707
13.4504
15.1597
16.6453
18.3821
21.9335
31.9713
63.5371
181.229
1077.03
1030.81
170.096
55.1292
24.4188
13.4555
9.36115
7.77355
7.02859
6.55786
6.18779
5.87126
5.59642
5.35982
5.16076
4.99462
4.85426
4.7438
4.68601
4.71887
4.88491
5.23347
5.80792
6.62318
7.70067
9.09214
10.7636
12.5808
14.3927
16.153
18.1613
21.6709
31.1222
61.9985
180.365
1077.03
1030.79
168.58
51.6205
21.7857
13.1411
10.5766
9.60372
8.99379
8.44894
7.90987
7.3751
6.85544
6.3619
5.9024
5.48198
5.1036
4.7699
4.48567
4.26032
4.11039
4.058
4.13332
4.36833
4.79609
5.45037
6.39448
7.72404
9.45141
11.4419
14.0211
19.0777
32.2699
68.706
188.971
1077.92
1030.66
150.643
37.7815
16.9765
14.1528
13.6711
13.1878
12.6106
11.9901
11.3515
10.715
10.1016
9.53245
9.02777
8.60645
8.2861
8.08378
8.01842
8.11581
8.39912
8.83906
9.48148
10.3541
11.4943
12.9499
14.7867
17.1029
20.0526
23.9585
29.5205
38.3028
54.0728
88.4873
200.872
1079.33
526.842
24.1341
24.3737
24.4322
24.4565
24.4723
24.4823
24.4874
24.4887
24.4867
24.4822
24.4756
24.4674
24.458
24.4476
24.4366
24.425
24.4131
24.4007
24.3877
24.3738
24.3588
24.3421
24.3231
24.3012
24.2756
24.246
24.2128
24.1777
24.1456
24.1245
24.1231
24.1443
24.1844
555.6
352.293
13.546
13.5736
13.6019
13.63
13.6573
13.6831
13.7071
13.7291
13.7489
13.7664
13.7815
13.7943
13.8049
13.813
13.8189
13.8224
13.8237
13.8227
13.8194
13.814
13.8064
13.7964
13.7842
13.7698
13.7532
13.7345
13.7139
13.6916
13.6683
13.6454
13.6258
13.6156
13.6219
355.88
516.954
4.16215
4.25797
4.34364
4.41959
4.48616
4.5437
4.5927
4.63371
4.66734
4.69419
4.7148
4.72968
4.7393
4.74425
4.74496
4.74178
4.735
4.72487
4.71162
4.69543
4.67636
4.65445
4.62972
4.60206
4.57139
4.53776
4.50098
4.46036
4.41509
4.36381
4.30551
4.24431
4.19099
522.602
516.965
4.22007
4.35671
4.47457
4.57295
4.65321
4.7178
4.76918
4.80938
4.83999
4.86228
4.87728
4.88584
4.88871
4.88655
4.87994
4.86945
4.85561
4.83893
4.8199
4.79896
4.77647
4.75261
4.72738
4.70052
4.6715
4.63966
4.60414
4.56383
4.51703
4.46138
4.39583
4.32666
4.26266
523.014
516.979
4.27373
4.44455
4.58769
4.70129
4.78841
4.85445
4.90418
4.94091
4.96688
4.98368
4.99248
4.99422
4.98965
4.97945
4.96429
4.94484
4.92183
4.89605
4.86838
4.83976
4.81115
4.78335
4.75675
4.73113
4.70562
4.67882
4.64902
4.61414
4.5716
4.51846
4.45423
4.3864
4.3199
523.392
516.996
4.3273
4.52684
4.68811
4.80948
4.89734
4.96071
5.00633
5.03831
5.05913
5.07039
5.07315
5.06816
5.05603
5.0374
5.01295
4.98354
4.95014
4.91392
4.8762
4.83854
4.80263
4.7701
4.7419
4.71803
4.69748
4.67831
4.6578
4.63268
4.5992
4.55371
4.49595
4.43289
4.36596
523.749
517.014
4.37731
4.60035
4.77512
4.90118
4.98884
5.05028
5.09354
5.12289
5.14068
5.14823
5.14631
5.13542
5.11609
5.08893
5.05483
5.01492
4.97056
4.92334
4.87507
4.82789
4.78424
4.74629
4.71522
4.69115
4.67323
4.65958
4.64718
4.63197
4.60913
4.57395
4.5255
4.46871
4.40217
524.085
517.032
4.42133
4.66314
4.84822
4.97775
5.06548
5.12587
5.16757
5.19487
5.20995
5.2139
5.20726
5.19037
5.16371
5.12807
5.08459
5.0348
4.98046
4.92361
4.86656
4.81201
4.76297
4.7216
4.68869
4.66423
4.64759
4.63729
4.63063
4.62349
4.61038
4.58557
4.54676
4.49634
4.43076
524.405
517.05
4.46148
4.71994
4.91424
5.04711
5.13528
5.19506
5.23563
5.26127
5.27395
5.27453
5.26333
5.24059
5.20686
5.16315
5.11097
5.05221
4.98908
4.92401
4.85985
4.79995
4.74759
4.70425
4.67007
4.64482
4.62812
4.61903
4.61554
4.61399
4.60872
4.59303
4.56293
4.5184
4.45449
524.711
517.065
4.49653
4.76919
4.97159
5.10786
5.19708
5.25691
5.29691
5.3213
5.33192
5.32944
5.31402
5.2859
5.24576
5.19489
5.13512
5.06872
4.99825
4.92656
4.85706
4.79378
4.73988
4.6958
4.66101
4.63505
4.61762
4.60828
4.60581
4.60736
4.60758
4.59911
4.5763
4.53712
4.47574
524.999
517.081
4.53053
4.81671
5.02669
5.16607
5.25616
5.31593
5.35524
5.37831
5.38682
5.38127
5.3617
5.32837
5.28212
5.2245
5.15767
5.08426
5.00722
4.92986
4.85624
4.79111
4.737
4.69327
4.65878
4.63278
4.61488
4.60494
4.60242
4.60533
4.60894
4.60569
4.58864
4.55417
4.49591
525.272
517.095
4.56168
4.85993
5.07683
5.21929
5.31053
5.37054
5.40945
5.43144
5.43807
5.4297
5.40631
5.36819
5.31635
5.25259
5.17935
5.0996
5.01667
4.93437
4.85744
4.79132
4.73765
4.69489
4.66137
4.63596
4.61813
4.60781
4.60489
4.60814
4.61358
4.61384
4.60116
4.57074
4.51582
525.529
517.11
4.59303
4.90292
5.12616
5.27122
5.36329
5.42333
5.4617
5.48252
5.48724
5.47606
5.44891
5.40614
5.34892
5.27925
5.19988
5.11406
5.02553
4.93861
4.85881
4.79221
4.73945
4.69822
4.66634
4.64227
4.62525
4.61515
4.61209
4.61533
4.62165
4.62408
4.61454
4.58745
4.53568
525.773
517.125
4.62287
4.94336
5.17242
5.31995
5.41294
5.47317
5.51115
5.53097
5.53394
5.52017
5.48955
5.4425
5.38031
5.30519
5.22012
5.12864
5.03484
4.94349
4.86094
4.79386
4.74204
4.70252
4.67259
4.65036
4.63476
4.62554
4.62281
4.62615
4.63287
4.63657
4.6292
4.6047
4.55561
526.004
517.141
4.65284
4.98349
5.21786
5.36749
5.46119
5.52151
5.55907
5.5779
5.57918
5.56292
5.52899
5.47786
5.41097
5.33068
5.24017
5.14326
5.04438
4.94877
4.86342
4.79576
4.74482
4.70707
4.67933
4.6593
4.64563
4.63785
4.636
4.63975
4.64675
4.65116
4.64519
4.62259
4.57554
526.224
517.156
4.68187
5.0219
5.26117
5.41279
5.50724
5.56776
5.60503
5.623
5.62275
5.60422
5.56725
5.51241
5.44121
5.35617
5.26063
5.15861
5.05484
4.95496
4.86665
4.79803
4.74769
4.7116
4.68611
4.66852
4.65716
4.65133
4.65088
4.65543
4.66281
4.66762
4.66249
4.64116
4.59545
526.434
517.172
4.71071
5.05969
5.30351
5.45691
5.55205
5.61276
5.64979
5.66698
5.66533
5.64469
5.60492
5.54664
5.47148
5.38204
5.28178
5.1749
5.06636
4.96222
4.87069
4.80072
4.75064
4.71598
4.6927
4.67766
4.66888
4.66539
4.66681
4.67257
4.68053
4.68561
4.68093
4.66032
4.61525
526.635
517.188
4.7389
5.09626
5.34432
5.49944
5.5953
5.65629
5.69317
5.70971
5.70678
5.68422
5.64192
5.58054
5.50178
5.40834
5.30375
5.1923
5.07915
4.97073
4.87569
4.80386
4.75363
4.72015
4.69894
4.68651
4.68052
4.67969
4.68338
4.69074
4.69952
4.70485
4.70032
4.67997
4.63489
526.827
517.205
4.7667
5.13207
5.38416
5.54091
5.63753
5.69886
5.73567
5.75163
5.74757
5.72327
5.67867
5.6145
5.53252
5.43548
5.32692
5.21119
5.09362
4.98087
4.88202
4.80775
4.75681
4.72411
4.70478
4.69491
4.69182
4.69391
4.7002
4.70952
4.7194
4.72505
4.72049
4.7
4.65433
527.011
517.221
4.79399
5.16695
5.42289
5.58127
5.6787
5.74045
5.77724
5.79268
5.78755
5.76166
5.71498
5.64831
5.56347
5.46322
5.35108
5.23143
5.10967
4.99262
4.88972
4.81243
4.76026
4.72791
4.71019
4.70281
4.70271
4.70792
4.71708
4.72866
4.73987
4.74591
4.74119
4.72025
4.67347
527.188
517.238
4.82078
5.20102
5.46072
5.6208
5.71916
5.78139
5.81819
5.83314
5.82702
5.79968
5.75115
5.68229
5.59497
5.49191
5.37661
5.25341
5.1277
5.00639
4.89916
4.81824
4.76418
4.73164
4.71518
4.71013
4.71303
4.72152
4.73382
4.74792
4.76072
4.76729
4.76236
4.7407
4.69235
527.357
517.255
4.84705
5.23425
5.49766
5.65958
5.75905
5.82181
5.85855
5.87293
5.86582
5.83711
5.78691
5.71615
5.62669
5.52122
5.40318
5.27681
5.14745
5.02201
4.91031
4.82523
4.76867
4.73541
4.71981
4.71689
4.72277
4.73465
4.75029
4.76718
4.78173
4.78888
4.78368
4.7611
4.71083
527.52
517.271
4.87269
5.26653
5.53365
5.69773
5.79877
5.8621
5.89849
5.91215
5.90403
5.87409
5.82248
5.75014
5.65892
5.55147
5.43112
5.30199
5.16929
5.03984
4.92354
4.83369
4.77399
4.73938
4.72417
4.72309
4.73185
4.74718
4.76631
4.7862
4.80275
4.81066
4.80521
4.78155
4.72899
527.676
517.288
4.89769
5.2978
5.56856
5.7351
5.83744
5.90144
5.93775
5.95052
5.94143
5.9104
5.85759
5.78396
5.69134
5.58229
5.46005
5.32858
5.1929
5.05966
4.93873
4.84368
4.78023
4.74367
4.72834
4.72878
4.74029
4.7591
4.78185
4.80491
4.82361
4.83234
4.82658
4.80175
4.74668
527.827
517.305
4.92201
5.32799
5.60213
5.77092
5.8745
5.93926
5.97582
5.98801
5.9781
5.94616
5.89241
5.8178
5.72413
5.6139
5.49021
5.35683
5.21855
5.08177
4.9562
4.85554
4.78772
4.74853
4.7325
4.73403
4.74807
4.77031
4.79677
4.82314
4.84416
4.85389
4.84804
4.82188
4.76403
527.972
517.321
4.94572
5.35733
5.6349
5.80558
5.91028
5.97584
6.01281
6.02489
6.01402
5.98124
5.92672
5.8514
5.75702
5.64599
5.52127
5.38643
5.24596
5.10598
4.97592
4.86942
4.79669
4.75422
4.73685
4.739
4.75528
4.78085
4.81106
4.84087
4.86439
4.87533
4.86969
4.84173
4.78088
528.111
517.338
4.9686
5.38547
5.6665
5.83868
5.94442
6.01081
6.04827
6.06035
6.04884
6.01552
5.96054
5.88483
5.79009
5.67866
5.55334
5.41748
5.27528
5.13247
4.99812
4.88566
4.80752
4.7611
4.7417
4.74388
4.76202
4.79074
4.82466
4.85799
4.88413
4.89649
4.89128
4.86172
4.79745
528.246
517.354
4.99075
5.41246
5.69667
5.87037
5.97721
6.04451
6.08261
6.0949
6.08298
6.0492
5.99386
5.91794
5.82312
5.71163
5.58612
5.4497
5.30626
5.16108
5.0228
4.9045
4.82055
4.76956
4.74741
4.74896
4.76848
4.80007
4.83764
4.87457
4.9036
4.91795
4.91303
4.88193
4.81385
528.376
517.37
5.01222
5.43843
5.72559
5.90064
6.00851
6.07672
6.1155
6.1282
6.11631
6.08203
6.02649
5.95062
5.85604
5.74487
5.61959
5.48309
5.33891
5.19189
5.05014
4.92629
4.83621
4.78003
4.75439
4.75458
4.77489
4.80898
4.85003
4.8906
4.92273
4.93935
4.93479
4.90213
4.83002
528.502
517.387
5.03301
5.46337
5.75325
5.92959
6.03846
6.10759
6.14708
6.1602
6.14838
6.11381
6.0583
5.98276
5.88871
5.77818
5.65351
5.51737
5.37296
5.22468
5.08006
4.95118
4.85479
4.79294
4.76307
4.76112
4.78154
4.81768
4.86199
4.90616
4.9415
4.96056
4.95643
4.92222
4.84591
528.623
517.402
5.05322
5.48742
5.77978
5.95724
6.06707
6.1371
6.17735
6.19097
6.17937
6.14466
6.08937
6.01434
5.92106
5.81147
5.68777
5.5524
5.40828
5.25933
5.11248
4.97919
4.87653
4.80865
4.77389
4.76898
4.78876
4.82637
4.8736
4.92128
4.9599
4.98147
4.97784
4.94207
4.8615
528.741
517.418
5.07286
5.51061
5.80517
5.98363
6.09434
6.16526
6.20628
6.22046
6.20915
6.17446
6.11954
6.04521
5.95292
5.84452
5.72209
5.5879
5.44454
5.29549
5.1471
5.01008
4.90142
4.82738
4.78721
4.77858
4.79692
4.83534
4.88506
4.93603
4.97785
5.00199
4.99892
4.96163
4.87673
528.856
517.434
5.09204
5.53317
5.82952
6.00878
6.12031
6.1921
6.23391
6.24871
6.2378
6.20326
6.14885
6.07536
5.98423
5.87724
5.75636
5.62367
5.4815
5.33291
5.18363
5.0436
4.92937
4.84924
4.80332
4.79028
4.80635
4.84486
4.89655
4.95052
4.99553
5.02211
5.01961
4.98083
4.8916
528.967
517.449
5.11067
5.55518
5.85275
6.03265
6.14495
6.2176
6.26022
6.27568
6.26527
6.23103
6.17722
6.10468
6.01484
5.90944
5.79033
5.65945
5.51886
5.37123
5.22169
5.0794
4.96022
4.87426
4.8224
4.80438
4.81741
4.85521
4.90829
4.96498
5.0132
5.04192
5.03992
4.99965
4.90609
529.076
517.464
5.12843
5.57593
5.8747
6.05524
6.1683
6.24181
6.28524
6.3014
6.29158
6.25788
6.20466
6.13313
6.0447
5.94104
5.8239
5.69506
5.55638
5.41016
5.26095
5.11713
4.99373
4.90239
4.84461
4.82118
4.83043
4.86673
4.92054
4.97954
5.03076
5.06142
5.05984
5.01807
4.9202
529.182
517.479
5.14551
5.59579
5.8956
6.07667
6.1904
6.26472
6.30893
6.32579
6.31658
6.2835
6.23097
6.16059
6.07371
5.97193
5.85692
5.73033
5.59383
5.44937
5.30104
5.15639
5.02958
4.93345
4.86996
4.84087
4.84569
4.8797
4.93354
4.99434
5.04825
5.08064
5.07937
5.03609
4.93393
529.286
517.494
5.16192
5.61472
5.91535
6.09686
6.21126
6.28638
6.33138
6.34894
6.34036
6.30792
6.25621
6.18711
6.10191
6.00213
5.88939
5.76521
5.63108
5.48871
5.3417
5.19688
5.06748
4.96724
4.89843
4.86359
4.86345
4.89441
4.9475
5.0095
5.0657
5.09959
5.09851
5.05371
4.94731
529.388
517.508
5.1777
5.63271
5.93401
6.11589
6.23091
6.3068
6.35259
6.37086
6.36293
6.33119
6.28032
6.21256
6.12917
6.03151
5.92115
5.79952
5.66797
5.52794
5.38264
5.23825
5.10706
5.00346
4.92982
4.88935
4.8839
4.91111
4.96268
5.02523
5.08323
5.11832
5.11731
5.07095
4.96035
529.488
517.522
5.19288
5.64981
5.95159
6.13376
6.24935
6.32599
6.37254
6.39151
6.38425
6.35326
6.30335
6.23698
6.15538
6.05999
5.95213
5.83318
5.70435
5.56689
5.42364
5.2802
5.14799
5.04179
4.96394
4.91807
4.90711
4.92998
4.97927
5.04166
5.10091
5.13688
5.13579
5.08783
4.97309
529.586
517.536
5.20739
5.666
5.96813
6.15051
6.26662
6.34398
6.39126
6.41091
6.40432
6.37411
6.32523
6.26035
6.18065
6.08749
5.98226
5.86608
5.7401
5.60538
5.46447
5.32244
5.18995
5.0819
5.00049
4.94964
4.93313
4.95119
4.99748
5.05898
5.11889
5.15538
5.15401
5.10441
4.98556
529.683
517.55
5.22135
5.68135
5.98365
6.16615
6.28273
6.36077
6.40874
6.42905
6.42312
6.3937
6.34591
6.28257
6.20483
6.114
6.01137
5.89811
5.77509
5.64327
5.50494
5.36473
5.2326
5.12342
5.03916
4.98381
4.96189
4.97482
5.01747
5.07733
5.13727
5.17386
5.17202
5.1207
4.99778
529.779
517.564
5.23467
5.6958
5.99813
6.18068
6.2977
6.37637
6.425
6.44594
6.44066
6.41205
6.36539
6.30365
6.22792
6.13945
6.03948
5.92909
5.8092
5.6804
5.54487
5.40685
5.27569
5.16606
5.07962
5.02035
4.99327
5.00092
5.03939
5.09692
5.15622
5.19247
5.18991
5.13677
5.0098
529.874
517.577
5.24741
5.70942
6.01162
6.19415
6.31153
6.39079
6.44005
6.46159
6.45692
6.42912
6.38365
6.32352
6.24982
6.16375
6.06647
5.95899
5.84213
5.71655
5.58402
5.44852
5.3189
5.20948
5.12155
5.05896
5.02708
5.0294
5.06329
5.11784
5.17585
5.21129
5.20774
5.15266
5.02164
529.969
517.59
5.25952
5.72216
6.0241
6.20653
6.32425
6.40406
6.45391
6.47601
6.47196
6.44497
6.4007
6.34222
6.27056
6.18689
6.09231
5.98776
5.874
5.75157
5.6222
5.48951
5.36195
5.25336
5.16464
5.09938
5.06315
5.06024
5.08924
5.14024
5.19634
5.23045
5.22561
5.16844
5.03333
530.063
517.603
5.27105
5.73408
6.03561
6.21787
6.33587
6.41619
6.46659
6.48923
6.48575
6.45958
6.41655
6.35972
6.2901
6.20881
6.11691
6.0153
5.90464
5.78543
5.65927
5.52963
5.40456
5.29737
5.20851
5.14124
5.1012
5.09328
5.11719
5.16416
5.21775
5.25006
5.24361
5.18417
5.04492
530.157
517.615
5.28195
5.74513
6.04614
6.22817
6.3464
6.4272
6.47812
6.50127
6.49836
6.47301
6.43124
6.37607
6.30847
6.22953
6.14028
6.04156
5.93399
5.818
5.69512
5.5687
5.44652
5.34122
5.25282
5.18422
5.14095
5.12835
5.14715
5.18969
5.24022
5.27022
5.26182
5.1999
5.05641
530.252
517.627
5.29226
5.75537
6.05572
6.23745
6.35588
6.43711
6.48852
6.51214
6.50978
6.48526
6.44479
6.39128
6.32569
6.24907
6.16241
6.06653
5.962
5.84921
5.72965
5.60656
5.48766
5.38466
5.29723
5.22792
5.18205
5.1652
5.17896
5.21679
5.26379
5.29102
5.28032
5.21569
5.06785
530.347
517.639
5.30197
5.76477
6.06435
6.24572
6.3643
6.44593
6.49779
6.52187
6.52005
6.49637
6.45723
6.4054
6.3418
6.26746
6.18334
6.09023
5.98867
5.87904
5.76278
5.64313
5.52768
5.4274
5.34146
5.27203
5.22416
5.20356
5.21247
5.24543
5.28847
5.31249
5.29916
5.23158
5.07927
530.443
517.651
5.31109
5.77339
6.07208
6.25302
6.37169
6.45369
6.50597
6.53047
6.52919
6.50636
6.46859
6.41845
6.35683
6.28474
6.20311
6.11269
6.01403
5.90748
5.79451
5.67836
5.56662
5.4693
5.38523
5.3162
5.26694
5.24312
5.24749
5.27555
5.31433
5.33472
5.31842
5.24765
5.0907
530.54
517.663
5.31965
5.78123
6.07889
6.25934
6.37807
6.46039
6.51305
6.53795
6.5372
6.51525
6.4789
6.43047
6.37083
6.30095
6.22174
6.13395
6.0381
5.93457
5.82485
5.71222
5.60438
5.51025
5.42837
5.36018
5.31006
5.28354
5.28369
5.30689
5.3412
5.35766
5.3381
5.26389
5.10216
530.637
517.674
5.32767
5.78832
6.08484
6.26471
6.38345
6.46605
6.51907
6.54435
6.54413
6.52307
6.48818
6.44149
6.38382
6.31613
6.2393
6.15407
6.06096
5.96036
5.85383
5.74475
5.64093
5.55015
5.4707
5.40373
5.35324
5.32455
5.32095
5.3396
5.36916
5.38137
5.35828
5.2804
5.11372
530.735
517.685
5.33515
5.79467
6.08993
6.26916
6.38785
6.47069
6.52403
6.54967
6.54998
6.52985
6.49648
6.45153
6.39584
6.33031
6.25582
6.17308
6.08264
5.98491
5.88151
5.77597
5.67627
5.58897
5.51215
5.44669
5.39626
5.36589
5.35899
5.37336
5.39806
5.40578
5.37893
5.29716
5.12537
530.834
517.695
5.34212
5.80032
6.09418
6.27271
6.39129
6.47434
6.52797
6.55395
6.5548
6.53563
6.50382
6.46064
6.40691
6.34353
6.27134
6.19105
6.10321
6.00827
5.90796
5.80595
5.71044
5.62668
5.55262
5.48891
5.43888
5.40731
5.39757
5.40797
5.42782
5.4309
5.40008
5.31423
5.13717
530.933
517.706
5.34858
5.80527
6.09762
6.27536
6.3938
6.477
6.53089
6.55721
6.55862
6.54046
6.51025
6.46886
6.41708
6.35582
6.28589
6.20801
6.12272
6.03053
5.93326
5.83478
5.7435
5.66333
5.59212
5.53033
5.481
5.44859
5.43641
5.44314
5.45823
5.4566
5.42169
5.33159
5.14909
531.033
517.716
5.35454
5.80954
6.10026
6.27715
6.39538
6.47871
6.53282
6.55948
6.56149
6.54441
6.51581
6.47619
6.42635
6.36719
6.29951
6.224
6.14122
6.05174
5.95748
5.86252
5.77551
5.69896
5.63066
5.57091
5.52248
5.48951
5.4753
5.47869
5.48916
5.48282
5.44371
5.34923
5.16117
531.133
517.726
5.35999
5.81311
6.10211
6.27807
6.39607
6.47947
6.53379
6.56076
6.56344
6.54764
6.52056
6.48266
6.43475
6.37768
6.31223
6.23907
6.15879
6.07198
5.98072
5.88931
5.80658
5.73364
5.66826
5.61064
5.56329
5.53008
5.51407
5.51439
5.52043
5.50944
5.46612
5.36715
5.17341
531.233
517.736
5.36494
5.816
6.10317
6.27816
6.39587
6.47932
6.5338
6.56107
6.5644
6.5499
6.52436
6.48822
6.44225
6.38728
6.32405
6.25324
6.17543
6.0913
6.00306
5.91525
5.83679
5.76744
5.70498
5.64951
5.60336
5.57012
5.55259
5.55013
5.55193
5.53638
5.48883
5.3853
5.18578
531.333
517.745
5.36937
5.81821
6.10346
6.27743
6.39483
6.4783
6.53292
6.56049
6.5645
6.55136
6.52738
6.49299
6.44895
6.39606
6.33504
6.26656
6.19122
6.10979
6.0246
5.94049
5.86625
5.80045
5.74086
5.68755
5.64267
5.60953
5.59074
5.58568
5.58349
5.56351
5.51178
5.40366
5.19828
531.432
517.754
5.37329
5.81975
6.10299
6.27591
6.39296
6.47643
6.53117
6.55903
6.56373
6.55198
6.52958
6.49696
6.45484
6.40401
6.34519
6.27904
6.20619
6.12748
6.04545
5.96519
5.89509
5.83273
5.77596
5.72479
5.68122
5.64831
5.62844
5.62107
5.61502
5.59078
5.53495
5.42223
5.21092
531.531
517.763
5.3767
5.82063
6.1018
6.27363
6.39033
6.47378
6.52864
6.55679
6.56223
6.55193
6.53113
6.50026
6.46004
6.41125
6.35459
6.29074
6.22038
6.14445
6.06567
5.98947
5.92338
5.86436
5.81031
5.76124
5.71898
5.68638
5.66561
5.65612
5.64641
5.61803
5.55817
5.44086
5.22359
531.629
517.771
5.37959
5.82086
6.0999
6.27061
6.38693
6.47035
6.52533
6.5538
6.56002
6.55121
6.53205
6.50293
6.4646
6.41781
6.36328
6.30171
6.23384
6.16071
6.08527
6.0133
5.95111
5.89533
5.84393
5.79691
5.75598
5.72377
5.70221
5.69082
5.67767
5.6453
5.58149
5.45961
5.23633
531.727
517.779
5.38199
5.82047
6.09733
6.2669
6.38281
6.4662
6.5213
6.55012
6.55718
6.54995
6.53245
6.50509
6.46862
6.4238
6.37137
6.31204
6.24662
6.1763
6.10426
6.03661
5.97823
5.92561
5.87679
5.83177
5.79216
5.76038
5.73817
5.72505
5.70864
5.67246
5.60478
5.47834
5.24904
531.823
517.787
5.38393
5.81952
6.09412
6.2625
6.37799
6.46133
6.51655
6.54575
6.5537
6.54814
6.53236
6.50679
6.47217
6.4293
6.37893
6.32181
6.25882
6.19129
6.12268
6.0594
6.00476
5.95521
5.9089
5.86584
5.82753
5.79622
5.77346
5.75877
5.73929
5.69947
5.62804
5.49706
5.26177
531.919
517.795
5.38549
5.81807
6.09033
6.25746
6.37248
6.45574
6.51108
6.5407
6.54963
6.54583
6.53185
6.5081
6.47535
6.43441
6.38606
6.33111
6.27052
6.20578
6.14061
6.08169
6.03072
5.98418
5.94031
5.89914
5.8621
5.83127
5.80804
5.79193
5.76954
5.72625
5.65118
5.51575
5.2745
532.014
517.802
5.38671
5.81616
6.08599
6.25181
6.36631
6.44945
6.50488
6.53495
6.54495
6.543
6.53089
6.50902
6.47818
6.43918
6.39285
6.34005
6.28185
6.21989
6.15818
6.10358
6.05619
6.01256
5.97107
5.93172
5.89591
5.86555
5.84189
5.82448
5.79937
5.7528
5.67423
5.53444
5.28731
532.107
517.809
5.38764
5.81384
6.08114
6.24555
6.35947
6.44244
6.49796
6.52851
6.53965
6.53965
6.52949
6.50956
6.48067
6.44366
6.39937
6.34874
6.29292
6.23378
6.17558
6.12519
6.08123
6.04042
6.0012
5.96362
5.929
5.8991
5.87506
5.85643
5.82874
5.77904
5.6971
5.55306
5.30018
532.199
517.816
5.38829
5.81111
6.07576
6.2387
6.35198
6.43473
6.4903
6.52137
6.53374
6.53575
6.52757
6.50966
6.4828
6.44784
6.40566
6.35724
6.30388
6.24763
6.19306
6.14671
6.10602
6.06787
6.03081
5.9949
5.96139
5.93192
5.90749
5.88777
5.85765
5.805
5.71983
5.57162
5.31306
532.29
517.823
5.38865
5.80795
6.06986
6.23126
6.34383
6.4263
6.4819
6.51355
6.52732
6.53128
6.52509
6.50924
6.48448
6.45166
6.41167
6.36556
6.31475
6.26152
6.21076
6.16825
6.13064
6.09498
6.05993
6.0256
5.99313
5.96407
5.93937
5.9185
5.88605
5.83058
5.7423
5.59004
5.32587
532.379
517.829
5.38873
5.80434
6.06342
6.22323
6.33506
6.4172
6.47278
6.50504
6.52043
6.52618
6.52197
6.50824
6.48568
6.45508
6.41738
6.37367
6.32554
6.27548
6.22872
6.18984
6.15513
6.1218
6.08865
6.05579
6.02434
5.99574
5.971
5.94881
5.91406
5.85589
5.76461
5.60837
5.33866
532.467
517.835
5.38854
5.80026
6.05643
6.21462
6.32568
6.40746
6.46299
6.49582
6.51282
6.5204
6.51822
6.50666
6.48635
6.45806
6.42272
6.38152
6.33616
6.28941
6.24677
6.21139
6.17944
6.14833
6.11695
6.08549
6.05501
6.0269
6.00217
5.97866
5.94163
5.88085
5.78665
5.62653
5.35134
532.553
517.841
5.38794
5.79566
6.04888
6.20545
6.31573
6.39713
6.45261
6.48605
6.50468
6.51409
6.51393
6.50455
6.48652
6.46059
6.42769
6.38907
6.34659
6.30326
6.26482
6.23284
6.20355
6.17455
6.14488
6.11474
6.0852
6.05759
6.03291
6.0081
5.96887
5.90556
5.80853
5.64458
5.36398
532.637
517.847
5.38691
5.79052
6.04077
6.1957
6.3052
6.38623
6.44168
6.47577
6.49609
6.50735
6.50922
6.50201
6.48628
6.46273
6.43233
6.39637
6.35686
6.31705
6.28281
6.25415
6.22743
6.20046
6.17241
6.14353
6.11488
6.08776
6.06314
6.03707
5.99569
5.92993
5.83015
5.66245
5.3765
532.72
517.852
5.38552
5.78492
6.03212
6.18537
6.29408
6.37473
6.43019
6.46502
6.48711
6.50027
6.50418
6.49915
6.48571
6.46458
6.43672
6.4035
6.36706
6.33089
6.3008
6.27535
6.25112
6.2261
6.1996
6.17193
6.14413
6.11748
6.09294
6.06564
6.02219
5.95408
5.85162
5.68024
5.38898
532.802
517.858
5.38379
5.77886
6.02292
6.17444
6.28232
6.3626
6.41813
6.45379
6.47779
6.49294
6.49893
6.49608
6.48494
6.46623
6.44094
6.41054
6.37729
6.34494
6.31886
6.29649
6.27462
6.25147
6.22643
6.19991
6.17292
6.1467
6.12224
6.09374
6.04829
5.97791
5.87284
5.69784
5.40137
532.882
517.863
5.38183
5.77242
6.0132
6.16289
6.26988
6.34977
6.4054
6.44204
6.4681
6.48535
6.49349
6.49287
6.48405
6.46778
6.44512
6.41761
6.3877
6.35936
6.3371
6.31764
6.29801
6.27661
6.25297
6.22753
6.20131
6.17552
6.15115
6.1215
6.07413
6.00156
5.89395
5.71539
5.41374
532.961
517.868
5.3797
5.76561
6.00294
6.15068
6.25669
6.33613
6.39193
6.42969
6.45798
6.47749
6.48791
6.48958
6.48312
6.46933
6.44933
6.42479
6.39835
6.37418
6.35554
6.33883
6.32129
6.30153
6.27919
6.25476
6.22926
6.20387
6.17957
6.14881
6.09959
6.02491
5.91483
5.73277
5.42601
533.038
517.873
5.37742
5.75845
5.99213
6.13775
6.24266
6.32159
6.37759
6.41662
6.44733
6.46925
6.48209
6.48619
6.48217
6.47091
6.45362
6.43211
6.40923
6.38932
6.37414
6.36004
6.3445
6.32629
6.30516
6.28167
6.25685
6.23184
6.20762
6.1758
6.1248
6.0481
5.93562
5.75011
5.43827
533.114
517.878
5.375
5.75092
5.98073
6.12406
6.22772
6.30605
6.36231
6.40282
6.43605
6.46052
6.47594
6.48261
6.48117
6.47253
6.45803
6.43964
6.4204
6.40474
6.39288
6.38127
6.36763
6.35088
6.33089
6.30826
6.28404
6.25935
6.23518
6.20233
6.14963
6.07099
5.95617
5.76728
5.45041
533.188
517.883
5.37243
5.743
5.96872
6.10957
6.21179
6.28939
6.34598
6.38836
6.424
6.45112
6.46929
6.47872
6.48001
6.47415
6.46256
6.44738
6.43189
6.42041
6.41173
6.40251
6.39068
6.37532
6.35641
6.3346
6.31094
6.28653
6.26241
6.22857
6.17425
6.09374
5.97665
5.78441
5.46253
533.262
517.888
5.36969
5.73467
5.95609
6.09427
6.19486
6.27153
6.32833
6.37268
6.41085
6.44084
6.462
6.4744
6.47863
6.47571
6.46721
6.45542
6.44384
6.4364
6.43076
6.42379
6.41368
6.39964
6.38172
6.36065
6.33748
6.31331
6.28921
6.25438
6.19849
6.11618
5.99687
5.80134
5.47449
533.334
517.893
5.36677
5.72594
5.94284
6.07815
6.17691
6.25251
6.30951
6.35591
6.39674
6.42972
6.45401
6.46956
6.4769
6.47712
6.47189
6.46372
6.45628
6.4527
6.44994
6.44513
6.43666
6.42387
6.40691
6.38652
6.36378
6.33977
6.31571
6.27994
6.22254
6.13849
6.01701
5.81823
5.48641
533.406
517.898
5.36372
5.71683
5.92898
6.06119
6.15787
6.23217
6.28931
6.33786
6.38149
6.41767
6.44528
6.46414
6.47477
6.47831
6.47657
6.47223
6.46915
6.46927
6.46925
6.4665
6.45958
6.44798
6.43191
6.41215
6.38982
6.36612
6.34185
6.3051
6.24621
6.16047
6.03688
5.83489
5.49814
533.476
517.904
5.36055
5.70737
5.91452
6.04339
6.13773
6.21052
6.26772
6.3185
6.3651
6.40463
6.43573
6.45807
6.47215
6.47918
6.4811
6.4808
6.48224
6.48595
6.48859
6.48784
6.48245
6.47202
6.45683
6.43771
6.41584
6.39256
6.36792
6.33011
6.26975
6.18236
6.05667
5.85149
5.50981
533.546
517.909
5.35735
5.69761
5.89949
6.02474
6.11642
6.18744
6.24463
6.29773
6.34745
6.39054
6.42532
6.45131
6.469
6.47968
6.48543
6.48934
6.49534
6.50255
6.5078
6.50901
6.50513
6.49585
6.48154
6.46307
6.44167
6.41882
6.39372
6.35479
6.29295
6.20393
6.07618
5.86785
5.52128
533.615
517.915
5.35414
5.68756
5.8839
6.00525
6.09394
6.1629
6.21996
6.27542
6.32841
6.37524
6.4139
6.44375
6.46524
6.47976
6.48954
6.49785
6.50839
6.51903
6.52684
6.53001
6.52764
6.51954
6.50614
6.48835
6.46746
6.44504
6.41947
6.37938
6.31607
6.22543
6.09564
5.88416
5.53269
533.685
517.921
5.35089
5.67721
5.86775
5.98489
6.07024
6.13683
6.19364
6.2515
6.30787
6.35862
6.40136
6.43526
6.46076
6.47933
6.49337
6.50631
6.52129
6.53525
6.54557
6.55069
6.54985
6.54294
6.53046
6.51337
6.49301
6.47102
6.44493
6.40366
6.33886
6.24661
6.11478
5.90017
5.54384
533.753
517.927
5.34759
5.66655
5.85106
5.96369
6.04532
6.10922
6.16564
6.22585
6.28568
6.3405
6.38751
6.42568
6.45541
6.47827
6.49683
6.51466
6.53394
6.55114
6.56395
6.57101
6.57172
6.56606
6.55455
6.53822
6.51844
6.49691
6.47032
6.42787
6.3616
6.26776
6.13389
5.91615
5.55493
533.822
517.933
5.34421
5.6556
5.83383
5.94164
6.01917
6.0801
6.13603
6.19849
6.26178
6.32077
6.37221
6.41483
6.449
6.47638
6.4997
6.52265
6.54612
6.56651
6.58179
6.59082
6.59312
6.58873
6.57825
6.5627
6.5435
6.52242
6.49532
6.45169
6.38396
6.28853
6.15263
5.93178
5.56571
533.889
517.94
5.34079
5.64442
5.8161
5.91874
5.99173
6.04942
6.10492
6.16941
6.23612
6.29936
6.35535
6.40257
6.44136
6.47345
6.50175
6.52994
6.55756
6.58112
6.59892
6.61
6.61397
6.61096
6.60158
6.5869
6.56837
6.5478
6.52022
6.47544
6.40627
6.30926
6.17133
5.94736
5.57642
533.959
517.946
5.33745
5.6331
5.79795
5.89499
5.96293
6.01705
6.07225
6.13853
6.20869
6.27627
6.33694
6.38889
6.43243
6.4694
6.50287
6.53632
6.56803
6.59479
6.61516
6.62835
6.63408
6.63252
6.62432
6.61056
6.59272
6.57268
6.54462
6.4987
6.42812
6.32955
6.18961
5.96253
5.58677
534.026
517.953
5.33432
5.62177
5.77942
5.87038
5.93263
5.98268
6.03739
6.10562
6.17943
6.25151
6.31698
6.37378
6.4222
6.46421
6.50302
6.54165
6.57738
6.60735
6.63036
6.64579
6.65341
6.65345
6.64657
6.63386
6.61682
6.59737
6.56887
6.52185
6.44989
6.34979
6.20783
5.97764
5.59703
534.096
517.96
5.33157
5.61055
5.76064
5.84493
5.90079
5.94626
6.00037
6.07066
6.14833
6.2251
6.29549
6.35725
6.41067
6.45787
6.5022
6.54581
6.58545
6.61861
6.64432
6.66207
6.67169
6.67343
6.66796
6.65639
6.64022
6.62141
6.59252
6.54445
6.47115
6.36953
6.22557
5.99229
5.60688
534.164
517.968
5.32929
5.59957
5.7417
5.81867
5.86729
5.90751
5.96076
6.03331
6.11516
6.19689
6.27239
6.33923
6.39777
6.4503
6.50027
6.54867
6.59214
6.62849
6.65697
6.67715
6.68892
6.69254
6.68867
6.67841
6.66326
6.64517
6.61594
6.56686
6.49226
6.38916
6.24321
6.00683
5.61661
534.234
517.977
5.32752
5.58888
5.72271
5.7918
5.83223
5.86641
5.91843
5.99331
6.0796
6.16657
6.2474
6.31949
6.38328
6.44126
6.49693
6.54996
6.59719
6.63674
6.66804
6.69075
6.70479
6.71041
6.70825
6.69938
6.68531
6.66806
6.63862
6.58861
6.51278
6.40823
6.26031
6.02086
5.62589
534.302
517.986
5.32622
5.57852
5.70375
5.76435
5.79572
5.82295
5.87322
5.95033
6.04126
6.13375
6.22018
6.29772
6.36693
6.43048
6.49183
6.54941
6.60039
6.6432
6.67743
6.70281
6.71928
6.72709
6.72686
6.71966
6.70709
6.69055
6.6609
6.61005
6.53306
6.42711
6.27726
6.03474
5.63499
534.373
517.995
5.32532
5.56849
5.68496
5.73658
5.75798
5.77723
5.82502
5.90408
5.99976
6.09804
6.19035
6.27357
6.34839
6.41768
6.48462
6.54667
6.60142
6.64756
6.68482
6.71301
6.73207
6.74224
6.74414
6.73883
6.72795
6.71213
6.68231
6.63068
6.55261
6.44532
6.29356
6.04802
5.64356
534.442
518.005
5.3247
5.55882
5.66648
5.70874
5.71937
5.72978
5.77403
5.8545
5.95482
6.05906
6.1575
6.24668
6.32735
6.40259
6.47499
6.54148
6.60003
6.64961
6.69007
6.72124
6.74311
6.75588
6.76015
6.75699
6.74803
6.73307
6.70318
6.65087
6.57182
6.46326
6.30965
6.06111
5.65192
534.514
518.014
5.32426
5.54947
5.6484
5.68102
5.68015
5.68063
5.72034
5.8016
5.90632
6.01656
6.12133
6.2167
6.30346
6.38487
6.46263
6.53352
6.59594
6.64908
6.69287
6.72721
6.75206
6.76763
6.77447
6.77363
6.76674
6.75276
6.72291
6.67003
6.59009
6.48035
6.32495
6.07347
5.65966
534.582
518.024
5.32401
5.54049
5.63081
5.65367
5.64075
5.63048
5.66474
5.74574
5.85432
5.97041
6.08156
6.18328
6.27632
6.36408
6.44715
6.52253
6.58895
6.64582
6.69316
6.73088
6.75896
6.77757
6.78725
6.78898
6.78438
6.77156
6.74193
6.68863
6.60793
6.4971
6.33999
6.08563
5.66719
534.655
518.034
5.32394
5.53186
5.6137
5.62667
5.60124
5.57934
5.60708
5.68706
5.79902
5.9207
6.03818
6.1463
6.24573
6.33992
6.4283
6.50824
6.57881
6.63958
6.69064
6.73194
6.76343
6.78528
6.79797
6.80245
6.80027
6.78875
6.75948
6.70591
6.62458
6.51278
6.35405
6.0969
5.67397
534.723
518.043
5.32412
5.52361
5.59707
5.60011
5.56183
5.52769
5.54814
5.6263
5.74079
5.8676
5.99119
6.10567
6.21152
6.31215
6.40591
6.49055
6.56546
6.63035
6.68537
6.73049
6.76565
6.79099
6.80695
6.81442
6.81488
6.80486
6.77614
6.72248
6.6407
6.52805
6.36779
6.10792
5.68052
534.797
518.053
5.32457
5.51569
5.58087
5.5739
5.52249
5.47559
5.4879
5.56334
5.67978
5.81131
5.94078
6.06149
6.17372
6.2807
6.37982
6.46926
6.54867
6.61785
6.67704
6.72617
6.76519
6.7942
6.8136
6.82421
6.82744
6.81905
6.79104
6.73746
6.65536
6.542
6.38033
6.11786
5.68617
534.865
518.064
5.32531
5.50812
5.56507
5.54804
5.48324
5.42311
5.42659
5.4986
5.61639
5.75215
5.88719
6.01395
6.13246
6.24562
6.35009
6.44445
6.52853
6.60224
6.66582
6.71922
6.76235
6.79529
6.81837
6.83235
6.83856
6.83202
6.80493
6.75163
6.66939
6.55545
6.3925
6.12751
5.69154
534.94
518.075
5.32625
5.50082
5.5497
5.52263
5.44428
5.37048
5.36427
5.43203
5.55055
5.69014
5.83047
5.96309
6.08777
6.20686
6.31662
6.41594
6.50481
6.5832
6.65135
6.70919
6.75661
6.79364
6.82056
6.83805
6.84735
6.84279
6.81677
6.76391
6.68169
6.56733
6.40322
6.13586
5.69583
535.008
518.085
5.32729
5.49377
5.5348
5.49781
5.40585
5.31808
5.30109
5.36363
5.4822
5.62519
5.77053
5.90885
6.03958
6.16443
6.27949
6.38388
6.47773
6.561
6.63395
6.69647
6.74843
6.78979
6.82078
6.842
6.85459
6.85223
6.8275
6.77528
6.69328
6.57864
6.41351
6.14388
5.69983
535.082
518.096
5.3283
5.48693
5.52045
5.47381
5.36834
5.26624
5.23736
5.29355
5.4113
5.55716
5.70718
5.85095
5.98756
6.11801
6.23838
6.34795
6.4469
6.53522
6.61313
6.6805
6.73716
6.78301
6.81821
6.84328
6.85925
6.8592
6.83592
6.78453
6.7029
6.58816
6.42215
6.15043
5.70261
535.15
518.107
5.32923
5.48029
5.50669
5.45078
5.33208
5.21539
5.1736
5.22206
5.3379
5.48592
5.64024
5.78926
5.9316
6.06763
6.19342
6.30837
6.41265
6.50626
6.58938
6.66186
6.72345
6.77403
6.81365
6.84275
6.86232
6.8648
6.84316
6.79279
6.71172
6.59702
6.43029
6.1566
5.70508
535.225
518.117
5.33006
5.47385
5.49355
5.42887
5.29745
5.16628
5.11071
5.14993
5.26244
5.41165
5.56965
5.72355
5.87135
6.01289
6.14419
6.26465
6.37444
6.47351
6.56201
6.63975
6.70644
6.76189
6.8061
6.83946
6.8626
6.86772
6.8479
6.79874
6.71843
6.60396
6.43668
6.16121
5.70627
535.292
518.127
5.33086
5.46761
5.48098
5.40803
5.26455
5.11926
5.0493
5.0779
5.18559
5.33487
5.49586
5.65419
5.80718
5.95419
6.09114
6.21733
6.33287
6.43765
6.5318
6.61507
6.68711
6.74769
6.79674
6.83459
6.86138
6.86925
6.8514
6.80361
6.72419
6.6101
6.44241
6.1653
5.70706
535.367
518.137
5.33164
5.46156
5.46901
5.38835
5.23364
5.07485
4.99018
5.00684
5.10807
5.25604
5.41904
5.58116
5.73887
5.89125
6.03383
6.16585
6.28728
6.39794
6.49788
6.58683
6.66438
6.73023
6.78427
6.82671
6.85725
6.86804
6.85233
6.80611
6.7278
6.61427
6.44636
6.16781
5.70656
535.434
518.147
5.33246
5.45572
5.45757
5.36973
5.20467
5.03324
4.93398
4.93774
5.03099
5.17621
5.34012
5.50527
5.66716
5.82468
5.97305
6.11106
6.23858
6.35533
6.46131
6.55617
6.63946
6.71079
6.76998
6.81714
6.85156
6.86535
6.8519
6.80737
6.73028
6.61744
6.44943
6.1696
5.70551
535.509
518.158
5.33324
5.45004
5.44674
5.35239
5.17804
4.99502
4.88146
4.87144
4.95509
5.09594
5.25947
5.42665
5.59197
5.75424
5.90824
6.05231
6.18601
6.30895
6.42108
6.52196
6.61111
6.68805
6.75251
6.80448
6.84292
6.85991
6.84892
6.8063
6.73065
6.61869
6.45079
6.16989
5.70323
535.575
518.168
5.33397
5.44448
5.43644
5.33624
5.15375
4.9604
4.83321
4.80889
4.88153
5.0164
5.17819
5.34639
5.5144
5.68102
5.84053
5.99071
6.13076
6.26007
6.37852
6.48561
6.58077
6.66345
6.73327
6.79012
6.83264
6.8529
6.84445
6.80382
6.7297
6.61872
6.45103
6.16921
5.70022
535.651
518.178
5.3345
5.43897
5.42671
5.32156
5.13233
4.9301
4.79009
4.75114
4.81137
4.93847
5.0969
5.2648
5.43445
5.60464
5.76931
5.92545
6.07183
6.20759
6.33243
6.44582
6.54709
6.63563
6.71092
6.77273
6.81948
6.8432
6.83752
6.79909
6.7267
6.61691
6.44966
6.16714
5.69608
535.715
518.188
5.33482
5.4334
5.41737
5.30809
5.11359
4.90413
4.75247
4.69906
4.74596
4.86375
5.01727
5.18355
5.35382
5.52667
5.69606
5.85803
6.01074
6.15302
6.28438
6.40417
6.51165
6.60611
6.68691
6.75366
6.80465
6.83185
6.829
6.79285
6.72226
6.61374
6.44701
6.16394
5.69108
535.792
518.198
5.33482
5.4277
5.40841
5.29599
5.09791
4.8831
4.72116
4.65361
4.68635
4.79325
4.94009
5.10316
5.27267
5.44682
5.62017
5.78756
5.94641
6.09514
6.23306
6.35931
6.47306
6.5735
6.65988
6.73164
6.78699
6.81784
6.81799
6.78431
6.71572
6.60866
6.44267
6.1593
5.68492
535.856
518.207
5.33445
5.42167
5.39949
5.28476
5.08471
4.86654
4.6961
4.61532
4.63365
4.72854
4.8672
5.02558
5.19301
5.36719
5.54366
5.71603
5.8808
6.03588
6.1803
6.31305
6.4331
6.53951
6.63144
6.70816
6.76785
6.80235
6.80554
6.77437
6.70784
6.6023
6.43713
6.15358
5.67794
535.934
518.216
5.33361
5.41521
5.39057
5.2745
5.07431
4.85494
4.67795
4.58495
4.58862
4.67031
4.79916
4.95113
5.11484
5.28743
5.46582
5.64243
5.8127
5.9739
6.12469
6.26385
6.39022
6.50263
6.6001
6.68175
6.74583
6.78409
6.79043
6.7619
6.69755
6.59368
6.42951
6.14604
5.66955
535.997
518.226
5.33221
5.40807
5.38118
5.26452
5.06576
4.84741
4.66616
4.5626
4.55204
4.61995
4.73781
4.88201
5.04067
5.21035
5.38929
5.5693
5.74455
5.91156
6.06853
6.21397
6.34651
6.46488
6.56784
6.65432
6.72275
6.76476
6.77429
6.74844
6.68632
6.5842
6.4211
6.13783
5.66081
536.076
518.235
5.33012
5.40015
5.37131
5.25494
5.0594
4.84438
4.66122
4.54876
4.52425
4.57754
4.68308
4.81805
4.97023
5.1356
5.3132
5.49537
5.67486
5.84721
6.01006
6.16157
6.30015
6.42431
6.53266
6.62388
6.69656
6.74229
6.75501
6.73186
6.67201
6.57169
6.40981
6.12707
5.65024
536.139
518.243
5.32723
5.39114
5.36039
5.24483
5.05393
4.84449
4.66218
4.54328
4.50598
4.54436
4.63653
4.76105
4.90564
5.06571
5.24032
5.42349
5.60648
5.78367
5.95206
6.1094
6.25382
6.38363
6.49724
6.59315
6.67014
6.71956
6.73547
6.71508
6.6576
6.55918
6.39864
6.11653
5.63987
536.22
518.252
5.32345
5.38103
5.3485
5.23444
5.04967
4.84798
4.66919
4.54633
4.4975
4.52049
4.5977
4.70996
4.84535
4.99871
5.16867
5.35148
5.53707
5.71853
5.89203
6.05485
6.20482
6.34003
6.45869
6.55912
6.63994
6.69293
6.71196
6.6942
6.63897
6.54243
6.38329
6.10216
5.6266
536.282
518.26
5.31862
5.36948
5.33502
5.22273
5.0451
4.85296
4.68055
4.55712
4.49948
4.50791
4.56921
4.66752
4.79205
4.93738
5.10156
5.28261
5.47001
5.65527
5.83358
6.00167
6.15703
6.29751
6.42112
6.52602
6.61059
6.66711
6.68928
6.67428
6.62147
6.52691
6.36929
6.08918
5.6145
536.364
518.267
5.31267
5.35655
5.32022
5.21023
5.04092
4.85949
4.69572
4.57467
4.51104
4.50619
4.55093
4.63339
4.74485
4.88021
5.037
5.21397
5.40181
5.5901
5.77274
5.94573
6.10615
6.25159
6.37985
6.48883
6.57669
6.63634
6.66133
6.64886
6.59825
6.50561
6.34957
6.07094
5.59834
536.428
518.274
5.30538
5.34185
5.30347
5.19581
5.03521
4.86535
4.71228
4.59691
4.53101
4.51577
4.54491
4.61065
4.70718
4.83068
4.97863
5.14965
5.33674
5.52746
5.71416
5.8919
6.05729
6.20759
6.3404
6.45343
6.5446
6.60746
6.6354
6.6256
6.5774
6.48687
6.33259
6.05536
5.58414
536.512
518.28
5.29667
5.32558
5.28531
5.18051
5.02921
4.8714
4.72995
4.62209
4.55663
4.53383
4.5491
4.59792
4.67775
4.7869
4.92355
5.08612
5.27035
5.46234
5.65242
5.83452
6.00455
6.15944
6.29648
6.41314
6.50708
6.57268
6.60317
6.5957
6.54962
6.46101
6.3085
6.03319
5.56496
536.577
518.285
5.28624
5.30723
5.26499
5.16322
5.02149
4.87603
4.74686
4.64809
4.58577
4.55889
4.56344
4.59704
4.66008
4.75357
4.87722
5.0298
5.20887
5.40086
5.59374
5.77987
5.95435
6.11364
6.25478
6.37504
6.47183
6.54035
6.57359
6.56868
6.52498
6.43852
6.28794
6.01447
5.54842
536.663
518.289
5.27401
5.2871
5.24325
5.14522
5.01366
4.8807
4.76378
4.67437
4.61634
4.58749
4.5839
4.60429
4.65105
4.72783
4.83653
4.97689
5.1474
5.33726
5.53177
5.72135
5.89998
6.06348
6.20848
6.33194
6.43099
6.50183
6.53729
6.53449
6.49278
6.40824
6.25955
5.98841
5.5262
536.729
518.291
5.25958
5.26462
5.21924
5.12527
5.00424
4.88402
4.77956
4.70006
4.64755
4.61883
4.6099
4.61988
4.65224
4.7127
4.80564
4.93247
5.09243
5.27838
5.47343
5.66575
5.84799
6.01526
6.16381
6.29032
6.39169
6.46522
6.50327
6.50287
6.46343
6.38102
6.23443
5.96564
5.5067
536.821
518.291
5.24292
5.2403
5.19388
5.10475
4.99488
4.88759
4.79546
4.72571
4.67896
4.65135
4.63878
4.64045
4.66021
4.70487
4.78099
4.89227
5.03923
5.21828
5.41234
5.60674
5.79234
5.96326
6.1152
6.24453
6.34802
6.4231
6.46306
6.46463
6.42714
6.34669
6.20216
5.93606
5.4816
536.886
518.288
5.22363
5.21366
5.16626
5.08225
4.98388
4.8898
4.8103
4.75075
4.71056
4.68542
4.67128
4.66741
4.67701
4.70718
4.76651
4.86125
4.99394
5.16306
5.35424
5.54957
5.73776
5.91185
6.067
6.19924
6.30509
6.38177
6.42368
6.4273
6.39186
6.31347
6.17116
5.90806
5.45831
536.988
518.282
5.20226
5.18545
5.13748
5.0591
4.97256
4.8918
4.82487
4.77544
4.74204
4.72019
4.70605
4.69866
4.70018
4.71678
4.75814
4.83371
4.94909
5.10499
5.29175
5.48798
5.67916
5.85668
6.01503
6.14998
6.25791
6.33577
6.37944
6.38503
6.35169
6.27553
6.13577
5.87606
5.4315
537.044
518.271
5.17885
5.15543
5.10661
5.03368
4.95873
4.89126
4.83709
4.79822
4.77239
4.75517
4.74319
4.7352
4.73221
4.73844
4.76258
4.81616
4.90923
5.04671
5.2247
5.42072
5.61546
5.79746
5.96001
6.09845
6.20885
6.28802
6.33361
6.34118
6.30984
6.23582
6.09868
5.843
5.40508
537.166
518.256
5.15479
5.12472
5.07469
5.0073
4.94325
4.88854
4.84664
4.81797
4.7997
4.78774
4.7793
4.77309
4.76929
4.76995
4.78093
4.81266
4.87829
4.98881
5.1484
5.3399
5.53822
5.72642
5.89497
6.03844
6.15289
6.23517
6.28338
6.29397
6.26567
6.19484
6.06162
5.81139
5.38058
537.198
518.242
5.1308
5.09271
5.0403
4.97787
4.92357
4.88097
4.85098
4.83226
4.82153
4.81534
4.81151
4.80912
4.80797
4.80884
4.81473
4.83229
4.87272
4.95049
5.07854
5.25322
5.44917
5.64351
5.82081
5.97224
6.09281
6.17947
6.2306
6.24431
6.21913
6.15162
6.0226
5.7785
5.35652
537.346
518.231
5.10754
5.05971
5.00418
4.94609
4.90084
4.8694
4.85029
4.8406
4.83668
4.83575
4.83638
4.83808
4.84073
4.84492
4.85257
4.86724
4.89528
4.94787
5.04065
5.1843
5.36214
5.55201
5.73417
5.8944
6.02389
6.1177
6.17362
6.19183
6.17075
6.10737
5.98356
5.74725
5.33511
537.349
518.227
5.08378
5.02435
4.9651
4.91079
4.87363
4.85235
4.84332
4.84207
4.84459
4.84878
4.85386
4.85947
4.86578
4.8739
4.88629
4.90593
4.93587
4.9817
5.05494
5.17076
5.32112
5.49126
5.66409
5.82336
5.95663
6.05589
6.11715
6.13996
6.12349
6.06476
5.94631
5.71713
5.3131
537.525
518.228
5.05791
4.98686
4.92465
4.87416
4.84401
4.83149
4.83119
4.83725
4.84567
4.85498
4.86441
4.87344
4.88258
4.89375
4.91067
4.93795
4.97807
5.03239
5.10611
5.21055
5.33994
5.486
5.63831
5.78369
5.90904
6.00413
6.063
6.08406
6.06749
6.00961
5.89292
5.6679
5.27193
537.543
518.224
5.02677
4.94641
4.88297
4.83588
4.81126
4.80584
4.8129
4.82542
4.83985
4.85494
4.86916
4.8817
4.89319
4.90617
4.92592
4.96002
5.01301
5.08418
5.17222
5.28013
5.40027
5.52725
5.65631
5.77983
5.88801
5.97121
6.02241
6.03866
6.01957
5.96088
5.84396
5.62004
5.22708
537.787
518.206
4.99041
4.90566
4.84371
4.79898
4.77759
4.77642
4.78831
4.8058
4.82581
4.84697
4.86669
4.88336
4.89702
4.90999
4.92821
4.96208
5.02162
5.10934
5.21899
5.34221
5.46594
5.58452
5.69664
5.7982
5.88267
5.94365
5.97646
5.97876
5.94931
5.88321
5.76059
5.5328
5.14532
537.864
518.168
4.9506
4.86579
4.80624
4.76344
4.74315
4.74301
4.75654
4.77678
4.80107
4.828
4.85433
4.87733
4.89531
4.90854
4.92069
4.94047
4.98291
5.06233
5.18031
5.32268
5.46498
5.58984
5.69665
5.78801
5.86173
5.91214
5.93464
5.92752
5.88988
5.81667
5.68824
5.45927
5.08144
538.23
518.116
4.91002
4.83047
4.774
4.73299
4.71211
4.70986
4.72118
4.74041
4.76545
4.79529
4.82722
4.85846
4.88615
4.90785
4.92261
4.93289
4.94657
4.9811
5.05845
5.18682
5.34899
5.50788
5.63668
5.7301
5.79412
5.8343
5.85123
5.84272
5.80621
5.73622
5.61427
5.39688
5.03404
538.149
518.057
4.86988
4.79698
4.74534
4.70787
4.6871
4.68198
4.68897
4.70391
4.72533
4.75262
4.78417
4.81833
4.85321
4.88642
4.91517
4.93714
4.95101
4.95846
4.97156
5.01569
5.11529
5.26928
5.44324
5.59804
5.70941
5.77216
5.79334
5.78173
5.74158
5.67016
5.55147
5.34502
5.00012
538.547
518.002
4.83417
4.76854
4.72331
4.69181
4.67363
4.66717
4.67004
4.67959
4.69512
4.71635
4.74253
4.77292
4.80671
4.84287
4.87998
4.91651
4.95048
4.97818
4.99592
5.00504
5.0179
5.06098
5.15835
5.29955
5.45325
5.58377
5.66751
5.69933
5.68616
5.63389
5.53473
5.35226
5.02407
538.183
517.953
4.80026
4.74118
4.70392
4.68168
4.67081
4.66821
4.67131
4.67851
4.68986
4.70526
4.72475
4.74849
4.77652
4.80854
4.84381
4.88159
4.92163
4.96232
5.00015
5.03185
5.05595
5.0764
5.10755
5.16571
5.25845
5.37469
5.48601
5.56321
5.59165
5.57087
5.49823
5.34311
5.03706
538.42
517.912
4.77054
4.71972
4.69291
4.68192
4.68052
4.6844
4.6908
4.69881
4.70838
4.71938
4.73235
4.74841
4.76897
4.79508
4.82695
4.86358
4.90425
4.94777
4.9914
5.03318
5.07209
5.10834
5.14458
5.18635
5.24151
5.31589
5.4026
5.47835
5.51788
5.50983
5.45064
5.30986
5.01186
538.148
517.874
4.74097
4.70072
4.68924
4.69405
4.70579
4.71925
4.73225
4.74435
4.75482
4.76306
4.76966
4.77662
4.78715
4.8048
4.83215
4.8709
4.92011
4.97483
5.03083
5.08622
5.14086
5.19477
5.24697
5.29661
5.3442
5.39054
5.43263
5.46097
5.46354
5.43298
5.35862
5.20353
4.90913
538.871
517.839
4.70967
4.68718
4.70108
4.7283
4.75597
4.78048
4.80216
4.82055
4.83377
4.8405
4.84057
4.8355
4.82894
4.82645
4.83425
4.85784
4.89889
4.9536
5.01605
5.0815
5.14669
5.20863
5.26505
5.3145
5.35577
5.38729
5.40621
5.40818
5.38847
5.34173
5.25464
5.09257
4.81117
538.947
517.79
4.65865
4.66644
4.71813
4.77394
4.82122
4.86271
4.89974
4.93037
4.95341
4.96837
4.97579
4.97754
4.97681
4.97808
4.98603
5.00364
5.03128
5.0673
5.10912
5.15384
5.19923
5.24299
5.28265
5.31572
5.33978
5.35231
5.35065
5.3318
5.29229
5.22648
5.12198
4.95477
4.69998
539.995
517.594
4.54548
4.62001
4.70642
4.77613
4.83456
4.88574
4.9311
4.9716
5.00766
5.03956
5.06764
5.09238
5.11442
5.13453
5.15376
5.17275
5.19154
5.20987
5.22722
5.2434
5.25771
5.26889
5.27532
5.27549
5.26773
5.25013
5.22042
5.17584
5.11288
5.02669
4.91017
4.75342
4.54729
540.509
352.596
14.1662
14.3596
14.4372
14.4788
14.5116
14.5405
14.5658
14.5876
14.606
14.6214
14.6341
14.6442
14.6519
14.6576
14.6612
14.663
14.663
14.6612
14.6575
14.6523
14.6451
14.6358
14.6241
14.6095
14.5917
14.5702
14.5444
14.5139
14.4781
14.4368
14.3898
14.3382
14.2852
371.185
)
;
boundaryField
{
frontAndBack
{
blending binomial2;
n 2;
beta1 0.075;
type omegaWallFunction;
value nonuniform List<scalar>
1050
(
352.294
526.414
526.413
526.413
526.413
526.413
526.413
526.413
526.413
526.413
526.413
526.413
526.413
526.414
352.293
13.5401
22.9964
22.9932
22.9933
22.9931
22.9932
22.9932
22.9931
22.9932
22.9931
22.9931
22.9932
22.9931
22.9949
13.546
13.5644
23.0019
22.9959
22.9961
22.9959
22.996
22.996
22.9959
22.996
22.9959
22.9959
22.996
22.9958
22.9993
13.5736
13.5915
23.0081
22.9989
22.9993
22.999
22.999
22.9991
22.999
22.999
22.9989
22.9989
22.999
22.9987
23.0042
13.6019
13.6206
23.015
23.0021
23.0027
23.0023
23.0024
23.0025
23.0023
23.0024
23.0023
23.0022
23.0023
23.0019
23.0096
13.63
13.6504
23.0223
23.0056
23.0064
23.0061
23.0062
23.0063
23.0061
23.0062
23.0061
23.0059
23.0059
23.0054
23.0155
13.6573
13.6801
23.0299
23.0095
23.0105
23.0102
23.0104
23.0105
23.0103
23.0105
23.0103
23.01
23.01
23.0092
23.0219
13.6831
13.7087
23.0379
23.0137
23.0151
23.0149
23.0151
23.0153
23.015
23.0152
23.0149
23.0146
23.0145
23.0134
23.0286
13.7071
13.7357
23.0462
23.0183
23.0201
23.0199
23.0203
23.0204
23.0201
23.0203
23.02
23.0196
23.0194
23.0179
23.0355
13.7291
13.7609
23.0544
23.0231
23.0254
23.0253
23.0257
23.0259
23.0256
23.0258
23.0255
23.025
23.0246
23.0228
23.0426
13.7489
13.7839
23.0627
23.0282
23.0309
23.0309
23.0315
23.0316
23.0313
23.0315
23.0312
23.0305
23.0301
23.0278
23.0496
13.7664
13.8046
23.0707
23.0333
23.0365
23.0365
23.0373
23.0375
23.0372
23.0374
23.037
23.0361
23.0356
23.0329
23.0565
13.7815
13.8229
23.0783
23.0384
23.0421
23.0422
23.0431
23.0432
23.043
23.0431
23.0428
23.0417
23.0411
23.038
23.0631
13.7943
13.8387
23.0855
23.0435
23.0476
23.0476
23.0488
23.0489
23.0486
23.0488
23.0484
23.0471
23.0464
23.0429
23.0693
13.8049
13.852
23.0921
23.0483
23.0528
23.0528
23.0542
23.0542
23.054
23.0541
23.0537
23.0523
23.0515
23.0477
23.0749
13.813
13.8627
23.098
23.0529
23.0577
23.0577
23.0593
23.0593
23.0591
23.0591
23.0587
23.057
23.0562
23.0522
23.0799
13.8189
13.8708
23.103
23.0572
23.0622
23.0621
23.0639
23.0639
23.0638
23.0637
23.0633
23.0614
23.0606
23.0564
23.0842
13.8224
13.8764
23.1071
23.0611
23.0662
23.0661
23.0681
23.0681
23.068
23.0679
23.0674
23.0653
23.0644
23.0602
23.0877
13.8237
13.8793
23.1101
23.0645
23.0698
23.0696
23.0718
23.0718
23.0717
23.0715
23.071
23.0687
23.0678
23.0635
23.0904
13.8227
13.8795
23.112
23.0674
23.0728
23.0726
23.0749
23.0749
23.0748
23.0746
23.074
23.0716
23.0707
23.0663
23.0921
13.8194
13.8771
23.1127
23.0698
23.0753
23.0749
23.0774
23.0774
23.0773
23.0771
23.0764
23.0738
23.0729
23.0686
23.093
13.814
13.8719
23.1121
23.0714
23.077
23.0766
23.0793
23.0792
23.0792
23.0789
23.0782
23.0754
23.0745
23.0702
23.0928
13.8064
13.8637
23.1103
23.0724
23.0781
23.0775
23.0803
23.0802
23.0802
23.0799
23.0792
23.0763
23.0754
23.071
23.0917
13.7964
13.8526
23.1071
23.0725
23.0783
23.0775
23.0805
23.0804
23.0805
23.0801
23.0793
23.0762
23.0754
23.0711
23.0895
13.7842
13.8384
23.1028
23.0717
23.0776
23.0767
23.0798
23.0797
23.0797
23.0793
23.0784
23.0753
23.0745
23.0703
23.0864
13.7698
13.8211
23.0973
23.07
23.0759
23.0748
23.078
23.0779
23.0779
23.0775
23.0766
23.0733
23.0727
23.0687
23.0824
13.7532
13.8006
23.091
23.0674
23.0731
23.0718
23.0751
23.075
23.0751
23.0745
23.0736
23.0704
23.0699
23.0661
23.0777
13.7345
13.777
23.0843
23.064
23.0696
23.068
23.0712
23.0711
23.0712
23.0707
23.0697
23.0665
23.0663
23.0628
23.0726
13.7139
13.7508
23.0778
23.0604
23.0657
23.064
23.067
23.0669
23.0669
23.0664
23.0655
23.0625
23.0625
23.0593
23.0675
13.6916
13.7226
23.0728
23.058
23.0628
23.061
23.0637
23.0636
23.0636
23.0631
23.0623
23.0596
23.0598
23.0569
23.0638
13.6683
13.6934
23.0719
23.0592
23.0638
23.062
23.0642
23.0641
23.0641
23.0637
23.0629
23.0608
23.0611
23.0581
23.0641
13.6454
13.6661
23.0797
23.0688
23.0733
23.0718
23.0734
23.0733
23.0732
23.0729
23.0723
23.0706
23.0709
23.0676
23.073
13.6258
13.6457
23.1022
23.0929
23.0971
23.096
23.0972
23.0971
23.097
23.0967
23.0963
23.0951
23.0952
23.0916
23.0969
13.6156
13.638
23.1412
23.134
23.1375
23.1372
23.1379
23.1377
23.1377
23.1375
23.1373
23.1365
23.1363
23.1329
23.138
13.6219
355.782
531.558
531.484
531.532
531.551
531.551
531.549
531.549
531.548
531.55
531.548
531.527
531.465
531.555
355.88
352.602
526.856
526.84
526.843
526.842
526.843
526.842
526.842
526.842
526.844
526.843
526.846
526.841
526.842
352.596
14.153
24.1778
24.1398
24.1476
24.1438
24.1462
24.1422
24.144
24.1422
24.148
24.146
24.1573
24.141
24.1341
14.1662
14.3333
24.4067
24.383
24.3927
24.3895
24.3921
24.3881
24.3899
24.3881
24.3938
24.3915
24.4023
24.3861
24.3737
14.3596
14.4007
24.4555
24.4465
24.4571
24.4543
24.4569
24.4531
24.4548
24.4529
24.4584
24.4559
24.4655
24.4505
24.4322
14.4372
14.4345
24.4775
24.4738
24.4849
24.4818
24.4845
24.4807
24.4824
24.4806
24.4861
24.4836
24.4933
24.4789
24.4565
14.4788
14.4622
24.4922
24.4897
24.5015
24.498
24.5009
24.4971
24.4987
24.4969
24.5024
24.5003
24.5102
24.4973
24.4723
14.5116
14.4889
24.5012
24.4982
24.51
24.5061
24.5092
24.5054
24.5069
24.5052
24.5106
24.5089
24.5191
24.5082
24.4823
14.5405
14.5145
24.5055
24.501
24.5124
24.508
24.5112
24.5074
24.5088
24.5072
24.5125
24.5113
24.5217
24.513
24.4874
14.5658
14.5382
24.5061
24.4994
24.5101
24.5052
24.5084
24.5047
24.5059
24.5045
24.5097
24.5089
24.5197
24.5131
24.4887
14.5876
14.5597
24.5036
24.4946
24.5042
24.4989
24.5021
24.4984
24.4995
24.4981
24.5034
24.503
24.5141
24.5096
24.4867
14.606
14.5788
24.4985
24.4871
24.4957
24.4899
24.4932
24.4894
24.4904
24.4891
24.4943
24.4943
24.5059
24.5033
24.4822
14.6214
14.5955
24.4913
24.4776
24.4852
24.4789
24.4821
24.4783
24.4792
24.478
24.4832
24.4836
24.4956
24.4947
24.4756
14.6341
14.6099
24.4822
24.4665
24.4731
24.4665
24.4697
24.4657
24.4666
24.4655
24.4707
24.4714
24.4837
24.4846
24.4674
14.6442
14.6223
24.4717
24.4542
24.4601
24.453
24.4561
24.4521
24.4529
24.4518
24.4571
24.4581
24.4709
24.4732
24.458
14.6519
14.6326
24.46
24.4411
24.4463
24.4389
24.4419
24.4378
24.4385
24.4375
24.4428
24.4441
24.4572
24.461
24.4476
14.6576
14.641
24.4472
24.4273
24.4321
24.4243
24.4272
24.4231
24.4237
24.4228
24.428
24.4296
24.443
24.4482
24.4366
14.6612
14.6476
24.4336
24.4131
24.4176
24.4095
24.4123
24.4081
24.4086
24.4078
24.413
24.4149
24.4285
24.4351
24.425
14.663
14.6525
24.4192
24.3987
24.4029
24.3946
24.3973
24.393
24.3935
24.3927
24.3979
24.4
24.4138
24.4217
24.4131
14.663
14.6557
24.4039
24.3839
24.3881
24.3796
24.3822
24.3779
24.3783
24.3776
24.3828
24.385
24.3988
24.4081
24.4007
14.6612
14.6571
24.3877
24.3686
24.3728
24.3641
24.3666
24.3624
24.3627
24.3621
24.3671
24.3695
24.3832
24.3939
24.3877
14.6575
14.6567
24.3703
24.3528
24.3569
24.3482
24.3505
24.3464
24.3467
24.3461
24.3509
24.3535
24.3669
24.379
24.3738
14.6523
14.6547
24.3517
24.3361
24.3401
24.3316
24.3337
24.3298
24.33
24.3294
24.334
24.3367
24.3496
24.3631
24.3588
14.6451
14.6503
24.3314
24.3184
24.3223
24.3139
24.3158
24.3121
24.3123
24.3118
24.316
24.3188
24.331
24.3457
24.3421
14.6358
14.6432
24.309
24.2992
24.3028
24.2947
24.2965
24.293
24.2932
24.2928
24.2966
24.2993
24.3107
24.3264
24.3231
14.6241
14.6327
24.2843
24.2781
24.2813
24.2737
24.2752
24.2722
24.2722
24.2719
24.2752
24.2779
24.2881
24.3046
24.3012
14.6095
14.6179
24.257
24.2548
24.2573
24.2504
24.2516
24.2491
24.249
24.2488
24.2515
24.254
24.2627
24.2795
24.2756
14.5917
14.5982
24.2271
24.229
24.2305
24.2246
24.2255
24.2235
24.2234
24.2233
24.2253
24.2276
24.2345
24.2507
24.246
14.5702
14.573
24.1953
24.2009
24.2013
24.1966
24.1971
24.1958
24.1956
24.1957
24.1969
24.1988
24.2038
24.2183
24.2128
14.5444
14.5417
24.1638
24.172
24.1714
24.1681
24.1683
24.1676
24.1674
24.1675
24.168
24.1695
24.1724
24.184
24.1777
14.5139
14.5038
24.1369
24.1461
24.1451
24.1434
24.1435
24.1432
24.1431
24.1432
24.1432
24.144
24.1451
24.1525
24.1456
14.4781
14.4589
24.1215
24.1301
24.1297
24.1293
24.1295
24.1295
24.1295
24.1295
24.1293
24.1293
24.129
24.1319
24.1245
14.4368
14.4066
24.1241
24.1313
24.1323
24.1328
24.1332
24.1332
24.1335
24.1332
24.1331
24.1323
24.1313
24.1303
24.1231
14.3898
14.348
24.1463
24.1527
24.155
24.1559
24.1566
24.1565
24.1569
24.1564
24.1564
24.1552
24.1539
24.1508
24.1443
14.3382
14.2865
24.1855
24.1915
24.1949
24.196
24.1968
24.1965
24.197
24.1965
24.1966
24.1951
24.1936
24.1894
24.1844
14.2852
370.977
555.589
555.764
555.891
555.923
555.948
555.939
555.953
555.937
555.943
555.9
555.857
555.712
555.6
371.185
)
;
}
topAndBottom
{
blending binomial2;
n 2;
beta1 0.075;
type omegaWallFunction;
value nonuniform List<scalar>
10500
(
352.293
516.954
516.965
516.979
516.996
517.014
517.032
517.05
517.065
517.081
517.095
517.11
517.125
517.141
517.156
517.172
517.188
517.205
517.221
517.238
517.255
517.271
517.288
517.305
517.321
517.338
517.354
517.37
517.387
517.402
517.418
517.434
517.449
517.464
517.479
517.494
517.508
517.522
517.536
517.55
517.564
517.577
517.59
517.603
517.615
517.627
517.639
517.651
517.663
517.674
517.685
517.695
517.706
517.716
517.726
517.736
517.745
517.754
517.763
517.771
517.779
517.787
517.795
517.802
517.809
517.816
517.823
517.829
517.835
517.841
517.847
517.852
517.858
517.863
517.868
517.873
517.878
517.883
517.888
517.893
517.898
517.904
517.909
517.915
517.921
517.927
517.933
517.94
517.946
517.953
517.96
517.968
517.977
517.986
517.995
518.005
518.014
518.024
518.034
518.043
518.053
518.064
518.075
518.085
518.096
518.107
518.117
518.127
518.137
518.147
518.158
518.168
518.178
518.188
518.198
518.207
518.216
518.226
518.235
518.243
518.252
518.26
518.267
518.274
518.28
518.285
518.289
518.291
518.291
518.288
518.282
518.271
518.256
518.242
518.231
518.227
518.228
518.224
518.206
518.168
518.116
518.057
518.002
517.953
517.912
517.874
517.839
517.79
517.594
352.596
13.546
4.16215
4.22007
4.27373
4.3273
4.37731
4.42133
4.46148
4.49653
4.53053
4.56168
4.59303
4.62287
4.65284
4.68187
4.71071
4.7389
4.7667
4.79399
4.82078
4.84705
4.87269
4.89769
4.92201
4.94572
4.9686
4.99075
5.01222
5.03301
5.05322
5.07286
5.09204
5.11067
5.12843
5.14551
5.16192
5.1777
5.19288
5.20739
5.22135
5.23467
5.24741
5.25952
5.27105
5.28195
5.29226
5.30197
5.31109
5.31965
5.32767
5.33515
5.34212
5.34858
5.35454
5.35999
5.36494
5.36937
5.37329
5.3767
5.37959
5.38199
5.38393
5.38549
5.38671
5.38764
5.38829
5.38865
5.38873
5.38854
5.38794
5.38691
5.38552
5.38379
5.38183
5.3797
5.37742
5.375
5.37243
5.36969
5.36677
5.36372
5.36055
5.35735
5.35414
5.35089
5.34759
5.34421
5.34079
5.33745
5.33432
5.33157
5.32929
5.32752
5.32622
5.32532
5.3247
5.32426
5.32401
5.32394
5.32412
5.32457
5.32531
5.32625
5.32729
5.3283
5.32923
5.33006
5.33086
5.33164
5.33246
5.33324
5.33397
5.3345
5.33482
5.33482
5.33445
5.33361
5.33221
5.33012
5.32723
5.32345
5.31862
5.31267
5.30538
5.29667
5.28624
5.27401
5.25958
5.24292
5.22363
5.20226
5.17885
5.15479
5.1308
5.10754
5.08378
5.05791
5.02677
4.99041
4.9506
4.91002
4.86988
4.83417
4.80026
4.77054
4.74097
4.70967
4.65865
4.54548
14.1662
13.5736
4.25797
4.35671
4.44455
4.52684
4.60035
4.66314
4.71994
4.76919
4.81671
4.85993
4.90292
4.94336
4.98349
5.0219
5.05969
5.09626
5.13207
5.16695
5.20102
5.23425
5.26653
5.2978
5.32799
5.35733
5.38547
5.41246
5.43843
5.46337
5.48742
5.51061
5.53317
5.55518
5.57593
5.59579
5.61472
5.63271
5.64981
5.666
5.68135
5.6958
5.70942
5.72216
5.73408
5.74513
5.75537
5.76477
5.77339
5.78123
5.78832
5.79467
5.80032
5.80527
5.80954
5.81311
5.816
5.81821
5.81975
5.82063
5.82086
5.82047
5.81952
5.81807
5.81616
5.81384
5.81111
5.80795
5.80434
5.80026
5.79566
5.79052
5.78492
5.77886
5.77242
5.76561
5.75845
5.75092
5.743
5.73467
5.72594
5.71683
5.70737
5.69761
5.68756
5.67721
5.66655
5.6556
5.64442
5.6331
5.62177
5.61055
5.59957
5.58888
5.57852
5.56849
5.55882
5.54947
5.54049
5.53186
5.52361
5.51569
5.50812
5.50082
5.49377
5.48693
5.48029
5.47385
5.46761
5.46156
5.45572
5.45004
5.44448
5.43897
5.4334
5.4277
5.42167
5.41521
5.40807
5.40015
5.39114
5.38103
5.36948
5.35655
5.34185
5.32558
5.30723
5.2871
5.26462
5.2403
5.21366
5.18545
5.15543
5.12472
5.09271
5.05971
5.02435
4.98686
4.94641
4.90566
4.86579
4.83047
4.79698
4.76854
4.74118
4.71972
4.70072
4.68718
4.66644
4.62001
14.3596
13.6019
4.34364
4.47457
4.58769
4.68811
4.77512
4.84822
4.91424
4.97159
5.02669
5.07683
5.12616
5.17242
5.21786
5.26117
5.30351
5.34432
5.38416
5.42289
5.46072
5.49766
5.53365
5.56856
5.60213
5.6349
5.6665
5.69667
5.72559
5.75325
5.77978
5.80517
5.82952
5.85275
5.8747
5.8956
5.91535
5.93401
5.95159
5.96813
5.98365
5.99813
6.01162
6.0241
6.03561
6.04614
6.05572
6.06435
6.07208
6.07889
6.08484
6.08993
6.09418
6.09762
6.10026
6.10211
6.10317
6.10346
6.10299
6.1018
6.0999
6.09733
6.09412
6.09033
6.08599
6.08114
6.07576
6.06986
6.06342
6.05643
6.04888
6.04077
6.03212
6.02292
6.0132
6.00294
5.99213
5.98073
5.96872
5.95609
5.94284
5.92898
5.91452
5.89949
5.8839
5.86775
5.85106
5.83383
5.8161
5.79795
5.77942
5.76064
5.7417
5.72271
5.70375
5.68496
5.66648
5.6484
5.63081
5.6137
5.59707
5.58087
5.56507
5.5497
5.5348
5.52045
5.50669
5.49355
5.48098
5.46901
5.45757
5.44674
5.43644
5.42671
5.41737
5.40841
5.39949
5.39057
5.38118
5.37131
5.36039
5.3485
5.33502
5.32022
5.30347
5.28531
5.26499
5.24325
5.21924
5.19388
5.16626
5.13748
5.10661
5.07469
5.0403
5.00418
4.9651
4.92465
4.88297
4.84371
4.80624
4.774
4.74534
4.72331
4.70392
4.69291
4.68924
4.70108
4.71813
4.70642
14.4372
13.63
4.41959
4.57295
4.70129
4.80948
4.90118
4.97775
5.04711
5.10786
5.16607
5.21929
5.27122
5.31995
5.36749
5.41279
5.45691
5.49944
5.54091
5.58127
5.6208
5.65958
5.69773
5.7351
5.77092
5.80558
5.83868
5.87037
5.90064
5.92959
5.95724
5.98363
6.00878
6.03265
6.05524
6.07667
6.09686
6.11589
6.13376
6.15051
6.16615
6.18068
6.19415
6.20653
6.21787
6.22817
6.23745
6.24572
6.25302
6.25934
6.26471
6.26916
6.27271
6.27536
6.27715
6.27807
6.27816
6.27743
6.27591
6.27363
6.27061
6.2669
6.2625
6.25746
6.25181
6.24555
6.2387
6.23126
6.22323
6.21462
6.20545
6.1957
6.18537
6.17444
6.16289
6.15068
6.13775
6.12406
6.10957
6.09427
6.07815
6.06119
6.04339
6.02474
6.00525
5.98489
5.96369
5.94164
5.91874
5.89499
5.87038
5.84493
5.81867
5.7918
5.76435
5.73658
5.70874
5.68102
5.65367
5.62667
5.60011
5.5739
5.54804
5.52263
5.49781
5.47381
5.45078
5.42887
5.40803
5.38835
5.36973
5.35239
5.33624
5.32156
5.30809
5.29599
5.28476
5.2745
5.26452
5.25494
5.24483
5.23444
5.22273
5.21023
5.19581
5.18051
5.16322
5.14522
5.12527
5.10475
5.08225
5.0591
5.03368
5.0073
4.97787
4.94609
4.91079
4.87416
4.83588
4.79898
4.76344
4.73299
4.70787
4.69181
4.68168
4.68192
4.69405
4.7283
4.77394
4.77613
14.4788
13.6573
4.48616
4.65321
4.78841
4.89734
4.98884
5.06548
5.13528
5.19708
5.25616
5.31053
5.36329
5.41294
5.46119
5.50724
5.55205
5.5953
5.63753
5.6787
5.71916
5.75905
5.79877
5.83744
5.8745
5.91028
5.94442
5.97721
6.00851
6.03846
6.06707
6.09434
6.12031
6.14495
6.1683
6.1904
6.21126
6.23091
6.24935
6.26662
6.28273
6.2977
6.31153
6.32425
6.33587
6.3464
6.35588
6.3643
6.37169
6.37807
6.38345
6.38785
6.39129
6.3938
6.39538
6.39607
6.39587
6.39483
6.39296
6.39033
6.38693
6.38281
6.37799
6.37248
6.36631
6.35947
6.35198
6.34383
6.33506
6.32568
6.31573
6.3052
6.29408
6.28232
6.26988
6.25669
6.24266
6.22772
6.21179
6.19486
6.17691
6.15787
6.13773
6.11642
6.09394
6.07024
6.04532
6.01917
5.99173
5.96293
5.93263
5.90079
5.86729
5.83223
5.79572
5.75798
5.71937
5.68015
5.64075
5.60124
5.56183
5.52249
5.48324
5.44428
5.40585
5.36834
5.33208
5.29745
5.26455
5.23364
5.20467
5.17804
5.15375
5.13233
5.11359
5.09791
5.08471
5.07431
5.06576
5.0594
5.05393
5.04967
5.0451
5.04092
5.03521
5.02921
5.02149
5.01366
5.00424
4.99488
4.98388
4.97256
4.95873
4.94325
4.92357
4.90084
4.87363
4.84401
4.81126
4.77759
4.74315
4.71211
4.6871
4.67363
4.67081
4.68052
4.70579
4.75597
4.82122
4.83456
14.5116
13.6831
4.5437
4.7178
4.85445
4.96071
5.05028
5.12587
5.19506
5.25691
5.31593
5.37054
5.42333
5.47317
5.52151
5.56776
5.61276
5.65629
5.69886
5.74045
5.78139
5.82181
5.8621
5.90144
5.93926
5.97584
6.01081
6.04451
6.07672
6.10759
6.1371
6.16526
6.1921
6.2176
6.24181
6.26472
6.28638
6.3068
6.32599
6.34398
6.36077
6.37637
6.39079
6.40406
6.41619
6.4272
6.43711
6.44593
6.45369
6.46039
6.46605
6.47069
6.47434
6.477
6.47871
6.47947
6.47932
6.4783
6.47643
6.47378
6.47035
6.4662
6.46133
6.45574
6.44945
6.44244
6.43473
6.4263
6.4172
6.40746
6.39713
6.38623
6.37473
6.3626
6.34977
6.33613
6.32159
6.30605
6.28939
6.27153
6.25251
6.23217
6.21052
6.18744
6.1629
6.13683
6.10922
6.0801
6.04942
6.01705
5.98268
5.94626
5.90751
5.86641
5.82295
5.77723
5.72978
5.68063
5.63048
5.57934
5.52769
5.47559
5.42311
5.37048
5.31808
5.26624
5.21539
5.16628
5.11926
5.07485
5.03324
4.99502
4.9604
4.9301
4.90413
4.8831
4.86654
4.85494
4.84741
4.84438
4.84449
4.84798
4.85296
4.85949
4.86535
4.8714
4.87603
4.8807
4.88402
4.88759
4.8898
4.8918
4.89126
4.88854
4.88097
4.8694
4.85235
4.83149
4.80584
4.77642
4.74301
4.70986
4.68198
4.66717
4.66821
4.6844
4.71925
4.78048
4.86271
4.88574
14.5405
13.7071
4.5927
4.76918
4.90418
5.00633
5.09354
5.16757
5.23563
5.29691
5.35524
5.40945
5.4617
5.51115
5.55907
5.60503
5.64979
5.69317
5.73567
5.77724
5.81819
5.85855
5.89849
5.93775
5.97582
6.01281
6.04827
6.08261
6.1155
6.14708
6.17735
6.20628
6.23391
6.26022
6.28524
6.30893
6.33138
6.35259
6.37254
6.39126
6.40874
6.425
6.44005
6.45391
6.46659
6.47812
6.48852
6.49779
6.50597
6.51305
6.51907
6.52403
6.52797
6.53089
6.53282
6.53379
6.5338
6.53292
6.53117
6.52864
6.52533
6.5213
6.51655
6.51108
6.50488
6.49796
6.4903
6.4819
6.47278
6.46299
6.45261
6.44168
6.43019
6.41813
6.4054
6.39193
6.37759
6.36231
6.34598
6.32833
6.30951
6.28931
6.26772
6.24463
6.21996
6.19364
6.16564
6.13603
6.10492
6.07225
6.03739
6.00037
5.96076
5.91843
5.87322
5.82502
5.77403
5.72034
5.66474
5.60708
5.54814
5.4879
5.42659
5.36427
5.30109
5.23736
5.1736
5.11071
5.0493
4.99018
4.93398
4.88146
4.83321
4.79009
4.75247
4.72116
4.6961
4.67795
4.66616
4.66122
4.66218
4.66919
4.68055
4.69572
4.71228
4.72995
4.74686
4.76378
4.77956
4.79546
4.8103
4.82487
4.83709
4.84664
4.85098
4.85029
4.84332
4.83119
4.8129
4.78831
4.75654
4.72118
4.68897
4.67004
4.67131
4.6908
4.73225
4.80216
4.89974
4.9311
14.5658
13.7291
4.63371
4.80938
4.94091
5.03831
5.12289
5.19487
5.26127
5.3213
5.37831
5.43144
5.48252
5.53097
5.5779
5.623
5.66698
5.70971
5.75163
5.79268
5.83314
5.87293
5.91215
5.95052
5.98801
6.02489
6.06035
6.0949
6.1282
6.1602
6.19097
6.22046
6.24871
6.27568
6.3014
6.32579
6.34894
6.37086
6.39151
6.41091
6.42905
6.44594
6.46159
6.47601
6.48923
6.50127
6.51214
6.52187
6.53047
6.53795
6.54435
6.54967
6.55395
6.55721
6.55948
6.56076
6.56107
6.56049
6.55903
6.55679
6.5538
6.55012
6.54575
6.5407
6.53495
6.52851
6.52137
6.51355
6.50504
6.49582
6.48605
6.47577
6.46502
6.45379
6.44204
6.42969
6.41662
6.40282
6.38836
6.37268
6.35591
6.33786
6.3185
6.29773
6.27542
6.2515
6.22585
6.19849
6.16941
6.13853
6.10562
6.07066
6.03331
5.99331
5.95033
5.90408
5.8545
5.8016
5.74574
5.68706
5.6263
5.56334
5.4986
5.43203
5.36363
5.29355
5.22206
5.14993
5.0779
5.00684
4.93774
4.87144
4.80889
4.75114
4.69906
4.65361
4.61532
4.58495
4.5626
4.54876
4.54328
4.54633
4.55712
4.57467
4.59691
4.62209
4.64809
4.67437
4.70006
4.72571
4.75075
4.77544
4.79822
4.81797
4.83226
4.8406
4.84207
4.83725
4.82542
4.8058
4.77678
4.74041
4.70391
4.67959
4.67851
4.69881
4.74435
4.82055
4.93037
4.9716
14.5876
13.7489
4.66734
4.83999
4.96688
5.05913
5.14068
5.20995
5.27395
5.33192
5.38682
5.43807
5.48724
5.53394
5.57918
5.62275
5.66533
5.70678
5.74757
5.78755
5.82702
5.86582
5.90403
5.94143
5.9781
6.01402
6.04884
6.08298
6.11631
6.14838
6.17937
6.20915
6.2378
6.26527
6.29158
6.31658
6.34036
6.36293
6.38425
6.40432
6.42312
6.44066
6.45692
6.47196
6.48575
6.49836
6.50978
6.52005
6.52919
6.5372
6.54413
6.54998
6.5548
6.55862
6.56149
6.56344
6.5644
6.5645
6.56373
6.56223
6.56002
6.55718
6.5537
6.54963
6.54495
6.53965
6.53374
6.52732
6.52043
6.51282
6.50468
6.49609
6.48711
6.47779
6.4681
6.45798
6.44733
6.43605
6.424
6.41085
6.39674
6.38149
6.3651
6.34745
6.32841
6.30787
6.28568
6.26178
6.23612
6.20869
6.17943
6.14833
6.11516
6.0796
6.04126
5.99976
5.95482
5.90632
5.85432
5.79902
5.74079
5.67978
5.61639
5.55055
5.4822
5.4113
5.3379
5.26244
5.18559
5.10807
5.03099
4.95509
4.88153
4.81137
4.74596
4.68635
4.63365
4.58862
4.55204
4.52425
4.50598
4.4975
4.49948
4.51104
4.53101
4.55663
4.58577
4.61634
4.64755
4.67896
4.71056
4.74204
4.77239
4.7997
4.82153
4.83668
4.84459
4.84567
4.83985
4.82581
4.80107
4.76545
4.72533
4.69512
4.68986
4.70838
4.75482
4.83377
4.95341
5.00766
14.606
13.7664
4.69419
4.86228
4.98368
5.07039
5.14823
5.2139
5.27453
5.32944
5.38127
5.4297
5.47606
5.52017
5.56292
5.60422
5.64469
5.68422
5.72327
5.76166
5.79968
5.83711
5.87409
5.9104
5.94616
5.98124
6.01552
6.0492
6.08203
6.11381
6.14466
6.17446
6.20326
6.23103
6.25788
6.2835
6.30792
6.33119
6.35326
6.37411
6.3937
6.41205
6.42912
6.44497
6.45958
6.47301
6.48526
6.49637
6.50636
6.51525
6.52307
6.52985
6.53563
6.54046
6.54441
6.54764
6.5499
6.55136
6.55198
6.55193
6.55121
6.54995
6.54814
6.54583
6.543
6.53965
6.53575
6.53128
6.52618
6.5204
6.51409
6.50735
6.50027
6.49294
6.48535
6.47749
6.46925
6.46052
6.45112
6.44084
6.42972
6.41767
6.40463
6.39054
6.37524
6.35862
6.3405
6.32077
6.29936
6.27627
6.25151
6.2251
6.19689
6.16657
6.13375
6.09804
6.05906
6.01656
5.97041
5.9207
5.8676
5.81131
5.75215
5.69014
5.62519
5.55716
5.48592
5.41165
5.33487
5.25604
5.17621
5.09594
5.0164
4.93847
4.86375
4.79325
4.72854
4.67031
4.61995
4.57754
4.54436
4.52049
4.50791
4.50619
4.51577
4.53383
4.55889
4.58749
4.61883
4.65135
4.68542
4.72019
4.75517
4.78774
4.81534
4.83575
4.84878
4.85498
4.85494
4.84697
4.828
4.79529
4.75262
4.71635
4.70526
4.71938
4.76306
4.8405
4.96837
5.03956
14.6214
13.7815
4.7148
4.87728
4.99248
5.07315
5.14631
5.20726
5.26333
5.31402
5.3617
5.40631
5.44891
5.48955
5.52899
5.56725
5.60492
5.64192
5.67867
5.71498
5.75115
5.78691
5.82248
5.85759
5.89241
5.92672
5.96054
5.99386
6.02649
6.0583
6.08937
6.11954
6.14885
6.17722
6.20466
6.23097
6.25621
6.28032
6.30335
6.32523
6.34591
6.36539
6.38365
6.4007
6.41655
6.43124
6.44479
6.45723
6.46859
6.4789
6.48818
6.49648
6.50382
6.51025
6.51581
6.52056
6.52436
6.52738
6.52958
6.53113
6.53205
6.53245
6.53236
6.53185
6.53089
6.52949
6.52757
6.52509
6.52197
6.51822
6.51393
6.50922
6.50418
6.49893
6.49349
6.48791
6.48209
6.47594
6.46929
6.462
6.45401
6.44528
6.43573
6.42532
6.4139
6.40136
6.38751
6.37221
6.35535
6.33694
6.31698
6.29549
6.27239
6.2474
6.22018
6.19035
6.1575
6.12133
6.08156
6.03818
5.99119
5.94078
5.88719
5.83047
5.77053
5.70718
5.64024
5.56965
5.49586
5.41904
5.34012
5.25947
5.17819
5.0969
5.01727
4.94009
4.8672
4.79916
4.73781
4.68308
4.63653
4.5977
4.56921
4.55093
4.54491
4.5491
4.56344
4.5839
4.6099
4.63878
4.67128
4.70605
4.74319
4.7793
4.81151
4.83638
4.85386
4.86441
4.86916
4.86669
4.85433
4.82722
4.78417
4.74253
4.72475
4.73235
4.76966
4.84057
4.97579
5.06764
14.6341
13.7943
4.72968
4.88584
4.99422
5.06816
5.13542
5.19037
5.24059
5.2859
5.32837
5.36819
5.40614
5.4425
5.47786
5.51241
5.54664
5.58054
5.6145
5.64831
5.68229
5.71615
5.75014
5.78396
5.8178
5.8514
5.88483
5.91794
5.95062
5.98276
6.01434
6.04521
6.07536
6.10468
6.13313
6.16059
6.18711
6.21256
6.23698
6.26035
6.28257
6.30365
6.32352
6.34222
6.35972
6.37607
6.39128
6.4054
6.41845
6.43047
6.44149
6.45153
6.46064
6.46886
6.47619
6.48266
6.48822
6.49299
6.49696
6.50026
6.50293
6.50509
6.50679
6.5081
6.50902
6.50956
6.50966
6.50924
6.50824
6.50666
6.50455
6.50201
6.49915
6.49608
6.49287
6.48958
6.48619
6.48261
6.47872
6.4744
6.46956
6.46414
6.45807
6.45131
6.44375
6.43526
6.42568
6.41483
6.40257
6.38889
6.37378
6.35725
6.33923
6.31949
6.29772
6.27357
6.24668
6.2167
6.18328
6.1463
6.10567
6.06149
6.01395
5.96309
5.90885
5.85095
5.78926
5.72355
5.65419
5.58116
5.50527
5.42665
5.34639
5.2648
5.18355
5.10316
5.02558
4.95113
4.88201
4.81805
4.76105
4.70996
4.66752
4.63339
4.61065
4.59792
4.59704
4.60429
4.61988
4.64045
4.66741
4.69866
4.7352
4.77309
4.80912
4.83808
4.85947
4.87344
4.8817
4.88336
4.87733
4.85846
4.81833
4.77292
4.74849
4.74841
4.77662
4.8355
4.97754
5.09238
14.6442
13.8049
4.7393
4.88871
4.98965
5.05603
5.11609
5.16371
5.20686
5.24576
5.28212
5.31635
5.34892
5.38031
5.41097
5.44121
5.47148
5.50178
5.53252
5.56347
5.59497
5.62669
5.65892
5.69134
5.72413
5.75702
5.79009
5.82312
5.85604
5.88871
5.92106
5.95292
5.98423
6.01484
6.0447
6.07371
6.10191
6.12917
6.15538
6.18065
6.20483
6.22792
6.24982
6.27056
6.2901
6.30847
6.32569
6.3418
6.35683
6.37083
6.38382
6.39584
6.40691
6.41708
6.42635
6.43475
6.44225
6.44895
6.45484
6.46004
6.4646
6.46862
6.47217
6.47535
6.47818
6.48067
6.4828
6.48448
6.48568
6.48635
6.48652
6.48628
6.48571
6.48494
6.48405
6.48312
6.48217
6.48117
6.48001
6.47863
6.4769
6.47477
6.47215
6.469
6.46524
6.46076
6.45541
6.449
6.44136
6.43243
6.4222
6.41067
6.39777
6.38328
6.36693
6.34839
6.32735
6.30346
6.27632
6.24573
6.21152
6.17372
6.13246
6.08777
6.03958
5.98756
5.9316
5.87135
5.80718
5.73887
5.66716
5.59197
5.5144
5.43445
5.35382
5.27267
5.19301
5.11484
5.04067
4.97023
4.90564
4.84535
4.79205
4.74485
4.70718
4.67775
4.66008
4.65105
4.65224
4.66021
4.67701
4.70018
4.73221
4.76929
4.80797
4.84073
4.86578
4.88258
4.89319
4.89702
4.89531
4.88615
4.85321
4.80671
4.77652
4.76897
4.78715
4.82894
4.97681
5.11442
14.6519
13.813
4.74425
4.88655
4.97945
5.0374
5.08893
5.12807
5.16315
5.19489
5.2245
5.25259
5.27925
5.30519
5.33068
5.35617
5.38204
5.40834
5.43548
5.46322
5.49191
5.52122
5.55147
5.58229
5.6139
5.64599
5.67866
5.71163
5.74487
5.77818
5.81147
5.84452
5.87724
5.90944
5.94104
5.97193
6.00213
6.03151
6.05999
6.08749
6.114
6.13945
6.16375
6.18689
6.20881
6.22953
6.24907
6.26746
6.28474
6.30095
6.31613
6.33031
6.34353
6.35582
6.36719
6.37768
6.38728
6.39606
6.40401
6.41125
6.41781
6.4238
6.4293
6.43441
6.43918
6.44366
6.44784
6.45166
6.45508
6.45806
6.46059
6.46273
6.46458
6.46623
6.46778
6.46933
6.47091
6.47253
6.47415
6.47571
6.47712
6.47831
6.47918
6.47968
6.47976
6.47933
6.47827
6.47638
6.47345
6.4694
6.46421
6.45787
6.4503
6.44126
6.43048
6.41768
6.40259
6.38487
6.36408
6.33992
6.31215
6.2807
6.24562
6.20686
6.16443
6.11801
6.06763
6.01289
5.95419
5.89125
5.82468
5.75424
5.68102
5.60464
5.52667
5.44682
5.36719
5.28743
5.21035
5.1356
5.06571
4.99871
4.93738
4.88021
4.83068
4.7869
4.75357
4.72783
4.7127
4.70487
4.70718
4.71678
4.73844
4.76995
4.80884
4.84492
4.8739
4.89375
4.90617
4.90999
4.90854
4.90785
4.88642
4.84287
4.80854
4.79508
4.8048
4.82645
4.97808
5.13453
14.6576
13.8189
4.74496
4.87994
4.96429
5.01295
5.05483
5.08459
5.11097
5.13512
5.15767
5.17935
5.19988
5.22012
5.24017
5.26063
5.28178
5.30375
5.32692
5.35108
5.37661
5.40318
5.43112
5.46005
5.49021
5.52127
5.55334
5.58612
5.61959
5.65351
5.68777
5.72209
5.75636
5.79033
5.8239
5.85692
5.88939
5.92115
5.95213
5.98226
6.01137
6.03948
6.06647
6.09231
6.11691
6.14028
6.16241
6.18334
6.20311
6.22174
6.2393
6.25582
6.27134
6.28589
6.29951
6.31223
6.32405
6.33504
6.34519
6.35459
6.36328
6.37137
6.37893
6.38606
6.39285
6.39937
6.40566
6.41167
6.41738
6.42272
6.42769
6.43233
6.43672
6.44094
6.44512
6.44933
6.45362
6.45803
6.46256
6.46721
6.47189
6.47657
6.4811
6.48543
6.48954
6.49337
6.49683
6.4997
6.50175
6.50287
6.50302
6.5022
6.50027
6.49693
6.49183
6.48462
6.47499
6.46263
6.44715
6.4283
6.40591
6.37982
6.35009
6.31662
6.27949
6.23838
6.19342
6.14419
6.09114
6.03383
5.97305
5.90824
5.84053
5.76931
5.69606
5.62017
5.54366
5.46582
5.38929
5.3132
5.24032
5.16867
5.10156
5.037
4.97863
4.92355
4.87722
4.83653
4.80564
4.78099
4.76651
4.75814
4.76258
4.78093
4.81473
4.85257
4.88629
4.91067
4.92592
4.92821
4.92069
4.92261
4.91517
4.87998
4.84381
4.82695
4.83215
4.83425
4.98603
5.15376
14.6612
13.8224
4.74178
4.86945
4.94484
4.98354
5.01492
5.0348
5.05221
5.06872
5.08426
5.0996
5.11406
5.12864
5.14326
5.15861
5.1749
5.1923
5.21119
5.23143
5.25341
5.27681
5.30199
5.32858
5.35683
5.38643
5.41748
5.4497
5.48309
5.51737
5.5524
5.5879
5.62367
5.65945
5.69506
5.73033
5.76521
5.79952
5.83318
5.86608
5.89811
5.92909
5.95899
5.98776
6.0153
6.04156
6.06653
6.09023
6.11269
6.13395
6.15407
6.17308
6.19105
6.20801
6.224
6.23907
6.25324
6.26656
6.27904
6.29074
6.30171
6.31204
6.32181
6.33111
6.34005
6.34874
6.35724
6.36556
6.37367
6.38152
6.38907
6.39637
6.4035
6.41054
6.41761
6.42479
6.43211
6.43964
6.44738
6.45542
6.46372
6.47223
6.4808
6.48934
6.49785
6.50631
6.51466
6.52265
6.52994
6.53632
6.54165
6.54581
6.54867
6.54996
6.54941
6.54667
6.54148
6.53352
6.52253
6.50824
6.49055
6.46926
6.44445
6.41594
6.38388
6.34795
6.30837
6.26465
6.21733
6.16585
6.11106
6.05231
5.99071
5.92545
5.85803
5.78756
5.71603
5.64243
5.5693
5.49537
5.42349
5.35148
5.28261
5.21397
5.14965
5.08612
5.0298
4.97689
4.93247
4.89227
4.86125
4.83371
4.81616
4.81266
4.83229
4.86724
4.90593
4.93795
4.96002
4.96208
4.94047
4.93289
4.93714
4.91651
4.88159
4.86358
4.8709
4.85784
5.00364
5.17275
14.663
13.8237
4.735
4.85561
4.92183
4.95014
4.97056
4.98046
4.98908
4.99825
5.00722
5.01667
5.02553
5.03484
5.04438
5.05484
5.06636
5.07915
5.09362
5.10967
5.1277
5.14745
5.16929
5.1929
5.21855
5.24596
5.27528
5.30626
5.33891
5.37296
5.40828
5.44454
5.4815
5.51886
5.55638
5.59383
5.63108
5.66797
5.70435
5.7401
5.77509
5.8092
5.84213
5.874
5.90464
5.93399
5.962
5.98867
6.01403
6.0381
6.06096
6.08264
6.10321
6.12272
6.14122
6.15879
6.17543
6.19122
6.20619
6.22038
6.23384
6.24662
6.25882
6.27052
6.28185
6.29292
6.30388
6.31475
6.32554
6.33616
6.34659
6.35686
6.36706
6.37729
6.3877
6.39835
6.40923
6.4204
6.43189
6.44384
6.45628
6.46915
6.48224
6.49534
6.50839
6.52129
6.53394
6.54612
6.55756
6.56803
6.57738
6.58545
6.59214
6.59719
6.60039
6.60142
6.60003
6.59594
6.58895
6.57881
6.56546
6.54867
6.52853
6.50481
6.47773
6.4469
6.41265
6.37444
6.33287
6.28728
6.23858
6.18601
6.13076
6.07183
6.01074
5.94641
5.8808
5.8127
5.74455
5.67486
5.60648
5.53707
5.47001
5.40181
5.33674
5.27035
5.20887
5.1474
5.09243
5.03923
4.99394
4.94909
4.90923
4.87829
4.87272
4.89528
4.93587
4.97807
5.01301
5.02162
4.98291
4.94657
4.95101
4.95048
4.92163
4.90425
4.92011
4.89889
5.03128
5.19154
14.663
13.8227
4.72487
4.83893
4.89605
4.91392
4.92334
4.92361
4.92401
4.92656
4.92986
4.93437
4.93861
4.94349
4.94877
4.95496
4.96222
4.97073
4.98087
4.99262
5.00639
5.02201
5.03984
5.05966
5.08177
5.10598
5.13247
5.16108
5.19189
5.22468
5.25933
5.29549
5.33291
5.37123
5.41016
5.44937
5.48871
5.52794
5.56689
5.60538
5.64327
5.6804
5.71655
5.75157
5.78543
5.818
5.84921
5.87904
5.90748
5.93457
5.96036
5.98491
6.00827
6.03053
6.05174
6.07198
6.0913
6.10979
6.12748
6.14445
6.16071
6.1763
6.19129
6.20578
6.21989
6.23378
6.24763
6.26152
6.27548
6.28941
6.30326
6.31705
6.33089
6.34494
6.35936
6.37418
6.38932
6.40474
6.42041
6.4364
6.4527
6.46927
6.48595
6.50255
6.51903
6.53525
6.55114
6.56651
6.58112
6.59479
6.60735
6.61861
6.62849
6.63674
6.6432
6.64756
6.64961
6.64908
6.64582
6.63958
6.63035
6.61785
6.60224
6.5832
6.561
6.53522
6.50626
6.47351
6.43765
6.39794
6.35533
6.30895
6.26007
6.20759
6.15302
6.09514
6.03588
5.9739
5.91156
5.84721
5.78367
5.71853
5.65527
5.5901
5.52746
5.46234
5.40086
5.33726
5.27838
5.21828
5.16306
5.10499
5.04671
4.98881
4.95049
4.94787
4.9817
5.03239
5.08418
5.10934
5.06233
4.9811
4.95846
4.97818
4.96232
4.94777
4.97483
4.9536
5.0673
5.20987
14.6612
13.8194
4.71162
4.8199
4.86838
4.8762
4.87507
4.86656
4.85985
4.85706
4.85624
4.85744
4.85881
4.86094
4.86342
4.86665
4.87069
4.87569
4.88202
4.88972
4.89916
4.91031
4.92354
4.93873
4.9562
4.97592
4.99812
5.0228
5.05014
5.08006
5.11248
5.1471
5.18363
5.22169
5.26095
5.30104
5.3417
5.38264
5.42364
5.46447
5.50494
5.54487
5.58402
5.6222
5.65927
5.69512
5.72965
5.76278
5.79451
5.82485
5.85383
5.88151
5.90796
5.93326
5.95748
5.98072
6.00306
6.0246
6.04545
6.06567
6.08527
6.10426
6.12268
6.14061
6.15818
6.17558
6.19306
6.21076
6.22872
6.24677
6.26482
6.28281
6.3008
6.31886
6.3371
6.35554
6.37414
6.39288
6.41173
6.43076
6.44994
6.46925
6.48859
6.5078
6.52684
6.54557
6.56395
6.58179
6.59892
6.61516
6.63036
6.64432
6.65697
6.66804
6.67743
6.68482
6.69007
6.69287
6.69316
6.69064
6.68537
6.67704
6.66582
6.65135
6.63395
6.61313
6.58938
6.56201
6.5318
6.49788
6.46131
6.42108
6.37852
6.33243
6.28438
6.23306
6.1803
6.12469
6.06853
6.01006
5.95206
5.89203
5.83358
5.77274
5.71416
5.65242
5.59374
5.53177
5.47343
5.41234
5.35424
5.29175
5.2247
5.1484
5.07854
5.04065
5.05494
5.10611
5.17222
5.21899
5.18031
5.05845
4.97156
4.99592
5.00015
4.9914
5.03083
5.01605
5.10912
5.22722
14.6575
13.814
4.69543
4.79896
4.83976
4.83854
4.82789
4.81201
4.79995
4.79378
4.79111
4.79132
4.79221
4.79386
4.79576
4.79803
4.80072
4.80386
4.80775
4.81243
4.81824
4.82523
4.83369
4.84368
4.85554
4.86942
4.88566
4.9045
4.92629
4.95118
4.97919
5.01008
5.0436
5.0794
5.11713
5.15639
5.19688
5.23825
5.2802
5.32244
5.36473
5.40685
5.44852
5.48951
5.52963
5.5687
5.60656
5.64313
5.67836
5.71222
5.74475
5.77597
5.80595
5.83478
5.86252
5.88931
5.91525
5.94049
5.96519
5.98947
6.0133
6.03661
6.0594
6.08169
6.10358
6.12519
6.14671
6.16825
6.18984
6.21139
6.23284
6.25415
6.27535
6.29649
6.31764
6.33883
6.36004
6.38127
6.40251
6.42379
6.44513
6.4665
6.48784
6.50901
6.53001
6.55069
6.57101
6.59082
6.61
6.62835
6.64579
6.66207
6.67715
6.69075
6.70281
6.71301
6.72124
6.72721
6.73088
6.73194
6.73049
6.72617
6.71922
6.70919
6.69647
6.6805
6.66186
6.63975
6.61507
6.58683
6.55617
6.52196
6.48561
6.44582
6.40417
6.35931
6.31305
6.26385
6.21397
6.16157
6.1094
6.05485
6.00167
5.94573
5.8919
5.83452
5.77987
5.72135
5.66575
5.60674
5.54957
5.48798
5.42072
5.3399
5.25322
5.1843
5.17076
5.21055
5.28013
5.34221
5.32268
5.18682
5.01569
5.00504
5.03185
5.03318
5.08622
5.0815
5.15384
5.2434
14.6523
13.8064
4.67636
4.77647
4.81115
4.80263
4.78424
4.76297
4.74759
4.73988
4.737
4.73765
4.73945
4.74204
4.74482
4.74769
4.75064
4.75363
4.75681
4.76026
4.76418
4.76867
4.77399
4.78023
4.78772
4.79669
4.80752
4.82055
4.83621
4.85479
4.87653
4.90142
4.92937
4.96022
4.99373
5.02958
5.06748
5.10706
5.14799
5.18995
5.2326
5.27569
5.3189
5.36195
5.40456
5.44652
5.48766
5.52768
5.56662
5.60438
5.64093
5.67627
5.71044
5.7435
5.77551
5.80658
5.83679
5.86625
5.89509
5.92338
5.95111
5.97823
6.00476
6.03072
6.05619
6.08123
6.10602
6.13064
6.15513
6.17944
6.20355
6.22743
6.25112
6.27462
6.29801
6.32129
6.3445
6.36763
6.39068
6.41368
6.43666
6.45958
6.48245
6.50513
6.52764
6.54985
6.57172
6.59312
6.61397
6.63408
6.65341
6.67169
6.68892
6.70479
6.71928
6.73207
6.74311
6.75206
6.75896
6.76343
6.76565
6.76519
6.76235
6.75661
6.74843
6.73716
6.72345
6.70644
6.68711
6.66438
6.63946
6.61111
6.58077
6.54709
6.51165
6.47306
6.4331
6.39022
6.34651
6.30015
6.25382
6.20482
6.15703
6.10615
6.05729
6.00455
5.95435
5.89998
5.84799
5.79234
5.73776
5.67916
5.61546
5.53822
5.44917
5.36214
5.32112
5.33994
5.40027
5.46594
5.46498
5.34899
5.11529
5.0179
5.05595
5.07209
5.14086
5.14669
5.19923
5.25771
14.6451
13.7964
4.65445
4.75261
4.78335
4.7701
4.74629
4.7216
4.70425
4.6958
4.69327
4.69489
4.69822
4.70252
4.70707
4.7116
4.71598
4.72015
4.72411
4.72791
4.73164
4.73541
4.73938
4.74367
4.74853
4.75422
4.7611
4.76956
4.78003
4.79294
4.80865
4.82738
4.84924
4.87426
4.90239
4.93345
4.96724
5.00346
5.04179
5.0819
5.12342
5.16606
5.20948
5.25336
5.29737
5.34122
5.38466
5.4274
5.4693
5.51025
5.55015
5.58897
5.62668
5.66333
5.69896
5.73364
5.76744
5.80045
5.83273
5.86436
5.89533
5.92561
5.95521
5.98418
6.01256
6.04042
6.06787
6.09498
6.1218
6.14833
6.17455
6.20046
6.2261
6.25147
6.27661
6.30153
6.32629
6.35088
6.37532
6.39964
6.42387
6.44798
6.47202
6.49585
6.51954
6.54294
6.56606
6.58873
6.61096
6.63252
6.65345
6.67343
6.69254
6.71041
6.72709
6.74224
6.75588
6.76763
6.77757
6.78528
6.79099
6.7942
6.79529
6.79364
6.78979
6.78301
6.77403
6.76189
6.74769
6.73023
6.71079
6.68805
6.66345
6.63563
6.60611
6.5735
6.53951
6.50263
6.46488
6.42431
6.38363
6.34003
6.29751
6.25159
6.20759
6.15944
6.11364
6.06348
6.01526
5.96326
5.91185
5.85668
5.79746
5.72642
5.64351
5.55201
5.49126
5.486
5.52725
5.58452
5.58984
5.50788
5.26928
5.06098
5.0764
5.10834
5.19477
5.20863
5.24299
5.26889
14.6358
13.7842
4.62972
4.72738
4.75675
4.7419
4.71522
4.68869
4.67007
4.66101
4.65878
4.66137
4.66634
4.67259
4.67933
4.68611
4.6927
4.69894
4.70478
4.71019
4.71518
4.71981
4.72417
4.72834
4.7325
4.73685
4.7417
4.74741
4.75439
4.76307
4.77389
4.78721
4.80332
4.8224
4.84461
4.86996
4.89843
4.92982
4.96394
5.00049
5.03916
5.07962
5.12155
5.16464
5.20851
5.25282
5.29723
5.34146
5.38523
5.42837
5.4707
5.51215
5.55262
5.59212
5.63066
5.66826
5.70498
5.74086
5.77596
5.81031
5.84393
5.87679
5.9089
5.94031
5.97107
6.0012
6.03081
6.05993
6.08865
6.11695
6.14488
6.17241
6.1996
6.22643
6.25297
6.27919
6.30516
6.33089
6.35641
6.38172
6.40691
6.43191
6.45683
6.48154
6.50614
6.53046
6.55455
6.57825
6.60158
6.62432
6.64657
6.66796
6.68867
6.70825
6.72686
6.74414
6.76015
6.77447
6.78725
6.79797
6.80695
6.8136
6.81837
6.82056
6.82078
6.81821
6.81365
6.8061
6.79674
6.78427
6.76998
6.75251
6.73327
6.71092
6.68691
6.65988
6.63144
6.6001
6.56784
6.53266
6.49724
6.45869
6.42112
6.37985
6.3404
6.29648
6.25478
6.20848
6.16381
6.1152
6.067
6.01503
5.96001
5.89497
5.82081
5.73417
5.66409
5.63831
5.65631
5.69664
5.69665
5.63668
5.44324
5.15835
5.10755
5.14458
5.24697
5.26505
5.28265
5.27532
14.6241
13.7698
4.60206
4.70052
4.73113
4.71803
4.69115
4.66423
4.64482
4.63505
4.63278
4.63596
4.64227
4.65036
4.6593
4.66852
4.67766
4.68651
4.69491
4.70281
4.71013
4.71689
4.72309
4.72878
4.73403
4.739
4.74388
4.74896
4.75458
4.76112
4.76898
4.77858
4.79028
4.80438
4.82118
4.84087
4.86359
4.88935
4.91807
4.94964
4.98381
5.02035
5.05896
5.09938
5.14124
5.18422
5.22792
5.27203
5.3162
5.36018
5.40373
5.44669
5.48891
5.53033
5.57091
5.61064
5.64951
5.68755
5.72479
5.76124
5.79691
5.83177
5.86584
5.89914
5.93172
5.96362
5.9949
6.0256
6.05579
6.08549
6.11474
6.14353
6.17193
6.19991
6.22753
6.25476
6.28167
6.30826
6.3346
6.36065
6.38652
6.41215
6.43771
6.46307
6.48835
6.51337
6.53822
6.5627
6.5869
6.61056
6.63386
6.65639
6.67841
6.69938
6.71966
6.73883
6.75699
6.77363
6.78898
6.80245
6.81442
6.82421
6.83235
6.83805
6.842
6.84328
6.84275
6.83946
6.83459
6.82671
6.81714
6.80448
6.79012
6.77273
6.75366
6.73164
6.70816
6.68175
6.65432
6.62388
6.59315
6.55912
6.52602
6.48883
6.45343
6.41314
6.37504
6.33194
6.29032
6.24453
6.19924
6.14998
6.09845
6.03844
5.97224
5.8944
5.82336
5.78369
5.77983
5.7982
5.78801
5.7301
5.59804
5.29955
5.16571
5.18635
5.29661
5.3145
5.31572
5.27549
14.6095
13.7532
4.57139
4.6715
4.70562
4.69748
4.67323
4.64759
4.62812
4.61762
4.61488
4.61813
4.62525
4.63476
4.64563
4.65716
4.66888
4.68052
4.69182
4.70271
4.71303
4.72277
4.73185
4.74029
4.74807
4.75528
4.76202
4.76848
4.77489
4.78154
4.78876
4.79692
4.80635
4.81741
4.83043
4.84569
4.86345
4.8839
4.90711
4.93313
4.96189
4.99327
5.02708
5.06315
5.1012
5.14095
5.18205
5.22416
5.26694
5.31006
5.35324
5.39626
5.43888
5.481
5.52248
5.56329
5.60336
5.64267
5.68122
5.71898
5.75598
5.79216
5.82753
5.8621
5.89591
5.929
5.96139
5.99313
6.02434
6.05501
6.0852
6.11488
6.14413
6.17292
6.20131
6.22926
6.25685
6.28404
6.31094
6.33748
6.36378
6.38982
6.41584
6.44167
6.46746
6.49301
6.51844
6.5435
6.56837
6.59272
6.61682
6.64022
6.66326
6.68531
6.70709
6.72795
6.74803
6.76674
6.78438
6.80027
6.81488
6.82744
6.83856
6.84735
6.85459
6.85925
6.86232
6.8626
6.86138
6.85725
6.85156
6.84292
6.83264
6.81948
6.80465
6.78699
6.76785
6.74583
6.72275
6.69656
6.67014
6.63994
6.61059
6.57669
6.5446
6.50708
6.47183
6.43099
6.39169
6.34802
6.30509
6.25791
6.20885
6.15289
6.09281
6.02389
5.95663
5.90904
5.88801
5.88267
5.86173
5.79412
5.70941
5.45325
5.25845
5.24151
5.3442
5.35577
5.33978
5.26773
14.5917
13.7345
4.53776
4.63966
4.67882
4.67831
4.65958
4.63729
4.61903
4.60828
4.60494
4.60781
4.61515
4.62554
4.63785
4.65133
4.66539
4.67969
4.69391
4.70792
4.72152
4.73465
4.74718
4.7591
4.77031
4.78085
4.79074
4.80007
4.80898
4.81768
4.82637
4.83534
4.84486
4.85521
4.86673
4.8797
4.89441
4.91111
4.92998
4.95119
4.97482
5.00092
5.0294
5.06024
5.09328
5.12835
5.1652
5.20356
5.24312
5.28354
5.32455
5.36589
5.40731
5.44859
5.48951
5.53008
5.57012
5.60953
5.64831
5.68638
5.72377
5.76038
5.79622
5.83127
5.86555
5.8991
5.93192
5.96407
5.99574
6.0269
6.05759
6.08776
6.11748
6.1467
6.17552
6.20387
6.23184
6.25935
6.28653
6.31331
6.33977
6.36612
6.39256
6.41882
6.44504
6.47102
6.49691
6.52242
6.5478
6.57268
6.59737
6.62141
6.64517
6.66806
6.69055
6.71213
6.73307
6.75276
6.77156
6.78875
6.80486
6.81905
6.83202
6.84279
6.85223
6.8592
6.8648
6.86772
6.86925
6.86804
6.86535
6.85991
6.8529
6.8432
6.83185
6.81784
6.80235
6.78409
6.76476
6.74229
6.71956
6.69293
6.66711
6.63634
6.60746
6.57268
6.54035
6.50183
6.46522
6.4231
6.38177
6.33577
6.28802
6.23517
6.17947
6.1177
6.05589
6.00413
5.97121
5.94365
5.91214
5.8343
5.77216
5.58377
5.37469
5.31589
5.39054
5.38729
5.35231
5.25013
14.5702
13.7139
4.50098
4.60414
4.64902
4.6578
4.64718
4.63063
4.61554
4.60581
4.60242
4.60489
4.61209
4.62281
4.636
4.65088
4.66681
4.68338
4.7002
4.71708
4.73382
4.75029
4.76631
4.78185
4.79677
4.81106
4.82466
4.83764
4.85003
4.86199
4.8736
4.88506
4.89655
4.90829
4.92054
4.93354
4.9475
4.96268
4.97927
4.99748
5.01747
5.03939
5.06329
5.08924
5.11719
5.14715
5.17896
5.21247
5.24749
5.28369
5.32095
5.35899
5.39757
5.43641
5.4753
5.51407
5.55259
5.59074
5.62844
5.66561
5.70221
5.73817
5.77346
5.80804
5.84189
5.87506
5.90749
5.93937
5.971
6.00217
6.03291
6.06314
6.09294
6.12224
6.15115
6.17957
6.20762
6.23518
6.26241
6.28921
6.31571
6.34185
6.36792
6.39372
6.41947
6.44493
6.47032
6.49532
6.52022
6.54462
6.56887
6.59252
6.61594
6.63862
6.6609
6.68231
6.70318
6.72291
6.74193
6.75948
6.77614
6.79104
6.80493
6.81677
6.8275
6.83592
6.84316
6.8479
6.8514
6.85233
6.8519
6.84892
6.84445
6.83752
6.829
6.81799
6.80554
6.79043
6.77429
6.75501
6.73547
6.71196
6.68928
6.66133
6.6354
6.60317
6.57359
6.53729
6.50327
6.46306
6.42368
6.37944
6.33361
6.28338
6.2306
6.17362
6.11715
6.063
6.02241
5.97646
5.93464
5.85123
5.79334
5.66751
5.48601
5.4026
5.43263
5.40621
5.35065
5.22042
14.5444
13.6916
4.46036
4.56383
4.61414
4.63268
4.63197
4.62349
4.61399
4.60736
4.60533
4.60814
4.61533
4.62615
4.63975
4.65543
4.67257
4.69074
4.70952
4.72866
4.74792
4.76718
4.7862
4.80491
4.82314
4.84087
4.85799
4.87457
4.8906
4.90616
4.92128
4.93603
4.95052
4.96498
4.97954
4.99434
5.0095
5.02523
5.04166
5.05898
5.07733
5.09692
5.11784
5.14024
5.16416
5.18969
5.21679
5.24543
5.27555
5.30689
5.3396
5.37336
5.40797
5.44314
5.47869
5.51439
5.55013
5.58568
5.62107
5.65612
5.69082
5.72505
5.75877
5.79193
5.82448
5.85643
5.88777
5.9185
5.94881
5.97866
6.0081
6.03707
6.06564
6.09374
6.1215
6.14881
6.1758
6.20233
6.22857
6.25438
6.27994
6.3051
6.33011
6.35479
6.37938
6.40366
6.42787
6.45169
6.47544
6.4987
6.52185
6.54445
6.56686
6.58861
6.61005
6.63068
6.65087
6.67003
6.68863
6.70591
6.72248
6.73746
6.75163
6.76391
6.77528
6.78453
6.79279
6.79874
6.80361
6.80611
6.80737
6.8063
6.80382
6.79909
6.79285
6.78431
6.77437
6.7619
6.74844
6.73186
6.71508
6.6942
6.67428
6.64886
6.6256
6.5957
6.56868
6.53449
6.50287
6.46463
6.4273
6.38503
6.34118
6.29397
6.24431
6.19183
6.13996
6.08406
6.03866
5.97876
5.92752
5.84272
5.78173
5.69933
5.56321
5.47835
5.46097
5.40818
5.3318
5.17584
14.5139
13.6683
4.41509
4.51703
4.5716
4.5992
4.60913
4.61038
4.60872
4.60758
4.60894
4.61358
4.62165
4.63287
4.64675
4.66281
4.68053
4.69952
4.7194
4.73987
4.76072
4.78173
4.80275
4.82361
4.84416
4.86439
4.88413
4.9036
4.92273
4.9415
4.9599
4.97785
4.99553
5.0132
5.03076
5.04825
5.0657
5.08323
5.10091
5.11889
5.13727
5.15622
5.17585
5.19634
5.21775
5.24022
5.26379
5.28847
5.31433
5.3412
5.36916
5.39806
5.42782
5.45823
5.48916
5.52043
5.55193
5.58349
5.61502
5.64641
5.67767
5.70864
5.73929
5.76954
5.79937
5.82874
5.85765
5.88605
5.91406
5.94163
5.96887
5.99569
6.02219
6.04829
6.07413
6.09959
6.1248
6.14963
6.17425
6.19849
6.22254
6.24621
6.26975
6.29295
6.31607
6.33886
6.3616
6.38396
6.40627
6.42812
6.44989
6.47115
6.49226
6.51278
6.53306
6.55261
6.57182
6.59009
6.60793
6.62458
6.6407
6.65536
6.66939
6.68169
6.69328
6.7029
6.71172
6.71843
6.72419
6.7278
6.73028
6.73065
6.7297
6.7267
6.72226
6.71572
6.70784
6.69755
6.68632
6.67201
6.6576
6.63897
6.62147
6.59825
6.5774
6.54962
6.52498
6.49278
6.46343
6.42714
6.39186
6.35169
6.30984
6.26567
6.21913
6.17075
6.12349
6.06749
6.01957
5.94931
5.88988
5.80621
5.74158
5.68616
5.59165
5.51788
5.46354
5.38847
5.29229
5.11288
14.4781
13.6454
4.36381
4.46138
4.51846
4.55371
4.57395
4.58557
4.59303
4.59911
4.60569
4.61384
4.62408
4.63657
4.65116
4.66762
4.68561
4.70485
4.72505
4.74591
4.76729
4.78888
4.81066
4.83234
4.85389
4.87533
4.89649
4.91795
4.93935
4.96056
4.98147
5.00199
5.02211
5.04192
5.06142
5.08064
5.09959
5.11832
5.13688
5.15538
5.17386
5.19247
5.21129
5.23045
5.25006
5.27022
5.29102
5.31249
5.33472
5.35766
5.38137
5.40578
5.4309
5.4566
5.48282
5.50944
5.53638
5.56351
5.59078
5.61803
5.6453
5.67246
5.69947
5.72625
5.7528
5.77904
5.805
5.83058
5.85589
5.88085
5.90556
5.92993
5.95408
5.97791
6.00156
6.02491
6.0481
6.07099
6.09374
6.11618
6.13849
6.16047
6.18236
6.20393
6.22543
6.24661
6.26776
6.28853
6.30926
6.32955
6.34979
6.36953
6.38916
6.40823
6.42711
6.44532
6.46326
6.48035
6.4971
6.51278
6.52805
6.542
6.55545
6.56733
6.57864
6.58816
6.59702
6.60396
6.6101
6.61427
6.61744
6.61869
6.61872
6.61691
6.61374
6.60866
6.6023
6.59368
6.5842
6.57169
6.55918
6.54243
6.52691
6.50561
6.48687
6.46101
6.43852
6.40824
6.38102
6.34669
6.31347
6.27553
6.23582
6.19484
6.15162
6.10737
6.06476
6.00961
5.96088
5.88321
5.81667
5.73622
5.67016
5.63389
5.57087
5.50983
5.43298
5.34173
5.22648
5.02669
14.4368
13.6258
4.30551
4.39583
4.45423
4.49595
4.5255
4.54676
4.56293
4.5763
4.58864
4.60116
4.61454
4.6292
4.64519
4.66249
4.68093
4.70032
4.72049
4.74119
4.76236
4.78368
4.80521
4.82658
4.84804
4.86969
4.89128
4.91303
4.93479
4.95643
4.97784
4.99892
5.01961
5.03992
5.05984
5.07937
5.09851
5.11731
5.13579
5.15401
5.17202
5.18991
5.20774
5.22561
5.24361
5.26182
5.28032
5.29916
5.31842
5.3381
5.35828
5.37893
5.40008
5.42169
5.44371
5.46612
5.48883
5.51178
5.53495
5.55817
5.58149
5.60478
5.62804
5.65118
5.67423
5.6971
5.71983
5.7423
5.76461
5.78665
5.80853
5.83015
5.85162
5.87284
5.89395
5.91483
5.93562
5.95617
5.97665
5.99687
6.01701
6.03688
6.05667
6.07618
6.09564
6.11478
6.13389
6.15263
6.17133
6.18961
6.20783
6.22557
6.24321
6.26031
6.27726
6.29356
6.30965
6.32495
6.33999
6.35405
6.36779
6.38033
6.3925
6.40322
6.41351
6.42215
6.43029
6.43668
6.44241
6.44636
6.44943
6.45079
6.45103
6.44966
6.44701
6.44267
6.43713
6.42951
6.4211
6.40981
6.39864
6.38329
6.36929
6.34957
6.33259
6.3085
6.28794
6.25955
6.23443
6.20216
6.17116
6.13577
6.09868
6.06162
6.0226
5.98356
5.94631
5.89292
5.84396
5.76059
5.68824
5.61427
5.55147
5.53473
5.49823
5.45064
5.35862
5.25464
5.12198
4.91017
14.3898
13.6156
4.24431
4.32666
4.3864
4.43289
4.46871
4.49634
4.5184
4.53712
4.55417
4.57074
4.58745
4.6047
4.62259
4.64116
4.66032
4.67997
4.7
4.72025
4.7407
4.7611
4.78155
4.80175
4.82188
4.84173
4.86172
4.88193
4.90213
4.92222
4.94207
4.96163
4.98083
4.99965
5.01807
5.03609
5.05371
5.07095
5.08783
5.10441
5.1207
5.13677
5.15266
5.16844
5.18417
5.1999
5.21569
5.23158
5.24765
5.26389
5.2804
5.29716
5.31423
5.33159
5.34923
5.36715
5.3853
5.40366
5.42223
5.44086
5.45961
5.47834
5.49706
5.51575
5.53444
5.55306
5.57162
5.59004
5.60837
5.62653
5.64458
5.66245
5.68024
5.69784
5.71539
5.73277
5.75011
5.76728
5.78441
5.80134
5.81823
5.83489
5.85149
5.86785
5.88416
5.90017
5.91615
5.93178
5.94736
5.96253
5.97764
5.99229
6.00683
6.02086
6.03474
6.04802
6.06111
6.07347
6.08563
6.0969
6.10792
6.11786
6.12751
6.13586
6.14388
6.15043
6.1566
6.16121
6.1653
6.16781
6.1696
6.16989
6.16921
6.16714
6.16394
6.1593
6.15358
6.14604
6.13783
6.12707
6.11653
6.10216
6.08918
6.07094
6.05536
6.03319
6.01447
5.98841
5.96564
5.93606
5.90806
5.87606
5.843
5.81139
5.7785
5.74725
5.71713
5.6679
5.62004
5.5328
5.45927
5.39688
5.34502
5.35226
5.34311
5.30986
5.20353
5.09257
4.95477
4.75342
14.3382
13.6219
4.19099
4.26266
4.3199
4.36596
4.40217
4.43076
4.45449
4.47574
4.49591
4.51582
4.53568
4.55561
4.57554
4.59545
4.61525
4.63489
4.65433
4.67347
4.69235
4.71083
4.72899
4.74668
4.76403
4.78088
4.79745
4.81385
4.83002
4.84591
4.8615
4.87673
4.8916
4.90609
4.9202
4.93393
4.94731
4.96035
4.97309
4.98556
4.99778
5.0098
5.02164
5.03333
5.04492
5.05641
5.06785
5.07927
5.0907
5.10216
5.11372
5.12537
5.13717
5.14909
5.16117
5.17341
5.18578
5.19828
5.21092
5.22359
5.23633
5.24904
5.26177
5.2745
5.28731
5.30018
5.31306
5.32587
5.33866
5.35134
5.36398
5.3765
5.38898
5.40137
5.41374
5.42601
5.43827
5.45041
5.46253
5.47449
5.48641
5.49814
5.50981
5.52128
5.53269
5.54384
5.55493
5.56571
5.57642
5.58677
5.59703
5.60688
5.61661
5.62589
5.63499
5.64356
5.65192
5.65966
5.66719
5.67397
5.68052
5.68617
5.69154
5.69583
5.69983
5.70261
5.70508
5.70627
5.70706
5.70656
5.70551
5.70323
5.70022
5.69608
5.69108
5.68492
5.67794
5.66955
5.66081
5.65024
5.63987
5.6266
5.6145
5.59834
5.58414
5.56496
5.54842
5.5262
5.5067
5.4816
5.45831
5.4315
5.40508
5.38058
5.35652
5.33511
5.3131
5.27193
5.22708
5.14532
5.08144
5.03404
5.00012
5.02407
5.03706
5.01186
4.90913
4.81117
4.69998
4.54729
14.2852
355.88
522.602
523.014
523.392
523.749
524.085
524.405
524.711
524.999
525.272
525.529
525.773
526.004
526.224
526.434
526.635
526.827
527.011
527.188
527.357
527.52
527.676
527.827
527.972
528.111
528.246
528.376
528.502
528.623
528.741
528.856
528.967
529.076
529.182
529.286
529.388
529.488
529.586
529.683
529.779
529.874
529.969
530.063
530.157
530.252
530.347
530.443
530.54
530.637
530.735
530.834
530.933
531.033
531.133
531.233
531.333
531.432
531.531
531.629
531.727
531.823
531.919
532.014
532.107
532.199
532.29
532.379
532.467
532.553
532.637
532.72
532.802
532.882
532.961
533.038
533.114
533.188
533.262
533.334
533.406
533.476
533.546
533.615
533.685
533.753
533.822
533.889
533.959
534.026
534.096
534.164
534.234
534.302
534.373
534.442
534.514
534.582
534.655
534.723
534.797
534.865
534.94
535.008
535.082
535.15
535.225
535.292
535.367
535.434
535.509
535.575
535.651
535.715
535.792
535.856
535.934
535.997
536.076
536.139
536.22
536.282
536.364
536.428
536.512
536.577
536.663
536.729
536.821
536.886
536.988
537.044
537.166
537.198
537.346
537.349
537.525
537.543
537.787
537.864
538.23
538.149
538.547
538.183
538.42
538.148
538.871
538.947
539.995
540.509
371.185
352.294
516.958
516.971
516.984
517.003
517.021
517.039
517.055
517.07
517.084
517.098
517.113
517.127
517.143
517.158
517.174
517.19
517.207
517.223
517.239
517.256
517.272
517.289
517.305
517.322
517.338
517.354
517.37
517.386
517.402
517.418
517.433
517.449
517.464
517.479
517.493
517.508
517.522
517.536
517.55
517.564
517.578
517.591
517.604
517.616
517.629
517.641
517.653
517.664
517.676
517.687
517.698
517.708
517.718
517.728
517.737
517.747
517.756
517.764
517.773
517.781
517.789
517.797
517.804
517.812
517.819
517.826
517.832
517.838
517.844
517.849
517.854
517.859
517.864
517.869
517.874
517.879
517.884
517.888
517.892
517.896
517.899
517.904
517.908
517.914
517.919
517.926
517.932
517.938
517.945
517.953
517.961
517.971
517.98
517.99
518
518.009
518.019
518.03
518.041
518.053
518.066
518.079
518.092
518.104
518.117
518.129
518.14
518.151
518.163
518.174
518.186
518.196
518.206
518.216
518.225
518.233
518.241
518.248
518.255
518.261
518.267
518.271
518.275
518.278
518.28
518.281
518.28
518.278
518.275
518.27
518.266
518.264
518.261
518.255
518.24
518.215
518.181
518.144
518.111
518.089
518.073
518.048
517.995
517.926
517.857
517.792
517.733
517.574
352.602
13.5401
4.15718
4.21985
4.28268
4.34014
4.39037
4.43356
4.47187
4.50477
4.53831
4.56728
4.5991
4.62703
4.65751
4.68496
4.71404
4.74093
4.76867
4.79489
4.82141
4.8468
4.87206
4.89639
4.92032
4.94355
4.96614
4.988
5.00925
5.02991
5.04996
5.06957
5.08864
5.10738
5.12523
5.14266
5.15927
5.1755
5.19108
5.20613
5.22051
5.23435
5.24749
5.26003
5.27191
5.28318
5.29387
5.30396
5.31353
5.3225
5.33092
5.33869
5.34587
5.35238
5.35833
5.36367
5.36853
5.37289
5.37686
5.38037
5.38351
5.38621
5.38855
5.39049
5.39209
5.39331
5.39417
5.39461
5.39465
5.39424
5.39327
5.39183
5.39002
5.38795
5.3857
5.38326
5.38056
5.3775
5.37394
5.36986
5.36533
5.3605
5.35561
5.35084
5.34632
5.34209
5.3381
5.33425
5.33053
5.32701
5.32385
5.32121
5.31926
5.31793
5.31704
5.31652
5.3162
5.31618
5.31661
5.31766
5.31947
5.32199
5.32516
5.32873
5.33252
5.33625
5.3398
5.34307
5.34608
5.34884
5.35135
5.35345
5.35502
5.35584
5.35586
5.35496
5.35321
5.3505
5.34687
5.34223
5.33656
5.3298
5.32195
5.31302
5.303
5.29197
5.27985
5.26674
5.2525
5.23735
5.22111
5.20439
5.18649
5.16744
5.14569
5.12073
5.09144
5.05961
5.02656
4.99521
4.96449
4.93464
4.90027
4.85781
4.80538
4.75365
4.70171
4.64946
4.59135
4.4937
14.153
13.5644
4.24396
4.3519
4.4568
4.5436
4.61758
4.67869
4.73331
4.77965
4.82676
4.86703
4.91068
4.94844
4.98918
5.02534
5.06335
5.09805
5.13367
5.167
5.2006
5.23255
5.26426
5.2946
5.32426
5.35298
5.38081
5.40749
5.43328
5.45815
5.48211
5.5054
5.52793
5.55026
5.57128
5.59169
5.611
5.62973
5.64743
5.66437
5.68033
5.6955
5.70968
5.72303
5.73546
5.74705
5.75783
5.7678
5.77701
5.78539
5.79301
5.79975
5.80572
5.81082
5.81517
5.81875
5.82169
5.82395
5.82565
5.82673
5.82726
5.8272
5.82662
5.82548
5.82386
5.82169
5.81901
5.81573
5.81189
5.80739
5.80225
5.79653
5.79032
5.78368
5.77666
5.76924
5.76134
5.75288
5.74379
5.73405
5.72374
5.71297
5.70191
5.69068
5.67936
5.66796
5.65646
5.64483
5.6331
5.62138
5.6098
5.59849
5.58761
5.57714
5.56702
5.55731
5.54796
5.53913
5.53088
5.52331
5.51651
5.51044
5.50513
5.50046
5.4964
5.49278
5.4895
5.48639
5.48331
5.48015
5.47673
5.47296
5.46866
5.46373
5.45801
5.45144
5.44388
5.43529
5.4255
5.41456
5.40226
5.38874
5.37378
5.35764
5.34008
5.32151
5.30165
5.28103
5.25924
5.23691
5.21344
5.18934
5.16357
5.13651
5.10682
5.0755
5.04191
5.00831
4.97424
4.94071
4.90608
4.87063
4.83019
4.78722
4.7416
4.70032
4.657
4.61514
4.57515
4.53189
14.3333
13.5915
4.32327
4.46705
4.60223
4.70574
4.79324
4.86368
4.92785
4.98191
5.03689
5.08381
5.13394
5.17722
5.22331
5.26408
5.30658
5.34526
5.3848
5.42173
5.45892
5.49436
5.52962
5.56346
5.59643
5.62845
5.65976
5.68966
5.71846
5.74617
5.77274
5.79841
5.82297
5.84672
5.86911
5.89072
5.9111
5.93064
5.94898
5.9664
5.98265
5.99796
6.01212
6.02532
6.03745
6.04862
6.05884
6.0681
6.07648
6.08389
6.09043
6.09599
6.10067
6.1044
6.10731
6.10934
6.11063
6.11113
6.11094
6.10999
6.10838
6.10605
6.10309
6.09945
6.0952
6.09028
6.08476
6.07855
6.07169
6.06413
6.05592
6.04706
6.03761
6.02757
6.01699
6.00583
5.99405
5.98162
5.96852
5.95474
5.94032
5.9253
5.90974
5.89366
5.87707
5.85998
5.8424
5.82435
5.80588
5.78708
5.76804
5.74884
5.72966
5.71051
5.69149
5.67279
5.65448
5.63672
5.61953
5.60294
5.58699
5.57173
5.55729
5.54379
5.53137
5.52009
5.5099
5.50066
5.49206
5.48391
5.47588
5.46795
5.45989
5.45173
5.44319
5.43425
5.42455
5.41411
5.40254
5.38999
5.37603
5.36093
5.3442
5.32629
5.30663
5.28589
5.26354
5.24052
5.21612
5.19142
5.16538
5.13904
5.11104
5.08237
5.05135
5.02
4.98722
4.95546
4.92354
4.89176
4.85785
4.82323
4.78591
4.7504
4.71544
4.68514
4.65258
4.62256
4.60149
4.58699
14.4007
13.6206
4.3958
4.5647
4.71674
4.82532
4.91769
4.9909
5.05921
5.11665
5.17521
5.2253
5.27817
5.32399
5.37218
5.41496
5.45919
5.49956
5.54065
5.57915
5.61793
5.65511
5.69236
5.72856
5.76377
5.79775
5.83054
5.86198
5.89218
5.92124
5.94904
5.97582
6.00133
6.02585
6.04901
6.07126
6.0922
6.11219
6.13088
6.14857
6.16502
6.18042
6.19463
6.20778
6.21981
6.23079
6.24075
6.24969
6.25766
6.26461
6.27062
6.2756
6.27967
6.28276
6.28498
6.28627
6.28676
6.28639
6.28524
6.28325
6.28051
6.27697
6.27272
6.2677
6.26199
6.25555
6.24842
6.24057
6.23205
6.22283
6.21294
6.20236
6.19113
6.1792
6.1666
6.15327
6.13924
6.12447
6.10901
6.09283
6.07597
6.05838
6.04002
6.02081
6.00069
5.97964
5.95766
5.93477
5.91101
5.88642
5.86103
5.83482
5.80791
5.78045
5.75251
5.72443
5.69643
5.66869
5.64122
5.614
5.58705
5.56043
5.53443
5.5094
5.48575
5.46386
5.44394
5.42598
5.40962
5.39463
5.38053
5.36737
5.35493
5.34339
5.33239
5.32197
5.31153
5.30118
5.29023
5.27903
5.2668
5.25406
5.23984
5.22487
5.20803
5.19016
5.17027
5.14979
5.12755
5.10526
5.08144
5.05777
5.03266
5.0081
4.98125
4.95487
4.92722
4.90064
4.87291
4.84551
4.81626
4.78741
4.75779
4.73215
4.70888
4.69015
4.66939
4.64867
4.6388
4.63374
14.4345
13.6504
4.46141
4.64573
4.80406
4.91077
5.00345
5.07635
5.14595
5.2045
5.26436
5.31576
5.36956
5.41647
5.46537
5.509
5.55389
5.59505
5.63684
5.67617
5.7158
5.75404
5.79267
5.83027
5.86665
5.90176
5.93553
5.96806
5.99929
6.02938
6.05814
6.08587
6.11225
6.1376
6.16157
6.18456
6.2062
6.22683
6.24612
6.26436
6.2813
6.29715
6.31176
6.32527
6.33762
6.34886
6.35903
6.36813
6.3762
6.38322
6.38926
6.39425
6.3983
6.40135
6.40352
6.40473
6.40509
6.40453
6.40314
6.40086
6.39776
6.3938
6.38906
6.3835
6.37719
6.37008
6.36224
6.35366
6.34438
6.33439
6.32376
6.31241
6.30036
6.28753
6.27392
6.25947
6.2442
6.2281
6.21124
6.19363
6.17528
6.1561
6.13597
6.11471
6.09215
6.0682
6.04282
6.01602
5.98779
5.95809
5.9269
5.89406
5.85957
5.82346
5.78599
5.74747
5.70827
5.66862
5.62865
5.58824
5.54743
5.50621
5.46496
5.42422
5.38467
5.34709
5.3121
5.28012
5.25098
5.22468
5.20062
5.179
5.15959
5.14287
5.12842
5.11647
5.10614
5.09768
5.09006
5.08386
5.07791
5.07297
5.0675
5.06238
5.05605
5.04896
5.03942
5.02908
5.01632
5.00321
4.98805
4.97282
4.95568
4.9384
4.91889
4.89951
4.87835
4.8574
4.83469
4.81216
4.78814
4.76488
4.7416
4.72275
4.70852
4.70054
4.6913
4.67758
4.67444
4.67597
14.4622
13.6801
4.51992
4.71185
4.87007
4.97208
5.0635
5.13501
5.2047
5.26335
5.32345
5.37524
5.42914
5.47639
5.52538
5.56934
5.61442
5.65594
5.69806
5.73785
5.77794
5.81672
5.85586
5.89409
5.93119
5.96706
6.0016
6.03501
6.06709
6.09808
6.12773
6.15635
6.18361
6.20983
6.23469
6.2585
6.28092
6.30233
6.32236
6.3413
6.35892
6.37541
6.39062
6.40469
6.41756
6.4293
6.43991
6.4494
6.45783
6.46516
6.47149
6.47675
6.48107
6.48438
6.48679
6.48823
6.48879
6.48839
6.48712
6.4849
6.48183
6.47785
6.47303
6.46734
6.46084
6.4535
6.4454
6.43651
6.42691
6.4166
6.40566
6.39401
6.38165
6.36845
6.35439
6.33938
6.32345
6.30661
6.28892
6.27042
6.25117
6.23107
6.20997
6.18759
6.16366
6.138
6.11051
6.08119
6.05007
6.01697
5.98183
5.94443
5.90463
5.86228
5.81749
5.77059
5.72212
5.6722
5.62126
5.56908
5.51581
5.46127
5.40571
5.34963
5.29382
5.23907
5.1864
5.13686
5.09088
5.04893
5.01077
4.97676
4.94679
4.9215
4.90066
4.88468
4.87267
4.86493
4.86028
4.85933
4.86084
4.86565
4.87203
4.88047
4.88847
4.89624
4.90154
4.90549
4.90619
4.90558
4.90206
4.89764
4.89071
4.88296
4.8728
4.86185
4.84824
4.83311
4.81504
4.79611
4.77566
4.75545
4.73507
4.71821
4.70831
4.7089
4.71084
4.70363
4.70805
4.71736
14.4889
13.7087
4.57137
4.76496
4.91952
5.01586
5.10551
5.17513
5.24428
5.30237
5.36203
5.41357
5.46699
5.51404
5.56263
5.60645
5.65131
5.6928
5.73486
5.77471
5.81483
5.85363
5.89253
5.93055
5.96783
6.00405
6.03904
6.07301
6.10572
6.13738
6.16774
6.1971
6.22513
6.25215
6.2778
6.3024
6.32557
6.34772
6.36848
6.38812
6.40641
6.42355
6.43938
6.45404
6.46747
6.47972
6.4908
6.50073
6.50956
6.51725
6.52392
6.52951
6.53415
6.53779
6.54053
6.5423
6.54318
6.54307
6.54207
6.54009
6.53722
6.5334
6.52871
6.52311
6.51667
6.50936
6.50126
6.49238
6.48279
6.47247
6.46158
6.45002
6.43779
6.42474
6.41083
6.39593
6.38008
6.3633
6.34569
6.32718
6.30801
6.28808
6.2673
6.24536
6.22191
6.19667
6.16949
6.14033
6.10942
6.07643
6.04121
6.00351
5.96313
5.91974
5.87316
5.82356
5.7712
5.7165
5.66001
5.6016
5.54158
5.47953
5.41552
5.34959
5.28211
5.21381
5.14574
5.07929
5.01549
4.95546
4.89972
4.84896
4.80343
4.76389
4.73051
4.70397
4.68378
4.67031
4.66254
4.66094
4.66449
4.67401
4.68819
4.70725
4.72855
4.75132
4.77259
4.79223
4.80806
4.82126
4.8306
4.83776
4.84183
4.8443
4.84417
4.84232
4.83683
4.82761
4.81354
4.79677
4.77804
4.75843
4.73776
4.71853
4.70764
4.71349
4.72753
4.72752
4.74101
4.75803
14.5145
13.7357
4.616
4.80681
4.95565
5.04598
5.13349
5.20071
5.26872
5.3256
5.38418
5.4348
5.48714
5.53339
5.58104
5.62418
5.66831
5.70928
5.75083
5.79027
5.82996
5.86831
5.90658
5.94382
5.98044
6.01645
6.05139
6.08549
6.1185
6.15055
6.18135
6.21122
6.23982
6.26746
6.29378
6.31904
6.34285
6.36566
6.38705
6.40732
6.42623
6.44394
6.46035
6.47556
6.48951
6.50224
6.51379
6.52413
6.53335
6.5414
6.54841
6.55433
6.55931
6.56331
6.56644
6.56863
6.56996
6.57029
6.56974
6.5682
6.56577
6.56239
6.55814
6.55298
6.54698
6.54013
6.53251
6.52419
6.51524
6.50554
6.49536
6.48459
6.47328
6.46126
6.44847
6.43476
6.42014
6.4047
6.38868
6.37166
6.35404
6.33582
6.31703
6.2974
6.27658
6.25418
6.22994
6.20366
6.17531
6.14472
6.11196
6.0769
6.03931
5.9987
5.95468
5.90715
5.85611
5.80194
5.74518
5.68599
5.62478
5.56106
5.49482
5.42572
5.35372
5.27914
5.20262
5.12539
5.04867
4.9739
4.90224
4.83474
4.77217
4.71549
4.66545
4.62298
4.58835
4.56205
4.54366
4.53336
4.53072
4.53636
4.54998
4.57173
4.59992
4.63271
4.66662
4.69967
4.72921
4.75506
4.77632
4.79407
4.80821
4.81995
4.82903
4.83575
4.83825
4.83505
4.82475
4.80945
4.79138
4.77135
4.74913
4.72492
4.7079
4.71414
4.74153
4.74962
4.77254
4.79765
14.5382
13.7609
4.65415
4.83885
4.98073
5.06485
5.14965
5.21382
5.27991
5.33478
5.3915
5.44045
5.49098
5.53572
5.58176
5.62359
5.6664
5.70627
5.74676
5.7853
5.82409
5.86158
5.89895
5.93531
5.97116
6.0063
6.04053
6.07413
6.10702
6.1391
6.17003
6.20013
6.22905
6.2571
6.28393
6.30974
6.33412
6.35748
6.37947
6.40031
6.4198
6.43809
6.45508
6.47084
6.48534
6.49862
6.51068
6.52153
6.53122
6.53974
6.5472
6.55359
6.55905
6.56357
6.56728
6.57014
6.57224
6.57337
6.57367
6.57303
6.57154
6.56916
6.56595
6.56189
6.55702
6.55136
6.54499
6.53804
6.53077
6.52272
6.51426
6.50532
6.49598
6.48611
6.47563
6.46434
6.45218
6.43906
6.42501
6.40999
6.39437
6.37828
6.36186
6.34495
6.32727
6.30838
6.28794
6.26559
6.24119
6.21464
6.18606
6.15541
6.12256
6.08696
6.04809
6.00568
5.95948
5.9097
5.85675
5.80095
5.74263
5.68158
5.61777
5.55067
5.48
5.40568
5.3279
5.24745
5.16538
5.083
5.00171
4.92263
4.84691
4.77561
4.71005
4.65129
4.60037
4.55789
4.52427
4.49938
4.48345
4.4768
4.48049
4.49493
4.52008
4.55379
4.5929
4.63349
4.67236
4.70747
4.73792
4.76389
4.78592
4.80494
4.82142
4.83544
4.84541
4.84867
4.84287
4.82961
4.8127
4.79304
4.77027
4.74018
4.71184
4.71069
4.75126
4.76832
4.80131
4.83604
14.5597
13.7839
4.6862
4.86236
4.99641
5.07404
5.15528
5.2155
5.27863
5.33051
5.38444
5.4308
5.47867
5.52108
5.56475
5.60454
5.64537
5.68354
5.72242
5.75954
5.79701
5.8333
5.86955
5.90494
5.93996
5.97434
6.00802
6.04119
6.0736
6.10531
6.13603
6.16604
6.19503
6.22326
6.25047
6.27681
6.30176
6.32569
6.34831
6.36981
6.39
6.40899
6.4267
6.44319
6.45846
6.47249
6.48534
6.49696
6.50744
6.51676
6.52502
6.53223
6.53855
6.54397
6.54865
6.55262
6.55607
6.55862
6.56045
6.56144
6.56166
6.56108
6.55976
6.55767
6.55485
6.55129
6.54704
6.54214
6.53665
6.53043
6.52382
6.51678
6.50945
6.50174
6.49359
6.48479
6.47519
6.46463
6.45305
6.44051
6.42732
6.41369
6.39988
6.38585
6.37144
6.35624
6.33988
6.32192
6.30213
6.28036
6.25672
6.23122
6.20378
6.17393
6.14114
6.105
6.06517
6.02159
5.97456
5.92434
5.87122
5.8152
5.75621
5.69383
5.62762
5.55731
5.48277
5.40437
5.32291
5.23937
5.15506
5.07093
4.98826
4.90797
4.8317
4.7605
4.69601
4.63887
4.59029
4.54991
4.51845
4.49563
4.48351
4.4827
4.49519
4.51962
4.55438
4.59446
4.63626
4.67578
4.71172
4.74301
4.77045
4.79462
4.81668
4.8369
4.85423
4.86503
4.86533
4.85551
4.84099
4.82328
4.8016
4.76678
4.72365
4.70462
4.7552
4.78243
4.82606
4.87298
14.5788
13.8046
4.71253
4.87839
5.00394
5.07461
5.15112
5.2062
5.26512
5.31287
5.36294
5.40574
5.45005
5.48927
5.5298
5.56682
5.60503
5.6409
5.67766
5.71292
5.7487
5.78353
5.81851
5.85285
5.88703
5.92075
5.954
5.98687
6.01909
6.05076
6.08163
6.11194
6.14135
6.1701
6.19788
6.22477
6.25042
6.27507
6.2985
6.32088
6.34202
6.362
6.38077
6.39835
6.41476
6.42998
6.44405
6.45693
6.46871
6.47935
6.48897
6.49756
6.50529
6.51217
6.51836
6.52387
6.52879
6.53292
6.5364
6.53913
6.54117
6.54249
6.54314
6.5431
6.54239
6.54097
6.53887
6.53606
6.53257
6.52839
6.52377
6.51874
6.51348
6.50794
6.50211
6.49581
6.48885
6.48105
6.47227
6.46257
6.45217
6.44129
6.43026
6.41916
6.40797
6.39635
6.38398
6.37038
6.35527
6.33843
6.31987
6.29962
6.27761
6.25351
6.22677
6.19699
6.16375
6.12685
6.0864
6.04256
5.99558
5.94551
5.89232
5.83567
5.77516
5.71037
5.64105
5.56727
5.48962
5.40874
5.32575
5.24139
5.15687
5.07288
4.99112
4.91243
4.83881
4.77082
4.71032
4.6569
4.61164
4.57353
4.54489
4.52609
4.52056
4.5282
4.54994
4.58112
4.61871
4.6571
4.69447
4.72826
4.759
4.78647
4.81265
4.83797
4.86242
4.8819
4.89038
4.88561
4.87439
4.8599
4.84186
4.80585
4.74797
4.70009
4.75262
4.791
4.84563
4.90826
14.5955
13.8229
4.73346
4.88787
5.00432
5.06731
5.13764
5.18619
5.23953
5.28201
5.32717
5.36548
5.40536
5.4406
5.47727
5.51087
5.54587
5.57891
5.61311
5.64613
5.67993
5.71308
5.74667
5.77991
5.81326
5.84641
5.87936
5.91211
5.9444
5.97636
6.00771
6.03864
6.06885
6.09848
6.12722
6.15514
6.18194
6.20784
6.23254
6.25626
6.27881
6.30024
6.3205
6.3396
6.35755
6.37434
6.39
6.40449
6.4179
6.43018
6.44143
6.45166
6.46102
6.46953
6.47733
6.48446
6.49097
6.49679
6.50201
6.50656
6.51049
6.51377
6.51644
6.51848
6.51991
6.52069
6.5208
6.52021
6.51891
6.51694
6.51447
6.51159
6.50847
6.50514
6.50163
6.49781
6.49351
6.48853
6.48271
6.47606
6.46869
6.4608
6.45272
6.44461
6.43658
6.42841
6.41982
6.41039
6.39978
6.38772
6.37415
6.35903
6.34231
6.32374
6.30281
6.27911
6.25225
6.22194
6.18811
6.15082
6.11024
6.06641
6.01935
5.96878
5.91432
5.85552
5.79215
5.72396
5.65151
5.57509
5.49571
5.4138
5.33054
5.24632
5.16286
5.08071
5.00194
4.92694
4.85801
4.79479
4.73876
4.68831
4.64575
4.61067
4.58694
4.57498
4.57827
4.59368
4.62004
4.65136
4.68585
4.71913
4.75115
4.78026
4.8089
4.83755
4.86769
4.896
4.91474
4.91732
4.9105
4.90034
4.88853
4.85642
4.78828
4.70413
4.74444
4.79331
4.85908
4.94171
14.6099
13.8387
4.74936
4.89163
4.99836
5.05273
5.11529
5.1559
5.20238
5.2386
5.27795
5.311
5.34573
5.37633
5.40853
5.43815
5.46942
5.49919
5.53042
5.56086
5.59242
5.6237
5.65575
5.68782
5.72033
5.75296
5.7857
5.81849
5.85109
5.88359
5.9157
5.94758
5.9789
6.00977
6.03987
6.06924
6.09764
6.12521
6.15167
6.17715
6.20154
6.22484
6.24701
6.26801
6.28789
6.3066
6.32419
6.34061
6.35594
6.37014
6.38329
6.3954
6.40659
6.4169
6.42646
6.43532
6.44355
6.45115
6.45817
6.46459
6.47044
6.4757
6.48041
6.48455
6.48814
6.49113
6.49351
6.49522
6.49625
6.49663
6.49647
6.49588
6.49502
6.49397
6.4928
6.49146
6.48979
6.48764
6.48484
6.48133
6.47716
6.47246
6.46753
6.46254
6.45771
6.45294
6.44804
6.44263
6.43636
6.42895
6.42024
6.4102
6.3987
6.38555
6.37026
6.35248
6.33182
6.30794
6.28069
6.24999
6.21593
6.17851
6.13777
6.09345
6.04525
5.99265
5.93544
5.8733
5.80665
5.73553
5.66088
5.58284
5.50259
5.42022
5.33748
5.25452
5.17351
5.09446
5.02006
4.9499
4.88599
4.8263
4.77313
4.72521
4.68618
4.65594
4.63956
4.6353
4.6447
4.66294
4.68911
4.71776
4.74832
4.77738
4.80654
4.83598
4.86902
4.90466
4.9352
4.9481
4.94713
4.94239
4.93826
4.91538
4.8451
4.72496
4.73444
4.78894
4.86583
4.97324
14.6223
13.852
4.76079
4.89043
4.98679
5.03149
5.08471
5.11616
5.15477
5.18402
5.21692
5.24415
5.27321
5.29869
5.32595
5.35113
5.37826
5.40435
5.43223
5.45978
5.48879
5.51794
5.54824
5.57899
5.61055
5.64263
5.67517
5.70809
5.74113
5.77435
5.80744
5.8405
5.87322
5.90563
5.93743
5.96863
5.99899
6.0286
6.05724
6.08489
6.1115
6.13705
6.1615
6.18478
6.20692
6.22788
6.2477
6.26634
6.28386
6.30023
6.31552
6.32971
6.34294
6.35523
6.3667
6.37743
6.3875
6.39694
6.40583
6.41415
6.42194
6.42919
6.43594
6.44217
6.44791
6.45314
6.45781
6.46188
6.46533
6.46816
6.47045
6.47228
6.47382
6.47517
6.47644
6.47762
6.47862
6.47932
6.47955
6.47925
6.47842
6.47712
6.47556
6.47394
6.4725
6.47126
6.47012
6.46877
6.46686
6.4641
6.46032
6.45542
6.44927
6.44163
6.43207
6.42022
6.40576
6.38835
6.36772
6.34365
6.31615
6.28511
6.25054
6.21219
6.16987
6.1231
6.07181
6.01562
5.95497
5.88972
5.8207
5.74785
5.67226
5.59367
5.51373
5.43213
5.35109
5.27027
5.19271
5.11789
5.04841
4.98186
4.92089
4.86341
4.81281
4.76775
4.73389
4.70985
4.69941
4.69953
4.71148
4.72996
4.75484
4.78093
4.80828
4.8357
4.86758
4.90667
4.94881
4.97542
4.98347
4.98552
4.99041
4.98016
4.91724
4.76844
4.73014
4.77816
4.86582
5.0029
14.6326
13.8627
4.76813
4.88494
4.97031
5.0043
5.04685
5.06831
5.09841
5.12033
5.14642
5.16758
5.19069
5.21076
5.2328
5.25324
5.27587
5.29792
5.32208
5.34634
5.37243
5.39913
5.42736
5.4565
5.48686
5.51818
5.55038
5.58335
5.61682
5.6508
5.68496
5.71934
5.75362
5.78779
5.82155
5.85485
5.88747
5.91943
5.95053
5.98075
6.00992
6.03804
6.0651
6.09097
6.1157
6.13919
6.16152
6.18263
6.20258
6.22133
6.23896
6.25546
6.27091
6.28535
6.2989
6.31163
6.32366
6.33505
6.34586
6.35613
6.36589
6.37514
6.38393
6.39226
6.40016
6.40761
6.4146
6.42108
6.42702
6.4324
6.43726
6.44168
6.44578
6.4497
6.45358
6.45744
6.46124
6.46489
6.46826
6.4713
6.474
6.47634
6.4785
6.48059
6.4829
6.48552
6.48847
6.49145
6.49414
6.49625
6.49762
6.49812
6.49755
6.49558
6.49174
6.48558
6.47676
6.46492
6.44983
6.43127
6.40925
6.38363
6.35443
6.32141
6.28447
6.2432
6.19761
6.14729
6.09269
6.03355
5.97074
5.90391
5.83414
5.76096
5.68594
5.6084
5.53055
5.45155
5.37437
5.29789
5.22516
5.15375
5.08708
5.02253
4.96355
4.90739
4.85984
4.81886
4.7893
4.76906
4.7623
4.76492
4.77877
4.79794
4.8205
4.84234
4.86759
4.90339
4.95362
4.99688
5.018
5.02849
5.04382
5.049
5.00331
4.83811
4.74262
4.76241
4.85962
5.03089
14.641
13.8708
4.77162
4.8757
4.94963
4.97208
5.00302
5.01411
5.03546
5.05008
5.06936
5.0845
5.10169
5.11636
5.13309
5.14866
5.16656
5.1843
5.20434
5.22495
5.24767
5.27146
5.29714
5.32419
5.35289
5.38302
5.41448
5.44717
5.48082
5.51537
5.5505
5.58615
5.62201
5.65801
5.69384
5.72939
5.76445
5.79897
5.83276
5.86574
5.8978
5.92878
5.95871
5.98746
6.01503
6.04133
6.06642
6.09022
6.11282
6.13416
6.15433
6.1733
6.19115
6.20792
6.22371
6.23861
6.25274
6.26618
6.27903
6.29133
6.30312
6.31443
6.32531
6.33577
6.34585
6.35556
6.36492
6.37389
6.38243
6.39051
6.39812
6.40532
6.41222
6.41899
6.42576
6.4326
6.43948
6.44634
6.45311
6.45975
6.4663
6.47269
6.47901
6.48534
6.49193
6.49894
6.50646
6.51419
6.52178
6.52885
6.53514
6.54044
6.54453
6.5471
6.54778
6.54613
6.54184
6.53457
6.52412
6.51028
6.49306
6.47231
6.44804
6.42002
6.38824
6.35229
6.3123
6.2678
6.21928
6.16635
6.1099
6.04954
5.98617
5.9192
5.85024
5.77827
5.70553
5.63079
5.55697
5.48247
5.41058
5.33856
5.27003
5.20147
5.13686
5.07269
5.01516
4.96117
4.91576
4.87645
4.84946
4.83225
4.82993
4.83798
4.85335
4.8672
4.87944
4.90045
4.94932
5.00917
5.04694
5.0678
5.09334
5.11563
5.09541
4.93405
4.78508
4.74581
4.8487
5.05756
14.6476
13.8764
4.77143
4.86329
4.9255
4.93593
4.95482
4.95571
4.96846
4.97622
4.98907
4.99864
5.01031
5.01993
5.0316
5.04246
5.05561
5.06892
5.08458
5.10117
5.12003
5.14035
5.16283
5.18708
5.21337
5.24154
5.27152
5.30325
5.33645
5.37106
5.40672
5.44332
5.48051
5.51816
5.55596
5.59373
5.63123
5.66836
5.70494
5.74082
5.77589
5.80997
5.84298
5.87482
5.90547
5.93481
5.96287
5.9896
6.01505
6.03919
6.06208
6.08371
6.10415
6.12343
6.14166
6.1589
6.17531
6.19098
6.20601
6.2205
6.23448
6.24799
6.26108
6.2738
6.28619
6.29831
6.31019
6.32182
6.33318
6.3442
6.35484
6.36516
6.37524
6.38526
6.39538
6.40569
6.41616
6.42672
6.43736
6.44809
6.45898
6.46996
6.481
6.49202
6.50318
6.51454
6.52615
6.5378
6.54921
6.56006
6.5701
6.5791
6.58683
6.59303
6.59737
6.59946
6.59901
6.59569
6.58937
6.57979
6.567
6.5508
6.53124
6.50804
6.4813
6.45058
6.41612
6.37737
6.33492
6.2882
6.23819
6.18425
6.12762
6.06723
6.00484
5.93919
5.87255
5.80337
5.73461
5.66427
5.59581
5.52625
5.45943
5.39133
5.32613
5.25944
5.19692
5.13431
5.07727
5.02253
4.97722
4.93926
4.91693
4.90985
4.91619
4.92276
4.92017
4.91319
4.94036
5.00896
5.06652
5.10064
5.13574
5.17321
5.18125
5.04436
4.86521
4.73705
4.83592
5.08338
14.6525
13.8793
4.76775
4.84825
4.89878
4.89719
4.90412
4.89551
4.90027
4.90209
4.90938
4.91436
4.92139
4.92684
4.93413
4.94084
4.9496
4.95867
4.96988
4.9822
4.99675
5.01296
5.03146
5.05199
5.07481
5.09988
5.12722
5.15678
5.18842
5.22204
5.25732
5.29407
5.33192
5.37066
5.40997
5.4496
5.48929
5.52885
5.56809
5.60682
5.64489
5.68209
5.71834
5.75342
5.78731
5.81988
5.85113
5.88099
5.90951
5.93665
5.96248
5.98699
6.01025
6.03227
6.05317
6.07301
6.09194
6.1101
6.1276
6.14457
6.16104
6.17706
6.19268
6.20796
6.22297
6.2378
6.25253
6.26722
6.28182
6.29625
6.31045
6.32442
6.33827
6.35218
6.36635
6.38085
6.39558
6.41044
6.42536
6.44028
6.45525
6.47017
6.48502
6.49974
6.51442
6.5291
6.54384
6.55847
6.57281
6.58658
6.59957
6.61153
6.62225
6.63147
6.63894
6.64428
6.64725
6.64752
6.64499
6.63939
6.63079
6.61893
6.60393
6.58544
6.56365
6.53807
6.50906
6.47598
6.43951
6.39894
6.35534
6.30785
6.25788
6.20421
6.1486
6.08957
6.02949
5.96653
5.90371
5.8387
5.7751
5.70975
5.64667
5.58161
5.51892
5.45377
5.3915
5.32709
5.26596
5.20318
5.14501
5.08924
5.04625
5.02051
5.01485
5.01572
5.00383
4.96571
4.9443
4.99794
5.0741
5.12533
5.17082
5.22112
5.25581
5.15218
4.97843
4.74845
4.82591
5.10884
14.6557
13.8795
4.76068
4.83117
4.8704
4.85739
4.85305
4.83627
4.83422
4.83171
4.83504
4.83722
4.84126
4.84415
4.84847
4.85226
4.85748
4.86292
4.87
4.87809
4.88806
4.89965
4.91337
4.92914
4.94724
4.96775
4.9908
5.01649
5.0448
5.07575
5.10907
5.14452
5.18172
5.22039
5.26019
5.30081
5.34194
5.38334
5.42476
5.46597
5.50678
5.54695
5.58632
5.62466
5.66189
5.69781
5.73241
5.76562
5.79745
5.82787
5.85692
5.88461
5.91099
5.93609
5.96001
5.98283
6.00469
6.02576
6.0462
6.06616
6.08569
6.1048
6.12354
6.14199
6.16023
6.17839
6.19662
6.21504
6.23362
6.25222
6.27069
6.28897
6.30709
6.32512
6.34321
6.36139
6.37963
6.39786
6.41604
6.43413
6.45215
6.47002
6.48776
6.50528
6.52267
6.53993
6.55712
6.5741
6.59077
6.60689
6.62228
6.6367
6.64997
6.66183
6.67207
6.68033
6.68643
6.69002
6.69105
6.68922
6.68462
6.67695
6.66637
6.65247
6.63553
6.61499
6.59133
6.56381
6.53321
6.49869
6.4614
6.42029
6.37691
6.32985
6.28105
6.22874
6.17538
6.11891
6.06242
6.00334
5.94533
5.88509
5.82681
5.76613
5.70752
5.64598
5.5867
5.52433
5.46407
5.40027
5.33797
5.27401
5.21732
5.17439
5.15368
5.14686
5.13211
5.07509
4.99274
4.99034
5.07012
5.14105
5.1999
5.26243
5.3209
5.24664
5.10941
4.79223
4.82615
5.13419
14.6571
13.8771
4.75031
4.81258
4.84136
4.8183
4.80402
4.78116
4.77411
4.76953
4.77108
4.77272
4.77597
4.77842
4.78178
4.78461
4.78811
4.79153
4.79582
4.80066
4.80666
4.81379
4.82244
4.83269
4.84487
4.85925
4.8761
4.89576
4.91846
4.94439
4.97342
5.00533
5.03972
5.0763
5.11472
5.15466
5.19575
5.2377
5.28022
5.32301
5.36582
5.40839
5.45047
5.49181
5.53224
5.57155
5.6096
5.64634
5.68175
5.71579
5.74846
5.77977
5.80977
5.83847
5.86598
5.89238
5.91783
5.94252
5.96667
5.99049
6.01401
6.03718
6.06001
6.08255
6.10484
6.12699
6.1491
6.17125
6.19342
6.21552
6.23743
6.2591
6.28052
6.30173
6.32281
6.3438
6.36471
6.38548
6.40613
6.42658
6.4469
6.46701
6.48694
6.50662
6.52612
6.54542
6.56457
6.58347
6.60205
6.62012
6.63753
6.65406
6.66955
6.68374
6.69649
6.70742
6.71641
6.7231
6.7275
6.72924
6.72848
6.72483
6.71853
6.70909
6.69688
6.68125
6.66281
6.64069
6.61581
6.58716
6.55604
6.52118
6.48425
6.44368
6.40152
6.35586
6.30921
6.25928
6.20922
6.15631
6.10419
6.04949
5.99647
5.94078
5.88693
5.82993
5.77482
5.71626
5.65919
5.59798
5.53672
5.47173
5.40941
5.35607
5.3231
5.30845
5.294
5.23601
5.11077
5.01872
5.0633
5.14863
5.22464
5.30077
5.38073
5.3253
5.23937
4.87384
4.84662
5.16006
14.6567
13.8719
4.73662
4.79279
4.81268
4.78182
4.75961
4.7331
4.72284
4.71765
4.71878
4.72107
4.72489
4.72826
4.73217
4.73556
4.73904
4.74216
4.74546
4.74882
4.75264
4.75697
4.76213
4.76828
4.77574
4.78483
4.79592
4.80943
4.82572
4.84513
4.86777
4.89363
4.92249
4.9542
4.98848
5.02508
5.06367
5.10394
5.14556
5.1882
5.23156
5.27531
5.31916
5.36278
5.40592
5.44833
5.48983
5.53022
5.5695
5.60758
5.64442
5.67999
5.71432
5.7474
5.77931
5.81011
5.83992
5.8689
5.89721
5.925
5.95232
5.97915
6.00552
6.03149
6.05711
6.08247
6.10766
6.13273
6.15769
6.18247
6.20701
6.23127
6.25522
6.27886
6.30225
6.3254
6.34836
6.37108
6.39361
6.41586
6.43794
6.45975
6.48137
6.50273
6.5239
6.54483
6.56558
6.58606
6.60622
6.62592
6.64506
6.6634
6.68085
6.69712
6.71212
6.72548
6.73716
6.74675
6.75431
6.75944
6.76233
6.76253
6.76035
6.7552
6.74756
6.73666
6.72326
6.70635
6.68699
6.66401
6.63884
6.61001
6.57934
6.54506
6.50934
6.4701
6.42996
6.38648
6.34275
6.29598
6.24977
6.20074
6.15309
6.10259
6.05369
6.00151
5.95094
5.8968
5.84374
5.78656
5.7286
5.66642
5.60397
5.5461
5.50417
5.48078
5.46471
5.41785
5.28986
5.119
5.07914
5.15419
5.24739
5.33854
5.43722
5.39039
5.35151
4.98734
4.8944
5.18711
14.6547
13.8637
4.71943
4.77196
4.78521
4.7496
4.7218
4.69349
4.68099
4.67564
4.67686
4.68029
4.6854
4.69048
4.69593
4.70093
4.70568
4.70987
4.71375
4.71729
4.72068
4.72404
4.72757
4.73143
4.73591
4.74134
4.74808
4.75661
4.76732
4.78069
4.79702
4.8165
4.83916
4.86498
4.89387
4.92567
4.96017
4.99709
5.03614
5.07698
5.11929
5.16272
5.20696
5.25162
5.29639
5.34093
5.385
5.42833
5.4708
5.51228
5.55268
5.59194
5.63001
5.66689
5.70262
5.73724
5.77082
5.80348
5.83534
5.86654
5.8971
5.92703
5.95635
5.98516
6.01351
6.04147
6.06912
6.09651
6.12365
6.15053
6.17711
6.20336
6.22926
6.25479
6.27998
6.30483
6.32939
6.35362
6.37761
6.40125
6.42469
6.44781
6.47074
6.49339
6.51587
6.5381
6.56015
6.58191
6.6034
6.62446
6.64505
6.66494
6.68409
6.70218
6.7192
6.73476
6.74891
6.76117
6.77169
6.77999
6.78634
6.79017
6.7919
6.79083
6.78755
6.78117
6.77258
6.7606
6.74651
6.72892
6.70943
6.68637
6.66166
6.63338
6.60378
6.57068
6.5367
6.49937
6.46173
6.42088
6.38039
6.33689
6.29451
6.24911
6.20506
6.15762
6.11152
6.06183
6.01281
5.95993
5.90593
5.84798
5.78829
5.73007
5.68281
5.65107
5.62936
5.59024
5.48588
5.28969
5.15354
5.17447
5.27229
5.37664
5.48987
5.44538
5.43632
5.11449
4.96775
5.21442
14.6503
13.8526
4.69858
4.75001
4.75942
4.7225
4.6914
4.66248
4.64823
4.64263
4.64398
4.64855
4.65516
4.66226
4.66976
4.67698
4.68383
4.69007
4.69573
4.70079
4.70531
4.70937
4.71308
4.71658
4.72007
4.72383
4.72818
4.73354
4.74033
4.74904
4.76009
4.77382
4.79045
4.81014
4.83297
4.85897
4.88805
4.92008
4.95484
4.99209
5.03151
5.07278
5.11559
5.15957
5.20435
5.24954
5.29483
5.33986
5.38443
5.42833
5.47141
5.51354
5.55463
5.59462
5.63351
5.67131
5.70805
5.74382
5.77869
5.81276
5.84607
5.87862
5.91044
5.94162
5.97221
6.00229
6.03194
6.06118
6.09007
6.1186
6.14677
6.17456
6.20198
6.22899
6.25559
6.28177
6.3076
6.33302
6.35814
6.38287
6.40735
6.43148
6.4554
6.47905
6.50254
6.52579
6.54886
6.57165
6.59421
6.61638
6.63817
6.65935
6.67994
6.69958
6.71836
6.73586
6.75224
6.76693
6.78018
6.7914
6.80096
6.80817
6.81356
6.81629
6.8171
6.81493
6.81085
6.80347
6.79432
6.78181
6.76764
6.74997
6.73082
6.70816
6.68426
6.65688
6.62861
6.59697
6.56495
6.52963
6.49447
6.45619
6.41876
6.37814
6.33863
6.29559
6.2536
6.20802
6.16269
6.11381
6.06361
6.00998
5.95406
5.89777
5.84823
5.80997
5.78096
5.74197
5.66152
5.48829
5.29255
5.22967
5.30667
5.4167
5.5378
5.49361
5.49312
5.23374
5.05558
5.23965
14.6432
13.8384
4.67384
4.72659
4.73513
4.70043
4.66834
4.63974
4.62411
4.61795
4.61916
4.62453
4.63249
4.64153
4.6512
4.66088
4.67027
4.67915
4.68738
4.69494
4.70176
4.70789
4.71336
4.71824
4.72265
4.72678
4.73088
4.73528
4.74034
4.74649
4.75416
4.76377
4.77563
4.79004
4.80722
4.82734
4.85051
4.87675
4.90596
4.93806
4.97283
5.01004
5.04943
5.09069
5.13348
5.1774
5.2221
5.26716
5.31231
5.35726
5.40178
5.44565
5.48875
5.53094
5.57216
5.61238
5.65158
5.68981
5.72708
5.76347
5.79901
5.83371
5.86758
5.90068
5.93307
5.96485
5.99606
6.02675
6.057
6.0868
6.1162
6.14517
6.17374
6.20187
6.22956
6.25677
6.28358
6.30992
6.33592
6.36147
6.38671
6.41159
6.43625
6.46066
6.48492
6.50894
6.5328
6.55639
6.57979
6.60281
6.62556
6.64774
6.66951
6.69038
6.71066
6.72987
6.74822
6.76509
6.7808
6.79465
6.80711
6.81738
6.82611
6.83229
6.83683
6.83849
6.83852
6.83533
6.83075
6.8229
6.8136
6.80084
6.78674
6.76916
6.75039
6.72816
6.705
6.67845
6.65136
6.62094
6.59057
6.55699
6.52401
6.48764
6.45212
6.41292
6.37446
6.33238
6.29011
6.24464
6.19776
6.14794
6.09561
6.04207
5.99211
5.94944
5.91343
5.8707
5.80257
5.66936
5.47111
5.33228
5.36224
5.46296
5.58048
5.53608
5.52668
5.3298
5.14264
5.25926
14.6327
13.8211
4.64505
4.70094
4.71141
4.68223
4.65166
4.62451
4.60806
4.60116
4.60186
4.60754
4.61643
4.62709
4.63877
4.65087
4.66292
4.67469
4.68592
4.69655
4.70645
4.71561
4.72399
4.7316
4.73849
4.74476
4.75056
4.75611
4.76169
4.76764
4.77432
4.7821
4.79134
4.80236
4.81546
4.8309
4.84889
4.8696
4.89309
4.91942
4.94853
4.98033
5.01467
5.05135
5.09014
5.13071
5.17274
5.21581
5.25961
5.30379
5.34806
5.39216
5.43586
5.47898
5.52137
5.56298
5.60369
5.6435
5.68239
5.72039
5.75752
5.79375
5.82911
5.8636
5.8973
5.93028
5.96259
5.99427
6.02546
6.05615
6.08641
6.11621
6.14558
6.17448
6.20294
6.23089
6.2584
6.2854
6.31201
6.33814
6.36389
6.38929
6.41452
6.4395
6.46436
6.48896
6.51344
6.53761
6.56164
6.58529
6.60876
6.63168
6.65434
6.67611
6.69771
6.71843
6.73855
6.75732
6.77519
6.79133
6.80634
6.81927
6.83091
6.84012
6.84793
6.85294
6.85656
6.85706
6.85625
6.85222
6.84692
6.83827
6.8284
6.81516
6.80076
6.78303
6.76431
6.74233
6.71965
6.69367
6.66753
6.63795
6.60869
6.57579
6.54351
6.5073
6.47158
6.4321
6.39205
6.34927
6.30503
6.25822
6.20868
6.15776
6.10813
6.06262
6.02057
5.97352
5.90904
5.80757
5.64614
5.47169
5.44674
5.51961
5.61727
5.57062
5.54242
5.39549
5.21575
5.2694
14.6179
13.8006
4.61169
4.67199
4.6866
4.66568
4.63937
4.61525
4.59912
4.59175
4.59178
4.59736
4.60673
4.61855
4.63189
4.64613
4.66069
4.67529
4.68961
4.70354
4.71688
4.72958
4.74155
4.75273
4.76311
4.77273
4.78164
4.78998
4.79793
4.80573
4.81365
4.82197
4.83099
4.84102
4.85235
4.86525
4.87996
4.89671
4.91565
4.93694
4.96068
4.98689
5.01558
5.04669
5.08014
5.11572
5.15323
5.19233
5.23277
5.27416
5.31621
5.35864
5.40118
5.44361
5.48563
5.52721
5.56813
5.60835
5.64778
5.68639
5.72418
5.76112
5.79718
5.83237
5.86671
5.90027
5.93308
5.96518
5.99682
6.02798
6.0587
6.08893
6.11873
6.14805
6.17693
6.20529
6.23321
6.26057
6.28753
6.31398
6.33997
6.36579
6.39155
6.41704
6.44242
6.46751
6.49248
6.51712
6.54164
6.56574
6.58973
6.61317
6.63643
6.6589
6.68111
6.70241
6.72326
6.74287
6.76178
6.77909
6.7955
6.80996
6.82338
6.83448
6.84445
6.85174
6.85788
6.86105
6.86307
6.86199
6.8598
6.85442
6.84792
6.83824
6.82742
6.81347
6.79847
6.78039
6.76149
6.7394
6.71694
6.69105
6.66525
6.63563
6.60646
6.57319
6.54024
6.50338
6.4659
6.42521
6.38276
6.33792
6.29007
6.24113
6.19186
6.14431
6.09736
6.04603
5.98282
5.89829
5.78272
5.6153
5.55212
5.58434
5.64613
5.59295
5.54329
5.42973
5.26715
5.26662
14.5982
13.777
4.57292
4.63835
4.65855
4.64773
4.62834
4.60929
4.59535
4.58857
4.58839
4.59381
4.60336
4.6159
4.63044
4.64637
4.66307
4.68018
4.69734
4.71437
4.73108
4.74734
4.76302
4.778
4.79226
4.80576
4.81847
4.83049
4.84194
4.85293
4.8637
4.87435
4.88517
4.8964
4.90827
4.921
4.93478
4.94984
4.96634
4.98446
5.00436
5.02616
5.04997
5.07585
5.10385
5.13389
5.16598
5.19985
5.23541
5.27232
5.31034
5.34927
5.38882
5.42875
5.46873
5.50861
5.54814
5.5873
5.6259
5.66385
5.70113
5.73767
5.77345
5.80841
5.84254
5.8759
5.90846
5.94036
5.97201
6.00321
6.03399
6.06428
6.09415
6.12353
6.1525
6.18095
6.20897
6.23643
6.26348
6.29
6.31611
6.3418
6.36727
6.39241
6.41741
6.44206
6.4666
6.49075
6.5148
6.5384
6.56192
6.58487
6.60773
6.62985
6.65176
6.67277
6.69345
6.71297
6.73199
6.74953
6.7664
6.78146
6.79571
6.8078
6.81899
6.82768
6.83544
6.84041
6.84444
6.84554
6.84566
6.8428
6.83892
6.83208
6.82414
6.8133
6.80138
6.78657
6.77087
6.7521
6.73282
6.71013
6.68743
6.66076
6.63441
6.60385
6.5735
6.53911
6.50409
6.46571
6.42539
6.38287
6.33713
6.29021
6.24102
6.19148
6.14084
6.08498
6.02354
5.94617
5.86652
5.72909
5.65311
5.64464
5.66218
5.59834
5.52898
5.43458
5.29415
5.24815
14.573
13.7508
4.5281
4.59846
4.62481
4.62478
4.61445
4.60265
4.59334
4.58904
4.58993
4.59578
4.60562
4.61866
4.634
4.6511
4.66933
4.68834
4.70775
4.7273
4.74681
4.76609
4.78505
4.80342
4.82124
4.83838
4.8548
4.87059
4.88583
4.9005
4.91484
4.92875
4.94257
4.95646
4.97054
4.98496
4.99982
5.0153
5.03152
5.04863
5.06677
5.08608
5.10673
5.12881
5.15248
5.17774
5.20474
5.23332
5.26357
5.2952
5.32819
5.36246
5.39773
5.43374
5.47019
5.50689
5.54364
5.58023
5.6166
5.6526
5.68816
5.72318
5.7576
5.79136
5.82442
5.85677
5.88841
5.91934
5.94978
5.97972
6.00923
6.03826
6.06689
6.09506
6.12285
6.15018
6.17713
6.20357
6.22965
6.25524
6.28047
6.30523
6.32974
6.35385
6.3778
6.40137
6.42483
6.44786
6.47082
6.49328
6.51571
6.53756
6.55938
6.58048
6.60148
6.62161
6.64153
6.66038
6.67889
6.69605
6.71274
6.72777
6.74221
6.75465
6.76642
6.77586
6.7846
6.79075
6.79616
6.79883
6.80067
6.79975
6.79789
6.79332
6.78769
6.77939
6.77001
6.75793
6.7449
6.72893
6.71238
6.69241
6.67241
6.64835
6.62457
6.59646
6.56852
6.53643
6.50369
6.46759
6.42943
6.38928
6.34568
6.30109
6.25288
6.20285
6.15017
6.08958
6.03041
5.95638
5.89934
5.79416
5.72331
5.68386
5.659
5.583
5.49729
5.41293
5.29634
5.21136
14.5417
13.7226
4.47654
4.55041
4.58256
4.59291
4.59291
4.59014
4.58786
4.58835
4.59223
4.59981
4.61066
4.6244
4.64038
4.65819
4.67734
4.69746
4.71824
4.73939
4.76073
4.78201
4.80323
4.82398
4.8444
4.86425
4.88361
4.90257
4.92117
4.93925
4.95705
4.97422
4.99145
5.0086
5.02567
5.04271
5.05977
5.07695
5.09433
5.112
5.13007
5.14866
5.16791
5.18793
5.20891
5.23088
5.25404
5.27835
5.30395
5.33073
5.35868
5.38774
5.41781
5.44873
5.48031
5.51236
5.54472
5.57719
5.60967
5.642
5.67415
5.70598
5.73742
5.76839
5.79885
5.82873
5.85806
5.88677
5.91498
5.9427
5.97002
5.99691
6.02345
6.0496
6.07544
6.10089
6.12605
6.15079
6.17525
6.19929
6.22305
6.24639
6.26952
6.29224
6.31482
6.33701
6.35911
6.38075
6.40236
6.42345
6.44454
6.46505
6.48557
6.5054
6.5252
6.54418
6.56306
6.58094
6.59862
6.61508
6.63122
6.64585
6.66007
6.67244
6.68435
6.69411
6.70336
6.71021
6.71651
6.72026
6.72335
6.72387
6.72355
6.72075
6.71693
6.71069
6.70335
6.69352
6.68271
6.66909
6.65486
6.63722
6.61955
6.59778
6.57628
6.55041
6.52468
6.49476
6.46415
6.43024
6.3942
6.35642
6.31495
6.27278
6.22605
6.1763
6.12345
6.05965
6.00309
5.93186
5.88862
5.80831
5.74878
5.69004
5.63122
5.54419
5.44533
5.36685
5.27287
5.15309
14.5038
13.6934
4.41717
4.49186
4.52887
4.54861
4.55927
4.56643
4.57274
4.57981
4.58849
4.5993
4.61228
4.62737
4.64424
4.66265
4.68228
4.70286
4.72415
4.74587
4.76791
4.78996
4.81214
4.83386
4.85556
4.87682
4.89808
4.91938
4.94052
4.96129
4.98179
5.00174
5.02136
5.04068
5.0597
5.07846
5.09698
5.11531
5.1335
5.15162
5.16974
5.18793
5.20632
5.22498
5.24409
5.26368
5.28394
5.30489
5.32667
5.34928
5.37275
5.39708
5.42225
5.44819
5.47479
5.50193
5.52952
5.55737
5.58544
5.61352
5.64161
5.66958
5.69736
5.72486
5.75204
5.77883
5.80524
5.83118
5.85672
5.88185
5.90665
5.93109
5.95526
5.97911
6.00274
6.02606
6.04917
6.07196
6.09455
6.1168
6.13887
6.16057
6.18212
6.20329
6.22436
6.24503
6.26564
6.28579
6.30592
6.32551
6.34514
6.36416
6.38323
6.40161
6.42002
6.43764
6.45522
6.47188
6.48843
6.50385
6.51908
6.53292
6.54649
6.55836
6.56993
6.57951
6.58877
6.59581
6.60245
6.60674
6.61051
6.61191
6.61258
6.61098
6.60843
6.60368
6.59785
6.58973
6.58063
6.56886
6.55648
6.54077
6.52502
6.50519
6.48569
6.46181
6.43809
6.4102
6.38161
6.34986
6.31592
6.28058
6.24133
6.20172
6.1568
6.1078
6.05566
5.9903
5.93765
5.8706
5.83754
5.77556
5.72764
5.65844
5.5729
5.47729
5.36848
5.29588
5.22063
5.06884
14.4589
13.6661
4.3493
4.4219
4.46347
4.49202
4.51293
4.52962
4.54434
4.55824
4.57234
4.5872
4.60314
4.62025
4.63847
4.6577
4.67779
4.69854
4.71984
4.74147
4.76335
4.78521
4.80723
4.82872
4.85059
4.87234
4.89409
4.91585
4.93753
4.95893
4.98008
5.00079
5.02107
5.04094
5.06041
5.0795
5.09823
5.11661
5.13468
5.15249
5.1701
5.18755
5.20494
5.22231
5.2398
5.25745
5.27541
5.2937
5.31246
5.33173
5.35157
5.372
5.39307
5.41473
5.43696
5.4597
5.48287
5.50637
5.53017
5.55409
5.5781
5.60211
5.62604
5.64983
5.67345
5.69684
5.71998
5.74279
5.76532
5.78753
5.80948
5.83115
5.85261
5.87383
5.89488
5.91571
5.93639
5.95683
5.97714
5.99719
6.01712
6.03676
6.05628
6.07548
6.0946
6.11334
6.13203
6.15026
6.16847
6.18614
6.20384
6.22093
6.23807
6.25452
6.27102
6.28675
6.30248
6.31734
6.33217
6.34594
6.35961
6.37199
6.38422
6.39487
6.40537
6.41403
6.42251
6.42896
6.43516
6.43921
6.44286
6.44436
6.44524
6.44408
6.44204
6.43804
6.43301
6.42591
6.41784
6.4073
6.3962
6.3819
6.3676
6.34932
6.33148
6.30936
6.28745
6.26152
6.23494
6.20543
6.17383
6.14122
6.10464
6.068
6.02531
5.97753
5.9267
5.86149
5.81531
5.75592
5.73383
5.68874
5.65258
5.57608
5.46634
5.36685
5.25421
5.19306
5.13109
4.95149
14.4066
13.6457
4.27674
4.34652
4.39361
4.42963
4.45823
4.48167
4.50242
4.52157
4.54024
4.55889
4.57786
4.59726
4.61711
4.63737
4.65799
4.67884
4.6999
4.72101
4.74213
4.76306
4.78397
4.80441
4.82475
4.84478
4.86506
4.88537
4.90558
4.92554
4.94523
4.96454
4.98343
5.00189
5.01992
5.03755
5.05477
5.07161
5.0881
5.10426
5.12015
5.13579
5.15126
5.16658
5.18184
5.19707
5.21238
5.22779
5.2434
5.25926
5.27544
5.29197
5.30892
5.32626
5.34402
5.36216
5.38065
5.39942
5.41847
5.43765
5.45697
5.47627
5.49555
5.51476
5.53391
5.55294
5.57184
5.59051
5.60899
5.62725
5.64533
5.6632
5.68094
5.69851
5.71597
5.73327
5.75048
5.76752
5.78448
5.80126
5.81797
5.83445
5.85087
5.867
5.8831
5.89884
5.91455
5.92979
5.94502
5.9597
5.9744
5.98849
6.00263
6.01609
6.02959
6.04235
6.05513
6.06709
6.07904
6.09003
6.10098
6.11074
6.12042
6.12867
6.13684
6.14337
6.14983
6.15447
6.15899
6.16159
6.16393
6.16435
6.16429
6.16242
6.1598
6.1555
6.15025
6.14321
6.1353
6.12525
6.11472
6.10132
6.08799
6.07104
6.0546
6.03422
6.01416
5.99043
5.96627
5.93951
5.91118
5.88212
5.84962
5.81705
5.77788
5.73299
5.68521
5.6243
5.58714
5.54071
5.53303
5.50744
5.48355
5.39756
5.26939
5.17616
5.07364
5.0347
4.98169
4.79001
14.348
13.638
4.20867
4.27329
4.32327
4.36223
4.39331
4.41895
4.44221
4.46433
4.48622
4.50794
4.5296
4.55108
4.57239
4.59345
4.61427
4.63478
4.655
4.67483
4.69426
4.7132
4.73174
4.7497
4.7672
4.78419
4.80089
4.81734
4.83348
4.84929
4.86472
4.87975
4.89436
4.90856
4.92235
4.93576
4.9488
4.9615
4.97389
4.98599
4.99785
5.00948
5.02094
5.03223
5.04343
5.05452
5.06558
5.07663
5.08772
5.0989
5.11022
5.12171
5.13341
5.14534
5.15751
5.16992
5.18255
5.19538
5.20839
5.22148
5.23465
5.24779
5.26092
5.27401
5.28714
5.30027
5.31334
5.32628
5.33912
5.35181
5.36442
5.3769
5.38933
5.40167
5.41395
5.42614
5.43827
5.45029
5.46226
5.47411
5.48592
5.49756
5.50916
5.52055
5.5319
5.54295
5.55393
5.5645
5.57499
5.585
5.59498
5.60442
5.61384
5.62267
5.63147
5.63961
5.64771
5.65511
5.66247
5.66902
5.6755
5.68098
5.68634
5.69051
5.69457
5.6973
5.69995
5.70115
5.70226
5.70184
5.70124
5.69909
5.69661
5.69266
5.68816
5.6823
5.67571
5.66777
5.65929
5.64927
5.63893
5.62639
5.61398
5.59877
5.58395
5.56604
5.54854
5.52811
5.50766
5.48507
5.46195
5.43807
5.41229
5.38579
5.3534
5.31465
5.27193
5.22006
5.19251
5.16231
5.16744
5.16042
5.14608
5.05677
4.93835
4.8661
4.79605
4.78213
4.7397
4.57305
14.2865
355.782
522.493
522.934
523.339
523.734
524.085
524.425
524.733
525.024
525.293
525.547
525.786
526.013
526.229
526.436
526.635
526.828
527.013
527.192
527.365
527.531
527.691
527.844
527.991
528.132
528.267
528.397
528.521
528.641
528.757
528.87
528.979
529.086
529.19
529.292
529.392
529.491
529.588
529.683
529.778
529.871
529.964
530.057
530.149
530.242
530.335
530.429
530.523
530.618
530.715
530.812
530.91
531.009
531.109
531.209
531.309
531.41
531.51
531.61
531.709
531.807
531.905
532.001
532.097
532.191
532.283
532.374
532.464
532.551
532.638
532.722
532.805
532.886
532.966
533.044
533.121
533.196
533.271
533.344
533.416
533.486
533.557
533.626
533.695
533.763
533.831
533.898
533.967
534.033
534.102
534.168
534.237
534.304
534.373
534.44
534.51
534.578
534.649
534.717
534.789
534.857
534.93
534.998
535.073
535.14
535.215
535.282
535.358
535.424
535.502
535.567
535.645
535.708
535.788
535.85
535.931
535.992
536.075
536.135
536.22
536.28
536.366
536.427
536.516
536.577
536.669
536.73
536.827
536.887
536.993
537.049
537.168
537.215
537.361
537.408
537.588
537.64
537.809
537.79
537.919
537.796
538.028
538.063
538.855
538.8
539.777
539.492
540.284
540.186
370.977
)
;
}
hot
{
blending binomial2;
n 2;
beta1 0.075;
type omegaWallFunction;
value nonuniform List<scalar>
2250
(
355.782
522.493
522.934
523.339
523.734
524.085
524.425
524.733
525.024
525.293
525.547
525.786
526.013
526.229
526.436
526.635
526.828
527.013
527.192
527.365
527.531
527.691
527.844
527.991
528.132
528.267
528.397
528.521
528.641
528.757
528.87
528.979
529.086
529.19
529.292
529.392
529.491
529.588
529.683
529.778
529.871
529.964
530.057
530.149
530.242
530.335
530.429
530.523
530.618
530.715
530.812
530.91
531.009
531.109
531.209
531.309
531.41
531.51
531.61
531.709
531.807
531.905
532.001
532.097
532.191
532.283
532.374
532.464
532.551
532.638
532.722
532.805
532.886
532.966
533.044
533.121
533.196
533.271
533.344
533.416
533.486
533.557
533.626
533.695
533.763
533.831
533.898
533.967
534.033
534.102
534.168
534.237
534.304
534.373
534.44
534.51
534.578
534.649
534.717
534.789
534.857
534.93
534.998
535.073
535.14
535.215
535.282
535.358
535.424
535.502
535.567
535.645
535.708
535.788
535.85
535.931
535.992
536.075
536.135
536.22
536.28
536.366
536.427
536.516
536.577
536.669
536.73
536.827
536.887
536.993
537.049
537.168
537.215
537.361
537.408
537.588
537.64
537.809
537.79
537.919
537.796
538.028
538.063
538.855
538.8
539.777
539.492
540.284
540.186
370.977
531.558
1040.82
1041.62
1042.35
1043.18
1043.93
1044.63
1045.26
1045.83
1046.35
1046.84
1047.29
1047.73
1048.14
1048.54
1048.92
1049.29
1049.65
1049.99
1050.33
1050.65
1050.96
1051.25
1051.54
1051.81
1052.08
1052.33
1052.58
1052.81
1053.04
1053.27
1053.48
1053.69
1053.9
1054.1
1054.3
1054.49
1054.68
1054.86
1055.04
1055.22
1055.39
1055.57
1055.74
1055.92
1056.1
1056.27
1056.45
1056.63
1056.81
1056.99
1057.18
1057.36
1057.55
1057.73
1057.92
1058.1
1058.28
1058.46
1058.64
1058.81
1058.98
1059.15
1059.32
1059.48
1059.64
1059.79
1059.94
1060.09
1060.23
1060.37
1060.5
1060.63
1060.76
1060.88
1061
1061.12
1061.24
1061.36
1061.47
1061.59
1061.71
1061.82
1061.94
1062.06
1062.19
1062.31
1062.44
1062.57
1062.71
1062.84
1062.98
1063.12
1063.27
1063.41
1063.56
1063.71
1063.87
1064.03
1064.19
1064.35
1064.52
1064.69
1064.87
1065.05
1065.23
1065.41
1065.6
1065.79
1065.99
1066.18
1066.39
1066.59
1066.81
1067.01
1067.25
1067.45
1067.71
1067.92
1068.19
1068.4
1068.69
1068.9
1069.21
1069.42
1069.75
1069.97
1070.32
1070.53
1070.92
1071.1
1071.55
1071.69
1072.21
1072.31
1072.94
1073
1073.75
1073.76
1074.6
1074.42
1075.33
1075.01
1076.09
1075.9
1077.03
1077.2
1078.42
1079.77
555.589
531.484
1040.53
1041.17
1041.97
1042.85
1043.59
1044.32
1044.95
1045.55
1046.1
1046.62
1047.12
1047.59
1048.04
1048.47
1048.87
1049.27
1049.64
1049.99
1050.33
1050.65
1050.95
1051.24
1051.52
1051.79
1052.05
1052.3
1052.54
1052.77
1052.99
1053.21
1053.43
1053.64
1053.84
1054.04
1054.23
1054.42
1054.6
1054.79
1054.97
1055.15
1055.33
1055.5
1055.68
1055.86
1056.04
1056.23
1056.42
1056.6
1056.79
1056.98
1057.17
1057.36
1057.55
1057.74
1057.92
1058.1
1058.28
1058.46
1058.64
1058.81
1058.98
1059.14
1059.3
1059.46
1059.61
1059.76
1059.91
1060.05
1060.19
1060.33
1060.46
1060.58
1060.71
1060.83
1060.95
1061.06
1061.18
1061.3
1061.42
1061.54
1061.66
1061.78
1061.91
1062.03
1062.16
1062.3
1062.43
1062.57
1062.71
1062.85
1062.99
1063.14
1063.28
1063.43
1063.58
1063.73
1063.88
1064.03
1064.19
1064.34
1064.5
1064.66
1064.83
1064.99
1065.16
1065.32
1065.5
1065.67
1065.86
1066.03
1066.23
1066.41
1066.63
1066.82
1067.05
1067.26
1067.52
1067.73
1068.01
1068.24
1068.54
1068.78
1069.11
1069.35
1069.71
1069.94
1070.33
1070.56
1070.99
1071.2
1071.68
1071.86
1072.41
1072.55
1073.19
1073.27
1074.03
1074.04
1074.92
1074.83
1075.84
1075.72
1076.74
1076.71
1077.56
1077.8
1078.71
1080.09
555.764
531.532
1040.51
1041.09
1042.01
1042.91
1043.68
1044.43
1045.06
1045.67
1046.21
1046.73
1047.22
1047.69
1048.13
1048.56
1048.96
1049.35
1049.72
1050.08
1050.41
1050.74
1051.05
1051.34
1051.63
1051.9
1052.16
1052.42
1052.67
1052.91
1053.14
1053.37
1053.59
1053.81
1054.02
1054.22
1054.42
1054.61
1054.8
1054.99
1055.17
1055.35
1055.52
1055.7
1055.88
1056.06
1056.23
1056.42
1056.6
1056.78
1056.97
1057.16
1057.34
1057.53
1057.71
1057.89
1058.07
1058.25
1058.42
1058.6
1058.76
1058.93
1059.1
1059.26
1059.41
1059.57
1059.72
1059.86
1060.01
1060.14
1060.28
1060.41
1060.54
1060.66
1060.78
1060.89
1061
1061.11
1061.22
1061.33
1061.44
1061.55
1061.66
1061.78
1061.9
1062.02
1062.15
1062.28
1062.41
1062.54
1062.67
1062.81
1062.95
1063.09
1063.23
1063.38
1063.52
1063.67
1063.82
1063.97
1064.13
1064.29
1064.45
1064.61
1064.77
1064.94
1065.11
1065.28
1065.46
1065.63
1065.82
1066
1066.2
1066.39
1066.6
1066.8
1067.03
1067.24
1067.5
1067.72
1068
1068.23
1068.53
1068.77
1069.1
1069.34
1069.7
1069.94
1070.34
1070.58
1071.02
1071.24
1071.73
1071.92
1072.49
1072.63
1073.29
1073.37
1074.14
1074.14
1075.03
1074.95
1075.95
1075.84
1076.86
1076.88
1077.7
1077.98
1078.83
1080.2
555.891
531.551
1040.52
1041.08
1042.04
1042.93
1043.7
1044.44
1045.07
1045.68
1046.21
1046.74
1047.22
1047.69
1048.13
1048.56
1048.96
1049.35
1049.72
1050.07
1050.41
1050.73
1051.04
1051.33
1051.62
1051.89
1052.15
1052.4
1052.65
1052.89
1053.12
1053.35
1053.57
1053.79
1054
1054.2
1054.4
1054.59
1054.78
1054.96
1055.14
1055.32
1055.5
1055.68
1055.86
1056.04
1056.22
1056.4
1056.58
1056.77
1056.96
1057.15
1057.34
1057.53
1057.71
1057.9
1058.08
1058.26
1058.43
1058.6
1058.77
1058.94
1059.1
1059.26
1059.42
1059.57
1059.73
1059.87
1060.02
1060.16
1060.29
1060.43
1060.55
1060.68
1060.8
1060.91
1061.02
1061.13
1061.24
1061.35
1061.46
1061.57
1061.69
1061.8
1061.93
1062.05
1062.18
1062.31
1062.44
1062.57
1062.71
1062.85
1062.99
1063.13
1063.27
1063.42
1063.56
1063.71
1063.86
1064.01
1064.16
1064.32
1064.48
1064.63
1064.8
1064.96
1065.13
1065.29
1065.47
1065.63
1065.82
1065.99
1066.19
1066.37
1066.58
1066.77
1067
1067.2
1067.46
1067.68
1067.95
1068.18
1068.49
1068.73
1069.06
1069.3
1069.66
1069.91
1070.3
1070.54
1070.98
1071.2
1071.69
1071.88
1072.44
1072.59
1073.24
1073.32
1074.09
1074.09
1074.98
1074.9
1075.92
1075.81
1076.84
1076.86
1077.71
1077.99
1078.85
1080.22
555.923
531.551
1040.5
1041.06
1042.03
1042.92
1043.69
1044.44
1045.07
1045.68
1046.22
1046.74
1047.23
1047.7
1048.14
1048.56
1048.97
1049.35
1049.72
1050.08
1050.41
1050.73
1051.04
1051.34
1051.62
1051.89
1052.15
1052.41
1052.66
1052.9
1053.13
1053.36
1053.58
1053.8
1054.01
1054.21
1054.41
1054.61
1054.8
1054.98
1055.17
1055.35
1055.53
1055.7
1055.88
1056.06
1056.24
1056.43
1056.61
1056.8
1056.99
1057.18
1057.37
1057.55
1057.74
1057.92
1058.1
1058.28
1058.45
1058.62
1058.79
1058.95
1059.12
1059.28
1059.43
1059.58
1059.73
1059.88
1060.02
1060.16
1060.29
1060.42
1060.55
1060.67
1060.79
1060.9
1061.01
1061.12
1061.23
1061.34
1061.44
1061.56
1061.67
1061.79
1061.91
1062.03
1062.16
1062.29
1062.42
1062.55
1062.69
1062.83
1062.96
1063.11
1063.25
1063.39
1063.54
1063.69
1063.84
1063.99
1064.14
1064.3
1064.46
1064.62
1064.79
1064.95
1065.12
1065.29
1065.47
1065.64
1065.83
1066
1066.2
1066.38
1066.6
1066.79
1067.02
1067.23
1067.48
1067.7
1067.98
1068.21
1068.51
1068.75
1069.08
1069.33
1069.68
1069.93
1070.32
1070.56
1071
1071.22
1071.72
1071.91
1072.47
1072.62
1073.27
1073.35
1074.12
1074.12
1075.01
1074.93
1075.95
1075.83
1076.88
1076.9
1077.74
1078.03
1078.88
1080.26
555.948
531.549
1040.49
1041.07
1042.05
1042.92
1043.7
1044.45
1045.07
1045.68
1046.22
1046.74
1047.22
1047.69
1048.13
1048.55
1048.96
1049.34
1049.71
1050.06
1050.4
1050.72
1051.03
1051.32
1051.6
1051.87
1052.13
1052.39
1052.63
1052.87
1053.11
1053.33
1053.56
1053.77
1053.98
1054.19
1054.38
1054.58
1054.77
1054.95
1055.13
1055.31
1055.49
1055.67
1055.85
1056.03
1056.21
1056.4
1056.59
1056.78
1056.97
1057.16
1057.35
1057.54
1057.72
1057.91
1058.09
1058.27
1058.44
1058.61
1058.78
1058.95
1059.11
1059.27
1059.43
1059.58
1059.73
1059.88
1060.02
1060.16
1060.3
1060.43
1060.55
1060.68
1060.79
1060.91
1061.02
1061.13
1061.24
1061.34
1061.45
1061.57
1061.68
1061.8
1061.92
1062.04
1062.17
1062.3
1062.44
1062.57
1062.71
1062.85
1062.99
1063.13
1063.27
1063.41
1063.56
1063.71
1063.86
1064.01
1064.16
1064.32
1064.48
1064.63
1064.8
1064.96
1065.13
1065.29
1065.47
1065.64
1065.82
1065.99
1066.19
1066.37
1066.58
1066.77
1067
1067.21
1067.46
1067.68
1067.95
1068.19
1068.49
1068.73
1069.06
1069.3
1069.66
1069.91
1070.3
1070.54
1070.98
1071.2
1071.69
1071.88
1072.44
1072.59
1073.24
1073.33
1074.09
1074.09
1074.98
1074.9
1075.92
1075.81
1076.85
1076.89
1077.73
1078.03
1078.88
1080.25
555.939
531.549
1040.49
1041.06
1042.04
1042.91
1043.69
1044.44
1045.06
1045.68
1046.22
1046.74
1047.23
1047.7
1048.14
1048.56
1048.96
1049.35
1049.72
1050.07
1050.41
1050.73
1051.03
1051.33
1051.61
1051.88
1052.14
1052.4
1052.64
1052.88
1053.12
1053.34
1053.57
1053.78
1053.99
1054.19
1054.39
1054.59
1054.78
1054.96
1055.14
1055.32
1055.5
1055.68
1055.86
1056.04
1056.23
1056.41
1056.6
1056.79
1056.98
1057.17
1057.36
1057.55
1057.73
1057.92
1058.1
1058.28
1058.45
1058.62
1058.79
1058.95
1059.12
1059.28
1059.43
1059.59
1059.73
1059.88
1060.02
1060.16
1060.29
1060.42
1060.55
1060.67
1060.79
1060.9
1061.01
1061.12
1061.23
1061.33
1061.44
1061.55
1061.67
1061.79
1061.91
1062.03
1062.16
1062.29
1062.42
1062.56
1062.69
1062.83
1062.97
1063.11
1063.26
1063.4
1063.55
1063.7
1063.85
1064
1064.15
1064.31
1064.47
1064.63
1064.79
1064.95
1065.13
1065.29
1065.47
1065.64
1065.82
1066
1066.2
1066.38
1066.59
1066.78
1067.01
1067.22
1067.47
1067.69
1067.97
1068.2
1068.5
1068.74
1069.07
1069.31
1069.67
1069.92
1070.31
1070.55
1070.99
1071.21
1071.7
1071.9
1072.46
1072.61
1073.26
1073.34
1074.11
1074.11
1075
1074.92
1075.94
1075.83
1076.87
1076.91
1077.75
1078.04
1078.89
1080.27
555.953
531.548
1040.49
1041.07
1042.05
1042.92
1043.7
1044.45
1045.07
1045.68
1046.22
1046.75
1047.23
1047.7
1048.14
1048.56
1048.97
1049.35
1049.72
1050.07
1050.41
1050.73
1051.04
1051.33
1051.61
1051.88
1052.14
1052.4
1052.64
1052.88
1053.11
1053.34
1053.56
1053.77
1053.98
1054.19
1054.38
1054.58
1054.77
1054.95
1055.13
1055.31
1055.49
1055.67
1055.85
1056.03
1056.22
1056.4
1056.59
1056.78
1056.97
1057.16
1057.35
1057.54
1057.73
1057.91
1058.09
1058.27
1058.45
1058.62
1058.79
1058.95
1059.12
1059.28
1059.43
1059.59
1059.74
1059.88
1060.02
1060.16
1060.29
1060.43
1060.55
1060.67
1060.79
1060.91
1061.02
1061.13
1061.23
1061.34
1061.45
1061.57
1061.68
1061.8
1061.92
1062.04
1062.17
1062.3
1062.44
1062.57
1062.71
1062.85
1062.99
1063.13
1063.27
1063.41
1063.56
1063.71
1063.86
1064.01
1064.16
1064.32
1064.47
1064.63
1064.8
1064.96
1065.13
1065.29
1065.47
1065.63
1065.82
1065.99
1066.18
1066.37
1066.58
1066.77
1067
1067.2
1067.46
1067.68
1067.95
1068.18
1068.49
1068.73
1069.06
1069.3
1069.66
1069.91
1070.3
1070.54
1070.98
1071.2
1071.69
1071.88
1072.44
1072.59
1073.24
1073.33
1074.09
1074.09
1074.98
1074.9
1075.92
1075.81
1076.85
1076.89
1077.73
1078.03
1078.88
1080.24
555.937
531.55
1040.5
1041.07
1042.04
1042.92
1043.7
1044.45
1045.07
1045.69
1046.23
1046.75
1047.24
1047.71
1048.15
1048.57
1048.98
1049.36
1049.73
1050.09
1050.42
1050.74
1051.05
1051.34
1051.63
1051.9
1052.16
1052.41
1052.66
1052.9
1053.13
1053.36
1053.58
1053.79
1054
1054.21
1054.41
1054.6
1054.79
1054.97
1055.16
1055.34
1055.52
1055.69
1055.87
1056.05
1056.24
1056.42
1056.61
1056.8
1056.99
1057.18
1057.37
1057.55
1057.74
1057.93
1058.11
1058.28
1058.46
1058.63
1058.8
1058.96
1059.12
1059.28
1059.44
1059.59
1059.74
1059.88
1060.03
1060.16
1060.29
1060.42
1060.55
1060.67
1060.78
1060.9
1061.01
1061.11
1061.22
1061.33
1061.44
1061.55
1061.66
1061.78
1061.9
1062.02
1062.15
1062.28
1062.41
1062.55
1062.68
1062.82
1062.96
1063.1
1063.25
1063.39
1063.54
1063.69
1063.84
1063.99
1064.15
1064.3
1064.46
1064.62
1064.79
1064.95
1065.12
1065.29
1065.47
1065.64
1065.82
1066
1066.2
1066.38
1066.59
1066.79
1067.02
1067.23
1067.48
1067.7
1067.98
1068.21
1068.51
1068.75
1069.08
1069.32
1069.68
1069.93
1070.32
1070.56
1071
1071.22
1071.72
1071.91
1072.47
1072.62
1073.27
1073.35
1074.12
1074.11
1075.01
1074.92
1075.94
1075.83
1076.88
1076.91
1077.74
1078.04
1078.89
1080.27
555.943
531.548
1040.52
1041.09
1042.05
1042.94
1043.7
1044.45
1045.08
1045.69
1046.23
1046.75
1047.24
1047.71
1048.15
1048.58
1048.98
1049.37
1049.74
1050.09
1050.43
1050.75
1051.06
1051.35
1051.63
1051.9
1052.16
1052.42
1052.66
1052.9
1053.13
1053.36
1053.57
1053.79
1053.99
1054.2
1054.39
1054.59
1054.77
1054.96
1055.14
1055.32
1055.5
1055.68
1055.85
1056.03
1056.22
1056.4
1056.59
1056.77
1056.96
1057.15
1057.34
1057.53
1057.72
1057.91
1058.09
1058.27
1058.44
1058.61
1058.78
1058.95
1059.11
1059.27
1059.43
1059.58
1059.73
1059.88
1060.02
1060.16
1060.29
1060.42
1060.55
1060.67
1060.79
1060.9
1061.01
1061.12
1061.23
1061.34
1061.45
1061.56
1061.68
1061.8
1061.92
1062.04
1062.17
1062.3
1062.44
1062.57
1062.71
1062.85
1062.99
1063.13
1063.27
1063.42
1063.56
1063.71
1063.86
1064.01
1064.17
1064.32
1064.48
1064.63
1064.8
1064.96
1065.12
1065.29
1065.46
1065.63
1065.81
1065.98
1066.18
1066.36
1066.57
1066.76
1066.99
1067.2
1067.45
1067.67
1067.95
1068.18
1068.48
1068.72
1069.05
1069.3
1069.66
1069.91
1070.3
1070.54
1070.98
1071.2
1071.69
1071.88
1072.44
1072.59
1073.24
1073.32
1074.08
1074.08
1074.98
1074.89
1075.91
1075.8
1076.85
1076.88
1077.71
1078.01
1078.85
1080.2
555.9
531.527
1040.54
1041.11
1042.03
1042.93
1043.7
1044.45
1045.08
1045.69
1046.24
1046.76
1047.25
1047.72
1048.16
1048.59
1048.99
1049.38
1049.75
1050.1
1050.44
1050.76
1051.07
1051.37
1051.65
1051.92
1052.18
1052.43
1052.68
1052.92
1053.15
1053.37
1053.59
1053.81
1054.01
1054.22
1054.42
1054.61
1054.8
1054.98
1055.16
1055.34
1055.52
1055.7
1055.88
1056.06
1056.24
1056.42
1056.61
1056.79
1056.98
1057.17
1057.35
1057.54
1057.73
1057.91
1058.09
1058.27
1058.44
1058.61
1058.78
1058.95
1059.11
1059.27
1059.42
1059.58
1059.72
1059.87
1060
1060.14
1060.27
1060.4
1060.53
1060.65
1060.76
1060.88
1060.99
1061.1
1061.21
1061.32
1061.43
1061.54
1061.65
1061.77
1061.89
1062.01
1062.14
1062.27
1062.4
1062.54
1062.67
1062.81
1062.95
1063.09
1063.24
1063.38
1063.53
1063.68
1063.83
1063.98
1064.13
1064.29
1064.45
1064.61
1064.78
1064.94
1065.11
1065.28
1065.46
1065.63
1065.82
1065.99
1066.19
1066.38
1066.59
1066.79
1067.02
1067.23
1067.49
1067.71
1067.99
1068.22
1068.52
1068.76
1069.09
1069.34
1069.7
1069.94
1070.34
1070.58
1071.02
1071.24
1071.73
1071.93
1072.49
1072.64
1073.29
1073.37
1074.13
1074.12
1075.02
1074.93
1075.96
1075.85
1076.89
1076.91
1077.72
1078.03
1078.86
1080.2
555.857
531.465
1040.54
1041.2
1042
1042.89
1043.63
1044.37
1045.01
1045.61
1046.16
1046.68
1047.16
1047.62
1048.06
1048.48
1048.88
1049.27
1049.63
1049.98
1050.32
1050.63
1050.94
1051.23
1051.51
1051.78
1052.04
1052.28
1052.53
1052.76
1052.99
1053.21
1053.42
1053.63
1053.84
1054.04
1054.23
1054.42
1054.61
1054.79
1054.98
1055.16
1055.34
1055.52
1055.7
1055.88
1056.06
1056.24
1056.43
1056.62
1056.81
1057
1057.19
1057.37
1057.56
1057.75
1057.93
1058.11
1058.29
1058.47
1058.64
1058.81
1058.98
1059.14
1059.3
1059.45
1059.61
1059.75
1059.9
1060.04
1060.18
1060.31
1060.44
1060.57
1060.69
1060.82
1060.94
1061.05
1061.17
1061.29
1061.41
1061.53
1061.65
1061.78
1061.9
1062.03
1062.17
1062.3
1062.44
1062.57
1062.71
1062.85
1063
1063.14
1063.29
1063.44
1063.58
1063.73
1063.88
1064.03
1064.19
1064.34
1064.5
1064.66
1064.82
1064.98
1065.15
1065.32
1065.49
1065.66
1065.85
1066.02
1066.22
1066.41
1066.62
1066.82
1067.05
1067.26
1067.51
1067.73
1068.01
1068.24
1068.54
1068.78
1069.11
1069.35
1069.71
1069.94
1070.33
1070.56
1070.99
1071.2
1071.68
1071.87
1072.41
1072.55
1073.18
1073.25
1074
1074
1074.9
1074.82
1075.88
1075.75
1076.83
1076.82
1077.64
1077.88
1078.68
1079.95
555.712
531.555
1040.81
1041.63
1042.34
1043.15
1043.9
1044.6
1045.25
1045.84
1046.38
1046.88
1047.35
1047.78
1048.2
1048.59
1048.97
1049.33
1049.68
1050.02
1050.34
1050.65
1050.95
1051.24
1051.51
1051.78
1052.04
1052.29
1052.53
1052.76
1052.99
1053.21
1053.43
1053.64
1053.84
1054.05
1054.24
1054.44
1054.63
1054.82
1055
1055.19
1055.37
1055.55
1055.73
1055.92
1056.1
1056.28
1056.47
1056.65
1056.84
1057.02
1057.21
1057.39
1057.58
1057.76
1057.95
1058.13
1058.31
1058.48
1058.66
1058.83
1059
1059.16
1059.32
1059.48
1059.63
1059.78
1059.93
1060.07
1060.21
1060.34
1060.48
1060.6
1060.73
1060.85
1060.98
1061.1
1061.21
1061.33
1061.45
1061.57
1061.69
1061.81
1061.93
1062.05
1062.18
1062.31
1062.44
1062.57
1062.71
1062.85
1062.99
1063.13
1063.28
1063.42
1063.57
1063.72
1063.88
1064.04
1064.2
1064.36
1064.53
1064.7
1064.88
1065.05
1065.23
1065.41
1065.6
1065.79
1065.99
1066.18
1066.39
1066.58
1066.81
1067.01
1067.25
1067.45
1067.7
1067.91
1068.18
1068.39
1068.68
1068.9
1069.2
1069.42
1069.74
1069.96
1070.31
1070.53
1070.9
1071.11
1071.53
1071.71
1072.2
1072.31
1072.88
1072.91
1073.61
1073.6
1074.53
1074.47
1075.65
1075.38
1076.5
1076.17
1077.03
1077.03
1077.92
1079.33
555.6
355.88
522.602
523.014
523.392
523.749
524.085
524.405
524.711
524.999
525.272
525.529
525.773
526.004
526.224
526.434
526.635
526.827
527.011
527.188
527.357
527.52
527.676
527.827
527.972
528.111
528.246
528.376
528.502
528.623
528.741
528.856
528.967
529.076
529.182
529.286
529.388
529.488
529.586
529.683
529.779
529.874
529.969
530.063
530.157
530.252
530.347
530.443
530.54
530.637
530.735
530.834
530.933
531.033
531.133
531.233
531.333
531.432
531.531
531.629
531.727
531.823
531.919
532.014
532.107
532.199
532.29
532.379
532.467
532.553
532.637
532.72
532.802
532.882
532.961
533.038
533.114
533.188
533.262
533.334
533.406
533.476
533.546
533.615
533.685
533.753
533.822
533.889
533.959
534.026
534.096
534.164
534.234
534.302
534.373
534.442
534.514
534.582
534.655
534.723
534.797
534.865
534.94
535.008
535.082
535.15
535.225
535.292
535.367
535.434
535.509
535.575
535.651
535.715
535.792
535.856
535.934
535.997
536.076
536.139
536.22
536.282
536.364
536.428
536.512
536.577
536.663
536.729
536.821
536.886
536.988
537.044
537.166
537.198
537.346
537.349
537.525
537.543
537.787
537.864
538.23
538.149
538.547
538.183
538.42
538.148
538.871
538.947
539.995
540.509
371.185
)
;
}
cold
{
blending binomial2;
n 2;
beta1 0.075;
type omegaWallFunction;
value nonuniform List<scalar>
2250
(
352.294
516.958
516.971
516.984
517.003
517.021
517.039
517.055
517.07
517.084
517.098
517.113
517.127
517.143
517.158
517.174
517.19
517.207
517.223
517.239
517.256
517.272
517.289
517.305
517.322
517.338
517.354
517.37
517.386
517.402
517.418
517.433
517.449
517.464
517.479
517.493
517.508
517.522
517.536
517.55
517.564
517.578
517.591
517.604
517.616
517.629
517.641
517.653
517.664
517.676
517.687
517.698
517.708
517.718
517.728
517.737
517.747
517.756
517.764
517.773
517.781
517.789
517.797
517.804
517.812
517.819
517.826
517.832
517.838
517.844
517.849
517.854
517.859
517.864
517.869
517.874
517.879
517.884
517.888
517.892
517.896
517.899
517.904
517.908
517.914
517.919
517.926
517.932
517.938
517.945
517.953
517.961
517.971
517.98
517.99
518
518.009
518.019
518.03
518.041
518.053
518.066
518.079
518.092
518.104
518.117
518.129
518.14
518.151
518.163
518.174
518.186
518.196
518.206
518.216
518.225
518.233
518.241
518.248
518.255
518.261
518.267
518.271
518.275
518.278
518.28
518.281
518.28
518.278
518.275
518.27
518.266
518.264
518.261
518.255
518.24
518.215
518.181
518.144
518.111
518.089
518.073
518.048
517.995
517.926
517.857
517.792
517.733
517.574
352.602
526.414
1029.84
1029.84
1029.85
1029.87
1029.88
1029.89
1029.89
1029.9
1029.9
1029.91
1029.92
1029.92
1029.93
1029.94
1029.95
1029.96
1029.97
1029.97
1029.98
1029.99
1030
1030.01
1030.02
1030.03
1030.04
1030.05
1030.06
1030.07
1030.08
1030.09
1030.1
1030.11
1030.12
1030.13
1030.14
1030.15
1030.16
1030.17
1030.18
1030.19
1030.2
1030.21
1030.22
1030.23
1030.24
1030.25
1030.26
1030.27
1030.28
1030.29
1030.3
1030.31
1030.32
1030.33
1030.34
1030.35
1030.36
1030.37
1030.38
1030.39
1030.4
1030.41
1030.42
1030.43
1030.44
1030.45
1030.46
1030.47
1030.48
1030.49
1030.5
1030.5
1030.51
1030.52
1030.53
1030.54
1030.55
1030.56
1030.57
1030.58
1030.59
1030.6
1030.61
1030.62
1030.63
1030.64
1030.65
1030.67
1030.68
1030.69
1030.71
1030.72
1030.73
1030.75
1030.76
1030.78
1030.79
1030.81
1030.82
1030.84
1030.86
1030.87
1030.89
1030.91
1030.93
1030.94
1030.96
1030.98
1030.99
1031.01
1031.03
1031.04
1031.06
1031.08
1031.09
1031.11
1031.12
1031.13
1031.15
1031.16
1031.17
1031.18
1031.19
1031.2
1031.21
1031.22
1031.22
1031.23
1031.23
1031.23
1031.23
1031.22
1031.22
1031.21
1031.2
1031.19
1031.18
1031.16
1031.14
1031.11
1031.07
1031.04
1030.99
1030.93
1030.87
1030.83
1030.81
1030.69
526.856
526.413
1029.84
1029.84
1029.85
1029.87
1029.88
1029.88
1029.89
1029.89
1029.9
1029.91
1029.91
1029.92
1029.93
1029.94
1029.94
1029.95
1029.96
1029.97
1029.98
1029.99
1029.99
1030
1030.01
1030.02
1030.03
1030.04
1030.05
1030.06
1030.07
1030.08
1030.09
1030.1
1030.11
1030.12
1030.13
1030.14
1030.15
1030.16
1030.17
1030.18
1030.19
1030.2
1030.21
1030.22
1030.23
1030.24
1030.25
1030.26
1030.27
1030.28
1030.29
1030.3
1030.31
1030.32
1030.33
1030.34
1030.35
1030.36
1030.37
1030.38
1030.39
1030.4
1030.41
1030.42
1030.42
1030.43
1030.44
1030.45
1030.46
1030.47
1030.48
1030.49
1030.5
1030.5
1030.51
1030.52
1030.53
1030.54
1030.55
1030.56
1030.57
1030.58
1030.59
1030.6
1030.61
1030.62
1030.63
1030.64
1030.65
1030.66
1030.68
1030.69
1030.7
1030.72
1030.73
1030.74
1030.76
1030.77
1030.79
1030.8
1030.82
1030.83
1030.85
1030.87
1030.89
1030.9
1030.92
1030.94
1030.95
1030.97
1030.99
1031.01
1031.02
1031.04
1031.06
1031.07
1031.09
1031.11
1031.12
1031.13
1031.15
1031.16
1031.17
1031.18
1031.19
1031.19
1031.2
1031.2
1031.2
1031.2
1031.2
1031.2
1031.19
1031.19
1031.18
1031.17
1031.15
1031.13
1031.11
1031.09
1031.06
1031.03
1030.98
1030.92
1030.86
1030.82
1030.81
1030.67
526.84
526.413
1029.84
1029.84
1029.86
1029.87
1029.88
1029.88
1029.89
1029.89
1029.9
1029.91
1029.91
1029.92
1029.93
1029.94
1029.94
1029.95
1029.96
1029.97
1029.98
1029.99
1029.99
1030
1030.01
1030.02
1030.03
1030.04
1030.05
1030.06
1030.07
1030.08
1030.09
1030.1
1030.11
1030.12
1030.13
1030.14
1030.15
1030.16
1030.17
1030.18
1030.19
1030.2
1030.21
1030.22
1030.23
1030.24
1030.25
1030.26
1030.27
1030.28
1030.29
1030.3
1030.31
1030.32
1030.33
1030.34
1030.35
1030.35
1030.36
1030.37
1030.38
1030.39
1030.4
1030.41
1030.42
1030.43
1030.44
1030.45
1030.46
1030.47
1030.48
1030.48
1030.49
1030.5
1030.51
1030.52
1030.53
1030.54
1030.55
1030.56
1030.57
1030.58
1030.59
1030.6
1030.61
1030.62
1030.63
1030.64
1030.65
1030.67
1030.68
1030.69
1030.7
1030.72
1030.73
1030.75
1030.76
1030.78
1030.79
1030.81
1030.82
1030.84
1030.86
1030.87
1030.89
1030.91
1030.93
1030.94
1030.96
1030.98
1031
1031.01
1031.03
1031.05
1031.07
1031.08
1031.1
1031.11
1031.12
1031.14
1031.15
1031.16
1031.17
1031.18
1031.18
1031.19
1031.2
1031.2
1031.2
1031.2
1031.2
1031.19
1031.19
1031.18
1031.17
1031.16
1031.15
1031.13
1031.11
1031.09
1031.06
1031.03
1030.98
1030.92
1030.86
1030.82
1030.81
1030.69
526.843
526.413
1029.84
1029.84
1029.86
1029.87
1029.88
1029.88
1029.89
1029.89
1029.9
1029.91
1029.91
1029.92
1029.93
1029.94
1029.94
1029.95
1029.96
1029.97
1029.98
1029.99
1029.99
1030
1030.01
1030.02
1030.03
1030.04
1030.05
1030.06
1030.07
1030.08
1030.09
1030.1
1030.11
1030.12
1030.13
1030.14
1030.15
1030.16
1030.17
1030.18
1030.19
1030.2
1030.21
1030.22
1030.23
1030.24
1030.25
1030.26
1030.27
1030.28
1030.29
1030.3
1030.31
1030.32
1030.33
1030.33
1030.34
1030.35
1030.36
1030.37
1030.38
1030.39
1030.4
1030.41
1030.42
1030.43
1030.44
1030.45
1030.46
1030.47
1030.47
1030.48
1030.49
1030.5
1030.51
1030.52
1030.53
1030.54
1030.55
1030.56
1030.57
1030.58
1030.59
1030.6
1030.61
1030.62
1030.63
1030.64
1030.65
1030.66
1030.68
1030.69
1030.7
1030.72
1030.73
1030.74
1030.76
1030.77
1030.79
1030.81
1030.82
1030.84
1030.86
1030.87
1030.89
1030.91
1030.92
1030.94
1030.96
1030.98
1030.99
1031.01
1031.03
1031.05
1031.06
1031.08
1031.09
1031.11
1031.12
1031.13
1031.14
1031.15
1031.16
1031.17
1031.18
1031.19
1031.19
1031.19
1031.2
1031.2
1031.19
1031.19
1031.18
1031.18
1031.17
1031.16
1031.14
1031.13
1031.11
1031.08
1031.06
1031.02
1030.98
1030.92
1030.86
1030.82
1030.81
1030.68
526.842
526.413
1029.84
1029.84
1029.86
1029.87
1029.88
1029.88
1029.89
1029.89
1029.9
1029.91
1029.91
1029.92
1029.93
1029.94
1029.94
1029.95
1029.96
1029.97
1029.98
1029.99
1029.99
1030
1030.01
1030.02
1030.03
1030.04
1030.05
1030.06
1030.07
1030.08
1030.09
1030.1
1030.11
1030.12
1030.13
1030.14
1030.15
1030.16
1030.17
1030.18
1030.19
1030.2
1030.21
1030.22
1030.23
1030.24
1030.25
1030.26
1030.27
1030.28
1030.29
1030.3
1030.31
1030.32
1030.32
1030.33
1030.34
1030.35
1030.36
1030.37
1030.38
1030.39
1030.4
1030.41
1030.42
1030.43
1030.44
1030.45
1030.46
1030.46
1030.47
1030.48
1030.49
1030.5
1030.51
1030.52
1030.53
1030.54
1030.55
1030.56
1030.57
1030.58
1030.59
1030.6
1030.61
1030.62
1030.63
1030.64
1030.65
1030.66
1030.68
1030.69
1030.7
1030.72
1030.73
1030.74
1030.76
1030.77
1030.79
1030.81
1030.82
1030.84
1030.86
1030.87
1030.89
1030.91
1030.93
1030.94
1030.96
1030.98
1031
1031.01
1031.03
1031.05
1031.06
1031.08
1031.09
1031.11
1031.12
1031.13
1031.15
1031.16
1031.17
1031.18
1031.18
1031.19
1031.19
1031.2
1031.2
1031.2
1031.2
1031.19
1031.19
1031.18
1031.17
1031.16
1031.14
1031.13
1031.11
1031.09
1031.06
1031.03
1030.99
1030.92
1030.87
1030.82
1030.81
1030.69
526.843
526.413
1029.84
1029.84
1029.86
1029.87
1029.88
1029.88
1029.89
1029.89
1029.9
1029.91
1029.91
1029.92
1029.93
1029.94
1029.94
1029.95
1029.96
1029.97
1029.98
1029.99
1029.99
1030
1030.01
1030.02
1030.03
1030.04
1030.05
1030.06
1030.07
1030.08
1030.09
1030.1
1030.11
1030.12
1030.13
1030.14
1030.15
1030.16
1030.17
1030.18
1030.19
1030.2
1030.21
1030.22
1030.23
1030.24
1030.25
1030.26
1030.27
1030.28
1030.29
1030.3
1030.31
1030.32
1030.33
1030.33
1030.34
1030.35
1030.36
1030.37
1030.38
1030.39
1030.4
1030.41
1030.42
1030.43
1030.44
1030.45
1030.46
1030.47
1030.47
1030.48
1030.49
1030.5
1030.51
1030.52
1030.53
1030.54
1030.55
1030.56
1030.57
1030.58
1030.59
1030.6
1030.61
1030.62
1030.63
1030.64
1030.65
1030.66
1030.68
1030.69
1030.7
1030.72
1030.73
1030.74
1030.76
1030.77
1030.79
1030.81
1030.82
1030.84
1030.86
1030.87
1030.89
1030.91
1030.92
1030.94
1030.96
1030.98
1031
1031.01
1031.03
1031.05
1031.06
1031.08
1031.09
1031.11
1031.12
1031.13
1031.15
1031.16
1031.17
1031.17
1031.18
1031.19
1031.19
1031.2
1031.2
1031.2
1031.2
1031.19
1031.19
1031.18
1031.17
1031.16
1031.14
1031.13
1031.11
1031.08
1031.06
1031.03
1030.99
1030.93
1030.87
1030.82
1030.81
1030.69
526.842
526.413
1029.84
1029.84
1029.86
1029.87
1029.88
1029.88
1029.89
1029.89
1029.9
1029.91
1029.91
1029.92
1029.93
1029.94
1029.94
1029.95
1029.96
1029.97
1029.98
1029.99
1029.99
1030
1030.01
1030.02
1030.03
1030.04
1030.05
1030.06
1030.07
1030.08
1030.09
1030.1
1030.11
1030.12
1030.13
1030.14
1030.15
1030.16
1030.17
1030.18
1030.19
1030.2
1030.21
1030.22
1030.23
1030.24
1030.25
1030.26
1030.27
1030.28
1030.29
1030.3
1030.31
1030.32
1030.33
1030.33
1030.34
1030.35
1030.36
1030.37
1030.38
1030.39
1030.4
1030.41
1030.42
1030.43
1030.44
1030.45
1030.46
1030.46
1030.47
1030.48
1030.49
1030.5
1030.51
1030.52
1030.53
1030.54
1030.55
1030.56
1030.57
1030.58
1030.59
1030.6
1030.61
1030.62
1030.63
1030.64
1030.65
1030.66
1030.68
1030.69
1030.7
1030.72
1030.73
1030.74
1030.76
1030.77
1030.79
1030.81
1030.82
1030.84
1030.86
1030.87
1030.89
1030.91
1030.92
1030.94
1030.96
1030.98
1031
1031.01
1031.03
1031.05
1031.06
1031.08
1031.09
1031.11
1031.12
1031.14
1031.15
1031.16
1031.17
1031.18
1031.18
1031.19
1031.2
1031.2
1031.2
1031.2
1031.2
1031.19
1031.19
1031.18
1031.17
1031.16
1031.15
1031.13
1031.11
1031.09
1031.06
1031.03
1030.99
1030.93
1030.87
1030.82
1030.81
1030.69
526.842
526.413
1029.84
1029.84
1029.86
1029.87
1029.88
1029.88
1029.89
1029.89
1029.9
1029.91
1029.91
1029.92
1029.93
1029.94
1029.94
1029.95
1029.96
1029.97
1029.98
1029.99
1029.99
1030
1030.01
1030.02
1030.03
1030.04
1030.05
1030.06
1030.07
1030.08
1030.09
1030.1
1030.11
1030.12
1030.13
1030.14
1030.15
1030.16
1030.17
1030.18
1030.19
1030.2
1030.21
1030.22
1030.23
1030.24
1030.25
1030.26
1030.27
1030.28
1030.29
1030.3
1030.31
1030.32
1030.33
1030.33
1030.34
1030.35
1030.36
1030.37
1030.38
1030.39
1030.4
1030.41
1030.42
1030.43
1030.44
1030.45
1030.46
1030.46
1030.47
1030.48
1030.49
1030.5
1030.51
1030.52
1030.53
1030.54
1030.55
1030.56
1030.57
1030.58
1030.59
1030.6
1030.61
1030.62
1030.63
1030.64
1030.65
1030.67
1030.68
1030.69
1030.7
1030.72
1030.73
1030.75
1030.76
1030.77
1030.79
1030.81
1030.82
1030.84
1030.86
1030.87
1030.89
1030.91
1030.92
1030.94
1030.96
1030.98
1030.99
1031.01
1031.03
1031.05
1031.06
1031.08
1031.09
1031.11
1031.12
1031.13
1031.15
1031.16
1031.17
1031.18
1031.18
1031.19
1031.19
1031.2
1031.2
1031.2
1031.2
1031.19
1031.19
1031.18
1031.17
1031.16
1031.14
1031.13
1031.11
1031.09
1031.06
1031.03
1030.99
1030.93
1030.87
1030.82
1030.81
1030.69
526.842
526.413
1029.84
1029.84
1029.86
1029.87
1029.88
1029.88
1029.89
1029.89
1029.9
1029.91
1029.91
1029.92
1029.93
1029.94
1029.94
1029.95
1029.96
1029.97
1029.98
1029.99
1029.99
1030
1030.01
1030.02
1030.03
1030.04
1030.05
1030.06
1030.07
1030.08
1030.09
1030.1
1030.11
1030.12
1030.13
1030.14
1030.15
1030.16
1030.17
1030.18
1030.19
1030.2
1030.21
1030.22
1030.23
1030.24
1030.25
1030.26
1030.27
1030.28
1030.29
1030.3
1030.31
1030.32
1030.32
1030.33
1030.34
1030.35
1030.36
1030.37
1030.38
1030.39
1030.4
1030.41
1030.42
1030.43
1030.44
1030.45
1030.46
1030.46
1030.47
1030.48
1030.49
1030.5
1030.51
1030.52
1030.53
1030.54
1030.55
1030.56
1030.56
1030.57
1030.59
1030.6
1030.61
1030.62
1030.63
1030.64
1030.65
1030.67
1030.68
1030.69
1030.7
1030.72
1030.73
1030.75
1030.76
1030.78
1030.79
1030.81
1030.82
1030.84
1030.86
1030.87
1030.89
1030.91
1030.93
1030.94
1030.96
1030.98
1031
1031.01
1031.03
1031.05
1031.06
1031.08
1031.09
1031.11
1031.12
1031.13
1031.15
1031.16
1031.17
1031.18
1031.18
1031.19
1031.19
1031.2
1031.2
1031.2
1031.2
1031.19
1031.19
1031.18
1031.17
1031.16
1031.15
1031.13
1031.11
1031.09
1031.06
1031.03
1030.99
1030.92
1030.87
1030.82
1030.81
1030.69
526.844
526.413
1029.84
1029.84
1029.86
1029.87
1029.88
1029.88
1029.89
1029.89
1029.9
1029.91
1029.91
1029.92
1029.93
1029.94
1029.94
1029.95
1029.96
1029.97
1029.98
1029.99
1029.99
1030
1030.01
1030.02
1030.03
1030.04
1030.05
1030.06
1030.07
1030.08
1030.09
1030.1
1030.11
1030.12
1030.13
1030.14
1030.15
1030.16
1030.17
1030.18
1030.19
1030.2
1030.21
1030.22
1030.23
1030.24
1030.25
1030.26
1030.27
1030.28
1030.29
1030.3
1030.31
1030.32
1030.33
1030.34
1030.34
1030.35
1030.36
1030.37
1030.38
1030.39
1030.4
1030.41
1030.42
1030.43
1030.44
1030.45
1030.46
1030.46
1030.47
1030.48
1030.49
1030.5
1030.51
1030.52
1030.53
1030.54
1030.55
1030.56
1030.57
1030.58
1030.59
1030.6
1030.61
1030.62
1030.63
1030.64
1030.65
1030.67
1030.68
1030.69
1030.7
1030.72
1030.73
1030.75
1030.76
1030.78
1030.79
1030.81
1030.82
1030.84
1030.86
1030.87
1030.89
1030.91
1030.93
1030.94
1030.96
1030.98
1030.99
1031.01
1031.03
1031.05
1031.06
1031.08
1031.09
1031.11
1031.12
1031.13
1031.14
1031.15
1031.16
1031.17
1031.18
1031.19
1031.19
1031.19
1031.19
1031.19
1031.19
1031.19
1031.18
1031.18
1031.17
1031.16
1031.14
1031.13
1031.11
1031.08
1031.06
1031.02
1030.98
1030.92
1030.86
1030.82
1030.81
1030.69
526.843
526.413
1029.84
1029.84
1029.86
1029.87
1029.88
1029.88
1029.89
1029.89
1029.9
1029.91
1029.91
1029.92
1029.93
1029.93
1029.94
1029.95
1029.96
1029.97
1029.98
1029.98
1029.99
1030
1030.01
1030.02
1030.03
1030.04
1030.05
1030.06
1030.07
1030.08
1030.09
1030.1
1030.11
1030.12
1030.13
1030.14
1030.15
1030.16
1030.17
1030.18
1030.19
1030.2
1030.21
1030.22
1030.23
1030.24
1030.25
1030.26
1030.27
1030.28
1030.29
1030.3
1030.31
1030.32
1030.33
1030.34
1030.35
1030.35
1030.36
1030.37
1030.38
1030.39
1030.4
1030.41
1030.42
1030.43
1030.44
1030.45
1030.46
1030.47
1030.47
1030.48
1030.49
1030.5
1030.51
1030.52
1030.53
1030.54
1030.55
1030.56
1030.57
1030.58
1030.59
1030.6
1030.61
1030.62
1030.63
1030.64
1030.65
1030.67
1030.68
1030.69
1030.71
1030.72
1030.73
1030.75
1030.76
1030.78
1030.79
1030.81
1030.83
1030.84
1030.86
1030.88
1030.89
1030.91
1030.93
1030.95
1030.96
1030.98
1031
1031.02
1031.03
1031.05
1031.06
1031.08
1031.09
1031.11
1031.12
1031.13
1031.15
1031.16
1031.17
1031.17
1031.18
1031.19
1031.19
1031.19
1031.2
1031.2
1031.2
1031.19
1031.19
1031.18
1031.17
1031.16
1031.15
1031.13
1031.11
1031.09
1031.06
1031.02
1030.98
1030.92
1030.86
1030.82
1030.81
1030.69
526.846
526.413
1029.84
1029.84
1029.85
1029.87
1029.87
1029.88
1029.89
1029.89
1029.9
1029.91
1029.91
1029.92
1029.93
1029.93
1029.94
1029.95
1029.96
1029.97
1029.98
1029.98
1029.99
1030
1030.01
1030.02
1030.03
1030.04
1030.05
1030.06
1030.07
1030.08
1030.09
1030.1
1030.11
1030.12
1030.13
1030.14
1030.15
1030.16
1030.17
1030.18
1030.19
1030.2
1030.21
1030.22
1030.23
1030.24
1030.25
1030.26
1030.27
1030.28
1030.29
1030.3
1030.31
1030.32
1030.33
1030.34
1030.35
1030.36
1030.37
1030.38
1030.39
1030.4
1030.41
1030.42
1030.42
1030.43
1030.44
1030.45
1030.46
1030.47
1030.48
1030.49
1030.49
1030.5
1030.51
1030.52
1030.53
1030.54
1030.55
1030.56
1030.57
1030.58
1030.59
1030.6
1030.61
1030.62
1030.63
1030.64
1030.65
1030.66
1030.67
1030.69
1030.7
1030.71
1030.73
1030.74
1030.76
1030.77
1030.79
1030.8
1030.82
1030.84
1030.85
1030.87
1030.89
1030.91
1030.93
1030.94
1030.96
1030.98
1031
1031.02
1031.03
1031.05
1031.07
1031.08
1031.1
1031.11
1031.13
1031.14
1031.15
1031.16
1031.17
1031.18
1031.18
1031.19
1031.19
1031.19
1031.19
1031.19
1031.19
1031.19
1031.18
1031.17
1031.17
1031.16
1031.15
1031.13
1031.12
1031.09
1031.06
1031.02
1030.97
1030.91
1030.85
1030.81
1030.79
1030.67
526.841
526.414
1029.84
1029.84
1029.85
1029.86
1029.87
1029.88
1029.89
1029.9
1029.9
1029.91
1029.92
1029.92
1029.93
1029.94
1029.95
1029.96
1029.96
1029.97
1029.98
1029.99
1030
1030.01
1030.02
1030.03
1030.04
1030.05
1030.06
1030.07
1030.08
1030.09
1030.1
1030.11
1030.12
1030.13
1030.14
1030.15
1030.16
1030.17
1030.18
1030.19
1030.2
1030.21
1030.22
1030.23
1030.24
1030.25
1030.26
1030.27
1030.28
1030.29
1030.3
1030.31
1030.32
1030.33
1030.34
1030.35
1030.36
1030.37
1030.38
1030.39
1030.4
1030.41
1030.42
1030.43
1030.44
1030.45
1030.46
1030.47
1030.48
1030.49
1030.5
1030.5
1030.51
1030.52
1030.53
1030.54
1030.55
1030.56
1030.57
1030.58
1030.59
1030.6
1030.61
1030.62
1030.63
1030.64
1030.65
1030.67
1030.68
1030.69
1030.7
1030.72
1030.73
1030.74
1030.76
1030.77
1030.79
1030.8
1030.82
1030.84
1030.85
1030.87
1030.89
1030.91
1030.92
1030.94
1030.96
1030.98
1031
1031.02
1031.04
1031.05
1031.07
1031.09
1031.11
1031.12
1031.14
1031.15
1031.16
1031.18
1031.19
1031.2
1031.21
1031.21
1031.22
1031.22
1031.23
1031.23
1031.23
1031.22
1031.22
1031.21
1031.21
1031.2
1031.19
1031.18
1031.17
1031.16
1031.14
1031.12
1031.08
1031.04
1030.97
1030.9
1030.85
1030.81
1030.79
1030.66
526.842
352.293
516.954
516.965
516.979
516.996
517.014
517.032
517.05
517.065
517.081
517.095
517.11
517.125
517.141
517.156
517.172
517.188
517.205
517.221
517.238
517.255
517.271
517.288
517.305
517.321
517.338
517.354
517.37
517.387
517.402
517.418
517.434
517.449
517.464
517.479
517.494
517.508
517.522
517.536
517.55
517.564
517.577
517.59
517.603
517.615
517.627
517.639
517.651
517.663
517.674
517.685
517.695
517.706
517.716
517.726
517.736
517.745
517.754
517.763
517.771
517.779
517.787
517.795
517.802
517.809
517.816
517.823
517.829
517.835
517.841
517.847
517.852
517.858
517.863
517.868
517.873
517.878
517.883
517.888
517.893
517.898
517.904
517.909
517.915
517.921
517.927
517.933
517.94
517.946
517.953
517.96
517.968
517.977
517.986
517.995
518.005
518.014
518.024
518.034
518.043
518.053
518.064
518.075
518.085
518.096
518.107
518.117
518.127
518.137
518.147
518.158
518.168
518.178
518.188
518.198
518.207
518.216
518.226
518.235
518.243
518.252
518.26
518.267
518.274
518.28
518.285
518.289
518.291
518.291
518.288
518.282
518.271
518.256
518.242
518.231
518.227
518.228
518.224
518.206
518.168
518.116
518.057
518.002
517.953
517.912
517.874
517.839
517.79
517.594
352.596
)
;
}
}
// ************************************************************************* //
| |
e48de1cab5fccf46e71d61b59661f0b26def2870 | 2aed63d9aa027419b797e56b508417789a604a8b | /injector2degHex/case_interFoam_3mm/processor4/0.3/p | c603eac9f18357baa491d7df7dfa57c1b2d2427f | [] | no_license | icl-rocketry/injectorCFDModelling | 70137f1c6574240c7202638c3713102a3e1e9fd8 | 96591cf2cf3cd4cbd64536d8ae47ed8080ed9016 | refs/heads/main | 2023-08-25T03:30:59.244137 | 2021-10-09T21:04:45 | 2021-10-09T21:04:45 | 322,369,673 | 3 | 5 | null | null | null | null | UTF-8 | C++ | false | false | 44,556 | p | /*--------------------------------*- C++ -*----------------------------------*\
| ========= | |
| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox |
| \\ / O peration | Version: v2012 |
| \\ / A nd | Website: www.openfoam.com |
| \\/ M anipulation | |
\*---------------------------------------------------------------------------*/
FoamFile
{
version 2.0;
format ascii;
class volScalarField;
location "0.3";
object p;
}
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
dimensions [1 -1 -2 0 0 0 0];
internalField nonuniform List<scalar>
3332
(
3.48262e+06
3.48361e+06
3.48443e+06
3.48511e+06
3.48568e+06
3.48617e+06
3.48659e+06
3.48697e+06
3.4873e+06
3.48761e+06
3.48788e+06
3.48814e+06
3.48838e+06
3.48861e+06
3.48882e+06
3.48902e+06
3.48922e+06
3.4894e+06
3.48958e+06
3.48975e+06
3.479e+06
3.48065e+06
3.48197e+06
3.48304e+06
3.48392e+06
3.48464e+06
3.48525e+06
3.48578e+06
3.48623e+06
3.48662e+06
3.48698e+06
3.4873e+06
3.48759e+06
3.48785e+06
3.48811e+06
3.48834e+06
3.48856e+06
3.48877e+06
3.48897e+06
3.48917e+06
3.48935e+06
3.48952e+06
3.46979e+06
3.46058e+06
3.46921e+06
3.46167e+06
3.46113e+06
3.45685e+06
3.45601e+06
3.45311e+06
3.44581e+06
3.43171e+06
3.45896e+06
3.4652e+06
3.46988e+06
3.47348e+06
3.47624e+06
3.47841e+06
3.48012e+06
3.4815e+06
3.4826e+06
3.48351e+06
3.48426e+06
3.4849e+06
3.48544e+06
3.4859e+06
3.48631e+06
3.48668e+06
3.48701e+06
3.48731e+06
3.48758e+06
3.48784e+06
3.48808e+06
3.48831e+06
3.48853e+06
3.48874e+06
3.48894e+06
3.48912e+06
3.4893e+06
3.47021e+06
3.4721e+06
3.4699e+06
3.47106e+06
3.46433e+06
3.46342e+06
3.46018e+06
3.45821e+06
3.4502e+06
3.43466e+06
3.43863e+06
3.45075e+06
3.45862e+06
3.46507e+06
3.46961e+06
3.47324e+06
3.47597e+06
3.47814e+06
3.47984e+06
3.48121e+06
3.48232e+06
3.48323e+06
3.48398e+06
3.48461e+06
3.48515e+06
3.48562e+06
3.48604e+06
3.4864e+06
3.48674e+06
3.48704e+06
3.48732e+06
3.48759e+06
3.48784e+06
3.48807e+06
3.48829e+06
3.48851e+06
3.48871e+06
3.4889e+06
3.48909e+06
3.47558e+06
3.48582e+06
3.47591e+06
3.48272e+06
3.47195e+06
3.47373e+06
3.46847e+06
3.46802e+06
3.45969e+06
3.44255e+06
3.44057e+06
3.45288e+06
3.45959e+06
3.46595e+06
3.47008e+06
3.47358e+06
3.47613e+06
3.47822e+06
3.47983e+06
3.48114e+06
3.4822e+06
3.48307e+06
3.48379e+06
3.48441e+06
3.48493e+06
3.48539e+06
3.4858e+06
3.48616e+06
3.48649e+06
3.4868e+06
3.48708e+06
3.48735e+06
3.4876e+06
3.48784e+06
3.48806e+06
3.48828e+06
3.48849e+06
3.48869e+06
3.48888e+06
3.48906e+06
3.48761e+06
3.50009e+06
3.48861e+06
3.49575e+06
3.48516e+06
3.48756e+06
3.48203e+06
3.48309e+06
3.47513e+06
3.45543e+06
3.44549e+06
3.45698e+06
3.46191e+06
3.46785e+06
3.47129e+06
3.47451e+06
3.47675e+06
3.47864e+06
3.48009e+06
3.48128e+06
3.48224e+06
3.48304e+06
3.48371e+06
3.48428e+06
3.48478e+06
3.48521e+06
3.4856e+06
3.48595e+06
3.48627e+06
3.48657e+06
3.48685e+06
3.48711e+06
3.48737e+06
3.48761e+06
3.48784e+06
3.48806e+06
3.48827e+06
3.48847e+06
3.48867e+06
3.48885e+06
3.50498e+06
3.51354e+06
3.50599e+06
3.50925e+06
3.50256e+06
3.50404e+06
3.49987e+06
3.50218e+06
3.49497e+06
3.47224e+06
3.45312e+06
3.46265e+06
3.4655e+06
3.47067e+06
3.47323e+06
3.47599e+06
3.4778e+06
3.47941e+06
3.48062e+06
3.48164e+06
3.48246e+06
3.48315e+06
3.48373e+06
3.48424e+06
3.48468e+06
3.48508e+06
3.48543e+06
3.48576e+06
3.48607e+06
3.48636e+06
3.48663e+06
3.4869e+06
3.48715e+06
3.48739e+06
3.48762e+06
3.48784e+06
3.48806e+06
3.48826e+06
3.48846e+06
3.48865e+06
3.48883e+06
3.52356e+06
3.52625e+06
3.52427e+06
3.52317e+06
3.52106e+06
3.52155e+06
3.51924e+06
3.52268e+06
3.5163e+06
3.49144e+06
3.46271e+06
3.46928e+06
3.4701e+06
3.47421e+06
3.47581e+06
3.47797e+06
3.47926e+06
3.4805e+06
3.48141e+06
3.4822e+06
3.48284e+06
3.48338e+06
3.48385e+06
3.48427e+06
3.48465e+06
3.48499e+06
3.48531e+06
3.48561e+06
3.48589e+06
3.48617e+06
3.48643e+06
3.48669e+06
3.48693e+06
3.48717e+06
3.48741e+06
3.48763e+06
3.48785e+06
3.48806e+06
3.48826e+06
3.48845e+06
3.48863e+06
3.53963e+06
3.53898e+06
3.53993e+06
3.53727e+06
3.53762e+06
3.53787e+06
3.53647e+06
3.5411e+06
3.5347e+06
3.5106e+06
3.47328e+06
3.47615e+06
3.47546e+06
3.47827e+06
3.47894e+06
3.48037e+06
3.4811e+06
3.48189e+06
3.48244e+06
3.48295e+06
3.48337e+06
3.48374e+06
3.48407e+06
3.48438e+06
3.48467e+06
3.48495e+06
3.48521e+06
3.48548e+06
3.48574e+06
3.48599e+06
3.48624e+06
3.48649e+06
3.48673e+06
3.48697e+06
3.4872e+06
3.48743e+06
3.48764e+06
3.48786e+06
3.48806e+06
3.48826e+06
3.48844e+06
3.55221e+06
3.55176e+06
3.55221e+06
3.55066e+06
3.55128e+06
3.55146e+06
3.54957e+06
3.55477e+06
3.54709e+06
3.52737e+06
3.48459e+06
3.48275e+06
3.48144e+06
3.4827e+06
3.48258e+06
3.48315e+06
3.48327e+06
3.48355e+06
3.4837e+06
3.48388e+06
3.48403e+06
3.4842e+06
3.48437e+06
3.48455e+06
3.48474e+06
3.48494e+06
3.48515e+06
3.48537e+06
3.4856e+06
3.48583e+06
3.48606e+06
3.4863e+06
3.48653e+06
3.48677e+06
3.487e+06
3.48722e+06
3.48744e+06
3.48766e+06
3.48787e+06
3.48806e+06
3.48825e+06
3.56342e+06
3.5646e+06
3.56335e+06
3.56348e+06
3.56339e+06
3.56292e+06
3.56049e+06
3.56421e+06
3.55669e+06
3.54201e+06
3.49864e+06
3.48938e+06
3.48833e+06
3.48754e+06
3.48673e+06
3.48628e+06
3.48577e+06
3.48545e+06
3.48515e+06
3.48496e+06
3.48482e+06
3.48475e+06
3.48474e+06
3.48477e+06
3.48485e+06
3.48497e+06
3.48511e+06
3.48528e+06
3.48547e+06
3.48568e+06
3.48589e+06
3.48611e+06
3.48634e+06
3.48657e+06
3.4868e+06
3.48703e+06
3.48725e+06
3.48746e+06
3.48767e+06
3.48787e+06
3.48807e+06
3.5761e+06
3.57757e+06
3.57605e+06
3.57643e+06
3.5762e+06
3.57457e+06
3.5729e+06
3.57335e+06
3.56934e+06
3.558e+06
3.51764e+06
3.49702e+06
3.49653e+06
3.49293e+06
3.49144e+06
3.48976e+06
3.48856e+06
3.48756e+06
3.48677e+06
3.48616e+06
3.4857e+06
3.48538e+06
3.48516e+06
3.48504e+06
3.485e+06
3.48502e+06
3.48509e+06
3.48521e+06
3.48536e+06
3.48554e+06
3.48573e+06
3.48594e+06
3.48616e+06
3.48638e+06
3.48661e+06
3.48683e+06
3.48705e+06
3.48727e+06
3.48748e+06
3.48769e+06
3.48788e+06
3.59183e+06
3.59028e+06
3.59147e+06
3.58965e+06
3.59098e+06
3.58796e+06
3.58829e+06
3.58601e+06
3.58695e+06
3.57748e+06
3.54049e+06
3.50649e+06
3.50579e+06
3.49896e+06
3.49664e+06
3.49356e+06
3.49161e+06
3.48985e+06
3.48853e+06
3.48747e+06
3.48666e+06
3.48606e+06
3.48563e+06
3.48534e+06
3.48516e+06
3.48509e+06
3.48508e+06
3.48515e+06
3.48525e+06
3.4854e+06
3.48557e+06
3.48577e+06
3.48598e+06
3.48619e+06
3.48642e+06
3.48664e+06
3.48686e+06
3.48708e+06
3.4873e+06
3.4875e+06
3.4877e+06
3.6091e+06
3.60195e+06
3.60856e+06
3.60276e+06
3.60696e+06
3.60248e+06
3.60521e+06
3.6016e+06
3.60701e+06
3.59804e+06
3.56455e+06
3.51804e+06
3.51532e+06
3.50562e+06
3.50215e+06
3.49763e+06
3.49483e+06
3.49227e+06
3.49037e+06
3.48883e+06
3.48766e+06
3.48677e+06
3.48611e+06
3.48564e+06
3.48534e+06
3.48516e+06
3.48508e+06
3.48508e+06
3.48515e+06
3.48527e+06
3.48542e+06
3.4856e+06
3.4858e+06
3.48601e+06
3.48623e+06
3.48645e+06
3.48668e+06
3.4869e+06
3.48711e+06
3.48732e+06
3.48753e+06
3.62601e+06
3.61295e+06
3.62506e+06
3.61541e+06
3.62204e+06
3.61621e+06
3.6203e+06
3.61552e+06
3.62394e+06
3.61351e+06
3.58692e+06
3.53147e+06
3.52433e+06
3.51287e+06
3.50775e+06
3.50194e+06
3.49815e+06
3.49478e+06
3.49226e+06
3.49023e+06
3.48867e+06
3.48748e+06
3.48659e+06
3.48595e+06
3.48551e+06
3.48523e+06
3.48507e+06
3.48502e+06
3.48505e+06
3.48513e+06
3.48526e+06
3.48543e+06
3.48562e+06
3.48583e+06
3.48604e+06
3.48627e+06
3.48649e+06
3.48671e+06
3.48693e+06
3.48714e+06
3.48735e+06
3.64111e+06
3.62449e+06
3.6398e+06
3.628e+06
3.63525e+06
3.62864e+06
3.63183e+06
3.62596e+06
3.63404e+06
3.6224e+06
3.60509e+06
3.54761e+06
3.5324e+06
3.52076e+06
3.51331e+06
3.50643e+06
3.50149e+06
3.49731e+06
3.49413e+06
3.49159e+06
3.48965e+06
3.48815e+06
3.48704e+06
3.48623e+06
3.48565e+06
3.48528e+06
3.48505e+06
3.48495e+06
3.48493e+06
3.48499e+06
3.48511e+06
3.48526e+06
3.48544e+06
3.48564e+06
3.48586e+06
3.48608e+06
3.48631e+06
3.48653e+06
3.48675e+06
3.48697e+06
3.48718e+06
3.65803e+06
3.63924e+06
3.65365e+06
3.64135e+06
3.64749e+06
3.64118e+06
3.64181e+06
3.63664e+06
3.64008e+06
3.63283e+06
3.62147e+06
3.56953e+06
3.54041e+06
3.52964e+06
3.5189e+06
3.51109e+06
3.50478e+06
3.49981e+06
3.49593e+06
3.49289e+06
3.49055e+06
3.48877e+06
3.48743e+06
3.48646e+06
3.48577e+06
3.4853e+06
3.48501e+06
3.48486e+06
3.48481e+06
3.48485e+06
3.48494e+06
3.48509e+06
3.48526e+06
3.48546e+06
3.48567e+06
3.4859e+06
3.48612e+06
3.48635e+06
3.48658e+06
3.4868e+06
3.48701e+06
3.66958e+06
3.65394e+06
3.66602e+06
3.6553e+06
3.65951e+06
3.65452e+06
3.65283e+06
3.6501e+06
3.64886e+06
3.64916e+06
3.64025e+06
3.59638e+06
3.54978e+06
3.53925e+06
3.52462e+06
3.51579e+06
3.50796e+06
3.50218e+06
3.49758e+06
3.49405e+06
3.49134e+06
3.48928e+06
3.48775e+06
3.48662e+06
3.48583e+06
3.48528e+06
3.48494e+06
3.48475e+06
3.48467e+06
3.48469e+06
3.48477e+06
3.48491e+06
3.48508e+06
3.48528e+06
3.48549e+06
3.48572e+06
3.48594e+06
3.48617e+06
3.4864e+06
3.48662e+06
3.48684e+06
3.6783e+06
3.66972e+06
3.67578e+06
3.6687e+06
3.67011e+06
3.667e+06
3.66405e+06
3.66408e+06
3.66085e+06
3.66781e+06
3.65754e+06
3.62305e+06
3.56138e+06
3.54823e+06
3.5304e+06
3.52017e+06
3.51091e+06
3.50428e+06
3.49899e+06
3.495e+06
3.49195e+06
3.48965e+06
3.48795e+06
3.4867e+06
3.48582e+06
3.48521e+06
3.48483e+06
3.48461e+06
3.48451e+06
3.48452e+06
3.48459e+06
3.48472e+06
3.48489e+06
3.48509e+06
3.48531e+06
3.48553e+06
3.48577e+06
3.486e+06
3.48623e+06
3.48645e+06
3.48667e+06
3.68065e+06
3.6834e+06
3.68e+06
3.67983e+06
3.67745e+06
3.67631e+06
3.67257e+06
3.67417e+06
3.67048e+06
3.6804e+06
3.66791e+06
3.64511e+06
3.57601e+06
3.55524e+06
3.53615e+06
3.52384e+06
3.51345e+06
3.50595e+06
3.50007e+06
3.49567e+06
3.49233e+06
3.48985e+06
3.48801e+06
3.48667e+06
3.48573e+06
3.48508e+06
3.48467e+06
3.48443e+06
3.48433e+06
3.48433e+06
3.4844e+06
3.48453e+06
3.4847e+06
3.4849e+06
3.48512e+06
3.48535e+06
3.48559e+06
3.48582e+06
3.48606e+06
3.48629e+06
3.48651e+06
3.67898e+06
3.69441e+06
3.67908e+06
3.68677e+06
3.68054e+06
3.68125e+06
3.67713e+06
3.67883e+06
3.67596e+06
3.68441e+06
3.67306e+06
3.66017e+06
3.5952e+06
3.55976e+06
3.54167e+06
3.52648e+06
3.51541e+06
3.50701e+06
3.50069e+06
3.49596e+06
3.49243e+06
3.48981e+06
3.4879e+06
3.48652e+06
3.48554e+06
3.48488e+06
3.48446e+06
3.48422e+06
3.48412e+06
3.48412e+06
3.4842e+06
3.48433e+06
3.48451e+06
3.48471e+06
3.48493e+06
3.48517e+06
3.48541e+06
3.48565e+06
3.48589e+06
3.48612e+06
3.48635e+06
3.67096e+06
3.69755e+06
3.67324e+06
3.6876e+06
3.67845e+06
3.68093e+06
3.67727e+06
3.67926e+06
3.67942e+06
3.6848e+06
3.67856e+06
3.6708e+06
3.61795e+06
3.56282e+06
3.54636e+06
3.52793e+06
3.51651e+06
3.50731e+06
3.50074e+06
3.4958e+06
3.49218e+06
3.48953e+06
3.4876e+06
3.48622e+06
3.48525e+06
3.48461e+06
3.4842e+06
3.48397e+06
3.48388e+06
3.48389e+06
3.48398e+06
3.48412e+06
3.4843e+06
3.48451e+06
3.48474e+06
3.48498e+06
3.48523e+06
3.48548e+06
3.48572e+06
3.48596e+06
3.48619e+06
3.65745e+06
3.69094e+06
3.66173e+06
3.68003e+06
3.66882e+06
3.67259e+06
3.6706e+06
3.67506e+06
3.68063e+06
3.68533e+06
3.68482e+06
3.67839e+06
3.63821e+06
3.56653e+06
3.54846e+06
3.52807e+06
3.51631e+06
3.50668e+06
3.50007e+06
3.49511e+06
3.49155e+06
3.48895e+06
3.48709e+06
3.48577e+06
3.48485e+06
3.48425e+06
3.48387e+06
3.48368e+06
3.48361e+06
3.48364e+06
3.48374e+06
3.4839e+06
3.48409e+06
3.48431e+06
3.48455e+06
3.4848e+06
3.48505e+06
3.48531e+06
3.48556e+06
3.4858e+06
3.48603e+06
3.63588e+06
3.67059e+06
3.64146e+06
3.66071e+06
3.64845e+06
3.65244e+06
3.65357e+06
3.66333e+06
3.67618e+06
3.6831e+06
3.68736e+06
3.67873e+06
3.65113e+06
3.57227e+06
3.54601e+06
3.52665e+06
3.5143e+06
3.50497e+06
3.49854e+06
3.49384e+06
3.49049e+06
3.48807e+06
3.48636e+06
3.48516e+06
3.48434e+06
3.48381e+06
3.48349e+06
3.48334e+06
3.48331e+06
3.48337e+06
3.48349e+06
3.48367e+06
3.48388e+06
3.48411e+06
3.48436e+06
3.48462e+06
3.48488e+06
3.48514e+06
3.48539e+06
3.48564e+06
3.48588e+06
3.60881e+06
3.63867e+06
3.61306e+06
3.62944e+06
3.6163e+06
3.61881e+06
3.62433e+06
3.64139e+06
3.66161e+06
3.6714e+06
3.67965e+06
3.66731e+06
3.65207e+06
3.57727e+06
3.53781e+06
3.52287e+06
3.51008e+06
3.50199e+06
3.49607e+06
3.49195e+06
3.48899e+06
3.48689e+06
3.48542e+06
3.4844e+06
3.48372e+06
3.48329e+06
3.48305e+06
3.48296e+06
3.48298e+06
3.48307e+06
3.48323e+06
3.48343e+06
3.48366e+06
3.4839e+06
3.48416e+06
3.48443e+06
3.4847e+06
3.48497e+06
3.48523e+06
3.48548e+06
3.48573e+06
3.57401e+06
3.5965e+06
3.57804e+06
3.58966e+06
3.57563e+06
3.57584e+06
3.58575e+06
3.61003e+06
3.635e+06
3.64615e+06
3.65619e+06
3.64322e+06
3.63647e+06
3.57495e+06
3.52456e+06
3.51554e+06
3.50367e+06
3.49765e+06
3.49269e+06
3.48946e+06
3.48708e+06
3.48544e+06
3.48428e+06
3.4835e+06
3.483e+06
3.4827e+06
3.48257e+06
3.48255e+06
3.48262e+06
3.48276e+06
3.48295e+06
3.48318e+06
3.48343e+06
3.48369e+06
3.48397e+06
3.48425e+06
3.48453e+06
3.4848e+06
3.48507e+06
3.48533e+06
3.48558e+06
3.54091e+06
3.55612e+06
3.54386e+06
3.5506e+06
3.5353e+06
3.53516e+06
3.54566e+06
3.57422e+06
3.59862e+06
3.60812e+06
3.6164e+06
3.60745e+06
3.60466e+06
3.5597e+06
3.50818e+06
3.50407e+06
3.49554e+06
3.49203e+06
3.48857e+06
3.48647e+06
3.48485e+06
3.48375e+06
3.48298e+06
3.48249e+06
3.48219e+06
3.48205e+06
3.48203e+06
3.48211e+06
3.48225e+06
3.48244e+06
3.48267e+06
3.48292e+06
3.4832e+06
3.48348e+06
3.48377e+06
3.48406e+06
3.48435e+06
3.48463e+06
3.48491e+06
3.48517e+06
3.48543e+06
3.51568e+06
3.52574e+06
3.5175e+06
3.52169e+06
3.50623e+06
3.50808e+06
3.51514e+06
3.54043e+06
3.55793e+06
3.56278e+06
3.56696e+06
3.5643e+06
3.56449e+06
3.53309e+06
3.49117e+06
3.48974e+06
3.48658e+06
3.48555e+06
3.48402e+06
3.48316e+06
3.4824e+06
3.48191e+06
3.48157e+06
3.48139e+06
3.48133e+06
3.48136e+06
3.48147e+06
3.48164e+06
3.48185e+06
3.4821e+06
3.48237e+06
3.48266e+06
3.48296e+06
3.48327e+06
3.48357e+06
3.48388e+06
3.48418e+06
3.48447e+06
3.48475e+06
3.48502e+06
3.48528e+06
3.50269e+06
3.50844e+06
3.50368e+06
3.50606e+06
3.49482e+06
3.49566e+06
3.49961e+06
3.51317e+06
3.51987e+06
3.51908e+06
3.51941e+06
3.52201e+06
3.52593e+06
3.5035e+06
3.47599e+06
3.47545e+06
3.47792e+06
3.47898e+06
3.47945e+06
3.47976e+06
3.47988e+06
3.48e+06
3.48011e+06
3.48025e+06
3.48043e+06
3.48064e+06
3.48088e+06
3.48115e+06
3.48144e+06
3.48175e+06
3.48207e+06
3.48239e+06
3.48272e+06
3.48305e+06
3.48337e+06
3.48369e+06
3.484e+06
3.48431e+06
3.4846e+06
3.48487e+06
3.48514e+06
3.50149e+06
3.50107e+06
3.50132e+06
3.49984e+06
3.49727e+06
3.49305e+06
3.49346e+06
3.49341e+06
3.49017e+06
3.48568e+06
3.48406e+06
3.4891e+06
3.49522e+06
3.47932e+06
3.46373e+06
3.46382e+06
3.47039e+06
3.47303e+06
3.4752e+06
3.4765e+06
3.47743e+06
3.47811e+06
3.47865e+06
3.4791e+06
3.47952e+06
3.4799e+06
3.48028e+06
3.48065e+06
3.48103e+06
3.48139e+06
3.48176e+06
3.48212e+06
3.48248e+06
3.48283e+06
3.48318e+06
3.48351e+06
3.48383e+06
3.48414e+06
3.48444e+06
3.48473e+06
3.485e+06
3.50457e+06
3.49818e+06
3.50326e+06
3.49798e+06
3.50303e+06
3.49392e+06
3.48913e+06
3.48022e+06
3.47146e+06
3.46631e+06
3.46444e+06
3.46947e+06
3.47459e+06
3.46429e+06
3.45481e+06
3.45593e+06
3.46436e+06
3.46813e+06
3.47148e+06
3.47356e+06
3.47516e+06
3.47632e+06
3.47723e+06
3.47798e+06
3.47861e+06
3.47917e+06
3.47968e+06
3.48016e+06
3.48061e+06
3.48104e+06
3.48145e+06
3.48185e+06
3.48224e+06
3.48262e+06
3.48298e+06
3.48333e+06
3.48366e+06
3.48398e+06
3.48429e+06
3.48459e+06
3.48486e+06
3.50517e+06
3.49802e+06
3.50335e+06
3.49787e+06
3.50383e+06
3.49381e+06
3.48393e+06
3.47234e+06
3.4625e+06
3.45871e+06
3.45718e+06
3.46117e+06
3.46302e+06
3.45734e+06
3.44907e+06
3.4513e+06
3.45981e+06
3.46435e+06
3.46836e+06
3.471e+06
3.4731e+06
3.47466e+06
3.4759e+06
3.4769e+06
3.47774e+06
3.47846e+06
3.47909e+06
3.47966e+06
3.48019e+06
3.48068e+06
3.48115e+06
3.48158e+06
3.482e+06
3.4824e+06
3.48278e+06
3.48315e+06
3.4835e+06
3.48383e+06
3.48414e+06
3.48444e+06
3.48473e+06
3.4996e+06
3.49896e+06
3.49837e+06
3.49892e+06
3.49818e+06
3.49167e+06
3.47859e+06
3.46816e+06
3.45973e+06
3.45776e+06
3.45662e+06
3.4592e+06
3.45782e+06
3.45517e+06
3.44564e+06
3.4487e+06
3.45646e+06
3.46149e+06
3.46578e+06
3.46883e+06
3.47129e+06
3.47316e+06
3.47467e+06
3.47589e+06
3.4769e+06
3.47777e+06
3.47852e+06
3.47918e+06
3.47978e+06
3.48033e+06
3.48084e+06
3.48132e+06
3.48177e+06
3.48219e+06
3.48259e+06
3.48297e+06
3.48333e+06
3.48367e+06
3.484e+06
3.48431e+06
3.4846e+06
3.49188e+06
3.50054e+06
3.49126e+06
3.50021e+06
3.4911e+06
3.48783e+06
3.47426e+06
3.4658e+06
3.4594e+06
3.4587e+06
3.45787e+06
3.45926e+06
3.45621e+06
3.45478e+06
3.44362e+06
3.44706e+06
3.45395e+06
3.4593e+06
3.46367e+06
3.46701e+06
3.4697e+06
3.47182e+06
3.47354e+06
3.47495e+06
3.47612e+06
3.47711e+06
3.47797e+06
3.47872e+06
3.47939e+06
3.47999e+06
3.48055e+06
3.48106e+06
3.48154e+06
3.48198e+06
3.4824e+06
3.4828e+06
3.48317e+06
3.48352e+06
3.48386e+06
3.48417e+06
3.48447e+06
3.48588e+06
3.49927e+06
3.48548e+06
3.49893e+06
3.48593e+06
3.48282e+06
3.47074e+06
3.46359e+06
3.45886e+06
3.45863e+06
3.45779e+06
3.45859e+06
3.45562e+06
3.45421e+06
3.44215e+06
3.44568e+06
3.45199e+06
3.45754e+06
3.46192e+06
3.46546e+06
3.46833e+06
3.47064e+06
3.47253e+06
3.47409e+06
3.47539e+06
3.47649e+06
3.47744e+06
3.47827e+06
3.479e+06
3.47966e+06
3.48026e+06
3.48081e+06
3.48131e+06
3.48178e+06
3.48222e+06
3.48263e+06
3.48301e+06
3.48338e+06
3.48372e+06
3.48404e+06
3.48434e+06
3.4827e+06
3.49245e+06
3.4819e+06
3.4928e+06
3.48168e+06
3.47669e+06
3.46721e+06
3.46072e+06
3.45719e+06
3.45692e+06
3.45619e+06
3.45687e+06
3.45472e+06
3.45293e+06
3.44085e+06
3.44433e+06
3.45038e+06
3.45606e+06
3.46045e+06
3.46414e+06
3.46713e+06
3.46959e+06
3.47162e+06
3.4733e+06
3.47472e+06
3.47592e+06
3.47695e+06
3.47785e+06
3.47864e+06
3.47934e+06
3.47998e+06
3.48056e+06
3.48109e+06
3.48158e+06
3.48204e+06
3.48246e+06
3.48286e+06
3.48323e+06
3.48358e+06
3.48391e+06
3.48422e+06
3.48078e+06
3.48143e+06
3.47878e+06
3.48279e+06
3.47668e+06
3.46983e+06
3.46329e+06
3.45729e+06
3.45464e+06
3.4542e+06
3.45365e+06
3.45448e+06
3.45318e+06
3.45112e+06
3.43958e+06
3.44301e+06
3.44902e+06
3.45479e+06
3.4592e+06
3.46301e+06
3.4661e+06
3.46868e+06
3.47081e+06
3.4726e+06
3.47411e+06
3.47539e+06
3.47649e+06
3.47745e+06
3.47829e+06
3.47904e+06
3.47971e+06
3.48032e+06
3.48088e+06
3.48139e+06
3.48186e+06
3.4823e+06
3.48271e+06
3.48309e+06
3.48345e+06
3.48379e+06
3.4841e+06
3.47772e+06
3.46906e+06
3.4748e+06
3.47171e+06
3.47089e+06
3.46307e+06
3.45919e+06
3.45376e+06
3.45181e+06
3.45128e+06
3.45096e+06
3.45189e+06
3.45121e+06
3.44905e+06
3.43838e+06
3.4418e+06
3.44785e+06
3.4537e+06
3.45815e+06
3.46204e+06
3.46521e+06
3.46787e+06
3.47009e+06
3.47197e+06
3.47355e+06
3.4749e+06
3.47607e+06
3.47708e+06
3.47797e+06
3.47876e+06
3.47946e+06
3.4801e+06
3.48067e+06
3.4812e+06
3.48169e+06
3.48214e+06
3.48256e+06
3.48296e+06
3.48332e+06
3.48366e+06
3.48398e+06
3.47348e+06
3.45831e+06
3.47011e+06
3.46191e+06
3.46504e+06
3.45711e+06
3.45528e+06
3.45055e+06
3.44916e+06
3.44868e+06
3.44852e+06
3.44948e+06
3.44915e+06
3.44705e+06
3.43726e+06
3.44075e+06
3.44687e+06
3.45277e+06
3.45726e+06
3.46122e+06
3.46444e+06
3.46718e+06
3.46947e+06
3.47141e+06
3.47305e+06
3.47446e+06
3.47568e+06
3.47674e+06
3.47766e+06
3.47849e+06
3.47922e+06
3.47988e+06
3.48048e+06
3.48103e+06
3.48153e+06
3.48199e+06
3.48242e+06
3.48282e+06
3.4832e+06
3.48355e+06
3.48387e+06
3.46856e+06
3.45028e+06
3.46521e+06
3.45438e+06
3.45977e+06
3.45233e+06
3.45185e+06
3.44789e+06
3.44693e+06
3.44657e+06
3.4465e+06
3.44742e+06
3.44723e+06
3.44527e+06
3.43631e+06
3.43991e+06
3.44606e+06
3.452e+06
3.45653e+06
3.46052e+06
3.46379e+06
3.46658e+06
3.46892e+06
3.47091e+06
3.47261e+06
3.47406e+06
3.47532e+06
3.47642e+06
3.47738e+06
3.47823e+06
3.47899e+06
3.47967e+06
3.48029e+06
3.48085e+06
3.48137e+06
3.48185e+06
3.48229e+06
3.4827e+06
3.48308e+06
3.48343e+06
3.48376e+06
3.46364e+06
3.44511e+06
3.46067e+06
3.4492e+06
3.45536e+06
3.44873e+06
3.449e+06
3.44579e+06
3.44514e+06
3.44494e+06
3.44489e+06
3.44573e+06
3.44556e+06
3.44376e+06
3.43553e+06
3.43926e+06
3.44542e+06
3.45138e+06
3.45592e+06
3.45994e+06
3.46324e+06
3.46606e+06
3.46844e+06
3.47048e+06
3.47221e+06
3.47371e+06
3.475e+06
3.47613e+06
3.47712e+06
3.478e+06
3.47878e+06
3.47948e+06
3.48012e+06
3.48069e+06
3.48122e+06
3.48171e+06
3.48216e+06
3.48257e+06
3.48296e+06
3.48332e+06
3.48366e+06
3.44374e+06
3.44367e+06
3.44359e+06
3.44433e+06
3.44413e+06
3.44248e+06
3.4349e+06
3.4388e+06
3.44494e+06
3.45089e+06
3.45544e+06
3.45947e+06
3.46278e+06
3.46563e+06
3.46804e+06
3.4701e+06
3.47187e+06
3.47339e+06
3.47472e+06
3.47587e+06
3.47689e+06
3.47778e+06
3.47858e+06
3.4793e+06
3.47995e+06
3.48054e+06
3.48108e+06
3.48157e+06
3.48203e+06
3.48245e+06
3.48285e+06
3.48321e+06
3.48356e+06
3.48262e+06
3.48361e+06
3.48443e+06
3.48511e+06
3.48568e+06
3.48617e+06
3.48659e+06
3.48697e+06
3.4873e+06
3.48761e+06
3.48788e+06
3.48814e+06
3.48838e+06
3.48861e+06
3.48882e+06
3.48902e+06
3.48922e+06
3.4894e+06
3.48958e+06
3.48975e+06
3.479e+06
3.48065e+06
3.48197e+06
3.48304e+06
3.48392e+06
3.48464e+06
3.48525e+06
3.48578e+06
3.48623e+06
3.48662e+06
3.48698e+06
3.4873e+06
3.48759e+06
3.48785e+06
3.48811e+06
3.48834e+06
3.48856e+06
3.48877e+06
3.48897e+06
3.48917e+06
3.48935e+06
3.48952e+06
3.46979e+06
3.46058e+06
3.46921e+06
3.46167e+06
3.46113e+06
3.45685e+06
3.45601e+06
3.45311e+06
3.44581e+06
3.43171e+06
3.45896e+06
3.4652e+06
3.46988e+06
3.47348e+06
3.47624e+06
3.47841e+06
3.48012e+06
3.4815e+06
3.4826e+06
3.48351e+06
3.48426e+06
3.4849e+06
3.48544e+06
3.4859e+06
3.48631e+06
3.48668e+06
3.48701e+06
3.48731e+06
3.48758e+06
3.48784e+06
3.48808e+06
3.48831e+06
3.48853e+06
3.48874e+06
3.48894e+06
3.48912e+06
3.4893e+06
3.47021e+06
3.4721e+06
3.4699e+06
3.47106e+06
3.46433e+06
3.46342e+06
3.46018e+06
3.45821e+06
3.4502e+06
3.43466e+06
3.43863e+06
3.45075e+06
3.45862e+06
3.46507e+06
3.46961e+06
3.47324e+06
3.47597e+06
3.47814e+06
3.47984e+06
3.48121e+06
3.48232e+06
3.48323e+06
3.48398e+06
3.48461e+06
3.48515e+06
3.48562e+06
3.48604e+06
3.4864e+06
3.48674e+06
3.48704e+06
3.48732e+06
3.48759e+06
3.48784e+06
3.48807e+06
3.48829e+06
3.48851e+06
3.48871e+06
3.4889e+06
3.48909e+06
3.47558e+06
3.48582e+06
3.47591e+06
3.48272e+06
3.47195e+06
3.47373e+06
3.46847e+06
3.46802e+06
3.45969e+06
3.44255e+06
3.44057e+06
3.45288e+06
3.45959e+06
3.46595e+06
3.47008e+06
3.47358e+06
3.47613e+06
3.47822e+06
3.47983e+06
3.48114e+06
3.4822e+06
3.48307e+06
3.48379e+06
3.48441e+06
3.48493e+06
3.48539e+06
3.4858e+06
3.48616e+06
3.48649e+06
3.4868e+06
3.48708e+06
3.48735e+06
3.4876e+06
3.48784e+06
3.48806e+06
3.48828e+06
3.48849e+06
3.48869e+06
3.48888e+06
3.48906e+06
3.48761e+06
3.50009e+06
3.48861e+06
3.49575e+06
3.48516e+06
3.48756e+06
3.48203e+06
3.48309e+06
3.47513e+06
3.45543e+06
3.44549e+06
3.45698e+06
3.46191e+06
3.46785e+06
3.47129e+06
3.47451e+06
3.47675e+06
3.47864e+06
3.48009e+06
3.48128e+06
3.48224e+06
3.48304e+06
3.48371e+06
3.48428e+06
3.48478e+06
3.48521e+06
3.4856e+06
3.48595e+06
3.48627e+06
3.48657e+06
3.48685e+06
3.48711e+06
3.48737e+06
3.48761e+06
3.48784e+06
3.48806e+06
3.48827e+06
3.48847e+06
3.48867e+06
3.48885e+06
3.50498e+06
3.51354e+06
3.50599e+06
3.50925e+06
3.50256e+06
3.50404e+06
3.49987e+06
3.50218e+06
3.49497e+06
3.47224e+06
3.45312e+06
3.46265e+06
3.4655e+06
3.47067e+06
3.47323e+06
3.47599e+06
3.4778e+06
3.47941e+06
3.48062e+06
3.48164e+06
3.48246e+06
3.48315e+06
3.48373e+06
3.48424e+06
3.48468e+06
3.48508e+06
3.48543e+06
3.48576e+06
3.48607e+06
3.48636e+06
3.48663e+06
3.4869e+06
3.48715e+06
3.48739e+06
3.48762e+06
3.48784e+06
3.48806e+06
3.48826e+06
3.48846e+06
3.48865e+06
3.48883e+06
3.52356e+06
3.52625e+06
3.52427e+06
3.52317e+06
3.52106e+06
3.52155e+06
3.51924e+06
3.52268e+06
3.5163e+06
3.49144e+06
3.46271e+06
3.46928e+06
3.4701e+06
3.47421e+06
3.47581e+06
3.47796e+06
3.47926e+06
3.4805e+06
3.48141e+06
3.4822e+06
3.48284e+06
3.48338e+06
3.48385e+06
3.48427e+06
3.48465e+06
3.48499e+06
3.48531e+06
3.48561e+06
3.48589e+06
3.48617e+06
3.48643e+06
3.48669e+06
3.48693e+06
3.48717e+06
3.48741e+06
3.48763e+06
3.48785e+06
3.48806e+06
3.48826e+06
3.48845e+06
3.48863e+06
3.53963e+06
3.53898e+06
3.53993e+06
3.53727e+06
3.53762e+06
3.53787e+06
3.53647e+06
3.5411e+06
3.5347e+06
3.5106e+06
3.47328e+06
3.47615e+06
3.47546e+06
3.47827e+06
3.47894e+06
3.48037e+06
3.4811e+06
3.48189e+06
3.48244e+06
3.48295e+06
3.48337e+06
3.48374e+06
3.48407e+06
3.48438e+06
3.48467e+06
3.48495e+06
3.48521e+06
3.48548e+06
3.48574e+06
3.48599e+06
3.48624e+06
3.48649e+06
3.48673e+06
3.48697e+06
3.4872e+06
3.48743e+06
3.48764e+06
3.48786e+06
3.48806e+06
3.48826e+06
3.48844e+06
3.55221e+06
3.55176e+06
3.55221e+06
3.55066e+06
3.55128e+06
3.55146e+06
3.54957e+06
3.55477e+06
3.54709e+06
3.52737e+06
3.48459e+06
3.48275e+06
3.48144e+06
3.4827e+06
3.48258e+06
3.48315e+06
3.48327e+06
3.48355e+06
3.4837e+06
3.48388e+06
3.48403e+06
3.4842e+06
3.48437e+06
3.48455e+06
3.48474e+06
3.48494e+06
3.48515e+06
3.48537e+06
3.4856e+06
3.48583e+06
3.48606e+06
3.4863e+06
3.48653e+06
3.48677e+06
3.487e+06
3.48722e+06
3.48744e+06
3.48766e+06
3.48787e+06
3.48806e+06
3.48825e+06
3.56342e+06
3.5646e+06
3.56335e+06
3.56348e+06
3.56339e+06
3.56292e+06
3.56049e+06
3.56421e+06
3.55669e+06
3.54201e+06
3.49864e+06
3.48938e+06
3.48833e+06
3.48754e+06
3.48673e+06
3.48628e+06
3.48577e+06
3.48545e+06
3.48515e+06
3.48496e+06
3.48482e+06
3.48475e+06
3.48474e+06
3.48477e+06
3.48485e+06
3.48497e+06
3.48511e+06
3.48528e+06
3.48547e+06
3.48568e+06
3.48589e+06
3.48611e+06
3.48634e+06
3.48657e+06
3.4868e+06
3.48703e+06
3.48725e+06
3.48746e+06
3.48767e+06
3.48787e+06
3.48807e+06
3.5761e+06
3.57757e+06
3.57605e+06
3.57643e+06
3.5762e+06
3.57457e+06
3.5729e+06
3.57335e+06
3.56934e+06
3.558e+06
3.51764e+06
3.49702e+06
3.49653e+06
3.49293e+06
3.49144e+06
3.48976e+06
3.48856e+06
3.48756e+06
3.48677e+06
3.48616e+06
3.4857e+06
3.48538e+06
3.48516e+06
3.48504e+06
3.485e+06
3.48502e+06
3.48509e+06
3.48521e+06
3.48536e+06
3.48554e+06
3.48573e+06
3.48594e+06
3.48616e+06
3.48638e+06
3.48661e+06
3.48683e+06
3.48705e+06
3.48727e+06
3.48748e+06
3.48769e+06
3.48788e+06
3.59183e+06
3.59028e+06
3.59147e+06
3.58965e+06
3.59098e+06
3.58796e+06
3.58829e+06
3.58601e+06
3.58695e+06
3.57748e+06
3.54049e+06
3.50649e+06
3.50579e+06
3.49896e+06
3.49664e+06
3.49356e+06
3.49161e+06
3.48985e+06
3.48853e+06
3.48747e+06
3.48666e+06
3.48606e+06
3.48563e+06
3.48534e+06
3.48516e+06
3.48509e+06
3.48508e+06
3.48515e+06
3.48525e+06
3.4854e+06
3.48557e+06
3.48577e+06
3.48598e+06
3.48619e+06
3.48642e+06
3.48664e+06
3.48686e+06
3.48708e+06
3.4873e+06
3.4875e+06
3.4877e+06
3.6091e+06
3.60195e+06
3.60856e+06
3.60276e+06
3.60696e+06
3.60248e+06
3.60521e+06
3.6016e+06
3.60701e+06
3.59804e+06
3.56455e+06
3.51804e+06
3.51532e+06
3.50562e+06
3.50215e+06
3.49763e+06
3.49483e+06
3.49227e+06
3.49037e+06
3.48883e+06
3.48766e+06
3.48677e+06
3.48611e+06
3.48564e+06
3.48534e+06
3.48516e+06
3.48508e+06
3.48508e+06
3.48515e+06
3.48527e+06
3.48542e+06
3.4856e+06
3.4858e+06
3.48601e+06
3.48623e+06
3.48645e+06
3.48668e+06
3.4869e+06
3.48711e+06
3.48732e+06
3.48753e+06
3.62601e+06
3.61295e+06
3.62506e+06
3.61541e+06
3.62204e+06
3.61621e+06
3.6203e+06
3.61552e+06
3.62394e+06
3.61351e+06
3.58692e+06
3.53147e+06
3.52433e+06
3.51287e+06
3.50775e+06
3.50194e+06
3.49815e+06
3.49478e+06
3.49226e+06
3.49023e+06
3.48867e+06
3.48748e+06
3.48659e+06
3.48595e+06
3.48551e+06
3.48523e+06
3.48507e+06
3.48502e+06
3.48505e+06
3.48513e+06
3.48526e+06
3.48543e+06
3.48562e+06
3.48583e+06
3.48604e+06
3.48627e+06
3.48649e+06
3.48671e+06
3.48693e+06
3.48714e+06
3.48735e+06
3.64111e+06
3.62449e+06
3.6398e+06
3.628e+06
3.63525e+06
3.62864e+06
3.63183e+06
3.62596e+06
3.63404e+06
3.6224e+06
3.60509e+06
3.54761e+06
3.5324e+06
3.52076e+06
3.51331e+06
3.50643e+06
3.50149e+06
3.49731e+06
3.49413e+06
3.49159e+06
3.48965e+06
3.48815e+06
3.48704e+06
3.48623e+06
3.48565e+06
3.48528e+06
3.48505e+06
3.48495e+06
3.48493e+06
3.48499e+06
3.48511e+06
3.48526e+06
3.48544e+06
3.48564e+06
3.48586e+06
3.48608e+06
3.48631e+06
3.48653e+06
3.48675e+06
3.48697e+06
3.48718e+06
3.65803e+06
3.63924e+06
3.65365e+06
3.64135e+06
3.64749e+06
3.64118e+06
3.64181e+06
3.63664e+06
3.64008e+06
3.63283e+06
3.62147e+06
3.56953e+06
3.54041e+06
3.52964e+06
3.5189e+06
3.51109e+06
3.50478e+06
3.49981e+06
3.49593e+06
3.49289e+06
3.49055e+06
3.48877e+06
3.48743e+06
3.48646e+06
3.48577e+06
3.4853e+06
3.48501e+06
3.48486e+06
3.48481e+06
3.48485e+06
3.48494e+06
3.48509e+06
3.48526e+06
3.48546e+06
3.48567e+06
3.4859e+06
3.48612e+06
3.48635e+06
3.48658e+06
3.4868e+06
3.48701e+06
3.66958e+06
3.65394e+06
3.66602e+06
3.6553e+06
3.65951e+06
3.65452e+06
3.65283e+06
3.6501e+06
3.64886e+06
3.64916e+06
3.64025e+06
3.59638e+06
3.54978e+06
3.53925e+06
3.52462e+06
3.51579e+06
3.50796e+06
3.50218e+06
3.49758e+06
3.49405e+06
3.49134e+06
3.48928e+06
3.48775e+06
3.48662e+06
3.48583e+06
3.48528e+06
3.48494e+06
3.48475e+06
3.48467e+06
3.48469e+06
3.48477e+06
3.48491e+06
3.48508e+06
3.48528e+06
3.48549e+06
3.48572e+06
3.48594e+06
3.48617e+06
3.4864e+06
3.48662e+06
3.48684e+06
3.6783e+06
3.66972e+06
3.67578e+06
3.6687e+06
3.67011e+06
3.667e+06
3.66405e+06
3.66408e+06
3.66085e+06
3.66781e+06
3.65754e+06
3.62305e+06
3.56138e+06
3.54823e+06
3.5304e+06
3.52017e+06
3.51091e+06
3.50428e+06
3.49899e+06
3.495e+06
3.49195e+06
3.48965e+06
3.48795e+06
3.4867e+06
3.48582e+06
3.48521e+06
3.48483e+06
3.48461e+06
3.48451e+06
3.48452e+06
3.48459e+06
3.48472e+06
3.48489e+06
3.48509e+06
3.48531e+06
3.48553e+06
3.48577e+06
3.486e+06
3.48623e+06
3.48645e+06
3.48667e+06
3.68065e+06
3.6834e+06
3.68e+06
3.67983e+06
3.67745e+06
3.67631e+06
3.67257e+06
3.67417e+06
3.67048e+06
3.6804e+06
3.66791e+06
3.64511e+06
3.57601e+06
3.55524e+06
3.53615e+06
3.52384e+06
3.51345e+06
3.50595e+06
3.50007e+06
3.49567e+06
3.49233e+06
3.48985e+06
3.48801e+06
3.48667e+06
3.48573e+06
3.48508e+06
3.48467e+06
3.48443e+06
3.48433e+06
3.48433e+06
3.4844e+06
3.48453e+06
3.4847e+06
3.4849e+06
3.48512e+06
3.48535e+06
3.48559e+06
3.48582e+06
3.48606e+06
3.48629e+06
3.48651e+06
3.67898e+06
3.69441e+06
3.67908e+06
3.68677e+06
3.68054e+06
3.68125e+06
3.67713e+06
3.67883e+06
3.67596e+06
3.68441e+06
3.67306e+06
3.66017e+06
3.5952e+06
3.55976e+06
3.54167e+06
3.52648e+06
3.51541e+06
3.50701e+06
3.50069e+06
3.49596e+06
3.49243e+06
3.48981e+06
3.4879e+06
3.48652e+06
3.48554e+06
3.48488e+06
3.48446e+06
3.48422e+06
3.48412e+06
3.48412e+06
3.4842e+06
3.48433e+06
3.48451e+06
3.48471e+06
3.48493e+06
3.48517e+06
3.48541e+06
3.48565e+06
3.48589e+06
3.48612e+06
3.48635e+06
3.67096e+06
3.69755e+06
3.67324e+06
3.6876e+06
3.67845e+06
3.68093e+06
3.67727e+06
3.67926e+06
3.67942e+06
3.6848e+06
3.67856e+06
3.6708e+06
3.61795e+06
3.56282e+06
3.54636e+06
3.52793e+06
3.51651e+06
3.50731e+06
3.50074e+06
3.4958e+06
3.49218e+06
3.48953e+06
3.4876e+06
3.48622e+06
3.48525e+06
3.48461e+06
3.4842e+06
3.48397e+06
3.48388e+06
3.48389e+06
3.48398e+06
3.48412e+06
3.4843e+06
3.48451e+06
3.48474e+06
3.48498e+06
3.48523e+06
3.48548e+06
3.48572e+06
3.48596e+06
3.48619e+06
3.65745e+06
3.69094e+06
3.66173e+06
3.68003e+06
3.66882e+06
3.67259e+06
3.6706e+06
3.67506e+06
3.68063e+06
3.68533e+06
3.68482e+06
3.67839e+06
3.63821e+06
3.56653e+06
3.54846e+06
3.52807e+06
3.51631e+06
3.50668e+06
3.50007e+06
3.49511e+06
3.49155e+06
3.48895e+06
3.48709e+06
3.48577e+06
3.48485e+06
3.48425e+06
3.48387e+06
3.48368e+06
3.48361e+06
3.48364e+06
3.48374e+06
3.4839e+06
3.48409e+06
3.48431e+06
3.48455e+06
3.4848e+06
3.48505e+06
3.48531e+06
3.48556e+06
3.4858e+06
3.48603e+06
3.63588e+06
3.67059e+06
3.64146e+06
3.66071e+06
3.64845e+06
3.65244e+06
3.65357e+06
3.66333e+06
3.67618e+06
3.6831e+06
3.68736e+06
3.67873e+06
3.65113e+06
3.57227e+06
3.54601e+06
3.52665e+06
3.5143e+06
3.50497e+06
3.49854e+06
3.49384e+06
3.49049e+06
3.48807e+06
3.48636e+06
3.48516e+06
3.48434e+06
3.48381e+06
3.48349e+06
3.48334e+06
3.48331e+06
3.48337e+06
3.48349e+06
3.48367e+06
3.48388e+06
3.48411e+06
3.48436e+06
3.48462e+06
3.48488e+06
3.48514e+06
3.48539e+06
3.48564e+06
3.48588e+06
3.60881e+06
3.63867e+06
3.61306e+06
3.62944e+06
3.6163e+06
3.61881e+06
3.62433e+06
3.64139e+06
3.66161e+06
3.6714e+06
3.67965e+06
3.66731e+06
3.65207e+06
3.57727e+06
3.53781e+06
3.52287e+06
3.51008e+06
3.50199e+06
3.49607e+06
3.49195e+06
3.48899e+06
3.48689e+06
3.48542e+06
3.4844e+06
3.48372e+06
3.48329e+06
3.48305e+06
3.48296e+06
3.48298e+06
3.48307e+06
3.48323e+06
3.48343e+06
3.48366e+06
3.4839e+06
3.48416e+06
3.48443e+06
3.4847e+06
3.48497e+06
3.48523e+06
3.48548e+06
3.48573e+06
3.57401e+06
3.5965e+06
3.57804e+06
3.58966e+06
3.57563e+06
3.57584e+06
3.58575e+06
3.61003e+06
3.635e+06
3.64615e+06
3.65619e+06
3.64322e+06
3.63647e+06
3.57495e+06
3.52456e+06
3.51554e+06
3.50367e+06
3.49765e+06
3.49269e+06
3.48946e+06
3.48708e+06
3.48544e+06
3.48428e+06
3.4835e+06
3.483e+06
3.4827e+06
3.48257e+06
3.48255e+06
3.48262e+06
3.48276e+06
3.48295e+06
3.48318e+06
3.48343e+06
3.48369e+06
3.48397e+06
3.48425e+06
3.48453e+06
3.4848e+06
3.48507e+06
3.48533e+06
3.48558e+06
3.54091e+06
3.55612e+06
3.54386e+06
3.5506e+06
3.5353e+06
3.53516e+06
3.54566e+06
3.57422e+06
3.59862e+06
3.60812e+06
3.6164e+06
3.60745e+06
3.60466e+06
3.5597e+06
3.50818e+06
3.50407e+06
3.49554e+06
3.49203e+06
3.48857e+06
3.48647e+06
3.48485e+06
3.48375e+06
3.48298e+06
3.48249e+06
3.48219e+06
3.48205e+06
3.48203e+06
3.48211e+06
3.48225e+06
3.48244e+06
3.48267e+06
3.48292e+06
3.4832e+06
3.48348e+06
3.48377e+06
3.48406e+06
3.48435e+06
3.48463e+06
3.48491e+06
3.48517e+06
3.48543e+06
3.51568e+06
3.52574e+06
3.5175e+06
3.52169e+06
3.50623e+06
3.50808e+06
3.51514e+06
3.54043e+06
3.55793e+06
3.56278e+06
3.56696e+06
3.5643e+06
3.56449e+06
3.53309e+06
3.49117e+06
3.48974e+06
3.48658e+06
3.48555e+06
3.48402e+06
3.48316e+06
3.4824e+06
3.48191e+06
3.48157e+06
3.48139e+06
3.48133e+06
3.48136e+06
3.48147e+06
3.48164e+06
3.48185e+06
3.4821e+06
3.48237e+06
3.48266e+06
3.48296e+06
3.48327e+06
3.48357e+06
3.48388e+06
3.48418e+06
3.48447e+06
3.48475e+06
3.48502e+06
3.48528e+06
3.50269e+06
3.50844e+06
3.50368e+06
3.50606e+06
3.49482e+06
3.49566e+06
3.49961e+06
3.51317e+06
3.51987e+06
3.51908e+06
3.51941e+06
3.52201e+06
3.52593e+06
3.5035e+06
3.47599e+06
3.47545e+06
3.47792e+06
3.47898e+06
3.47945e+06
3.47976e+06
3.47988e+06
3.48e+06
3.48011e+06
3.48025e+06
3.48043e+06
3.48064e+06
3.48088e+06
3.48115e+06
3.48144e+06
3.48175e+06
3.48207e+06
3.48239e+06
3.48272e+06
3.48305e+06
3.48337e+06
3.48369e+06
3.484e+06
3.48431e+06
3.4846e+06
3.48487e+06
3.48514e+06
3.50149e+06
3.50107e+06
3.50132e+06
3.49984e+06
3.49727e+06
3.49305e+06
3.49346e+06
3.49341e+06
3.49017e+06
3.48568e+06
3.48406e+06
3.4891e+06
3.49522e+06
3.47932e+06
3.46373e+06
3.46382e+06
3.47039e+06
3.47303e+06
3.4752e+06
3.4765e+06
3.47743e+06
3.47811e+06
3.47865e+06
3.4791e+06
3.47952e+06
3.4799e+06
3.48028e+06
3.48065e+06
3.48103e+06
3.48139e+06
3.48176e+06
3.48212e+06
3.48248e+06
3.48283e+06
3.48318e+06
3.48351e+06
3.48383e+06
3.48414e+06
3.48444e+06
3.48473e+06
3.485e+06
3.50457e+06
3.49818e+06
3.50326e+06
3.49798e+06
3.50303e+06
3.49392e+06
3.48913e+06
3.48022e+06
3.47146e+06
3.46631e+06
3.46444e+06
3.46947e+06
3.47459e+06
3.46429e+06
3.45481e+06
3.45593e+06
3.46436e+06
3.46813e+06
3.47148e+06
3.47356e+06
3.47516e+06
3.47632e+06
3.47723e+06
3.47798e+06
3.47861e+06
3.47917e+06
3.47968e+06
3.48016e+06
3.48061e+06
3.48104e+06
3.48145e+06
3.48185e+06
3.48224e+06
3.48262e+06
3.48298e+06
3.48333e+06
3.48366e+06
3.48398e+06
3.48429e+06
3.48459e+06
3.48486e+06
3.50517e+06
3.49802e+06
3.50335e+06
3.49787e+06
3.50383e+06
3.49381e+06
3.48393e+06
3.47234e+06
3.4625e+06
3.45871e+06
3.45718e+06
3.46117e+06
3.46302e+06
3.45734e+06
3.44907e+06
3.4513e+06
3.45981e+06
3.46435e+06
3.46836e+06
3.471e+06
3.4731e+06
3.47466e+06
3.4759e+06
3.4769e+06
3.47774e+06
3.47846e+06
3.47909e+06
3.47966e+06
3.48019e+06
3.48068e+06
3.48115e+06
3.48158e+06
3.482e+06
3.4824e+06
3.48278e+06
3.48315e+06
3.4835e+06
3.48383e+06
3.48414e+06
3.48444e+06
3.48473e+06
3.4996e+06
3.49896e+06
3.49837e+06
3.49892e+06
3.49818e+06
3.49167e+06
3.47859e+06
3.46816e+06
3.45973e+06
3.45776e+06
3.45662e+06
3.4592e+06
3.45782e+06
3.45517e+06
3.44564e+06
3.4487e+06
3.45646e+06
3.46149e+06
3.46578e+06
3.46883e+06
3.47129e+06
3.47316e+06
3.47467e+06
3.47589e+06
3.4769e+06
3.47777e+06
3.47852e+06
3.47918e+06
3.47978e+06
3.48033e+06
3.48084e+06
3.48132e+06
3.48177e+06
3.48219e+06
3.48259e+06
3.48297e+06
3.48333e+06
3.48367e+06
3.484e+06
3.48431e+06
3.4846e+06
3.49188e+06
3.50054e+06
3.49126e+06
3.50021e+06
3.4911e+06
3.48783e+06
3.47426e+06
3.4658e+06
3.4594e+06
3.4587e+06
3.45787e+06
3.45926e+06
3.45621e+06
3.45478e+06
3.44362e+06
3.44706e+06
3.45395e+06
3.4593e+06
3.46367e+06
3.46701e+06
3.4697e+06
3.47182e+06
3.47354e+06
3.47495e+06
3.47612e+06
3.47711e+06
3.47797e+06
3.47872e+06
3.47939e+06
3.47999e+06
3.48055e+06
3.48106e+06
3.48154e+06
3.48198e+06
3.4824e+06
3.4828e+06
3.48317e+06
3.48352e+06
3.48386e+06
3.48417e+06
3.48447e+06
3.48588e+06
3.49927e+06
3.48548e+06
3.49893e+06
3.48593e+06
3.48282e+06
3.47074e+06
3.46359e+06
3.45886e+06
3.45863e+06
3.45779e+06
3.45859e+06
3.45562e+06
3.45421e+06
3.44215e+06
3.44568e+06
3.45199e+06
3.45754e+06
3.46192e+06
3.46546e+06
3.46833e+06
3.47064e+06
3.47253e+06
3.47409e+06
3.47539e+06
3.47649e+06
3.47744e+06
3.47827e+06
3.479e+06
3.47966e+06
3.48026e+06
3.48081e+06
3.48131e+06
3.48178e+06
3.48222e+06
3.48263e+06
3.48301e+06
3.48338e+06
3.48372e+06
3.48404e+06
3.48434e+06
3.4827e+06
3.49245e+06
3.4819e+06
3.4928e+06
3.48168e+06
3.47669e+06
3.46721e+06
3.46072e+06
3.45719e+06
3.45692e+06
3.45619e+06
3.45687e+06
3.45472e+06
3.45293e+06
3.44085e+06
3.44433e+06
3.45038e+06
3.45606e+06
3.46045e+06
3.46414e+06
3.46713e+06
3.46959e+06
3.47162e+06
3.4733e+06
3.47472e+06
3.47592e+06
3.47695e+06
3.47785e+06
3.47864e+06
3.47934e+06
3.47998e+06
3.48056e+06
3.48109e+06
3.48158e+06
3.48204e+06
3.48246e+06
3.48286e+06
3.48323e+06
3.48358e+06
3.48391e+06
3.48422e+06
3.48078e+06
3.48143e+06
3.47878e+06
3.48279e+06
3.47668e+06
3.46983e+06
3.46329e+06
3.45729e+06
3.45464e+06
3.4542e+06
3.45365e+06
3.45448e+06
3.45318e+06
3.45112e+06
3.43958e+06
3.44301e+06
3.44902e+06
3.45479e+06
3.4592e+06
3.46301e+06
3.4661e+06
3.46868e+06
3.47081e+06
3.4726e+06
3.47411e+06
3.47539e+06
3.47649e+06
3.47745e+06
3.47829e+06
3.47904e+06
3.47971e+06
3.48032e+06
3.48088e+06
3.48139e+06
3.48186e+06
3.4823e+06
3.48271e+06
3.48309e+06
3.48345e+06
3.48379e+06
3.4841e+06
3.47772e+06
3.46906e+06
3.4748e+06
3.47171e+06
3.47089e+06
3.46307e+06
3.45919e+06
3.45376e+06
3.45181e+06
3.45128e+06
3.45096e+06
3.45189e+06
3.45121e+06
3.44905e+06
3.43838e+06
3.4418e+06
3.44785e+06
3.4537e+06
3.45815e+06
3.46204e+06
3.46521e+06
3.46787e+06
3.47009e+06
3.47197e+06
3.47355e+06
3.4749e+06
3.47607e+06
3.47708e+06
3.47797e+06
3.47876e+06
3.47946e+06
3.4801e+06
3.48067e+06
3.4812e+06
3.48169e+06
3.48214e+06
3.48256e+06
3.48296e+06
3.48332e+06
3.48366e+06
3.48398e+06
3.47348e+06
3.45831e+06
3.47011e+06
3.46191e+06
3.46504e+06
3.45711e+06
3.45528e+06
3.45055e+06
3.44916e+06
3.44868e+06
3.44852e+06
3.44948e+06
3.44915e+06
3.44705e+06
3.43726e+06
3.44075e+06
3.44687e+06
3.45277e+06
3.45726e+06
3.46122e+06
3.46444e+06
3.46718e+06
3.46947e+06
3.47141e+06
3.47305e+06
3.47446e+06
3.47568e+06
3.47674e+06
3.47766e+06
3.47849e+06
3.47922e+06
3.47988e+06
3.48048e+06
3.48103e+06
3.48153e+06
3.48199e+06
3.48242e+06
3.48282e+06
3.4832e+06
3.48355e+06
3.48387e+06
3.46856e+06
3.45028e+06
3.46521e+06
3.45438e+06
3.45977e+06
3.45233e+06
3.45185e+06
3.44789e+06
3.44693e+06
3.44657e+06
3.4465e+06
3.44742e+06
3.44723e+06
3.44527e+06
3.43631e+06
3.43991e+06
3.44606e+06
3.452e+06
3.45653e+06
3.46052e+06
3.46379e+06
3.46658e+06
3.46892e+06
3.47091e+06
3.47261e+06
3.47406e+06
3.47532e+06
3.47642e+06
3.47738e+06
3.47823e+06
3.47899e+06
3.47967e+06
3.48029e+06
3.48085e+06
3.48137e+06
3.48185e+06
3.48229e+06
3.4827e+06
3.48308e+06
3.48343e+06
3.48376e+06
3.46364e+06
3.44511e+06
3.46067e+06
3.4492e+06
3.45536e+06
3.44873e+06
3.449e+06
3.44579e+06
3.44514e+06
3.44494e+06
3.44489e+06
3.44573e+06
3.44556e+06
3.44376e+06
3.43553e+06
3.43926e+06
3.44542e+06
3.45138e+06
3.45592e+06
3.45994e+06
3.46324e+06
3.46606e+06
3.46844e+06
3.47048e+06
3.47221e+06
3.47371e+06
3.475e+06
3.47613e+06
3.47712e+06
3.478e+06
3.47878e+06
3.47948e+06
3.48012e+06
3.48069e+06
3.48122e+06
3.48171e+06
3.48216e+06
3.48257e+06
3.48296e+06
3.48332e+06
3.48366e+06
3.44374e+06
3.44367e+06
3.44359e+06
3.44433e+06
3.44413e+06
3.44248e+06
3.4349e+06
3.4388e+06
3.44494e+06
3.45089e+06
3.45544e+06
3.45947e+06
3.46278e+06
3.46563e+06
3.46804e+06
3.4701e+06
3.47187e+06
3.47339e+06
3.47472e+06
3.47587e+06
3.47689e+06
3.47778e+06
3.47858e+06
3.4793e+06
3.47995e+06
3.48054e+06
3.48108e+06
3.48157e+06
3.48203e+06
3.48245e+06
3.48285e+06
3.48321e+06
3.48356e+06
)
;
boundaryField
{
inlet
{
type calculated;
value nonuniform List<scalar> 0();
}
outlet
{
type calculated;
value nonuniform List<scalar> 0();
}
walls
{
type calculated;
value nonuniform List<scalar> 0();
}
side1
{
type cyclic;
}
side2
{
type cyclic;
}
procBoundary4to0
{
type processor;
value nonuniform List<scalar>
52
(
3.43848e+06
3.44458e+06
3.45052e+06
3.45506e+06
3.45909e+06
3.46241e+06
3.46528e+06
3.4677e+06
3.46978e+06
3.47157e+06
3.47312e+06
3.47446e+06
3.47564e+06
3.47667e+06
3.47759e+06
3.4784e+06
3.47913e+06
3.47979e+06
3.48039e+06
3.48094e+06
3.48145e+06
3.48191e+06
3.48234e+06
3.48274e+06
3.48311e+06
3.48346e+06
3.43848e+06
3.44458e+06
3.45052e+06
3.45506e+06
3.45909e+06
3.46241e+06
3.46528e+06
3.4677e+06
3.46978e+06
3.47157e+06
3.47312e+06
3.47446e+06
3.47564e+06
3.47667e+06
3.47759e+06
3.4784e+06
3.47913e+06
3.47979e+06
3.48039e+06
3.48094e+06
3.48145e+06
3.48191e+06
3.48234e+06
3.48274e+06
3.48311e+06
3.48346e+06
)
;
}
procBoundary4to1
{
type processor;
value nonuniform List<scalar>
32
(
3.4593e+06
3.44225e+06
3.45671e+06
3.44588e+06
3.45182e+06
3.44615e+06
3.44672e+06
3.44419e+06
3.44419e+06
3.4426e+06
3.44263e+06
3.44251e+06
3.44315e+06
3.44291e+06
3.44137e+06
3.4344e+06
3.4593e+06
3.44225e+06
3.45671e+06
3.44588e+06
3.45182e+06
3.44615e+06
3.44672e+06
3.44419e+06
3.44419e+06
3.4426e+06
3.44263e+06
3.44251e+06
3.44315e+06
3.44291e+06
3.44137e+06
3.4344e+06
)
;
}
procBoundary4to3
{
type processor;
value nonuniform List<scalar>
88
(
3.48991e+06
3.48969e+06
3.48948e+06
3.48927e+06
3.48927e+06
3.48923e+06
3.48903e+06
3.48903e+06
3.489e+06
3.48881e+06
3.48862e+06
3.48843e+06
3.48825e+06
3.48807e+06
3.48789e+06
3.48772e+06
3.48755e+06
3.48738e+06
3.48721e+06
3.48704e+06
3.48688e+06
3.48672e+06
3.48656e+06
3.48641e+06
3.48626e+06
3.48611e+06
3.48596e+06
3.48581e+06
3.48567e+06
3.48553e+06
3.48539e+06
3.48526e+06
3.48512e+06
3.485e+06
3.48487e+06
3.48475e+06
3.48462e+06
3.48451e+06
3.48439e+06
3.48428e+06
3.48417e+06
3.48407e+06
3.48397e+06
3.48387e+06
3.48991e+06
3.48969e+06
3.48948e+06
3.48927e+06
3.48927e+06
3.48923e+06
3.48903e+06
3.48903e+06
3.489e+06
3.48881e+06
3.48862e+06
3.48843e+06
3.48825e+06
3.48807e+06
3.48789e+06
3.48772e+06
3.48755e+06
3.48738e+06
3.48721e+06
3.48704e+06
3.48688e+06
3.48672e+06
3.48656e+06
3.48641e+06
3.48626e+06
3.48611e+06
3.48596e+06
3.48581e+06
3.48567e+06
3.48553e+06
3.48539e+06
3.48526e+06
3.48512e+06
3.485e+06
3.48487e+06
3.48475e+06
3.48462e+06
3.48451e+06
3.48439e+06
3.48428e+06
3.48417e+06
3.48407e+06
3.48397e+06
3.48387e+06
)
;
}
procBoundary4to5
{
type processor;
value nonuniform List<scalar>
86
(
3.48341e+06
3.4843e+06
3.48503e+06
3.48564e+06
3.48616e+06
3.4866e+06
3.48699e+06
3.48734e+06
3.48765e+06
3.48793e+06
3.48819e+06
3.48844e+06
3.48866e+06
3.48888e+06
3.48908e+06
3.48928e+06
3.48946e+06
3.48964e+06
3.48981e+06
3.48997e+06
3.47986e+06
3.4814e+06
3.4814e+06
3.47373e+06
3.45408e+06
3.47143e+06
3.45544e+06
3.46052e+06
3.45315e+06
3.45418e+06
3.45073e+06
3.44432e+06
3.43236e+06
3.46039e+06
3.46624e+06
3.4708e+06
3.47423e+06
3.47691e+06
3.47691e+06
3.43926e+06
3.43926e+06
3.45059e+06
3.45059e+06
3.48341e+06
3.4843e+06
3.48503e+06
3.48564e+06
3.48616e+06
3.4866e+06
3.48699e+06
3.48734e+06
3.48765e+06
3.48793e+06
3.48819e+06
3.48844e+06
3.48866e+06
3.48888e+06
3.48908e+06
3.48928e+06
3.48946e+06
3.48964e+06
3.48981e+06
3.48997e+06
3.47986e+06
3.4814e+06
3.4814e+06
3.47373e+06
3.45408e+06
3.47143e+06
3.45544e+06
3.46052e+06
3.45315e+06
3.45418e+06
3.45073e+06
3.44432e+06
3.43236e+06
3.46039e+06
3.46624e+06
3.4708e+06
3.47423e+06
3.47691e+06
3.47691e+06
3.43926e+06
3.43926e+06
3.45059e+06
3.45059e+06
)
;
}
}
// ************************************************************************* //
| |
5f1e10d8ebbc9572ca5650919a1c547ed75cb8ee | 966ee123a8312c53211451a330f80c269731f7b6 | /lnglat.cpp | 48040ee4c50e4d326d1cf8e2dd66c85b70c4543d | [] | no_license | tmazur/RaspberryPi-Wind-Powered-Robot-Navigation | f8a43eb24b757cd49aa1c34c175b380cbbe3095e | 88572795143fa9db84a22e2f8356cc335210834d | refs/heads/master | 2021-01-10T02:45:10.104638 | 2015-11-10T20:20:15 | 2015-11-10T20:20:15 | 45,938,225 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 355 | cpp | lnglat.cpp | #include "lnglat.h"
#include "map.h"
LngLat LngLatPos::toLngLat(Map *pMap) {
return pMap->posToLngLat(this);
}
LngLatPos LngLat::toPos(Map *pMap) {
return pMap->lngLatToPos(this);
}
LngLatPos LngLatPos::offset(int lngOff, int latOff, Map* map) {
return LngLatPos(lngPos+(lngOff*((int)map->invertLng)), latPos+(latOff*((int)map->invertLat)));
} |
1037c40d2686b2ab1fdd903c7d032b1d2a3a62de | d54b251df194e96744063c5111af00ff54bceaa9 | /Engine/Poo.cpp | d939870ad6f06f14a35b2ba1db5759b8818f8605 | [] | no_license | GarrettBrown-dev/LearningCPlusPlus | f5545ce2fb5ea3f03db90bf994b1ec229cc4ff49 | d5ed5798d5db8770c447f4fd0b077f22b1b9e238 | refs/heads/master | 2023-05-22T15:28:18.891111 | 2021-06-10T23:47:33 | 2021-06-10T23:47:33 | 366,874,830 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 790 | cpp | Poo.cpp | #include "Poo.h"
#include "Graphics.h"
void Poo::Update()
{
x += vx;
y += vy;
const int right = x + width;
if (x < 0)
{
x = 0;
vx = -vx;
}
else if (right >= Graphics::ScreenWidth)
{
x = (Graphics::ScreenWidth - 1) - width;
vx = -vx;
}
const int bottom = y + height;
if (y < 0)
{
y = 0;
vy = -vy;
}
else if (bottom >= Graphics::ScreenHeight)
{
y = (Graphics::ScreenHeight - 1) - height;
vy = -vy;
}
}
void Poo::ProcessConsumption(int dudex, int dudey, int dudewidth, int dudeheight)
{
const int duderight = dudex + dudewidth;
const int dudebottom = dudey + dudeheight;
const int pooright = x + width;
const int poobottom = y + height;
if (duderight >= x &&
dudex <= pooright &&
dudebottom >= y &&
dudey <= poobottom)
{
isEaten = true;
}
}
|
72ce0f5a4301ef3d6913e0026bb89bc97e7cb74e | a3d6556180e74af7b555f8d47d3fea55b94bcbda | /ash/system/holding_space/holding_space_item_views_section.cc | 93618ddd75242ae5489fb8673840ca3bd3b36f3c | [
"BSD-3-Clause"
] | permissive | chromium/chromium | aaa9eda10115b50b0616d2f1aed5ef35d1d779d6 | a401d6cf4f7bf0e2d2e964c512ebb923c3d8832c | refs/heads/main | 2023-08-24T00:35:12.585945 | 2023-08-23T22:01:11 | 2023-08-23T22:01:11 | 120,360,765 | 17,408 | 7,102 | BSD-3-Clause | 2023-09-10T23:44:27 | 2018-02-05T20:55:32 | null | UTF-8 | C++ | false | false | 19,764 | cc | holding_space_item_views_section.cc | // Copyright 2020 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "ash/system/holding_space/holding_space_item_views_section.h"
#include "ash/public/cpp/holding_space/holding_space_constants.h"
#include "ash/public/cpp/holding_space/holding_space_controller.h"
#include "ash/public/cpp/holding_space/holding_space_model.h"
#include "ash/system/holding_space/holding_space_item_view.h"
#include "ash/system/holding_space/holding_space_util.h"
#include "ash/system/holding_space/holding_space_view_delegate.h"
#include "base/auto_reset.h"
#include "base/containers/contains.h"
#include "base/functional/bind.h"
#include "base/functional/callback_helpers.h"
#include "base/ranges/algorithm.h"
#include "ui/compositor/callback_layer_animation_observer.h"
#include "ui/compositor/layer.h"
#include "ui/compositor/layer_animation_observer.h"
#include "ui/compositor/layer_animator.h"
#include "ui/views/accessibility/view_accessibility.h"
#include "ui/views/controls/focus_ring.h"
#include "ui/views/controls/scroll_view.h"
#include "ui/views/layout/box_layout.h"
namespace ash {
namespace {
using ScrollBarMode = views::ScrollView::ScrollBarMode;
// Animation.
constexpr base::TimeDelta kAnimationDuration = base::Milliseconds(167);
// Helpers ---------------------------------------------------------------------
// Initializes the layer for the specified `view` for animations.
void InitLayerForAnimations(views::View* view) {
view->SetPaintToLayer();
view->layer()->SetFillsBoundsOpaquely(false);
view->layer()->GetAnimator()->set_preemption_strategy(
ui::LayerAnimator::PreemptionStrategy::IMMEDIATELY_ANIMATE_TO_NEW_TARGET);
}
// Returns a callback which deletes the associated animation observer after
// running another `callback`.
using AnimationCompletedCallback =
base::OnceCallback<void(const ui::CallbackLayerAnimationObserver&)>;
base::RepeatingCallback<bool(const ui::CallbackLayerAnimationObserver&)>
DeleteObserverAfterRunning(AnimationCompletedCallback callback) {
return base::BindRepeating(
[](AnimationCompletedCallback callback,
const ui::CallbackLayerAnimationObserver& observer) {
// NOTE: It's safe to move `callback` since this code will only run
// once due to deletion of the associated `observer`. The `observer` is
// deleted by returning `true`.
std::move(callback).Run(observer);
return true;
},
base::Passed(std::move(callback)));
}
// HoldingSpaceScrollView ------------------------------------------------------
class HoldingSpaceScrollView : public views::ScrollView,
public views::ViewObserver {
public:
HoldingSpaceScrollView() {
// `HoldingSpaceItemView`s draw a focus ring outside of their view bounds.
// `HoldingSpaceScrollView` needs to paint to a layer to avoid clipping
// these focus rings.
SetPaintToLayer();
layer()->SetFillsBoundsOpaquely(false);
}
views::View* SetContents(std::unique_ptr<views::View> view) {
views::View* contents = views::ScrollView::SetContents(std::move(view));
view_observer_.Observe(contents);
return contents;
}
private:
// views::ScrollView:
void OnBoundsChanged(const gfx::Rect& previous_bounds) override {
// The focus ring for `HoldingSpaceItemView`s is painted just outside of
// their view bounds. The clip rect for this view should be expanded to
// avoid clipping of these focus rings. Note that a clip rect *does* need to
// be applied to prevent this view from painting its contents outside of its
// viewport.
const float kFocusInsets = kHoldingSpaceFocusInsets -
(views::FocusRing::kDefaultHaloThickness / 2.f);
gfx::Rect bounds = GetLocalBounds();
bounds.Inset(gfx::Insets(kFocusInsets));
layer()->SetClipRect(bounds);
}
// views::ViewObserver:
void OnViewPreferredSizeChanged(View* observed_view) override {
PreferredSizeChanged();
}
void OnViewVisibilityChanged(views::View* observed_view,
views::View* starting_view) override {
// Sync scroll view visibility with contents visibility.
if (GetVisible() != observed_view->GetVisible())
SetVisible(observed_view->GetVisible());
}
void OnViewIsDeleting(View* observed_view) override {
view_observer_.Reset();
}
base::ScopedObservation<views::View, views::ViewObserver> view_observer_{
this};
};
} // namespace
// HoldingSpaceItemViewsSection ------------------------------------------------
HoldingSpaceItemViewsSection::HoldingSpaceItemViewsSection(
HoldingSpaceViewDelegate* delegate,
HoldingSpaceSectionId section_id)
: delegate_(delegate), section_(GetHoldingSpaceSection(section_id)) {
DCHECK(section_);
}
HoldingSpaceItemViewsSection::~HoldingSpaceItemViewsSection() = default;
void HoldingSpaceItemViewsSection::Init() {
// Disable propagation of `PreferredSizeChanged()` while initializing this
// view to reduce the number of layout events bubbling up.
disable_preferred_size_changed_ = true;
SetVisible(false);
auto* layout = SetLayoutManager(std::make_unique<views::BoxLayout>(
views::BoxLayout::Orientation::kVertical, gfx::Insets(),
kHoldingSpaceSectionChildSpacing));
// Header.
header_ = AddChildView(CreateHeader());
InitLayerForAnimations(header_);
header_->layer()->SetOpacity(0.f);
header_->SetVisible(false);
// Container.
// NOTE: If `max_visible_item_count` is not present `container_` does not
// limit the number of holding space item views visible to the user at one
// time. In this case `container_` needs to be wrapped in a
// `views::ScrollView` to allow the user access to all contained item views.
if (section_->max_visible_item_count.has_value()) {
container_ = AddChildView(CreateContainer());
} else {
auto* scroll = AddChildView(std::make_unique<HoldingSpaceScrollView>());
scroll->SetBackgroundColor(absl::nullopt);
scroll->ClipHeightTo(0, INT_MAX);
scroll->SetDrawOverflowIndicator(false);
scroll->SetVerticalScrollBarMode(ScrollBarMode::kHiddenButEnabled);
layout->SetFlexForView(scroll, 1);
container_ = scroll->SetContents(CreateContainer());
scroll_view_ = scroll;
}
InitLayerForAnimations(container_);
container_->SetVisible(false);
// The `container_`'s children should be announced "List item X of Y", where
// X is the 1-based child index and Y is the count of children.
container_->GetViewAccessibility().OverrideRole(ax::mojom::Role::kList);
// Placeholder.
auto placeholder = CreatePlaceholder();
if (placeholder) {
placeholder_ = AddChildView(std::move(placeholder));
InitLayerForAnimations(placeholder_);
placeholder_->SetVisible(true);
header_->layer()->SetOpacity(1.f);
header_->SetVisible(true);
}
// Views.
HoldingSpaceModel* model = HoldingSpaceController::Get()->model();
if (model && !model->items().empty()) {
std::vector<const HoldingSpaceItem*> item_ptrs;
for (const auto& item : model->items())
item_ptrs.push_back(item.get());
// Sections are not animated during initialization as their respective
// bubbles will be animated in instead.
base::AutoReset<bool> scoped_disable_animations(&disable_animations_, true);
OnHoldingSpaceItemsAdded(item_ptrs);
}
// Re-enable propagation of `PreferredSizeChanged()` after initializing.
disable_preferred_size_changed_ = false;
PreferredSizeChanged();
}
void HoldingSpaceItemViewsSection::Reset() {
// The holding space item views `delegate_` will be destroyed before this view
// when asynchronously closing the holding space bubble. To prevent accessing
// `delegate_` after deletion, prevent animation callbacks from being run.
weak_factory_.InvalidateWeakPtrs();
// Propagate `Reset()` to children.
for (views::View* view : container_->children()) {
DCHECK(HoldingSpaceItemView::IsInstance(view));
HoldingSpaceItemView::Cast(view)->Reset();
}
}
std::vector<HoldingSpaceItemView*>
HoldingSpaceItemViewsSection::GetHoldingSpaceItemViews() {
if (!IsExpanded())
return {};
std::vector<HoldingSpaceItemView*> views;
for (views::View* view : container_->children()) {
DCHECK(HoldingSpaceItemView::IsInstance(view));
views.push_back(HoldingSpaceItemView::Cast(view));
}
return views;
}
void HoldingSpaceItemViewsSection::ChildPreferredSizeChanged(
views::View* child) {
PreferredSizeChanged();
}
void HoldingSpaceItemViewsSection::ChildVisibilityChanged(views::View* child) {
// This section should be visible iff it has visible children.
bool visible = false;
for (const views::View* c : children()) {
if (c->GetVisible()) {
visible = true;
break;
}
}
if (visible != GetVisible())
SetVisible(visible);
PreferredSizeChanged();
}
void HoldingSpaceItemViewsSection::PreferredSizeChanged() {
if (!disable_preferred_size_changed_)
views::View::PreferredSizeChanged();
}
void HoldingSpaceItemViewsSection::ViewHierarchyChanged(
const views::ViewHierarchyChangedDetails& details) {
if (details.parent != container_.get()) {
return;
}
// Update visibility when becoming empty or non-empty. Note that in the case
// of a view being added, `ViewHierarchyChanged()` is called *after* the view
// has been parented but in the case of a view being removed, it is called
// *before* the view is un-parented.
if (container_->children().size() != 1u)
return;
{
// Disable propagation of `PreferredSizeChanged()` while modifying child
// view visibility to reduce the number of layout events bubbling up.
base::AutoReset<bool> reset(&disable_preferred_size_changed_, true);
header_->SetVisible(details.is_add || placeholder_);
container_->SetVisible(details.is_add && IsExpanded());
if (placeholder_)
placeholder_->SetVisible(!details.is_add && IsExpanded());
}
PreferredSizeChanged();
}
void HoldingSpaceItemViewsSection::OnHoldingSpaceItemsAdded(
const std::vector<const HoldingSpaceItem*>& items) {
const bool needs_update =
base::ranges::any_of(items, [this](const HoldingSpaceItem* item) {
return item->IsInitialized() &&
base::Contains(section_->supported_types, item->type());
});
if (needs_update)
MaybeAnimateOut();
}
void HoldingSpaceItemViewsSection::OnHoldingSpaceItemsRemoved(
const std::vector<const HoldingSpaceItem*>& items) {
const bool needs_update =
base::ranges::any_of(items, [this](const HoldingSpaceItem* item) {
return base::Contains(views_by_item_id_, item->id());
});
if (needs_update)
MaybeAnimateOut();
}
void HoldingSpaceItemViewsSection::OnHoldingSpaceItemInitialized(
const HoldingSpaceItem* item) {
if (base::Contains(section_->supported_types, item->type()))
MaybeAnimateOut();
}
void HoldingSpaceItemViewsSection::RemoveAllHoldingSpaceItemViews() {
// Holding space item views should only be removed when the `container_` is
// not visible to the user.
DCHECK(!IsDrawn() || !container_->IsDrawn() ||
container_->layer()->opacity() == 0.f);
container_->RemoveAllChildViews();
views_by_item_id_.clear();
}
std::unique_ptr<views::View> HoldingSpaceItemViewsSection::CreatePlaceholder() {
return nullptr;
}
void HoldingSpaceItemViewsSection::DestroyPlaceholder() {
if (!placeholder_)
return;
RemoveChildViewT(placeholder_.get());
placeholder_ = nullptr;
// In the absence of `placeholder_`, the `header_` should only be visible
// when `container_` is non-empty.
if (header_->GetVisible() && container_->children().empty())
header_->SetVisible(false);
}
bool HoldingSpaceItemViewsSection::IsExpanded() {
return true;
}
void HoldingSpaceItemViewsSection::OnExpandedChanged() {
MaybeAnimateOut();
}
void HoldingSpaceItemViewsSection::MaybeAnimateIn() {
if (animation_state_ & AnimationState::kAnimatingIn)
return;
animation_state_ |= AnimationState::kAnimatingIn;
// NOTE: `animate_in_observer` is deleted after `OnAnimateInCompleted()`.
ui::CallbackLayerAnimationObserver* animate_in_observer =
new ui::CallbackLayerAnimationObserver(DeleteObserverAfterRunning(
base::BindOnce(&HoldingSpaceItemViewsSection::OnAnimateInCompleted,
weak_factory_.GetWeakPtr())));
AnimateIn(animate_in_observer);
animate_in_observer->SetActive();
}
void HoldingSpaceItemViewsSection::MaybeAnimateOut() {
if (animation_state_ & AnimationState::kAnimatingOut)
return;
animation_state_ |= AnimationState::kAnimatingOut;
// Don't allow event processing while animating out. The views being animated
// out may be associated with holding space items that no longer exist and
// so should not be acted upon by the user during this time.
SetCanProcessEventsWithinSubtree(false);
// Hide the vertical scroll bar when swapping out section contents to prevent
// it from showing as views are being added/removed and while the holding
// space bubble is animating bounds.
if (scroll_view_)
scroll_view_->SetVerticalScrollBarMode(ScrollBarMode::kHiddenButEnabled);
// NOTE: `animate_out_observer` is deleted after `OnAnimateOutCompleted()`.
ui::CallbackLayerAnimationObserver* animate_out_observer =
new ui::CallbackLayerAnimationObserver(DeleteObserverAfterRunning(
base::BindOnce(&HoldingSpaceItemViewsSection::OnAnimateOutCompleted,
weak_factory_.GetWeakPtr())));
AnimateOut(animate_out_observer);
animate_out_observer->SetActive();
}
void HoldingSpaceItemViewsSection::AnimateIn(
ui::LayerAnimationObserver* observer) {
const base::TimeDelta animation_duration =
disable_animations_ ? base::TimeDelta() : kAnimationDuration;
// Delay animations slightly to allow time for bubble layout animations to
// complete which animate size changes for this view when needed.
const base::TimeDelta animation_delay =
disable_animations_ ? base::TimeDelta() : kAnimationDuration;
// If the `header_` is not opaque, this section was not previously visible
// to the user so the `header_` needs to be animated in alongside any content.
const bool animate_in_header = header_->layer()->GetTargetOpacity() != 1.f;
if (animate_in_header) {
holding_space_util::AnimateIn(header_, animation_duration, animation_delay,
observer);
}
if (views_by_item_id_.empty() && placeholder_) {
holding_space_util::AnimateIn(placeholder_, animation_duration,
animation_delay, observer);
return;
}
holding_space_util::AnimateIn(container_, animation_duration, animation_delay,
observer);
}
void HoldingSpaceItemViewsSection::AnimateOut(
ui::LayerAnimationObserver* observer) {
// If this view is not drawn, animating will only cause latency to the user.
const bool disable_animations = disable_animations_ || !IsDrawn();
const base::TimeDelta animation_duration =
disable_animations ? base::TimeDelta() : kAnimationDuration;
// If this section does not have a `placeholder_` and the model does not
// contain any associated and initialized items, then this section is becoming
// invisible to the user and the `header_` needs to be animated out alongside
// any content.
bool animate_out_header = !placeholder_;
if (animate_out_header) {
HoldingSpaceModel* model = HoldingSpaceController::Get()->model();
if (model) {
animate_out_header = base::ranges::none_of(
section_->supported_types,
[&model](HoldingSpaceItem::Type supported_type) {
return model->ContainsInitializedItemOfType(supported_type);
});
}
}
if (animate_out_header)
holding_space_util::AnimateOut(header_, animation_duration, observer);
if (placeholder_ && placeholder_->GetVisible()) {
DCHECK(views_by_item_id_.empty());
holding_space_util::AnimateOut(placeholder_, animation_duration, observer);
return;
}
holding_space_util::AnimateOut(container_, animation_duration, observer);
}
void HoldingSpaceItemViewsSection::OnAnimateInCompleted(
const ui::CallbackLayerAnimationObserver& observer) {
DCHECK(animation_state_ & AnimationState::kAnimatingIn);
animation_state_ &= ~AnimationState::kAnimatingIn;
if (observer.aborted_count())
return;
DCHECK_EQ(animation_state_, AnimationState::kNotAnimating);
// Restore event processing that was disabled while animating out. The views
// that have been animated in should all be associated with holding space
// items that exist in the model.
SetCanProcessEventsWithinSubtree(true);
// Once contents have animated in the holding space bubble should have reached
// its target bounds and the vertical scroll bar can be re-enabled.
if (scroll_view_)
scroll_view_->SetVerticalScrollBarMode(ScrollBarMode::kEnabled);
}
void HoldingSpaceItemViewsSection::OnAnimateOutCompleted(
const ui::CallbackLayerAnimationObserver& observer) {
DCHECK(animation_state_ & AnimationState::kAnimatingOut);
animation_state_ &= ~AnimationState::kAnimatingOut;
if (observer.aborted_count())
return;
DCHECK_EQ(animation_state_, AnimationState::kNotAnimating);
// All holding space item views are going to be removed after which views will
// be re-added for those items which still exist. A `ScopedSelectionRestore`
// will serve to persist the current selection during this modification.
HoldingSpaceViewDelegate::ScopedSelectionRestore scoped_selection_restore(
delegate_);
// Disable propagation of `PreferredSizeChanged()` while performing batch
// child additions/removals to reduce the number of layout events bubbling up.
disable_preferred_size_changed_ = true;
base::ScopedClosureRunner scoped_preferred_size_changed(base::BindOnce(
[](HoldingSpaceItemViewsSection* section) {
section->disable_preferred_size_changed_ = false;
section->PreferredSizeChanged();
},
base::Unretained(this)));
// Removing the item views will cause the `header_` to go invisible, clearing
// its focus. Make sure that if the `header_` was focused and is meant to stay
// visible after this animation, focus is restored after the `header_` becomes
// visible again.
bool header_focused = header_->HasFocus();
RemoveAllHoldingSpaceItemViews();
DCHECK(views_by_item_id_.empty());
HoldingSpaceModel* model = HoldingSpaceController::Get()->model();
if (!model)
return;
const absl::optional<size_t>& max_visible_item_count =
section_->max_visible_item_count;
for (const auto& item : model->items()) {
if (item->IsInitialized() &&
base::Contains(section_->supported_types, item->type())) {
DCHECK(!base::Contains(views_by_item_id_, item->id()));
// Remove the last holding space item view if already at max capacity.
if (max_visible_item_count == container_->children().size()) {
auto view = container_->RemoveChildViewT(container_->children().back());
views_by_item_id_.erase(
HoldingSpaceItemView::Cast(view.get())->item()->id());
}
// Add holding space item view to the front in order to sort by recency.
views_by_item_id_[item->id()] =
container_->AddChildViewAt(CreateView(item.get()), 0);
}
}
if (header_->GetVisible() && header_focused)
header_->RequestFocus();
// Only animate this section in if it has content to show.
if (placeholder_ || !container_->children().empty())
MaybeAnimateIn();
}
} // namespace ash
|
ce3093b8d24315c37b6e4bc4e52eb77c216e3212 | be75a8463f31bb6c4298cef85e53202004083574 | /test/core/nga_t_comparisons.hpp | 7aa01f37c6fe5fed2c6c8fed8d0e49c57aac7a93 | [
"BSL-1.0",
"LicenseRef-scancode-unknown-license-reference"
] | permissive | erythronelumbo/tesela | ce9700000bb6763a02f2742dd22c1faf4f13ec26 | 3b86a7b9501c7136d5168c7e314740fa7f72f7a7 | refs/heads/master | 2022-11-02T13:21:14.364394 | 2019-06-30T22:34:17 | 2019-06-30T22:34:17 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,698 | hpp | nga_t_comparisons.hpp | // Copyright (c) 2019 Álvaro Ceballos
// Distributed under the Boost Software License, Version 1.0.
// See accompanying file LICENSE or copy at http://www.boost.org/LICENSE_1_0.txt
#ifndef CYNODELIC_TESELA_TEST_CORE_NGA_T_COMPARISONS_HPP
#define CYNODELIC_TESELA_TEST_CORE_NGA_T_COMPARISONS_HPP
CYNODELIC_TESTER_TEST_CASE(nga_t_equals);
CYNODELIC_TESTER_SECTION(nga_t_equals,main)
{
tsl::nga_t value_1(177.0/255.0,155.0/255.0);
tsl::nga_t value_2(177.0/255.0,155.0/255.0);
tsl::nga_t value_3(222.0/255.0, 1.0/255.0);
CYNODELIC_TESTER_MESSAGE
<< "Values for value_1" << tst::newline
<< "value_1.gray = " << value_1.gray << " (gray)" << tst::newline
<< "value_1.alpha = " << value_1.alpha << " (alpha)";
CYNODELIC_TESTER_MESSAGE
<< "Values for value_2" << tst::newline
<< "value_2.gray = " << value_2.gray << " (gray)" << tst::newline
<< "value_2.alpha = " << value_2.alpha << " (alpha)";
CYNODELIC_TESTER_MESSAGE
<< "Values for value_3" << tst::newline
<< "value_3.gray = " << value_3.gray << " (gray)" << tst::newline
<< "value_3.alpha = " << value_3.alpha << " (alpha)";
CYNODELIC_TESTER_CHECK_EQUALS(value_1.gray,value_2.gray);
CYNODELIC_TESTER_CHECK_EQUALS(value_1.alpha,value_2.alpha);
CYNODELIC_TESTER_CHECK_TRUE(value_1 == value_2);
CYNODELIC_TESTER_CHECK_NOT_EQUALS(value_1.gray,value_3.gray);
CYNODELIC_TESTER_CHECK_NOT_EQUALS(value_1.alpha,value_3.alpha);
CYNODELIC_TESTER_CHECK_FALSE(value_1 == value_3);
}
CYNODELIC_TESTER_TEST_CASE(nga_t_not_equals);
CYNODELIC_TESTER_SECTION(nga_t_not_equals,main)
{
tsl::nga_t value_1( 56.0/255.0, 99.0/255.0);
tsl::nga_t value_2(140.0/255.0,191.0/255.0);
tsl::nga_t value_3( 56.0/255.0, 99.0/255.0);
CYNODELIC_TESTER_MESSAGE
<< "Values for value_1" << tst::newline
<< "value_1.gray = " << value_1.gray << " (gray)" << tst::newline
<< "value_1.alpha = " << value_1.alpha << " (alpha)";
CYNODELIC_TESTER_MESSAGE
<< "Values for value_2" << tst::newline
<< "value_2.gray = " << value_2.gray << " (gray)" << tst::newline
<< "value_2.alpha = " << value_2.alpha << " (alpha)";
CYNODELIC_TESTER_MESSAGE
<< "Values for value_3" << tst::newline
<< "value_3.gray = " << value_3.gray << " (gray)" << tst::newline
<< "value_3.alpha = " << value_3.alpha << " (alpha)";
CYNODELIC_TESTER_CHECK_NOT_EQUALS(value_1.gray,value_2.gray);
CYNODELIC_TESTER_CHECK_NOT_EQUALS(value_1.alpha,value_2.alpha);
CYNODELIC_TESTER_CHECK_TRUE(value_1 != value_2);
CYNODELIC_TESTER_CHECK_EQUALS(value_1.gray,value_3.gray);
CYNODELIC_TESTER_CHECK_EQUALS(value_1.alpha,value_3.alpha);
CYNODELIC_TESTER_CHECK_FALSE(value_1 != value_3);
}
#endif // CYNODELIC_TESELA_TEST_CORE_NGA_T_COMPARISONS_HPP
|
e78931a23be6e17fd931cb0b8accba8ade26678a | 9f98fd9a8dbf9ab5cf477aa3bd0fdece2779b3bb | /BankAccount.cpp | 3a9946e5d0b8b2df6ff7d6bf89ad5d71e342654c | [] | no_license | abhinawa/Virtual-Stock-Portfolio-Bank-Account-Management-System | 4fb869e6cfe32d9dafbd9067b7ba6f98cf866acf | 25dfad1523f4d812b89f51883a7640bd013d513a | refs/heads/master | 2021-06-13T19:30:46.692381 | 2017-02-22T19:51:12 | 2017-02-22T19:51:12 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 4,767 | cpp | BankAccount.cpp | #include<iostream>
#include<iomanip>
#include<time.h>
#include<fstream>
#include<string>
#include<stdlib.h>
using namespace std;
#include "BankAccount.h"
//constructor
BankAccount::BankAccount()
{
setCashBalance();
deposit_tempval = 0;
withdraw_tempval = 0;
}
// destructor
BankAccount::~BankAccount()
{
cout << "\nAccount deleted!";
}
//function for viewing balance
void BankAccount::view_Balance()
{
setCashBalance();
//display the current cash balance
cout << "\nCurrent Balance is : " << "$" <<getCashBalance() << endl;
}
//function for depositing cash
void BankAccount::deposit_Cash(double depAmount)
{
deposit_tempval = depAmount;
//setCashBalance();
CashBalance = getCashBalance();
CashBalance = CashBalance + deposit_tempval;
cout << "\nAmount of $" << deposit_tempval << " is Deposited to the Account\n";
//generating the current date and time for deposit transaction
time_t rawtime;
struct tm timeinfo;
char buffer[80];
time(&rawtime);
localtime_s(&timeinfo, &rawtime);
strftime(buffer, 80, "%d-%m-%Y %I:%M:%S", &timeinfo);
std::string str(buffer);
// writing the deposit transaction to bank_transaction_history.txt file
myfile1.open("bank_transaction_history.txt", ios::app);
myfile1 << endl << left << setw(30) << "Deposit";
myfile1 << left << setw(1) << "$";
myfile1 << left << setw(15) << deposit_tempval;
myfile1 << right << setw(15) << str;
myfile1 << right << setw(5) << "$" << CashBalance;
myfile1.close();
// writing to a balance file
write_in_balancefile.open("balancefile.txt", std::ios_base::out);
write_in_balancefile << CashBalance;
write_in_balancefile.close();
//setCashBalance();
}
//withdrawing cash
void BankAccount::withdraw_cash(double witAmount)
{
withdraw_tempval = witAmount;
setCashBalance();
CashBalance = getCashBalance();
//to check if the cash balance is greater than 0
if (CashBalance > 0)
{
//check if withdrwal amount is greater than cash balance
if (withdraw_tempval > CashBalance)
{
cout << "\nBalance is Not Sufficient! Please Check the Balance before Withdrawing!\n"; //withdrawal operation cancelled
return;
}
//withdrawal operation
else
{
CashBalance = CashBalance - withdraw_tempval;
cout << "\nAmount of $" << withdraw_tempval << " is withdrawn from the Account\n";
//generating the current date and time for withdrawal transaction
time_t rawtime;
struct tm timeinfo;
char buffer[80];
time(&rawtime);
localtime_s(&timeinfo, &rawtime);
strftime(buffer, 80, "%d-%m-%Y %I:%M:%S", &timeinfo);
std::string str(buffer);
// writing withdrawal transaction to bank_transaction_history.txt file
myfile1.open("bank_transaction_history.txt", ios::app);
myfile1 << endl << left << setw(30) << "Withdrawal";
myfile1 << left << setw(1) << "$";
myfile1 << left << setw(15) << withdraw_tempval;
myfile1 << right << setw(15) << str;
myfile1 << right << setw(5) << "$" << CashBalance;
myfile1.close();
// writing the same to the balancefile.txt
write_in_balancefile.open("balancefile.txt", std::ios_base::out);
write_in_balancefile << CashBalance;
write_in_balancefile.close();
return;
}
}
else
{
cout << "\nError : The Account Balance is 0$, can't withdraw Anything now!\n";
}
}
//printing history
void BankAccount::printtransaction()
{
myReadFile.open("bank_transaction_history.txt", ios::app);
cout << endl << left << setw(30) << "Activity";
cout << left << setw(16) << "Amount";
cout << left << setw(23) << "Date & Time";
cout << right << setw(5) << "Balance" << endl;
if (myReadFile.is_open())
{
while (!myReadFile.eof())
{
while (getline(myReadFile, line1))
cout << line1 << "\n";
}
}
myReadFile.close();
}
double BankAccount::getCashBalance()
{
return CashBalance;
}
void BankAccount::setCashBalance()
{
streampos length;
ifstream filestr;
filestr.open("balancefile.txt", ios::binary); // open your file
if (filestr.is_open())
{
filestr.seekg(0, ios::end); // place the cursor at the end of the file
length = filestr.tellg(); // find the position of the cursor
filestr.close(); // close your file
}
if (!length) // if length is not found, create the file and put 10,000 cash balance into it.
{
double putbalance = 10000.00;
ofstream outputfile;
outputfile.open("balancefile.txt", ios_base::out);
outputfile << putbalance;
outputfile.close();
// setting the balance of 10,000
ifstream readbal("balancefile.txt", ios_base::in);
readbal >> CashBalance;
readbal.close();
}
else
{
// else setting balance from existing cash balance file.
ifstream readbalance("balancefile.txt", ios_base::in);
readbalance >> CashBalance;
readbalance.close();
}
} |
2ed65bc6261d180e1e94d92f63a23cfc4c2e8a64 | ba37f5ccb316cbacfe24aa68d3e680947370ffbd | /src/fskit/GridDynFederatedSimulator.cpp | 2c2fa42b504fee58307b9997ecc133cca8bf78d1 | [
"BSD-3-Clause"
] | permissive | nightlark/GridDyn | e6fe9ab0251b10d86f269b8951ab1e1dd8b56508 | bfcef303c85c5b66bc26e5d16e4df0a07977e594 | refs/heads/helics_updates | 2021-01-24T06:12:32.115450 | 2019-07-19T18:12:34 | 2019-07-19T18:12:34 | 202,812,824 | 0 | 0 | NOASSERTION | 2019-08-17T00:22:00 | 2019-08-16T23:43:07 | C++ | UTF-8 | C++ | false | false | 3,888 | cpp | GridDynFederatedSimulator.cpp | /*
* -----------------------------------------------------------------
* LLNS Copyright Start
* Copyright (c) 2014, Lawrence Livermore National Security
* This work was performed under the auspices of the U.S. Department
* of Energy by Lawrence Livermore National Laboratory in part under
* Contract W-7405-Eng-48 and in part under Contract DE-AC52-07NA27344.
* Produced at the Lawrence Livermore National Laboratory.
* All rights reserved.
* For details, see the LICENSE file.
* LLNS Copyright End
* -----------------------------------------------------------------
*/
#include "GridDynFederatedSimulator.h"
#include <limits>
GriddynFederatedSimulator::GriddynFederatedSimulator (std::string name, int argc, char *argv[],
std::shared_ptr<fskit::GrantedTimeWindowScheduler> scheduler)
: VariableStepSizeFederatedSimulator (fskit::FederatedSimulatorId (name)),
DiscreteEventFederatedSimulator (fskit::FederatedSimulatorId (name)),
FederatedSimulator (fskit::FederatedSimulatorId (name)),
m_name (name),
m_currentFskitTime (0),
m_currentGriddynTime (0)
{
m_griddyn = std::make_shared<griddyn::fskitRunner> ();
m_griddyn->Initialize (argc, argv, scheduler);
}
bool GriddynFederatedSimulator::Initialize (void)
{
m_griddyn->simInitialize ();
return true;
}
void GriddynFederatedSimulator::StartCommunication (void)
{
}
bool GriddynFederatedSimulator::TestCommunication (void)
{
return true;
}
fskit::Time GriddynFederatedSimulator::CalculateLocalGrantedTime (void)
{
const double kBigNum (1e49);
griddyn::coreTime griddynNextEventTime = m_griddyn->getNextEvent ();
//assert(griddynNextEventTime > m_currentGriddynTime);
// Magic number that indicates there are no events on the event queue.
if (griddynNextEventTime.getBaseTimeCode () == kBigNum )
{
return fskit::Time::getMax ();
}
// This could be event time + lookahead.
return fskit::Time (griddynNextEventTime.getBaseTimeCode ());
}
bool GriddynFederatedSimulator::Finalize (void)
{
m_griddyn->Finalize ();
return true;
}
// Method used by Variable Step Size simulator
std::tuple<fskit::Time,bool> GriddynFederatedSimulator::TimeAdvancement (const fskit::Time& time)
{
griddyn::coreTime gdTime;
// Convert fskit time to coreTime used by Griddyn
gdTime.setBaseTimeCode (time.GetRaw ());
bool stopSimulation = false;
// SGS this is not correct!! How to correctly handled lower resolution of Griddyn time?
// Advance Griddyn if needed.
if ( gdTime >= m_currentGriddynTime )
{
try
{
auto gdRetTime = m_griddyn->Step (gdTime);
//assert(gdRetTime <= gdTime);
m_currentGriddynTime = gdRetTime;
m_currentFskitTime = fskit::Time (gdRetTime.getBaseTimeCode ());
// Time should not advance beyond granted time.
assert(m_currentFskitTime <= time);
{
// Next event time should now be larger than granted time
griddyn::coreTime griddynNextEventTime = m_griddyn->getNextEvent ();
//assert(griddynNextEventTime > m_currentGriddynTime);
}
}
catch (...)
{
// std::cout << "Griddyn stopping due to runtime_error" << std::endl;
stopSimulation = true;
}
}
return std::make_tuple (m_currentFskitTime, stopSimulation);
}
// Method used by Discrete Event simulator
void GriddynFederatedSimulator::StartTimeAdvancement (const fskit::Time& time)
{
m_grantedTime = time;
}
// Method used by Discrete Event simulator
std::tuple<bool,bool> GriddynFederatedSimulator::TestTimeAdvancement (void)
{
// SGS fixme, should this be a while loop to ensure granted time is reached?
std::tuple<fskit::Time,bool> result = TimeAdvancement(m_grantedTime);
return std::make_tuple (true, std::get<1>(result));
}
|
c5d4559f0ac321545b8bfc23a7246eee2e2bba20 | 94e8e0d10dd993cb08785d1bab6aafc1055f509d | /C++STL/C++STL/samples/stable_partition.h | e3defde8be7dd26a7b16d09ab743008b9c8c1b5f | [] | no_license | albertomila/continous-formation | 1d416170d2ad85ad1e2ea5eef0f2436cd299c716 | e3a57f0fc22dc16b1e9cce1ed100795ca664359d | refs/heads/master | 2020-06-14T00:46:23.147271 | 2019-07-08T18:38:54 | 2019-07-08T18:38:54 | 194,838,856 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 688 | h | stable_partition.h | #pragma once
#include "stdafx.h"
using namespace std;
struct StablePartition_Predicate_IsOdd
{
bool operator()(int value)
{
return ((value % 2) == 1);
}
};
BEGIN_TEST(StablePartition)
vector<int> myvector;
vector<int>::iterator it, bound;
// set some values:
for (int i=1; i<10; ++i) myvector.push_back(i); // 1 2 3 4 5 6 7 8 9
bound = stable_partition (myvector.begin(), myvector.end(), StablePartition_Predicate_IsOdd());
// print out content:
cout << "odd members:";
for (it=myvector.begin(); it!=bound; ++it)
cout << " " << *it;
cout << "\neven members:";
for (it=bound; it!=myvector.end(); ++it)
cout << " " << *it;
cout << endl;
END_TEST() |
3ea58f0a1131b2d119841e86d4f517ad56322c4a | a37fe8de18e82d2fbc04da4c409897de34c2d0b2 | /KOE/DG/TABOUT.H | 74e410ff151ee4b94ea3bb4a8cdbee74539e1ce9 | [] | no_license | jskripsky/ancient | e469354deef1ed2fee652f8686a033ee5d4bb970 | 052d342d5ca701c9b74b2505bd745d7849f66dcd | refs/heads/master | 2016-09-05T14:26:45.625760 | 2014-04-15T17:34:38 | 2014-04-15T17:36:17 | 18,808,800 | 3 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,173 | h | TABOUT.H | /*****************************************************************************
** **
** **
** DOS Dialog Generator **
** ==================== **
** **
** Version 1.00 **
** **
** **
** Copyright (C) 1993 Skribby Soft **
** **
** ======================================================================== **
** **
** TAboutDlg Class **
** --------------- **
** **
** Declared classes: **
** - Class TAboutDlg **
** **
** **
** **
** Module Name: TABOUT.H **
** **
*****************************************************************************/
#ifndef TABOUT
#define TABOUT
#define Uses_TDialog
#include <TV.H>
class TAboutDlg : public TDialog
{
public:
TAboutDlg();
virtual void setState( ushort aState, Boolean enable );
virtual void handleEvent( TEvent& );
};
#endif |
cea7be957d1392698973814791f9d5aac096e923 | 2502943d23a18cce4b2cb169288ca08e2243ca4f | /HDOJcode/1555 2011-12-07 14 34 55.cpp | faacd5a254e27a78e6831c8712d7f02cc2cee3c5 | [] | no_license | townboy/acm-algorithm | 27745db88cf8e3f84836f98a6c2dfa4a76ee4227 | 4999e15efcd7574570065088b085db4a7c185a66 | refs/heads/master | 2021-01-01T16:20:50.099324 | 2014-11-29T06:13:49 | 2014-11-29T06:13:49 | 18,025,712 | 0 | 1 | null | null | null | null | UTF-8 | C++ | false | false | 630 | cpp | 1555 2011-12-07 14 34 55.cpp | ******************************
Author : townboy
Submit time : 2011-12-07 14:34:55
Judge Status : Accepted
HDOJ Runid : 5127198
Problem id : 1555
Exe.time : 0MS
Exe.memory : 176K
https://github.com/townboy
******************************
#include<stdio.h>
int k,t;
void gui(int m,int yu)
{
t++;
m--;
yu++;
if(yu>=k)
{
yu=yu%k;
m++;
}
if(m>0)
{
gui(m,yu);
}
}
int main(void)
{
int m;
while(scanf("%d%d",&m,&k),!((0==m)&&(0==k)))
{
t=0;
gui(m,0);
printf("%d\n",t);
}
} |
cc02703dd2d1379cfb987ccf050e95470996f0ac | 78f4334bc3de2d6e31ae17d406032fe503293ac3 | /include/ieee802.3.hpp | 67bc1c9e69bc2201c6d46f41dbfdbade97a8730b | [
"ISC"
] | permissive | eugenehp/avdecc-pdu | 566e508d4cb921c601ca3b5dd4d0e03815b209f1 | cda4e639b64d6dc115d526d9c76a6a60402b2efd | refs/heads/master | 2021-01-15T17:45:45.649868 | 2012-06-08T19:12:37 | 2012-06-08T19:12:37 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 3,212 | hpp | ieee802.3.hpp | #pragma once
#ifndef IEEE802_3_HPP
#define IEEE802_3_HPP
#include "ieee.hpp"
namespace IEEE802_3
{
using namespace IEEE;
typedef octet_block<6,'-'> mac48;
typedef octet_block<8,'-'> mac64;
struct vlan_tci
{
field<octet,0,doublet,0,2> pcp;
field<bool,0,doublet,3> cfi;
field<doublet,0,doublet,4,15> vid;
vlan_tci( doublet v=0 )
{
unflatten(v);
}
operator doublet() const
{
return flatten();
}
doublet operator = ( doublet v )
{
unflatten(v);
return v;
}
void unflatten( doublet v )
{
pcp << v;
cfi << v;
vid << v;
}
doublet flatten() const
{
doublet v=0;
pcp >> v;
cfi >> v;
vid >> v;
return v;
}
};
inline std::ostream & operator << (std::ostream &s, vlan_tci const &v )
{
ostream_state_save flags(s);
s << labelfmt("pcp") << hexfmt(v.pcp) << std::endl;
s << labelfmt("cfi") << boolfmt(v.cfi) << std::endl;
s << labelfmt("vid") << hexfmt(v.vid);
return s;
}
struct ethernet_header
{
typedef ethernet_header pdu_type;
typedef field<mac48,0> destination_address_field;
typedef field<mac48,6> source_address_field;
typedef field<vlan_tci,14,doublet> vlan_tci_field;
typedef field<doublet,12> untagged_ethertype_field;
typedef field<doublet,16> tagged_ethertype_field;
destination_address_field destination_address;
source_address_field source_address;
bool tagged;
vlan_tci_field vlan;
doublet ethertype;
size_t offset_to_payload;
template <typename PduBuffer>
void store( PduBuffer &buf ) const
{
destination_address >> buf;
source_address >> buf;
if( tagged )
{
untagged_ethertype_field tag=0x8100;
tag >> buf;
vlan >> buf;
tagged_ethertype_field e=ethertype;
e >> buf;
}
else
{
untagged_ethertype_field e=ethertype;
e >> buf;
}
}
template <typename PduBuffer>
void retrieve( PduBuffer &buf )
{
destination_address << buf;
source_address << buf;
untagged_ethertype_field e;
e << buf;
if( e==0x8100)
{
tagged = true;
vlan << buf;
tagged_ethertype_field te;
te << buf;
ethertype = te;
offset_to_payload = 18;
}
else
{
tagged = false;
ethertype = e;
offset_to_payload = 14;
}
}
size_t get_total_offset_to_payload() const
{
return offset_to_payload;
}
};
inline std::ostream & operator << (std::ostream &s, ethernet_header const &v )
{
ostream_state_save flags(s);
s << labelfmt("DA") << v.destination_address << std::endl;
s << labelfmt("SA") << v.source_address << std::endl;
if( v.tagged )
{
s << titlefmt("VLAN Tag") << v.vlan << std::endl;
}
s << labelfmt("EtherType") << hexfmt(v.ethertype) << std::endl;
s << labelfmt("PayloadOffset") << hexfmt(v.offset_to_payload) << std::endl;
return s;
}
}
#endif // IEEE802_3_HPP
|
faef2a9a30fd28f8bb5245bd780351002d694afa | 5ac069e45cafd2ae9e0056bccf0537fa55f0f066 | /UVA OJ - ALL/UvaJudge130.cc | 5be2e90f4fdcaa08baaa959ba800ca1583bab7d1 | [] | no_license | fernandesitalo-zz/Competitive-Progamming | ed9b4879f6d2b443a6d17a1426821d1674506eb8 | a89f770b8616c00198f74c92a09b59d4a278711d | refs/heads/master | 2022-02-12T17:44:19.641129 | 2019-07-30T12:26:02 | 2019-07-30T12:26:02 | 92,948,182 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 615 | cc | UvaJudge130.cc | #include <bits/stdc++.h>
using namespace std;
#define pb push_back
int f(int n,int k,int at){ // n qtd de pessoas, k e o salto...
vector<int> r;
for(int i = 1 ; i <= n ; ++i) r.pb(i);
while(r.size() > 1){
int kill = (at + k%(r.size()))%(r.size());
int enterra = (kill+k%(r.size())%(r.size()));
cerr << "morre = " << r[kill] << " assume " << r[enterra] <<endl;
swap(r[kill],r[enterra]);
r.erase(r.begin() + enterra);
at = kill;
}
return r[0];
}
int main(){
//~ freopen("in","r",stdin);
int n,k;
for(;cin>>n>>k && n && k;){
f(n,k-1,0);
}
return 0;
}
|
aca272b249198df0f439191e9bc89c259f4831c4 | d9e660af9c6b2bd4da336caffa630691d7b5840e | /include/v2/set/specification.inc | fc970cd58073bc48fa98f1d9834eea322dbec6e3 | [
"Apache-2.0",
"LicenseRef-scancode-us-govt-public-domain"
] | permissive | Goddard-Fortran-Ecosystem/gFTL | 37b20fbfaa6d821e3fa2305f1bbecd9cb40884a2 | 4beb2f415ffe071a251d56eb56da8fcee62dd58c | refs/heads/main | 2023-08-17T23:41:16.242802 | 2023-04-13T13:53:27 | 2023-04-13T13:53:27 | 122,108,503 | 33 | 8 | Apache-2.0 | 2023-08-15T14:37:07 | 2018-02-19T19:13:49 | Fortran | UTF-8 | C++ | false | false | 5,043 | inc | specification.inc | !--------------------------------------------------------------------
! Copyright © 2020 United States Government as represented by the |
! Administrator of the National Aeronautics and Space |
! Administration. No copyright is claimed in the United States |
! under Title 17, U.S. Code. All Other Rights Reserved. |
! |
! Licensed under the Apache License, Version 2.0. |
!--------------------------------------------------------------------
#define __guard __set_guard
#include "parameters/T/copy_set_T_to_internal_T.inc"
#include "parameters/T/define_derived_macros.inc"
#define __LEFT 0
#define __RIGHT 1
#define __base_node __MANGLE(BaseNode)
#define __set_node __MANGLE(Node)
! Structure constructors
interface __set
module procedure __MANGLE(new_set_empty)
!!$ module procedure __MANGLE(new_set_range)
module procedure __MANGLE(new_set_copy)
!!$ module procedure __MANGLE(new_set_move)
#ifdef __T_listable__
module procedure __MANGLE(new_set_initializer_list)
#endif
end interface __set
#include "set/node_specification.inc"
type :: __set
private
class(__base_node), allocatable :: root
integer(kind=GFTL_SIZE_KIND) :: tsize = 0
contains
procedure :: empty => __MANGLE(empty)
procedure :: size => __MANGLE(size)
procedure, nopass :: max_size => __MANGLE(max_size)
procedure :: count => __MANGLE(count)
procedure :: find => __MANGLE(find)
procedure :: clear => __MANGLE(clear)
procedure :: insert_single => __MANGLE(insert_single)
procedure :: insert_single_with_hint => __MANGLE(insert_single_with_hint)
procedure :: insert_range => __MANGLE(insert_range)
#ifdef __T_listable__
procedure :: insert_initializer_list => __MANGLE(insert_initializer_list)
#endif
generic :: insert => insert_single
generic :: insert => insert_single_with_hint
generic :: insert => insert_range
#ifdef __T_listable__
generic :: insert => insert_initializer_list
#endif
procedure :: erase_iter => __MANGLE(erase_iter)
procedure :: erase_value => __MANGLE(erase_value)
procedure :: erase_range => __MANGLE(erase_range)
generic :: erase => erase_iter, erase_value, erase_range
procedure :: begin => __MANGLE(begin)
procedure :: end => __MANGLE(end)
procedure :: ftn_begin => __MANGLE(ftn_begin)
procedure :: ftn_end => __MANGLE(ftn_end)
procedure :: lower_bound => __MANGLE(lower_bound)
procedure :: upper_bound => __MANGLE(upper_bound)
procedure :: merge => __MANGLE(merge)
procedure :: deep_copy => __MANGLE(deep_copy)
generic :: assignment(=) => deep_copy
#ifdef __T_listable__
procedure :: copy_list => __MANGLE(copy_list)
generic :: assignment(=) => copy_list
#endif
procedure :: swap => __MANGLE(swap)
procedure, private :: find_node => __MANGLE(find_node)
procedure, private :: rebalance=> __MANGLE(rebalance)
procedure, private :: erase_nonleaf => __MANGLE(erase_nonleaf)
procedure, private :: advpos => __MANGLE(advpos)
procedure, private :: rot => __MANGLE(rot)
! I/O
procedure :: write_formatted => __MANGLE(write_formatted)
generic :: write(formatted) => write_formatted
! key_compare() and value_compare() are the same thing for Set.
procedure :: key_compare => __MANGLE(value_compare)
procedure :: value_compare => __MANGLE(value_compare)
procedure :: verify => __MANGLE(verify)
end type __set
interface swap
module procedure __MANGLE(swap)
end interface swap
interface operator(==)
module procedure __MANGLE(equal)
end interface operator(==)
interface operator(/=)
module procedure __MANGLE(not_equal)
end interface operator(/=)
interface operator(<)
module procedure __MANGLE(less_than)
end interface operator(<)
interface operator(<=)
module procedure __MANGLE(less_than_or_equal)
end interface operator(<=)
interface operator(>)
module procedure __MANGLE(greater_than)
end interface operator(>)
interface operator(>=)
module procedure __MANGLE(greater_than_or_equal)
end interface operator(>=)
#include "set/iterator_specification.inc"
!#include "set/reverse_iterator_specification.inc"
#undef __LEFT
#undef __RIGHT
#undef __set_node
#undef __base_node
! undef derived template parameters
#include "parameters/T/undef_derived_macros.inc"
! undef internal template parameters
#undef __guard
#include "parameters/T/undef_internal.inc"
#include "parameters/T/copy_set_T_to_algorithm_T.inc"
#define __algorithm_guard __IDENTITY(__set_guard)
#define __algorithm_container __set
#define __algorithm_iterator __set_iterator
#include "algorithms/specification.inc"
#undef __algorithm_container
#undef __algorithm_iterator
#undef __algorithm_guard
#include "parameters/T/undef_algorithm_T.inc"
|
1b80a40aadc291363522b5ea0614e23bb64f2a67 | b516ffaa751c248a0f085e165e0da022dcd97df4 | /BonEngine/inc/Sfx/Defs.h | 4247cb6b4dd9565985c3f23e55ff1cc5f30ccb15 | [
"MIT"
] | permissive | parhelia512/BonEngine | 0c90909cb15cfaa73a2d7da69e1b0b85fc8dec0d | 49cec684c2307715df0958ed673ff077eac0a395 | refs/heads/master | 2023-02-17T14:22:24.429552 | 2021-07-30T21:05:33 | 2021-07-30T21:05:33 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 876 | h | Defs.h | /*****************************************************************//**
* \file Defs.h
* \brief Misc defs and enum related to SFX.
*
* \author Ronen Ness
* \date May 2020
*********************************************************************/
#pragma once
#include "../dllimport.h"
namespace bon
{
namespace sfx
{
/**
* Represent the handle of a playing sound channel.
* Used this to stop sounds that are currently playing.
*/
typedef BON_DLLEXPORT int SoundChannelId;
/**
* Define channel id to affect all channels.
*/
static const SoundChannelId AllChannels = -1;
/**
* Define channel id for invalid channel / errors.
*/
static const SoundChannelId InvalidSoundChannel = -2;
/**
* Format types for audio initialization.
*/
enum class BON_DLLEXPORT AudioFormats
{
U8, S8, U16LSB, S16LSB, U16MSB, S16MSB
};
}
} |
d2ee921cb06b92c34783159e8b18d68a3082f1e6 | bd8f050be1b0dd6f3f192628adeb60dfff9e7ef6 | /ConsoleMarketer/User.h | 11dba84071bbd8057565290927a36df64c912b87 | [] | no_license | ritou11/Supermarketer | dfb249aaae6c6fe761e7d94a273f75ba38050342 | b03157af5fffe1a77dc7212450fdb6b3ecd5a71f | refs/heads/master | 2021-01-20T05:49:55.503783 | 2017-06-05T03:19:43 | 2017-06-05T03:19:43 | 93,216,287 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 191 | h | User.h | #pragma once
enum USER_TYPE
{
CONSUMER,
ADMIN
};
class User
{
public:
USER_TYPE type;
string username;
User() {
username = "";
type = CONSUMER;
}
};
|
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.