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
f6fa9c7ebca3ed23992899b6529240e9d08094cc
efd1f46a51a82b1fbe1fcd25be45c37a9f303710
/pelican/core/AbstractStreamAdapter.h
20e087ef392361cb9039f7ec34eb21ed92d8b17a
[]
no_license
chrisjwilliams/pelican
dc0d3069f6a2366dc331cb82341f1ba37620e666
3aeef40c694347f4df547194a0c0c4c4e214f27d
refs/heads/master
2021-01-15T16:47:14.378470
2012-11-05T16:22:20
2012-11-05T16:22:20
null
0
0
null
null
null
null
UTF-8
C++
false
false
1,233
h
AbstractStreamAdapter.h
#ifndef ABSTRACTSTREAMADAPTER_H #define ABSTRACTSTREAMADAPTER_H /** * @file AbstractStreamAdapter.h */ #include "pelican/core/AbstractAdapter.h" #include <QtCore/QHash> #include <QtCore/QString> #include <QtCore/QIODevice> namespace pelican { class ConfigNode; class DataBlob; /** * @ingroup c_core * * @class AbstractStreamAdapter * * @brief * Abstract base class for all stream data adapters. * * @details * This class is the base class for all Pelican stream data adapters, which * de-serialise data from an input stream. * Normally you should inherit directly form AbstractAdapter unless you wish to * force pelican to ignore the server confiugration and always provide the * dependent data * * Inherit this class and implement the stream operator method to create a new * adapter. */ class AbstractStreamAdapter : public AbstractAdapter { public: /// Constructs a new stream adapter with the given configuration. AbstractStreamAdapter(const ConfigNode& config) : AbstractAdapter(config, AbstractAdapter::Stream) {} /// Destroys the stream adapter (virtual). virtual ~AbstractStreamAdapter() {} }; } // namespace pelican #endif // ABSTRACTSTREAMADAPTER_H
ca6be88371f895de31025f0fb968e859c21b862f
7d375d8f99b69387187f0b1f9d476bf007c431ed
/server.h
1dffaedf79a353604901478fb98d4bf8ac9cf2f4
[]
no_license
reinmind/cmdchat
b397a765e3ba8573c03390fc5390b6216172472b
6ac061cb9105255563ea1e317ef46efbc08f3818
refs/heads/master
2020-05-26T08:33:25.854172
2019-05-23T14:50:54
2019-05-23T14:50:54
188,169,144
0
0
null
null
null
null
UTF-8
C++
false
false
586
h
server.h
#ifndef SERVER_H #define SERVER_H #include <QObject> #include <QTcpServer> #include <QTcpSocket> #include <QtDebug> #include <QVector> class server : public QObject { Q_OBJECT private: QTcpServer* chatServer; QVector<QTcpSocket*>* allClients; public: explicit server(QObject *parent = nullptr); void startServer(); void sendMessageToCliets(QString message); signals: public slots: void newClientConnection(); void socketDisconnected(); void socketReayRead(); void socketStateChanged(QAbstractSocket::SocketState state); }; #endif // SERVER_H
1a39f15732d29e6e08d601462ecb4253da5e92d1
a608fd348d03014869ad3a1b22700e4798b5037c
/Console_Projects/๋ชฌ์Šคํ„ฐ์›”๋“œ/VariousMonster.h
d94d723644a604f23a8854873e3ccf9868adbd72
[]
no_license
Yaseungho/myCodes
420d5f9f845327faedc2da110cd6174f430e5cec
9a63b696ec598d90d564fe1024dec7a8084c7d74
refs/heads/master
2021-06-22T17:17:44.072240
2021-05-11T06:27:24
2021-05-11T06:27:24
214,841,009
0
0
null
null
null
null
UHC
C++
false
false
4,151
h
VariousMonster.h
#ifndef __VARIOUSMONSTER__ #define __VARIOUSMONSTER__ #include "MonsterWorld.h" void Move_Normal::Move(int& x, int& y, int& NEnergy) { int MoveX = rand() % 17 - 8; int MoveY = rand() % 17 - 8; x = (x + MoveX) >= 0 && (x + MoveX) <= 15 ? x + MoveX : x + MoveX < 0 ? 0 : 15; y = (y + MoveY) >= 0 && (y + MoveY) <= 7 ? y + MoveY : y + MoveY < 0 ? 0 : 7; } // ํ‰๋ฒ”ํ•œ ๋ชฌ์Šคํ„ฐ์˜ ์ด๋™ ์•Œ๊ณ ๋ฆฌ์ฆ˜ (8์นธ ๋‚ด์˜ ๋ฌด์ž‘์œ„ ์œ„์น˜๋กœ ์ด๋™) void Move_Zombie::Move(int& x, int& y, int& NEnergy) { const int DX[8] = { -1,-1,-1, 1, 1, 1, 0, 0 }; const int DY[8] = { -1, 0, 1,-1, 0, 1,-1, 1 }; int RandDirection = rand() % 8; int MoveX = DX[RandDirection]; int MoveY = DY[RandDirection]; x = (x + MoveX) >= 0 && (x + MoveX) <= 15 ? x + MoveX : x + MoveX < 0 ? 0 : 15; y = (y + MoveY) >= 0 && (y + MoveY) <= 7 ? y + MoveY : y + MoveY < 0 ? 0 : 7; } //์ข€๋น„์˜ ์ด๋™ ์•Œ๊ณ ๋ฆฌ์ฆ˜ (๋™, ์„œ, ๋‚จ, ๋ถ, ๋‚จ๋™, ๋‚จ์„œ, ๋ถ๋™, ๋ถ์„œ 8๋ฐฉํ–ฅ ์ค‘ ๋ฌด์ž‘์œ„ ๋ฐฉํ–ฅ์œผ๋กœ 1์นธ ์ด๋™) void Move_Vampire::Move(int& x, int& y, int& NEnergy) { const int DX[4] = { 0, 0,-1, 1 }; const int DY[4] = { -1, 1, 0, 0 }; int RandDirection = rand() % 4; int MoveX = DX[RandDirection]; int MoveY = DY[RandDirection]; x = (x + MoveX) >= 0 && (x + MoveX) <= 15 ? x + MoveX : x + MoveX < 0 ? 0 : 15; y = (y + MoveY) >= 0 && (y + MoveY) <= 7 ? y + MoveY : y + MoveY < 0 ? 0 : 7; } //๋ฑ€ํŒŒ์ด์–ด์˜ ์ด๋™ ์•Œ๊ณ ๋ฆฌ์ฆ˜ (๋™, ์„œ, ๋‚จ, ๋ถ 4๋ฐฉํ–ฅ ์ค‘ ๋ฌด์ž‘์œ„ ๋ฐฉํ–ฅ์œผ๋กœ 1์นธ ์ด๋™) void Move_Undead::Move(int& x, int& y, int& NEnergy) { const int DX[4] = { 0, 0,-2, 2 }; const int DY[4] = { -2, 2, 0, 0 }; int RandDirection = rand() % 4; int MoveX = DX[RandDirection]; int MoveY = DY[RandDirection]; x = (x + MoveX) >= 0 && (x + MoveX) <= 15 ? x + MoveX : x + MoveX < 0 ? 0 : 15; y = (y + MoveY) >= 0 && (y + MoveY) <= 7 ? y + MoveY : y + MoveY < 0 ? 0 : 7; if (!RandDirection) NEnergy++; } //์–ธ๋ฐ๋“œ์˜ ์ด๋™ ์•Œ๊ณ ๋ฆฌ์ฆ˜ (๋™, ์„œ, ๋‚จ, ๋ถ 4๋ฐฉํ–ฅ ์ค‘ ๋ฌด์ž‘์œ„ ๋ฐฉํ–ฅ์œผ๋กœ 2์นธ ์ด๋™, ์ด๋™ ์‹œ 25% ํ™•๋ฅ ๋กœ ์—๋„ˆ์ง€ 1 ์ถ”๊ฐ€ ํšŒ๋ณต) void Move_Ghost::Move(int& x, int& y, int& NEnergy) { int RandNum = rand() % 4; if (RandNum) { x = rand() % 16; y = rand() % 8; NEnergy -= 3; } } //์œ ๋ น์˜ ์ด๋™ ์•Œ๊ณ ๋ฆฌ์ฆ˜ (75%ํ™•๋ฅ ๋กœ ๋งต์˜ ๋žœ๋ค ์œ„์น˜๋กœ ์ด๋™, ์ด๋™์‹œ๋งˆ๋‹ค ์—๋„ˆ์ง€ 3 ์ถ”๊ฐ€ ๊ฐ์†Œ) void Move_Knight::Move(int& x, int& y, int& NEnergy) { const int DX[8] = { 2,-2, 2,-2, 1,-1, 1,-1 }; const int DY[8] = { 1, 1,-1,-1, 2, 2,-2,-2 }; int RandDirection = rand() % 8; int MoveX = DX[RandDirection]; int MoveY = DY[RandDirection]; x = (x + MoveX) >= 0 && (x + MoveX) <= 15 ? x + MoveX : x + MoveX < 0 ? 0 : 15; y = (y + MoveY) >= 0 && (y + MoveY) <= 7 ? y + MoveY : y + MoveY < 0 ? 0 : 7; } //๊ธฐ์‚ฌ์˜ ์ด๋™ ์•Œ๊ณ ๋ฆฌ์ฆ˜ (๋ฌด์ž‘์œ„ ๋ฐฉํ–ฅ์œผ๋กœ ์ฒด์Šค์˜ '๋‚˜์ดํŠธ' ์ฒ˜๋Ÿผ L์ž๋กœ ์ด๋™) class NormalMonster : public Monster { public: NormalMonster(string _Name, string _Icon) : Monster(_Name, _Icon) { SetMoveBehavior(new Move_Normal); } }; //์ƒ์„ฑ์ž๋ฅผ ํ†ตํ•ด NormalMonster์—๊ฒŒ ๋งž๋Š” ์ด๋™ ์•Œ๊ณ ๋ฆฌ์ฆ˜ ํ• ๋‹น class Zombie : public Monster { public: Zombie(string _Name, string _Icon) : Monster(_Name, _Icon) { SetMoveBehavior(new Move_Zombie); } }; //์ƒ์„ฑ์ž๋ฅผ ํ†ตํ•ด Zombie์—๊ฒŒ ๋งž๋Š” ์ด๋™ ์•Œ๊ณ ๋ฆฌ์ฆ˜ ํ• ๋‹น class Vampire : public Monster { public: Vampire(string _Name, string _Icon) : Monster(_Name, _Icon) { SetMoveBehavior(new Move_Vampire); } }; //์ƒ์„ฑ์ž๋ฅผ ํ†ตํ•ด Vampire์—๊ฒŒ ๋งž๋Š” ์ด๋™ ์•Œ๊ณ ๋ฆฌ์ฆ˜ ํ• ๋‹น class Undead : public Monster { public: Undead(string _Name, string _Icon) : Monster(_Name, _Icon) { SetMoveBehavior(new Move_Undead); } }; //์ƒ์„ฑ์ž๋ฅผ ํ†ตํ•ด Undead์—๊ฒŒ ๋งž๋Š” ์ด๋™ ์•Œ๊ณ ๋ฆฌ์ฆ˜ ํ• ๋‹น class Ghost : public Monster { public: Ghost(string _Name, string _Icon) : Monster(_Name, _Icon) { SetMoveBehavior(new Move_Ghost); } }; //์ƒ์„ฑ์ž๋ฅผ ํ†ตํ•ด Ghost์—๊ฒŒ ๋งž๋Š” ์ด๋™ ์•Œ๊ณ ๋ฆฌ์ฆ˜ ํ• ๋‹น class Knight : public Monster { public: Knight(string _Name, string _Icon) : Monster(_Name, _Icon) { SetMoveBehavior(new Move_Knight); } }; //์ƒ์„ฑ์ž๋ฅผ ํ†ตํ•ด Knight์—๊ฒŒ ๋งž๋Š” ์ด๋™ ์•Œ๊ณ ๋ฆฌ์ฆ˜ ํ• ๋‹น #endif
65aad738b2bf5dc3dcc4c1b76036c0db2f00954b
8ac53848564a1993fd60d8d21a6480be28433348
/src/ConfigurationElement.cpp
f046476e243c6565faa8669352d9faf2331a7f92
[]
no_license
Lokinoid/MasterCode
3e9c4cc9622ea3863977d123fc06d88ba50ced34
988dd83ded4d727108b49e6e448cad853eeecb96
refs/heads/master
2021-01-10T20:56:04.430131
2014-09-17T10:45:12
2014-09-17T10:45:12
null
0
0
null
null
null
null
UTF-8
C++
false
false
436
cpp
ConfigurationElement.cpp
// // ConfigurationElement.cpp // ClassifierTrainer // // Created by Stanislav Orlov on 8/19/14. // Copyright (c) 2014 Stanislav. All rights reserved. // #include "ConfigurationElement.h" #include <algorithm> CurrentConfiguration::~CurrentConfiguration() { std::for_each(storage.begin(), storage.end(), [&](std::pair<const std::string, const IConfigurationElement*> element){ delete element.second; }); }
3ac12c3f69b24089a6eb37f30bec8239aaac38b0
e83aeef07cbadfb0a61ec9b009d0cb9ba87cab7c
/programmodule.cpp
c7c25eff4299b82deee3f8b0a82fe6244f405bd7
[]
no_license
drProgerschtein/C-program-CInt
0694c503c4805a54f6d4dd644e3f0cb89702a2e7
7997b0aca1b9a6e541264c11f97218ed62348aca
refs/heads/master
2021-04-10T22:28:58.688466
2020-03-21T12:41:11
2020-03-21T12:41:11
248,971,808
0
0
null
null
null
null
UTF-8
C++
false
false
13,297
cpp
programmodule.cpp
#include "programmodule.hpp" #include <string.h> #include "fabric.hpp" #include "CDInt.hpp" #include <vector> #include <map> #include <string> void ClearFile(const char* fname){ FILE * fforclear; fforclear = fopen(fname, "w"); fclose(fforclear); return; } int ProgramCData(const char* fname){ CData** arr; int alen=0, aquan=0; FILE* inp = fopen(fname, "r"); if (inp){ //Program will make smth char * rstr; int len, quan; char sym = 0, fcode=0; CInt tmpInt; rstr = new char[1]; len = 1; quan = 0; arr = new CData*[1]; alen=1; do{//Read from file sym = fgetc(inp); if ((sym=='1')||(sym=='0')){//creation mode fcode = sym -'0'; } else{ break; } //new dataset if (alen==aquan){ CData** tmp = new CData*[alen*2]; alen*=2; for (int i=0; i<aquan; i++){ tmp[i]=arr[i]; } delete[] arr; arr = tmp; } if (fcode==0){ arr[aquan++] = new CData0; } else{ arr[aquan++] = new CData1; } fgetc(inp);//ignore space if ((sym=='\n')&&(sym==-1)) break; sym=fgetc(inp); if ((sym=='\n')&&(sym==-1)&&(sym==' ')) break; //empty file name while ((sym!='\n')&&(sym!=-1)&&(sym!=' ')) { if (quan==len){ char * tmp = new char[len*2]; len*=2; memcpy(tmp,rstr,quan); delete[] rstr; rstr = tmp; } rstr[quan++]=sym; sym=fgetc(inp); } if (quan==len){ char * tmp = new char[len*2]; len*=2; memcpy(tmp,rstr,quan); delete[] rstr; rstr = tmp; } rstr[quan++]=0; arr[aquan-1]->SetFile(rstr); quan=0; sym = fgetc(inp); while ((sym!='\n')&&(sym!=-1)){//eol if (sym==' '){ if (quan==len){ char * tmp = new char[len*2]; len*=2; memcpy(tmp,rstr,quan); delete[] rstr; rstr = tmp; } rstr[quan]=0; quan=0; tmpInt.ConvertStr(rstr); arr[aquan-1]->AddData(tmpInt); } else{ if (quan==len){ char * tmp = new char[len*2]; len*=2; memcpy(tmp,rstr,quan); delete[] rstr; rstr = tmp; } rstr[quan++]=sym; } sym = fgetc(inp); } if (quan==len){ char * tmp = new char[len*2]; len*=2; memcpy(tmp,rstr,quan); delete[] rstr; rstr = tmp; } rstr[quan]=0; tmpInt.ConvertStr(rstr); arr[aquan-1]->AddData(tmpInt); quan=0; }while (sym!=-1);//eof for (int i=0; i<aquan; i++){ arr[i]->outfunc(); } delete[] rstr; rstr =nullptr; for (int i=0; i<aquan;i++){ delete arr[i]; } delete[] arr; fclose(inp); return 0; } else{ return -1; } } int ProgramCDInt(const char* fname){ CDInt** arr; int alen=0, aquan=0; FILE* inp = fopen(fname, "r"); if (inp){ //Program will make smth char *rstr; int len, quan; char *fnstr; int lenfn; char sym = 0, fcode=0; CInt tmpInt; rstr = new char[1]; len = 1; quan = 0; fnstr = new char[2]; lenfn = 2; arr = new CDInt*[1]; alen=1; do{//Read from file sym = fgetc(inp); if ((sym=='1')||(sym=='0')){//creation mode fcode = sym -'0'; } else{ break; } fgetc(inp);//ignore space if ((sym=='\n')&&(sym==-1)) break; sym=fgetc(inp); if ((sym=='\n')&&(sym==-1)&&(sym==' ')) break; //empty file name while ((sym!='\n')&&(sym!=-1)&&(sym!=' ')) { if (quan==len){ char * tmp = new char[len*2]; len*=2; memcpy(tmp,rstr,quan); delete[] rstr; rstr = tmp; } rstr[quan++]=sym; sym=fgetc(inp); } if (quan==len){ char * tmp = new char[len*2]; len*=2; memcpy(tmp,rstr,quan); delete[] rstr; rstr = tmp; } rstr[quan++]=0; if (quan+1>lenfn){ delete[] fnstr; fnstr = new char[quan+1]; lenfn = quan+1; } strcpy(fnstr,rstr);//filename was copied ClearFile(fnstr);//Clear file before using quan=0; sym = fgetc(inp); while ((sym!='\n')&&(sym!=-1)){//eol if (sym==' '){ if (quan==len){ char * tmp = new char[len*2]; len*=2; memcpy(tmp,rstr,quan); delete[] rstr; rstr = tmp; } rstr[quan]=0; quan=0; tmpInt.ConvertStr(rstr); if (alen==aquan){ CDInt** tmp = new CDInt*[alen*2]; alen*=2; for (int i=0; i<aquan; i++){ tmp[i]=arr[i]; } delete[] arr; arr = tmp; } if (fcode==0){ arr[aquan++] = new CDInt0; } else{ arr[aquan++] = new CDInt1; } arr[aquan-1]->SetFile(fnstr); arr[aquan-1]->SetData(tmpInt); } else{ if (quan==len){ char * tmp = new char[len*2]; len*=2; memcpy(tmp,rstr,quan); delete[] rstr; rstr = tmp; } rstr[quan++]=sym; } sym = fgetc(inp); } if (quan==len){ char * tmp = new char[len*2]; len*=2; memcpy(tmp,rstr,quan); delete[] rstr; rstr = tmp; } rstr[quan]=0; tmpInt.ConvertStr(rstr); if (alen==aquan){ CDInt** tmp = new CDInt*[alen*2]; alen*=2; for (int i=0; i<aquan; i++){ tmp[i]=arr[i]; } delete[] arr; arr = tmp; } if (fcode==0){ arr[aquan++] = new CDInt0; } else{ arr[aquan++] = new CDInt1; } arr[aquan-1]->SetFile(fnstr); arr[aquan-1]->SetData(tmpInt); quan=0; }while (sym!=-1);//eof for (int i=0; i<aquan; i++){ arr[i]->outfunc(); } delete[] rstr; rstr =nullptr; for (int i=0; i<aquan;i++){ delete arr[i]; } delete[] arr; fclose(inp); return 0; } else{ return -1; } } int ProgramFabricCDInt(const char* fname){ //STL std::vector<CDInt*> arr; FILE* inp = fopen(fname, "r"); if (inp){ //Program will make smth char *rstr; int len, quan; char *fnstr; char sym = 0; CInt tmpInt; char* fcode; rstr = new char[1]; len = 1; quan = 0; std::map<std::string, CDIntFabric*> factory; factory["str"] = static_cast<CDIntFabric*>(new CDInt0Fabric); factory["stb"] = static_cast<CDIntFabric*>(new CDInt1Fabric); do{//Read from file sym = fgetc(inp); //program reads full string while ((sym!='\n')&&(sym!=-1)){ if (quan==len){ char * tmp = new char[len*2]; len*=2; memcpy(tmp,rstr,quan); delete[] rstr; rstr = tmp; } rstr[quan++]=sym; sym=fgetc(inp); } fcode = strtok(rstr, " "); auto curFactory = factory.find(fcode); if (curFactory == factory.end()){ delete[] rstr; return -1; } fnstr = strtok(NULL, " "); ClearFile(fnstr); char* elem = strtok(NULL, " "); while (elem){ auto curCDInt = curFactory->second->Create(elem,fnstr); arr.push_back(curCDInt); elem = strtok(NULL, " "); } quan = 0; }while (sym!=-1);//eof for (std::vector<CDInt*>::iterator it = arr.begin(); it!=arr.end(); it++){ (*it)->outfunc(); delete *it; } for (std::map<std::string, CDIntFabric*>::iterator it = factory.begin(); it!=factory.end(); it++){ delete it->second; } delete[] rstr; rstr = nullptr; fclose(inp); return 0; } else{ return -1; } } int CIntToInt(const CInt& numb){ int rez=0; for (int i=numb.N-1; i>=0; i--){ rez = rez*10+numb.numb[i]; } rez = rez*numb.sgn; return rez; } int Autotest(){ int flag=0; //CInt will be tested first, the next test will use this class to simple checking //Construct check: CInt rabbit01, rabbit02(5,12345); CInt rabbit04(5, -12345), rabbit05(5);//Who was so hungry?!! if ((rabbit01.N!=1)||(CIntToInt(rabbit01)!=0)) return 1; if ((rabbit02.N!=5)||(CIntToInt(rabbit02)!=12345)) return 1; if ((rabbit04.N!=5)||(CIntToInt(rabbit04)!=-12345)) return 1; if ((rabbit05.N!=5)||(CIntToInt(rabbit05)!=0)) return 1; flag=0; try{ CInt raddit30(1, 100000);//Hm... I think it is number 03... But why is it so big? } catch(CInt::ErrCode err){ flag=1; //We detected this mutation } if (!flag) return 2; //It is time to check genetic of our pets rabbit01 = 123; if ((rabbit01.N!=3)||(CIntToInt(rabbit01)!=123)) return 3; rabbit01 = rabbit05; if ((rabbit01.N!=5)||(CIntToInt(rabbit01)!=0)) return 3; //cout<<"It's clear"<<endl; rabbit01 = rabbit01 + rabbit02; //cout<<"It's clear1"<<endl; if ((rabbit01.sgn!=1)||(rabbit01.N!=5)||(CIntToInt(rabbit01)!=12345)) return 3; if (rabbit01!=rabbit02) return 4; rabbit01 = rabbit01 - rabbit02; if ((rabbit01.sgn!=0)||(CIntToInt(rabbit01)!=0)) return 4; //When the personal is alive we are ready to the next stage. The Krakens are on the horizon!!! CDInt0 Kraken011, Kraken012, Kraken013, Kraken01F; CDInt1 Kraken021, Kraken022, Kraken023, Kraken02F; //cout<<"Krakens lv1"<<endl; //Krakens will broke the program total Kraken011.SetFile("f011"); Kraken012.SetFile("f012"); Kraken013.SetFile("f013"); Kraken01F.SetFile("f01F"); Kraken021.SetFile("f021"); Kraken022.SetFile("f022"); Kraken023.SetFile("f023"); Kraken02F.SetFile("f02F"); Kraken011.SetData(123); Kraken012.SetData(543); //cout<<(Kraken011+Kraken012).outfile<<endl; Kraken01F = Kraken011+Kraken012; //cout<<"First:"<<Kraken01F.outfile<<", "<<Kraken01F.data<<", "<<CIntToInt(Kraken01F.data)<<endl; if ((strcmp(Kraken01F.outfile,Kraken011.outfile))||(CIntToInt(Kraken01F.data)!=666)) return 5; Kraken02F = Kraken011+Kraken012; //cout<<Kraken02F.data<<endl; if ((strcmp(Kraken02F.outfile,Kraken011.outfile))||(CIntToInt(Kraken02F.data)!=666)) return 5; Kraken021.SetData(123); Kraken022.SetData(543); Kraken01F = Kraken021+Kraken022; //cout<<Kraken01F.data<<endl; //cout<<"Second:"<<Kraken01F.outfile<<", "<<Kraken01F.data<<", "<<CIntToInt(Kraken01F.data)<<endl; if ((strcmp(Kraken01F.outfile,Kraken021.outfile))||(CIntToInt(Kraken01F.data)!=666)) return 5; Kraken02F = Kraken021+Kraken022; //cout<<Kraken02F.data<<endl; if ((strcmp(Kraken02F.outfile,Kraken021.outfile))||(CIntToInt(Kraken02F.data)!=666)) return 5; //Without errors return 0; }
df170e9d0f028bc5aa2c8dc881339e6278ac0955
5bbc46e863478a6b649ce862ba09c5340353c399
/DynamicProgramming/9184_์‹ ๋‚˜๋Š”_ํ•จ์ˆ˜_์‹คํ–‰.cpp
3043ba0c45062e2a6054d07879609d22568ae50b
[]
no_license
dayeondev/AlgoStudy
33f6467707897c72e0fb3a4ea96dff960f5308f3
75b2d7da88ba5aee5543075e4420d874bfcf82bd
refs/heads/master
2022-11-23T05:51:38.450673
2022-11-17T14:16:05
2022-11-17T14:16:05
233,246,385
2
0
null
null
null
null
UTF-8
C++
false
false
1,803
cpp
9184_์‹ ๋‚˜๋Š”_ํ•จ์ˆ˜_์‹คํ–‰.cpp
#include<bits/stdc++.h> #define MAX 51 using namespace std; long long arr[MAX][MAX][MAX]; bool visited[MAX][MAX][MAX]; int a, b, c; int w(int a, int b, int c){ if((a<=0||b<=0) || c<=0){ return 1; } if((a>20||b>20) || c>20){ return w(20, 20, 20); } if((a<b)&&(b<c)){ if(!visited[a][b][c-1]) arr[a][b][c-1] = w(a, b, c-1); visited[a][b][c-1] = true; if(!visited[a][b-1][c-1]) arr[a][b-1][c-1] = w(a, b-1, c-1); visited[a][b-1][c-1] = true; if(!visited[a][b-1][c]) arr[a][b-1][c] = w(a, b-1, c); visited[a][b-1][c] = true; long long __res = 0; __res += arr[a][b][c-1]; __res += arr[a][b-1][c-1]; __res -= arr[a][b-1][c]; return __res; } if(!visited[a-1][b][c]) arr[a-1][b][c] = w(a-1, b, c); visited[a-1][b][c] = true; if(!visited[a-1][b-1][c]) arr[a-1][b-1][c] = w(a-1, b-1, c); visited[a-1][b-1][c] = true; if(!visited[a-1][b][c-1]) arr[a-1][b][c-1] = w(a-1, b, c-1); visited[a-1][b][c-1] = true; if(!visited[a-1][b-1][c-1]) arr[a-1][b-1][c-1] = w(a-1, b-1, c-1); visited[a-1][b-1][c-1] = true; long long _res = 0; _res += arr[a-1][b][c]; _res += arr[a-1][b-1][c]; _res += arr[a-1][b][c-1]; _res -= arr[a-1][b-1][c-1]; return _res; } int main(void){ for(int i = 0; i < MAX; i++){ for(int j = 0; j < MAX; j++){ for(int k = 0; k < MAX; k++){ arr[i][j][k] = -1; visited[i][j][k] = false; } } } cin >> a >> b >> c; while (!((a==-1&&b==-1)&&(c==-1))) { cout << "w(" << a << ", " << b << ", " << c << ") = "; cout << w(a, b, c) << "\n"; cin >> a >> b >> c; } }
027de7c3f85fc65d80c53bd8fe4d4309ee846c4b
d5932c3b6d4a8f0a5dd330f501b748f0c096b932
/main.cpp
036c44c8887e74cb57bacd180686166e01aab6e3
[]
no_license
dashqua/visitor
e41dc142d3d36f70b1421d74ec7645edf8c763c3
cbbe1bf5790f05360e2e19a5a70a8df3be4f0092
refs/heads/master
2021-04-06T08:44:23.154865
2018-03-15T15:44:26
2018-03-15T15:44:26
125,374,595
0
0
null
null
null
null
UTF-8
C++
false
false
1,062
cpp
main.cpp
#include "car.h" #include "berline.h" int main(){ std::cout << "Visitor Design Pattern practice" << std::endl; Car voiture_perso; voiture_perso.setmodel("Renault"); std::string marque_voiture_perso = voiture_perso.getmodel(); std::cout << "La marque de ma voiture perso est " << marque_voiture_perso << "." << std::endl << std::endl; Berline voiture_voisin; voiture_voisin.setmodel("Peugeot"); std::cout << "La marque de la voiture de mon voisin est " << voiture_voisin.getmodel() << "." << std::endl << "Son nombre de place est " << voiture_voisin.getplace() << "." << std::endl; return 0; } /* Bibliotheque: http://www-inf.int-evry.fr/cours/C++/CoursEA/node33.html http://www.cplusplus.com/doc/tutorial/classes/ https://isocpp.org/wiki/faq/classes-and-objects */ /* Continuer sur Git: https://git-scm.com/book/fr/v2/Les-bases-de-Git-Travailler-avec-des-d%C3%A9p%C3%B4ts-distants */ /* Note a moi meme: /export/home/thomas/baltiks/test_baltik/src emacs -nw Op_Diff_VEF_Face.cpp */
4f7679e49414065ebba756dac7c5dd2795e629a6
4cf0c6c97b8a143cdc45f1883e55c153df580432
/libsyclinterface/include/dpctl_sycl_platform_manager.h
4cf3625e7d049b7ccd6b75ddc5538362d5deec2b
[ "Apache-2.0" ]
permissive
IntelPython/dpctl
5ba40b59e281ebb130cbf19c875325516d75b795
47c82f5758c8ac71090019e97f196e7e3bcad176
refs/heads/master
2023-08-17T03:08:32.879866
2023-08-16T19:08:07
2023-08-16T19:08:07
279,842,328
83
28
Apache-2.0
2023-09-13T17:36:36
2020-07-15T10:50:36
C++
UTF-8
C++
false
false
3,550
h
dpctl_sycl_platform_manager.h
//===-- dpctl_sycl_platform_manager.h - Helpers for sycl::platform -*-C++-*- =// // // Data Parallel Control (dpctl) // // Copyright 2020-2022 Intel Corporation // // 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 // // http://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. // //===----------------------------------------------------------------------===// /// /// \file /// This header declares helper functions to work with sycl::platform objects. /// //===----------------------------------------------------------------------===// #pragma once #include "Support/DllExport.h" #include "Support/ExternC.h" #include "Support/MemOwnershipAttrs.h" #include "dpctl_sycl_types.h" #include "dpctl_vector.h" DPCTL_C_EXTERN_C_BEGIN /*! \addtogroup PlatformManager Platform class helper functions * Helper functions for ``sycl::platform`` objects that do not directly map to * any ``sycl::platform`` member function. * @{ */ // Declares a set of types abd functions to deal with vectors of // DPCTLSyclPlatformRef. Refer dpctl_vector_macros.h DPCTL_DECLARE_VECTOR(Platform) /*! * @brief Prints out information about the sycl::platform argument. * * The helper function is used to print metadata about a given platform. The * amount of information printed out is controlled by the verbosity level. * * Verbosity level 0: Prints only the name of the platform. * Verbosity level 1: Prints the name, version, vendor, backend, number of * devices in the platform. * Verbosity level 2: Prints everything in level 1 and also prints the name, * version, and filter string for each device in the * platform. * * @param PRef A #DPCTLSyclPlatformRef opaque pointer. * @param verbosity Verbosilty level to control how much information is * printed out. */ DPCTL_API void DPCTLPlatformMgr_PrintInfo(__dpctl_keep const DPCTLSyclPlatformRef PRef, size_t verbosity); /*! * @brief Returns a set of platform info attributes as a string. * * The helper function is used to get metadata about a given platform. The * amount of information received is controlled by the verbosity level. * * Verbosity level 0: Returns only the name of the platform. * Verbosity level 1: Returns the name, version, vendor, backend, number of * devices in the platform. * Verbosity level 2: Returns everything in level 1 and also returns the name, * version, and filter string for each device in the * platform. * * @param PRef A #DPCTLSyclPlatformRef opaque pointer. * @param verbosity Verbosilty level to control how much information is * printed out. * @return A formatted C string capturing the information about the * sycl::platform argument. */ DPCTL_API __dpctl_give const char * DPCTLPlatformMgr_GetInfo(__dpctl_keep const DPCTLSyclPlatformRef PRef, size_t verbosity); /*! @} */ DPCTL_C_EXTERN_C_END
18124d165ba5a8e29211c710a0d73671105b3cec
64136a2c8bfb28ace405f1ad07a91a685ec7ca2d
/include/tvm/robot/enums.h
57288f8ec9ebdfb7c3dd6d578fd2b11e0f3002d7
[ "BSD-3-Clause" ]
permissive
ANYbotics/tvm
72152792580592e16ad1280fca278d00b08a8d67
81ea5767eefbac285a9fa03b3d1f55c5e05474ac
refs/heads/master
2023-08-24T23:44:13.633877
2023-01-20T16:15:29
2023-01-23T21:33:10
265,188,142
3
0
BSD-3-Clause
2020-07-20T07:22:19
2020-05-19T08:21:24
C++
UTF-8
C++
false
false
2,518
h
enums.h
/* Copyright 2017-2018 CNRS-AIST JRL and CNRS-UM LIRMM * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are met: * * 1. Redistributions of source code must retain the above copyright notice, * this list of conditions and the following disclaimer. * * 2. 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. * * 3. Neither the name of the copyright holder 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 BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER 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. */ #pragma once namespace tvm { namespace robot { /** For a given contact, specify the type of constraint that is applied: * * - Acceleration: constraint the two frames relative-acceleration to remain * the same * - Velocity: constraint the two frames relative-velocity to remain the same * - Position: constrant the two frames relative-position to remain the same * * This is done by specifiying different coefficient to the task's dynamics. * * This only applies to contacts that include a geometric component. * */ enum class ContactConstraintType { Acceleration, Velocity, Position }; /** Specify the type of contact: * * - Regular: both Force and Geometric * - Force: force-only contact (no geometric constraint) * - Geometric: geometric-only contact (no additional forces applied by the * robots onto each other) * */ enum class ContactType { Regular, Force, Geometric }; } }
58d3917535828687ea6a863c62366fed0dd7a9d1
5287a5b3866feefa6adfe505a30c9c954e9ab7ff
/engine/game_event.h
6f37f13b57eb995e22c267f9aead815841fb8b5c
[ "Apache-2.0" ]
permissive
bobjervis/europa
b541bec797bafaf6913a19496a72e28b19f96c49
972c645b5971daef4a091d8f4fd6eb6a9f2d77b1
refs/heads/master
2020-06-05T10:55:31.595386
2015-08-30T20:38:41
2015-08-30T20:38:41
41,640,484
0
0
null
null
null
null
UTF-8
C++
false
false
7,525
h
game_event.h
#pragma once #include "../common/file_system.h" #include "../common/string.h" #include "basic_types.h" #include "constants.h" namespace engine { class Combat; class Detachment; class Doctrine; class Game; class HexMap; class InvolvedDetachment; class StandingOrder; class Theater; class Unit; /* GameEvent The atomic actions of the game are represented as Events. Each event has a specific time when it occurs. The event queue is a list in increasing time order of the events that are scheduled to happen in the future. The event log is a list in decreasing time order of the events that happened in the past. These are used to reconstruct past situation reports. */ class GameEvent { friend Game; protected: GameEvent(); public: GameEvent(minutes time) { _time = time; _occurred = false; _next = null; } virtual ~GameEvent() { } virtual void store(fileSystem::Storage::Writer* o) const; virtual bool restore(Theater* theater); virtual bool equals(GameEvent* e); virtual string name() = 0; virtual string toString() = 0; virtual void execute() = 0; virtual bool affects(Detachment* d); void insertAfter(GameEvent* e); GameEvent* insertBefore(GameEvent* e); void popNext(); string dateStamp(); void happen(); void setTime(minutes t) { _time = t; } GameEvent* next() const { return _next; } minutes time() const { return _time; } bool occurred() const { return _occurred; } protected: bool read(fileSystem::Storage::Reader* r); private: GameEvent* _next; minutes _time; bool _occurred; }; class DetachmentEvent : public GameEvent { typedef GameEvent super; protected: DetachmentEvent(); public: DetachmentEvent(Detachment* d, minutes dur); virtual void store(fileSystem::Storage::Writer* o) const; virtual bool equals(GameEvent* e); virtual bool affects(Detachment* d); Detachment* detachment() const; Unit* detachedUnit() const { return _detachedUnit; } protected: bool read(fileSystem::Storage::Reader* r); private: Unit* _detachedUnit; }; class ReinforcementEvent : public GameEvent { typedef GameEvent super; public: ReinforcementEvent(Unit* u, Unit* p, minutes t); virtual void store(fileSystem::Storage::Writer* o) const; virtual bool restore(Theater* theater); virtual bool equals(GameEvent* e); virtual string name(); virtual string toString(); virtual void execute(); private: Unit* unit; Unit* parent; }; class RemoveEvent : public DetachmentEvent { typedef DetachmentEvent super; public: RemoveEvent(Detachment* d); virtual void store(fileSystem::Storage::Writer* o) const; virtual bool equals(GameEvent* e); virtual string name(); virtual void execute(); virtual string toString(); private: xpoint _hex; }; class IdleEvent : public DetachmentEvent { typedef DetachmentEvent super; public: IdleEvent(Detachment* d, minutes dur); virtual void store(fileSystem::Storage::Writer* o) const; virtual bool equals(GameEvent* e); virtual string name(); virtual void execute(); virtual string toString(); }; class IssueEvent : public DetachmentEvent { typedef DetachmentEvent super; public: IssueEvent(Detachment* d, StandingOrder* o, minutes dur); virtual void store(fileSystem::Storage::Writer* o) const; virtual bool equals(GameEvent* e); virtual string name(); virtual void execute(); virtual string toString(); void clear() { _order = null; } StandingOrder* order() const { return _order; } private: StandingOrder* _order; }; class DisruptEvent : public DetachmentEvent { typedef DetachmentEvent super; public: DisruptEvent(InvolvedDetachment* d, Combat* c, minutes dur); virtual void store(fileSystem::Storage::Writer* o) const; virtual bool equals(GameEvent* e); virtual string name(); virtual void execute(); virtual string toString(); minutes started() const { return _started; } private: Combat* _combat; minutes _started; InvolvedDetachment* _iDetachment; }; class UndisruptEvent : public DetachmentEvent { typedef DetachmentEvent super; public: UndisruptEvent(Detachment* d, minutes dur); virtual void store(fileSystem::Storage::Writer* o) const; virtual bool equals(GameEvent* e); virtual string name(); virtual void execute(); virtual string toString(); private: Combat* _combat; minutes _started; }; class MoveEvent : public DetachmentEvent { typedef DetachmentEvent super; MoveEvent(); public: MoveEvent(Detachment* d, xpoint hx, minutes dur); static MoveEvent* factory(fileSystem::Storage::Reader* r); virtual void store(fileSystem::Storage::Writer* o) const; virtual bool equals(GameEvent* e); virtual string name(); virtual void execute(); virtual string toString(); private: xpoint _hex; xpoint _priorHex; Unit* _unit; }; class RetreatEvent : public DetachmentEvent { typedef DetachmentEvent super; public: RetreatEvent(InvolvedDetachment* iu, Combat* c, minutes dur); virtual void store(fileSystem::Storage::Writer* o) const; virtual bool equals(GameEvent* e); virtual string name(); virtual void execute(); virtual string toString(); private: Combat* _combat; InvolvedDetachment* _iDetachment; }; class LetEvent : public DetachmentEvent { typedef DetachmentEvent super; public: LetEvent(InvolvedDetachment* iu, Combat* c, minutes dur); virtual void store(fileSystem::Storage::Writer* o) const; virtual bool equals(GameEvent* e); virtual string name(); virtual void execute(); virtual string toString(); private: Combat* _combat; InvolvedDetachment* _iDetachment; }; class ModeEvent : public DetachmentEvent { typedef DetachmentEvent super; ModeEvent(); public: ModeEvent(Detachment* d, UnitModes m, minutes dur); static ModeEvent* factory(fileSystem::Storage::Reader* r); virtual void store(fileSystem::Storage::Writer* o) const; virtual bool equals(GameEvent* e); virtual string name(); virtual void execute(); virtual string toString(); private: UnitModes _mode; }; class RecheckEvent : public DetachmentEvent { typedef DetachmentEvent super; public: RecheckEvent(Detachment* d); virtual void store(fileSystem::Storage::Writer* o) const; virtual bool equals(GameEvent* e); virtual string name(); virtual void execute(); virtual string toString(); }; // These events only appear in the event queue, they are forgotten class UncloggingEvent : public GameEvent { typedef GameEvent super; public: UncloggingEvent(Detachment* d, HexDirection dir, minutes dur); virtual void store(fileSystem::Storage::Writer* o) const; virtual bool equals(GameEvent* e); virtual string name(); virtual void execute(); virtual string toString(); private: HexMap* _map; xpoint _hex; HexDirection _edge; // 0, 1 or 2 }; /* // These events only appear in the event log. StartCombatEvent: type inherits GameEvent { hex: xpoint new: () { } toString: () string { return "start combat[" + hex.x + ":" + hex.y + "]" } } StopCombatEvent: type inherits GameEvent { hex: xpoint new: () { } toString: () string { return "stop combat[" + hex.x + ":" + hex.y + "]" } } */ } // namespace engine
36575a7c9801375f634e56eebc2366444ab6f663
4243054350a33a5cca74e8fdba792e62766d2380
/src/builders/ConnectionBuilder.h
75e54fd8c05401d9eabcb81438bf6fe3beb8c88b
[ "MIT" ]
permissive
zhangfang/sdp-cpp
f40afb7f25ff2cbeb592f6e1dc12a037c5df4020
4bf23de4cf6ade65fedb68a8c8a5baf4bd6a3e6d
refs/heads/master
2023-02-23T04:27:23.832845
2021-01-25T11:47:40
2021-01-25T11:47:40
null
0
0
null
null
null
null
UTF-8
C++
false
false
982
h
ConnectionBuilder.h
#ifndef _SDP_IMPL_CONNECTION_BUILDER_H_ #define _SDP_IMPL_CONNECTION_BUILDER_H_ #include "Builder.h" #include "../../include/CandidateAttribute.h" using namespace sdp; using namespace abnf; class ConnectionBuilder : public Builder { private: Connection* conn; public: virtual void* visit(Rule_connection_field* rule) { //Create object conn = new Connection(); //Generate visitRules(rule->rules); //Return it return conn; } virtual void* visit(Rule_nettype* rule) { //Generate std::string nettype = rule->spelling; //Set it conn->setNetType(nettype); //Return it return NULL; } virtual void* visit(Rule_addrtype* rule) { //Generate std::string addrtype = rule->spelling; //Set conn->setAddrType(addrtype); //Return it return NULL; } virtual void* visit(Rule_connection_address* rule) { //Generate std::string address = rule->spelling; //Set it conn->setAddress(address); //Return it return NULL; } }; #endif
c7444a38e0c2c9c50aecebf10ca43d2f26e1a8b2
6a3890b734797641a0e45dc2d882da370de63e49
/include/functionCalls.h
09600e37743e214c05cae821ba855f568937a53a
[]
no_license
SysSynBio/StoichiometricBalance
f85222fd4bf650dbe0872dd29db10fd4b6ff30f6
2a9d3aac66bf5fc9ea1e29cb782afa4ae034983b
refs/heads/master
2023-03-16T13:22:54.631650
2020-10-29T21:49:13
2020-10-29T21:49:13
null
0
0
null
null
null
null
UTF-8
C++
false
false
385
h
functionCalls.h
#include <string> #include <sstream> #include <vector> using namespace std; void sample_dist(int npro, vector<double> bin, vector<double> cdf, vector<double> &rval); void shuffle_abund(int npro, vector<double> abund, vector<double> &rval, int Nconstrain, vector<int> constrain); void get_variances(int Npro, int Nif, Protein *wholep, vector<double> R, double *ivars, double *imean);
ec77930945fc8fd22248ed64818f45f47b2a641d
df5815c14daaf31fbb20a71e693ff8a2e4bb99d6
/S5engine/include/tools/widgets/texturewidget.h
e1812884d86f6a79d6e5d1bb731a0d84dd4feeff
[]
no_license
smatcher/S5old
5ce05352d16ae2a75d4111f0a797c9afa117dccf
f2f2ceaa39037b8760fc6743cfbfd10367ba59a7
refs/heads/master
2020-03-30T15:17:57.359493
2012-05-06T14:45:35
2012-05-06T14:45:35
null
0
0
null
null
null
null
UTF-8
C++
false
false
675
h
texturewidget.h
#ifndef TEXTUREWIDGET_H #define TEXTUREWIDGET_H #include "tools/widgets/resourcewidget.h" #include <QGLWidget> class TextureData; class QLabel; class TextureWidget : public ResourceWidget { Q_OBJECT private: class TexturePreview : public QGLWidget { private: GLint glId; public : TexturePreview(QGLWidget* shared, GLint glId); virtual void paintGL(); void setGLId(GLint glId); }; QPushButton* m_debug; TexturePreview* m_preview; QLabel* m_resolution_info; QLabel* m_openglId_info; public: TextureWidget(TextureData& resource); virtual ~TextureWidget(); virtual void updateData(); public slots: void addToDebug(); }; #endif // TEXTUREWIDGET_H
c7811829e1d38b72845b542ae41b8f10c9e4b10b
00e1e9ba101264a67c30023118654fbfbfc5bb05
/Engine Hack Base New/cvar.h
b4859abcfdcf3c8dc1a67246757e43cfbc9b3477
[]
no_license
snr63g/Engine-Hack-Base-New
1cc25e5eedcfb28284f54fdcd466f3bc75e95bb4
c39352635db85d5ff9cc3e2d5b5668231baec32c
refs/heads/master
2022-02-26T17:48:38.785550
2019-10-03T10:34:37
2019-10-03T10:34:37
null
0
0
null
null
null
null
UTF-8
C++
false
false
127
h
cvar.h
#ifndef CVAR_H #define CVAR_H class CVARlist { public: void init(); public: int cvar_test; }; extern CVARlist cvar; #endif
abe27b1dddd4813ac101720bc8fe023cc555d2e1
26a99f5fc1ea04d5b3388226e4a246c265de0630
/aod-labs/divide-conquer.cpp
87772980cb6529b8b7fcc81c50612221ea64e70a
[]
no_license
Keyreach/archived_repos
ad382b19866c93035a7b207ccc318310caa05b77
665816bdb2aecb9c92c7c8330be902db94405321
refs/heads/master
2020-12-20T20:36:54.365485
2020-01-25T17:26:08
2020-01-25T17:26:08
236,202,920
0
0
null
null
null
null
UTF-8
C++
false
false
687
cpp
divide-conquer.cpp
#include <iostream> using namespace std; int getmax(int *a, int b, int e){ for(int i = 0; i < b; i++){ printf(" "); } for(int i = b; i < e; i++){ printf("#"); } printf("\n"); //getchar(); if(e - b < 2){ if(a[b]>a[e]) return a[b]; else return a[e]; } int m = (b+e)/2; int u = getmax(a, b, m); int v = getmax(a, m, e); if(u > v) return u; else return v; } void displayArray(int *arr, int n){ for(int i=0; i<n; i++){ cout << arr[i] << " "; } cout << endl; } int main(){ int n = 20; int *arr = new int[n]; srand(time(NULL)); for(int i=0; i<n; i++){ arr[i] = rand()%200; } displayArray(arr, n); cout << getmax(arr, 0, n) << endl; return 0; }
7de4e48aa2ed1d0ae9e971b853b85039efb4abdd
33c9d163262d88ccfdcf985a45a245105daf4332
/NodeMCU_Antares/NodeMCU_Antares.ino
eaf666708d7ac1887345fa9df2c6249a88eed8f7
[]
no_license
LintangWisesa/NodeMCU_ESP8266_Antares
16f68da4bb01b643c760453b4d8591bb1844f611
d5093742e66ee6aa76d04b072f4ce369962190a9
refs/heads/master
2020-03-25T01:33:46.364341
2018-08-02T12:43:19
2018-08-02T12:43:19
143,243,491
0
0
null
null
null
null
UTF-8
C++
false
false
1,066
ino
NodeMCU_Antares.ino
#include "AntaresESPHTTP.h" #include "DHT.h" #define DHTPIN D5 #define DHTTYPE DHT11 DHT dht(DHTPIN,DHTTYPE); #define SERVER "http://platform.antares.id" #define PORT "8080" #define ACCESSKEY "your_antares_access_key" #define WIFISSID "your_wifi_name" #define PASSWORD "your_wifi_password" String projectName = "your_antares_application_name"; String deviceName = "your_antares_device_name"; Antares antares(ACCESSKEY,SERVER,PORT); void setup() { Serial.begin(115200); pinMode(D5,INPUT); antares.setDebug(true); antares.wifiConnection(WIFISSID,PASSWORD); } void loop() { String suhu = String(dht.readTemperature()); String lembab = String(dht.readHumidity()); String pot = String(analogRead(A0)); int sizeData = 3; String dataName[sizeData],dataValue[sizeData]; dataName[0]= "Suhu"; dataName[1]= "Lembab"; dataName[2]= "Pot"; dataValue[0]= suhu; dataValue[1]= lembab; dataValue[2]= pot; Serial.println(antares.storeData(projectName, deviceName, dataName, dataValue,sizeData)); delay(10000); }
f0e67f3b7bbb2cb2e2154573e0a6c28b4508688a
63c2bb17e0ff192ef3132a2c92b8f578bc7cef6d
/band/report.cpp
630ab3152fcbec5cbc1a5211bd6ff78809c87dbb
[]
no_license
miyake/SFA
e76bc13a919c4a817f89f44c7049ed469577a32b
665def4cd519d2ec118535a17aa72e68fbe3d17d
refs/heads/master
2022-11-07T09:56:52.242861
2020-06-28T12:39:08
2020-06-28T12:39:08
275,582,738
0
0
null
null
null
null
UTF-8
C++
false
false
506
cpp
report.cpp
// report #include <iostream.h> #include <fstream.h> #include <math.h> #include <process.h> main() { double pi=3.1415,h=1.0545,c=2.9979,e=4.80325; double a_Au=4.08,a_Ag=4.09,a_Cu=3.61; double delta_Au,delta_Ag,delta_Cu; delta_Au=(pow(12*pi*pi,2/3)*h*c)/(2*e*a_Au*a_Au); delta_Ag=(pow(12*pi*pi,2/3)*h*c)/(2*e*a_Ag*a_Ag); delta_Cu=(pow(12*pi*pi,2/3)*h*c)/(2*e*a_Cu*a_Cu); cout << "Au : " << delta_Au << "\n"; cout << "Ag : " << delta_Ag << "\n"; cout << "Cu : " << delta_Cu << "\n"; };
2525fafc3dd63906902eba47b181cfe22a2ef93e
e39f063bbad792fe7cd760b486c7009659b5d90b
/src/Scene.h
2c7d39a7b3fdead9682354c7381b6b925b9c1a20
[]
no_license
xiyuanguo/CGproject4
084176ab116ece480d5811d8b460c9287f15b0f0
3b81a8c6c1cafa17d893cfdbcde01c201074a326
refs/heads/master
2021-01-25T01:22:10.962145
2017-06-19T08:35:52
2017-06-19T08:35:52
94,754,319
0
0
null
null
null
null
GB18030
C++
false
false
5,303
h
Scene.h
#ifndef Scene_H_ #define Scene_H_ #pragma once #include"Point.h" #include"Light.h" #include"Object.h" #include"Ray.h" #include<vector> #include<iostream> using namespace std; class Scene{ public: Point eye;//่ฆ–้ปž Point lb;//ๅทฆไธ‹ Point rt;//ๅณไธŠ int width; int height; int maxDepth; vector<Object*> objects;//็‰ฉไปถๆ•ธ็ต„ vector<Light*> lights;//ๅ…‰ๆบๆ•ธ็ต„ Vector3 *buffer;//ไฝๅœ– Scene(); void setLight(); void setObject(); Vector3 rayTracing(Ray &ray,int depth); Vector3 rayShading(Object *object,Ray &ray,int depth); int nearestObject(Ray &ray); float rayToObject(Ray &ray,Object *obj); void writeBuffer(); void display(); }; Scene::Scene(){ eye=Point(0,60,-5); width=400; height=400; maxDepth=20; int screenSize=20; lb=Point(-screenSize,eye.y-screenSize,0); rt=Point(screenSize,eye.y+screenSize,0); buffer=new Vector3[width*height]; setLight(); setObject(); } void Scene::setLight(){ Light *l=new Light(); l->setPosition(0,100,20); l->setColor(1,1,1); l->setIa(2); lights.push_back(l); l=new Light(); l->setPosition(-20,150,-50); l->setColor(1,1,1); lights.push_back(l); } void Scene::setObject(){ Plane *o=new Plane(); //floor o->setPosition(Point(0)); o->setNormal(Vector3(0,1,0)); o->setKd(0.5,1,0.5); //o->setKs(0.5,0.5,0.5); objects.push_back(o); //ceiling o=new Plane(); o->setPosition(0,200,0); o->setNormal(Vector3(0,-1,0)); o->setKd(0.5,1,0.5); //o->setKs(0.8,0.8,0.8); objects.push_back(o); //left o=new Plane(); o->setPosition(-100,0,20); o->setNormal(10,0,0); o->setKd(0.1,0.1,0.1); o->setKs(0.8,0.8,0.8); objects.push_back(o); //right o=new Plane(); o->setPosition(100,0,20); o->setNormal(-10,0,0); o->setKd(0.1,0.1,0.1); o->setKs(0.8,0.8,0.8); objects.push_back(o); //font o=new Plane(); o->setPosition(0,0,100); o->setNormal(0,0,-1); o->setKd(0.9,0.8,0.2); //o->setKs(0.5,0.5,0.5); objects.push_back(o); //begind /*o=new Plane(); o->setPosition(0,0,-100); o->setNormal(0,0,1); o->setKd(0.9,0.8,0); //o->setKs(0.5,0.5,0.5); objects.push_back(o);*/ Sphere *s=new Sphere(); s->setPosition(20,30,40); s->setRadius(20); s->setKd(0.2,0.2,1); //s->setKs(0.4,0.4,0.8); s->setKt(0.6,0.6,0.6); objects.push_back(s); s=new Sphere(); s->setPosition(0,60,80); s->setRadius(40); s->setKd(0.1,0.1,0); s->setKs(0.8,0.8,0.8); objects.push_back(s); } void Scene::display(){ buffer=new Vector3[width*height]; writeBuffer(); glRasterPos2f(-1,-1); glDrawPixels(width,height,GL_RGB,GL_FLOAT,(const GLvoid*)buffer); } void Scene::writeBuffer(){ Point screen(width-1,height-1,1); Ray r(eye,Vector3(1)); Vector3 color; int index=0; int percent; int a=0; for(int j=0;j<height;j++){ for(int i=0;i<width;i++){ Point screenPoint=Point(i,j,0)/screen*(rt-lb)+lb; screenPoint.z=screen.z; r.setDirection((screenPoint-eye)); color=rayTracing(r,1); buffer[index++]=color; /*if(color==0){ buffer[index-1]=buffer[index-2]; }*/ percent=index%(height*width/100); if(percent==0){ char t = 8; cout<<a++<<"%"; for(int i=0;i<10; i++){ cout << t; } } } } } Vector3 Scene::rayTracing(Ray &ray,int depth){ int nearIndex=nearestObject(ray); if(nearIndex>=0){ //cout<<"near: "<<nearIndex; return rayShading(objects[nearIndex],ray,depth); } return 0; } Vector3 Scene::rayShading(Object *object,Ray &ray,int depth){ Vector3 color=0; Point hitPoint=object->hitPoint(ray); Vector3 sRay; Ray shadowRay,rRay,tRay; Vector3 rColor=0,sColor=0,tColor=0; for(int i=0;i<lights.size();i++){ if(object->isNormalSide(lights[i]->position)){ sRay=lights[i]->position-hitPoint; sRay.normalize(); shadowRay.position=lights[i]->position; shadowRay.direction=hitPoint-lights[i]->position; shadowRay.direction.normalize(); int nearIndex=nearestObject(shadowRay); if(objects[nearIndex]==object){ sColor+=lights[i]->color*object->kd*sRay.dot(object->getNormal(hitPoint))*lights[i]->Ia; }else{ sColor+=lights[i]->color*object->kd*sRay.dot(object->getNormal(hitPoint))*lights[i]->Ia; sColor*=objects[nearIndex]->kt; } } } if(depth<maxDepth){ if(object->ks!=0){ rRay.position=hitPoint; rRay.direction=ray.reflect(object->getNormal(hitPoint)); rColor=rayTracing(rRay,depth+1); if(object->type==1){ //cout<<"rcolor: "<<rColor<<endl; } rColor+=rColor*object->ks; } if(object->kt!=0){ tRay.position=hitPoint; tRay.direction=ray.direction;//ๆœชๅŠ ๆŠ˜ๅฐ„็އ tColor=rayTracing(tRay,depth+1); } } float a=object->kd.abs(); float b=object->ks.abs(); float c=object->kt.abs(); if(a+b!=0){ color+=(sColor*a+rColor*b+tColor*c)/(a+b*2+c); } if(color.getMax()>1){ color/=color.getMax(); //cout<<"color: "<<color.x<<" "<<color.y<<" "<<color.z<<endl; } return color; } int Scene::nearestObject(Ray &ray){ float nearDistance=1e10; int nearIndex=-1; for(int i=0;i<objects.size();i++){ if(objects[i]->isRayHit(ray)){ float temp=rayToObject(ray,objects[i]); if(temp<nearDistance){ nearDistance=temp; nearIndex=i; } } } return nearIndex; } float Scene::rayToObject(Ray &ray,Object *obj){ if(obj->isNormalSide(ray.position)){ Vector3 distance; distance=obj->hitPoint(ray)-ray.position; return distance.abs(); } return -1; } #endif
37703878c514fdecd9346e746eae48a094ff0971
8e56fcfff92a958404834c9ffc599e070ce68c9d
/tests/unit_tests_src/shared/common/test_scalar_functions/test_scalar_functions.cpp
352f2ab2453dc002bf2792052c05ba1a18a9d2a8
[ "Apache-2.0" ]
permissive
Xiangyu-Hu/SPHinXsys
723bca41c56792a2d30318e282eb5a3ca6cb63b5
1a06b77685d4687c8f4fa3efe51ef92936f24403
refs/heads/master
2023-08-30T19:42:52.584193
2023-08-30T19:13:56
2023-08-30T19:13:56
189,070,140
229
155
Apache-2.0
2023-09-14T19:34:44
2019-05-28T17:05:34
C++
UTF-8
C++
false
false
511
cpp
test_scalar_functions.cpp
#include "scalar_functions.h" #include "sphinxsys.h" #include <gtest/gtest.h> using namespace SPH; TEST(test_scalar_functions, test_WENO) { Real v1 = 1.0; Real v2 = 2.0; Real v3 = 3.0; Real v4 = 4.0; Real Left_state = getLeftStateInWeno(v1, v2, v3, v4); Real Right_state = getRightStateInWeno(v4, v3, v2, v1); EXPECT_EQ(2.5, Left_state); EXPECT_EQ(2.5, Right_state); } int main(int argc, char *argv[]) { testing::InitGoogleTest(&argc, argv); return RUN_ALL_TESTS(); }
3540d01c6b8bef24ddb6a1c97d54f1669d0f523d
300f69741119d3c51c3182d639b0f32b53769baa
/src/ram/analysis/Complexity.h
fb8d30f9737993a9991bf4417e0663653ec4cf1e
[ "UPL-1.0" ]
permissive
souffle-lang/souffle
a75aade06ca36beaa0e8defdef16959d460e0920
63d6684fe907e8c141d4ffa0e73aefcc857dd83f
refs/heads/master
2023-08-20T16:30:22.212802
2023-08-09T07:29:50
2023-08-09T07:29:50
53,711,734
766
213
UPL-1.0
2023-08-09T07:29:51
2016-03-12T03:39:22
C++
UTF-8
C++
false
false
1,428
h
Complexity.h
/* * Souffle - A Datalog Compiler * Copyright (c) 2019, The Souffle Developers. All rights reserved * Licensed under the Universal Permissive License v 1.0 as shown at: * - https://opensource.org/licenses/UPL * - <souffle root>/licenses/SOUFFLE-UPL.txt */ /************************************************************************ * * @file Complexity.h * * Get the complexity of an expression/condition in terms of * database operations. The complexity of an expression/condition is a * weighted sum. The weights express the complexity of the terms. ***********************************************************************/ #pragma once #include "ram/Node.h" #include "ram/TranslationUnit.h" #include "ram/analysis/Relation.h" namespace souffle::ram::analysis { /** * @class ComplexityAnalysis * @brief A Ram Analysis for determining the number of relational * operations in a condition / expression. * * */ class ComplexityAnalysis : public Analysis { public: ComplexityAnalysis() : Analysis(name) {} static constexpr const char* name = "complexity-analysis"; void run(const TranslationUnit& tUnit) override { ra = &tUnit.getAnalysis<RelationAnalysis>(); } /** * @brief Get complexity of a RAM expression/condition */ int getComplexity(const Node* value) const; protected: RelationAnalysis* ra{nullptr}; }; } // namespace souffle::ram::analysis
f3e0394741cd377512d1acf50f61d90e1ac9e425
0813e18eb6b6cd5de9898c33788b9ab7e93727c6
/codejam/2015/2/D.cc
a3742a756509f3439eb2724bb48ef2bee571e726
[ "MIT" ]
permissive
metaflow/contests
a769e97337363743a1ec89c292d27939781491d3
5e9ffcb72c3e7da54b5e0818b1afa59f5778ffa2
refs/heads/master
2021-07-13T00:09:23.470950
2021-06-28T10:54:47
2021-06-28T10:54:47
19,686,394
1
0
null
null
null
null
UTF-8
C++
false
false
4,085
cc
D.cc
#include<bits/stdc++.h> using namespace std; using vi = vector<int>; using ii = pair<int,int>; using vii = vector<ii>; using vvi = vector<vi>; using ll = long long; using llu = unsigned long long; using vb = vector<bool>; using vvb = vector<vb>; using vd = vector<double>; using vvd = vector<vd>; using vll = vector<ll>; using vs = vector<string>; const int INF = numeric_limits<int>::max(); const double EPS = 1e-10; const int MAX = 101; const ll MOD = 1000000007; ll DP[MAX][4][10]; int R, C; ll gcd(ll a, ll b) { while (b) { ll t = b; b = a % b; a = t; } return a; } ll lcm(ll a, ll b) { return a * b / gcd(a, b); } bool check(vvi& m, int r, int c) { if (r < 0 || r >= R) return true; c = (c + C) % C; const int dx[] = {-1, 1, 0, 0}; const int dy[] = {0, 0, 1, -1}; char v = m[r][c]; if (v == 0) return true; int count = 0; for (int i = 0; i < 4; i++) { int x = r + dx[i]; int y = (c + dy[i] + C) % C; if (x < 0 || x >= R) continue; if (m[x][y] == 0) { count = v; return true; } if (m[x][y] == v) { count++; } } return (count == v); } ll dp(int rows, int tabu, int mult) { if (rows == 0) { return 1; } auto &r = DP[rows][tabu][mult]; if (r == 0) { if (tabu != 2) { r = (r + dp(rows - 1, 2, mult)) % MOD; // 222222 if (C % 3 == 0 && rows > 1) { // 221 // 221 r = (r + gcd(mult, 3) * dp(rows - 2, 2, lcm(mult, 3))) % MOD; } if (C % 4 == 0 && rows > 2) { r = (r + gcd(mult, 4) * dp(rows - 3, 2, lcm(mult, 4))) % MOD; // 2122 // 2121 // 2221 } if (C % 6 == 0 && rows > 1) { /*112222 222112*/ r = (r + gcd(mult, 6) * dp(rows - 2, 2, lcm(mult, 6))) % MOD; } } if (tabu != 3 && rows > 1) { r = (r + dp(rows - 2, 3, mult)) % MOD; } } return r; } vector<vvi> solutions; void backtrack(vvi& m, int r, int c) { if (r == R) { bool found = false; for (auto a : solutions) { for (int sh = 0; sh < C && !found; sh++) { found = true; for (int i = 0; i < R && found; i++) { for (int j = 0; j < C && found; j++) { found = a[i][j] == m[i][(j + sh) % C]; } } } if (found) break; } if (!found) { vvi s(m.size()); for (int i = 0; i < R; i++) s[i] = m[i]; solutions.emplace_back(s); } return; } int x = r, y = c + 1; if (y == C) { y = 0; x++; } const int dx[] = {0, -1, 1, 0, 0}; const int dy[] = {0, 0, 0, 1, -1}; for (int i = 1; i < 4; i++) { m[r][c] = i; bool ok = true; for (int j = 0; j < 5; j++) { ok = ok && check(m, r + dx[j], c + dy[j]); } if (ok) backtrack(m, x, y); } m[r][c] = 0; } int main() {/* for (R = 1; R < 13; R++) { vvi m(R); for (C = 1; C < 13; C++) { solutions.clear(); for (int i = 0; i < R; i++) { m[i].clear(); m[i].resize(C, 0); } fill(&DP[0][0][0], &DP[MAX][0][0], 0); ll answer = dp(R, 0, 1); backtrack(m, 0, 0); if (answer == solutions.size()) continue; cout << R << " x " << C; cout << " (" << answer << ")"; cout << " <<<<<<<< " << solutions.size(); cout << endl; sort(solutions.begin(), solutions.end(), [&] (const vvi& a, const vvi& b) { for (int i = 0; i < R; i++) { for (int j = 0; j < C; j++) { if (a[i][j] == b[i][j]) continue; return a[i][j] < b[i][j]; } } return false; }); for (auto a : solutions) { for (int i = 0; i < R; i++) { for (int j = 0; j < C; j++) { cout << a[i][j]; } cout << endl; } cout << endl; } return 0; } } */ ios_base::sync_with_stdio(false); cin.tie(0); int tcc; cin >> tcc; for (int tc = 1; tc <= tcc; tc++) { cin >> R >> C; fill(&DP[0][0][0], &DP[MAX][0][0], 0); ll answer = dp(R, 0, 1); cout << "Case #" << tc << ": " << answer << endl; } }
39db56f69f26c1c1adc25b8dc757a22aedc912c2
1df9b68cbd8853f8820be0106e887ed5fce59ae1
/SchoolManager/School.h
016c9cc86681a5b16d011ab464bb08fd07482eb0
[]
no_license
zeweidd/firstDome
f90ffa0657764471351285be34e2c1c62c7dd00f
c1fc7929edb58e6924ab0ee02942033afeaef625
refs/heads/main
2023-02-12T21:17:12.519796
2021-01-11T10:57:28
2021-01-11T10:57:28
328,633,810
0
0
null
null
null
null
WINDOWS-1252
C++
false
false
250
h
School.h
#pragma once #include "Team.h" class School { Team classA; Team classB; Team classC; void manage_class(Team&); public: School() :classA("Aยฐร "), classB("Bยฐร "), classC("Cยฐร ") {} void information(); void manage(); };
c6d6932e119da62df1ea581a7652910930960e28
64a2b5b7db60e105fdcb48804fd2c13d0fc6de7b
/editor/mainwindow_tab/animtitle.h
65f6c0f29a076d93fe16a5323a16c36429859f81
[]
no_license
gameblabla/rockbot
d6d821b10c63d30a1758c7eab4d7e1affccac23f
c912f9728802cd9b3f0ca50bbfc5610c8f85674f
refs/heads/master
2022-11-02T16:21:55.157178
2019-04-23T21:12:01
2019-04-23T21:12:01
273,803,404
2
0
null
2020-06-20T23:56:13
2020-06-20T23:56:12
null
UTF-8
C++
false
false
459
h
animtitle.h
#ifndef ANIMTITLE_H #define ANIMTITLE_H #include <QWidget> #include <QTimer> class animTitle : public QWidget { Q_OBJECT public: explicit animTitle(QWidget *parent = 0); void update_properties(); protected: void paintEvent(QPaintEvent *event); private: QWidget *myParent; int _sprite_n; int _timer_next_frame; QTimer *_timer; QImage image; int max_frames; signals: public slots: void updateBG(); }; #endif // ANIMTITLE_H
ff2b1784c043f6fe3529b080ed9cb9d02b163b4f
4423987b3cb13ad3321479d11de9f0250575df75
/Codeforces/Individual/Virtual/EduRound1/cc.cpp
79b646fc4d423be8070f76fd450f5dd5be32c496
[]
no_license
samplex63/Competitive-Programming
5ebc3a933eed1a5921bea8e91b798c96225007bf
546aecd109dbdedef5b9b2afaddb1fa5ff69bbde
refs/heads/master
2022-12-04T16:51:57.648719
2020-08-24T13:37:47
2020-08-24T13:37:47
282,802,436
0
0
null
null
null
null
UTF-8
C++
false
false
813
cpp
cc.cpp
#include <bits/stdc++.h> using namespace std; #define fi first #define se second #define sz(x) (int) (x).size() typedef long long ll; typedef long double ld; const ld pi = acos(-1.0L); int main() { ios_base::sync_with_stdio(false); cin.tie(NULL); int n; cin >> n; vector<pair<ld, int>> vec(n); for(int i = 0; i < n; ++i) { ld x, y; cin >> x >> y; vec[i].fi = atan2(y, x); vec[i].se = i + 1; } sort(vec.rbegin(), vec.rend()); ld mini = numeric_limits<ld>::max(); pair<int, int> ans(1, 2); for(int i = 1; i <= n; ++i) { ld ang = vec[i - 1].fi - vec[i % n].fi; if(ang < 0) { ang = 2.0L * pi + ang; } // cerr << ang << " <- ang\n"; if(ang < mini) { mini = ang; ans.fi = vec[i % n].se; ans.se = vec[i - 1].se; } } cout << ans.fi << ' ' << ans.se << '\n'; return 0; }
b8eb2c2b3701f484bda713e234ff51b87e9c4832
64589428b06258be0b9b82a7e7c92c0b3f0778f1
/URI/1193.cpp
a0ff22cd9c72fc516566886bec99724ece554b22
[]
no_license
splucs/Competitive-Programming
b6def1ec6be720c6fbf93f2618e926e1062fdc48
4f41a7fbc71aa6ab8cb943d80e82d9149de7c7d6
refs/heads/master
2023-08-31T05:10:09.573198
2023-08-31T00:40:32
2023-08-31T00:40:32
85,239,827
141
27
null
2023-01-08T20:31:49
2017-03-16T20:42:37
C++
UTF-8
C++
false
false
1,860
cpp
1193.cpp
#include <iostream> #include <string> #include <cstdio> using namespace std; int valordec(string num){ int cont=1, valor=0; for (int i = num.size()-1; i >= 0; --i) { valor+=(num[i]-'0')*cont; cont*=10; } return valor; } int valorbin(string num){ int cont=1, valor=0; for (int i = num.size()-1; i >= 0; --i) { valor+=(num[i]-'0')*cont; cont*=2; } return valor; } int valorhex(string num){ int cont=1, valor=0; for (int i = num.size()-1; i >= 0; --i) { if (num[i]>='0' && num[i]<='9') valor+=(num[i]-'0')*cont; else valor+=(num[i]-'a'+10)*cont; cont*=16; } return valor; } string dec(int valor){ int vet[50], n=0; string ans; while(valor>0){ vet[n++]=valor%10; valor/=10; } for (int i = 0; i < n; ++i) { ans.push_back((char)vet[n-1-i]+'0'); } return ans; } string hex(int valor){ int vet[50], n=0; string ans; while(valor>0){ vet[n++]=valor%16; valor/=16; } for (int i = 0; i < n; ++i) { if (vet[n-1-i]<=9) ans.push_back((char)vet[n-1-i]+'0'); else ans.push_back((char)vet[n-1-i]-10+'a'); } return ans; } string bin(int valor){ int vet[50], n=0; string ans; while(valor>0){ vet[n++]=valor%2; valor/=2; } for (int i = 0; i < n; ++i) { ans.push_back((char)vet[n-1-i]+'0'); } return ans; } int main() { int N, valor; cin >> N; string num, base; for(int caso=1; caso<=N; caso++){ cin>> num >> base; if (base.compare("dec")==0){ valor = valordec(num); printf("Case %d:\n%s hex\n%s bin\n\n", caso, hex(valor).c_str(), bin(valor).c_str()); } else if (base.compare("hex")==0){ valor = valorhex(num); printf("Case %d:\n%s dec\n%s bin\n\n", caso, dec(valor).c_str(), bin(valor).c_str()); } else if (base.compare("bin")==0){ valor = valorbin(num); printf("Case %d:\n%s dec\n%s hex\n\n", caso, dec(valor).c_str(), hex(valor).c_str()); } } return 0; }
a21039b8e9c9cb95eb7009fe9c160f193941e5dc
23f59d8c524be424bd5d5b8047f22341c769fd3e
/Week 06/id_714/LeetCode_547_714.cpp
4eecb2394c4a12f7e7d8ad57851e2d26f78eb2e1
[]
no_license
cboopen/algorithm004-04
59ef7609eb0f8d5f36839c546b0943e84d727960
f564806bd8e18831eeb20f2fd4bdd2d4aaa829ce
refs/heads/master
2020-08-11T12:30:04.843364
2019-12-08T13:21:38
2019-12-08T13:21:38
214,565,309
2
0
null
2019-10-12T02:44:08
2019-10-12T02:44:08
null
UTF-8
C++
false
false
1,134
cpp
LeetCode_547_714.cpp
class UnionFind { public: UnionFind(int size) { count_ = size; parent_ = new int[size]; for (int i = 0; i < size; i++) { parent_[i] = i; } } ~UnionFind() { delete[] parent_; parent_ = nullptr; } void Union(int num1, int num2) { if (num1 == num2) return; int num1_root = parent(num1); int num2_root = parent(num2); if (num1_root == num2_root) return; parent_[num1_root] = num2_root; count_--; } int count() { return count_; } private: int count_ = 0; int *parent_ = nullptr; int parent(int num) { while (num != parent_[num]) { // ้กบไพฟๅŽ‹็ผฉ่ทฏๅพ„ parent_[num] = parent_[parent_[num]]; num = parent_[num]; } return num; } }; class Solution { public: int findCircleNum(vector<vector<int>> &M) { if (M.size() == 0 || M[0].size() == 0) return 0; UnionFind uf(M.size()); for (int i = 0; i < M.size(); i++) { for (int j = i; j < M.size(); j++) { if (M[i][j] == 1) { uf.Union(i, j); } } } return uf.count(); } };
58a5e8140bbd64326ea6c0d9fa7e49387c13bf4f
105e01d10b4ffe685998049106bfdb23d2ca509a
/datastructure/Array/arrayRotation.cpp
d7061eff9569f61503ff066ee1ae1954822ac643
[]
no_license
codeshef/datastructure-and-algorithm
131380a16178f89885b83c1d03ed355b8ca3543b
b368afa4e6ec666a32005071b423df6ffaa46c74
refs/heads/master
2020-04-05T07:47:57.633827
2018-04-04T18:58:30
2018-04-04T18:58:30
81,852,771
1
0
null
2017-07-27T17:51:17
2017-02-13T17:39:45
C++
UTF-8
C++
false
false
598
cpp
arrayRotation.cpp
// program for array rotation using juggling algorithm #include<iostream> using namespace std; int gcd(int a,int b){ if(b == 0){ return a; }else{ gcd(b,a%b); } } void rotate(int a[],int d,int n){ int i,j,k,temp; for(i=0;i<gcd(d,n);i++){ temp =a[i]; j =i; while(1){ k = j+d; if(k>=n){ k =k-n; } if(k ==i) break; a[j] = a[k]; j=k; } a[j]=temp; } } void printArray(int a[],int n){ for(int i=0;i<n;i++){ cout<<a[i]<<" "; } } int main(){ int a[]={1,2,3,4,5,6,7}; rotate(a,2,7); printArray(a,7); }
cc912df31cb6579025b07f207f814fbf8af4b181
d801b0a0e6ca300db487aac74d5f13d88474c263
/RtRuntime/src/RtRuntime/RtThread.cpp
1f06510a5b2c6699efeb0585bffd81bfd95122e8
[]
no_license
martinsteih/PluginSystem
2dd5dbfdc79bc59c9c6bacd888d53f8511b3b637
a4a6e299edd86fa535281e2dd3fffe68f80412f3
refs/heads/master
2023-01-24T04:49:33.848280
2020-12-04T10:16:46
2020-12-04T10:16:46
318,475,762
0
0
null
null
null
null
UTF-8
C++
false
false
1,388
cpp
RtThread.cpp
#include "../../include/RtRuntime/RtThread.hpp" #include <pthread.h> #include <syscall.h> #include <unistd.h> struct sched_attr { sched_attr() = default; sched_attr(uint64_t runtime, uint64_t deadline, uint64_t period, uint32_t policy) : sched_policy{policy}, sched_runtime{runtime}, sched_deadline{deadline}, sched_period{period} {} uint32_t size{sizeof(sched_attr)}; uint32_t sched_policy; uint64_t sched_flags; uint32_t sched_nice; int32_t sched_priority; uint64_t sched_runtime; uint64_t sched_deadline; uint64_t sched_period; }; RtThread::RtThread(SchedParams params, std::function<void()> function) : params{params}, callable{function}, thread{} {} void RtThread::Start() { thread = std::thread{callable}; set_attributes(params); cpu_set_t set; CPU_ZERO(&set); CPU_SET(1, &set); sched_setaffinity(thread.native_handle(), CPU_SETSIZE, &set); } long int RtThread::sched_setattr(SchedParams params, unsigned int flags) { sched_attr attr{static_cast<uint64_t>(params.runtime.count()), static_cast<uint64_t>(params.deadline.count()), static_cast<uint64_t>(params.period.count()), static_cast<uint32_t>(params.policy)}; return syscall(__NR_sched_setattr, thread.native_handle(), &attr, flags); } void RtThread::set_attributes(SchedParams params) { sched_setattr(params, 0); }
b51cf100c9383244d2987869225c9be6e0d618e0
865bfdce73e6c142ede4a7c9163c2ac9aac5ceb6
/Source/Generic/Patterns/Singleton.cpp
8f44181ded4babd185aa42c7bb80137e78316b9f
[]
no_license
TLeonardUK/ZombieGrinder
d1b77aa0fcdf4a5b765e394711147d5621c8d4e8
8fc3c3b7f24f9980b75a143cbf37fab32cf66bbf
refs/heads/master
2021-03-19T14:20:54.990622
2019-08-26T16:35:58
2019-08-26T16:35:58
78,782,741
6
3
null
null
null
null
UTF-8
C++
false
false
216
cpp
Singleton.cpp
// =================================================================== // Copyright (C) 2013 Tim Leonard // =================================================================== #include "Generic/Patterns/Singleton.h"
e2eacb13d48e35b93657b23b86ff544972d986f9
a633b4bac060cce6a8bf701e32c6e6af1623992d
/spruce/Input.cpp
40c133da7eb834afeced5c2299672226eaa9e000
[]
no_license
tomhauswald/spruce
c715a03290de58e8c36601e24df713d0186d3154
cbd4002792ef4008bed158bfac5e7fef0850653d
refs/heads/master
2021-01-10T22:49:43.323915
2018-02-01T22:41:30
2018-02-01T22:41:30
70,346,891
0
0
null
null
null
null
UTF-8
C++
false
false
217
cpp
Input.cpp
#include "Input.h" namespace spruce { std::bitset<GLFW_KEY_LAST> Input::sCurrentKeysDown; std::bitset<GLFW_KEY_LAST> Input::sPrevKeysDown; glm::dvec2 Input::sCurrentCursorPos; glm::dvec2 Input::sPrevCursorPos; }
4c891d7ca6a45b30f8ad31be7e2a3672ce77560a
96f041d05b8ddbc6406dcce8639ff8857e03b751
/src/XYCircularFit.cc
eea38d665b2e34f0ba22938a8873f0c0e384195d
[]
no_license
ESSnuSB/PathFinder
f06bb5fb031c1906d7cc41bb26a2dcdd22867fa5
2336f909c7a5d8626fb136c5b1af0efa9ae065a2
refs/heads/master
2020-12-22T10:36:36.490479
2020-01-28T14:40:59
2020-01-28T14:40:59
236,752,402
0
0
null
null
null
null
UTF-8
C++
false
false
4,808
cc
XYCircularFit.cc
/* * Implementaion of the circle fit as described in V.Karimaeki - "effective circle fitting for particle trajectories" */ #include "XYCircularFit.h" #include "TMatrixD.h" using namespace std; using namespace pathfinder; bool XYCircularFit::fit(vector<basicHit> inputHits, HoughMapMaximum* Parameter) { vector<double> XPos; vector<double> YPos; //cout << "Start Parameters for fit: " << startParams[0] << " " << startParams[1] << " " << startParams[2] << endl; double mean_x = 0.; double mean_y = 0.; double mean_x2 = 0.; double mean_xy = 0.; double mean_y2 = 0.; double mean_xr2 = 0.; double mean_yr2 = 0.; double mean_r2 = 0.; double mean_r4 = 0.; double Sx = 0.; double Sy = 0.; double Sxy = 0.; double Sxx = 0.; double Syy = 0.; double Sxr2 = 0; double Syr2 = 0.; double Sr2 = 0.; double Sr4 = 0.; double Sw = 0.; for(unsigned int iHit = 0 ; iHit < inputHits.size(); iHit++) { double pos[2]; pos[0] = inputHits[iHit].getX(); pos[1] = inputHits[iHit].getY(); double r2 = pos[0] * pos[0] + pos[1] * pos[1]; Sx += pos[0]; Sy += pos[1]; Sxx += pos[0] * pos[0]; Sxy += pos[0] * pos[1]; Syy += pos[1] * pos[1]; Sxr2 += pos[0] * r2; Syr2 += pos[1] * r2; Sr2 += r2; Sr4 += r2 * r2; Sw += 1.; XPos.push_back(pos[0]); YPos.push_back(pos[1]); } mean_x = Sx / (double)inputHits.size(); mean_y = Sy / (double)inputHits.size(); mean_x2 = Sxx / (double)inputHits.size(); mean_xy = Sxy / (double)inputHits.size(); mean_y2 = Syy / (double)inputHits.size(); mean_xr2 = Sxr2 / (double)inputHits.size(); mean_yr2 = Syr2 / (double)inputHits.size(); mean_r2 = Sr2 / (double)inputHits.size(); mean_r4 = Sr4 / (double)inputHits.size(); double Cxx = mean_x2 - mean_x * mean_x; double Cxy = mean_xy - mean_x * mean_y; double Cyy = mean_y2 - mean_y * mean_y; double Cxr2 = mean_xr2 - mean_x * mean_r2; double Cyr2 = mean_yr2 - mean_y * mean_r2; double Cr2r2 = mean_r4 - mean_r2 * mean_r2; double q1 = Cr2r2 * Cxy - Cxr2 * Cyr2; double q2 = Cr2r2 * (Cxx - Cyy) - Cxr2 * Cxr2 + Cyr2 * Cyr2; double phi_fit = 0.5 * atan2(2 * q1, q2); double kappa = (sin(phi_fit) * Cxr2 - cos(phi_fit) * Cyr2) / Cr2r2; double delta = -kappa * mean_r2 + sin(phi_fit) * mean_x - cos(phi_fit) * mean_y; double omega_fit = 2 * kappa / sqrt(1 - 4 * delta * kappa); double d0_fit = 2 * delta / (1 + sqrt(1 - 4 * delta * kappa)); //calculation of errors double u = 1 + omega_fit * d0_fit; double Sa = sin(phi_fit) * Sx - cos(phi_fit) * Sy; double Sb = cos(phi_fit) * Sx + sin(phi_fit) * Sy; double Sg = (sin(phi_fit) * sin(phi_fit) - cos(phi_fit) * cos(phi_fit)) * Sxy + sin(phi_fit) * cos(phi_fit) * (Sxx - Syy); double Sd = sin(phi_fit) * Sxr2 - cos(phi_fit) * Syr2; double Saa = sin(phi_fit) * sin(phi_fit) * Sxx - 2 * sin(phi_fit) * cos(phi_fit) * Sxy + cos(phi_fit) * cos(phi_fit) * Syy; TMatrixD V_inv(3, 3); V_inv(0, 0) = 0.25 * Sr4 - d0_fit * (Sd - d0_fit * (Saa = 0.5 * Sr2 - d0_fit * (Sa - 0.25 * d0_fit * Sw))); V_inv(0, 1) = -u * (0.5 * (cos(phi_fit) * Sxr2 + sin(phi_fit) * Syr2) - d0_fit * (Sg - 0.5 * d0_fit * Sb)); V_inv(0, 2) = omega_fit * (-0.5 * Sd + d0_fit * Saa) + 0.5 * u * Sr2 - 0.5 * d0_fit * ((2 * u + omega_fit * d0_fit) * Sa - u * d0_fit * Sw); V_inv(1, 0) = -u * (0.5 * (cos(phi_fit) * Sxr2 + sin(phi_fit) * Syr2) - d0_fit * (Sg - 0.5 * d0_fit * Sb)); V_inv(1, 1) = u * u * (cos(phi_fit) * cos(phi_fit) * Sxx + sin(2 * phi_fit) * Sxy + sin(phi_fit) * sin(phi_fit) * Syy); V_inv(1, 2) = u * (omega_fit * Sg - u * Sb); V_inv(2, 0) = omega_fit * (-0.5 * Sd + d0_fit * Saa) + 0.5 * u * Sr2 - 0.5 * d0_fit * ((2 * u + omega_fit * d0_fit) * Sa - u * d0_fit * Sw); V_inv(2, 1) = u * (omega_fit * Sg - u * Sb); V_inv(2, 2) = omega_fit * (omega_fit * Saa - 2 * u * Sa) + u * u * Sw; TMatrixD V = V_inv.InvertFast();//Attention: This line changes V_inv!!! double phiErr_fit = sqrt(abs(V(1, 1))); double d0Err_fit = sqrt(abs(V(2, 2))); double omegaErr_fit = sqrt(abs(V(0, 0))); /* cout << "Karimaeki Fit Phi: " << phi_fit <<" +- "<<phiErr_fit<< endl; cout << "Karimaeki Fit D0: " << d0_fit <<" +- "<<d0Err_fit<< endl; cout << "Karimaeki Fit Omega: " << omega_fit <<" +- "<<omegaErr_fit<< endl; */ //fittedXYTrackParameter = new TrackParameterXY(phi, d0, omega); fittedXYTrackParameter = new TrackParameterXY(phi_fit, -d0_fit, omega_fit, phiErr_fit, d0Err_fit, omegaErr_fit); // return (fitResult.IsValid()); return(true); }//bool XYLinearFit::fit(vector<basicHit> inputHits)
d4c4bb50014a15762e98991a0f4eb275f67953e0
6cee25417e81dfc615a1baf227c9a8e745d21bbe
/common/CompositeMonsterProvider.cpp
e4a238176f0ce20420caa02ffdb1ec663d981f4f
[]
no_license
Koukan/Grab
e8c31f688ccbfdee55327151d65c9b1c0dbac43d
263c774adaae7fb5baccef22186b37afcb2d285c
refs/heads/master
2018-12-28T20:19:50.985625
2013-12-02T19:33:29
2013-12-02T19:33:29
13,930,582
1
0
null
null
null
null
UTF-8
C++
false
false
1,778
cpp
CompositeMonsterProvider.cpp
#include "CompositeMonsterProvider.hpp" #include "CompositeMonster.hpp" #include "Converter.hpp" CompositeMonsterProvider::CompositeMonsterProvider() : XMLProvider("compositemonster", 6) { } CompositeMonsterProvider::~CompositeMonsterProvider() { } void CompositeMonsterProvider::handleXML(TiXmlNode *parent, Core::ResourceManager &manager) { std::string name, bossname; for (TiXmlAttribute *attrib = static_cast<TiXmlElement*>(parent)->FirstAttribute(); attrib != 0; attrib = attrib->Next()) { name = attrib->Name(); if (name == "bulletml") this->_bulletml = attrib->Value(); else if (name == "name") bossname = attrib->Value(); } CompositeMonster *mon = new CompositeMonster(_bulletml); for (TiXmlNode *child = parent->FirstChild(); child; child = child->NextSibling()) { if (child->Type() != TiXmlNode::ELEMENT) continue ; CompositeMonsterProvider::monster tmp; tmp.x = 0; tmp.y = 0; for (TiXmlAttribute *attrib = static_cast<TiXmlElement*>(child)->FirstAttribute(); attrib != 0; attrib = attrib->Next()) { name = attrib->Name(); if (name == "bulletml") tmp.bulletmlscript = attrib->Value(); else if (name == "name") tmp.name = attrib->Value(); else if (name == "x") tmp.x = Net::Converter::toInt<int>(attrib->Value()); else if (name == "y") tmp.y = Net::Converter::toInt<int>(attrib->Value()); else if (name == "depends") { size_t index = 0; size_t pos; std::string str(attrib->Value()); while ((pos = str.find(',', index)) != std::string::npos) { tmp.depends.push_back(str.substr(index, pos)); index = pos + 1; } tmp.depends.push_back(str.substr(index)); } } mon->addMonster(tmp); } this->addResource(bossname, *mon, manager); }
4529028237be421d8078396ebdbb04971b47d7f2
bd0e04dbf20494429ffcbc8638d7505df2b107fb
/baek_project1/์•ŒํŒŒ๋ฒณ์ •๋ ฌ_๋Œ€๋น„๋ฐ˜๋ฌธ์ œ.cpp
777240084b70f29bbbdc3f882f6504c560eddabd
[]
no_license
jejin009/BOJ
3139bd16071c5ac94a4194a0f854af00f1cadc1b
5a4e7b6d6c5b18e3c6d35c8e13b3b44a98ae1cac
refs/heads/master
2023-05-15T05:20:46.723044
2021-06-14T17:19:06
2021-06-14T17:19:06
301,052,420
0
0
null
null
null
null
UTF-8
C++
false
false
432
cpp
์•ŒํŒŒ๋ฒณ์ •๋ ฌ_๋Œ€๋น„๋ฐ˜๋ฌธ์ œ.cpp
#include<iostream> #include<algorithm> #include<vector> #include<map> bool myPairCMP(); using namespace std; int main() { int N; string temp; vector<pair<string,int>> vec; cin >> N; for (int i = 0; i < N; i++) { cin >> temp; vec.push_back(make_pair(temp, temp.length)); } sort(vec.begin(), vec.end(), myPairCMP); for (int i = 0; i < N; i++) { cout << vec[i].first << endl; } } bool myPairCMP() { return true; }
fd4ff397655a0a3205ab3179ec30b601ab305a64
5ce60ac1de6a5245dc9758cb26107d97fd67d372
/Estrutura de Dados/AULA 9/Programas/Video/main.cpp
6ba896beaf6d6ef9cee4849749372e2b747ca6f0
[]
no_license
LeonardoHB98/C--_introduction
2aa4b2a2c0f69331da72acc2dc92d6093da8cee0
21950bf9f34356f9d8262d1d0cb3ae362859c692
refs/heads/main
2023-06-02T14:24:40.538075
2021-06-09T22:25:42
2021-06-09T22:25:42
375,498,581
0
0
null
null
null
null
UTF-8
C++
false
false
1,645
cpp
main.cpp
#include <iostream> #include <locale.h>//setlocale #include <stdlib.h>//system #include <string>// Textos em gerral #include <cstdlib> using namespace std; int main(void) { int i=10,*p; p=&i; cout << *p << " " << i + *p<< " " << *p**p << " " << i+**&p; system("pause"); // // int *ptr, *qtr, *r; // // int a = 10, b = 20; // // ptr = &a; // // qtr = &b; // // *ptr = *ptr + *qtr; // // ++(*qtr); // // r = qtr; // // qtr = ptr; // // cout << *ptr<<*qtr<<*r<<a<<b; // // int deciframe(int v[ ], int tam, int e); // // int v[10] = {0, 2, 4, 6, 8, 10, 20, 100}; // int tam = 8; // int e = -6; // // cout << deciframe(v,tam,e); // bool busca(int vetor[ ], int n, int tam); // // int vetor[] = {1,2,3,4,5,6,7,8}; // // busca(vetor, 4, 7); // // busca(vetor, 2, 7); // // busca(vetor, 0, 7); // // // return 0; } //int deciframe(int v[ ], int tam, int e){ // int i = 0, f = tam -1, m; // while ( i <= f ){ // m = ( i + f ) / 2; // // if ( v[m] == e ) { // return m; // } // if ( e < v[m] ) { // f = m - 1; // }else{ // i = m + 1; // } // // return -1; //} //} //bool busca(int vetor[ ], int n, int tam) //{ // int ini=0, mid; // while (ini <= tam) // { // cout << " x "; // mid = (ini + tam)/2; // if (vetor[mid] == n) // return true; // else if (n > vetor[mid]) // ini = mid+1; // else // tam = mid-1; // } // return false; //}
7167966b247c27717ea3a6ceec6ffeb1e169e973
621df18c7e6514ec733bba6cd664211d4dd767d0
/snakefill.cpp
6f0ddfc82c8e1ba1f9c9f3212165998e21d932e1
[]
no_license
Rose999999/Algorithm-Competition-Practice
9ca4cbb2c9c9243923f8a639e6eaef49e67aa4c5
2ea5596c7f0b57694306746f07eef89f7d2a70f2
refs/heads/main
2022-12-31T07:21:45.756525
2020-10-22T05:54:49
2020-10-22T05:54:49
305,673,772
4
0
null
null
null
null
GB18030
C++
false
false
586
cpp
snakefill.cpp
#include<stdio.h> #include<string.h> #define maxn 20 int a[maxn][maxn]; int main() { int n,x,y,tot=0; scanf("%d",&n); memset(a,0,sizeof(a)); tot = a[x=0][y=n-1] = 1; while(tot<n*n) { while(x+1<n && !a[x+1][y]) a[++x][y] = ++tot;//ๅ…ˆๅŠ tot๏ผŒๅ†่ต‹ๅ€ผ while(y-1>=0 && !a[x][y-1]) a[x][--y] = ++tot; while(x-1>=0 && !a[x-1][y]) a[--x][y] = ++tot; while(y+1<n && !a[x][y+1]) a[x][++y] = ++tot; } for(x=0;x<n;x++) { for(y=0;y<n;y++) printf("%3d",a[x][y]);//ไฟ่ฏๆ•ฐไธŽๆ•ฐไน‹้—ด็š„้—ด้š”๏ผŒ%3d่พ“ๅ‡บไฝๅฎฝไธบ3ไฝ printf("\n"); } return 0; }
a63f9570db240a1f89b7646ebafe91e0b0ea885e
bcb1b8453096699f944e8e3a0dc5b36178d385a3
/include/parse/match_type.cpp
eb25cdc9cac8217e05936ee38fab7fbd0eb06a57
[ "MIT" ]
permissive
nathanmullenax83/rhizome
0d490bafc40251ccf014b47aeb7e21fdb25fec36
e7410341fdc4d38ab5aaecc55c94d3ac6efd51da
refs/heads/master
2020-12-15T01:21:24.799354
2020-07-11T14:46:08
2020-07-11T14:46:08
234,942,360
1
0
MIT
2020-07-05T00:46:50
2020-01-19T18:04:15
C++
UTF-8
C++
false
false
3,070
cpp
match_type.cpp
#include "match_type.hpp" #include "log.hpp" namespace rhizome { namespace parse { MatchType::MatchType( string const &tname ): name(tname) { } Gramex * MatchType::clone_gramex(bool withmatches) const { MatchType *mt = new MatchType(name); if( withmatches ) { mt->append_all( clone_matched_tokens()); } return mt; } bool MatchType::accepts(GrammarFn lookup) const { (void)lookup; return false; } #pragma GCC diagnostic push #pragma GCC diagnostic ignored "-Wunused-parameter" void MatchType::match( ILexer *lexer, GrammarFn lookup, stringstream &captured ) { //static rhizome::log::Log log("type_match"); try { string putback; // log.info("Extracting next thing:"); Thing *temp = lexer->next_thing(putback); //log.info("Putback buffer: "); //log.info(putback); if( temp->rhizome_type() != this->name ) { stringstream ss; ss << "Expected token of type " << name << ", but got " << temp->rhizome_type() <<" '"; temp->serialize_to(0,ss); ss << "'"; delete temp; throw runtime_error(ss.str()); } else { append_all({temp}); captured << putback; } } catch( std::exception *e ) { std::cout << "Error: " << e->what() << "\n"; dump(std::cout); } #ifdef INSTRUMENTED std::cout << "-- /match type\n"; #endif } bool MatchType::can_match( ILexer *lexer, GrammarFn lookup ) const { if( lexer->has_next_thing()) { Thing *p = (lexer->peek_next_thing(1,true))[0]; return p->rhizome_type()==name; } else { return false; } } #pragma GCC diagnostic pop void MatchType::serialize_to( size_t level, std::ostream &out ) const { (void) level; out << "<" << name << ">"; } string MatchType::rhizome_type() const { return "gramex::MatchType"; } bool MatchType::has_interface( string const &name ) { return name==rhizome_type()||name=="gramex"||name=="Thing"; } Thing * MatchType::invoke( Thing *context, string const &method, Thing *arg) { (void)method; (void)arg; (void)context; throw runtime_error("Invoke not implemented."); } void MatchType::dump( std::ostream &out ) const { out << "DEBUG DUMP: gramex::MatchType\n"; out << "=============================\n"; out << "\t" << "Type name: " << name; out << "====== END: gramex::MatchType\n"; } } }
24702dce74fa420b41361090b54c68e05296f0a9
c695ed452c9cc7bf6a8393a172dbc4391caae0bf
/spiral-matrix-ii/spiral-matrix-ii.cpp
d66a0c8d464cb931f2aeacebd54abd2ebfd6f084
[]
no_license
prashanth-io/LeetCode
ccce6dbce01cbce34e7e9f774bafc05beabce4b1
4dab776c7fe3755ec43855671942b4badcadfd19
refs/heads/main
2023-08-13T02:18:33.952884
2021-09-30T21:02:47
2021-09-30T21:02:47
399,352,697
0
0
null
null
null
null
UTF-8
C++
false
false
923
cpp
spiral-matrix-ii.cpp
class Solution { public: vector<vector<int>> generateMatrix(int n) { int left=0; int right=n-1; int top=0; int bottom=n-1; int val=1; vector<vector<int>>a(n,vector<int>(n)); while(val<=n*n) { for(int i=left;i<=right;i++) { a[top][i]=val++; } top++; for(int i=top;i<=bottom;i++) { a[i][right]=val++; } right--; if(top<=bottom) { for(int i=right;i>=left;i--) { a[bottom][i]=val++; } bottom--; } if(left<=right) { for(int i=bottom;i>=top;i--) { a[i][left]=val++; } left++; } } return a; } };
2a9925e8dd236355cb98b891c92601997f451895
b98302444024d9041192772437bfd7a6334423f7
/boo.cpp
cbea00718aec9ed55d21163a6c4ba0a55c949bee
[]
no_license
JGPorteous/VarTest
662783f6fcf555a465413b35d0a1f7a3f2a09575
0d92bc8bf0c1f319084c966f6be68534d1fd9b88
refs/heads/master
2016-09-11T06:53:05.318687
2015-03-17T17:52:30
2015-03-17T17:52:30
32,410,400
0
0
null
null
null
null
UTF-8
C++
false
false
63
cpp
boo.cpp
#include "boo.h" int i = 1; boo::boo() { } boo::~boo() { }
4756e4addf6f617995cb731a6106bb1ad2de1f80
bafb289b7f0cb0a488f3948ae05828e2ffa1f6ec
/map.h
a9cff389607d87fd945991bc46cafc80287e5775
[]
no_license
Yarosurafu/Astroexplorer
c706b7c2310e1abc12a7ab30dcdea78fa1040076
d76fdd059fb8d536af26ec7c09d32a9682bb768e
refs/heads/master
2023-02-26T01:44:27.779504
2021-01-17T17:19:50
2021-01-17T17:19:50
330,042,294
4
1
null
null
null
null
WINDOWS-1251
C++
false
false
1,503
h
map.h
#pragma once #include <SFML\Graphics.hpp> #include <SFML\Audio.hpp> #include <vector> using namespace sf; class Map { //-----ะขะตะบัั‚ัƒั€ั‹ ะฟะปะฐะฝะตั‚----- Texture m_alienTexture; Texture m_sandTexture; Texture m_earthTexture; //------------------------- //-----ะกะฟั€ะฐะนั‚ั‹ ะฟะปะฐะฝะตั‚----- Sprite m_alienPlanet; Sprite m_sandPlanet; Sprite m_earthPlanet; //------------------------- RectangleShape m_space;//ะบะพัะผะพั std::vector<CircleShape> m_closeStars;//ะฒะตะบั‚ะพั€, ั…ั€ะฐะฝัั‰ะธะน ะทะฒั‘ะทะดั‹ ะทะฐะดะฝะตะณะพ ะฟะปะฐะฝะฐ std::vector<CircleShape> m_farStars;//ะฒะตะบั‚ะพั€, ั…ั€ะฐะฝัั‰ะธะน ะทะฒั‘ะทะดั‹ ะฟะตั€ะตะดะฝะตะณะพ ะฟะปะฐะฝะฐ std::vector<Sprite> m_planets;//ะฒะตะบั‚ะพั€ ะฟะปะฐะฝะตั‚ void createStars(std::vector<CircleShape>& stars, const Color& color); public: Map(); Map& createPlanet();//ัะณะตะฝะตั€ะธั€ะพะฒะฐั‚ัŒ ะฟะปะฐะฝะตั‚ัƒ Map& movePlanet();//ะดะฒะธะถะตะฝะธะต ะฟะปะฐะฝะตั‚ //ะ ะฐะฒะฝะพ ะปะธ ะบะพะปะธั‡ะตัั‚ะฒะพ ะฟะปะฐะฝะตั‚ ะฝัƒะปัŽ bool isPlanet() { return m_planets.size() != 0; } Map& createCloseStars();//ะณะตะฝะตั€ะฐั†ะธั ะทะฒั‘ะทะด ะฟะตั€ะตะดะฝะตะณะพ ะฟะปะฐะฝะฐ Map& createFarStars();//ะณะตะฝะตั€ะฐั†ะธั ะทะฒั‘ะทะด ะทะฐะดะฝะตะณะพ ะฟะปะฐะฝะฐ Map& moveStars(float time);//ะดะฒะธะถะตะฝะธะต ะทะฒั‘ะทะด RectangleShape& getSpace() { return m_space; } std::vector<CircleShape>& getCloseStars() { return m_closeStars; } std::vector<CircleShape>& getFarStars() { return m_farStars; } Sprite& getPlanet() { return m_planets[0]; } };
2e2b7a0f56107d59d43af738c1ed6bd117a3b09d
95a5346295a7c277ac4f0f04988dbe1476a970c9
/src/n_tcp_server_socket_picture_services.cpp
7d5a21b3ab6b99db0ca4bae43588d5301fdc4ef7
[]
no_license
sdolard/nawis
ecc0a83f1d79991af477c8f3fba1c39ce77a802d
9e0b701c612f551760ec3ccca6b28610f0c9a122
refs/heads/master
2016-09-02T11:33:28.726466
2010-11-01T15:31:55
2010-11-01T15:31:55
null
0
0
null
null
null
null
UTF-8
C++
false
false
2,156
cpp
n_tcp_server_socket_picture_services.cpp
#include <QScriptEngine> #include "n_log.h" #include "n_json.h" #include "n_config.h" #include "n_image.h" #include "n_client_session.h" #include "n_database.h" #include "n_tcp_server_socket_picture_services.h" NTcpServerSocketPictureServices * NTcpServerSocketPictureServices::m_instance = NULL; NTcpServerSocketPictureServices & NTcpServerSocketPictureServices::instance() { if (m_instance == NULL) m_instance = new NTcpServerSocketPictureServices(); return *m_instance; } void NTcpServerSocketPictureServices::deleteInstance() { if (m_instance == NULL) return; delete m_instance; m_instance = NULL; } NTcpServerSocketPictureServices::NTcpServerSocketPictureServices() { } NTcpServerSocketPictureServices::~NTcpServerSocketPictureServices() { } NResponse & NTcpServerSocketPictureServices::resize(const NClientSession & session, NResponse & response) { QString fileHash = session.resource(); QFileInfo fileInfo = NDatabase::instance().file(fileHash); QSize size(0, 0); if (session.url().hasQueryItem("width")) size.setWidth(session.url().queryItemValue("width").toInt()); if (session.url().hasQueryItem("height")) size.setHeight(session.url().queryItemValue("height").toInt()); NImage image(fileInfo); response.setData(image.resize(size)); response.httpHeader().setContentType(image.mimeType()); response.removeDefaultCharset(); return response; } NResponse & NTcpServerSocketPictureServices::getThumb(const NClientSession & session, NResponse & response) { QString fileHash = session.resource(); QFileInfo fileInfo = NDatabase::instance().file(fileHash); NImage image(fileInfo); response.setData(image.getThumb()); response.httpHeader().setContentType(image.mimeType()); response.removeDefaultCharset(); response.add10yExpiresHttpHeader(); QString lastModified = NDate_n::toHTMLDateTime(fileInfo.lastModified()); response.httpHeader().setValue("Last-Modified", lastModified); return response; }
5529e71fcda7b59836abbb4d7e0d1fc6c1c3c2d6
4c4c8b5a89075f6477aa786d5256095f5a53ce39
/unittest/alignment/utils/FileUtils_gtest.cpp
1b2ea3bbba870dd93ebbaae25ff5ec4246784520
[]
no_license
pb-cdunn/blasr_libcpp
540388eaad3c022d7d68357551365a79bd9c6ca2
0679f5063839480357216cf6fa44141078518930
refs/heads/master
2021-01-17T17:49:17.556800
2015-09-08T07:10:55
2015-09-08T07:10:55
37,907,422
0
2
null
2015-06-23T08:43:29
2015-06-23T08:43:28
null
UTF-8
C++
false
false
1,598
cpp
FileUtils_gtest.cpp
/* * ===================================================================================== * * Filename: FileUtils_gtest.cpp * * Description: Test alignment/utils/FileUtils.hpp * * Version: 1.0 * Created: 10/29/2012 05:20:43 PM * Revision: 08/20/2014 * Compiler: gcc * * Author: Yuan Li (yli), yli@pacificbiosciences.com * Company: Pacific Biosciences * * ===================================================================================== */ #include "gtest/gtest.h" #include "utils/FileUtils.hpp" using namespace std; string nonexistfile = "/nonexistingdir/nonexistingfile"; string readablefile = "/bin/ls"; string writeablefile = "/tmp/writabletmpfile"; string expected_errmsg = "^.+$"; TEST(FILEUTILS, CriticalOpenRead) { ifstream ifs; EXPECT_EXIT(CriticalOpenRead(nonexistfile, ifs, std::ios::in), ::testing::ExitedWithCode(1), expected_errmsg); CriticalOpenRead(readablefile, ifs, std::ios::in); } TEST(FILEUTILS, OpenRead) { ifstream ifs; EXPECT_EQ( OpenRead(nonexistfile, ifs, std::ios::in), 0); EXPECT_EQ( OpenRead(readablefile, ifs, std::ios::in), 1); } TEST(FILEUTILS, CriticalOpenWrite) { ofstream ofs; EXPECT_EXIT( CriticalOpenWrite(nonexistfile, ofs, std::ios::out), ::testing::ExitedWithCode(1), expected_errmsg); CriticalOpenWrite(writeablefile, ofs, std::ios::out); } TEST(FILEUTILS, OpenWrite) { ofstream ofs; EXPECT_EQ(OpenWrite(nonexistfile, ofs, std::ios::out), 0); EXPECT_EQ(OpenWrite(writeablefile, ofs, std::ios::out), 1); }
67a4003d5555f68595e2f1c71d57c6b701124d52
4db81fbe6d1f9089c348d8f9e49d83b3c1c2feb5
/Inc/.svn/text-base/TestItemPropertiesWnd.cpp.svn-base
2139de29cf1fd409c3644efc945b804d807e178f
[]
no_license
trigrass2/MVS
66be0bdd10b0e4db5eee4f7e660bff1b9d6cb4f0
2226a15d966c73da2d6934096d1fe78643873977
refs/heads/master
2020-12-18T09:33:46.847203
2013-12-24T15:07:15
2013-12-24T15:07:15
null
0
0
null
null
null
null
GB18030
C++
false
false
26,679
TestItemPropertiesWnd.cpp.svn-base
#include "stdafx.h" #include "TestItemPropertiesWnd.h" #include "Resource.h" #include "MainFrm.h" #include "AOIEdit.h" #include "MCtrlCenter.h" #include "customproperties.h" #include "DrawRegistDialog.h" #include "MCtrlCenter.h" #include <fstream> #ifdef _DEBUG #undef THIS_FILE static char THIS_FILE[]=__FILE__; #define new DEBUG_NEW #endif using namespace std; // exception handler void MyHalconExceptionHandler(const Halcon::HException& except) { throw except; } ///////////////////////////////////////////////////////////////////////////// // CResourceViewBar CTestItemPropertiesWnd::CTestItemPropertiesWnd() { m_CurrentData=NULL; m_bChanged=0; m_bDraw=false; HException::InstallHHandler(&MyHalconExceptionHandler); QueryPerformanceFrequency(&large_interger); dff = large_interger.QuadPart; LastTime=0; } CTestItemPropertiesWnd::~CTestItemPropertiesWnd() { } BEGIN_MESSAGE_MAP(CTestItemPropertiesWnd, CDockablePane) ON_WM_CREATE() ON_WM_SIZE() ON_COMMAND(ID_EXPAND_ALL, OnExpandAllProperties) ON_UPDATE_COMMAND_UI(ID_EXPAND_ALL, OnUpdateExpandAllProperties) ON_COMMAND(ID_SORTPROPERTIES, OnSortProperties) ON_UPDATE_COMMAND_UI(ID_SORTPROPERTIES, OnUpdateSortProperties) ON_COMMAND(ID_PROPERTIES_APPLY, OnAddTestList) //ON_COMMAND(ID_PROPERTIES_SAVE, OnSaveTestList) ON_WM_PAINT() ON_WM_SETFOCUS() ON_WM_SETTINGCHANGE() ON_REGISTERED_MESSAGE(AFX_WM_PROPERTY_CHANGED, OnPropertyChanged) END_MESSAGE_MAP() ///////////////////////////////////////////////////////////////////////////// // CResourceViewBar ๆถˆๆฏๅค„็†็จ‹ๅบ void CTestItemPropertiesWnd::AdjustLayout() { if (GetSafeHwnd() == NULL) { return; } CRect rectClient,rectCombo; GetClientRect(rectClient); //m_wndObjectCombo.GetWindowRect(&rectCombo); int cyCmb = 0;//rectCombo.Size().cy; int cyTlb = m_wndToolBar.CalcFixedLayout(FALSE, TRUE).cy; //m_wndObjectCombo.SetWindowPos(NULL, rectClient.left, rectClient.top, rectClient.Width(), 200, SWP_NOACTIVATE | SWP_NOZORDER); m_wndToolBar.SetWindowPos(NULL, rectClient.left, rectClient.top + cyCmb, rectClient.Width(), cyTlb, SWP_NOACTIVATE | SWP_NOZORDER); m_wndPropList.SetWindowPos(NULL, rectClient.left, rectClient.top + cyCmb + cyTlb, rectClient.Width(), rectClient.Height() -(cyCmb+cyTlb), SWP_NOACTIVATE | SWP_NOZORDER); } void CTestItemPropertiesWnd::OnPaint() { CPaintDC dc(this); // ็”จไบŽ็ป˜ๅˆถ็š„่ฎพๅค‡ไธŠไธ‹ๆ–‡ CRect rectProp; m_wndPropList.GetWindowRect(rectProp); ScreenToClient(rectProp); rectProp.InflateRect(1, 1); dc.Draw3dRect(rectProp, ::GetSysColor(COLOR_3DSHADOW), ::GetSysColor(COLOR_3DSHADOW)); } void CTestItemPropertiesWnd::EnableTools(bool disableTools) { m_wndToolBar.EnableWindow(disableTools); } int CTestItemPropertiesWnd::OnCreate(LPCREATESTRUCT lpCreateStruct) { lpCreateStruct->dwExStyle =WS_CHILD | WS_VISIBLE ; if (CDockablePane::OnCreate(lpCreateStruct) == -1) return -1; CRect rectDummy; rectDummy.SetRectEmpty(); // // ๅˆ›ๅปบ็ป„ๅˆ: const DWORD dwViewStyle = WS_CHILD | WS_VISIBLE | CBS_DROPDOWNLIST | WS_BORDER | CBS_SORT | WS_CLIPSIBLINGS | WS_CLIPCHILDREN; // if (!m_wndObjectCombo.Create(dwViewStyle, rectDummy, this, 1)) // { // TRACE0("ๆœช่ƒฝๅˆ›ๅปบๅฑžๆ€ง็ป„ๅˆ \n"); // return -1; // ๆœช่ƒฝๅˆ›ๅปบ // } // // m_wndObjectCombo.AddString(_T("ๅบ”็”จ็จ‹ๅบ")); // m_wndObjectCombo.AddString(_T("ๅฑžๆ€ง็ช—ๅฃ")); // m_wndObjectCombo.SetFont(CFont::FromHandle((HFONT) GetStockObject(DEFAULT_GUI_FONT))); // m_wndObjectCombo.SetCurSel(0); if (!m_wndPropList.Create(WS_VISIBLE | WS_CHILD, rectDummy, this, 2)) { TRACE0("ๆœช่ƒฝๅˆ›ๅปบๅฑžๆ€ง็ฝ‘ๆ ผ\n"); return -1; // ๆœช่ƒฝๅˆ›ๅปบ } //SetPropertyList(); m_wndToolBar.Create(this, AFX_DEFAULT_TOOLBAR_STYLE, IDR_ITEMPROPERTIES_TOOLS); m_wndToolBar.LoadToolBar(IDR_ITEMPROPERTIES_TOOLS, 0, 0, TRUE /* ๅทฒ้”ๅฎš*/); m_wndToolBar.CleanUpLockedImages(); m_wndToolBar.LoadBitmap(IDB_ITEMPROPERTIES_TOOLS_HC, 0, 0, TRUE /* ้”ๅฎš*/); m_wndToolBar.SetPaneStyle(m_wndToolBar.GetPaneStyle() | CBRS_TOOLTIPS ); // m_wndToolBar.SetPaneStyle(m_wndToolBar.GetPaneStyle() & ~(CBRS_GRIPPER | CBRS_SIZE_DYNAMIC | CBRS_BORDER_TOP | CBRS_BORDER_BOTTOM | CBRS_BORDER_LEFT | CBRS_BORDER_RIGHT)); m_wndToolBar.SetOwner(this); // ๆ‰€ๆœ‰ๅ‘ฝไปคๅฐ†้€š่ฟ‡ๆญคๆŽงไปถ่ทฏ็”ฑ๏ผŒ่€Œไธๆ˜ฏ้€š่ฟ‡ไธปๆก†ๆžถ่ทฏ็”ฑ: m_wndToolBar.SetRouteCommandsViaFrame(FALSE); AdjustLayout(); return 0; } void CTestItemPropertiesWnd::OnSize(UINT nType, int cx, int cy) { CDockablePane::OnSize(nType, cx, cy); AdjustLayout(); } void CTestItemPropertiesWnd::OnExpandAllProperties() { m_wndPropList.ExpandAll(); } void CTestItemPropertiesWnd::OnSortProperties() { m_wndPropList.SetAlphabeticMode(!m_wndPropList.IsAlphabeticMode()); } void CTestItemPropertiesWnd::OnUpdateSortProperties(CCmdUI* pCmdUI) { pCmdUI->SetCheck(m_wndPropList.IsAlphabeticMode()); } void CTestItemPropertiesWnd::OnUpdateExpandAllProperties(CCmdUI* pCmdUI) { } // void CTestItemPropertiesWnd::OnSaveTestList() // { // m_wndPropList.RemoveAll(); // m_CurrentData=NULL; // m_wndPropList.EnableHeaderCtrl(FALSE); // m_wndPropList.EnableDescriptionArea(); // m_wndPropList.SetVSDotNetLook(); // m_wndPropList.MarkModifiedProperties(); // } void CTestItemPropertiesWnd::OnAddTestList() { if (m_CurrentData==NULL) { return; } if (!(m_CurrentData->GetType()==SUBTEST)) { return; } CMainFrame* pMainFrame= (CMainFrame*)AfxGetMainWnd(); STLSDATA_SUBTEST *subTest = m_CurrentData->GetDataSubtest(); subTest->RunTest = "Yes"; pMainFrame->SetTestListWnd(m_CurrentData); pMainFrame->ReflashTestListWnd(subTest->order); m_wndPropList.RemoveAll(); m_CurrentData=NULL; m_wndPropList.EnableHeaderCtrl(FALSE); m_wndPropList.EnableDescriptionArea(); m_wndPropList.SetVSDotNetLook(); m_wndPropList.MarkModifiedProperties(); } void CTestItemPropertiesWnd::SetPropertyList(CTlsData* pData) { m_CurrentData = pData; SetPropListFont(); m_wndPropList.RemoveAll(); m_wndPropList.EnableHeaderCtrl(FALSE); m_wndPropList.EnableDescriptionArea(); //m_wndPropList.SetVSDotNetLook(); m_wndPropList.MarkModifiedProperties(); CMFCPropertyGridProperty* pGroup1 = new CMFCPropertyGridProperty(_T("Property")); switch (pData->GetType()) { case COMMON: { STLSDATA_COMMON* pCommon = pData->GetDataCommon(); for (map<string,string>::iterator proIt = pCommon->property.begin();proIt!=pCommon->property.end();proIt++) { CString name((*proIt).first.c_str()); CString value((*proIt).second.c_str()); CMFCPropertyGridProperty* pProp = new CMFCPropertyGridProperty(name, value, _T("Common Infomation")); pProp->Enable(FALSE); pGroup1->AddSubItem(pProp); } m_wndPropList.AddProperty(pGroup1); break; } case TEST: { STLSDATA_TEST* pTest = pData->GetDataTest(); CString help(pTest->helpDesc.c_str()); for (map<string,string>::iterator proIt = pTest->property.begin();proIt!=pTest->property.end();proIt++) { CString name((*proIt).first.c_str()); CString value((*proIt).second.c_str()); CMFCPropertyGridProperty* pProp = new CMFCPropertyGridProperty(name, value, help); pProp->Enable(FALSE); pGroup1->AddSubItem(pProp); } m_wndPropList.AddProperty(pGroup1); break; } case ROOT: { STLSDATA_ROOT* pRoot = pData->GetDataRoot(); CString name(pRoot->name.c_str()); CMFCPropertyGridProperty* pProp = new CMFCPropertyGridProperty(_T("RootName"), name, _T("Root Infomation")); pProp->Enable(FALSE); pGroup1->AddSubItem(pProp); m_wndPropList.AddProperty(pGroup1); break; } case SUBTEST: { STLSDATA_SUBTEST* pSubtest = pData->GetDataSubtest(); CString help(pSubtest->helpDesc.c_str()); CString value = (s2ws(pSubtest->testName)).c_str(); CMFCPropertyGridProperty* pTestProp = new CMFCPropertyGridProperty(_T("TestName"), value, help); value = (s2ws(pSubtest->subTestName)).c_str(); CMFCPropertyGridProperty* pSubTestProp = new CMFCPropertyGridProperty(_T("SubTestName"),value , help); eUSER_GROUP group = CMConfigCenter::GetConfigCenter().GetUserGroup(); switch(group) { case OPERATOR: pTestProp->Enable(FALSE); pSubTestProp->Enable(FALSE); break; case ENGUSER: pTestProp->Enable(TRUE); pSubTestProp->Enable(TRUE); break; case ADMIN: pTestProp->Enable(TRUE); pSubTestProp->Enable(TRUE); break; case SADMIN: pTestProp->Enable(TRUE); pSubTestProp->Enable(TRUE); break; } pGroup1->AddSubItem(pTestProp); pGroup1->AddSubItem(pSubTestProp); for (map<string,string>::iterator proIt = pSubtest->property.begin();proIt!=pSubtest->property.end();proIt++) { CString name((*proIt).first.c_str()); CString value((*proIt).second.c_str()); CMFCPropertyGridProperty* pProp = new CMFCPropertyGridProperty(name, value, help); pProp->Enable(FALSE); pGroup1->AddSubItem(pProp); } m_wndPropList.AddProperty(pGroup1); list<STLSDATA_PARAMETER*> parameter = pSubtest->parameter; int max=100,min=10; for (list<STLSDATA_PARAMETER*>::iterator parameterIt = parameter.begin();parameterIt!=parameter.end();parameterIt++) { CString parameterName((*parameterIt)->parameterName.c_str()); CString parameterDesc((*parameterIt)->parameterDesc.c_str()); CMFCPropertyGridProperty* pGroup2 = new CMFCPropertyGridProperty(parameterDesc); CString InterFace; CString UserPower; CMFCPropertyGridProperty* pProperty = new CMFCPropertyGridProperty(_T("ๅฑžๆ€ง")); for (map<string,string>::iterator propertyit = (*parameterIt)->property.begin();propertyit!=(*parameterIt)->property.end();propertyit++) { CString name((*propertyit).first.c_str()); CString value((*propertyit).second.c_str()); if (!name.CompareNoCase(_T("max"))) { max = _ttoi(value); } if (!name.CompareNoCase(_T("min"))) { min = _ttoi(value); } if (!name.CompareNoCase(_T("interface"))) { InterFace = value; } if (!name.CompareNoCase(_T("visibility"))) { UserPower = value; } CMFCPropertyGridProperty* pProp = new CMFCPropertyGridProperty(name, value, help); pProp->Enable(FALSE); pProperty->AddSubItem(pProp); pProperty->Expand(FALSE); } pGroup2->AddSubItem(pProperty); if (UserPower.MakeUpper()=="GURU") { eUSER_GROUP group = CMConfigCenter::GetConfigCenter().GetUserGroup(); switch(group) { case OPERATOR: { continue; break; } case ENGUSER: { continue; break; } case ADMIN: { continue; break; } } } CString helpDescription((*parameterIt)->helpDesc.c_str()); if (!InterFace.CompareNoCase(_T("iint"))) { CString value((*parameterIt)->settingValue.c_str()); long settingv=_ttoi(value); if (settingv<min) { settingv=min; } if (settingv>max) { settingv=max; } CSliderProp *sliderProp = new CSliderProp(parameterName, (long)settingv, helpDescription,true); sliderProp->SetRang(min,max); eUSER_GROUP group = CMConfigCenter::GetConfigCenter().GetUserGroup(); switch(group) { case OPERATOR: sliderProp->Enable(FALSE); break; case ENGUSER: sliderProp->Enable(TRUE); break; case ADMIN: sliderProp->Enable(TRUE); break; } pGroup2->AddSubItem(sliderProp); } else if(!InterFace.CompareNoCase(_T("ifloat"))) { CString value((*parameterIt)->settingValue.c_str()); float settingv=_tstof(value); if (settingv<min) { settingv=min; } if (settingv>max) { settingv=max; } CSliderProp *sliderProp = new CSliderProp(parameterName, settingv, helpDescription); sliderProp->SetRang(min,max); eUSER_GROUP group = CMConfigCenter::GetConfigCenter().GetUserGroup(); switch(group) { case OPERATOR: sliderProp->Enable(FALSE); break; case ENGUSER: sliderProp->Enable(TRUE); break; case ADMIN: sliderProp->Enable(TRUE); break; case SADMIN: sliderProp->Enable(TRUE); break; } pGroup2->AddSubItem(sliderProp); } else if(!InterFace.CompareNoCase(_T("ilist"))) { CString value((*parameterIt)->settingValue.c_str()); CMFCPropertyGridProperty* pProp = new CMFCPropertyGridProperty(parameterName , value,helpDescription); for(list<string>::iterator it = (*parameterIt)->valueList.begin();it!=(*parameterIt)->valueList.end();it++) { pProp->AddOption(s2ws(*it).c_str()); } // pProp->AddOption(_T("None")); // // pProp->AddOption(_T("Thin")); // // pProp->AddOption(_T("Resizable")); // // pProp->AddOption(_T("Dialog Frame")); pProp->AllowEdit(FALSE); // CString value((*parameterIt)->settingValue.c_str()); // float settingv=_tstof(value); // if (settingv<min) // { // settingv=min; // } // if (settingv>max) // { // settingv=max; // } // CStringList lstIconNames; // lstIconNames.AddTail (_T("Icon 1")); // lstIconNames.AddTail (_T("Icon 2")); // lstIconNames.AddTail (_T("Icon 3")); // lstIconNames.AddTail (_T("Icon 4")); // lstIconNames.AddTail (_T("Icon 5")); // lstIconNames.AddTail (_T("Icon 6")); // lstIconNames.AddTail (_T("Icon 7")); // lstIconNames.AddTail (_T("Icon 8")); // lstIconNames.AddTail (_T("Icon 9")); // lstIconNames.AddTail (_T("Icon 10")); // lstIconNames.AddTail (_T("Icon 11")); // CIconListProp *comboxProp = new CIconListProp(parameterName, 0,&lstIconNames); // eUSER_GROUP group = CMConfigCenter::GetConfigCenter().GetUserGroup(); // switch(group) // { // case OPERATOR: // comboxProp->Enable(FALSE); // break; // case ENGUSER: // comboxProp->Enable(TRUE); // break; // case ADMIN: // comboxProp->Enable(TRUE); // break; // case SADMIN: // comboxProp->Enable(TRUE); // break; // } pGroup2->AddSubItem(pProp); } else if(!InterFace.CompareNoCase(_T("iobject"))) { CString value((*parameterIt)->settingValue.c_str()); CTwoButtonsProp *ButtonProp = new CTwoButtonsProp(parameterName, value,helpDescription,this); eUSER_GROUP group = CMConfigCenter::GetConfigCenter().GetUserGroup(); switch(group) { case ENGUSER: ButtonProp->Enable(TRUE); break; case ADMIN: ButtonProp->Enable(TRUE); break; case SADMIN: ButtonProp->Enable(TRUE); break; default: ButtonProp->Enable(FALSE); break; } pGroup2->AddSubItem(ButtonProp); } else if(!InterFace.CompareNoCase(_T("iobjectcreate"))) { CString value((*parameterIt)->settingValue.c_str()); CCreateButtonsProp *ButtonProp = new CCreateButtonsProp(parameterName, value,helpDescription,this); eUSER_GROUP group = CMConfigCenter::GetConfigCenter().GetUserGroup(); switch(group) { case ENGUSER: ButtonProp->Enable(TRUE); break; case ADMIN: ButtonProp->Enable(TRUE); break; case SADMIN: ButtonProp->Enable(TRUE); break; default: ButtonProp->Enable(FALSE); break; } pGroup2->AddSubItem(ButtonProp); } else if(!InterFace.CompareNoCase(_T("iobjectload"))) { CString value((*parameterIt)->settingValue.c_str()); CLoadButtonsProp *ButtonProp = new CLoadButtonsProp(parameterName, value,helpDescription,this); eUSER_GROUP group = CMConfigCenter::GetConfigCenter().GetUserGroup(); switch(group) { case ENGUSER: ButtonProp->Enable(TRUE); break; case ADMIN: ButtonProp->Enable(TRUE); break; case SADMIN: ButtonProp->Enable(TRUE); break; default: ButtonProp->Enable(FALSE); break; } pGroup2->AddSubItem(ButtonProp); } else { continue; } this->SetWindowText((s2ws(pSubtest->testName)).c_str()); m_wndPropList.SetFocus(); m_wndPropList.AddProperty(pGroup2); } break; } } } void CTestItemPropertiesWnd::OnSetFocus(CWnd* pOldWnd) { CDockablePane::OnSetFocus(pOldWnd); m_wndPropList.SetFocus(); } void CTestItemPropertiesWnd::OnSettingChange(UINT uFlags, LPCTSTR lpszSection) { CDockablePane::OnSettingChange(uFlags, lpszSection); SetPropListFont(); } void CTestItemPropertiesWnd::SetPropListFont() { ::DeleteObject(m_fntPropList.Detach()); LOGFONT lf; afxGlobalData.fontRegular.GetLogFont(&lf); NONCLIENTMETRICS info; info.cbSize = sizeof(info); afxGlobalData.GetNonClientMetrics(info); lf.lfHeight = info.lfMenuFont.lfHeight; lf.lfWeight = info.lfMenuFont.lfWeight; lf.lfItalic = info.lfMenuFont.lfItalic; m_fntPropList.CreateFontIndirect(&lf); m_wndPropList.SetFont(&m_fntPropList); } void CTestItemPropertiesWnd::OnClickCreateButton(CString strValue,CCreateButtonsProp* button) { if ((CMConfigCenter::GetConfigCenter().GetWorkModel()!=DEBUG_MODEL)&&(CMConfigCenter::GetConfigCenter().GetStates()!=MTI_GUI_RUN)) { AfxMessageBox(_T("่ฏทๅœจDebug ๆจกๅผไธ‹ๅนถRunๅŽ่ฟ›่กŒๆต‹่ฏ•")); return; } CFileDialog SaveRegDlg(FALSE,NULL, _T("mymodel.shm"),OFN_OVERWRITEPROMPT, _T("Test Regist File(*.shm)|*.shm"));//save as CString defPath; defPath.Format(_T("d:\\SLACTST\\%s\\"),(s2ws(CMConfigCenter::GetConfigCenter().GetProgramName())).c_str()); SaveRegDlg.m_ofn.lpstrInitialDir=defPath; if(SaveRegDlg.DoModal()==IDOK) { //button->SetValue(SaveRegDlg.GetFileName()); button->SetValue(defPath+_T("\\")+SaveRegDlg.GetFileTitle()); } SaveRegDlg.DestroyWindow(); } void CTestItemPropertiesWnd::OnClickLoadButton(CString strValue,CLoadButtonsProp* button) { if ((CMConfigCenter::GetConfigCenter().GetWorkModel()!=DEBUG_MODEL)&&(CMConfigCenter::GetConfigCenter().GetStates()!=MTI_GUI_RUN)) { AfxMessageBox(_T("่ฏทๅœจDebug ๆจกๅผไธ‹ๅนถRunๅŽ่ฟ›่กŒๆต‹่ฏ•")); return; } CFileDialog OpenRegDlg(TRUE,NULL, NULL,OFN_HIDEREADONLY, _T("Test Model File(*.shm)|*.shm"));//save as CString defPath; defPath.Format(_T("d:\\SLACTST\\%s\\"),(s2ws(CMConfigCenter::GetConfigCenter().GetProgramName())).c_str()); OpenRegDlg.m_ofn.lpstrInitialDir=defPath; if(OpenRegDlg.DoModal()==IDOK) { button->SetValue(defPath+OpenRegDlg.GetFileTitle()); // read_region(&regist,(ws2s(fileName)).c_str()); // disp_obj(regist,CMConfigCenter::GetConfigCenter().GetShowWindowHID()); } OpenRegDlg.DestroyWindow(); } void CTestItemPropertiesWnd::OnClickLeftButton(CString strValue,CTwoButtonsProp* button) { if ((CMConfigCenter::GetConfigCenter().GetWorkModel()!=DEBUG_MODEL)&&(CMConfigCenter::GetConfigCenter().GetStates()!=MTI_GUI_RUN)) { AfxMessageBox(_T("่ฏทๅœจDebug ๆจกๅผไธ‹ๅนถRunๅŽ่ฟ›่กŒๆต‹่ฏ•")); return; } CFileDialog OpenRegDlg(TRUE,NULL, NULL,OFN_HIDEREADONLY, _T("Test Regist File(*.reg)|*.reg"));//save as CString defPath; defPath.Format(_T("d:\\SLACTST\\%s\\"),(s2ws(CMConfigCenter::GetConfigCenter().GetProgramName())).c_str()); OpenRegDlg.m_ofn.lpstrInitialDir=defPath; if(OpenRegDlg.DoModal()==IDOK) { button->SetValue(defPath+OpenRegDlg.GetFileTitle()); Hobject regist; wstring fileName = OpenRegDlg.GetPathName().GetBuffer(); read_region(&regist,(ws2s(fileName)).c_str()); disp_obj(regist,CMConfigCenter::GetConfigCenter().GetShowWindowHID()); } OpenRegDlg.DestroyWindow(); } void CTestItemPropertiesWnd::OnClickRightButton(CString strValue,CTwoButtonsProp* button) { if ((CMConfigCenter::GetConfigCenter().GetWorkModel()!=DEBUG_MODEL)&&(CMConfigCenter::GetConfigCenter().GetStates()!=MTI_GUI_RUN)) { AfxMessageBox(_T("่ฏทๅœจDebug ๆจกๅผไธ‹ๅนถRunๅŽ่ฟ›่กŒๆต‹่ฏ•")); return; } if(m_bDraw) { return; } Hobject image; HTuple Row1, Column1, Row2, Column2; CMData *pData; if (CMConfigCenter::GetConfigCenter().GetHasFrame()) { pData = CMCtrlCenter::GetCtrlCenter().GetFrameFromReport(); } else { AfxMessageBox(_T("่ฏทๅ…ˆ่ฏปๅ–ๅ›พ็‰‡ๅ†ๅœจๅ›พ็‰‡ไธŠ่ฟ›่กŒๆฃ€ๆต‹ๅŒบๅŸŸ้€‰ๆ‹ฉ")); return; } if (pData->OrientationPhi ==0||pData->Center_x == 100||pData->Center_y==100) { AfxMessageBox(_T("่ฏทๅ…ˆ่ฟ›่กŒๆ‰พๅœ†ๅฟƒๅŠๅฎšไฝ็š„็ฎ—ๅญ")); return; } m_bDraw=true; CDrawRegistDialog drawRegist; if (drawRegist.DoModal()!=IDOK) { drawRegist.DestroyWindow(); delete drawRegist; m_bDraw=false; return; } switch(CMConfigCenter::GetConfigCenter().GetDrawSharp()) { case DRAW_CIRCLE: { try { double Row, Column, R; draw_circle(CMConfigCenter::GetConfigCenter().GetShowWindowHID(),&Row, &Column, &R); gen_circle(&image,Row, Column, R); break; } catch (HException &except) { //AfxMessageBox(_T("Drow Region Error.")); } } case DRAW_ELLIPSE: { try { double Row, Column, Phi, Radius1, Radius2; draw_ellipse(CMConfigCenter::GetConfigCenter().GetShowWindowHID(),&Row, &Column, &Phi, &Radius1, &Radius2); gen_ellipse(&image,Row, Column, Phi, Radius1, Radius2); break; } catch (HException &except) { //AfxMessageBox(_T("Drow Region Error.")); } } case DRAW_RECTANGLE: { try { double Row1, Column1,Row2, Column2; draw_rectangle1(CMConfigCenter::GetConfigCenter().GetShowWindowHID(),&Row1, &Column1,&Row2, &Column2); gen_rectangle1(&image,Row1,Column1,Row2,Column2); break; } catch (HException &except) { //AfxMessageBox(_T("Drow Region Error.")); } } case DRAW_POLYGON: { try { draw_region(&image,CMConfigCenter::GetConfigCenter().GetShowWindowHID()); break; } catch (...) { //AfxMessageBox(_T("Drow Region Error.")); } //draw_polygon(&image,CMConfigCenter::GetConfigCenter().GetShowWindowHID()); } default: return; } //clear_window(CMConfigCenter::GetConfigCenter().GetShowWindowHID()); //disp_obj(image,CMConfigCenter::GetConfigCenter().GetShowWindowHID()); CFileDialog SaveRegDlg(FALSE,NULL, _T("myregion.reg"),OFN_OVERWRITEPROMPT, _T("Test Regist File(*.reg)|*.reg"));//save as CString defPath; defPath.Format(_T("d:\\SLACTST\\%s\\"),(s2ws(CMConfigCenter::GetConfigCenter().GetProgramName())).c_str()); SaveRegDlg.m_ofn.lpstrInitialDir=defPath; if(SaveRegDlg.DoModal()==IDOK) { wstring tmp(SaveRegDlg.GetPathName()); string fileName= ws2s(tmp); //button->SetValue(SaveRegDlg.GetFileName()); button->SetValue(defPath+_T("\\")+SaveRegDlg.GetFileTitle()); //*strValue = tmp.c_str(); write_region(image,fileName.c_str()); defPath.Format(_T("d:\\SLACTST\\%s\\%s.dat"),(s2ws(CMConfigCenter::GetConfigCenter().GetProgramName())).c_str(),SaveRegDlg.GetFileTitle()); // StoredModePhi = -0.213736; // StoredModelCenterRow = 267.512; // StoredModelCenterColumn = 414.091; CString Data; Data.Format(_T("%f"),pData->OrientationPhi); WritePrivateProfileString(_T("StoredDATA"),_T("StoredModePhi"),Data,defPath); Data.Format(_T("%f"),(float)pData->Center_y); WritePrivateProfileString(_T("StoredDATA"),_T("StoredModelCenterRow"),Data,defPath); Data.Format(_T("%f"),(float)pData->Center_x); WritePrivateProfileString(_T("StoredDATA"),_T("StoredModelCenterColumn"),Data,defPath); Data.Format(_T("%f"),(float)pData->r_real); WritePrivateProfileString(_T("StoredDATA"),_T("StoredRadius"),Data,defPath); } SaveRegDlg.DestroyWindow(); m_bDraw=false; } LRESULT CTestItemPropertiesWnd::OnPropertyChanged( WPARAM,LPARAM lParam ) { QueryPerformanceCounter(&large_interger); nowTime = large_interger.QuadPart; if ( ((nowTime - LastTime) * 1000 / dff) <= 300) return 0; QueryPerformanceCounter(&large_interger); LastTime = large_interger.QuadPart; CMFCPropertyGridProperty* pProp = (CMFCPropertyGridProperty*) lParam; switch (m_CurrentData->GetType()) { case SUBTEST: { CString name=_T("TestName"); if (pProp->GetName()==name) { const COleVariant &strValue=pProp->GetValue();//่Žทๅพ—ๅญ้กนๅ€ผ CStringW strTmp =(CStringW)strValue; CStringA strTmpa(strTmp.GetBuffer(0)); strTmp.ReleaseBuffer(); m_CurrentData->GetDataSubtest()->testName = strTmpa.GetBuffer(0); CMainFrame* pMainFrame= (CMainFrame*)AfxGetMainWnd(); pMainFrame->ReflashTestListWnd(m_CurrentData->GetDataSubtest()->order); break; } name=_T("SubTestName"); if (pProp->GetName()==name) { const COleVariant &strValue=pProp->GetValue();//่Žทๅพ—ๅญ้กนๅ€ผ CStringW strTmp =(CStringW)strValue; CStringA strTmpa(strTmp.GetBuffer(0)); strTmp.ReleaseBuffer(); m_CurrentData->GetDataSubtest()->subTestName = strTmpa.GetBuffer(0); CMainFrame* pMainFrame= (CMainFrame*)AfxGetMainWnd(); pMainFrame->ReflashTestListWnd(m_CurrentData->GetDataSubtest()->order); break; } STLSDATA_SUBTEST* pSubtest = m_CurrentData->GetDataSubtest(); list<STLSDATA_PARAMETER*> parameter = pSubtest->parameter; for (list<STLSDATA_PARAMETER*>::iterator parameterIt = parameter.begin();parameterIt!=parameter.end();parameterIt++) { CString name((*parameterIt)->parameterName.c_str()); if(pProp->GetName()==name) { // CStringW oldValue((*parameterIt)->settingValue.c_str()); // AfxMessageBox(oldValue); const COleVariant &strValue=pProp->GetValue();//่Žทๅพ—ๅญ้กนๅ€ผ CStringW strTmp =(CStringW)strValue; CStringA strTmpa(strTmp.GetBuffer(0)); strTmp.ReleaseBuffer(); (*parameterIt)->settingValue = strTmpa.GetBuffer(0); // CString newValue(((*parameterIt)->settingValue.c_str())); // AfxMessageBox(newValue); if(CMConfigCenter::GetConfigCenter().GetStates()==MTI_GUI_RUN) { if (CMConfigCenter::GetConfigCenter().GetSource()==FILE_SOURCE) { //if ((time(NULL)-m_tm)>1) { CMConfigCenter::GetConfigCenter().SetWorkModel(DEBUG_MODEL); CMCtrlCenter::GetCtrlCenter().UpdateTestItemParmeter(); CMCtrlCenter::GetCtrlCenter().RecvOneFrame(); } //m_tm = time(NULL); } if (CMConfigCenter::GetConfigCenter().GetSingleFrameModel()) { if(CMConfigCenter::GetConfigCenter().GetHasFrame()) { //if ((time(NULL)-m_tm)>1) { CMConfigCenter::GetConfigCenter().SetWorkModel(DEBUG_MODEL); CMCtrlCenter::GetCtrlCenter().UpdateTestItemParmeter(); CMCtrlCenter::GetCtrlCenter().RecvOneFrame(); } //m_tm = time(NULL); } } } } } break; } } return 0; }
eeb7e6dff39a7ae5669f045a901cf70df0acb594
26c6b9e1204db5ae4a245a990f7df3bcd218b574
/src/kernel/template-cache.cc
b17dd678210d80d64c578f3cabae772c727472fe
[ "Apache-2.0" ]
permissive
groundwater/runtime
54ac6d6ac4eb528ecc201ffb0c231572938c5802
dc90b2c835bbd70530a933b38c252215ef905831
refs/heads/master
2021-01-18T05:18:21.260974
2015-01-29T07:35:29
2015-01-29T07:35:29
21,312,682
1
2
null
2015-01-10T20:14:08
2014-06-28T23:06:10
C++
UTF-8
C++
false
false
4,492
cc
template-cache.cc
// Copyright 2014 Runtime.JS project authors // // 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 // // http://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 "template-cache.h" #include <kernel/native-object.h> #include <kernel/v8utils.h> #include <kernel/native-fn.h> #include <kernel/initrd.h> namespace rt { TemplateCache::TemplateCache(v8::Isolate* iv8) : iv8_(iv8) { RT_ASSERT(iv8_); v8::HandleScope scope(iv8_); { v8::Local<v8::FunctionTemplate> t { v8::FunctionTemplate::New(iv8_) }; t->InstanceTemplate()->SetInternalFieldCount(1); wrapper_template_.Set(iv8_, t); } { v8::Local<v8::FunctionTemplate> t { v8::FunctionTemplate::New(iv8_) }; t->InstanceTemplate()->SetInternalFieldCount(1); t->InstanceTemplate()->SetCallAsFunctionHandler(NativesObject::CallHandler); wrapper_callable_template_.Set(iv8_, t); } } v8::Local<v8::UnboundScript> TemplateCache::GetInitScript() { RT_ASSERT(iv8_); v8::EscapableHandleScope scope(iv8_); InitrdFile initfile = GLOBAL_initrd()->Get("/system/init.js"); if (initfile.IsEmpty()) { // printf("Unable to load /system/init.js file."); abort(); } v8::Local<v8::String> inits = v8::String::NewFromUtf8(iv8_, reinterpret_cast<const char*>(initfile.Data()), v8::String::kNormalString, initfile.Size()); v8::ScriptCompiler::Source source(inits); v8::Local<v8::UnboundScript> script = v8::ScriptCompiler ::CompileUnbound(iv8_, &source, v8::ScriptCompiler::CompileOptions::kNoCompileOptions); return scope.Escape(script); } v8::Local<v8::Context> TemplateCache::NewContext() { RT_ASSERT(iv8_); v8::EscapableHandleScope scope(iv8_); if (global_object_template_.IsEmpty()) { v8::Local<v8::ObjectTemplate> global { v8::ObjectTemplate::New() }; global->Set(iv8_, "setTimeout", v8::FunctionTemplate::New(iv8_, NativesObject::SetTimeout)); v8::Local<v8::ObjectTemplate> runtime { v8::ObjectTemplate::New() }; runtime->Set(iv8_, "args", v8::FunctionTemplate::New(iv8_, NativesObject::Args)); runtime->Set(iv8_, "log", v8::FunctionTemplate::New(iv8_, NativesObject::KernelLog)); runtime->Set(iv8_, "version", v8::FunctionTemplate::New(iv8_, NativesObject::Version)); global->Set(iv8_, "runtime", runtime); global_object_template_.Set(iv8_, global); } v8::Local<v8::Context> context = v8::Context::New(iv8_, nullptr, global_object_template_.Get(iv8_)); v8::Context::Scope cs(context); if (init_script_.IsEmpty()) { init_script_.Set(iv8_, GetInitScript()); } RT_ASSERT(!init_script_.IsEmpty()); v8::Local<v8::Value> init_func_val = init_script_.Get(iv8_) ->BindToCurrentContext()->Run(); RT_ASSERT(!init_func_val.IsEmpty()); RT_ASSERT(init_func_val->IsFunction()); v8::Local<v8::Function> init_func = v8::Local<v8::Function>::Cast(init_func_val); v8::Local<v8::Value> args_local[1] { (new NativesObject(this))->GetInstance() }; init_func->Call(context->Global(), 1, &args_local[0]); return scope.Escape(context); } v8::Local<v8::Value> TemplateCache::NewWrappedFunction(ExternalFunction* data) { RT_ASSERT(data); RT_ASSERT(iv8_); v8::EscapableHandleScope scope(iv8_); v8::Local<v8::Object> obj { wrapper_callable_template_.Get(iv8_) ->InstanceTemplate()->NewInstance() }; obj->SetAlignedPointerInInternalField(0, static_cast<NativeObjectWrapper*>(data)); return scope.Escape(obj); } v8::Local<v8::Object> TemplateCache::NewWrappedObject(NativeObjectWrapper* nativeobj) { RT_ASSERT(nativeobj); RT_ASSERT(iv8_); v8::EscapableHandleScope scope(iv8_); v8::Local<v8::Object> obj = wrapper_template_.Get(iv8_) ->InstanceTemplate()->NewInstance(); obj->SetAlignedPointerInInternalField(0, static_cast<NativeObjectWrapper*>(nativeobj)); return scope.Escape(obj); } } // namespace rt
c75d5eef267f6764991b703a9892c4836a3ab720
d6a749e048b05377968f8d67bcd5d469f5c2d6fb
/src/plugins/yaypeg/yaypeg.cpp
e0a61184b51e4f5eeefaabf59c5c065954e64ab5
[ "BSD-3-Clause" ]
permissive
llukask/libelektra
c7770dc3ba6c20e51e1176ecc3efab12bde5eeb8
5a8cb59ebe008e04e406bcb2d6e4cc3357cffaca
refs/heads/master
2021-07-02T21:10:12.060467
2019-08-07T21:16:25
2019-08-07T21:16:25
174,345,765
0
0
null
null
null
null
UTF-8
C++
false
false
2,034
cpp
yaypeg.cpp
/** * @file * * @brief Source for yaypeg plugin * * @copyright BSD License (see LICENSE.md or https://www.libelektra.org) * */ #include "yaypeg.hpp" #include <stdexcept> #include <kdb.hpp> #include <kdberrors.h> #include <kdbhelper.h> #include "convert.hpp" using std::exception; using std::runtime_error; using CppKey = kdb::Key; using CppKeySet = kdb::KeySet; using yaypeg::addToKeySet; namespace { /** * @brief This function returns a key set containing the plugin contract. * * @return A key set specifying the capabilities of the plugin */ CppKeySet getContract () { return CppKeySet{ 30, keyNew ("system/elektra/modules/yaypeg", KEY_VALUE, "yaypeg plugin waits for your orders", KEY_END), keyNew ("system/elektra/modules/yaypeg/exports", KEY_END), keyNew ("system/elektra/modules/yaypeg/exports/get", KEY_FUNC, elektraYaypegGet, KEY_END), #include ELEKTRA_README keyNew ("system/elektra/modules/yaypeg/infos/version", KEY_VALUE, PLUGINVERSION, KEY_END), KS_END }; } } // end namespace extern "C" { /** @see elektraDocGet */ int elektraYaypegGet (Plugin * handle ELEKTRA_UNUSED, KeySet * returned, Key * parentKey) { CppKeySet keys{ returned }; CppKey parent{ parentKey }; if (parent.getName () == "system/elektra/modules/yaypeg") { keys.append (getContract ()); parent.release (); keys.release (); return ELEKTRA_PLUGIN_STATUS_SUCCESS; } auto status = ELEKTRA_PLUGIN_STATUS_ERROR; try { status = addToKeySet (keys, parent, parent.getString ()); } catch (runtime_error const & runtimeError) { ELEKTRA_SET_VALIDATION_SYNTACTIC_ERROR (*parent, runtimeError.what ()); } catch (exception const & error) { ELEKTRA_SET_PLUGIN_MISBEHAVIOR_ERRORF (*parent, "Uncaught exception: %s", error.what ()); } parent.release (); keys.release (); return status < 0 ? ELEKTRA_PLUGIN_STATUS_ERROR : status; } Plugin * ELEKTRA_PLUGIN_EXPORT { return elektraPluginExport ("yaypeg", ELEKTRA_PLUGIN_GET, &elektraYaypegGet, ELEKTRA_PLUGIN_END); } } // end extern "C"
568ed917d51a756b63d22c13d5683e75cceec3f0
8e08d060e4def3a90673f31b3d00e4ee7bd5aaf3
/Assignment6/angry.h
20f18264ea30c053050f497f1fc4e86e9fe209cf
[]
no_license
rbostandoust/Advanced-Programming
3d378eb574a11373cc6e4934d9cc0e2b96f381cd
a69930f801551f5ba01f030540a1124c8982cb5a
refs/heads/master
2020-09-18T11:21:39.067248
2019-11-28T22:25:50
2019-11-28T22:25:50
224,143,485
0
0
null
null
null
null
UTF-8
C++
false
false
329
h
angry.h
#ifndef __ANGRY_H__ #define __ANGRY_H__ #include "child.h" #include <cmath> class Angry : public Child { public: Angry(int _id, int _r, bool _f, Velocity _v, Point _p, Behaviour _b) : Child(_id, _r, _f, _v, _p, _b){ type = "Angry"; fix_behaviour();}; void fix_behaviour(); void deal_with(Child* another_child); }; #endif
2c2c47beeb3d44c4efa9e4cff4f82e1f5dea2f8e
cac6325461dec350e62cda2bfe99c13ee55f2acc
/coing_for_algorithm/quick_sort.cpp
648dc0399ddebc681a94a8fc36046f2c3a2b3fc5
[]
no_license
huangjunhao2019/cuda_c-_programming_guide
fd232bbf4f561cc323d2600aedbc101f5aaffd7b
99be7471c89681a89b3b84bdfba3bda8bff87537
refs/heads/master
2023-06-25T01:13:25.329784
2021-07-24T06:23:56
2021-07-24T06:23:56
388,309,371
0
0
null
null
null
null
UTF-8
C++
false
false
937
cpp
quick_sort.cpp
#include<iostream> using namespace std; void swap(int &a,int &b){ int temp=a; a=b; b=temp; } void quick_sort(int *a,int left,int right){ // cout<<a[left]<<" "<<a[right]<<endl; if(left>=right) return; if(right-left==1){ if(a[left]>a[right]) swap(a[left],a[right]); return ; } int temp=a[left]; int left_i=left; int right_j=right; while(left_i<right_j){ while(left_i<right_j && a[right_j]>=temp){ right_j--; } a[left_i]=a[right_j]; while(left_i<right_j && a[left_i]<=temp){ left_i++; } a[right_j]=a[left_i]; } a[left_i]=temp; quick_sort(a,left,left_i-1); quick_sort(a,left_i+1,right); } int main(){ int a[]={5,4,3,2,1}; // cout<<a[0]<<" "<<a[4]<<endl; // return 0; quick_sort(a,0,4); for(int i=0;i<5;i++) cout<<a[i]<<endl; return 0; }
5acee723007ba09725ab1ab0e6ec519ad16c2c6d
79143151a5f5c246a304fc4ee601e144f323fa97
/CodeForces/1096A/17763509_AC_31ms_0kB.cpp
c5da1bce40c64f4e6416edd5276b8bd4e86c8dd1
[]
no_license
1468362286/Algorithm
919ab70d1d26a4852edc27b6ece39f3aec8329eb
571e957e369f5dc5644717371efcc3f4578a922d
refs/heads/master
2020-06-01T23:56:22.808465
2019-06-09T08:44:55
2019-06-09T08:44:55
190,970,478
0
0
null
null
null
null
UTF-8
C++
false
false
511
cpp
17763509_AC_31ms_0kB.cpp
#include <iostream> #include <vector> #include <string> #include <stack> #include <queue> #include <map> #include <string.h> #include <algorithm> #include <utility> #include <assert.h> using namespace std; typedef _int64 ll; const int inf=0x3f3f3f3f; const int maxn = 100; int max(int a,int b){return a>b?a:b;} int min(int a,int b){return a>b?b:a;} int main() { #ifdef _DEBUG freopen("in.txt","r",stdin); #endif int n,l,r; cin>>n; while(n--) { cin>>l>>r; cout<<l<<" "<<2*l<<endl; } return 0; }
1f399d0c2d6a7fb2569e8537fcee07422b620aa5
260d4490deac756ba0d61fe4405fda1ed62c2c4a
/bank-view/messagereceiver.h
15e76ca6c77823dee74fce3f705b7f8833e57bfa
[]
no_license
smandyscom/front-base-widget
68837f93fa19eea74ddbf974f71cdbff20ad152d
e2127833a0b2bfb03053af66306fe619513e6a63
refs/heads/master
2021-07-12T18:27:38.309837
2018-11-29T08:11:47
2018-11-29T08:11:47
109,595,217
0
0
null
null
null
null
UTF-8
C++
false
false
420
h
messagereceiver.h
#ifndef MESSAGERECEIVER_H #define MESSAGERECEIVER_H #include <QObject> class MessageReceiver : public QObject { Q_OBJECT public: explicit MessageReceiver(QObject *parent = nullptr); ~MessageReceiver(); signals: void messageReceivedFormatted(QString arg); void messageReceivedRaw(QtMsgType type, const QMessageLogContext &context, const QString &str); public slots: }; #endif // MESSAGERECEIVER_H
ba0e1153c1f250414b998678ab4b2e09e6eb502b
3270597ce4b7a3dcbe0df4b1aff9e253a4a6a8bb
/Project ฮŸฮฝฯ„ฮฟฮบฮตฮฝฯ„ฯฮนฮบฯŒฯ‚ ฮ ฯฮฟฮณฯฮฑฮผฮผฮฑฯ„ฮนฯƒฮผฯŒฯ‚/C++ Project/CodeBlocks Project Hotel/include/Hotel.h
f89d5484beeecb54bc6a54cd83a6e65092a492f9
[ "MIT" ]
permissive
DimitrisKostorrizos/UndergraduateCeidProjects
e39e443d75cde68ab77d1d1ce7110ff782e1b0be
8e55971f5a2c3b867b9f17a8d68c39b9898458dd
refs/heads/master
2022-12-07T14:19:25.086282
2022-11-25T20:44:15
2022-11-25T20:44:15
242,327,023
9
7
MIT
2020-09-30T19:16:38
2020-02-22T11:07:30
HTML
UTF-8
C++
false
false
832
h
Hotel.h
#ifndef HOTEL_H #define HOTEL_H #include<iostream> #include<string> #include<vector> #include<Room.h> #include<RoomTypeC.h> #include<RoomTypeD.h> #include<RoomTypeE.h> #include<Booking.h> using namespace std; class Hotel { public: Hotel(string); virtual ~Hotel(); string getHotelName() { return hotelName; } void setHotelName(string name){ hotelName = name; } void addHotelRoom(Room* room); Room* recoverRoomOutOfID(int); Booking* recoverBookingOutOfID(int); bool addBookingToRoom(Booking*, int); int addBookingNoID(Booking*); void deleteBooking(int); double income(int); double income(); void bookingPlan(); vector <Room*> hotelRoom; vector<Booking*> hotelBooking; friend bool operator>(Booking& bb, RoomTypeC& cc); friend bool operator<(int x, Booking& aa); private: string hotelName; }; #endif // HOTEL_H
a3b0f02d6ff0c038bcb435ed63aeff64fef6bdde
0d949ae5cde3c2007ef87e4fcc062073049cf785
/proxyfield.h
72b0166d859b67bc6ad38d5bc92963c2ad421561
[]
no_license
ResoluteTeam/Battleship
7020c859d0825b6a360ed3ac63873e4c03cff0df
6fe5c9eeb083240a0a797cbb773ff10f335d6509
refs/heads/master
2021-01-18T21:47:25.616302
2016-06-07T02:06:16
2016-06-07T02:06:16
46,987,028
0
0
null
2015-11-27T21:14:10
2015-11-27T15:26:01
C++
WINDOWS-1251
C++
false
false
645
h
proxyfield.h
#ifndef PROXYFIELD_H #define PROXYFIELD_H #include "realfield.h" class ProxyField //ะšะปะฐัั-ะ—ะฐะผะตัั‚ะธั‚ะตะปัŒ (ะŸะฐั‚ั‚ะตั€ะฝ Proxy) { RealField *realField; int id, size; int x_pos; static int next_id; public: ProxyField(int pos, int sz) { id = next_id++; size = sz; realField = 0; x_pos = pos; } ~ProxyField() { delete realField; } void draw() { if(!realField) realField = new RealField(id); realField->draw(x_pos, size); } }; #endif
f5f5a2965ba3cee83e9e9e3b83c47ea98acdbac6
cdf9c9c76bb33836611ca88d84152dfccf60ed5c
/Object/material/glass.cpp
9f10aec44a04f1b2c4fb4e7b103ddb7414609568
[]
no_license
aureargo/superPoint
c7fa60ce6f0f2399324242253aacb55802768828
02c3397191629c3dc93f51093ca2deddb72844c6
refs/heads/master
2021-01-10T14:02:21.079527
2015-11-13T12:14:42
2015-11-13T12:14:42
42,996,306
0
0
null
null
null
null
UTF-8
C++
false
false
1,076
cpp
glass.cpp
#include "glass.h" Glass::Glass(const glm::vec3& color, float refractProp): Material(color), refractProp(refractProp) { } glm::vec3 Glass::direct(const Ray& cam, const glm::vec3& p, const glm::vec3& n, const Lumiere& l) const { /*if(!aLaLumiere(p,l)) return NOIR; float diffuse = fabsf(glm::dot(n, glm::normalize(l-p))) / pi; return (color * diffuse);*/ if(aLaLumiere(p,monteCarlo(l,p))) return color*l.absSpeculaire*absSpeculaire*speculaire(cam, p, n, l, brillance); else //return color; return NOIR; } glm::vec3 Glass::indirect(const Ray& cam, const glm::vec3& p, const glm::vec3& n, const Lumiere& l, int radMax) const { glm::vec3 c = radiance(Material::projection(cam, p, n), l, radMax); return color*l.absDiffus*absDiffus*c;//glm::vec3(c.r*color.r, c.g*color.g, c.b*color.b); //return c; } glm::vec3 Glass::projection(const Ray& cam, const glm::vec3& n) const { glm::vec3 wo; if(!refract(-cam.direction, n, refractProp, wo)) wo = reflect(-cam.direction,n); return wo; }
fec2905fd8545218117540c4f8500851f68fc610
780cbbc911860b98784b1e97873338064099ce54
/ๆจกๆ‹Ÿๅ™จ/CommonFiles/LXY/VC++/ProcessAndHwndAndThread/Inject/MyInject.h
b70800791d2f4e2d45fe77668bb0b6e4a593ecb0
[]
no_license
lxy12306/vmp-confuse
0932ef3939f60ede8f474a86e9a57672a67b0645
a2b25e37b371d6b310202daf65af267498df0509
refs/heads/main
2023-07-08T20:30:36.828442
2021-08-14T03:02:21
2021-08-14T03:02:21
395,868,656
0
0
null
null
null
null
GB18030
C++
false
false
1,415
h
MyInject.h
#pragma once #include "F:\Code\object\ProcessAndHwndAndThread\MyProcess.h" namespace LXY { class RemoteThreadInjection:public SingleProcess { /*ๅ‹ๅ…ƒๅฃฐๆ˜ŽไปฅๅŠusingๅฎšไน‰*/ #define MD_Throw_Handle(szError) throw LXY::m_HandleException(__FILE__,__LINE__,#szError, GetLastError()) private: /*็งๆœ‰ๆ•ฐๆฎๆˆๅ‘˜*/ std::string strDllName; //ๆณจๅ…ฅDLL็š„ๅๅญ— HMODULE hModuleDll = NULL; //ๆณจๅ…ฅDLL็š„ๆจกๅ—ๅฅๆŸ„ public: /*ๅ…ฌๆœ‰ๆ•ฐๆฎๆˆๅ‘˜*/ public: /*ๆž„้€ ๅ‡ฝๆ•ฐไธŽๆžๆž„ๅ‡ฝๆ•ฐ*/ RemoteThreadInjection(std::wstring wstr,std::string strDll) :SingleProcess(wstr), strDllName(strDll){ m_Inject(hProcess, strDllName); } ~RemoteThreadInjection () override { m_UnInject(hProcess, hModuleDll); } public: /*ๅฏผๅ‡บๅ‡ฝๆ•ฐ*/ private: /*ๅ…ถไป–้žๅฏผๅ‡บๅŠŸ่ƒฝๅ‡ฝๆ•ฐ*/ /// <summary> /// ่ฎพ็ฝฎๆœฌ่ฟ›็จ‹็š„ๆƒ้™ /// </summary> /// <returns>้”™่ฏฏ็ช—ๅฐ</returns> DWORD m_SetPrivilege(void); /// <summary> /// ่ฟœ็จ‹็บฟ็จ‹ๆณจๅ…ฅDLL /// </summary> /// <param name="hProcess">ๆณจๅ…ฅ็š„่ฟ›็จ‹ๅฅๆŸ„</param> /// <param name="strDll">ๆณจๅ…ฅ็š„DLL่ทฏๅพ„</param> void m_Inject(HANDLE hProcess, std::string strDll); /// <summary> /// ๅธ่ฝฝๆณจๅ…ฅ /// </summary> /// <param name="hProcess">ๅธ่ฝฝๆณจๅ…ฅ็š„่ฟ›็จ‹ๅฅๆŸ„</param> /// <param name="hModuleDll">ๅธ่ฝฝๆณจๅ…ฅ็š„DLLๆจกๅ—ๅฅๆŸ„</param> void m_UnInject(HANDLE hProcess, HMODULE hModuleDll); }; }
42617d75a14d94e8e887322330225471b651cde6
fea9068273f4cd339c3a64da818c0227943a4396
/stack/reverse_string_using_linkedlist_stack.cpp
b22ac661813e708410b274c20ff528a55ccb1739
[]
no_license
dthesiya/data-structure
fad8be1f67e6a427df8a560d9abb9e8e8e785cf2
991cd8c3497fe7f0cf7a7b1bc37cea9f1e3e0b22
refs/heads/master
2021-01-09T06:16:28.545821
2017-02-17T05:46:57
2017-02-17T05:46:57
null
0
0
null
null
null
null
UTF-8
C++
false
false
1,163
cpp
reverse_string_using_linkedlist_stack.cpp
// // Created by Priyank Vora on 9/2/16. // #include<iostream> #include<stack> #include<stdlib.h> using namespace std; struct Node { int data; struct Node *next; }; struct Node *head = NULL; void Insert(int x); void Print(); void Reverse(); void Insert(int x) { struct Node* new_node = (struct Node*)malloc(sizeof(struct Node)); new_node->data = x; new_node->next = NULL; struct Node *temp = head; if (temp == NULL) { head = new_node; return; } while(temp->next != NULL) { temp = temp->next; } temp->next = new_node; } void Print() { struct Node *temp = head; while(temp != NULL) { printf("%d",temp->data); temp = temp->next; } printf("\n"); } void Reverse() { stack<struct Node*> S; struct Node *traverse = head; while(traverse != NULL) { S.push(traverse); traverse = traverse->next; } struct Node *temp = S.top(); head = temp; S.pop(); while(!S.top()) { temp->next = S.top(); S.pop(); temp = temp->next; } temp->next = NULL; } int main() { Insert(1); Insert(2); Insert(5); Print(); Reverse(); printf("\n"); Print(); return 0; }
a71acd2bcb45dfda9d9e8e54837ebf847f016fe2
08b8cf38e1936e8cec27f84af0d3727321cec9c4
/data/crawl/squid/old_hunk_3794.cpp
1cd3a0253ab5b868b2e419bd3066c9fb7f7d8dbb
[]
no_license
ccdxc/logSurvey
eaf28e9c2d6307140b17986d5c05106d1fd8e943
6b80226e1667c1e0760ab39160893ee19b0e9fb1
refs/heads/master
2022-01-07T21:31:55.446839
2018-04-21T14:12:43
2018-04-21T14:12:43
null
0
0
null
null
null
null
UTF-8
C++
false
false
733
cpp
old_hunk_3794.cpp
} void fatal_dump(const char *message) { debug (0,0) ("Fatal: %s",message); exit (1); } void fatal(const char *message) { debug (0,0) ("Fatal: %s",message); exit (1); } /* used by fatalf */ static void fatalvf(const char *fmt, va_list args) { static char fatal_str[BUFSIZ]; vsnprintf(fatal_str, sizeof(fatal_str), fmt, args); fatal(fatal_str); } /* printf-style interface for fatal */ void fatalf(const char *fmt,...) { va_list args; va_start(args, fmt); fatalvf(fmt, args); va_end(args); } void debug_trap(const char *message) { fatal(message); } int Debug::TheDepth = 0; std::ostream & Debug::getDebugOut() { assert(TheDepth >= 0); ++TheDepth; if (TheDepth > 1) {
b5b8a27a0cc48abec21816a5e751cc331723cd27
83e01dcf901c92a3cff62fc6ee5315c0871d845e
/LinkedLists/ReorderList.cpp
4fc53afe8e717a707fa0ba687261e923a02f519b
[]
no_license
sushmatn/CodeLab
961bb991e6253a3fa914f0afe4bc2ade03d56ce2
ca34dce81d161088d8dd443f04424f464b35a179
refs/heads/master
2021-01-11T21:30:54.566820
2017-02-16T06:45:36
2017-02-16T06:45:36
78,795,625
0
0
null
null
null
null
UTF-8
C++
false
false
1,108
cpp
ReorderList.cpp
/** * Definition for singly-linked list. * struct ListNode { * int val; * ListNode *next; * ListNode(int x) : val(x), next(NULL) {} * }; */ ListNode* reverse(ListNode* root) { ListNode* prev; while(root) { ListNode* next = root->next; root->next = prev; prev = root; root = next; } return prev; } ListNode* Solution::reorderList(ListNode* A) { if(!A || !A->next) return A; ListNode* first = A, *second = A, *prev = 0; while(first && first->next) { first = first->next->next; prev = second; second = second->next; } if(prev) prev->next = 0; first = A; second = reverse(second); ListNode* resHead = new ListNode(0), *res = resHead; while(first && second) { res->next = first; res = res->next; first = first->next; res->next = second; res = res->next; second = second->next; } if(first) res->next = first; if(second) res->next = second; return resHead->next; }
75d48de750739902357fcbaf30635a7ee41f53e7
1fe7bac822d93074cd4cb878252b3a5da4679d54
/src/syl_net/protocol/protocol.tcc
0cc9128976a853b644e5923ab5e10fd32f3dbfbe
[]
no_license
kretzmoritz/syl_net
63feeee4f511c27e3896a1a140e12c571cda2cab
dc996a38698e1a58597e9e7e4e73a924aa1de49f
refs/heads/master
2021-01-10T08:34:24.116363
2015-12-29T10:28:38
2015-12-29T10:28:38
48,741,222
0
0
null
null
null
null
UTF-8
C++
false
false
476
tcc
protocol.tcc
#include "protocol.h" namespace SylNet { template<class T> bool Protocol::registerNetworkable( Networkable::Id _id, T& _object, SylUtil::InterpolationFunction<T> _interpolationFunction, bool _disableDefaultInterpolation) { NetworkableTarget<T>* target = new NetworkableTarget<T>( _object, _interpolationFunction, _disableDefaultInterpolation); auto pair = std::make_pair(_id, target); auto result = m_networkables.insert(pair); return result.second; } };
1d41f8665d8886e6a97b9e8f4597474e3a0f107e
8cf632d53b333c4542db078b7475e58ffc44cec8
/src/generator/uc_pso_generator_stencil_function.h
3eb27091f7a6bf5fb312daf70f6ee32647b16207
[]
no_license
UniqueCreator/uc-tools-graphics-gpu-pipeline-compiler
0d6362d44e1868a5ba61f882de04fcda6cca0160
164c55cf07cc132a0c0571b3a3f1fe43b104b55c
refs/heads/master
2020-04-16T04:42:28.535671
2019-05-11T18:26:26
2019-05-11T18:26:26
165,277,888
3
1
null
null
null
null
UTF-8
C++
false
false
312
h
uc_pso_generator_stencil_function.h
#pragma once #include <generator/uc_pso_generator_comparison_function.h> namespace uc { namespace pso { namespace generator { template <typename iterator > struct stencil_function : comparison_function<iterator> { }; } } }
f3e1707c5ac202ffd03c999229de2beec7d2f456
c4ff0b8520786683e934902c708adbef1912e8cd
/CMakeProjectPort/include/Sx/IClickable.hpp
18e823d2d1e61a9d9195a745c9a7b27e939b2b18
[]
no_license
cerpins/RayFrame
26bacb50d7ae52ff6bd9ab22360a647e90b6e73d
fc998b4aa478dcf1a3b94352b9965b99c065c811
refs/heads/master
2023-04-25T16:33:36.644111
2021-05-26T13:23:42
2021-05-26T13:23:42
371,034,728
0
0
null
null
null
null
UTF-8
C++
false
false
518
hpp
IClickable.hpp
#pragma once namespace Sx { /* This should be rebuilt into a generic class which passes around an interface in initializer from (*this) and takes an array of "IInformWhenDeleted" pointers from a pipe. Essentially, an event class that signals it's own going out of scope for safety, and generic, simple, passing into a pipe. */ struct IClickable { virtual ~IClickable(){}; virtual void wasClicked() = 0; }; } // namespace Sx
cbbd885dedd611daa3aa9bc02e320939fde8c73b
5c710bcf67f5e4efe3d33b26cf1a9ada15848b43
/AlvidLab2/AlvidLab2/task2/task2.cpp
574be87d56ea3f10a574a913abf961e33cd6ec7c
[]
no_license
alvid/Avalon
e6269e4d7f057a74caa73bd58a5240c5a728c2b3
b141f4599ba8218de4edf29a93b6a3ed4ec83f03
refs/heads/master
2021-03-06T19:20:21.550260
2020-04-08T10:23:09
2020-04-08T10:23:09
246,218,518
0
0
null
null
null
null
UTF-8
C++
false
false
3,511
cpp
task2.cpp
๏ปฟ// task2.cpp : ะญั‚ะพั‚ ั„ะฐะนะป ัะพะดะตั€ะถะธั‚ ั„ัƒะฝะบั†ะธัŽ "main". ะ—ะดะตััŒ ะฝะฐั‡ะธะฝะฐะตั‚ัั ะธ ะทะฐะบะฐะฝั‡ะธะฒะฐะตั‚ัั ะฒั‹ะฟะพะปะฝะตะฝะธะต ะฟั€ะพะณั€ะฐะผะผั‹. // #include <iostream> #include <future> #include <memory> // ั†ะตะปะตะฒะพะน ะพะฑัŠะตะบั‚ struct A { char data[2048]; A(std::string const& init_str) { memcpy(data, init_str.data(), std::min(init_str.length(), sizeof(data))); } static size_t creator(std::string name, size_t count) { std::cout << "[" << name << "]: started" << std::endl; std::string s("Vinni puh i vse-vse-vse"); std::vector<A> va; for (size_t i = 0; i < count; ++i) va.emplace_back(s); std::cout << "[" << name << "]: finished" << std::endl; return va.size(); } }; size_t tls_creator(std::string name, size_t count) { std::cout << "[" << name << "]: started" << std::endl; std::string s("Moya semya i drugie zveri"); thread_local std::vector<A> va; for (size_t i = 0; i < count; ++i) va.emplace_back(s); std::cout << "[" << name << "]: finished" << std::endl; return va.size(); } int main() { std::cout << "Hello, parallel World!\n"; //std::ostringstream oss; auto f1 = std::async(std::launch::async, [] (std::string name, size_t count) -> int { std::cout << "[" << name << "]: started" << std::endl; std::string s("tru-la-la i tra-la-la"); std::vector<std::unique_ptr<A>> va; for (size_t i = 0; i < count; ++i) va.push_back(std::make_unique<A>(s)); std::cout << "[" << name << "]: finished" << std::endl; return va.size(); }, "heap_creator", 12345); auto f2 = std::async(std::launch::async, &A::creator, "stack_creator", 54321); auto f3 = std::async(std::launch::async, tls_creator, "tls_creator", 23232); std::cout << "A long-long-long-long title" << std::endl; std::cout << "heap_creator: " << 1 << f1.get() << std::endl; std::cout << "stack_creator: " << 2 << f2.get() << std::endl; std::cout << "tls_creator: " << 3 << f3.get() << std::endl; } // ะ—ะฐะฟัƒัะบ ะฟั€ะพะณั€ะฐะผะผั‹: CTRL+F5 ะธะปะธ ะผะตะฝัŽ "ะžั‚ะปะฐะดะบะฐ" > "ะ—ะฐะฟัƒัะบ ะฑะตะท ะพั‚ะปะฐะดะบะธ" // ะžั‚ะปะฐะดะบะฐ ะฟั€ะพะณั€ะฐะผะผั‹: F5 ะธะปะธ ะผะตะฝัŽ "ะžั‚ะปะฐะดะบะฐ" > "ะ—ะฐะฟัƒัั‚ะธั‚ัŒ ะพั‚ะปะฐะดะบัƒ" // ะกะพะฒะตั‚ั‹ ะฟะพ ะฝะฐั‡ะฐะปัƒ ั€ะฐะฑะพั‚ั‹ // 1. ะ’ ะพะบะฝะต ะพะฑะพะทั€ะตะฒะฐั‚ะตะปั ั€ะตัˆะตะฝะธะน ะผะพะถะฝะพ ะดะพะฑะฐะฒะปัั‚ัŒ ั„ะฐะนะปั‹ ะธ ัƒะฟั€ะฐะฒะปัั‚ัŒ ะธะผะธ. // 2. ะ’ ะพะบะฝะต Team Explorer ะผะพะถะฝะพ ะฟะพะดะบะปัŽั‡ะธั‚ัŒัั ะบ ัะธัั‚ะตะผะต ัƒะฟั€ะฐะฒะปะตะฝะธั ะฒะตั€ัะธัะผะธ. // 3. ะ’ ะพะบะฝะต "ะ’ั‹ั…ะพะดะฝั‹ะต ะดะฐะฝะฝั‹ะต" ะผะพะถะฝะพ ะฟั€ะพัะผะฐั‚ั€ะธะฒะฐั‚ัŒ ะฒั‹ั…ะพะดะฝั‹ะต ะดะฐะฝะฝั‹ะต ัะฑะพั€ะบะธ ะธ ะดั€ัƒะณะธะต ัะพะพะฑั‰ะตะฝะธั. // 4. ะ’ ะพะบะฝะต "ะกะฟะธัะพะบ ะพัˆะธะฑะพะบ" ะผะพะถะฝะพ ะฟั€ะพัะผะฐั‚ั€ะธะฒะฐั‚ัŒ ะพัˆะธะฑะบะธ. // 5. ะŸะพัะปะตะดะพะฒะฐั‚ะตะปัŒะฝะพ ะฒั‹ะฑะตั€ะธั‚ะต ะฟัƒะฝะบั‚ั‹ ะผะตะฝัŽ "ะŸั€ะพะตะบั‚" > "ะ”ะพะฑะฐะฒะธั‚ัŒ ะฝะพะฒั‹ะน ัะปะตะผะตะฝั‚", ั‡ั‚ะพะฑั‹ ัะพะทะดะฐั‚ัŒ ั„ะฐะนะปั‹ ะบะพะดะฐ, ะธะปะธ "ะŸั€ะพะตะบั‚" > "ะ”ะพะฑะฐะฒะธั‚ัŒ ััƒั‰ะตัั‚ะฒัƒัŽั‰ะธะน ัะปะตะผะตะฝั‚", ั‡ั‚ะพะฑั‹ ะดะพะฑะฐะฒะธั‚ัŒ ะฒ ะฟั€ะพะตะบั‚ ััƒั‰ะตัั‚ะฒัƒัŽั‰ะธะต ั„ะฐะนะปั‹ ะบะพะดะฐ. // 6. ะงั‚ะพะฑั‹ ัะฝะพะฒะฐ ะพั‚ะบั€ั‹ั‚ัŒ ัั‚ะพั‚ ะฟั€ะพะตะบั‚ ะฟะพะทะถะต, ะฒั‹ะฑะตั€ะธั‚ะต ะฟัƒะฝะบั‚ั‹ ะผะตะฝัŽ "ะคะฐะนะป" > "ะžั‚ะบั€ั‹ั‚ัŒ" > "ะŸั€ะพะตะบั‚" ะธ ะฒั‹ะฑะตั€ะธั‚ะต SLN-ั„ะฐะนะป.
0e0c5602ffcf334e25097ccad03452475c12e7c6
867a035ae73d9ebac5586c224cca569e3dd26921
/client.hpp
af296f611de89c129506943ce007c91939972b64
[]
no_license
liouyi250/linux-socket
6edab52d12351a7ff1a3319659a42e8d797ced7a
3cd8264fd9795e1de22bbc56659d7fc30d2b05e7
refs/heads/master
2020-08-22T03:43:28.938817
2019-11-17T12:15:43
2019-11-17T12:15:43
216,310,464
0
0
null
null
null
null
UTF-8
C++
false
false
3,436
hpp
client.hpp
#ifndef _CLIENT_H #define _CLIENT_H #include <iostream> #include "common/socketwrap.h" #ifndef BUFF_SIZE #define BUFF_SIZE 10240 #endif class Client{ private: int connfd; char firstBuff[BUFF_SIZE*10]; char secondBuff[BUFF_SIZE]; int lastPos; public: Client(){ connfd=-1; lastPos=0; } ~Client(){ this->close(); #ifdef _WIN32 WSACleanup(); #endif } void init(){ #ifdef _WIN32 WSADATA data; int ret=WSAStartup(MAKEWORD(2,2),&data); if(ret!=0){ printf("ๅˆๅง‹ๅŒ–ๅฅ—ๆŽฅๅญ—็Žฏๅขƒๅคฑ่ดฅ\n"); exit(0); } #endif connfd=Socket(AF_INET,SOCK_STREAM,0); } int connect(const char *ip,unsigned short port){ if(connfd==-1) { init(); } sockaddr_in addr; addr.sin_family=AF_INET; addr.sin_port=htons(port); #ifndef _WIN32 inet_pton(AF_INET,ip,&addr.sin_addr); #else addr.sin_addr.S_un.S_addr=inet_addr(ip); #endif return Connect(connfd,(const struct sockaddr*)&addr,sizeof(sockaddr_in)); } int send(DATAHEADER *header,int size){ return Send(connfd,(const char*)header,size,0); } int recv(char *buff,int size){ return Recv(connfd,buff,size,0); } void onSelect(){ if(!isRun()) return; fd_set fdRead; timeval tv; FD_ZERO(&fdRead); FD_SET(connfd,&fdRead); tv.tv_sec=0; tv.tv_usec=0; Select(connfd+1,&fdRead,NULL,NULL,&tv); if(FD_ISSET(connfd,&fdRead)){ FD_CLR(connfd,&fdRead); if(-1==processor()){ close(); } } } //SOCKET้ป˜่ฎค็š„ๆŽฅๆ”ถ็ผ“ๅ†ฒๅŒบๆœ‰8K๏ผŒๅฆ‚ๆžœๆ•ฐๆฎๅ‘้€็š„้ข‘็އๅคชๅฟซ๏ผŒไผš้€ ๆˆ้˜ปๅกž๏ผŒ้œ€่ฆไธ€ไธช็ผ“ๅ†ฒๅŒบๆฅๆŽฅๆ”ถ้ป˜่ฎค็ผ“ๅญ˜ๅŒบไธญ็š„ๆ•ฐๆฎ int processor(){ int ret=Recv(connfd,secondBuff,BUFF_SIZE,0);//ๅ…จ้ƒจไปŽsocket้ป˜่ฎค็ผ“ๅ†ฒๅŒบ้‡Œ้ขๆŽฅๆ”ถๅฎŒ if(ret<=0) { this->close(); return -1; } memcpy(firstBuff+lastPos,secondBuff,ret);//ๅฐ†ๅญ—็ฌฆไธฒไปŽ็ฌฌไบŒ็ผ“ๅ†ฒๅŒบๆ‹ท่ดๅˆฐ็ฌฌไธ€็ผ“ๅ†ฒๅŒบ lastPos+=ret; while(lastPos>=sizeof(DATAHEADER)){//ๅˆคๆ–ญ็ฌฌไธ€็ผ“ๅ†ฒๅŒบๅ†…็š„้•ฟๅบฆๆ˜ฏๅฆๆœ‰ไธ€ไธชๅคด้ƒจ้•ฟๅบฆ DATAHEADER *header=(DATAHEADER*)firstBuff; if(lastPos>=header->dataLength){//ๅˆคๆ–ญ็ผ“ๅ†ฒๅŒบๅ†…็š„้•ฟๅบฆๆ˜ฏๅฆๆ˜ฏไธ€ไธชๅฎŒๆ•ด็š„ๆถˆๆฏ int size=lastPos-header->dataLength;//ไฟๅญ˜้•ฟๅบฆ onNetMsg(header); memcpy(firstBuff,firstBuff+header->dataLength,size);//ๅฐ†ๅ‰ฉไฝ™ๆœชๅค„็†็š„ๅญ—็ฌฆไธฒๆ‹ท่ดๅˆฐ็ผ“ๅ†ฒๅŒบๅคด้ƒจ lastPos=size;//ๆ”นๅ˜็ผ“ๅ†ฒๅŒบๅ†…้•ฟๅบฆ }else{ break; } } return 0; } void onNetMsg(DATAHEADER *header){ switch (header->cmd) { case CMD_NEW_USER:{ NEWUSER *user=(NEWUSER*)header; // printf("ๆ–ฐ็š„ๅฎขๆˆท็ซฏๅŠ ๅ…ฅ,ๅฝ“ๅ‰่ฟžๆŽฅๆ•ฐ:%d\n",user->fds); break; } case CMD_LOGIN_RESULT:{ LOGIN *login=(LOGIN*)header; // printf("ๆ”ถๅˆฐๆœๅŠก็ซฏๆถˆๆฏ้•ฟๅบฆ:%d๏ผŒๆถˆๆฏ็ฑปๅž‹:%d\n",login->dataLength,login->cmd); break; } case CMD_LOGOUT_RESULT:{ LOGOUTRESULT *ret=(LOGOUTRESULT*)header; // printf("ๆ”ถๅˆฐๆœๅŠก็ซฏๆถˆๆฏ้•ฟๅบฆ:%d๏ผŒๆถˆๆฏ็ฑปๅž‹:%d\n",ret->dataLength,ret->cmd); break; } case CMD_EXIT:{ USEREXIT *ret=(USEREXIT*)header; // printf("ๆœ‰ๅฎขๆˆท็ซฏ้€€ๅ‡บ๏ผŒๅฝ“ๅ‰่ฟžๆŽฅๆ•ฐ%d\n",ret->fds); break; } default:{ printf("้”™่ฏฏ\n"); break; } } } bool isRun(){ return connfd!=-1; } int close(){ return Close(connfd); } }; #endif
7139e7a3d964767ac4ed36dce6bd567631054751
40dc790849dedc6acebddd4bfc171b18d5c4aa64
/source/src/RStarMap.cpp
1c339808d422f97669e0900ec72d6a64f94eae14
[]
no_license
HU-R2D2/map
7a465e9913b27b4dbf13c4a6e1d76d7dfc653549
77f3239554d656cf22ca63e69e59463a15ee851b
refs/heads/master
2021-01-18T22:39:39.665703
2016-06-16T20:20:59
2016-06-16T20:20:59
55,134,273
0
1
null
2016-06-15T13:02:40
2016-03-31T08:39:01
C++
UTF-8
C++
false
false
10,566
cpp
RStarMap.cpp
// ++--++ // @file RStarMap.hpp // @date Created: <11-05-16> // @version <1.0.0> // // @author Chiel Douwes // // @section LICENSE // License: newBSD // // Copyright ๏ฟฝ 2016, HU University of Applied Sciences Utrecht. // 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 HU University of Applied Sciences Utrecht 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 BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS // "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, // THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE // ARE DISCLAIMED. IN NO EVENT SHALL THE HU UNIVERSITY OF APPLIED SCIENCES UTRECHT // 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. // ++--++ #include "../include/RStarMap.hpp" #include "../include/RTreeLeaf.hpp" namespace r2d2 { RStarMap::RStarMap(): map{new root_type{}} { } const Box RStarMap::get_map_bounding_box() { return map->get_bounds(); } void RStarMap::set_box_info(const Box box, const BoxInfo box_info) { std::vector<std::pair<Box, BoxInfo>> new_boxes; r2d2::Translation axis_size{box.get_axis_size()}; bool has_x = axis_size.get_x() > 0 * r2d2::Length::METER, has_y = axis_size.get_y() > 0 * r2d2::Length::METER, has_z = axis_size.get_z() > 0 * r2d2::Length::METER; std::vector<std::shared_ptr<node_type>> found; map->search(box, found); for (auto leaf : found) { auto data = leaf->get_data(); Box bounds = leaf->get_bounds(); // at least two of the three axes must actually intersect for proper areas to be formed // use the old version of the intersection detection, as otherwise there will be boxes of length zero // do some wizzardry with length zero detection and stuff to circumvent some bugs if (( (bounds.get_top_right().get_x() > box.get_bottom_left().get_x() && bounds.get_bottom_left().get_x() < box.get_top_right().get_x()) || (!has_x && (bounds.get_bottom_left().get_x() / r2d2::Length::METER) == (box.get_bottom_left().get_x() / r2d2::Length::METER)) ) && ( (bounds.get_top_right().get_y() > box.get_bottom_left().get_y() && bounds.get_bottom_left().get_y() < box.get_top_right().get_y()) || (!has_y && (bounds.get_bottom_left().get_y() / r2d2::Length::METER) == (box.get_bottom_left().get_y() / r2d2::Length::METER)) ) && ( (bounds.get_top_right().get_z() > box.get_bottom_left().get_z() && bounds.get_bottom_left().get_z() < box.get_top_right().get_z()) || (!has_z && (bounds.get_bottom_left().get_z() / r2d2::Length::METER) == (box.get_bottom_left().get_z() / r2d2::Length::METER)))) { // temporary objects are removed as they diminish performance if (bounds.get_bottom_left().get_x() < box.get_bottom_left().get_x()) { // the current box extends the new box in the -x direction // insert the extension new_boxes.push_back( {Box{bounds.get_bottom_left(), Coordinate{ box.get_bottom_left().get_x(), bounds.get_top_right().get_y(), bounds.get_top_right().get_z() }}, *data } ); // resize the current box as to not include the newly made box bounds = Box{Coordinate{ box.get_bottom_left().get_x(), bounds.get_bottom_left().get_y(), bounds.get_bottom_left().get_z() }, bounds.get_top_right()}; } if (bounds.get_top_right().get_x() > box.get_top_right().get_x()) { //Make new box new_boxes.push_back( {Box{Coordinate{ box.get_top_right().get_x(), bounds.get_bottom_left().get_y(), bounds.get_bottom_left().get_z() }, bounds.get_top_right()}, *data }); //Cut-away old bounds = Box{bounds.get_bottom_left(), Coordinate{ box.get_top_right().get_x(), bounds.get_top_right().get_y(), bounds.get_top_right().get_z() }}; } if (bounds.get_bottom_left().get_y() < box.get_bottom_left().get_y()) { new_boxes.push_back( {Box{bounds.get_bottom_left(), Coordinate{ bounds.get_top_right().get_x(), box.get_bottom_left().get_y(), bounds.get_top_right().get_z() }}, *data }); bounds = Box{Coordinate{ bounds.get_bottom_left().get_x(), box.get_bottom_left().get_y(), bounds.get_bottom_left().get_z() }, bounds.get_top_right()}; } if (bounds.get_top_right().get_y() > box.get_top_right().get_y()) { new_boxes.push_back( {Box{Coordinate{ bounds.get_bottom_left().get_x(), box.get_top_right().get_y(), bounds.get_bottom_left().get_z() }, bounds.get_top_right()}, *data }); bounds = Box{bounds.get_bottom_left(), Coordinate{ bounds.get_top_right().get_x(), box.get_top_right().get_y(), bounds.get_top_right().get_z() }}; } if (bounds.get_top_right().get_z() > box.get_top_right().get_z()) { new_boxes.push_back( {Box{Coordinate{ bounds.get_bottom_left().get_x(), bounds.get_bottom_left().get_y(), box.get_top_right().get_z() }, bounds.get_top_right()}, *data }); // last box cutaway removed } if (bounds.get_bottom_left().get_z() < box.get_bottom_left().get_z()) { new_boxes.push_back( {Box{bounds.get_bottom_left(), Coordinate{ bounds.get_top_right().get_x(), bounds.get_top_right().get_y(), box.get_bottom_left().get_z() }}, *data }); // last box cutaway removed } leaf->remove(); } } // shrink to fit decreases performance substantially // map.shrink_to_fit(); //Add newly cut boxes for (std::pair<Box, BoxInfo> box_cut : new_boxes) { add_box(box_cut.first, box_cut.second); } // if the new box has neither navigable or an obstacle // then don't bother adding it as the empty area is unknown by default if (box_info.get_has_navigatable() || box_info.get_has_obstacle()) { //Add the actual new box add_box(box, box_info); } } int RStarMap::get_map_size() const { std::vector<std::shared_ptr<node_type>> found; map->search(map->get_bounds(), found); return int(found.size()); } std::vector<std::pair<Box, BoxInfo>> RStarMap::get_intersecting(const Box &bounds) const { std::vector<std::shared_ptr<r2d2::node_type>> found; map->search(bounds, found); std::vector<std::pair<Box, BoxInfo>> pair_vector{}; for (auto item : found) { pair_vector.push_back({item->get_bounds(), *item->get_data()}); } return pair_vector; } void RStarMap::add_box(Box box, BoxInfo info) { std::shared_ptr<node_type> newLeaf{ std::make_shared<RTreeLeaf<MIN_NODES, MAX_NODES, const BoxInfo>>( box, info )}; insert(newLeaf); } void RStarMap::insert(std::shared_ptr<node_type> node) { // first find the correct leaf to insert to, then insert it into that node map->find_leaf(node)->insert(node); } }
18d44afd1ee2195bca36f0ef7c17a142f3c39955
9ead5fcc5efaf7a73c4c585d813c1cddcb89666d
/m5/src/mem/ruby/tester/RaceyDriver.hh
9a4702ba82ff4fbecd6c337cebd11de48ee2a76f
[ "BSD-3-Clause" ]
permissive
x10an14/tdt4260Group
b539b6271c8f01f80a9f75249779fb277fa521a4
1c4dc24acac3fe6df749e0f41f4d7ab69f443514
refs/heads/master
2016-09-06T02:48:04.929661
2014-04-08T10:40:22
2014-04-08T10:40:22
null
0
0
null
null
null
null
UTF-8
C++
false
false
3,880
hh
RaceyDriver.hh
/* * Copyright (c) 1999-2008 Mark D. Hill and David A. Wood * 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 copyright holders 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 BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR * A PARTICULAR PURPOSE 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. */ /* * $Id$ * * Description: The driver interface between racey pseudo threads and ruby * memory timing simulator. * */ #ifndef RACEYDRIVER_H #define RACEYDRIVER_H #include <map> #include <vector> #include "mem/ruby/common/Global.hh" #include "mem/ruby/tester/Tester_Globals.hh" #include "mem/ruby/common/Driver.hh" #include "mem/ruby/tester/RaceyPseudoThread.hh" #include "mem/ruby/libruby.hh" #define g_DEADLOCK_THRESHOLD 5000 struct address_data { Address address; uint8_t * data; }; class RaceyDriver : public Driver, public Consumer { public: friend class RaceyPseudoThread; // Constructors RaceyDriver(int num_procs, int tester_length); // Destructor ~RaceyDriver(); // Public Methods int runningThreads(); void registerThread0Wakeup(); void joinThread(); bool Thread0Initialized() { return m_racey_pseudo_threads[0]->getInitializedState(); }; void hitCallback(int64_t request_id); void wakeup(); void printStats(ostream& out) const; void clearStats() {} void printConfig(ostream& out) const {} void go(); integer_t getInstructionCount(int procID) const; // save/load cpu states void saveCPUStates(int cpu_id, string filename) { m_racey_pseudo_threads[cpu_id]->saveCPUStates(filename); }; void loadCPUStates(int cpu_id, string filename) { m_racey_pseudo_threads[cpu_id]->loadCPUStates(filename); }; // reset IC void resetIC(int cpu_id) { m_racey_pseudo_threads[cpu_id]->resetIC(); } void print(ostream& out) const; private: // Private copy constructor and assignment operator RaceyDriver(const RaceyDriver& obj); RaceyDriver& operator=(const RaceyDriver& obj); // Data Members (m_ prefix) std::vector<RaceyPseudoThread*> m_racey_pseudo_threads; int m_done_counter; bool m_wakeup_thread0; Time m_finish_time; map <int64_t, pair <int, struct address_data> > requests; RubyEventQueue * eventQueue; int m_num_procs; int m_tester_length; }; // Output operator declaration ostream& operator<<(ostream& out, const RaceyDriver& obj); // ******************* Definitions ******************* // Output operator definition extern inline ostream& operator<<(ostream& out, const RaceyDriver& obj) { obj.print(out); out << flush; return out; } #endif //RACEYDRIVER_H
dc390bbb4c133b3bdeab06768c299f028449993e
1801c9433f23923bd8a67009944e12e953ae21d9
/Untitled1.cpp
903d9deb59e2c98c69172daae6619ca223a5c7ac
[]
no_license
nguyenquan3004/gooo
faddb7ae577e460bbe9f50e5192502346a362c63
edcfe7d9aa89b735d37a7947e40e19c88cb39d17
refs/heads/master
2020-03-16T19:51:05.107881
2018-05-14T23:58:56
2018-05-14T23:58:56
132,934,759
0
2
null
2018-05-10T17:55:07
2018-05-10T17:43:16
null
UTF-8
C++
false
false
3,598
cpp
Untitled1.cpp
#include<stdio.h> #include<string.h> #define SIZE 100 typedef struct member{ char name[51]; int age; int ID; int group_ID; } ; typedef struct member member; void input(member *tv) { printf("Nhap vao so hieu thanh vien: "); scanf("%d", &tv->ID); while (getchar()!='\n'); printf("Nhap vao ten thanh vien: "); gets(tv->name); printf("Nhap vao tuoi cua thanh vien: "); scanf("%d", &tv->age); while (getchar()!='\n'); printf("Nhap vao group_ID: "); scanf("%d", &tv->group_ID); while (getchar()!='\n'); } void output(member *tv) { printf("%-35s\t%-7d\t%-5d\t%-9d\n",tv->name, tv->age, tv->ID, tv->group_ID); } int find(member *tv, char *ten) { int count=-1; while (strcmp(tv->name, ten)!=0); { tv++; count ++; } return count; } void del(member *tv) { strcpy(tv->name, (tv+1)->name); tv->age=(tv+1)->age; tv->group_ID=(tv+1)->group_ID; tv->ID=(tv+1)->ID; } void edit(member *tv) { printf("Nhap lai so hieu thanh vien: "); scanf("%d", &tv->ID); while (getchar()!='\n'); printf("Nhap lai ten thanh vien: "); gets(tv->name); do{printf("Nhap lai tuoi cua thanh vien: "); scanf("%d", &tv->age); while (getchar()!='\n'); if((tv->age<0)&&(tv->age>100)) printf("Nhap lai so tuoi!\n"); } while((tv->age<0)&&(tv->age>110)); printf("Nhap lai group_ID: "); scanf("%d", &tv->group_ID); while (getchar()!='\n'); } int main() { char hoten[51]; member tv[SIZE]; int stt,i; char choice; //Menu printf("Chuong trinh quan ly thanh vien doi SVTN vien CNTT&TT: \n"); do{ printf("Menu: \n"); printf("1. Nhap vao thong tin thanh vien\n"); printf("2. In thong tin thanh vien\n"); printf("3. Them thanh vien\n"); printf("4. Tim kiem thong tin thanh vien\n"); printf("5. Xoa thanh vien\n"); printf("6. Chinh sua thong tin thanh vien\n"); printf("7. Thoat\n"); printf("Moi ban nhap vao lua chon: "); scanf("%c", &choice); while(getchar()!='\n'); switch (choice) { case '1': printf("Nhap vao thong tin thanh vien\n"); printf("Nhap vao so thanh vien nhap vao: "); scanf("%d", &stt); while (getchar()!='\n'); for (i=0; i<stt; i++) {printf("Nhap vao thong tin thanh vien thu %d\n", i+1); input(&tv[i]);} printf("\n"); break; case '2': printf("In thong tin thanh vien\n"); int i; printf("%-35s\t%-7s\t%-5s\t%-9s\n", "Ho ten", "Tuoi", "ID", "Group_ID"); for (i=0; i<stt; i++) output(&tv[i]); printf("\n"); break; case '3': printf("Them thanh vien\n"); stt++; input(&tv[stt-1]); printf("\n"); break; case '4': printf("Tim kiem thong tin thanh vien\n"); printf("Nhap vao ten thanh vien can tim: "); gets(hoten); printf("%-35s\t%-7s\t%-5s\t%-9s\n", "Ho ten", "Tuoi", "ID", "Group_ID"); output(&tv[find( tv, hoten)]); printf("\n"); break; case '5': printf("Xoa thanh vien:\n"); printf("Nhap vao ten thanh vien can xoa: "); gets(hoten); int num; stt--; num=find(tv, hoten); for (i=num; i<stt;i++) del(&tv[i]); printf("Da xoa thanh vien!\n"); printf("\n"); break; case '6': printf("Chinh sua thong tin thanh vien:\n"); printf("Nhap ten thanh vien can sua thong tin: "); gets(hoten); num=find(tv, hoten); edit(&tv[num]); printf("Da sua xong thong tin thanh vien! \n"); printf("\n"); break; case '7': printf("Ban da chon che do thoat khoi chuong trinh!\n"); break; default: printf("Moi ban nhap lai lua chon tu 1 den 7!\n"); break; } }while (choice!='7'); return 0; }
386c942981ece1af9c0853c6127bcd9cb7989025
0ecf930e104dddd589c880c42fd8a9346f9e9e07
/samples/game/src/car.cpp
1c5fe3a9df07189d2dccfa5c4f178ec04b999043
[]
no_license
Erkaman/graphics-experiments
a9d111999fcd7ea73568d0392be61b246877c6e2
ca3759c03feedb62426d671b34ca09f8beaf3f3d
refs/heads/master
2020-04-11T02:58:15.332028
2016-05-19T16:30:44
2016-05-19T16:30:44
31,284,173
2
1
null
null
null
null
UTF-8
C++
false
false
6,214
cpp
car.cpp
#include "car.hpp" #include "ewa/geometry_object.hpp" #include "ewa/keyboard_state.hpp" #include "ewa/physics_world.hpp" #include "ewa/view_frustum.hpp" #include "ewa/bt_util.hpp" #include "ewa/common.hpp" #include "physics_mask.hpp" #include "env_camera.hpp" #include <btBulletDynamicsCommon.h> // hard coded for now. const btVector3 CAR_DIMENSIONS(4.0f, 2.0f, 8.0f); const float MASS_OFFSET = -0.2f; const float WHEEL_RADIUS = 0.3f; const float FRONT_WHEEL_FRICTION = 1.9f; const float BACK_WHEEL_FRICTION = 1.9f; const float SUSPENSION_REST_LENGTH = 0.6f; // (see also maxSuspensionTravelCm) const float ROLL_INFLUENCE = 0.4f; const unsigned int CAR_ID = 1337; float maxEngineForce = 1000.f; const btVector3 FRONT_WHEEL_DISTANCE(CAR_DIMENSIONS.x()/2 - 0.1f, MASS_OFFSET, (CAR_DIMENSIONS.z()/2 - 0.3f - WHEEL_RADIUS)); const btVector3 BACK_WHEEL_DISTANCE(CAR_DIMENSIONS.x()/2 - 0.1f, MASS_OFFSET, -(CAR_DIMENSIONS.z()/2 - 0.1f - WHEEL_RADIUS)); bool Car::Init(const Vector3f& position) { bool ret = GeometryObject::Init("obj/car_blend.eob", position, // translation btQuaternion::getIdentity(), // rotation 1.0f, // scale CAR_ID, COL_CAR, carCollidesWith ); for(int i = 0; i < 6; ++i) { m_envCameras[i] = new EnvCamera(position, i ); m_lightFrustums[i] = new ViewFrustum(); } return ret; } Car::Car(): m_raycastVehicle(NULL) { } Car::~Car() { } void Car::Update( const ViewFrustum* cameraFrustum, const ViewFrustum* lightFrustum, DualParaboloidMap& dualParaboloidMap, const ViewFrustum* reflectionFrustum) { GeometryObject::Update(cameraFrustum, lightFrustum, dualParaboloidMap, reflectionFrustum); for(int i = 0; i < 6; ++i) { m_envCameras[i]->SetPosition(GetPosition() ); m_envCameras[i]->Update(0); m_lightFrustums[i]->Update( m_envCameras[i]->GetVp(), GetPosition() ); } if(!m_raycastVehicle) { // if not yet added to physicsworld, there is nothing we can do. return; } const KeyboardState& kbs = KeyboardState::GetInstance(); const float steeringClamp = 0.3f; const float steeringIncrement = 0.04f; float engineForce = 0.0f; float breakingForce = 0.0f; static float vehicleSteering = 0.0; if( kbs.IsPressed(GLFW_KEY_UP) ) { engineForce = maxEngineForce; breakingForce = 0.f; } else if(kbs.IsPressed(GLFW_KEY_DOWN) ) { engineForce = -maxEngineForce; breakingForce = 0.f; } if( kbs.IsPressed(GLFW_KEY_LEFT) ) { vehicleSteering += steeringIncrement; if (vehicleSteering > steeringClamp) vehicleSteering = steeringClamp; } else if( kbs.IsPressed(GLFW_KEY_RIGHT) ) { vehicleSteering -= steeringIncrement; if (vehicleSteering < -steeringClamp) vehicleSteering = -steeringClamp; } else { vehicleSteering = 0; } m_raycastVehicle->applyEngineForce(engineForce,2); m_raycastVehicle->setBrake(breakingForce,2); m_raycastVehicle->applyEngineForce(engineForce,3); m_raycastVehicle->setBrake(breakingForce,3); m_raycastVehicle->setSteeringValue(vehicleSteering,0); m_raycastVehicle->setSteeringValue(vehicleSteering,1); } Vector3f Car::GetForwardVector()const { if(!m_raycastVehicle) { return Vector3f(1,0,0); // default vector. } else { return fromBtVec(m_raycastVehicle->getForwardVector()); } } void Car::AddToPhysicsWorld(PhysicsWorld* physicsWorld) { GeometryObject::AddToPhysicsWorld(physicsWorld); btRigidBody* rigidBody = GetRigidBody(); rigidBody->setActivationState(DISABLE_DEACTIVATION); // Needed for btRaycastVehicles // Tuning for car (applied to all the wheels internally). btRaycastVehicle::btVehicleTuning tuning; tuning.m_suspensionStiffness = 20.0f; tuning.m_suspensionDamping = 2.3f; tuning.m_suspensionCompression = 4.4f; m_vehicleRaycaster = physicsWorld->NewVehicleRaycaster(); m_raycastVehicle = new btRaycastVehicle(tuning, rigidBody, m_vehicleRaycaster); m_raycastVehicle->setCoordinateSystem(0, 1, 2); physicsWorld->AddVehicle(m_raycastVehicle); const btVector3 wheelDirection(0, -1.0f, 0); // This is the direction of the raycast. const btVector3 wheelAxle(-1.0f, 0, 0); // This is spinning direction (using right hand rule). // Right front wheel. 0 m_raycastVehicle->addWheel( FRONT_WHEEL_DISTANCE, // connection point wheelDirection, // wheel direction wheelAxle, // axle SUSPENSION_REST_LENGTH, WHEEL_RADIUS, tuning, true // isFrontWheel ); btWheelInfo& rightFrontWheel = m_raycastVehicle->getWheelInfo(0); rightFrontWheel.m_rollInfluence = ROLL_INFLUENCE; rightFrontWheel.m_frictionSlip = FRONT_WHEEL_FRICTION; // Left front wheel. 1 m_raycastVehicle->addWheel( btVector3(-FRONT_WHEEL_DISTANCE.x(), FRONT_WHEEL_DISTANCE.y(), FRONT_WHEEL_DISTANCE.z()), // connection point wheelDirection, // wheel direction wheelAxle, // axle SUSPENSION_REST_LENGTH, WHEEL_RADIUS, tuning, true // isFrontWheel ); btWheelInfo& leftFrontWheel = m_raycastVehicle->getWheelInfo(1); leftFrontWheel.m_rollInfluence = ROLL_INFLUENCE; leftFrontWheel.m_frictionSlip = FRONT_WHEEL_FRICTION; // Right back wheel. 2 m_raycastVehicle->addWheel( BACK_WHEEL_DISTANCE, // connection point wheelDirection, // wheel direction wheelAxle, // axle SUSPENSION_REST_LENGTH, WHEEL_RADIUS, tuning, false // isFrontWheel ); btWheelInfo& rightBackWheel = m_raycastVehicle->getWheelInfo(2); rightBackWheel.m_rollInfluence = ROLL_INFLUENCE; rightBackWheel.m_frictionSlip = BACK_WHEEL_FRICTION; // Left back wheel. 3 m_raycastVehicle->addWheel( btVector3(-BACK_WHEEL_DISTANCE.x(), BACK_WHEEL_DISTANCE.y(), BACK_WHEEL_DISTANCE.z()), // connection point wheelDirection, // wheel direction wheelAxle, // axle SUSPENSION_REST_LENGTH, WHEEL_RADIUS, tuning, false // isFrontWheel ); btWheelInfo& leftBackWheel = m_raycastVehicle->getWheelInfo(3); leftBackWheel.m_rollInfluence = ROLL_INFLUENCE; leftBackWheel.m_frictionSlip = BACK_WHEEL_FRICTION; } ViewFrustum** Car::GetLightFrustums() { return m_lightFrustums; } EnvCamera** Car::GetEnvCameras() { return m_envCameras; }
7847754c41172d4c2be8827f965f60294a6530c1
1e79dc6583448fa711bc6f93ff29ffb982e58f1b
/code/l3-3-17.cpp
9ce61da175171415590a1b253672453f2a93c9c0
[]
no_license
QHSakura/c-NOTE
0416eacae4b8c5da7d5e11e26e2fa5f63947e300
80ce2a4582ba73841044437fa9c4e610456385e4
refs/heads/master
2022-05-13T03:11:58.310565
2018-06-07T11:55:20
2018-06-07T11:55:20
null
0
0
null
null
null
null
UTF-8
C++
false
false
704
cpp
l3-3-17.cpp
๏ปฟ#include<iostream> #include<vector> #include<string> #include<cctype> using namespace std; int main(void) { //freopen("l3.17.txt", "r", stdin); string word; vector<string> sWord; while (getline(cin, word)) //ไธ€ๆฌก่ฏปไธ€่กŒ { sWord.push_back(word); } for (auto &i : sWord) //ๆณจๆ„ๆ˜ฏๅผ•็”จ { for (int j = 0; j < i.size(); j++) { if (islower(i[j])) //ๅฆ‚ๆžœๆ˜ฏๅฐๅ†™ๅญ—ๆฏ๏ผŒไธบ็œŸ ๅœจๅคดๆ–‡ไปถ cctype ไธ‹ i[j] = i[j] - 32; //ๅฏนๅบ”ๅฐๅ†™ๅญ—ๆฏ็š„ ASCII - 32 ๅพ—ๅˆฐๅคงๅ†™ๅญ—ๆฏ } } for (auto &i : sWord) { cout << i << endl; } return 0; } /* ่พ“ๅ…ฅ hi nice to meet you You are my friend AAAAxxxx */ /* ่พ“ๅ‡บ HI NICE TO MEET YOU YOU ARE MY FRIEND AAAAXXXX */
fe5c87defb45fe49bd795c6a42eee9f529d8f2fc
33a4e394085b2075b113dfb515b3a90180389d54
/C:C++_FULL_WITH_GRADES/A11/testcreature.cpp
20719ccab5303fac271df6ff1bf125c8871fc660
[]
no_license
chaudharyl/trial
05a493b3438c7a63481a948bde0e18f17fceabe0
5cc23e3666c9730159f107948ec080ec5aedfd88
refs/heads/master
2023-03-15T00:34:02.547450
2021-03-24T00:42:10
2021-03-24T00:42:10
350,899,703
0
0
null
null
null
null
UTF-8
C++
false
false
545
cpp
testcreature.cpp
/* CH-230-A a11_p4.cpp Lalit Chaudhary lchaudhary@jacobs-university.de */ #include <iostream> using namespace std; #include "Creature.h" int main() { //creating different inherited creatures and calling respective methods cout << "Creating an Creature.\n"; Creature c; c.run(); cout << "\nCreating a Wizard.\n"; Wizard w; w.run(); w.hover(); cout << "\nCreating a Demon.\n"; Demon d; d.run(); d.fly(); cout << "\nCreating a Vampire.\n"; Vampire v; v.run(); v.flit(); return 0; }
ceccf9469d358bf39895d3889fae5f56075a02ff
74b85fbd1d25fd5555e40d4739d0bd666db7dff5
/app/src/main/jni/quickjs/Toast.h
f485ba11664b41e4f841dc25d6c59e69c5c70bb9
[]
no_license
lxyMiao/android-quickjs
4c97d820daf7c73db7b00c007901e509dc7fe59b
3fa41fcb00b352baa4ad04ada009338594ca4954
refs/heads/master
2022-08-16T21:37:06.952210
2019-07-19T14:56:55
2019-07-19T14:56:55
null
0
0
null
null
null
null
UTF-8
C++
false
false
787
h
Toast.h
#pragma once #include <jni.h> #include <android/log.h> #ifdef __cplusplus extern "C" { #endif #include "quickjs-libc.h" #include "quickjs.h" #ifdef __cplusplus }; #endif #define MYTAG "QuickJs" #define LOGD(...) __android_log_print(ANDROID_LOG_DEBUG,MYTAG ,__VA_ARGS__) #if defined(__cplusplus) #include <vector> #include <string> #include <algorithm> #include <tuple> #include <functional> #include <unordered_map> #include <cassert> #include <memory> #include <string_view> extern "C" #endif JSValue js_print(JSContext *ctx, JSValueConst this_val, int argc, JSValueConst *argv); #if defined(__cplusplus) extern "C" #endif JNIEXPORT jboolean JNICALL Java_com_quickjs_QuickJs_open(JNIEnv *env, jclass type); #ifdef __MYHPP void ToastText(const char* str); #endif
39e33481ffc47ae56b15a771daddf8246bade120
81da01732d1373fb2791ee434769241c7be5806e
/LaputaEngine/LaputaGeneral/header/Logger.h
f3fe25383f8ed8ffd3b36e0acf7dc11eba895b23
[]
no_license
yachi001/LaputaEngine
7964f9c056508527f26121c723ff4696d4fba08f
adff2cd85c5716edb0e7726b4b78d16fb13eb750
refs/heads/master
2021-01-12T20:48:01.807047
2014-03-23T02:43:16
2014-03-23T02:43:16
null
0
0
null
null
null
null
UTF-8
C++
false
false
688
h
Logger.h
#ifndef _LOGGER_H_ #define _LOGGER_H_ #include <string> #include <iostream> namespace lpta { class Logger { public: static Logger& GetLogger(const std::string& className); void Info(const std::string& message); void Debug(const std::string& message); void Warning(const std::string& message); void Error(const std::string& message); void Fatal(const std::string& message); private: std::string className; Logger(const std::string& className); ~Logger(); std::wstring GetMsg(const std::string& message); void AddTimestamp(); Logger(Logger const&); void operator=(Logger const&); }; } #endif
8d1dbbee42825dd6f3cb396f0e65a1b12c47a0b3
b9bbae69f41920778ea9b5348a597e498c5f1d2d
/Prac/03.11.20/main.cpp
37d320165a634e2f1b13322bac94f246afcf6038
[]
no_license
DanilShishkin/HSE-CPP
c74c980b7766e979314576188ef0dc52dc924715
d3dac56d51fd2fd45c1d705a686f308b17658acd
refs/heads/master
2023-02-03T01:39:56.835777
2020-12-16T17:28:16
2020-12-16T17:28:16
308,695,209
0
0
null
null
null
null
UTF-8
C++
false
false
1,395
cpp
main.cpp
#include <iostream> #include <vector> #include <type_traits> void empty(int top){ if (top == -1){ throw "Stack is empty"; } } template <typename T> void arithmetic(){ if (not std::is_arithmetic_v<T>){ throw "Typename should be arithmetic type"; } template <typename T> class Stack { private: int top = -1; int max_size; std::vector<T> stack; public: Stack(int max_size){ try{ std::vector<T> stack(max_size); arithmetic<T>(T tmp); } catch (const char* exception) { std::cout << exception; } } void push(T); T pop(); void overflow(){ if (stack.top == max_size){ throw "Stack is overflowed"; } } }; template <typename T> void Stack<T>::push(const T value) { try { stack.overflow(); stack.push_back(value); top++; } catch (const char* exception) { std::cout << exception; } } template <typename T> T Stack<T>::pop() { try{ empty(stack.pop); T ret = stack[top--]; stack.pop_back(); return ret; } catch (const char* exception) { std::cout << exception; } } int main() { Stack<int> s(5); s.push(5); std::cout << s.pop() << std::endl; s.pop(); s.push(3); std::cout << s.pop() << std::endl; return 0; }
104dea7c55e5aa50cd537ef8a26df70c2ba17d0c
99d6cc0cb357e4ec0ef1f4c61fc3aece633bd4bb
/DataFormats/MuonReco/src/RealME0Muon.cc
c1928897ddb8bfbe8704c611ad2dc9879884c2f8
[]
no_license
dnash86/ME0GlobalRec
1a366c2fd69ef7b57473c97467bc0402808c38b0
ce18c63b2ef07f7319610757bc6ed1691fc939be
refs/heads/master
2021-03-19T07:12:25.996661
2014-06-27T16:04:10
2014-06-27T16:04:10
null
0
0
null
null
null
null
UTF-8
C++
false
false
166
cc
RealME0Muon.cc
/** \file RealME0Muon.cc * * \author David Nash */ #include "DataFormats/MuonReco/interface/RealME0Muon.h" using namespace reco; RealME0Muon::RealME0Muon() { }
68caaa75b48c9a1fef02406865a6272d8139a173
d7b84a31cafb72a3cb71b3a3cc724a68119ba18e
/Tyr/9.64/T
50f30551d9d30bc30515bcf4f40fa4d9a254c675
[]
no_license
benroque/Ragnorak
6cc7c68db801f9281a4ac241da754bce88ef6caf
a1bfc2430cccb207192792acebdd1530f1388a4c
refs/heads/master
2021-01-14T08:13:18.774988
2017-02-20T08:32:53
2017-02-20T08:32:53
82,008,402
0
0
null
null
null
null
UTF-8
C++
false
false
407,037
T
/*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | | \\ / O peration | Version: 4.1 | | \\ / A nd | Web: www.OpenFOAM.org | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ FoamFile { version 2.0; format ascii; class volScalarField; location "9.64"; object T; } // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // dimensions [0 0 0 1 0 0 0]; internalField nonuniform List<scalar> 52500 ( 0.999997 1.00003 1.00006 1.0002 1.00037 1.00119 1.00218 1.00666 1.01337 1.03582 1.09135 1.21579 1.61608 2.49207 2.70484 2.72824 2.72635 2.72769 2.74146 2.75338 2.76637 2.7748 2.7819 2.7866 2.79028 0.999997 1.00003 1.00005 1.0002 1.00037 1.00118 1.00216 1.0066 1.01324 1.03551 1.09038 1.21351 1.61071 2.48457 2.70181 2.72775 2.72571 2.72679 2.74054 2.75224 2.76519 2.77324 2.78023 2.78453 2.78752 0.999996 1.00002 1.00005 1.00019 1.00036 1.00116 1.00212 1.00649 1.01296 1.03488 1.08836 1.20884 1.59906 2.46756 2.69439 2.726 2.72372 2.72434 2.73833 2.74967 2.76263 2.77088 2.77753 2.78103 2.78311 0.999996 1.00002 1.00005 1.00019 1.00035 1.00112 1.00205 1.00628 1.01254 1.03379 1.08572 1.20119 1.58319 2.44142 2.68355 2.7238 2.72042 2.72066 2.73378 2.7456 2.75731 2.76477 2.77279 2.77668 2.77853 0.999996 1.00002 1.00005 1.00018 1.00033 1.00107 1.00196 1.006 1.01199 1.03225 1.08247 1.19067 1.56291 2.40439 2.66905 2.72144 2.71647 2.71609 2.72784 2.7395 2.75237 2.75843 2.76312 2.76672 2.76789 0.999996 1.00002 1.00005 1.00017 1.00031 1.00101 1.00185 1.00561 1.01131 1.0302 1.07846 1.17802 1.53657 2.35263 2.64969 2.71828 2.71272 2.7094 2.72209 2.72866 2.74161 2.75008 2.75499 2.75786 2.75849 0.999996 1.00002 1.00004 1.00015 1.00029 1.00092 1.00171 1.00508 1.01056 1.02738 1.07347 1.16273 1.50752 2.29029 2.62509 2.7147 2.70805 2.70322 2.71547 2.7233 2.72932 2.73528 2.73898 2.74022 2.73799 0.999995 1.00002 1.00004 1.00014 1.00026 1.00085 1.00156 1.00467 1.00963 1.02514 1.06667 1.14932 1.45754 2.19913 2.59266 2.70727 2.69958 2.69149 2.70161 2.71159 2.71971 2.72122 2.72272 2.72096 2.71616 0.999995 1.00001 1.00003 1.00013 1.00024 1.00078 1.00141 1.00443 1.00853 1.02379 1.05702 1.13479 1.3927 2.07602 2.55167 2.69908 2.69154 2.68132 2.69003 2.69461 2.70092 2.70126 2.6975 2.68877 2.66544 0.999995 1.00001 1.00003 1.00011 1.00021 1.00067 1.00125 1.00382 1.00748 1.02083 1.04879 1.11922 1.32958 1.95816 2.48523 2.6717 2.66905 2.66263 2.67656 2.67859 2.68207 2.67896 2.66792 2.64552 2.59411 1.00001 1.00003 1.00006 1.00021 1.00038 1.0012 1.00219 1.00667 1.01339 1.03584 1.09137 1.21586 1.61623 2.4923 2.70497 2.72832 2.72644 2.72779 2.74156 2.75349 2.76648 2.77491 2.782 2.78669 2.79037 1.00001 1.00003 1.00006 1.00021 1.00037 1.00119 1.00217 1.00661 1.01325 1.03553 1.09041 1.21358 1.61085 2.4848 2.70195 2.72784 2.7258 2.72689 2.74064 2.75233 2.76529 2.77333 2.78031 2.78462 2.7876 1.00001 1.00003 1.00006 1.0002 1.00037 1.00117 1.00213 1.0065 1.01297 1.0349 1.08839 1.20891 1.5992 2.4678 2.69452 2.72609 2.72381 2.72443 2.73843 2.74977 2.76273 2.77098 2.77762 2.78111 2.78319 1.00001 1.00003 1.00006 1.0002 1.00035 1.00113 1.00206 1.00629 1.01255 1.03381 1.08574 1.20127 1.58328 2.44163 2.68366 2.72387 2.7205 2.72074 2.73387 2.74568 2.7574 2.76486 2.77288 2.77677 2.77861 1 1.00003 1.00006 1.00019 1.00034 1.00108 1.00197 1.00601 1.012 1.03227 1.08249 1.19074 1.563 2.4046 2.66916 2.7215 2.71654 2.71617 2.72792 2.73959 2.75246 2.75852 2.7632 2.7668 2.76797 1 1.00003 1.00005 1.00018 1.00032 1.00101 1.00185 1.00562 1.01132 1.03023 1.07847 1.17808 1.53663 2.35284 2.6498 2.71835 2.71279 2.70948 2.72217 2.72874 2.74169 2.75016 2.75508 2.75795 2.75857 1 1.00003 1.00005 1.00016 1.00029 1.00093 1.00172 1.00509 1.01057 1.0274 1.07349 1.1628 1.5076 2.29052 2.6252 2.71477 2.70812 2.7033 2.71554 2.72338 2.7294 2.73536 2.73906 2.74029 2.73807 1 1.00002 1.00004 1.00015 1.00027 1.00085 1.00157 1.00468 1.00964 1.02516 1.06669 1.14937 1.45765 2.19939 2.59278 2.70733 2.69964 2.69156 2.70168 2.71166 2.71979 2.7213 2.7228 2.72103 2.71624 1 1.00002 1.00004 1.00014 1.00025 1.00079 1.00142 1.00444 1.00854 1.02381 1.05703 1.13484 1.39279 2.07628 2.55179 2.69915 2.69161 2.68139 2.69011 2.69469 2.701 2.70134 2.69757 2.68884 2.66551 1 1.00002 1.00004 1.00012 1.00022 1.00068 1.00125 1.00383 1.00749 1.02085 1.04881 1.11927 1.32967 1.95844 2.48536 2.67178 2.66913 2.6627 2.67663 2.67867 2.68214 2.67904 2.668 2.64559 2.59417 1.00001 1.00003 1.00006 1.00021 1.00038 1.0012 1.00219 1.00667 1.01339 1.03584 1.09138 1.21586 1.61624 2.49231 2.70498 2.72832 2.72644 2.72779 2.74156 2.75349 2.76648 2.77491 2.782 2.78669 2.79037 1.00001 1.00003 1.00006 1.00021 1.00037 1.00119 1.00217 1.00661 1.01325 1.03553 1.09041 1.21358 1.61086 2.48481 2.70195 2.72784 2.7258 2.72689 2.74064 2.75234 2.76529 2.77334 2.78031 2.78462 2.7876 1.00001 1.00003 1.00006 1.0002 1.00037 1.00117 1.00213 1.0065 1.01297 1.0349 1.08839 1.20891 1.59921 2.46781 2.69452 2.72609 2.72381 2.72444 2.73843 2.74977 2.76273 2.77098 2.77762 2.78112 2.78319 1.00001 1.00003 1.00006 1.0002 1.00035 1.00113 1.00206 1.00629 1.01255 1.03381 1.08574 1.20127 1.58329 2.44164 2.68367 2.72387 2.7205 2.72074 2.73387 2.74568 2.75741 2.76486 2.77288 2.77677 2.77861 1 1.00003 1.00006 1.00019 1.00034 1.00108 1.00197 1.00601 1.012 1.03227 1.08249 1.19074 1.563 2.40462 2.66916 2.7215 2.71654 2.71617 2.72792 2.73959 2.75246 2.75852 2.7632 2.7668 2.76797 1 1.00003 1.00005 1.00018 1.00032 1.00101 1.00185 1.00562 1.01132 1.03023 1.07847 1.17808 1.53664 2.35286 2.6498 2.71835 2.71279 2.70948 2.72217 2.72874 2.74169 2.75016 2.75508 2.75795 2.75857 1 1.00003 1.00005 1.00016 1.00029 1.00093 1.00172 1.00509 1.01057 1.0274 1.07349 1.1628 1.50761 2.29054 2.62521 2.71477 2.70812 2.7033 2.71554 2.72338 2.7294 2.73536 2.73906 2.7403 2.73808 1 1.00002 1.00004 1.00015 1.00027 1.00085 1.00157 1.00468 1.00964 1.02516 1.06669 1.14937 1.45767 2.19942 2.59278 2.70733 2.69964 2.69156 2.70168 2.71166 2.71979 2.7213 2.7228 2.72104 2.71624 1 1.00002 1.00004 1.00014 1.00025 1.00079 1.00142 1.00444 1.00854 1.02381 1.05703 1.13484 1.39281 2.0763 2.5518 2.69915 2.69161 2.6814 2.69011 2.6947 2.701 2.70134 2.69758 2.68884 2.66551 1 1.00002 1.00004 1.00012 1.00022 1.00068 1.00125 1.00383 1.00749 1.02085 1.04881 1.11928 1.32969 1.95847 2.48537 2.67178 2.66913 2.6627 2.67663 2.67867 2.68215 2.67904 2.668 2.64559 2.59418 1.00001 1.00003 1.00006 1.00021 1.00038 1.0012 1.00219 1.00667 1.01339 1.03584 1.09138 1.21586 1.61624 2.49231 2.70498 2.72832 2.72644 2.72779 2.74156 2.75349 2.76648 2.77491 2.782 2.78669 2.79037 1.00001 1.00003 1.00006 1.00021 1.00037 1.00119 1.00217 1.00661 1.01325 1.03553 1.09041 1.21358 1.61086 2.48481 2.70195 2.72784 2.7258 2.72689 2.74064 2.75234 2.76529 2.77334 2.78031 2.78462 2.7876 1.00001 1.00003 1.00006 1.0002 1.00037 1.00117 1.00213 1.0065 1.01297 1.0349 1.08839 1.20891 1.59921 2.46781 2.69453 2.72609 2.72381 2.72444 2.73843 2.74977 2.76273 2.77098 2.77762 2.78112 2.78319 1.00001 1.00003 1.00006 1.0002 1.00035 1.00113 1.00206 1.00629 1.01255 1.03381 1.08574 1.20127 1.58329 2.44165 2.68367 2.72387 2.7205 2.72074 2.73387 2.74568 2.75741 2.76486 2.77288 2.77677 2.77861 1 1.00003 1.00006 1.00019 1.00034 1.00108 1.00197 1.00601 1.012 1.03227 1.08249 1.19074 1.563 2.40462 2.66916 2.7215 2.71654 2.71617 2.72792 2.73959 2.75246 2.75852 2.7632 2.7668 2.76797 1 1.00003 1.00005 1.00018 1.00032 1.00101 1.00185 1.00562 1.01132 1.03023 1.07847 1.17808 1.53664 2.35286 2.64981 2.71835 2.71279 2.70948 2.72217 2.72874 2.74169 2.75016 2.75508 2.75795 2.75857 1 1.00003 1.00005 1.00016 1.00029 1.00093 1.00172 1.00509 1.01057 1.0274 1.07349 1.1628 1.50761 2.29054 2.62521 2.71477 2.70812 2.7033 2.71555 2.72338 2.7294 2.73536 2.73906 2.7403 2.73808 1 1.00002 1.00004 1.00015 1.00027 1.00085 1.00157 1.00468 1.00964 1.02516 1.06669 1.14937 1.45767 2.19942 2.59278 2.70734 2.69964 2.69156 2.70168 2.71166 2.71979 2.72131 2.7228 2.72104 2.71624 1 1.00002 1.00004 1.00014 1.00025 1.00079 1.00142 1.00444 1.00854 1.02381 1.05703 1.13484 1.39281 2.07631 2.5518 2.69915 2.69161 2.6814 2.69011 2.6947 2.701 2.70134 2.69758 2.68884 2.66551 1 1.00002 1.00004 1.00012 1.00022 1.00068 1.00125 1.00383 1.00749 1.02085 1.04881 1.11928 1.32969 1.95847 2.48537 2.67178 2.66913 2.6627 2.67664 2.67867 2.68215 2.67904 2.668 2.64559 2.59418 1.00001 1.00003 1.00006 1.00021 1.00038 1.0012 1.00219 1.00667 1.01339 1.03584 1.09138 1.21586 1.61624 2.49231 2.70498 2.72832 2.72644 2.72779 2.74156 2.75349 2.76648 2.77491 2.782 2.78669 2.79037 1.00001 1.00003 1.00006 1.00021 1.00037 1.00119 1.00217 1.00661 1.01325 1.03553 1.09041 1.21358 1.61086 2.48481 2.70195 2.72784 2.7258 2.72689 2.74064 2.75234 2.76529 2.77334 2.78031 2.78462 2.7876 1.00001 1.00003 1.00006 1.0002 1.00037 1.00117 1.00213 1.0065 1.01297 1.0349 1.08839 1.20891 1.59921 2.46781 2.69453 2.72609 2.72381 2.72444 2.73843 2.74977 2.76273 2.77098 2.77762 2.78112 2.78319 1.00001 1.00003 1.00006 1.0002 1.00035 1.00113 1.00206 1.00629 1.01255 1.03381 1.08574 1.20127 1.58329 2.44165 2.68367 2.72387 2.7205 2.72074 2.73387 2.74569 2.75741 2.76486 2.77288 2.77677 2.77861 1 1.00003 1.00006 1.00019 1.00034 1.00108 1.00197 1.00601 1.012 1.03227 1.08249 1.19074 1.56301 2.40462 2.66916 2.7215 2.71654 2.71617 2.72792 2.73959 2.75246 2.75852 2.7632 2.7668 2.76797 1 1.00003 1.00005 1.00018 1.00032 1.00101 1.00185 1.00562 1.01132 1.03023 1.07847 1.17808 1.53664 2.35286 2.64981 2.71835 2.71279 2.70948 2.72217 2.72874 2.74169 2.75016 2.75508 2.75795 2.75857 1 1.00003 1.00005 1.00016 1.00029 1.00093 1.00172 1.00509 1.01057 1.0274 1.07349 1.1628 1.50761 2.29054 2.62521 2.71477 2.70812 2.7033 2.71555 2.72339 2.7294 2.73536 2.73906 2.7403 2.73808 1 1.00002 1.00004 1.00015 1.00027 1.00085 1.00157 1.00468 1.00964 1.02516 1.06669 1.14937 1.45767 2.19942 2.59279 2.70734 2.69964 2.69156 2.70169 2.71166 2.71979 2.72131 2.7228 2.72104 2.71624 1 1.00002 1.00004 1.00014 1.00025 1.00079 1.00142 1.00444 1.00854 1.02381 1.05704 1.13484 1.39281 2.07631 2.55181 2.69915 2.69161 2.6814 2.69011 2.6947 2.701 2.70134 2.69758 2.68884 2.66551 1 1.00002 1.00004 1.00012 1.00022 1.00068 1.00125 1.00383 1.00749 1.02085 1.04881 1.11928 1.32969 1.95847 2.48537 2.67178 2.66913 2.6627 2.67664 2.67867 2.68215 2.67904 2.668 2.64559 2.59418 1.00001 1.00003 1.00006 1.00021 1.00038 1.0012 1.00219 1.00667 1.01339 1.03584 1.09138 1.21586 1.61624 2.49231 2.70498 2.72832 2.72644 2.72779 2.74156 2.75349 2.76648 2.77491 2.782 2.78669 2.79037 1.00001 1.00003 1.00006 1.00021 1.00037 1.00119 1.00217 1.00661 1.01325 1.03553 1.09041 1.21358 1.61086 2.48481 2.70195 2.72784 2.7258 2.7269 2.74064 2.75234 2.76529 2.77334 2.78031 2.78462 2.7876 1.00001 1.00003 1.00006 1.0002 1.00037 1.00117 1.00213 1.0065 1.01297 1.0349 1.08839 1.20891 1.59921 2.46781 2.69453 2.72609 2.72381 2.72444 2.73843 2.74977 2.76273 2.77098 2.77762 2.78112 2.78319 1.00001 1.00003 1.00006 1.0002 1.00035 1.00113 1.00206 1.00629 1.01255 1.03381 1.08574 1.20127 1.58329 2.44165 2.68367 2.72387 2.7205 2.72074 2.73387 2.74569 2.75741 2.76486 2.77288 2.77677 2.77861 1 1.00003 1.00006 1.00019 1.00034 1.00108 1.00197 1.00601 1.012 1.03227 1.08249 1.19074 1.56301 2.40462 2.66916 2.7215 2.71654 2.71617 2.72792 2.73959 2.75246 2.75852 2.7632 2.7668 2.76797 1 1.00003 1.00005 1.00018 1.00032 1.00101 1.00185 1.00562 1.01132 1.03023 1.07847 1.17808 1.53664 2.35286 2.64981 2.71835 2.71279 2.70948 2.72217 2.72874 2.74169 2.75016 2.75508 2.75795 2.75857 1 1.00003 1.00005 1.00016 1.00029 1.00093 1.00172 1.00509 1.01057 1.0274 1.07349 1.1628 1.50761 2.29054 2.62521 2.71477 2.70812 2.7033 2.71555 2.72339 2.7294 2.73536 2.73906 2.7403 2.73808 1 1.00002 1.00004 1.00015 1.00027 1.00085 1.00157 1.00468 1.00964 1.02516 1.06669 1.14937 1.45767 2.19942 2.59279 2.70734 2.69964 2.69156 2.70169 2.71166 2.71979 2.72131 2.7228 2.72104 2.71624 1 1.00002 1.00004 1.00014 1.00025 1.00079 1.00142 1.00444 1.00854 1.02381 1.05704 1.13484 1.39281 2.07631 2.55181 2.69915 2.69161 2.6814 2.69011 2.6947 2.701 2.70134 2.69758 2.68884 2.66551 1 1.00002 1.00004 1.00012 1.00022 1.00068 1.00125 1.00383 1.00749 1.02085 1.04881 1.11928 1.32969 1.95848 2.48537 2.67178 2.66913 2.6627 2.67664 2.67867 2.68215 2.67904 2.668 2.64559 2.59418 1.00001 1.00003 1.00006 1.00021 1.00038 1.0012 1.00219 1.00667 1.01339 1.03584 1.09138 1.21586 1.61624 2.49231 2.70498 2.72832 2.72644 2.72779 2.74156 2.75349 2.76648 2.77491 2.782 2.78669 2.79037 1.00001 1.00003 1.00006 1.00021 1.00037 1.00119 1.00217 1.00661 1.01325 1.03553 1.09041 1.21358 1.61086 2.48481 2.70195 2.72784 2.7258 2.72689 2.74064 2.75234 2.76529 2.77334 2.78031 2.78462 2.7876 1.00001 1.00003 1.00006 1.0002 1.00037 1.00117 1.00213 1.0065 1.01297 1.0349 1.08839 1.20891 1.59921 2.46781 2.69453 2.72609 2.72381 2.72444 2.73843 2.74977 2.76273 2.77098 2.77762 2.78112 2.78319 1.00001 1.00003 1.00006 1.0002 1.00035 1.00113 1.00206 1.00629 1.01255 1.03381 1.08574 1.20127 1.58329 2.44165 2.68367 2.72387 2.7205 2.72074 2.73387 2.74569 2.75741 2.76486 2.77288 2.77677 2.77861 1 1.00003 1.00006 1.00019 1.00034 1.00108 1.00197 1.00601 1.012 1.03227 1.08249 1.19074 1.56301 2.40462 2.66916 2.7215 2.71654 2.71617 2.72792 2.73959 2.75246 2.75852 2.7632 2.7668 2.76797 1 1.00003 1.00005 1.00018 1.00032 1.00101 1.00185 1.00562 1.01132 1.03023 1.07847 1.17808 1.53664 2.35286 2.64981 2.71835 2.71279 2.70948 2.72217 2.72874 2.74169 2.75016 2.75508 2.75795 2.75857 1 1.00003 1.00005 1.00016 1.00029 1.00093 1.00172 1.00509 1.01057 1.0274 1.07349 1.1628 1.50761 2.29054 2.62521 2.71477 2.70812 2.7033 2.71555 2.72338 2.7294 2.73536 2.73906 2.7403 2.73808 1 1.00002 1.00004 1.00015 1.00027 1.00085 1.00157 1.00468 1.00964 1.02516 1.06669 1.14937 1.45767 2.19942 2.59278 2.70734 2.69964 2.69156 2.70168 2.71166 2.71979 2.72131 2.7228 2.72104 2.71624 1 1.00002 1.00004 1.00014 1.00025 1.00079 1.00142 1.00444 1.00854 1.02381 1.05703 1.13484 1.39281 2.07631 2.55181 2.69915 2.69161 2.6814 2.69011 2.6947 2.701 2.70134 2.69758 2.68884 2.66551 1 1.00002 1.00004 1.00012 1.00022 1.00068 1.00125 1.00383 1.00749 1.02085 1.04881 1.11928 1.32969 1.95847 2.48537 2.67178 2.66913 2.6627 2.67664 2.67867 2.68215 2.67904 2.668 2.64559 2.59418 1.00001 1.00003 1.00006 1.00021 1.00038 1.0012 1.00219 1.00667 1.01339 1.03584 1.09138 1.21586 1.61624 2.49231 2.70498 2.72832 2.72644 2.72779 2.74156 2.75349 2.76648 2.77491 2.782 2.78669 2.79037 1.00001 1.00003 1.00006 1.00021 1.00037 1.00119 1.00217 1.00661 1.01325 1.03553 1.09041 1.21358 1.61086 2.48481 2.70195 2.72784 2.7258 2.72689 2.74064 2.75234 2.76529 2.77334 2.78031 2.78462 2.7876 1.00001 1.00003 1.00006 1.0002 1.00037 1.00117 1.00213 1.0065 1.01297 1.0349 1.08839 1.20891 1.59921 2.46781 2.69452 2.72609 2.72381 2.72444 2.73843 2.74977 2.76273 2.77098 2.77762 2.78112 2.78319 1.00001 1.00003 1.00006 1.0002 1.00035 1.00113 1.00206 1.00629 1.01255 1.03381 1.08574 1.20127 1.58329 2.44164 2.68367 2.72387 2.7205 2.72074 2.73387 2.74568 2.75741 2.76486 2.77288 2.77677 2.77861 1 1.00003 1.00006 1.00019 1.00034 1.00108 1.00197 1.00601 1.012 1.03227 1.08249 1.19074 1.563 2.40462 2.66916 2.7215 2.71654 2.71617 2.72792 2.73959 2.75246 2.75852 2.7632 2.7668 2.76797 1 1.00003 1.00005 1.00018 1.00032 1.00101 1.00185 1.00562 1.01132 1.03023 1.07847 1.17808 1.53664 2.35286 2.6498 2.71835 2.71279 2.70948 2.72217 2.72874 2.74169 2.75016 2.75508 2.75795 2.75857 1 1.00003 1.00005 1.00016 1.00029 1.00093 1.00172 1.00509 1.01057 1.0274 1.07349 1.1628 1.50761 2.29054 2.62521 2.71477 2.70812 2.7033 2.71554 2.72338 2.7294 2.73536 2.73906 2.7403 2.73808 1 1.00002 1.00004 1.00015 1.00027 1.00085 1.00157 1.00468 1.00964 1.02516 1.06669 1.14937 1.45767 2.19942 2.59278 2.70734 2.69964 2.69156 2.70168 2.71166 2.71979 2.7213 2.7228 2.72104 2.71624 1 1.00002 1.00004 1.00014 1.00025 1.00079 1.00142 1.00444 1.00854 1.02381 1.05703 1.13484 1.39281 2.0763 2.5518 2.69915 2.69161 2.6814 2.69011 2.6947 2.701 2.70134 2.69758 2.68884 2.66551 1 1.00002 1.00004 1.00012 1.00022 1.00068 1.00125 1.00383 1.00749 1.02085 1.04881 1.11928 1.32969 1.95847 2.48537 2.67178 2.66913 2.6627 2.67663 2.67867 2.68215 2.67904 2.668 2.64559 2.59418 1.00001 1.00003 1.00006 1.00021 1.00038 1.0012 1.00219 1.00667 1.01339 1.03584 1.09137 1.21586 1.61623 2.4923 2.70497 2.72832 2.72644 2.72779 2.74156 2.75349 2.76648 2.77491 2.782 2.78669 2.79037 1.00001 1.00003 1.00006 1.00021 1.00037 1.00119 1.00217 1.00661 1.01325 1.03553 1.09041 1.21358 1.61085 2.4848 2.70195 2.72784 2.7258 2.72689 2.74064 2.75233 2.76529 2.77333 2.78031 2.78462 2.7876 1.00001 1.00003 1.00006 1.0002 1.00037 1.00117 1.00213 1.0065 1.01297 1.0349 1.08839 1.20891 1.5992 2.46779 2.69452 2.72609 2.72381 2.72443 2.73843 2.74977 2.76273 2.77098 2.77762 2.78111 2.78319 1.00001 1.00003 1.00006 1.0002 1.00035 1.00113 1.00206 1.00629 1.01255 1.03381 1.08574 1.20127 1.58328 2.44163 2.68366 2.72387 2.7205 2.72074 2.73387 2.74568 2.7574 2.76486 2.77288 2.77677 2.77861 1 1.00003 1.00006 1.00019 1.00034 1.00108 1.00197 1.00601 1.012 1.03227 1.08249 1.19074 1.563 2.4046 2.66916 2.7215 2.71654 2.71617 2.72792 2.73959 2.75246 2.75852 2.7632 2.7668 2.76797 1 1.00003 1.00005 1.00018 1.00032 1.00101 1.00185 1.00562 1.01132 1.03023 1.07847 1.17808 1.53663 2.35284 2.6498 2.71835 2.71279 2.70948 2.72217 2.72874 2.74169 2.75016 2.75508 2.75795 2.75857 1 1.00003 1.00005 1.00016 1.00029 1.00093 1.00172 1.00509 1.01057 1.0274 1.07349 1.1628 1.5076 2.29052 2.6252 2.71477 2.70812 2.7033 2.71554 2.72338 2.7294 2.73536 2.73906 2.74029 2.73807 1 1.00002 1.00004 1.00015 1.00027 1.00085 1.00157 1.00468 1.00964 1.02516 1.06669 1.14937 1.45765 2.19939 2.59278 2.70733 2.69964 2.69156 2.70168 2.71166 2.71979 2.7213 2.7228 2.72103 2.71624 1 1.00002 1.00004 1.00014 1.00025 1.00079 1.00142 1.00444 1.00854 1.02381 1.05703 1.13484 1.39279 2.07628 2.55179 2.69915 2.69161 2.68139 2.69011 2.69469 2.701 2.70134 2.69757 2.68884 2.66551 1 1.00002 1.00004 1.00012 1.00022 1.00068 1.00125 1.00383 1.00749 1.02085 1.04881 1.11927 1.32967 1.95844 2.48536 2.67178 2.66913 2.6627 2.67663 2.67867 2.68214 2.67904 2.668 2.64559 2.59417 0.999997 1.00003 1.00006 1.0002 1.00037 1.00119 1.00218 1.00666 1.01337 1.03582 1.09135 1.21579 1.61608 2.49207 2.70483 2.72824 2.72635 2.72769 2.74146 2.75338 2.76637 2.7748 2.7819 2.7866 2.79028 0.999997 1.00003 1.00005 1.0002 1.00037 1.00118 1.00216 1.0066 1.01324 1.03551 1.09038 1.21351 1.61071 2.48457 2.70181 2.72775 2.72571 2.72679 2.74054 2.75224 2.76519 2.77324 2.78023 2.78453 2.78752 0.999996 1.00002 1.00005 1.00019 1.00036 1.00116 1.00212 1.00649 1.01296 1.03488 1.08836 1.20884 1.59906 2.46756 2.69439 2.726 2.72372 2.72434 2.73833 2.74967 2.76263 2.77088 2.77753 2.78103 2.78311 0.999996 1.00002 1.00005 1.00019 1.00035 1.00112 1.00205 1.00628 1.01254 1.03379 1.08572 1.20119 1.58319 2.44142 2.68355 2.7238 2.72042 2.72066 2.73378 2.7456 2.75731 2.76477 2.77279 2.77668 2.77853 0.999996 1.00002 1.00005 1.00018 1.00033 1.00107 1.00196 1.006 1.01199 1.03225 1.08247 1.19067 1.56291 2.40439 2.66905 2.72144 2.71647 2.71609 2.72784 2.7395 2.75237 2.75843 2.76312 2.76672 2.76789 0.999996 1.00002 1.00005 1.00017 1.00031 1.00101 1.00185 1.00561 1.01131 1.0302 1.07846 1.17802 1.53656 2.35263 2.64969 2.71828 2.71272 2.7094 2.72209 2.72866 2.74161 2.75008 2.75499 2.75786 2.75849 0.999996 1.00002 1.00004 1.00015 1.00029 1.00092 1.00171 1.00508 1.01056 1.02738 1.07347 1.16273 1.50752 2.29029 2.62509 2.7147 2.70805 2.70322 2.71547 2.7233 2.72932 2.73528 2.73898 2.74022 2.73799 0.999995 1.00002 1.00004 1.00014 1.00026 1.00085 1.00156 1.00467 1.00963 1.02514 1.06667 1.14932 1.45754 2.19913 2.59266 2.70727 2.69958 2.69149 2.70161 2.71159 2.71971 2.72122 2.72272 2.72096 2.71616 0.999995 1.00001 1.00003 1.00013 1.00024 1.00078 1.00141 1.00443 1.00853 1.02379 1.05702 1.13479 1.3927 2.07602 2.55167 2.69908 2.69154 2.68132 2.69003 2.69461 2.70092 2.70126 2.6975 2.68877 2.66544 0.999995 1.00001 1.00003 1.00011 1.00021 1.00067 1.00125 1.00382 1.00748 1.02083 1.04879 1.11922 1.32958 1.95816 2.48523 2.6717 2.66905 2.66263 2.67656 2.67859 2.68207 2.67896 2.66792 2.64552 2.59411 0.999997 1 1.00003 1.00007 1.00023 1.00043 1.00133 1.0026 1.0071 1.01657 1.03978 1.11363 1.25745 1.70329 2.49365 2.65358 2.64101 2.63975 2.64958 2.6566 2.65653 2.6495 2.62854 2.57787 2.41643 0.999997 1 1.00003 1.00006 1.00021 1.00038 1.00124 1.00227 1.00693 1.01385 1.03716 1.09386 1.2245 1.62474 2.45646 2.6306 2.62834 2.6237 2.62487 2.63263 2.63158 2.61863 2.58725 2.52925 2.3724 0.999996 1 1.00002 1.00005 1.00018 1.00033 1.00107 1.00195 1.00599 1.01185 1.03208 1.08067 1.18864 1.54741 2.35527 2.58874 2.62176 2.6162 2.60363 2.60558 2.6031 2.58839 2.54936 2.49688 2.37751 0.999996 1 1.00002 1.00004 1.00015 1.00027 1.00088 1.00163 1.0048 1.01007 1.0258 1.06958 1.15262 1.47968 2.20294 2.53885 2.62025 2.60938 2.59843 2.58181 2.57394 2.55779 2.52315 2.47987 2.38671 0.999995 0.999999 1.00001 1.00003 1.00012 1.00023 1.00074 1.00137 1.00422 1.00826 1.02276 1.05492 1.13063 1.3725 2.04958 2.43854 2.60236 2.59468 2.588 2.57348 2.55111 2.53181 2.49077 2.46097 2.39713 0.999994 0.999999 1.00001 1.00003 1.00007 1.00023 1.00044 1.00133 1.00264 1.00707 1.01687 1.0399 1.11432 1.2585 1.70895 2.37898 2.56096 2.5601 2.55967 2.55432 2.53861 2.51891 2.47676 2.43372 2.39352 0.999994 0.999998 1 1.00003 1.00006 1.0002 1.00036 1.00117 1.00214 1.0066 1.01296 1.0352 1.08712 1.20816 1.58107 2.33497 2.53429 2.53838 2.53388 2.52954 2.51827 2.50507 2.47536 2.42886 2.3851 0.999994 0.999997 1 1.00002 1.00004 1.00015 1.00028 1.00088 1.00168 1.00481 1.01043 1.02623 1.07196 1.15748 1.4896 2.21687 2.47659 2.53175 2.51626 2.51201 2.501 2.48538 2.46871 2.43341 2.38838 0.999994 0.999995 1 1.00001 1.00004 1.00008 1.00027 1.00053 1.0015 1.00328 1.00813 1.02178 1.0483 1.14608 1.33026 1.94227 2.38984 2.52066 2.51377 2.49977 2.49073 2.47289 2.45714 2.43339 2.39845 0.999993 0.999994 0.999999 1 1.00003 1.00007 1.00022 1.00041 1.00131 1.00244 1.00717 1.01508 1.03857 1.10064 1.24134 1.61863 2.29596 2.48475 2.49445 2.48893 2.47712 2.46383 2.44749 2.43128 2.40782 0.999993 0.999994 0.999995 1 1.00001 1.00006 1.00013 1.0004 1.00076 1.00226 1.00464 1.01211 1.03052 1.06996 1.20249 1.49621 2.1575 2.4534 2.4904 2.48108 2.47068 2.4568 2.44339 2.43212 2.41619 0.999992 0.999993 0.999994 1 1.00001 1.00005 1.00009 1.00031 1.00058 1.00179 1.0035 1.00946 1.02256 1.05309 1.155 1.35865 1.91883 2.35893 2.48161 2.47909 2.47076 2.45916 2.44582 2.43628 2.42383 0.999992 0.999992 0.999994 0.999997 1.00001 1.00002 1.00009 1.00018 1.00057 1.00108 1.00324 1.0064 1.01771 1.04001 1.10146 1.25669 1.74944 2.21855 2.44309 2.46507 2.46822 2.46376 2.45565 2.44449 2.43158 0.999992 0.999992 0.999993 0.999995 1 1.00002 1.00007 1.00013 1.00043 1.0008 1.00247 1.00474 1.01341 1.02995 1.07323 1.19762 1.52304 2.11723 2.40625 2.46243 2.46599 2.4732 2.46881 2.4588 2.44396 0.999991 0.999992 0.999992 0.999995 0.999999 1.00002 1.00004 1.00013 1.00024 1.00076 1.00145 1.00417 1.00889 1.02252 1.06005 1.1336 1.39581 2.00565 2.33264 2.46847 2.47786 2.48463 2.48053 2.47086 2.45591 0.999991 0.999991 0.999992 0.999994 0.999997 1.00001 1.00002 1.0001 1.00018 1.0006 1.0011 1.00338 1.00649 1.0185 1.04034 1.10477 1.25975 1.78343 2.22477 2.4518 2.48304 2.49101 2.48771 2.47906 2.46474 0.999991 0.999991 0.999992 0.999993 0.999997 1 1.00002 1.00005 1.00018 1.00034 1.00106 1.002 1.00581 1.01224 1.03152 1.08366 1.18847 1.54482 2.23323 2.46415 2.50697 2.50244 2.49745 2.48495 2.46656 0.999991 0.999991 0.999992 0.999992 0.999995 0.999999 1.00002 1.00004 1.00014 1.00026 1.00083 1.00156 1.00459 1.0096 1.02467 1.06553 1.14628 1.44061 2.12973 2.44368 2.54575 2.52446 2.51095 2.49296 2.46854 0.999991 0.999991 0.999991 0.999992 0.999993 0.999999 1.00001 1.00004 1.00008 1.00025 1.00048 1.00135 1.003 1.00736 1.01978 1.04394 1.13196 1.29579 1.82049 2.39999 2.5911 2.57186 2.53551 2.50357 2.47375 0.999991 0.999991 0.999991 0.999992 0.999994 0.999996 1.00001 1.00002 1.00009 1.00017 1.00055 1.00104 1.00316 1.00621 1.01738 1.03994 1.09838 1.26593 1.75094 2.37226 2.61987 2.60922 2.57652 2.52981 2.48873 0.999991 0.999991 0.999991 0.999992 0.999993 0.999995 1 1.00002 1.00007 1.00014 1.00045 1.00085 1.00247 1.00528 1.01345 1.03583 1.08025 1.24055 1.61355 2.34404 2.62405 2.64443 2.61077 2.57574 2.52936 0.999991 0.999991 0.999991 0.999992 0.999992 0.999996 1 1.00002 1.00005 1.00016 1.00031 1.00098 1.00188 1.00542 1.01176 1.02997 1.08203 1.18256 1.55469 2.34449 2.60769 2.66632 2.62942 2.59785 2.55976 0.999991 0.999991 0.999991 0.999992 0.999992 0.999996 0.999999 1.00002 1.00004 1.00015 1.00027 1.00089 1.00165 1.00493 1.01028 1.02673 1.07197 1.16022 1.49982 2.26604 2.60618 2.69303 2.65332 2.61184 2.57313 0.999991 0.999991 0.999991 0.999991 0.999992 0.999995 0.999998 1.00002 1.00004 1.00013 1.00025 1.00081 1.00148 1.00459 1.00911 1.02469 1.06258 1.14379 1.43507 2.14826 2.59398 2.71403 2.68022 2.63377 2.59837 0.999991 0.999991 0.999991 0.999991 0.999992 0.999994 0.999998 1.00001 1.00003 1.00012 1.00022 1.00071 1.00132 1.00403 1.00814 1.02184 1.0554 1.12853 1.38028 2.04768 2.5714 2.71845 2.68794 2.639 2.60828 0.999991 0.999991 0.999991 0.999991 0.999992 0.999993 0.999998 1 1.00003 1.00007 1.00023 1.00046 1.00129 1.00292 1.00714 1.01953 1.04327 1.13197 1.29869 1.82294 2.55491 2.72584 2.69705 2.64697 2.61827 0.999991 0.999991 0.999991 0.999991 0.999992 0.999994 0.999996 1.00001 1.00002 1.00009 1.00018 1.00056 1.00109 1.00309 1.00684 1.01723 1.04669 1.10549 1.30947 1.86191 2.51617 2.73899 2.71435 2.66846 2.63594 0.999991 0.999991 0.999991 0.999991 0.999992 0.999993 0.999998 1 1.00003 1.00006 1.00022 1.00041 1.00129 1.0025 1.00702 1.016 1.03939 1.11215 1.25695 1.71619 2.56572 2.73875 2.70634 2.67755 2.64615 0.999991 0.999991 0.999991 0.999991 0.999992 0.999993 0.999997 1 1.00003 1.00006 1.00021 1.00039 1.00122 1.00234 1.00679 1.01486 1.03787 1.10409 1.24407 1.68678 2.56201 2.74195 2.71203 2.6951 2.65694 0.999991 0.999991 0.999991 0.999991 0.999991 0.999993 0.999995 1 1.00002 1.00007 1.00014 1.00044 1.00089 1.00241 1.00581 1.01383 1.03942 1.0847 1.26821 1.68268 2.47687 2.7432 2.733 2.70589 2.66939 0.999991 0.999991 0.999991 0.999991 0.999992 0.999992 0.999996 1 1.00002 1.00005 1.00018 1.00035 1.00106 1.00215 1.00583 1.01405 1.03407 1.09808 1.22266 1.65161 2.50934 2.73088 2.727 2.7045 2.67148 0.999991 0.999991 0.999991 0.999991 0.999991 0.999993 0.999995 1 1.00001 1.00007 1.00013 1.00042 1.00082 1.00236 1.00526 1.01315 1.03636 1.08024 1.25096 1.62792 2.42197 2.73837 2.73787 2.71387 2.67983 0.999991 0.999991 0.999991 0.999991 0.999991 0.999993 0.999995 1 1.00001 1.00006 1.00012 1.0004 1.00079 1.00224 1.00507 1.0126 1.03516 1.07744 1.24491 1.60912 2.40359 2.73661 2.74059 2.71779 2.68477 0.999991 0.999991 0.999991 0.999991 0.999992 0.999992 0.999996 1 1.00002 1.00004 1.00016 1.00031 1.00092 1.00197 1.00515 1.01313 1.031 1.09107 1.2009 1.61496 2.4433 2.72867 2.73767 2.71678 2.6819 0.999991 0.999991 0.999991 0.999991 0.999991 0.999993 0.999994 1 1.00001 1.00005 1.00011 1.00034 1.00076 1.00195 1.00511 1.0118 1.03442 1.07324 1.23928 1.58172 2.36547 2.73535 2.74894 2.72726 2.6912 0.999991 0.999991 0.999991 0.999991 0.999991 0.999992 0.999995 0.999999 1.00002 1.00004 1.00015 1.0003 1.0009 1.0019 1.005 1.01269 1.02986 1.08824 1.19164 1.60067 2.40892 2.73347 2.74708 2.72541 2.68804 0.999991 0.999991 0.999991 0.999991 0.999991 0.999993 0.999994 1 1.00001 1.00006 1.00011 1.00038 1.00074 1.00213 1.00478 1.01193 1.03323 1.07315 1.23152 1.56805 2.33599 2.72812 2.74925 2.72853 2.69262 0.999991 0.999991 0.999991 0.999991 0.999991 0.999993 0.999994 1 1.00001 1.00006 1.00011 1.00038 1.00074 1.00211 1.00475 1.01178 1.03293 1.07216 1.22944 1.562 2.3269 2.72032 2.74757 2.72831 2.69259 0.999991 0.999991 0.999991 0.999991 0.999992 0.999992 0.999996 1 1.00002 1.00004 1.00016 1.0003 1.00096 1.00186 1.00535 1.01197 1.03011 1.08542 1.18833 1.58921 2.38905 2.72675 2.75427 2.73677 2.6987 0.999991 0.999991 0.999991 0.999991 0.999992 0.999992 0.999996 1 1.00002 1.00004 1.00016 1.0003 1.001 1.00186 1.00561 1.01175 1.03099 1.08408 1.18986 1.58363 2.39033 2.72866 2.75729 2.74053 2.7036 1.00001 1.00001 1.00004 1.00008 1.00024 1.00044 1.00134 1.00261 1.00711 1.01658 1.0398 1.11366 1.25752 1.7034 2.49368 2.65367 2.64111 2.63982 2.64965 2.65667 2.65661 2.64958 2.62861 2.57793 2.41648 1.00001 1.00001 1.00004 1.00007 1.00022 1.00039 1.00125 1.00228 1.00694 1.01386 1.03718 1.09388 1.22456 1.62486 2.45659 2.63068 2.62841 2.62377 2.62494 2.6327 2.63165 2.61871 2.58732 2.52931 2.37246 1 1.00001 1.00003 1.00006 1.00019 1.00034 1.00108 1.00196 1.006 1.01186 1.03211 1.08069 1.18871 1.54749 2.35549 2.58885 2.62182 2.61627 2.60371 2.60566 2.60317 2.58846 2.54943 2.49694 2.37757 1 1.00001 1.00003 1.00005 1.00016 1.00028 1.00089 1.00164 1.00481 1.01008 1.02582 1.0696 1.15267 1.47978 2.20318 2.53897 2.62031 2.60945 2.5985 2.58189 2.57402 2.55786 2.52321 2.47993 2.38678 1 1.00001 1.00002 1.00004 1.00013 1.00024 1.00075 1.00138 1.00423 1.00828 1.02278 1.05494 1.13068 1.37259 2.0498 2.43869 2.60246 2.59476 2.58808 2.57356 2.5512 2.5319 2.49084 2.46103 2.39719 1 1.00001 1.00001 1.00004 1.00008 1.00024 1.00045 1.00134 1.00265 1.00708 1.01689 1.03992 1.11435 1.25858 1.70922 2.37907 2.56104 2.56022 2.55976 2.55438 2.53867 2.51899 2.47685 2.43381 2.39358 1 1.00001 1.00001 1.00004 1.00006 1.00021 1.00037 1.00118 1.00215 1.00661 1.01298 1.03522 1.08714 1.20824 1.58117 2.33514 2.53439 2.53847 2.53398 2.52963 2.51835 2.50514 2.47544 2.42896 2.38518 1 1 1.00001 1.00003 1.00005 1.00016 1.00029 1.00089 1.00169 1.00483 1.01044 1.02626 1.07198 1.15755 1.48969 2.21712 2.4767 2.53182 2.51633 2.5121 2.50109 2.48549 2.4688 2.43349 2.38846 1 1 1.00001 1.00002 1.00005 1.00009 1.00028 1.00054 1.00151 1.00329 1.00815 1.0218 1.04833 1.14613 1.33038 1.94246 2.39009 2.52078 2.51388 2.49984 2.49079 2.47297 2.45724 2.43348 2.39853 1 1 1.00001 1.00001 1.00004 1.00007 1.00023 1.00042 1.00132 1.00245 1.00718 1.01509 1.03859 1.10068 1.2414 1.61876 2.29597 2.4849 2.49459 2.48905 2.47722 2.4639 2.44756 2.43136 2.40791 1 1 1 1.00001 1.00002 1.00007 1.00013 1.00041 1.00077 1.00227 1.00465 1.01213 1.03053 1.07 1.20252 1.49643 2.15774 2.45358 2.49054 2.48121 2.47082 2.45691 2.44348 2.4322 2.41626 1 1 1 1.00001 1.00002 1.00006 1.0001 1.00032 1.00059 1.0018 1.00351 1.00947 1.02257 1.05312 1.15507 1.3588 1.91927 2.35913 2.48173 2.47922 2.4709 2.45928 2.44592 2.43635 2.4239 1 1 1 1.00001 1.00002 1.00003 1.0001 1.00019 1.00058 1.00109 1.00325 1.00642 1.01773 1.04004 1.10151 1.25688 1.7498 2.21905 2.44332 2.46518 2.46831 2.46388 2.45577 2.44457 2.43164 1 1 1 1 1.00001 1.00002 1.00008 1.00014 1.00044 1.00081 1.00248 1.00475 1.01343 1.02998 1.0733 1.1977 1.52348 2.11759 2.40646 2.46258 2.46611 2.4733 2.46891 2.45889 2.44404 1 1 1 1 1.00001 1.00002 1.00004 1.00014 1.00025 1.00077 1.00146 1.00418 1.00891 1.02254 1.06009 1.13369 1.39608 2.0062 2.33284 2.46863 2.47799 2.48474 2.48063 2.47095 2.45598 1 1 1 1 1.00001 1.00002 1.00003 1.00011 1.00019 1.0006 1.00111 1.00339 1.00651 1.01852 1.04037 1.10483 1.25995 1.78384 2.22523 2.45206 2.48319 2.4911 2.48778 2.47912 2.4648 1 1 1 1 1.00001 1.00001 1.00003 1.00006 1.00019 1.00035 1.00107 1.00201 1.00582 1.01226 1.03157 1.08371 1.18867 1.54512 2.23379 2.46439 2.50711 2.50256 2.49758 2.48505 2.46665 1 1 1 1 1 1.00001 1.00003 1.00005 1.00015 1.00027 1.00084 1.00157 1.0046 1.00962 1.02469 1.0656 1.14639 1.4411 2.13034 2.44431 2.546 2.52452 2.51096 2.49298 2.4686 1 1 1 1 1 1.00001 1.00002 1.00005 1.00009 1.00026 1.00049 1.00136 1.00301 1.00738 1.01981 1.044 1.13213 1.29619 1.8221 2.40052 2.59128 2.57194 2.53571 2.50367 2.47382 1 1 1 1 1 1.00001 1.00002 1.00003 1.0001 1.00018 1.00056 1.00105 1.00317 1.00623 1.01741 1.03998 1.09851 1.26613 1.75197 2.37221 2.61988 2.6092 2.57665 2.52996 2.48884 1 1 1 1 1 1 1.00001 1.00003 1.00008 1.00015 1.00046 1.00086 1.00248 1.0053 1.01348 1.03587 1.08035 1.24076 1.61431 2.34464 2.62434 2.64441 2.61077 2.57576 2.52943 1 1 1 1 1 1.00001 1.00001 1.00003 1.00006 1.00017 1.00032 1.00099 1.00189 1.00544 1.01178 1.03002 1.08211 1.18279 1.55511 2.34515 2.60805 2.66635 2.62944 2.59783 2.55979 1 1 1 1 1 1 1.00001 1.00003 1.00005 1.00016 1.00028 1.0009 1.00166 1.00494 1.01029 1.02676 1.07205 1.16042 1.50023 2.26703 2.60653 2.69307 2.65337 2.61191 2.57318 1 1 1 1 1 1 1.00001 1.00002 1.00004 1.00014 1.00026 1.00082 1.00149 1.00461 1.00912 1.02472 1.06267 1.14394 1.43564 2.14936 2.59431 2.7141 2.68026 2.63385 2.59844 1 1 1 1 1 1 1.00001 1.00002 1.00004 1.00013 1.00023 1.00072 1.00133 1.00404 1.00816 1.02187 1.05549 1.12868 1.38084 2.04883 2.57186 2.71859 2.68808 2.63912 2.6084 1 1 1 1 1 1 1.00001 1.00001 1.00004 1.00008 1.00024 1.00047 1.0013 1.00293 1.00716 1.01956 1.04332 1.13212 1.29906 1.82447 2.555 2.72598 2.69712 2.647 2.61836 1 1 1 1 1 1 1.00001 1.00002 1.00003 1.0001 1.00019 1.00057 1.0011 1.0031 1.00685 1.01726 1.04674 1.10563 1.30975 1.86301 2.5162 2.739 2.71446 2.66855 2.63603 1 1 1 1 1 1 1.00001 1.00001 1.00004 1.00007 1.00023 1.00042 1.0013 1.00251 1.00703 1.01602 1.03943 1.11227 1.2572 1.71669 2.56608 2.73895 2.70666 2.67752 2.64615 1 1 1 1 1 1 1.00001 1.00001 1.00004 1.00007 1.00022 1.0004 1.00123 1.00236 1.00681 1.01489 1.03792 1.1042 1.24433 1.68732 2.56256 2.74228 2.71204 2.69515 2.65715 1 1 1 1 1 1 1 1.00001 1.00003 1.00008 1.00015 1.00045 1.0009 1.00243 1.00582 1.01386 1.03947 1.08482 1.26848 1.68378 2.47752 2.7435 2.73298 2.70596 2.66945 1 1 1 1 1 1 1.00001 1.00001 1.00003 1.00006 1.00019 1.00036 1.00107 1.00216 1.00585 1.01407 1.03412 1.0982 1.22295 1.65222 2.51021 2.73118 2.72712 2.70446 2.67146 1 1 1 1 1 1 1 1.00001 1.00002 1.00008 1.00014 1.00043 1.00083 1.00237 1.00528 1.01319 1.03641 1.08037 1.25119 1.62891 2.42285 2.7386 2.73788 2.71384 2.67978 1 1 1 1 1 1 1 1.00001 1.00002 1.00007 1.00013 1.00041 1.0008 1.00226 1.00508 1.01263 1.03522 1.07758 1.24514 1.6101 2.4045 2.73682 2.74054 2.71774 2.68471 1 1 1 1 1 1 1 1.00001 1.00003 1.00005 1.00017 1.00032 1.00093 1.00198 1.00518 1.01315 1.03107 1.09118 1.20128 1.61547 2.44422 2.72866 2.7375 2.71666 2.68188 1 1 1 1 1 1 1 1.00001 1.00002 1.00006 1.00012 1.00035 1.00077 1.00196 1.00512 1.01183 1.03448 1.07337 1.23955 1.5825 2.36668 2.73515 2.7487 2.72711 2.6912 1 1 1 1 1 1 1 1.00001 1.00003 1.00005 1.00016 1.00031 1.00091 1.00192 1.00502 1.01272 1.02992 1.08835 1.19193 1.60112 2.40988 2.73305 2.74686 2.72531 2.68808 1 1 1 1 1 1 1 1.00001 1.00002 1.00007 1.00012 1.00039 1.00075 1.00215 1.0048 1.01196 1.03328 1.07325 1.23179 1.56869 2.3372 2.72767 2.74894 2.72834 2.69265 1 1 1 1 1 1 1 1.00001 1.00002 1.00007 1.00012 1.00039 1.00075 1.00212 1.00477 1.01181 1.03298 1.07226 1.22971 1.56256 2.32814 2.71982 2.74722 2.72809 2.69266 1 1 1 1 1 1 1 1.00001 1.00003 1.00005 1.00017 1.00031 1.00097 1.00187 1.00537 1.012 1.03017 1.08553 1.18864 1.58956 2.39 2.72594 2.7539 2.73658 2.6989 1 1 1 1 1 1 1.00001 1.00001 1.00003 1.00005 1.00017 1.00031 1.00101 1.00187 1.00563 1.01177 1.03106 1.08418 1.1902 1.58389 2.39124 2.72782 2.75691 2.74032 2.70383 1.00001 1.00001 1.00004 1.00008 1.00024 1.00044 1.00134 1.00261 1.00711 1.01658 1.0398 1.11366 1.25753 1.70341 2.49367 2.65367 2.64112 2.63983 2.64966 2.65667 2.65661 2.64958 2.62861 2.57794 2.41648 1.00001 1.00001 1.00004 1.00007 1.00022 1.00039 1.00125 1.00228 1.00694 1.01386 1.03718 1.09389 1.22456 1.62487 2.4566 2.63068 2.62841 2.62378 2.62494 2.6327 2.63165 2.61871 2.58733 2.52932 2.37246 1 1.00001 1.00003 1.00006 1.00019 1.00034 1.00108 1.00196 1.006 1.01186 1.03211 1.08069 1.18872 1.54749 2.3555 2.58885 2.62183 2.61627 2.60371 2.60566 2.60317 2.58846 2.54943 2.49694 2.37757 1 1.00001 1.00003 1.00005 1.00016 1.00028 1.00089 1.00164 1.00481 1.01008 1.02582 1.0696 1.15268 1.4798 2.20321 2.53898 2.62031 2.60945 2.5985 2.5819 2.57403 2.55787 2.52322 2.47994 2.38678 1 1.00001 1.00002 1.00004 1.00013 1.00024 1.00075 1.00138 1.00423 1.00828 1.02278 1.05494 1.13068 1.3726 2.04983 2.4387 2.60246 2.59477 2.58808 2.57356 2.5512 2.5319 2.49085 2.46104 2.3972 1 1.00001 1.00001 1.00004 1.00008 1.00024 1.00045 1.00134 1.00265 1.00708 1.01689 1.03993 1.11436 1.25859 1.70925 2.37908 2.56104 2.56023 2.55976 2.55438 2.53867 2.519 2.47686 2.43382 2.39359 1 1.00001 1.00001 1.00004 1.00006 1.00021 1.00037 1.00118 1.00215 1.00661 1.01298 1.03522 1.08714 1.20825 1.58118 2.33515 2.5344 2.53848 2.53399 2.52964 2.51835 2.50514 2.47545 2.42896 2.38519 1 1 1.00001 1.00003 1.00005 1.00016 1.00029 1.00089 1.00169 1.00483 1.01044 1.02626 1.07199 1.15756 1.4897 2.21715 2.47671 2.53182 2.51634 2.5121 2.50109 2.4855 2.46881 2.4335 2.38846 1 1 1.00001 1.00002 1.00005 1.00009 1.00028 1.00054 1.00151 1.00329 1.00815 1.0218 1.04833 1.14613 1.33039 1.94249 2.39012 2.52079 2.51389 2.49984 2.49079 2.47297 2.45725 2.43349 2.39854 1 1 1.00001 1.00001 1.00004 1.00007 1.00023 1.00042 1.00132 1.00245 1.00718 1.0151 1.03859 1.10069 1.24141 1.61878 2.29597 2.48492 2.49461 2.48906 2.47723 2.4639 2.44757 2.43136 2.40792 1 1 1 1.00001 1.00002 1.00007 1.00013 1.00041 1.00077 1.00227 1.00465 1.01214 1.03053 1.07001 1.20253 1.49646 2.15777 2.4536 2.49056 2.48123 2.47083 2.45692 2.44349 2.4322 2.41627 1 1 1 1.00001 1.00002 1.00006 1.0001 1.00032 1.00059 1.0018 1.00351 1.00947 1.02257 1.05312 1.15508 1.35883 1.91933 2.35916 2.48175 2.47924 2.47092 2.4593 2.44593 2.43635 2.42391 1 1 1 1.00001 1.00002 1.00003 1.0001 1.00019 1.00058 1.00109 1.00325 1.00642 1.01773 1.04004 1.10151 1.25691 1.74986 2.21912 2.44335 2.46519 2.46832 2.46389 2.45578 2.44458 2.43164 1 1 1 1 1.00001 1.00002 1.00008 1.00014 1.00044 1.00081 1.00248 1.00475 1.01343 1.02998 1.07331 1.19771 1.52354 2.11764 2.40649 2.4626 2.46612 2.47331 2.46892 2.4589 2.44405 1 1 1 1 1.00001 1.00002 1.00004 1.00014 1.00025 1.00077 1.00146 1.00418 1.00891 1.02255 1.06009 1.1337 1.39613 2.00628 2.33287 2.46865 2.47801 2.48475 2.48064 2.47096 2.45599 1 1 1 1 1.00001 1.00002 1.00003 1.00011 1.00019 1.0006 1.00111 1.00339 1.00651 1.01852 1.04038 1.10484 1.25998 1.7839 2.2253 2.45209 2.48321 2.49111 2.48778 2.47912 2.46481 1 1 1 1 1.00001 1.00001 1.00003 1.00006 1.00019 1.00035 1.00107 1.00201 1.00582 1.01226 1.03157 1.08372 1.1887 1.54517 2.23388 2.46442 2.50713 2.50258 2.49759 2.48507 2.46666 1 1 1 1 1 1.00001 1.00003 1.00005 1.00015 1.00027 1.00084 1.00157 1.0046 1.00962 1.0247 1.06561 1.14641 1.44118 2.13044 2.4444 2.54604 2.52452 2.51096 2.49298 2.46861 1 1 1 1 1 1.00001 1.00002 1.00005 1.00009 1.00026 1.00049 1.00136 1.00302 1.00738 1.01981 1.044 1.13216 1.29625 1.82235 2.40061 2.59131 2.57195 2.53573 2.50368 2.47383 1 1 1 1 1 1.00001 1.00002 1.00003 1.0001 1.00018 1.00056 1.00105 1.00317 1.00623 1.01741 1.03998 1.09853 1.26616 1.75213 2.37219 2.61987 2.60918 2.57666 2.52998 2.48885 1 1 1 1 1 1 1.00001 1.00003 1.00008 1.00015 1.00046 1.00086 1.00248 1.0053 1.01348 1.03588 1.08036 1.2408 1.61443 2.34473 2.62439 2.6444 2.61076 2.57575 2.52943 1 1 1 1 1 1.00001 1.00001 1.00003 1.00006 1.00017 1.00032 1.00099 1.00189 1.00544 1.01178 1.03003 1.08212 1.18282 1.55518 2.34526 2.6081 2.66635 2.62943 2.59782 2.55979 1 1 1 1 1 1 1.00001 1.00003 1.00005 1.00016 1.00028 1.0009 1.00166 1.00494 1.0103 1.02677 1.07206 1.16046 1.5003 2.26719 2.60659 2.69307 2.65338 2.61192 2.57318 1 1 1 1 1 1 1.00001 1.00002 1.00004 1.00014 1.00026 1.00082 1.00149 1.00461 1.00913 1.02472 1.06268 1.14397 1.43575 2.14953 2.59436 2.71411 2.68026 2.63386 2.59844 1 1 1 1 1 1 1.00001 1.00002 1.00004 1.00013 1.00023 1.00072 1.00133 1.00404 1.00816 1.02187 1.0555 1.1287 1.38094 2.04902 2.57193 2.7186 2.6881 2.63913 2.60841 1 1 1 1 1 1 1.00001 1.00001 1.00004 1.00008 1.00024 1.00047 1.0013 1.00293 1.00716 1.01957 1.04333 1.13214 1.29912 1.82472 2.55501 2.72599 2.69712 2.647 2.61837 1 1 1 1 1 1 1.00001 1.00002 1.00003 1.0001 1.00019 1.00057 1.0011 1.00311 1.00686 1.01726 1.04675 1.10565 1.3098 1.86319 2.5162 2.739 2.71447 2.66856 2.63603 1 1 1 1 1 1 1.00001 1.00001 1.00004 1.00007 1.00023 1.00042 1.0013 1.00251 1.00703 1.01603 1.03944 1.11229 1.25724 1.71677 2.56613 2.73898 2.7067 2.6775 2.64614 1 1 1 1 1 1 1.00001 1.00001 1.00004 1.00007 1.00022 1.0004 1.00123 1.00236 1.00681 1.01489 1.03792 1.10422 1.24437 1.6874 2.56265 2.74233 2.71203 2.69515 2.65717 1 1 1 1 1 1 1 1.00001 1.00003 1.00008 1.00015 1.00045 1.0009 1.00243 1.00582 1.01386 1.03948 1.08484 1.26852 1.68396 2.47762 2.74354 2.73296 2.70596 2.66945 1 1 1 1 1 1 1.00001 1.00001 1.00003 1.00006 1.00019 1.00036 1.00107 1.00216 1.00585 1.01407 1.03413 1.09821 1.223 1.65232 2.51035 2.73122 2.72713 2.70445 2.67145 1 1 1 1 1 1 1 1.00001 1.00002 1.00008 1.00014 1.00043 1.00083 1.00237 1.00528 1.01319 1.03642 1.08039 1.25123 1.62908 2.423 2.73863 2.73787 2.71383 2.67976 1 1 1 1 1 1 1 1.00001 1.00002 1.00007 1.00013 1.00041 1.0008 1.00226 1.00508 1.01263 1.03523 1.0776 1.24518 1.61027 2.40465 2.73685 2.74052 2.71772 2.68469 1 1 1 1 1 1 1 1.00001 1.00003 1.00005 1.00017 1.00032 1.00093 1.00198 1.00518 1.01315 1.03108 1.0912 1.20134 1.61555 2.44436 2.72865 2.73746 2.71664 2.68186 1 1 1 1 1 1 1 1.00001 1.00002 1.00006 1.00012 1.00035 1.00077 1.00196 1.00512 1.01184 1.03449 1.07339 1.2396 1.58262 2.36688 2.7351 2.74864 2.72707 2.69119 1 1 1 1 1 1 1 1.00001 1.00003 1.00005 1.00016 1.00031 1.00091 1.00192 1.00502 1.01272 1.02993 1.08837 1.19198 1.60119 2.41003 2.73296 2.74681 2.72529 2.68808 1 1 1 1 1 1 1 1.00001 1.00002 1.00007 1.00012 1.00039 1.00075 1.00215 1.0048 1.01196 1.03329 1.07327 1.23183 1.5688 2.33739 2.72758 2.74888 2.7283 2.69265 1 1 1 1 1 1 1 1.00001 1.00002 1.00007 1.00012 1.00039 1.00075 1.00212 1.00477 1.01181 1.03298 1.07228 1.22975 1.56265 2.32834 2.71973 2.74715 2.72804 2.69267 1 1 1 1 1 1 1 1.00001 1.00003 1.00005 1.00017 1.00031 1.00097 1.00187 1.00537 1.012 1.03018 1.08554 1.18869 1.58962 2.39015 2.72579 2.75382 2.73653 2.69893 1 1 1 1 1 1 1.00001 1.00001 1.00003 1.00005 1.00017 1.00031 1.00101 1.00187 1.00563 1.01178 1.03107 1.08419 1.19026 1.58393 2.39139 2.72765 2.75684 2.74027 2.70386 1.00001 1.00001 1.00004 1.00008 1.00024 1.00044 1.00134 1.00261 1.00711 1.01658 1.0398 1.11366 1.25753 1.70341 2.49367 2.65367 2.64112 2.63983 2.64966 2.65667 2.65661 2.64958 2.62861 2.57794 2.41648 1.00001 1.00001 1.00004 1.00007 1.00022 1.00039 1.00125 1.00228 1.00694 1.01386 1.03718 1.09389 1.22456 1.62487 2.45661 2.63068 2.62841 2.62378 2.62494 2.6327 2.63165 2.61871 2.58733 2.52932 2.37246 1 1.00001 1.00003 1.00006 1.00019 1.00034 1.00108 1.00196 1.006 1.01186 1.03211 1.08069 1.18872 1.5475 2.35551 2.58885 2.62183 2.61627 2.60371 2.60566 2.60317 2.58846 2.54943 2.49694 2.37757 1 1.00001 1.00003 1.00005 1.00016 1.00028 1.00089 1.00164 1.00481 1.01008 1.02582 1.0696 1.15268 1.4798 2.20321 2.53898 2.62031 2.60945 2.5985 2.5819 2.57403 2.55787 2.52322 2.47994 2.38678 1 1.00001 1.00002 1.00004 1.00013 1.00024 1.00075 1.00138 1.00423 1.00828 1.02278 1.05494 1.13068 1.37261 2.04983 2.43871 2.60246 2.59477 2.58808 2.57356 2.5512 2.5319 2.49085 2.46104 2.3972 1 1.00001 1.00001 1.00004 1.00008 1.00024 1.00045 1.00134 1.00265 1.00708 1.01689 1.03993 1.11436 1.25859 1.70925 2.37908 2.56104 2.56023 2.55976 2.55438 2.53867 2.519 2.47686 2.43382 2.39359 1 1.00001 1.00001 1.00004 1.00006 1.00021 1.00037 1.00118 1.00215 1.00661 1.01298 1.03522 1.08714 1.20825 1.58118 2.33516 2.5344 2.53848 2.53399 2.52964 2.51836 2.50514 2.47545 2.42897 2.38519 1 1 1.00001 1.00003 1.00005 1.00016 1.00029 1.00089 1.00169 1.00483 1.01044 1.02626 1.07199 1.15756 1.4897 2.21715 2.47671 2.53182 2.51634 2.51211 2.50109 2.48551 2.46881 2.4335 2.38847 1 1 1.00001 1.00002 1.00005 1.00009 1.00028 1.00054 1.00151 1.00329 1.00815 1.0218 1.04833 1.14613 1.33039 1.94249 2.39013 2.5208 2.51389 2.49984 2.49079 2.47297 2.45725 2.43349 2.39854 1 1 1.00001 1.00001 1.00004 1.00007 1.00023 1.00042 1.00132 1.00245 1.00718 1.0151 1.03859 1.10069 1.24141 1.61878 2.29597 2.48492 2.49461 2.48907 2.47723 2.46391 2.44757 2.43137 2.40792 1 1 1 1.00001 1.00002 1.00007 1.00013 1.00041 1.00077 1.00227 1.00465 1.01214 1.03053 1.07001 1.20253 1.49646 2.15778 2.45361 2.49056 2.48123 2.47083 2.45693 2.44349 2.43221 2.41627 1 1 1 1.00001 1.00002 1.00006 1.0001 1.00032 1.00059 1.0018 1.00351 1.00947 1.02257 1.05312 1.15508 1.35883 1.91934 2.35916 2.48175 2.47924 2.47092 2.4593 2.44593 2.43636 2.42391 1 1 1 1.00001 1.00002 1.00003 1.0001 1.00019 1.00058 1.00109 1.00325 1.00642 1.01773 1.04004 1.10151 1.25691 1.74986 2.21913 2.44335 2.46519 2.46832 2.46389 2.45578 2.44458 2.43164 1 1 1 1 1.00001 1.00002 1.00008 1.00014 1.00044 1.00081 1.00248 1.00475 1.01343 1.02998 1.07331 1.19771 1.52355 2.11765 2.4065 2.4626 2.46612 2.47331 2.46892 2.4589 2.44405 1 1 1 1 1.00001 1.00002 1.00004 1.00014 1.00025 1.00077 1.00146 1.00418 1.00891 1.02255 1.0601 1.1337 1.39613 2.00629 2.33287 2.46865 2.47801 2.48475 2.48064 2.47096 2.45599 1 1 1 1 1.00001 1.00002 1.00003 1.00011 1.00019 1.0006 1.00111 1.00339 1.00651 1.01852 1.04038 1.10484 1.25999 1.78391 2.22531 2.4521 2.48321 2.49111 2.48779 2.47912 2.46481 1 1 1 1 1.00001 1.00001 1.00003 1.00006 1.00019 1.00035 1.00107 1.00201 1.00582 1.01226 1.03157 1.08372 1.18871 1.54517 2.23389 2.46443 2.50713 2.50258 2.4976 2.48507 2.46667 1 1 1 1 1 1.00001 1.00003 1.00005 1.00015 1.00027 1.00084 1.00157 1.0046 1.00962 1.0247 1.06561 1.14641 1.4412 2.13045 2.44442 2.54604 2.52452 2.51096 2.49298 2.46861 1 1 1 1 1 1.00001 1.00002 1.00005 1.00009 1.00026 1.00049 1.00136 1.00302 1.00738 1.01981 1.04401 1.13216 1.29626 1.82239 2.40062 2.59131 2.57195 2.53573 2.50368 2.47383 1 1 1 1 1 1.00001 1.00002 1.00003 1.0001 1.00018 1.00056 1.00105 1.00317 1.00623 1.01741 1.03998 1.09853 1.26617 1.75216 2.37219 2.61987 2.60918 2.57666 2.52998 2.48885 1 1 1 1 1 1 1.00001 1.00003 1.00008 1.00015 1.00046 1.00086 1.00248 1.0053 1.01348 1.03588 1.08036 1.2408 1.61445 2.34474 2.62439 2.6444 2.61076 2.57575 2.52944 1 1 1 1 1 1.00001 1.00001 1.00003 1.00006 1.00017 1.00032 1.00099 1.00189 1.00544 1.01178 1.03003 1.08212 1.18283 1.55519 2.34528 2.60811 2.66635 2.62943 2.59782 2.55979 1 1 1 1 1 1 1.00001 1.00003 1.00005 1.00016 1.00028 1.0009 1.00166 1.00494 1.0103 1.02677 1.07206 1.16046 1.50031 2.26721 2.6066 2.69307 2.65338 2.61192 2.57318 1 1 1 1 1 1 1.00001 1.00002 1.00004 1.00014 1.00026 1.00082 1.00149 1.00461 1.00913 1.02472 1.06268 1.14397 1.43576 2.14956 2.59437 2.71411 2.68026 2.63386 2.59844 1 1 1 1 1 1 1.00001 1.00002 1.00004 1.00013 1.00023 1.00072 1.00133 1.00404 1.00816 1.02187 1.0555 1.1287 1.38095 2.04905 2.57194 2.7186 2.6881 2.63913 2.60841 1 1 1 1 1 1 1.00001 1.00001 1.00004 1.00008 1.00024 1.00047 1.0013 1.00293 1.00716 1.01957 1.04333 1.13215 1.29913 1.82476 2.55501 2.726 2.69712 2.647 2.61837 1 1 1 1 1 1 1.00001 1.00002 1.00003 1.0001 1.00019 1.00057 1.0011 1.00311 1.00686 1.01726 1.04675 1.10565 1.3098 1.86321 2.5162 2.739 2.71447 2.66856 2.63603 1 1 1 1 1 1 1.00001 1.00001 1.00004 1.00007 1.00023 1.00042 1.0013 1.00251 1.00703 1.01603 1.03944 1.11229 1.25725 1.71678 2.56614 2.73898 2.70671 2.6775 2.64614 1 1 1 1 1 1 1.00001 1.00001 1.00004 1.00007 1.00022 1.0004 1.00123 1.00236 1.00681 1.01489 1.03792 1.10422 1.24437 1.68742 2.56266 2.74233 2.71203 2.69515 2.65717 1 1 1 1 1 1 1 1.00001 1.00003 1.00008 1.00015 1.00045 1.0009 1.00243 1.00582 1.01386 1.03948 1.08484 1.26853 1.68399 2.47764 2.74355 2.73296 2.70596 2.66945 1 1 1 1 1 1 1.00001 1.00001 1.00003 1.00006 1.00019 1.00036 1.00107 1.00216 1.00585 1.01407 1.03413 1.09822 1.223 1.65234 2.51037 2.73122 2.72713 2.70445 2.67144 1 1 1 1 1 1 1 1.00001 1.00002 1.00008 1.00014 1.00043 1.00083 1.00237 1.00528 1.01319 1.03642 1.08039 1.25124 1.62911 2.42302 2.73863 2.73787 2.71383 2.67975 1 1 1 1 1 1 1 1.00001 1.00002 1.00007 1.00013 1.00041 1.0008 1.00226 1.00508 1.01263 1.03523 1.0776 1.24519 1.61029 2.40467 2.73685 2.74051 2.71771 2.68469 1 1 1 1 1 1 1 1.00001 1.00003 1.00005 1.00017 1.00032 1.00093 1.00198 1.00518 1.01315 1.03108 1.0912 1.20135 1.61556 2.44438 2.72864 2.73746 2.71663 2.68186 1 1 1 1 1 1 1 1.00001 1.00002 1.00006 1.00012 1.00035 1.00077 1.00196 1.00512 1.01184 1.03449 1.07339 1.23961 1.58265 2.36691 2.73509 2.74864 2.72706 2.69118 1 1 1 1 1 1 1 1.00001 1.00003 1.00005 1.00016 1.00031 1.00091 1.00192 1.00502 1.01272 1.02993 1.08837 1.19198 1.6012 2.41005 2.73295 2.7468 2.72528 2.68808 1 1 1 1 1 1 1 1.00001 1.00002 1.00007 1.00012 1.00039 1.00075 1.00215 1.0048 1.01196 1.03329 1.07327 1.23184 1.56881 2.33742 2.72757 2.74887 2.72829 2.69265 1 1 1 1 1 1 1 1.00001 1.00002 1.00007 1.00012 1.00039 1.00075 1.00212 1.00477 1.01181 1.03299 1.07228 1.22976 1.56267 2.32837 2.71971 2.74714 2.72803 2.69267 1 1 1 1 1 1 1 1.00001 1.00003 1.00005 1.00017 1.00031 1.00097 1.00187 1.00537 1.012 1.03018 1.08555 1.1887 1.58963 2.39017 2.72576 2.75381 2.73653 2.69893 1 1 1 1 1 1 1.00001 1.00001 1.00003 1.00005 1.00017 1.00031 1.00101 1.00187 1.00563 1.01178 1.03107 1.08419 1.19027 1.58394 2.39141 2.72763 2.75683 2.74027 2.70387 1.00001 1.00001 1.00004 1.00008 1.00024 1.00044 1.00134 1.00261 1.00711 1.01658 1.0398 1.11366 1.25753 1.70341 2.49367 2.65367 2.64112 2.63983 2.64966 2.65667 2.65661 2.64958 2.62861 2.57794 2.41648 1.00001 1.00001 1.00004 1.00007 1.00022 1.00039 1.00125 1.00228 1.00694 1.01386 1.03718 1.09389 1.22456 1.62487 2.45661 2.63068 2.62841 2.62378 2.62494 2.6327 2.63165 2.61871 2.58733 2.52932 2.37246 1 1.00001 1.00003 1.00006 1.00019 1.00034 1.00108 1.00196 1.006 1.01186 1.03211 1.08069 1.18872 1.5475 2.35551 2.58886 2.62183 2.61627 2.60371 2.60566 2.60317 2.58846 2.54943 2.49694 2.37757 1 1.00001 1.00003 1.00005 1.00016 1.00028 1.00089 1.00164 1.00481 1.01008 1.02582 1.0696 1.15268 1.4798 2.20321 2.53898 2.62031 2.60945 2.5985 2.5819 2.57403 2.55787 2.52322 2.47994 2.38678 1 1.00001 1.00002 1.00004 1.00013 1.00024 1.00075 1.00138 1.00423 1.00828 1.02278 1.05494 1.13068 1.37261 2.04983 2.43871 2.60246 2.59477 2.58808 2.57356 2.5512 2.5319 2.49085 2.46104 2.3972 1 1.00001 1.00001 1.00004 1.00008 1.00024 1.00045 1.00134 1.00265 1.00708 1.01689 1.03993 1.11436 1.25859 1.70925 2.37908 2.56104 2.56023 2.55976 2.55438 2.53867 2.519 2.47687 2.43382 2.39359 1 1.00001 1.00001 1.00004 1.00006 1.00021 1.00037 1.00118 1.00215 1.00661 1.01298 1.03522 1.08714 1.20825 1.58118 2.33516 2.5344 2.53848 2.534 2.52964 2.51836 2.50515 2.47545 2.42897 2.38519 1 1 1.00001 1.00003 1.00005 1.00016 1.00029 1.00089 1.00169 1.00483 1.01044 1.02626 1.07199 1.15756 1.48971 2.21716 2.47671 2.53182 2.51634 2.51211 2.5011 2.48551 2.46881 2.4335 2.38847 1 1 1.00001 1.00002 1.00005 1.00009 1.00028 1.00054 1.00151 1.00329 1.00815 1.0218 1.04833 1.14613 1.33039 1.9425 2.39013 2.5208 2.51389 2.49984 2.49079 2.47297 2.45725 2.43349 2.39854 1 1 1.00001 1.00001 1.00004 1.00007 1.00023 1.00042 1.00132 1.00245 1.00718 1.0151 1.03859 1.10069 1.24141 1.61878 2.29597 2.48492 2.49461 2.48907 2.47724 2.46391 2.44757 2.43137 2.40792 1 1 1 1.00001 1.00002 1.00007 1.00013 1.00041 1.00077 1.00227 1.00465 1.01214 1.03053 1.07001 1.20253 1.49647 2.15778 2.45361 2.49056 2.48123 2.47083 2.45693 2.44349 2.43221 2.41627 1 1 1 1.00001 1.00002 1.00006 1.0001 1.00032 1.00059 1.0018 1.00351 1.00947 1.02257 1.05312 1.15508 1.35883 1.91935 2.35917 2.48175 2.47924 2.47092 2.4593 2.44593 2.43636 2.42391 1 1 1 1.00001 1.00002 1.00003 1.0001 1.00019 1.00058 1.00109 1.00325 1.00642 1.01773 1.04004 1.10151 1.25691 1.74987 2.21914 2.44336 2.4652 2.46832 2.46389 2.45578 2.44458 2.43164 1 1 1 1 1.00001 1.00002 1.00008 1.00014 1.00044 1.00081 1.00248 1.00475 1.01343 1.02998 1.07331 1.19771 1.52355 2.11766 2.4065 2.4626 2.46612 2.47331 2.46892 2.4589 2.44405 1 1 1 1 1.00001 1.00002 1.00004 1.00014 1.00025 1.00077 1.00146 1.00418 1.00891 1.02255 1.0601 1.1337 1.39614 2.0063 2.33288 2.46865 2.47801 2.48475 2.48065 2.47096 2.45599 1 1 1 1 1.00001 1.00002 1.00003 1.00011 1.00019 1.0006 1.00111 1.00339 1.00651 1.01852 1.04038 1.10484 1.25999 1.78391 2.22532 2.4521 2.48322 2.49111 2.48779 2.47912 2.46481 1 1 1 1 1.00001 1.00001 1.00003 1.00006 1.00019 1.00035 1.00107 1.00201 1.00582 1.01226 1.03157 1.08372 1.18871 1.54518 2.2339 2.46443 2.50714 2.50258 2.4976 2.48507 2.46667 1 1 1 1 1 1.00001 1.00003 1.00005 1.00015 1.00027 1.00084 1.00157 1.0046 1.00962 1.0247 1.06561 1.14641 1.44121 2.13047 2.44443 2.54605 2.52452 2.51096 2.49298 2.46861 1 1 1 1 1 1.00001 1.00002 1.00005 1.00009 1.00026 1.00049 1.00136 1.00302 1.00738 1.01981 1.04401 1.13216 1.29627 1.82243 2.40063 2.59131 2.57195 2.53574 2.50368 2.47383 1 1 1 1 1 1.00001 1.00002 1.00003 1.0001 1.00018 1.00056 1.00105 1.00317 1.00623 1.01741 1.03999 1.09853 1.26617 1.75218 2.37219 2.61987 2.60918 2.57666 2.52998 2.48885 1 1 1 1 1 1 1.00001 1.00003 1.00008 1.00015 1.00046 1.00086 1.00248 1.0053 1.01348 1.03588 1.08036 1.24081 1.61447 2.34476 2.6244 2.6444 2.61076 2.57575 2.52944 1 1 1 1 1 1.00001 1.00001 1.00003 1.00006 1.00017 1.00032 1.00099 1.00189 1.00544 1.01178 1.03003 1.08212 1.18283 1.5552 2.34529 2.60812 2.66635 2.62943 2.59782 2.55979 1 1 1 1 1 1 1.00001 1.00003 1.00005 1.00016 1.00028 1.0009 1.00166 1.00494 1.0103 1.02677 1.07207 1.16046 1.50031 2.26723 2.6066 2.69307 2.65338 2.61192 2.57318 1 1 1 1 1 1 1.00001 1.00002 1.00004 1.00014 1.00026 1.00082 1.00149 1.00461 1.00913 1.02472 1.06269 1.14397 1.43577 2.14959 2.59438 2.71411 2.68026 2.63386 2.59844 1 1 1 1 1 1 1.00001 1.00002 1.00004 1.00013 1.00023 1.00072 1.00133 1.00404 1.00816 1.02187 1.05551 1.1287 1.38096 2.04908 2.57195 2.7186 2.6881 2.63913 2.60841 1 1 1 1 1 1 1.00001 1.00001 1.00004 1.00008 1.00024 1.00047 1.0013 1.00293 1.00716 1.01957 1.04333 1.13215 1.29914 1.82479 2.55502 2.726 2.69712 2.647 2.61837 1 1 1 1 1 1 1.00001 1.00002 1.00003 1.0001 1.00019 1.00057 1.0011 1.00311 1.00686 1.01726 1.04675 1.10565 1.30981 1.86324 2.5162 2.739 2.71447 2.66856 2.63603 1 1 1 1 1 1 1.00001 1.00001 1.00004 1.00007 1.00023 1.00042 1.0013 1.00251 1.00703 1.01603 1.03944 1.11229 1.25725 1.71679 2.56614 2.73898 2.70671 2.6775 2.64614 1 1 1 1 1 1 1.00001 1.00001 1.00004 1.00007 1.00022 1.0004 1.00123 1.00236 1.00681 1.01489 1.03792 1.10422 1.24438 1.68743 2.56267 2.74234 2.71203 2.69515 2.65718 1 1 1 1 1 1 1 1.00001 1.00003 1.00008 1.00015 1.00045 1.0009 1.00243 1.00582 1.01386 1.03948 1.08485 1.26854 1.68401 2.47765 2.74356 2.73296 2.70596 2.66945 1 1 1 1 1 1 1.00001 1.00001 1.00003 1.00006 1.00019 1.00036 1.00107 1.00216 1.00585 1.01407 1.03413 1.09822 1.22301 1.65235 2.51038 2.73123 2.72713 2.70444 2.67144 1 1 1 1 1 1 1 1.00001 1.00002 1.00008 1.00014 1.00043 1.00083 1.00237 1.00528 1.01319 1.03642 1.08039 1.25124 1.62913 2.42304 2.73864 2.73787 2.71382 2.67975 1 1 1 1 1 1 1 1.00001 1.00002 1.00007 1.00013 1.00041 1.0008 1.00226 1.00508 1.01263 1.03523 1.0776 1.24519 1.61031 2.40469 2.73685 2.74051 2.71771 2.68469 1 1 1 1 1 1 1 1.00001 1.00003 1.00005 1.00017 1.00032 1.00093 1.00198 1.00518 1.01315 1.03108 1.0912 1.20136 1.61557 2.4444 2.72864 2.73745 2.71663 2.68186 1 1 1 1 1 1 1 1.00001 1.00002 1.00006 1.00012 1.00035 1.00077 1.00196 1.00512 1.01184 1.03449 1.07339 1.23961 1.58266 2.36694 2.73509 2.74863 2.72706 2.69118 1 1 1 1 1 1 1 1.00001 1.00003 1.00005 1.00016 1.00031 1.00091 1.00192 1.00502 1.01272 1.02993 1.08837 1.19199 1.60121 2.41007 2.73294 2.74679 2.72528 2.68808 1 1 1 1 1 1 1 1.00001 1.00002 1.00007 1.00012 1.00039 1.00075 1.00215 1.0048 1.01196 1.03329 1.07327 1.23184 1.56883 2.33745 2.72756 2.74886 2.72829 2.69265 1 1 1 1 1 1 1 1.00001 1.00002 1.00007 1.00012 1.00039 1.00075 1.00212 1.00477 1.01181 1.03299 1.07228 1.22976 1.56268 2.3284 2.7197 2.74713 2.72802 2.69267 1 1 1 1 1 1 1 1.00001 1.00003 1.00005 1.00017 1.00031 1.00097 1.00187 1.00537 1.012 1.03018 1.08555 1.18871 1.58963 2.39019 2.72574 2.7538 2.73652 2.69894 1 1 1 1 1 1 1.00001 1.00001 1.00003 1.00005 1.00017 1.00031 1.00101 1.00187 1.00563 1.01178 1.03107 1.08419 1.19027 1.58395 2.39143 2.72761 2.75682 2.74026 2.70387 1.00001 1.00001 1.00004 1.00008 1.00024 1.00044 1.00134 1.00261 1.00711 1.01658 1.0398 1.11366 1.25753 1.70341 2.49367 2.65367 2.64112 2.63983 2.64966 2.65667 2.65661 2.64958 2.62861 2.57794 2.41648 1.00001 1.00001 1.00004 1.00007 1.00022 1.00039 1.00125 1.00228 1.00694 1.01386 1.03718 1.09389 1.22456 1.62488 2.45661 2.63068 2.62841 2.62378 2.62494 2.6327 2.63165 2.61871 2.58733 2.52932 2.37246 1 1.00001 1.00003 1.00006 1.00019 1.00034 1.00108 1.00196 1.006 1.01186 1.03211 1.08069 1.18872 1.5475 2.35551 2.58886 2.62183 2.61627 2.60371 2.60566 2.60317 2.58846 2.54943 2.49694 2.37757 1 1.00001 1.00003 1.00005 1.00016 1.00028 1.00089 1.00164 1.00481 1.01008 1.02582 1.0696 1.15268 1.4798 2.20321 2.53898 2.62031 2.60945 2.5985 2.5819 2.57403 2.55787 2.52322 2.47994 2.38678 1 1.00001 1.00002 1.00004 1.00013 1.00024 1.00075 1.00138 1.00423 1.00828 1.02278 1.05494 1.13068 1.37261 2.04983 2.43871 2.60246 2.59477 2.58808 2.57356 2.5512 2.5319 2.49085 2.46104 2.3972 1 1.00001 1.00001 1.00004 1.00008 1.00024 1.00045 1.00134 1.00265 1.00708 1.01689 1.03993 1.11436 1.25859 1.70925 2.37908 2.56104 2.56023 2.55976 2.55438 2.53867 2.519 2.47687 2.43382 2.39359 1 1.00001 1.00001 1.00004 1.00006 1.00021 1.00037 1.00118 1.00215 1.00661 1.01298 1.03522 1.08714 1.20825 1.58119 2.33516 2.5344 2.53848 2.534 2.52964 2.51836 2.50515 2.47545 2.42897 2.38519 1 1 1.00001 1.00003 1.00005 1.00016 1.00029 1.00089 1.00169 1.00483 1.01044 1.02626 1.07199 1.15756 1.48971 2.21716 2.47671 2.53182 2.51634 2.51211 2.5011 2.48551 2.46881 2.4335 2.38847 1 1 1.00001 1.00002 1.00005 1.00009 1.00028 1.00054 1.00151 1.00329 1.00815 1.0218 1.04833 1.14613 1.33039 1.9425 2.39013 2.5208 2.51389 2.49984 2.49079 2.47297 2.45725 2.43349 2.39854 1 1 1.00001 1.00001 1.00004 1.00007 1.00023 1.00042 1.00132 1.00245 1.00718 1.0151 1.03859 1.10069 1.24141 1.61878 2.29597 2.48492 2.49461 2.48907 2.47724 2.46391 2.44757 2.43137 2.40792 1 1 1 1.00001 1.00002 1.00007 1.00013 1.00041 1.00077 1.00227 1.00465 1.01214 1.03053 1.07001 1.20253 1.49647 2.15778 2.45361 2.49056 2.48123 2.47083 2.45693 2.44349 2.43221 2.41627 1 1 1 1.00001 1.00002 1.00006 1.0001 1.00032 1.00059 1.0018 1.00351 1.00947 1.02257 1.05312 1.15508 1.35883 1.91935 2.35917 2.48175 2.47924 2.47092 2.4593 2.44593 2.43636 2.42391 1 1 1 1.00001 1.00002 1.00003 1.0001 1.00019 1.00058 1.00109 1.00325 1.00642 1.01773 1.04004 1.10151 1.25692 1.74987 2.21914 2.44336 2.4652 2.46832 2.46389 2.45578 2.44458 2.43164 1 1 1 1 1.00001 1.00002 1.00008 1.00014 1.00044 1.00081 1.00248 1.00475 1.01343 1.02998 1.07331 1.19771 1.52356 2.11766 2.4065 2.4626 2.46612 2.47331 2.46892 2.4589 2.44405 1 1 1 1 1.00001 1.00002 1.00004 1.00014 1.00025 1.00077 1.00146 1.00418 1.00891 1.02255 1.0601 1.1337 1.39614 2.0063 2.33288 2.46865 2.47801 2.48475 2.48065 2.47096 2.45599 1 1 1 1 1.00001 1.00002 1.00003 1.00011 1.00019 1.0006 1.00111 1.00339 1.00651 1.01852 1.04038 1.10484 1.25999 1.78392 2.22532 2.4521 2.48322 2.49111 2.48779 2.47912 2.46481 1 1 1 1 1.00001 1.00001 1.00003 1.00006 1.00019 1.00035 1.00107 1.00201 1.00582 1.01226 1.03157 1.08372 1.18871 1.54518 2.2339 2.46443 2.50714 2.50258 2.4976 2.48507 2.46667 1 1 1 1 1 1.00001 1.00003 1.00005 1.00015 1.00027 1.00084 1.00157 1.0046 1.00962 1.0247 1.06561 1.14641 1.44121 2.13047 2.44443 2.54605 2.52452 2.51096 2.49298 2.46861 1 1 1 1 1 1.00001 1.00002 1.00005 1.00009 1.00026 1.00049 1.00136 1.00302 1.00738 1.01981 1.04401 1.13216 1.29627 1.82243 2.40063 2.59131 2.57195 2.53574 2.50368 2.47383 1 1 1 1 1 1.00001 1.00002 1.00003 1.0001 1.00018 1.00056 1.00105 1.00317 1.00623 1.01741 1.03999 1.09853 1.26617 1.75219 2.37219 2.61987 2.60918 2.57666 2.52999 2.48886 1 1 1 1 1 1 1.00001 1.00003 1.00008 1.00015 1.00046 1.00086 1.00248 1.0053 1.01348 1.03588 1.08036 1.24081 1.61447 2.34476 2.6244 2.6444 2.61076 2.57575 2.52944 1 1 1 1 1 1.00001 1.00001 1.00003 1.00006 1.00017 1.00032 1.00099 1.00189 1.00544 1.01178 1.03003 1.08212 1.18283 1.5552 2.34529 2.60812 2.66635 2.62943 2.59782 2.55979 1 1 1 1 1 1 1.00001 1.00003 1.00005 1.00016 1.00028 1.0009 1.00166 1.00494 1.0103 1.02677 1.07207 1.16047 1.50032 2.26724 2.60661 2.69307 2.65338 2.61192 2.57318 1 1 1 1 1 1 1.00001 1.00002 1.00004 1.00014 1.00026 1.00082 1.00149 1.00461 1.00913 1.02472 1.06269 1.14397 1.43578 2.14959 2.59438 2.71411 2.68026 2.63386 2.59844 1 1 1 1 1 1 1.00001 1.00002 1.00004 1.00013 1.00023 1.00072 1.00133 1.00404 1.00816 1.02187 1.05551 1.1287 1.38097 2.04908 2.57195 2.7186 2.6881 2.63913 2.60841 1 1 1 1 1 1 1.00001 1.00001 1.00004 1.00008 1.00024 1.00047 1.0013 1.00293 1.00716 1.01957 1.04333 1.13215 1.29914 1.8248 2.55502 2.726 2.69712 2.647 2.61837 1 1 1 1 1 1 1.00001 1.00002 1.00003 1.0001 1.00019 1.00057 1.0011 1.00311 1.00686 1.01726 1.04675 1.10565 1.30981 1.86324 2.5162 2.73899 2.71447 2.66856 2.63603 1 1 1 1 1 1 1.00001 1.00001 1.00004 1.00007 1.00023 1.00042 1.0013 1.00251 1.00703 1.01603 1.03944 1.11229 1.25725 1.71679 2.56614 2.73899 2.70671 2.6775 2.64613 1 1 1 1 1 1 1.00001 1.00001 1.00004 1.00007 1.00022 1.0004 1.00123 1.00236 1.00681 1.01489 1.03792 1.10422 1.24438 1.68743 2.56268 2.74234 2.71203 2.69515 2.65717 1 1 1 1 1 1 1 1.00001 1.00003 1.00008 1.00015 1.00045 1.0009 1.00243 1.00582 1.01386 1.03948 1.08485 1.26854 1.68402 2.47766 2.74356 2.73296 2.70596 2.66945 1 1 1 1 1 1 1.00001 1.00001 1.00003 1.00006 1.00019 1.00036 1.00107 1.00216 1.00585 1.01407 1.03413 1.09822 1.22301 1.65236 2.51039 2.73123 2.72713 2.70444 2.67144 1 1 1 1 1 1 1 1.00001 1.00002 1.00008 1.00014 1.00043 1.00083 1.00237 1.00528 1.01319 1.03642 1.08039 1.25124 1.62913 2.42304 2.73864 2.73787 2.71382 2.67975 1 1 1 1 1 1 1 1.00001 1.00002 1.00007 1.00013 1.00041 1.0008 1.00226 1.00508 1.01263 1.03523 1.0776 1.24519 1.61032 2.4047 2.73685 2.74051 2.71771 2.68469 1 1 1 1 1 1 1 1.00001 1.00003 1.00005 1.00017 1.00032 1.00093 1.00198 1.00518 1.01315 1.03108 1.0912 1.20136 1.61558 2.4444 2.72864 2.73745 2.71663 2.68186 1 1 1 1 1 1 1 1.00001 1.00002 1.00006 1.00012 1.00035 1.00077 1.00196 1.00512 1.01184 1.03449 1.07339 1.23961 1.58267 2.36694 2.73509 2.74863 2.72706 2.69118 1 1 1 1 1 1 1 1.00001 1.00003 1.00005 1.00016 1.00031 1.00091 1.00192 1.00502 1.01272 1.02993 1.08837 1.19199 1.60122 2.41008 2.73294 2.74679 2.72528 2.68808 1 1 1 1 1 1 1 1.00001 1.00002 1.00007 1.00012 1.00039 1.00075 1.00215 1.0048 1.01196 1.03329 1.07327 1.23185 1.56883 2.33746 2.72755 2.74886 2.72829 2.69265 1 1 1 1 1 1 1 1.00001 1.00002 1.00007 1.00012 1.00039 1.00075 1.00212 1.00477 1.01181 1.03299 1.07228 1.22976 1.56268 2.32841 2.71969 2.74713 2.72802 2.69267 1 1 1 1 1 1 1 1.00001 1.00003 1.00005 1.00017 1.00031 1.00097 1.00187 1.00537 1.012 1.03018 1.08555 1.18871 1.58964 2.3902 2.72573 2.75379 2.73652 2.69894 1 1 1 1 1 1 1.00001 1.00001 1.00003 1.00005 1.00017 1.00031 1.00101 1.00187 1.00563 1.01178 1.03107 1.08419 1.19027 1.58395 2.39143 2.7276 2.75681 2.74026 2.70387 1.00001 1.00001 1.00004 1.00008 1.00024 1.00044 1.00134 1.00261 1.00711 1.01658 1.0398 1.11366 1.25753 1.70341 2.49367 2.65367 2.64112 2.63983 2.64966 2.65667 2.65661 2.64958 2.62861 2.57794 2.41648 1.00001 1.00001 1.00004 1.00007 1.00022 1.00039 1.00125 1.00228 1.00694 1.01386 1.03718 1.09389 1.22456 1.62487 2.45661 2.63068 2.62841 2.62378 2.62494 2.6327 2.63165 2.61871 2.58733 2.52932 2.37246 1 1.00001 1.00003 1.00006 1.00019 1.00034 1.00108 1.00196 1.006 1.01186 1.03211 1.08069 1.18872 1.5475 2.35551 2.58885 2.62183 2.61627 2.60371 2.60566 2.60317 2.58846 2.54943 2.49694 2.37757 1 1.00001 1.00003 1.00005 1.00016 1.00028 1.00089 1.00164 1.00481 1.01008 1.02582 1.0696 1.15268 1.4798 2.20321 2.53898 2.62031 2.60945 2.5985 2.5819 2.57403 2.55787 2.52322 2.47994 2.38678 1 1.00001 1.00002 1.00004 1.00013 1.00024 1.00075 1.00138 1.00423 1.00828 1.02278 1.05494 1.13068 1.37261 2.04983 2.43871 2.60246 2.59477 2.58808 2.57356 2.5512 2.5319 2.49085 2.46104 2.3972 1 1.00001 1.00001 1.00004 1.00008 1.00024 1.00045 1.00134 1.00265 1.00708 1.01689 1.03993 1.11436 1.25859 1.70925 2.37908 2.56104 2.56023 2.55976 2.55438 2.53867 2.519 2.47686 2.43382 2.39359 1 1.00001 1.00001 1.00004 1.00006 1.00021 1.00037 1.00118 1.00215 1.00661 1.01298 1.03522 1.08714 1.20825 1.58118 2.33516 2.5344 2.53848 2.53399 2.52964 2.51836 2.50515 2.47545 2.42897 2.38519 1 1 1.00001 1.00003 1.00005 1.00016 1.00029 1.00089 1.00169 1.00483 1.01044 1.02626 1.07199 1.15756 1.4897 2.21715 2.47671 2.53182 2.51634 2.51211 2.50109 2.48551 2.46881 2.4335 2.38847 1 1 1.00001 1.00002 1.00005 1.00009 1.00028 1.00054 1.00151 1.00329 1.00815 1.0218 1.04833 1.14613 1.33039 1.94249 2.39013 2.5208 2.51389 2.49984 2.49079 2.47297 2.45725 2.43349 2.39854 1 1 1.00001 1.00001 1.00004 1.00007 1.00023 1.00042 1.00132 1.00245 1.00718 1.0151 1.03859 1.10069 1.24141 1.61878 2.29597 2.48492 2.49461 2.48907 2.47723 2.46391 2.44757 2.43137 2.40792 1 1 1 1.00001 1.00002 1.00007 1.00013 1.00041 1.00077 1.00227 1.00465 1.01214 1.03053 1.07001 1.20253 1.49647 2.15778 2.45361 2.49056 2.48123 2.47083 2.45693 2.44349 2.43221 2.41627 1 1 1 1.00001 1.00002 1.00006 1.0001 1.00032 1.00059 1.0018 1.00351 1.00947 1.02257 1.05312 1.15508 1.35883 1.91934 2.35917 2.48175 2.47924 2.47092 2.4593 2.44593 2.43636 2.42391 1 1 1 1.00001 1.00002 1.00003 1.0001 1.00019 1.00058 1.00109 1.00325 1.00642 1.01773 1.04004 1.10151 1.25691 1.74987 2.21914 2.44335 2.4652 2.46832 2.46389 2.45578 2.44458 2.43164 1 1 1 1 1.00001 1.00002 1.00008 1.00014 1.00044 1.00081 1.00248 1.00475 1.01343 1.02998 1.07331 1.19771 1.52355 2.11765 2.4065 2.4626 2.46612 2.47331 2.46892 2.4589 2.44405 1 1 1 1 1.00001 1.00002 1.00004 1.00014 1.00025 1.00077 1.00146 1.00418 1.00891 1.02255 1.0601 1.1337 1.39614 2.00629 2.33287 2.46865 2.47801 2.48475 2.48064 2.47096 2.45599 1 1 1 1 1.00001 1.00002 1.00003 1.00011 1.00019 1.0006 1.00111 1.00339 1.00651 1.01852 1.04038 1.10484 1.25999 1.78391 2.22531 2.4521 2.48322 2.49111 2.48779 2.47912 2.46481 1 1 1 1 1.00001 1.00001 1.00003 1.00006 1.00019 1.00035 1.00107 1.00201 1.00582 1.01226 1.03157 1.08372 1.18871 1.54518 2.23389 2.46443 2.50714 2.50258 2.4976 2.48507 2.46667 1 1 1 1 1 1.00001 1.00003 1.00005 1.00015 1.00027 1.00084 1.00157 1.0046 1.00962 1.0247 1.06561 1.14641 1.4412 2.13046 2.44442 2.54605 2.52452 2.51096 2.49298 2.46861 1 1 1 1 1 1.00001 1.00002 1.00005 1.00009 1.00026 1.00049 1.00136 1.00302 1.00738 1.01981 1.04401 1.13216 1.29627 1.82241 2.40063 2.59131 2.57195 2.53574 2.50368 2.47383 1 1 1 1 1 1.00001 1.00002 1.00003 1.0001 1.00018 1.00056 1.00105 1.00317 1.00623 1.01741 1.03999 1.09853 1.26617 1.75217 2.37219 2.61987 2.60918 2.57666 2.52998 2.48885 1 1 1 1 1 1 1.00001 1.00003 1.00008 1.00015 1.00046 1.00086 1.00248 1.0053 1.01348 1.03588 1.08036 1.24081 1.61446 2.34475 2.6244 2.6444 2.61076 2.57575 2.52944 1 1 1 1 1 1.00001 1.00001 1.00003 1.00006 1.00017 1.00032 1.00099 1.00189 1.00544 1.01178 1.03003 1.08212 1.18283 1.5552 2.34528 2.60811 2.66635 2.62943 2.59782 2.55979 1 1 1 1 1 1 1.00001 1.00003 1.00005 1.00016 1.00028 1.0009 1.00166 1.00494 1.0103 1.02677 1.07207 1.16046 1.50031 2.26722 2.6066 2.69307 2.65338 2.61192 2.57318 1 1 1 1 1 1 1.00001 1.00002 1.00004 1.00014 1.00026 1.00082 1.00149 1.00461 1.00913 1.02472 1.06268 1.14397 1.43577 2.14957 2.59437 2.71411 2.68026 2.63386 2.59844 1 1 1 1 1 1 1.00001 1.00002 1.00004 1.00013 1.00023 1.00072 1.00133 1.00404 1.00816 1.02187 1.05551 1.1287 1.38096 2.04906 2.57195 2.7186 2.6881 2.63913 2.60841 1 1 1 1 1 1 1.00001 1.00001 1.00004 1.00008 1.00024 1.00047 1.0013 1.00293 1.00716 1.01957 1.04333 1.13215 1.29913 1.82478 2.55502 2.726 2.69712 2.647 2.61837 1 1 1 1 1 1 1.00001 1.00002 1.00003 1.0001 1.00019 1.00057 1.0011 1.00311 1.00686 1.01726 1.04675 1.10565 1.30981 1.86323 2.5162 2.739 2.71447 2.66856 2.63603 1 1 1 1 1 1 1.00001 1.00001 1.00004 1.00007 1.00023 1.00042 1.0013 1.00251 1.00703 1.01603 1.03944 1.11229 1.25725 1.71679 2.56614 2.73898 2.70671 2.6775 2.64614 1 1 1 1 1 1 1.00001 1.00001 1.00004 1.00007 1.00022 1.0004 1.00123 1.00236 1.00681 1.01489 1.03792 1.10422 1.24437 1.68742 2.56267 2.74234 2.71203 2.69515 2.65718 1 1 1 1 1 1 1 1.00001 1.00003 1.00008 1.00015 1.00045 1.0009 1.00243 1.00582 1.01386 1.03948 1.08485 1.26853 1.684 2.47765 2.74355 2.73296 2.70596 2.66945 1 1 1 1 1 1 1.00001 1.00001 1.00003 1.00006 1.00019 1.00036 1.00107 1.00216 1.00585 1.01407 1.03413 1.09822 1.22301 1.65235 2.51038 2.73122 2.72713 2.70444 2.67144 1 1 1 1 1 1 1 1.00001 1.00002 1.00008 1.00014 1.00043 1.00083 1.00237 1.00528 1.01319 1.03642 1.08039 1.25124 1.62912 2.42303 2.73864 2.73787 2.71383 2.67975 1 1 1 1 1 1 1 1.00001 1.00002 1.00007 1.00013 1.00041 1.0008 1.00226 1.00508 1.01263 1.03523 1.0776 1.24519 1.6103 2.40468 2.73685 2.74051 2.71771 2.68469 1 1 1 1 1 1 1 1.00001 1.00003 1.00005 1.00017 1.00032 1.00093 1.00198 1.00518 1.01315 1.03108 1.0912 1.20135 1.61557 2.44439 2.72864 2.73745 2.71663 2.68186 1 1 1 1 1 1 1 1.00001 1.00002 1.00006 1.00012 1.00035 1.00077 1.00196 1.00512 1.01184 1.03449 1.07339 1.23961 1.58265 2.36692 2.73509 2.74863 2.72706 2.69118 1 1 1 1 1 1 1 1.00001 1.00003 1.00005 1.00016 1.00031 1.00091 1.00192 1.00502 1.01272 1.02993 1.08837 1.19199 1.60121 2.41006 2.73295 2.7468 2.72528 2.68808 1 1 1 1 1 1 1 1.00001 1.00002 1.00007 1.00012 1.00039 1.00075 1.00215 1.0048 1.01196 1.03329 1.07327 1.23184 1.56882 2.33744 2.72756 2.74887 2.72829 2.69265 1 1 1 1 1 1 1 1.00001 1.00002 1.00007 1.00012 1.00039 1.00075 1.00212 1.00477 1.01181 1.03299 1.07228 1.22976 1.56267 2.32839 2.7197 2.74714 2.72803 2.69267 1 1 1 1 1 1 1 1.00001 1.00003 1.00005 1.00017 1.00031 1.00097 1.00187 1.00537 1.012 1.03018 1.08555 1.1887 1.58963 2.39018 2.72575 2.7538 2.73652 2.69894 1 1 1 1 1 1 1.00001 1.00001 1.00003 1.00005 1.00017 1.00031 1.00101 1.00187 1.00563 1.01178 1.03107 1.08419 1.19027 1.58394 2.39142 2.72762 2.75682 2.74026 2.70387 1.00001 1.00001 1.00004 1.00008 1.00024 1.00044 1.00134 1.00261 1.00711 1.01658 1.0398 1.11366 1.25753 1.70341 2.49367 2.65367 2.64112 2.63983 2.64966 2.65667 2.65661 2.64958 2.62861 2.57794 2.41648 1.00001 1.00001 1.00004 1.00007 1.00022 1.00039 1.00125 1.00228 1.00694 1.01386 1.03718 1.09389 1.22456 1.62487 2.4566 2.63068 2.62841 2.62378 2.62494 2.6327 2.63165 2.61871 2.58733 2.52932 2.37246 1 1.00001 1.00003 1.00006 1.00019 1.00034 1.00108 1.00196 1.006 1.01186 1.03211 1.08069 1.18872 1.5475 2.3555 2.58885 2.62183 2.61627 2.60371 2.60566 2.60317 2.58846 2.54943 2.49694 2.37757 1 1.00001 1.00003 1.00005 1.00016 1.00028 1.00089 1.00164 1.00481 1.01008 1.02582 1.0696 1.15268 1.4798 2.20321 2.53898 2.62031 2.60945 2.5985 2.5819 2.57403 2.55787 2.52322 2.47994 2.38678 1 1.00001 1.00002 1.00004 1.00013 1.00024 1.00075 1.00138 1.00423 1.00828 1.02278 1.05494 1.13068 1.37261 2.04983 2.4387 2.60246 2.59477 2.58808 2.57356 2.5512 2.5319 2.49085 2.46104 2.3972 1 1.00001 1.00001 1.00004 1.00008 1.00024 1.00045 1.00134 1.00265 1.00708 1.01689 1.03993 1.11436 1.25859 1.70925 2.37908 2.56104 2.56023 2.55976 2.55438 2.53867 2.519 2.47686 2.43382 2.39359 1 1.00001 1.00001 1.00004 1.00006 1.00021 1.00037 1.00118 1.00215 1.00661 1.01298 1.03522 1.08714 1.20825 1.58118 2.33515 2.5344 2.53848 2.53399 2.52964 2.51835 2.50514 2.47545 2.42896 2.38519 1 1 1.00001 1.00003 1.00005 1.00016 1.00029 1.00089 1.00169 1.00483 1.01044 1.02626 1.07199 1.15756 1.4897 2.21715 2.47671 2.53182 2.51634 2.5121 2.50109 2.4855 2.46881 2.4335 2.38846 1 1 1.00001 1.00002 1.00005 1.00009 1.00028 1.00054 1.00151 1.00329 1.00815 1.0218 1.04833 1.14613 1.33039 1.94249 2.39012 2.52079 2.51389 2.49984 2.49079 2.47297 2.45725 2.43349 2.39854 1 1 1.00001 1.00001 1.00004 1.00007 1.00023 1.00042 1.00132 1.00245 1.00718 1.0151 1.03859 1.10069 1.24141 1.61878 2.29597 2.48492 2.49461 2.48906 2.47723 2.4639 2.44757 2.43136 2.40792 1 1 1 1.00001 1.00002 1.00007 1.00013 1.00041 1.00077 1.00227 1.00465 1.01214 1.03053 1.07001 1.20253 1.49646 2.15777 2.4536 2.49056 2.48123 2.47083 2.45692 2.44349 2.4322 2.41627 1 1 1 1.00001 1.00002 1.00006 1.0001 1.00032 1.00059 1.0018 1.00351 1.00947 1.02257 1.05312 1.15508 1.35883 1.91933 2.35916 2.48175 2.47924 2.47092 2.4593 2.44593 2.43635 2.42391 1 1 1 1.00001 1.00002 1.00003 1.0001 1.00019 1.00058 1.00109 1.00325 1.00642 1.01773 1.04004 1.10151 1.25691 1.74986 2.21912 2.44335 2.46519 2.46832 2.46389 2.45578 2.44458 2.43164 1 1 1 1 1.00001 1.00002 1.00008 1.00014 1.00044 1.00081 1.00248 1.00475 1.01343 1.02998 1.07331 1.19771 1.52354 2.11764 2.40649 2.4626 2.46612 2.47331 2.46892 2.4589 2.44405 1 1 1 1 1.00001 1.00002 1.00004 1.00014 1.00025 1.00077 1.00146 1.00418 1.00891 1.02255 1.0601 1.1337 1.39613 2.00628 2.33287 2.46865 2.47801 2.48475 2.48064 2.47096 2.45599 1 1 1 1 1.00001 1.00002 1.00003 1.00011 1.00019 1.0006 1.00111 1.00339 1.00651 1.01852 1.04038 1.10484 1.25998 1.7839 2.2253 2.45209 2.48321 2.49111 2.48778 2.47912 2.46481 1 1 1 1 1.00001 1.00001 1.00003 1.00006 1.00019 1.00035 1.00107 1.00201 1.00582 1.01226 1.03157 1.08372 1.1887 1.54517 2.23388 2.46443 2.50713 2.50258 2.49759 2.48507 2.46666 1 1 1 1 1 1.00001 1.00003 1.00005 1.00015 1.00027 1.00084 1.00157 1.0046 1.00962 1.0247 1.06561 1.14641 1.44119 2.13044 2.44441 2.54604 2.52452 2.51096 2.49298 2.46861 1 1 1 1 1 1.00001 1.00002 1.00005 1.00009 1.00026 1.00049 1.00136 1.00302 1.00738 1.01981 1.044 1.13216 1.29625 1.82236 2.40061 2.59131 2.57195 2.53573 2.50368 2.47383 1 1 1 1 1 1.00001 1.00002 1.00003 1.0001 1.00018 1.00056 1.00105 1.00317 1.00623 1.01741 1.03998 1.09853 1.26616 1.75214 2.37219 2.61987 2.60918 2.57666 2.52998 2.48885 1 1 1 1 1 1 1.00001 1.00003 1.00008 1.00015 1.00046 1.00086 1.00248 1.0053 1.01348 1.03588 1.08036 1.2408 1.61444 2.34473 2.62439 2.6444 2.61076 2.57575 2.52943 1 1 1 1 1 1.00001 1.00001 1.00003 1.00006 1.00017 1.00032 1.00099 1.00189 1.00544 1.01178 1.03003 1.08212 1.18282 1.55518 2.34526 2.6081 2.66635 2.62943 2.59782 2.55979 1 1 1 1 1 1 1.00001 1.00003 1.00005 1.00016 1.00028 1.0009 1.00166 1.00494 1.0103 1.02677 1.07206 1.16046 1.5003 2.26719 2.60659 2.69307 2.65338 2.61192 2.57318 1 1 1 1 1 1 1.00001 1.00002 1.00004 1.00014 1.00026 1.00082 1.00149 1.00461 1.00913 1.02472 1.06268 1.14397 1.43575 2.14954 2.59436 2.71411 2.68026 2.63386 2.59844 1 1 1 1 1 1 1.00001 1.00002 1.00004 1.00013 1.00023 1.00072 1.00133 1.00404 1.00816 1.02187 1.0555 1.1287 1.38094 2.04902 2.57193 2.7186 2.6881 2.63913 2.60841 1 1 1 1 1 1 1.00001 1.00001 1.00004 1.00008 1.00024 1.00047 1.0013 1.00293 1.00716 1.01957 1.04333 1.13214 1.29912 1.82473 2.55501 2.72599 2.69712 2.647 2.61837 1 1 1 1 1 1 1.00001 1.00002 1.00003 1.0001 1.00019 1.00057 1.0011 1.00311 1.00686 1.01726 1.04675 1.10565 1.3098 1.86319 2.5162 2.739 2.71447 2.66856 2.63603 1 1 1 1 1 1 1.00001 1.00001 1.00004 1.00007 1.00023 1.00042 1.0013 1.00251 1.00703 1.01603 1.03944 1.11229 1.25724 1.71677 2.56613 2.73898 2.7067 2.6775 2.64614 1 1 1 1 1 1 1.00001 1.00001 1.00004 1.00007 1.00022 1.0004 1.00123 1.00236 1.00681 1.01489 1.03792 1.10422 1.24437 1.6874 2.56265 2.74233 2.71203 2.69515 2.65717 1 1 1 1 1 1 1 1.00001 1.00003 1.00008 1.00015 1.00045 1.0009 1.00243 1.00582 1.01386 1.03948 1.08484 1.26852 1.68396 2.47763 2.74354 2.73296 2.70596 2.66945 1 1 1 1 1 1 1.00001 1.00001 1.00003 1.00006 1.00019 1.00036 1.00107 1.00216 1.00585 1.01407 1.03413 1.09822 1.223 1.65233 2.51035 2.73122 2.72713 2.70445 2.67145 1 1 1 1 1 1 1 1.00001 1.00002 1.00008 1.00014 1.00043 1.00083 1.00237 1.00528 1.01319 1.03642 1.08039 1.25123 1.62908 2.423 2.73863 2.73787 2.71383 2.67976 1 1 1 1 1 1 1 1.00001 1.00002 1.00007 1.00013 1.00041 1.0008 1.00226 1.00508 1.01263 1.03523 1.0776 1.24518 1.61027 2.40465 2.73685 2.74052 2.71772 2.68469 1 1 1 1 1 1 1 1.00001 1.00003 1.00005 1.00017 1.00032 1.00093 1.00198 1.00518 1.01315 1.03108 1.0912 1.20134 1.61555 2.44436 2.72865 2.73746 2.71663 2.68186 1 1 1 1 1 1 1 1.00001 1.00002 1.00006 1.00012 1.00035 1.00077 1.00196 1.00512 1.01184 1.03449 1.07339 1.2396 1.58263 2.36688 2.7351 2.74864 2.72707 2.69119 1 1 1 1 1 1 1 1.00001 1.00003 1.00005 1.00016 1.00031 1.00091 1.00192 1.00502 1.01272 1.02993 1.08837 1.19198 1.60119 2.41003 2.73296 2.74681 2.72529 2.68808 1 1 1 1 1 1 1 1.00001 1.00002 1.00007 1.00012 1.00039 1.00075 1.00215 1.0048 1.01196 1.03329 1.07327 1.23183 1.5688 2.3374 2.72758 2.74888 2.7283 2.69265 1 1 1 1 1 1 1 1.00001 1.00002 1.00007 1.00012 1.00039 1.00075 1.00212 1.00477 1.01181 1.03298 1.07228 1.22975 1.56265 2.32834 2.71972 2.74715 2.72804 2.69267 1 1 1 1 1 1 1 1.00001 1.00003 1.00005 1.00017 1.00031 1.00097 1.00187 1.00537 1.012 1.03018 1.08554 1.18869 1.58962 2.39015 2.72578 2.75382 2.73653 2.69893 1 1 1 1 1 1 1.00001 1.00001 1.00003 1.00005 1.00017 1.00031 1.00101 1.00187 1.00563 1.01178 1.03107 1.08419 1.19026 1.58393 2.39139 2.72765 2.75684 2.74027 2.70387 1.00001 1.00001 1.00004 1.00008 1.00024 1.00044 1.00134 1.00261 1.00711 1.01658 1.0398 1.11366 1.25752 1.7034 2.49368 2.65367 2.64111 2.63982 2.64965 2.65667 2.65661 2.64958 2.62861 2.57793 2.41648 1.00001 1.00001 1.00004 1.00007 1.00022 1.00039 1.00125 1.00228 1.00694 1.01386 1.03718 1.09388 1.22456 1.62486 2.45659 2.63068 2.62841 2.62377 2.62494 2.6327 2.63165 2.61871 2.58732 2.52931 2.37246 1 1.00001 1.00003 1.00006 1.00019 1.00034 1.00108 1.00196 1.006 1.01186 1.03211 1.08069 1.18871 1.54749 2.35549 2.58885 2.62182 2.61627 2.60371 2.60566 2.60317 2.58846 2.54943 2.49694 2.37757 1 1.00001 1.00003 1.00005 1.00016 1.00028 1.00089 1.00164 1.00481 1.01008 1.02582 1.0696 1.15267 1.47978 2.20318 2.53897 2.62031 2.60945 2.5985 2.58189 2.57402 2.55786 2.52321 2.47993 2.38678 1 1.00001 1.00002 1.00004 1.00013 1.00024 1.00075 1.00138 1.00423 1.00828 1.02278 1.05494 1.13068 1.37259 2.0498 2.43869 2.60246 2.59476 2.58808 2.57356 2.5512 2.5319 2.49084 2.46103 2.39719 1 1.00001 1.00001 1.00004 1.00008 1.00024 1.00045 1.00134 1.00265 1.00708 1.01689 1.03992 1.11435 1.25858 1.70922 2.37907 2.56104 2.56022 2.55976 2.55438 2.53867 2.51899 2.47685 2.43381 2.39358 1 1.00001 1.00001 1.00004 1.00006 1.00021 1.00037 1.00118 1.00215 1.00661 1.01298 1.03522 1.08714 1.20824 1.58117 2.33514 2.53439 2.53847 2.53398 2.52963 2.51835 2.50514 2.47544 2.42896 2.38518 1 1 1.00001 1.00003 1.00005 1.00016 1.00029 1.00089 1.00169 1.00483 1.01044 1.02626 1.07198 1.15755 1.48969 2.21712 2.4767 2.53182 2.51633 2.5121 2.50109 2.48549 2.4688 2.43349 2.38846 1 1 1.00001 1.00002 1.00005 1.00009 1.00028 1.00054 1.00151 1.00329 1.00815 1.0218 1.04833 1.14613 1.33038 1.94246 2.39009 2.52078 2.51388 2.49984 2.49079 2.47297 2.45724 2.43348 2.39853 1 1 1.00001 1.00001 1.00004 1.00007 1.00023 1.00042 1.00132 1.00245 1.00718 1.01509 1.03859 1.10068 1.2414 1.61876 2.29597 2.4849 2.49459 2.48905 2.47722 2.4639 2.44756 2.43136 2.40791 1 1 1 1.00001 1.00002 1.00007 1.00013 1.00041 1.00077 1.00227 1.00465 1.01213 1.03053 1.07 1.20252 1.49643 2.15774 2.45358 2.49054 2.48121 2.47082 2.45691 2.44348 2.4322 2.41626 1 1 1 1.00001 1.00002 1.00006 1.0001 1.00032 1.00059 1.0018 1.00351 1.00947 1.02257 1.05312 1.15507 1.3588 1.91927 2.35913 2.48173 2.47922 2.4709 2.45928 2.44592 2.43635 2.4239 1 1 1 1.00001 1.00002 1.00003 1.0001 1.00019 1.00058 1.00109 1.00325 1.00642 1.01773 1.04004 1.10151 1.25688 1.7498 2.21905 2.44332 2.46518 2.46831 2.46388 2.45577 2.44457 2.43164 1 1 1 1 1.00001 1.00002 1.00008 1.00014 1.00044 1.00081 1.00248 1.00475 1.01343 1.02998 1.0733 1.1977 1.52348 2.11759 2.40646 2.46258 2.46611 2.4733 2.46891 2.45889 2.44404 1 1 1 1 1.00001 1.00002 1.00004 1.00014 1.00025 1.00077 1.00146 1.00418 1.00891 1.02254 1.06009 1.13369 1.39608 2.0062 2.33284 2.46863 2.47799 2.48474 2.48063 2.47095 2.45598 1 1 1 1 1.00001 1.00002 1.00003 1.00011 1.00019 1.0006 1.00111 1.00339 1.00651 1.01852 1.04037 1.10483 1.25995 1.78384 2.22523 2.45205 2.48319 2.4911 2.48778 2.47912 2.4648 1 1 1 1 1.00001 1.00001 1.00003 1.00006 1.00019 1.00035 1.00107 1.00201 1.00582 1.01226 1.03157 1.08371 1.18867 1.54512 2.23379 2.46439 2.50711 2.50256 2.49758 2.48505 2.46665 1 1 1 1 1 1.00001 1.00003 1.00005 1.00015 1.00027 1.00084 1.00157 1.0046 1.00962 1.02469 1.0656 1.14639 1.4411 2.13034 2.44431 2.546 2.52452 2.51096 2.49298 2.4686 1 1 1 1 1 1.00001 1.00002 1.00005 1.00009 1.00026 1.00049 1.00136 1.00301 1.00738 1.01981 1.044 1.13213 1.29619 1.82209 2.40052 2.59128 2.57194 2.53571 2.50367 2.47382 1 1 1 1 1 1.00001 1.00002 1.00003 1.0001 1.00018 1.00056 1.00105 1.00317 1.00623 1.01741 1.03998 1.09851 1.26613 1.75197 2.37221 2.61988 2.6092 2.57665 2.52996 2.48884 1 1 1 1 1 1 1.00001 1.00003 1.00008 1.00015 1.00046 1.00086 1.00248 1.0053 1.01348 1.03587 1.08035 1.24076 1.61431 2.34464 2.62434 2.64441 2.61077 2.57576 2.52943 1 1 1 1 1 1.00001 1.00001 1.00003 1.00006 1.00017 1.00032 1.00099 1.00189 1.00544 1.01178 1.03002 1.08211 1.18279 1.55511 2.34515 2.60805 2.66635 2.62944 2.59783 2.55979 1 1 1 1 1 1 1.00001 1.00003 1.00005 1.00016 1.00028 1.0009 1.00166 1.00494 1.01029 1.02676 1.07205 1.16042 1.50023 2.26703 2.60653 2.69307 2.65337 2.61191 2.57318 1 1 1 1 1 1 1.00001 1.00002 1.00004 1.00014 1.00026 1.00082 1.00149 1.00461 1.00912 1.02472 1.06266 1.14394 1.43564 2.14935 2.59431 2.7141 2.68026 2.63385 2.59844 1 1 1 1 1 1 1.00001 1.00002 1.00004 1.00013 1.00023 1.00072 1.00133 1.00404 1.00816 1.02187 1.05549 1.12868 1.38084 2.04883 2.57186 2.71859 2.68808 2.63912 2.6084 1 1 1 1 1 1 1.00001 1.00001 1.00004 1.00008 1.00024 1.00047 1.0013 1.00293 1.00716 1.01956 1.04332 1.13212 1.29906 1.82447 2.555 2.72598 2.69712 2.647 2.61836 1 1 1 1 1 1 1.00001 1.00002 1.00003 1.0001 1.00019 1.00057 1.0011 1.0031 1.00685 1.01726 1.04674 1.10563 1.30975 1.863 2.5162 2.739 2.71446 2.66855 2.63602 1 1 1 1 1 1 1.00001 1.00001 1.00004 1.00007 1.00023 1.00042 1.0013 1.00251 1.00703 1.01602 1.03943 1.11227 1.2572 1.71669 2.56608 2.73895 2.70666 2.67752 2.64615 1 1 1 1 1 1 1.00001 1.00001 1.00004 1.00007 1.00022 1.0004 1.00123 1.00236 1.00681 1.01489 1.03791 1.1042 1.24433 1.68731 2.56256 2.74228 2.71204 2.69515 2.65715 1 1 1 1 1 1 1 1.00001 1.00003 1.00008 1.00015 1.00045 1.0009 1.00243 1.00582 1.01386 1.03947 1.08482 1.26848 1.68377 2.47752 2.7435 2.73298 2.70596 2.66945 1 1 1 1 1 1 1.00001 1.00001 1.00003 1.00006 1.00019 1.00036 1.00107 1.00216 1.00585 1.01407 1.03412 1.0982 1.22295 1.65222 2.51021 2.73118 2.72712 2.70446 2.67146 1 1 1 1 1 1 1 1.00001 1.00002 1.00008 1.00014 1.00043 1.00083 1.00237 1.00528 1.01319 1.03641 1.08037 1.25119 1.62891 2.42285 2.7386 2.73788 2.71384 2.67978 1 1 1 1 1 1 1 1.00001 1.00002 1.00007 1.00013 1.00041 1.0008 1.00226 1.00508 1.01263 1.03522 1.07758 1.24514 1.6101 2.4045 2.73682 2.74054 2.71774 2.68471 1 1 1 1 1 1 1 1.00001 1.00003 1.00005 1.00017 1.00032 1.00093 1.00198 1.00518 1.01315 1.03107 1.09118 1.20128 1.61547 2.44421 2.72866 2.7375 2.71667 2.68188 1 1 1 1 1 1 1 1.00001 1.00002 1.00006 1.00012 1.00035 1.00077 1.00196 1.00512 1.01183 1.03448 1.07337 1.23955 1.5825 2.36668 2.73515 2.7487 2.72711 2.6912 1 1 1 1 1 1 1 1.00001 1.00003 1.00005 1.00016 1.00031 1.00091 1.00192 1.00502 1.01272 1.02992 1.08835 1.19193 1.60112 2.40988 2.73305 2.74686 2.72531 2.68808 1 1 1 1 1 1 1 1.00001 1.00002 1.00007 1.00012 1.00039 1.00075 1.00215 1.0048 1.01196 1.03328 1.07325 1.23179 1.56869 2.33719 2.72767 2.74894 2.72834 2.69265 1 1 1 1 1 1 1 1.00001 1.00002 1.00007 1.00012 1.00039 1.00075 1.00212 1.00477 1.01181 1.03298 1.07226 1.22971 1.56256 2.32814 2.71982 2.74722 2.72809 2.69266 1 1 1 1 1 1 1 1.00001 1.00003 1.00005 1.00017 1.00031 1.00097 1.00187 1.00537 1.012 1.03017 1.08553 1.18864 1.58956 2.39 2.72594 2.7539 2.73658 2.6989 1 1 1 1 1 1 1.00001 1.00001 1.00003 1.00005 1.00017 1.00031 1.00101 1.00187 1.00563 1.01177 1.03106 1.08418 1.1902 1.58389 2.39124 2.72782 2.75692 2.74032 2.70383 0.999997 1 1.00003 1.00007 1.00023 1.00043 1.00133 1.0026 1.0071 1.01657 1.03978 1.11363 1.25745 1.70329 2.49365 2.65358 2.64101 2.63975 2.64958 2.6566 2.65653 2.6495 2.62854 2.57787 2.41643 0.999997 1 1.00003 1.00006 1.00021 1.00038 1.00124 1.00227 1.00693 1.01385 1.03716 1.09385 1.2245 1.62473 2.45646 2.6306 2.62834 2.6237 2.62487 2.63263 2.63158 2.61863 2.58725 2.52925 2.3724 0.999996 1 1.00002 1.00005 1.00018 1.00033 1.00107 1.00195 1.00599 1.01185 1.03208 1.08067 1.18864 1.5474 2.35527 2.58874 2.62176 2.6162 2.60363 2.60558 2.60309 2.58839 2.54936 2.49688 2.37751 0.999996 1 1.00002 1.00004 1.00015 1.00027 1.00088 1.00163 1.0048 1.01007 1.0258 1.06958 1.15262 1.47968 2.20294 2.53885 2.62025 2.60938 2.59843 2.58181 2.57394 2.55779 2.52315 2.47987 2.38671 0.999995 0.999999 1.00001 1.00003 1.00012 1.00023 1.00074 1.00137 1.00422 1.00826 1.02276 1.05492 1.13063 1.37249 2.04957 2.43854 2.60236 2.59468 2.588 2.57348 2.55111 2.53181 2.49077 2.46097 2.39713 0.999994 0.999999 1.00001 1.00003 1.00007 1.00023 1.00044 1.00133 1.00264 1.00707 1.01687 1.0399 1.11432 1.2585 1.70895 2.37898 2.56095 2.5601 2.55967 2.55432 2.53861 2.51891 2.47676 2.43372 2.39352 0.999994 0.999998 1 1.00003 1.00006 1.0002 1.00036 1.00117 1.00214 1.0066 1.01296 1.0352 1.08712 1.20816 1.58107 2.33497 2.53429 2.53838 2.53388 2.52954 2.51827 2.50507 2.47536 2.42886 2.3851 0.999994 0.999997 1 1.00002 1.00004 1.00015 1.00028 1.00088 1.00168 1.00481 1.01043 1.02623 1.07196 1.15748 1.4896 2.21687 2.47659 2.53175 2.51626 2.51201 2.501 2.48538 2.46871 2.43341 2.38838 0.999994 0.999995 1 1.00001 1.00004 1.00008 1.00027 1.00053 1.0015 1.00328 1.00813 1.02178 1.0483 1.14608 1.33025 1.94226 2.38984 2.52066 2.51377 2.49977 2.49073 2.47289 2.45713 2.43339 2.39845 0.999993 0.999994 0.999999 1 1.00003 1.00007 1.00022 1.00041 1.00131 1.00244 1.00717 1.01508 1.03857 1.10064 1.24134 1.61863 2.29595 2.48475 2.49445 2.48893 2.47712 2.46382 2.44748 2.43128 2.40782 0.999993 0.999994 0.999995 1 1.00001 1.00006 1.00013 1.0004 1.00076 1.00226 1.00464 1.01211 1.03052 1.06996 1.20249 1.49621 2.1575 2.4534 2.4904 2.48108 2.47068 2.4568 2.44339 2.43212 2.41619 0.999992 0.999993 0.999994 1 1.00001 1.00005 1.00009 1.00031 1.00058 1.00179 1.0035 1.00946 1.02256 1.05309 1.155 1.35864 1.91883 2.35893 2.48161 2.47909 2.47076 2.45916 2.44582 2.43628 2.42383 0.999992 0.999992 0.999994 0.999997 1.00001 1.00002 1.00009 1.00018 1.00057 1.00108 1.00324 1.0064 1.01771 1.04001 1.10146 1.25669 1.74944 2.21855 2.44309 2.46507 2.46822 2.46376 2.45565 2.44449 2.43158 0.999992 0.999992 0.999993 0.999995 1 1.00002 1.00007 1.00013 1.00043 1.0008 1.00247 1.00474 1.01341 1.02995 1.07323 1.19762 1.52304 2.11723 2.40625 2.46243 2.46599 2.4732 2.46881 2.4588 2.44396 0.999991 0.999992 0.999992 0.999995 0.999999 1.00002 1.00004 1.00013 1.00024 1.00076 1.00145 1.00417 1.00889 1.02252 1.06004 1.1336 1.39581 2.00565 2.33263 2.46847 2.47786 2.48463 2.48052 2.47086 2.45591 0.999991 0.999991 0.999992 0.999994 0.999997 1.00001 1.00002 1.0001 1.00018 1.0006 1.0011 1.00338 1.00649 1.0185 1.04034 1.10477 1.25975 1.78343 2.22477 2.4518 2.48304 2.49101 2.48771 2.47906 2.46474 0.999991 0.999991 0.999992 0.999993 0.999997 1 1.00002 1.00005 1.00018 1.00034 1.00106 1.002 1.00581 1.01224 1.03152 1.08366 1.18847 1.54482 2.23323 2.46415 2.50697 2.50244 2.49745 2.48495 2.46656 0.999991 0.999991 0.999992 0.999992 0.999995 0.999999 1.00002 1.00004 1.00014 1.00026 1.00083 1.00156 1.00459 1.0096 1.02467 1.06553 1.14628 1.4406 2.12972 2.44368 2.54575 2.52446 2.51095 2.49296 2.46854 0.999991 0.999991 0.999991 0.999992 0.999993 0.999999 1.00001 1.00004 1.00008 1.00025 1.00048 1.00135 1.003 1.00736 1.01978 1.04394 1.13195 1.29579 1.82048 2.39999 2.5911 2.57186 2.53551 2.50357 2.47375 0.999991 0.999991 0.999991 0.999992 0.999994 0.999996 1.00001 1.00002 1.00009 1.00017 1.00055 1.00104 1.00316 1.00621 1.01738 1.03994 1.09838 1.26593 1.75093 2.37226 2.61987 2.60922 2.57652 2.52981 2.48873 0.999991 0.999991 0.999991 0.999992 0.999993 0.999995 1 1.00002 1.00007 1.00014 1.00045 1.00085 1.00247 1.00528 1.01345 1.03583 1.08025 1.24055 1.61355 2.34404 2.62405 2.64443 2.61077 2.57574 2.52936 0.999991 0.999991 0.999991 0.999992 0.999992 0.999996 1 1.00002 1.00005 1.00016 1.00031 1.00098 1.00188 1.00542 1.01176 1.02997 1.08203 1.18256 1.55469 2.34448 2.60768 2.66632 2.62942 2.59785 2.55976 0.999991 0.999991 0.999991 0.999992 0.999992 0.999996 0.999999 1.00002 1.00004 1.00015 1.00027 1.00089 1.00165 1.00493 1.01027 1.02673 1.07197 1.16022 1.49982 2.26603 2.60617 2.69303 2.65332 2.61184 2.57313 0.999991 0.999991 0.999991 0.999991 0.999992 0.999995 0.999998 1.00002 1.00004 1.00013 1.00025 1.00081 1.00148 1.00459 1.00911 1.02469 1.06258 1.14378 1.43506 2.14824 2.59398 2.71403 2.68022 2.63377 2.59837 0.999991 0.999991 0.999991 0.999991 0.999992 0.999994 0.999998 1.00001 1.00003 1.00012 1.00022 1.00071 1.00132 1.00403 1.00814 1.02184 1.0554 1.12853 1.38028 2.04767 2.5714 2.71845 2.68794 2.639 2.60828 0.999991 0.999991 0.999991 0.999991 0.999992 0.999993 0.999998 1 1.00003 1.00007 1.00023 1.00046 1.00129 1.00292 1.00714 1.01953 1.04327 1.13197 1.29869 1.82293 2.55491 2.72584 2.69705 2.64697 2.61827 0.999991 0.999991 0.999991 0.999991 0.999992 0.999994 0.999996 1.00001 1.00002 1.00009 1.00018 1.00056 1.00109 1.00309 1.00684 1.01723 1.04668 1.10549 1.30947 1.8619 2.51617 2.73899 2.71435 2.66846 2.63594 0.999991 0.999991 0.999991 0.999991 0.999992 0.999993 0.999998 1 1.00003 1.00006 1.00022 1.00041 1.00129 1.0025 1.00702 1.016 1.03939 1.11215 1.25695 1.71618 2.56572 2.73875 2.70634 2.67756 2.64615 0.999991 0.999991 0.999991 0.999991 0.999992 0.999993 0.999997 1 1.00003 1.00006 1.00021 1.00039 1.00122 1.00234 1.00679 1.01486 1.03787 1.10409 1.24407 1.68678 2.56201 2.74195 2.71203 2.6951 2.65694 0.999991 0.999991 0.999991 0.999991 0.999991 0.999993 0.999995 1 1.00002 1.00007 1.00014 1.00044 1.00089 1.00241 1.00581 1.01383 1.03942 1.0847 1.26821 1.68267 2.47686 2.7432 2.733 2.70589 2.66939 0.999991 0.999991 0.999991 0.999991 0.999992 0.999992 0.999996 1 1.00002 1.00005 1.00018 1.00035 1.00106 1.00215 1.00583 1.01405 1.03407 1.09808 1.22266 1.65161 2.50934 2.73088 2.727 2.7045 2.67148 0.999991 0.999991 0.999991 0.999991 0.999991 0.999993 0.999995 1 1.00001 1.00007 1.00013 1.00042 1.00082 1.00236 1.00526 1.01315 1.03636 1.08024 1.25096 1.62791 2.42196 2.73836 2.73787 2.71387 2.67983 0.999991 0.999991 0.999991 0.999991 0.999991 0.999993 0.999995 1 1.00001 1.00006 1.00012 1.0004 1.00079 1.00224 1.00507 1.0126 1.03516 1.07744 1.2449 1.60911 2.40358 2.73661 2.7406 2.71779 2.68477 0.999991 0.999991 0.999991 0.999991 0.999992 0.999992 0.999996 1 1.00002 1.00004 1.00016 1.00031 1.00092 1.00197 1.00515 1.01313 1.031 1.09106 1.2009 1.61496 2.44329 2.72867 2.73767 2.71678 2.6819 0.999991 0.999991 0.999991 0.999991 0.999991 0.999993 0.999994 1 1.00001 1.00005 1.00011 1.00034 1.00076 1.00195 1.00511 1.0118 1.03442 1.07324 1.23928 1.58171 2.36546 2.73535 2.74895 2.72727 2.6912 0.999991 0.999991 0.999991 0.999991 0.999991 0.999992 0.999995 0.999999 1.00002 1.00004 1.00015 1.0003 1.0009 1.0019 1.005 1.01269 1.02986 1.08824 1.19163 1.60066 2.40891 2.73348 2.74708 2.72541 2.68804 0.999991 0.999991 0.999991 0.999991 0.999991 0.999993 0.999994 1 1.00001 1.00006 1.00011 1.00038 1.00074 1.00213 1.00478 1.01193 1.03323 1.07315 1.23151 1.56804 2.33598 2.72812 2.74925 2.72853 2.69262 0.999991 0.999991 0.999991 0.999991 0.999991 0.999993 0.999994 1 1.00001 1.00006 1.00011 1.00038 1.00074 1.00211 1.00475 1.01178 1.03292 1.07216 1.22944 1.56199 2.32688 2.72033 2.74758 2.72831 2.69259 0.999991 0.999991 0.999991 0.999991 0.999992 0.999992 0.999996 1 1.00002 1.00004 1.00016 1.0003 1.00096 1.00186 1.00535 1.01197 1.03011 1.08542 1.18832 1.58921 2.38904 2.72676 2.75427 2.73678 2.69869 0.999991 0.999991 0.999991 0.999991 0.999992 0.999992 0.999996 1 1.00002 1.00004 1.00016 1.0003 1.001 1.00186 1.00561 1.01175 1.03099 1.08408 1.18986 1.58362 2.39032 2.72867 2.7573 2.74053 2.7036 2.44286 2.74428 3.00026 3.27257 3.23106 3.20411 3.19149 3.18753 3.18075 3.17275 3.1641 3.15991 3.15896 3.15833 3.15823 3.15927 3.16279 3.16738 3.17326 3.17952 3.18608 3.19111 3.19642 3.20042 3.20269 3.20363 3.20394 3.20192 3.19934 3.19387 3.18836 3.18191 3.17622 3.17138 3.1655 3.15697 3.15046 3.13947 3.13213 3.12224 3.1142 3.10319 3.09362 3.08138 3.07152 3.05897 3.04695 3.03472 3.02372 3.01072 2.99999 2.98677 2.97547 2.96246 2.95084 2.9381 2.92593 2.91353 2.90127 2.88863 2.87657 2.86376 2.85197 2.83932 2.82767 2.81524 2.80371 2.79147 2.78013 2.76812 2.75696 2.74524 2.73418 2.72284 2.71187 2.70095 2.6902 2.67967 2.66928 2.65915 2.64923 2.63949 2.63018 2.62086 2.61229 2.60366 2.59576 2.58831 2.58129 2.57518 2.56988 2.56529 2.56248 2.56051 2.55996 2.55978 2.55996 2.56091 2.56418 2.56195 2.34228 2.51424 2.68833 3.02599 3.20128 3.28157 3.4426 3.52809 3.5092 3.50603 3.50203 3.50297 3.50326 3.49861 3.49038 3.48315 3.47033 3.45489 3.43558 3.4167 3.39767 3.37925 3.36785 3.35198 3.33539 3.31309 3.29513 3.26971 3.24965 3.22726 3.20277 3.18448 3.15977 3.14141 3.11648 3.09823 3.07569 3.05636 3.03482 3.01724 2.99736 2.98013 2.96218 2.9438 2.92609 2.90842 2.89189 2.87544 2.85961 2.84403 2.82835 2.81358 2.79822 2.78411 2.76932 2.7553 2.74133 2.72744 2.71409 2.70063 2.68778 2.67486 2.66249 2.65007 2.63811 2.62614 2.61457 2.60299 2.59173 2.58056 2.56956 2.55889 2.54816 2.53797 2.52759 2.51786 2.50788 2.49853 2.48903 2.47995 2.47102 2.46225 2.45389 2.44569 2.43784 2.43053 2.42337 2.417 2.41105 2.4057 2.40139 2.39766 2.39532 2.39414 2.39397 2.39406 2.39433 2.39537 2.39875 2.39651 2.32353 2.35834 2.45803 2.5542 2.72945 2.89952 3.05392 3.25335 3.36935 3.44286 3.47863 3.52212 3.5446 3.56818 3.5712 3.56361 3.54681 3.51847 3.48265 3.44745 3.40935 3.37098 3.33235 3.28873 3.24746 3.20289 3.16171 3.11576 3.07547 3.03336 2.99563 2.95826 2.92367 2.8904 2.85945 2.82952 2.80154 2.77504 2.75037 2.72764 2.70603 2.68705 2.66764 2.65027 2.63149 2.61611 2.59906 2.58518 2.56932 2.55619 2.5415 2.52885 2.51519 2.50306 2.49018 2.47882 2.46661 2.45586 2.44431 2.43412 2.42312 2.41339 2.40295 2.39352 2.38359 2.3744 2.36492 2.35597 2.34683 2.3382 2.32934 2.32106 2.31246 2.30445 2.29619 2.28832 2.28046 2.27273 2.26526 2.25779 2.25065 2.24362 2.2368 2.23033 2.22396 2.218 2.21243 2.20704 2.20254 2.19823 2.19482 2.1923 2.19047 2.19032 2.19051 2.19099 2.19162 2.19311 2.19734 2.19594 2.32603 2.29732 2.33129 2.36648 2.43807 2.52183 2.61764 2.70994 2.81444 2.91125 2.9859 3.03905 3.08348 3.10371 3.11777 3.1165 3.11027 3.0966 3.07462 3.04767 3.01261 2.97594 2.93466 2.8946 2.85327 2.81466 2.77683 2.74175 2.70919 2.6786 2.65122 2.62502 2.60226 2.58067 2.56197 2.54522 2.5302 2.51655 2.50375 2.49237 2.48135 2.47193 2.46213 2.45288 2.44282 2.43379 2.42448 2.41596 2.40698 2.39859 2.38974 2.38143 2.37265 2.3644 2.3557 2.34755 2.33898 2.33091 2.3225 2.31446 2.3062 2.29815 2.29003 2.28197 2.27394 2.26595 2.25795 2.25009 2.24212 2.23439 2.22655 2.21884 2.21126 2.20357 2.19626 2.18872 2.18154 2.17437 2.16715 2.16037 2.15331 2.14678 2.14021 2.13383 2.12798 2.12201 2.11684 2.11179 2.10727 2.10361 2.10016 2.09817 2.09665 2.09676 2.09713 2.09792 2.09897 2.10091 2.10601 2.10593 2.33325 2.2981 2.28101 2.29469 2.31743 2.35542 2.39716 2.44344 2.48528 2.52465 2.55629 2.58411 2.60203 2.61623 2.61916 2.61685 2.61106 2.60154 2.59062 2.57563 2.55993 2.54364 2.52771 2.51267 2.49894 2.48633 2.47498 2.46478 2.45571 2.44764 2.44049 2.43398 2.42815 2.42279 2.41773 2.4131 2.40824 2.40386 2.39868 2.39412 2.38878 2.38446 2.3791 2.37391 2.36743 2.36131 2.3547 2.34855 2.34179 2.33544 2.32838 2.32178 2.31449 2.30764 2.3003 2.29325 2.286 2.2788 2.27168 2.2644 2.25729 2.24999 2.24278 2.23548 2.22815 2.22081 2.21348 2.20605 2.19883 2.19133 2.18418 2.17675 2.1695 2.16224 2.15478 2.1477 2.14024 2.13333 2.12614 2.11939 2.11264 2.10601 2.09983 2.09349 2.0878 2.08219 2.07691 2.0724 2.06788 2.06455 2.06145 2.05953 2.05863 2.05884 2.05947 2.06005 2.06192 2.06435 2.06945 2.07045 2.3407 2.29963 2.2816 2.26894 2.27539 2.28792 2.3035 2.32092 2.336 2.34882 2.35944 2.36689 2.37393 2.37798 2.37978 2.37861 2.37594 2.37419 2.37258 2.36921 2.36611 2.36215 2.35893 2.35607 2.35411 2.35251 2.35133 2.35055 2.34994 2.34965 2.34926 2.34898 2.34837 2.34784 2.34667 2.34573 2.34368 2.34215 2.33894 2.33659 2.33265 2.32997 2.32591 2.32211 2.31683 2.31161 2.30603 2.30039 2.29473 2.28876 2.28285 2.27652 2.27025 2.26363 2.25701 2.25025 2.24337 2.23653 2.22952 2.22256 2.21553 2.20843 2.20144 2.19423 2.18729 2.18008 2.1731 2.16607 2.15899 2.15218 2.14506 2.13837 2.13131 2.12461 2.11783 2.1111 2.1046 2.09788 2.09159 2.08511 2.07895 2.07296 2.06695 2.06156 2.05597 2.05114 2.04635 2.04216 2.03851 2.03528 2.0331 2.03137 2.03135 2.03163 2.03231 2.03323 2.03562 2.03876 2.04347 2.04485 2.3472 2.30924 2.28346 2.27024 2.2619 2.26367 2.26512 2.26772 2.2689 2.26936 2.26809 2.26682 2.2661 2.26615 2.26614 2.26572 2.26483 2.26397 2.26492 2.2661 2.26734 2.2682 2.26969 2.27083 2.27277 2.27419 2.27638 2.27798 2.28006 2.28133 2.28279 2.28359 2.28402 2.28393 2.28356 2.28286 2.28133 2.2799 2.27732 2.275 2.2719 2.26947 2.2662 2.2629 2.25838 2.2538 2.24869 2.24369 2.23836 2.23316 2.2276 2.2221 2.21624 2.21032 2.20424 2.19793 2.19175 2.1852 2.17888 2.17224 2.16568 2.159 2.1522 2.14547 2.13859 2.13176 2.12498 2.11798 2.11129 2.10422 2.09762 2.09072 2.08421 2.07759 2.07114 2.06482 2.05844 2.05242 2.04621 2.04049 2.03457 2.02915 2.02373 2.0186 2.01387 2.0092 2.00531 2.00144 1.99853 1.9959 1.99424 1.99345 1.99364 1.99421 1.99481 1.99611 1.9989 2.00241 2.00718 2.0083 2.35138 2.32056 2.29579 2.28051 2.26513 2.25766 2.25205 2.24548 2.23928 2.23183 2.22483 2.21828 2.21323 2.20965 2.20726 2.20615 2.20492 2.20405 2.20421 2.20576 2.20766 2.21052 2.21246 2.21523 2.21745 2.22036 2.22308 2.22586 2.22849 2.23064 2.23292 2.23434 2.23608 2.23672 2.23776 2.23768 2.23741 2.23681 2.2355 2.23392 2.2318 2.22979 2.22731 2.22435 2.2205 2.21614 2.2114 2.20633 2.20117 2.19567 2.19023 2.18439 2.1786 2.17253 2.16637 2.16019 2.15377 2.14753 2.141 2.13461 2.1281 2.12147 2.11501 2.10819 2.10175 2.09486 2.08834 2.08151 2.07491 2.06824 2.06155 2.05501 2.04831 2.04189 2.0353 2.02898 2.02265 2.01641 2.01047 2.00442 1.9989 1.99327 1.98816 1.98317 1.97854 1.97439 1.97047 1.96732 1.96445 1.96262 1.96117 1.9612 1.96152 1.96194 1.96288 1.96546 1.9682 1.9725 1.97686 1.97838 2.36278 2.33234 2.30818 2.2888 2.27792 2.26176 2.24949 2.23869 2.22658 2.21573 2.20455 2.19547 2.18725 2.18153 2.17695 2.17465 2.1725 2.17148 2.16989 2.16995 2.17031 2.17217 2.17444 2.17654 2.17892 2.1813 2.18374 2.18625 2.1885 2.19095 2.19292 2.19509 2.19648 2.19803 2.19866 2.1994 2.19934 2.19891 2.19798 2.1966 2.19481 2.19301 2.19095 2.18829 2.18504 2.18118 2.17704 2.1726 2.16793 2.16317 2.15819 2.1531 2.14786 2.14234 2.13685 2.13093 2.12521 2.11904 2.11307 2.10678 2.10053 2.09416 2.08768 2.08125 2.07462 2.06817 2.0616 2.05516 2.04875 2.04228 2.03601 2.02954 2.02339 2.01706 2.01095 2.00489 1.99879 1.99307 1.98713 1.98177 1.9762 1.97127 1.96627 1.96187 1.95767 1.95399 1.9508 1.94809 1.94618 1.94479 1.94456 1.94486 1.94531 1.94625 1.94789 1.9512 1.95447 1.95869 1.96287 1.9642 2.38003 2.35219 2.32599 2.30483 2.28524 2.27109 2.25503 2.23928 2.22503 2.21077 2.19851 2.18654 2.17698 2.1683 2.16207 2.15697 2.15352 2.15056 2.14845 2.14687 2.14579 2.14579 2.14638 2.14808 2.1497 2.15177 2.15367 2.15594 2.15819 2.16064 2.16294 2.16502 2.1669 2.16826 2.16953 2.17011 2.17064 2.17048 2.16985 2.16885 2.16738 2.16602 2.16433 2.16221 2.15953 2.15616 2.15264 2.14853 2.14434 2.13983 2.13507 2.1303 2.12506 2.12001 2.11444 2.10903 2.10323 2.09742 2.09144 2.08525 2.07911 2.07266 2.06636 2.05978 2.05339 2.04688 2.04038 2.03399 2.02745 2.02121 2.0147 2.00859 2.00221 1.99622 1.99005 1.98419 1.97829 1.97258 1.96705 1.96156 1.9565 1.9514 1.94691 1.94246 1.93874 1.93527 1.93252 1.93033 1.92888 1.92828 1.92846 1.92886 1.92958 1.93112 1.93368 1.93709 1.94087 1.94425 1.94842 1.94907 2.39466 2.3721 2.34589 2.32255 2.29953 2.27894 2.2606 2.24353 2.22772 2.21218 2.1982 2.18516 2.17388 2.1637 2.15535 2.14816 2.14263 2.13778 2.13407 2.13048 2.12826 2.12621 2.12536 2.12538 2.12616 2.12795 2.12947 2.13183 2.13363 2.13612 2.13788 2.14008 2.14156 2.1433 2.14435 2.14541 2.14585 2.146 2.14555 2.14463 2.14354 2.14231 2.14097 2.13924 2.13679 2.13401 2.13064 2.12704 2.12306 2.11878 2.11434 2.10952 2.10465 2.09942 2.09415 2.08863 2.08303 2.07729 2.07141 2.0655 2.05938 2.05332 2.04707 2.04097 2.03473 2.02858 2.02242 2.01625 2.01019 2.00406 1.9981 1.99206 1.98617 1.98029 1.97449 1.96887 1.96321 1.95795 1.95255 1.94773 1.94274 1.93843 1.93409 1.93048 1.92707 1.92441 1.92222 1.92082 1.92013 1.92029 1.92067 1.92132 1.92293 1.9249 1.92862 1.93151 1.93553 1.93793 1.94196 1.94203 2.40598 2.38686 2.36474 2.34181 2.31945 2.29716 2.27611 2.25625 2.23811 2.22139 2.20622 2.19178 2.17882 2.16684 2.15647 2.1472 2.13954 2.13279 2.12732 2.12269 2.119 2.1158 2.11404 2.11247 2.11217 2.11226 2.11318 2.11457 2.11607 2.1179 2.11956 2.12142 2.1229 2.12465 2.12568 2.12705 2.12742 2.12816 2.12788 2.12735 2.12655 2.12552 2.12448 2.12272 2.12054 2.11772 2.11448 2.11101 2.107 2.10299 2.09843 2.09394 2.08901 2.0841 2.07896 2.07366 2.06834 2.06266 2.0571 2.05112 2.04525 2.03917 2.03308 2.02701 2.02073 2.01468 2.00832 2.00229 1.99599 1.98995 1.98386 1.9778 1.97196 1.96597 1.96037 1.95458 1.94927 1.94384 1.93895 1.93401 1.92967 1.92536 1.92182 1.91842 1.91589 1.9137 1.91241 1.91174 1.91188 1.91219 1.91287 1.9141 1.9169 1.91917 1.92305 1.9254 1.92887 1.93042 1.93359 1.93309 2.41443 2.39468 2.37327 2.3509 2.32905 2.30787 2.28762 2.26847 2.25038 2.23349 2.21756 2.20287 2.18888 2.17599 2.16395 2.15314 2.14343 2.13497 2.12757 2.12113 2.11576 2.11146 2.10789 2.10516 2.10351 2.10225 2.1019 2.10199 2.10277 2.10386 2.10516 2.10641 2.10764 2.10867 2.10962 2.11021 2.11064 2.11066 2.1102 2.10959 2.1084 2.10735 2.10603 2.10426 2.10213 2.09926 2.09637 2.09279 2.08919 2.08498 2.08071 2.07603 2.07124 2.06628 2.06113 2.05599 2.05059 2.04523 2.03966 2.03407 2.02845 2.02272 2.01705 2.01119 2.00546 1.99953 1.99372 1.98782 1.98198 1.97623 1.97042 1.9649 1.95919 1.95391 1.94841 1.94339 1.9382 1.93353 1.92877 1.92456 1.92039 1.91687 1.91362 1.91106 1.90907 1.90778 1.90731 1.90752 1.90792 1.90864 1.91059 1.9124 1.91594 1.91853 1.9219 1.9239 1.92642 1.92743 1.9297 1.92861 2.42536 2.4046 2.38272 2.36071 2.33926 2.31878 2.29941 2.28102 2.26368 2.24716 2.23137 2.21634 2.20188 2.18812 2.17498 2.16277 2.15143 2.14125 2.13192 2.12377 2.11634 2.11014 2.10474 2.10045 2.09671 2.09411 2.09189 2.09064 2.08961 2.08938 2.08946 2.08991 2.0904 2.09085 2.09117 2.09132 2.09131 2.09108 2.09051 2.0897 2.08851 2.08754 2.08608 2.08461 2.08228 2.07989 2.07691 2.07381 2.0703 2.0665 2.0625 2.05813 2.05375 2.04899 2.04426 2.03924 2.03413 2.0289 2.02342 2.0181 2.01244 2.00706 2.00135 1.99586 1.99018 1.98453 1.97891 1.97312 1.96757 1.96174 1.95633 1.95059 1.94539 1.93989 1.93496 1.92986 1.92529 1.92073 1.91663 1.91271 1.90929 1.90631 1.90384 1.90207 1.90086 1.90056 1.90083 1.90117 1.9021 1.90363 1.9065 1.90919 1.91257 1.91498 1.91753 1.9189 1.92039 1.92088 1.92235 1.9207 2.4366 2.41452 2.39143 2.36831 2.34637 2.32563 2.30667 2.28855 2.27172 2.25529 2.23968 2.22422 2.20945 2.19487 2.18093 2.16746 2.15486 2.14311 2.13238 2.12259 2.11387 2.10598 2.09883 2.09262 2.08712 2.08269 2.07895 2.07644 2.07433 2.07319 2.07223 2.07194 2.07203 2.0723 2.07261 2.07299 2.07318 2.07313 2.07293 2.07242 2.07191 2.07109 2.07031 2.06901 2.06738 2.06539 2.06304 2.06046 2.05738 2.05411 2.05034 2.04641 2.0421 2.03763 2.03298 2.02811 2.02317 2.01794 2.01274 2.00732 2.00187 1.99636 1.9907 1.98516 1.97937 1.97382 1.96799 1.96247 1.95669 1.95127 1.94561 1.94037 1.93495 1.92998 1.92493 1.92036 1.91583 1.91176 1.9079 1.9045 1.90162 1.8992 1.89753 1.89638 1.89619 1.89643 1.89683 1.89774 1.89984 1.90231 1.90563 1.90838 1.91131 1.91326 1.91512 1.91588 1.91685 1.91701 1.91804 1.91624 2.44611 2.42519 2.4028 2.38051 2.35882 2.33806 2.31862 2.30013 2.28256 2.26553 2.24898 2.23274 2.21686 2.20147 2.18649 2.17235 2.15871 2.14609 2.1343 2.12342 2.11342 2.10432 2.09617 2.08898 2.08275 2.0775 2.07309 2.06957 2.06686 2.06491 2.06349 2.06274 2.06221 2.06223 2.06237 2.06269 2.06295 2.06311 2.063 2.06273 2.06216 2.0616 2.06078 2.05957 2.058 2.05597 2.05373 2.05099 2.048 2.04461 2.04091 2.037 2.03275 2.02843 2.02375 2.01905 2.01403 2.00898 2.0038 1.9985 1.99324 1.98775 1.98242 1.97683 1.97145 1.96584 1.96044 1.95489 1.94952 1.9441 1.93888 1.93366 1.92871 1.92382 1.91924 1.91488 1.91081 1.9071 1.90371 1.90099 1.89861 1.89715 1.89599 1.89602 1.89623 1.8967 1.89794 1.89984 1.90281 1.90595 1.90882 1.91169 1.9135 1.91545 1.91596 1.91682 1.91674 1.91668 1.91684 1.91521 2.44782 2.42884 2.40954 2.39005 2.3709 2.35169 2.33322 2.3148 2.29721 2.27957 2.26265 2.24574 2.22946 2.2135 2.19801 2.18312 2.16869 2.15506 2.14213 2.13007 2.11887 2.10864 2.09919 2.09093 2.08343 2.07693 2.07105 2.06633 2.06225 2.05899 2.05642 2.05413 2.05272 2.05157 2.05087 2.05035 2.05002 2.04978 2.04929 2.04868 2.04777 2.0469 2.04568 2.04422 2.04228 2.04011 2.03764 2.03483 2.03181 2.02839 2.02484 2.02093 2.01689 2.0126 2.00812 2.00352 1.9987 1.99397 1.98903 1.98421 1.9793 1.97441 1.96958 1.96465 1.95987 1.95491 1.95014 1.94518 1.94043 1.93553 1.9309 1.92618 1.9218 1.91744 1.91352 1.90969 1.9064 1.90326 1.90091 1.89884 1.89764 1.89691 1.89702 1.89728 1.89798 1.89941 1.9021 1.9047 1.90825 1.91085 1.91383 1.91555 1.9172 1.91797 1.91813 1.91797 1.91764 1.91707 1.91664 1.91487 2.44811 2.4296 2.41218 2.39503 2.37817 2.36103 2.3438 2.32658 2.30913 2.29217 2.27503 2.25855 2.24201 2.226 2.21013 2.19469 2.1796 2.16515 2.15139 2.1383 2.12615 2.11463 2.10405 2.09417 2.08498 2.07705 2.06973 2.06347 2.05749 2.0526 2.04813 2.04448 2.04156 2.0392 2.03766 2.03626 2.03537 2.03435 2.03356 2.03254 2.0315 2.03028 2.02891 2.02723 2.02519 2.023 2.0205 2.01784 2.01492 2.01176 2.00842 2.00479 2.00104 1.99699 1.99283 1.98844 1.98395 1.97939 1.97469 1.97006 1.96522 1.96061 1.9557 1.95118 1.94627 1.94185 1.937 1.93267 1.92801 1.92379 1.91946 1.91549 1.91162 1.90808 1.90486 1.90188 1.89943 1.89732 1.89598 1.89496 1.89497 1.89532 1.89573 1.89688 1.89853 1.90173 1.90448 1.90805 1.91072 1.91342 1.91523 1.91633 1.91719 1.917 1.91657 1.91607 1.91519 1.91373 1.91259 1.91045 2.4507 2.43203 2.41532 2.39948 2.38402 2.3682 2.35192 2.33514 2.31803 2.30079 2.2837 2.26663 2.24992 2.23331 2.21713 2.20131 2.18595 2.17109 2.15693 2.14322 2.13037 2.11783 2.10636 2.09511 2.08497 2.07515 2.06608 2.05778 2.05029 2.04411 2.03844 2.03395 2.02967 2.02641 2.02367 2.02142 2.0197 2.018 2.01677 2.0153 2.01406 2.01262 2.01115 2.00954 2.00766 2.00574 2.00348 2.00114 1.99853 1.99566 1.9927 1.98929 1.98595 1.98204 1.97824 1.97397 1.96973 1.96526 1.96065 1.95611 1.95128 1.94671 1.94184 1.93729 1.93251 1.92803 1.92342 1.91908 1.91473 1.91068 1.90672 1.90314 1.89976 1.89689 1.89425 1.89213 1.89054 1.88949 1.88922 1.88945 1.89018 1.89085 1.89256 1.8946 1.89802 1.90095 1.90434 1.90705 1.90945 1.91125 1.91216 1.91268 1.9123 1.91183 1.91085 1.90964 1.908 1.90567 1.90412 1.90167 2.45959 2.43833 2.42117 2.40521 2.38973 2.37436 2.35886 2.34294 2.32676 2.31011 2.29339 2.27647 2.25968 2.24301 2.22655 2.21055 2.19464 2.17942 2.16429 2.14991 2.13578 2.12227 2.10934 2.09695 2.08539 2.07435 2.06434 2.05493 2.04635 2.03839 2.03131 2.02522 2.01981 2.01521 2.01139 2.0083 2.00561 2.00336 2.00155 1.99975 1.99848 1.997 1.99581 1.99439 1.99289 1.99128 1.98925 1.98723 1.98465 1.98208 1.97907 1.97585 1.97249 1.96864 1.96497 1.96065 1.95672 1.95213 1.94794 1.94319 1.93884 1.93404 1.92965 1.92489 1.92056 1.91594 1.91175 1.90738 1.90342 1.89949 1.89589 1.89261 1.88962 1.88718 1.88492 1.88358 1.8825 1.8825 1.8828 1.88357 1.88437 1.8867 1.88901 1.89253 1.89566 1.89899 1.90178 1.90407 1.90589 1.90674 1.90718 1.90682 1.90614 1.9054 1.90413 1.90229 1.90018 1.89758 1.89587 1.89337 2.49187 2.46211 2.4381 2.41807 2.39979 2.38255 2.36585 2.34938 2.33313 2.31688 2.30039 2.28391 2.2672 2.25073 2.23418 2.21794 2.20185 2.18598 2.17051 2.15538 2.14069 2.12657 2.11291 2.09992 2.08754 2.0758 2.06478 2.05444 2.04484 2.03604 2.0279 2.02061 2.01392 2.00813 2.00274 1.99844 1.9949 1.99209 1.9898 1.98804 1.98664 1.98529 1.98415 1.98282 1.98159 1.98 1.97832 1.97629 1.97399 1.97143 1.96849 1.96537 1.96185 1.95819 1.95422 1.95017 1.94585 1.94155 1.93695 1.93254 1.92778 1.92337 1.91862 1.91428 1.90969 1.90549 1.90124 1.89728 1.89349 1.88996 1.88679 1.88391 1.88155 1.87939 1.87804 1.87699 1.87698 1.87723 1.87773 1.87875 1.88137 1.88414 1.88767 1.89091 1.89408 1.89702 1.89905 1.90105 1.90175 1.90247 1.90213 1.90179 1.90107 1.89995 1.89817 1.89584 1.89352 1.89068 1.88883 1.88624 2.52896 2.50255 2.47692 2.45087 2.42642 2.40295 2.38129 2.36165 2.34321 2.32549 2.30812 2.29097 2.27398 2.25712 2.24047 2.22396 2.20768 2.19152 2.17568 2.16017 2.14512 2.13048 2.11642 2.10288 2.09002 2.07769 2.06608 2.05502 2.04473 2.03512 2.02641 2.01847 2.01151 2.0053 1.99976 1.99505 1.99108 1.98767 1.98504 1.98272 1.98086 1.97927 1.97803 1.97687 1.9757 1.97447 1.97294 1.97128 1.96914 1.96686 1.96407 1.96115 1.95781 1.95432 1.95058 1.94665 1.94259 1.93831 1.93399 1.92946 1.92502 1.92037 1.91596 1.91137 1.90712 1.90279 1.89881 1.89497 1.89143 1.88828 1.8854 1.88312 1.88105 1.87975 1.87893 1.87888 1.8791 1.87951 1.88084 1.88345 1.88618 1.88935 1.89249 1.89524 1.89804 1.89984 1.90166 1.90239 1.90275 1.90252 1.90203 1.90141 1.90018 1.89849 1.8963 1.89386 1.8914 1.88861 1.88667 1.88424 2.54598 2.52452 2.50385 2.48201 2.45877 2.43554 2.41271 2.39029 2.36869 2.34811 2.32847 2.30959 2.29132 2.27345 2.2558 2.23836 2.22095 2.20396 2.18709 2.17098 2.15537 2.14058 2.12636 2.11281 2.09973 2.08716 2.07522 2.06372 2.05316 2.04306 2.03393 2.02538 2.01769 2.01056 2.00419 1.99825 1.99312 1.9888 1.98521 1.98229 1.98014 1.97839 1.97708 1.97592 1.97485 1.97377 1.97245 1.97102 1.96915 1.96713 1.96463 1.96193 1.95884 1.95553 1.95199 1.94818 1.94424 1.94003 1.93578 1.93129 1.92687 1.92226 1.91788 1.91335 1.90918 1.90497 1.90116 1.89756 1.89431 1.89159 1.88914 1.88737 1.88589 1.88527 1.88497 1.88517 1.88564 1.88738 1.88991 1.8928 1.89572 1.89889 1.90136 1.904 1.90567 1.9071 1.90794 1.90784 1.9075 1.90713 1.90629 1.90531 1.90345 1.90137 1.89896 1.89633 1.89375 1.89088 1.88885 1.88645 2.57267 2.55093 2.53007 2.50938 2.48791 2.46599 2.44386 2.42169 2.39991 2.37862 2.35793 2.33788 2.31817 2.29899 2.28 2.26159 2.24347 2.22598 2.20888 2.19255 2.17657 2.16138 2.14634 2.13222 2.11848 2.10574 2.0935 2.08216 2.07121 2.06087 2.05087 2.04143 2.03237 2.02411 2.01639 2.00965 2.00362 1.9988 1.99478 1.99166 1.98925 1.98732 1.9859 1.98466 1.98366 1.98263 1.98149 1.98027 1.97867 1.97699 1.97472 1.97244 1.96952 1.96665 1.96313 1.95965 1.95558 1.95152 1.94704 1.94255 1.93786 1.93314 1.9285 1.92378 1.91944 1.91507 1.91126 1.90758 1.90458 1.90182 1.89983 1.8981 1.89729 1.89658 1.89666 1.8974 1.89928 1.9016 1.90455 1.90716 1.91023 1.91256 1.91487 1.91657 1.91754 1.91839 1.91811 1.91765 1.91692 1.91627 1.91482 1.91334 1.911 1.90879 1.90619 1.90355 1.90086 1.89804 1.89596 1.89369 2.58688 2.56756 2.54848 2.52899 2.50937 2.48935 2.46936 2.44911 2.42896 2.40875 2.38883 2.36891 2.34957 2.33042 2.3119 2.29364 2.27597 2.25854 2.24165 2.22519 2.2093 2.19411 2.17944 2.16538 2.1517 2.13835 2.12527 2.11238 2.1 2.08778 2.0764 2.06562 2.05581 2.0468 2.03839 2.03112 2.02424 2.01849 2.01312 2.00869 2.00478 2.00155 1.99903 1.99678 1.9953 1.99369 1.99278 1.99136 1.99048 1.98899 1.98768 1.98586 1.98394 1.9816 1.97899 1.97603 1.97268 1.96924 1.9653 1.96152 1.95722 1.95316 1.94883 1.94455 1.94064 1.93629 1.93316 1.9292 1.92706 1.92409 1.92284 1.92093 1.92047 1.91985 1.92069 1.92214 1.92371 1.92599 1.92792 1.93017 1.93195 1.9335 1.93464 1.93515 1.93529 1.93482 1.93375 1.93307 1.9317 1.9306 1.9283 1.92644 1.9237 1.92133 1.91847 1.9157 1.91284 1.90992 1.90774 1.90543 2.59729 2.57788 2.55914 2.5409 2.52323 2.50551 2.48713 2.4685 2.44923 2.43008 2.41103 2.39239 2.3741 2.35635 2.33872 2.32162 2.30463 2.28804 2.27168 2.25562 2.23977 2.22432 2.2089 2.19388 2.17893 2.1645 2.15036 2.13682 2.12373 2.11116 2.09927 2.08729 2.07621 2.06521 2.0554 2.0459 2.03726 2.02943 2.02257 2.01695 2.01217 2.00863 2.00566 2.00356 2.00189 2.00062 1.9997 1.99873 1.99801 1.9969 1.99609 1.99459 1.99338 1.99139 1.9896 1.9872 1.98479 1.98219 1.97912 1.97645 1.9727 1.96995 1.96586 1.96315 1.95922 1.95686 1.95348 1.95171 1.94918 1.94794 1.94636 1.94539 1.94558 1.94634 1.94781 1.94895 1.95094 1.95232 1.95396 1.95507 1.95586 1.95626 1.95608 1.95567 1.95432 1.95322 1.95145 1.95039 1.94826 1.94663 1.94395 1.94175 1.93906 1.93646 1.93372 1.93084 1.92808 1.92515 1.92299 1.92075 2.61574 2.59901 2.58264 2.5652 2.54678 2.52735 2.50744 2.48759 2.46803 2.44878 2.43009 2.41166 2.39373 2.37616 2.35892 2.34206 2.32539 2.30882 2.29245 2.27604 2.25991 2.24405 2.22851 2.2133 2.19843 2.18367 2.16908 2.1545 2.13997 2.12561 2.11163 2.09807 2.08566 2.07375 2.06357 2.05398 2.04616 2.03898 2.03287 2.02744 2.02259 2.01827 2.01447 2.01123 2.00842 2.00626 2.00426 2.00292 2.00143 2.00046 1.99928 1.99824 1.99698 1.99558 1.99405 1.99246 1.99055 1.98876 1.98642 1.98434 1.9817 1.97942 1.97666 1.97446 1.97186 1.97014 1.96798 1.96706 1.96522 1.96478 1.96406 1.96477 1.96564 1.96735 1.9687 1.97092 1.97242 1.97438 1.97573 1.97674 1.97743 1.97733 1.97706 1.976 1.97485 1.97352 1.97196 1.97085 1.96858 1.9669 1.96408 1.96219 1.95916 1.95685 1.95372 1.95102 1.94794 1.94496 1.94262 1.94017 2.62651 2.61147 2.597 2.58126 2.56418 2.54649 2.52818 2.50977 2.49146 2.4733 2.45568 2.43833 2.42147 2.40465 2.38788 2.37092 2.35409 2.33721 2.32077 2.30454 2.28863 2.27295 2.2572 2.24132 2.22521 2.20883 2.1925 2.17638 2.16071 2.14602 2.13205 2.1193 2.10739 2.09647 2.08618 2.07654 2.06729 2.05837 2.04984 2.04205 2.0346 2.02818 2.02227 2.01747 2.01319 2.00978 2.00691 2.00474 2.00296 2.00168 2.00052 1.99971 1.99893 1.99849 1.99779 1.99727 1.99627 1.9954 1.99394 1.99266 1.99079 1.98917 1.98718 1.98538 1.98341 1.98176 1.97963 1.97856 1.97674 1.97685 1.97716 1.97803 1.97919 1.9808 1.98314 1.98469 1.98716 1.98845 1.99009 1.99126 1.99168 1.99248 1.99224 1.99165 1.99115 1.99045 1.98982 1.98837 1.98712 1.98502 1.9828 1.98072 1.97778 1.97574 1.97228 1.97029 1.96662 1.96477 1.96197 1.96092 2.63292 2.61725 2.60321 2.58829 2.57238 2.55551 2.53824 2.52094 2.50402 2.4876 2.47141 2.45528 2.4389 2.4226 2.40633 2.39038 2.37485 2.35942 2.34409 2.32839 2.31199 2.29514 2.27762 2.25991 2.2423 2.22501 2.20853 2.19271 2.17779 2.1636 2.14997 2.13685 2.12405 2.11165 2.09953 2.0879 2.07673 2.0663 2.05643 2.04741 2.03912 2.03188 2.02518 2.01936 2.01415 2.00987 2.00621 2.00335 2.00124 1.99987 1.99902 1.99883 1.99887 1.99904 1.99917 1.99914 1.99897 1.9985 1.99785 1.99645 1.99539 1.99388 1.99295 1.99155 1.99057 1.98992 1.98935 1.98968 1.99047 1.99193 1.99404 1.99602 1.99905 2.0018 2.00486 2.00813 2.01059 2.01347 2.01528 2.01694 2.01805 2.01849 2.01821 2.01754 2.01704 2.01595 2.01498 2.01278 2.01133 2.00836 2.00664 2.00338 2.00146 1.99821 1.99606 1.99322 1.99079 1.98878 1.98669 1.98607 2.6453 2.62931 2.61538 2.60089 2.5855 2.56944 2.55312 2.53676 2.52034 2.50371 2.48727 2.4711 2.45528 2.43992 2.42479 2.40969 2.3941 2.37798 2.36095 2.34332 2.325 2.30688 2.28868 2.27121 2.25426 2.23786 2.22206 2.20649 2.1913 2.17629 2.16151 2.1471 2.13308 2.11948 2.10657 2.09423 2.08258 2.07155 2.0612 2.05149 2.04247 2.03402 2.0263 2.01924 2.01313 2.00791 2.00366 2.00042 1.99824 1.99691 1.99635 1.99641 1.99668 1.99723 1.99761 1.9977 1.99765 1.99743 1.99687 1.99615 1.99531 1.99487 1.99496 1.99523 1.99594 1.99735 1.99954 2.00195 2.00596 2.00922 2.01407 2.0182 2.02263 2.02714 2.03074 2.0344 2.03729 2.0393 2.04127 2.04189 2.04258 2.0422 2.04138 2.04059 2.03961 2.03815 2.03698 2.03453 2.03301 2.03019 2.02856 2.02565 2.0241 2.02111 2.01955 2.0164 2.01478 2.01157 2.01025 2.00753 2.64906 2.6346 2.6222 2.60878 2.59407 2.57861 2.56246 2.54623 2.53012 2.51412 2.49861 2.4836 2.46885 2.45438 2.43942 2.42387 2.4073 2.39013 2.37224 2.35448 2.33653 2.31921 2.30198 2.28523 2.26863 2.25199 2.2357 2.2193 2.20321 2.18742 2.17187 2.15697 2.14237 2.12848 2.11505 2.10229 2.09001 2.07831 2.06723 2.0566 2.04661 2.03699 2.02854 2.02062 2.01395 2.00833 2.00392 2.00084 1.99846 1.99703 1.99626 1.99591 1.99593 1.99607 1.99611 1.99594 1.99561 1.99567 1.99581 1.99616 1.99664 1.9976 1.99923 2.0013 2.00427 2.00734 2.01146 2.01564 2.02051 2.02581 2.03063 2.03635 2.04076 2.04566 2.04948 2.05268 2.05551 2.0571 2.05856 2.05912 2.05911 2.05854 2.05745 2.05662 2.05521 2.05424 2.05228 2.05093 2.04895 2.04725 2.04558 2.04326 2.04184 2.03884 2.03709 2.0333 2.03109 2.02649 2.02434 2.0194 2.65753 2.64287 2.6296 2.61511 2.5994 2.58317 2.56656 2.54993 2.53371 2.51807 2.50308 2.48872 2.4741 2.45921 2.44366 2.42742 2.41083 2.39401 2.37719 2.36046 2.34377 2.32701 2.31017 2.29312 2.27621 2.25905 2.24234 2.22553 2.20932 2.19336 2.17779 2.16282 2.14818 2.13409 2.12052 2.10723 2.09461 2.08233 2.07059 2.05906 2.04843 2.03827 2.02926 2.02116 2.01435 2.0084 2.00365 1.99985 1.99671 1.99454 1.99271 1.99149 1.99086 1.99048 1.98997 1.99001 1.99047 1.99115 1.99249 1.99408 1.99624 1.99864 2.00163 2.00512 2.00911 2.01372 2.01864 2.02416 2.02971 2.03552 2.04121 2.04653 2.05154 2.05591 2.05973 2.06258 2.06535 2.06661 2.06806 2.06864 2.06866 2.06827 2.06774 2.06731 2.06672 2.06604 2.0648 2.06402 2.06244 2.06142 2.05927 2.05772 2.05483 2.05205 2.0487 2.04434 2.04074 2.03509 2.03234 2.02663 2.66319 2.64973 2.63744 2.62391 2.60868 2.59231 2.57552 2.55848 2.54202 2.52589 2.51 2.4943 2.47837 2.46226 2.44615 2.4296 2.41326 2.39669 2.3803 2.36371 2.34706 2.33008 2.31317 2.29598 2.27927 2.26235 2.24613 2.22973 2.21395 2.19819 2.18292 2.16793 2.15339 2.13907 2.12539 2.1116 2.09856 2.08544 2.07299 2.06089 2.04946 2.03892 2.02934 2.02086 2.01335 2.00679 2.00107 1.99624 1.99211 1.9889 1.9862 1.98437 1.98339 1.98301 1.98276 1.98306 1.98411 1.98548 1.98783 1.99016 1.99329 1.99687 2.00094 2.00551 2.01047 2.01603 2.02175 2.02802 2.03403 2.04033 2.04615 2.05155 2.05669 2.06065 2.06461 2.06712 2.0698 2.07095 2.07248 2.07298 2.07332 2.07334 2.07341 2.07359 2.07378 2.07363 2.07323 2.07248 2.07128 2.07005 2.06786 2.06588 2.06265 2.05965 2.05555 2.05155 2.0473 2.04275 2.03973 2.03564 2.66046 2.64759 2.63602 2.62302 2.60827 2.59214 2.5758 2.55888 2.54266 2.52657 2.51094 2.49564 2.48049 2.46539 2.45033 2.43486 2.41922 2.40292 2.38626 2.36904 2.35176 2.33432 2.31722 2.30018 2.28352 2.2669 2.25072 2.23444 2.21892 2.20317 2.18838 2.17329 2.15909 2.14457 2.13079 2.11671 2.10327 2.08979 2.07696 2.06483 2.05327 2.0428 2.03257 2.02338 2.01467 2.00694 1.99993 1.99382 1.9885 1.98417 1.98082 1.97851 1.97751 1.97755 1.97767 1.97828 1.97966 1.98247 1.98494 1.9888 1.99213 1.99671 2.00107 2.00646 2.01195 2.01811 2.02444 2.03111 2.03761 2.04416 2.05015 2.05581 2.06085 2.06499 2.06897 2.0715 2.07431 2.07566 2.07743 2.07804 2.07886 2.07918 2.07947 2.08019 2.08031 2.08012 2.07954 2.07852 2.07721 2.07526 2.07295 2.07022 2.067 2.0635 2.0597 2.05574 2.05189 2.04789 2.04519 2.04191 2.6693 2.65501 2.64245 2.62825 2.61273 2.59535 2.57798 2.56015 2.54335 2.52732 2.5122 2.49838 2.48439 2.47065 2.4557 2.44 2.42334 2.40597 2.3882 2.37022 2.35247 2.33466 2.31736 2.30015 2.28325 2.26671 2.25053 2.23458 2.21938 2.20395 2.18962 2.17466 2.16088 2.14633 2.13272 2.11868 2.10525 2.09202 2.0792 2.06719 2.05529 2.04421 2.03335 2.02307 2.01351 2.00452 1.99654 1.98944 1.98334 1.97853 1.97508 1.97252 1.97228 1.97261 1.97332 1.97427 1.97648 1.97977 1.98311 1.98731 1.99155 1.99649 2.00174 2.00746 2.01372 2.02021 2.0271 2.03388 2.04079 2.0473 2.05359 2.05934 2.06445 2.06904 2.07301 2.07614 2.07932 2.08125 2.08347 2.08483 2.08603 2.08657 2.08758 2.0879 2.08772 2.08723 2.08593 2.08472 2.08259 2.08012 2.07748 2.07418 2.07097 2.06707 2.06358 2.05929 2.05582 2.05157 2.0491 2.04555 2.66707 2.65381 2.64135 2.62625 2.61075 2.59401 2.5784 2.56272 2.54806 2.53392 2.51972 2.50564 2.49015 2.47462 2.45805 2.44141 2.42412 2.40684 2.3892 2.37158 2.35406 2.33627 2.3191 2.30164 2.28483 2.26812 2.25195 2.23589 2.22055 2.20509 2.19067 2.17575 2.16212 2.14778 2.13463 2.12113 2.10839 2.09589 2.08325 2.07103 2.05833 2.04632 2.03455 2.02328 2.01286 2.00311 1.99431 1.98691 1.9805 1.97559 1.97205 1.96963 1.96923 1.96959 1.9704 1.97116 1.97332 1.97658 1.98047 1.98488 1.98987 1.99527 2.00117 2.00739 2.01397 2.02068 2.02767 2.03448 2.04137 2.04785 2.05421 2.05997 2.06563 2.07059 2.07538 2.07962 2.0833 2.08663 2.08933 2.09139 2.09282 2.09398 2.09446 2.09436 2.09372 2.09278 2.09054 2.08895 2.0857 2.08322 2.07994 2.07634 2.07321 2.06904 2.06592 2.06131 2.05833 2.05362 2.05143 2.04738 2.67121 2.65671 2.64241 2.62631 2.61095 2.59551 2.58197 2.56835 2.55449 2.53976 2.52376 2.50771 2.49053 2.47388 2.45669 2.44002 2.42299 2.40615 2.38876 2.37133 2.35371 2.33565 2.31822 2.30045 2.28352 2.26666 2.25063 2.23483 2.22001 2.20517 2.19154 2.17749 2.16494 2.15163 2.13922 2.12616 2.11287 2.09961 2.08556 2.07228 2.05855 2.04542 2.03274 2.02058 2.00958 1.99971 1.99077 1.98347 1.9771 1.97214 1.96845 1.96597 1.96513 1.96542 1.9661 1.96672 1.96865 1.9723 1.97656 1.98168 1.9875 1.99362 2.0005 2.00719 2.01449 2.02128 2.02838 2.03503 2.0417 2.04796 2.05418 2.05997 2.06578 2.07113 2.07636 2.08126 2.0854 2.08967 2.09244 2.09528 2.09679 2.09802 2.09831 2.09814 2.09727 2.09618 2.0937 2.09207 2.08867 2.08667 2.083 2.08012 2.07718 2.07285 2.07037 2.06534 2.06268 2.05743 2.05515 2.0503 2.66996 2.65474 2.64093 2.62687 2.61436 2.60234 2.59063 2.57735 2.5622 2.54572 2.52753 2.50969 2.49146 2.4744 2.45752 2.44106 2.42408 2.40681 2.38873 2.37047 2.35197 2.33326 2.31499 2.29652 2.27892 2.26173 2.24594 2.231 2.21776 2.20507 2.19378 2.18178 2.17051 2.15765 2.14484 2.13097 2.11635 2.10182 2.08619 2.0715 2.05663 2.04273 2.02991 2.01778 2.00699 1.99719 1.98846 1.98099 1.97464 1.96924 1.96525 1.96229 1.96091 1.96099 1.96135 1.96172 1.96349 1.96703 1.97167 1.97738 1.98377 1.99086 1.99834 2.00589 2.01367 2.02089 2.02813 2.03482 2.04115 2.0475 2.0532 2.05922 2.06467 2.07046 2.07549 2.08102 2.08519 2.08993 2.09288 2.09608 2.09764 2.0992 2.0998 2.09969 2.09903 2.09816 2.09614 2.09476 2.09186 2.09019 2.08691 2.0845 2.0818 2.07756 2.07523 2.07017 2.06738 2.06178 2.05932 2.05377 2.67092 2.6526 2.63768 2.62512 2.61375 2.60328 2.59129 2.57784 2.56202 2.54531 2.52716 2.51002 2.49295 2.47707 2.46129 2.44547 2.4288 2.41193 2.39406 2.37641 2.3581 2.33976 2.32123 2.30271 2.28471 2.26745 2.2514 2.23639 2.2228 2.20956 2.19742 2.18446 2.17219 2.15844 2.14492 2.13048 2.11571 2.10142 2.08651 2.07295 2.05929 2.04653 2.03474 2.02333 2.0131 2.0035 1.99482 1.98669 1.97999 1.9735 1.96874 1.96462 1.96254 1.9615 1.96148 1.96143 1.9628 1.96599 1.97078 1.97661 1.98325 1.99061 1.99811 2.00586 2.01347 2.02059 2.02767 2.03393 2.04026 2.04614 2.05204 2.05788 2.06386 2.06963 2.0756 2.08109 2.08625 2.091 2.09461 2.09757 2.09959 2.10084 2.10101 2.10076 2.09972 2.09853 2.09591 2.09425 2.09088 2.08901 2.08535 2.08282 2.07972 2.07531 2.07279 2.06738 2.06447 2.05861 2.05602 2.05015 2.67341 2.65212 2.63596 2.62372 2.61257 2.6021 2.58946 2.5755 2.55926 2.54263 2.52499 2.5087 2.49262 2.47734 2.4621 2.44653 2.43039 2.414 2.39674 2.37943 2.36111 2.34261 2.32367 2.305 2.28691 2.26984 2.25404 2.23925 2.22567 2.21222 2.1995 2.18585 2.17271 2.15821 2.14416 2.1295 2.11489 2.10117 2.08701 2.07459 2.06201 2.05057 2.03977 2.02944 2.01961 2.01055 2.00173 1.99344 1.9864 1.97923 1.97402 1.96915 1.96664 1.96493 1.96465 1.96393 1.96509 1.96798 1.97249 1.97823 1.98466 1.99195 1.99929 2.00697 2.01438 2.0214 2.02815 2.03436 2.04037 2.04625 2.05195 2.05802 2.06398 2.07038 2.07655 2.08254 2.08836 2.09304 2.09706 2.10008 2.10183 2.10248 2.10241 2.10185 2.10004 2.09831 2.09478 2.09271 2.08858 2.0864 2.08221 2.07957 2.07592 2.0717 2.06895 2.06344 2.06062 2.05492 2.05241 2.04686 2.44289 2.7443 3.00017 3.27268 3.23119 3.20429 3.19165 3.18768 3.18091 3.17292 3.16426 3.16005 3.15911 3.15848 3.15838 3.15943 3.16296 3.16755 3.17344 3.17971 3.18626 3.19129 3.19661 3.2006 3.20288 3.20381 3.20412 3.20209 3.19951 3.19403 3.18852 3.18207 3.17638 3.17153 3.16565 3.15711 3.1506 3.13961 3.13226 3.12237 3.11433 3.10332 3.09375 3.08149 3.07163 3.05909 3.04707 3.03482 3.02382 3.01082 3.00008 2.98687 2.97556 2.96255 2.95092 2.93819 2.92602 2.91362 2.90136 2.88871 2.87665 2.86383 2.85205 2.83939 2.82774 2.81531 2.80378 2.79154 2.7802 2.76818 2.75702 2.7453 2.73425 2.72291 2.71193 2.70102 2.69026 2.67974 2.66936 2.65922 2.6493 2.63957 2.63027 2.62094 2.61238 2.60375 2.59585 2.5884 2.58139 2.57528 2.56999 2.5654 2.56259 2.56064 2.56009 2.55991 2.56009 2.56104 2.56432 2.56209 2.34231 2.51426 2.68822 3.02582 3.20126 3.28158 3.44261 3.52833 3.50943 3.50626 3.50224 3.50317 3.50347 3.49881 3.49059 3.48335 3.47053 3.45509 3.43578 3.41691 3.39787 3.37946 3.36806 3.35219 3.33559 3.31327 3.29531 3.26987 3.2498 3.22741 3.2029 3.18461 3.15987 3.14152 3.11658 3.09831 3.07577 3.05643 3.03488 3.01729 2.99742 2.98017 2.96223 2.94384 2.92613 2.90846 2.89193 2.87547 2.85965 2.84407 2.82839 2.81362 2.79826 2.78414 2.76936 2.75533 2.74136 2.72747 2.71413 2.70066 2.68781 2.67488 2.66251 2.6501 2.63814 2.62616 2.6146 2.60301 2.59176 2.58059 2.56959 2.55892 2.54819 2.53801 2.52762 2.51789 2.50792 2.49856 2.48907 2.48 2.47107 2.4623 2.45394 2.44575 2.43789 2.43059 2.42343 2.41706 2.41111 2.40577 2.40146 2.39773 2.3954 2.39423 2.39406 2.39415 2.39442 2.39546 2.39885 2.3966 2.32358 2.35837 2.45801 2.55415 2.7293 2.89944 3.05365 3.25323 3.36934 3.44294 3.4787 3.52214 3.54468 3.56832 3.57137 3.56379 3.54696 3.51864 3.4828 3.44759 3.40948 3.37109 3.33246 3.28882 3.24753 3.20296 3.16179 3.11584 3.07553 3.03342 2.99568 2.95831 2.92371 2.89043 2.85948 2.82953 2.80154 2.77503 2.75035 2.72761 2.706 2.68702 2.66761 2.65024 2.63145 2.61608 2.59903 2.58515 2.5693 2.55617 2.54148 2.52883 2.51517 2.50305 2.49017 2.47881 2.4666 2.45585 2.4443 2.43411 2.42311 2.41338 2.40293 2.39351 2.38358 2.37439 2.36491 2.35596 2.34682 2.33818 2.32932 2.32105 2.31245 2.30444 2.29618 2.28832 2.28046 2.27273 2.26526 2.2578 2.25066 2.24364 2.23682 2.23035 2.22398 2.21802 2.21246 2.20707 2.20257 2.19827 2.19486 2.19235 2.19052 2.19037 2.19056 2.19105 2.19167 2.19316 2.1974 2.196 2.32608 2.29737 2.33131 2.36648 2.43801 2.52173 2.61752 2.70974 2.81424 2.91104 2.98576 3.0389 3.08334 3.1036 3.11762 3.11633 3.11007 3.09636 3.07436 3.04742 3.01237 2.97572 2.93446 2.89442 2.85311 2.81452 2.77671 2.74166 2.70912 2.67854 2.65118 2.62499 2.60224 2.58066 2.56196 2.54522 2.5302 2.51655 2.50376 2.49238 2.48136 2.47193 2.46213 2.45289 2.44283 2.4338 2.42449 2.41597 2.40699 2.3986 2.38975 2.38144 2.37265 2.36441 2.35571 2.34755 2.33899 2.33091 2.3225 2.31446 2.3062 2.29815 2.29003 2.28197 2.27394 2.26594 2.25794 2.25009 2.24212 2.23438 2.22655 2.21884 2.21126 2.20357 2.19626 2.18873 2.18155 2.17438 2.16716 2.16038 2.15332 2.14679 2.14022 2.13384 2.128 2.12203 2.11687 2.11182 2.1073 2.10365 2.1002 2.09821 2.0967 2.09681 2.09718 2.09797 2.09904 2.10097 2.10607 2.10599 2.3333 2.29815 2.28105 2.2947 2.31741 2.35535 2.39709 2.44333 2.48518 2.52455 2.55619 2.58403 2.60196 2.61616 2.6191 2.61679 2.61102 2.60149 2.59056 2.57557 2.55987 2.54358 2.52765 2.51261 2.49889 2.48628 2.47495 2.46474 2.45569 2.44761 2.44047 2.43397 2.42814 2.42279 2.41772 2.4131 2.40824 2.40387 2.39869 2.39414 2.38881 2.38449 2.37912 2.37394 2.36745 2.36133 2.35473 2.34857 2.34182 2.33547 2.3284 2.3218 2.31451 2.30766 2.30031 2.29326 2.28601 2.27881 2.27168 2.2644 2.25728 2.24998 2.24277 2.23547 2.22814 2.22081 2.21348 2.20604 2.19882 2.19132 2.18418 2.17675 2.1695 2.16224 2.15478 2.14771 2.14025 2.13334 2.12615 2.1194 2.11265 2.10603 2.09985 2.09351 2.08782 2.08222 2.07694 2.07243 2.06791 2.06458 2.06149 2.05957 2.05868 2.05889 2.05952 2.0601 2.06198 2.0644 2.06951 2.07052 2.34076 2.29968 2.28164 2.26896 2.2754 2.28787 2.30345 2.32085 2.33594 2.34876 2.35941 2.36687 2.37391 2.37799 2.37979 2.37862 2.37595 2.3742 2.37259 2.36922 2.3661 2.36215 2.35892 2.35607 2.3541 2.35251 2.35133 2.35055 2.34994 2.34965 2.34926 2.34898 2.34836 2.34783 2.34666 2.34573 2.34368 2.34214 2.33894 2.33659 2.33266 2.32997 2.32592 2.32211 2.31684 2.31161 2.30603 2.3004 2.29474 2.28876 2.28285 2.27652 2.27025 2.26363 2.25701 2.25024 2.24337 2.23652 2.22951 2.22255 2.21552 2.20841 2.20143 2.19422 2.18728 2.18007 2.17309 2.16605 2.15897 2.15217 2.14504 2.13836 2.13129 2.1246 2.11782 2.11109 2.1046 2.09788 2.09159 2.08512 2.07895 2.07297 2.06696 2.06157 2.05598 2.05115 2.04637 2.04218 2.03853 2.03531 2.03313 2.0314 2.03139 2.03167 2.03235 2.03328 2.03567 2.03882 2.04353 2.0449 2.34728 2.3093 2.2835 2.27026 2.2619 2.26364 2.26508 2.26767 2.26884 2.26933 2.26807 2.26682 2.26611 2.26617 2.26617 2.26575 2.26486 2.264 2.26496 2.26612 2.26736 2.26821 2.2697 2.27083 2.27277 2.2742 2.27638 2.27798 2.28006 2.28133 2.28279 2.28359 2.28403 2.28394 2.28357 2.28287 2.28134 2.27991 2.27733 2.275 2.2719 2.26947 2.2662 2.2629 2.25838 2.2538 2.24868 2.24369 2.23835 2.23314 2.22758 2.22208 2.21622 2.2103 2.20423 2.19791 2.19173 2.18519 2.17886 2.17223 2.16566 2.15898 2.15219 2.14545 2.13858 2.13174 2.12497 2.11796 2.11128 2.10421 2.09761 2.09071 2.0842 2.07759 2.07113 2.06481 2.05844 2.05242 2.0462 2.04049 2.03457 2.02915 2.02373 2.01861 2.01389 2.00922 2.00533 2.00146 1.99855 1.99593 1.99427 1.99348 1.99367 1.99425 1.99485 1.99616 1.99895 2.00246 2.00723 2.00835 2.35146 2.32063 2.29584 2.28052 2.26513 2.25764 2.25201 2.24544 2.23924 2.23181 2.22482 2.21829 2.21325 2.2097 2.20731 2.2062 2.20497 2.20409 2.20425 2.20579 2.20769 2.21053 2.21247 2.21524 2.21745 2.22036 2.22307 2.22585 2.22849 2.23064 2.23292 2.23434 2.23608 2.23672 2.23776 2.23767 2.23741 2.2368 2.23549 2.23392 2.2318 2.2298 2.22732 2.22436 2.22051 2.21616 2.21142 2.20635 2.20119 2.19569 2.19024 2.18441 2.17861 2.17254 2.16638 2.1602 2.15378 2.14753 2.141 2.1346 2.12809 2.12146 2.11501 2.10819 2.10175 2.09486 2.08833 2.0815 2.07491 2.06824 2.06155 2.05502 2.04831 2.0419 2.0353 2.02898 2.02266 2.01642 2.01049 2.00444 1.99892 1.99328 1.98818 1.98319 1.97856 1.97441 1.9705 1.96735 1.96448 1.96266 1.96121 1.96124 1.96156 1.96198 1.96292 1.96551 1.96826 1.97255 1.97691 1.97843 2.36284 2.3324 2.30823 2.28882 2.27791 2.26175 2.24946 2.23866 2.22656 2.21572 2.20455 2.19548 2.18728 2.18157 2.17699 2.1747 2.17255 2.17153 2.16994 2.16999 2.17035 2.1722 2.17446 2.17655 2.17893 2.18131 2.18375 2.18627 2.18851 2.19096 2.19292 2.19509 2.19648 2.19803 2.19866 2.19941 2.19935 2.19892 2.19799 2.19661 2.19482 2.19302 2.19096 2.18831 2.18506 2.18119 2.17705 2.1726 2.16794 2.16317 2.15819 2.1531 2.14786 2.14234 2.13685 2.13093 2.12521 2.11904 2.11307 2.10678 2.10053 2.09416 2.08768 2.08125 2.07462 2.06816 2.0616 2.05516 2.04874 2.04227 2.03601 2.02954 2.02339 2.01706 2.01095 2.00489 1.9988 1.99308 1.98714 1.98177 1.97621 1.97128 1.96628 1.96188 1.95769 1.954 1.95082 1.94811 1.9462 1.94482 1.94459 1.9449 1.94535 1.94629 1.94793 1.95125 1.95452 1.95873 1.96291 1.96424 2.38009 2.35223 2.32602 2.30484 2.28523 2.27108 2.25502 2.23926 2.22502 2.21077 2.19852 2.18657 2.17702 2.16835 2.16212 2.15702 2.15357 2.15061 2.14848 2.14691 2.14582 2.14582 2.14641 2.1481 2.14971 2.15178 2.15367 2.15594 2.15819 2.16064 2.16294 2.16502 2.16691 2.16827 2.16954 2.17012 2.17066 2.17049 2.16987 2.16886 2.16739 2.16603 2.16435 2.16222 2.15954 2.15617 2.15265 2.14854 2.14435 2.13984 2.13508 2.13031 2.12507 2.12002 2.11445 2.10904 2.10324 2.09743 2.09145 2.08526 2.07912 2.07267 2.06637 2.05979 2.0534 2.04689 2.04039 2.034 2.02746 2.02122 2.01471 2.0086 2.00222 1.99623 1.99005 1.9842 1.9783 1.97259 1.96707 1.96158 1.95652 1.95142 1.94693 1.94248 1.93877 1.9353 1.93255 1.93036 1.92892 1.92832 1.9285 1.9289 1.92962 1.93117 1.93373 1.93714 1.94093 1.94429 1.94847 1.94911 2.39471 2.37214 2.34593 2.32257 2.29954 2.27894 2.26059 2.24353 2.22773 2.2122 2.19822 2.18519 2.17391 2.16375 2.15539 2.14821 2.14268 2.13782 2.13411 2.13052 2.12829 2.12625 2.12539 2.1254 2.12617 2.12796 2.12947 2.13183 2.13363 2.13613 2.13789 2.14009 2.14157 2.14332 2.14437 2.14543 2.14587 2.14602 2.14558 2.14465 2.14357 2.14234 2.14099 2.13926 2.13681 2.13403 2.13065 2.12706 2.12307 2.1188 2.11436 2.10954 2.10467 2.09944 2.09417 2.08865 2.08305 2.07731 2.07142 2.06552 2.05939 2.05334 2.04709 2.04098 2.03475 2.02858 2.02243 2.01625 2.0102 2.00407 1.9981 1.99207 1.98618 1.9803 1.9745 1.96888 1.96322 1.95796 1.95256 1.94775 1.94276 1.93845 1.93411 1.9305 1.9271 1.92444 1.92225 1.92086 1.92018 1.92034 1.92072 1.92136 1.92298 1.92495 1.92867 1.93156 1.93558 1.93796 1.942 1.94207 2.40603 2.38688 2.36475 2.34182 2.31945 2.29717 2.27612 2.25627 2.23814 2.22142 2.20626 2.19183 2.17887 2.16689 2.15652 2.14725 2.13958 2.13283 2.12736 2.12273 2.11904 2.11584 2.11408 2.1125 2.1122 2.11229 2.1132 2.11459 2.11609 2.11792 2.11958 2.12144 2.12291 2.12467 2.1257 2.12707 2.12743 2.12818 2.1279 2.12737 2.12658 2.12554 2.1245 2.12275 2.12057 2.11775 2.11451 2.11104 2.10703 2.10302 2.09845 2.09396 2.08904 2.08412 2.07899 2.07368 2.06836 2.06269 2.05712 2.05114 2.04527 2.0392 2.0331 2.02703 2.02075 2.01471 2.00834 2.00231 1.99602 1.98997 1.98388 1.97782 1.97198 1.96599 1.96039 1.95461 1.9493 1.94387 1.93898 1.93403 1.9297 1.92539 1.92185 1.91845 1.91593 1.91374 1.91245 1.91179 1.91193 1.91224 1.91293 1.91416 1.91696 1.91923 1.92311 1.92546 1.92892 1.93047 1.93363 1.93313 2.41448 2.39473 2.37332 2.35095 2.32908 2.3079 2.28765 2.2685 2.25041 2.23352 2.2176 2.2029 2.18892 2.17603 2.16399 2.15319 2.14347 2.13502 2.12762 2.12118 2.11581 2.1115 2.10793 2.1052 2.10355 2.10229 2.10192 2.10202 2.10279 2.10388 2.10518 2.10643 2.10766 2.10868 2.10964 2.11022 2.11066 2.11068 2.11022 2.10961 2.10842 2.10737 2.10606 2.10428 2.10216 2.09929 2.0964 2.09281 2.08921 2.08501 2.08073 2.07606 2.07126 2.06631 2.06115 2.05601 2.05061 2.04525 2.03968 2.03409 2.02847 2.02273 2.01707 2.01121 2.00548 1.99954 1.99374 1.98784 1.982 1.97625 1.97043 1.96491 1.95921 1.95393 1.94843 1.94341 1.93822 1.93356 1.9288 1.92459 1.92042 1.91691 1.91367 1.9111 1.90912 1.90782 1.90736 1.90757 1.90797 1.90869 1.91065 1.91246 1.916 1.91859 1.92195 1.92395 1.92647 1.92747 1.92974 1.92865 2.42542 2.40465 2.38275 2.36074 2.3393 2.31882 2.29945 2.28106 2.26372 2.2472 2.23141 2.21637 2.20191 2.18815 2.17502 2.1628 2.15147 2.14128 2.13195 2.1238 2.11637 2.11018 2.10477 2.10048 2.09674 2.09414 2.09191 2.09066 2.08963 2.08939 2.08948 2.08992 2.09042 2.09087 2.09119 2.09133 2.09133 2.09109 2.09052 2.08973 2.08853 2.08757 2.0861 2.08464 2.08231 2.07992 2.07694 2.07383 2.07032 2.06652 2.06252 2.05816 2.05377 2.04901 2.04428 2.03926 2.03415 2.02892 2.02344 2.01812 2.01245 2.00707 2.00137 1.99587 1.9902 1.98454 1.97893 1.97313 1.96759 1.96176 1.95635 1.95061 1.94541 1.93992 1.93499 1.92988 1.92531 1.92076 1.91666 1.91274 1.90933 1.90635 1.90388 1.90212 1.9009 1.90061 1.90088 1.90122 1.90215 1.90369 1.90655 1.90925 1.91263 1.91503 1.91757 1.91895 1.92044 1.92092 1.92238 1.92073 2.43667 2.41458 2.39151 2.36838 2.34644 2.32569 2.30672 2.2886 2.27177 2.25534 2.23971 2.22426 2.20948 2.1949 2.18096 2.1675 2.1549 2.14314 2.13241 2.12262 2.1139 2.10601 2.09886 2.09266 2.08715 2.08272 2.07898 2.07647 2.07436 2.07322 2.07226 2.07196 2.07206 2.07232 2.07263 2.07301 2.0732 2.07315 2.07295 2.07244 2.07193 2.07111 2.07034 2.06904 2.0674 2.06541 2.06306 2.06048 2.05739 2.05413 2.05035 2.04642 2.04212 2.03765 2.033 2.02812 2.02319 2.01796 2.01275 2.00734 2.00189 1.99638 1.99072 1.98518 1.97938 1.97384 1.96801 1.96249 1.95671 1.95129 1.94564 1.94039 1.93498 1.93 1.92495 1.92038 1.91585 1.91179 1.90793 1.90453 1.90166 1.89924 1.89758 1.89643 1.89624 1.89648 1.89688 1.89779 1.89989 1.90236 1.90568 1.90844 1.91136 1.9133 1.91516 1.91592 1.91688 1.91704 1.91807 1.91627 2.44618 2.42526 2.40287 2.38058 2.35889 2.33813 2.31868 2.30018 2.28261 2.26558 2.24903 2.23278 2.2169 2.20151 2.18652 2.17237 2.15873 2.14611 2.13432 2.12345 2.11345 2.10435 2.0962 2.08902 2.08279 2.07754 2.07312 2.0696 2.06689 2.06494 2.06352 2.06277 2.06224 2.06226 2.0624 2.06272 2.06297 2.06313 2.06302 2.06275 2.06218 2.06162 2.0608 2.05959 2.05802 2.05599 2.05375 2.05101 2.04802 2.04463 2.04094 2.03702 2.03277 2.02845 2.02377 2.01907 2.01405 2.009 2.00383 1.99853 1.99326 1.98778 1.98245 1.97686 1.97148 1.96587 1.96046 1.95491 1.94955 1.94412 1.93891 1.93369 1.92873 1.92385 1.91927 1.91491 1.91084 1.90713 1.90375 1.90102 1.89865 1.89719 1.89604 1.89607 1.89628 1.89675 1.89799 1.8999 1.90286 1.90601 1.90887 1.91174 1.91354 1.9155 1.916 1.91685 1.91678 1.91671 1.91687 1.91523 2.4479 2.42891 2.40961 2.39012 2.37097 2.35176 2.33329 2.31486 2.29726 2.27961 2.26269 2.24577 2.22948 2.21352 2.19803 2.18314 2.16871 2.15509 2.14216 2.13011 2.1189 2.10868 2.09922 2.09097 2.08346 2.07697 2.07109 2.06636 2.06229 2.05903 2.05646 2.05417 2.05276 2.05161 2.0509 2.05038 2.05005 2.0498 2.04932 2.04871 2.04779 2.04693 2.04571 2.04424 2.0423 2.04013 2.03767 2.03485 2.03184 2.02842 2.02487 2.02095 2.01692 2.01263 2.00814 2.00355 1.99872 1.99399 1.98905 1.98422 1.97931 1.97442 1.96959 1.96466 1.95988 1.95492 1.95015 1.9452 1.94045 1.93555 1.93092 1.9262 1.92182 1.91747 1.91355 1.90972 1.90643 1.90329 1.90094 1.89888 1.89768 1.89695 1.89706 1.89733 1.89803 1.89946 1.90216 1.90476 1.9083 1.9109 1.91388 1.91559 1.91723 1.91801 1.91816 1.918 1.91767 1.91709 1.91667 1.9149 2.44818 2.42966 2.41224 2.3951 2.37823 2.36109 2.34386 2.32664 2.30918 2.29221 2.27506 2.25857 2.24203 2.22602 2.21015 2.19472 2.17963 2.16518 2.15142 2.13833 2.12618 2.11466 2.10409 2.0942 2.08502 2.07708 2.06976 2.06351 2.05753 2.05264 2.04818 2.04452 2.0416 2.03923 2.03769 2.03629 2.0354 2.03438 2.03359 2.03258 2.03153 2.03032 2.02894 2.02726 2.02522 2.02303 2.02054 2.01788 2.01495 2.01179 2.00845 2.00482 2.00106 1.99702 1.99286 1.98847 1.98398 1.97942 1.97471 1.97008 1.96524 1.96063 1.95573 1.9512 1.94629 1.94187 1.93702 1.93269 1.92804 1.92382 1.91948 1.91551 1.91165 1.9081 1.90489 1.90191 1.89947 1.89735 1.89602 1.89501 1.89501 1.89537 1.89578 1.89693 1.89858 1.90179 1.90453 1.9081 1.91077 1.91346 1.91528 1.91636 1.91723 1.91704 1.9166 1.9161 1.91522 1.91376 1.91261 1.91047 2.45077 2.4321 2.41539 2.39954 2.38408 2.36826 2.35198 2.3352 2.31809 2.30085 2.28375 2.26667 2.24996 2.23335 2.21717 2.20134 2.18598 2.17111 2.15695 2.14324 2.13039 2.11786 2.10639 2.09515 2.08501 2.07519 2.06612 2.05783 2.05034 2.04416 2.03848 2.03399 2.02971 2.02645 2.02371 2.02146 2.01974 2.01804 2.01682 2.01535 2.01411 2.01266 2.01119 2.00958 2.0077 2.00577 2.00351 2.00116 1.99855 1.99568 1.99272 1.98931 1.98597 1.98207 1.97826 1.974 1.96976 1.9653 1.96068 1.95614 1.95131 1.94675 1.94188 1.93733 1.93254 1.92806 1.92345 1.91911 1.91477 1.91071 1.90675 1.90318 1.89979 1.89693 1.89429 1.89216 1.89058 1.88953 1.88927 1.8895 1.89023 1.8909 1.89262 1.89466 1.89808 1.90102 1.9044 1.90711 1.9095 1.9113 1.9122 1.91272 1.91234 1.91187 1.91089 1.90967 1.90803 1.9057 1.90415 1.90169 2.45968 2.43841 2.42124 2.40527 2.38978 2.3744 2.3589 2.34298 2.3268 2.31015 2.29343 2.27651 2.25972 2.24305 2.22659 2.21059 2.19468 2.17946 2.16433 2.14996 2.13583 2.12232 2.10939 2.097 2.08544 2.0744 2.0644 2.05498 2.0464 2.03844 2.03136 2.02527 2.01986 2.01526 2.01144 2.00836 2.00568 2.00342 2.00161 1.99981 1.99854 1.99705 1.99585 1.99443 1.99293 1.99132 1.98929 1.98727 1.98469 1.98212 1.97911 1.97588 1.97253 1.96867 1.96501 1.96069 1.95676 1.95216 1.94797 1.94323 1.93888 1.93408 1.92969 1.92493 1.92061 1.91598 1.91179 1.90743 1.90347 1.89953 1.89593 1.89266 1.88966 1.88723 1.88496 1.88362 1.88255 1.88255 1.88285 1.88362 1.88442 1.88675 1.88907 1.89258 1.89572 1.89904 1.90184 1.90411 1.90594 1.90678 1.90722 1.90686 1.90618 1.90544 1.90416 1.90231 1.90021 1.8976 1.89589 1.89339 2.49192 2.46216 2.43816 2.41813 2.39985 2.3826 2.36589 2.34942 2.33316 2.31692 2.30044 2.28396 2.26725 2.25078 2.23422 2.21799 2.2019 2.18602 2.17055 2.15543 2.14073 2.12661 2.11296 2.09996 2.08759 2.07585 2.06482 2.05449 2.04489 2.03609 2.02795 2.02067 2.01398 2.00819 2.00281 1.99851 1.99497 1.99216 1.98987 1.98811 1.98671 1.98535 1.98421 1.98288 1.98165 1.98005 1.97837 1.97634 1.97404 1.97149 1.96854 1.96542 1.9619 1.95824 1.95427 1.95022 1.9459 1.9416 1.937 1.93259 1.92783 1.92342 1.91867 1.91433 1.90974 1.90554 1.90128 1.89732 1.89354 1.89 1.88684 1.88396 1.8816 1.87944 1.87809 1.87704 1.87704 1.87729 1.87778 1.87881 1.88143 1.8842 1.88773 1.89097 1.89413 1.89707 1.8991 1.90109 1.90179 1.9025 1.90216 1.90182 1.9011 1.89997 1.8982 1.89586 1.89354 1.8907 1.88885 1.88626 2.52904 2.50266 2.47705 2.45101 2.42654 2.40308 2.38139 2.36173 2.34328 2.32555 2.30818 2.29103 2.27403 2.25717 2.24052 2.22401 2.20773 2.19156 2.17573 2.16021 2.14516 2.13052 2.11646 2.10292 2.09006 2.07773 2.06612 2.05507 2.04478 2.03518 2.02647 2.01853 2.01156 2.00536 1.99982 1.99512 1.99116 1.98775 1.98512 1.9828 1.98094 1.97935 1.97811 1.97694 1.97578 1.97454 1.97301 1.97135 1.96921 1.96693 1.96414 1.96121 1.95787 1.95437 1.95063 1.9467 1.94264 1.93836 1.93404 1.92951 1.92507 1.92042 1.91601 1.91141 1.90716 1.90283 1.89886 1.89501 1.89147 1.88832 1.88545 1.88317 1.8811 1.8798 1.87899 1.87894 1.87917 1.87958 1.88091 1.88351 1.88625 1.88941 1.89256 1.8953 1.8981 1.89989 1.9017 1.90244 1.90278 1.90255 1.90206 1.90145 1.90021 1.89852 1.89633 1.89388 1.89143 1.88864 1.88669 1.88427 2.54601 2.52454 2.50389 2.48208 2.45886 2.43562 2.4128 2.39038 2.36876 2.34818 2.32853 2.30965 2.29137 2.27351 2.25587 2.23844 2.22104 2.20405 2.18718 2.17105 2.15543 2.14062 2.1264 2.11285 2.09977 2.08721 2.07528 2.06378 2.05322 2.04313 2.03399 2.02545 2.01776 2.01065 2.00428 1.99835 1.99322 1.9889 1.98531 1.98239 1.98024 1.97849 1.97716 1.97601 1.97494 1.97385 1.97253 1.9711 1.96923 1.9672 1.9647 1.962 1.95891 1.95559 1.95205 1.94824 1.94429 1.94009 1.93583 1.93134 1.92692 1.92231 1.91793 1.9134 1.90922 1.90502 1.90121 1.8976 1.89436 1.89164 1.88919 1.88742 1.88594 1.88532 1.88503 1.88523 1.8857 1.88745 1.88997 1.89287 1.89578 1.89896 1.90143 1.90405 1.90573 1.90714 1.90799 1.90789 1.90754 1.90717 1.90632 1.90534 1.90348 1.9014 1.89899 1.89637 1.89378 1.89091 1.88888 1.88648 2.57274 2.551 2.53014 2.50944 2.48799 2.46608 2.44395 2.42178 2.40001 2.37871 2.35801 2.33796 2.31826 2.29907 2.28009 2.26168 2.24356 2.22606 2.20895 2.19261 2.17663 2.16145 2.14642 2.1323 2.11854 2.1058 2.09356 2.08222 2.07128 2.06095 2.05097 2.04155 2.0325 2.02425 2.01653 2.00978 2.00374 1.99891 1.99488 1.99176 1.98934 1.98741 1.98599 1.98476 1.98375 1.98272 1.98158 1.98036 1.97875 1.97707 1.9748 1.97251 1.96959 1.96671 1.96319 1.9597 1.95564 1.95158 1.9471 1.9426 1.93791 1.93319 1.92855 1.92382 1.91949 1.91512 1.9113 1.90763 1.90462 1.90187 1.89988 1.89816 1.89734 1.89664 1.89672 1.89747 1.89936 1.90167 1.90462 1.90723 1.9103 1.91263 1.91493 1.91664 1.9176 1.91844 1.91817 1.9177 1.91697 1.91631 1.91486 1.91337 1.91104 1.90882 1.90623 1.90358 1.9009 1.89807 1.89599 1.89373 2.587 2.56768 2.54858 2.52908 2.50946 2.48943 2.46943 2.44918 2.42902 2.40881 2.3889 2.36897 2.34963 2.33047 2.31195 2.29368 2.27601 2.25858 2.24169 2.22523 2.20933 2.19414 2.17947 2.16541 2.15175 2.13841 2.12535 2.11249 2.10013 2.08791 2.07653 2.06575 2.05592 2.04691 2.0385 2.03122 2.02434 2.01858 2.01322 2.00879 2.00488 2.00165 1.99914 1.99688 1.9954 1.99378 1.99286 1.99144 1.99055 1.98906 1.98774 1.98592 1.984 1.98165 1.97904 1.97608 1.97273 1.96929 1.96534 1.96157 1.95727 1.9532 1.94888 1.9446 1.9407 1.93634 1.93322 1.92926 1.92711 1.92415 1.92291 1.921 1.92054 1.91993 1.92078 1.92224 1.92381 1.9261 1.92802 1.93027 1.93205 1.93359 1.93473 1.93523 1.93537 1.93489 1.93381 1.93313 1.93176 1.93065 1.92835 1.92648 1.92374 1.92137 1.91851 1.91574 1.91288 1.90996 1.90778 1.90547 2.59743 2.57801 2.55924 2.54095 2.52324 2.50551 2.48715 2.46854 2.44928 2.43014 2.41109 2.39244 2.37413 2.35636 2.33873 2.32161 2.30462 2.28802 2.27167 2.25561 2.23977 2.22432 2.20892 2.19391 2.17898 2.16456 2.15041 2.13687 2.12378 2.11121 2.09933 2.08737 2.0763 2.0653 2.05549 2.046 2.03736 2.02952 2.02265 2.01702 2.01223 2.00867 2.0057 2.0036 2.00193 2.00066 1.99975 1.99878 1.99807 1.99696 1.99614 1.99465 1.99342 1.99144 1.98965 1.98724 1.98483 1.98223 1.97915 1.97649 1.97274 1.97 1.96591 1.96321 1.95929 1.95692 1.95356 1.95178 1.94927 1.94803 1.94647 1.94549 1.94569 1.94646 1.94795 1.94909 1.95107 1.95247 1.9541 1.95521 1.956 1.95639 1.9562 1.95578 1.95441 1.95331 1.95153 1.95046 1.94833 1.94668 1.94401 1.9418 1.9391 1.9365 1.93376 1.93088 1.92812 1.92519 1.92303 1.9208 2.61579 2.59904 2.58266 2.56524 2.54684 2.52743 2.50751 2.48766 2.46809 2.44882 2.43011 2.41166 2.39372 2.37614 2.35889 2.34202 2.32535 2.3088 2.29243 2.27603 2.25991 2.24405 2.22851 2.21331 2.19844 2.1837 2.16913 2.15458 2.14006 2.12571 2.11175 2.09818 2.08576 2.07382 2.06362 2.054 2.04616 2.03897 2.03286 2.02744 2.0226 2.0183 2.01451 2.01128 2.00847 2.00632 2.00432 2.00298 2.00149 2.00052 1.99933 1.99829 1.99703 1.99563 1.99409 1.9925 1.99059 1.98879 1.98646 1.98438 1.98175 1.97947 1.97672 1.97453 1.97193 1.97022 1.96806 1.96716 1.96533 1.9649 1.96419 1.96492 1.96578 1.9675 1.96885 1.97107 1.97257 1.97452 1.97586 1.97687 1.97755 1.97744 1.97716 1.97609 1.97492 1.97359 1.97202 1.9709 1.96863 1.96695 1.96412 1.96223 1.9592 1.95688 1.95376 1.95106 1.94798 1.94501 1.94267 1.94022 2.62655 2.61153 2.59707 2.58133 2.56425 2.54656 2.52824 2.50981 2.49148 2.47329 2.45565 2.43829 2.42141 2.40459 2.38783 2.37088 2.35406 2.33718 2.32074 2.3045 2.28859 2.27293 2.2572 2.24135 2.22527 2.20892 2.1926 2.17649 2.16081 2.1461 2.13212 2.11933 2.10741 2.09648 2.08619 2.07655 2.06732 2.05842 2.04989 2.04211 2.03467 2.02825 2.02234 2.01754 2.01326 2.00985 2.00698 2.0048 2.00302 2.00174 2.00057 1.99975 1.99896 1.99851 1.9978 1.99729 1.99629 1.99542 1.99396 1.9927 1.99084 1.98923 1.98725 1.98547 1.98352 1.98189 1.97976 1.97872 1.9769 1.97702 1.97733 1.9782 1.97936 1.98095 1.98329 1.98482 1.98729 1.98857 1.99019 1.99135 1.99175 1.99253 1.99229 1.99169 1.99118 1.99048 1.98984 1.98839 1.98713 1.98505 1.98282 1.98075 1.9778 1.97577 1.97231 1.97032 1.96664 1.96479 1.96199 1.96093 2.63305 2.61735 2.6033 2.58837 2.57245 2.55558 2.53829 2.52096 2.50401 2.48756 2.47136 2.45522 2.43885 2.42254 2.40626 2.3903 2.37475 2.35932 2.344 2.32833 2.31197 2.29516 2.27767 2.25999 2.24238 2.22508 2.20858 2.19274 2.17781 2.1636 2.14997 2.13685 2.12406 2.11167 2.09956 2.08794 2.07678 2.06635 2.05648 2.04746 2.03916 2.03192 2.02524 2.01942 2.01421 2.00993 2.00627 2.0034 2.00129 1.9999 1.99904 1.99884 1.99888 1.99904 1.99918 1.99914 1.99899 1.99853 1.99789 1.99651 1.99546 1.99396 1.99304 1.99166 1.99067 1.99003 1.98947 1.9898 1.99059 1.99204 1.99415 1.99613 1.99914 2.00189 2.00493 2.00819 2.01064 2.0135 2.01532 2.01696 2.01808 2.01852 2.01825 2.01757 2.01708 2.01599 2.01502 2.01283 2.01137 2.00841 2.00668 2.00341 2.00149 1.99823 1.99607 1.99324 1.99079 1.98879 1.98668 1.98607 2.64537 2.62938 2.61545 2.60094 2.58555 2.56947 2.55314 2.53678 2.52035 2.50372 2.48726 2.47106 2.45522 2.43983 2.42469 2.40959 2.39403 2.37794 2.36095 2.34336 2.32506 2.30694 2.28873 2.27125 2.25429 2.23786 2.22206 2.2065 2.19131 2.17631 2.16154 2.14714 2.13311 2.11952 2.10661 2.09426 2.08261 2.07158 2.06123 2.05153 2.04252 2.03407 2.02636 2.01931 2.0132 2.00798 2.00372 2.00047 1.99827 1.99693 1.99635 1.99642 1.99668 1.99724 1.99763 1.99773 1.99769 1.99749 1.99695 1.99623 1.99539 1.99495 1.99503 1.9953 1.996 1.9974 1.99958 2.00197 2.00598 2.00924 2.01408 2.01822 2.02265 2.02717 2.03077 2.03443 2.03733 2.03934 2.04131 2.04194 2.04263 2.04225 2.04143 2.04063 2.03967 2.03819 2.03702 2.03457 2.03305 2.03022 2.02858 2.02566 2.02411 2.02111 2.01955 2.0164 2.01478 2.01158 2.01026 2.00757 2.64907 2.63462 2.62223 2.60882 2.59412 2.57867 2.56252 2.54628 2.53016 2.51414 2.49859 2.48355 2.46877 2.45429 2.43934 2.42382 2.40729 2.39014 2.37227 2.35451 2.33656 2.31923 2.30199 2.28523 2.26863 2.252 2.23572 2.21933 2.20325 2.18745 2.17191 2.157 2.1424 2.12851 2.11507 2.10232 2.09003 2.07834 2.06726 2.05664 2.04666 2.03705 2.02859 2.02067 2.01399 2.00837 2.00393 2.00084 1.99846 1.99703 1.99626 1.99593 1.99596 1.99611 1.99617 1.99601 1.99569 1.99575 1.99588 1.99622 1.9967 1.99765 1.99927 2.00132 2.00429 2.00735 2.01147 2.01565 2.02051 2.02582 2.03064 2.03637 2.04079 2.04568 2.04952 2.05271 2.05555 2.05715 2.05861 2.05918 2.05916 2.0586 2.05751 2.05668 2.05526 2.05428 2.05231 2.05095 2.04896 2.04724 2.04558 2.04325 2.04183 2.03884 2.03709 2.03332 2.03113 2.02655 2.02441 2.0195 2.65751 2.64289 2.62966 2.61519 2.59948 2.58326 2.56665 2.55001 2.53377 2.51808 2.50306 2.48867 2.47405 2.45917 2.44363 2.42741 2.41082 2.394 2.37718 2.36044 2.34375 2.327 2.31017 2.29313 2.27623 2.25907 2.24237 2.22556 2.20934 2.19339 2.17781 2.16283 2.1482 2.1341 2.12053 2.10724 2.09463 2.08235 2.07062 2.0591 2.04847 2.03831 2.02929 2.02117 2.01436 2.00841 2.00364 1.99986 1.99672 1.99456 1.99275 1.99154 1.99092 1.99056 1.99004 1.99009 1.99055 1.99122 1.99255 1.99413 1.99628 1.99868 2.00166 2.00515 2.00914 2.01374 2.01866 2.02418 2.02973 2.03554 2.04123 2.04656 2.05157 2.05595 2.05978 2.06262 2.0654 2.06667 2.0681 2.0687 2.0687 2.06831 2.06777 2.06733 2.06673 2.06604 2.06479 2.06401 2.06242 2.0614 2.05926 2.05771 2.05485 2.05208 2.04875 2.0444 2.04084 2.03518 2.03245 2.02674 2.66317 2.64975 2.63749 2.624 2.60879 2.59243 2.57564 2.55859 2.54211 2.52596 2.51005 2.49434 2.4784 2.46228 2.44616 2.4296 2.41325 2.39667 2.38028 2.36369 2.34706 2.33008 2.31318 2.296 2.27928 2.26236 2.24613 2.22974 2.21395 2.1982 2.18293 2.16793 2.1534 2.13907 2.1254 2.11162 2.09859 2.08548 2.07303 2.06094 2.0495 2.03895 2.02936 2.02088 2.01336 2.0068 2.00108 1.99626 1.99214 1.98894 1.98626 1.98444 1.98347 1.98309 1.98283 1.98313 1.98418 1.98555 1.98789 1.99022 1.99334 1.99692 2.00098 2.00555 2.01051 2.01607 2.02179 2.02805 2.03407 2.04036 2.04618 2.05158 2.05673 2.06069 2.06465 2.06716 2.06984 2.07099 2.07252 2.07302 2.07335 2.07334 2.07341 2.07357 2.07375 2.0736 2.0732 2.07245 2.07125 2.07004 2.06785 2.06589 2.06268 2.05969 2.05561 2.05161 2.04738 2.04281 2.0398 2.03569 2.66048 2.64764 2.6361 2.62313 2.6084 2.59228 2.57594 2.55901 2.54277 2.52665 2.51099 2.49566 2.48049 2.46537 2.4503 2.43482 2.41919 2.40291 2.38627 2.36905 2.35178 2.33433 2.31723 2.30018 2.28352 2.26689 2.25071 2.23443 2.2189 2.20315 2.18835 2.17326 2.15906 2.14456 2.13079 2.11672 2.10329 2.08982 2.07698 2.06486 2.05329 2.04282 2.03259 2.0234 2.01471 2.00698 1.99998 1.99387 1.98856 1.98424 1.98089 1.97858 1.97758 1.97761 1.97773 1.97834 1.97972 1.98253 1.98501 1.98887 1.9922 1.99678 2.00114 2.00652 2.01201 2.01817 2.02449 2.03115 2.03765 2.04419 2.05017 2.05583 2.06088 2.06501 2.069 2.07152 2.07434 2.07569 2.07744 2.07805 2.07885 2.07917 2.07945 2.08015 2.08028 2.08008 2.07951 2.0785 2.0772 2.07526 2.07296 2.07024 2.06703 2.06354 2.05974 2.05578 2.05194 2.04793 2.04523 2.04194 2.66937 2.65511 2.64257 2.6284 2.6129 2.59554 2.57818 2.56032 2.54348 2.5274 2.51221 2.49834 2.48434 2.4706 2.45567 2.44 2.42336 2.40601 2.38825 2.37027 2.35251 2.33469 2.31737 2.30015 2.28325 2.26669 2.25051 2.23454 2.21934 2.20389 2.18956 2.17461 2.16083 2.14629 2.13269 2.11866 2.10524 2.09202 2.0792 2.0672 2.0553 2.04424 2.03339 2.02312 2.01357 2.00459 1.99661 1.98951 1.98341 1.97858 1.97514 1.97256 1.97232 1.97265 1.97336 1.97431 1.97653 1.97984 1.98319 1.9874 1.99164 1.99659 2.00184 2.00756 2.01381 2.02029 2.02716 2.03393 2.04083 2.04733 2.05361 2.05935 2.06446 2.06904 2.07302 2.07614 2.07931 2.08124 2.08344 2.08481 2.08601 2.08654 2.08754 2.08788 2.08769 2.08721 2.08593 2.08472 2.0826 2.08014 2.07751 2.07421 2.07102 2.06711 2.06362 2.05933 2.05587 2.05161 2.04914 2.04559 2.66717 2.65395 2.64153 2.62644 2.61094 2.59417 2.57852 2.56279 2.54809 2.53391 2.5197 2.50564 2.49017 2.47465 2.45809 2.44146 2.42417 2.40688 2.38924 2.37161 2.35408 2.33628 2.31911 2.30165 2.28482 2.2681 2.25192 2.23584 2.2205 2.20503 2.19061 2.17568 2.16205 2.14771 2.13456 2.12107 2.10832 2.09585 2.08322 2.07104 2.05836 2.04637 2.03462 2.02335 2.01294 2.0032 1.99439 1.98698 1.98056 1.97562 1.97208 1.96966 1.96927 1.96963 1.97045 1.97122 1.9734 1.97667 1.98058 1.985 1.98999 1.9954 2.0013 2.00752 2.01409 2.02078 2.02775 2.03455 2.04142 2.04788 2.05422 2.05996 2.06561 2.07055 2.07533 2.07957 2.08324 2.08657 2.08927 2.09133 2.09276 2.09394 2.09444 2.09434 2.09372 2.09278 2.09056 2.08898 2.08574 2.08326 2.07999 2.07638 2.07326 2.06908 2.06597 2.06135 2.05837 2.05366 2.05147 2.04743 2.67137 2.65695 2.64268 2.62655 2.61113 2.59561 2.58201 2.56837 2.55452 2.53982 2.52385 2.5078 2.49062 2.47395 2.45675 2.44005 2.42302 2.40617 2.38879 2.37136 2.35375 2.33568 2.31825 2.30047 2.28352 2.26664 2.25059 2.23476 2.21993 2.20507 2.19142 2.17737 2.16481 2.15151 2.13912 2.12609 2.11284 2.09962 2.08559 2.07233 2.05863 2.04551 2.03284 2.02068 2.00966 1.99978 1.99082 1.98351 1.97713 1.97216 1.96847 1.96599 1.96517 1.96546 1.96616 1.96679 1.96873 1.97239 1.97668 1.9818 1.98763 1.99375 2.00063 2.00732 2.01461 2.0214 2.02848 2.03511 2.04176 2.04799 2.05419 2.05995 2.06574 2.07107 2.07628 2.08117 2.0853 2.08958 2.09235 2.0952 2.09672 2.09799 2.0983 2.09813 2.09728 2.0962 2.09373 2.0921 2.08871 2.0867 2.08304 2.08014 2.07722 2.07287 2.07041 2.06538 2.06272 2.05749 2.05521 2.05038 2.6702 2.65503 2.64119 2.62705 2.61444 2.60236 2.59064 2.57741 2.56232 2.54588 2.52771 2.50986 2.49159 2.47448 2.45757 2.44109 2.42412 2.40687 2.3888 2.37055 2.35206 2.33334 2.31507 2.29658 2.27896 2.26173 2.24588 2.23088 2.21759 2.20486 2.19355 2.18157 2.17032 2.15752 2.14475 2.13096 2.11638 2.1019 2.0863 2.07163 2.05676 2.04284 2.03001 2.01786 2.00706 1.99724 1.9885 1.98101 1.97466 1.96926 1.96528 1.96233 1.96096 1.96106 1.96143 1.96181 1.96358 1.96714 1.97179 1.97751 1.98389 1.99098 1.99846 2.00601 2.01379 2.02101 2.02823 2.03491 2.04122 2.04754 2.05322 2.05921 2.06462 2.07039 2.07539 2.08091 2.08507 2.08981 2.09277 2.09599 2.09757 2.09915 2.09978 2.09967 2.09903 2.09816 2.09615 2.09477 2.09188 2.0902 2.08693 2.08449 2.08183 2.07758 2.07525 2.07021 2.06744 2.06185 2.0594 2.05387 2.67128 2.65295 2.63793 2.62524 2.61377 2.60327 2.59132 2.57792 2.56216 2.54548 2.52733 2.51014 2.49303 2.4771 2.46129 2.44548 2.42882 2.41196 2.39411 2.37647 2.35817 2.33983 2.3213 2.30277 2.28474 2.26744 2.25134 2.23627 2.22264 2.20937 2.19723 2.18427 2.17204 2.15833 2.14485 2.13046 2.11571 2.10145 2.08655 2.07299 2.05934 2.04656 2.03477 2.02336 2.01312 2.00353 1.99485 1.98673 1.98004 1.97356 1.96881 1.96471 1.96264 1.96161 1.9616 1.96156 1.96293 1.96613 1.97092 1.97675 1.98339 1.99075 1.99826 2.006 2.01362 2.02073 2.0278 2.03405 2.04034 2.0462 2.05206 2.05786 2.06381 2.06954 2.07548 2.08097 2.08611 2.09087 2.09449 2.09747 2.09952 2.10081 2.10099 2.10076 2.09973 2.09855 2.09594 2.09428 2.0909 2.08904 2.08538 2.08283 2.07977 2.07534 2.07282 2.06743 2.06453 2.05869 2.05611 2.05025 2.67385 2.65253 2.63621 2.62382 2.61258 2.60211 2.58951 2.57561 2.5594 2.54278 2.52511 2.50878 2.49265 2.47734 2.46208 2.44652 2.43038 2.41401 2.39676 2.37947 2.36117 2.34268 2.32374 2.30506 2.28693 2.26981 2.25396 2.23912 2.22551 2.21205 2.19934 2.18571 2.1726 2.15814 2.14411 2.12949 2.11489 2.10118 2.087 2.07457 2.06199 2.05053 2.03973 2.02942 2.01959 2.01056 2.00177 1.99348 1.98648 1.97932 1.97413 1.96928 1.96678 1.96508 1.9648 1.96409 1.96525 1.96815 1.97265 1.9784 1.98483 1.99213 1.99947 2.00713 2.01455 2.02156 2.0283 2.0345 2.04047 2.04632 2.05198 2.058 2.06392 2.07027 2.07641 2.08239 2.0882 2.09291 2.09694 2.09998 2.10178 2.10247 2.10242 2.10186 2.10009 2.09837 2.09485 2.09277 2.08863 2.08645 2.08226 2.0796 2.07598 2.07172 2.069 2.06349 2.06067 2.05499 2.05249 2.04696 2.44289 2.74429 3.00014 3.27267 3.23119 3.2043 3.19166 3.18769 3.18092 3.17293 3.16427 3.16006 3.15912 3.15849 3.15839 3.15944 3.16297 3.16757 3.17345 3.17972 3.18628 3.19131 3.19663 3.20062 3.20289 3.20383 3.20413 3.2021 3.19952 3.19404 3.18853 3.18208 3.17639 3.17154 3.16566 3.15712 3.15061 3.13962 3.13226 3.12237 3.11433 3.10332 3.09375 3.0815 3.07164 3.0591 3.04707 3.03483 3.02382 3.01082 3.00008 2.98687 2.97556 2.96255 2.95093 2.93819 2.92602 2.91362 2.90136 2.88871 2.87665 2.86383 2.85205 2.8394 2.82774 2.81531 2.80378 2.79154 2.7802 2.76818 2.75702 2.7453 2.73425 2.72291 2.71194 2.70103 2.69027 2.67974 2.66936 2.65922 2.64931 2.63958 2.63027 2.62095 2.61238 2.60376 2.59586 2.58841 2.5814 2.57529 2.57 2.56542 2.56261 2.56065 2.5601 2.55993 2.56011 2.56106 2.56433 2.5621 2.34231 2.51425 2.68819 3.02578 3.20123 3.28156 3.44259 3.52834 3.50945 3.50627 3.50226 3.50318 3.50348 3.49882 3.4906 3.48336 3.47054 3.45511 3.43579 3.41693 3.39788 3.37948 3.36808 3.3522 3.3356 3.31329 3.29532 3.26988 3.24981 3.22742 3.20291 3.18461 3.15988 3.14152 3.11658 3.09831 3.07577 3.05643 3.03487 3.01729 2.99741 2.98017 2.96223 2.94384 2.92613 2.90846 2.89192 2.87547 2.85964 2.84407 2.82839 2.81362 2.79826 2.78414 2.76936 2.75533 2.74136 2.72747 2.71412 2.70065 2.68781 2.67488 2.66251 2.6501 2.63813 2.62616 2.6146 2.60301 2.59176 2.58059 2.56959 2.55892 2.54819 2.53801 2.52762 2.51789 2.50792 2.49856 2.48908 2.48 2.47108 2.4623 2.45395 2.44576 2.4379 2.43059 2.42343 2.41707 2.41112 2.40578 2.40147 2.39774 2.39541 2.39424 2.39407 2.39417 2.39443 2.39548 2.39886 2.39662 2.32358 2.35837 2.458 2.55413 2.72927 2.89941 3.0536 3.25319 3.36932 3.44293 3.47869 3.52212 3.54467 3.56832 3.57138 3.56379 3.54697 3.51864 3.48281 3.44759 3.40949 3.37109 3.33246 3.28882 3.24753 3.20296 3.16179 3.11584 3.07554 3.03343 2.99568 2.9583 2.92371 2.89043 2.85947 2.82952 2.80153 2.77502 2.75034 2.7276 2.70599 2.68701 2.6676 2.65023 2.63144 2.61607 2.59902 2.58514 2.56929 2.55616 2.54147 2.52882 2.51517 2.50304 2.49016 2.4788 2.4666 2.45584 2.44429 2.4341 2.4231 2.41337 2.40292 2.3935 2.38357 2.37438 2.3649 2.35595 2.34681 2.33818 2.32931 2.32104 2.31244 2.30444 2.29618 2.28831 2.28045 2.27273 2.26526 2.2578 2.25066 2.24364 2.23682 2.23035 2.22398 2.21802 2.21246 2.20707 2.20258 2.19828 2.19486 2.19235 2.19053 2.19038 2.19057 2.19106 2.19168 2.19317 2.19741 2.19601 2.32609 2.29737 2.3313 2.36647 2.43799 2.5217 2.61749 2.7097 2.8142 2.91099 2.98573 3.03886 3.08331 3.10357 3.11758 3.11629 3.11003 3.0963 3.0743 3.04737 3.01232 2.97567 2.93442 2.89438 2.85307 2.81449 2.77669 2.74163 2.7091 2.67852 2.65116 2.62498 2.60223 2.58065 2.56196 2.54522 2.53019 2.51655 2.50375 2.49237 2.48135 2.47193 2.46213 2.45288 2.44282 2.43379 2.42449 2.41596 2.40699 2.3986 2.38975 2.38143 2.37265 2.3644 2.35571 2.34755 2.33898 2.3309 2.3225 2.31445 2.3062 2.29814 2.29002 2.28196 2.27393 2.26594 2.25794 2.25008 2.24211 2.23438 2.22654 2.21884 2.21126 2.20356 2.19625 2.18872 2.18154 2.17437 2.16715 2.16038 2.15332 2.14678 2.14022 2.13384 2.128 2.12203 2.11687 2.11182 2.1073 2.10365 2.1002 2.09821 2.0967 2.09682 2.09719 2.09798 2.09904 2.10098 2.10608 2.106 2.3333 2.29815 2.28105 2.2947 2.3174 2.35533 2.39708 2.44331 2.48515 2.52453 2.55617 2.58401 2.60194 2.61614 2.61908 2.61678 2.61101 2.60148 2.59054 2.57556 2.55985 2.54356 2.52764 2.51259 2.49887 2.48627 2.47493 2.46473 2.45567 2.4476 2.44046 2.43396 2.42813 2.42278 2.41771 2.41309 2.40824 2.40386 2.39868 2.39413 2.3888 2.38448 2.37912 2.37393 2.36745 2.36133 2.35473 2.34857 2.34182 2.33546 2.3284 2.32179 2.31451 2.30766 2.30031 2.29325 2.286 2.2788 2.27167 2.26439 2.25728 2.24998 2.24276 2.23546 2.22814 2.2208 2.21347 2.20604 2.19882 2.19132 2.18417 2.17674 2.1695 2.16223 2.15478 2.1477 2.14024 2.13333 2.12615 2.11939 2.11265 2.10602 2.09985 2.09351 2.08782 2.08222 2.07694 2.07244 2.06792 2.06458 2.06149 2.05957 2.05868 2.05889 2.05952 2.06011 2.06199 2.06441 2.06952 2.07052 2.34077 2.29968 2.28164 2.26896 2.27539 2.28786 2.30343 2.32084 2.33592 2.34874 2.3594 2.36687 2.37391 2.37798 2.37979 2.37862 2.37594 2.3742 2.37259 2.36922 2.3661 2.36215 2.35892 2.35606 2.35409 2.3525 2.35132 2.35054 2.34993 2.34964 2.34925 2.34897 2.34836 2.34783 2.34666 2.34572 2.34367 2.34214 2.33893 2.33658 2.33265 2.32997 2.32592 2.32211 2.31683 2.31161 2.30603 2.30039 2.29473 2.28876 2.28284 2.27652 2.27024 2.26363 2.25701 2.25024 2.24336 2.23651 2.22951 2.22255 2.21551 2.20841 2.20142 2.19421 2.18727 2.18006 2.17308 2.16605 2.15897 2.15216 2.14504 2.13835 2.13129 2.12459 2.11782 2.11109 2.10459 2.09787 2.09159 2.08512 2.07895 2.07297 2.06696 2.06157 2.05598 2.05115 2.04637 2.04218 2.03854 2.03531 2.03314 2.03141 2.0314 2.03168 2.03235 2.03328 2.03567 2.03883 2.04354 2.04491 2.34728 2.30931 2.2835 2.27026 2.2619 2.26363 2.26507 2.26766 2.26883 2.26931 2.26806 2.26681 2.26611 2.26617 2.26617 2.26575 2.26487 2.26401 2.26496 2.26613 2.26736 2.2682 2.2697 2.27083 2.27277 2.27419 2.27638 2.27798 2.28006 2.28133 2.28279 2.28359 2.28402 2.28393 2.28357 2.28287 2.28133 2.27991 2.27733 2.27499 2.27189 2.26946 2.2662 2.26289 2.25837 2.25379 2.24867 2.24368 2.23834 2.23314 2.22757 2.22207 2.21622 2.21029 2.20422 2.1979 2.19172 2.18518 2.17886 2.17222 2.16565 2.15898 2.15218 2.14545 2.13857 2.13174 2.12496 2.11796 2.11128 2.1042 2.09761 2.0907 2.08419 2.07758 2.07112 2.06481 2.05843 2.05242 2.0462 2.04049 2.03457 2.02915 2.02373 2.01861 2.01389 2.00922 2.00533 2.00146 1.99856 1.99593 1.99427 1.99349 1.99368 1.99426 1.99485 1.99617 1.99896 2.00247 2.00723 2.00836 2.35146 2.32063 2.29584 2.28052 2.26512 2.25763 2.252 2.24543 2.23923 2.23181 2.22481 2.21829 2.21325 2.2097 2.20732 2.2062 2.20497 2.20409 2.20426 2.20579 2.20769 2.21053 2.21247 2.21523 2.21745 2.22035 2.22307 2.22585 2.22848 2.23064 2.23292 2.23434 2.23607 2.23672 2.23775 2.23767 2.23741 2.2368 2.23549 2.23391 2.2318 2.22979 2.22731 2.22435 2.22051 2.21615 2.21141 2.20635 2.20119 2.19569 2.19024 2.18441 2.17861 2.17254 2.16638 2.1602 2.15377 2.14752 2.141 2.1346 2.12809 2.12146 2.115 2.10818 2.10174 2.09486 2.08832 2.0815 2.0749 2.06824 2.06155 2.05501 2.04831 2.0419 2.0353 2.02898 2.02266 2.01642 2.01049 2.00444 1.99892 1.99329 1.98818 1.98319 1.97856 1.97441 1.9705 1.96735 1.96449 1.96266 1.96121 1.96124 1.96157 1.96199 1.96293 1.96551 1.96827 1.97255 1.97691 1.97844 2.36285 2.33241 2.30824 2.28881 2.2779 2.26174 2.24945 2.23865 2.22655 2.21571 2.20454 2.19548 2.18728 2.18157 2.177 2.17471 2.17256 2.17154 2.16994 2.17 2.17035 2.1722 2.17446 2.17655 2.17893 2.18131 2.18375 2.18627 2.18851 2.19096 2.19292 2.19509 2.19648 2.19803 2.19866 2.1994 2.19934 2.19892 2.19799 2.1966 2.19482 2.19302 2.19096 2.18831 2.18505 2.18119 2.17705 2.1726 2.16793 2.16317 2.15819 2.1531 2.14785 2.14234 2.13685 2.13093 2.12521 2.11904 2.11307 2.10677 2.10052 2.09416 2.08768 2.08125 2.07461 2.06816 2.0616 2.05515 2.04874 2.04227 2.03601 2.02954 2.02339 2.01706 2.01094 2.00489 1.99879 1.99308 1.98714 1.98177 1.97621 1.97128 1.96628 1.96188 1.95769 1.954 1.95082 1.94811 1.94621 1.94482 1.9446 1.9449 1.94535 1.94629 1.94794 1.95125 1.95453 1.95874 1.96292 1.96425 2.38009 2.35223 2.32602 2.30483 2.28522 2.27107 2.25501 2.23925 2.22501 2.21077 2.19851 2.18657 2.17702 2.16835 2.16213 2.15703 2.15357 2.15061 2.14848 2.14691 2.14582 2.14582 2.14641 2.1481 2.14971 2.15177 2.15367 2.15594 2.15818 2.16063 2.16294 2.16501 2.1669 2.16826 2.16953 2.17012 2.17065 2.17049 2.16986 2.16886 2.16739 2.16603 2.16435 2.16222 2.15954 2.15617 2.15264 2.14854 2.14434 2.13984 2.13507 2.13031 2.12507 2.12002 2.11445 2.10904 2.10324 2.09743 2.09145 2.08526 2.07912 2.07267 2.06637 2.05979 2.0534 2.04689 2.04039 2.034 2.02746 2.02121 2.01471 2.0086 2.00221 1.99623 1.99005 1.9842 1.9783 1.97259 1.96707 1.96158 1.95652 1.95142 1.94693 1.94249 1.93877 1.9353 1.93255 1.93037 1.92892 1.92832 1.92851 1.92891 1.92963 1.93118 1.93374 1.93714 1.94093 1.9443 1.94847 1.94911 2.39472 2.37215 2.34593 2.32257 2.29953 2.27894 2.26059 2.24353 2.22772 2.21219 2.19822 2.18519 2.17392 2.16375 2.1554 2.14821 2.14268 2.13782 2.13412 2.13052 2.1283 2.12625 2.12539 2.1254 2.12617 2.12795 2.12947 2.13182 2.13362 2.13612 2.13789 2.14009 2.14157 2.14332 2.14436 2.14543 2.14587 2.14602 2.14558 2.14465 2.14357 2.14234 2.14098 2.13926 2.13681 2.13403 2.13065 2.12706 2.12307 2.1188 2.11436 2.10954 2.10467 2.09944 2.09417 2.08865 2.08305 2.07731 2.07142 2.06552 2.05939 2.05333 2.04708 2.04098 2.03474 2.02858 2.02243 2.01625 2.0102 2.00407 1.9981 1.99207 1.98618 1.9803 1.9745 1.96888 1.96322 1.95796 1.95256 1.94775 1.94276 1.93845 1.93412 1.93051 1.92711 1.92444 1.92226 1.92086 1.92018 1.92034 1.92072 1.92137 1.92299 1.92495 1.92867 1.93156 1.93558 1.93797 1.94201 1.94208 2.40603 2.38688 2.36475 2.34182 2.31945 2.29717 2.27612 2.25627 2.23814 2.22142 2.20627 2.19183 2.17888 2.1669 2.15653 2.14725 2.13959 2.13284 2.12737 2.12273 2.11905 2.11584 2.11408 2.11251 2.1122 2.11229 2.11321 2.11459 2.11609 2.11792 2.11958 2.12144 2.12291 2.12467 2.12569 2.12707 2.12743 2.12818 2.1279 2.12737 2.12657 2.12554 2.1245 2.12275 2.12057 2.11775 2.11451 2.11104 2.10703 2.10302 2.09845 2.09396 2.08904 2.08412 2.07899 2.07368 2.06836 2.06268 2.05712 2.05114 2.04527 2.0392 2.0331 2.02703 2.02075 2.01471 2.00834 2.00231 1.99602 1.98997 1.98388 1.97782 1.97198 1.96599 1.96039 1.95461 1.9493 1.94387 1.93898 1.93404 1.92971 1.9254 1.92185 1.91846 1.91593 1.91374 1.91246 1.91179 1.91194 1.91225 1.91293 1.91417 1.91697 1.91924 1.92312 1.92547 1.92893 1.93048 1.93364 1.93313 2.41449 2.39474 2.37333 2.35095 2.32908 2.3079 2.28765 2.2685 2.25041 2.23352 2.2176 2.2029 2.18892 2.17603 2.16399 2.15319 2.14348 2.13503 2.12762 2.12119 2.11581 2.1115 2.10793 2.1052 2.10355 2.10229 2.10193 2.10202 2.10279 2.10388 2.10518 2.10642 2.10765 2.10868 2.10963 2.11022 2.11066 2.11068 2.11022 2.10961 2.10842 2.10737 2.10606 2.10428 2.10216 2.09929 2.0964 2.09281 2.08921 2.08501 2.08073 2.07606 2.07126 2.06631 2.06115 2.05601 2.05061 2.04525 2.03968 2.03409 2.02847 2.02273 2.01707 2.01121 2.00548 1.99954 1.99374 1.98784 1.982 1.97625 1.97043 1.96491 1.95921 1.95393 1.94843 1.94341 1.93822 1.93356 1.9288 1.92459 1.92042 1.91691 1.91367 1.91111 1.90912 1.90783 1.90737 1.90757 1.90797 1.9087 1.91066 1.91246 1.91601 1.9186 1.92196 1.92396 1.92647 1.92748 1.92975 1.92866 2.42542 2.40465 2.38275 2.36074 2.3393 2.31882 2.29945 2.28106 2.26372 2.2472 2.23141 2.21637 2.20191 2.18815 2.17502 2.16281 2.15147 2.14129 2.13196 2.12381 2.11638 2.11018 2.10478 2.10048 2.09674 2.09414 2.09191 2.09066 2.08963 2.08939 2.08948 2.08992 2.09042 2.09087 2.09119 2.09133 2.09133 2.09109 2.09052 2.08972 2.08853 2.08757 2.0861 2.08464 2.08231 2.07992 2.07694 2.07383 2.07032 2.06652 2.06252 2.05816 2.05377 2.04901 2.04428 2.03926 2.03415 2.02892 2.02344 2.01811 2.01245 2.00707 2.00136 1.99587 1.9902 1.98454 1.97893 1.97313 1.96759 1.96176 1.95635 1.95061 1.94541 1.93992 1.93499 1.92989 1.92532 1.92076 1.91666 1.91274 1.90933 1.90636 1.90389 1.90213 1.90091 1.90061 1.90088 1.90123 1.90216 1.9037 1.90656 1.90925 1.91263 1.91504 1.91758 1.91895 1.92044 1.92092 1.92238 1.92073 2.43667 2.41459 2.39151 2.36839 2.34645 2.3257 2.30673 2.2886 2.27177 2.25534 2.23971 2.22426 2.20948 2.1949 2.18096 2.1675 2.1549 2.14314 2.13241 2.12262 2.1139 2.10601 2.09886 2.09266 2.08715 2.08272 2.07898 2.07647 2.07436 2.07322 2.07226 2.07196 2.07206 2.07232 2.07263 2.07301 2.0732 2.07315 2.07295 2.07244 2.07193 2.07111 2.07034 2.06904 2.0674 2.06541 2.06306 2.06047 2.05739 2.05413 2.05035 2.04642 2.04212 2.03765 2.033 2.02812 2.02319 2.01796 2.01275 2.00734 2.00189 1.99638 1.99072 1.98518 1.97939 1.97384 1.96801 1.96249 1.95671 1.95129 1.94564 1.94039 1.93498 1.93 1.92495 1.92038 1.91586 1.91179 1.90794 1.90453 1.90166 1.89924 1.89758 1.89643 1.89625 1.89649 1.89689 1.8978 1.8999 1.90237 1.90569 1.90844 1.91136 1.91331 1.91517 1.91592 1.91689 1.91704 1.91807 1.91627 2.44618 2.42527 2.40288 2.38058 2.3589 2.33813 2.31869 2.30019 2.28261 2.26558 2.24903 2.23279 2.2169 2.20151 2.18652 2.17237 2.15873 2.14611 2.13432 2.12345 2.11345 2.10436 2.09621 2.08902 2.08279 2.07754 2.07312 2.06961 2.0669 2.06495 2.06352 2.06277 2.06224 2.06227 2.0624 2.06272 2.06297 2.06313 2.06302 2.06275 2.06218 2.06162 2.0608 2.05959 2.05802 2.05599 2.05375 2.05101 2.04802 2.04463 2.04094 2.03702 2.03278 2.02845 2.02377 2.01907 2.01405 2.009 2.00383 1.99853 1.99327 1.98778 1.98245 1.97686 1.97148 1.96587 1.96046 1.95491 1.94955 1.94413 1.93891 1.93369 1.92874 1.92385 1.91927 1.91491 1.91084 1.90714 1.90375 1.90103 1.89865 1.8972 1.89605 1.89607 1.89629 1.89676 1.898 1.89991 1.90287 1.90602 1.90888 1.91175 1.91354 1.9155 1.916 1.91685 1.91678 1.91672 1.91687 1.91523 2.44791 2.42892 2.40962 2.39012 2.37097 2.35177 2.33329 2.31486 2.29727 2.27962 2.26269 2.24577 2.22948 2.21352 2.19802 2.18314 2.16871 2.15509 2.14216 2.13011 2.1189 2.10868 2.09923 2.09097 2.08346 2.07697 2.07109 2.06636 2.06229 2.05903 2.05646 2.05417 2.05277 2.05161 2.0509 2.05038 2.05005 2.0498 2.04932 2.04871 2.04779 2.04693 2.04571 2.04424 2.0423 2.04013 2.03767 2.03486 2.03184 2.02842 2.02487 2.02095 2.01692 2.01263 2.00814 2.00355 1.99873 1.99399 1.98905 1.98423 1.97931 1.97442 1.96959 1.96466 1.95988 1.95492 1.95015 1.9452 1.94045 1.93555 1.93092 1.9262 1.92183 1.91747 1.91356 1.90973 1.90643 1.9033 1.90095 1.89889 1.89768 1.89696 1.89707 1.89734 1.89804 1.89946 1.90216 1.90477 1.90831 1.91091 1.91388 1.9156 1.91723 1.91802 1.91816 1.918 1.91767 1.9171 1.91667 1.9149 2.44818 2.42967 2.41225 2.3951 2.37824 2.3611 2.34387 2.32664 2.30918 2.29221 2.27506 2.25857 2.24203 2.22601 2.21015 2.19472 2.17963 2.16518 2.15142 2.13833 2.12618 2.11467 2.10409 2.09421 2.08502 2.07709 2.06977 2.06352 2.05753 2.05265 2.04818 2.04453 2.04161 2.03924 2.0377 2.03629 2.0354 2.03438 2.03359 2.03258 2.03154 2.03032 2.02894 2.02726 2.02522 2.02303 2.02054 2.01788 2.01495 2.01179 2.00845 2.00482 2.00106 1.99702 1.99286 1.98847 1.98398 1.97942 1.97472 1.97008 1.96525 1.96063 1.95573 1.9512 1.94629 1.94187 1.93703 1.93269 1.92804 1.92382 1.91949 1.91552 1.91165 1.90811 1.90489 1.90192 1.89947 1.89736 1.89602 1.89501 1.89502 1.89538 1.89579 1.89694 1.89859 1.9018 1.90454 1.90811 1.91078 1.91347 1.91529 1.91637 1.91724 1.91704 1.9166 1.9161 1.91522 1.91376 1.91261 1.91047 2.45078 2.4321 2.41539 2.39954 2.38408 2.36826 2.35199 2.3352 2.3181 2.30085 2.28376 2.26667 2.24996 2.23335 2.21717 2.20134 2.18598 2.17111 2.15695 2.14324 2.1304 2.11786 2.10639 2.09515 2.08501 2.07519 2.06612 2.05783 2.05034 2.04416 2.03849 2.034 2.02971 2.02645 2.02371 2.02146 2.01975 2.01805 2.01682 2.01536 2.01411 2.01267 2.01119 2.00958 2.0077 2.00577 2.00351 2.00116 1.99856 1.99568 1.99272 1.98931 1.98597 1.98207 1.97826 1.974 1.96976 1.9653 1.96069 1.95614 1.95132 1.94675 1.94188 1.93733 1.93255 1.92806 1.92346 1.91912 1.91477 1.91071 1.90675 1.90318 1.89979 1.89693 1.89429 1.89217 1.89058 1.88953 1.88927 1.8895 1.89023 1.8909 1.89262 1.89466 1.89809 1.90103 1.90441 1.90712 1.90951 1.91131 1.91221 1.91273 1.91234 1.91188 1.9109 1.90967 1.90803 1.9057 1.90415 1.90169 2.45969 2.43842 2.42124 2.40527 2.38978 2.3744 2.3589 2.34298 2.3268 2.31015 2.29344 2.27652 2.25973 2.24305 2.22659 2.21059 2.19468 2.17946 2.16433 2.14996 2.13583 2.12233 2.1094 2.09701 2.08545 2.07441 2.0644 2.05498 2.04641 2.03845 2.03136 2.02528 2.01987 2.01527 2.01145 2.00837 2.00568 2.00342 2.00162 1.99982 1.99854 1.99706 1.99586 1.99444 1.99293 1.99132 1.98929 1.98727 1.98469 1.98212 1.97911 1.97589 1.97253 1.96867 1.96501 1.96069 1.95676 1.95217 1.94798 1.94324 1.93888 1.93409 1.9297 1.92494 1.92061 1.91599 1.91179 1.90743 1.90347 1.89954 1.89594 1.89267 1.88967 1.88724 1.88497 1.88363 1.88255 1.88256 1.88286 1.88362 1.88443 1.88676 1.88908 1.89259 1.89573 1.89905 1.90184 1.90412 1.90594 1.90678 1.90722 1.90686 1.90618 1.90544 1.90417 1.90231 1.90021 1.8976 1.89589 1.89339 2.49192 2.46216 2.43816 2.41814 2.39986 2.3826 2.36589 2.34942 2.33316 2.31692 2.30044 2.28396 2.26726 2.25078 2.23423 2.21799 2.2019 2.18602 2.17055 2.15543 2.14074 2.12662 2.11296 2.09997 2.08759 2.07585 2.06483 2.05449 2.04489 2.0361 2.02796 2.02068 2.01399 2.0082 2.00282 1.99852 1.99498 1.99217 1.98988 1.98812 1.98672 1.98536 1.98422 1.98289 1.98165 1.98006 1.97838 1.97635 1.97405 1.97149 1.96854 1.96542 1.96191 1.95824 1.95428 1.95022 1.94591 1.94161 1.937 1.9326 1.92784 1.92343 1.91867 1.91433 1.90974 1.90554 1.90129 1.89733 1.89354 1.89001 1.88685 1.88396 1.8816 1.87944 1.8781 1.87705 1.87705 1.87729 1.87779 1.87881 1.88144 1.88421 1.88774 1.89098 1.89413 1.89708 1.8991 1.9011 1.90179 1.90251 1.90216 1.90182 1.90111 1.89997 1.8982 1.89586 1.89354 1.8907 1.88885 1.88626 2.52904 2.50267 2.47706 2.45102 2.42656 2.4031 2.38139 2.36173 2.34328 2.32556 2.30818 2.29103 2.27403 2.25718 2.24052 2.22401 2.20773 2.19157 2.17573 2.16022 2.14517 2.13052 2.11646 2.10292 2.09007 2.07773 2.06613 2.05508 2.04478 2.03518 2.02648 2.01854 2.01157 2.00537 1.99983 1.99513 1.99117 1.98776 1.98513 1.98281 1.98095 1.97936 1.97812 1.97695 1.97579 1.97455 1.97302 1.97135 1.96921 1.96693 1.96415 1.96122 1.95787 1.95438 1.95064 1.94671 1.94265 1.93836 1.93405 1.92951 1.92507 1.92042 1.91601 1.91142 1.90717 1.90284 1.89886 1.89502 1.89148 1.88833 1.88545 1.88317 1.88111 1.87981 1.879 1.87895 1.87917 1.87958 1.88091 1.88352 1.88626 1.88942 1.89257 1.89531 1.89811 1.8999 1.9017 1.90244 1.90278 1.90255 1.90207 1.90145 1.90021 1.89852 1.89633 1.89388 1.89143 1.88864 1.88669 1.88427 2.54601 2.52454 2.50389 2.48208 2.45887 2.43563 2.41281 2.39039 2.36877 2.34819 2.32853 2.30965 2.29138 2.27351 2.25587 2.23845 2.22105 2.20406 2.18718 2.17106 2.15543 2.14063 2.12641 2.11285 2.09977 2.08721 2.07529 2.06378 2.05323 2.04313 2.034 2.02546 2.01777 2.01066 2.00429 1.99836 1.99324 1.98891 1.98533 1.98241 1.98025 1.9785 1.97718 1.97602 1.97495 1.97386 1.97254 1.97111 1.96924 1.96721 1.96471 1.96201 1.95891 1.9556 1.95205 1.94825 1.9443 1.94009 1.93584 1.93135 1.92693 1.92232 1.91794 1.9134 1.90923 1.90502 1.90121 1.89761 1.89436 1.89164 1.88919 1.88742 1.88595 1.88533 1.88503 1.88524 1.88571 1.88746 1.88998 1.89288 1.89579 1.89897 1.90144 1.90406 1.90574 1.90715 1.908 1.90789 1.90754 1.90717 1.90633 1.90535 1.90348 1.9014 1.899 1.89637 1.89378 1.89091 1.88889 1.88649 2.57274 2.55101 2.53014 2.50945 2.48799 2.46608 2.44396 2.42179 2.40001 2.37872 2.35802 2.33796 2.31826 2.29908 2.2801 2.26169 2.24357 2.22607 2.20895 2.19262 2.17664 2.16146 2.14643 2.13231 2.11855 2.10581 2.09357 2.08223 2.07129 2.06096 2.05098 2.04156 2.03252 2.02427 2.01655 2.0098 2.00376 1.99893 1.9949 1.99177 1.98935 1.98742 1.986 1.98477 1.98376 1.98273 1.98159 1.98038 1.97876 1.97708 1.97481 1.97252 1.9696 1.96672 1.9632 1.95971 1.95564 1.95158 1.9471 1.94261 1.93792 1.93319 1.92856 1.92383 1.9195 1.91512 1.91131 1.90764 1.90463 1.90188 1.89988 1.89817 1.89735 1.89664 1.89672 1.89748 1.89937 1.90168 1.90463 1.90723 1.91031 1.91264 1.91494 1.91665 1.9176 1.91845 1.91817 1.91771 1.91697 1.91632 1.91487 1.91338 1.91104 1.90882 1.90623 1.90358 1.9009 1.89808 1.89599 1.89373 2.587 2.56768 2.54859 2.52909 2.50947 2.48943 2.46943 2.44918 2.42902 2.40882 2.3889 2.36897 2.34963 2.33047 2.31195 2.29368 2.27601 2.25858 2.24169 2.22523 2.20933 2.19414 2.17947 2.16541 2.15175 2.13842 2.12537 2.1125 2.10014 2.08793 2.07655 2.06576 2.05594 2.04693 2.03851 2.03123 2.02435 2.01859 2.01324 2.0088 2.0049 2.00167 1.99915 1.99689 1.99541 1.99379 1.99287 1.99145 1.99056 1.98907 1.98775 1.98593 1.984 1.98166 1.97905 1.97609 1.97274 1.96929 1.96535 1.96157 1.95727 1.95321 1.94889 1.9446 1.94071 1.93635 1.93323 1.92927 1.92712 1.92416 1.92292 1.92101 1.92055 1.91995 1.92079 1.92225 1.92382 1.92611 1.92804 1.93028 1.93207 1.9336 1.93474 1.93524 1.93537 1.9349 1.93382 1.93314 1.93176 1.93066 1.92836 1.92648 1.92375 1.92137 1.91852 1.91574 1.91288 1.90997 1.90779 1.90548 2.59744 2.57802 2.55924 2.54094 2.52323 2.50551 2.48715 2.46854 2.44929 2.43014 2.41109 2.39244 2.37413 2.35636 2.33872 2.32161 2.30461 2.28802 2.27166 2.25561 2.23976 2.22432 2.20892 2.19391 2.17898 2.16456 2.15042 2.13688 2.12379 2.11121 2.09934 2.08738 2.07631 2.06531 2.0555 2.04602 2.03737 2.02954 2.02266 2.01703 2.01223 2.00868 2.0057 2.0036 2.00194 2.00067 1.99976 1.99878 1.99807 1.99696 1.99614 1.99465 1.99343 1.99144 1.98965 1.98725 1.98483 1.98224 1.97915 1.9765 1.97274 1.97001 1.96592 1.96322 1.9593 1.95693 1.95357 1.95179 1.94928 1.94804 1.94649 1.94551 1.94571 1.94648 1.94797 1.94911 1.9511 1.95249 1.95412 1.95523 1.95602 1.9564 1.95621 1.9558 1.95443 1.95332 1.95154 1.95047 1.94834 1.94669 1.94401 1.9418 1.9391 1.9365 1.93376 1.93088 1.92812 1.92519 1.92303 1.9208 2.61579 2.59905 2.58265 2.56524 2.54684 2.52743 2.50752 2.48766 2.46809 2.44882 2.43011 2.41166 2.39371 2.37614 2.35888 2.34201 2.32534 2.30879 2.29242 2.27603 2.2599 2.24404 2.22851 2.21331 2.19844 2.1837 2.16913 2.15458 2.14008 2.12573 2.11176 2.0982 2.08577 2.07383 2.06362 2.054 2.04616 2.03897 2.03286 2.02744 2.0226 2.0183 2.01451 2.01128 2.00848 2.00633 2.00433 2.00298 2.00149 2.00052 1.99934 1.99829 1.99704 1.99563 1.99409 1.99251 1.99059 1.98879 1.98646 1.98438 1.98175 1.97948 1.97672 1.97453 1.97193 1.97023 1.96807 1.96717 1.96535 1.96491 1.96421 1.96494 1.9658 1.96752 1.96887 1.97109 1.97259 1.97453 1.97588 1.97688 1.97756 1.97746 1.97718 1.9761 1.97493 1.9736 1.97202 1.97091 1.96863 1.96695 1.96413 1.96223 1.9592 1.95689 1.95377 1.95106 1.94799 1.94501 1.94268 1.94022 2.62654 2.61153 2.59707 2.58134 2.56426 2.54656 2.52824 2.50981 2.49148 2.47329 2.45565 2.43827 2.4214 2.40457 2.38781 2.37087 2.35405 2.33717 2.32073 2.30449 2.28858 2.27292 2.25719 2.24135 2.22527 2.20893 2.19262 2.17651 2.16083 2.14611 2.13212 2.11934 2.10741 2.09648 2.08619 2.07655 2.06732 2.05842 2.0499 2.04212 2.03467 2.02826 2.02235 2.01755 2.01327 2.00986 2.00699 2.00481 2.00303 2.00174 2.00058 1.99976 1.99896 1.99851 1.9978 1.99729 1.99628 1.99542 1.99396 1.9927 1.99084 1.98923 1.98725 1.98548 1.98353 1.98191 1.97978 1.97875 1.97692 1.97704 1.97736 1.97823 1.97939 1.98097 1.98331 1.98484 1.9873 1.98859 1.9902 1.99136 1.99175 1.99254 1.99229 1.99169 1.99118 1.99048 1.98984 1.98839 1.98713 1.98505 1.98282 1.98075 1.9778 1.97577 1.97231 1.97032 1.96664 1.96479 1.96199 1.96093 2.63306 2.61736 2.60331 2.58838 2.57245 2.55558 2.53829 2.52096 2.504 2.48755 2.47134 2.45521 2.43883 2.42253 2.40625 2.39028 2.37473 2.3593 2.34398 2.32832 2.31197 2.29516 2.27768 2.25999 2.24239 2.22509 2.20858 2.19275 2.1778 2.1636 2.14997 2.13685 2.12406 2.11167 2.09956 2.08795 2.07678 2.06635 2.05648 2.04746 2.03917 2.03193 2.02524 2.01942 2.01421 2.00994 2.00628 2.00341 2.0013 1.99991 1.99904 1.99884 1.99888 1.99904 1.99918 1.99914 1.99899 1.99853 1.9979 1.99652 1.99547 1.99397 1.99305 1.99167 1.99069 1.99005 1.98948 1.98982 1.99061 1.99205 1.99417 1.99614 1.99915 2.0019 2.00493 2.0082 2.01064 2.01351 2.01532 2.01696 2.01808 2.01852 2.01825 2.01757 2.01708 2.01599 2.01502 2.01283 2.01137 2.00841 2.00668 2.00342 2.00149 1.99823 1.99607 1.99324 1.99078 1.98879 1.98667 1.98607 2.64538 2.62938 2.61545 2.60094 2.58554 2.56947 2.55314 2.53677 2.52035 2.50371 2.48725 2.47105 2.4552 2.43981 2.42467 2.40957 2.39401 2.37793 2.36094 2.34336 2.32506 2.30694 2.28874 2.27125 2.25429 2.23786 2.22206 2.2065 2.19131 2.17631 2.16154 2.14714 2.13312 2.11952 2.10661 2.09427 2.08262 2.07158 2.06123 2.05153 2.04252 2.03408 2.02637 2.01932 2.01321 2.00798 2.00372 2.00047 1.99828 1.99693 1.99635 1.99641 1.99668 1.99724 1.99763 1.99773 1.99769 1.9975 1.99696 1.99624 1.99541 1.99496 1.99504 1.99531 1.99601 1.9974 1.99959 2.00198 2.00598 2.00924 2.01408 2.01823 2.02265 2.02717 2.03077 2.03443 2.03733 2.03934 2.04131 2.04194 2.04263 2.04225 2.04143 2.04064 2.03967 2.03819 2.03703 2.03457 2.03305 2.03022 2.02858 2.02566 2.02411 2.02111 2.01954 2.01639 2.01478 2.01158 2.01026 2.00757 2.64907 2.63462 2.62223 2.60882 2.59412 2.57867 2.56253 2.54629 2.53016 2.51414 2.49858 2.48353 2.46875 2.45427 2.43932 2.42381 2.40728 2.39014 2.37227 2.35451 2.33655 2.31922 2.30198 2.28523 2.26863 2.252 2.23572 2.21933 2.20325 2.18746 2.17191 2.157 2.1424 2.12851 2.11508 2.10232 2.09003 2.07834 2.06726 2.05665 2.04667 2.03706 2.0286 2.02068 2.014 2.00837 2.00393 2.00084 1.99846 1.99703 1.99626 1.99593 1.99596 1.99611 1.99617 1.99603 1.9957 1.99576 1.99589 1.99624 1.99671 1.99766 1.99927 2.00133 2.00429 2.00735 2.01147 2.01565 2.02051 2.02583 2.03064 2.03637 2.04079 2.04568 2.04952 2.05271 2.05555 2.05715 2.05861 2.05919 2.05917 2.0586 2.05751 2.05668 2.05527 2.05428 2.05231 2.05095 2.04896 2.04724 2.04558 2.04324 2.04183 2.03884 2.03709 2.03332 2.03113 2.02655 2.02442 2.01951 2.6575 2.64289 2.62966 2.6152 2.59949 2.58327 2.56666 2.55001 2.53377 2.51808 2.50305 2.48866 2.47404 2.45915 2.44362 2.4274 2.41081 2.39399 2.37717 2.36043 2.34374 2.32699 2.31017 2.29312 2.27623 2.25907 2.24237 2.22556 2.20935 2.19339 2.17781 2.16283 2.14819 2.13409 2.12053 2.10724 2.09463 2.08235 2.07063 2.05911 2.04848 2.03832 2.0293 2.02117 2.01436 2.00841 2.00364 1.99986 1.99672 1.99456 1.99275 1.99155 1.99093 1.99058 1.99005 1.9901 1.99056 1.99123 1.99256 1.99414 1.99629 1.99868 2.00166 2.00515 2.00914 2.01374 2.01866 2.02418 2.02974 2.03554 2.04124 2.04656 2.05157 2.05595 2.05978 2.06262 2.0654 2.06667 2.0681 2.0687 2.06871 2.06831 2.06777 2.06733 2.06673 2.06604 2.06479 2.064 2.06241 2.06139 2.05925 2.05771 2.05485 2.05208 2.04876 2.0444 2.04085 2.03519 2.03246 2.02675 2.66316 2.64975 2.6375 2.624 2.6088 2.59244 2.57565 2.5586 2.54211 2.52596 2.51005 2.49434 2.4784 2.46227 2.44616 2.4296 2.41324 2.39666 2.38027 2.36368 2.34705 2.33007 2.31317 2.29599 2.27928 2.26236 2.24613 2.22973 2.21395 2.19819 2.18292 2.16793 2.15339 2.13907 2.1254 2.11162 2.09859 2.08548 2.07303 2.06094 2.04951 2.03896 2.02936 2.02088 2.01336 2.0068 2.00108 1.99626 1.99214 1.98895 1.98627 1.98445 1.98348 1.9831 1.98285 1.98314 1.98419 1.98556 1.9879 1.99023 1.99335 1.99693 2.00098 2.00556 2.01051 2.01607 2.02179 2.02806 2.03407 2.04036 2.04619 2.05158 2.05673 2.06069 2.06465 2.06716 2.06984 2.071 2.07252 2.07302 2.07334 2.07334 2.07341 2.07357 2.07375 2.07359 2.07319 2.07244 2.07124 2.07003 2.06785 2.06588 2.06268 2.0597 2.05562 2.05161 2.04739 2.04282 2.03981 2.0357 2.66048 2.64764 2.63611 2.62314 2.60842 2.5923 2.57596 2.55902 2.54278 2.52665 2.51099 2.49566 2.48048 2.46536 2.45029 2.43481 2.41918 2.4029 2.38626 2.36905 2.35178 2.33433 2.31722 2.30018 2.28351 2.26688 2.2507 2.23442 2.21889 2.20314 2.18834 2.17325 2.15906 2.14455 2.13078 2.11672 2.10329 2.08982 2.07698 2.06486 2.05329 2.04282 2.0326 2.02341 2.01471 2.00699 1.99998 1.99388 1.98857 1.98425 1.9809 1.97859 1.97759 1.97762 1.97774 1.97835 1.97973 1.98254 1.98502 1.98887 1.99221 1.99679 2.00115 2.00653 2.01202 2.01817 2.0245 2.03115 2.03765 2.04419 2.05017 2.05582 2.06088 2.06501 2.069 2.07152 2.07434 2.07569 2.07744 2.07805 2.07884 2.07917 2.07945 2.08014 2.08027 2.08007 2.07951 2.07849 2.07719 2.07526 2.07296 2.07024 2.06704 2.06354 2.05975 2.05579 2.05194 2.04793 2.04523 2.04194 2.66937 2.65512 2.64259 2.62842 2.61292 2.59556 2.5782 2.56034 2.54349 2.5274 2.5122 2.49833 2.48432 2.47058 2.45566 2.44 2.42336 2.40601 2.38825 2.37027 2.35251 2.33469 2.31737 2.30015 2.28324 2.26668 2.2505 2.23452 2.21933 2.20388 2.18955 2.17459 2.16082 2.14628 2.13268 2.11866 2.10523 2.09202 2.0792 2.0672 2.0553 2.04424 2.0334 2.02313 2.01358 2.0046 1.99662 1.98952 1.98342 1.97859 1.97515 1.97257 1.97233 1.97265 1.97336 1.97431 1.97654 1.97985 1.9832 1.98741 1.99166 1.9966 2.00186 2.00757 2.01382 2.0203 2.02717 2.03393 2.04083 2.04733 2.05361 2.05935 2.06445 2.06904 2.07302 2.07613 2.07931 2.08124 2.08344 2.0848 2.086 2.08653 2.08753 2.08787 2.08769 2.0872 2.08592 2.08471 2.0826 2.08014 2.07751 2.07422 2.07102 2.06711 2.06363 2.05934 2.05587 2.05161 2.04915 2.04559 2.66717 2.65397 2.64155 2.62647 2.61096 2.59419 2.57853 2.5628 2.54808 2.53391 2.51969 2.50563 2.49017 2.47465 2.45809 2.44146 2.42416 2.40688 2.38924 2.37161 2.35408 2.33628 2.31911 2.30164 2.28482 2.26809 2.25191 2.23583 2.22049 2.20501 2.19059 2.17566 2.16204 2.1477 2.13455 2.12106 2.10831 2.09584 2.08322 2.07104 2.05837 2.04638 2.03463 2.02336 2.01295 2.00321 1.9944 1.98699 1.98057 1.97563 1.97209 1.96966 1.96927 1.96964 1.97045 1.97123 1.97341 1.97668 1.98059 1.98501 1.99001 1.99542 2.00132 2.00753 2.0141 2.02079 2.02776 2.03456 2.04142 2.04788 2.05422 2.05996 2.0656 2.07055 2.07532 2.07956 2.08323 2.08656 2.08926 2.09133 2.09275 2.09393 2.09443 2.09434 2.09372 2.09278 2.09057 2.08898 2.08575 2.08326 2.07999 2.07638 2.07326 2.06908 2.06597 2.06135 2.05837 2.05367 2.05147 2.04743 2.67139 2.65698 2.64272 2.62658 2.61115 2.59562 2.58201 2.56837 2.55452 2.53983 2.52385 2.50781 2.49063 2.47396 2.45675 2.44005 2.42302 2.40617 2.38879 2.37136 2.35375 2.33568 2.31825 2.30047 2.28352 2.26663 2.25058 2.23475 2.21991 2.20505 2.1914 2.17734 2.16479 2.15149 2.1391 2.12608 2.11283 2.09962 2.08559 2.07234 2.05864 2.04552 2.03285 2.02069 2.00967 1.99979 1.99083 1.98351 1.97713 1.97216 1.96847 1.966 1.96518 1.96547 1.96616 1.9668 1.96875 1.9724 1.9767 1.98181 1.98765 1.99377 2.00065 2.00734 2.01463 2.02142 2.02849 2.03512 2.04176 2.048 2.05419 2.05995 2.06573 2.07105 2.07626 2.08115 2.08528 2.08956 2.09233 2.09518 2.09671 2.09798 2.09829 2.09812 2.09727 2.0962 2.09373 2.0921 2.08871 2.0867 2.08304 2.08014 2.07723 2.07287 2.07041 2.06539 2.06273 2.05749 2.05522 2.05039 2.67023 2.65507 2.64123 2.62707 2.61444 2.60235 2.59064 2.57742 2.56233 2.5459 2.52773 2.50987 2.4916 2.47449 2.45757 2.44109 2.42412 2.40687 2.38881 2.37056 2.35207 2.33335 2.31507 2.29659 2.27896 2.26172 2.24586 2.23085 2.21756 2.20481 2.19351 2.18153 2.17029 2.15749 2.14474 2.13095 2.11638 2.1019 2.08632 2.07165 2.05678 2.04286 2.03003 2.01787 2.00706 1.99725 1.9885 1.98101 1.97467 1.96926 1.96528 1.96233 1.96097 1.96106 1.96144 1.96182 1.9636 1.96716 1.97181 1.97752 1.98391 1.991 1.99848 2.00603 2.0138 2.02102 2.02824 2.03493 2.04123 2.04755 2.05322 2.0592 2.06461 2.07037 2.07538 2.08089 2.08505 2.08979 2.09275 2.09597 2.09755 2.09914 2.09977 2.09966 2.09902 2.09815 2.09615 2.09477 2.09188 2.0902 2.08693 2.08449 2.08183 2.07758 2.07525 2.07022 2.06744 2.06186 2.0594 2.05389 2.67133 2.653 2.63796 2.62526 2.61377 2.60327 2.59132 2.57793 2.56217 2.5455 2.52735 2.51015 2.49303 2.4771 2.46129 2.44548 2.42882 2.41196 2.39411 2.37647 2.35817 2.33983 2.3213 2.30277 2.28474 2.26743 2.25132 2.23625 2.22261 2.20933 2.19719 2.18424 2.17201 2.15831 2.14484 2.13045 2.11571 2.10146 2.08656 2.073 2.05935 2.04657 2.03478 2.02336 2.01313 2.00353 1.99486 1.98674 1.98005 1.97357 1.96882 1.96472 1.96266 1.96163 1.96162 1.96157 1.96295 1.96615 1.97094 1.97677 1.98341 1.99077 1.99828 2.00602 2.01364 2.02075 2.02781 2.03406 2.04035 2.04621 2.05206 2.05785 2.06379 2.06953 2.07546 2.08094 2.08609 2.09085 2.09447 2.09745 2.0995 2.1008 2.10099 2.10075 2.09973 2.09855 2.09594 2.09429 2.0909 2.08904 2.08539 2.08282 2.07977 2.07534 2.07282 2.06744 2.06454 2.0587 2.05612 2.05027 2.67391 2.65259 2.63625 2.62383 2.61258 2.6021 2.58951 2.57561 2.55942 2.5428 2.52512 2.50878 2.49265 2.47733 2.46208 2.44651 2.43038 2.41401 2.39675 2.37947 2.36117 2.34269 2.32375 2.30506 2.28693 2.2698 2.25394 2.2391 2.22548 2.21201 2.1993 2.18568 2.17258 2.15813 2.1441 2.12948 2.11488 2.10117 2.087 2.07456 2.06199 2.05052 2.03973 2.02941 2.01959 2.01056 2.00178 1.99349 1.98649 1.97933 1.97414 1.9693 1.9668 1.9651 1.96482 1.96411 1.96528 1.96817 1.97267 1.97842 1.98485 1.99215 1.99949 2.00716 2.01457 2.02159 2.02832 2.03451 2.04048 2.04632 2.05198 2.058 2.0639 2.07025 2.07639 2.08236 2.08818 2.09288 2.09691 2.09996 2.10177 2.10247 2.10241 2.10186 2.10009 2.09838 2.09485 2.09278 2.08864 2.08645 2.08226 2.0796 2.07598 2.07173 2.069 2.0635 2.06068 2.055 2.0525 2.04697 2.44289 2.74428 3.00013 3.27268 3.23119 3.2043 3.19167 3.18769 3.18092 3.17293 3.16427 3.16007 3.15912 3.15849 3.1584 3.15944 3.16297 3.16757 3.17346 3.17973 3.18628 3.19131 3.19664 3.20062 3.2029 3.20383 3.20413 3.20211 3.19952 3.19404 3.18853 3.18208 3.17639 3.17155 3.16566 3.15712 3.15061 3.13962 3.13226 3.12238 3.11434 3.10333 3.09375 3.0815 3.07164 3.0591 3.04707 3.03483 3.02382 3.01082 3.00009 2.98687 2.97557 2.96255 2.95093 2.9382 2.92602 2.91362 2.90136 2.88871 2.87665 2.86383 2.85205 2.8394 2.82774 2.81531 2.80378 2.79154 2.7802 2.76818 2.75702 2.7453 2.73425 2.72291 2.71194 2.70103 2.69027 2.67974 2.66936 2.65922 2.64931 2.63958 2.63027 2.62095 2.61239 2.60376 2.59586 2.58842 2.5814 2.57529 2.57001 2.56542 2.56261 2.56065 2.56011 2.55993 2.56011 2.56106 2.56434 2.56211 2.34231 2.51425 2.68818 3.02578 3.20123 3.28155 3.44259 3.52835 3.50945 3.50628 3.50226 3.50318 3.50348 3.49883 3.4906 3.48336 3.47055 3.45511 3.4358 3.41693 3.39789 3.37948 3.36808 3.35221 3.33561 3.31329 3.29532 3.26989 3.24981 3.22742 3.20291 3.18461 3.15988 3.14152 3.11658 3.09831 3.07577 3.05643 3.03488 3.01729 2.99742 2.98017 2.96223 2.94384 2.92613 2.90846 2.89192 2.87547 2.85964 2.84407 2.82839 2.81362 2.79826 2.78414 2.76936 2.75533 2.74136 2.72747 2.71412 2.70066 2.68781 2.67488 2.66251 2.6501 2.63814 2.62616 2.6146 2.60301 2.59176 2.58059 2.56959 2.55892 2.54819 2.53801 2.52762 2.51789 2.50792 2.49857 2.48908 2.48 2.47108 2.4623 2.45395 2.44576 2.4379 2.4306 2.42344 2.41707 2.41113 2.40578 2.40147 2.39775 2.39541 2.39424 2.39407 2.39417 2.39444 2.39548 2.39887 2.39662 2.32358 2.35837 2.458 2.55413 2.72926 2.89941 3.05359 3.25319 3.36931 3.44293 3.47869 3.52212 3.54467 3.56832 3.57138 3.5638 3.54697 3.51865 3.48281 3.4476 3.40949 3.3711 3.33246 3.28883 3.24753 3.20296 3.16179 3.11585 3.07554 3.03343 2.99568 2.95831 2.92371 2.89043 2.85947 2.82952 2.80153 2.77502 2.75034 2.7276 2.70599 2.68701 2.66759 2.65023 2.63144 2.61607 2.59901 2.58514 2.56929 2.55615 2.54147 2.52882 2.51517 2.50304 2.49016 2.4788 2.4666 2.45584 2.44429 2.4341 2.4231 2.41337 2.40292 2.3935 2.38357 2.37438 2.3649 2.35595 2.34681 2.33818 2.32931 2.32104 2.31244 2.30444 2.29618 2.28831 2.28045 2.27273 2.26526 2.2578 2.25066 2.24364 2.23682 2.23035 2.22399 2.21802 2.21246 2.20707 2.20258 2.19828 2.19486 2.19235 2.19053 2.19038 2.19057 2.19106 2.19168 2.19317 2.19741 2.19601 2.32609 2.29737 2.3313 2.36647 2.43799 2.5217 2.61749 2.7097 2.81419 2.91099 2.98573 3.03886 3.0833 3.10357 3.11758 3.11629 3.11003 3.0963 3.07429 3.04736 3.01232 2.97567 2.93442 2.89438 2.85307 2.81448 2.77669 2.74163 2.7091 2.67852 2.65116 2.62498 2.60223 2.58065 2.56196 2.54522 2.53019 2.51655 2.50375 2.49237 2.48135 2.47193 2.46213 2.45288 2.44282 2.43379 2.42449 2.41596 2.40698 2.3986 2.38975 2.38143 2.37265 2.3644 2.35571 2.34755 2.33898 2.3309 2.3225 2.31445 2.3062 2.29814 2.29002 2.28196 2.27393 2.26594 2.25793 2.25008 2.24211 2.23438 2.22654 2.21883 2.21126 2.20356 2.19625 2.18872 2.18154 2.17437 2.16715 2.16038 2.15332 2.14678 2.14022 2.13384 2.128 2.12203 2.11687 2.11182 2.1073 2.10365 2.1002 2.09821 2.0967 2.09682 2.09719 2.09798 2.09905 2.10098 2.10608 2.106 2.3333 2.29815 2.28105 2.2947 2.3174 2.35533 2.39707 2.4433 2.48515 2.52452 2.55616 2.58401 2.60194 2.61614 2.61908 2.61678 2.61101 2.60148 2.59054 2.57556 2.55985 2.54356 2.52764 2.51259 2.49887 2.48626 2.47493 2.46473 2.45567 2.4476 2.44046 2.43396 2.42813 2.42278 2.41771 2.41309 2.40824 2.40386 2.39868 2.39413 2.3888 2.38448 2.37912 2.37393 2.36745 2.36133 2.35473 2.34857 2.34182 2.33546 2.3284 2.32179 2.31451 2.30765 2.30031 2.29325 2.286 2.2788 2.27167 2.26439 2.25728 2.24998 2.24276 2.23546 2.22814 2.2208 2.21347 2.20604 2.19882 2.19132 2.18417 2.17674 2.16949 2.16223 2.15478 2.1477 2.14024 2.13333 2.12615 2.11939 2.11265 2.10602 2.09985 2.09351 2.08782 2.08222 2.07694 2.07244 2.06792 2.06458 2.06149 2.05957 2.05869 2.0589 2.05952 2.06011 2.06199 2.06441 2.06952 2.07052 2.34077 2.29968 2.28164 2.26896 2.27539 2.28786 2.30343 2.32084 2.33592 2.34874 2.3594 2.36686 2.37391 2.37798 2.37979 2.37862 2.37594 2.3742 2.37259 2.36922 2.3661 2.36215 2.35892 2.35606 2.35409 2.3525 2.35132 2.35054 2.34993 2.34964 2.34925 2.34897 2.34836 2.34783 2.34666 2.34572 2.34367 2.34214 2.33893 2.33658 2.33265 2.32997 2.32591 2.32211 2.31683 2.31161 2.30603 2.30039 2.29473 2.28876 2.28284 2.27651 2.27024 2.26363 2.25701 2.25024 2.24336 2.23651 2.22951 2.22255 2.21551 2.20841 2.20142 2.19421 2.18727 2.18006 2.17308 2.16605 2.15896 2.15216 2.14504 2.13835 2.13129 2.12459 2.11782 2.11109 2.10459 2.09787 2.09159 2.08512 2.07895 2.07297 2.06696 2.06157 2.05598 2.05115 2.04637 2.04218 2.03854 2.03531 2.03314 2.03141 2.0314 2.03168 2.03235 2.03328 2.03567 2.03883 2.04354 2.04491 2.34729 2.30931 2.2835 2.27026 2.2619 2.26363 2.26507 2.26766 2.26883 2.26931 2.26806 2.26681 2.26611 2.26617 2.26617 2.26575 2.26487 2.26401 2.26496 2.26613 2.26736 2.2682 2.26969 2.27083 2.27277 2.27419 2.27638 2.27798 2.28006 2.28133 2.28279 2.28359 2.28402 2.28393 2.28357 2.28287 2.28133 2.27991 2.27732 2.27499 2.27189 2.26946 2.2662 2.26289 2.25837 2.25379 2.24867 2.24368 2.23834 2.23314 2.22757 2.22207 2.21622 2.21029 2.20422 2.1979 2.19172 2.18518 2.17886 2.17222 2.16565 2.15897 2.15218 2.14545 2.13857 2.13174 2.12496 2.11796 2.11128 2.1042 2.09761 2.0907 2.08419 2.07758 2.07112 2.06481 2.05843 2.05242 2.0462 2.04049 2.03457 2.02915 2.02373 2.01861 2.01389 2.00922 2.00533 2.00146 1.99856 1.99594 1.99427 1.99349 1.99368 1.99426 1.99485 1.99617 1.99896 2.00247 2.00723 2.00836 2.35146 2.32064 2.29584 2.28052 2.26512 2.25763 2.252 2.24542 2.23923 2.23181 2.22481 2.21829 2.21325 2.2097 2.20732 2.2062 2.20497 2.20409 2.20426 2.20579 2.20769 2.21053 2.21247 2.21523 2.21745 2.22035 2.22307 2.22585 2.22848 2.23064 2.23292 2.23434 2.23607 2.23671 2.23775 2.23767 2.2374 2.2368 2.23549 2.23391 2.2318 2.22979 2.22731 2.22435 2.22051 2.21615 2.21141 2.20635 2.20119 2.19569 2.19024 2.18441 2.17861 2.17254 2.16638 2.1602 2.15377 2.14752 2.141 2.1346 2.12809 2.12145 2.115 2.10818 2.10174 2.09485 2.08832 2.0815 2.0749 2.06824 2.06155 2.05501 2.04831 2.0419 2.0353 2.02898 2.02266 2.01642 2.01049 2.00444 1.99892 1.99329 1.98818 1.98319 1.97856 1.97441 1.9705 1.96735 1.96449 1.96266 1.96121 1.96125 1.96157 1.96199 1.96293 1.96551 1.96827 1.97256 1.97692 1.97844 2.36285 2.33241 2.30824 2.28881 2.2779 2.26174 2.24945 2.23865 2.22655 2.21571 2.20454 2.19548 2.18728 2.18157 2.177 2.17471 2.17256 2.17154 2.16994 2.17 2.17035 2.1722 2.17446 2.17655 2.17893 2.18131 2.18375 2.18626 2.18851 2.19096 2.19292 2.19509 2.19648 2.19803 2.19866 2.1994 2.19934 2.19891 2.19799 2.1966 2.19482 2.19302 2.19096 2.18831 2.18505 2.18119 2.17705 2.1726 2.16793 2.16317 2.15819 2.1531 2.14785 2.14234 2.13685 2.13093 2.12521 2.11904 2.11306 2.10677 2.10052 2.09416 2.08768 2.08125 2.07461 2.06816 2.0616 2.05515 2.04874 2.04227 2.03601 2.02954 2.02339 2.01706 2.01094 2.00489 1.99879 1.99308 1.98714 1.98177 1.97621 1.97128 1.96628 1.96188 1.95769 1.954 1.95082 1.94811 1.94621 1.94482 1.9446 1.9449 1.94535 1.94629 1.94794 1.95125 1.95453 1.95874 1.96292 1.96425 2.38009 2.35223 2.32602 2.30483 2.28522 2.27107 2.25501 2.23925 2.22501 2.21077 2.19851 2.18657 2.17702 2.16835 2.16213 2.15703 2.15358 2.15061 2.14849 2.14691 2.14582 2.14582 2.14641 2.1481 2.14971 2.15177 2.15367 2.15594 2.15818 2.16063 2.16294 2.16501 2.1669 2.16826 2.16953 2.17012 2.17065 2.17049 2.16986 2.16886 2.16739 2.16603 2.16435 2.16222 2.15954 2.15617 2.15264 2.14854 2.14434 2.13984 2.13507 2.13031 2.12507 2.12002 2.11445 2.10904 2.10324 2.09743 2.09145 2.08526 2.07912 2.07267 2.06636 2.05979 2.0534 2.04689 2.04039 2.034 2.02746 2.02121 2.01471 2.0086 2.00221 1.99623 1.99005 1.9842 1.9783 1.97259 1.96707 1.96158 1.95652 1.95142 1.94693 1.94249 1.93877 1.9353 1.93255 1.93037 1.92892 1.92832 1.92851 1.92891 1.92963 1.93118 1.93374 1.93714 1.94093 1.9443 1.94847 1.94912 2.39472 2.37215 2.34593 2.32257 2.29953 2.27894 2.26059 2.24353 2.22772 2.21219 2.19822 2.18519 2.17392 2.16375 2.1554 2.14822 2.14269 2.13783 2.13412 2.13052 2.1283 2.12625 2.12539 2.1254 2.12617 2.12795 2.12947 2.13182 2.13362 2.13612 2.13789 2.14009 2.14157 2.14332 2.14436 2.14543 2.14587 2.14602 2.14558 2.14465 2.14357 2.14234 2.14098 2.13926 2.13681 2.13403 2.13065 2.12706 2.12307 2.1188 2.11436 2.10954 2.10467 2.09944 2.09417 2.08865 2.08305 2.07731 2.07142 2.06552 2.05939 2.05333 2.04708 2.04098 2.03474 2.02858 2.02243 2.01625 2.01019 2.00407 1.9981 1.99207 1.98618 1.9803 1.9745 1.96888 1.96322 1.95796 1.95256 1.94775 1.94276 1.93845 1.93412 1.93051 1.92711 1.92444 1.92226 1.92086 1.92018 1.92034 1.92072 1.92137 1.92299 1.92496 1.92868 1.93156 1.93558 1.93797 1.94201 1.94208 2.40603 2.38688 2.36475 2.34182 2.31944 2.29717 2.27612 2.25627 2.23814 2.22142 2.20627 2.19184 2.17888 2.1669 2.15653 2.14725 2.13959 2.13284 2.12737 2.12274 2.11905 2.11584 2.11408 2.11251 2.1122 2.11229 2.11321 2.11459 2.11609 2.11792 2.11958 2.12144 2.12291 2.12467 2.12569 2.12707 2.12743 2.12818 2.1279 2.12737 2.12657 2.12554 2.1245 2.12275 2.12057 2.11775 2.11451 2.11104 2.10703 2.10302 2.09845 2.09396 2.08904 2.08412 2.07899 2.07368 2.06836 2.06268 2.05712 2.05114 2.04527 2.0392 2.0331 2.02703 2.02075 2.01471 2.00834 2.00231 1.99602 1.98997 1.98388 1.97782 1.97198 1.96599 1.96039 1.95461 1.9493 1.94387 1.93898 1.93404 1.92971 1.9254 1.92185 1.91846 1.91593 1.91374 1.91246 1.91179 1.91194 1.91225 1.91293 1.91417 1.91697 1.91924 1.92312 1.92547 1.92893 1.93048 1.93364 1.93313 2.41449 2.39474 2.37333 2.35095 2.32908 2.3079 2.28765 2.2685 2.25041 2.23353 2.2176 2.2029 2.18892 2.17603 2.16399 2.15319 2.14348 2.13503 2.12762 2.12119 2.11581 2.1115 2.10793 2.1052 2.10355 2.10229 2.10193 2.10202 2.10279 2.10388 2.10518 2.10642 2.10765 2.10868 2.10963 2.11022 2.11066 2.11068 2.11022 2.10961 2.10842 2.10737 2.10606 2.10428 2.10216 2.09929 2.0964 2.09281 2.08921 2.08501 2.08073 2.07606 2.07126 2.06631 2.06115 2.05601 2.05061 2.04525 2.03968 2.03409 2.02847 2.02273 2.01707 2.01121 2.00548 1.99954 1.99374 1.98784 1.982 1.97625 1.97043 1.96491 1.95921 1.95393 1.94843 1.94341 1.93822 1.93356 1.9288 1.92459 1.92042 1.91691 1.91367 1.91111 1.90912 1.90783 1.90737 1.90757 1.90797 1.9087 1.91066 1.91247 1.91601 1.9186 1.92196 1.92396 1.92648 1.92748 1.92975 1.92866 2.42542 2.40465 2.38275 2.36074 2.3393 2.31882 2.29945 2.28106 2.26372 2.2472 2.23141 2.21637 2.20191 2.18815 2.17502 2.16281 2.15147 2.14129 2.13196 2.12381 2.11638 2.11018 2.10478 2.10048 2.09674 2.09414 2.09191 2.09066 2.08963 2.08939 2.08948 2.08992 2.09042 2.09087 2.09119 2.09133 2.09133 2.09109 2.09052 2.08972 2.08853 2.08757 2.0861 2.08464 2.08231 2.07992 2.07694 2.07383 2.07032 2.06652 2.06252 2.05816 2.05377 2.04901 2.04428 2.03926 2.03415 2.02892 2.02344 2.01811 2.01245 2.00707 2.00136 1.99587 1.9902 1.98454 1.97893 1.97313 1.96759 1.96176 1.95635 1.95061 1.94541 1.93992 1.93499 1.92989 1.92532 1.92076 1.91666 1.91274 1.90933 1.90636 1.90389 1.90213 1.90091 1.90061 1.90089 1.90123 1.90216 1.9037 1.90656 1.90925 1.91263 1.91504 1.91758 1.91895 1.92044 1.92092 1.92238 1.92073 2.43668 2.41459 2.39151 2.36839 2.34645 2.3257 2.30673 2.2886 2.27177 2.25534 2.23971 2.22426 2.20948 2.1949 2.18096 2.1675 2.1549 2.14314 2.13241 2.12262 2.1139 2.10601 2.09886 2.09266 2.08715 2.08272 2.07898 2.07647 2.07436 2.07322 2.07226 2.07196 2.07206 2.07232 2.07263 2.07301 2.0732 2.07315 2.07295 2.07244 2.07193 2.07111 2.07034 2.06904 2.0674 2.06541 2.06306 2.06047 2.05739 2.05413 2.05035 2.04642 2.04212 2.03765 2.033 2.02812 2.02319 2.01796 2.01275 2.00734 2.00189 1.99638 1.99072 1.98518 1.97939 1.97384 1.96801 1.96249 1.95671 1.95129 1.94564 1.94039 1.93498 1.93 1.92495 1.92038 1.91586 1.91179 1.90794 1.90453 1.90167 1.89925 1.89758 1.89643 1.89625 1.89649 1.89689 1.8978 1.8999 1.90237 1.90569 1.90844 1.91136 1.91331 1.91517 1.91592 1.91689 1.91704 1.91807 1.91627 2.44618 2.42527 2.40288 2.38058 2.3589 2.33813 2.31869 2.30019 2.28261 2.26558 2.24903 2.23279 2.2169 2.20151 2.18652 2.17237 2.15873 2.14611 2.13432 2.12345 2.11345 2.10436 2.09621 2.08902 2.08279 2.07754 2.07313 2.06961 2.0669 2.06495 2.06352 2.06277 2.06224 2.06227 2.0624 2.06272 2.06297 2.06313 2.06302 2.06275 2.06218 2.06162 2.0608 2.05959 2.05802 2.05599 2.05375 2.05101 2.04802 2.04463 2.04094 2.03702 2.03278 2.02845 2.02377 2.01907 2.01405 2.009 2.00383 1.99853 1.99327 1.98778 1.98245 1.97686 1.97148 1.96587 1.96046 1.95492 1.94955 1.94413 1.93891 1.93369 1.92874 1.92385 1.91927 1.91491 1.91084 1.90714 1.90376 1.90103 1.89865 1.8972 1.89605 1.89607 1.89629 1.89676 1.898 1.89991 1.90287 1.90602 1.90888 1.91175 1.91355 1.9155 1.916 1.91685 1.91678 1.91672 1.91687 1.91523 2.44791 2.42892 2.40962 2.39012 2.37097 2.35177 2.33329 2.31487 2.29727 2.27962 2.26269 2.24577 2.22948 2.21352 2.19802 2.18314 2.16871 2.15509 2.14216 2.13011 2.1189 2.10868 2.09923 2.09097 2.08346 2.07697 2.07109 2.06636 2.06229 2.05903 2.05646 2.05417 2.05277 2.05161 2.0509 2.05038 2.05005 2.0498 2.04932 2.04871 2.04779 2.04693 2.04571 2.04424 2.0423 2.04013 2.03767 2.03486 2.03184 2.02842 2.02487 2.02095 2.01692 2.01263 2.00814 2.00355 1.99873 1.99399 1.98905 1.98423 1.97931 1.97442 1.96959 1.96466 1.95988 1.95492 1.95015 1.9452 1.94045 1.93555 1.93092 1.9262 1.92183 1.91747 1.91356 1.90973 1.90643 1.9033 1.90095 1.89889 1.89769 1.89696 1.89707 1.89734 1.89804 1.89947 1.90217 1.90477 1.90831 1.91091 1.91388 1.9156 1.91724 1.91802 1.91816 1.918 1.91767 1.9171 1.91667 1.9149 2.44818 2.42967 2.41225 2.3951 2.37824 2.3611 2.34387 2.32664 2.30918 2.29221 2.27506 2.25857 2.24203 2.22601 2.21015 2.19472 2.17963 2.16518 2.15142 2.13833 2.12618 2.11467 2.10409 2.09421 2.08502 2.07709 2.06977 2.06352 2.05753 2.05265 2.04818 2.04453 2.04161 2.03924 2.0377 2.03629 2.0354 2.03438 2.03359 2.03258 2.03154 2.03032 2.02894 2.02726 2.02522 2.02303 2.02054 2.01788 2.01495 2.01179 2.00845 2.00482 2.00106 1.99702 1.99286 1.98847 1.98398 1.97942 1.97472 1.97008 1.96525 1.96063 1.95573 1.9512 1.94629 1.94187 1.93703 1.93269 1.92804 1.92382 1.91949 1.91552 1.91165 1.90811 1.9049 1.90192 1.89947 1.89736 1.89602 1.89501 1.89502 1.89538 1.89579 1.89694 1.89859 1.9018 1.90454 1.90811 1.91078 1.91347 1.91529 1.91637 1.91724 1.91705 1.9166 1.9161 1.91522 1.91376 1.91261 1.91047 2.45078 2.4321 2.41539 2.39954 2.38408 2.36826 2.35199 2.3352 2.3181 2.30085 2.28376 2.26667 2.24996 2.23335 2.21717 2.20134 2.18598 2.17111 2.15695 2.14324 2.1304 2.11786 2.1064 2.09515 2.08501 2.07519 2.06612 2.05783 2.05034 2.04417 2.03849 2.034 2.02971 2.02645 2.02372 2.02146 2.01975 2.01805 2.01682 2.01536 2.01411 2.01267 2.01119 2.00958 2.0077 2.00577 2.00351 2.00116 1.99856 1.99568 1.99272 1.98931 1.98597 1.98207 1.97826 1.974 1.96976 1.9653 1.96069 1.95614 1.95132 1.94675 1.94188 1.93733 1.93255 1.92806 1.92346 1.91912 1.91477 1.91071 1.90675 1.90318 1.89979 1.89693 1.89429 1.89217 1.89059 1.88954 1.88927 1.8895 1.89023 1.89091 1.89262 1.89466 1.89809 1.90103 1.90441 1.90712 1.90951 1.91131 1.91221 1.91273 1.91235 1.91188 1.9109 1.90967 1.90803 1.9057 1.90415 1.90169 2.45969 2.43842 2.42124 2.40527 2.38978 2.3744 2.3589 2.34298 2.3268 2.31016 2.29344 2.27652 2.25973 2.24306 2.22659 2.21059 2.19468 2.17946 2.16433 2.14996 2.13583 2.12233 2.1094 2.09701 2.08545 2.07441 2.0644 2.05498 2.04641 2.03845 2.03136 2.02528 2.01987 2.01527 2.01145 2.00837 2.00568 2.00343 2.00162 1.99982 1.99854 1.99706 1.99586 1.99444 1.99293 1.99132 1.98929 1.98727 1.98469 1.98212 1.97911 1.97589 1.97253 1.96867 1.96501 1.96069 1.95676 1.95217 1.94798 1.94324 1.93888 1.93409 1.9297 1.92494 1.92061 1.91599 1.91179 1.90744 1.90347 1.89954 1.89594 1.89267 1.88967 1.88724 1.88497 1.88363 1.88255 1.88256 1.88286 1.88362 1.88443 1.88676 1.88908 1.89259 1.89573 1.89905 1.90185 1.90412 1.90594 1.90678 1.90722 1.90686 1.90618 1.90544 1.90417 1.90231 1.90021 1.8976 1.89589 1.89339 2.49192 2.46216 2.43816 2.41814 2.39986 2.3826 2.36589 2.34942 2.33316 2.31692 2.30044 2.28396 2.26726 2.25078 2.23423 2.21799 2.2019 2.18602 2.17056 2.15543 2.14074 2.12662 2.11296 2.09997 2.08759 2.07586 2.06483 2.0545 2.04489 2.0361 2.02796 2.02068 2.01399 2.0082 2.00282 1.99852 1.99498 1.99217 1.98988 1.98812 1.98672 1.98536 1.98422 1.98289 1.98165 1.98006 1.97838 1.97635 1.97405 1.97149 1.96855 1.96542 1.96191 1.95824 1.95428 1.95022 1.94591 1.94161 1.93701 1.9326 1.92784 1.92343 1.91867 1.91433 1.90974 1.90554 1.90129 1.89733 1.89354 1.89001 1.88685 1.88396 1.8816 1.87944 1.8781 1.87705 1.87705 1.87729 1.87779 1.87882 1.88144 1.88421 1.88774 1.89098 1.89413 1.89708 1.8991 1.9011 1.90179 1.90251 1.90216 1.90182 1.90111 1.89997 1.8982 1.89586 1.89355 1.8907 1.88885 1.88626 2.52904 2.50268 2.47706 2.45103 2.42656 2.4031 2.3814 2.36173 2.34329 2.32556 2.30818 2.29103 2.27404 2.25718 2.24052 2.22401 2.20773 2.19157 2.17573 2.16022 2.14517 2.13052 2.11647 2.10292 2.09007 2.07774 2.06613 2.05508 2.04479 2.03518 2.02648 2.01854 2.01157 2.00537 1.99983 1.99513 1.99117 1.98776 1.98514 1.98281 1.98095 1.97936 1.97812 1.97695 1.97579 1.97455 1.97302 1.97135 1.96921 1.96693 1.96415 1.96122 1.95787 1.95438 1.95064 1.94671 1.94265 1.93836 1.93405 1.92952 1.92508 1.92043 1.91602 1.91142 1.90717 1.90284 1.89886 1.89502 1.89148 1.88833 1.88545 1.88317 1.88111 1.87981 1.879 1.87895 1.87917 1.87959 1.88092 1.88352 1.88626 1.88942 1.89257 1.89531 1.89811 1.8999 1.9017 1.90244 1.90278 1.90255 1.90207 1.90145 1.90021 1.89852 1.89633 1.89388 1.89143 1.88864 1.8867 1.88427 2.54601 2.52454 2.50389 2.48208 2.45887 2.43563 2.41281 2.39039 2.36877 2.34819 2.32853 2.30965 2.29138 2.27351 2.25587 2.23845 2.22105 2.20406 2.18719 2.17106 2.15543 2.14063 2.12641 2.11285 2.09977 2.08721 2.07529 2.06378 2.05323 2.04314 2.034 2.02546 2.01778 2.01066 2.00429 1.99836 1.99324 1.98892 1.98533 1.98241 1.98025 1.9785 1.97718 1.97602 1.97495 1.97387 1.97254 1.97111 1.96924 1.96721 1.96471 1.96201 1.95892 1.9556 1.95205 1.94825 1.9443 1.94009 1.93584 1.93135 1.92693 1.92232 1.91794 1.9134 1.90923 1.90502 1.90122 1.89761 1.89437 1.89165 1.88919 1.88743 1.88595 1.88533 1.88503 1.88524 1.88571 1.88746 1.88999 1.89288 1.89579 1.89898 1.90144 1.90406 1.90574 1.90715 1.908 1.90789 1.90754 1.90717 1.90633 1.90535 1.90348 1.9014 1.899 1.89637 1.89378 1.89091 1.88889 1.88649 2.57274 2.55101 2.53014 2.50945 2.48799 2.46608 2.44396 2.42179 2.40002 2.37872 2.35802 2.33796 2.31826 2.29908 2.2801 2.26169 2.24357 2.22607 2.20896 2.19262 2.17664 2.16146 2.14643 2.13231 2.11855 2.10581 2.09357 2.08223 2.0713 2.06097 2.05099 2.04156 2.03252 2.02427 2.01656 2.0098 2.00376 1.99893 1.9949 1.99177 1.98936 1.98742 1.986 1.98477 1.98376 1.98273 1.98159 1.98038 1.97876 1.97708 1.97481 1.97252 1.9696 1.96672 1.9632 1.95971 1.95564 1.95159 1.94711 1.94261 1.93792 1.9332 1.92856 1.92383 1.9195 1.91512 1.91131 1.90764 1.90463 1.90188 1.89988 1.89817 1.89735 1.89665 1.89672 1.89748 1.89937 1.90168 1.90463 1.90724 1.91031 1.91264 1.91494 1.91665 1.9176 1.91845 1.91817 1.91771 1.91697 1.91632 1.91487 1.91338 1.91104 1.90882 1.90623 1.90358 1.9009 1.89808 1.896 1.89373 2.587 2.56769 2.54859 2.52909 2.50947 2.48943 2.46943 2.44918 2.42902 2.40882 2.3889 2.36897 2.34963 2.33047 2.31195 2.29368 2.27601 2.25858 2.24169 2.22523 2.20934 2.19414 2.17947 2.16541 2.15175 2.13842 2.12537 2.1125 2.10015 2.08793 2.07655 2.06577 2.05594 2.04693 2.03852 2.03123 2.02435 2.01859 2.01324 2.0088 2.0049 2.00167 1.99915 1.99689 1.99541 1.99379 1.99287 1.99145 1.99056 1.98907 1.98775 1.98593 1.984 1.98166 1.97905 1.97609 1.97274 1.96929 1.96535 1.96157 1.95727 1.95321 1.94889 1.9446 1.94071 1.93635 1.93323 1.92927 1.92712 1.92416 1.92292 1.92101 1.92055 1.91995 1.92079 1.92226 1.92383 1.92612 1.92804 1.93028 1.93207 1.9336 1.93474 1.93525 1.93538 1.9349 1.93382 1.93314 1.93176 1.93066 1.92836 1.92648 1.92375 1.92137 1.91852 1.91574 1.91288 1.90997 1.90779 1.90548 2.59745 2.57802 2.55925 2.54094 2.52323 2.5055 2.48715 2.46854 2.44929 2.43014 2.41109 2.39244 2.37413 2.35636 2.33872 2.32161 2.30461 2.28802 2.27166 2.25561 2.23976 2.22432 2.20892 2.19391 2.17898 2.16456 2.15042 2.13688 2.12379 2.11122 2.09934 2.08738 2.07631 2.06532 2.05551 2.04602 2.03737 2.02954 2.02267 2.01703 2.01223 2.00868 2.0057 2.00361 2.00194 2.00067 1.99976 1.99878 1.99807 1.99696 1.99614 1.99465 1.99343 1.99144 1.98965 1.98725 1.98483 1.98224 1.97915 1.9765 1.97274 1.97001 1.96592 1.96322 1.9593 1.95693 1.95357 1.9518 1.94928 1.94804 1.94649 1.94551 1.94571 1.94648 1.94797 1.94912 1.9511 1.95249 1.95412 1.95524 1.95602 1.9564 1.95621 1.9558 1.95443 1.95332 1.95154 1.95047 1.94834 1.94669 1.94401 1.9418 1.9391 1.9365 1.93376 1.93088 1.92812 1.92519 1.92303 1.9208 2.6158 2.59904 2.58265 2.56524 2.54684 2.52743 2.50752 2.48766 2.46809 2.44882 2.43011 2.41166 2.39371 2.37613 2.35888 2.34201 2.32534 2.30879 2.29242 2.27603 2.2599 2.24404 2.22851 2.2133 2.19844 2.1837 2.16913 2.15459 2.14008 2.12573 2.11176 2.0982 2.08577 2.07384 2.06362 2.054 2.04616 2.03897 2.03286 2.02744 2.0226 2.0183 2.01451 2.01129 2.00848 2.00633 2.00433 2.00299 2.0015 2.00052 1.99934 1.99829 1.99704 1.99563 1.99409 1.99251 1.99059 1.98879 1.98646 1.98438 1.98175 1.97948 1.97672 1.97454 1.97193 1.97023 1.96808 1.96717 1.96535 1.96492 1.96421 1.96494 1.9658 1.96753 1.96888 1.97109 1.97259 1.97454 1.97588 1.97689 1.97756 1.97746 1.97718 1.9761 1.97493 1.9736 1.97202 1.97091 1.96863 1.96695 1.96413 1.96223 1.9592 1.95689 1.95377 1.95106 1.94799 1.94501 1.94268 1.94022 2.62654 2.61153 2.59707 2.58134 2.56426 2.54656 2.52824 2.50981 2.49148 2.47329 2.45564 2.43827 2.4214 2.40457 2.38781 2.37087 2.35405 2.33717 2.32072 2.30449 2.28858 2.27292 2.25719 2.24135 2.22527 2.20893 2.19262 2.17651 2.16083 2.14612 2.13212 2.11934 2.10741 2.09648 2.08619 2.07655 2.06732 2.05842 2.0499 2.04212 2.03468 2.02826 2.02236 2.01756 2.01327 2.00986 2.00699 2.00481 2.00303 2.00174 2.00058 1.99976 1.99896 1.99851 1.9978 1.99729 1.99629 1.99542 1.99396 1.9927 1.99084 1.98923 1.98725 1.98548 1.98353 1.98191 1.97978 1.97875 1.97693 1.97704 1.97736 1.97823 1.97939 1.98097 1.98331 1.98484 1.9873 1.98859 1.9902 1.99136 1.99176 1.99254 1.99229 1.99169 1.99118 1.99048 1.98984 1.98839 1.98713 1.98505 1.98282 1.98075 1.9778 1.97577 1.97231 1.97032 1.96664 1.96479 1.96199 1.96093 2.63306 2.61736 2.60331 2.58838 2.57246 2.55558 2.53829 2.52096 2.504 2.48755 2.47134 2.45521 2.43883 2.42252 2.40625 2.39028 2.37473 2.3593 2.34398 2.32832 2.31196 2.29516 2.27768 2.26 2.24239 2.22509 2.20859 2.19275 2.17781 2.1636 2.14997 2.13685 2.12406 2.11167 2.09956 2.08795 2.07678 2.06635 2.05649 2.04746 2.03917 2.03193 2.02524 2.01943 2.01421 2.00994 2.00628 2.00341 2.0013 1.99991 1.99905 1.99884 1.99888 1.99904 1.99918 1.99914 1.99899 1.99853 1.9979 1.99652 1.99547 1.99397 1.99306 1.99168 1.99069 1.99005 1.98949 1.98982 1.99061 1.99206 1.99417 1.99614 1.99915 2.00191 2.00493 2.0082 2.01064 2.01351 2.01532 2.01696 2.01808 2.01852 2.01825 2.01757 2.01708 2.01599 2.01502 2.01283 2.01137 2.00841 2.00668 2.00342 2.00149 1.99824 1.99607 1.99324 1.99078 1.98879 1.98667 1.98607 2.64538 2.62938 2.61545 2.60095 2.58555 2.56947 2.55314 2.53677 2.52035 2.50371 2.48725 2.47105 2.4552 2.43981 2.42466 2.40957 2.39401 2.37793 2.36094 2.34336 2.32506 2.30694 2.28874 2.27125 2.25429 2.23786 2.22206 2.20649 2.19131 2.17631 2.16154 2.14714 2.13312 2.11952 2.10661 2.09427 2.08262 2.07158 2.06123 2.05153 2.04252 2.03408 2.02637 2.01932 2.01321 2.00799 2.00372 2.00047 1.99828 1.99693 1.99635 1.99642 1.99668 1.99724 1.99763 1.99773 1.99769 1.9975 1.99696 1.99625 1.99541 1.99496 1.99504 1.99531 1.99601 1.9974 1.99959 2.00198 2.00598 2.00924 2.01408 2.01823 2.02265 2.02717 2.03077 2.03443 2.03733 2.03934 2.04131 2.04194 2.04263 2.04225 2.04143 2.04064 2.03967 2.03819 2.03703 2.03457 2.03305 2.03022 2.02858 2.02566 2.02411 2.02111 2.01954 2.01639 2.01478 2.01158 2.01026 2.00757 2.64906 2.63462 2.62223 2.60882 2.59412 2.57867 2.56253 2.54629 2.53016 2.51414 2.49858 2.48353 2.46875 2.45426 2.43932 2.42381 2.40728 2.39014 2.37227 2.35451 2.33655 2.31922 2.30198 2.28522 2.26863 2.252 2.23572 2.21934 2.20325 2.18746 2.17191 2.157 2.1424 2.12851 2.11508 2.10232 2.09003 2.07834 2.06726 2.05665 2.04667 2.03706 2.0286 2.02068 2.014 2.00837 2.00393 2.00084 1.99846 1.99703 1.99626 1.99593 1.99596 1.99612 1.99617 1.99603 1.9957 1.99576 1.99589 1.99624 1.99671 1.99766 1.99927 2.00133 2.00429 2.00736 2.01147 2.01565 2.02051 2.02583 2.03064 2.03637 2.04079 2.04568 2.04952 2.05271 2.05555 2.05715 2.05861 2.05919 2.05917 2.0586 2.05751 2.05668 2.05527 2.05428 2.05231 2.05095 2.04896 2.04724 2.04558 2.04324 2.04183 2.03884 2.03709 2.03332 2.03113 2.02655 2.02442 2.01951 2.6575 2.64289 2.62966 2.6152 2.59949 2.58327 2.56666 2.55001 2.53377 2.51808 2.50305 2.48865 2.47404 2.45915 2.44362 2.4274 2.41081 2.39399 2.37717 2.36043 2.34374 2.32699 2.31017 2.29312 2.27623 2.25907 2.24237 2.22556 2.20935 2.19339 2.17781 2.16283 2.14819 2.13409 2.12053 2.10724 2.09463 2.08235 2.07063 2.05911 2.04848 2.03832 2.0293 2.02117 2.01436 2.00841 2.00364 1.99986 1.99672 1.99456 1.99275 1.99155 1.99093 1.99058 1.99006 1.9901 1.99056 1.99123 1.99256 1.99414 1.99629 1.99869 2.00167 2.00515 2.00914 2.01374 2.01866 2.02418 2.02974 2.03554 2.04124 2.04656 2.05157 2.05595 2.05978 2.06262 2.0654 2.06667 2.0681 2.0687 2.06871 2.06831 2.06777 2.06733 2.06673 2.06604 2.06479 2.064 2.06241 2.06139 2.05925 2.05771 2.05485 2.05208 2.04876 2.04441 2.04085 2.03519 2.03246 2.02675 2.66316 2.64975 2.6375 2.624 2.6088 2.59244 2.57565 2.5586 2.54212 2.52596 2.51005 2.49434 2.4784 2.46227 2.44616 2.42959 2.41324 2.39666 2.38027 2.36368 2.34705 2.33007 2.31317 2.29599 2.27928 2.26236 2.24613 2.22973 2.21395 2.19819 2.18292 2.16793 2.15339 2.13907 2.1254 2.11162 2.09859 2.08548 2.07303 2.06094 2.04951 2.03896 2.02936 2.02088 2.01336 2.0068 2.00108 1.99626 1.99214 1.98895 1.98627 1.98445 1.98349 1.9831 1.98285 1.98314 1.98419 1.98556 1.9879 1.99023 1.99335 1.99693 2.00099 2.00556 2.01051 2.01607 2.02179 2.02806 2.03407 2.04036 2.04619 2.05158 2.05673 2.06069 2.06465 2.06716 2.06984 2.071 2.07252 2.07302 2.07334 2.07334 2.07341 2.07357 2.07375 2.07359 2.07319 2.07244 2.07124 2.07003 2.06785 2.06588 2.06268 2.0597 2.05562 2.05161 2.04739 2.04282 2.03981 2.0357 2.66048 2.64765 2.63611 2.62314 2.60842 2.5923 2.57596 2.55902 2.54278 2.52665 2.51099 2.49566 2.48048 2.46536 2.45029 2.43481 2.41918 2.4029 2.38626 2.36905 2.35178 2.33433 2.31722 2.30017 2.28351 2.26688 2.2507 2.23441 2.21889 2.20314 2.18834 2.17325 2.15906 2.14455 2.13078 2.11672 2.10329 2.08982 2.07698 2.06486 2.05329 2.04282 2.0326 2.02341 2.01471 2.00699 1.99998 1.99388 1.98857 1.98425 1.9809 1.97859 1.97759 1.97762 1.97774 1.97835 1.97973 1.98254 1.98502 1.98888 1.99221 1.99679 2.00115 2.00653 2.01202 2.01818 2.0245 2.03115 2.03765 2.04419 2.05017 2.05582 2.06088 2.06501 2.069 2.07152 2.07434 2.07569 2.07744 2.07805 2.07884 2.07917 2.07945 2.08014 2.08027 2.08007 2.07951 2.07849 2.07719 2.07526 2.07296 2.07024 2.06704 2.06354 2.05975 2.05579 2.05194 2.04793 2.04523 2.04194 2.66937 2.65512 2.64259 2.62842 2.61293 2.59557 2.5782 2.56034 2.54349 2.52741 2.5122 2.49833 2.48432 2.47058 2.45566 2.44 2.42336 2.40601 2.38825 2.37027 2.35251 2.33469 2.31737 2.30015 2.28324 2.26668 2.2505 2.23452 2.21933 2.20388 2.18955 2.17459 2.16081 2.14628 2.13268 2.11866 2.10523 2.09202 2.0792 2.0672 2.0553 2.04424 2.0334 2.02313 2.01358 2.0046 1.99662 1.98952 1.98342 1.97859 1.97515 1.97257 1.97233 1.97266 1.97336 1.97431 1.97654 1.97985 1.9832 1.98741 1.99166 1.9966 2.00186 2.00757 2.01382 2.0203 2.02717 2.03393 2.04083 2.04733 2.05361 2.05935 2.06445 2.06904 2.07302 2.07613 2.07931 2.08124 2.08344 2.0848 2.086 2.08653 2.08753 2.08787 2.08768 2.0872 2.08592 2.08471 2.0826 2.08014 2.07751 2.07422 2.07102 2.06711 2.06363 2.05934 2.05587 2.05161 2.04915 2.04559 2.66718 2.65397 2.64155 2.62647 2.61096 2.59419 2.57853 2.5628 2.54808 2.5339 2.51969 2.50563 2.49017 2.47465 2.45809 2.44146 2.42417 2.40688 2.38924 2.37161 2.35408 2.33628 2.31911 2.30164 2.28482 2.26809 2.25191 2.23583 2.22049 2.20501 2.19059 2.17566 2.16203 2.14769 2.13455 2.12106 2.10831 2.09584 2.08322 2.07104 2.05837 2.04638 2.03463 2.02336 2.01295 2.00321 1.9944 1.98699 1.98057 1.97563 1.97209 1.96966 1.96927 1.96964 1.97045 1.97123 1.97341 1.97668 1.98059 1.98502 1.99001 1.99542 2.00132 2.00753 2.01411 2.02079 2.02776 2.03456 2.04142 2.04788 2.05422 2.05996 2.0656 2.07055 2.07532 2.07955 2.08322 2.08656 2.08926 2.09133 2.09275 2.09393 2.09443 2.09434 2.09372 2.09278 2.09057 2.08898 2.08575 2.08326 2.07999 2.07639 2.07326 2.06908 2.06597 2.06135 2.05837 2.05367 2.05148 2.04743 2.67139 2.65699 2.64272 2.62658 2.61115 2.59562 2.58201 2.56837 2.55452 2.53983 2.52385 2.50781 2.49063 2.47396 2.45675 2.44005 2.42302 2.40617 2.38879 2.37136 2.35375 2.33568 2.31825 2.30047 2.28352 2.26663 2.25058 2.23474 2.21991 2.20504 2.1914 2.17734 2.16478 2.15148 2.13909 2.12608 2.11282 2.09962 2.08559 2.07234 2.05865 2.04553 2.03285 2.0207 2.00968 1.99979 1.99083 1.98351 1.97713 1.97217 1.96847 1.966 1.96518 1.96547 1.96617 1.9668 1.96875 1.97241 1.9767 1.98182 1.98765 1.99377 2.00065 2.00734 2.01463 2.02142 2.02849 2.03512 2.04176 2.048 2.05419 2.05995 2.06573 2.07105 2.07626 2.08115 2.08528 2.08956 2.09233 2.09518 2.09671 2.09798 2.09829 2.09812 2.09727 2.0962 2.09373 2.0921 2.08871 2.0867 2.08305 2.08014 2.07723 2.07287 2.07041 2.06539 2.06273 2.05749 2.05522 2.05039 2.67023 2.65507 2.64123 2.62707 2.61444 2.60235 2.59064 2.57742 2.56233 2.5459 2.52773 2.50988 2.4916 2.47449 2.45757 2.44109 2.42412 2.40687 2.38881 2.37056 2.35207 2.33335 2.31507 2.29659 2.27896 2.26172 2.24586 2.23085 2.21755 2.20481 2.1935 2.18152 2.17028 2.15749 2.14473 2.13095 2.11638 2.10191 2.08632 2.07165 2.05678 2.04286 2.03003 2.01788 2.00707 1.99725 1.9885 1.98101 1.97467 1.96926 1.96528 1.96233 1.96097 1.96107 1.96145 1.96183 1.9636 1.96716 1.97181 1.97753 1.98391 1.99101 1.99848 2.00603 2.0138 2.02103 2.02825 2.03493 2.04123 2.04755 2.05322 2.0592 2.06461 2.07037 2.07537 2.08089 2.08505 2.08979 2.09275 2.09597 2.09755 2.09913 2.09977 2.09966 2.09902 2.09815 2.09615 2.09477 2.09188 2.0902 2.08693 2.08449 2.08183 2.07758 2.07525 2.07022 2.06744 2.06186 2.0594 2.05389 2.67134 2.65301 2.63797 2.62526 2.61377 2.60327 2.59132 2.57793 2.56218 2.5455 2.52735 2.51015 2.49303 2.4771 2.46129 2.44548 2.42882 2.41196 2.39411 2.37647 2.35817 2.33983 2.3213 2.30278 2.28474 2.26743 2.25132 2.23625 2.2226 2.20933 2.19719 2.18424 2.17201 2.1583 2.14483 2.13045 2.11571 2.10146 2.08656 2.073 2.05935 2.04657 2.03478 2.02336 2.01313 2.00353 1.99486 1.98674 1.98005 1.97358 1.96882 1.96472 1.96266 1.96163 1.96162 1.96158 1.96295 1.96615 1.97094 1.97678 1.98342 1.99078 1.99828 2.00603 2.01365 2.02075 2.02782 2.03406 2.04035 2.04621 2.05206 2.05785 2.06379 2.06952 2.07545 2.08094 2.08608 2.09085 2.09447 2.09745 2.0995 2.1008 2.10099 2.10075 2.09973 2.09855 2.09594 2.09429 2.0909 2.08904 2.08539 2.08282 2.07977 2.07534 2.07282 2.06744 2.06454 2.0587 2.05612 2.05027 2.67392 2.6526 2.63626 2.62384 2.61258 2.6021 2.58951 2.57562 2.55942 2.5428 2.52512 2.50879 2.49265 2.47733 2.46207 2.44651 2.43038 2.41401 2.39675 2.37947 2.36117 2.34269 2.32375 2.30506 2.28693 2.2698 2.25394 2.2391 2.22548 2.21201 2.1993 2.18568 2.17257 2.15813 2.1441 2.12948 2.11488 2.10117 2.087 2.07456 2.06199 2.05052 2.03973 2.02941 2.01959 2.01056 2.00178 1.99349 1.98649 1.97934 1.97415 1.9693 1.9668 1.9651 1.96482 1.96411 1.96528 1.96817 1.97268 1.97842 1.98486 1.99215 1.9995 2.00716 2.01457 2.02159 2.02832 2.03452 2.04048 2.04633 2.05198 2.05799 2.0639 2.07025 2.07639 2.08236 2.08817 2.09288 2.09691 2.09996 2.10177 2.10247 2.10241 2.10186 2.10009 2.09838 2.09486 2.09278 2.08864 2.08645 2.08226 2.0796 2.07598 2.07173 2.069 2.0635 2.06068 2.055 2.0525 2.04697 2.44289 2.74428 3.00013 3.27267 3.23119 3.2043 3.19167 3.18769 3.18092 3.17293 3.16427 3.16007 3.15912 3.15849 3.15839 3.15944 3.16297 3.16757 3.17346 3.17973 3.18628 3.19131 3.19664 3.20062 3.2029 3.20383 3.20413 3.20211 3.19952 3.19404 3.18853 3.18208 3.17639 3.17154 3.16566 3.15712 3.15061 3.13962 3.13226 3.12237 3.11433 3.10332 3.09375 3.0815 3.07164 3.0591 3.04707 3.03483 3.02382 3.01082 3.00008 2.98687 2.97556 2.96255 2.95093 2.9382 2.92602 2.91362 2.90136 2.88871 2.87665 2.86383 2.85205 2.8394 2.82774 2.81531 2.80378 2.79154 2.7802 2.76818 2.75702 2.7453 2.73425 2.72291 2.71194 2.70103 2.69027 2.67974 2.66936 2.65922 2.64931 2.63958 2.63027 2.62095 2.61239 2.60376 2.59586 2.58842 2.5814 2.5753 2.57001 2.56542 2.56261 2.56066 2.56011 2.55993 2.56011 2.56107 2.56434 2.56211 2.34231 2.51425 2.68818 3.02577 3.20123 3.28155 3.44258 3.52835 3.50945 3.50628 3.50226 3.50318 3.50348 3.49882 3.4906 3.48336 3.47054 3.45511 3.4358 3.41693 3.39789 3.37948 3.36808 3.3522 3.33561 3.31329 3.29532 3.26989 3.24981 3.22742 3.20291 3.18461 3.15988 3.14152 3.11658 3.09831 3.07577 3.05643 3.03487 3.01729 2.99741 2.98017 2.96223 2.94384 2.92613 2.90846 2.89192 2.87547 2.85964 2.84406 2.82839 2.81362 2.79826 2.78414 2.76936 2.75533 2.74136 2.72746 2.71412 2.70065 2.68781 2.67488 2.66251 2.65009 2.63813 2.62616 2.61459 2.60301 2.59176 2.58059 2.56959 2.55892 2.54819 2.53801 2.52762 2.51789 2.50792 2.49856 2.48908 2.48 2.47108 2.4623 2.45395 2.44576 2.4379 2.4306 2.42344 2.41707 2.41113 2.40578 2.40147 2.39775 2.39541 2.39424 2.39407 2.39417 2.39444 2.39548 2.39887 2.39662 2.32358 2.35837 2.458 2.55412 2.72926 2.8994 3.05358 3.25318 3.36931 3.44293 3.47869 3.52211 3.54467 3.56831 3.57138 3.56379 3.54696 3.51865 3.48281 3.44759 3.40949 3.37109 3.33246 3.28882 3.24753 3.20296 3.16179 3.11584 3.07554 3.03343 2.99568 2.9583 2.92371 2.89043 2.85947 2.82952 2.80153 2.77501 2.75034 2.7276 2.70598 2.68701 2.66759 2.65022 2.63143 2.61606 2.59901 2.58514 2.56928 2.55615 2.54147 2.52882 2.51516 2.50303 2.49016 2.4788 2.46659 2.45584 2.44429 2.4341 2.4231 2.41337 2.40292 2.39349 2.38357 2.37438 2.36489 2.35594 2.34681 2.33817 2.32931 2.32104 2.31244 2.30443 2.29618 2.28831 2.28045 2.27273 2.26526 2.25779 2.25066 2.24364 2.23682 2.23035 2.22399 2.21802 2.21246 2.20707 2.20258 2.19828 2.19486 2.19235 2.19053 2.19038 2.19057 2.19106 2.19168 2.19317 2.19741 2.19601 2.32609 2.29737 2.3313 2.36647 2.43799 2.5217 2.61748 2.70969 2.81419 2.91098 2.98572 3.03885 3.0833 3.10356 3.11757 3.11628 3.11002 3.09629 3.07428 3.04735 3.01231 2.97566 2.93441 2.89437 2.85306 2.81448 2.77668 2.74163 2.70909 2.67852 2.65116 2.62498 2.60223 2.58065 2.56196 2.54521 2.53019 2.51654 2.50375 2.49237 2.48135 2.47193 2.46213 2.45288 2.44282 2.43379 2.42449 2.41596 2.40698 2.3986 2.38975 2.38143 2.37265 2.3644 2.3557 2.34755 2.33898 2.3309 2.32249 2.31445 2.30619 2.29814 2.29002 2.28196 2.27393 2.26593 2.25793 2.25008 2.24211 2.23438 2.22654 2.21883 2.21125 2.20356 2.19625 2.18872 2.18154 2.17437 2.16715 2.16038 2.15332 2.14678 2.14022 2.13384 2.128 2.12203 2.11687 2.11182 2.1073 2.10365 2.1002 2.09821 2.0967 2.09682 2.09719 2.09798 2.09905 2.10098 2.10608 2.106 2.3333 2.29815 2.28105 2.2947 2.3174 2.35533 2.39707 2.4433 2.48515 2.52452 2.55616 2.584 2.60194 2.61614 2.61908 2.61678 2.611 2.60148 2.59054 2.57555 2.55985 2.54356 2.52763 2.51259 2.49886 2.48626 2.47493 2.46473 2.45567 2.4476 2.44046 2.43395 2.42813 2.42278 2.41771 2.41309 2.40824 2.40386 2.39868 2.39413 2.3888 2.38448 2.37912 2.37393 2.36745 2.36133 2.35473 2.34857 2.34182 2.33546 2.3284 2.32179 2.3145 2.30765 2.30031 2.29325 2.286 2.2788 2.27167 2.26439 2.25728 2.24997 2.24276 2.23546 2.22813 2.2208 2.21347 2.20604 2.19882 2.19132 2.18417 2.17674 2.16949 2.16223 2.15478 2.1477 2.14024 2.13333 2.12615 2.11939 2.11265 2.10602 2.09985 2.09351 2.08782 2.08222 2.07694 2.07244 2.06792 2.06458 2.06149 2.05957 2.05869 2.0589 2.05953 2.06011 2.06199 2.06442 2.06952 2.07053 2.34077 2.29968 2.28164 2.26896 2.27539 2.28786 2.30343 2.32083 2.33592 2.34874 2.3594 2.36686 2.3739 2.37798 2.37979 2.37862 2.37594 2.3742 2.37259 2.36922 2.3661 2.36215 2.35892 2.35606 2.35409 2.3525 2.35132 2.35054 2.34993 2.34964 2.34925 2.34897 2.34836 2.34782 2.34666 2.34572 2.34367 2.34213 2.33893 2.33658 2.33265 2.32996 2.32591 2.32211 2.31683 2.31161 2.30603 2.30039 2.29473 2.28876 2.28284 2.27651 2.27024 2.26363 2.25701 2.25024 2.24336 2.23651 2.2295 2.22254 2.21551 2.20841 2.20142 2.19421 2.18727 2.18006 2.17308 2.16605 2.15896 2.15216 2.14503 2.13835 2.13129 2.12459 2.11782 2.11109 2.10459 2.09787 2.09159 2.08512 2.07895 2.07297 2.06696 2.06157 2.05598 2.05115 2.04637 2.04218 2.03854 2.03532 2.03314 2.03141 2.0314 2.03168 2.03235 2.03328 2.03568 2.03883 2.04354 2.04491 2.34729 2.30931 2.2835 2.27026 2.2619 2.26363 2.26507 2.26765 2.26882 2.26931 2.26805 2.26681 2.26611 2.26617 2.26617 2.26575 2.26487 2.26401 2.26496 2.26613 2.26736 2.2682 2.26969 2.27083 2.27277 2.27419 2.27637 2.27797 2.28006 2.28133 2.28279 2.28359 2.28402 2.28393 2.28357 2.28287 2.28133 2.27991 2.27732 2.27499 2.27189 2.26946 2.2662 2.26289 2.25837 2.25379 2.24867 2.24368 2.23834 2.23313 2.22757 2.22207 2.21622 2.21029 2.20422 2.1979 2.19172 2.18518 2.17885 2.17222 2.16565 2.15897 2.15218 2.14545 2.13857 2.13174 2.12496 2.11796 2.11128 2.1042 2.09761 2.0907 2.08419 2.07758 2.07112 2.0648 2.05843 2.05242 2.0462 2.04049 2.03457 2.02915 2.02373 2.01861 2.01389 2.00922 2.00533 2.00146 1.99856 1.99594 1.99427 1.99349 1.99368 1.99426 1.99485 1.99617 1.99896 2.00247 2.00723 2.00836 2.35147 2.32064 2.29584 2.28052 2.26512 2.25763 2.252 2.24542 2.23923 2.2318 2.22481 2.21829 2.21325 2.2097 2.20732 2.20621 2.20497 2.20409 2.20426 2.20579 2.20769 2.21053 2.21247 2.21523 2.21744 2.22035 2.22307 2.22585 2.22848 2.23063 2.23292 2.23433 2.23607 2.23671 2.23775 2.23767 2.2374 2.2368 2.23549 2.23391 2.2318 2.22979 2.22731 2.22435 2.22051 2.21615 2.21141 2.20635 2.20119 2.19569 2.19024 2.18441 2.17861 2.17254 2.16637 2.1602 2.15377 2.14752 2.141 2.1346 2.12809 2.12145 2.115 2.10818 2.10174 2.09485 2.08832 2.0815 2.0749 2.06824 2.06155 2.05501 2.04831 2.0419 2.0353 2.02898 2.02266 2.01642 2.01049 2.00444 1.99892 1.99329 1.98818 1.98319 1.97856 1.97441 1.9705 1.96735 1.96449 1.96266 1.96121 1.96125 1.96157 1.96199 1.96293 1.96551 1.96827 1.97256 1.97692 1.97844 2.36285 2.33241 2.30824 2.28881 2.2779 2.26174 2.24945 2.23865 2.22655 2.21571 2.20454 2.19548 2.18728 2.18157 2.177 2.17471 2.17256 2.17154 2.16994 2.17 2.17035 2.1722 2.17446 2.17655 2.17893 2.18131 2.18375 2.18626 2.18851 2.19096 2.19292 2.19509 2.19648 2.19803 2.19866 2.1994 2.19934 2.19891 2.19798 2.1966 2.19482 2.19302 2.19096 2.18831 2.18505 2.18119 2.17705 2.1726 2.16793 2.16317 2.15819 2.1531 2.14785 2.14234 2.13685 2.13093 2.12521 2.11904 2.11306 2.10677 2.10052 2.09416 2.08768 2.08124 2.07461 2.06816 2.0616 2.05515 2.04874 2.04227 2.03601 2.02954 2.02339 2.01706 2.01094 2.00489 1.99879 1.99308 1.98714 1.98177 1.97621 1.97128 1.96628 1.96188 1.95769 1.954 1.95082 1.94811 1.94621 1.94482 1.9446 1.9449 1.94535 1.9463 1.94794 1.95125 1.95453 1.95874 1.96292 1.96425 2.38009 2.35223 2.32602 2.30483 2.28522 2.27107 2.25501 2.23925 2.22501 2.21077 2.19851 2.18657 2.17702 2.16835 2.16213 2.15703 2.15358 2.15061 2.14849 2.14691 2.14582 2.14582 2.14641 2.1481 2.14971 2.15177 2.15367 2.15594 2.15818 2.16063 2.16294 2.16501 2.1669 2.16826 2.16953 2.17012 2.17065 2.17049 2.16986 2.16886 2.16739 2.16603 2.16435 2.16222 2.15954 2.15617 2.15264 2.14854 2.14434 2.13984 2.13507 2.13031 2.12507 2.12002 2.11445 2.10904 2.10324 2.09743 2.09144 2.08526 2.07912 2.07267 2.06636 2.05979 2.0534 2.04689 2.04039 2.034 2.02746 2.02121 2.01471 2.0086 2.00221 1.99623 1.99005 1.9842 1.9783 1.97259 1.96707 1.96158 1.95652 1.95142 1.94693 1.94249 1.93877 1.9353 1.93255 1.93037 1.92892 1.92833 1.92851 1.92891 1.92963 1.93118 1.93374 1.93714 1.94093 1.9443 1.94847 1.94912 2.39472 2.37215 2.34593 2.32257 2.29953 2.27894 2.26059 2.24353 2.22772 2.21219 2.19822 2.18519 2.17392 2.16375 2.1554 2.14822 2.14269 2.13783 2.13412 2.13052 2.1283 2.12625 2.12539 2.1254 2.12617 2.12795 2.12947 2.13182 2.13362 2.13612 2.13789 2.14009 2.14157 2.14331 2.14436 2.14543 2.14587 2.14602 2.14558 2.14465 2.14357 2.14234 2.14098 2.13926 2.13681 2.13403 2.13065 2.12706 2.12307 2.11879 2.11436 2.10953 2.10467 2.09944 2.09417 2.08865 2.08305 2.07731 2.07142 2.06552 2.05939 2.05333 2.04708 2.04098 2.03474 2.02858 2.02243 2.01625 2.01019 2.00407 1.9981 1.99206 1.98617 1.9803 1.9745 1.96888 1.96322 1.95796 1.95256 1.94775 1.94276 1.93845 1.93412 1.93051 1.92711 1.92444 1.92226 1.92086 1.92019 1.92034 1.92072 1.92137 1.92299 1.92496 1.92868 1.93156 1.93559 1.93797 1.94201 1.94208 2.40603 2.38688 2.36475 2.34182 2.31944 2.29717 2.27612 2.25627 2.23814 2.22142 2.20627 2.19184 2.17888 2.1669 2.15653 2.14725 2.13959 2.13284 2.12737 2.12274 2.11905 2.11584 2.11408 2.11251 2.1122 2.11229 2.11321 2.11459 2.11609 2.11792 2.11958 2.12144 2.12291 2.12467 2.12569 2.12707 2.12743 2.12818 2.1279 2.12737 2.12657 2.12554 2.1245 2.12275 2.12057 2.11775 2.11451 2.11104 2.10703 2.10302 2.09845 2.09396 2.08904 2.08412 2.07899 2.07368 2.06836 2.06268 2.05712 2.05114 2.04527 2.0392 2.0331 2.02703 2.02075 2.01471 2.00834 2.00231 1.99602 1.98997 1.98388 1.97782 1.97198 1.96599 1.96039 1.95461 1.9493 1.94387 1.93898 1.93404 1.92971 1.9254 1.92185 1.91846 1.91593 1.91374 1.91246 1.91179 1.91194 1.91225 1.91294 1.91417 1.91697 1.91924 1.92312 1.92547 1.92893 1.93048 1.93364 1.93313 2.41449 2.39474 2.37333 2.35095 2.32908 2.3079 2.28765 2.2685 2.25041 2.23353 2.2176 2.2029 2.18892 2.17603 2.16399 2.15319 2.14348 2.13503 2.12762 2.12119 2.11581 2.11151 2.10793 2.1052 2.10355 2.10229 2.10193 2.10202 2.10279 2.10388 2.10518 2.10642 2.10765 2.10868 2.10963 2.11022 2.11066 2.11068 2.11022 2.10961 2.10842 2.10737 2.10606 2.10428 2.10216 2.09929 2.0964 2.09281 2.08921 2.08501 2.08073 2.07606 2.07126 2.06631 2.06115 2.05601 2.05061 2.04525 2.03968 2.03409 2.02847 2.02273 2.01707 2.01121 2.00548 1.99954 1.99374 1.98784 1.982 1.97625 1.97043 1.96491 1.9592 1.95393 1.94843 1.94341 1.93822 1.93356 1.9288 1.92459 1.92043 1.91691 1.91367 1.91111 1.90913 1.90783 1.90737 1.90758 1.90797 1.9087 1.91066 1.91247 1.91601 1.9186 1.92196 1.92396 1.92648 1.92748 1.92975 1.92866 2.42542 2.40465 2.38275 2.36074 2.3393 2.31882 2.29945 2.28106 2.26372 2.2472 2.23141 2.21637 2.20191 2.18815 2.17502 2.16281 2.15147 2.14129 2.13196 2.12381 2.11638 2.11018 2.10478 2.10048 2.09674 2.09414 2.09191 2.09066 2.08963 2.08939 2.08948 2.08992 2.09042 2.09087 2.09119 2.09133 2.09133 2.09109 2.09052 2.08972 2.08853 2.08757 2.0861 2.08464 2.08231 2.07992 2.07694 2.07383 2.07032 2.06652 2.06252 2.05816 2.05377 2.04901 2.04428 2.03926 2.03415 2.02892 2.02344 2.01811 2.01245 2.00707 2.00136 1.99587 1.9902 1.98454 1.97893 1.97313 1.96759 1.96176 1.95635 1.95062 1.94541 1.93992 1.93499 1.92989 1.92532 1.92076 1.91666 1.91274 1.90933 1.90636 1.90389 1.90213 1.90091 1.90062 1.90089 1.90123 1.90216 1.9037 1.90656 1.90926 1.91264 1.91504 1.91758 1.91896 1.92044 1.92092 1.92239 1.92073 2.43668 2.41459 2.39151 2.36839 2.34645 2.3257 2.30673 2.2886 2.27177 2.25534 2.23971 2.22426 2.20948 2.1949 2.18096 2.1675 2.1549 2.14314 2.13241 2.12262 2.1139 2.10601 2.09886 2.09266 2.08715 2.08272 2.07898 2.07647 2.07436 2.07322 2.07226 2.07196 2.07206 2.07232 2.07263 2.07301 2.0732 2.07315 2.07295 2.07244 2.07193 2.07111 2.07034 2.06904 2.0674 2.06541 2.06306 2.06047 2.05739 2.05413 2.05035 2.04642 2.04212 2.03765 2.033 2.02812 2.02319 2.01796 2.01275 2.00734 2.00189 1.99638 1.99072 1.98518 1.97939 1.97384 1.96801 1.9625 1.95671 1.95129 1.94564 1.94039 1.93498 1.93 1.92495 1.92038 1.91586 1.91179 1.90794 1.90454 1.90167 1.89925 1.89758 1.89643 1.89625 1.89649 1.89689 1.8978 1.8999 1.90237 1.90569 1.90844 1.91136 1.91331 1.91517 1.91593 1.91689 1.91705 1.91807 1.91627 2.44618 2.42527 2.40288 2.38059 2.3589 2.33813 2.31869 2.30019 2.28262 2.26558 2.24903 2.23279 2.2169 2.20151 2.18652 2.17237 2.15873 2.14611 2.13432 2.12345 2.11345 2.10436 2.09621 2.08902 2.08279 2.07754 2.07313 2.06961 2.0669 2.06495 2.06352 2.06277 2.06224 2.06227 2.0624 2.06272 2.06298 2.06313 2.06302 2.06275 2.06218 2.06162 2.0608 2.05959 2.05802 2.05599 2.05375 2.05101 2.04802 2.04463 2.04094 2.03702 2.03278 2.02845 2.02377 2.01907 2.01405 2.009 2.00383 1.99853 1.99327 1.98778 1.98245 1.97686 1.97148 1.96587 1.96046 1.95492 1.94955 1.94413 1.93891 1.93369 1.92874 1.92385 1.91927 1.91491 1.91085 1.90714 1.90376 1.90103 1.89865 1.8972 1.89605 1.89607 1.89629 1.89676 1.898 1.89991 1.90287 1.90602 1.90888 1.91175 1.91355 1.9155 1.91601 1.91685 1.91678 1.91672 1.91687 1.91523 2.44791 2.42892 2.40962 2.39012 2.37098 2.35177 2.33329 2.31487 2.29727 2.27962 2.26269 2.24577 2.22948 2.21352 2.19802 2.18314 2.16871 2.15509 2.14216 2.13011 2.1189 2.10868 2.09923 2.09097 2.08346 2.07697 2.07109 2.06636 2.06229 2.05903 2.05646 2.05418 2.05277 2.05161 2.0509 2.05038 2.05005 2.0498 2.04932 2.04871 2.04779 2.04693 2.04571 2.04424 2.0423 2.04013 2.03767 2.03486 2.03184 2.02842 2.02487 2.02095 2.01692 2.01263 2.00814 2.00355 1.99873 1.99399 1.98905 1.98423 1.97931 1.97442 1.96959 1.96466 1.95988 1.95492 1.95015 1.9452 1.94045 1.93555 1.93092 1.9262 1.92183 1.91747 1.91356 1.90973 1.90644 1.9033 1.90095 1.89889 1.89769 1.89696 1.89707 1.89734 1.89804 1.89947 1.90217 1.90477 1.90831 1.91091 1.91388 1.9156 1.91724 1.91802 1.91816 1.918 1.91767 1.9171 1.91667 1.9149 2.44818 2.42967 2.41225 2.3951 2.37824 2.3611 2.34387 2.32664 2.30918 2.29221 2.27506 2.25857 2.24203 2.22601 2.21015 2.19472 2.17963 2.16518 2.15142 2.13833 2.12618 2.11467 2.10409 2.09421 2.08502 2.07709 2.06977 2.06352 2.05754 2.05265 2.04819 2.04453 2.04161 2.03924 2.0377 2.03629 2.0354 2.03438 2.03359 2.03258 2.03154 2.03032 2.02894 2.02726 2.02522 2.02303 2.02054 2.01788 2.01495 2.01179 2.00845 2.00482 2.00107 1.99702 1.99286 1.98847 1.98398 1.97942 1.97472 1.97008 1.96525 1.96063 1.95573 1.9512 1.94629 1.94187 1.93703 1.93269 1.92804 1.92382 1.91949 1.91552 1.91165 1.90811 1.9049 1.90192 1.89947 1.89736 1.89602 1.89501 1.89502 1.89538 1.89579 1.89694 1.89859 1.9018 1.90454 1.90811 1.91078 1.91347 1.91529 1.91637 1.91724 1.91705 1.9166 1.91611 1.91522 1.91376 1.91261 1.91047 2.45078 2.4321 2.41539 2.39954 2.38408 2.36827 2.35199 2.33521 2.3181 2.30085 2.28376 2.26667 2.24996 2.23335 2.21717 2.20134 2.18598 2.17111 2.15695 2.14324 2.1304 2.11786 2.1064 2.09515 2.08501 2.07519 2.06612 2.05783 2.05034 2.04417 2.03849 2.034 2.02971 2.02645 2.02372 2.02146 2.01975 2.01805 2.01683 2.01536 2.01411 2.01267 2.0112 2.00958 2.0077 2.00577 2.00352 2.00116 1.99856 1.99568 1.99272 1.98931 1.98597 1.98207 1.97826 1.974 1.96976 1.9653 1.96069 1.95614 1.95132 1.94675 1.94188 1.93733 1.93255 1.92806 1.92346 1.91912 1.91477 1.91072 1.90676 1.90318 1.89979 1.89693 1.89429 1.89217 1.89059 1.88954 1.88927 1.8895 1.89023 1.89091 1.89262 1.89467 1.89809 1.90103 1.90441 1.90712 1.90951 1.91131 1.91221 1.91273 1.91235 1.91188 1.9109 1.90967 1.90804 1.9057 1.90415 1.90169 2.45969 2.43842 2.42124 2.40527 2.38978 2.3744 2.3589 2.34298 2.3268 2.31016 2.29344 2.27652 2.25973 2.24306 2.22659 2.21059 2.19468 2.17946 2.16433 2.14996 2.13584 2.12233 2.1094 2.09701 2.08545 2.07441 2.0644 2.05499 2.04641 2.03845 2.03136 2.02528 2.01987 2.01527 2.01145 2.00837 2.00569 2.00343 2.00162 1.99982 1.99854 1.99706 1.99586 1.99444 1.99293 1.99132 1.98929 1.98727 1.98469 1.98212 1.97911 1.97589 1.97253 1.96867 1.96501 1.96069 1.95676 1.95217 1.94798 1.94324 1.93888 1.93409 1.9297 1.92494 1.92061 1.91599 1.91179 1.90744 1.90347 1.89954 1.89594 1.89267 1.88967 1.88724 1.88497 1.88363 1.88255 1.88256 1.88286 1.88362 1.88443 1.88676 1.88908 1.8926 1.89573 1.89905 1.90185 1.90412 1.90594 1.90678 1.90722 1.90686 1.90618 1.90544 1.90417 1.90231 1.90021 1.8976 1.89589 1.89339 2.49192 2.46216 2.43816 2.41814 2.39986 2.3826 2.36589 2.34942 2.33316 2.31692 2.30044 2.28396 2.26726 2.25078 2.23423 2.21799 2.2019 2.18602 2.17056 2.15543 2.14074 2.12662 2.11296 2.09997 2.08759 2.07586 2.06483 2.0545 2.0449 2.0361 2.02796 2.02068 2.01399 2.0082 2.00282 1.99852 1.99498 1.99217 1.98989 1.98812 1.98672 1.98536 1.98422 1.98289 1.98165 1.98006 1.97838 1.97635 1.97405 1.97149 1.96855 1.96543 1.96191 1.95824 1.95428 1.95022 1.94591 1.94161 1.93701 1.9326 1.92784 1.92343 1.91867 1.91433 1.90974 1.90554 1.90129 1.89733 1.89354 1.89001 1.88685 1.88396 1.8816 1.87944 1.8781 1.87705 1.87705 1.8773 1.87779 1.87882 1.88144 1.88421 1.88774 1.89098 1.89414 1.89708 1.8991 1.9011 1.9018 1.90251 1.90216 1.90182 1.90111 1.89998 1.8982 1.89586 1.89355 1.8907 1.88885 1.88626 2.52904 2.50268 2.47706 2.45103 2.42656 2.4031 2.3814 2.36173 2.34329 2.32556 2.30819 2.29103 2.27404 2.25718 2.24053 2.22401 2.20773 2.19157 2.17574 2.16022 2.14517 2.13053 2.11647 2.10292 2.09007 2.07774 2.06613 2.05508 2.04479 2.03519 2.02648 2.01854 2.01158 2.00537 1.99984 1.99514 1.99118 1.98777 1.98514 1.98281 1.98095 1.97937 1.97812 1.97695 1.97579 1.97456 1.97302 1.97136 1.96922 1.96694 1.96415 1.96122 1.95788 1.95438 1.95064 1.94671 1.94265 1.93836 1.93405 1.92952 1.92508 1.92043 1.91602 1.91142 1.90717 1.90284 1.89886 1.89502 1.89148 1.88833 1.88546 1.88318 1.88111 1.87981 1.879 1.87896 1.87918 1.87959 1.88092 1.88352 1.88627 1.88942 1.89257 1.89531 1.89811 1.8999 1.9017 1.90245 1.90278 1.90255 1.90207 1.90145 1.90022 1.89852 1.89633 1.89388 1.89143 1.88864 1.8867 1.88427 2.54601 2.52454 2.50389 2.48208 2.45887 2.43563 2.41281 2.39039 2.36877 2.34819 2.32853 2.30965 2.29138 2.27351 2.25587 2.23845 2.22105 2.20406 2.18719 2.17106 2.15543 2.14063 2.12641 2.11285 2.09977 2.08721 2.07529 2.06379 2.05323 2.04314 2.034 2.02546 2.01778 2.01066 2.00429 1.99836 1.99324 1.98892 1.98533 1.98241 1.98026 1.9785 1.97718 1.97602 1.97495 1.97387 1.97254 1.97111 1.96924 1.96722 1.96471 1.96201 1.95892 1.9556 1.95205 1.94825 1.9443 1.9401 1.93584 1.93135 1.92693 1.92232 1.91794 1.9134 1.90923 1.90502 1.90122 1.89761 1.89437 1.89165 1.88919 1.88743 1.88595 1.88533 1.88504 1.88525 1.88572 1.88746 1.88999 1.89289 1.8958 1.89898 1.90144 1.90407 1.90574 1.90715 1.908 1.9079 1.90754 1.90717 1.90633 1.90535 1.90348 1.9014 1.899 1.89637 1.89378 1.89091 1.88889 1.88649 2.57274 2.55101 2.53014 2.50945 2.48799 2.46608 2.44396 2.4218 2.40002 2.37872 2.35802 2.33796 2.31827 2.29908 2.2801 2.26169 2.24357 2.22607 2.20896 2.19262 2.17664 2.16146 2.14643 2.13231 2.11856 2.10581 2.09357 2.08223 2.0713 2.06097 2.05099 2.04157 2.03252 2.02427 2.01656 2.00981 2.00377 1.99893 1.9949 1.99178 1.98936 1.98743 1.98601 1.98477 1.98377 1.98274 1.9816 1.98038 1.97877 1.97709 1.97481 1.97253 1.9696 1.96672 1.9632 1.95971 1.95565 1.95159 1.94711 1.94261 1.93792 1.9332 1.92856 1.92383 1.9195 1.91512 1.91131 1.90764 1.90463 1.90188 1.89989 1.89817 1.89735 1.89665 1.89673 1.89748 1.89937 1.90168 1.90463 1.90724 1.91031 1.91264 1.91495 1.91665 1.9176 1.91845 1.91817 1.91771 1.91697 1.91632 1.91487 1.91338 1.91105 1.90882 1.90623 1.90358 1.9009 1.89808 1.896 1.89373 2.58701 2.56769 2.5486 2.52909 2.50947 2.48943 2.46943 2.44918 2.42902 2.40882 2.3889 2.36897 2.34963 2.33047 2.31195 2.29368 2.27601 2.25858 2.24169 2.22523 2.20934 2.19414 2.17947 2.16541 2.15176 2.13842 2.12537 2.11251 2.10015 2.08794 2.07655 2.06577 2.05594 2.04693 2.03852 2.03124 2.02435 2.0186 2.01324 2.0088 2.0049 2.00167 1.99916 1.99689 1.99541 1.99379 1.99288 1.99145 1.99056 1.98907 1.98775 1.98593 1.984 1.98166 1.97905 1.97609 1.97274 1.96929 1.96535 1.96157 1.95728 1.95321 1.94889 1.94461 1.94071 1.93635 1.93323 1.92927 1.92712 1.92416 1.92292 1.92101 1.92055 1.91995 1.92079 1.92226 1.92383 1.92612 1.92804 1.93029 1.93207 1.9336 1.93474 1.93525 1.93538 1.9349 1.93382 1.93314 1.93176 1.93066 1.92836 1.92648 1.92375 1.92137 1.91852 1.91574 1.91288 1.90997 1.90779 1.90548 2.59745 2.57803 2.55925 2.54094 2.52323 2.5055 2.48715 2.46854 2.44929 2.43014 2.41109 2.39244 2.37413 2.35635 2.33872 2.3216 2.30461 2.28802 2.27166 2.2556 2.23976 2.22432 2.20892 2.19391 2.17898 2.16456 2.15042 2.13688 2.12379 2.11122 2.09935 2.08738 2.07631 2.06532 2.05551 2.04602 2.03737 2.02954 2.02267 2.01703 2.01224 2.00868 2.00571 2.00361 2.00194 2.00067 1.99976 1.99878 1.99808 1.99696 1.99615 1.99465 1.99343 1.99145 1.98965 1.98725 1.98483 1.98224 1.97916 1.9765 1.97275 1.97001 1.96592 1.96322 1.9593 1.95693 1.95357 1.9518 1.94928 1.94804 1.94649 1.94551 1.94572 1.94649 1.94797 1.94912 1.9511 1.9525 1.95412 1.95524 1.95602 1.95641 1.95622 1.9558 1.95443 1.95332 1.95155 1.95047 1.94834 1.94669 1.94401 1.9418 1.93911 1.93651 1.93376 1.93088 1.92812 1.92519 1.92304 1.92081 2.6158 2.59904 2.58265 2.56524 2.54684 2.52743 2.50752 2.48766 2.46809 2.44882 2.43011 2.41166 2.39371 2.37613 2.35888 2.34201 2.32534 2.30878 2.29242 2.27603 2.2599 2.24404 2.22851 2.2133 2.19844 2.1837 2.16913 2.15459 2.14008 2.12573 2.11177 2.0982 2.08578 2.07384 2.06363 2.054 2.04616 2.03897 2.03286 2.02744 2.02261 2.0183 2.01451 2.01129 2.00848 2.00633 2.00433 2.00299 2.0015 2.00052 1.99934 1.99829 1.99704 1.99564 1.99409 1.99251 1.99059 1.98879 1.98646 1.98438 1.98175 1.97948 1.97672 1.97454 1.97193 1.97023 1.96808 1.96717 1.96535 1.96492 1.96421 1.96494 1.96581 1.96753 1.96888 1.9711 1.97259 1.97454 1.97589 1.97689 1.97757 1.97746 1.97718 1.97611 1.97493 1.9736 1.97203 1.97091 1.96863 1.96695 1.96413 1.96223 1.9592 1.95689 1.95377 1.95106 1.94799 1.94501 1.94268 1.94023 2.62654 2.61153 2.59707 2.58134 2.56426 2.54656 2.52824 2.50981 2.49148 2.47329 2.45564 2.43827 2.42139 2.40457 2.38781 2.37087 2.35405 2.33716 2.32072 2.30449 2.28858 2.27292 2.25719 2.24135 2.22527 2.20893 2.19262 2.17651 2.16083 2.14612 2.13213 2.11934 2.10741 2.09648 2.08619 2.07655 2.06732 2.05842 2.0499 2.04212 2.03468 2.02826 2.02236 2.01756 2.01327 2.00986 2.00699 2.00481 2.00303 2.00175 2.00058 1.99976 1.99896 1.99851 1.9978 1.99729 1.99628 1.99542 1.99396 1.9927 1.99084 1.98923 1.98726 1.98548 1.98354 1.98192 1.97978 1.97875 1.97693 1.97705 1.97737 1.97823 1.9794 1.98098 1.98332 1.98485 1.98731 1.98859 1.9902 1.99137 1.99176 1.99254 1.99229 1.99169 1.99119 1.99048 1.98984 1.98839 1.98713 1.98505 1.98282 1.98075 1.9778 1.97577 1.97231 1.97032 1.96664 1.96479 1.96199 1.96093 2.63306 2.61736 2.60331 2.58838 2.57246 2.55558 2.53829 2.52096 2.504 2.48755 2.47134 2.4552 2.43883 2.42252 2.40624 2.39027 2.37473 2.3593 2.34398 2.32831 2.31196 2.29516 2.27768 2.26 2.24239 2.22509 2.20859 2.19275 2.1778 2.1636 2.14997 2.13685 2.12406 2.11167 2.09957 2.08795 2.07678 2.06636 2.05649 2.04747 2.03917 2.03193 2.02524 2.01943 2.01422 2.00994 2.00628 2.00341 2.0013 1.99991 1.99905 1.99884 1.99888 1.99904 1.99918 1.99914 1.99899 1.99853 1.9979 1.99652 1.99547 1.99397 1.99306 1.99168 1.99069 1.99006 1.98949 1.98982 1.99062 1.99206 1.99417 1.99615 1.99915 2.00191 2.00494 2.0082 2.01065 2.01351 2.01532 2.01696 2.01808 2.01852 2.01825 2.01757 2.01708 2.01599 2.01502 2.01283 2.01137 2.00841 2.00668 2.00342 2.00149 1.99824 1.99607 1.99324 1.99078 1.98879 1.98667 1.98607 2.64538 2.62938 2.61545 2.60094 2.58554 2.56947 2.55314 2.53677 2.52035 2.50371 2.48725 2.47104 2.4552 2.4398 2.42466 2.40956 2.39401 2.37792 2.36094 2.34336 2.32506 2.30694 2.28874 2.27125 2.25429 2.23786 2.22206 2.20649 2.19131 2.17631 2.16154 2.14714 2.13312 2.11952 2.10661 2.09427 2.08262 2.07158 2.06123 2.05153 2.04252 2.03408 2.02637 2.01932 2.01321 2.00799 2.00373 2.00047 1.99828 1.99693 1.99635 1.99641 1.99668 1.99724 1.99763 1.99773 1.99769 1.9975 1.99696 1.99625 1.99541 1.99497 1.99505 1.99531 1.99601 1.99741 1.99959 2.00198 2.00599 2.00924 2.01408 2.01823 2.02265 2.02717 2.03077 2.03443 2.03733 2.03934 2.04131 2.04195 2.04263 2.04225 2.04144 2.04064 2.03967 2.03819 2.03703 2.03457 2.03305 2.03022 2.02858 2.02566 2.02411 2.02111 2.01954 2.01639 2.01478 2.01158 2.01026 2.00757 2.64906 2.63461 2.62223 2.60882 2.59412 2.57867 2.56253 2.54629 2.53016 2.51413 2.49858 2.48353 2.46875 2.45426 2.43931 2.42381 2.40728 2.39014 2.37227 2.35451 2.33655 2.31922 2.30198 2.28522 2.26863 2.252 2.23572 2.21934 2.20325 2.18746 2.17191 2.157 2.1424 2.12851 2.11508 2.10232 2.09004 2.07834 2.06727 2.05665 2.04667 2.03706 2.0286 2.02068 2.014 2.00837 2.00393 2.00084 1.99846 1.99703 1.99626 1.99593 1.99596 1.99612 1.99617 1.99603 1.99571 1.99576 1.99589 1.99624 1.99671 1.99766 1.99928 2.00133 2.00429 2.00736 2.01147 2.01565 2.02051 2.02583 2.03064 2.03637 2.04079 2.04568 2.04952 2.05271 2.05556 2.05715 2.05861 2.05919 2.05917 2.0586 2.05752 2.05668 2.05527 2.05428 2.05231 2.05095 2.04896 2.04724 2.04557 2.04324 2.04183 2.03884 2.03709 2.03332 2.03113 2.02656 2.02442 2.01951 2.6575 2.64289 2.62966 2.6152 2.59949 2.58327 2.56666 2.55001 2.53377 2.51808 2.50305 2.48865 2.47403 2.45915 2.44362 2.4274 2.41081 2.39399 2.37717 2.36043 2.34374 2.32699 2.31017 2.29312 2.27622 2.25907 2.24237 2.22556 2.20935 2.19339 2.17781 2.16283 2.1482 2.13409 2.12053 2.10724 2.09463 2.08235 2.07063 2.05911 2.04848 2.03832 2.0293 2.02118 2.01436 2.00841 2.00364 1.99986 1.99672 1.99456 1.99275 1.99155 1.99094 1.99058 1.99006 1.9901 1.99056 1.99123 1.99256 1.99414 1.99629 1.99869 2.00167 2.00515 2.00914 2.01374 2.01866 2.02418 2.02974 2.03555 2.04124 2.04656 2.05157 2.05595 2.05978 2.06262 2.0654 2.06667 2.0681 2.0687 2.06871 2.06831 2.06777 2.06733 2.06673 2.06604 2.06479 2.064 2.06241 2.06139 2.05925 2.05771 2.05485 2.05208 2.04876 2.04441 2.04085 2.03519 2.03246 2.02675 2.66316 2.64974 2.6375 2.624 2.6088 2.59245 2.57566 2.5586 2.54212 2.52596 2.51005 2.49434 2.47839 2.46227 2.44616 2.42959 2.41324 2.39666 2.38027 2.36368 2.34705 2.33007 2.31317 2.29599 2.27927 2.26235 2.24613 2.22973 2.21394 2.19819 2.18292 2.16793 2.15339 2.13907 2.1254 2.11162 2.09859 2.08549 2.07304 2.06094 2.04951 2.03896 2.02937 2.02088 2.01336 2.0068 2.00108 1.99626 1.99214 1.98895 1.98627 1.98445 1.98349 1.9831 1.98285 1.98314 1.98419 1.98556 1.9879 1.99023 1.99335 1.99693 2.00099 2.00556 2.01051 2.01607 2.02179 2.02806 2.03407 2.04036 2.04619 2.05158 2.05673 2.06069 2.06465 2.06716 2.06984 2.071 2.07252 2.07302 2.07334 2.07334 2.07341 2.07357 2.07374 2.07359 2.07318 2.07244 2.07124 2.07003 2.06784 2.06588 2.06268 2.0597 2.05562 2.05162 2.04739 2.04282 2.03981 2.0357 2.66047 2.64764 2.63611 2.62314 2.60842 2.5923 2.57596 2.55902 2.54278 2.52666 2.51099 2.49566 2.48048 2.46536 2.45029 2.43481 2.41918 2.4029 2.38626 2.36905 2.35178 2.33433 2.31722 2.30017 2.2835 2.26688 2.2507 2.23441 2.21889 2.20313 2.18834 2.17325 2.15905 2.14455 2.13078 2.11671 2.10329 2.08982 2.07699 2.06486 2.05329 2.04282 2.0326 2.02341 2.01471 2.00699 1.99998 1.99388 1.98857 1.98425 1.9809 1.97859 1.97759 1.97762 1.97774 1.97835 1.97973 1.98254 1.98502 1.98888 1.99221 1.99679 2.00115 2.00654 2.01202 2.01818 2.0245 2.03115 2.03765 2.04419 2.05017 2.05582 2.06088 2.06501 2.069 2.07152 2.07434 2.07569 2.07744 2.07805 2.07884 2.07917 2.07945 2.08014 2.08027 2.08007 2.0795 2.07849 2.07719 2.07526 2.07296 2.07024 2.06704 2.06354 2.05975 2.05579 2.05194 2.04794 2.04523 2.04194 2.66937 2.65512 2.64259 2.62842 2.61293 2.59557 2.57821 2.56034 2.5435 2.52741 2.5122 2.49833 2.48432 2.47058 2.45566 2.44 2.42336 2.40601 2.38825 2.37027 2.35251 2.33469 2.31737 2.30015 2.28324 2.26668 2.25049 2.23452 2.21932 2.20388 2.18955 2.17459 2.16081 2.14628 2.13267 2.11866 2.10523 2.09202 2.0792 2.0672 2.0553 2.04424 2.0334 2.02313 2.01358 2.00461 1.99662 1.98952 1.98342 1.97859 1.97515 1.97257 1.97233 1.97266 1.97336 1.97432 1.97654 1.97985 1.98321 1.98741 1.99166 1.99661 2.00186 2.00757 2.01382 2.0203 2.02717 2.03394 2.04083 2.04733 2.05361 2.05935 2.06445 2.06904 2.07302 2.07613 2.0793 2.08123 2.08343 2.0848 2.086 2.08653 2.08753 2.08787 2.08768 2.0872 2.08592 2.08471 2.0826 2.08014 2.07751 2.07422 2.07102 2.06711 2.06363 2.05934 2.05587 2.05161 2.04915 2.04559 2.66718 2.65397 2.64156 2.62647 2.61096 2.59419 2.57853 2.5628 2.54808 2.5339 2.51968 2.50563 2.49016 2.47465 2.45809 2.44146 2.42417 2.40688 2.38924 2.37161 2.35408 2.33628 2.31911 2.30164 2.28482 2.26809 2.25191 2.23583 2.22049 2.20501 2.19059 2.17566 2.16203 2.14769 2.13455 2.12106 2.10831 2.09583 2.08322 2.07104 2.05837 2.04638 2.03463 2.02337 2.01295 2.00321 1.9944 1.98699 1.98057 1.97563 1.97209 1.96966 1.96927 1.96964 1.97045 1.97123 1.97341 1.97668 1.9806 1.98502 1.99002 1.99543 2.00132 2.00754 2.01411 2.02079 2.02776 2.03456 2.04142 2.04788 2.05422 2.05996 2.0656 2.07054 2.07532 2.07955 2.08322 2.08655 2.08926 2.09132 2.09275 2.09393 2.09443 2.09434 2.09372 2.09278 2.09057 2.08898 2.08575 2.08326 2.07999 2.07639 2.07326 2.06908 2.06597 2.06135 2.05837 2.05367 2.05148 2.04743 2.6714 2.65699 2.64273 2.62658 2.61115 2.59562 2.58201 2.56837 2.55452 2.53983 2.52385 2.50781 2.49063 2.47396 2.45675 2.44005 2.42302 2.40617 2.38879 2.37136 2.35375 2.33568 2.31825 2.30047 2.28351 2.26663 2.25058 2.23474 2.2199 2.20504 2.19139 2.17734 2.16478 2.15148 2.13909 2.12607 2.11282 2.09962 2.08559 2.07234 2.05865 2.04553 2.03285 2.0207 2.00968 1.99979 1.99083 1.98351 1.97713 1.97216 1.96847 1.966 1.96518 1.96547 1.96617 1.9668 1.96875 1.97241 1.9767 1.98182 1.98766 1.99377 2.00065 2.00734 2.01463 2.02142 2.02849 2.03512 2.04177 2.048 2.05419 2.05995 2.06573 2.07105 2.07626 2.08115 2.08527 2.08955 2.09233 2.09518 2.0967 2.09797 2.09829 2.09812 2.09727 2.0962 2.09373 2.0921 2.08871 2.0867 2.08305 2.08014 2.07723 2.07287 2.07041 2.06539 2.06273 2.05749 2.05522 2.05039 2.67024 2.65508 2.64124 2.62708 2.61444 2.60235 2.59064 2.57742 2.56233 2.54591 2.52774 2.50988 2.49161 2.47449 2.45757 2.44109 2.42412 2.40687 2.38881 2.37056 2.35207 2.33335 2.31507 2.29659 2.27896 2.26172 2.24586 2.23085 2.21755 2.2048 2.19349 2.18151 2.17028 2.15748 2.14473 2.13095 2.11638 2.10191 2.08632 2.07165 2.05679 2.04286 2.03003 2.01788 2.00707 1.99725 1.9885 1.98101 1.97467 1.96926 1.96528 1.96233 1.96097 1.96107 1.96145 1.96183 1.9636 1.96717 1.97181 1.97753 1.98392 1.99101 1.99849 2.00604 2.01381 2.02103 2.02825 2.03493 2.04123 2.04755 2.05322 2.0592 2.06461 2.07037 2.07537 2.08089 2.08504 2.08978 2.09274 2.09597 2.09754 2.09913 2.09976 2.09966 2.09902 2.09815 2.09615 2.09477 2.09188 2.0902 2.08693 2.08449 2.08184 2.07758 2.07525 2.07022 2.06744 2.06186 2.05941 2.05389 2.67134 2.65302 2.63797 2.62526 2.61377 2.60326 2.59132 2.57793 2.56218 2.5455 2.52735 2.51016 2.49304 2.4771 2.46129 2.44548 2.42882 2.41196 2.39411 2.37647 2.35817 2.33983 2.32131 2.30278 2.28474 2.26743 2.25132 2.23624 2.2226 2.20932 2.19718 2.18423 2.172 2.1583 2.14483 2.13045 2.11571 2.10146 2.08656 2.073 2.05935 2.04657 2.03478 2.02336 2.01313 2.00353 1.99486 1.98674 1.98005 1.97358 1.96883 1.96473 1.96266 1.96163 1.96162 1.96158 1.96295 1.96616 1.97095 1.97678 1.98342 1.99078 1.99828 2.00603 2.01365 2.02075 2.02782 2.03407 2.04036 2.04621 2.05206 2.05785 2.06379 2.06952 2.07545 2.08093 2.08608 2.09084 2.09447 2.09745 2.0995 2.10079 2.10099 2.10075 2.09973 2.09855 2.09594 2.09429 2.09091 2.08904 2.08539 2.08282 2.07977 2.07534 2.07283 2.06744 2.06454 2.0587 2.05612 2.05027 2.67393 2.65261 2.63626 2.62384 2.61258 2.6021 2.58951 2.57562 2.55942 2.5428 2.52513 2.50879 2.49265 2.47733 2.46207 2.44651 2.43037 2.41401 2.39675 2.37947 2.36117 2.34269 2.32375 2.30506 2.28693 2.2698 2.25394 2.23909 2.22547 2.212 2.1993 2.18567 2.17257 2.15812 2.1441 2.12948 2.11488 2.10117 2.087 2.07456 2.06199 2.05052 2.03973 2.02941 2.01959 2.01056 2.00178 1.99349 1.98649 1.97934 1.97415 1.9693 1.96681 1.9651 1.96483 1.96412 1.96529 1.96818 1.97268 1.97843 1.98486 1.99216 1.9995 2.00717 2.01458 2.02159 2.02833 2.03452 2.04049 2.04633 2.05198 2.05799 2.0639 2.07024 2.07638 2.08235 2.08817 2.09288 2.09691 2.09996 2.10177 2.10247 2.10241 2.10186 2.1001 2.09838 2.09486 2.09278 2.08864 2.08645 2.08226 2.0796 2.07598 2.07173 2.069 2.0635 2.06068 2.055 2.0525 2.04697 2.44289 2.74428 3.00013 3.27267 3.23119 3.2043 3.19167 3.18769 3.18093 3.17293 3.16427 3.16007 3.15912 3.15849 3.1584 3.15944 3.16297 3.16757 3.17346 3.17973 3.18628 3.19131 3.19664 3.20062 3.2029 3.20383 3.20413 3.20211 3.19952 3.19404 3.18853 3.18208 3.17639 3.17155 3.16566 3.15712 3.15061 3.13962 3.13226 3.12238 3.11433 3.10333 3.09375 3.0815 3.07164 3.0591 3.04707 3.03483 3.02382 3.01082 3.00009 2.98687 2.97557 2.96255 2.95093 2.9382 2.92602 2.91362 2.90136 2.88871 2.87665 2.86383 2.85205 2.8394 2.82774 2.81531 2.80378 2.79154 2.7802 2.76818 2.75702 2.7453 2.73425 2.72291 2.71194 2.70103 2.69027 2.67974 2.66936 2.65922 2.64931 2.63958 2.63027 2.62095 2.61239 2.60376 2.59586 2.58842 2.5814 2.5753 2.57001 2.56542 2.56261 2.56066 2.56011 2.55993 2.56011 2.56107 2.56434 2.56211 2.34231 2.51425 2.68818 3.02577 3.20123 3.28155 3.44258 3.52835 3.50945 3.50628 3.50226 3.50318 3.50348 3.49883 3.4906 3.48336 3.47055 3.45511 3.4358 3.41693 3.39789 3.37948 3.36808 3.35221 3.33561 3.31329 3.29532 3.26989 3.24981 3.22742 3.20291 3.18461 3.15988 3.14152 3.11658 3.09831 3.07577 3.05643 3.03487 3.01729 2.99741 2.98017 2.96223 2.94384 2.92613 2.90846 2.89192 2.87547 2.85964 2.84407 2.82839 2.81362 2.79826 2.78414 2.76936 2.75533 2.74136 2.72746 2.71412 2.70065 2.68781 2.67488 2.66251 2.6501 2.63813 2.62616 2.6146 2.60301 2.59176 2.58059 2.56959 2.55892 2.54819 2.53801 2.52762 2.51789 2.50792 2.49857 2.48908 2.48 2.47108 2.46231 2.45395 2.44576 2.4379 2.4306 2.42344 2.41707 2.41113 2.40578 2.40147 2.39775 2.39541 2.39424 2.39407 2.39417 2.39444 2.39548 2.39887 2.39662 2.32358 2.35837 2.45799 2.55412 2.72926 2.8994 3.05358 3.25318 3.36931 3.44293 3.47869 3.52211 3.54467 3.56832 3.57138 3.56379 3.54697 3.51865 3.48281 3.4476 3.40949 3.37109 3.33246 3.28882 3.24753 3.20296 3.16179 3.11584 3.07554 3.03343 2.99568 2.9583 2.92371 2.89043 2.85947 2.82952 2.80153 2.77501 2.75034 2.7276 2.70598 2.68701 2.66759 2.65022 2.63143 2.61606 2.59901 2.58514 2.56928 2.55615 2.54147 2.52882 2.51516 2.50303 2.49016 2.47879 2.46659 2.45584 2.44429 2.4341 2.4231 2.41337 2.40292 2.39349 2.38357 2.37438 2.36489 2.35594 2.34681 2.33817 2.32931 2.32104 2.31244 2.30443 2.29618 2.28831 2.28045 2.27273 2.26526 2.25779 2.25066 2.24364 2.23682 2.23035 2.22398 2.21802 2.21246 2.20707 2.20258 2.19828 2.19486 2.19235 2.19053 2.19038 2.19057 2.19106 2.19168 2.19317 2.19741 2.19601 2.32609 2.29737 2.3313 2.36647 2.43799 2.52169 2.61748 2.70969 2.81419 2.91098 2.98572 3.03885 3.0833 3.10356 3.11757 3.11628 3.11002 3.09629 3.07428 3.04735 3.01231 2.97566 2.93441 2.89437 2.85306 2.81448 2.77668 2.74163 2.70909 2.67852 2.65116 2.62498 2.60223 2.58065 2.56196 2.54521 2.53019 2.51654 2.50375 2.49237 2.48135 2.47193 2.46213 2.45288 2.44282 2.43379 2.42449 2.41596 2.40698 2.3986 2.38975 2.38143 2.37265 2.3644 2.3557 2.34755 2.33898 2.3309 2.32249 2.31445 2.30619 2.29814 2.29002 2.28196 2.27393 2.26593 2.25793 2.25008 2.24211 2.23438 2.22654 2.21883 2.21125 2.20356 2.19625 2.18872 2.18154 2.17437 2.16715 2.16038 2.15332 2.14678 2.14022 2.13384 2.128 2.12203 2.11687 2.11182 2.1073 2.10365 2.1002 2.09821 2.0967 2.09682 2.09719 2.09798 2.09905 2.10098 2.10608 2.106 2.3333 2.29815 2.28105 2.2947 2.31739 2.35533 2.39707 2.4433 2.48515 2.52452 2.55616 2.584 2.60194 2.61614 2.61908 2.61678 2.611 2.60148 2.59054 2.57555 2.55985 2.54356 2.52763 2.51259 2.49886 2.48626 2.47493 2.46473 2.45567 2.4476 2.44046 2.43395 2.42813 2.42278 2.41771 2.41309 2.40824 2.40386 2.39868 2.39413 2.3888 2.38448 2.37912 2.37393 2.36745 2.36133 2.35473 2.34857 2.34181 2.33546 2.3284 2.32179 2.3145 2.30765 2.30031 2.29325 2.286 2.2788 2.27167 2.26439 2.25728 2.24997 2.24276 2.23546 2.22813 2.2208 2.21347 2.20604 2.19882 2.19132 2.18417 2.17674 2.16949 2.16223 2.15478 2.1477 2.14024 2.13333 2.12615 2.11939 2.11265 2.10602 2.09985 2.09351 2.08782 2.08222 2.07694 2.07244 2.06792 2.06458 2.06149 2.05957 2.05869 2.0589 2.05953 2.06011 2.06199 2.06442 2.06952 2.07053 2.34077 2.29968 2.28164 2.26896 2.27539 2.28786 2.30343 2.32083 2.33592 2.34874 2.3594 2.36686 2.3739 2.37798 2.37979 2.37862 2.37594 2.3742 2.37259 2.36922 2.3661 2.36215 2.35892 2.35606 2.35409 2.3525 2.35132 2.35054 2.34993 2.34964 2.34925 2.34897 2.34835 2.34782 2.34666 2.34572 2.34367 2.34213 2.33893 2.33658 2.33265 2.32996 2.32591 2.32211 2.31683 2.31161 2.30602 2.30039 2.29473 2.28876 2.28284 2.27651 2.27024 2.26363 2.25701 2.25024 2.24336 2.23651 2.2295 2.22254 2.21551 2.20841 2.20142 2.19421 2.18727 2.18006 2.17308 2.16605 2.15896 2.15216 2.14503 2.13835 2.13129 2.12459 2.11782 2.11109 2.10459 2.09787 2.09159 2.08512 2.07895 2.07297 2.06696 2.06157 2.05598 2.05115 2.04637 2.04218 2.03854 2.03532 2.03314 2.03141 2.0314 2.03168 2.03235 2.03328 2.03568 2.03883 2.04354 2.04491 2.34729 2.30931 2.2835 2.27026 2.2619 2.26363 2.26507 2.26765 2.26882 2.26931 2.26805 2.26681 2.26611 2.26617 2.26617 2.26575 2.26487 2.26401 2.26496 2.26613 2.26736 2.2682 2.26969 2.27083 2.27277 2.27419 2.27637 2.27797 2.28006 2.28133 2.28279 2.28359 2.28402 2.28393 2.28357 2.28287 2.28133 2.2799 2.27732 2.27499 2.27189 2.26946 2.2662 2.26289 2.25837 2.25379 2.24867 2.24368 2.23834 2.23313 2.22757 2.22207 2.21622 2.21029 2.20422 2.1979 2.19172 2.18518 2.17885 2.17222 2.16565 2.15897 2.15218 2.14545 2.13857 2.13174 2.12496 2.11796 2.11128 2.1042 2.09761 2.0907 2.08419 2.07758 2.07112 2.0648 2.05843 2.05242 2.0462 2.04049 2.03457 2.02915 2.02373 2.01861 2.01389 2.00922 2.00533 2.00146 1.99856 1.99594 1.99427 1.99349 1.99368 1.99426 1.99485 1.99617 1.99896 2.00247 2.00723 2.00836 2.35147 2.32064 2.29584 2.28052 2.26512 2.25763 2.252 2.24542 2.23922 2.2318 2.22481 2.21829 2.21325 2.2097 2.20732 2.20621 2.20497 2.20409 2.20426 2.20579 2.20769 2.21053 2.21247 2.21523 2.21744 2.22035 2.22307 2.22585 2.22848 2.23063 2.23292 2.23433 2.23607 2.23671 2.23775 2.23767 2.2374 2.2368 2.23549 2.23391 2.2318 2.22979 2.22731 2.22435 2.22051 2.21615 2.21141 2.20635 2.20119 2.19569 2.19024 2.18441 2.17861 2.17254 2.16637 2.1602 2.15377 2.14752 2.141 2.1346 2.12809 2.12145 2.115 2.10818 2.10174 2.09485 2.08832 2.0815 2.0749 2.06824 2.06155 2.05501 2.04831 2.0419 2.0353 2.02898 2.02266 2.01642 2.01049 2.00444 1.99892 1.99329 1.98818 1.98319 1.97856 1.97441 1.9705 1.96735 1.96449 1.96266 1.96121 1.96125 1.96157 1.96199 1.96293 1.96552 1.96827 1.97256 1.97692 1.97844 2.36285 2.33241 2.30824 2.28881 2.2779 2.26174 2.24945 2.23865 2.22655 2.21571 2.20454 2.19548 2.18728 2.18157 2.177 2.17471 2.17256 2.17154 2.16994 2.17 2.17035 2.1722 2.17446 2.17655 2.17893 2.18131 2.18375 2.18626 2.1885 2.19096 2.19292 2.19509 2.19648 2.19803 2.19866 2.1994 2.19934 2.19891 2.19798 2.1966 2.19482 2.19302 2.19096 2.18831 2.18505 2.18119 2.17705 2.1726 2.16793 2.16317 2.15819 2.1531 2.14785 2.14234 2.13685 2.13093 2.12521 2.11904 2.11306 2.10677 2.10052 2.09416 2.08768 2.08124 2.07461 2.06816 2.0616 2.05515 2.04874 2.04227 2.03601 2.02954 2.02339 2.01706 2.01094 2.00489 1.99879 1.99308 1.98714 1.98177 1.97621 1.97128 1.96628 1.96188 1.95769 1.954 1.95082 1.94811 1.94621 1.94482 1.9446 1.9449 1.94535 1.9463 1.94794 1.95125 1.95453 1.95874 1.96292 1.96425 2.38009 2.35223 2.32602 2.30483 2.28522 2.27107 2.25501 2.23925 2.22501 2.21077 2.19851 2.18657 2.17702 2.16835 2.16213 2.15703 2.15358 2.15061 2.14849 2.14691 2.14582 2.14582 2.14641 2.1481 2.14971 2.15177 2.15367 2.15594 2.15818 2.16063 2.16294 2.16501 2.1669 2.16826 2.16953 2.17012 2.17065 2.17049 2.16986 2.16886 2.16739 2.16603 2.16435 2.16222 2.15954 2.15617 2.15264 2.14854 2.14434 2.13984 2.13507 2.13031 2.12507 2.12002 2.11445 2.10904 2.10324 2.09743 2.09144 2.08526 2.07912 2.07267 2.06636 2.05979 2.0534 2.04689 2.04039 2.034 2.02746 2.02121 2.01471 2.0086 2.00221 1.99623 1.99005 1.9842 1.9783 1.97259 1.96707 1.96158 1.95652 1.95142 1.94693 1.94249 1.93877 1.9353 1.93255 1.93037 1.92892 1.92833 1.92851 1.92891 1.92963 1.93118 1.93374 1.93714 1.94093 1.9443 1.94847 1.94912 2.39472 2.37215 2.34593 2.32257 2.29953 2.27894 2.26059 2.24353 2.22772 2.21219 2.19822 2.18519 2.17392 2.16375 2.1554 2.14822 2.14269 2.13783 2.13412 2.13053 2.1283 2.12625 2.12539 2.1254 2.12617 2.12795 2.12947 2.13182 2.13362 2.13612 2.13789 2.14009 2.14157 2.14331 2.14436 2.14543 2.14587 2.14602 2.14558 2.14465 2.14357 2.14234 2.14098 2.13926 2.13681 2.13403 2.13065 2.12706 2.12307 2.11879 2.11436 2.10953 2.10467 2.09944 2.09417 2.08865 2.08305 2.07731 2.07142 2.06552 2.05939 2.05333 2.04708 2.04098 2.03474 2.02858 2.02243 2.01625 2.01019 2.00407 1.9981 1.99206 1.98617 1.9803 1.9745 1.96888 1.96322 1.95796 1.95256 1.94775 1.94276 1.93845 1.93412 1.93051 1.92711 1.92444 1.92226 1.92086 1.92019 1.92034 1.92072 1.92137 1.92299 1.92496 1.92868 1.93157 1.93559 1.93797 1.94201 1.94208 2.40603 2.38688 2.36475 2.34182 2.31944 2.29717 2.27612 2.25627 2.23814 2.22142 2.20627 2.19184 2.17888 2.1669 2.15653 2.14725 2.13959 2.13284 2.12737 2.12274 2.11905 2.11584 2.11408 2.11251 2.1122 2.11229 2.11321 2.11459 2.11609 2.11792 2.11958 2.12144 2.12291 2.12467 2.12569 2.12707 2.12743 2.12818 2.1279 2.12737 2.12657 2.12554 2.1245 2.12275 2.12057 2.11775 2.11451 2.11104 2.10703 2.10302 2.09845 2.09396 2.08904 2.08412 2.07899 2.07368 2.06836 2.06268 2.05712 2.05114 2.04527 2.0392 2.0331 2.02703 2.02075 2.01471 2.00834 2.00231 1.99602 1.98997 1.98388 1.97782 1.97198 1.96599 1.96039 1.95461 1.9493 1.94387 1.93898 1.93404 1.92971 1.9254 1.92185 1.91846 1.91593 1.91374 1.91246 1.91179 1.91194 1.91225 1.91294 1.91417 1.91698 1.91924 1.92312 1.92547 1.92893 1.93048 1.93364 1.93313 2.41449 2.39474 2.37333 2.35095 2.32908 2.3079 2.28765 2.2685 2.25041 2.23353 2.2176 2.2029 2.18892 2.17604 2.16399 2.15319 2.14348 2.13503 2.12762 2.12119 2.11581 2.11151 2.10793 2.1052 2.10355 2.10229 2.10193 2.10202 2.10279 2.10388 2.10518 2.10642 2.10765 2.10868 2.10963 2.11022 2.11066 2.11068 2.11022 2.10961 2.10842 2.10737 2.10606 2.10428 2.10216 2.09929 2.0964 2.09281 2.08921 2.08501 2.08073 2.07606 2.07126 2.06631 2.06115 2.05601 2.05061 2.04525 2.03968 2.03409 2.02847 2.02273 2.01707 2.01121 2.00548 1.99954 1.99374 1.98784 1.982 1.97625 1.97043 1.96491 1.9592 1.95393 1.94843 1.94341 1.93822 1.93356 1.9288 1.92459 1.92043 1.91691 1.91367 1.91111 1.90913 1.90783 1.90737 1.90758 1.90797 1.9087 1.91066 1.91247 1.91601 1.9186 1.92196 1.92396 1.92648 1.92748 1.92975 1.92866 2.42542 2.40465 2.38275 2.36074 2.3393 2.31882 2.29945 2.28106 2.26372 2.2472 2.23141 2.21637 2.20191 2.18816 2.17502 2.16281 2.15147 2.14129 2.13196 2.12381 2.11638 2.11018 2.10478 2.10048 2.09674 2.09414 2.09191 2.09066 2.08963 2.08939 2.08948 2.08992 2.09042 2.09087 2.09119 2.09133 2.09133 2.09109 2.09052 2.08972 2.08853 2.08757 2.0861 2.08464 2.08231 2.07992 2.07694 2.07383 2.07032 2.06652 2.06252 2.05816 2.05377 2.04901 2.04428 2.03926 2.03415 2.02892 2.02344 2.01811 2.01245 2.00707 2.00136 1.99587 1.9902 1.98454 1.97893 1.97313 1.96759 1.96176 1.95635 1.95062 1.94541 1.93992 1.93499 1.92989 1.92532 1.92076 1.91666 1.91274 1.90933 1.90636 1.90389 1.90213 1.90091 1.90062 1.90089 1.90123 1.90216 1.9037 1.90656 1.90926 1.91264 1.91504 1.91758 1.91896 1.92044 1.92092 1.92239 1.92073 2.43668 2.41459 2.39151 2.36839 2.34645 2.3257 2.30673 2.2886 2.27177 2.25534 2.23971 2.22426 2.20948 2.1949 2.18096 2.1675 2.1549 2.14314 2.13241 2.12262 2.1139 2.10601 2.09886 2.09266 2.08715 2.08272 2.07898 2.07647 2.07436 2.07322 2.07226 2.07196 2.07206 2.07232 2.07263 2.07301 2.0732 2.07315 2.07295 2.07244 2.07193 2.07111 2.07034 2.06904 2.0674 2.06541 2.06306 2.06047 2.05739 2.05413 2.05035 2.04642 2.04212 2.03765 2.033 2.02812 2.02319 2.01796 2.01275 2.00734 2.00189 1.99638 1.99072 1.98518 1.97939 1.97384 1.96801 1.9625 1.95671 1.95129 1.94564 1.94039 1.93498 1.93 1.92495 1.92038 1.91586 1.91179 1.90794 1.90454 1.90167 1.89925 1.89758 1.89643 1.89625 1.89649 1.89689 1.8978 1.8999 1.90237 1.90569 1.90844 1.91136 1.91331 1.91517 1.91593 1.91689 1.91705 1.91807 1.91627 2.44618 2.42527 2.40288 2.38059 2.3589 2.33813 2.31869 2.30019 2.28262 2.26558 2.24903 2.23279 2.2169 2.20151 2.18652 2.17237 2.15873 2.14611 2.13432 2.12345 2.11345 2.10436 2.09621 2.08902 2.08279 2.07754 2.07313 2.06961 2.0669 2.06495 2.06352 2.06277 2.06224 2.06227 2.0624 2.06272 2.06298 2.06313 2.06302 2.06275 2.06218 2.06162 2.0608 2.05959 2.05802 2.05599 2.05375 2.05101 2.04802 2.04463 2.04094 2.03702 2.03278 2.02845 2.02377 2.01907 2.01405 2.009 2.00383 1.99853 1.99327 1.98778 1.98245 1.97686 1.97148 1.96587 1.96046 1.95492 1.94955 1.94413 1.93891 1.93369 1.92874 1.92385 1.91927 1.91491 1.91085 1.90714 1.90376 1.90103 1.89865 1.8972 1.89605 1.89607 1.89629 1.89676 1.898 1.89991 1.90287 1.90602 1.90888 1.91175 1.91355 1.9155 1.91601 1.91685 1.91678 1.91672 1.91687 1.91523 2.44791 2.42892 2.40962 2.39012 2.37098 2.35177 2.33329 2.31487 2.29727 2.27962 2.26269 2.24577 2.22948 2.21352 2.19802 2.18314 2.16871 2.15509 2.14216 2.13011 2.1189 2.10868 2.09923 2.09097 2.08346 2.07697 2.07109 2.06636 2.06229 2.05903 2.05646 2.05418 2.05277 2.05161 2.0509 2.05038 2.05005 2.0498 2.04932 2.04871 2.04779 2.04693 2.04571 2.04424 2.0423 2.04013 2.03767 2.03486 2.03184 2.02842 2.02487 2.02096 2.01692 2.01263 2.00814 2.00355 1.99873 1.99399 1.98905 1.98423 1.97931 1.97442 1.96959 1.96466 1.95988 1.95492 1.95015 1.9452 1.94045 1.93555 1.93092 1.9262 1.92183 1.91747 1.91356 1.90973 1.90644 1.9033 1.90095 1.89889 1.89769 1.89696 1.89707 1.89734 1.89804 1.89947 1.90217 1.90477 1.90831 1.91091 1.91388 1.9156 1.91724 1.91802 1.91816 1.918 1.91767 1.9171 1.91667 1.9149 2.44818 2.42967 2.41225 2.3951 2.37824 2.3611 2.34387 2.32664 2.30918 2.29221 2.27506 2.25857 2.24203 2.22601 2.21015 2.19472 2.17963 2.16518 2.15142 2.13833 2.12618 2.11467 2.10409 2.09421 2.08502 2.07709 2.06977 2.06352 2.05754 2.05265 2.04819 2.04453 2.04161 2.03924 2.0377 2.03629 2.0354 2.03438 2.03359 2.03258 2.03154 2.03032 2.02894 2.02726 2.02522 2.02303 2.02054 2.01788 2.01495 2.01179 2.00845 2.00482 2.00107 1.99702 1.99286 1.98847 1.98398 1.97942 1.97472 1.97008 1.96525 1.96063 1.95573 1.9512 1.94629 1.94187 1.93703 1.93269 1.92804 1.92382 1.91949 1.91552 1.91165 1.90811 1.9049 1.90192 1.89947 1.89736 1.89602 1.89501 1.89502 1.89538 1.89579 1.89694 1.89859 1.9018 1.90454 1.90811 1.91078 1.91347 1.91529 1.91637 1.91724 1.91705 1.9166 1.91611 1.91522 1.91376 1.91261 1.91047 2.45078 2.4321 2.41539 2.39954 2.38408 2.36827 2.35199 2.33521 2.3181 2.30085 2.28376 2.26667 2.24996 2.23335 2.21717 2.20134 2.18598 2.17111 2.15695 2.14324 2.1304 2.11786 2.1064 2.09515 2.08501 2.07519 2.06613 2.05783 2.05035 2.04417 2.03849 2.034 2.02971 2.02645 2.02372 2.02146 2.01975 2.01805 2.01683 2.01536 2.01411 2.01267 2.0112 2.00959 2.0077 2.00577 2.00352 2.00117 1.99856 1.99568 1.99272 1.98931 1.98597 1.98207 1.97826 1.974 1.96976 1.9653 1.96069 1.95614 1.95132 1.94675 1.94188 1.93733 1.93255 1.92806 1.92346 1.91912 1.91477 1.91072 1.90676 1.90318 1.89979 1.89693 1.89429 1.89217 1.89059 1.88954 1.88927 1.8895 1.89023 1.89091 1.89262 1.89467 1.89809 1.90103 1.90441 1.90712 1.90951 1.91131 1.91221 1.91273 1.91235 1.91188 1.9109 1.90967 1.90804 1.9057 1.90415 1.90169 2.45969 2.43842 2.42124 2.40527 2.38978 2.3744 2.3589 2.34298 2.3268 2.31016 2.29344 2.27652 2.25973 2.24306 2.22659 2.21059 2.19468 2.17946 2.16433 2.14996 2.13583 2.12233 2.1094 2.09701 2.08545 2.07441 2.0644 2.05499 2.04641 2.03845 2.03136 2.02528 2.01987 2.01527 2.01145 2.00837 2.00569 2.00343 2.00162 1.99982 1.99854 1.99706 1.99586 1.99444 1.99293 1.99132 1.98929 1.98727 1.98469 1.98212 1.97911 1.97589 1.97253 1.96867 1.96501 1.96069 1.95676 1.95217 1.94798 1.94324 1.93888 1.93409 1.9297 1.92494 1.92061 1.91599 1.91179 1.90744 1.90347 1.89954 1.89594 1.89267 1.88967 1.88724 1.88497 1.88363 1.88255 1.88256 1.88286 1.88363 1.88443 1.88676 1.88908 1.8926 1.89573 1.89905 1.90185 1.90412 1.90594 1.90678 1.90722 1.90686 1.90618 1.90544 1.90417 1.90231 1.90021 1.8976 1.89589 1.89339 2.49192 2.46216 2.43816 2.41814 2.39986 2.3826 2.36589 2.34942 2.33316 2.31692 2.30044 2.28396 2.26726 2.25078 2.23423 2.21799 2.2019 2.18603 2.17056 2.15543 2.14074 2.12662 2.11296 2.09997 2.0876 2.07586 2.06483 2.0545 2.0449 2.0361 2.02796 2.02068 2.01399 2.0082 2.00282 1.99852 1.99498 1.99218 1.98989 1.98812 1.98672 1.98536 1.98422 1.98289 1.98166 1.98006 1.97838 1.97635 1.97405 1.97149 1.96855 1.96543 1.96191 1.95824 1.95428 1.95022 1.94591 1.94161 1.93701 1.9326 1.92784 1.92343 1.91868 1.91433 1.90975 1.90554 1.90129 1.89733 1.89354 1.89001 1.88685 1.88396 1.8816 1.87944 1.8781 1.87705 1.87705 1.8773 1.87779 1.87882 1.88144 1.88421 1.88774 1.89098 1.89414 1.89708 1.8991 1.9011 1.9018 1.90251 1.90216 1.90182 1.90111 1.89998 1.8982 1.89586 1.89355 1.8907 1.88885 1.88626 2.52904 2.50268 2.47706 2.45103 2.42656 2.4031 2.3814 2.36173 2.34329 2.32556 2.30819 2.29103 2.27404 2.25718 2.24053 2.22401 2.20773 2.19157 2.17574 2.16022 2.14517 2.13053 2.11647 2.10292 2.09007 2.07774 2.06613 2.05508 2.04479 2.03519 2.02648 2.01854 2.01158 2.00537 1.99984 1.99514 1.99118 1.98777 1.98514 1.98281 1.98096 1.97937 1.97812 1.97695 1.97579 1.97456 1.97302 1.97136 1.96922 1.96694 1.96415 1.96122 1.95788 1.95438 1.95064 1.94671 1.94265 1.93836 1.93405 1.92952 1.92508 1.92043 1.91602 1.91142 1.90717 1.90284 1.89886 1.89502 1.89148 1.88833 1.88546 1.88318 1.88111 1.87981 1.879 1.87896 1.87918 1.87959 1.88092 1.88353 1.88627 1.88942 1.89257 1.89531 1.89811 1.8999 1.9017 1.90245 1.90278 1.90255 1.90207 1.90145 1.90022 1.89852 1.89633 1.89388 1.89143 1.88864 1.8867 1.88427 2.54601 2.52454 2.50389 2.48208 2.45887 2.43563 2.41281 2.39039 2.36877 2.34819 2.32853 2.30965 2.29138 2.27351 2.25587 2.23845 2.22105 2.20406 2.18719 2.17106 2.15544 2.14063 2.12641 2.11285 2.09978 2.08722 2.07529 2.06379 2.05323 2.04314 2.034 2.02546 2.01778 2.01066 2.00429 1.99836 1.99324 1.98892 1.98533 1.98241 1.98026 1.9785 1.97718 1.97602 1.97495 1.97387 1.97254 1.97111 1.96924 1.96722 1.96472 1.96201 1.95892 1.9556 1.95206 1.94825 1.9443 1.9401 1.93584 1.93135 1.92693 1.92232 1.91794 1.9134 1.90923 1.90502 1.90122 1.89761 1.89437 1.89165 1.88919 1.88743 1.88595 1.88533 1.88504 1.88525 1.88572 1.88746 1.88999 1.89289 1.8958 1.89898 1.90144 1.90407 1.90574 1.90715 1.908 1.9079 1.90754 1.90718 1.90633 1.90535 1.90348 1.9014 1.899 1.89637 1.89378 1.89091 1.88889 1.88649 2.57274 2.55101 2.53014 2.50945 2.48799 2.46608 2.44396 2.4218 2.40002 2.37872 2.35802 2.33797 2.31827 2.29909 2.2801 2.26169 2.24357 2.22607 2.20896 2.19262 2.17664 2.16146 2.14643 2.13231 2.11855 2.10581 2.09357 2.08223 2.0713 2.06097 2.05099 2.04157 2.03252 2.02427 2.01656 2.00981 2.00377 1.99893 1.9949 1.99178 1.98936 1.98743 1.98601 1.98477 1.98377 1.98274 1.9816 1.98038 1.97877 1.97709 1.97481 1.97253 1.9696 1.96672 1.9632 1.95971 1.95565 1.95159 1.94711 1.94261 1.93792 1.9332 1.92856 1.92383 1.9195 1.91512 1.91131 1.90764 1.90463 1.90188 1.89989 1.89817 1.89735 1.89665 1.89673 1.89748 1.89937 1.90168 1.90463 1.90724 1.91031 1.91264 1.91495 1.91665 1.9176 1.91845 1.91817 1.91771 1.91697 1.91632 1.91487 1.91338 1.91105 1.90882 1.90623 1.90358 1.9009 1.89808 1.896 1.89373 2.58701 2.56769 2.5486 2.52909 2.50947 2.48944 2.46943 2.44918 2.42902 2.40882 2.3889 2.36897 2.34963 2.33047 2.31195 2.29368 2.27601 2.25858 2.24169 2.22523 2.20933 2.19414 2.17947 2.16541 2.15176 2.13842 2.12537 2.11251 2.10015 2.08794 2.07655 2.06577 2.05594 2.04693 2.03852 2.03124 2.02435 2.0186 2.01324 2.0088 2.0049 2.00167 1.99916 1.99689 1.99542 1.9938 1.99288 1.99145 1.99056 1.98907 1.98775 1.98593 1.984 1.98166 1.97905 1.97609 1.97274 1.96929 1.96535 1.96157 1.95728 1.95321 1.94889 1.94461 1.94071 1.93635 1.93323 1.92927 1.92713 1.92416 1.92292 1.92101 1.92055 1.91995 1.9208 1.92226 1.92383 1.92612 1.92804 1.93029 1.93207 1.9336 1.93474 1.93525 1.93538 1.9349 1.93382 1.93314 1.93176 1.93066 1.92836 1.92648 1.92375 1.92137 1.91852 1.91574 1.91288 1.90997 1.90779 1.90548 2.59745 2.57803 2.55925 2.54094 2.52323 2.5055 2.48715 2.46854 2.44929 2.43014 2.41109 2.39244 2.37413 2.35636 2.33872 2.32161 2.30461 2.28802 2.27167 2.25561 2.23977 2.22432 2.20893 2.19392 2.17898 2.16457 2.15042 2.13688 2.12379 2.11122 2.09935 2.08738 2.07631 2.06532 2.05551 2.04602 2.03737 2.02954 2.02267 2.01703 2.01224 2.00868 2.00571 2.00361 2.00194 2.00067 1.99976 1.99878 1.99808 1.99696 1.99615 1.99465 1.99343 1.99145 1.98965 1.98725 1.98483 1.98224 1.97916 1.9765 1.97275 1.97001 1.96592 1.96322 1.9593 1.95693 1.95357 1.9518 1.94928 1.94804 1.94649 1.94551 1.94572 1.94649 1.94797 1.94912 1.9511 1.9525 1.95412 1.95524 1.95602 1.95641 1.95622 1.9558 1.95443 1.95332 1.95155 1.95048 1.94834 1.94669 1.94401 1.9418 1.93911 1.93651 1.93376 1.93088 1.92812 1.92519 1.92304 1.92081 2.6158 2.59904 2.58265 2.56524 2.54684 2.52743 2.50752 2.48766 2.46809 2.44882 2.43011 2.41166 2.39371 2.37614 2.35888 2.34201 2.32534 2.30879 2.29242 2.27603 2.2599 2.24404 2.22851 2.2133 2.19844 2.1837 2.16913 2.15459 2.14008 2.12573 2.11177 2.0982 2.08578 2.07384 2.06363 2.054 2.04616 2.03897 2.03286 2.02744 2.02261 2.0183 2.01451 2.01129 2.00848 2.00633 2.00433 2.00299 2.0015 2.00052 1.99934 1.99829 1.99704 1.99564 1.99409 1.99251 1.99059 1.98879 1.98646 1.98438 1.98175 1.97948 1.97672 1.97454 1.97193 1.97023 1.96808 1.96718 1.96535 1.96492 1.96422 1.96494 1.96581 1.96753 1.96888 1.9711 1.97259 1.97454 1.97589 1.97689 1.97757 1.97746 1.97718 1.97611 1.97493 1.97361 1.97203 1.97091 1.96863 1.96695 1.96413 1.96223 1.9592 1.95689 1.95377 1.95106 1.94799 1.94501 1.94268 1.94023 2.62654 2.61153 2.59708 2.58134 2.56426 2.54656 2.52824 2.50981 2.49148 2.47329 2.45564 2.43827 2.42139 2.40457 2.38781 2.37086 2.35404 2.33716 2.32072 2.30449 2.28857 2.27292 2.25719 2.24135 2.22527 2.20893 2.19262 2.17651 2.16083 2.14612 2.13213 2.11934 2.10741 2.09648 2.08619 2.07655 2.06732 2.05842 2.0499 2.04212 2.03468 2.02826 2.02236 2.01756 2.01327 2.00986 2.00699 2.00481 2.00303 2.00175 2.00058 1.99976 1.99896 1.99851 1.9978 1.99729 1.99628 1.99542 1.99396 1.9927 1.99084 1.98923 1.98726 1.98548 1.98354 1.98192 1.97979 1.97875 1.97693 1.97705 1.97737 1.97823 1.9794 1.98098 1.98332 1.98485 1.98731 1.98859 1.9902 1.99137 1.99176 1.99254 1.99229 1.99169 1.99119 1.99048 1.98984 1.98839 1.98713 1.98505 1.98282 1.98075 1.9778 1.97577 1.97231 1.97032 1.96664 1.96479 1.96199 1.96093 2.63306 2.61736 2.60331 2.58838 2.57246 2.55558 2.5383 2.52096 2.504 2.48755 2.47134 2.4552 2.43882 2.42252 2.40624 2.39027 2.37472 2.35929 2.34397 2.32831 2.31196 2.29516 2.27768 2.26 2.24239 2.2251 2.20859 2.19275 2.1778 2.1636 2.14997 2.13685 2.12406 2.11167 2.09957 2.08795 2.07678 2.06636 2.05649 2.04747 2.03917 2.03193 2.02524 2.01943 2.01422 2.00994 2.00628 2.00341 2.0013 1.99991 1.99905 1.99884 1.99888 1.99904 1.99918 1.99914 1.99899 1.99853 1.9979 1.99652 1.99547 1.99397 1.99306 1.99168 1.99069 1.99006 1.98949 1.98982 1.99062 1.99206 1.99417 1.99615 1.99915 2.00191 2.00494 2.0082 2.01065 2.01351 2.01532 2.01696 2.01808 2.01852 2.01825 2.01757 2.01708 2.01599 2.01502 2.01283 2.01137 2.00841 2.00668 2.00342 2.00149 1.99824 1.99607 1.99324 1.99078 1.98879 1.98667 1.98607 2.64538 2.62938 2.61545 2.60094 2.58554 2.56947 2.55314 2.53677 2.52035 2.50371 2.48725 2.47104 2.4552 2.4398 2.42466 2.40956 2.39401 2.37793 2.36094 2.34336 2.32507 2.30695 2.28874 2.27125 2.25429 2.23786 2.22206 2.20649 2.19131 2.17631 2.16154 2.14714 2.13312 2.11952 2.10661 2.09427 2.08262 2.07158 2.06123 2.05153 2.04252 2.03408 2.02637 2.01932 2.01321 2.00799 2.00373 2.00047 1.99828 1.99693 1.99635 1.99641 1.99668 1.99724 1.99763 1.99773 1.99769 1.9975 1.99696 1.99625 1.99541 1.99497 1.99505 1.99531 1.99601 1.99741 1.99959 2.00198 2.00599 2.00924 2.01408 2.01823 2.02265 2.02717 2.03077 2.03443 2.03733 2.03934 2.04131 2.04195 2.04264 2.04225 2.04144 2.04064 2.03967 2.03819 2.03703 2.03457 2.03305 2.03022 2.02858 2.02566 2.02411 2.02111 2.01954 2.01639 2.01478 2.01158 2.01026 2.00757 2.64906 2.63461 2.62223 2.60882 2.59412 2.57867 2.56253 2.54629 2.53016 2.51413 2.49858 2.48353 2.46875 2.45426 2.43932 2.42381 2.40728 2.39014 2.37227 2.35451 2.33656 2.31922 2.30198 2.28522 2.26863 2.252 2.23572 2.21934 2.20325 2.18746 2.17191 2.157 2.1424 2.12851 2.11508 2.10232 2.09004 2.07834 2.06727 2.05665 2.04667 2.03706 2.0286 2.02068 2.014 2.00837 2.00393 2.00084 1.99846 1.99703 1.99626 1.99593 1.99596 1.99612 1.99618 1.99603 1.99571 1.99576 1.9959 1.99624 1.99671 1.99766 1.99928 2.00133 2.00429 2.00736 2.01147 2.01565 2.02051 2.02583 2.03064 2.03637 2.04079 2.04568 2.04952 2.05271 2.05556 2.05715 2.05861 2.05919 2.05917 2.0586 2.05752 2.05668 2.05527 2.05428 2.05231 2.05095 2.04896 2.04724 2.04557 2.04324 2.04183 2.03884 2.03709 2.03332 2.03113 2.02656 2.02442 2.01951 2.6575 2.64289 2.62966 2.6152 2.5995 2.58327 2.56666 2.55001 2.53377 2.51808 2.50305 2.48865 2.47404 2.45915 2.44362 2.4274 2.41081 2.39399 2.37717 2.36043 2.34374 2.32699 2.31017 2.29312 2.27622 2.25907 2.24237 2.22556 2.20935 2.19339 2.17781 2.16283 2.1482 2.13409 2.12053 2.10724 2.09463 2.08235 2.07063 2.05911 2.04848 2.03832 2.0293 2.02118 2.01436 2.00841 2.00364 1.99986 1.99672 1.99456 1.99275 1.99155 1.99094 1.99058 1.99006 1.9901 1.99056 1.99123 1.99256 1.99414 1.99629 1.99869 2.00167 2.00515 2.00914 2.01374 2.01866 2.02418 2.02974 2.03555 2.04124 2.04656 2.05157 2.05595 2.05978 2.06262 2.0654 2.06667 2.0681 2.0687 2.06871 2.06831 2.06777 2.06733 2.06673 2.06604 2.06479 2.064 2.06241 2.06139 2.05925 2.05771 2.05485 2.05208 2.04876 2.04441 2.04085 2.03519 2.03246 2.02676 2.66316 2.64974 2.6375 2.624 2.6088 2.59245 2.57566 2.5586 2.54212 2.52596 2.51005 2.49434 2.4784 2.46227 2.44616 2.4296 2.41324 2.39666 2.38027 2.36368 2.34705 2.33007 2.31317 2.29599 2.27927 2.26235 2.24612 2.22973 2.21394 2.19819 2.18292 2.16793 2.15339 2.13907 2.1254 2.11162 2.09859 2.08549 2.07304 2.06094 2.04951 2.03896 2.02937 2.02088 2.01336 2.0068 2.00108 1.99626 1.99214 1.98895 1.98627 1.98445 1.98349 1.9831 1.98285 1.98314 1.98419 1.98556 1.9879 1.99023 1.99335 1.99693 2.00099 2.00556 2.01051 2.01607 2.02179 2.02806 2.03407 2.04036 2.04619 2.05158 2.05673 2.06069 2.06465 2.06716 2.06985 2.071 2.07252 2.07302 2.07334 2.07334 2.07341 2.07357 2.07374 2.07359 2.07318 2.07244 2.07124 2.07003 2.06784 2.06588 2.06268 2.0597 2.05562 2.05162 2.04739 2.04282 2.03981 2.0357 2.66047 2.64764 2.63611 2.62314 2.60842 2.5923 2.57596 2.55902 2.54278 2.52666 2.51099 2.49566 2.48048 2.46536 2.45028 2.43481 2.41918 2.4029 2.38626 2.36905 2.35178 2.33433 2.31722 2.30017 2.2835 2.26688 2.2507 2.23441 2.21889 2.20313 2.18834 2.17325 2.15905 2.14455 2.13078 2.11671 2.10329 2.08982 2.07699 2.06486 2.05329 2.04282 2.0326 2.02341 2.01471 2.00699 1.99998 1.99388 1.98857 1.98425 1.9809 1.97859 1.97759 1.97763 1.97774 1.97835 1.97973 1.98254 1.98502 1.98888 1.99221 1.99679 2.00115 2.00654 2.01202 2.01818 2.0245 2.03115 2.03765 2.04419 2.05017 2.05582 2.06088 2.06501 2.069 2.07152 2.07434 2.07569 2.07744 2.07805 2.07884 2.07917 2.07945 2.08014 2.08027 2.08007 2.0795 2.07849 2.07719 2.07526 2.07296 2.07024 2.06704 2.06354 2.05975 2.05579 2.05194 2.04794 2.04523 2.04194 2.66937 2.65512 2.64259 2.62842 2.61293 2.59557 2.57821 2.56034 2.5435 2.52741 2.5122 2.49833 2.48432 2.47058 2.45566 2.43999 2.42336 2.40601 2.38825 2.37027 2.35251 2.33469 2.31737 2.30015 2.28324 2.26668 2.25049 2.23452 2.21932 2.20388 2.18954 2.17459 2.16081 2.14628 2.13267 2.11866 2.10523 2.09202 2.0792 2.0672 2.0553 2.04424 2.0334 2.02313 2.01358 2.00461 1.99662 1.98952 1.98343 1.97859 1.97515 1.97257 1.97233 1.97266 1.97336 1.97432 1.97654 1.97985 1.98321 1.98742 1.99166 1.99661 2.00186 2.00757 2.01382 2.0203 2.02717 2.03394 2.04083 2.04733 2.05361 2.05935 2.06445 2.06904 2.07302 2.07613 2.0793 2.08123 2.08343 2.0848 2.086 2.08653 2.08753 2.08787 2.08768 2.0872 2.08592 2.08471 2.0826 2.08014 2.07751 2.07422 2.07102 2.06711 2.06363 2.05934 2.05587 2.05161 2.04915 2.04559 2.66718 2.65397 2.64156 2.62647 2.61097 2.59419 2.57853 2.5628 2.54808 2.5339 2.51968 2.50563 2.49016 2.47465 2.45809 2.44146 2.42417 2.40688 2.38924 2.37161 2.35408 2.33628 2.31911 2.30164 2.28482 2.26809 2.25191 2.23583 2.22049 2.20501 2.19059 2.17566 2.16203 2.14769 2.13455 2.12106 2.10831 2.09583 2.08322 2.07104 2.05837 2.04638 2.03463 2.02337 2.01295 2.00321 1.9944 1.98699 1.98057 1.97563 1.97209 1.96966 1.96927 1.96964 1.97045 1.97123 1.97341 1.97668 1.9806 1.98502 1.99002 1.99543 2.00132 2.00754 2.01411 2.0208 2.02776 2.03456 2.04142 2.04788 2.05422 2.05996 2.0656 2.07054 2.07531 2.07955 2.08322 2.08655 2.08926 2.09132 2.09275 2.09393 2.09443 2.09434 2.09372 2.09278 2.09057 2.08898 2.08575 2.08326 2.07999 2.07639 2.07326 2.06908 2.06597 2.06135 2.05837 2.05367 2.05148 2.04743 2.6714 2.65699 2.64273 2.62658 2.61115 2.59562 2.58201 2.56837 2.55452 2.53983 2.52385 2.50781 2.49063 2.47396 2.45675 2.44005 2.42302 2.40617 2.38879 2.37136 2.35375 2.33568 2.31825 2.30047 2.28351 2.26663 2.25058 2.23474 2.2199 2.20504 2.19139 2.17734 2.16478 2.15148 2.13909 2.12607 2.11282 2.09962 2.08559 2.07234 2.05865 2.04553 2.03285 2.0207 2.00968 1.99979 1.99083 1.98351 1.97713 1.97216 1.96847 1.966 1.96518 1.96547 1.96617 1.9668 1.96875 1.97241 1.9767 1.98182 1.98766 1.99377 2.00065 2.00734 2.01463 2.02142 2.02849 2.03512 2.04177 2.048 2.05419 2.05995 2.06573 2.07105 2.07626 2.08115 2.08527 2.08955 2.09233 2.09518 2.0967 2.09797 2.09829 2.09812 2.09727 2.0962 2.09373 2.0921 2.08871 2.0867 2.08305 2.08014 2.07723 2.07288 2.07041 2.06539 2.06273 2.05749 2.05522 2.05039 2.67024 2.65508 2.64124 2.62708 2.61444 2.60235 2.59064 2.57742 2.56233 2.54591 2.52774 2.50988 2.49161 2.47449 2.45757 2.44109 2.42412 2.40687 2.38881 2.37056 2.35207 2.33335 2.31507 2.29659 2.27896 2.26172 2.24586 2.23085 2.21755 2.2048 2.19349 2.18151 2.17028 2.15748 2.14473 2.13095 2.11638 2.10191 2.08632 2.07165 2.05679 2.04286 2.03003 2.01788 2.00707 1.99725 1.9885 1.98101 1.97467 1.96926 1.96528 1.96233 1.96097 1.96107 1.96145 1.96183 1.9636 1.96717 1.97181 1.97753 1.98392 1.99101 1.99849 2.00604 2.01381 2.02103 2.02825 2.03493 2.04123 2.04755 2.05322 2.0592 2.06461 2.07037 2.07537 2.08089 2.08504 2.08978 2.09274 2.09597 2.09754 2.09913 2.09976 2.09966 2.09902 2.09815 2.09615 2.09477 2.09188 2.0902 2.08693 2.08449 2.08184 2.07758 2.07525 2.07022 2.06744 2.06186 2.05941 2.05389 2.67135 2.65302 2.63797 2.62526 2.61377 2.60326 2.59132 2.57793 2.56218 2.5455 2.52735 2.51016 2.49304 2.4771 2.46129 2.44548 2.42882 2.41196 2.39411 2.37647 2.35817 2.33984 2.32131 2.30278 2.28474 2.26743 2.25132 2.23624 2.2226 2.20932 2.19718 2.18423 2.172 2.1583 2.14483 2.13045 2.11571 2.10146 2.08656 2.073 2.05935 2.04657 2.03478 2.02336 2.01313 2.00353 1.99486 1.98674 1.98005 1.97358 1.96883 1.96473 1.96266 1.96164 1.96163 1.96158 1.96295 1.96616 1.97095 1.97678 1.98342 1.99078 1.99828 2.00603 2.01365 2.02075 2.02782 2.03407 2.04036 2.04621 2.05206 2.05785 2.06379 2.06952 2.07545 2.08093 2.08608 2.09084 2.09446 2.09744 2.0995 2.10079 2.10099 2.10075 2.09973 2.09855 2.09594 2.09429 2.09091 2.08904 2.08539 2.08282 2.07977 2.07534 2.07283 2.06744 2.06454 2.0587 2.05612 2.05027 2.67394 2.65261 2.63626 2.62384 2.61258 2.6021 2.58951 2.57562 2.55942 2.5428 2.52513 2.50879 2.49265 2.47733 2.46207 2.44651 2.43037 2.41401 2.39675 2.37947 2.36117 2.34269 2.32375 2.30506 2.28693 2.2698 2.25394 2.23909 2.22547 2.212 2.19929 2.18567 2.17257 2.15812 2.1441 2.12948 2.11488 2.10117 2.087 2.07456 2.06199 2.05052 2.03973 2.02941 2.01959 2.01056 2.00178 1.99349 1.98649 1.97934 1.97415 1.9693 1.96681 1.9651 1.96483 1.96412 1.96529 1.96818 1.97268 1.97843 1.98486 1.99216 1.9995 2.00717 2.01458 2.02159 2.02833 2.03452 2.04049 2.04633 2.05198 2.05799 2.0639 2.07024 2.07638 2.08235 2.08817 2.09287 2.09691 2.09996 2.10177 2.10247 2.10241 2.10186 2.1001 2.09838 2.09486 2.09278 2.08864 2.08645 2.08226 2.0796 2.07598 2.07173 2.069 2.0635 2.06068 2.055 2.0525 2.04697 2.44289 2.74428 3.00013 3.27268 3.23119 3.2043 3.19167 3.18769 3.18093 3.17293 3.16427 3.16007 3.15912 3.15849 3.1584 3.15944 3.16297 3.16757 3.17346 3.17973 3.18628 3.19131 3.19664 3.20062 3.2029 3.20383 3.20413 3.20211 3.19952 3.19404 3.18853 3.18208 3.17639 3.17155 3.16566 3.15712 3.15061 3.13962 3.13226 3.12238 3.11434 3.10333 3.09375 3.0815 3.07164 3.0591 3.04707 3.03483 3.02382 3.01082 3.00009 2.98687 2.97557 2.96255 2.95093 2.9382 2.92602 2.91362 2.90136 2.88871 2.87665 2.86383 2.85205 2.8394 2.82774 2.81531 2.80378 2.79154 2.7802 2.76818 2.75702 2.7453 2.73425 2.72291 2.71194 2.70103 2.69027 2.67974 2.66936 2.65922 2.64931 2.63958 2.63027 2.62095 2.61239 2.60376 2.59586 2.58842 2.5814 2.57529 2.57001 2.56542 2.56261 2.56066 2.56011 2.55993 2.56011 2.56107 2.56434 2.56211 2.34231 2.51425 2.68818 3.02577 3.20123 3.28155 3.44259 3.52835 3.50945 3.50628 3.50226 3.50318 3.50348 3.49883 3.4906 3.48336 3.47055 3.45511 3.4358 3.41693 3.39789 3.37948 3.36808 3.35221 3.33561 3.31329 3.29532 3.26989 3.24981 3.22742 3.20291 3.18461 3.15988 3.14152 3.11658 3.09831 3.07577 3.05643 3.03488 3.01729 2.99742 2.98017 2.96223 2.94384 2.92613 2.90846 2.89192 2.87547 2.85964 2.84407 2.82839 2.81362 2.79826 2.78414 2.76936 2.75533 2.74136 2.72747 2.71412 2.70066 2.68781 2.67488 2.66251 2.6501 2.63813 2.62616 2.6146 2.60301 2.59176 2.58059 2.56959 2.55892 2.54819 2.53801 2.52762 2.51789 2.50792 2.49857 2.48908 2.48 2.47108 2.46231 2.45395 2.44576 2.4379 2.4306 2.42344 2.41707 2.41113 2.40578 2.40147 2.39775 2.39541 2.39424 2.39407 2.39417 2.39444 2.39548 2.39887 2.39662 2.32358 2.35837 2.458 2.55413 2.72926 2.8994 3.05358 3.25318 3.36931 3.44293 3.47869 3.52212 3.54467 3.56832 3.57138 3.5638 3.54697 3.51865 3.48281 3.4476 3.40949 3.3711 3.33246 3.28882 3.24753 3.20296 3.16179 3.11585 3.07554 3.03343 2.99568 2.95831 2.92371 2.89043 2.85947 2.82952 2.80153 2.77502 2.75034 2.7276 2.70598 2.68701 2.66759 2.65022 2.63143 2.61606 2.59901 2.58514 2.56928 2.55615 2.54147 2.52882 2.51516 2.50304 2.49016 2.4788 2.4666 2.45584 2.44429 2.4341 2.4231 2.41337 2.40292 2.3935 2.38357 2.37438 2.3649 2.35595 2.34681 2.33817 2.32931 2.32104 2.31244 2.30444 2.29618 2.28831 2.28045 2.27273 2.26526 2.2578 2.25066 2.24364 2.23682 2.23035 2.22399 2.21802 2.21246 2.20707 2.20258 2.19828 2.19486 2.19235 2.19053 2.19038 2.19057 2.19106 2.19168 2.19317 2.19741 2.19601 2.32609 2.29737 2.3313 2.36647 2.43799 2.5217 2.61749 2.70969 2.81419 2.91098 2.98573 3.03885 3.0833 3.10357 3.11758 3.11629 3.11002 3.09629 3.07429 3.04736 3.01232 2.97567 2.93441 2.89437 2.85307 2.81448 2.77668 2.74163 2.7091 2.67852 2.65116 2.62498 2.60223 2.58065 2.56196 2.54521 2.53019 2.51655 2.50375 2.49237 2.48135 2.47193 2.46213 2.45288 2.44282 2.43379 2.42449 2.41596 2.40698 2.3986 2.38975 2.38143 2.37265 2.3644 2.3557 2.34755 2.33898 2.3309 2.32249 2.31445 2.30619 2.29814 2.29002 2.28196 2.27393 2.26594 2.25793 2.25008 2.24211 2.23438 2.22654 2.21883 2.21126 2.20356 2.19625 2.18872 2.18154 2.17437 2.16715 2.16038 2.15332 2.14678 2.14022 2.13384 2.128 2.12203 2.11687 2.11182 2.1073 2.10365 2.1002 2.09821 2.0967 2.09682 2.09719 2.09798 2.09905 2.10098 2.10608 2.106 2.3333 2.29815 2.28105 2.2947 2.3174 2.35533 2.39707 2.4433 2.48515 2.52452 2.55616 2.584 2.60194 2.61614 2.61908 2.61678 2.611 2.60148 2.59054 2.57556 2.55985 2.54356 2.52763 2.51259 2.49887 2.48626 2.47493 2.46473 2.45567 2.4476 2.44046 2.43395 2.42813 2.42278 2.41771 2.41309 2.40824 2.40386 2.39868 2.39413 2.3888 2.38448 2.37912 2.37393 2.36745 2.36133 2.35473 2.34857 2.34182 2.33546 2.3284 2.32179 2.31451 2.30765 2.30031 2.29325 2.286 2.2788 2.27167 2.26439 2.25728 2.24998 2.24276 2.23546 2.22814 2.2208 2.21347 2.20604 2.19882 2.19132 2.18417 2.17674 2.16949 2.16223 2.15478 2.1477 2.14024 2.13333 2.12615 2.11939 2.11265 2.10602 2.09985 2.09351 2.08782 2.08222 2.07694 2.07244 2.06792 2.06458 2.06149 2.05957 2.05869 2.0589 2.05952 2.06011 2.06199 2.06441 2.06952 2.07053 2.34077 2.29968 2.28164 2.26896 2.27539 2.28786 2.30343 2.32083 2.33592 2.34874 2.3594 2.36686 2.3739 2.37798 2.37979 2.37862 2.37594 2.3742 2.37259 2.36922 2.3661 2.36215 2.35892 2.35606 2.35409 2.3525 2.35132 2.35054 2.34993 2.34964 2.34925 2.34897 2.34836 2.34782 2.34666 2.34572 2.34367 2.34213 2.33893 2.33658 2.33265 2.32996 2.32591 2.32211 2.31683 2.31161 2.30603 2.30039 2.29473 2.28876 2.28284 2.27651 2.27024 2.26363 2.25701 2.25024 2.24336 2.23651 2.22951 2.22254 2.21551 2.20841 2.20142 2.19421 2.18727 2.18006 2.17308 2.16605 2.15896 2.15216 2.14504 2.13835 2.13129 2.12459 2.11782 2.11109 2.10459 2.09787 2.09159 2.08512 2.07895 2.07297 2.06696 2.06157 2.05598 2.05115 2.04637 2.04218 2.03854 2.03532 2.03314 2.03141 2.0314 2.03168 2.03235 2.03328 2.03567 2.03883 2.04354 2.04491 2.34729 2.30931 2.2835 2.27026 2.2619 2.26363 2.26507 2.26766 2.26883 2.26931 2.26805 2.26681 2.26611 2.26617 2.26617 2.26575 2.26487 2.26401 2.26496 2.26613 2.26736 2.2682 2.26969 2.27083 2.27277 2.27419 2.27638 2.27797 2.28006 2.28133 2.28279 2.28359 2.28402 2.28393 2.28357 2.28287 2.28133 2.27991 2.27732 2.27499 2.27189 2.26946 2.2662 2.26289 2.25837 2.25379 2.24867 2.24368 2.23834 2.23314 2.22757 2.22207 2.21622 2.21029 2.20422 2.1979 2.19172 2.18518 2.17886 2.17222 2.16565 2.15897 2.15218 2.14545 2.13857 2.13174 2.12496 2.11796 2.11128 2.1042 2.09761 2.0907 2.08419 2.07758 2.07112 2.0648 2.05843 2.05242 2.0462 2.04049 2.03457 2.02915 2.02373 2.01861 2.01389 2.00922 2.00533 2.00146 1.99856 1.99594 1.99427 1.99349 1.99368 1.99426 1.99485 1.99617 1.99896 2.00247 2.00723 2.00836 2.35146 2.32064 2.29584 2.28052 2.26512 2.25763 2.252 2.24542 2.23923 2.2318 2.22481 2.21829 2.21325 2.2097 2.20732 2.20621 2.20497 2.20409 2.20426 2.20579 2.20769 2.21053 2.21247 2.21523 2.21745 2.22035 2.22307 2.22585 2.22848 2.23064 2.23292 2.23434 2.23607 2.23671 2.23775 2.23767 2.2374 2.2368 2.23549 2.23391 2.2318 2.22979 2.22731 2.22435 2.22051 2.21615 2.21141 2.20635 2.20119 2.19569 2.19024 2.18441 2.17861 2.17254 2.16638 2.1602 2.15377 2.14752 2.141 2.1346 2.12809 2.12145 2.115 2.10818 2.10174 2.09485 2.08832 2.0815 2.0749 2.06824 2.06155 2.05501 2.04831 2.0419 2.0353 2.02898 2.02266 2.01642 2.01049 2.00444 1.99892 1.99329 1.98818 1.98319 1.97856 1.97441 1.9705 1.96735 1.96449 1.96266 1.96121 1.96125 1.96157 1.96199 1.96293 1.96551 1.96827 1.97256 1.97692 1.97844 2.36285 2.33241 2.30824 2.28881 2.2779 2.26174 2.24945 2.23865 2.22655 2.21571 2.20454 2.19548 2.18728 2.18157 2.177 2.17471 2.17256 2.17154 2.16994 2.17 2.17035 2.1722 2.17446 2.17655 2.17893 2.18131 2.18375 2.18626 2.18851 2.19096 2.19292 2.19509 2.19648 2.19803 2.19866 2.1994 2.19934 2.19891 2.19798 2.1966 2.19482 2.19302 2.19096 2.18831 2.18505 2.18119 2.17705 2.1726 2.16793 2.16317 2.15819 2.1531 2.14785 2.14234 2.13685 2.13093 2.12521 2.11904 2.11306 2.10677 2.10052 2.09416 2.08768 2.08124 2.07461 2.06816 2.0616 2.05515 2.04874 2.04227 2.03601 2.02954 2.02339 2.01706 2.01094 2.00489 1.99879 1.99308 1.98714 1.98177 1.97621 1.97128 1.96628 1.96188 1.95769 1.954 1.95082 1.94811 1.94621 1.94482 1.9446 1.9449 1.94535 1.9463 1.94794 1.95125 1.95453 1.95874 1.96292 1.96425 2.38009 2.35223 2.32602 2.30483 2.28522 2.27107 2.25501 2.23925 2.22501 2.21077 2.19851 2.18657 2.17702 2.16835 2.16213 2.15703 2.15358 2.15061 2.14849 2.14691 2.14582 2.14582 2.14641 2.1481 2.14971 2.15177 2.15367 2.15594 2.15818 2.16063 2.16294 2.16501 2.1669 2.16826 2.16953 2.17012 2.17065 2.17049 2.16986 2.16886 2.16739 2.16603 2.16435 2.16222 2.15954 2.15617 2.15264 2.14854 2.14434 2.13984 2.13507 2.13031 2.12507 2.12002 2.11445 2.10904 2.10324 2.09743 2.09145 2.08526 2.07912 2.07267 2.06636 2.05979 2.0534 2.04689 2.04039 2.034 2.02746 2.02121 2.01471 2.0086 2.00221 1.99623 1.99005 1.9842 1.9783 1.97259 1.96707 1.96158 1.95652 1.95142 1.94693 1.94249 1.93877 1.9353 1.93255 1.93037 1.92892 1.92832 1.92851 1.92891 1.92963 1.93118 1.93374 1.93714 1.94093 1.9443 1.94847 1.94912 2.39472 2.37215 2.34593 2.32257 2.29953 2.27894 2.26059 2.24353 2.22772 2.21219 2.19822 2.18519 2.17392 2.16375 2.1554 2.14822 2.14269 2.13783 2.13412 2.13052 2.1283 2.12625 2.12539 2.1254 2.12617 2.12795 2.12947 2.13182 2.13362 2.13612 2.13789 2.14009 2.14157 2.14331 2.14436 2.14543 2.14587 2.14602 2.14558 2.14465 2.14357 2.14234 2.14098 2.13926 2.13681 2.13403 2.13065 2.12706 2.12307 2.1188 2.11436 2.10954 2.10467 2.09944 2.09417 2.08865 2.08305 2.07731 2.07142 2.06552 2.05939 2.05333 2.04708 2.04098 2.03474 2.02858 2.02243 2.01625 2.01019 2.00407 1.9981 1.99207 1.98617 1.9803 1.9745 1.96888 1.96322 1.95796 1.95256 1.94775 1.94276 1.93845 1.93412 1.93051 1.92711 1.92444 1.92226 1.92086 1.92019 1.92034 1.92072 1.92137 1.92299 1.92496 1.92868 1.93156 1.93558 1.93797 1.94201 1.94208 2.40603 2.38688 2.36475 2.34182 2.31944 2.29717 2.27612 2.25627 2.23814 2.22142 2.20627 2.19184 2.17888 2.1669 2.15653 2.14725 2.13959 2.13284 2.12737 2.12274 2.11905 2.11584 2.11408 2.11251 2.1122 2.11229 2.11321 2.11459 2.11609 2.11792 2.11958 2.12144 2.12291 2.12467 2.12569 2.12707 2.12743 2.12818 2.1279 2.12737 2.12657 2.12554 2.1245 2.12275 2.12057 2.11775 2.11451 2.11104 2.10703 2.10302 2.09845 2.09396 2.08904 2.08412 2.07899 2.07368 2.06836 2.06268 2.05712 2.05114 2.04527 2.0392 2.0331 2.02703 2.02075 2.01471 2.00834 2.00231 1.99602 1.98997 1.98388 1.97782 1.97198 1.96599 1.96039 1.95461 1.9493 1.94387 1.93898 1.93404 1.92971 1.9254 1.92185 1.91846 1.91593 1.91374 1.91246 1.91179 1.91194 1.91225 1.91293 1.91417 1.91697 1.91924 1.92312 1.92547 1.92893 1.93048 1.93364 1.93313 2.41449 2.39474 2.37333 2.35095 2.32908 2.3079 2.28765 2.2685 2.25041 2.23353 2.2176 2.2029 2.18892 2.17603 2.16399 2.15319 2.14348 2.13503 2.12762 2.12119 2.11581 2.11151 2.10793 2.1052 2.10355 2.10229 2.10193 2.10202 2.10279 2.10388 2.10518 2.10642 2.10765 2.10868 2.10963 2.11022 2.11066 2.11068 2.11022 2.10961 2.10842 2.10737 2.10606 2.10428 2.10216 2.09929 2.0964 2.09281 2.08921 2.08501 2.08073 2.07606 2.07126 2.06631 2.06115 2.05601 2.05061 2.04525 2.03968 2.03409 2.02847 2.02273 2.01707 2.01121 2.00548 1.99954 1.99374 1.98784 1.982 1.97625 1.97043 1.96491 1.95921 1.95393 1.94843 1.94341 1.93822 1.93356 1.9288 1.92459 1.92042 1.91691 1.91367 1.91111 1.90912 1.90783 1.90737 1.90758 1.90797 1.9087 1.91066 1.91247 1.91601 1.9186 1.92196 1.92396 1.92648 1.92748 1.92975 1.92866 2.42542 2.40465 2.38275 2.36074 2.3393 2.31882 2.29945 2.28106 2.26372 2.2472 2.23141 2.21637 2.20191 2.18815 2.17502 2.16281 2.15147 2.14129 2.13196 2.12381 2.11638 2.11018 2.10478 2.10048 2.09674 2.09414 2.09191 2.09066 2.08963 2.08939 2.08948 2.08992 2.09042 2.09087 2.09119 2.09133 2.09133 2.09109 2.09052 2.08972 2.08853 2.08757 2.0861 2.08464 2.08231 2.07992 2.07694 2.07383 2.07032 2.06652 2.06252 2.05816 2.05377 2.04901 2.04428 2.03926 2.03415 2.02892 2.02344 2.01811 2.01245 2.00707 2.00136 1.99587 1.9902 1.98454 1.97893 1.97313 1.96759 1.96176 1.95635 1.95061 1.94541 1.93992 1.93499 1.92989 1.92532 1.92076 1.91666 1.91274 1.90933 1.90636 1.90389 1.90213 1.90091 1.90062 1.90089 1.90123 1.90216 1.9037 1.90656 1.90925 1.91264 1.91504 1.91758 1.91895 1.92044 1.92092 1.92239 1.92073 2.43668 2.41459 2.39151 2.36839 2.34645 2.3257 2.30673 2.2886 2.27177 2.25534 2.23971 2.22426 2.20948 2.1949 2.18096 2.1675 2.1549 2.14314 2.13241 2.12262 2.1139 2.10601 2.09886 2.09266 2.08715 2.08272 2.07898 2.07647 2.07436 2.07322 2.07226 2.07196 2.07206 2.07232 2.07263 2.07301 2.0732 2.07315 2.07295 2.07244 2.07193 2.07111 2.07034 2.06904 2.0674 2.06541 2.06306 2.06047 2.05739 2.05413 2.05035 2.04642 2.04212 2.03765 2.033 2.02812 2.02319 2.01796 2.01275 2.00734 2.00189 1.99638 1.99072 1.98518 1.97939 1.97384 1.96801 1.96249 1.95671 1.95129 1.94564 1.94039 1.93498 1.93 1.92495 1.92038 1.91586 1.91179 1.90794 1.90453 1.90167 1.89925 1.89758 1.89643 1.89625 1.89649 1.89689 1.8978 1.8999 1.90237 1.90569 1.90844 1.91136 1.91331 1.91517 1.91592 1.91689 1.91705 1.91807 1.91627 2.44618 2.42527 2.40288 2.38058 2.3589 2.33813 2.31869 2.30019 2.28261 2.26558 2.24903 2.23279 2.2169 2.20151 2.18652 2.17237 2.15873 2.14611 2.13432 2.12345 2.11345 2.10436 2.09621 2.08902 2.08279 2.07754 2.07313 2.06961 2.0669 2.06495 2.06352 2.06277 2.06224 2.06227 2.0624 2.06272 2.06297 2.06313 2.06302 2.06275 2.06218 2.06162 2.0608 2.05959 2.05802 2.05599 2.05375 2.05101 2.04802 2.04463 2.04094 2.03702 2.03278 2.02845 2.02377 2.01907 2.01405 2.009 2.00383 1.99853 1.99327 1.98778 1.98245 1.97686 1.97148 1.96587 1.96046 1.95491 1.94955 1.94413 1.93891 1.93369 1.92874 1.92385 1.91927 1.91491 1.91085 1.90714 1.90376 1.90103 1.89865 1.8972 1.89605 1.89607 1.89629 1.89676 1.898 1.89991 1.90287 1.90602 1.90888 1.91175 1.91355 1.9155 1.916 1.91685 1.91678 1.91672 1.91687 1.91523 2.44791 2.42892 2.40962 2.39012 2.37097 2.35177 2.33329 2.31487 2.29727 2.27962 2.26269 2.24577 2.22948 2.21352 2.19802 2.18314 2.16871 2.15509 2.14216 2.13011 2.1189 2.10868 2.09923 2.09097 2.08346 2.07697 2.07109 2.06636 2.06229 2.05903 2.05646 2.05417 2.05277 2.05161 2.0509 2.05038 2.05005 2.0498 2.04932 2.04871 2.04779 2.04693 2.04571 2.04424 2.0423 2.04013 2.03767 2.03486 2.03184 2.02842 2.02487 2.02095 2.01692 2.01263 2.00814 2.00355 1.99873 1.99399 1.98905 1.98423 1.97931 1.97442 1.96959 1.96466 1.95988 1.95492 1.95015 1.9452 1.94045 1.93555 1.93092 1.9262 1.92183 1.91747 1.91356 1.90973 1.90644 1.9033 1.90095 1.89889 1.89769 1.89696 1.89707 1.89734 1.89804 1.89947 1.90217 1.90477 1.90831 1.91091 1.91388 1.9156 1.91724 1.91802 1.91816 1.918 1.91767 1.9171 1.91667 1.9149 2.44818 2.42967 2.41225 2.3951 2.37824 2.3611 2.34387 2.32664 2.30918 2.29221 2.27506 2.25857 2.24203 2.22601 2.21015 2.19472 2.17963 2.16518 2.15142 2.13833 2.12618 2.11467 2.10409 2.09421 2.08502 2.07709 2.06977 2.06352 2.05753 2.05265 2.04818 2.04453 2.04161 2.03924 2.0377 2.03629 2.0354 2.03438 2.03359 2.03258 2.03154 2.03032 2.02894 2.02726 2.02522 2.02303 2.02054 2.01788 2.01495 2.01179 2.00845 2.00482 2.00107 1.99702 1.99286 1.98847 1.98398 1.97942 1.97472 1.97008 1.96525 1.96063 1.95573 1.9512 1.94629 1.94187 1.93703 1.93269 1.92804 1.92382 1.91949 1.91552 1.91165 1.90811 1.9049 1.90192 1.89947 1.89736 1.89602 1.89501 1.89502 1.89538 1.89579 1.89694 1.89859 1.9018 1.90454 1.90811 1.91078 1.91347 1.91529 1.91637 1.91724 1.91705 1.9166 1.9161 1.91522 1.91376 1.91261 1.91047 2.45078 2.4321 2.41539 2.39954 2.38408 2.36826 2.35199 2.3352 2.3181 2.30085 2.28376 2.26667 2.24996 2.23335 2.21717 2.20134 2.18598 2.17111 2.15695 2.14324 2.1304 2.11786 2.1064 2.09515 2.08501 2.07519 2.06612 2.05783 2.05034 2.04417 2.03849 2.034 2.02971 2.02645 2.02372 2.02146 2.01975 2.01805 2.01683 2.01536 2.01411 2.01267 2.0112 2.00958 2.0077 2.00577 2.00351 2.00116 1.99856 1.99568 1.99272 1.98931 1.98597 1.98207 1.97826 1.974 1.96976 1.9653 1.96069 1.95614 1.95132 1.94675 1.94188 1.93733 1.93255 1.92806 1.92346 1.91912 1.91477 1.91072 1.90675 1.90318 1.89979 1.89693 1.89429 1.89217 1.89059 1.88954 1.88927 1.8895 1.89023 1.89091 1.89262 1.89466 1.89809 1.90103 1.90441 1.90712 1.90951 1.91131 1.91221 1.91273 1.91235 1.91188 1.9109 1.90967 1.90804 1.9057 1.90415 1.90169 2.45969 2.43842 2.42124 2.40527 2.38978 2.3744 2.3589 2.34298 2.3268 2.31016 2.29344 2.27652 2.25973 2.24306 2.22659 2.21059 2.19468 2.17946 2.16433 2.14996 2.13583 2.12233 2.1094 2.09701 2.08545 2.07441 2.0644 2.05499 2.04641 2.03845 2.03136 2.02528 2.01987 2.01527 2.01145 2.00837 2.00568 2.00343 2.00162 1.99982 1.99854 1.99706 1.99586 1.99444 1.99293 1.99132 1.98929 1.98727 1.98469 1.98212 1.97911 1.97589 1.97253 1.96867 1.96501 1.96069 1.95676 1.95217 1.94798 1.94324 1.93888 1.93409 1.9297 1.92494 1.92061 1.91599 1.91179 1.90744 1.90347 1.89954 1.89594 1.89267 1.88967 1.88724 1.88497 1.88363 1.88255 1.88256 1.88286 1.88362 1.88443 1.88676 1.88908 1.89259 1.89573 1.89905 1.90185 1.90412 1.90594 1.90678 1.90722 1.90686 1.90618 1.90544 1.90417 1.90231 1.90021 1.8976 1.89589 1.89339 2.49192 2.46216 2.43816 2.41814 2.39986 2.3826 2.36589 2.34942 2.33316 2.31692 2.30044 2.28396 2.26726 2.25078 2.23423 2.21799 2.2019 2.18602 2.17056 2.15543 2.14074 2.12662 2.11296 2.09997 2.08759 2.07586 2.06483 2.0545 2.04489 2.0361 2.02796 2.02068 2.01399 2.0082 2.00282 1.99852 1.99498 1.99217 1.98988 1.98812 1.98672 1.98536 1.98422 1.98289 1.98165 1.98006 1.97838 1.97635 1.97405 1.97149 1.96855 1.96543 1.96191 1.95824 1.95428 1.95022 1.94591 1.94161 1.93701 1.9326 1.92784 1.92343 1.91867 1.91433 1.90974 1.90554 1.90129 1.89733 1.89354 1.89001 1.88685 1.88396 1.8816 1.87944 1.8781 1.87705 1.87705 1.8773 1.87779 1.87882 1.88144 1.88421 1.88774 1.89098 1.89414 1.89708 1.8991 1.9011 1.9018 1.90251 1.90216 1.90182 1.90111 1.89998 1.8982 1.89586 1.89355 1.8907 1.88885 1.88626 2.52904 2.50268 2.47706 2.45103 2.42656 2.4031 2.3814 2.36173 2.34329 2.32556 2.30819 2.29103 2.27404 2.25718 2.24052 2.22401 2.20773 2.19157 2.17573 2.16022 2.14517 2.13053 2.11647 2.10292 2.09007 2.07774 2.06613 2.05508 2.04479 2.03518 2.02648 2.01854 2.01157 2.00537 1.99983 1.99513 1.99118 1.98776 1.98514 1.98281 1.98095 1.97936 1.97812 1.97695 1.97579 1.97456 1.97302 1.97136 1.96921 1.96693 1.96415 1.96122 1.95788 1.95438 1.95064 1.94671 1.94265 1.93836 1.93405 1.92952 1.92508 1.92043 1.91602 1.91142 1.90717 1.90284 1.89886 1.89502 1.89148 1.88833 1.88545 1.88318 1.88111 1.87981 1.879 1.87895 1.87918 1.87959 1.88092 1.88352 1.88626 1.88942 1.89257 1.89531 1.89811 1.8999 1.9017 1.90244 1.90278 1.90255 1.90207 1.90145 1.90022 1.89852 1.89633 1.89388 1.89143 1.88864 1.8867 1.88427 2.54601 2.52454 2.50389 2.48208 2.45887 2.43563 2.41281 2.39039 2.36877 2.34819 2.32853 2.30965 2.29138 2.27351 2.25587 2.23845 2.22105 2.20406 2.18719 2.17106 2.15543 2.14063 2.12641 2.11285 2.09977 2.08721 2.07529 2.06379 2.05323 2.04314 2.034 2.02546 2.01778 2.01066 2.00429 1.99836 1.99324 1.98892 1.98533 1.98241 1.98026 1.9785 1.97718 1.97602 1.97495 1.97387 1.97254 1.97111 1.96924 1.96721 1.96471 1.96201 1.95892 1.9556 1.95205 1.94825 1.9443 1.94009 1.93584 1.93135 1.92693 1.92232 1.91794 1.9134 1.90923 1.90502 1.90122 1.89761 1.89437 1.89165 1.88919 1.88743 1.88595 1.88533 1.88503 1.88524 1.88572 1.88746 1.88999 1.89289 1.8958 1.89898 1.90144 1.90406 1.90574 1.90715 1.908 1.90789 1.90754 1.90717 1.90633 1.90535 1.90348 1.9014 1.899 1.89637 1.89378 1.89091 1.88889 1.88649 2.57274 2.55101 2.53014 2.50945 2.48799 2.46608 2.44396 2.42179 2.40002 2.37872 2.35802 2.33796 2.31827 2.29908 2.2801 2.26169 2.24357 2.22607 2.20896 2.19262 2.17664 2.16146 2.14643 2.13231 2.11856 2.10581 2.09357 2.08223 2.0713 2.06097 2.05099 2.04157 2.03252 2.02427 2.01656 2.0098 2.00377 1.99893 1.9949 1.99177 1.98936 1.98742 1.986 1.98477 1.98376 1.98274 1.98159 1.98038 1.97876 1.97708 1.97481 1.97252 1.9696 1.96672 1.9632 1.95971 1.95564 1.95159 1.94711 1.94261 1.93792 1.9332 1.92856 1.92383 1.9195 1.91512 1.91131 1.90764 1.90463 1.90188 1.89988 1.89817 1.89735 1.89665 1.89673 1.89748 1.89937 1.90168 1.90463 1.90724 1.91031 1.91264 1.91494 1.91665 1.9176 1.91845 1.91817 1.91771 1.91697 1.91632 1.91487 1.91338 1.91104 1.90882 1.90623 1.90358 1.9009 1.89808 1.896 1.89373 2.58701 2.56769 2.54859 2.52909 2.50947 2.48943 2.46943 2.44918 2.42902 2.40882 2.3889 2.36897 2.34963 2.33047 2.31195 2.29368 2.27601 2.25858 2.24169 2.22523 2.20934 2.19414 2.17947 2.16541 2.15175 2.13842 2.12537 2.11251 2.10015 2.08794 2.07655 2.06577 2.05594 2.04693 2.03852 2.03124 2.02435 2.0186 2.01324 2.0088 2.0049 2.00167 1.99915 1.99689 1.99541 1.99379 1.99288 1.99145 1.99056 1.98907 1.98775 1.98593 1.984 1.98166 1.97905 1.97609 1.97274 1.96929 1.96535 1.96157 1.95727 1.95321 1.94889 1.94461 1.94071 1.93635 1.93323 1.92927 1.92712 1.92416 1.92292 1.92101 1.92055 1.91995 1.92079 1.92226 1.92383 1.92612 1.92804 1.93028 1.93207 1.9336 1.93474 1.93524 1.93538 1.9349 1.93382 1.93314 1.93176 1.93066 1.92836 1.92648 1.92375 1.92137 1.91852 1.91574 1.91288 1.90997 1.90779 1.90548 2.59745 2.57803 2.55925 2.54094 2.52323 2.5055 2.48715 2.46854 2.44929 2.43014 2.41109 2.39244 2.37413 2.35636 2.33872 2.32161 2.30461 2.28802 2.27166 2.25561 2.23976 2.22432 2.20892 2.19391 2.17898 2.16456 2.15042 2.13688 2.12379 2.11122 2.09934 2.08738 2.07631 2.06532 2.05551 2.04602 2.03737 2.02954 2.02267 2.01703 2.01223 2.00868 2.0057 2.00361 2.00194 2.00067 1.99976 1.99878 1.99807 1.99696 1.99614 1.99465 1.99343 1.99144 1.98965 1.98725 1.98483 1.98224 1.97915 1.9765 1.97275 1.97001 1.96592 1.96322 1.9593 1.95693 1.95357 1.9518 1.94928 1.94804 1.94649 1.94551 1.94571 1.94648 1.94797 1.94912 1.9511 1.95249 1.95412 1.95524 1.95602 1.9564 1.95621 1.9558 1.95443 1.95332 1.95154 1.95047 1.94834 1.94669 1.94401 1.9418 1.9391 1.9365 1.93376 1.93088 1.92812 1.92519 1.92303 1.92081 2.6158 2.59904 2.58265 2.56524 2.54684 2.52743 2.50752 2.48766 2.46809 2.44882 2.43011 2.41166 2.39371 2.37613 2.35888 2.34201 2.32534 2.30878 2.29242 2.27603 2.2599 2.24404 2.22851 2.2133 2.19844 2.1837 2.16913 2.15459 2.14008 2.12573 2.11177 2.0982 2.08577 2.07384 2.06362 2.054 2.04616 2.03897 2.03286 2.02744 2.02261 2.0183 2.01451 2.01129 2.00848 2.00633 2.00433 2.00299 2.0015 2.00052 1.99934 1.99829 1.99704 1.99563 1.99409 1.99251 1.99059 1.98879 1.98646 1.98438 1.98175 1.97948 1.97672 1.97454 1.97193 1.97023 1.96808 1.96717 1.96535 1.96492 1.96421 1.96494 1.9658 1.96753 1.96888 1.97109 1.97259 1.97454 1.97588 1.97689 1.97756 1.97746 1.97718 1.9761 1.97493 1.9736 1.97202 1.97091 1.96863 1.96695 1.96413 1.96223 1.9592 1.95689 1.95377 1.95106 1.94799 1.94501 1.94268 1.94023 2.62654 2.61153 2.59707 2.58134 2.56426 2.54656 2.52824 2.50981 2.49148 2.47329 2.45564 2.43827 2.4214 2.40457 2.38781 2.37087 2.35405 2.33717 2.32072 2.30449 2.28858 2.27292 2.25719 2.24135 2.22527 2.20893 2.19262 2.17651 2.16083 2.14612 2.13213 2.11934 2.10741 2.09648 2.08619 2.07655 2.06732 2.05842 2.0499 2.04212 2.03468 2.02826 2.02236 2.01756 2.01327 2.00986 2.00699 2.00481 2.00303 2.00174 2.00058 1.99976 1.99896 1.99851 1.9978 1.99729 1.99628 1.99542 1.99396 1.9927 1.99084 1.98923 1.98725 1.98548 1.98353 1.98191 1.97978 1.97875 1.97693 1.97705 1.97736 1.97823 1.97939 1.98097 1.98331 1.98484 1.98731 1.98859 1.9902 1.99136 1.99176 1.99254 1.99229 1.99169 1.99118 1.99048 1.98984 1.98839 1.98713 1.98505 1.98282 1.98075 1.9778 1.97577 1.97231 1.97032 1.96664 1.96479 1.96199 1.96093 2.63306 2.61736 2.60331 2.58838 2.57246 2.55558 2.53829 2.52096 2.504 2.48755 2.47134 2.4552 2.43883 2.42252 2.40624 2.39027 2.37473 2.3593 2.34398 2.32831 2.31196 2.29516 2.27768 2.26 2.24239 2.22509 2.20859 2.19275 2.17781 2.1636 2.14997 2.13685 2.12406 2.11167 2.09956 2.08795 2.07678 2.06636 2.05649 2.04747 2.03917 2.03193 2.02524 2.01943 2.01421 2.00994 2.00628 2.00341 2.0013 1.99991 1.99905 1.99884 1.99888 1.99904 1.99918 1.99914 1.99899 1.99853 1.9979 1.99652 1.99547 1.99397 1.99306 1.99168 1.99069 1.99005 1.98949 1.98982 1.99061 1.99206 1.99417 1.99615 1.99915 2.00191 2.00493 2.0082 2.01065 2.01351 2.01532 2.01696 2.01808 2.01852 2.01825 2.01757 2.01708 2.01599 2.01502 2.01283 2.01137 2.00841 2.00668 2.00342 2.00149 1.99824 1.99607 1.99324 1.99078 1.98879 1.98667 1.98607 2.64538 2.62938 2.61545 2.60095 2.58554 2.56947 2.55314 2.53677 2.52035 2.50371 2.48725 2.47105 2.4552 2.43981 2.42466 2.40957 2.39401 2.37793 2.36094 2.34336 2.32506 2.30694 2.28874 2.27125 2.25429 2.23786 2.22206 2.20649 2.19131 2.17631 2.16154 2.14714 2.13312 2.11952 2.10661 2.09427 2.08262 2.07158 2.06123 2.05153 2.04252 2.03408 2.02637 2.01932 2.01321 2.00799 2.00373 2.00047 1.99828 1.99693 1.99635 1.99641 1.99668 1.99724 1.99763 1.99773 1.99769 1.9975 1.99696 1.99625 1.99541 1.99496 1.99504 1.99531 1.99601 1.9974 1.99959 2.00198 2.00599 2.00924 2.01408 2.01823 2.02265 2.02717 2.03077 2.03443 2.03733 2.03934 2.04131 2.04194 2.04263 2.04225 2.04144 2.04064 2.03967 2.03819 2.03703 2.03457 2.03305 2.03022 2.02858 2.02566 2.02411 2.02111 2.01954 2.01639 2.01478 2.01158 2.01026 2.00757 2.64906 2.63462 2.62223 2.60882 2.59412 2.57867 2.56253 2.54629 2.53016 2.51414 2.49858 2.48353 2.46875 2.45426 2.43932 2.42381 2.40728 2.39014 2.37227 2.35451 2.33655 2.31922 2.30198 2.28522 2.26863 2.252 2.23572 2.21934 2.20325 2.18746 2.17191 2.157 2.1424 2.12851 2.11508 2.10232 2.09003 2.07834 2.06727 2.05665 2.04667 2.03706 2.0286 2.02068 2.014 2.00837 2.00393 2.00084 1.99846 1.99703 1.99626 1.99593 1.99596 1.99612 1.99617 1.99603 1.9957 1.99576 1.99589 1.99624 1.99671 1.99766 1.99927 2.00133 2.00429 2.00736 2.01147 2.01565 2.02051 2.02583 2.03064 2.03637 2.04079 2.04568 2.04952 2.05271 2.05556 2.05715 2.05861 2.05919 2.05917 2.0586 2.05751 2.05668 2.05527 2.05428 2.05231 2.05095 2.04896 2.04724 2.04558 2.04324 2.04183 2.03884 2.03709 2.03332 2.03113 2.02655 2.02442 2.01951 2.6575 2.64289 2.62966 2.6152 2.59949 2.58327 2.56666 2.55001 2.53377 2.51808 2.50305 2.48865 2.47403 2.45915 2.44362 2.4274 2.41081 2.39399 2.37717 2.36043 2.34374 2.32699 2.31017 2.29312 2.27622 2.25907 2.24237 2.22556 2.20935 2.19339 2.17781 2.16283 2.14819 2.13409 2.12053 2.10724 2.09463 2.08235 2.07063 2.05911 2.04848 2.03832 2.0293 2.02118 2.01436 2.00841 2.00364 1.99986 1.99672 1.99456 1.99275 1.99155 1.99093 1.99058 1.99006 1.9901 1.99056 1.99123 1.99256 1.99414 1.99629 1.99869 2.00167 2.00515 2.00914 2.01374 2.01866 2.02418 2.02974 2.03555 2.04124 2.04656 2.05157 2.05595 2.05978 2.06262 2.0654 2.06667 2.0681 2.0687 2.06871 2.06831 2.06777 2.06733 2.06673 2.06604 2.06479 2.064 2.06241 2.06139 2.05925 2.05771 2.05485 2.05208 2.04876 2.04441 2.04085 2.03519 2.03246 2.02675 2.66316 2.64974 2.6375 2.624 2.6088 2.59244 2.57565 2.5586 2.54212 2.52596 2.51005 2.49434 2.4784 2.46227 2.44616 2.42959 2.41324 2.39666 2.38027 2.36368 2.34705 2.33007 2.31317 2.29599 2.27928 2.26236 2.24613 2.22973 2.21395 2.19819 2.18292 2.16793 2.15339 2.13907 2.1254 2.11162 2.09859 2.08548 2.07303 2.06094 2.04951 2.03896 2.02937 2.02088 2.01336 2.0068 2.00108 1.99626 1.99214 1.98895 1.98627 1.98445 1.98349 1.9831 1.98285 1.98314 1.98419 1.98556 1.9879 1.99023 1.99335 1.99693 2.00099 2.00556 2.01051 2.01607 2.02179 2.02806 2.03407 2.04036 2.04619 2.05158 2.05673 2.06069 2.06465 2.06716 2.06984 2.071 2.07252 2.07302 2.07334 2.07334 2.07341 2.07357 2.07374 2.07359 2.07319 2.07244 2.07124 2.07003 2.06785 2.06588 2.06268 2.0597 2.05562 2.05162 2.04739 2.04282 2.03981 2.0357 2.66048 2.64765 2.63611 2.62314 2.60842 2.5923 2.57596 2.55902 2.54278 2.52665 2.51099 2.49566 2.48048 2.46536 2.45029 2.43481 2.41918 2.4029 2.38626 2.36905 2.35178 2.33433 2.31722 2.30017 2.28351 2.26688 2.2507 2.23441 2.21889 2.20314 2.18834 2.17325 2.15905 2.14455 2.13078 2.11672 2.10329 2.08982 2.07699 2.06486 2.05329 2.04282 2.0326 2.02341 2.01471 2.00699 1.99998 1.99388 1.98857 1.98425 1.9809 1.97859 1.97759 1.97762 1.97774 1.97835 1.97973 1.98254 1.98502 1.98888 1.99221 1.99679 2.00115 2.00654 2.01202 2.01818 2.0245 2.03115 2.03765 2.04419 2.05017 2.05582 2.06088 2.06501 2.069 2.07152 2.07434 2.07569 2.07744 2.07805 2.07884 2.07917 2.07945 2.08014 2.08027 2.08007 2.07951 2.07849 2.07719 2.07526 2.07296 2.07024 2.06704 2.06354 2.05975 2.05579 2.05194 2.04793 2.04523 2.04194 2.66937 2.65512 2.64259 2.62842 2.61293 2.59557 2.5782 2.56034 2.5435 2.52741 2.5122 2.49833 2.48432 2.47058 2.45566 2.44 2.42336 2.40601 2.38825 2.37027 2.35251 2.33469 2.31737 2.30015 2.28324 2.26668 2.25049 2.23452 2.21932 2.20388 2.18955 2.17459 2.16081 2.14628 2.13268 2.11866 2.10523 2.09202 2.0792 2.0672 2.0553 2.04424 2.0334 2.02313 2.01358 2.0046 1.99662 1.98952 1.98342 1.97859 1.97515 1.97257 1.97233 1.97266 1.97336 1.97431 1.97654 1.97985 1.9832 1.98741 1.99166 1.99661 2.00186 2.00757 2.01382 2.0203 2.02717 2.03394 2.04083 2.04733 2.05361 2.05935 2.06445 2.06904 2.07302 2.07613 2.07931 2.08124 2.08344 2.0848 2.086 2.08653 2.08753 2.08787 2.08768 2.0872 2.08592 2.08471 2.0826 2.08014 2.07751 2.07422 2.07102 2.06711 2.06363 2.05934 2.05587 2.05161 2.04915 2.04559 2.66718 2.65397 2.64156 2.62647 2.61096 2.59419 2.57853 2.5628 2.54808 2.5339 2.51969 2.50563 2.49017 2.47465 2.45809 2.44146 2.42417 2.40688 2.38924 2.37161 2.35408 2.33628 2.31911 2.30164 2.28482 2.26809 2.25191 2.23583 2.22049 2.20501 2.19059 2.17566 2.16203 2.14769 2.13455 2.12106 2.10831 2.09584 2.08322 2.07104 2.05837 2.04638 2.03463 2.02336 2.01295 2.00321 1.9944 1.98699 1.98057 1.97563 1.97209 1.96966 1.96927 1.96964 1.97045 1.97123 1.97341 1.97668 1.98059 1.98502 1.99001 1.99543 2.00132 2.00754 2.01411 2.02079 2.02776 2.03456 2.04142 2.04788 2.05422 2.05996 2.0656 2.07054 2.07532 2.07955 2.08322 2.08656 2.08926 2.09133 2.09275 2.09393 2.09443 2.09434 2.09372 2.09278 2.09057 2.08898 2.08575 2.08326 2.07999 2.07639 2.07326 2.06908 2.06597 2.06135 2.05837 2.05367 2.05148 2.04743 2.67139 2.65699 2.64273 2.62658 2.61115 2.59562 2.58201 2.56837 2.55452 2.53983 2.52385 2.50781 2.49063 2.47396 2.45675 2.44005 2.42302 2.40617 2.38879 2.37136 2.35375 2.33568 2.31825 2.30047 2.28352 2.26663 2.25058 2.23474 2.2199 2.20504 2.1914 2.17734 2.16478 2.15148 2.13909 2.12607 2.11282 2.09962 2.08559 2.07234 2.05865 2.04553 2.03285 2.0207 2.00968 1.99979 1.99083 1.98351 1.97713 1.97216 1.96847 1.966 1.96518 1.96547 1.96617 1.9668 1.96875 1.97241 1.9767 1.98182 1.98765 1.99377 2.00065 2.00734 2.01463 2.02142 2.02849 2.03512 2.04176 2.048 2.05419 2.05995 2.06573 2.07105 2.07626 2.08115 2.08528 2.08956 2.09233 2.09518 2.0967 2.09797 2.09829 2.09812 2.09727 2.0962 2.09373 2.0921 2.08871 2.0867 2.08305 2.08014 2.07723 2.07287 2.07041 2.06539 2.06273 2.05749 2.05522 2.05039 2.67023 2.65508 2.64124 2.62707 2.61444 2.60235 2.59064 2.57742 2.56233 2.54591 2.52773 2.50988 2.4916 2.47449 2.45757 2.44109 2.42412 2.40687 2.38881 2.37056 2.35207 2.33335 2.31507 2.29659 2.27896 2.26172 2.24586 2.23085 2.21755 2.20481 2.1935 2.18152 2.17028 2.15749 2.14473 2.13095 2.11638 2.10191 2.08632 2.07165 2.05678 2.04286 2.03003 2.01788 2.00707 1.99725 1.9885 1.98101 1.97467 1.96926 1.96528 1.96233 1.96097 1.96107 1.96145 1.96183 1.9636 1.96716 1.97181 1.97753 1.98392 1.99101 1.99848 2.00603 2.01381 2.02103 2.02825 2.03493 2.04123 2.04755 2.05322 2.0592 2.06461 2.07037 2.07537 2.08089 2.08504 2.08978 2.09275 2.09597 2.09755 2.09913 2.09977 2.09966 2.09902 2.09815 2.09615 2.09477 2.09188 2.0902 2.08693 2.08449 2.08183 2.07758 2.07525 2.07022 2.06744 2.06186 2.05941 2.05389 2.67134 2.65301 2.63797 2.62526 2.61377 2.60327 2.59132 2.57793 2.56218 2.5455 2.52735 2.51016 2.49303 2.4771 2.46129 2.44548 2.42882 2.41196 2.39411 2.37647 2.35817 2.33983 2.3213 2.30278 2.28474 2.26743 2.25132 2.23624 2.2226 2.20933 2.19718 2.18423 2.172 2.1583 2.14483 2.13045 2.11571 2.10146 2.08656 2.073 2.05935 2.04657 2.03478 2.02336 2.01313 2.00353 1.99486 1.98674 1.98005 1.97358 1.96882 1.96473 1.96266 1.96163 1.96162 1.96158 1.96295 1.96615 1.97094 1.97678 1.98342 1.99078 1.99828 2.00603 2.01365 2.02075 2.02782 2.03406 2.04036 2.04621 2.05206 2.05785 2.06379 2.06952 2.07545 2.08094 2.08608 2.09085 2.09447 2.09745 2.0995 2.10079 2.10099 2.10075 2.09973 2.09855 2.09594 2.09429 2.09091 2.08904 2.08539 2.08282 2.07977 2.07534 2.07283 2.06744 2.06454 2.0587 2.05612 2.05027 2.67393 2.6526 2.63626 2.62384 2.61258 2.6021 2.58951 2.57562 2.55942 2.5428 2.52512 2.50879 2.49265 2.47733 2.46207 2.44651 2.43037 2.41401 2.39675 2.37947 2.36117 2.34269 2.32375 2.30506 2.28693 2.2698 2.25394 2.23909 2.22548 2.21201 2.1993 2.18568 2.17257 2.15812 2.1441 2.12948 2.11488 2.10117 2.087 2.07456 2.06199 2.05052 2.03973 2.02941 2.01959 2.01056 2.00178 1.99349 1.98649 1.97934 1.97415 1.9693 1.9668 1.9651 1.96483 1.96412 1.96528 1.96818 1.97268 1.97843 1.98486 1.99215 1.9995 2.00716 2.01457 2.02159 2.02833 2.03452 2.04049 2.04633 2.05198 2.05799 2.0639 2.07025 2.07638 2.08236 2.08817 2.09288 2.09691 2.09996 2.10177 2.10247 2.10241 2.10186 2.1001 2.09838 2.09486 2.09278 2.08864 2.08645 2.08226 2.0796 2.07598 2.07173 2.069 2.0635 2.06068 2.055 2.0525 2.04697 2.44289 2.74429 3.00014 3.27267 3.23119 3.2043 3.19166 3.18769 3.18092 3.17293 3.16427 3.16006 3.15912 3.15849 3.15839 3.15944 3.16297 3.16757 3.17345 3.17972 3.18628 3.19131 3.19663 3.20062 3.20289 3.20383 3.20413 3.2021 3.19952 3.19404 3.18853 3.18208 3.17639 3.17154 3.16566 3.15712 3.15061 3.13962 3.13226 3.12237 3.11433 3.10332 3.09375 3.0815 3.07164 3.0591 3.04707 3.03483 3.02382 3.01082 3.00008 2.98687 2.97556 2.96255 2.95093 2.93819 2.92602 2.91362 2.90136 2.88871 2.87665 2.86383 2.85205 2.8394 2.82774 2.81531 2.80378 2.79154 2.7802 2.76818 2.75702 2.7453 2.73425 2.72291 2.71194 2.70103 2.69027 2.67974 2.66936 2.65922 2.64931 2.63958 2.63027 2.62095 2.61238 2.60376 2.59586 2.58841 2.5814 2.57529 2.57 2.56542 2.56261 2.56065 2.5601 2.55993 2.56011 2.56106 2.56433 2.5621 2.34231 2.51425 2.68819 3.02578 3.20123 3.28156 3.44259 3.52834 3.50945 3.50627 3.50226 3.50318 3.50348 3.49882 3.4906 3.48336 3.47054 3.45511 3.43579 3.41693 3.39788 3.37948 3.36808 3.3522 3.3356 3.31329 3.29532 3.26988 3.24981 3.22742 3.20291 3.18461 3.15988 3.14152 3.11658 3.09831 3.07577 3.05643 3.03487 3.01729 2.99741 2.98017 2.96223 2.94384 2.92613 2.90846 2.89192 2.87547 2.85964 2.84407 2.82839 2.81362 2.79826 2.78414 2.76936 2.75533 2.74136 2.72747 2.71412 2.70065 2.68781 2.67488 2.66251 2.6501 2.63813 2.62616 2.6146 2.60301 2.59176 2.58059 2.56959 2.55892 2.54819 2.53801 2.52762 2.51789 2.50792 2.49856 2.48908 2.48 2.47108 2.4623 2.45395 2.44576 2.4379 2.43059 2.42343 2.41707 2.41112 2.40578 2.40147 2.39774 2.39541 2.39424 2.39407 2.39417 2.39443 2.39548 2.39886 2.39662 2.32358 2.35837 2.458 2.55413 2.72927 2.89941 3.05359 3.25319 3.36932 3.44293 3.47869 3.52212 3.54467 3.56832 3.57138 3.56379 3.54697 3.51864 3.48281 3.44759 3.40949 3.37109 3.33246 3.28882 3.24753 3.20296 3.16179 3.11584 3.07554 3.03343 2.99568 2.9583 2.92371 2.89043 2.85947 2.82952 2.80153 2.77502 2.75034 2.7276 2.70599 2.68701 2.6676 2.65023 2.63144 2.61607 2.59901 2.58514 2.56929 2.55616 2.54147 2.52882 2.51517 2.50304 2.49016 2.4788 2.4666 2.45584 2.44429 2.4341 2.4231 2.41337 2.40292 2.3935 2.38357 2.37438 2.3649 2.35595 2.34681 2.33818 2.32931 2.32104 2.31244 2.30444 2.29618 2.28831 2.28045 2.27273 2.26526 2.2578 2.25066 2.24364 2.23682 2.23035 2.22398 2.21802 2.21246 2.20707 2.20258 2.19828 2.19486 2.19235 2.19053 2.19038 2.19057 2.19106 2.19168 2.19317 2.19741 2.19601 2.32609 2.29737 2.3313 2.36647 2.43799 2.5217 2.61749 2.7097 2.8142 2.91099 2.98573 3.03886 3.08331 3.10357 3.11758 3.11629 3.11003 3.0963 3.0743 3.04737 3.01232 2.97567 2.93442 2.89438 2.85307 2.81449 2.77669 2.74163 2.7091 2.67852 2.65116 2.62498 2.60223 2.58065 2.56196 2.54522 2.53019 2.51655 2.50375 2.49237 2.48135 2.47193 2.46213 2.45288 2.44282 2.43379 2.42449 2.41596 2.40699 2.3986 2.38975 2.38143 2.37265 2.3644 2.35571 2.34755 2.33898 2.3309 2.3225 2.31445 2.3062 2.29814 2.29002 2.28196 2.27393 2.26594 2.25794 2.25008 2.24211 2.23438 2.22654 2.21884 2.21126 2.20356 2.19625 2.18872 2.18154 2.17437 2.16715 2.16038 2.15332 2.14678 2.14022 2.13384 2.128 2.12203 2.11687 2.11182 2.1073 2.10365 2.1002 2.09821 2.0967 2.09682 2.09719 2.09798 2.09904 2.10098 2.10608 2.106 2.3333 2.29815 2.28105 2.2947 2.3174 2.35533 2.39708 2.44331 2.48515 2.52453 2.55617 2.58401 2.60194 2.61614 2.61908 2.61678 2.61101 2.60148 2.59054 2.57556 2.55985 2.54356 2.52764 2.51259 2.49887 2.48627 2.47493 2.46473 2.45567 2.4476 2.44046 2.43396 2.42813 2.42278 2.41771 2.41309 2.40824 2.40386 2.39868 2.39413 2.3888 2.38448 2.37912 2.37393 2.36745 2.36133 2.35473 2.34857 2.34182 2.33546 2.3284 2.32179 2.31451 2.30766 2.30031 2.29325 2.286 2.2788 2.27167 2.26439 2.25728 2.24998 2.24276 2.23546 2.22814 2.2208 2.21347 2.20604 2.19882 2.19132 2.18417 2.17674 2.1695 2.16223 2.15478 2.1477 2.14024 2.13333 2.12615 2.11939 2.11265 2.10602 2.09985 2.09351 2.08782 2.08222 2.07694 2.07244 2.06792 2.06458 2.06149 2.05957 2.05868 2.05889 2.05952 2.06011 2.06199 2.06441 2.06952 2.07052 2.34077 2.29968 2.28164 2.26896 2.27539 2.28786 2.30343 2.32084 2.33592 2.34874 2.3594 2.36687 2.37391 2.37798 2.37979 2.37862 2.37594 2.3742 2.37259 2.36922 2.3661 2.36215 2.35892 2.35606 2.35409 2.3525 2.35132 2.35054 2.34993 2.34964 2.34925 2.34897 2.34836 2.34783 2.34666 2.34572 2.34367 2.34214 2.33893 2.33658 2.33265 2.32997 2.32592 2.32211 2.31683 2.31161 2.30603 2.30039 2.29473 2.28876 2.28284 2.27652 2.27024 2.26363 2.25701 2.25024 2.24336 2.23651 2.22951 2.22255 2.21551 2.20841 2.20142 2.19421 2.18727 2.18006 2.17308 2.16605 2.15897 2.15216 2.14504 2.13835 2.13129 2.12459 2.11782 2.11109 2.10459 2.09787 2.09159 2.08512 2.07895 2.07297 2.06696 2.06157 2.05598 2.05115 2.04637 2.04218 2.03854 2.03531 2.03314 2.03141 2.0314 2.03168 2.03235 2.03328 2.03567 2.03883 2.04354 2.04491 2.34728 2.30931 2.2835 2.27026 2.2619 2.26363 2.26507 2.26766 2.26883 2.26931 2.26806 2.26681 2.26611 2.26617 2.26617 2.26575 2.26487 2.26401 2.26496 2.26613 2.26736 2.2682 2.26969 2.27083 2.27277 2.27419 2.27638 2.27798 2.28006 2.28133 2.28279 2.28359 2.28402 2.28393 2.28357 2.28287 2.28133 2.27991 2.27733 2.27499 2.27189 2.26946 2.2662 2.26289 2.25837 2.25379 2.24867 2.24368 2.23834 2.23314 2.22757 2.22207 2.21622 2.21029 2.20422 2.1979 2.19172 2.18518 2.17886 2.17222 2.16565 2.15898 2.15218 2.14545 2.13857 2.13174 2.12496 2.11796 2.11128 2.1042 2.09761 2.0907 2.08419 2.07758 2.07112 2.06481 2.05843 2.05242 2.0462 2.04049 2.03457 2.02915 2.02373 2.01861 2.01389 2.00922 2.00533 2.00146 1.99856 1.99593 1.99427 1.99349 1.99368 1.99426 1.99485 1.99617 1.99896 2.00247 2.00723 2.00836 2.35146 2.32063 2.29584 2.28052 2.26512 2.25763 2.252 2.24543 2.23923 2.23181 2.22481 2.21829 2.21325 2.2097 2.20732 2.2062 2.20497 2.20409 2.20426 2.20579 2.20769 2.21053 2.21247 2.21523 2.21745 2.22035 2.22307 2.22585 2.22848 2.23064 2.23292 2.23434 2.23607 2.23672 2.23775 2.23767 2.23741 2.2368 2.23549 2.23391 2.2318 2.22979 2.22731 2.22435 2.22051 2.21615 2.21141 2.20635 2.20119 2.19569 2.19024 2.18441 2.17861 2.17254 2.16638 2.1602 2.15377 2.14752 2.141 2.1346 2.12809 2.12146 2.115 2.10818 2.10174 2.09485 2.08832 2.0815 2.0749 2.06824 2.06155 2.05501 2.04831 2.0419 2.0353 2.02898 2.02266 2.01642 2.01049 2.00444 1.99892 1.99329 1.98818 1.98319 1.97856 1.97441 1.9705 1.96735 1.96449 1.96266 1.96121 1.96124 1.96157 1.96199 1.96293 1.96551 1.96827 1.97255 1.97691 1.97844 2.36285 2.33241 2.30824 2.28881 2.2779 2.26174 2.24945 2.23865 2.22655 2.21571 2.20454 2.19548 2.18728 2.18157 2.177 2.17471 2.17256 2.17154 2.16994 2.17 2.17035 2.1722 2.17446 2.17655 2.17893 2.18131 2.18375 2.18626 2.18851 2.19096 2.19292 2.19509 2.19648 2.19803 2.19866 2.1994 2.19934 2.19892 2.19799 2.1966 2.19482 2.19302 2.19096 2.18831 2.18505 2.18119 2.17705 2.1726 2.16793 2.16317 2.15819 2.1531 2.14785 2.14234 2.13685 2.13093 2.12521 2.11904 2.11306 2.10677 2.10052 2.09416 2.08768 2.08125 2.07461 2.06816 2.0616 2.05515 2.04874 2.04227 2.03601 2.02954 2.02339 2.01706 2.01094 2.00489 1.99879 1.99308 1.98714 1.98177 1.97621 1.97128 1.96628 1.96188 1.95769 1.954 1.95082 1.94811 1.94621 1.94482 1.9446 1.9449 1.94535 1.94629 1.94794 1.95125 1.95453 1.95874 1.96292 1.96425 2.38009 2.35223 2.32602 2.30483 2.28522 2.27107 2.25501 2.23925 2.22501 2.21077 2.19851 2.18657 2.17702 2.16835 2.16213 2.15703 2.15358 2.15061 2.14848 2.14691 2.14582 2.14582 2.14641 2.1481 2.14971 2.15177 2.15367 2.15594 2.15818 2.16063 2.16294 2.16501 2.1669 2.16826 2.16953 2.17012 2.17065 2.17049 2.16986 2.16886 2.16739 2.16603 2.16435 2.16222 2.15954 2.15617 2.15264 2.14854 2.14434 2.13984 2.13507 2.13031 2.12507 2.12002 2.11445 2.10904 2.10324 2.09743 2.09145 2.08526 2.07912 2.07267 2.06637 2.05979 2.0534 2.04689 2.04039 2.034 2.02746 2.02121 2.01471 2.0086 2.00221 1.99623 1.99005 1.9842 1.9783 1.97259 1.96707 1.96158 1.95652 1.95142 1.94693 1.94249 1.93877 1.9353 1.93255 1.93037 1.92892 1.92832 1.92851 1.92891 1.92963 1.93118 1.93374 1.93714 1.94093 1.9443 1.94847 1.94911 2.39472 2.37215 2.34593 2.32257 2.29953 2.27894 2.26059 2.24353 2.22772 2.21219 2.19822 2.18519 2.17392 2.16375 2.1554 2.14821 2.14268 2.13782 2.13412 2.13052 2.1283 2.12625 2.12539 2.1254 2.12617 2.12795 2.12947 2.13182 2.13362 2.13612 2.13789 2.14009 2.14157 2.14332 2.14436 2.14543 2.14587 2.14602 2.14558 2.14465 2.14357 2.14234 2.14098 2.13926 2.13681 2.13403 2.13065 2.12706 2.12307 2.1188 2.11436 2.10954 2.10467 2.09944 2.09417 2.08865 2.08305 2.07731 2.07142 2.06552 2.05939 2.05333 2.04708 2.04098 2.03474 2.02858 2.02243 2.01625 2.0102 2.00407 1.9981 1.99207 1.98618 1.9803 1.9745 1.96888 1.96322 1.95796 1.95256 1.94775 1.94276 1.93845 1.93412 1.93051 1.92711 1.92444 1.92226 1.92086 1.92018 1.92034 1.92072 1.92137 1.92299 1.92496 1.92867 1.93156 1.93558 1.93797 1.94201 1.94208 2.40603 2.38688 2.36475 2.34182 2.31945 2.29717 2.27612 2.25627 2.23814 2.22142 2.20627 2.19183 2.17888 2.1669 2.15653 2.14725 2.13959 2.13284 2.12737 2.12273 2.11905 2.11584 2.11408 2.11251 2.1122 2.11229 2.11321 2.11459 2.11609 2.11792 2.11958 2.12144 2.12291 2.12467 2.12569 2.12707 2.12743 2.12818 2.1279 2.12737 2.12657 2.12554 2.1245 2.12275 2.12057 2.11775 2.11451 2.11104 2.10703 2.10302 2.09845 2.09396 2.08904 2.08412 2.07899 2.07368 2.06836 2.06268 2.05712 2.05114 2.04527 2.0392 2.0331 2.02703 2.02075 2.01471 2.00834 2.00231 1.99602 1.98997 1.98388 1.97782 1.97198 1.96599 1.96039 1.95461 1.9493 1.94387 1.93898 1.93404 1.92971 1.9254 1.92185 1.91846 1.91593 1.91374 1.91246 1.91179 1.91194 1.91225 1.91293 1.91417 1.91697 1.91924 1.92312 1.92547 1.92893 1.93048 1.93364 1.93313 2.41449 2.39474 2.37333 2.35095 2.32908 2.3079 2.28765 2.2685 2.25041 2.23352 2.2176 2.2029 2.18892 2.17603 2.16399 2.15319 2.14348 2.13503 2.12762 2.12119 2.11581 2.1115 2.10793 2.1052 2.10355 2.10229 2.10193 2.10202 2.10279 2.10388 2.10518 2.10642 2.10765 2.10868 2.10963 2.11022 2.11066 2.11068 2.11022 2.10961 2.10842 2.10737 2.10606 2.10428 2.10216 2.09929 2.0964 2.09281 2.08921 2.08501 2.08073 2.07606 2.07126 2.06631 2.06115 2.05601 2.05061 2.04525 2.03968 2.03409 2.02847 2.02273 2.01707 2.01121 2.00548 1.99954 1.99374 1.98784 1.982 1.97625 1.97043 1.96491 1.95921 1.95393 1.94843 1.94341 1.93822 1.93356 1.9288 1.92459 1.92042 1.91691 1.91367 1.91111 1.90912 1.90783 1.90737 1.90757 1.90797 1.9087 1.91066 1.91246 1.91601 1.9186 1.92196 1.92396 1.92647 1.92748 1.92975 1.92866 2.42542 2.40465 2.38275 2.36074 2.3393 2.31882 2.29945 2.28106 2.26372 2.2472 2.23141 2.21637 2.20191 2.18815 2.17502 2.16281 2.15147 2.14129 2.13196 2.12381 2.11638 2.11018 2.10478 2.10048 2.09674 2.09414 2.09191 2.09066 2.08963 2.08939 2.08948 2.08992 2.09042 2.09087 2.09119 2.09133 2.09133 2.09109 2.09052 2.08972 2.08853 2.08757 2.0861 2.08464 2.08231 2.07992 2.07694 2.07383 2.07032 2.06652 2.06252 2.05816 2.05377 2.04901 2.04428 2.03926 2.03415 2.02892 2.02344 2.01811 2.01245 2.00707 2.00136 1.99587 1.9902 1.98454 1.97893 1.97313 1.96759 1.96176 1.95635 1.95061 1.94541 1.93992 1.93499 1.92989 1.92532 1.92076 1.91666 1.91274 1.90933 1.90636 1.90389 1.90213 1.90091 1.90061 1.90088 1.90123 1.90216 1.9037 1.90656 1.90925 1.91263 1.91504 1.91758 1.91895 1.92044 1.92092 1.92238 1.92073 2.43667 2.41459 2.39151 2.36839 2.34645 2.3257 2.30673 2.2886 2.27177 2.25534 2.23971 2.22426 2.20948 2.1949 2.18096 2.1675 2.1549 2.14314 2.13241 2.12262 2.1139 2.10601 2.09886 2.09266 2.08715 2.08272 2.07898 2.07647 2.07436 2.07322 2.07226 2.07196 2.07206 2.07232 2.07263 2.07301 2.0732 2.07315 2.07295 2.07244 2.07193 2.07111 2.07034 2.06904 2.0674 2.06541 2.06306 2.06047 2.05739 2.05413 2.05035 2.04642 2.04212 2.03765 2.033 2.02812 2.02319 2.01796 2.01275 2.00734 2.00189 1.99638 1.99072 1.98518 1.97939 1.97384 1.96801 1.96249 1.95671 1.95129 1.94564 1.94039 1.93498 1.93 1.92495 1.92038 1.91586 1.91179 1.90794 1.90453 1.90166 1.89924 1.89758 1.89643 1.89625 1.89649 1.89689 1.8978 1.8999 1.90237 1.90569 1.90844 1.91136 1.91331 1.91517 1.91592 1.91689 1.91704 1.91807 1.91627 2.44618 2.42527 2.40288 2.38058 2.3589 2.33813 2.31869 2.30019 2.28261 2.26558 2.24903 2.23279 2.2169 2.20151 2.18652 2.17237 2.15873 2.14611 2.13432 2.12345 2.11345 2.10436 2.09621 2.08902 2.08279 2.07754 2.07312 2.06961 2.0669 2.06495 2.06352 2.06277 2.06224 2.06227 2.0624 2.06272 2.06297 2.06313 2.06302 2.06275 2.06218 2.06162 2.0608 2.05959 2.05802 2.05599 2.05375 2.05101 2.04802 2.04463 2.04094 2.03702 2.03278 2.02845 2.02377 2.01907 2.01405 2.009 2.00383 1.99853 1.99327 1.98778 1.98245 1.97686 1.97148 1.96587 1.96046 1.95491 1.94955 1.94413 1.93891 1.93369 1.92874 1.92385 1.91927 1.91491 1.91084 1.90714 1.90376 1.90103 1.89865 1.8972 1.89605 1.89607 1.89629 1.89676 1.898 1.89991 1.90287 1.90602 1.90888 1.91175 1.91355 1.9155 1.916 1.91685 1.91678 1.91672 1.91687 1.91523 2.44791 2.42892 2.40962 2.39012 2.37097 2.35177 2.33329 2.31486 2.29727 2.27962 2.26269 2.24577 2.22948 2.21352 2.19802 2.18314 2.16871 2.15509 2.14216 2.13011 2.1189 2.10868 2.09923 2.09097 2.08346 2.07697 2.07109 2.06636 2.06229 2.05903 2.05646 2.05417 2.05277 2.05161 2.0509 2.05038 2.05005 2.0498 2.04932 2.04871 2.04779 2.04693 2.04571 2.04424 2.0423 2.04013 2.03767 2.03486 2.03184 2.02842 2.02487 2.02095 2.01692 2.01263 2.00814 2.00355 1.99873 1.99399 1.98905 1.98423 1.97931 1.97442 1.96959 1.96466 1.95988 1.95492 1.95015 1.9452 1.94045 1.93555 1.93092 1.9262 1.92183 1.91747 1.91356 1.90973 1.90643 1.9033 1.90095 1.89889 1.89768 1.89696 1.89707 1.89734 1.89804 1.89946 1.90216 1.90477 1.90831 1.91091 1.91388 1.9156 1.91723 1.91802 1.91816 1.918 1.91767 1.9171 1.91667 1.9149 2.44818 2.42967 2.41225 2.3951 2.37824 2.3611 2.34387 2.32664 2.30918 2.29221 2.27506 2.25857 2.24203 2.22601 2.21015 2.19472 2.17963 2.16518 2.15142 2.13833 2.12618 2.11467 2.10409 2.09421 2.08502 2.07709 2.06977 2.06352 2.05753 2.05265 2.04818 2.04453 2.04161 2.03924 2.0377 2.03629 2.0354 2.03438 2.03359 2.03258 2.03154 2.03032 2.02894 2.02726 2.02522 2.02303 2.02054 2.01788 2.01495 2.01179 2.00845 2.00482 2.00106 1.99702 1.99286 1.98847 1.98398 1.97942 1.97472 1.97008 1.96525 1.96063 1.95573 1.9512 1.94629 1.94187 1.93703 1.93269 1.92804 1.92382 1.91949 1.91552 1.91165 1.90811 1.90489 1.90192 1.89947 1.89736 1.89602 1.89501 1.89502 1.89538 1.89579 1.89694 1.89859 1.9018 1.90454 1.90811 1.91078 1.91347 1.91529 1.91637 1.91724 1.91704 1.9166 1.9161 1.91522 1.91376 1.91261 1.91047 2.45078 2.4321 2.41539 2.39954 2.38408 2.36826 2.35199 2.3352 2.3181 2.30085 2.28376 2.26667 2.24996 2.23335 2.21717 2.20134 2.18598 2.17111 2.15695 2.14324 2.1304 2.11786 2.10639 2.09515 2.08501 2.07519 2.06612 2.05783 2.05034 2.04416 2.03849 2.034 2.02971 2.02645 2.02372 2.02146 2.01975 2.01805 2.01682 2.01536 2.01411 2.01267 2.01119 2.00958 2.0077 2.00577 2.00351 2.00116 1.99856 1.99568 1.99272 1.98931 1.98597 1.98207 1.97826 1.974 1.96976 1.9653 1.96069 1.95614 1.95132 1.94675 1.94188 1.93733 1.93255 1.92806 1.92346 1.91912 1.91477 1.91071 1.90675 1.90318 1.89979 1.89693 1.89429 1.89217 1.89058 1.88953 1.88927 1.8895 1.89023 1.89091 1.89262 1.89466 1.89809 1.90103 1.90441 1.90712 1.90951 1.91131 1.91221 1.91273 1.91234 1.91188 1.9109 1.90967 1.90803 1.9057 1.90415 1.90169 2.45969 2.43842 2.42124 2.40527 2.38978 2.3744 2.3589 2.34298 2.3268 2.31015 2.29344 2.27652 2.25973 2.24305 2.22659 2.21059 2.19468 2.17946 2.16433 2.14996 2.13583 2.12233 2.1094 2.09701 2.08545 2.07441 2.0644 2.05498 2.04641 2.03845 2.03136 2.02528 2.01987 2.01527 2.01145 2.00837 2.00568 2.00342 2.00162 1.99982 1.99854 1.99706 1.99586 1.99444 1.99293 1.99132 1.98929 1.98727 1.98469 1.98212 1.97911 1.97589 1.97253 1.96867 1.96501 1.96069 1.95676 1.95217 1.94798 1.94324 1.93888 1.93409 1.9297 1.92494 1.92061 1.91599 1.91179 1.90743 1.90347 1.89954 1.89594 1.89267 1.88967 1.88724 1.88497 1.88363 1.88255 1.88256 1.88286 1.88362 1.88443 1.88676 1.88908 1.89259 1.89573 1.89905 1.90184 1.90412 1.90594 1.90678 1.90722 1.90686 1.90618 1.90544 1.90417 1.90231 1.90021 1.8976 1.89589 1.89339 2.49192 2.46216 2.43816 2.41814 2.39986 2.3826 2.36589 2.34942 2.33316 2.31692 2.30044 2.28396 2.26726 2.25078 2.23423 2.21799 2.2019 2.18602 2.17055 2.15543 2.14074 2.12662 2.11296 2.09997 2.08759 2.07585 2.06483 2.05449 2.04489 2.0361 2.02796 2.02068 2.01399 2.0082 2.00282 1.99852 1.99498 1.99217 1.98988 1.98812 1.98672 1.98536 1.98422 1.98289 1.98165 1.98006 1.97838 1.97635 1.97405 1.97149 1.96854 1.96542 1.96191 1.95824 1.95428 1.95022 1.94591 1.94161 1.937 1.9326 1.92784 1.92343 1.91867 1.91433 1.90974 1.90554 1.90129 1.89733 1.89354 1.89001 1.88685 1.88396 1.8816 1.87944 1.8781 1.87705 1.87705 1.87729 1.87779 1.87881 1.88144 1.88421 1.88774 1.89098 1.89413 1.89708 1.8991 1.9011 1.90179 1.90251 1.90216 1.90182 1.90111 1.89997 1.8982 1.89586 1.89354 1.8907 1.88885 1.88626 2.52904 2.50267 2.47706 2.45102 2.42656 2.4031 2.38139 2.36173 2.34328 2.32556 2.30818 2.29103 2.27403 2.25718 2.24052 2.22401 2.20773 2.19157 2.17573 2.16022 2.14517 2.13052 2.11647 2.10292 2.09007 2.07773 2.06613 2.05508 2.04478 2.03518 2.02648 2.01854 2.01157 2.00537 1.99983 1.99513 1.99117 1.98776 1.98513 1.98281 1.98095 1.97936 1.97812 1.97695 1.97579 1.97455 1.97302 1.97135 1.96921 1.96693 1.96415 1.96122 1.95787 1.95438 1.95064 1.94671 1.94265 1.93836 1.93405 1.92951 1.92508 1.92042 1.91601 1.91142 1.90717 1.90284 1.89886 1.89502 1.89148 1.88833 1.88545 1.88317 1.88111 1.87981 1.879 1.87895 1.87917 1.87958 1.88091 1.88352 1.88626 1.88942 1.89257 1.89531 1.89811 1.8999 1.9017 1.90244 1.90278 1.90255 1.90207 1.90145 1.90021 1.89852 1.89633 1.89388 1.89143 1.88864 1.88669 1.88427 2.54601 2.52454 2.50389 2.48208 2.45887 2.43563 2.41281 2.39039 2.36877 2.34819 2.32853 2.30965 2.29138 2.27351 2.25587 2.23845 2.22105 2.20406 2.18718 2.17106 2.15543 2.14063 2.12641 2.11285 2.09977 2.08721 2.07529 2.06378 2.05323 2.04313 2.034 2.02546 2.01777 2.01066 2.00429 1.99836 1.99324 1.98892 1.98533 1.98241 1.98025 1.9785 1.97718 1.97602 1.97495 1.97386 1.97254 1.97111 1.96924 1.96721 1.96471 1.96201 1.95891 1.9556 1.95205 1.94825 1.9443 1.94009 1.93584 1.93135 1.92693 1.92232 1.91794 1.9134 1.90923 1.90502 1.90122 1.89761 1.89436 1.89164 1.88919 1.88743 1.88595 1.88533 1.88503 1.88524 1.88571 1.88746 1.88998 1.89288 1.89579 1.89897 1.90144 1.90406 1.90574 1.90715 1.908 1.90789 1.90754 1.90717 1.90633 1.90535 1.90348 1.9014 1.899 1.89637 1.89378 1.89091 1.88889 1.88649 2.57274 2.55101 2.53014 2.50945 2.48799 2.46608 2.44396 2.42179 2.40001 2.37872 2.35802 2.33796 2.31826 2.29908 2.2801 2.26169 2.24357 2.22607 2.20896 2.19262 2.17664 2.16146 2.14643 2.13231 2.11855 2.10581 2.09357 2.08223 2.07129 2.06096 2.05098 2.04156 2.03252 2.02427 2.01655 2.0098 2.00376 1.99893 1.9949 1.99177 1.98936 1.98742 1.986 1.98477 1.98376 1.98273 1.98159 1.98038 1.97876 1.97708 1.97481 1.97252 1.9696 1.96672 1.9632 1.95971 1.95564 1.95158 1.9471 1.94261 1.93792 1.93319 1.92856 1.92383 1.9195 1.91512 1.91131 1.90764 1.90463 1.90188 1.89988 1.89817 1.89735 1.89664 1.89672 1.89748 1.89937 1.90168 1.90463 1.90723 1.91031 1.91264 1.91494 1.91665 1.9176 1.91845 1.91817 1.91771 1.91697 1.91632 1.91487 1.91338 1.91104 1.90882 1.90623 1.90358 1.9009 1.89808 1.89599 1.89373 2.587 2.56768 2.54859 2.52909 2.50947 2.48943 2.46943 2.44918 2.42902 2.40882 2.3889 2.36897 2.34963 2.33047 2.31195 2.29368 2.27601 2.25858 2.24169 2.22523 2.20934 2.19414 2.17947 2.16541 2.15175 2.13842 2.12537 2.1125 2.10014 2.08793 2.07655 2.06576 2.05594 2.04693 2.03851 2.03123 2.02435 2.01859 2.01324 2.0088 2.0049 2.00167 1.99915 1.99689 1.99541 1.99379 1.99287 1.99145 1.99056 1.98907 1.98775 1.98593 1.984 1.98166 1.97905 1.97609 1.97274 1.96929 1.96535 1.96157 1.95727 1.95321 1.94889 1.9446 1.94071 1.93635 1.93323 1.92927 1.92712 1.92416 1.92292 1.92101 1.92055 1.91995 1.92079 1.92225 1.92382 1.92611 1.92804 1.93028 1.93207 1.9336 1.93474 1.93524 1.93538 1.9349 1.93382 1.93314 1.93176 1.93066 1.92836 1.92648 1.92375 1.92137 1.91852 1.91574 1.91288 1.90997 1.90779 1.90548 2.59744 2.57802 2.55925 2.54094 2.52323 2.50551 2.48715 2.46854 2.44929 2.43014 2.41109 2.39244 2.37413 2.35636 2.33872 2.32161 2.30461 2.28802 2.27166 2.25561 2.23976 2.22432 2.20892 2.19391 2.17898 2.16456 2.15042 2.13688 2.12379 2.11121 2.09934 2.08738 2.07631 2.06532 2.0555 2.04602 2.03737 2.02954 2.02266 2.01703 2.01223 2.00868 2.0057 2.0036 2.00194 2.00067 1.99976 1.99878 1.99807 1.99696 1.99614 1.99465 1.99343 1.99144 1.98965 1.98725 1.98483 1.98224 1.97915 1.9765 1.97274 1.97001 1.96592 1.96322 1.9593 1.95693 1.95357 1.9518 1.94928 1.94804 1.94649 1.94551 1.94571 1.94648 1.94797 1.94911 1.9511 1.95249 1.95412 1.95523 1.95602 1.9564 1.95621 1.9558 1.95443 1.95332 1.95154 1.95047 1.94834 1.94669 1.94401 1.9418 1.9391 1.9365 1.93376 1.93088 1.92812 1.92519 1.92303 1.9208 2.61579 2.59905 2.58265 2.56524 2.54684 2.52743 2.50752 2.48766 2.46809 2.44882 2.43011 2.41166 2.39371 2.37614 2.35888 2.34201 2.32534 2.30879 2.29242 2.27603 2.2599 2.24404 2.22851 2.2133 2.19844 2.1837 2.16913 2.15458 2.14008 2.12573 2.11176 2.0982 2.08577 2.07383 2.06362 2.054 2.04616 2.03897 2.03286 2.02744 2.0226 2.0183 2.01451 2.01128 2.00848 2.00633 2.00433 2.00298 2.00149 2.00052 1.99934 1.99829 1.99704 1.99563 1.99409 1.99251 1.99059 1.98879 1.98646 1.98438 1.98175 1.97948 1.97672 1.97453 1.97193 1.97023 1.96807 1.96717 1.96535 1.96491 1.96421 1.96494 1.9658 1.96752 1.96887 1.97109 1.97259 1.97453 1.97588 1.97688 1.97756 1.97746 1.97718 1.9761 1.97493 1.9736 1.97202 1.97091 1.96863 1.96695 1.96413 1.96223 1.9592 1.95689 1.95377 1.95106 1.94799 1.94501 1.94268 1.94022 2.62654 2.61153 2.59707 2.58134 2.56426 2.54656 2.52824 2.50981 2.49148 2.47329 2.45564 2.43827 2.4214 2.40457 2.38781 2.37087 2.35405 2.33717 2.32073 2.30449 2.28858 2.27292 2.25719 2.24135 2.22527 2.20893 2.19262 2.17651 2.16083 2.14612 2.13212 2.11934 2.10741 2.09648 2.08619 2.07655 2.06732 2.05842 2.0499 2.04212 2.03467 2.02826 2.02235 2.01755 2.01327 2.00986 2.00699 2.00481 2.00303 2.00174 2.00058 1.99976 1.99896 1.99851 1.9978 1.99729 1.99628 1.99542 1.99396 1.9927 1.99084 1.98923 1.98725 1.98548 1.98353 1.98191 1.97978 1.97875 1.97692 1.97704 1.97736 1.97823 1.97939 1.98097 1.98331 1.98484 1.9873 1.98859 1.9902 1.99136 1.99175 1.99254 1.99229 1.99169 1.99118 1.99048 1.98984 1.98839 1.98713 1.98505 1.98282 1.98075 1.9778 1.97577 1.97231 1.97032 1.96664 1.96479 1.96199 1.96093 2.63306 2.61736 2.60331 2.58838 2.57245 2.55558 2.53829 2.52096 2.504 2.48755 2.47134 2.45521 2.43883 2.42253 2.40625 2.39028 2.37473 2.3593 2.34398 2.32832 2.31197 2.29516 2.27768 2.26 2.24239 2.22509 2.20858 2.19275 2.1778 2.1636 2.14997 2.13685 2.12406 2.11167 2.09956 2.08795 2.07678 2.06635 2.05649 2.04746 2.03917 2.03193 2.02524 2.01942 2.01421 2.00994 2.00628 2.00341 2.0013 1.99991 1.99904 1.99884 1.99888 1.99904 1.99918 1.99914 1.99899 1.99853 1.9979 1.99652 1.99547 1.99397 1.99306 1.99167 1.99069 1.99005 1.98948 1.98982 1.99061 1.99205 1.99417 1.99614 1.99915 2.0019 2.00493 2.0082 2.01064 2.01351 2.01532 2.01696 2.01808 2.01852 2.01825 2.01757 2.01708 2.01599 2.01502 2.01283 2.01137 2.00841 2.00668 2.00342 2.00149 1.99823 1.99607 1.99324 1.99078 1.98879 1.98667 1.98607 2.64538 2.62938 2.61545 2.60094 2.58554 2.56947 2.55314 2.53677 2.52035 2.50371 2.48725 2.47105 2.4552 2.43981 2.42467 2.40957 2.39401 2.37793 2.36094 2.34336 2.32506 2.30694 2.28874 2.27125 2.25429 2.23786 2.22206 2.2065 2.19131 2.17631 2.16154 2.14714 2.13312 2.11952 2.10661 2.09427 2.08262 2.07158 2.06123 2.05153 2.04252 2.03408 2.02637 2.01932 2.01321 2.00799 2.00372 2.00047 1.99828 1.99693 1.99635 1.99641 1.99668 1.99724 1.99763 1.99773 1.99769 1.9975 1.99696 1.99624 1.99541 1.99496 1.99504 1.99531 1.99601 1.9974 1.99959 2.00198 2.00598 2.00924 2.01408 2.01823 2.02265 2.02717 2.03077 2.03443 2.03733 2.03934 2.04131 2.04194 2.04263 2.04225 2.04143 2.04064 2.03967 2.03819 2.03703 2.03457 2.03305 2.03022 2.02858 2.02566 2.02411 2.02111 2.01954 2.01639 2.01478 2.01158 2.01026 2.00757 2.64907 2.63462 2.62223 2.60882 2.59412 2.57867 2.56253 2.54629 2.53016 2.51414 2.49858 2.48353 2.46875 2.45426 2.43932 2.42381 2.40728 2.39014 2.37227 2.35451 2.33655 2.31922 2.30198 2.28523 2.26863 2.252 2.23572 2.21933 2.20325 2.18746 2.17191 2.157 2.1424 2.12851 2.11508 2.10232 2.09003 2.07834 2.06726 2.05665 2.04667 2.03706 2.0286 2.02068 2.014 2.00837 2.00393 2.00084 1.99846 1.99703 1.99626 1.99593 1.99596 1.99611 1.99617 1.99603 1.9957 1.99576 1.99589 1.99624 1.99671 1.99766 1.99927 2.00133 2.00429 2.00735 2.01147 2.01565 2.02051 2.02583 2.03064 2.03637 2.04079 2.04568 2.04952 2.05271 2.05555 2.05715 2.05861 2.05919 2.05917 2.0586 2.05751 2.05668 2.05527 2.05428 2.05231 2.05095 2.04896 2.04724 2.04558 2.04324 2.04183 2.03884 2.03709 2.03332 2.03113 2.02655 2.02442 2.01951 2.6575 2.64289 2.62966 2.6152 2.59949 2.58327 2.56666 2.55001 2.53377 2.51808 2.50305 2.48866 2.47404 2.45915 2.44362 2.4274 2.41081 2.39399 2.37717 2.36043 2.34374 2.32699 2.31017 2.29312 2.27623 2.25907 2.24237 2.22556 2.20935 2.19339 2.17781 2.16283 2.14819 2.13409 2.12053 2.10724 2.09463 2.08235 2.07063 2.05911 2.04848 2.03832 2.0293 2.02117 2.01436 2.00841 2.00364 1.99986 1.99672 1.99456 1.99275 1.99155 1.99093 1.99058 1.99005 1.9901 1.99056 1.99123 1.99256 1.99414 1.99629 1.99868 2.00166 2.00515 2.00914 2.01374 2.01866 2.02418 2.02974 2.03554 2.04124 2.04656 2.05157 2.05595 2.05978 2.06262 2.0654 2.06667 2.0681 2.0687 2.06871 2.06831 2.06777 2.06733 2.06673 2.06604 2.06479 2.064 2.06241 2.06139 2.05925 2.05771 2.05485 2.05208 2.04876 2.0444 2.04085 2.03519 2.03246 2.02675 2.66316 2.64975 2.6375 2.624 2.6088 2.59244 2.57565 2.5586 2.54211 2.52596 2.51005 2.49434 2.4784 2.46227 2.44616 2.4296 2.41324 2.39666 2.38027 2.36368 2.34705 2.33007 2.31317 2.29599 2.27928 2.26236 2.24613 2.22973 2.21395 2.19819 2.18292 2.16793 2.15339 2.13907 2.1254 2.11162 2.09859 2.08548 2.07303 2.06094 2.04951 2.03896 2.02936 2.02088 2.01336 2.0068 2.00108 1.99626 1.99214 1.98895 1.98627 1.98445 1.98348 1.9831 1.98285 1.98314 1.98419 1.98556 1.9879 1.99023 1.99335 1.99693 2.00099 2.00556 2.01051 2.01607 2.02179 2.02806 2.03407 2.04036 2.04619 2.05158 2.05673 2.06069 2.06465 2.06716 2.06984 2.071 2.07252 2.07302 2.07334 2.07334 2.07341 2.07357 2.07375 2.07359 2.07319 2.07244 2.07124 2.07003 2.06785 2.06588 2.06268 2.0597 2.05562 2.05161 2.04739 2.04282 2.03981 2.0357 2.66048 2.64764 2.63611 2.62314 2.60842 2.5923 2.57596 2.55902 2.54278 2.52665 2.51099 2.49566 2.48048 2.46536 2.45029 2.43481 2.41918 2.4029 2.38626 2.36905 2.35178 2.33433 2.31722 2.30018 2.28351 2.26688 2.2507 2.23442 2.21889 2.20314 2.18834 2.17325 2.15906 2.14455 2.13078 2.11672 2.10329 2.08982 2.07698 2.06486 2.05329 2.04282 2.0326 2.02341 2.01471 2.00699 1.99998 1.99388 1.98857 1.98425 1.9809 1.97859 1.97759 1.97762 1.97774 1.97835 1.97973 1.98254 1.98502 1.98888 1.99221 1.99679 2.00115 2.00653 2.01202 2.01817 2.0245 2.03115 2.03765 2.04419 2.05017 2.05582 2.06088 2.06501 2.069 2.07152 2.07434 2.07569 2.07744 2.07805 2.07884 2.07917 2.07945 2.08014 2.08027 2.08007 2.07951 2.07849 2.07719 2.07526 2.07296 2.07024 2.06704 2.06354 2.05975 2.05579 2.05194 2.04793 2.04523 2.04194 2.66937 2.65512 2.64259 2.62842 2.61292 2.59556 2.5782 2.56034 2.54349 2.52741 2.5122 2.49833 2.48432 2.47058 2.45566 2.44 2.42336 2.40601 2.38825 2.37027 2.35251 2.33469 2.31737 2.30015 2.28324 2.26668 2.2505 2.23452 2.21933 2.20388 2.18955 2.17459 2.16082 2.14628 2.13268 2.11866 2.10523 2.09202 2.0792 2.0672 2.0553 2.04424 2.0334 2.02313 2.01358 2.0046 1.99662 1.98952 1.98342 1.97859 1.97515 1.97257 1.97233 1.97265 1.97336 1.97431 1.97654 1.97985 1.9832 1.98741 1.99166 1.9966 2.00186 2.00757 2.01382 2.0203 2.02717 2.03393 2.04083 2.04733 2.05361 2.05935 2.06445 2.06904 2.07302 2.07613 2.07931 2.08124 2.08344 2.0848 2.086 2.08653 2.08753 2.08787 2.08769 2.0872 2.08592 2.08471 2.0826 2.08014 2.07751 2.07422 2.07102 2.06711 2.06363 2.05934 2.05587 2.05161 2.04915 2.04559 2.66717 2.65397 2.64155 2.62647 2.61096 2.59419 2.57853 2.5628 2.54808 2.53391 2.51969 2.50563 2.49017 2.47465 2.45809 2.44146 2.42416 2.40688 2.38924 2.37161 2.35408 2.33628 2.31911 2.30164 2.28482 2.26809 2.25191 2.23583 2.22049 2.20501 2.19059 2.17566 2.16203 2.1477 2.13455 2.12106 2.10831 2.09584 2.08322 2.07104 2.05837 2.04638 2.03463 2.02336 2.01295 2.00321 1.9944 1.98699 1.98057 1.97563 1.97209 1.96966 1.96927 1.96964 1.97045 1.97123 1.97341 1.97668 1.98059 1.98501 1.99001 1.99542 2.00132 2.00753 2.0141 2.02079 2.02776 2.03456 2.04142 2.04788 2.05422 2.05996 2.0656 2.07055 2.07532 2.07956 2.08323 2.08656 2.08926 2.09133 2.09275 2.09393 2.09443 2.09434 2.09372 2.09278 2.09057 2.08898 2.08575 2.08326 2.07999 2.07638 2.07326 2.06908 2.06597 2.06135 2.05837 2.05367 2.05147 2.04743 2.67139 2.65698 2.64272 2.62658 2.61115 2.59562 2.58201 2.56837 2.55452 2.53983 2.52385 2.50781 2.49063 2.47396 2.45675 2.44005 2.42302 2.40617 2.38879 2.37136 2.35375 2.33568 2.31825 2.30047 2.28352 2.26663 2.25058 2.23474 2.21991 2.20505 2.1914 2.17734 2.16479 2.15149 2.1391 2.12608 2.11283 2.09962 2.08559 2.07234 2.05864 2.04552 2.03285 2.02069 2.00967 1.99979 1.99083 1.98351 1.97713 1.97216 1.96847 1.966 1.96518 1.96547 1.96617 1.9668 1.96875 1.9724 1.9767 1.98181 1.98765 1.99377 2.00065 2.00734 2.01463 2.02142 2.02849 2.03512 2.04176 2.048 2.05419 2.05995 2.06573 2.07105 2.07626 2.08115 2.08528 2.08956 2.09233 2.09518 2.09671 2.09798 2.09829 2.09812 2.09727 2.0962 2.09373 2.0921 2.08871 2.0867 2.08304 2.08014 2.07723 2.07287 2.07041 2.06539 2.06273 2.05749 2.05522 2.05039 2.67023 2.65507 2.64123 2.62707 2.61444 2.60235 2.59064 2.57742 2.56233 2.5459 2.52773 2.50987 2.4916 2.47449 2.45757 2.44109 2.42412 2.40687 2.38881 2.37056 2.35207 2.33335 2.31507 2.29659 2.27896 2.26172 2.24586 2.23085 2.21756 2.20481 2.19351 2.18153 2.17029 2.15749 2.14474 2.13095 2.11638 2.1019 2.08632 2.07165 2.05678 2.04286 2.03003 2.01787 2.00706 1.99725 1.9885 1.98101 1.97467 1.96926 1.96528 1.96233 1.96097 1.96107 1.96144 1.96182 1.9636 1.96716 1.97181 1.97752 1.98391 1.991 1.99848 2.00603 2.0138 2.02102 2.02824 2.03493 2.04123 2.04755 2.05322 2.0592 2.06461 2.07037 2.07537 2.08089 2.08505 2.08979 2.09275 2.09597 2.09755 2.09914 2.09977 2.09966 2.09902 2.09815 2.09615 2.09477 2.09188 2.0902 2.08693 2.08449 2.08183 2.07758 2.07525 2.07022 2.06744 2.06186 2.0594 2.05389 2.67133 2.653 2.63796 2.62526 2.61377 2.60327 2.59132 2.57793 2.56217 2.5455 2.52735 2.51015 2.49303 2.4771 2.46129 2.44548 2.42882 2.41196 2.39411 2.37647 2.35817 2.33983 2.3213 2.30277 2.28474 2.26743 2.25132 2.23625 2.22261 2.20933 2.19719 2.18424 2.17201 2.15831 2.14484 2.13045 2.11571 2.10146 2.08656 2.073 2.05935 2.04657 2.03478 2.02336 2.01313 2.00353 1.99486 1.98674 1.98005 1.97357 1.96882 1.96472 1.96266 1.96163 1.96162 1.96158 1.96295 1.96615 1.97094 1.97677 1.98341 1.99077 1.99828 2.00602 2.01364 2.02075 2.02781 2.03406 2.04035 2.04621 2.05206 2.05785 2.06379 2.06952 2.07546 2.08094 2.08609 2.09085 2.09447 2.09745 2.0995 2.1008 2.10099 2.10075 2.09973 2.09855 2.09594 2.09429 2.0909 2.08904 2.08539 2.08282 2.07977 2.07534 2.07282 2.06744 2.06454 2.0587 2.05612 2.05027 2.67392 2.65259 2.63625 2.62383 2.61258 2.6021 2.58951 2.57561 2.55942 2.5428 2.52512 2.50878 2.49265 2.47733 2.46208 2.44651 2.43038 2.41401 2.39675 2.37947 2.36117 2.34269 2.32375 2.30506 2.28693 2.2698 2.25394 2.2391 2.22548 2.21201 2.1993 2.18568 2.17258 2.15813 2.1441 2.12948 2.11488 2.10117 2.087 2.07456 2.06199 2.05052 2.03973 2.02941 2.01959 2.01056 2.00178 1.99349 1.98649 1.97934 1.97415 1.9693 1.9668 1.9651 1.96482 1.96411 1.96528 1.96817 1.97267 1.97842 1.98485 1.99215 1.99949 2.00716 2.01457 2.02159 2.02832 2.03451 2.04048 2.04632 2.05198 2.058 2.0639 2.07025 2.07639 2.08236 2.08818 2.09288 2.09691 2.09996 2.10177 2.10247 2.10241 2.10186 2.10009 2.09838 2.09486 2.09278 2.08864 2.08645 2.08226 2.0796 2.07598 2.07173 2.069 2.0635 2.06068 2.055 2.0525 2.04697 2.44289 2.7443 3.00017 3.27268 3.23119 3.20429 3.19165 3.18768 3.18091 3.17292 3.16426 3.16005 3.15911 3.15848 3.15838 3.15943 3.16296 3.16755 3.17344 3.17971 3.18626 3.19129 3.19661 3.2006 3.20288 3.20381 3.20412 3.20209 3.19951 3.19403 3.18852 3.18207 3.17638 3.17153 3.16565 3.15711 3.1506 3.13961 3.13226 3.12237 3.11433 3.10332 3.09375 3.08149 3.07163 3.05909 3.04707 3.03482 3.02382 3.01082 3.00008 2.98687 2.97556 2.96255 2.95092 2.93819 2.92602 2.91362 2.90136 2.88871 2.87665 2.86383 2.85205 2.83939 2.82774 2.81531 2.80378 2.79154 2.7802 2.76818 2.75702 2.7453 2.73425 2.72291 2.71193 2.70102 2.69026 2.67974 2.66936 2.65922 2.6493 2.63957 2.63027 2.62094 2.61238 2.60375 2.59585 2.5884 2.58139 2.57528 2.56999 2.5654 2.56259 2.56064 2.56009 2.55991 2.56009 2.56104 2.56432 2.56208 2.34231 2.51426 2.68822 3.02582 3.20126 3.28158 3.44261 3.52833 3.50943 3.50626 3.50225 3.50317 3.50347 3.49881 3.49059 3.48335 3.47053 3.45509 3.43578 3.41691 3.39787 3.37946 3.36806 3.35219 3.33559 3.31327 3.29531 3.26987 3.2498 3.22741 3.2029 3.18461 3.15987 3.14152 3.11658 3.09831 3.07577 3.05643 3.03488 3.01729 2.99742 2.98017 2.96223 2.94384 2.92613 2.90846 2.89193 2.87547 2.85965 2.84407 2.82839 2.81362 2.79826 2.78414 2.76936 2.75533 2.74136 2.72747 2.71413 2.70066 2.68781 2.67488 2.66251 2.6501 2.63814 2.62616 2.6146 2.60301 2.59176 2.58059 2.56959 2.55892 2.54819 2.53801 2.52762 2.51789 2.50792 2.49856 2.48907 2.48 2.47107 2.4623 2.45394 2.44575 2.43789 2.43059 2.42343 2.41706 2.41111 2.40577 2.40146 2.39773 2.3954 2.39423 2.39406 2.39415 2.39442 2.39546 2.39885 2.3966 2.32358 2.35837 2.45801 2.55415 2.7293 2.89944 3.05365 3.25323 3.36934 3.44294 3.4787 3.52214 3.54468 3.56832 3.57137 3.56379 3.54696 3.51864 3.4828 3.44759 3.40948 3.37109 3.33246 3.28882 3.24753 3.20296 3.16179 3.11584 3.07553 3.03342 2.99568 2.95831 2.92371 2.89043 2.85948 2.82953 2.80154 2.77503 2.75035 2.72761 2.706 2.68702 2.66761 2.65024 2.63145 2.61608 2.59903 2.58515 2.5693 2.55617 2.54148 2.52883 2.51517 2.50305 2.49017 2.47881 2.4666 2.45585 2.4443 2.43411 2.42311 2.41338 2.40293 2.39351 2.38358 2.37439 2.36491 2.35596 2.34682 2.33818 2.32932 2.32105 2.31245 2.30444 2.29618 2.28832 2.28046 2.27273 2.26526 2.2578 2.25066 2.24364 2.23682 2.23035 2.22398 2.21802 2.21246 2.20707 2.20257 2.19827 2.19486 2.19235 2.19052 2.19037 2.19056 2.19105 2.19167 2.19316 2.1974 2.196 2.32608 2.29737 2.33131 2.36648 2.43801 2.52173 2.61752 2.70974 2.81424 2.91104 2.98576 3.0389 3.08334 3.1036 3.11762 3.11633 3.11007 3.09636 3.07436 3.04742 3.01237 2.97572 2.93446 2.89442 2.85311 2.81452 2.77671 2.74166 2.70912 2.67854 2.65118 2.62499 2.60224 2.58066 2.56196 2.54522 2.5302 2.51655 2.50376 2.49238 2.48136 2.47193 2.46213 2.45289 2.44283 2.4338 2.42449 2.41597 2.40699 2.3986 2.38975 2.38144 2.37265 2.36441 2.35571 2.34755 2.33899 2.33091 2.3225 2.31446 2.3062 2.29815 2.29003 2.28197 2.27394 2.26594 2.25794 2.25009 2.24212 2.23438 2.22655 2.21884 2.21126 2.20357 2.19626 2.18873 2.18155 2.17438 2.16716 2.16038 2.15332 2.14679 2.14022 2.13384 2.128 2.12203 2.11687 2.11182 2.1073 2.10365 2.1002 2.09821 2.0967 2.09681 2.09718 2.09797 2.09904 2.10097 2.10607 2.10599 2.3333 2.29815 2.28105 2.2947 2.31741 2.35535 2.39709 2.44333 2.48518 2.52455 2.55619 2.58403 2.60196 2.61616 2.6191 2.61679 2.61102 2.60149 2.59056 2.57557 2.55987 2.54358 2.52765 2.51261 2.49889 2.48628 2.47495 2.46475 2.45569 2.44761 2.44047 2.43397 2.42814 2.42279 2.41772 2.4131 2.40825 2.40387 2.39869 2.39414 2.38881 2.38449 2.37912 2.37394 2.36745 2.36133 2.35473 2.34857 2.34182 2.33547 2.3284 2.3218 2.31451 2.30766 2.30031 2.29326 2.28601 2.27881 2.27168 2.2644 2.25728 2.24998 2.24277 2.23547 2.22814 2.22081 2.21348 2.20604 2.19882 2.19132 2.18418 2.17675 2.1695 2.16224 2.15478 2.14771 2.14025 2.13334 2.12615 2.1194 2.11265 2.10603 2.09985 2.09351 2.08782 2.08222 2.07694 2.07243 2.06791 2.06458 2.06149 2.05957 2.05868 2.05889 2.05952 2.0601 2.06198 2.0644 2.06951 2.07052 2.34076 2.29968 2.28164 2.26896 2.2754 2.28787 2.30345 2.32086 2.33594 2.34876 2.35941 2.36687 2.37391 2.37799 2.37979 2.37862 2.37595 2.3742 2.37259 2.36922 2.3661 2.36215 2.35892 2.35607 2.3541 2.35251 2.35133 2.35055 2.34994 2.34965 2.34926 2.34898 2.34836 2.34783 2.34666 2.34573 2.34368 2.34214 2.33894 2.33659 2.33266 2.32997 2.32592 2.32211 2.31684 2.31161 2.30603 2.3004 2.29474 2.28876 2.28285 2.27652 2.27025 2.26363 2.25701 2.25024 2.24337 2.23652 2.22951 2.22255 2.21552 2.20841 2.20143 2.19422 2.18728 2.18007 2.17309 2.16605 2.15897 2.15217 2.14504 2.13836 2.13129 2.1246 2.11782 2.11109 2.1046 2.09788 2.09159 2.08512 2.07895 2.07297 2.06696 2.06157 2.05598 2.05115 2.04637 2.04218 2.03853 2.03531 2.03313 2.0314 2.03139 2.03167 2.03235 2.03328 2.03567 2.03882 2.04353 2.0449 2.34728 2.3093 2.2835 2.27026 2.2619 2.26364 2.26508 2.26767 2.26884 2.26933 2.26807 2.26682 2.26611 2.26617 2.26617 2.26575 2.26486 2.264 2.26496 2.26612 2.26736 2.26821 2.2697 2.27083 2.27277 2.2742 2.27638 2.27798 2.28006 2.28133 2.28279 2.28359 2.28403 2.28394 2.28357 2.28287 2.28134 2.27991 2.27733 2.275 2.2719 2.26947 2.2662 2.2629 2.25838 2.2538 2.24868 2.24369 2.23835 2.23314 2.22758 2.22208 2.21622 2.2103 2.20423 2.19791 2.19173 2.18519 2.17886 2.17223 2.16566 2.15898 2.15219 2.14545 2.13858 2.13174 2.12497 2.11796 2.11128 2.10421 2.09761 2.09071 2.0842 2.07759 2.07113 2.06481 2.05844 2.05242 2.0462 2.04049 2.03457 2.02915 2.02373 2.01861 2.01389 2.00922 2.00533 2.00146 1.99855 1.99593 1.99427 1.99348 1.99367 1.99425 1.99485 1.99616 1.99895 2.00246 2.00723 2.00835 2.35146 2.32063 2.29584 2.28052 2.26513 2.25764 2.25201 2.24544 2.23924 2.23181 2.22482 2.21829 2.21325 2.2097 2.20731 2.2062 2.20497 2.20409 2.20425 2.20579 2.20769 2.21053 2.21247 2.21524 2.21745 2.22036 2.22307 2.22585 2.22849 2.23064 2.23292 2.23434 2.23608 2.23672 2.23776 2.23767 2.23741 2.2368 2.23549 2.23392 2.2318 2.2298 2.22732 2.22436 2.22051 2.21616 2.21142 2.20635 2.20119 2.19569 2.19024 2.18441 2.17861 2.17254 2.16638 2.1602 2.15378 2.14753 2.141 2.1346 2.12809 2.12146 2.11501 2.10819 2.10175 2.09486 2.08833 2.0815 2.07491 2.06824 2.06155 2.05502 2.04831 2.0419 2.0353 2.02898 2.02266 2.01642 2.01049 2.00444 1.99892 1.99328 1.98818 1.98319 1.97856 1.97441 1.9705 1.96735 1.96448 1.96266 1.96121 1.96124 1.96156 1.96198 1.96292 1.96551 1.96826 1.97255 1.97691 1.97843 2.36284 2.3324 2.30823 2.28882 2.27791 2.26175 2.24946 2.23866 2.22656 2.21572 2.20455 2.19548 2.18728 2.18157 2.17699 2.1747 2.17255 2.17153 2.16994 2.16999 2.17035 2.1722 2.17446 2.17655 2.17893 2.18131 2.18375 2.18627 2.18851 2.19096 2.19292 2.19509 2.19648 2.19803 2.19866 2.19941 2.19935 2.19892 2.19799 2.19661 2.19482 2.19302 2.19096 2.18831 2.18506 2.18119 2.17705 2.1726 2.16794 2.16317 2.15819 2.1531 2.14786 2.14234 2.13685 2.13093 2.12521 2.11904 2.11307 2.10678 2.10053 2.09416 2.08768 2.08125 2.07462 2.06816 2.0616 2.05516 2.04874 2.04227 2.03601 2.02954 2.02339 2.01706 2.01095 2.00489 1.9988 1.99308 1.98714 1.98177 1.97621 1.97128 1.96628 1.96188 1.95769 1.954 1.95082 1.94811 1.9462 1.94482 1.94459 1.9449 1.94535 1.94629 1.94793 1.95125 1.95452 1.95873 1.96291 1.96424 2.38009 2.35223 2.32602 2.30484 2.28523 2.27108 2.25502 2.23926 2.22502 2.21077 2.19852 2.18656 2.17702 2.16835 2.16212 2.15702 2.15357 2.15061 2.14848 2.14691 2.14582 2.14582 2.14641 2.1481 2.14971 2.15178 2.15367 2.15594 2.15819 2.16064 2.16294 2.16502 2.16691 2.16827 2.16954 2.17012 2.17066 2.17049 2.16987 2.16886 2.16739 2.16603 2.16435 2.16222 2.15954 2.15617 2.15265 2.14854 2.14435 2.13984 2.13508 2.13031 2.12507 2.12002 2.11445 2.10904 2.10324 2.09743 2.09145 2.08526 2.07912 2.07267 2.06637 2.05979 2.0534 2.04689 2.04039 2.034 2.02746 2.02122 2.01471 2.0086 2.00222 1.99623 1.99005 1.9842 1.9783 1.97259 1.96707 1.96158 1.95652 1.95142 1.94693 1.94248 1.93877 1.9353 1.93255 1.93036 1.92892 1.92832 1.9285 1.9289 1.92962 1.93117 1.93373 1.93714 1.94093 1.94429 1.94847 1.94911 2.39471 2.37214 2.34593 2.32257 2.29954 2.27894 2.26059 2.24353 2.22773 2.2122 2.19822 2.18519 2.17391 2.16375 2.15539 2.14821 2.14268 2.13782 2.13411 2.13052 2.12829 2.12625 2.12539 2.1254 2.12617 2.12796 2.12947 2.13183 2.13363 2.13613 2.13789 2.14009 2.14157 2.14332 2.14437 2.14543 2.14587 2.14602 2.14558 2.14465 2.14357 2.14234 2.14099 2.13926 2.13681 2.13403 2.13065 2.12706 2.12307 2.1188 2.11436 2.10954 2.10467 2.09944 2.09417 2.08865 2.08305 2.07731 2.07142 2.06552 2.05939 2.05334 2.04709 2.04098 2.03475 2.02858 2.02243 2.01625 2.0102 2.00407 1.9981 1.99207 1.98618 1.9803 1.9745 1.96888 1.96322 1.95796 1.95256 1.94775 1.94276 1.93845 1.93411 1.9305 1.9271 1.92444 1.92225 1.92086 1.92018 1.92034 1.92072 1.92136 1.92298 1.92495 1.92867 1.93156 1.93558 1.93796 1.942 1.94207 2.40603 2.38688 2.36475 2.34182 2.31945 2.29717 2.27612 2.25627 2.23814 2.22142 2.20626 2.19183 2.17887 2.16689 2.15652 2.14725 2.13958 2.13283 2.12736 2.12273 2.11904 2.11584 2.11408 2.1125 2.1122 2.11229 2.1132 2.11459 2.11609 2.11792 2.11958 2.12144 2.12291 2.12467 2.1257 2.12707 2.12743 2.12818 2.1279 2.12737 2.12658 2.12554 2.1245 2.12275 2.12057 2.11775 2.11451 2.11104 2.10703 2.10302 2.09845 2.09396 2.08904 2.08412 2.07899 2.07368 2.06836 2.06269 2.05712 2.05114 2.04527 2.0392 2.0331 2.02703 2.02075 2.01471 2.00834 2.00231 1.99602 1.98997 1.98388 1.97782 1.97198 1.96599 1.96039 1.95461 1.9493 1.94387 1.93898 1.93403 1.9297 1.92539 1.92185 1.91845 1.91593 1.91374 1.91245 1.91179 1.91193 1.91224 1.91293 1.91416 1.91696 1.91923 1.92311 1.92546 1.92892 1.93047 1.93363 1.93313 2.41448 2.39473 2.37332 2.35095 2.32908 2.3079 2.28765 2.2685 2.25041 2.23352 2.2176 2.2029 2.18892 2.17603 2.16399 2.15319 2.14347 2.13502 2.12762 2.12118 2.11581 2.1115 2.10793 2.1052 2.10355 2.10229 2.10192 2.10202 2.10279 2.10388 2.10518 2.10643 2.10766 2.10868 2.10964 2.11022 2.11066 2.11068 2.11022 2.10961 2.10842 2.10737 2.10606 2.10428 2.10216 2.09929 2.0964 2.09281 2.08921 2.08501 2.08073 2.07606 2.07126 2.06631 2.06115 2.05601 2.05061 2.04525 2.03968 2.03409 2.02847 2.02273 2.01707 2.01121 2.00548 1.99954 1.99374 1.98784 1.982 1.97625 1.97043 1.96491 1.95921 1.95393 1.94843 1.94341 1.93822 1.93356 1.9288 1.92459 1.92042 1.91691 1.91367 1.9111 1.90912 1.90782 1.90736 1.90757 1.90797 1.90869 1.91065 1.91246 1.916 1.91859 1.92195 1.92395 1.92647 1.92747 1.92974 1.92865 2.42542 2.40465 2.38275 2.36074 2.3393 2.31882 2.29945 2.28106 2.26372 2.2472 2.23141 2.21637 2.20191 2.18815 2.17502 2.1628 2.15147 2.14128 2.13195 2.1238 2.11637 2.11018 2.10477 2.10048 2.09674 2.09414 2.09191 2.09066 2.08963 2.08939 2.08948 2.08992 2.09042 2.09087 2.09119 2.09133 2.09133 2.09109 2.09052 2.08973 2.08853 2.08757 2.0861 2.08464 2.08231 2.07992 2.07694 2.07383 2.07032 2.06652 2.06252 2.05816 2.05377 2.04901 2.04428 2.03926 2.03415 2.02892 2.02344 2.01812 2.01245 2.00707 2.00137 1.99587 1.9902 1.98454 1.97893 1.97313 1.96759 1.96176 1.95635 1.95061 1.94541 1.93992 1.93499 1.92988 1.92531 1.92076 1.91666 1.91274 1.90933 1.90635 1.90388 1.90212 1.9009 1.90061 1.90088 1.90122 1.90215 1.90369 1.90655 1.90925 1.91263 1.91503 1.91757 1.91895 1.92044 1.92092 1.92238 1.92073 2.43667 2.41458 2.39151 2.36838 2.34644 2.32569 2.30672 2.2886 2.27177 2.25534 2.23971 2.22426 2.20948 2.1949 2.18096 2.1675 2.1549 2.14314 2.13241 2.12262 2.1139 2.10601 2.09886 2.09266 2.08715 2.08272 2.07898 2.07647 2.07436 2.07322 2.07226 2.07196 2.07206 2.07232 2.07263 2.07301 2.0732 2.07315 2.07295 2.07244 2.07193 2.07111 2.07034 2.06904 2.0674 2.06541 2.06306 2.06048 2.05739 2.05413 2.05035 2.04642 2.04212 2.03765 2.033 2.02812 2.02319 2.01796 2.01275 2.00734 2.00189 1.99638 1.99072 1.98518 1.97938 1.97384 1.96801 1.96249 1.95671 1.95129 1.94564 1.94039 1.93498 1.93 1.92495 1.92038 1.91585 1.91179 1.90793 1.90453 1.90166 1.89924 1.89758 1.89643 1.89624 1.89648 1.89688 1.89779 1.89989 1.90236 1.90568 1.90844 1.91136 1.9133 1.91516 1.91592 1.91688 1.91704 1.91807 1.91627 2.44618 2.42526 2.40287 2.38058 2.35889 2.33812 2.31868 2.30018 2.28261 2.26558 2.24903 2.23278 2.2169 2.20151 2.18652 2.17237 2.15873 2.14611 2.13432 2.12345 2.11345 2.10435 2.0962 2.08902 2.08279 2.07754 2.07312 2.0696 2.06689 2.06494 2.06352 2.06277 2.06224 2.06226 2.0624 2.06272 2.06297 2.06313 2.06302 2.06275 2.06218 2.06162 2.0608 2.05959 2.05802 2.05599 2.05375 2.05101 2.04802 2.04463 2.04094 2.03702 2.03277 2.02845 2.02377 2.01907 2.01405 2.009 2.00383 1.99853 1.99326 1.98778 1.98245 1.97686 1.97148 1.96587 1.96046 1.95491 1.94955 1.94412 1.93891 1.93369 1.92873 1.92385 1.91927 1.91491 1.91084 1.90713 1.90375 1.90102 1.89865 1.89719 1.89604 1.89607 1.89628 1.89675 1.89799 1.8999 1.90286 1.90601 1.90887 1.91174 1.91354 1.91549 1.916 1.91685 1.91678 1.91671 1.91687 1.91523 2.4479 2.42891 2.40961 2.39012 2.37097 2.35176 2.33329 2.31486 2.29726 2.27961 2.26269 2.24577 2.22948 2.21352 2.19803 2.18314 2.16871 2.15509 2.14216 2.13011 2.1189 2.10868 2.09922 2.09097 2.08346 2.07697 2.07109 2.06636 2.06229 2.05903 2.05646 2.05417 2.05276 2.05161 2.0509 2.05038 2.05005 2.0498 2.04932 2.04871 2.04779 2.04693 2.04571 2.04424 2.0423 2.04013 2.03767 2.03485 2.03184 2.02842 2.02487 2.02095 2.01692 2.01263 2.00814 2.00355 1.99872 1.99399 1.98905 1.98422 1.97931 1.97442 1.96959 1.96466 1.95988 1.95492 1.95015 1.9452 1.94045 1.93555 1.93092 1.9262 1.92182 1.91747 1.91355 1.90972 1.90643 1.90329 1.90094 1.89888 1.89768 1.89695 1.89706 1.89733 1.89803 1.89946 1.90216 1.90476 1.9083 1.9109 1.91388 1.91559 1.91723 1.91801 1.91816 1.918 1.91767 1.91709 1.91667 1.9149 2.44818 2.42966 2.41224 2.3951 2.37823 2.36109 2.34386 2.32664 2.30918 2.29221 2.27506 2.25857 2.24203 2.22602 2.21015 2.19472 2.17963 2.16518 2.15142 2.13833 2.12618 2.11466 2.10409 2.0942 2.08502 2.07708 2.06976 2.06351 2.05753 2.05264 2.04818 2.04452 2.0416 2.03923 2.03769 2.03629 2.0354 2.03438 2.03359 2.03258 2.03153 2.03032 2.02894 2.02726 2.02522 2.02303 2.02054 2.01788 2.01495 2.01179 2.00845 2.00482 2.00106 1.99702 1.99286 1.98847 1.98398 1.97942 1.97471 1.97008 1.96524 1.96063 1.95573 1.9512 1.94629 1.94187 1.93702 1.93269 1.92804 1.92382 1.91948 1.91551 1.91165 1.9081 1.90489 1.90191 1.89947 1.89735 1.89602 1.89501 1.89501 1.89537 1.89578 1.89693 1.89858 1.90179 1.90453 1.9081 1.91077 1.91346 1.91528 1.91636 1.91723 1.91704 1.9166 1.9161 1.91522 1.91376 1.91261 1.91047 2.45077 2.4321 2.41539 2.39954 2.38408 2.36826 2.35198 2.3352 2.31809 2.30085 2.28375 2.26667 2.24996 2.23335 2.21717 2.20134 2.18598 2.17111 2.15695 2.14324 2.13039 2.11786 2.10639 2.09515 2.08501 2.07519 2.06612 2.05783 2.05034 2.04416 2.03848 2.03399 2.02971 2.02645 2.02371 2.02146 2.01974 2.01804 2.01682 2.01535 2.01411 2.01266 2.01119 2.00958 2.0077 2.00577 2.00351 2.00116 1.99855 1.99568 1.99272 1.98931 1.98597 1.98207 1.97826 1.974 1.96976 1.9653 1.96068 1.95614 1.95131 1.94675 1.94188 1.93733 1.93254 1.92806 1.92345 1.91911 1.91477 1.91071 1.90675 1.90318 1.89979 1.89693 1.89429 1.89216 1.89058 1.88953 1.88927 1.8895 1.89023 1.8909 1.89262 1.89466 1.89808 1.90102 1.9044 1.90711 1.9095 1.9113 1.9122 1.91272 1.91234 1.91187 1.91089 1.90967 1.90803 1.9057 1.90415 1.90169 2.45968 2.43841 2.42124 2.40527 2.38978 2.3744 2.3589 2.34298 2.3268 2.31015 2.29343 2.27651 2.25972 2.24305 2.22659 2.21059 2.19468 2.17946 2.16433 2.14996 2.13583 2.12232 2.10939 2.097 2.08544 2.0744 2.0644 2.05498 2.0464 2.03844 2.03136 2.02527 2.01986 2.01526 2.01144 2.00836 2.00568 2.00342 2.00161 1.99981 1.99854 1.99705 1.99585 1.99443 1.99293 1.99132 1.98929 1.98727 1.98469 1.98212 1.97911 1.97588 1.97253 1.96867 1.96501 1.96069 1.95676 1.95216 1.94797 1.94323 1.93888 1.93408 1.92969 1.92493 1.92061 1.91598 1.91179 1.90743 1.90347 1.89953 1.89593 1.89266 1.88966 1.88723 1.88496 1.88362 1.88255 1.88255 1.88285 1.88362 1.88442 1.88675 1.88907 1.89258 1.89572 1.89904 1.90184 1.90411 1.90594 1.90678 1.90722 1.90686 1.90618 1.90543 1.90416 1.90231 1.90021 1.8976 1.89589 1.89339 2.49192 2.46216 2.43816 2.41813 2.39985 2.3826 2.36589 2.34942 2.33316 2.31692 2.30044 2.28396 2.26725 2.25078 2.23422 2.21799 2.2019 2.18602 2.17055 2.15543 2.14073 2.12661 2.11296 2.09996 2.08759 2.07585 2.06482 2.05449 2.04489 2.03609 2.02795 2.02067 2.01398 2.00819 2.00281 1.99851 1.99497 1.99216 1.98987 1.98811 1.98671 1.98535 1.98421 1.98288 1.98165 1.98005 1.97837 1.97634 1.97404 1.97149 1.96854 1.96542 1.9619 1.95824 1.95427 1.95022 1.9459 1.9416 1.937 1.93259 1.92783 1.92342 1.91867 1.91433 1.90974 1.90554 1.90128 1.89732 1.89354 1.89 1.88684 1.88396 1.8816 1.87944 1.87809 1.87704 1.87704 1.87729 1.87778 1.87881 1.88143 1.8842 1.88773 1.89097 1.89413 1.89707 1.8991 1.90109 1.90179 1.9025 1.90216 1.90182 1.9011 1.89997 1.8982 1.89586 1.89354 1.8907 1.88885 1.88626 2.52904 2.50266 2.47704 2.45101 2.42654 2.40308 2.38139 2.36173 2.34328 2.32555 2.30818 2.29103 2.27403 2.25717 2.24052 2.22401 2.20773 2.19156 2.17573 2.16021 2.14516 2.13052 2.11646 2.10292 2.09006 2.07773 2.06612 2.05507 2.04478 2.03518 2.02647 2.01853 2.01156 2.00536 1.99982 1.99512 1.99116 1.98775 1.98512 1.9828 1.98094 1.97935 1.97811 1.97694 1.97578 1.97454 1.97301 1.97135 1.96921 1.96693 1.96414 1.96121 1.95787 1.95437 1.95063 1.9467 1.94264 1.93836 1.93404 1.92951 1.92507 1.92042 1.91601 1.91141 1.90716 1.90283 1.89886 1.89501 1.89147 1.88832 1.88545 1.88317 1.8811 1.8798 1.87899 1.87894 1.87917 1.87958 1.88091 1.88351 1.88625 1.88941 1.89256 1.8953 1.8981 1.89989 1.9017 1.90244 1.90278 1.90255 1.90206 1.90145 1.90021 1.89852 1.89633 1.89388 1.89143 1.88864 1.88669 1.88427 2.54601 2.52454 2.50389 2.48208 2.45886 2.43562 2.4128 2.39038 2.36876 2.34818 2.32853 2.30965 2.29137 2.27351 2.25587 2.23844 2.22104 2.20405 2.18718 2.17105 2.15543 2.14062 2.1264 2.11285 2.09977 2.08721 2.07528 2.06378 2.05322 2.04313 2.03399 2.02545 2.01776 2.01065 2.00428 1.99834 1.99322 1.9889 1.98531 1.98239 1.98024 1.97849 1.97716 1.97601 1.97494 1.97385 1.97253 1.9711 1.96923 1.9672 1.9647 1.962 1.95891 1.95559 1.95205 1.94824 1.94429 1.94009 1.93583 1.93134 1.92692 1.92231 1.91793 1.9134 1.90922 1.90502 1.90121 1.8976 1.89436 1.89164 1.88918 1.88742 1.88594 1.88532 1.88502 1.88523 1.8857 1.88745 1.88997 1.89287 1.89578 1.89896 1.90143 1.90405 1.90573 1.90714 1.90799 1.90789 1.90754 1.90717 1.90632 1.90534 1.90348 1.9014 1.89899 1.89637 1.89378 1.89091 1.88888 1.88648 2.57274 2.551 2.53014 2.50944 2.48799 2.46608 2.44395 2.42178 2.40001 2.37871 2.35801 2.33796 2.31826 2.29907 2.28009 2.26168 2.24356 2.22606 2.20895 2.19261 2.17663 2.16145 2.14642 2.1323 2.11854 2.1058 2.09356 2.08222 2.07128 2.06095 2.05097 2.04155 2.0325 2.02425 2.01653 2.00978 2.00374 1.99891 1.99488 1.99176 1.98934 1.98741 1.98599 1.98476 1.98375 1.98272 1.98158 1.98036 1.97875 1.97707 1.9748 1.97251 1.96959 1.96671 1.96319 1.9597 1.95564 1.95158 1.9471 1.9426 1.93791 1.93319 1.92855 1.92382 1.91949 1.91512 1.9113 1.90763 1.90462 1.90187 1.89988 1.89816 1.89734 1.89664 1.89672 1.89747 1.89936 1.90167 1.90462 1.90723 1.9103 1.91263 1.91493 1.91664 1.9176 1.91844 1.91817 1.9177 1.91697 1.91631 1.91486 1.91337 1.91104 1.90882 1.90623 1.90358 1.9009 1.89807 1.89599 1.89373 2.587 2.56768 2.54858 2.52908 2.50946 2.48943 2.46943 2.44918 2.42902 2.40881 2.3889 2.36897 2.34963 2.33047 2.31195 2.29368 2.27601 2.25858 2.24169 2.22523 2.20933 2.19414 2.17947 2.16541 2.15175 2.13841 2.12535 2.11249 2.10013 2.08791 2.07653 2.06575 2.05592 2.04691 2.0385 2.03122 2.02434 2.01858 2.01322 2.00879 2.00488 2.00165 1.99914 1.99688 1.9954 1.99378 1.99286 1.99144 1.99055 1.98906 1.98774 1.98592 1.984 1.98165 1.97904 1.97608 1.97273 1.96929 1.96534 1.96157 1.95727 1.9532 1.94888 1.9446 1.9407 1.93634 1.93322 1.92926 1.92711 1.92415 1.92291 1.921 1.92054 1.91993 1.92078 1.92224 1.92381 1.9261 1.92802 1.93027 1.93205 1.93359 1.93473 1.93523 1.93537 1.93489 1.93381 1.93313 1.93176 1.93065 1.92835 1.92648 1.92374 1.92137 1.91851 1.91574 1.91288 1.90996 1.90778 1.90547 2.59743 2.57801 2.55924 2.54095 2.52324 2.50551 2.48715 2.46854 2.44928 2.43014 2.41109 2.39244 2.37413 2.35636 2.33873 2.32161 2.30462 2.28802 2.27167 2.25561 2.23977 2.22432 2.20892 2.19391 2.17898 2.16456 2.15041 2.13687 2.12378 2.11121 2.09933 2.08737 2.0763 2.0653 2.05549 2.046 2.03736 2.02952 2.02265 2.01702 2.01223 2.00867 2.0057 2.0036 2.00193 2.00066 1.99975 1.99878 1.99807 1.99696 1.99614 1.99465 1.99342 1.99144 1.98965 1.98724 1.98483 1.98223 1.97915 1.97649 1.97274 1.97 1.96591 1.96321 1.95929 1.95692 1.95356 1.95178 1.94927 1.94803 1.94647 1.94549 1.94569 1.94646 1.94795 1.94909 1.95107 1.95247 1.9541 1.95521 1.956 1.95639 1.9562 1.95578 1.95441 1.95331 1.95153 1.95046 1.94833 1.94668 1.94401 1.9418 1.9391 1.9365 1.93376 1.93088 1.92812 1.92519 1.92303 1.9208 2.61579 2.59904 2.58266 2.56524 2.54684 2.52743 2.50751 2.48766 2.46809 2.44882 2.43011 2.41166 2.39372 2.37614 2.35889 2.34202 2.32535 2.3088 2.29243 2.27603 2.25991 2.24405 2.22851 2.21331 2.19844 2.1837 2.16913 2.15458 2.14006 2.12571 2.11175 2.09818 2.08576 2.07382 2.06362 2.054 2.04616 2.03897 2.03286 2.02744 2.0226 2.0183 2.01451 2.01128 2.00847 2.00632 2.00432 2.00298 2.00149 2.00052 1.99933 1.99829 1.99703 1.99563 1.99409 1.9925 1.99059 1.98879 1.98646 1.98438 1.98175 1.97947 1.97672 1.97453 1.97193 1.97022 1.96806 1.96716 1.96533 1.9649 1.96419 1.96492 1.96578 1.9675 1.96885 1.97107 1.97257 1.97451 1.97586 1.97687 1.97755 1.97744 1.97716 1.97609 1.97492 1.97359 1.97202 1.9709 1.96863 1.96695 1.96412 1.96223 1.9592 1.95688 1.95376 1.95106 1.94798 1.94501 1.94267 1.94022 2.62655 2.61153 2.59707 2.58133 2.56425 2.54656 2.52824 2.50981 2.49149 2.47329 2.45565 2.43829 2.42141 2.40459 2.38783 2.37088 2.35406 2.33718 2.32074 2.3045 2.28859 2.27293 2.2572 2.24135 2.22527 2.20892 2.1926 2.17649 2.16081 2.1461 2.13212 2.11933 2.10741 2.09648 2.08619 2.07655 2.06732 2.05842 2.04989 2.04211 2.03467 2.02825 2.02234 2.01754 2.01326 2.00985 2.00698 2.0048 2.00302 2.00174 2.00057 1.99975 1.99896 1.99851 1.9978 1.99729 1.99629 1.99542 1.99396 1.9927 1.99084 1.98923 1.98725 1.98546 1.98352 1.98189 1.97976 1.97872 1.9769 1.97702 1.97733 1.9782 1.97936 1.98095 1.98329 1.98482 1.98729 1.98857 1.99019 1.99135 1.99175 1.99253 1.99229 1.99169 1.99118 1.99048 1.98984 1.98839 1.98713 1.98505 1.98282 1.98075 1.9778 1.97577 1.97231 1.97032 1.96664 1.96479 1.96199 1.96093 2.63305 2.61735 2.6033 2.58837 2.57245 2.55558 2.53829 2.52096 2.50401 2.48756 2.47136 2.45522 2.43885 2.42254 2.40626 2.3903 2.37475 2.35932 2.344 2.32833 2.31197 2.29516 2.27767 2.25999 2.24238 2.22508 2.20858 2.19274 2.17781 2.1636 2.14997 2.13685 2.12406 2.11167 2.09956 2.08794 2.07678 2.06635 2.05648 2.04746 2.03916 2.03192 2.02523 2.01942 2.01421 2.00993 2.00627 2.0034 2.00129 1.9999 1.99904 1.99884 1.99888 1.99904 1.99918 1.99914 1.99899 1.99853 1.99789 1.99651 1.99546 1.99396 1.99304 1.99166 1.99067 1.99003 1.98947 1.9898 1.99059 1.99204 1.99415 1.99613 1.99914 2.00189 2.00492 2.00819 2.01064 2.0135 2.01532 2.01696 2.01808 2.01852 2.01825 2.01757 2.01708 2.01599 2.01502 2.01283 2.01137 2.00841 2.00668 2.00341 2.00149 1.99823 1.99607 1.99324 1.99079 1.98879 1.98668 1.98607 2.64537 2.62938 2.61545 2.60094 2.58555 2.56947 2.55314 2.53678 2.52035 2.50372 2.48726 2.47106 2.45522 2.43983 2.42469 2.40959 2.39403 2.37794 2.36095 2.34336 2.32506 2.30694 2.28873 2.27125 2.25428 2.23786 2.22206 2.2065 2.19131 2.17631 2.16154 2.14714 2.13311 2.11952 2.10661 2.09426 2.08261 2.07158 2.06123 2.05153 2.04252 2.03407 2.02636 2.01931 2.0132 2.00798 2.00371 2.00047 1.99827 1.99693 1.99635 1.99642 1.99668 1.99724 1.99763 1.99773 1.99769 1.99749 1.99695 1.99623 1.99539 1.99495 1.99503 1.99529 1.996 1.9974 1.99958 2.00197 2.00598 2.00924 2.01408 2.01822 2.02265 2.02717 2.03077 2.03443 2.03733 2.03934 2.04131 2.04194 2.04263 2.04225 2.04143 2.04063 2.03967 2.03819 2.03702 2.03457 2.03305 2.03022 2.02858 2.02566 2.02411 2.02111 2.01955 2.0164 2.01478 2.01158 2.01026 2.00757 2.64907 2.63462 2.62223 2.60882 2.59412 2.57867 2.56252 2.54628 2.53016 2.51414 2.49859 2.48355 2.46877 2.45429 2.43934 2.42382 2.40729 2.39014 2.37227 2.35451 2.33656 2.31923 2.30199 2.28523 2.26863 2.252 2.23572 2.21933 2.20325 2.18745 2.17191 2.157 2.1424 2.12851 2.11507 2.10232 2.09003 2.07834 2.06726 2.05664 2.04666 2.03705 2.02859 2.02067 2.01399 2.00837 2.00393 2.00084 1.99846 1.99703 1.99626 1.99593 1.99596 1.99611 1.99617 1.99601 1.99569 1.99575 1.99588 1.99622 1.9967 1.99765 1.99927 2.00132 2.00429 2.00735 2.01147 2.01565 2.02051 2.02582 2.03064 2.03637 2.04079 2.04568 2.04952 2.05271 2.05555 2.05715 2.05861 2.05918 2.05916 2.0586 2.05751 2.05668 2.05526 2.05428 2.05231 2.05095 2.04896 2.04724 2.04558 2.04325 2.04183 2.03884 2.03709 2.03332 2.03113 2.02655 2.02441 2.0195 2.65751 2.64289 2.62966 2.61519 2.59948 2.58326 2.56665 2.55001 2.53377 2.51808 2.50306 2.48867 2.47405 2.45917 2.44363 2.42741 2.41082 2.394 2.37718 2.36044 2.34375 2.327 2.31017 2.29313 2.27623 2.25907 2.24237 2.22556 2.20934 2.19339 2.17781 2.16283 2.1482 2.1341 2.12053 2.10724 2.09463 2.08235 2.07062 2.0591 2.04847 2.03831 2.02929 2.02117 2.01436 2.00841 2.00364 1.99986 1.99672 1.99456 1.99275 1.99154 1.99092 1.99056 1.99004 1.99009 1.99054 1.99122 1.99255 1.99413 1.99628 1.99868 2.00166 2.00515 2.00914 2.01374 2.01866 2.02418 2.02973 2.03554 2.04123 2.04656 2.05157 2.05595 2.05978 2.06262 2.0654 2.06667 2.0681 2.0687 2.0687 2.06831 2.06777 2.06733 2.06673 2.06604 2.06479 2.06401 2.06242 2.0614 2.05926 2.05771 2.05485 2.05208 2.04875 2.0444 2.04084 2.03518 2.03245 2.02674 2.66317 2.64975 2.63749 2.624 2.60879 2.59243 2.57564 2.55859 2.54211 2.52596 2.51005 2.49434 2.4784 2.46228 2.44616 2.4296 2.41325 2.39667 2.38028 2.36369 2.34706 2.33008 2.31318 2.296 2.27928 2.26236 2.24613 2.22974 2.21395 2.1982 2.18293 2.16793 2.1534 2.13907 2.1254 2.11162 2.09859 2.08548 2.07303 2.06094 2.0495 2.03895 2.02936 2.02088 2.01336 2.0068 2.00108 1.99626 1.99214 1.98894 1.98626 1.98443 1.98347 1.98309 1.98283 1.98313 1.98418 1.98555 1.98789 1.99022 1.99334 1.99692 2.00098 2.00555 2.01051 2.01607 2.02179 2.02805 2.03407 2.04036 2.04618 2.05158 2.05673 2.06069 2.06465 2.06716 2.06984 2.07099 2.07252 2.07302 2.07335 2.07334 2.07341 2.07357 2.07375 2.0736 2.0732 2.07245 2.07125 2.07004 2.06785 2.06589 2.06268 2.05969 2.05561 2.05161 2.04738 2.04281 2.0398 2.03569 2.66048 2.64764 2.6361 2.62313 2.6084 2.59228 2.57594 2.55901 2.54277 2.52665 2.51099 2.49566 2.48049 2.46537 2.4503 2.43482 2.41919 2.40291 2.38627 2.36905 2.35178 2.33433 2.31723 2.30018 2.28352 2.26689 2.25071 2.23443 2.2189 2.20315 2.18835 2.17326 2.15906 2.14456 2.13079 2.11672 2.10329 2.08982 2.07698 2.06486 2.05329 2.04282 2.03259 2.0234 2.01471 2.00698 1.99998 1.99387 1.98856 1.98424 1.98089 1.97858 1.97758 1.97761 1.97773 1.97834 1.97972 1.98253 1.98501 1.98887 1.9922 1.99678 2.00114 2.00652 2.01201 2.01817 2.02449 2.03115 2.03765 2.04419 2.05017 2.05583 2.06088 2.06501 2.069 2.07152 2.07434 2.07569 2.07744 2.07806 2.07885 2.07917 2.07945 2.08015 2.08028 2.08008 2.07951 2.0785 2.0772 2.07526 2.07296 2.07024 2.06703 2.06354 2.05974 2.05578 2.05194 2.04793 2.04523 2.04194 2.66937 2.65511 2.64257 2.6284 2.6129 2.59554 2.57818 2.56032 2.54348 2.5274 2.51221 2.49834 2.48434 2.4706 2.45567 2.44 2.42336 2.40601 2.38825 2.37027 2.35251 2.33469 2.31737 2.30015 2.28325 2.26669 2.25051 2.23454 2.21934 2.2039 2.18956 2.17461 2.16083 2.14629 2.13269 2.11866 2.10524 2.09202 2.0792 2.0672 2.0553 2.04424 2.03339 2.02312 2.01357 2.00459 1.99661 1.98951 1.98341 1.97858 1.97514 1.97256 1.97232 1.97265 1.97336 1.97431 1.97653 1.97984 1.98319 1.9874 1.99164 1.99659 2.00184 2.00756 2.01381 2.02029 2.02716 2.03393 2.04083 2.04733 2.05361 2.05935 2.06446 2.06904 2.07302 2.07614 2.07931 2.08124 2.08344 2.08481 2.08601 2.08654 2.08754 2.08788 2.08769 2.08721 2.08593 2.08472 2.0826 2.08014 2.07751 2.07421 2.07102 2.06711 2.06362 2.05933 2.05587 2.05161 2.04914 2.04559 2.66717 2.65395 2.64153 2.62644 2.61094 2.59417 2.57852 2.56279 2.54809 2.53391 2.5197 2.50564 2.49017 2.47465 2.45809 2.44146 2.42417 2.40688 2.38924 2.37161 2.35408 2.33628 2.31911 2.30165 2.28482 2.2681 2.25192 2.23584 2.2205 2.20503 2.19061 2.17568 2.16205 2.14771 2.13456 2.12107 2.10832 2.09585 2.08322 2.07104 2.05836 2.04637 2.03462 2.02335 2.01294 2.00319 1.99439 1.98698 1.98056 1.97562 1.97208 1.96966 1.96927 1.96963 1.97045 1.97122 1.9734 1.97667 1.98058 1.985 1.98999 1.9954 2.0013 2.00752 2.01409 2.02078 2.02775 2.03455 2.04142 2.04788 2.05422 2.05996 2.06561 2.07055 2.07533 2.07957 2.08324 2.08657 2.08927 2.09133 2.09276 2.09394 2.09444 2.09434 2.09372 2.09278 2.09056 2.08898 2.08574 2.08326 2.07999 2.07638 2.07326 2.06908 2.06597 2.06135 2.05837 2.05366 2.05147 2.04743 2.67137 2.65695 2.64268 2.62654 2.61113 2.59561 2.58201 2.56837 2.55452 2.53982 2.52385 2.5078 2.49062 2.47395 2.45675 2.44005 2.42302 2.40617 2.38879 2.37136 2.35375 2.33568 2.31825 2.30047 2.28352 2.26664 2.25059 2.23476 2.21993 2.20507 2.19142 2.17737 2.16481 2.15151 2.13912 2.12609 2.11284 2.09962 2.08559 2.07233 2.05863 2.04551 2.03284 2.02068 2.00966 1.99978 1.99082 1.98351 1.97713 1.97216 1.96847 1.96599 1.96517 1.96546 1.96616 1.96679 1.96873 1.97239 1.97668 1.9818 1.98763 1.99375 2.00063 2.00732 2.01461 2.0214 2.02848 2.03511 2.04176 2.04799 2.05419 2.05995 2.06574 2.07107 2.07628 2.08117 2.0853 2.08958 2.09235 2.0952 2.09672 2.09799 2.0983 2.09813 2.09728 2.0962 2.09373 2.0921 2.08871 2.0867 2.08304 2.08014 2.07722 2.07287 2.07041 2.06538 2.06272 2.05749 2.05521 2.05038 2.6702 2.65503 2.64119 2.62705 2.61444 2.60236 2.59064 2.57741 2.56232 2.54588 2.52771 2.50986 2.49159 2.47448 2.45757 2.44109 2.42412 2.40687 2.3888 2.37055 2.35206 2.33334 2.31507 2.29658 2.27896 2.26173 2.24588 2.23088 2.21759 2.20486 2.19355 2.18157 2.17032 2.15752 2.14475 2.13096 2.11638 2.1019 2.0863 2.07163 2.05676 2.04284 2.03001 2.01786 2.00706 1.99724 1.9885 1.98101 1.97466 1.96926 1.96528 1.96233 1.96096 1.96105 1.96143 1.96181 1.96358 1.96714 1.97179 1.97751 1.98389 1.99098 1.99846 2.00601 2.01379 2.02101 2.02823 2.03491 2.04122 2.04754 2.05322 2.05921 2.06462 2.07039 2.07539 2.08092 2.08507 2.08981 2.09277 2.09599 2.09757 2.09915 2.09978 2.09967 2.09903 2.09816 2.09615 2.09477 2.09188 2.0902 2.08693 2.08449 2.08183 2.07758 2.07525 2.07021 2.06744 2.06185 2.0594 2.05387 2.67128 2.65295 2.63793 2.62524 2.61377 2.60327 2.59132 2.57792 2.56216 2.54548 2.52733 2.51014 2.49303 2.4771 2.46129 2.44548 2.42882 2.41196 2.39411 2.37647 2.35817 2.33983 2.3213 2.30277 2.28474 2.26744 2.25134 2.23627 2.22264 2.20937 2.19723 2.18427 2.17204 2.15833 2.14485 2.13046 2.11571 2.10145 2.08655 2.07299 2.05934 2.04656 2.03477 2.02336 2.01312 2.00353 1.99485 1.98673 1.98004 1.97356 1.96881 1.96471 1.96264 1.96161 1.9616 1.96156 1.96293 1.96613 1.97092 1.97675 1.98339 1.99075 1.99826 2.006 2.01362 2.02073 2.0278 2.03405 2.04034 2.0462 2.05206 2.05786 2.06381 2.06954 2.07548 2.08097 2.08611 2.09088 2.09449 2.09747 2.09952 2.10081 2.10099 2.10076 2.09973 2.09855 2.09594 2.09428 2.0909 2.08904 2.08538 2.08283 2.07977 2.07534 2.07282 2.06743 2.06453 2.05869 2.05611 2.05025 2.67385 2.65253 2.63621 2.62382 2.61258 2.60211 2.58951 2.57561 2.5594 2.54278 2.52511 2.50878 2.49265 2.47734 2.46208 2.44652 2.43038 2.41401 2.39676 2.37947 2.36117 2.34268 2.32374 2.30506 2.28693 2.26981 2.25396 2.23912 2.22551 2.21205 2.19934 2.18571 2.1726 2.15814 2.14411 2.12949 2.11489 2.10118 2.087 2.07457 2.06199 2.05053 2.03973 2.02942 2.01959 2.01056 2.00177 1.99348 1.98648 1.97932 1.97413 1.96928 1.96678 1.96507 1.9648 1.96409 1.96525 1.96815 1.97265 1.9784 1.98483 1.99212 1.99947 2.00713 2.01455 2.02156 2.0283 2.0345 2.04047 2.04632 2.05198 2.058 2.06392 2.07027 2.07641 2.08239 2.08821 2.09291 2.09694 2.09998 2.10178 2.10247 2.10242 2.10186 2.10009 2.09837 2.09485 2.09277 2.08863 2.08645 2.08226 2.0796 2.07598 2.07172 2.069 2.06349 2.06067 2.05499 2.05249 2.04696 2.44286 2.74428 3.00026 3.27257 3.23106 3.20411 3.19149 3.18753 3.18075 3.17276 3.16411 3.15991 3.15896 3.15833 3.15823 3.15927 3.16279 3.16738 3.17326 3.17952 3.18608 3.19111 3.19642 3.20042 3.20269 3.20364 3.20394 3.20192 3.19934 3.19387 3.18836 3.18192 3.17622 3.17138 3.1655 3.15697 3.15046 3.13947 3.13213 3.12224 3.1142 3.10319 3.09363 3.08138 3.07152 3.05897 3.04695 3.03472 3.02372 3.01072 2.99999 2.98677 2.97547 2.96246 2.95084 2.9381 2.92593 2.91353 2.90127 2.88863 2.87657 2.86376 2.85197 2.83932 2.82767 2.81524 2.80371 2.79147 2.78013 2.76812 2.75696 2.74524 2.73418 2.72284 2.71187 2.70095 2.6902 2.67967 2.66928 2.65914 2.64923 2.63949 2.63018 2.62086 2.61229 2.60366 2.59576 2.58831 2.58129 2.57518 2.56988 2.56529 2.56248 2.56051 2.55996 2.55978 2.55996 2.56091 2.56418 2.56195 2.34228 2.51424 2.68833 3.026 3.20128 3.28157 3.4426 3.5281 3.5092 3.50604 3.50203 3.50297 3.50326 3.49862 3.49039 3.48315 3.47034 3.4549 3.43558 3.41671 3.39767 3.37925 3.36785 3.35199 3.3354 3.31309 3.29513 3.26971 3.24966 3.22727 3.20278 3.18449 3.15977 3.14141 3.11648 3.09823 3.07569 3.05636 3.03482 3.01724 2.99736 2.98013 2.96219 2.9438 2.92609 2.90842 2.89189 2.87544 2.85961 2.84403 2.82836 2.81359 2.79823 2.78411 2.76932 2.7553 2.74133 2.72744 2.7141 2.70063 2.68778 2.67486 2.66249 2.65008 2.63811 2.62614 2.61457 2.60299 2.59173 2.58056 2.56956 2.55889 2.54816 2.53798 2.52759 2.51786 2.50788 2.49853 2.48903 2.47995 2.47102 2.46225 2.45389 2.44569 2.43784 2.43053 2.42337 2.417 2.41105 2.4057 2.40139 2.39766 2.39532 2.39414 2.39397 2.39406 2.39433 2.39536 2.39875 2.39651 2.32353 2.35834 2.45804 2.5542 2.72946 2.89952 3.05392 3.25336 3.36936 3.44287 3.47864 3.52212 3.54461 3.56819 3.57121 3.56362 3.54682 3.51848 3.48265 3.44745 3.40936 3.37098 3.33235 3.28874 3.24746 3.2029 3.16172 3.11576 3.07547 3.03336 2.99563 2.95827 2.92367 2.8904 2.85945 2.82952 2.80154 2.77504 2.75038 2.72764 2.70603 2.68706 2.66764 2.65027 2.63149 2.61612 2.59906 2.58518 2.56932 2.55619 2.5415 2.52885 2.51519 2.50306 2.49019 2.47882 2.46662 2.45586 2.44431 2.43412 2.42312 2.41339 2.40295 2.39352 2.3836 2.37441 2.36492 2.35597 2.34683 2.3382 2.32934 2.32106 2.31246 2.30445 2.29619 2.28832 2.28046 2.27273 2.26526 2.25779 2.25065 2.24362 2.2368 2.23033 2.22396 2.218 2.21243 2.20704 2.20254 2.19823 2.19482 2.1923 2.19047 2.19032 2.1905 2.19099 2.19162 2.19311 2.19734 2.19594 2.32603 2.29732 2.33129 2.36649 2.43807 2.52183 2.61764 2.70994 2.81445 2.91126 2.9859 3.03905 3.08349 3.10372 3.11778 3.1165 3.11027 3.0966 3.07463 3.04768 3.01261 2.97594 2.93466 2.8946 2.85327 2.81466 2.77683 2.74176 2.7092 2.6786 2.65122 2.62502 2.60226 2.58067 2.56197 2.54522 2.5302 2.51655 2.50376 2.49237 2.48135 2.47193 2.46213 2.45288 2.44282 2.43379 2.42449 2.41596 2.40698 2.3986 2.38974 2.38143 2.37265 2.3644 2.35571 2.34755 2.33899 2.33091 2.3225 2.31446 2.30621 2.29815 2.29003 2.28197 2.27394 2.26595 2.25795 2.25009 2.24212 2.23439 2.22655 2.21884 2.21126 2.20357 2.19626 2.18872 2.18154 2.17437 2.16715 2.16037 2.15331 2.14678 2.14021 2.13383 2.12798 2.12201 2.11684 2.11179 2.10727 2.10361 2.10016 2.09817 2.09665 2.09676 2.09713 2.09792 2.09897 2.10091 2.10601 2.10593 2.33325 2.2981 2.28101 2.29469 2.31743 2.35542 2.39716 2.44344 2.48528 2.52465 2.55629 2.58411 2.60203 2.61623 2.61916 2.61685 2.61107 2.60154 2.59062 2.57563 2.55993 2.54364 2.52771 2.51267 2.49894 2.48633 2.47498 2.46478 2.45571 2.44764 2.44049 2.43398 2.42815 2.42279 2.41773 2.4131 2.40824 2.40386 2.39868 2.39412 2.38879 2.38446 2.3791 2.37392 2.36743 2.36131 2.3547 2.34855 2.34179 2.33544 2.32838 2.32178 2.31449 2.30764 2.3003 2.29325 2.286 2.2788 2.27168 2.2644 2.25729 2.24999 2.24278 2.23548 2.22815 2.22081 2.21349 2.20605 2.19883 2.19133 2.18418 2.17675 2.1695 2.16224 2.15478 2.1477 2.14024 2.13333 2.12614 2.11939 2.11264 2.10601 2.09983 2.09349 2.0878 2.08219 2.07691 2.0724 2.06788 2.06455 2.06145 2.05953 2.05863 2.05884 2.05947 2.06005 2.06192 2.06435 2.06945 2.07045 2.3407 2.29963 2.2816 2.26894 2.2754 2.28792 2.30351 2.32092 2.336 2.34883 2.35944 2.3669 2.37393 2.37798 2.37978 2.37861 2.37594 2.37419 2.37258 2.36921 2.36611 2.36215 2.35893 2.35607 2.35411 2.35251 2.35133 2.35055 2.34994 2.34965 2.34926 2.34898 2.34837 2.34784 2.34667 2.34573 2.34368 2.34215 2.33894 2.33659 2.33265 2.32997 2.32592 2.32211 2.31684 2.31161 2.30603 2.30039 2.29473 2.28876 2.28285 2.27652 2.27025 2.26363 2.25701 2.25025 2.24337 2.23653 2.22952 2.22256 2.21553 2.20843 2.20144 2.19423 2.18729 2.18008 2.1731 2.16607 2.15899 2.15218 2.14506 2.13837 2.13131 2.12461 2.11783 2.1111 2.1046 2.09788 2.09159 2.08511 2.07895 2.07296 2.06695 2.06156 2.05597 2.05114 2.04635 2.04216 2.03851 2.03528 2.0331 2.03137 2.03135 2.03163 2.03231 2.03323 2.03562 2.03876 2.04347 2.04485 2.3472 2.30924 2.28346 2.27024 2.2619 2.26367 2.26512 2.26772 2.2689 2.26936 2.26809 2.26682 2.2661 2.26615 2.26614 2.26572 2.26483 2.26397 2.26492 2.2661 2.26734 2.2682 2.2697 2.27083 2.27277 2.27419 2.27638 2.27798 2.28006 2.28133 2.28279 2.28359 2.28402 2.28393 2.28356 2.28286 2.28133 2.2799 2.27732 2.275 2.2719 2.26947 2.2662 2.2629 2.25838 2.2538 2.24869 2.2437 2.23836 2.23316 2.2276 2.2221 2.21624 2.21032 2.20424 2.19793 2.19175 2.1852 2.17889 2.17224 2.16568 2.159 2.1522 2.14547 2.13859 2.13176 2.12498 2.11798 2.11129 2.10422 2.09762 2.09072 2.08421 2.07759 2.07114 2.06482 2.05844 2.05242 2.04621 2.04049 2.03457 2.02915 2.02373 2.0186 2.01387 2.0092 2.00531 2.00144 1.99853 1.9959 1.99424 1.99345 1.99364 1.99421 1.99481 1.99611 1.9989 2.00241 2.00718 2.0083 2.35138 2.32056 2.29579 2.28051 2.26513 2.25766 2.25205 2.24548 2.23928 2.23183 2.22483 2.21828 2.21323 2.20965 2.20726 2.20614 2.20492 2.20405 2.20421 2.20576 2.20766 2.21052 2.21246 2.21523 2.21745 2.22036 2.22308 2.22586 2.22849 2.23064 2.23292 2.23434 2.23608 2.23672 2.23776 2.23768 2.23741 2.23681 2.2355 2.23392 2.2318 2.22979 2.22731 2.22435 2.2205 2.21614 2.2114 2.20633 2.20117 2.19567 2.19023 2.18439 2.1786 2.17253 2.16637 2.16019 2.15377 2.14753 2.141 2.13461 2.1281 2.12147 2.11501 2.10819 2.10176 2.09487 2.08834 2.08151 2.07491 2.06824 2.06155 2.05501 2.04831 2.04189 2.0353 2.02898 2.02265 2.01641 2.01047 2.00442 1.9989 1.99327 1.98816 1.98317 1.97854 1.97439 1.97047 1.96732 1.96445 1.96262 1.96117 1.9612 1.96152 1.96194 1.96288 1.96546 1.9682 1.97249 1.97686 1.97838 2.36278 2.33234 2.30818 2.2888 2.27792 2.26176 2.24949 2.23869 2.22658 2.21573 2.20455 2.19547 2.18725 2.18153 2.17695 2.17465 2.1725 2.17148 2.16989 2.16995 2.17031 2.17217 2.17444 2.17654 2.17892 2.1813 2.18374 2.18626 2.1885 2.19095 2.19292 2.19509 2.19648 2.19803 2.19866 2.1994 2.19934 2.19891 2.19798 2.1966 2.19481 2.19301 2.19095 2.18829 2.18504 2.18118 2.17704 2.1726 2.16793 2.16317 2.15819 2.1531 2.14786 2.14234 2.13685 2.13093 2.12521 2.11904 2.11307 2.10678 2.10053 2.09416 2.08768 2.08125 2.07462 2.06817 2.0616 2.05516 2.04875 2.04228 2.03601 2.02954 2.02339 2.01706 2.01095 2.00489 1.99879 1.99307 1.98713 1.98177 1.9762 1.97127 1.96627 1.96187 1.95767 1.95399 1.9508 1.94809 1.94618 1.94479 1.94455 1.94486 1.94531 1.94625 1.94789 1.9512 1.95447 1.95869 1.96287 1.9642 2.38003 2.35219 2.32599 2.30483 2.28524 2.27109 2.25503 2.23928 2.22503 2.21077 2.19851 2.18654 2.17698 2.1683 2.16207 2.15697 2.15352 2.15056 2.14845 2.14687 2.14579 2.14579 2.14638 2.14808 2.1497 2.15177 2.15367 2.15594 2.15819 2.16064 2.16294 2.16502 2.1669 2.16826 2.16953 2.17011 2.17064 2.17048 2.16985 2.16885 2.16738 2.16602 2.16433 2.16221 2.15953 2.15616 2.15264 2.14853 2.14434 2.13983 2.13507 2.1303 2.12506 2.12001 2.11444 2.10903 2.10323 2.09742 2.09144 2.08526 2.07911 2.07266 2.06636 2.05978 2.05339 2.04688 2.04038 2.03399 2.02745 2.02121 2.0147 2.00859 2.00221 1.99622 1.99005 1.98419 1.97829 1.97258 1.96705 1.96156 1.9565 1.9514 1.94691 1.94246 1.93874 1.93527 1.93252 1.93033 1.92888 1.92828 1.92846 1.92886 1.92957 1.93112 1.93368 1.93709 1.94087 1.94425 1.94842 1.94907 2.39466 2.3721 2.34589 2.32256 2.29953 2.27894 2.2606 2.24354 2.22772 2.21218 2.1982 2.18516 2.17388 2.1637 2.15535 2.14816 2.14263 2.13778 2.13407 2.13048 2.12826 2.12621 2.12536 2.12538 2.12616 2.12795 2.12947 2.13183 2.13363 2.13612 2.13789 2.14008 2.14156 2.1433 2.14435 2.14541 2.14585 2.146 2.14555 2.14463 2.14354 2.14231 2.14097 2.13924 2.13679 2.13401 2.13064 2.12705 2.12306 2.11878 2.11434 2.10952 2.10465 2.09942 2.09415 2.08863 2.08303 2.07729 2.07141 2.0655 2.05938 2.05332 2.04707 2.04097 2.03473 2.02858 2.02242 2.01625 2.01019 2.00406 1.9981 1.99206 1.98617 1.98029 1.97449 1.96887 1.96321 1.95795 1.95255 1.94773 1.94274 1.93843 1.93409 1.93048 1.92707 1.92441 1.92221 1.92082 1.92013 1.92029 1.92067 1.92131 1.92293 1.9249 1.92862 1.93151 1.93553 1.93792 1.94196 1.94203 2.40598 2.38686 2.36474 2.34181 2.31945 2.29716 2.27611 2.25625 2.23811 2.22139 2.20622 2.19178 2.17882 2.16684 2.15647 2.1472 2.13954 2.13279 2.12732 2.12269 2.119 2.1158 2.11404 2.11247 2.11217 2.11226 2.11318 2.11457 2.11607 2.1179 2.11956 2.12142 2.1229 2.12465 2.12568 2.12706 2.12742 2.12816 2.12788 2.12735 2.12655 2.12552 2.12448 2.12272 2.12054 2.11772 2.11448 2.11101 2.107 2.10299 2.09843 2.09394 2.08901 2.0841 2.07896 2.07366 2.06834 2.06266 2.0571 2.05112 2.04525 2.03917 2.03308 2.02701 2.02073 2.01468 2.00832 2.00229 1.99599 1.98995 1.98386 1.9778 1.97196 1.96597 1.96037 1.95458 1.94927 1.94384 1.93895 1.93401 1.92967 1.92536 1.92182 1.91842 1.91589 1.9137 1.91241 1.91174 1.91188 1.91219 1.91287 1.9141 1.9169 1.91917 1.92305 1.9254 1.92887 1.93042 1.93359 1.93309 2.41443 2.39468 2.37327 2.3509 2.32905 2.30787 2.28762 2.26847 2.25038 2.23349 2.21756 2.20287 2.18888 2.17599 2.16395 2.15314 2.14343 2.13497 2.12757 2.12113 2.11576 2.11146 2.10789 2.10516 2.10351 2.10225 2.1019 2.10199 2.10277 2.10386 2.10516 2.10641 2.10764 2.10867 2.10962 2.11021 2.11064 2.11066 2.1102 2.10959 2.1084 2.10735 2.10603 2.10426 2.10213 2.09926 2.09637 2.09279 2.08919 2.08498 2.08071 2.07603 2.07124 2.06628 2.06113 2.05599 2.05059 2.04523 2.03966 2.03407 2.02845 2.02272 2.01706 2.01119 2.00546 1.99953 1.99372 1.98782 1.98198 1.97624 1.97042 1.9649 1.95919 1.95391 1.94841 1.94339 1.9382 1.93353 1.92877 1.92456 1.92039 1.91687 1.91362 1.91106 1.90907 1.90778 1.90731 1.90752 1.90792 1.90864 1.91059 1.9124 1.91594 1.91853 1.9219 1.9239 1.92642 1.92743 1.9297 1.92861 2.42536 2.4046 2.38272 2.36071 2.33926 2.31878 2.29941 2.28102 2.26368 2.24716 2.23137 2.21634 2.20188 2.18812 2.17498 2.16277 2.15143 2.14125 2.13192 2.12377 2.11634 2.11014 2.10474 2.10045 2.09671 2.09411 2.09189 2.09064 2.08961 2.08938 2.08946 2.08991 2.0904 2.09085 2.09117 2.09132 2.09131 2.09108 2.09051 2.0897 2.08851 2.08754 2.08608 2.08461 2.08228 2.07989 2.07691 2.07381 2.0703 2.0665 2.0625 2.05813 2.05375 2.04899 2.04426 2.03924 2.03413 2.0289 2.02342 2.0181 2.01244 2.00706 2.00135 1.99586 1.99018 1.98453 1.97891 1.97312 1.96757 1.96174 1.95633 1.95059 1.94539 1.93989 1.93496 1.92986 1.92529 1.92073 1.91663 1.9127 1.90929 1.90631 1.90384 1.90207 1.90086 1.90056 1.90083 1.90117 1.9021 1.90363 1.9065 1.90919 1.91257 1.91498 1.91753 1.9189 1.92039 1.92088 1.92234 1.9207 2.4366 2.41452 2.39143 2.36831 2.34637 2.32563 2.30667 2.28855 2.27172 2.25529 2.23968 2.22422 2.20945 2.19487 2.18093 2.16746 2.15486 2.14311 2.13238 2.12259 2.11387 2.10598 2.09883 2.09262 2.08712 2.08269 2.07895 2.07644 2.07433 2.07319 2.07223 2.07194 2.07203 2.0723 2.07261 2.07299 2.07318 2.07313 2.07293 2.07242 2.07191 2.07109 2.07031 2.06901 2.06738 2.06539 2.06304 2.06046 2.05738 2.05411 2.05034 2.04641 2.0421 2.03763 2.03298 2.02811 2.02317 2.01794 2.01274 2.00732 2.00187 1.99636 1.9907 1.98516 1.97937 1.97382 1.96799 1.96247 1.95669 1.95127 1.94561 1.94037 1.93495 1.92998 1.92493 1.92036 1.91583 1.91176 1.9079 1.9045 1.90162 1.8992 1.89753 1.89638 1.89619 1.89643 1.89683 1.89774 1.89984 1.90231 1.90563 1.90838 1.91131 1.91326 1.91512 1.91588 1.91685 1.91701 1.91804 1.91624 2.44611 2.42519 2.4028 2.38051 2.35882 2.33806 2.31862 2.30013 2.28256 2.26553 2.24898 2.23274 2.21686 2.20147 2.18649 2.17235 2.15871 2.14609 2.1343 2.12342 2.11342 2.10432 2.09617 2.08898 2.08275 2.0775 2.07309 2.06957 2.06686 2.06491 2.06349 2.06274 2.06221 2.06223 2.06237 2.06269 2.06295 2.06311 2.063 2.06273 2.06216 2.0616 2.06078 2.05957 2.058 2.05597 2.05373 2.05099 2.048 2.04461 2.04091 2.037 2.03275 2.02843 2.02375 2.01905 2.01403 2.00898 2.0038 1.9985 1.99324 1.98775 1.98242 1.97683 1.97145 1.96584 1.96044 1.95489 1.94952 1.9441 1.93888 1.93366 1.92871 1.92382 1.91924 1.91488 1.91081 1.9071 1.90371 1.90098 1.89861 1.89715 1.89599 1.89602 1.89623 1.8967 1.89794 1.89984 1.90281 1.90595 1.90882 1.91169 1.9135 1.91545 1.91596 1.91682 1.91674 1.91668 1.91684 1.9152 2.44782 2.42884 2.40954 2.39005 2.3709 2.35169 2.33322 2.3148 2.29721 2.27957 2.26265 2.24574 2.22946 2.2135 2.19801 2.18312 2.16869 2.15506 2.14213 2.13007 2.11887 2.10864 2.09919 2.09093 2.08342 2.07693 2.07105 2.06633 2.06225 2.05899 2.05642 2.05413 2.05272 2.05157 2.05087 2.05035 2.05002 2.04978 2.04929 2.04868 2.04777 2.0469 2.04568 2.04422 2.04228 2.04011 2.03764 2.03483 2.03181 2.02839 2.02484 2.02093 2.01689 2.0126 2.00812 2.00352 1.9987 1.99397 1.98903 1.98421 1.9793 1.97441 1.96958 1.96465 1.95987 1.95491 1.95014 1.94518 1.94043 1.93553 1.9309 1.92618 1.9218 1.91744 1.91352 1.90969 1.9064 1.90326 1.90091 1.89884 1.89764 1.89691 1.89702 1.89728 1.89798 1.89941 1.9021 1.9047 1.90825 1.91085 1.91383 1.91554 1.9172 1.91797 1.91813 1.91797 1.91764 1.91707 1.91664 1.91487 2.44811 2.4296 2.41218 2.39503 2.37817 2.36103 2.3438 2.32658 2.30913 2.29217 2.27503 2.25855 2.24201 2.226 2.21013 2.19469 2.1796 2.16515 2.15139 2.1383 2.12615 2.11463 2.10405 2.09417 2.08498 2.07705 2.06973 2.06347 2.05749 2.0526 2.04813 2.04448 2.04156 2.0392 2.03766 2.03626 2.03537 2.03435 2.03356 2.03254 2.0315 2.03028 2.02891 2.02723 2.02519 2.023 2.0205 2.01784 2.01492 2.01176 2.00842 2.00479 2.00104 1.99699 1.99283 1.98844 1.98395 1.97939 1.97469 1.97006 1.96522 1.96061 1.9557 1.95118 1.94627 1.94185 1.937 1.93267 1.92801 1.92379 1.91946 1.91549 1.91162 1.90808 1.90486 1.90188 1.89943 1.89732 1.89598 1.89496 1.89497 1.89532 1.89573 1.89688 1.89852 1.90173 1.90447 1.90805 1.91072 1.91342 1.91523 1.91633 1.91719 1.917 1.91657 1.91607 1.91519 1.91373 1.91259 1.91044 2.4507 2.43203 2.41532 2.39948 2.38402 2.3682 2.35192 2.33514 2.31803 2.30079 2.2837 2.26663 2.24991 2.23331 2.21713 2.20131 2.18595 2.17109 2.15693 2.14322 2.13037 2.11783 2.10636 2.09511 2.08497 2.07515 2.06608 2.05778 2.05029 2.04411 2.03844 2.03395 2.02967 2.02641 2.02367 2.02142 2.0197 2.018 2.01677 2.0153 2.01406 2.01262 2.01115 2.00954 2.00766 2.00574 2.00348 2.00114 1.99853 1.99566 1.9927 1.98929 1.98595 1.98204 1.97824 1.97397 1.96973 1.96526 1.96065 1.9561 1.95128 1.94671 1.94184 1.93729 1.93251 1.92803 1.92342 1.91908 1.91473 1.91068 1.90672 1.90314 1.89975 1.89689 1.89425 1.89213 1.89054 1.88949 1.88922 1.88945 1.89018 1.89085 1.89256 1.89459 1.89802 1.90095 1.90434 1.90705 1.90945 1.91125 1.91216 1.91268 1.9123 1.91183 1.91085 1.90964 1.908 1.90567 1.90412 1.90167 2.45959 2.43833 2.42117 2.40521 2.38973 2.37436 2.35886 2.34294 2.32676 2.31011 2.29339 2.27647 2.25968 2.24301 2.22655 2.21055 2.19464 2.17942 2.16428 2.14991 2.13578 2.12227 2.10934 2.09694 2.08538 2.07435 2.06434 2.05492 2.04635 2.03839 2.03131 2.02522 2.01981 2.01521 2.01139 2.0083 2.00561 2.00336 2.00155 1.99975 1.99848 1.997 1.9958 1.99439 1.99289 1.99128 1.98925 1.98723 1.98465 1.98208 1.97907 1.97585 1.97249 1.96864 1.96497 1.96065 1.95672 1.95212 1.94794 1.94319 1.93884 1.93404 1.92965 1.92489 1.92056 1.91594 1.91174 1.90738 1.90342 1.89948 1.89589 1.89261 1.88962 1.88718 1.88492 1.88357 1.8825 1.8825 1.8828 1.88357 1.88437 1.8867 1.88901 1.89252 1.89566 1.89899 1.90178 1.90406 1.90589 1.90674 1.90718 1.90682 1.90614 1.9054 1.90413 1.90229 1.90018 1.89758 1.89587 1.89337 2.49187 2.46211 2.4381 2.41807 2.39979 2.38255 2.36585 2.34938 2.33313 2.31688 2.30039 2.28391 2.2672 2.25072 2.23417 2.21794 2.20185 2.18598 2.17051 2.15538 2.14069 2.12657 2.11291 2.09992 2.08754 2.0758 2.06478 2.05444 2.04483 2.03603 2.0279 2.02061 2.01392 2.00813 2.00274 1.99844 1.9949 1.99209 1.9898 1.98804 1.98664 1.98529 1.98415 1.98282 1.98159 1.98 1.97832 1.97629 1.97399 1.97143 1.96849 1.96537 1.96185 1.95818 1.95422 1.95017 1.94585 1.94155 1.93695 1.93254 1.92778 1.92337 1.91862 1.91428 1.90969 1.90549 1.90124 1.89728 1.89349 1.88996 1.88679 1.88391 1.88155 1.87939 1.87804 1.87698 1.87698 1.87723 1.87773 1.87875 1.88137 1.88414 1.88767 1.8909 1.89408 1.89702 1.89905 1.90105 1.90175 1.90247 1.90213 1.90179 1.90107 1.89995 1.89817 1.89584 1.89352 1.89068 1.88883 1.88624 2.52896 2.50255 2.47692 2.45087 2.42642 2.40295 2.38129 2.36164 2.34321 2.32549 2.30812 2.29097 2.27398 2.25712 2.24047 2.22396 2.20768 2.19152 2.17568 2.16017 2.14512 2.13047 2.11642 2.10288 2.09002 2.07769 2.06608 2.05502 2.04472 2.03512 2.02641 2.01847 2.0115 2.0053 1.99976 1.99505 1.99108 1.98767 1.98504 1.98272 1.98086 1.97927 1.97803 1.97686 1.9757 1.97447 1.97294 1.97127 1.96914 1.96686 1.96407 1.96115 1.95781 1.95432 1.95058 1.94665 1.94259 1.93831 1.93399 1.92946 1.92502 1.92037 1.91596 1.91137 1.90712 1.90279 1.89881 1.89497 1.89143 1.88828 1.8854 1.88312 1.88105 1.87975 1.87893 1.87888 1.8791 1.87951 1.88084 1.88345 1.88618 1.88935 1.89249 1.89524 1.89804 1.89984 1.90165 1.90239 1.90275 1.90252 1.90203 1.90141 1.90018 1.89849 1.8963 1.89385 1.8914 1.88861 1.88666 1.88424 2.54598 2.52452 2.50385 2.48201 2.45877 2.43554 2.41271 2.39029 2.36868 2.34811 2.32847 2.30959 2.29132 2.27345 2.2558 2.23836 2.22095 2.20396 2.18709 2.17098 2.15537 2.14058 2.12636 2.11281 2.09973 2.08716 2.07522 2.06372 2.05316 2.04306 2.03392 2.02538 2.01768 2.01056 2.00418 1.99824 1.99312 1.9888 1.98521 1.98229 1.98014 1.97839 1.97707 1.97592 1.97485 1.97377 1.97245 1.97102 1.96915 1.96713 1.96463 1.96193 1.95884 1.95553 1.95199 1.94818 1.94424 1.94003 1.93577 1.93129 1.92687 1.92226 1.91788 1.91334 1.90917 1.90497 1.90116 1.89756 1.89431 1.89159 1.88914 1.88737 1.88589 1.88527 1.88497 1.88517 1.88564 1.88738 1.88991 1.8928 1.89572 1.89889 1.90136 1.90399 1.90567 1.9071 1.90794 1.90784 1.9075 1.90713 1.90629 1.90531 1.90344 1.90137 1.89896 1.89633 1.89375 1.89088 1.88885 1.88645 2.57267 2.55093 2.53007 2.50938 2.48791 2.46599 2.44386 2.42169 2.39991 2.37862 2.35793 2.33788 2.31817 2.29899 2.28 2.26159 2.24347 2.22598 2.20888 2.19255 2.17657 2.16138 2.14634 2.13222 2.11848 2.10574 2.0935 2.08216 2.07121 2.06087 2.05086 2.04142 2.03236 2.02411 2.01639 2.00965 2.00362 1.9988 1.99478 1.99166 1.98925 1.98732 1.9859 1.98466 1.98366 1.98263 1.98149 1.98027 1.97866 1.97699 1.97472 1.97244 1.96952 1.96665 1.96313 1.95964 1.95558 1.95152 1.94704 1.94255 1.93786 1.93314 1.9285 1.92378 1.91944 1.91507 1.91126 1.90758 1.90458 1.90182 1.89983 1.8981 1.89728 1.89658 1.89665 1.8974 1.89928 1.9016 1.90454 1.90715 1.91023 1.91256 1.91487 1.91657 1.91754 1.91839 1.91811 1.91765 1.91692 1.91627 1.91482 1.91334 1.911 1.90879 1.90619 1.90355 1.90086 1.89804 1.89596 1.89369 2.58688 2.56756 2.54848 2.52899 2.50937 2.48935 2.46936 2.44911 2.42895 2.40875 2.38883 2.3689 2.34957 2.33042 2.3119 2.29364 2.27597 2.25854 2.24165 2.22519 2.2093 2.19411 2.17944 2.16538 2.1517 2.13835 2.12527 2.11238 2.1 2.08778 2.07639 2.06562 2.05581 2.0468 2.03839 2.03112 2.02424 2.01849 2.01312 2.00869 2.00478 2.00155 1.99903 1.99678 1.9953 1.99369 1.99278 1.99136 1.99047 1.98899 1.98768 1.98586 1.98394 1.9816 1.97899 1.97603 1.97268 1.96923 1.9653 1.96152 1.95722 1.95316 1.94883 1.94455 1.94064 1.93629 1.93316 1.9292 1.92705 1.92409 1.92284 1.92093 1.92047 1.91985 1.92069 1.92213 1.9237 1.92599 1.92792 1.93017 1.93195 1.9335 1.93463 1.93515 1.93529 1.93481 1.93374 1.93307 1.9317 1.9306 1.9283 1.92643 1.9237 1.92133 1.91847 1.9157 1.91284 1.90992 1.90774 1.90543 2.59728 2.57788 2.55914 2.5409 2.52323 2.50551 2.48713 2.4685 2.44923 2.43008 2.41103 2.3924 2.3741 2.35635 2.33872 2.32162 2.30463 2.28804 2.27168 2.25562 2.23977 2.22432 2.2089 2.19388 2.17893 2.1645 2.15036 2.13682 2.12373 2.11115 2.09927 2.08729 2.07621 2.06521 2.0554 2.0459 2.03726 2.02943 2.02257 2.01695 2.01217 2.00863 2.00566 2.00356 2.00189 2.00062 1.9997 1.99873 1.99801 1.9969 1.99609 1.99459 1.99337 1.99139 1.9896 1.9872 1.98479 1.98219 1.97912 1.97645 1.9727 1.96995 1.96585 1.96315 1.95922 1.95686 1.95348 1.95171 1.94917 1.94794 1.94636 1.94539 1.94558 1.94634 1.94781 1.94895 1.95093 1.95232 1.95395 1.95507 1.95586 1.95626 1.95607 1.95567 1.95432 1.95322 1.95145 1.95039 1.94826 1.94663 1.94395 1.94175 1.93905 1.93646 1.93372 1.93084 1.92808 1.92515 1.92299 1.92075 2.61574 2.59901 2.58264 2.56521 2.54678 2.52735 2.50744 2.48759 2.46803 2.44878 2.43009 2.41166 2.39373 2.37616 2.35892 2.34206 2.32539 2.30882 2.29245 2.27604 2.25992 2.24405 2.22851 2.2133 2.19843 2.18367 2.16908 2.1545 2.13997 2.12561 2.11163 2.09807 2.08566 2.07375 2.06357 2.05398 2.04616 2.03898 2.03287 2.02744 2.02259 2.01827 2.01447 2.01123 2.00842 2.00626 2.00426 2.00292 2.00143 2.00046 1.99928 1.99823 1.99698 1.99558 1.99405 1.99246 1.99055 1.98876 1.98642 1.98434 1.9817 1.97942 1.97666 1.97446 1.97186 1.97014 1.96798 1.96706 1.96522 1.96477 1.96405 1.96477 1.96564 1.96735 1.9687 1.97092 1.97242 1.97438 1.97572 1.97674 1.97743 1.97733 1.97706 1.976 1.97485 1.97351 1.97196 1.97084 1.96858 1.9669 1.96408 1.96219 1.95916 1.95685 1.95372 1.95102 1.94794 1.94496 1.94262 1.94017 2.62651 2.61147 2.597 2.58126 2.56418 2.54649 2.52818 2.50977 2.49146 2.4733 2.45568 2.43834 2.42147 2.40465 2.38788 2.37092 2.35409 2.33721 2.32077 2.30454 2.28863 2.27295 2.2572 2.24132 2.22521 2.20883 2.1925 2.17638 2.16071 2.14602 2.13205 2.1193 2.10739 2.09647 2.08618 2.07654 2.06729 2.05837 2.04984 2.04205 2.0346 2.02818 2.02227 2.01747 2.01319 2.00978 2.00691 2.00474 2.00296 2.00168 2.00052 1.99971 1.99893 1.99849 1.99779 1.99727 1.99627 1.9954 1.99394 1.99266 1.99079 1.98917 1.98718 1.98538 1.98341 1.98176 1.97962 1.97856 1.97674 1.97685 1.97716 1.97803 1.97919 1.9808 1.98314 1.98468 1.98716 1.98845 1.99009 1.99126 1.99168 1.99248 1.99224 1.99165 1.99115 1.99045 1.98982 1.98837 1.98712 1.98502 1.9828 1.98072 1.97778 1.97574 1.97228 1.97029 1.96662 1.96477 1.96197 1.96092 2.63292 2.61725 2.60321 2.58829 2.57238 2.55551 2.53824 2.52094 2.50402 2.4876 2.47141 2.45528 2.4389 2.4226 2.40633 2.39038 2.37485 2.35942 2.34409 2.32839 2.31199 2.29514 2.27762 2.25991 2.2423 2.22501 2.20853 2.19271 2.17779 2.1636 2.14997 2.13685 2.12405 2.11165 2.09952 2.0879 2.07673 2.0663 2.05643 2.04741 2.03912 2.03188 2.02518 2.01936 2.01415 2.00987 2.00621 2.00335 2.00124 1.99987 1.99902 1.99883 1.99887 1.99904 1.99917 1.99914 1.99897 1.9985 1.99785 1.99645 1.99539 1.99388 1.99295 1.99155 1.99057 1.98991 1.98935 1.98968 1.99047 1.99193 1.99403 1.99602 1.99904 2.0018 2.00486 2.00813 2.01059 2.01347 2.01528 2.01694 2.01805 2.01849 2.01821 2.01754 2.01704 2.01595 2.01498 2.01278 2.01133 2.00836 2.00664 2.00338 2.00146 1.99821 1.99606 1.99322 1.99079 1.98878 1.98669 1.98607 2.6453 2.62931 2.61538 2.60089 2.5855 2.56944 2.55312 2.53676 2.52034 2.50372 2.48727 2.4711 2.45528 2.43992 2.42479 2.40969 2.39411 2.37798 2.36095 2.34332 2.325 2.30687 2.28868 2.27121 2.25426 2.23786 2.22206 2.20649 2.1913 2.17629 2.16151 2.1471 2.13308 2.11948 2.10657 2.09423 2.08258 2.07155 2.0612 2.05149 2.04247 2.03402 2.0263 2.01924 2.01313 2.00791 2.00366 2.00042 1.99824 1.99691 1.99635 1.99641 1.99668 1.99723 1.99761 1.99769 1.99765 1.99743 1.99687 1.99615 1.9953 1.99487 1.99496 1.99523 1.99594 1.99735 1.99954 2.00195 2.00596 2.00922 2.01407 2.0182 2.02263 2.02714 2.03074 2.0344 2.03729 2.0393 2.04127 2.04189 2.04258 2.0422 2.04138 2.04059 2.03961 2.03815 2.03698 2.03453 2.03301 2.03019 2.02856 2.02565 2.02411 2.02111 2.01955 2.0164 2.01478 2.01157 2.01025 2.00753 2.64906 2.6346 2.6222 2.60878 2.59407 2.57861 2.56246 2.54623 2.53012 2.51412 2.49861 2.4836 2.46885 2.45438 2.43942 2.42387 2.4073 2.39013 2.37224 2.35448 2.33653 2.31921 2.30198 2.28523 2.26863 2.25199 2.2357 2.2193 2.20321 2.18741 2.17187 2.15697 2.14237 2.12848 2.11505 2.10229 2.09001 2.07831 2.06723 2.0566 2.04661 2.03699 2.02854 2.02062 2.01395 2.00833 2.00392 2.00084 1.99846 1.99703 1.99626 1.99591 1.99593 1.99607 1.99611 1.99594 1.99561 1.99567 1.9958 1.99615 1.99664 1.9976 1.99923 2.0013 2.00427 2.00734 2.01146 2.01564 2.02051 2.02581 2.03063 2.03635 2.04076 2.04566 2.04948 2.05268 2.05551 2.05709 2.05856 2.05912 2.05911 2.05854 2.05745 2.05662 2.05521 2.05424 2.05228 2.05093 2.04895 2.04725 2.04558 2.04326 2.04184 2.03884 2.03709 2.0333 2.0311 2.02649 2.02434 2.0194 2.65753 2.64287 2.6296 2.61511 2.5994 2.58317 2.56656 2.54993 2.53371 2.51807 2.50309 2.48872 2.4741 2.45921 2.44366 2.42742 2.41083 2.39401 2.3772 2.36046 2.34377 2.32701 2.31017 2.29312 2.27621 2.25905 2.24234 2.22553 2.20932 2.19336 2.17779 2.16282 2.14818 2.13409 2.12052 2.10723 2.09461 2.08233 2.07059 2.05906 2.04843 2.03827 2.02926 2.02116 2.01435 2.0084 2.00365 1.99985 1.99671 1.99454 1.99271 1.99149 1.99086 1.99048 1.98997 1.99001 1.99047 1.99115 1.99249 1.99408 1.99624 1.99864 2.00163 2.00512 2.00911 2.01372 2.01864 2.02416 2.02971 2.03552 2.04121 2.04653 2.05154 2.05591 2.05973 2.06258 2.06535 2.06661 2.06806 2.06864 2.06866 2.06827 2.06774 2.06731 2.06672 2.06604 2.0648 2.06403 2.06244 2.06142 2.05927 2.05772 2.05483 2.05205 2.0487 2.04434 2.04074 2.03508 2.03234 2.02663 2.66319 2.64974 2.63744 2.62391 2.60868 2.59231 2.57552 2.55848 2.54202 2.52589 2.51 2.4943 2.47837 2.46226 2.44615 2.4296 2.41326 2.39669 2.3803 2.36371 2.34707 2.33008 2.31317 2.29599 2.27927 2.26235 2.24613 2.22973 2.21395 2.19819 2.18292 2.16793 2.15339 2.13907 2.12539 2.1116 2.09856 2.08544 2.07299 2.06089 2.04946 2.03892 2.02934 2.02086 2.01335 2.00679 2.00107 1.99624 1.99211 1.9889 1.9862 1.98437 1.98339 1.98301 1.98276 1.98305 1.98411 1.98548 1.98783 1.99016 1.99329 1.99687 2.00094 2.00551 2.01047 2.01603 2.02175 2.02802 2.03403 2.04033 2.04615 2.05155 2.05669 2.06065 2.06461 2.06712 2.0698 2.07095 2.07248 2.07298 2.07332 2.07334 2.07342 2.07359 2.07378 2.07363 2.07323 2.07248 2.07128 2.07005 2.06786 2.06588 2.06265 2.05965 2.05555 2.05155 2.0473 2.04275 2.03973 2.03563 2.66046 2.64759 2.63602 2.62302 2.60827 2.59214 2.5758 2.55888 2.54266 2.52657 2.51094 2.49564 2.48049 2.46539 2.45033 2.43486 2.41922 2.40292 2.38626 2.36904 2.35176 2.33432 2.31722 2.30018 2.28352 2.2669 2.25072 2.23444 2.21892 2.20317 2.18838 2.17329 2.15909 2.14457 2.13079 2.11671 2.10327 2.08978 2.07696 2.06483 2.05327 2.0428 2.03257 2.02338 2.01467 2.00694 1.99993 1.99382 1.9885 1.98417 1.98082 1.97851 1.97751 1.97755 1.97766 1.97828 1.97966 1.98247 1.98494 1.9888 1.99213 1.99671 2.00106 2.00646 2.01195 2.01811 2.02444 2.0311 2.03761 2.04416 2.05015 2.05581 2.06085 2.06499 2.06897 2.0715 2.07431 2.07566 2.07743 2.07804 2.07886 2.07918 2.07948 2.08019 2.08031 2.08012 2.07954 2.07853 2.07721 2.07526 2.07295 2.07022 2.067 2.0635 2.0597 2.05574 2.05189 2.04789 2.04518 2.04191 2.6693 2.65501 2.64245 2.62825 2.61273 2.59535 2.57798 2.56015 2.54335 2.52732 2.5122 2.49838 2.4844 2.47065 2.4557 2.44 2.42334 2.40597 2.3882 2.37022 2.35247 2.33467 2.31736 2.30015 2.28325 2.26671 2.25053 2.23458 2.21939 2.20395 2.18962 2.17467 2.16088 2.14633 2.13272 2.11868 2.10525 2.09202 2.0792 2.06719 2.05529 2.04421 2.03335 2.02307 2.01351 2.00452 1.99654 1.98944 1.98334 1.97853 1.97508 1.97252 1.97228 1.97261 1.97332 1.97427 1.97648 1.97977 1.98311 1.98731 1.99154 1.99649 2.00174 2.00746 2.01372 2.02021 2.0271 2.03388 2.04079 2.0473 2.05359 2.05934 2.06445 2.06904 2.07301 2.07614 2.07932 2.08125 2.08347 2.08483 2.08603 2.08657 2.08758 2.0879 2.08772 2.08723 2.08593 2.08472 2.08259 2.08012 2.07748 2.07418 2.07097 2.06707 2.06357 2.05929 2.05582 2.05157 2.0491 2.04555 2.66707 2.65381 2.64135 2.62625 2.61075 2.59401 2.5784 2.56272 2.54806 2.53392 2.51972 2.50564 2.49015 2.47462 2.45805 2.44141 2.42412 2.40684 2.3892 2.37158 2.35406 2.33627 2.3191 2.30164 2.28483 2.26812 2.25195 2.23589 2.22055 2.20509 2.19067 2.17575 2.16212 2.14778 2.13464 2.12114 2.10839 2.09589 2.08325 2.07103 2.05833 2.04632 2.03455 2.02328 2.01286 2.00311 1.99431 1.98691 1.9805 1.97559 1.97205 1.96963 1.96923 1.96959 1.9704 1.97116 1.97332 1.97658 1.98047 1.98488 1.98986 1.99527 2.00117 2.00739 2.01397 2.02068 2.02766 2.03448 2.04137 2.04785 2.05421 2.05997 2.06563 2.07059 2.07538 2.07962 2.0833 2.08663 2.08933 2.09139 2.09282 2.09398 2.09446 2.09436 2.09372 2.09278 2.09054 2.08895 2.0857 2.08322 2.07993 2.07634 2.07321 2.06904 2.06592 2.06131 2.05833 2.05362 2.05143 2.04738 2.67121 2.6567 2.64241 2.62631 2.61095 2.59551 2.58197 2.56835 2.55449 2.53976 2.52376 2.50771 2.49053 2.47388 2.45669 2.44002 2.42299 2.40615 2.38876 2.37133 2.35371 2.33565 2.31822 2.30045 2.28352 2.26666 2.25063 2.23483 2.22001 2.20517 2.19154 2.1775 2.16494 2.15163 2.13922 2.12616 2.11287 2.09961 2.08556 2.07228 2.05855 2.04542 2.03273 2.02058 2.00958 1.99971 1.99077 1.98347 1.9771 1.97214 1.96845 1.96597 1.96513 1.96542 1.9661 1.96672 1.96865 1.97229 1.97656 1.98168 1.9875 1.99362 2.00049 2.00719 2.01449 2.02128 2.02838 2.03503 2.0417 2.04796 2.05418 2.05997 2.06578 2.07113 2.07636 2.08126 2.0854 2.08967 2.09244 2.09528 2.09679 2.09802 2.09831 2.09814 2.09727 2.09618 2.0937 2.09207 2.08867 2.08667 2.083 2.08012 2.07718 2.07285 2.07037 2.06534 2.06268 2.05743 2.05515 2.0503 2.66996 2.65473 2.64093 2.62687 2.61436 2.60234 2.59063 2.57735 2.5622 2.54572 2.52753 2.50969 2.49146 2.4744 2.45752 2.44106 2.42408 2.40681 2.38873 2.37047 2.35197 2.33326 2.31498 2.29652 2.27892 2.26173 2.24594 2.231 2.21777 2.20507 2.19378 2.18179 2.17051 2.15765 2.14484 2.13098 2.11635 2.10181 2.08619 2.0715 2.05662 2.04273 2.02991 2.01778 2.00699 1.99719 1.98846 1.98099 1.97464 1.96924 1.96525 1.96228 1.96091 1.96099 1.96135 1.96172 1.96348 1.96703 1.97167 1.97738 1.98377 1.99086 1.99833 2.00589 2.01366 2.02089 2.02813 2.03482 2.04115 2.0475 2.0532 2.05922 2.06467 2.07046 2.0755 2.08103 2.08519 2.08993 2.09288 2.09609 2.09764 2.0992 2.0998 2.09969 2.09904 2.09816 2.09614 2.09476 2.09186 2.09019 2.08691 2.0845 2.0818 2.07756 2.07523 2.07017 2.06738 2.06178 2.05932 2.05377 2.67092 2.6526 2.63768 2.62512 2.61375 2.60328 2.59129 2.57783 2.56202 2.5453 2.52716 2.51002 2.49295 2.47707 2.46129 2.44548 2.4288 2.41193 2.39406 2.37641 2.3581 2.33976 2.32123 2.30271 2.28471 2.26745 2.2514 2.23639 2.2228 2.20957 2.19743 2.18446 2.1722 2.15844 2.14492 2.13048 2.11571 2.10142 2.08651 2.07295 2.05929 2.04653 2.03474 2.02333 2.0131 2.0035 1.99482 1.98669 1.97999 1.9735 1.96874 1.96462 1.96254 1.9615 1.96148 1.96143 1.9628 1.96599 1.97078 1.97661 1.98325 1.99061 1.99811 2.00586 2.01347 2.02059 2.02766 2.03393 2.04025 2.04614 2.05204 2.05788 2.06386 2.06963 2.0756 2.0811 2.08625 2.09101 2.09461 2.09757 2.09959 2.10084 2.10101 2.10077 2.09972 2.09853 2.09591 2.09425 2.09088 2.08901 2.08535 2.08282 2.07972 2.07531 2.07279 2.06738 2.06447 2.05861 2.05602 2.05015 2.67341 2.65211 2.63595 2.62372 2.61257 2.6021 2.58946 2.5755 2.55926 2.54263 2.52498 2.5087 2.49262 2.47734 2.4621 2.44653 2.43039 2.414 2.39674 2.37943 2.36111 2.34261 2.32367 2.305 2.28691 2.26984 2.25404 2.23926 2.22568 2.21222 2.1995 2.18585 2.17271 2.15821 2.14416 2.1295 2.11489 2.10117 2.08701 2.07459 2.06201 2.05057 2.03977 2.02944 2.01961 2.01055 2.00173 1.99344 1.9864 1.97922 1.97402 1.96915 1.96664 1.96493 1.96465 1.96393 1.96509 1.96798 1.97248 1.97822 1.98466 1.99195 1.99929 2.00696 2.01437 2.0214 2.02815 2.03436 2.04037 2.04625 2.05195 2.05802 2.06398 2.07038 2.07655 2.08255 2.08836 2.09305 2.09706 2.10008 2.10183 2.10248 2.10241 2.10185 2.10004 2.09831 2.09478 2.09271 2.08858 2.0864 2.08221 2.07957 2.07592 2.0717 2.06895 2.06344 2.06062 2.05492 2.05241 2.04686 ) ; boundaryField { inlet { type fixedValue; value uniform 1; } outlet { type zeroGradient; } bottom { type symmetryPlane; } top { type symmetryPlane; } obstacle { type zeroGradient; } defaultFaces { type empty; } } // ************************************************************************* //
603d6d8a86c41f6c2786a59695f69556f9dcd2b1
1c9ef57b9985f792a4f76ece97b928325b68f258
/src/exmachina/ExMachina.h
f1eb0fe089a6fc2573fc996ee45b8bac81de8015
[]
no_license
seapp/seapp_stable
99dbbfddf867d3bc6cf783cdadeb0700d78bb86c
75bde5636917610b04e0dcaec21fbd3438063b79
refs/heads/master
2020-05-21T04:53:01.982169
2019-12-30T11:51:44
2019-12-30T11:51:44
46,110,278
3
2
null
null
null
null
UTF-8
C++
false
false
601
h
ExMachina.h
/** * @file ExMachina.h * @author Francesco Racciatti <racciatti.francesco@gmail.com> * * @brief Experimental module. Executes ony disable. To extend for all physical attacks. */ #ifndef EXMACHINA_H #define EXMACHINA_H #include <omnetpp.h> #include <vector> #include "AttackEntry.h" using namespace std; class ExMachina : public cSimpleModule{ protected: virtual void initialize(); virtual void handleMessage(cMessage* msg); virtual void finishSpecific(); public: ExMachina(); virtual ~ExMachina(); void scheduleDisableAttack(AttackEntry* attack); }; #endif
7a049688d05927a175acb36d4e29208ea45bcd2a
71919dcc47a5f0003ff18e45cf0e61d2246157e0
/samples/RandomTest/RandomTest.cpp
099b8fc67846c568c1f4f9bcfc297eeb83c404a6
[ "BSD-2-Clause" ]
permissive
lygstate/turf
f8350840b7453038556daf112057241988f865c0
e1c36023e3da860d132e1e1e8e978d905e04c62a
refs/heads/master
2022-08-24T02:16:58.707574
2020-05-17T06:08:44
2020-05-17T06:08:44
264,595,494
0
0
NOASSERTION
2020-05-17T06:04:04
2020-05-17T06:04:03
null
UTF-8
C++
false
false
1,638
cpp
RandomTest.cpp
/*------------------------------------------------------------------------ Turf: Configurable C++ platform adapter Copyright (c) 2016 Jeff Preshing Distributed under the Simplified BSD License. Original location: https://github.com/preshing/turf This software is distributed WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the LICENSE file for more information. ------------------------------------------------------------------------*/ #include <turf/Core.h> #include <turf/extra/Random.h> #include <stdio.h> #include <stdlib.h> #include <algorithm> #include <string.h> //#include <random> using namespace turf::intTypes; int main() { static const ureg NumBuckets = 65536; u64* buckets = new u64[NumBuckets]; u64* copy = new u64[NumBuckets]; memset(buckets, 0, sizeof(u64) * NumBuckets); turf::extra::Random rand; // std::default_random_engine generator; // std::uniform_int_distribution<u32> distribution; for (;;) { for (ureg i = 0; i < 100000; i++) { u32 v = rand.next32(); // u32 v = distribution(generator); ureg index = ureg(v / float(4294967297.0f / NumBuckets)); buckets[index]++; } for (ureg i = 0; i < NumBuckets; i++) copy[i] = buckets[i]; std::sort(copy, copy + NumBuckets); for (ureg i = 0; i < 3; i++) printf("%" TURF_U64D " ", copy[i]); for (ureg i = NumBuckets - 3; i < NumBuckets; i++) printf("%" TURF_U64D " ", copy[i]); printf("\n"); } return 0; }
1325282f596f1ef809db1c744b5e28b4c51527fc
90b5c555b4e1ba763e405183a6c5defaba1720bc
/Crucible_Game/Hud.cpp
360395697f7423c35fc8be8a7ca33d92411c1426
[]
no_license
AaronCC/The_Crucible
b42abc29619c41f43d5bf4f88209eeeb32bbf077
7125c66a46971008647a9c7a3c4c0371d148e8e0
refs/heads/master
2021-04-09T14:26:14.717276
2018-04-29T22:21:34
2018-04-29T22:21:34
125,675,243
1
0
null
null
null
null
UTF-8
C++
false
false
23,656
cpp
Hud.cpp
#include "Hud.h" std::pair<int, int> Hud::checkLevelClick() { int stat = -1; std::string msg = this->levelButtons.getEMsg(oldMousePos); if (msg == "atk") stat = 0; else if (msg == "kno") stat = 1; else if (msg == "def") stat = 2; else if (msg == "agi") stat = 3; if (stat != -1) levelCache--; return { stat, 1 }; } void Hud::updateExpBar(int exp, int maxExp, int level) { float prc = exp / (float)maxExp; levelText.setString("Player Level: " + std::to_string(level)); expText.setString(std::to_string(exp) + "/" + std::to_string(maxExp)); expBar.setSize({ prc * 100,TILE_SIZE / 4 }); } void Hud::levelUp() { levelCache++; } void Hud::updateDLevelText(int level) { dungeonLevelText.setString("Dungeon Level: " + std::to_string(level)); } void Hud::setSlotSprites(std::vector<std::pair<sf::Keyboard::Key, std::string>> slotSpriteIDs, std::string lmbID, std::string rmbID) { unsigned int idNum = 0; aSlotSprites.clear(); for (auto id : slotSpriteIDs) { if (id.second == "") { this->aSlotSprites[id.first].second = false; idNum++; continue; } this->aSlotSprites[id.first].second = true; this->aSlotSprites[id.first].first.setTexture(this->game->texmgr.getRef(id.second)); this->aSlotSprites[id.first].first.setOrigin(0, 32.f); this->aSlotSprites[id.first].first.setPosition(elements[A_SLOT + std::to_string(idNum)].getPosition()); idNum++; } sf::Vector2f pos{ 0,0 }; if (lmbID == "") this->lmbSprite.second = false; else { this->lmbSprite.second = true; this->lmbSprite.first.setTexture(this->game->texmgr.getRef(lmbID)); this->lmbSprite.first.setOrigin(0, 32.f); this->lmbSprite.first.setTextureRect({ 0, 0, 32, 32 }); pos = elements[A_SLOT + std::to_string(A_SLOT_COUNT - 2)].getPosition(); this->lmbSprite.first.setPosition(pos); } if (rmbID == "") this->rmbSprite.second = false; else { this->rmbSprite.second = true; this->rmbSprite.first.setTexture(this->game->texmgr.getRef(rmbID)); this->rmbSprite.first.setOrigin(0, 32.f); this->rmbSprite.first.setTextureRect({ 0, 0, 32, 32 }); this->rmbSprite.first.setPosition(elements[A_SLOT + std::to_string(A_SLOT_COUNT - 1)].getPosition()); } } void Hud::equipCon() { if (consumables.size() == 0) return; Consumable temp = consumables[0]; consumables[0] = consumables[conAt]; consumables[conAt] = temp; showCons(); } void Hud::addConsumable(Consumable * con) { for (int i = 0; i < consumables.size(); i++) { Consumable& _con = consumables[i]; if (con->name == _con.name && con->ilvl == _con.ilvl) { _con.add(); return; } } con->setSpritePos(conPos); consumables.push_back(*con); } bool Hud::hoverCon(sf::Vector2f mPos) { if (consumables.size() <= 0) return false; sf::Vector2f size = { slotW, slotW }; sf::Vector2f pos = conPos; if (conHover) { int diff = (consumables.size() - 1) * slotW; size.y += diff; pos.y -= diff; } if ( mPos.x >= pos.x && mPos.y >= pos.y && mPos.x <= pos.x + size.x && mPos.y <= pos.y + size.y ) { conAt = std::floor(((conPos.y + slotW) - mPos.y) / slotW); if (conAt >= consumables.size()) conAt = consumables.size() - 1; conHoverText.setString(consumables[conAt].name + "\n" + consumables[conAt].getEffectString()); conHoverText.setPosition({ conPos.x + slotW + 4.f,conPos.y - (slotW*conAt) }); return true; } return false; } void Hud::showCons() { for (int i = 0; i < consumables.size(); i++) { consumables[i].setSpritePos(conPos - sf::Vector2f(0, slotW*i)); } conHover = true; } void Hud::draw(float dt) { for (auto element : elements) { this->game->window.draw(element.second); } for (int i = 0; i < A_SLOT_COUNT; i++) { this->game->window.draw(slotText[i]); } for (auto slot : aSlotSprites) { if (slot.second.second) this->game->window.draw(slot.second.first); } if (rmbSprite.second) { this->game->window.draw(rmbSprite.first); } if (lmbSprite.second) { this->game->window.draw(lmbSprite.first); } for (int cd = 0; cd < A_SLOT_COUNT; cd++) { if (cooldowns[cd].active) { sf::Vector2f pos = elements[A_SLOT + std::to_string(cd)].getPosition(); pos.y += cooldowns[cd].bounds.top; cdSprite.setPosition(pos); cdSprite.setTextureRect(cooldowns[cd].bounds); this->game->window.draw(cdSprite); } } this->game->window.draw(conText); this->game->window.draw(hpText); if (consumables.size() > 0) { consumables[0].draw(this->game->window); if (conHover) { for (int i = 1; i < consumables.size(); i++) { consumables[i].draw(this->game->window); } this->game->window.draw(conHoverText); } } else this->game->window.draw(conBack); this->game->window.draw(expBack); this->game->window.draw(expBar); this->game->window.draw(expText); this->game->window.draw(levelText); this->game->window.draw(dungeonLevelText); if (levelCache > 0) this->levelButtons.draw(this->game->window, dt); sf::Vector2f offset = { 0,0 }; if (showState != ShowState::SHOW_NONE) { this->game->window.draw(msgBack); if (showState == Hud::ShowState::SHOW_MSG) { for (int i = this->game->gameMsgs.size()-1; i >= 0; i--) { this->game->gameMsgs[i].setPosition(msgStart + offset); this->game->window.draw(this->game->gameMsgs[i]); offset.y -= tSize; } this->game->window.draw(msgTitle); } } } void Hud::updateCD(unsigned int slot, float ticks) { if (cooldowns[slot].active) { cooldowns[slot].timer -= ticks; } } void Hud::checkHover(sf::View view) { sf::Vector2f mousePos = this->game->window.mapPixelToCoords(sf::Mouse::getPosition(this->game->window), view); if (levelCache > 0) { this->levelButtons.highlight(this->levelButtons.getElement(mousePos)); } if (showState == Hud::ShowState::SHOW_NONE) { if (oldMousePos != mousePos) { if (hoverCon(mousePos)) showCons(); else conHover = false; } } oldMousePos = mousePos; } void Hud::update(float dt) { if (levelCache > 0) { levelButtons.update(dt); } for (int cd = 0; cd < A_SLOT_COUNT; cd++) { if (cooldowns[cd].active) { //cooldowns[cd].timer -= dt; if (cooldowns[cd].timer < 0) { cooldowns[cd].active = false; cooldowns[cd].timer = 0; } else { float remaining = cooldowns[cd].timer / cooldowns[cd].totalTime; int newH = (1.f - remaining)*slotW; cooldowns[cd].bounds = sf::IntRect( cooldowns[cd].bounds.left, newH, slotW, (int)(slotW * remaining) ); } } } } void Hud::updateHealth(int at, int max, float percent) { sf::IntRect hRect = elements[H_GLOBE].getTextureRect(); int newH = (1.f - percent)*(float)hRect.height; elements[H_POOL].setTextureRect({ 0, newH,hRect.width,(int)(hRect.height * percent) }); sf::Vector2f pos = elements[H_GLOBE].getPosition(); elements[H_POOL].setPosition(pos.x, pos.y + newH); hpText.setString(std::to_string(at) + "/" + std::to_string(max)); } Consumable::ConEffect Hud::useConsumable() { Consumable::ConEffect eff{}; if (consumables.size() > 0) { eff = consumables[0].getEffect(); if (consumables[0].use()) { consumables.erase(consumables.begin()); showCons(); } } return eff; } void Hud::handleInput() { } Hud::~Hud() { } // //void Inventory::updateAutoScroll() //{ // Item* itm = eqItems[2].first.getItem(); // if (itm != nullptr) // { // Ability* autoAttack = new Ability(this->game, game->texmgr.getRef("slash"), "slash_icon", // { 0,3,0.1f }, { 32,32 }, Ability::ID::SLASH, 10, 1, "Default Attack", // "Melee targeted attack"); // autoAttack->setInfo(Ability::AbInfo(Ability::AbPrmType::MELEE, Ability::AbSecType::TARG, 0, 1)); // autoAttack->addEffect(itm->getEffectFromMAH()); // autoScroll = new Scroll("Slash", // { 0,0,0,0 }, // Item::SlotType::SCR, // autoAttack); // } //} std::vector<Ability*> Inventory::getScrollAbilities() { std::vector<Ability*> abilities; for (int i = 0; i < eqScrolls.size(); i++) { Item* itm = eqScrolls[i].first.getItem(); if (itm != nullptr) abilities.push_back(itm->getAbility()); } return abilities; } bool Inventory::pickupItem(Item * item) { int slot = firstEmptySlot(itemSlots); if (slot != -1) { itemSlots[slot].setItem(item); return true; } return false; } bool Inventory::pickupScroll(Scroll * item) { int slot = firstEmptySlot(scrollSlots); if (slot != -1) { scrollSlots[slot].setItem(item); return true; } return false; } void Inventory::draw() { this->game->window.draw(slider); this->game->window.draw(invTitle); this->game->window.draw(deleteButton.first); this->game->window.draw(deleteButton.second); for (int i = slotScIndex; i < maxScHeight + slotScIndex; i++) { if (i >= itemSlots.size()) break; itemTextBack.setPosition(itemSlots[i].position); this->game->window.draw(itemSlots[i].slotBack); for (auto text : itemSlots[i].itemText) { this->game->window.draw(text); } } for (auto slot : eqItems) { this->game->window.draw(slot.first.slotBack); for (auto text : slot.first.itemText) { this->game->window.draw(text); } this->game->window.draw(slot.second); } for (int i = slotScIndex; i < maxScHeight + slotScIndex; i++) { if (i >= scrollSlots.size()) break; itemTextBack.setPosition(scrollSlots[i].position); this->game->window.draw(scrollSlots[i].slotBack); for (auto text : scrollSlots[i].itemText) { this->game->window.draw(text); } } for (auto slot : eqScrolls) { this->game->window.draw(slot.first.slotBack); for (auto text : slot.first.itemText) { this->game->window.draw(text); } this->game->window.draw(slot.second); } if (showInfo) { switch (hovType) { case Hovering::EQI: { if (eqItems[hovering].first.nameInfoText.size() > 0) { this->game->window.draw(eqItems[hovering].first.infoBack); for (auto text : eqItems[hovering].first.nameInfoText) { this->game->window.draw(text); } for (auto text : eqItems[hovering].first.baseInfoText) { this->game->window.draw(text); } this->game->window.draw(eqItems[hovering].first.seperatorText); for (auto text : eqItems[hovering].first.buffInfoText) { this->game->window.draw(text); } this->game->window.draw(eqItems[hovering].first.slotTypeText); } break; } case Hovering::ITM: { if (itemSlots[hovering].nameInfoText.size() > 0) { this->game->window.draw(itemSlots[hovering].infoBack); for (auto text : itemSlots[hovering].nameInfoText) { this->game->window.draw(text); } for (auto text : itemSlots[hovering].baseInfoText) { this->game->window.draw(text); } this->game->window.draw(itemSlots[hovering].seperatorText); for (auto text : itemSlots[hovering].buffInfoText) { this->game->window.draw(text); } this->game->window.draw(itemSlots[hovering].slotTypeText); } break; } case Hovering::EQS: { if (eqScrolls[hovering].first.nameInfoText.size() > 0) { this->game->window.draw(eqScrolls[hovering].first.infoBack); for (auto text : eqScrolls[hovering].first.nameInfoText) { this->game->window.draw(text); } for (auto text : eqScrolls[hovering].first.baseInfoText) { this->game->window.draw(text); } for (auto text : eqScrolls[hovering].first.buffInfoText) { this->game->window.draw(text); } this->game->window.draw(eqScrolls[hovering].first.slotTypeText); } break; } case Hovering::SCR: { if (scrollSlots[hovering].nameInfoText.size() > 0) { this->game->window.draw(scrollSlots[hovering].infoBack); for (auto text : scrollSlots[hovering].nameInfoText) { this->game->window.draw(text); } for (auto text : scrollSlots[hovering].baseInfoText) { this->game->window.draw(text); } for (auto text : scrollSlots[hovering].buffInfoText) { this->game->window.draw(text); } this->game->window.draw(scrollSlots[hovering].slotTypeText); } break; } } } } void Inventory::update(sf::Vector2f mousePos) { mousePos.y = mousePos.y >= MSG_BACK_H - invSlotH ? MSG_BACK_H - invSlotH : mousePos.y; showInfo = false; float offset = 0.f; int index = 0; for (int s = slotScIndex; s < scrollSlots.size(); s++) { /*if (s >= slots.size()) break;*/ scrollSlots[s].updatePos({ scrollSlots[s].start.x + (xOffset * (int)scrollSlots[s].equipped), scrollSlots[s].start.y + (spacing * index) }); for (int i = 0; i < scrollSlots[s].itemText.size(); i++) { int textL = scrollSlots[s].itemText[i].getString().getSize(); offset = (((scrollSlots[s].maxNameChar + 1) - textL) / 2.f)*(charWidth); scrollSlots[s].itemText[i].setPosition(scrollSlots[s].position.x + offset, scrollSlots[s].position.y + (i*tSize)); } if (scrollSlots[s].isHovering(mousePos)) { hovType = Hovering::SCR; hoveringEq = false; hovering = s; showInfo = true; } else if (isHoveringDelete(mousePos)) { delHover = true; } else delHover = false; index++; } for (int s = 0; s < eqScrolls.size(); s++) { for (int i = 0; i < eqScrolls[s].first.itemText.size(); i++) { int textL = eqScrolls[s].first.itemText[i].getString().getSize(); offset = (((eqScrolls[s].first.maxNameChar + 1) - textL) / 2.f)*(charWidth); eqScrolls[s].first.itemText[i].setPosition(eqScrolls[s].first.position.x + offset, eqScrolls[s].first.position.y + (i*tSize)); } if (eqScrolls[s].first.isHovering(mousePos)) { hovType = Hovering::EQS; hoveringEq = true; hovering = s; showInfo = true; } index++; } index = 0; for (int s = slotScIndex; s < itemSlots.size(); s++) { /*if (s >= slots.size()) break;*/ itemSlots[s].updatePos({ itemSlots[s].start.x + (xOffset * (int)itemSlots[s].equipped), itemSlots[s].start.y + (spacing * index) }); for (int i = 0; i < itemSlots[s].itemText.size(); i++) { int textL = itemSlots[s].itemText[i].getString().getSize(); offset = (((itemSlots[s].maxNameChar + 1) - textL) / 2.f)*(charWidth); itemSlots[s].itemText[i].setPosition(itemSlots[s].position.x + offset, itemSlots[s].position.y + (i*tSize)); } if (itemSlots[s].isHovering(mousePos)) { hovType = Hovering::ITM; hoveringEq = false; hovering = s; showInfo = true; } else if (isHoveringDelete(mousePos)) { delHover = true; } else delHover = false; index++; } for (int s = 0; s < eqItems.size(); s++) { for (int i = 0; i < eqItems[s].first.itemText.size(); i++) { int textL = eqItems[s].first.itemText[i].getString().getSize(); offset = (((eqItems[s].first.maxNameChar + 1) - textL) / 2.f)*(charWidth); eqItems[s].first.itemText[i].setPosition(eqItems[s].first.position.x + offset, eqItems[s].first.position.y + (i*tSize)); } if (eqItems[s].first.isHovering(mousePos)) { hovType = Hovering::EQI; hoveringEq = true; hovering = s; showInfo = true; } index++; } if (showInfo) { int textL; int ySpacing = tSize + 4; mousePos += {2, 2}; if (mousePos.x + infoWidth > game->windowSize.x) mousePos.x = game->windowSize.x - infoWidth; switch (hovType) { case Hovering::EQI: { int nSize = eqItems[hovering].first.nameInfoText.size() + 3; int ln = nSize + eqItems[hovering].first.baseInfoText.size() + 2; float slotH = (ySpacing + 2) * ((float)ln + eqItems[hovering].first.buffInfoText.size()); if (mousePos.y + slotH > game->windowSize.y) mousePos.y = game->windowSize.y - slotH; for (int i = 0; i < eqItems[hovering].first.nameInfoText.size(); i++) { textL = eqItems[hovering].first.nameInfoText[i].getString().getSize(); offset = (((eqItems[hovering].first.maxInfoChar + 1) - textL) / 2.f)*(charWidth); eqItems[hovering].first.nameInfoText[i].setPosition(mousePos.x + offset, mousePos.y + (i*ySpacing)); } textL = eqItems[hovering].first.slotTypeText.getString().getSize(); offset = (((eqItems[hovering].first.maxInfoChar + 1) - textL) / 2.f)*(charWidth); eqItems[hovering].first.slotTypeText.setPosition(mousePos.x + offset, mousePos.y + ((nSize - 2)*ySpacing)); int baseSize = eqItems[hovering].first.baseInfoText.size(); for (int i = 0; i < baseSize; i++) { textL = eqItems[hovering].first.baseInfoText[i].getString().getSize(); offset = (((eqItems[hovering].first.maxInfoChar + 1) - textL) / 2.f)*(charWidth); eqItems[hovering].first.baseInfoText[i].setPosition(mousePos.x + offset, mousePos.y + ((i + nSize)*ySpacing)); } eqItems[hovering].first.seperatorText.setPosition(mousePos.x + (infoWidth / 2) - (charWidth * 2), mousePos.y + ((baseSize + nSize)*ySpacing)); nSize += eqItems[hovering].first.baseInfoText.size() + 2; for (int i = 0; i < eqItems[hovering].first.buffInfoText.size(); i++) { textL = eqItems[hovering].first.buffInfoText[i].getString().getSize(); offset = (((eqItems[hovering].first.maxInfoChar + 1) - textL) / 2.f)*(charWidth); eqItems[hovering].first.buffInfoText[i].setPosition(mousePos.x + offset, mousePos.y + ((i + nSize)*ySpacing)); } itemInfoBack.setPosition(mousePos); eqItems[hovering].first.infoBack.setPosition(mousePos); eqItems[hovering].first.infoBack.setSize({ infoWidth, (ySpacing + 2) * ((float)nSize + eqItems[hovering].first.buffInfoText.size()) }); break; } case Hovering::ITM: { int nSize = itemSlots[hovering].nameInfoText.size() + 3; int ln = nSize + itemSlots[hovering].baseInfoText.size() + 2; float slotH = (ySpacing + 2) * ((float)ln + itemSlots[hovering].buffInfoText.size()); if (mousePos.y + slotH > game->windowSize.y) mousePos.y = game->windowSize.y - slotH; for (int i = 0; i < itemSlots[hovering].nameInfoText.size(); i++) { textL = itemSlots[hovering].nameInfoText[i].getString().getSize(); offset = (((itemSlots[hovering].maxInfoChar + 1) - textL) / 2.f)*(charWidth); itemSlots[hovering].nameInfoText[i].setPosition(mousePos.x + offset, mousePos.y + (i*ySpacing)); } textL = itemSlots[hovering].slotTypeText.getString().getSize(); offset = (((itemSlots[hovering].maxInfoChar + 1) - textL) / 2.f)*(charWidth); itemSlots[hovering].slotTypeText.setPosition(mousePos.x + offset, mousePos.y + ((nSize - 2)*ySpacing)); int baseSize = itemSlots[hovering].baseInfoText.size(); for (int i = 0; i < baseSize; i++) { textL = itemSlots[hovering].baseInfoText[i].getString().getSize(); offset = (((itemSlots[hovering].maxInfoChar + 1) - textL) / 2.f)*(charWidth); itemSlots[hovering].baseInfoText[i].setPosition(mousePos.x + offset, mousePos.y + ((i + nSize)*ySpacing)); } itemSlots[hovering].seperatorText.setPosition(mousePos.x + (infoWidth / 2) - (charWidth * 2), mousePos.y + ((baseSize + nSize)*ySpacing)); nSize += itemSlots[hovering].baseInfoText.size() + 2; for (int i = 0; i < itemSlots[hovering].buffInfoText.size(); i++) { textL = itemSlots[hovering].buffInfoText[i].getString().getSize(); offset = (((itemSlots[hovering].maxInfoChar + 1) - textL) / 2.f)*(charWidth); itemSlots[hovering].buffInfoText[i].setPosition(mousePos.x + offset, mousePos.y + ((i + nSize)*ySpacing)); } itemInfoBack.setPosition(mousePos); itemSlots[hovering].infoBack.setPosition(mousePos); itemSlots[hovering].infoBack.setSize({ infoWidth, (ySpacing + 2) * ((float)nSize + itemSlots[hovering].buffInfoText.size()) }); break; } case Hovering::EQS: { int nSize = eqScrolls[hovering].first.nameInfoText.size() + 3; int ln = nSize + eqScrolls[hovering].first.baseInfoText.size() + 2; float slotH = (ySpacing + 2) * ((float)ln + eqScrolls[hovering].first.buffInfoText.size()) + tSize; if (mousePos.y + slotH > game->windowSize.y) mousePos.y = game->windowSize.y - slotH; for (int i = 0; i < eqScrolls[hovering].first.nameInfoText.size(); i++) { textL = eqScrolls[hovering].first.nameInfoText[i].getString().getSize(); offset = (((eqScrolls[hovering].first.maxInfoChar + 1) - textL) / 2.f)*(charWidth); eqScrolls[hovering].first.nameInfoText[i].setPosition(mousePos.x + offset, mousePos.y + (i*ySpacing)); } textL = eqScrolls[hovering].first.slotTypeText.getString().getSize(); offset = (((eqScrolls[hovering].first.maxInfoChar + 1) - textL) / 2.f)*(charWidth); eqScrolls[hovering].first.slotTypeText.setPosition(mousePos.x + offset, mousePos.y + ((nSize - 2)*ySpacing)); /* for (int i = 0; i < eqScrolls[hovering].first.baseInfoText.size(); i++) { textL = eqScrolls[hovering].first.baseInfoText[i].getString().getSize(); offset = (((eqScrolls[hovering].first.maxInfoChar + 1) - textL) / 2.f)*(charWidth); eqScrolls[hovering].first.baseInfoText[i].setPosition(mousePos.x + offset, mousePos.y + ((i + nSize)*ySpacing)); } nSize += eqScrolls[hovering].first.baseInfoText.size() + 1;*/ for (int i = 0; i < eqScrolls[hovering].first.buffInfoText.size(); i++) { textL = eqScrolls[hovering].first.buffInfoText[i].getString().getSize(); offset = (((eqScrolls[hovering].first.maxInfoChar + 1) - textL) / 2.f)*(charWidth); eqScrolls[hovering].first.buffInfoText[i].setPosition(mousePos.x + offset, mousePos.y + ((i + nSize)*ySpacing)); } itemInfoBack.setPosition(mousePos); eqScrolls[hovering].first.infoBack.setPosition(mousePos); eqScrolls[hovering].first.infoBack.setSize({ infoWidth, (ySpacing + 2) * ((float)nSize + eqScrolls[hovering].first.buffInfoText.size()) }); break; } case Hovering::SCR: { int nSize = scrollSlots[hovering].nameInfoText.size() + 3; int ln = nSize + scrollSlots[hovering].baseInfoText.size() + 2; float slotH = (ySpacing + 2) * ((float)ln + scrollSlots[hovering].buffInfoText.size()); if (mousePos.y + slotH > game->windowSize.y) mousePos.y = game->windowSize.y - slotH; for (int i = 0; i < scrollSlots[hovering].nameInfoText.size(); i++) { textL = scrollSlots[hovering].nameInfoText[i].getString().getSize(); offset = (((scrollSlots[hovering].maxInfoChar + 1) - textL) / 2.f)*(charWidth); scrollSlots[hovering].nameInfoText[i].setPosition(mousePos.x + offset, mousePos.y + (i*ySpacing)); } textL = scrollSlots[hovering].slotTypeText.getString().getSize(); offset = (((scrollSlots[hovering].maxInfoChar + 1) - textL) / 2.f)*(charWidth); scrollSlots[hovering].slotTypeText.setPosition(mousePos.x + offset, mousePos.y + ((nSize - 2)*ySpacing)); /* for (int i = 0; i < scrollSlots[hovering].baseInfoText.size(); i++) { textL = scrollSlots[hovering].baseInfoText[i].getString().getSize(); offset = (((scrollSlots[hovering].maxInfoChar + 1) - textL) / 2.f)*(charWidth); scrollSlots[hovering].baseInfoText[i].setPosition(mousePos.x + offset, mousePos.y + ((i + nSize)*ySpacing)); } nSize += scrollSlots[hovering].baseInfoText.size() + 1;*/ for (int i = 0; i < scrollSlots[hovering].buffInfoText.size(); i++) { textL = scrollSlots[hovering].buffInfoText[i].getString().getSize(); offset = (((scrollSlots[hovering].maxInfoChar + 1) - textL) / 2.f)*(charWidth); scrollSlots[hovering].buffInfoText[i].setPosition(mousePos.x + offset, mousePos.y + ((i + nSize)*ySpacing)); } itemInfoBack.setPosition(mousePos); scrollSlots[hovering].infoBack.setPosition(mousePos); scrollSlots[hovering].infoBack.setSize({ infoWidth, (ySpacing + 2) * ((float)nSize + scrollSlots[hovering].buffInfoText.size()) }); break; } default: break; } } } void PlayerInfo::draw() { for (int i = 0; i < info.size(); i++) { this->game->window.draw(info[i]); } for (int i = 0; i < this->abilities.size(); i++) { for (int j = 0; j < this->abilities[i].size(); j++) { this->game->window.draw(this->abilities[i][j]); } } this->game->window.draw(title); }
baebbd47259982d2ebc8c43c0a05671e4f58fb5e
956ae70d0a06c583d777e929b567ba4b564ad4dd
/Chord/gu-search.cc
1220c53fc40ee138e0a8ec8b6e8e00ef8aaabe15
[]
no_license
SamThacher/CNproject
033dd7a26fa00ba8614ef4a59a164f53498013bb
3b97eb8a96084d1847d54585dc6ca1130d99c48c
refs/heads/master
2021-01-24T16:53:23.347040
2018-05-03T00:25:31
2018-05-03T00:25:31
123,218,144
0
1
null
2018-02-28T02:45:44
2018-02-28T02:35:50
null
UTF-8
C++
false
false
12,586
cc
gu-search.cc
/* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */ /* * Copyright (c) 2010 University of Pennsylvania * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License version 2 as * published by the Free Software Foundation; * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ #include "gu-search.h" #include "ns3/random-variable.h" #include "ns3/inet-socket-address.h" using namespace ns3; TypeId GUSearch::GetTypeId () { static TypeId tid = TypeId ("GUSearch") .SetParent<GUApplication> () .AddConstructor<GUSearch> () .AddAttribute ("AppPort", "Listening port for Application", UintegerValue (10000), MakeUintegerAccessor (&GUSearch::m_appPort), MakeUintegerChecker<uint16_t> ()) .AddAttribute ("ChordPort", "Listening port for Application", UintegerValue (10001), MakeUintegerAccessor (&GUSearch::m_chordPort), MakeUintegerChecker<uint16_t> ()) .AddAttribute ("PingTimeout", "Timeout value for PING_REQ in milliseconds", TimeValue (MilliSeconds (2000)), MakeTimeAccessor (&GUSearch::m_pingTimeout), MakeTimeChecker ()) ; return tid; } GUSearch::GUSearch () : m_auditPingsTimer (Timer::CANCEL_ON_DESTROY) { m_chord = NULL; RandomVariable random; SeedManager::SetSeed (time (NULL)); random = UniformVariable (0x00000000, 0xFFFFFFFF); m_currentTransactionId = random.GetInteger (); } GUSearch::~GUSearch () { } void GUSearch::DoDispose () { StopApplication (); GUApplication::DoDispose (); } void GUSearch::StartApplication (void) { // Create and Configure GUChord ObjectFactory factory; factory.SetTypeId (GUChord::GetTypeId ()); factory.Set ("AppPort", UintegerValue (m_chordPort)); m_chord = factory.Create<GUChord> (); m_chord->SetNode (GetNode ()); m_chord->SetNodeAddressMap (m_nodeAddressMap); m_chord->SetAddressNodeMap (m_addressNodeMap); m_chord->SetModuleName ("CHORD"); std::string nodeId = GetNodeId (); m_chord->SetNodeId (nodeId); m_chord->SetLocalAddress(m_local); if (GUApplication::IsRealStack ()) { m_chord->SetRealStack (true); } // Configure Callbacks with Chord m_chord->SetPingSuccessCallback (MakeCallback (&GUSearch::HandleChordPingSuccess, this)); m_chord->SetPingFailureCallback (MakeCallback (&GUSearch::HandleChordPingFailure, this)); m_chord->SetPingRecvCallback (MakeCallback (&GUSearch::HandleChordPingRecv, this)); ////// // m_chord->SetGUSearchCallback (MakeCallback (&GUSearch::HandleChordSearchResult, this)); // m_chord->setGUSearchNodeLeave (MakeCallback (&GUSearch::HandleChordNodeLeave, this)); // m_chord->setGUSearchNodeJoin (MakeCallback (&GUSearch::HandleChordNodeJoin, this)); // Start Chord m_chord->SetStartTime (Simulator::Now()); m_chord->Start (); if (m_socket == 0) { TypeId tid = TypeId::LookupByName ("ns3::UdpSocketFactory"); m_socket = Socket::CreateSocket (GetNode (), tid); InetSocketAddress local = InetSocketAddress (Ipv4Address::GetAny(), m_appPort); m_socket->Bind (local); m_socket->SetRecvCallback (MakeCallback (&GUSearch::RecvMessage, this)); } // Configure timers m_auditPingsTimer.SetFunction (&GUSearch::AuditPings, this); // Start timers m_auditPingsTimer.Schedule (m_pingTimeout); } void GUSearch::StopApplication (void) { //Stop chord m_chord->StopChord (); // Close socket if (m_socket) { m_socket->Close (); m_socket->SetRecvCallback (MakeNullCallback<void, Ptr<Socket> > ()); m_socket = 0; } // Cancel timers m_auditPingsTimer.Cancel (); m_pingTracker.clear (); } void GUSearch::ProcessCommand (std::vector<std::string> tokens) { std::vector<std::string>::iterator iterator = tokens.begin(); std::string command = *iterator; if (command == "CHORD") { // Send to Chord Sub-Layer tokens.erase (iterator); m_chord->ProcessCommand (tokens); } if (command == "PING") { if (tokens.size() < 3) { ERROR_LOG ("Insufficient PING params..."); return; } iterator++; if (*iterator != "*") { std::string nodeId = *iterator; iterator++; std::string pingMessage = *iterator; SendPing (nodeId, pingMessage); } else { iterator++; std::string pingMessage = *iterator; std::map<uint32_t, Ipv4Address>::iterator iter; for (iter = m_nodeAddressMap.begin () ; iter != m_nodeAddressMap.end (); iter++) { std::ostringstream sin; uint32_t nodeNumber = iter->first; sin << nodeNumber; std::string nodeId = sin.str(); SendPing (nodeId, pingMessage); } } } if (command == "TABLE") { iterator++; std::string fn = *iterator; makeItable(fn); for(std::map<std::string, std::vector<std::string> >::const_iterator elem = iTable.begin(); elem != iTable.end(); ++elem) { std::cout << elem->first <<" : "; for(std::vector<std::string>::const_iterator i = elem->second.begin(); i != elem->second.end(); ++i) std::cout << *i << " "; std::cout << std::endl; } iterator++; } } void GUSearch::SendPing (std::string nodeId, std::string pingMessage) { // Send Ping Via-Chord layer SEARCH_LOG ("Sending Ping via Chord Layer to node: " << nodeId << " Message: " << pingMessage); Ipv4Address destAddress = ResolveNodeIpAddress(nodeId); m_chord->SendPing (destAddress, pingMessage); } void GUSearch::SendGUSearchPing (Ipv4Address destAddress, std::string pingMessage) { if (destAddress != Ipv4Address::GetAny ()) { uint32_t transactionId = GetNextTransactionId (); SEARCH_LOG ("Sending PING_REQ to Node: " << ReverseLookup(destAddress) << " IP: " << destAddress << " Message: " << pingMessage << " transactionId: " << transactionId); Ptr<PingRequest> pingRequest = Create<PingRequest> (transactionId, Simulator::Now(), destAddress, pingMessage); // Add to ping-tracker m_pingTracker.insert (std::make_pair (transactionId, pingRequest)); Ptr<Packet> packet = Create<Packet> (); GUSearchMessage message = GUSearchMessage (GUSearchMessage::PING_REQ, transactionId); message.SetPingReq (pingMessage); packet->AddHeader (message); m_socket->SendTo (packet, 0 , InetSocketAddress (destAddress, m_appPort)); } } void GUSearch::RecvMessage (Ptr<Socket> socket) { Address sourceAddr; Ptr<Packet> packet = socket->RecvFrom (sourceAddr); InetSocketAddress inetSocketAddr = InetSocketAddress::ConvertFrom (sourceAddr); Ipv4Address sourceAddress = inetSocketAddr.GetIpv4 (); uint16_t sourcePort = inetSocketAddr.GetPort (); GUSearchMessage message; packet->RemoveHeader (message); switch (message.GetMessageType ()) { case GUSearchMessage::PING_REQ: ProcessPingReq (message, sourceAddress, sourcePort); break; case GUSearchMessage::PING_RSP: ProcessPingRsp (message, sourceAddress, sourcePort); break; default: ERROR_LOG ("Unknown Message Type!"); break; } } void GUSearch::ProcessPingReq (GUSearchMessage message, Ipv4Address sourceAddress, uint16_t sourcePort) { // Use reverse lookup for ease of debug std::string fromNode = ReverseLookup (sourceAddress); SEARCH_LOG ("Received PING_REQ, From Node: " << fromNode << ", Message: " << message.GetPingReq().pingMessage); // Send Ping Response GUSearchMessage resp = GUSearchMessage (GUSearchMessage::PING_RSP, message.GetTransactionId()); resp.SetPingRsp (message.GetPingReq().pingMessage); Ptr<Packet> packet = Create<Packet> (); packet->AddHeader (resp); m_socket->SendTo (packet, 0 , InetSocketAddress (sourceAddress, sourcePort)); } void GUSearch::ProcessPingRsp (GUSearchMessage message, Ipv4Address sourceAddress, uint16_t sourcePort) { // Remove from pingTracker std::map<uint32_t, Ptr<PingRequest> >::iterator iter; iter = m_pingTracker.find (message.GetTransactionId ()); if (iter != m_pingTracker.end ()) { std::string fromNode = ReverseLookup (sourceAddress); SEARCH_LOG ("Received PING_RSP, From Node: " << fromNode << ", Message: " << message.GetPingRsp().pingMessage); m_pingTracker.erase (iter); } else { DEBUG_LOG ("Received invalid PING_RSP!"); } } void GUSearch::AuditPings () { std::map<uint32_t, Ptr<PingRequest> >::iterator iter; for (iter = m_pingTracker.begin () ; iter != m_pingTracker.end();) { Ptr<PingRequest> pingRequest = iter->second; if (pingRequest->GetTimestamp().GetMilliSeconds() + m_pingTimeout.GetMilliSeconds() <= Simulator::Now().GetMilliSeconds()) { DEBUG_LOG ("Ping expired. Message: " << pingRequest->GetPingMessage () << " Timestamp: " << pingRequest->GetTimestamp().GetMilliSeconds () << " CurrentTime: " << Simulator::Now().GetMilliSeconds ()); // Remove stale entries m_pingTracker.erase (iter++); } else { ++iter; } } // Rechedule timer m_auditPingsTimer.Schedule (m_pingTimeout); } void GUSearch::makeItable(std::string fileName) { std::cout << "workaerofejf" << std::endl; std::ifstream infile; std::string filepath = "./cosc225/keys/"; filepath.append(fileName); //fileName = "./cosc225/keys/metadata0.keys"; infile.open(filepath.c_str()); if (!infile) { std::cout << "Unable to open file " << fileName << std::endl; } else std::cout << "YAYAYAYAYAAAYA" << std::endl; std::string line; std::string delim = " "; while(std::getline(infile, line)) { std::string token; std::string docV; std::istringstream iss(line); std::string tmp = iss.str(); int pos = tmp.find(delim); docV = tmp.substr(0,pos); tmp.erase(0,pos+delim.length()); while((pos = tmp.find(delim)) != std::string::npos) { token = tmp.substr(0,pos); tmp.erase(0,pos+delim.length()); if(iTable.find(token)!=iTable.end()) { iTable.find(token)->second.push_back(docV); } else { std::vector<std::string> keyVals; keyVals.push_back(docV); iTable.insert(iTable.begin(), std::pair<std::string,std::vector<std::string> >(token,keyVals)); } } } } uint32_t GUSearch::GetNextTransactionId () { return m_currentTransactionId++; } // Handle Chord Callbacks void GUSearch::HandleChordPingFailure (Ipv4Address destAddress, std::string message) { SEARCH_LOG ("Chord Ping Expired! Destination nodeId: " << ReverseLookup(destAddress) << " IP: " << destAddress << " Message: " << message); } void GUSearch::HandleChordPingSuccess (Ipv4Address destAddress, std::string message) { SEARCH_LOG ("Chord Ping Success! Destination nodeId: " << ReverseLookup(destAddress) << " IP: " << destAddress << " Message: " << message); // Send ping via search layer SendGUSearchPing (destAddress, message); } void GUSearch::HandleChordPingRecv (Ipv4Address destAddress, std::string message) { SEARCH_LOG ("Chord Layer Received Ping! Source nodeId: " << ReverseLookup(destAddress) << " IP: " << destAddress << " Message: " << message); } // Override GULog void GUSearch::SetTrafficVerbose (bool on) { m_chord->SetTrafficVerbose (on); g_trafficVerbose = on; } void GUSearch::SetErrorVerbose (bool on) { m_chord->SetErrorVerbose (on); g_errorVerbose = on; } void GUSearch::SetDebugVerbose (bool on) { m_chord->SetDebugVerbose (on); g_debugVerbose = on; } void GUSearch::SetStatusVerbose (bool on) { m_chord->SetStatusVerbose (on); g_statusVerbose = on; } void GUSearch::SetChordVerbose (bool on) { m_chord->SetChordVerbose (on); g_chordVerbose = on; } void GUSearch::SetSearchVerbose (bool on) { m_chord->SetSearchVerbose (on); g_searchVerbose = on; }
05ff3c8b2b56d86c2e6592f1f88c23f2e7b63b9b
69e2ab49ab9942296f97f2aef73f20ec56171f30
/284B.cpp
8765102edee29f5375d7301f59774441d2ef0345
[]
no_license
hllj/Codeforces
f2957d8caa97e35772aa2f98ed84373a2fe11908
15b6c4a68168a7b5ec97c4056637587ca40e9f3e
refs/heads/master
2020-03-28T10:55:23.523528
2019-11-02T16:00:49
2019-11-02T16:00:49
148,159,509
0
0
null
null
null
null
UTF-8
C++
false
false
798
cpp
284B.cpp
#define _CRT_SECURE_NO_WARNINGS #include <bits/stdc++.h> using namespace std; #define IO ios::sync_with_stdio(false); cin.tie(0); #define all(v) (v).begin(), (v).end() #define fi first #define se second typedef long long ll; typedef pair<int, int> pi; const int INF = (int) 1e9; const ll LINF = (ll) 1e18; int main() { IO; int n; cin >> n; string s; cin >> s; int dA = 0, dF = 0, dI = 0; for (int i = 0; i < n; i++) { if (s[i] == 'A') dA++; if (s[i] == 'F') dF++; if (s[i] == 'I') dI++; } int cnt = 0; for (int i = 0; i < n; i++) if (s[i] == 'A' || s[i] == 'I') { if (s[i] == 'A' && dA - 1 + dF == n - 1) cnt++; if (s[i] == 'I' && dA + dF == n - 1) cnt++; } cout << cnt; return 0; }
02748719e5f58b9fd9ea30f057e94d7f6f428b96
07f547ccf04c6ea00375e0494b84179f6de72780
/CustomWidget/PlayStateControl/PlayStateControl.cpp
82dd558624e631844e0109ba4aeda85c22c40b9f
[]
no_license
suncaiyu/qt-custom-widget
1b4db38e8e90c93a0519d9658cc0d8398b55b889
a869e1bf39325031c5ab3a99681f85eeca0096e5
refs/heads/master
2022-06-10T18:27:05.134831
2022-05-13T14:35:53
2022-05-13T14:35:53
229,648,103
4
2
null
null
null
null
UTF-8
C++
false
false
2,864
cpp
PlayStateControl.cpp
๏ปฟ#include "PlayStateControl.h" #include <QPainter> #include <QPaintEvent> #include <QPainterPath> #include <QDebug> PlayStateControl::PlayStateControl(QWidget *parent) : QWidget(parent) { setPalette(Qt::white); diskPixmap.load(":/img/mediaDisk.png"); polePixmap.load(":/img/Pole.png"); centerPixmap.load(":/img/F4.jpeg"); setMinimumSize(300,250); connect(&angleTimer,&QTimer::timeout,[this] { angle += 1.0; if(angle == 360.0) angle = 0.0; update(); }); angleTimer.setInterval(40); connect(&poleSpinTimer,&QTimer::timeout,[this] { if(isPlaying) { poleSpinAngle -= 1.0; if(poleSpinAngle == 0.0) { poleSpinTimer.stop(); } } else { poleSpinAngle += 1.0; if(poleSpinAngle > 25.0) { poleSpinTimer.stop(); } } update(); }); poleSpinTimer.setInterval(20); } PlayStateControl::~PlayStateControl() { } void PlayStateControl::paintEvent(QPaintEvent *event) { QPainter painter(this); painter.setRenderHint(QPainter::Antialiasing,true); painter.setRenderHint(QPainter::SmoothPixmapTransform,true); const auto rect = event->rect(); auto radius = std::min(rect.width(),rect.height()) / 2 - 25; QRect rectangle(-radius,-radius,radius * 2,radius * 2); painter.translate(rect.center()); painter.setPen(Qt::transparent); painter.drawPixmap(rectangle,diskPixmap); auto centerImgRadius = radius / 1.6; auto centerImgRect = QRect(-centerImgRadius, -centerImgRadius, centerImgRadius*2, centerImgRadius*2); painter.save(); QRegion maskedRegion(centerImgRect, QRegion::Ellipse); painter.setClipRegion(maskedRegion); painter.rotate(angle); painter.drawPixmap(centerImgRect,centerPixmap); painter.restore(); auto poleRect = QRect(rectangle.topRight().x(),rectangle.topRight().y(),rect.width()*0.15,rect.height()*0.5); auto polePixmapTemp = polePixmap.scaled(poleRect.size(),Qt::KeepAspectRatio); auto difference = polePixmapTemp.width() + radius - (rect.width()/2); if(difference > 0) { poleRect.setX(poleRect.x() - difference); } painter.save(); painter.translate(poleRect.topLeft()); painter.rotate(poleSpinAngle); painter.drawPixmap(QPoint(0,0),polePixmapTemp); painter.restore(); } void PlayStateControl::mousePressEvent(QMouseEvent *event) { isPlaying = !isPlaying; poleIsSpin = true; poleSpinTimer.start(); if(isPlaying) { angleTimer.stop(); } else { angleTimer.start(); } QWidget::mousePressEvent(event); }
5ddb4f43fa4d6e8f48c7b177d5059a5293ca0224
44a56e21a3d6f9e7752e6f9553ba42ebf2907c23
/2048/c-fortran/game.cpp
f5acf5bc01c9326b18ad9f383d745128710b6c57
[]
permissive
0382/have-fun
2c8824fbd092c2764bf63b6917af294104efa128
7a7a1ad5f8aa2218bc6e279b761f58cab648c89c
refs/heads/master
2023-06-25T07:25:40.830228
2023-06-08T12:50:44
2023-06-08T12:50:44
236,752,327
0
0
MIT
2022-06-07T01:13:12
2020-01-28T14:20:09
HTML
UTF-8
C++
false
false
132
cpp
game.cpp
#include "2048.h" int main(int argc, char const *argv[]) { auto game = basic_2048(); game.start(); return 0; }
ac3b0772174f3f7cc96f19f4e795961d8583b30f
c46a1357646306b81d5a49791021d34cf0caf44c
/lista_livro_python/exercicio3.12.cpp
ff4245cc58ff337f355a564b203906b41bf1fd1a
[ "MIT" ]
permissive
robinson-1985/mentoria_exercises
b3723a38cf9ba2a80b4a703e24291c9805bd1408
8359cead6ee5351851b04cb45f252e3881b79117
refs/heads/main
2023-03-07T07:53:17.995120
2021-02-07T20:48:56
2021-02-07T20:48:56
320,094,707
0
0
null
null
null
null
UTF-8
C++
false
false
583
cpp
exercicio3.12.cpp
/* 3.12. Escreva um programa que calcule o tempo de uma viagem de carro. Pergunte a distรขncia a percorrer e a velocidade mรฉdia esperada para a viagem. */ #include <stdio.h> int main(){ float distancia, velocidade_media, tempo_viagem; printf("Qual a distรขncia que vai percorrer em km: \n"); scanf("%f", &distancia); printf("Qual serรก a sua velocidade mรฉdia em km/h: \n"); scanf("%f", &velocidade_media); tempo_viagem = distancia / velocidade_media; printf("O seu tempo de viagem serรก: %.2f horas\n", tempo_viagem); getchar(); return 0; }
8844f09e3814f3d61f9479828c3e5e6b6964a5ce
cf67452bb206c63f001c49556d93103f60475ef1
/backend/main.cpp
bc3995ccdcaafa1d01ea6798e92f39c6f4a70078
[]
no_license
Stazer/autonomouscabs
a4f117325a105de10ded88ac96d450ab4ae24a2e
8d9d9ce5037a02c74a6b4fedbd62d5c636f63a4c
refs/heads/master
2022-11-23T22:12:33.761662
2020-07-26T20:16:39
2020-07-26T20:16:39
261,213,010
3
0
null
2020-07-18T14:00:35
2020-05-04T14:54:53
C++
UTF-8
C++
false
false
502
cpp
main.cpp
#include <iostream> #include <exception> #include "application.hpp" int main(int argc, char** argv) { std::cout << "Autonomous Cabs Backend\n"; int return_value = 0; try { application application; return_value = application.run(argc, argv); } catch(std::exception& e) { std::cerr << "Critital error\n" << e.what() << std::endl; std::cerr << "Program terminated" << std::endl; return_value = -1; } return return_value; }
97352e7821512b30649fbbbdab0bcc267b4b5048
9fe399f9a21aa95837a411f8f9d370bb83fcb9a1
/lab9q14.cpp
f8df6de526505ec83dc8b5d72d8b58b3a4fd917a
[]
no_license
ayushisahu/ayushi
ec638f484fe47abb3cc352eb6138d82bb4a0e919
d798351d3be48ab9d5ce7622e92693e824d1b515
refs/heads/master
2020-03-26T08:28:37.442648
2018-11-14T04:10:33
2018-11-14T04:10:33
144,704,342
0
0
null
null
null
null
UTF-8
C++
false
false
413
cpp
lab9q14.cpp
//string that stores my name in it #include<iostream> #include<cstring> using namespace std; int main(){ char name[11] = {'a','y','u','s','h','i','s','a','h','u'}; //printing name by normal index method cout<<"my name is "; for (int i=0;name[i]!='\0';i++){ cout<<name[i];} cout<<endl; //printing by pointer method char *p,i; p=name; for(int i=0;*p!='\0';i++) {cout<<*p; p++;} cout<<endl; return 0; }
f928a31cca9757b0689c7e56d8971b9d32735bab
724582ee786baf655643f8b4a9c725bf97e0f1c1
/mediaparser/audio_suquence_header.h
16f0902277d84f04342288dc030c67ffd91d79d8
[]
no_license
breezeewu/ffmpeg_tools
8d703c8ee7904541f847e7600a6a54945f53ddfa
b9a70f7c4e141125d58be8ad05c2a460212846a6
refs/heads/master
2023-08-08T00:54:47.127922
2021-09-16T13:50:59
2021-09-16T13:50:59
407,179,530
0
0
null
null
null
null
UTF-8
C++
false
false
16,292
h
audio_suquence_header.h
#ifndef AUDIO_SEQ_HDR_H_ #define AUDIO_SEQ_HDR_H_ #include <stdio.h> #include <stdint.h> #include "bitstream.h" #include <assert.h> //#include "lazylog.h" //#include "bitstream.h" //#define lbtrace AVTRACE //#define lberror AVTRACE #ifndef lbtrace #define lbtrace printf #endif #ifndef lberror #define lberror printf #endif enum e_aac_object_type { e_aac_object_type_reserved = 0, e_aac_object_type_main = 1, e_aac_object_type_lc = 2, e_aac_object_type_ssr = 3, e_aac_object_type_ltp = 4, e_aac_object_type_sbr = 5, e_aac_object_type_scalable = 6, e_aac_object_type_twinvq = 7, e_aac_object_type_celp = 8, e_aac_object_type_hvxc = 9, e_aac_object_type_reserved1 = 10, e_aac_object_type_reserved2 = 11, e_aac_object_type_ttsi = 12, e_aac_object_type_main_synthetic = 13, e_aac_object_type_wavetable_synthesis = 14, e_aac_object_type_general_midi = 15, e_aac_object_type_algorithmic_synthesis = 16, // AAC HEv2 = LC+SBR+PS e_aac_object_type_hev2 = 29 }; //0:AAC Main, 1: AAC LC(low complexity), 2:AAC SSR(Scalable Sample Rate), 3: AAC LTP(Long Term Prediction) enum e_aac_profile { e_aac_profile_main = 0, e_aac_profile_lc = 1, e_aac_profile_ssr = 2, e_aac_profile_ltp = 3 }; typedef struct adts_context { uint16_t syncword; uint8_t id; uint8_t layer; uint8_t protection_absent; uint8_t profile; uint8_t sampleing_frequency_index; uint8_t private_bit; uint8_t channel_configuration; uint8_t original_copy; uint8_t home; uint32_t samplerate; // adts variable header uint8_t copyright_identification_bit; uint8_t copyright_identification_start; uint16_t aac_frame_length; uint16_t adts_buffer_fullness; uint16_t number_of_raw_data_blocks_in_frame; uint16_t crc; uint16_t adts_header_size; } adts_ctx; /*static int lbread_bits(const char* data, int bits, int* pbit_offset) { int bytesoff = 0; int byte_bit_off = 0; int val = 0; int bit_offset = *pbit_offset; if(bit_offset > 7) { bytesoff = bit_offset/8; byte_bit_off = bit_offset % 8; } for(int i = 0; i < bits; i++) { val <<= 1; val += (data[bytesoff] >> (7 - byte_bit_off)) & 0x1; bytesoff += (byte_bit_off + 1)/8; byte_bit_off = (byte_bit_off + 1)%8; } bit_offset += bits; *pbit_offset = bit_offset; return val; } static int lbwrite_bits(char* data, int val, int bits, int* poffset) { int bytesoff = 0; int offset = *poffset; bytesoff = offset / 8; int bit_offset = offset % 8; int write_bits = bits; while (bits > 0) { char cval = val >> (bits - 1); cval = (cval & 0x1) << (7 - bit_offset); cval = (char)cval & 0xff; data[bytesoff] = cval | data[bytesoff]; //val <<= 1; //val += (data[bytesoff] >> (7 - offset)) & 0x1; bytesoff += (bit_offset + 1) / 8; bit_offset = (bit_offset + 1) % 8; bits--; } offset += write_bits; *poffset = offset; return val; }*/ static int get_samplerate(adts_ctx* padtsctx) { if(!padtsctx) { return -1; } int samplerate = 0; switch(padtsctx->sampleing_frequency_index) { case 0: samplerate = 96000; break; case 1: samplerate = 88200; break; case 2: samplerate = 64000; break; case 3: samplerate = 48000; break; case 4: samplerate = 44100; break; case 5: samplerate = 32000; break; case 6: samplerate = 24000; break; case 7: samplerate = 22050; break; case 8: samplerate = 16000; break; case 9: samplerate = 12000; break; case 10: samplerate = 11025; break; case 11: samplerate = 8000; break; case 12: samplerate = 7350; break; case 13: samplerate = 0; break; case 14: samplerate = 0; break; case 15: samplerate = 0; break; default: samplerate = -1; break; } return samplerate; } static int code_type_from_aac_profile(int profile) { switch(profile) { case e_aac_profile_main: return e_aac_object_type_main; case e_aac_profile_lc: return e_aac_object_type_lc; case e_aac_profile_ssr: return e_aac_object_type_ssr; default: return e_aac_object_type_reserved; } } static int profile_from_aac_obj_type(int obj_type) { switch (obj_type) { case e_aac_object_type_main: return e_aac_profile_main; case e_aac_object_type_lc: return e_aac_profile_lc; case e_aac_object_type_ssr: return e_aac_profile_ssr; default: return -1; break; } } static adts_ctx* adts_demux_sequence_header(const char* seq, int len) { if(NULL == seq || len < 2) { lberror("adts_demux_sequence_header invalid parameter seq:%p, len:%d\n", seq, len); return NULL; } adts_ctx* padtsctx = (adts_ctx*)malloc(sizeof(adts_ctx)); memset(padtsctx, 0, sizeof(adts_ctx)); padtsctx->syncword = 0xfff; // 0:mpeg-4, 1 mpeg-2 padtsctx->id = 0; // always:00 padtsctx->layer = 0; // no crc 1, crc : 0, adts header is 9 bytes, with 2 bytes of crc padtsctx->protection_absent = 1; if(padtsctx->protection_absent) { padtsctx->adts_header_size = 7; } else { padtsctx->adts_header_size = 9; } bitstream_ctx* pbs = bitstream_open((char*)seq, len); int objtype = read_bits(pbs, 5); padtsctx->profile = profile_from_aac_obj_type(objtype); padtsctx->sampleing_frequency_index = read_bits(pbs, 4); if(15 == padtsctx->sampleing_frequency_index) { padtsctx->samplerate = read_bits(pbs, 24); } padtsctx->private_bit = 0; padtsctx->channel_configuration = read_bits(pbs, 4); padtsctx->original_copy = 0; int reserved = read_bits(pbs, 3); assert(0==reserved); padtsctx->home = 0; padtsctx->copyright_identification_bit = 0; padtsctx->copyright_identification_start = 0; padtsctx->adts_buffer_fullness = 0x7ff; padtsctx->number_of_raw_data_blocks_in_frame = 0; return padtsctx; /*int objtype = code_type_from_aac_profile((int)padtsctx->profile); // 5 bits audio object type //write_bits(pbs, objtype, 5); write_bits(pbs, objtype, 5);//write_bits(pseq, objtype, 5, bit_offset); // 4 bits sample frequence index write_bits(pbs, padtsctx->sampleing_frequency_index, 4);////write_bits(pseq, padtsctx->sampleing_frequency_index, 4, bit_offset); //write_bits(pbs, m_sampleing_frequency_index, 4); // if custom samplerate if(15 == padtsctx->sampleing_frequency_index) { write_bits(pbs, padtsctx->samplerate, 24);//write_bits(pseq, padtsctx->samplerate, 24, bit_offset); //write_bits(pbs, m_samplerate, 24); } // 4 bits channel configuration, //write_bits(pbs, m_channel_configuration, 4); write_bits(pbs, padtsctx->channel_configuration, 4);////write_bits(pseq, padtsctx->channel_configuration, 4, bit_offset); // 3 bits 0 //write_bits(pbs, 0, 3); write_bits(pbs, 0, 3);//write_bits(pseq, 0, 3, bit_offset);*/ } static adts_ctx* adts_demux_open(const char* padts_header, int len) { int bit_offset = 0; if(!padts_header || len < 7) { lberror("Invalid adts header padts_header:%p, len:%d\n", padts_header, len); lberror("header %0x, %0x", (int)padts_header[0], (int)padts_header[1]); return NULL; } adts_ctx* padtsctx = malloc(sizeof(adts_ctx)); const uint8_t* ptmp = (const uint8_t*)padts_header; // read adts fixed header // read sync word 12 bit struct bitstream_ctx* pbs = bitstream_open(padts_header, len); uint16_t syncword = read_bits(pbs, 12); //uint16_t syncword = read_bits(padts_header, 12, bit_offset); // 12 if(0xfff != syncword) { lberror("Invalid adts header, syncword:%03x",syncword); return NULL; } // read id(1 bit), MPEG flag, 0:mpeg-4, 1:mpeg-2 padtsctx->id = read_bits(pbs, 1);//lbread_bits(padts_header, 1, bit_offset); // 13 // read layer(2 bit)(alaws 00), padtsctx->layer = read_bits(pbs, 2);//lbread_bits(padts_header, 2, bit_offset); // 15 // read protection_absent(1bit), crc check flag, 0:crc check, 1: no crc check, if 1, adts header length = 9bytes, include 2 bytes crc check padtsctx->protection_absent = read_bits(pbs, 1);//lbread_bits(padts_header, 1, bit_offset); // 16 // read aac profile, 2bit, 0:AAC Main, 1: AAC LC(low complexity), 2:AAC SSR(Scalable Sample Rate), 3: AAC LTP(Long Term Prediction) padtsctx->profile = read_bits(pbs, 2);//lbread_bits(padts_header, 2, bit_offset); // 18 // read sampleing frequency index for aac sampling rate index padtsctx->sampleing_frequency_index = read_bits(pbs, 4);//lbread_bits(padts_header, 4, bit_offset); // 22 // private bit, 1bit, encoder set to 0, decoder ingore it padtsctx->private_bit = read_bits(pbs, 1);//lbread_bits(padts_header, 1, bit_offset); // 23 // channele count, 3bit, indicate channel count padtsctx->channel_configuration = read_bits(pbs, 3);//read_bits(padts_header, 3, bit_offset); // 26 // origin copy, 1bit, encoder set to 0, decoder ingore it padtsctx->original_copy = read_bits(pbs, 1);//read_bits(padts_header, 1, bit_offset); // 27 // home, 1bit, encoder set to 0, decoder ingore it padtsctx->home = read_bits(pbs, 1);//read_bits(padts_header, 1, bit_offset); // 28 // read adts variable header // copyright idenitfication bit, 1bit, encoder set to 0, decoder ingore it padtsctx->copyright_identification_bit = read_bits(pbs, 1);//read_bits(padts_header, 1, bit_offset); // 29 // copyright idenitfication start, 1bit, encoder set to 0, decoder ingore it padtsctx->copyright_identification_start = read_bits(pbs, 1);//read_bits(padts_header, 1, bit_offset); // 30 // aac frame length(include adts header and aac frame data), 13 bit, encoder set to 0, decoder ingore it padtsctx->aac_frame_length = read_bits(pbs, 13);//read_bits(padts_header, 13, bit_offset); // 43 // adts buffer fullness, 3bit, (alaws 0x7ff) padtsctx->adts_buffer_fullness = read_bits(pbs, 11);//read_bits(padts_header, 11, bit_offset); // 54 // number of raw data block in frame, 2bit, current frame's raw sample count - 1 padtsctx->number_of_raw_data_blocks_in_frame = read_bits(pbs, 2);//read_bits(padts_header, 2, bit_offset); // 56 padtsctx->samplerate = get_samplerate(padtsctx); if(!padtsctx->protection_absent) { padtsctx->crc = read_bits(pbs, 16);//read_bits(padts_header, 16, bit_offset); // 72 } return padtsctx; } static void adts_demux_close(adts_ctx** ppadtsctx) { if(ppadtsctx && *ppadtsctx) { adts_ctx* padtsctx = *ppadtsctx; free(padtsctx); *ppadtsctx = padtsctx = NULL; } } static int mux_sequence_header(adts_ctx* padtsctx, char* pseq, int len) { if(!padtsctx || !pseq || len < 2) { lberror("Invalid parameter, padtsctx:%p, pseq:%p, len:%d\n", padtsctx, pseq, len); return -1; } memset(pseq, 0, len); bitstream_ctx* pbs = bitstream_open(pseq, len); int objtype = code_type_from_aac_profile((int)padtsctx->profile); // 5 bits audio object type //write_bits(pbs, objtype, 5); write_bits(pbs, objtype, 5);//write_bits(pseq, objtype, 5, bit_offset); // 4 bits sample frequence index write_bits(pbs, padtsctx->sampleing_frequency_index, 4);////write_bits(pseq, padtsctx->sampleing_frequency_index, 4, bit_offset); //write_bits(pbs, m_sampleing_frequency_index, 4); // if custom samplerate if(15 == padtsctx->sampleing_frequency_index) { write_bits(pbs, padtsctx->samplerate, 24);//write_bits(pseq, padtsctx->samplerate, 24, bit_offset); //write_bits(pbs, m_samplerate, 24); } // 4 bits channel configuration, //write_bits(pbs, m_channel_configuration, 4); write_bits(pbs, padtsctx->channel_configuration, 4);////write_bits(pseq, padtsctx->channel_configuration, 4, bit_offset); // 3 bits 0 //write_bits(pbs, 0, 3); write_bits(pbs, 0, 3);//write_bits(pseq, 0, 3, bit_offset); return 2; } static int muxer_adts_header(adts_ctx* padtsctx, int aac_data_len, char* padts_hdr, int adts_hdr_len) { if(NULL == padtsctx || NULL == padts_hdr || adts_hdr_len < 7) { lberror("muxer_adts_header Invalid parameter, padtsctx:%p, padts_hdr:%p, adts_hdr_len:%d\n", padtsctx, padts_hdr, adts_hdr_len); return -1; } memset(padts_hdr, 0, padtsctx->adts_header_size); bitstream_ctx* pbs = bitstream_open(padts_hdr, adts_hdr_len); // adts fixed header write_bits(pbs, 0xfff, 12); // syncword 12 bits write_bits(pbs, 0, 1); // ID, 1 bit write_bits(pbs, 0, 2); // layer 2 bit write_bits(pbs, 1, 1); // protection absent 1 bit, 1:no crc, 0: have crc write_bits(pbs, padtsctx->profile, 2); // profile 2 bits write_bits(pbs, padtsctx->sampleing_frequency_index, 4); // sampleing_frequency_index 4 bits write_bits(pbs, 0, 1); // private bit, 1 bit, 0 write_bits(pbs, padtsctx->channel_configuration, 3); // channel_configuration 3 bits write_bits(pbs, 0, 1); // original_copy, 1 bit, must be 0 write_bits(pbs, 0, 1); // channel_configuration 1 bits, must be 0 // adts variable header write_bits(pbs, 0, 1); // copyright_identification_bit, 1 bit, must be 0 write_bits(pbs, 0, 1); // copyright_identification_start 1 bits, must be 0 write_bits(pbs, padtsctx->adts_header_size + aac_data_len, 13); // aac_frame_length, 13 bit write_bits(pbs, 0x7ff, 11); // adts buffer fullness 11 bits, must be 0x7ff write_bits(pbs, 0, 2); // number_of_raw_data_blocks_in_frame, 2 bits, must be 0 return padtsctx->adts_header_size; } /*static int codec_type_from_aac_profile(int profile) { switch(profile) { case e_aac_profile_main: return e_aac_object_type_main; case e_aac_profile_lc: return e_aac_object_type_lc; case e_aac_profile_ssr: return e_aac_object_type_ssr; default: return e_aac_object_type_reserved; } }*/ /*class adts_demux { public: adts_demux() { m_id = 0; m_layer = 0; m_protection_absent = 0; m_profile = 0; m_sampleing_frequency_index = 0; m_private_bit = 0; m_channel_configuration = 0; m_original_copy = 0; m_home = 0; m_copyright_identification_bit = 0; m_copyright_identification_start = 0; m_aac_frame_length = 0; m_adts_buffer_fullness = 0; m_number_of_raw_data_blocks_in_frame = 0; m_crc = 0; //= {96000, 88200, 64000, 48000, 44100, 32000, 24000, 22050, 16000, 12000, 11025, 8000, 7350, 0,0,0}; } ~adts_demux() { } int get_samplerate_frequence_index() { return m_sampleing_frequency_index; } int channel() { return m_channel_configuration; } protected: protected: // adts fixed header uint8_t m_id; uint8_t m_layer; uint8_t m_protection_absent; uint8_t m_profile; uint8_t m_sampleing_frequency_index; uint8_t m_private_bit; uint8_t m_channel_configuration; uint8_t m_original_copy; uint8_t m_home; uint32_t m_samplerate; // adts variable header uint8_t m_copyright_identification_bit; uint8_t m_copyright_identification_start; uint16_t m_aac_frame_length; uint16_t m_adts_buffer_fullness; uint16_t m_number_of_raw_data_blocks_in_frame; uint16_t m_crc; uint32_t m_sampling_frequency_index[16];// = {96000, 88200, 64000, 48000, 44100, 32000, 24000, 22050, 16000, 12000, 11025, 8000, 7350, 0,0,0}; };*/ #endif
424f2d344a164551e7c723261068efaba689b786
3e55231edfaa8478a473681f98a27cabea78d5b6
/6_Ch_nRF24L01_Tx_&_ Rx code - elekkrypt/6_Ch_nRF24L01_Tx_&_ Rx code - elekkrypt/6_Ch_nRF24L01_Tx_&_ Rx code - elekkrypt/6Ch_nRF24L01_receiverCode/6Ch_nRF24L01_receiverCode.ino
8484a43a47ce3b4fd923e5441149d734d13c7fdc
[]
no_license
dhirajkushwaha/nRF24L01-Arduino-Projects
426a785c5e0702f799171b949dfbbef37698177e
2165a004d3bfadadec93ac8ec4e7392bc4dafca8
refs/heads/main
2023-08-30T02:15:36.337869
2021-09-20T13:38:16
2021-09-20T13:38:16
337,505,389
0
0
null
null
null
null
UTF-8
C++
false
false
1,662
ino
6Ch_nRF24L01_receiverCode.ino
/* * This is a 6 channel nrf24l01 transmitter and receiver code. * There are 6 outputs in the receiver end, of which 2 outputs are for led(on/off) and the remaining 4 outputs are for 4 leds with brigtness control. * * To know more refer the below links: * https://youtu.be/Pd7rus79j_4 * https://dhirajkushwaha.com/elekkrypt * */ #include <SPI.h> #include <RF24.h> #include <nRF24L01.h> // declaring where the leds are connected in Arduino int led01 = 2; // Led 01 int led02 = 4; // Led 02 int led03 = 5; // Led 03 (with brightness control) int led04 = 6; // Led 04 (with brightness control) int led05 = 9; // Led 05 (with brightness control) int led06 = 10; // Led 06 (with brightness control) RF24 radio(7,8); const byte address[] = "node1"; void setup() { radio.begin(); radio.openReadingPipe(0,address); radio.startListening(); pinMode(led01, OUTPUT); pinMode(led02, OUTPUT); pinMode(led03, OUTPUT); pinMode(led04, OUTPUT); pinMode(led05, OUTPUT); pinMode(led06, OUTPUT); Serial.begin(9600); } struct datapack{ bool toggleSwitch01 ; bool toggleSwitch02 ; int joystickLeft_x ; int joystickLeft_y ; int joystickRight_x ; int joystickRight_y ; }; datapack data; void loop() { while(radio.available()){ radio.read(&data, sizeof(data)); digitalWrite(led01, data.toggleSwitch01); digitalWrite(led02, data.toggleSwitch02); analogWrite(led03, data.joystickLeft_x); analogWrite(led04, data.joystickLeft_y); analogWrite(led05, data.joystickRight_x); analogWrite(led06, data.joystickRight_y); } }
c95167881c736ff2e31a93f75f4b9e31381691d2
5f22f4fd92576fe4287bf891967b373cc5913b30
/include/Networking/InvalidURL.h
df62e08d82b70336030b87d5312dce1b98ab4778
[]
no_license
barnabycolby/Magneto
b76eda3f5e7081bf83deed1478f9d41f031792ff
f97de9ab44d31f02a46adb160962101cff31ace8
refs/heads/master
2021-01-14T13:57:43.834545
2013-12-27T17:07:25
2013-12-27T17:07:25
15,270,201
2
0
null
null
null
null
UTF-8
C++
false
false
282
h
InvalidURL.h
#ifndef INVALID_URL_H #define INVALID_URL_H #include <exception> #include <string> using namespace std; class InvalidURL : public exception { public: InvalidURL(string message); ~InvalidURL() throw(); virtual const char* what() throw(); private: string message; }; #endif
aa2c62b2239eb8ba1ed554dafa165c17cccb89c2
b1ec31f5854ee53f371332129ab053a845857aa5
/C++/Solved/782_TransformToChessboard.h
660d899eb9976ab9c6e1b053eb2f5ccc2fd8ee37
[]
no_license
bubbercn/LeetCode
e9c1ec2e6f9260b69f64e63fbd2bf97cf65e3ad7
42c19adba8d360059e8159564d7384d662c24e8d
refs/heads/master
2023-08-31T10:40:06.288845
2023-08-26T13:55:55
2023-08-26T13:55:55
56,971,005
0
0
null
null
null
null
UTF-8
C++
false
false
3,262
h
782_TransformToChessboard.h
#pragma once #include "Common.h" class Solution { public: int movesToChessboard(vector<vector<int>> &board) { int n = board.size(); // examin first row and first column int count0 = 0, count1 = 0; for (int i = 0; i < n; i++) { if (board[0][i] == 0) count0++; else count1++; } if (abs(count0 - count1) > 1) return -1; int rowMajority = 0; if (n % 2 != 0) { rowMajority = count0 > count1 ? 0 : 1; } count0 = 0, count1 = 0; for (int i = 0; i < n; i++) { if (board[i][0] == 0) count0++; else count1++; } if (abs(count0 - count1) > 1) return -1; int colMajority = 0; if (n % 2 != 0) { colMajority = count0 > count1 ? 0 : 1; } // check rows are either the same as the first row or the opposite of the first row vector<int> notFirstRow(n, 0); for (int i = 0; i < n; i++) { notFirstRow[i] = board[0][i] ? 0 : 1; } for (int i = 1; i < n; i++) { if (board[i] != board[0] && board[i] != notFirstRow) return -1; } // calculate minimum move count for the first row and first column int result = 0; if (n % 2 == 0) { int minMove0 = 0; int minMove1 = 0; for (int i = 0; i < n; i += 2) { if (board[0][i] != 0) minMove0++; else minMove1++; } result += min(minMove0, minMove1); minMove0 = 0; minMove1 = 0; for (int i = 0; i < n; i += 2) { if (board[i][0] != 0) minMove0++; else minMove1++; } result += min(minMove0, minMove1); } else { for (int i = 0; i < n; i += 2) { if (board[0][i] != rowMajority) result++; } for (int i = 0; i < n; i += 2) { if (board[i][0] != colMajority) result++; } } return result; } }; class LeetCodeTest : public testing::Test { public: inline static Solution solution; }; TEST_F(LeetCodeTest, Example1) { vector<vector<int>> board = { {0, 1, 1, 0}, {0, 1, 1, 0}, {1, 0, 0, 1}, {1, 0, 0, 1}, }; EXPECT_EQ(solution.movesToChessboard(board), 2); } TEST_F(LeetCodeTest, Example2) { vector<vector<int>> board = { {0, 1}, {1, 0}, }; EXPECT_EQ(solution.movesToChessboard(board), 0); } TEST_F(LeetCodeTest, Example3) { vector<vector<int>> board = { {1, 0}, {1, 0}, }; EXPECT_EQ(solution.movesToChessboard(board), -1); } TEST_F(LeetCodeTest, Failure1) { vector<vector<int>> board = { {1, 0, 0}, {0, 1, 1}, {1, 0, 0}, }; EXPECT_EQ(solution.movesToChessboard(board), 1); }
83195e9001fb32f7c9332828d179a6deaa69e083
88b130d5ff52d96248d8b946cfb0faaadb731769
/storage/src/vespa/storageapi/message/queryresult.cpp
b5d29cf4e0222ca889d8f48d88c3c6b0c70ad654
[ "Apache-2.0", "LicenseRef-scancode-unknown-license-reference" ]
permissive
vespa-engine/vespa
b8cfe266de7f9a9be6f2557c55bef52c3a9d7cdb
1f8213997718c25942c38402202ae9e51572d89f
refs/heads/master
2023-08-16T21:01:12.296208
2023-08-16T17:03:08
2023-08-16T17:03:08
60,377,070
4,889
619
Apache-2.0
2023-09-14T21:02:11
2016-06-03T20:54:20
Java
UTF-8
C++
false
false
1,092
cpp
queryresult.cpp
// Copyright Yahoo. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root. #include "queryresult.h" #include <ostream> namespace storage { namespace api { IMPLEMENT_COMMAND(QueryResultCommand, QueryResultReply) IMPLEMENT_REPLY(QueryResultReply) QueryResultCommand::QueryResultCommand() : StorageCommand(MessageType::QUERYRESULT), _searchResult(), _summary() { } void QueryResultCommand::print(std::ostream& out, bool verbose, const std::string& indent) const { out << "QueryResultCommand(" << _searchResult.getHitCount() << " hits)"; if (verbose) { out << " : "; StorageCommand::print(out, verbose, indent); } } QueryResultReply::QueryResultReply(const QueryResultCommand& cmd) : StorageReply(cmd) { } void QueryResultReply::print(std::ostream& out, bool verbose, const std::string& indent) const { out << "QueryResultReply()"; if (verbose) { out << " : "; StorageReply::print(out, verbose, indent); } } } // api } // storage
56f60ebfb6fb384e390d8cf906f168c87a5b62fe
67c5af74057025a3259d77d7370cb3dd1548ed76
/myuart.cpp
915f13a0b81bd1a78ce8532edf979f0d05e20656
[]
no_license
nightsenven/PARKINGSYSTEM
99454dff3e0c6ef7a63ef01dcfab99d90a60935a
58123866be530abf2faa4cace5b0e9f90b66a637
refs/heads/main
2023-01-02T07:14:07.889970
2020-10-29T00:38:33
2020-10-29T00:38:33
308,175,667
0
0
null
null
null
null
UTF-8
C++
false
false
5,910
cpp
myuart.cpp
#include "myuart.h" myuart::myuart(QObject *parent) : QThread(parent) { //ๆ‰“ๅผ€ไธฒๅฃ fd=open_uart(); //ไธฒๅฃๅˆๅง‹ๅŒ– init_uart(fd); //่ถ…ๆ—ถๆ—ถ้—ด timeout.tv_sec = 1; timeout.tv_usec = 0; flag=0; } //ๅ…ณ้—ญไธฒๅฃ myuart::~myuart() { close(fd); } //ๆ‰“ๅผ€ไธฒๅฃ int myuart::open_uart() { int fd; //ๆ‰“ๅผ€ไธฒๅฃ็š„้ฉฑๅŠจ fd=open("/dev/ttySAC1",O_NOCTTY|O_NONBLOCK|O_RDWR); return fd; } //ไธฒๅฃๅˆๅง‹ๅŒ– void myuart::init_uart(int fd) { struct termios myios; //ไฟๅญ˜็Žฐๆœ‰ไธฒๅฃๅ‚ๆ•ฐ่ฎพ็ฝฎ tcgetattr(fd, &myios); //่ฎพ็ฝฎไธฒๅฃๅทฅไฝœๅœจๅŽŸๅง‹ๆจกๅผ--ใ€‹ไธฒๅฃๅช็”จไบŽๆ•ฐๆฎ็š„ๆ”ถๅ‘๏ผŒไธไฝœไธบๅ…ถๅฎƒๅŠŸ่ƒฝไฝฟ็”จ myios.c_cflag |= CLOCAL | CREAD; cfmakeraw(&myios); //่ฎพ็ฝฎๆณข็‰น็އ cfsetispeed(&myios, B9600); cfsetospeed(&myios, B9600); //8ไฝๆ•ฐๆฎไฝ myios.c_cflag &= ~CSIZE; myios.c_cflag |= CS8; //CS7 CS6 CS5 //ๆ— ๅฅ‡ๅถๆ ก้ชŒ myios.c_cflag &= ~PARENB; //1ไฝๅœๆญขไฝ myios.c_cflag &= ~CSTOPB; //ๅˆทๆ–ฐไธฒๅฃ็ผ“ๅ†ฒๅŒบ myios.c_cc[VTIME] = 0; myios.c_cc[VMIN] = 1; tcflush(fd, TCIOFLUSH); //ไธฒๅฃ่ฎพ็ฝฎไฝฟ่ƒฝ(่ฎฉๅ‰้ขๅ…ญๆญฅ็š„้…็ฝฎ็”Ÿๆ•ˆ) tcsetattr(fd,TCSANOW,&myios); } //ๅ‘้€Aๅ‘ฝไปค int myuart::sendARequest(int fd) { unsigned char WBuf[128], RBuf[128]; //ๆธ…็ฉบ bzero(WBuf,sizeof(WBuf)); bzero(RBuf,sizeof(RBuf)); WBuf[0]=0x07; //ๅธง้•ฟ WBuf[1]=0x02; //ๅ‘ฝไปค็ฑปๅž‹ WBuf[2]=0x41; //Aๅ‘ฝไปค WBuf[3]=0x01; //ไฟกๆฏ้•ฟๅบฆ WBuf[4]=0x52; //่ฏทๆฑ‚ๆจกๅผ ALL WBuf[5]=CountBCC(WBuf,WBuf[0]-2); //ๆฃ€้ชŒๅ’Œ WBuf[6]=0x03; //็ป“ๆŸ็ฌฆ fd_set myset; int count=0; //่ฏทๆฑ‚่ฏปๅ†™ๆฌกๆ•ฐ while(1) { //ๆทปๅŠ ็›‘ๅฌๆ่ฟฐ็ฌฆ FD_ZERO(&myset); FD_SET(fd,&myset); //ๅˆทๆ–ฐ็ผ“ๅ†ฒๅŒบ tcflush(fd, TCIOFLUSH); //ๅ‘้€ๆ•ฐๆฎ write(fd,WBuf,7); //็›‘ๅฌไธฒๅฃ ,่ฏทๆฑ‚ๆŽฅๆ”ถไปŽๆœบไฟกๆฏ int ret = select(fd + 1,&myset, NULL,NULL,&timeout); if(ret>0) { usleep(10000); //ๅพฎ็ง’ //่ฏปๅ–ไฟกๆฏ ret = read(fd, RBuf, 8); if(ret < 0) { printf("len = %d, %m\n", ret, errno); continue; } //printf("RBuf[2]:%x\n", RBuf[2]); if(RBuf[2] == 0x00) //ๅบ”็ญ”ๅธง็Šถๆ€้ƒจๅˆ†ไธบ0 ๅˆ™่ฏทๆฑ‚ๆˆๅŠŸ { return 0; } } else if(ret==0) //่ถ…ๆ—ถ { count++; //3ๆฌก่ฏทๆฑ‚่ถ…ๆ—ถๅŽ๏ผŒ้€€ๅ‡บ่ฏฅๅ‡ฝๆ•ฐ if(count == 3) { count=0; return -1; } } else { perror("select error"); return -1; } } return 0; } //ๅ‘้€Bๅ‘ฝไปค --้˜ฒ็ขฐๆ’ž int myuart::sendBRequest(int fd) { unsigned char WBuf[128], RBuf[128]; //ๆธ…็ฉบ bzero(WBuf,sizeof(WBuf)); memset(RBuf,1,128);; WBuf[0]=0x08; //ๅธง้•ฟ WBuf[1]=0x02; //ๅ‘ฝไปค็ฑปๅž‹ WBuf[2]=0x42; //Bๅ‘ฝไปค WBuf[3]=0x02; //ไฟกๆฏ้•ฟๅบฆ WBuf[4]=0x93; //้˜ฒ็ขฐๆ’ž0x93 ็ฌฌไธ€็บง้˜ฒ็ขฐๆ’ž WBuf[5]=0x00; //ไฝ่ฎกๆ•ฐ0 WBuf[6]=CountBCC(WBuf,WBuf[0]-2); //ๆฃ€้ชŒๅ’Œ WBuf[7]=0x03; //็ป“ๆŸ็ฌฆ fd_set myset; int count=0; //่ฏทๆฑ‚่ฏปๅ†™ๆฌกๆ•ฐ while(1) { //ๆทปๅŠ ็›‘ๅฌๆ่ฟฐ็ฌฆ FD_ZERO(&myset); FD_SET(fd,&myset); //ๅˆทๆ–ฐ็ผ“ๅ†ฒๅŒบ tcflush(fd, TCIOFLUSH); //ๅ‘้€ๆ•ฐๆฎ write(fd,WBuf,8); //็›‘ๅฌไธฒๅฃ ,่ฏทๆฑ‚ๆŽฅๆ”ถไปŽๆœบไฟกๆฏ int ret = select(fd + 1,&myset, NULL,NULL,&timeout); if(ret>0) { usleep(10000); //ๅพฎ็ง’ //่ฏปๅ–ไฟกๆฏ ret = read(fd, RBuf, 8); if(ret < 0) { printf("len = %d, %m\n", ret, errno); //ๆ‰“ๅฐ้”™่ฏฏไฟกๆฏ continue; } //printf("RBuf[2]:%x\n", RBuf[2]); if(RBuf[2] == 0x00) //ๅบ”็ญ”ๅธง็Šถๆ€้ƒจๅˆ†ไธบ0 ๅˆ™่ฏทๆฑ‚ๆˆๅŠŸ { //่Žทๅ–ๅกๅทไฟกๆฏ cardid = (RBuf[7]<<24) | (RBuf[6]<<16) | (RBuf[5]<<8) | RBuf[4]; return 0; } } else if(ret==0) //่ถ…ๆ—ถ { count++; //3ๆฌก่ฏทๆฑ‚่ถ…ๆ—ถๅŽ๏ผŒ้€€ๅ‡บ่ฏฅๅ‡ฝๆ•ฐ if(count == 3) { count=0; return -1; } } else { perror("select error"); return -1; } } return 0; } //ๆ ก้ชŒๅ’Œ unsigned char myuart::CountBCC(unsigned char *buf, int n) { unsigned char bcc=0; for(int i=0;i<n;i++) bcc ^= *(buf+i); return ~(bcc); } //็บฟ็จ‹ไปปๅŠกๅ‡ฝๆ•ฐ void myuart::run() { //่ฏปๅ†™ๆ“ไฝœ while(1) { //ๅ‘้€Aๅ‘ฝไปค int ret = sendARequest(fd); if(ret==-1) //่ฏทๆฑ‚่ถ…ๆ—ถ ้‡ๆ–ฐๆ‰“ๅผ€ๅนถๅ‘้€ { usleep(500000); close(fd); //ๆ‰“ๅผ€ไธฒๅฃๆ–‡ไปถ fd = open_uart(); /*ๅˆๅง‹ๅŒ–ไธฒๅฃ*/ init_uart(fd); timeout.tv_sec = 1; timeout.tv_usec = 0; continue; } else if(ret==-2) { perror("select err"); return ; } else //ๆˆๅŠŸ { printf("ๅ‘้€ๆˆๅŠŸ๏ผŒ็ปง็ปญ๏ผ"); //ๅ‘้€Bๅ‘ฝไปค ๅ’Œ่Žทๅ–ๅกๅท ret = sendBRequest(fd); //่‹ฅ่Žทๅ–็š„cardidไธบ0๏ผŒๆˆ–่Žทๅ–id่ถ…ๆ—ถ๏ผŒๅˆ™้œ€้‡ๆ–ฐๅ‘้€'A'ๅ‘ฝไปค if(cardid == 0 || ret == -1) continue; else if(ret == 0) { flag=1; printf("card ID = %x\n", cardid); //ๆ‰“ๅฐcardidๅท usleep(500000); //break; } } } }
dfc9727ceb70181d69242cb3b9e246fede190616
a75d0418b2143d6f59635a8833bff49bc903df5e
/DofusMessages/IdentificationFailedBannedMessage.h
12c777a0bfa39bddfc1ce716e53b53fe108ba941
[]
no_license
Arkwell9112/dofus_bot
30b80850ba41b6a2b562705ec8aa1a6c87cfb8f8
fc1b805b70c0ed43cbc585322806ece89d057585
refs/heads/master
2023-01-16T01:08:06.710649
2020-11-23T20:53:00
2020-11-23T20:53:00
314,084,045
0
0
null
null
null
null
UTF-8
C++
false
false
436
h
IdentificationFailedBannedMessage.h
#ifndef IDENTIFICATIONFAILEDBANNEDMESSAGE_H #define IDENTIFICATIONFAILEDBANNEDMESSAGE_H #include "IdentificationFailedMessage.h" #include "../BotCoreAPI/BotCoreAPI.h" #include <string> #include <vector> class IdentificationFailedBannedMessage : public IdentificationFailedMessage { public: double banEndDate = 0; void deserialize(CustomDataInput *input); private: void _banEndDateFunc(CustomDataInput *input); }; #endif
b1a1eec815e069217d03740a9b109a2b6fda5357
f2c0259c672277d6f17a715e10f5e5ecdd00d605
/smtk/graph/pybind11/PybindResourceBase.h
bf968f952a9e885db0801039b7b7021974006b45
[ "BSD-3-Clause", "LicenseRef-scancode-unknown-license-reference" ]
permissive
Kitware/SMTK
83ff15620f801f12488ad238a4cf36f2998cfd14
a16cf5393f91d97dca2db0c2bd46d21864152c66
refs/heads/master
2023-08-31T18:54:44.534709
2023-08-28T14:35:32
2023-08-28T14:35:50
28,104,084
50
30
NOASSERTION
2023-07-20T11:08:10
2014-12-16T20:02:07
C++
UTF-8
C++
false
false
1,571
h
PybindResourceBase.h
//========================================================================= // Copyright (c) Kitware, Inc. // All rights reserved. // See LICENSE.txt for details. // // This software is distributed WITHOUT ANY WARRANTY; without even // the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR // PURPOSE. See the above copyright notice for more information. //========================================================================= #ifndef pybind_smtk_graph_ResourceBase_h #define pybind_smtk_graph_ResourceBase_h #include <pybind11/pybind11.h> #include <pybind11/stl.h> #include "smtk/graph/ResourceBase.h" #include "smtk/string/Token.h" #include "smtk/geometry/Resource.h" #include <vector> #include <string> namespace py = pybind11; inline PySharedPtrClass< smtk::graph::ResourceBase> pybind11_init_smtk_graph_ResourceBase(py::module &m) { PySharedPtrClass< smtk::graph::ResourceBase, smtk::geometry::Resource> instance(m, "ResourceBase"); instance .def("arcTypes", &smtk::graph::ResourceBase::arcTypes) .def("nodeTypes", &smtk::graph::ResourceBase::nodeTypes) .def("createNodeOfType", &smtk::graph::ResourceBase::createNodeOfType, py::arg("nodeType")) .def("connect", &smtk::graph::ResourceBase::connect, py::arg("from"), py::arg("to"), py::arg("arcType")) .def("disconnect", &smtk::graph::ResourceBase::disconnect, py::arg("from"), py::arg("explicitOnly") = false) .def("dump", &smtk::graph::ResourceBase::dump, py::arg("filename"), py::arg("mimeType") = "text/vnd.graphviz") ; return instance; } #endif
08f8af07c8a4eba5059a7c528c23a8ab2dd9e276
90997256b53b76f6fc55e01aa5e40e5ba63e81b4
/include/frozen/bits/algorithms.h
4efa61b218ea324fd323db98636b30e1063d69c2
[ "Apache-2.0" ]
permissive
serge-sans-paille/frozen
ab4c0c143c96dcb46d69fed1e6777bd242c1f721
c241d64279d30a013be2601d42564280f950bcb8
refs/heads/master
2023-09-05T05:56:13.058865
2023-08-28T04:59:09
2023-08-28T05:26:17
92,028,303
1,111
103
Apache-2.0
2023-08-28T05:26:18
2017-05-22T08:09:44
C++
UTF-8
C++
false
false
7,467
h
algorithms.h
/* * Frozen * Copyright 2016 QuarksLab * * Licensed to the Apache Software Foundation (ASF) under one * or more contributor license agreements. See the NOTICE file * distributed with this work for additional information * regarding copyright ownership. The ASF licenses this file * to you 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 * * http://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. */ #ifndef FROZEN_LETITGO_BITS_ALGORITHMS_H #define FROZEN_LETITGO_BITS_ALGORITHMS_H #include "frozen/bits/basic_types.h" #include <limits> #include <tuple> namespace frozen { namespace bits { auto constexpr next_highest_power_of_two(std::size_t v) { // https://graphics.stanford.edu/~seander/bithacks.html#RoundUpPowerOf2 constexpr auto trip_count = std::numeric_limits<decltype(v)>::digits; v--; for(std::size_t i = 1; i < trip_count; i <<= 1) v |= v >> i; v++; return v; } template<class T> auto constexpr log(T v) { std::size_t n = 0; while (v > 1) { n += 1; v >>= 1; } return n; } constexpr std::size_t bit_weight(std::size_t n) { return (n <= 8*sizeof(unsigned int)) + (n <= 8*sizeof(unsigned long)) + (n <= 8*sizeof(unsigned long long)) + (n <= 128); } unsigned int select_uint_least(std::integral_constant<std::size_t, 4>); unsigned long select_uint_least(std::integral_constant<std::size_t, 3>); unsigned long long select_uint_least(std::integral_constant<std::size_t, 2>); template<std::size_t N> unsigned long long select_uint_least(std::integral_constant<std::size_t, N>) { static_assert(N < 2, "unsupported type size"); return {}; } template<std::size_t N> using select_uint_least_t = decltype(select_uint_least(std::integral_constant<std::size_t, bit_weight(N)>())); template <typename Iter, typename Compare> constexpr auto min_element(Iter begin, const Iter end, Compare const &compare) { auto result = begin; while (begin != end) { if (compare(*begin, *result)) { result = begin; } ++begin; } return result; } template <class T> constexpr void cswap(T &a, T &b) { auto tmp = a; a = b; b = tmp; } template <class T, class U> constexpr void cswap(std::pair<T, U> & a, std::pair<T, U> & b) { cswap(a.first, b.first); cswap(a.second, b.second); } template <class... Tys, std::size_t... Is> constexpr void cswap(std::tuple<Tys...> &a, std::tuple<Tys...> &b, std::index_sequence<Is...>) { using swallow = int[]; (void) swallow{(cswap(std::get<Is>(a), std::get<Is>(b)), 0)...}; } template <class... Tys> constexpr void cswap(std::tuple<Tys...> &a, std::tuple<Tys...> &b) { cswap(a, b, std::make_index_sequence<sizeof...(Tys)>()); } template <typename Iter> constexpr void iter_swap(Iter a, Iter b) { cswap(*a, *b); } template <typename Iterator, class Compare> constexpr Iterator partition(Iterator left, Iterator right, Compare const &compare) { auto pivot = left + (right - left) / 2; iter_swap(right, pivot); pivot = right; for (auto it = left; 0 < right - it; ++it) { if (compare(*it, *pivot)) { iter_swap(it, left); left++; } } iter_swap(pivot, left); pivot = left; return pivot; } template <typename Iterator, class Compare> constexpr void quicksort(Iterator left, Iterator right, Compare const &compare) { while (0 < right - left) { auto new_pivot = bits::partition(left, right, compare); quicksort(left, new_pivot, compare); left = new_pivot + 1; } } template <typename Container, class Compare> constexpr Container quicksort(Container const &array, Compare const &compare) { Container res = array; quicksort(res.begin(), res.end() - 1, compare); return res; } template <class T, class Compare> struct LowerBound { T const &value_; Compare const &compare_; constexpr LowerBound(T const &value, Compare const &compare) : value_(value), compare_(compare) {} template <class ForwardIt> inline constexpr ForwardIt doit_fast(ForwardIt first, std::integral_constant<std::size_t, 0>) { return first; } template <class ForwardIt, std::size_t N> inline constexpr ForwardIt doit_fast(ForwardIt first, std::integral_constant<std::size_t, N>) { auto constexpr step = N / 2; static_assert(N/2 == N - N / 2 - 1, "power of two minus 1"); auto it = first + step; auto next_it = compare_(*it, value_) ? it + 1 : first; return doit_fast(next_it, std::integral_constant<std::size_t, N / 2>{}); } template <class ForwardIt, std::size_t N> inline constexpr ForwardIt doitfirst(ForwardIt first, std::integral_constant<std::size_t, N>, std::integral_constant<bool, true>) { return doit_fast(first, std::integral_constant<std::size_t, N>{}); } template <class ForwardIt, std::size_t N> inline constexpr ForwardIt doitfirst(ForwardIt first, std::integral_constant<std::size_t, N>, std::integral_constant<bool, false>) { auto constexpr next_power = next_highest_power_of_two(N); auto constexpr next_start = next_power / 2 - 1; auto it = first + next_start; if (compare_(*it, value_)) { auto constexpr next = N - next_start - 1; return doitfirst(it + 1, std::integral_constant<std::size_t, next>{}, std::integral_constant<bool, next_highest_power_of_two(next) - 1 == next>{}); } else return doit_fast(first, std::integral_constant<std::size_t, next_start>{}); } template <class ForwardIt> inline constexpr ForwardIt doitfirst(ForwardIt first, std::integral_constant<std::size_t, 1>, std::integral_constant<bool, false>) { return doit_fast(first, std::integral_constant<std::size_t, 1>{}); } }; template <std::size_t N, class ForwardIt, class T, class Compare> constexpr ForwardIt lower_bound(ForwardIt first, const T &value, Compare const &compare) { return LowerBound<T, Compare>{value, compare}.doitfirst(first, std::integral_constant<std::size_t, N>{}, std::integral_constant<bool, next_highest_power_of_two(N) - 1 == N>{}); } template <std::size_t N, class Compare, class ForwardIt, class T> constexpr bool binary_search(ForwardIt first, const T &value, Compare const &compare) { ForwardIt where = lower_bound<N>(first, value, compare); return (!(where == first + N) && !(compare(value, *where))); } template<class InputIt1, class InputIt2> constexpr bool equal(InputIt1 first1, InputIt1 last1, InputIt2 first2) { for (; first1 != last1; ++first1, ++first2) { if (!(*first1 == *first2)) { return false; } } return true; } template<class InputIt1, class InputIt2> constexpr bool lexicographical_compare(InputIt1 first1, InputIt1 last1, InputIt2 first2, InputIt2 last2) { for (; (first1 != last1) && (first2 != last2); ++first1, ++first2) { if (*first1 < *first2) return true; if (*first2 < *first1) return false; } return (first1 == last1) && (first2 != last2); } } // namespace bits } // namespace frozen #endif
3e73410012d556ffbbf54b109060d1543fda4d3f
25da2b85d5623bd03306a2f612e969a3d7927c74
/servidor/Clases/Posicion.cpp
afc18a3153ab96caee7f0fc0a89b6e6139c60671
[]
no_license
moreover22/ArgentumOnline
f55e7863e31d0e73e474a2ee9c86fe17b91da522
80f334112c42d35e2303f45eb64f1b1ce9cf06c7
refs/heads/master
2023-03-18T22:08:57.574188
2020-07-21T20:36:42
2020-07-21T20:36:42
null
0
0
null
null
null
null
UTF-8
C++
false
false
4,797
cpp
Posicion.cpp
#include "Posicion.h" #include "Configuraciones.h" #include <utility> #include <sstream> #include <cmath> ////////////////////METODOS AUXILIARES//////////////////// static bool floatComp(float a, float b, float epsilon = 0.1){ return fabs(a - b) < epsilon; } /////////////////////////METODOS////////////////////////// Posicion::Posicion(float x, float y, float anch, float alt) : pos(x, y), ancho(anch), alto(alt), desplazamiento(0,0), areaQueOcupa(x - ancho/2, y - alto/2, ancho, alto){ } Posicion::Posicion() : pos(0,0), ancho(0), alto(0), desplazamiento(0, 0), areaQueOcupa(0, 0, 0, 0){} Posicion::Posicion(const quadtree::Vector2<float> &unaPos, const quadtree::Vector2<float> &desp, const float anch, const float alt) : pos(unaPos), ancho(anch), alto(alt), desplazamiento(desp){ actualizarArea(); } Posicion::Posicion(Posicion &&otro){ pos = std::move(otro.pos); desplazamiento = std::move(otro.desplazamiento); ancho = std::move(otro.ancho); alto = std::move(otro.alto); actualizarArea(); } Posicion::Posicion(const Posicion &otro){ pos = otro.pos; desplazamiento = otro.desplazamiento; ancho = otro.ancho; alto = otro.alto; actualizarArea(); } Posicion& Posicion::operator=(Posicion &&otro){ pos = std::move(otro.pos); desplazamiento = std::move(otro.desplazamiento); ancho = std::move(otro.ancho); alto = std::move(otro.alto); areaQueOcupa = std::move(otro.areaQueOcupa); return *this; } //Me interesa unicamente comparar la posicion, no el resto de los atributos. bool Posicion::operator==(const Posicion &otro) const{ bool igualX = floatComp(pos.obtenerX(), otro.pos.obtenerX()); bool igualY = floatComp(pos.obtenerY(),otro.pos.obtenerY()); return igualX && igualY; } void Posicion::actualizarPosicion(Posicion &&otro){ //Solo actualizo coordenadas, no cambio el area que ocupo. this->pos = std::move(otro.pos); actualizarArea(); } void Posicion::moverHaciaArriba(float factorDesplazamiento){ desplazamiento = std::move(quadtree::Vector2<float>(0, -1) * factorDesplazamiento); } void Posicion::moverHaciaAbajo(float factorDesplazamiento){ desplazamiento = std::move(quadtree::Vector2<float>(0, 1) * factorDesplazamiento); } void Posicion::moverHaciaDerecha(float factorDesplazamiento){ desplazamiento = std::move(quadtree::Vector2<float>(1, 0) * factorDesplazamiento); } void Posicion::moverHaciaIzquierda(float factorDesplazamiento){ desplazamiento = std::move(quadtree::Vector2<float>(-1, 0) * factorDesplazamiento); } Posicion Posicion::mover(const double tiempo) const{ Posicion nuevaPosicion(pos + desplazamiento * (float)tiempo, desplazamiento, ancho, alto); return nuevaPosicion; } void Posicion::detenerse(){ desplazamiento = std::move(quadtree::Vector2<float>(0, 0)); } void Posicion::actualizarArea(){ areaQueOcupa = std::move(quadtree::Box<float>(pos.obtenerX() - ancho/2, pos.obtenerY() - alto/2, ancho, alto)); } const quadtree::Box<float>& Posicion::obtenerAreaQueOcupa() const{ return areaQueOcupa; } float Posicion::longitudMaximaDeColision() const{ return sqrt(ancho * ancho + alto * alto); } Posicion Posicion::nuevaPosicionDesplazada(float x, float y) const{ return std::move(Posicion(pos.obtenerX() + x, pos.obtenerY() + y, ancho, alto)); } const float Posicion::obtenerX() const{ return pos.obtenerX(); } const float Posicion::obtenerY() const{ return pos.obtenerY(); } float Posicion::calcularDistancia(const Posicion &otra) const{ return pos.calcularDistancia(otra.pos); } Posicion Posicion::perseguir(const Posicion &otraPosicion, const float factorDesplazamiento, const double tiempo) const{ float distancia = pos.calcularDistancia(otraPosicion.pos); if (distancia <= factorDesplazamiento * tiempo){ return otraPosicion; } quadtree::Vector2<float> temp = (otraPosicion.pos - pos); temp.normalizar(); return Posicion(pos + temp * factorDesplazamiento * (float)tiempo, desplazamiento, ancho, alto); } const quadtree::Box<float> Posicion::obtenerAreaCentradaEnPosicion(float radio) const{ return quadtree::Box<float>(pos.obtenerX() - radio, pos.obtenerY() - radio, radio*2, radio*2); } //Serializacion struct PosicionEncapsulada Posicion::serializarPosicion() const{ struct PosicionEncapsulada posEncap = {{0}, pos.obtenerX(), pos.obtenerY()}; return posEncap; }
6d49b292912b896e3010a54dc9500775b2cb4556
6b40e9dccf2edc767c44df3acd9b626fcd586b4d
/NT/base/ntsetup/spsetup/regdiff/regdifffile.h
3304e481a229ca29d87fadd6369bbb7f9af15d5a
[]
no_license
jjzhang166/WinNT5_src_20201004
712894fcf94fb82c49e5cd09d719da00740e0436
b2db264153b80fbb91ef5fc9f57b387e223dbfc2
refs/heads/Win2K3
2023-08-12T01:31:59.670176
2021-10-14T15:14:37
2021-10-14T15:14:37
586,134,273
1
0
null
2023-01-07T03:47:45
2023-01-07T03:47:44
null
UTF-8
C++
false
false
1,044
h
regdifffile.h
// RegDiffFile.h: interface for the CRegDiffFile class. // ////////////////////////////////////////////////////////////////////// #if !defined(AFX_REGDIFFFILE_H__898750DA_897E_4F8A_BD51_899EC068C300__INCLUDED_) #define AFX_REGDIFFFILE_H__898750DA_897E_4F8A_BD51_899EC068C300__INCLUDED_ #if _MSC_VER > 1000 #pragma once #endif // _MSC_VER > 1000 #include "RegFile.h" class CRegDiffFile : public CRegFile { public: virtual bool NeedStorageOfValueData(); void DeleteFromRegistry(CRegDataItemPtr pDataItem, CRegDiffFile& UndoFile); void AddToRegistry(CRegDataItemPtr pDataItem, CRegDiffFile& UndoFile); BOOL ApplyToRegistry(LPCTSTR UndoFileName = NULL); CRegDiffFile(); virtual ~CRegDiffFile(); virtual void WriteDataItem(enum SectionType t, CRegDataItemPtr r); virtual void WriteStoredSectionsToFile(); protected: CSmartBuffer<CRegDataItemPtr> m_AddSection; CSmartBuffer<CRegDataItemPtr> m_DelSection; }; #endif // !defined(AFX_REGDIFFFILE_H__898750DA_897E_4F8A_BD51_899EC068C300__INCLUDED_)
99f41867fbfbde6979ec4a95d5f2bb087460fb4d
792f2ee67210556f224daf88ef0b9785becadc9b
/atcoder/Other/DDCC2016-C.cpp
d821f931f5fd2528125de5e262a3e37787100a44
[]
no_license
firiexp/contest_log
e5b345286e7d69ebf2a599d4a81bdb19243ca18d
6474a7127d3a2fed768ebb62031d5ff30eeeef86
refs/heads/master
2021-07-20T01:16:47.869936
2020-04-30T03:27:51
2020-04-30T03:27:51
150,196,219
0
0
null
null
null
null
UTF-8
C++
false
false
825
cpp
DDCC2016-C.cpp
#include <iostream> #include <algorithm> #include <vector> #include <iomanip> #include <map> #include <queue> static const int MOD = 1000000007; using ll = long long; using u32 = unsigned; using namespace std; template<class T> constexpr T INF = ::numeric_limits<T>::max() / 32 * 15 + 208; int main() { int n, k; cin >> n >> k; map<int, int> v; for (int i = 0; i < n; ++i) { int x; scanf("%d", &x); v[__gcd(x, k)]++; } ll ans = 0; for (auto &&i : v) { for (auto &&j : v) { if(__gcd((ll)i.first*j.first, (ll)k) >= k){ if(i.first == j.first) ans += (ll)i.second*(i.second-1); else ans += (ll)i.second*j.second; } } } cout << ans/2 << "\n"; return 0; }
d78815aac54ee0c92db0065084809d298b7928dd
c2c127bb627265dfa1970aa7951238f935380aee
/Multiplayer Blackjack/src/Core/gui/Label.cpp
4ffd7ed771d9cc023bd5799b6106afa59f8d8b11
[]
no_license
Daninjakiwi/Multiplayer-Blackjack
f4e82e87a7b36a4edfca343bc7aefd7be698830e
471cc8fd99187700249da949df672a4cc5dfc77d
refs/heads/master
2020-09-04T19:32:34.872460
2020-01-24T21:04:22
2020-01-24T21:04:22
219,869,211
0
0
null
null
null
null
UTF-8
C++
false
false
4,806
cpp
Label.cpp
#include "Core/Log.hpp" #include "Label.hpp" namespace blackjack::core { Text::Text(const float x, const float y, const std::string& text, Font* font) : GuiElement(x,y,100,100, font->GetMaterial()),text_(text),font_(*font), offset_(0) { SetText(text); } Text::Text(const float x, const float y, const std::string& text, Font font) : GuiElement(x, y, 100, 100, font.GetMaterial()), text_(text), font_(font), offset_(0) { SetText(text); } void Text::SetText(const std::string& text) { offset_ = 0; text_ = text; ResizeVertices((int)text_.length() * 16); ResizeIndices((int)text_.length() * 6); float ratio = font_.GetScale(); for (int i = 0; i < text_.length(); i++) { const char c = text_.at(i); if (c == ' ') { offset_ += 80 * ratio; } else { Character ch = font_.GetBaseFont()->characters[c]; CreateQuad(i, ch); offset_ += ch.advance; } } } void Text::Append(const std::string& text) { text_ += text; ResizeVertices((int)text_.length() * 16); ResizeIndices((int)text_.length() * 6); float ratio = font_.GetScale(); for (int i = text_.length() - text.length(); i < text_.length(); i++) { const char c = text_.at(i); if (c == ' ') { offset_ += 80 * ratio; } else { Character ch = font_.GetBaseFont()->characters[c]; CreateQuad(i, ch); offset_ += ch.advance; } } } void Text::Append(char c) { text_ += c; ResizeVertices((int)text_.length() * 16); ResizeIndices((int)text_.length() * 6); float ratio = font_.GetScale(); if (c == ' ') { offset_ += 80 * ratio; } else { Character ch = font_.GetBaseFont()->characters[c]; CreateQuad((int)text_.length() - 1, ch); offset_ += ch.advance; } } void Text::Remove(int num_characters) { int val = (int)text_.length() - 1; int val2 = (int)text_.length() - num_characters - 1; for (int i = val; i > val2; i--) { const char c = text_.at(i); if (c == ' ') { offset_ -= 80 * font_.GetScale(); } else { Character ch = font_.GetBaseFont()->characters[c]; ch = font_.GetScale() * ch; offset_ -= ch.advance; } } text_ = text_.substr(0, text_.length() - num_characters); ResizeVertices((int)text_.length() * 16); ResizeIndices((int)text_.length() * 6); } void Text::CreateQuad(const int char_num, Character& character) { vertices_[2 + (16 * char_num)] = character.x; vertices_[3 + (16 * char_num)] = character.y ; vertices_[6 + (16 * char_num)] = character.x + character.wratio; vertices_[7 + (16 * char_num)] = character.y; vertices_[10 + (16 * char_num)] = character.x + character.wratio; vertices_[11 + (16 * char_num)] = character.y - character.hratio; vertices_[14 + (16 * char_num)] = character.x; vertices_[15 + (16 * char_num)] = character.y - character.hratio; character = font_.GetScale() * character; vertices_[16 * char_num] = x_ + offset_ + character.xoffset; vertices_[1 + (16 * char_num)] = y_ + character.yoffset; vertices_[4+(16 * char_num)] = x_ + offset_ + character.xoffset + character.width; vertices_[5+(16 * char_num)] = y_ + character.yoffset; vertices_[8+(16 * char_num)] = x_ + offset_ + character.xoffset + character.width; vertices_[9+(16 * char_num)] = y_ + character.yoffset + character.height; vertices_[12+(16 * char_num)] = x_ + offset_ + character.xoffset; vertices_[13+(16 * char_num)] = y_ + character.yoffset + character.height; indices_[6*char_num] = (4*char_num); indices_[1+(6*char_num)] = 1+ (4 * char_num); indices_[2+(6 * char_num)] = 2 + (4 * char_num); indices_[3+(6 * char_num)] = 2 + (4 * char_num); indices_[4+(6 * char_num)] = 3 + (4 * char_num); indices_[5+(6 * char_num)] = (4 * char_num); } const std::string& Text::GetText() const { return text_; } Label::Label(const float x, const float y, const float width, const float height, const std::string& text, Font* font, const Colour colour) : GuiElement(x, y, width, height, colour), text_(x + (width/5), y + ((height - font->GetSize()) / 2) - (font->GetSize()/5), text, font), padx_(0), pady_(0) { } void Label::SetPadX(float value) { text_.SetX(x_ + value); text_.SetText(text_.GetText()); padx_ = value; } void Label::SetPadY(float value) { text_.SetY(y_ + value); text_.SetText(text_.GetText()); pady_ = value; } void Label::Draw(RendererUI& renderer) { if (draw_) { renderer.Push(&text_); renderer.Push(this); } } void Label::SetText(const std::string& text) { text_.SetText(text); } void Label::SetX(const float x) { text_.SetX(x + (width_ / 5)); GuiElement::SetX(x); } void Label::SetY(const float y) { text_.SetY(text_.GetY() + (y-y_)); text_.SetText(text_.GetText()); GuiElement::SetY(y); } const std::string& Label::GetText() const { return text_.text_; } }
93d14e06e87590a399091cf76cf238722ddf8148
86b53650716d14134591909662465b9b028864b9
/C++/c55.h
85bc04880442e257272bd2b6f39c813ee8e40522
[]
no_license
KaneZhao/LintCode
e2a595656e1518493624def75d40f26a41170f63
2ed5f10354cf5dfc383c66496440ad738361f7cf
refs/heads/master
2018-09-24T19:02:11.855774
2018-07-27T15:00:59
2018-07-27T15:00:59
111,538,283
1
0
null
null
null
null
GB18030
C++
false
false
761
h
c55.h
#ifndef C55_H #define C55_H #include<iostream> #include<string> #include<vector> using namespace std; /* * ๆฏ”่พƒๅญ—็ฌฆไธฒ * * ๆฏ”่พƒไธคไธชๅญ—็ฌฆไธฒAๅ’ŒB๏ผŒ็กฎๅฎšAไธญๆ˜ฏๅฆๅŒ…ๅซBไธญๆ‰€ๆœ‰็š„ๅญ—็ฌฆใ€‚ๅญ—็ฌฆไธฒAๅ’ŒBไธญ็š„ๅญ—็ฌฆ้ƒฝๆ˜ฏ ๅคงๅ†™ๅญ—ๆฏ * ๆณจๆ„ไบ‹้กน * ๅœจ A ไธญๅ‡บ็Žฐ็š„ B ๅญ—็ฌฆไธฒ้‡Œ็š„ๅญ—็ฌฆไธ้œ€่ฆ่ฟž็ปญๆˆ–่€…ๆœ‰ๅบใ€‚ * ๆ ทไพ‹ * ็ป™ๅ‡บ A = "ABCD" B = "ACD"๏ผŒ่ฟ”ๅ›ž true * ็ป™ๅ‡บ A = "ABCD" B = "AABC"๏ผŒ ่ฟ”ๅ›ž false */ class Solution { public: bool compareStrings(string A, string B) { // write your code here vector<int> vecA(26, 0), vecB(26, 0); for (auto a : A) vecA[a - 'A']++; for (auto b : B) vecB[b - 'A']++; for (int i = 0; i < 26; ++i) { if (vecA[i] < vecB[i]) return false; } return true; } }; #endif
06bf0ae65a59bcb8205fac33d93e14db2c51b02e
bcc3d6f4c6b770a87ad0bfd6de2de26d993c4e26
/Software-toMove/FARKUS flash sim/FARKUS flash sim/CubeletsShield.cpp
638bb46d41445db148625ebb6da5a299e8b1d392
[]
no_license
modrobotics/FARKUS
366085064558a0f5bcb367b932482f5e5f2fa733
83cf395ce37c0469d2ed249f68b96a55702ce089
refs/heads/master
2020-05-02T19:50:57.406082
2014-08-05T02:32:52
2014-08-05T02:32:52
13,183,568
6
0
null
null
null
null
UTF-8
C++
false
false
8,599
cpp
CubeletsShield.cpp
/* CubeletsShield.cpp - A Library for interacting with the Cubelets Arduino Shield. Modular Robotics, 2013 Created by Jonathan Moyes, June 9, 2013 */ #include "Arduino.h" #include "CubeletsShield.h" // Initialize Global working variables volatile unsigned char rec_byte_i2c;; // Worker variable to hold I2C Received Byte volatile int I2CReturnCode; // Worker variable to hold I2C Return Codes (See Atmel Datasheet) unsigned char cubeletI2CAddresses[7]; unsigned char ledPin; boolean debugOverUsart = 0; CubeletsShield::CubeletsShield(boolean enableDebugOverUsart, unsigned char ledPinForI2C) { // ############################################ // #### Working Variable Initialization ####### // ############################################ rec_byte_i2c = 0x00; // Worker variable to hold I2C Received Byte I2CReturnCode = -1; // Worker variable to hold I2C Return Codes (See Atmel Datasheet) // Initialize Addresses Array cubeletI2CAddresses[0] = ADDRESS_CUBE1; cubeletI2CAddresses[1] = ADDRESS_CUBE2; cubeletI2CAddresses[2] = ADDRESS_CUBE3; cubeletI2CAddresses[3] = ADDRESS_CUBE4; cubeletI2CAddresses[4] = ADDRESS_CUBE5; cubeletI2CAddresses[5] = ADDRESS_CUBE6; cubeletI2CAddresses[6] = ADDRESS_FLASHER; // I2C Activity indicator light if(ledPinForI2C > 0){ ledPin = ledPinForI2C; pinMode(ledPin, OUTPUT); trafficLEDOff(); } // Debug over USART enabled? if(enableDebugOverUsart){ Serial.begin(9600); debugOverUsart = 1; } trafficLEDOn(); } void CubeletsShield::initialize(){ // ############################################ // #### Peripheral Configuration, Etc ######## // ############################################ // Setup I2C for our needs initializeI2C(); // Wait plenty of time for the Cubelets MCUs to start, configure their SSPs delay(10); // Clean Block Values, enable communication, light Debug LEDs initializeCubeletsShield(); if(debugOverUsart){ Serial.println("Cubelet-Arduino Interface Loaded. Ready."); } } // ####################################################################### // I2C-RELATED FUNCTIONS // ####################################################################### void CubeletsShield::initializeI2C(){ I2c.begin(); I2c.pullup(0); // Disable the internal pullups I2c.setSpeed(1); // 1=400kHz 0= I2c.timeOut(1000); //100ms for a request to succeed } unsigned char CubeletsShield::sendCommandI2C(unsigned char addr, unsigned char command, unsigned char retries){ trafficLEDOn(); I2CReturnCode = I2c.write(addr, command); trafficLEDOff(); if(I2CReturnCode == 0){ return I2CReturnCode; } else{ if(debugOverUsart){ Serial.print("Failed to send I2C Command addr: 0x"); Serial.print(addr, HEX); Serial.print(" command: 0x"); Serial.print(command, HEX); Serial.print(" retries remaining: "); Serial.println(retries, DEC); } if(retries >= 0 && retries >0){ retries--; return sendCommandI2C(addr, command, retries); } else return 1; // Return an error when we're out of retries } } unsigned char CubeletsShield::sendCommandWithDataI2C(unsigned char addr, unsigned char command, unsigned char data, unsigned char retries ){ trafficLEDOn(); I2CReturnCode = I2c.write(addr, command, data); trafficLEDOff(); if(I2CReturnCode == 0){ return I2CReturnCode; } else{ if(debugOverUsart){ Serial.print("Failed to send I2C Command addr: 0x"); Serial.print(addr, HEX); Serial.print(" command: 0x"); Serial.print(command, HEX); Serial.print(" data: 0x"); Serial.print(data, HEX); Serial.print(" retries remaining: "); Serial.println(retries, DEC); } if(retries >= 0 && retries >0){ retries--; //delay(2); return sendCommandWithDataI2C(addr, command, data, retries); } else return 1; // Return an error when we're out of retries } } // Returns 0 after `retries` attempts, else returns # of bytes available unsigned char CubeletsShield::getDataI2C(unsigned char addr, unsigned char command, unsigned char bytesToRead, unsigned char retries ){ trafficLEDOn(); I2CReturnCode = I2c.read(addr, command, bytesToRead); trafficLEDOff(); if(I2c.available() == 1){ return 1; } else{ if(debugOverUsart){ Serial.print("Failed to get data from I2C Slave addr: 0x"); Serial.print(addr, HEX); Serial.print(" command: 0x"); Serial.print(command, HEX); Serial.print(" bytes requested: "); Serial.print(bytesToRead, DEC); Serial.print(" retries remaining: "); Serial.println(retries, DEC); } if(retries >= 0 && retries >0){ retries--; //delay(2); return getDataI2C(addr, command, bytesToRead, retries); } else return 0; // Return an error when we're out of retries } } void CubeletsShield::trafficLEDOn(){ digitalWrite(ledPin, HIGH); } void CubeletsShield::trafficLEDOff(){ digitalWrite(ledPin, LOW); } // ####################################################################### // Cubelet Shield Functions // ####################################################################### void CubeletsShield::initializeCubeletsShield(){ for( unsigned char i = 1;i<=6;i++){ greenOnByFace(i); setBroadcastBlockValueByFace(i, 0x00); startCommunicationByFace(i); } } void CubeletsShield::stopAllCubeletCommunication(){ for( unsigned char i = 1;i<=6;i++){ stopCommunicationByFace(i); } } void CubeletsShield::startAllCubeletCommunication(){ for( unsigned char i = 1;i<=6;i++){ startCommunicationByFace(i); } } void CubeletsShield::greenOnAllCubelets(){ for( unsigned char i = 1;i<=6;i++){ greenOnByFace(i); } } void CubeletsShield::greenOffAllCubelets(){ for( unsigned char i = 1;i<=6;i++){ greenOffByFace(i); } } unsigned char CubeletsShield::getBroadcastBlockValueByFace(unsigned char faceNumber){ // Request the block value if( getDataI2C(getI2CAddressByFace(faceNumber), char(COMMAND_GETBVSELF), char(RESPONSE_LENGTH_GETBVSELF), char(I2CRETRYCOUNT)) == char(RESPONSE_LENGTH_GETBVSELF)){ // We have data while (I2c.available() > 0 ){ // Loop over the whole buffer, rec_byte_i2c = I2c.receive(); // we only want the last char in the array } return rec_byte_i2c; } else{ // Didn't get anything! return false; } } unsigned char CubeletsShield::getNeighborBlockValueByFace(unsigned char faceNumber){ // Request the block value if( getDataI2C(getI2CAddressByFace(faceNumber), char(COMMAND_GETBVNEIGHBOR), char(RESPONSE_LENGTH_GETBVNEIGHBOR), char(I2CRETRYCOUNT)) == char(RESPONSE_LENGTH_GETBVNEIGHBOR)){ // We have data while (I2c.available() > 0 ){ // Loop over the whole buffer, rec_byte_i2c = I2c.receive(); // we only want the last char in the array } return rec_byte_i2c; } else{ // Didn't get anything! return false; } } // Returns 0 on success, error code on failure unsigned char CubeletsShield::setBroadcastBlockValueByFace(unsigned char faceNumber, unsigned char blockValue){ return sendCommandWithDataI2C(getI2CAddressByFace(faceNumber), char(COMMAND_SETBVSELF), blockValue, char(I2CRETRYCOUNT)); } // Returns 0 on success, error code on failure unsigned char CubeletsShield::greenOnByFace(unsigned char faceNumber){ return sendCommandI2C(getI2CAddressByFace(faceNumber), char(COMMAND_LEDON), char(I2CRETRYCOUNT)); } // Returns 0 on success, error code on failure unsigned char CubeletsShield::greenOffByFace(unsigned char faceNumber){ return sendCommandI2C(getI2CAddressByFace(faceNumber), char(COMMAND_LEDOFF), char(I2CRETRYCOUNT)); } // Returns 0 on success, error code on failure unsigned char CubeletsShield::stopCommunicationByFace(unsigned char faceNumber){ return sendCommandI2C(getI2CAddressByFace(faceNumber), char(COMMAND_STOPCOMM), char(I2CRETRYCOUNT)); } // Returns 0 on success, error code on failure unsigned char CubeletsShield::startCommunicationByFace(unsigned char faceNumber){ return sendCommandI2C(getI2CAddressByFace(faceNumber), char(COMMAND_STARTCOMM), char(I2CRETRYCOUNT)); } // Returns I2C Address corresponding to the faceNumber on the Arduino Shields unsigned char CubeletsShield::getI2CAddressByFace(unsigned char faceNumber){ return cubeletI2CAddresses[faceNumber-1]; }
ffd4b891ddd890ce6462841e084fa791b67d4c0f
7754e632807126d65f2c8fd16545adea0d55cc16
/Problems/#1337 The K Weakest Rows in a Matrix.cpp
6b553d326641d4509a08304da530f589391b0de5
[]
no_license
rahulthetoolsmaker/LeetCode
2fd0b4d2879a65fbb9fdd75b7e35b9d080b8a302
fc9533a2c75f521790070b9df1c2b3cf64173f66
refs/heads/main
2023-08-14T04:31:45.767960
2021-09-30T18:21:14
2021-09-30T18:21:14
null
0
0
null
null
null
null
UTF-8
C++
false
false
780
cpp
#1337 The K Weakest Rows in a Matrix.cpp
// Search array 14 // #1337 The K Weakest Rows in a Matrix class Solution { public: vector<int> kWeakestRows(vector<vector<int>>& mat, int k) { vector<pair<int,int>> freq; for(int i=0;i<mat.size();i++){ int count = 0; for(int j=0;j<mat[i].size();j++){ if(mat[i][j] == 1){ count++; }else{ break; } } freq.push_back({count,i}); } sort(freq.begin(),freq.end()); vector<int> ans; int i=0; for(pair el:freq){ if(i>=k){ break; } ans.push_back(el.second); i++; } return ans; } };
6b1937cf0cc0d6c7bdcc9d644834cebc138c6cba
73f2cdaecf3f726d534ce728c8f71cfbe7c7e3e6
/ESP8266WindowCover/ESP8266WindowCover.ino
9dd7c4b5938f7052dcfc1ee29f05a7de356674ac
[ "MIT" ]
permissive
osmanatam/MQTTWindowCover
c118dc516dad25940cf2be4d7382b203a5a57ce6
ec797d4e74948dc3bb4545c22c0304a2870ebd42
refs/heads/master
2022-04-08T04:08:56.919405
2019-03-05T15:41:27
2019-03-05T15:41:27
null
0
0
null
null
null
null
UTF-8
C++
false
false
13,975
ino
ESP8266WindowCover.ino
#define LightServiceDebug RSerial #include <ESP8266WiFi.h> #include <ESP8266WebServer.h> #include <ESP8266HTTPUpdateServer.h> #include <ESP8266mDNS.h> #include <DNSServer.h> #include <RemoteDebug.h> #include <WiFiUdp.h> #include <ArduinoOTA.h> #include <EEPROM.h> #include <PubSubClient.h> #include <TimeLib.h> #include <NtpClientLib.h> #include <aJSON.h> // Replace avm/pgmspace.h with pgmspace.h there and set #define PRINT_BUFFER_LEN 4096 ################# IMPORTANT #include <Bounce2.h> #include "secrets.h" #include "Blink.h" #include "LightService.h" // Able to respond to: ON = 0 position, OFF = position 100 const int POWER_RELAY = 1; const int GOING_UP_RELAY = 2; const int LED = 13; const int COVER_OPEN = 100; const int COVER_CLOSE = 0; const int FULL_TIME_MS = 19500; const int MQTT_SEND_STATUS_MS = 3000; const char * friendly_name = "Bedroom window cover"; const int MAX_HUE = 254; class CoverHandler; class Settings; const int GO_UP_BUTTON = 1; const int GO_DOWN_BUTTON = 2; LightServiceClass LightService(friendly_name); RemoteDebug RSerial; CoverHandler *coverHandler = nullptr; Settings *_settings = nullptr; char buff[0x100]; TimedBlink activity(LED, 100, 200); //Bounce upButton = Bounce(); //Bounce downButton = Bounce(); WiFiClient espClient; PubSubClient mqttClient(espClient); ESP8266WebServer httpServer(80); bool wifiConnected = false; ESP8266HTTPUpdateServer httpUpdater; struct Settings { bool IsCalibrated; byte Position; const int Size = sizeof(Settings) + 2; Settings() : _offset() { EEPROM.begin(sizeof(Settings) + 2); Position = EEPROM.read(_offset); IsCalibrated = EEPROM.read(_offset + 1); } void save() { if (!IsCalibrated) return; if (RSerial.isActive(RSerial.DEBUG)) { RSerial.println("Saving EEPROM"); } EEPROM.write(_offset, Position); EEPROM.write(_offset + 1, IsCalibrated); long start = millis(); while (millis() - start < 1000) { if (EEPROM.commit()) { if (RSerial.isActive(RSerial.INFO)) { RSerial.println("EEPROM saved"); } return; } } if (RSerial.isActive(RSerial.ERROR)) { RSerial.println("EEPROM was not saved because timeout occured"); } } private: short _offset; int generateOffset() { return millis() % 512; } }; class CoverHandler : public LightHandler { int _startingPosition, _relayState; HueLightInfo _currentInfo; unsigned long _operationStartMs, _operationMs, _lastMqttSendMs; void _setRelay(int relayState) { Serial.flush(); Serial.write(0xA0); Serial.write(0x04); Serial.write(relayState); Serial.write(0xA1); Serial.flush(); _relayState = relayState; } void setRelay(int relayState) { _setRelay(0); if (relayState & POWER_RELAY) { delay(20); _setRelay(relayState & GOING_UP_RELAY ? 1 : 2); } if (RSerial.isActive(RSerial.DEBUG)) { RSerial.printf("Setting relay: %d", relayState); RSerial.println(); } } int getPositionLenght(unsigned ms) { return (COVER_OPEN * ms) / FULL_TIME_MS; } public: CoverHandler() : _startingPosition(), _relayState(), _operationStartMs(), _operationMs(), _lastMqttSendMs() { if (!_settings->IsCalibrated || _settings->Position > COVER_OPEN || _settings->Position < COVER_CLOSE) { calibrate(); } } void handleQuery(int lightNumber, HueLightInfo newInfo, aJsonObject* raw) override { int newPosition = (float)newInfo.brightness / (float)MAX_HUE * COVER_OPEN; if (_currentInfo.on && !newInfo.on) { newPosition = COVER_CLOSE; } if (newInfo.on && newInfo.brightness == COVER_CLOSE) { newPosition = COVER_OPEN; } _currentInfo = newInfo; setPosition(newPosition); if (RSerial.isActive(RSerial.DEBUG)) { RSerial.printf("Received: bri: %d, hue: %d, on: %d, pos: %d", newInfo.brightness, newInfo.hue, newInfo.on, newPosition); RSerial.println(); } } HueLightInfo getInfo(int lightNumber) { HueLightInfo info = {}; info.hue = -1; info.saturation = -1; info.bulbType = HueBulbType::DIMMABLE_LIGHT; info.brightness = (int) ((float)_settings->Position / COVER_OPEN * (float)MAX_HUE); info.on = _settings->Position > (COVER_OPEN * 0.05); if (RSerial.isActive(RSerial.DEBUG)) { RSerial.printf("getInfo(%d) was called: pos: %d, brightness: %d, on: %d", lightNumber, _settings->Position, info.brightness, info.on); RSerial.println(); } return info; } unsigned long getOperationStartTime() { return _operationStartMs; } void calibrate() { if (RSerial.isActive(RSerial.INFO)) { RSerial.println("Calibrating the cover ..."); } setRelay(POWER_RELAY | GOING_UP_RELAY); _operationStartMs = millis(); _operationMs = FULL_TIME_MS; activity.blink(_operationMs, 100, 100); _startingPosition = COVER_CLOSE; _settings->Position = COVER_OPEN; _settings->IsCalibrated = false; _settings->save(); } void setPosition(int position) { if (position == _settings->Position) return; if (RSerial.isActive(RSerial.INFO)) { RSerial.printf("Setting position: %d", position); RSerial.println(); } int relayState = POWER_RELAY; int remaining = position - _settings->Position; // 10 - 50 if (remaining < 0) { relayState = relayState | GOING_UP_RELAY; } _operationStartMs = millis(); setRelay(relayState); _operationMs = (FULL_TIME_MS * abs(remaining)) / COVER_OPEN; if (position == COVER_OPEN || position == COVER_CLOSE) { _operationMs = _operationMs * 1.15; // we take a margin as a 15% percent when we are in the if (RSerial.isActive(RSerial.INFO)) { RSerial.printf("Auto-Calibration to %d with duration %d ms because the requested position is in margin", position, _operationMs); RSerial.println(); } } activity.blink(_operationMs, 300, 200); _startingPosition = _settings->Position; _settings->IsCalibrated = false; _settings->save(); } bool isOperating() { //return _relayState & POWER_RELAY; // _operationStartMs > 0; return _relayState > 0; } bool isOpening() { //return isOperating() && (_relayState & GOING_UP_RELAY) != 0; return _relayState & 1 > 0; } bool isClosing() { //return isOperating() && (_relayState & GOING_UP_RELAY) == 0; return _relayState & 2 > 0; } void loop() { unsigned now = millis(); if (isOperating()) { unsigned spent = now - _operationStartMs; int lenght = getPositionLenght(spent); if (isOpening()) lenght *= -1; _settings->Position = min(max(_startingPosition + lenght, COVER_CLOSE), COVER_OPEN); if (RSerial.isActive(RSerial.INFO)) { RSerial.printf("Starting position: %d and setting to %d from lenght %d (spent time: %d)", _startingPosition, _settings->Position, lenght, spent); RSerial.println(); } if (spent >= _operationMs) { // the operation needs to stop stop(); _settings->IsCalibrated = true; if (RSerial.isActive(RSerial.INFO)) { RSerial.println("The cover operation has stopped"); } _settings->save(); } } now = millis(); int mqtt_send_delay = isOperating() ? 300 : MQTT_SEND_STATUS_MS; if (now - _lastMqttSendMs > mqtt_send_delay) { sprintf(buff, "%d", _settings->Position); mqttClient.publish(mqtt_position_topic, buff); const char * state = _settings->Position >= 0 && _settings->Position <= 90 ? "open" : "close"; mqttClient.publish(mqtt_state_topic, state); _lastMqttSendMs = now; } } void stop_later() { _operationMs = 0; } void stop() { setRelay(0); //setRelay(_relayState & ~(_relayState & POWER_RELAY)); // switch back the relay to stop everything _operationStartMs = 0; } void open() { setPosition(COVER_OPEN); } void close() { setPosition(COVER_CLOSE); } String getFriendlyName(int lightNumber) const { return friendly_name; } }; void setup() { pinMode(LED, OUTPUT); Serial.begin(19230); RSerial.begin(host); RSerial.setSerialEnabled(true); if (RSerial.isActive(RSerial.INFO)) { RSerial.println("Starting"); } _settings = new Settings(); if (RSerial.isActive(RSerial.DEBUG)) { RSerial.println("Attaching interruptions ..."); } /*pinMode(GO_UP_BUTTON, INPUT_PULLUP); upButton.attach(GO_UP_BUTTON); upButton.interval(20); pinMode(GO_DOWN_BUTTON, INPUT_PULLUP); downButton.attach(GO_DOWN_BUTTON); downButton.interval(20);*/ if (RSerial.isActive(RSerial.DEBUG)) { RSerial.println("Setting ArdionoOTA ..."); } ArduinoOTA.setPort(OTA_PORT); ArduinoOTA.setHostname(host); ArduinoOTA.setPassword(admin_password); ArduinoOTA.begin(); // Sync our clock NTP.begin("pool.ntp.org", 0, true); // MQTT setup mqttClient.setServer(mqtt_server, mqtt_port); mqttClient.setCallback(callback); coverHandler = new CoverHandler(); LightService.setLightsAvailable(1); LightService.setLightHandler(0, coverHandler); LightService.begin(&httpServer); httpUpdater.setup(&httpServer, "/update", admin_username, admin_password); httpServer.begin(); MDNS.addService("http", "tcp", 80); //setup http firmware update page. if (!MDNS.begin(host) && RSerial.isActive(RSerial.ERROR)) { RSerial.println("Error setting up MDNS responder!"); } if (RSerial.isActive(RSerial.INFO)) { RSerial.println("Initialization completed"); } RSerial.setSerialEnabled(false); } void callback(char* topic, byte* payload, unsigned int length) { if (length > sizeof(buff)) return; memcpy(buff, payload, length); buff[length] = NULL; String message(buff); String mytopic(topic); if (RSerial.isActive(RSerial.INFO)) { RSerial.printf("Received topic: '%s' (%d): %s", topic, length, message.c_str()); RSerial.println(); } if (mytopic == mqtt_command_topic) { if (message.equals("OPEN")) { coverHandler->setPosition(COVER_OPEN); return; } if (message.equals("CLOSE")) { coverHandler->setPosition(COVER_CLOSE); return; } if (message.equals("STOP")) { coverHandler->stop(); return; } if (message.equals("CALIBRATE")) { coverHandler->calibrate(); return; } if (message.length() > 0 && message.length() <= 3) { int position = atoi(message.c_str()); if (position <= COVER_OPEN && position >= COVER_CLOSE) { coverHandler->setPosition(position); return; } else { if (RSerial.isActive(RSerial.WARNING)) RSerial.printf("Received %s position, but ignoring because is out of range", position); } } } } void loop() { // read the button state /*upButton.update(); downButton.update(); if (upButton.read()) { if (coverHandler->isClosing()) { coverHandler->stop(); } else { coverHandler->open(); } } if (downButton.read()) { if (coverHandler->isOpening()) { coverHandler->stop(); } else { coverHandler->open(); } }*/ ArduinoOTA.handle(); LightService.update(); RSerial.handle(); bool oldWifiConnected = wifiConnected; bool isConnected; if (try_connect_wifi(isConnected) && isConnected) { if (RSerial.isActive(RSerial.WARNING)) { RSerial.println("WiFi network changed"); } MDNS.notifyAPChange(); } if (connect_to_mqtt()) { mqttClient.publish(mqtt_state_topic, "online"); } activity.loop(); coverHandler->loop(); mqttClient.loop(); if (!coverHandler->isOperating()) { // if we do not do anything, we sleep delay(250); } } bool try_connect_wifi(bool &isConnected) { isConnected = WiFi.status() == WL_CONNECTED; if (isConnected) { if (!wifiConnected) { // if it was not connected if (RSerial.isActive(RSerial.DEBUG)) { RSerial.print("Connected to WiFi '"); RSerial.print(WiFi.SSID()); RSerial.println("' !"); } wifiConnected = true; activity.stop(); return true; } return false; // we are connected and we were already connected } if (!activity.durationExpired()) { return false; } if (WiFi.status() == WL_DISCONNECTED) { wifiConnected = false; if (RSerial.isActive(RSerial.DEBUG)) RSerial.println("Connecting to WIFI ..."); WiFi.mode(WIFI_STA); WiFi.config(IP_ADDRESS, IP_GATEWAY, IP_MASK); WiFi.begin(wifi_ssid, wifi_password); activity.blink(10 * 1000, 800, 800); return true; } return true; } bool connect_to_mqtt() { if (mqttClient.connected() || !activity.durationExpired()) { return false; } if (RSerial.isActive(RSerial.DEBUG)) { RSerial.print("Connecting to MQTT ..."); } bool connected = false; if (mqttClient.connect(host, mqtt_user, mqtt_password)) { mqttClient.subscribe(mqtt_command_topic); if (RSerial.isActive(RSerial.DEBUG)) { RSerial.println(" done"); } activity.stop(); connected = true; } else { if (RSerial.isActive(RSerial.DEBUG)) { RSerial.print("failed, rc="); RSerial.print(mqttClient.state()); RSerial.println(" try again in 10 seconds"); } } if (!activity.durationExpired()) // we check if this is not stopped activity.blink(10 * 1000, 200, 200); return connected; }
2b998aabe6463174149291bbb69c02e10f51438b
ac1551bd38d0b71a89d2bad1561a26ba0d0ad18e
/Datalog/src/CPP_Template/include/lockedvectorint.hh
e331c9c0af4e63f6357f819e9b2c69d53f288801
[]
no_license
AllanInComp/okami
f3d7102d13eed465106638df0631596fdbc238f3
4e7c7d0f15dac8f1e462d1ad6a5e463b4c01e465
refs/heads/master
2023-07-23T07:24:49.725067
2017-04-04T10:50:19
2017-04-04T10:50:19
null
0
0
null
null
null
null
UTF-8
C++
false
false
380
hh
lockedvectorint.hh
%% fill_Header #include <vector> #include <mutex> #ifndef LOCKEDVECTORINT_H_ #define LOCKEDVECTORINT_H_ class LockedVectorInt { private: std::vector<int> array; std::mutex array_lock; public: void lock() { array_lock.lock(); } void unlock() { array_lock.unlock(); } void add(int x_1) { array.push_back(x_1); } std::vector<int> * get_array() {return &array; } }; #endif
6934145d35860bc7c109fb2771bc9b4da5b2f5f1
04fee3ff94cde55400ee67352d16234bb5e62712
/8.7/0807test/source/็‰›ๅฝฆๅ“ฒ/pcr/pcr.cpp
5d58e500e7128c92c5df1e4179201885493a091c
[]
no_license
zsq001/oi-code
0bc09c839c9a27c7329c38e490c14bff0177b96e
56f4bfed78fb96ac5d4da50ccc2775489166e47a
refs/heads/master
2023-08-31T06:14:49.709105
2021-09-14T02:28:28
2021-09-14T02:28:28
218,049,685
1
0
null
null
null
null
UTF-8
C++
false
false
401
cpp
pcr.cpp
#include<stdio.h> #include<stdlib.h> #define mo 19260817 long long calc(long long n) { if(n==1) { return 2; } long long t=calc(n/2); if(n%2==0) { return t*t%mo; } else { return t*t%mo*2%mo; } } int main() { freopen("pcr.in","r",stdin); freopen("pcr.out","w",stdout); long long n; scanf("%lld",&n); printf("%lld",(calc(n)+mo-(2*n)%mo)%mo); return 0; }